diff --git a/INSTALL b/INSTALL deleted file mode 100644 index c7f7454a6e581e1b0f5b88c5eeeac36d362c9b47..0000000000000000000000000000000000000000 --- a/INSTALL +++ /dev/null @@ -1,105 +0,0 @@ -INSTALLATION INSTRUCTIONS -------------------------- -Climate Model Output Rewriter (CMOR) version 2.0 installation instructions. - - -DOWNLOAD --------- -You can get the latest version of the software from the CMOR homepage -http://www2-pcmdi.llnl.gov/cmor/ - - -INSTALLATION ------------- -CMOR 2 requires external packages that need to be installed first. -It can be compiled/linked against either NetCDF3 or NetCDF4. If you -decide to go with NetCDF4 be sure to build NetCDF4 with the - --enable-netcdf-4 option! -Also make sure to install UDUNITS version 2 and not version 1 ! -NetCDF4 wil give you access to compression/chunking capabilities. -NOTE: CMIP5 REQUIRES NetCDF3 output files -These packages do NOT require to be built with the Fortran interface, cmor is only -calling their C interface. - -FIRST: - Install external dependencies: - Option 1: linkeng against NetCDF3 - - NetCDF3: available at: http://www.unidata.ucar.edu/downloads/netcdf/netcdf-3_6_3/index.jsp - Option 2: NetCDF4 (if you want to use compression/chunking for other projects than CMIP5) - - zlib (usually already present on most system), http://zlib.net - - HDF5: available at: http://hdf.ncsa.uiuc.edu/HDF5 - - NetCDF4: available at: http://www.unidata.ucar.edu/software/netcdf/ - DOT NOT FORGET to build with --enable-netcdf-4 option - Always: - - udunits2: (not 1) http://www.unidata.ucar.edu/software/udunits/udunits-2/udunits2.html - - libuuid: I used the version at http://www.ossp.org/pkg/lib/uuid - - NOTES: it strongly recommend to use the --disable-shared argument to the - ./configure when building udunits2, hdf5 and netcdf4. Otherwise make - sure the path to hdf5 and netcdf4 lib directory is in your search path - or in your LD_LIBRARY_PATH environment variable. - Also with building NetCDF4, it is very important (although extremeley - counter-intuitive) to add the --enable-netcdf-4 argument, otherwise - support for netcdf4 will not be enabled... - - NOTES2: You only need to install the C libraries for these. Usually you can turn off - the fortran using --disable-fortran - - NOTES3: on 64bit systems make SURE both C and FORTRAN compiler are running in same 32/64 bit mode. This is especially true for users migrating their Mac OS 10.5 machines to 10.6 since gfortran does not come standard the old 32bit is usually transfered. - -SECOND: Install CMOR (version 2) library - run the configuration script, build and install - - ./configure --prefix=/path/to/where/you/want/cmor --with-netcdf=/path/to/NetCDF4 --with-hdf5=/path/to/HDF5 --with-udunits2=/path/to/udunits2 - make - make install - - NOTE: at the configure stage there are some influential variables: - CC : C comipler to use - CPPFLAGS : C preprocessing macros - CFLAGS : C compilation flags - FC : Fortran compiler to use - FFLAGS : Fortan Compilation flags - LDFLAGS : Linking time compilation flags - - CMOR will "Best-guess" your system and set these, but if you need - specific values for your system make sure to set these environment - variables first - -*) installing the python version - /path/to/your/python/bin/python setup.py install - or simply - make python - the later picks up whatever python is in your path - -CLEANING: - make clean - or to completely clean (i.e. remove the built lib): - make distclean - -UNINSTALLING - make uninstall - Note: the keyword, "uninstall", removes the library and include - files from the location specified by "PREFIX" at configure time. - -TESTING: - multiple tests are available - make test - make test_python - -LINKING --------------------------------------------- - - You will need to link against libcmor.a and the netcdf4 hdf5 - -Example of linking with a fortran comipler: -/opt/ibmcmp/xlf/8.1/bin/xlf90 -qsuffix=f=f90 $(DEBUG) Test/test_fortran_example_00.f90 -L/lgm/cmor2/lib -L. -lcmor -I/lgm/NetCDF4/include -L/lgm/NetCDF4/lib -lnetcdf -lhdf5_hl -lhdf5 -lm -lz -ludunits2 -o test_fortran_example_00 - - You can look in the Makefile under the testipcc section for an example - compilation on your system. - - -MINI F.A.Q. is compilation - -If you get an error similar to this one: -Error: Generic function 'cmor_write' at (1) is not an intrinsic function -It probably means that the argument type you passed to the fortran are wrong and that the compiler canot find a matching function in the cmor_write interface diff --git a/Makefile.in b/Makefile.in deleted file mode 100644 index f45a18d5dc10a486ab1bbf62a6a47218163cc970..0000000000000000000000000000000000000000 --- a/Makefile.in +++ /dev/null @@ -1,256 +0,0 @@ -#!/usr/bin/env sh -FC=@FC@ -CPPFLAGS_USER="" -FFLAGS_USER="-fPIC @USERFFLAGS@" -#MODULE_SUFFIX="mod" -PREFIX=@prefix@ -FCFLAGS=@FCFLAGS@ -PYTHONEXEC=@PYTHONEXEC@ -NO_COLOR2=\x1b[0m -OK_COLOR2=\x1b[2;34m -NO_COLOR=${@NO_COLOR@} -OK_COLOR=${@OK_COLOR@} -CFLAGS="@USERCFLAGS@" - - - -# Library name -LIBNAME = libcmor.a - -# Library sources -#LIBSOURCES = Src/cmor.c Src/cmor_variables.c Src/cmor_axes.c Src/cmor_tables.c Src/cmor_grids.c Src/cdTime/cdTimeConv.c Src/cdTime/cdUtil.c Src/cdTime/timeConv.c Src/cdTime/timeArith.c -LIBSOURCES = @LIBSOURCES@ -LIBFSOURCES = @LIBFSOURCES@ - -LIBFILES = @LIBFILES@ - -#Include Files -INCFILES = @INCFILES@ - -# Temporary Files -TMPFILES = *~ $(LIBFILES) *.mod a.out *.stb Test/*.nc Test/IPCC_Fourth_Assessment *.LOG* *.dSYM Test/IPCC Test/CMIP5 CMIP5 -DISTFILES = libcmor.a -DEPEND= makedepend -c @DEBUG@ @CFLAGS@ @USERCFLAGS@ @NCCFLAGS@ @UDUNITS2FLAGS@ @UUIDFLAGS@ @ZFLAGS@ - -all: cmor - @echo -depend: $(LIBSOURCES) - ${DEPEND} $(LIBSOURCES) -cmor.o: Src/cmor.c include/cmor.h include/cmor_func_def.h - @CC@ -c @DEBUG@ @MACROS@ @CFLAGS@ @USERCFLAGS@ @NCCFLAGS@ @UDUNITS2FLAGS@ @UUIDFLAGS@ @ZFLAGS@ Src/cmor.c -cmor_variables.o: Src/cmor_variables.c include/cmor.h include/cmor_func_def.h - @CC@ -c @DEBUG@ @MACROS@ @CFLAGS@ @USERCFLAGS@ @NCCFLAGS@ @UDUNITS2FLAGS@ @UUIDFLAGS@ @ZFLAGS@ Src/cmor_variables.c -cmor_axes.o: Src/cmor_axes.c include/cmor.h include/cmor_func_def.h - @CC@ -c @DEBUG@ @MACROS@ @CFLAGS@ @USERCFLAGS@ @NCCFLAGS@ @UDUNITS2FLAGS@ @UUIDFLAGS@ @ZFLAGS@ Src/cmor_axes.c -cmor_tables.o: Src/cmor_tables.c include/cmor.h include/cmor_func_def.h - @CC@ -c @DEBUG@ @MACROS@ @CFLAGS@ @USERCFLAGS@ @NCCFLAGS@ @UDUNITS2FLAGS@ @UUIDFLAGS@ @ZFLAGS@ Src/cmor_tables.c -cmor_grids.o: Src/cmor_grids.c include/cmor.h include/cmor_func_def.h - @CC@ -c @DEBUG@ @MACROS@ @CFLAGS@ @USERCFLAGS@ @NCCFLAGS@ @UDUNITS2FLAGS@ @UUIDFLAGS@ @ZFLAGS@ Src/cmor_grids.c -cmor_md5.o: Src/cmor_md5.c include/cmor.h include/cmor_func_def.h include/cmor_md5.h - @CC@ -c @DEBUG@ @MACROS@ @CFLAGS@ @USERCFLAGS@ @NCCFLAGS@ @UDUNITS2FLAGS@ @UUIDFLAGS@ @ZFLAGS@ Src/cmor_md5.c -cmor_cfortran_interface.o: Src/cmor_cfortran_interface.c include/cmor.h include/cmor_func_def.h - @CC@ -c @DEBUG@ @MACROS@ @CFLAGS@ @USERCFLAGS@ @NCCFLAGS@ @UDUNITS2FLAGS@ @UUIDFLAGS@ @ZFLAGS@ Src/cmor_cfortran_interface.c -cdTimeConv.o: Src/cdTime/cdTimeConv.c include/cmor.h include/cmor_func_def.h - @CC@ -c @DEBUG@ @MACROS@ @CFLAGS@ @USERCFLAGS@ @NCCFLAGS@ @UDUNITS2FLAGS@ @UUIDFLAGS@ @ZFLAGS@ Src/cdTime/cdTimeConv.c -cdUtil.o: Src/cdTime/cdUtil.c include/cmor.h include/cmor_func_def.h - @CC@ -c @DEBUG@ @MACROS@ @CFLAGS@ @USERCFLAGS@ @NCCFLAGS@ @UDUNITS2FLAGS@ @UUIDFLAGS@ @ZFLAGS@ Src/cdTime/cdUtil.c -timeConv.o: Src/cdTime/timeConv.c include/cmor.h include/cmor_func_def.h - @CC@ -c @DEBUG@ @MACROS@ @CFLAGS@ @USERCFLAGS@ @NCCFLAGS@ @UDUNITS2FLAGS@ @UUIDFLAGS@ @ZFLAGS@ Src/cdTime/timeConv.c -timeArith.o:Src/cdTime/timeArith.c include/cmor.h include/cmor_func_def.h - @CC@ -c @DEBUG@ @MACROS@ @CFLAGS@ @USERCFLAGS@ @NCCFLAGS@ @UDUNITS2FLAGS@ @UUIDFLAGS@ @ZFLAGS@ Src/cdTime/timeArith.c -cmor_fortran_interface.o: Src/cmor_fortran_interface.f90 - @FC@ -c @FCFLAGS@ @USERFFLAGS@ @DEBUG@ @MACROS@ Src/cmor_fortran_interface.f90 -cmor: $(LIBFILES) @MAKEDEPPYTHON@ - @ar crv $(LIBNAME) $(LIBFILES) - @ranlib $(LIBNAME) -clean: - @echo "Cleaning [$(WHEREAMI)] ..." - @rm -rf $(TMPFILES) -distclean: clean - @echo "Completely cleaning [$(WHEREAMI)]..." - @rm -f $(DISTFILES) -install: cmor - mkdir -p @prefix@/lib - mkdir -p @prefix@/include - mkdir -p @prefix@/include/cdTime - mkdir -p @prefix@/include/cdTime/cdunifpp - cp -p $(LIBNAME) @prefix@/lib - cp -pr include/*.h @MODFILES@ @prefix@/include - cp -pr include/cdTime/*.h @prefix@/include/cdTime - cp -pr include/cdTime/cdunifpp/*.h @prefix@/include/cdTime/cdunifpp -uninstall: distclean - rm @prefix@/lib/$(LIBNAME) - cd @prefix@ ; rm $(INCFILES) -backup: clean - @echo "Creating full backup tar file..." - @(cd ..; \ - @TGZNAME=$(TGZDIR)/cmor_`$(TIMESTAMP)`_full.tgz; \ - @tar cfz $$TGZNAME Cmor; \ - @touch $(TIMESTAMPDIR)/cmor_`$(TIMESTAMP)`_full.time; \ - @echo "Full backup tar file created : $$TGZNAME") -test: cmor test_C @TEST_FORTRAN@ @MAKETESTPYTHON@ - @echo "All C and Fortran Test passed successfully" -test_C: cmor - @rm -f ./ipcc_test_code ; @CC@ @CFLAGS@ @USERCFLAGS@ @CPPFLAGS@ Test/ipcc_test_code.c -L@prefix@/lib -I@prefix@/include -L. -lcmor @NCCFLAGS@ @NCLDFLAGS@ @UDUNITS2LDFLAGS@ @UDUNITS2FLAGS@ @UUIDLDFLAGS@ @UUIDFLAGS@ -o ipcc_test_code @VERB@; ./ipcc_test_code @VERB@ - @rm -f test_grid ; @CC@ @CFLAGS@ @USERCFLAGS@ @CPPFLAGS@ Test/test_grid.c -L@prefix@/lib -I@prefix@/include -L. -lcmor @NCCFLAGS@ @NCLDFLAGS@ @UDUNITS2LDFLAGS@ @UDUNITS2FLAGS@ @UUIDLDFLAGS@ @UUIDFLAGS@ -o test_grid @VERB@; ./test_grid @VERB@; - @rm -f test_lots_of_variables ; @CC@ @CFLAGS@ @USERCFLAGS@ @CPPFLAGS@ Test/test_lots_of_variables.c -L@prefix@/lib -I@prefix@/include -L. -lcmor @NCCFLAGS@ @NCLDFLAGS@ @UDUNITS2LDFLAGS@ @UDUNITS2FLAGS@ @UUIDLDFLAGS@ @UUIDFLAGS@ -o test_lots_of_variables @VERB@; ./test_lots_of_variables @VERB@; -python: - @echo "Building Python interface" - @${PYTHONEXEC} setup.py install @CDATPREFIX@ -test_a_python: - @echo "${OK_COLOR}Testing ${TEST_NAME} ${NO_COLOR}" - ${PYTHONEXEC} ${TEST_NAME} @VERB@ -test_python: python - @env TEST_NAME=Test/test_python_direct_calls.py make test_a_python - @env TEST_NAME=Test/test_python_user_interface_00.py make test_a_python - @env TEST_NAME=Test/test_python_user_interface_01.py make test_a_python - @env TEST_NAME=Test/test_python_user_interface_03.py make test_a_python - @env TEST_NAME=Test/test_python_common.py make test_a_python - @env TEST_NAME=Test/cmor_speed_and_compression.py make test_a_python - @env TEST_NAME=Test/cmor_speed_and_compression_01.py make test_a_python -# @env TEST_NAME=Test/cmor_speed_and_compression_02.py make test_a_python - @env TEST_NAME=Test/test_compression.py make test_a_python - @env TEST_NAME=Test/test_python_appending.py make test_a_python - @env TEST_NAME=Test/test_python_bounds_request.py make test_a_python - @env TEST_NAME=Test/test_python_new_tables.py make test_a_python -# @env TEST_NAME=Test/test_python_index_coord.py make test_a_python - @env TEST_NAME=Test/test_python_jamie.py make test_a_python - @env TEST_NAME=Test/test_python_jamie_2.py make test_a_python - @env TEST_NAME=Test/test_python_jamie_3.py make test_a_python - @env TEST_NAME=Test/test_python_jamie_4.py make test_a_python - @env TEST_NAME=Test/test_python_jamie_6.py make test_a_python - @env TEST_NAME=Test/test_python_jamie_7.py make test_a_python - @env TEST_NAME=Test/test_python_jamie_8.py make test_a_python - @env TEST_NAME=Test/test_python_memory_check.py make test_a_python - @env TEST_NAME=Test/test_python_open_close_cmor_multiple.py make test_a_python - @env TEST_NAME=Test/test_python_jamie_7.py make test_a_python - @env TEST_NAME=Test/test_python_joerg_1.py make test_a_python - @env TEST_NAME=Test/test_python_joerg_2.py make test_a_python - @env TEST_NAME=Test/test_python_joerg_3.py make test_a_python -# @env TEST_NAME=Test/test_python_joerg_4.py make test_a_python - @env TEST_NAME=Test/test_python_joerg_5.py make test_a_python - @env TEST_NAME=Test/test_python_joerg_6.py make test_a_python - @env TEST_NAME=Test/test_python_joerg_7.py make test_a_python - @env TEST_NAME=Test/test_python_joerg_8.py make test_a_python -# @env TEST_NAME=Test/test_python_joerg_9.py make test_a_python - @env TEST_NAME=Test/test_python_joerg_10.py make test_a_python - @env TEST_NAME=Test/test_python_joerg_11.py make test_a_python - @env TEST_NAME=Test/test_python_joerg_12.py make test_a_python - @env TEST_NAME=Test/test_python_YYYMMDDHH_exp_fmt.py make test_a_python - @env TEST_NAME=Test/test_python_region.py make test_a_python - @env TEST_NAME=Test/jamie_hybrid_height.py make test_a_python - @env TEST_NAME=Test/jamie_positive.py make test_a_python - @env TEST_NAME=Test/test_python_1D_var.py make test_a_python - @env TEST_NAME=Test/test_python_2Gb_file.py make test_a_python - @env TEST_NAME=Test/test_python_2Gb_slice.py make test_a_python - @env TEST_NAME=Test/test_python_3hr.py make test_a_python - @env TEST_NAME=Test/test_python_YYYMMDDHH_exp_fmt.py make test_a_python -# @env TEST_NAME=Test/test_python_alastair_1.py make test_a_python - @env TEST_NAME=Test/test_python_cfmip_site_axis_test.py make test_a_python - @env TEST_NAME=Test/test_python_fx.py make test_a_python - @env TEST_NAME=Test/test_python_grid_and_ocn_sigma.py make test_a_python - @env TEST_NAME=Test/test_python_jamie_site_surface.py make test_a_python - @env TEST_NAME=Test/test_python_max_variables.py make test_a_python - @env TEST_NAME=Test/test_python_max_variables_2.py make test_a_python - @env TEST_NAME=Test/test_python_reverted_lats.py make test_a_python -# @env TEST_NAME= make test_a_python - -test_case: - @echo "${OK_COLOR}Testing: "${TEST_NAME}" with input file: ${INPUT_FILE}${NO_COLOR}" - @rm -f ./${TEST_NAME} 2>/dev/null ; @FC@ @USERFFLAGS@ @FCFLAGS@ @DEBUG@ Test/${TEST_NAME}.f90 -L@prefix@/lib -L. -lcmor @NCCFLAGS@ @NCLDFLAGS@ @UDUNITS2LDFLAGS@ @UDUNITS2FLAGS@ @UUIDLDFLAGS@ @UUIDFLAGS@ @ZFLAGS@ @ZLDFLAGS@ -o ${TEST_NAME} ; - @./${TEST_NAME} @VERB@ < ${INPUT_FILE} ; - @ rm ./${TEST_NAME} -ifeq (@MAKEDEPPYTHON@,python) - @env TEST_NAME="Test/check_results.py ${TEST_NAME}" make test_a_python -endif -test_case_old_cmor_tables: - @echo "Testing: "${TEST_NAME}" with input file: "${INPUT_FILE} - @rm -f ./${TEST_NAME} 2>/dev/null ; @FC@ @USERFFLAGS@ @FCFLAGS@ @DEBUG@ Test/old_cmor_tables/${TEST_NAME}.f90 -L@prefix@/lib -L. -lcmor @NCCFLAGS@ @NCLDFLAGS@ @UDUNITS2LDFLAGS@ @UDUNITS2FLAGS@ @UUIDLDFLAGS@ @UUIDFLAGS@ @ZFLAGS@ @ZLDFLAGS@ -o ${TEST_NAME} ; - @./${TEST_NAME} @VERB@ < ${INPUT_FILE} ; - @ rm ./${TEST_NAME} -ifeq (@MAKEDEPPYTHON@,python) - @env TEST_NAME="Test/check_results.py old_cmor_tables_${TEST_NAME}" make test_a_python -endif -test_fortran_old_cmor_tables: cmor - @env TEST_NAME="test_any_from_asc" INPUT_FILE="Test/tas_3D_noreorder.input" make test_case_old_cmor_tables - @env TEST_NAME="test_any_from_asc" INPUT_FILE="Test/3D_txy.input" make test_case_old_cmor_tables - @env TEST_NAME="test_any_from_asc" INPUT_FILE="Test/3D_txy_split_lon.input" make test_case_old_cmor_tables - @env TEST_NAME="test_any_from_asc" INPUT_FILE="Test/3D_xty_split_lon.input" make test_case_old_cmor_tables - @env TEST_NAME="test_any_from_asc_d" INPUT_FILE="Test/tas_3D_noreorder.input" make test_case_old_cmor_tables - @env TEST_NAME="test_any_from_asc_d" INPUT_FILE="Test/3D_txy.input" make test_case_old_cmor_tables - @env TEST_NAME="test_any_from_asc_d" INPUT_FILE="Test/3D_txy_split_lon.input" make test_case_old_cmor_tables - @env TEST_NAME="test_any_from_asc_d" INPUT_FILE="Test/3D_xty_split_lon.input" make test_case_old_cmor_tables - @env TEST_NAME="karls_test" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test1" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test2" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test3" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test4" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="main_prog" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test_any_from_asc_i" INPUT_FILE="Test/tas_mytest_3d_i.input" make test_case_old_cmor_tables - @env TEST_NAME="mytest_4d_r" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="rewrite_harvardf_data" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test_3h" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test_dimensionless" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test_fortran_example_00" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test_fortran_example_01" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test_station_data" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test_region" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test_sigma" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test_singleton" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="mytest_4d_r_big_array" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="mytest_4d_d_big_array_2" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="mytest_4d_d_big_array_3" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="mytest_4d_d_big_array_4" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="mytest_4d_d_big_array_5" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="climatology_test_code" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test_lots_of_variables" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test_shrt_exp_nm_set_att_initi" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables - @env TEST_NAME="test_sophie" INPUT_FILE="Test/noinput" make test_case_old_cmor_tables -test_fortran: cmor - @env TEST_NAME="test_any_from_asc" INPUT_FILE="Test/tas_3D_noreorder.input" make test_case - @env TEST_NAME="test_any_from_asc" INPUT_FILE="Test/3D_txy.input" make test_case - @env TEST_NAME="test_any_from_asc" INPUT_FILE="Test/3D_txy_split_lon.input" make test_case - @env TEST_NAME="test_any_from_asc" INPUT_FILE="Test/3D_xty_split_lon.input" make test_case - @env TEST_NAME="test_any_from_asc_d" INPUT_FILE="Test/tas_3D_noreorder.input" make test_case - @env TEST_NAME="test_any_from_asc_d" INPUT_FILE="Test/3D_txy.input" make test_case - @env TEST_NAME="test_any_from_asc_d" INPUT_FILE="Test/3D_txy_split_lon.input" make test_case - @env TEST_NAME="test_any_from_asc_d" INPUT_FILE="Test/3D_xty_split_lon.input" make test_case - @env TEST_NAME="karls_test" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test1" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test2" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test3" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test4" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="main_prog" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test_any_from_asc_i" INPUT_FILE="Test/tas_mytest_3d_i.input" make test_case - @env TEST_NAME="mytest_4d_r" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="rewrite_harvardf_data" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test_3h" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test_dimensionless" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test_fortran_example_00" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test_fortran_example_01" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test_station_data" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test_cmor_grid_alejandro" INPUT_FILE="Test/alejandro.txt" make test_case - @env TEST_NAME="test_cmor_grid_alejandro" INPUT_FILE="Test/alejandro_1.txt" make test_case - @env TEST_NAME="test_cmor_grid_alejandro" INPUT_FILE="Test/alejandro_2.txt" make test_case - @env TEST_NAME="test_cmor_grid_time_varying" INPUT_FILE="Test/alejandro.txt" make test_case - @env TEST_NAME="test_cmor_grid_time_varying" INPUT_FILE="Test/alejandro_1.txt" make test_case - @env TEST_NAME="test_region" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test_sigma" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test_singleton" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="mytest_4d_r_big_array" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="mytest_4d_d_big_array_2" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="mytest_4d_d_big_array_3" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="mytest_4d_d_big_array_4" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="mytest_4d_d_big_array_5" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="climatology_test_code" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test_lots_of_variables" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test_shrt_exp_nm_set_att_initi" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test_sophie" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="ipcc_test_code" INPUT_FILE="Test/noinput" make test_case -atest: cmor -# @env TEST_NAME="mytest_4d_d_big_array_2" INPUT_FILE="Test/noinput" make test_case - @env TEST_NAME="test_lots_of_variables" INPUT_FILE="Test/noinput" make test_case -# @env TEST_NAME="wegner_test" INPUT_FILE="Test/noinput" make test_case - - - diff --git a/RELEASE-NOTES b/RELEASE-NOTES deleted file mode 100644 index e12dae6f0bd9bf3fcea1436adf1417571fd24ab6..0000000000000000000000000000000000000000 --- a/RELEASE-NOTES +++ /dev/null @@ -1,239 +0,0 @@ -2012-12-14 : Tagging 2.8.2 -2012-12-14 : Fixed a bug in py wrapper where some list object where decref where they shouldn't leading to memory leaks, thanks Jamie and al. for this bug fix -2012-01-30 : Tagging 2.8.1 -2012-01-30 : climatological files now end wirh -clim.nc instead of _clim.nc -2011-11-08 : Tagging 2.8.0 -2011-11-08 : Realized there was a difference in calendar names between cdtime and the CF conventions. CMOR now maps correctly the CF names to the cdtime names for correct internal processing. -2011-10-24 : Removed the treatlon in case 'X' axis has units not in degrees -2011-06-23 : Tagging 2.7.1 -2011-06-23 : removing sloppy print statements in python wrap -2011-06-21 : Tagging 2.7.0 -2011-06-21 : Fixed bug using the wrong dims for checking validity of arrays in fortran interface - for vertices- -2011-06-13 : Tagging 2.6.1 -2011-06-13 : Fixed bug triggering wrong warning on bounds being at the beg/end of month -2011-05-26 : File name for subhourly were wrongly constructed, upped version to 2.6 -2011-05-24 : when we decide to add the extra time precision in the file name only for less than 6hr, i did this only for the first time, not the second one... Fixed. -2011-04-27 : Tagging 2.5.9 -2011-04-27 : fixed file name for climatologies, last bounds was set improperly -2011-04-26 : was setting coordinates attribute multiple times, now first check if the bit we are trying to add is already in -2011-04-11 : releasing 2.5.8 -2011-04-07 : only adding extra time precision in file names if it is < 6hr instead of 1 day -2011-04-05 : not overwriting user time values in climatology case -2011-02-25 : releasing 2.5.7 -2011-02-25 : fixed bug for dims of length one where bounds needed to be flliped, it used to raise an unwarranted error -2011-02-23 : releasing 2.5.6 -2011-02-23 : got cmor_set_variable_attribute to actually do something and not raise error all the time, thx to Larry Solheim to spot this. -2011-02-23 : fixed issue when writing 1 time step at a time for climatological means, issue could led to seg fault and bad final file names, thx to Koji Ogochi to spot this one. -2011-02-16 : releasing 2.5.5 -2011-02-16 : added process id to temporary file names so that code can be run via mpi -2011-02-02 : releasing 2.5.4 -2011-02-02 : fixed a memory issue in the Python API for get_variable_attribute and has_variable_attribute -2011-01-31 : releasing 2.5.3 -2011-01-25 : path produced w/o '/' or weird characters -2011-01-25 : cannot set global attribute if it is an attribute that can be set via cmor_dataset -2011-01-25 : cannot set var attribute after var has been created into nc file -2011-01-25 : cannot set var attribute if it is settable via cmor_variable -2011-01-25 : can handle "character type" singleton dimensions -2011-01-25 : does not stores units on character typevariables -2011-01-24 : cmor_axes, interval check cleanup errormessage, now specifies which units the diff calaculated is in. -2011-01-24 : updated cmor_set_variable_attrubtes to go thru an 'internal' one -2010-12-17 : when passing character type axes, checking output is suppposed to be character -2010-12-17 : fixed bug found by Jamie that didn't pass the correct args in get_var_Attribute -2010-12-16 : added two python test for var with string dimensions -2010-12-06 : turned off udunits2 warnings when reading database in -2010-11-18 : added a '/' after output path for tmp file testing -2010-11-12 : Updated documentation -2010-11-11 : updated pywrapper from Jamie -2010-11-11 : new examples into Makefile for Python -2010-11-11 : added a flag that says need to cal cmor_grid on some axis (site and location) -2010-11-05 : new doc updated by Karl. -2010-11-05 : removed option, for now, to create non-standard calendars because the dates in filenames would be wrong. -2010-11-05 : file_name=True ignored in python if no var_id is passed to it as well. -2010-11-05 : added realm to gridspec file names -2010-11-05 : reverted ext_cell_measures to cell_measures -2010-10-27 : edited the test for permission on output directory, used to fail if you had group write privileges but that wasnt your main group -2010-10-22 : Tagging 2.4.0 -2010-10-22 : updated docs to reflect all these changes -2010-10-22 : exposed cmor_set/get/has_variable in Fortran interface, just like Python works only on "string" variables -2010-10-22 : add optional "parent_experiment_rip" to cmor_dataset (C,Fortran,Python) -2010-10-22 : fixed bug with variables using "grids" and singleton dimensions -2010-10-22 : upgraded to 2.4 in devel branch -2010-10-22 : exposed cmor_set_variable_attribute to users in Python -2010-10-22 : cell_measures var attribute is now called ext_cell_measures -2010-10-06 : tagging 2.3 -2010-09-29 : Cleaned up error messages, now tries to output var/axis it was working on as well as table used. -2010-09-29 : When value that exceeds valid_min/max is found, now returns location of extreme point instead of first point encountered, as well as actuall coordinates values (not just indices) -2010-09-22 : Joerg found a bug that was due to checking only the refvar.dimension w/o checking the actual tables as well -2010-09-01 : fixed a bug on mac 32bit when reading in net3 version string -2010-09-01 : some vars with grid and singleton dims were wrongly analyzed by cmor_variable has not being defined with the right number of dimmensions. -2010-09-01 : updated doc. Was saying you can pass "none" for units when it really is: "" -2010-09-01 : updated doc. Was wrongly stating you can pass "none" if no missing_value -2010-08-24 : when writing time only variables, the time_bnds would fail to write if passed at cmor_write time. -2010-08-23 : tagging 2.2 -2010-08-23 : DRS was wrongly constructed for table Oclim -2010-08-23 : tagging 2.1 -2010-08-23 : create_output_path doesn't need to be called b4 cmor_write any more. -2010-08-19 : dimensions were always stored as double regardless of what the table wanted. Fixed -2010-08-19 : go thru cmor_create_path to figure out isfixed and set frequency, even if directory layout is not required. -2010-08-19 : checker: works with version number of format major.minor.patch -2010-08-19 : checker: update git url from wich to fetch md5s tables -2010-08-19 : forcings attribute can now end with notes in between parenthesis -2010-08-18 : added a check for cmor_variables making sure axes/grid ids passed are valid -2010-08-18 : downgraded abs min/max CRITICAL error to NORMAL -2010-08-18 : dowgraded invalid min/max from NORMAL error to WARNING -2010-08-10 : cmor_setup, was initalizing strings beyhond the max number fo elts, cause seg fault with python (loop was to CMOR_MAX_ELEMENTS when it should have been CMOR_MAX_ATTRIBUTES) -2010-06-14 : expanded the CMOR_MAX_GRIDS to 100 form 10. And replaced the "10" in the code with CMOR_MAX_GRIDS -2010-06-14 : updated python example and testtable to work w/o error about abs mean -2010-06-11 : shorten the TestTables to a minimum so they can't be confused with the real one and used in production -2010-06-11 : removed tables unused by examples -2010-06-11 : add ${Prefix}/share to the list of locations where to search for tables -2010-06-09 : removing files related to Tables, moving the Tables dir to TestTables -2010-06-09 : cmor axis entry "requested_bounds" now is also valid used to be "bounds_requested" -2010-06-09 : cmor_axis non-monotnic error was showing incoorect set of bad values -2010-06-09 : changed absolute mean error from CRITICAL to NORMAL if less than an order of magnitude off -2010-06-09 : tables generated with min/max now being 3 sigma (from 2) and (20% form 5%) -2010-06-09 : Coord: depth_coord was wrongly defined as positive up, fixed -2010-06-01 : table generation was sometimes gen same value for valid_min and valid_max, fixed -2010-06-01 : table generation using %.4g instead of %.2g for valid min/max -2010-06-01 : new tables to reflect that -2010-06-01 : updated examples to work with abs min/max from tables -2010-06-01 : edited example to have only 1 file to edit when tweaking the data generation in test fortran/C samples. -2010-06-01 : changed cmor_dataset to trim input arguments, revelant mostly for calendar that was declared as wrong if it had extra spaces -2010-06-01 : fixed error message formating for value less or greater than valid_min/max, now uses nice formatting %.4g instead of unreadable for big numbers: %lf -2010-06-09 : yep -2010-05-28 : Tagging RC10 -2010-05-28 : cmor_checker now checks table md5s in file vs the one passed and vs our control online -2010-05-28 : new tables that include the ok_min/max_mean_absolute value -2010-05-28 : reverted file name construction to use first/last time. BUT added precision for daily and higher frequencies -2010-05-28 : fixed a bug in cmor checker when variable entry was "pop" would break -2010-05-28 : fixed default values of noerror in script from True to cmor.CMOR_CRITICAL -2010-05-27 : switch version tagging from svn to git -2010-05-27 : fixed abug in test patch number of NetCDF3 version i was using = instead of == -2010-05-25 : trying a new way to store date in file names for Jamie. Probably going to be reverted -2010-05-24 : changed the way the final file name is constructed, uses time bounds if present, otherwise as before uses time values -2010-05-20 : tagging RC9 -2010-05-20 : fixed a bug in python interface when converting zfactor bounds array from 2D to the required 1D. -2010-05-20 : "changed sign" was always written in history even when not necessary. Fixed -2010-05-20 : newer tables -2010-05-12 : CMIP5_fx add time dependency, fixed -2010-05-12 : user could pass any calendar name! Now has to match valid ones! -2010-05-11 : updated tables -2010-05-11 : created a xls2csv script MUCH improved my life when Karl changes tables from now on. -2010-05-11 : sigma coord and irregular girds: implemented -2010-05-11 : cmor_close now preserves the original variable id -2010-05-11 : cmor_zfactor MUST have values if zfactor is not time dependent -2010-04-29 : updated repo to git -2010-04-27 : updated examples to reflect new required things -2010-04-27 : colored Makefile output for fortran testing, makes it eaiser to see what's being tested -2010-04-27 : API changes for Jamie, close_variable can now preserve a variable and redefine it for later use (new file) by user. See doc and test_python_max_variables_2.py for details. -2010-04-27 : when creating new variable, looks for the first available in the list instead of always adding one. This helps preventing users to run into "maximum number of variables" when opeing/closing a lot of files. See test_python_max_variables.py for details. -2010-04-27 : model_id must now match begining of source if CMIP5 -2010-04-27 : institute_id is now required in tables -2010-04-27 : changed history from "reverted axes" to "inverted axis" -2010-04-27 : "hyphenized model_id has nor more "-" at the end -2010-04-27 : comment: original_table_comment changed to [project_id]_table_comment where [project_id] is what the table specifies -2010-04-27 : "singleton" replaced with "scalr" in history output -2010-04-27 : zfactor_bnds are now reverted if needed. -2010-04-27 : "height" scalar dimension is now defined in the file BEFORE the actual variable (so it looks better on an ncdump) -2010-04-27 : "converted type to" was written only to the the last variable (multiple times) instead of the correct variable(s) -2010-04-21 : fixed appendix in doc to reflect newest values of include files -2010-04-21 : fixed ippc_test_code.f90 that somehow stayed CMOR1 for the most part -2010-04-15 : reverted axes did not result in flipping data! -2010-04-02 : updated all examples FORTRAN, C and Python to run with newer tables -2010-04-02 : allowed user to pass 1D bounds for time in cmor.write in Python, automagically converts to 2D -2010-04-02 : updated tables -2010-04-02 : contact is now required (that might change...) -2010-04-02 : removed a test that was wrong and was allowing to define variable with wrong dimension (as long as axis (T) attribute matched) -2010-04-01 : fixed associated_files attribute, the file names are now constructed correctly -2010-03-31 : non_standard calendar must have "non_standard" as calendar name -2010-03-25 : value of forcing is now checked and returns a CRITICAL_ERROR if wrong -2010-03-25 : added parent_Experiment to list of required_global attributes in table -2010-03-24 : fixed a bug when user was declaring multiple zfactor with same name -2010-03-24 : fixed issue for alternate hybrid level being stored as infinite -2010-03-22 : fixed configure with Jamie's patch -2010-03-22 : fixed alternate_hybrid_sigma code thx to Joerg for spotting the bug -2010-03-22 : fixed a bug in definition of alternate_hybrid_sigma in tables -2010-03-19 : fixed bug when starting from appending file, wasn't reseting the "last_time" written, this caused error when writing time values less than the default -999 -2010-03-19 : fixed configure to always add -lm since it wans't added in case of NetCDF3 libary use -2010-03-16 : cleaned test_sophie , some int wasn't intialized -2010-03-16 : Python interface now checks that the data passed somewhat check the expected shape (ignores 1 length dims) -2010-03-12 : cleaned up configure, thx to Stephen Pascoe -2010-03-12 : works for windows messed up files. But the md5 will probably come out wrong in that case -2010-03-12 : tweaked grid table to remove some attributes -2010-03-12 : check validity of parent_experiment_id -2010-03-09 : Now accepting "generic" exp_ids ending with YYYYMMDDHH -2010-03-09 : Storing md5 for Tables used by user, this should help detecting "tweaking of tables" -2010-03-04 : 'rip' convention is now in place no matter if physics_method and _nitialisation_method' are passed or not -2010-03-04 : file suffix no longer allowed for table made for cmor 2.0 and up -2010-03-04 : associated_files attribute is now smart enough to use areacell/volumcell in agreement with cell_measures attribute -2010-03-04 : appending to file fixed, was broken becasue of new DRS -2010-03-04 : axis flipping no checks first vs last values not just first and second, in case we have a bunch of 0. to start. -2010-02-23 : if a critical error happens during cmor_write or cmor_close_variable cleans up the file it was trying to produce -2010-02-23 : cleans up cvalues if they were malloced -2010-02-22 : links against either NetCDF4 or NetCDF3 -2010-02-19 : if ref variable defines "positive" and user does not pass it to cmor_variable, changed from WARNING to CRITICAL error[:] -2010-02-19 : checking that "output" directory is indeed a directory and that you have read/write permissions to it -2010-02-19 : added more experiement ids to tables -2010-02-19 : added a note in install file about not mixing 32bit and 64bit compilers (mac transition to 10.6) -2010-02-18 : fixed a bug with variable not being completely cleared after closing/setup. -2010-02-18 : added possibility of "cell_measures" attribute. -2010-02-18 : fixed MAJOR bug with grids, all reference tables were mixed, it was a miracle it even worked on examples. -2010-02-17 : added Tables/CMIP5_grids file that contains "irregular" grid informations -2010-02-17 : fixed bug when comparing exp_id with the ones in the table -2010-02-17 : fixed "must have bounds check" was returning an error when user was sending time values via axis definition. -2010-02-17 : do not store "positive" attribute on variables any longer. -2010-02-16 : fixed tables_generator and updated tables -2010-02-09 : cleaned-up table genrators add_dims2.txt -2010-02-09 : for "region" (char) coordinates, now recognizes "coords_attrib" table definiton which defines name of the coordinate variable (still geo_'coord' if not defined) -2010-02-01 : removed warnings in _cmormodule.c -2010-02-01 : fixed error in cf3hr table -2010-02-01 : fixed a small leak in python wrapper -2010-02-01 : added some python example to the test suite -2010-01-28 : fixed add_dims.txt (hybrid stuff) tables -2010-01-28 : zfactors can now reference to axis values in formula -2010-01-20 : fixed tables generator. Dims are not repeated anymore. fixed "climatology" keyword for dime time2 -2010-01-17 : add "eq" unit to udunits2 not convertible to anything, but won't die when reading in from tables -2010-01-15 : newer table containing ocean sigma coords and some updtes from Karl -2010-01-06 : added option to turn off coloring : --disable-color -2010-01-05 : reset default values for shuffle/deflate/defalte_level to 0 (can be changed via table) -2010-01-05 : fixed table generator to replace zlevel with appropriate alevel or olevel -2010-01-05 : added colors to output to easily spot error and warnings -2010-01-04 : added traceback through C calls -2009-12-22 : model_id can now contain any character BUT they will be converted to "-" in directory structure -2009-12-22 : exposed cmor_set_cur_dataset_attribute -2009-12-22 : newer set of tables -2009-12-22 : documented above changes into CMOR users guide -2009-11-25 : updated acknowledgment -2009-11-25 : history is not copied over multiple times any longer -2009-11-25 : CMOR checker now checks for file directory structure -2009-11-23 : updated documentation to reflect nvertices argument to Fortran and python. Also added this optional arg to python -2009-11-23 : fixed bug for python wrapper that had the missing_value converted to the wrong type -2009-11-22 : preserve mode fixed (can't know the name of the final file until closing, it now checks then as well) -2009-11-22 : time varying grids are now accepted, see cmor_time_varying_grid_coordinate new function -2009-11-22 : put back in use of nc-config at build time, which should allow for misc builds of netcdf -2009-11-10 : allowed fortran to write fixed field (no time) w/o passing ntimes_passed=0 -2009-11-10 : now catching grid defined with time varying axes, not allowed at the moment -2009-11-10 : fixed bug spoted by Kostas, when zfactor axis was created w/o bounds extra attributes were added to the previous dimension -2009-11-10 : improved error messages when incompatible units in cmor_axes and cmor_variables -2009-11-09 : updated python interface's keywords for cmor.variable: axes is now axis_ids and missing is now missing_value, this make it the same as C and Fortran versions -2009-11-05 : unique id generated by uuid is now different fr each file (instead of being the same for every var generated nder a call to cmor_dataset). Appending to files will now change the tracking_id (uuid) number -2009-11-05 : cmor_create_output_directory now return 1 in C only if the variable is a fixed frequency, no changes for Fortran and Python -2009-11-05 : 30min frequency renamed "subhr" -2009-11-05 : examples adapted to reflect new directory/names structure -2009-11-05 : "output" directory added to directory structure between "project_id" and "institution_id" dirs, to prepare for future "derived" products -2009-11-05 : Newer CMOR tables -2009-11-05 : fixed fields are stored under realization "0" no matter which realization number is passed -2009-11-05 : "fixed" is now "fx" -2009-11-05 : removed area from cmor_grid, it is now supposed to be stored in a separate file -2009-11-05 : updated "associated_files" to point to the gridspec/cellArea/cellVolume files + baseURL instead of "self" -2009-10-20 : fixed paramters type for fortran they used to be real where integer was needed -2009-10-15 : Patch from Jamie Kettleborough that fixes a bug in cmor.write that was returning incomplete bounds -2009-08-25 : Fixed a bug with cell_method that would always add interval even if user did not pass it. -2009-08-25 : Updated documenation of cmor_write to reflect the cell_method order difference in Fortran vs C/Python -2009-08-25 : fixed a bug with python interface when passing 1 time slice bounds only. -2009-08-25 : nc-config flags are different from 1 version unitl another, so until it is stabalized, commented code out -2009-08-25 : Fixed a typo in doc of cmor_setup -2009-08-24 : Tagged as release candidate 3 -2009-08-24 : Fixed a bug with realms being mangled with memory while construcitng path, added jamie's test for it -2009-08-24 : Edited configure.ac to take advantage of nc-config if present -2009-08-24 : Added this file RELEASES-NOTES diff --git a/Test/3D_txy.input b/Test/3D_txy.input deleted file mode 100644 index a28b89a60e244173a0272ef6eb554b2bbfd838fb..0000000000000000000000000000000000000000 --- a/Test/3D_txy.input +++ /dev/null @@ -1 +0,0 @@ -Test/tas_mytest_reorder.asc diff --git a/Test/3D_txy_split_lon.input b/Test/3D_txy_split_lon.input deleted file mode 100644 index 3fbc5678829ae904b38ce7598a9cc765d39befca..0000000000000000000000000000000000000000 --- a/Test/3D_txy_split_lon.input +++ /dev/null @@ -1 +0,0 @@ -Test/tas_mytest_reorder_split_lon.asc diff --git a/Test/3D_xty_split_lon.input b/Test/3D_xty_split_lon.input deleted file mode 100644 index c1ccd197f04c19071308ee7a7b05038132c9917d..0000000000000000000000000000000000000000 --- a/Test/3D_xty_split_lon.input +++ /dev/null @@ -1 +0,0 @@ -Test/tas_3D_xty_-180_180.asc diff --git a/Test/CMIP5_Amon_YYYYMMDDHH b/Test/CMIP5_Amon_YYYYMMDDHH deleted file mode 100644 index 0b7d8c3a172fe3ca9d3585df16411ec3efbb19c5..0000000000000000000000000000000000000000 --- a/Test/CMIP5_Amon_YYYYMMDDHH +++ /dev/null @@ -1,2080 +0,0 @@ -table_id: Table Amon -modeling_realm: atmos - -frequency: mon - -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 05 March 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id ! space separated required global attribute parent_experiment_id branch_time - -expt_id_ok: '10- or 30-year run initialzed at YYYYMMDDHH' 'mytestYYYYMMDDHH' - - -approx_interval: 30.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0 -valid_max: 360 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90 -valid_max: 90 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: plevs -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -tolerance: 0.001 - -type: double -requested: 100000. 92500. 85000. 70000. 60000. 50000. 40000. 30000. 25000. 20000. 15000. 10000. 7000. 5000. 3000. 2000. 1000. ! space-separated list of requested coordinates -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: alevbnds -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -axis: Z ! X, Y, Z, T (default: undeclared) -long_name: atmospheric model half-level -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: increasing -type: double -must_have_bounds: no -index_only: ok -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time2 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -climatology: yes -!---------------------------------- -! - - -!============ -axis_entry: height2m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1 -valid_max: 10 -stored_direction: increasing -type: double -value: 2. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: height10m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1 -valid_max: 30 -stored_direction: increasing -type: double -value: 10. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - -!============ -axis_entry: smooth_level -!============ -! -! This coordinate is a hybrid height coordinate with units of meters (m). -! It increases upward. -! The values of a(k)*ztop, which appear in the formula below, should be stored as smooth_level. -! Note that in the netCDF file the variable will be named "lev", not smooth_level. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sleve_coordinate -units: m -axis: Z -positive: up -long_name: atmosphere smooth level vertical (SLEVE) coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: -200. -valid_max: 800000. -formula: z(n,k,j,i) = a(k)*ztop + b1(k)*zsurf1(n,j,i) + b2(k)*zsurf2(n,j,i) -z_factors: a: a b1: b1 b2: b2 ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -z_bounds_factors: a: a_bnds b1: b1_bnds b2: b2_bnds ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -!---------------------------------- -! -!============ -axis_entry: natural_log_pressure -!============ -! -!This coordinate is dimensionless and varies from near 0 at the surface and increases upward. -! The values of lev(k), which appears in the formula below, should be stored as natural_log_pressure. -! Note that in the netCDF file the variable will be named "lev", not natural_log_pressure. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_ln_pressure_coordinate -axis: Z -long_name: atmosphere natural log pressure coordinate -positive: down -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 20. -formula: p(k) = p0 * exp(-lev(k)) -z_factors: p0: p0 lev: lev -z_bounds_factors: p0: p0 lev: lev_bnds -!---------------------------------- -! -!============ -axis_entry: standard_sigma -!============ -! -! This coordinate is dimensionless and varies from 0 at the model top to 1.0 at the surface. -! The values of sigma(k), which appears in the formula below, should be stored as standard_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -z_factors: ptop: ptop sigma: lev ps: ps -z_bounds_factors: ptop: ptop sigma: lev_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of a(k)+ b(k), which appear in the formula below, should be stored as standard_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_hybrid_sigma. -! -!--------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of ap(k)/p0 + b(k), which appear in the formula below, should be stored as alternate_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not alternate_hybrid_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -z_factors: p0: p0 ap: ap b: b ps: ps -z_bounds_factors: p0 ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! This coordinate has dimension of meters (m) and increases upward. -! The values of a(k) which appear in the formula below, should be stored as hybrid_height. -! Note that in the netCDF file the variable will be named "lev", not hybrid_height. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0.0 -formula: z(k,j,i) = a(k) + b(k)*orog(j,i) -z_factors: a: lev b: b orog: orog -z_bounds_factors: a: lev_bnds b: b_bnds orog: orog -!---------------------------------- -! -! *************************************************************** -! -! Vertical coordinate formula terms: -! -! *************************************************************** -! -! -!============ -variable_entry: orog -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -comment: height above the geoid; as defined here, ""the geoid"" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Report here the height above the present-day geoid. Over ocean, report as 0.0 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: orog -type: real -valid_min: -700 -valid_max: 1.00E+04 -!---------------------------------- -! -! -!============ -variable_entry: p0 -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: reference pressure -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -! -!============ -variable_entry: a -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k+1/2) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ztop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: height of top of model -units: m -!---------------------------------- -! -! -! - -!============ -variable_entry: tas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Near-Surface Air Temperature -comment: near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tas -type: real -!---------------------------------- -! - -!============ -variable_entry: ts -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: mean -long_name: Surface Temperature -comment: ""skin"" temperature (i.e., SST for open ocean) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ts -type: real -!---------------------------------- -! - -!============ -variable_entry: tasmin -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: minimum within days time: mean over time -long_name: Daily Minimum Near-Surface Air Temperature -comment: monthly mean of the daily-minimum near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tasmin -type: real -!---------------------------------- -! - -!============ -variable_entry: tasmax -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: maximum within days time: mean over time -long_name: Daily Maximum Near-Surface Air Temperature -comment: monthly mean of the daily-maximum near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tasmax -type: real -!---------------------------------- -! - -!============ -variable_entry: psl -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -long_name: Sea Level Pressure -comment: not, in general, the same as surface pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: psl -type: real -!---------------------------------- -! - -!============ -variable_entry: ps -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: mean -long_name: Surface Air Pressure -comment: not, in general, the same as mean sea-level pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ps -type: real -!---------------------------------- -! - -!============ -variable_entry: uas -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Eastward Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) eastward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: uas -type: real -!---------------------------------- -! - -!============ -variable_entry: vas -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Northward Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) northward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: vas -type: real -!---------------------------------- -! - -!============ -variable_entry: sfcWind -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: wind_speed -units: m s-1 -cell_methods: time: mean -long_name: Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) wind speed. This is the mean of the speed, not the speed computed from the mean u and v components of wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: sfcWind -type: real -!---------------------------------- -! - -!============ -variable_entry: hurs -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: mean -long_name: Near-Surface Relative Humidity -comment: near-surface (usually, 2meters) relative humidity expressed as a percentage. This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: hurs -type: real -!---------------------------------- -! - -!============ -variable_entry: huss -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -long_name: Near-Surface Specific Humidity -comment: near-surface (usually, 2 meters) specific humidity. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: huss -type: real -!---------------------------------- -! - -!============ -variable_entry: pr -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation -comment: at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: pr -type: real -!---------------------------------- -! - -!============ -variable_entry: prsn -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: snowfall_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Snowfall Flux -comment: at surface; includes precipitation of all forms of water in the solid phase -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prsn -type: real -!---------------------------------- -! - -!============ -variable_entry: prc -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Convective Precipitation -comment: at surface; includes both liquid and solid phases. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prc -type: real -!---------------------------------- -! - -!============ -variable_entry: evspsbl -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Evaporation -comment: at surface; flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: evspsbl -type: real -!---------------------------------- -! - -!============ -variable_entry: sbl -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_sublimation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Surface Snow and Ice Sublimation Flux -comment: The snow and ice sublimation flux is the loss of snow and ice mass from the surface resulting from their conversion to water vapor that enters the atmosphere. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: sbl -type: real -!---------------------------------- -! - -!============ -variable_entry: tauu -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_eastward_stress -units: Pa -cell_methods: time: mean -long_name: Surface Downward Eastward Wind Stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tauu -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: tauv -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_northward_stress -units: Pa -cell_methods: time: mean -long_name: Surface Downward Northward Wind Stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tauv -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: hfls -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfss -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Sensible Heat Flux -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfss -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlds -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlds -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rlus -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlus -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsds -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsds -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsus -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsus -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsdscs -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsdscs -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsuscs -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsuscs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rldscs -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rldscs -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsdt -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_incoming_shortwave_flux -units: W m-2 -cell_methods: time: mean -long_name: TOA Incident Shortwave Radiation -comment: incident shortwave at the top of the atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsdt -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsut -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux -units: W m-2 -cell_methods: time: mean -long_name: TOA Outgoing Shortwave Radiation -comment: at the top of the atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsut -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlut -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux -units: W m-2 -cell_methods: time: mean -long_name: TOA Outgoing Longwave Radiation -comment: at the top of the atmosphere (to be compared with satellite measurements) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlut -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlutcs -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: TOA Outgoing Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlutcs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsutcs -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: TOA Outgoing Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsutcs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: prw -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_water_vapor_content -units: kg m-2 -cell_methods: time: mean -long_name: Water Vapor Path -comment: vertically integrated through the atmospheric column -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prw -type: real -!---------------------------------- -! - -!============ -variable_entry: clt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -long_name: Total Cloud Fraction -comment: for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clt -type: real -!---------------------------------- -! - -!============ -variable_entry: clwvi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_condensed_water_content -units: kg m-2 -cell_methods: time: mean -long_name: Condensed Water Path -comment: calculate mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clwvi -type: real -!---------------------------------- -! - -!============ -variable_entry: clivi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_ice_content -units: kg m-2 -cell_methods: time: mean -long_name: Ice Water Path -comment: calculate mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Include precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clivi -type: real -!---------------------------------- -! - -!============ -variable_entry: rtmt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_downward_radiative_flux_at_top_of_atmosphere_model -units: W m-2 -cell_methods: time: mean -long_name: Net Downward Flux at Top of Model -comment: i.e., at the top of that portion of the atmosphere where dynamics are explicitly treated by the model. Report only if this differs from the net downward radiative flux at the top of the atmosphere. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rtmt -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: ccb -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_convective_cloud_base -units: Pa -cell_methods: time: mean -long_name: Air Pressure at Convective Cloud Base -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ccb -type: real -!---------------------------------- -! - -!============ -variable_entry: cct -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_convective_cloud_top -units: Pa -cell_methods: time: mean -long_name: Air Pressure at Convective Cloud Top -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cct -type: real -!---------------------------------- -! - -!============ -variable_entry: ci -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: 1 -cell_methods: time: mean -long_name: Fraction of Time Convection Occurs -comment: Fraction of time that convection occurs in the grid cell . -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ci -type: real -!---------------------------------- -! - -!============ -variable_entry: sci -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: 1 -cell_methods: time: mean -long_name: Fraction of Time Shallow Convection Occurs -comment: Fraction of time that shallow convection occurs in the grid cell. ( For models with a distinct shallow convection scheme only) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: sci -type: real -!---------------------------------- -! - -!============ -variable_entry: fco2antt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg C m-2 s-1 -cell_methods: time: mean -long_name: Total Anthropogenic CO2 Flux (All Emissions) -comment: This is requested only for the emission-driven coupled carbon climate model runs. Do not include natural fire sources, but include all anthropogenic sources, including fossil fuel use, cement production, agricultural burning, and all sources associated with anthropogenic land use change. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fco2antt -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fco2fos -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg C m-2 s-1 -cell_methods: time: mean -long_name: Fossil Fuel Anthropogenic CO2 Flux (Fossil Fuel Emissions) -comment: This is requested only for the emission-driven coupled carbon climate model runs. Report the prescribed anthropogenic CO2 flux from fossil fuel use. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fco2fos -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fco2nat -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg C m-2 s-1 -cell_methods: time: mean -long_name: Natural Net Surface Flux of CO2 into The Atmosphere -comment: Report from all simulations (both emission-driven and concentration-driven) performed by models with fully interactive and responsive carbon cycles. This is what the atmosphere sees (on its own grid). This field should be equivalent to the combined natural fluxes of carbon (requested in the L_mon and O_mon tables) that account for natural exchanges between the atmosphere and land or ocean reservoirs (i.e., ""net biospheric productivity"", for land, and ""air to sea CO2 flux"", for ocean.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fco2nat -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: cl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: mean -long_name: Cloud Area Fraction -comment: Report on model layers (not standard pressures). Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: cl -type: real -!---------------------------------- -! - -!============ -variable_entry: clw -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_cloud_liquid_water_in_air -units: 1 -cell_methods: time: mean -long_name: Mass Fraction of Cloud Liquid Water -comment: Report on model layers (not standard pressures). Include both large-scale and convective cloud. Calculate as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cells. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: clw -type: real -!---------------------------------- -! - -!============ -variable_entry: cli -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_cloud_ice_in_air -units: 1 -cell_methods: time: mean -long_name: Mass Fraction of Cloud Ice -comment: Report on model layers (not standard pressures). Include both large-scale and convective cloud. Calculate as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: cli -type: real -!---------------------------------- -! - -!============ -variable_entry: mc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_convective_mass_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Convective Mass Flux -comment: Report on model half-levels (i.e., model layer bounds and not standard pressures). The atmosphere convective mass flux is the vertical transport of mass for a field of cumulus clouds or thermals, given by the product of air density and vertical velocity. The flux is computed as the mass divided by the area of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevbnds time -out_name: mc -type: real -!---------------------------------- -! - -!============ -variable_entry: ta -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: ta -type: real -!---------------------------------- -! - -!============ -variable_entry: ua -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Eastward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: ua -type: real -!---------------------------------- -! - -!============ -variable_entry: va -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Northward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: va -type: real -!---------------------------------- -! - -!============ -variable_entry: hus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -long_name: Specific Humidity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: hus -type: real -!---------------------------------- -! - -!============ -variable_entry: hur -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: mean -long_name: Relative Humidity -comment: This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: hur -type: real -!---------------------------------- -! - -!============ -variable_entry: wap -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: lagrangian_tendency_of_air_pressure -units: Pa s-1 -cell_methods: time: mean -long_name: omega (=dp/dt) -comment: commonly referred to as ""omega"", this represents the vertical component of velocity in pressure coordinates (positive down) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: wap -type: real -!---------------------------------- -! - -!============ -variable_entry: zg -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: geopotential_height -units: m -cell_methods: time: mean -long_name: Geopotential Height -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: zg -type: real -!---------------------------------- -! - -!============ -variable_entry: tro3 -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_ozone_in_air -units: 1e-9 -cell_methods: time: mean -long_name: Mole Fraction of O3 -comment: If this does not change over time (except possibly to vary identically over each annual cycle), report instead the variable described in the next table entry. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: tro3 -type: real -!---------------------------------- -! - -!============ -variable_entry: tro3Clim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_ozone_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -long_name: Mole Fraction of O3 -comment: If O3 does not vary from one year to the next, report 12 months, starting with January. (Note: include all 12 months even if the values don't vary seasonally.) When calling CMOR, identify this variable as tro3Clim, not tro3. If the O3 varies from one year to the next, then report instead the field described in the previous table entry. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: tro3 -type: real -!---------------------------------- -! - -!============ -variable_entry: co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_carbon_dioxide_in_air -units: 1e-6 -cell_methods: time: mean -long_name: Mole Fraction of CO2 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If spatially uniform, omit this field, but report Total Atmospheric Mass of CO2 (see the table entry after the next one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: co2 -type: real -!---------------------------------- -! - -!============ -variable_entry: co2Clim -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_carbon_dioxide_in_air -units: 1e-6 -cell_methods: time: mean within years time: mean over years -long_name: Mole Fraction of CO2 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CO2 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as co2Clim, not co2. If CO2 is spatially uniform, omit this field, but report Total Atmospheric Mass of CO2 (see the table entry after the next). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: co2 -type: real -!---------------------------------- -! - -!============ -variable_entry: co2mass -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg -cell_methods: time: mean -long_name: Total Atmospheric Mass of CO2 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If CO2 is spatially nonuniform, omit this field, but report Mole Fraction of CO2 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: co2mass -type: real -!---------------------------------- -! - -!============ -variable_entry: co2massClim -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg -cell_methods: time: mean within years time: mean over years -long_name: Total Atmospheric Mass of CO2 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CO2 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as co2massClim, not co2mass. If CO2 is spatially nonuniform, omit this field, but report Mole Fraction of CO2 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time2 -out_name: co2mass -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4 -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean -long_name: Mole Fraction of CH4 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If CH4 is spatially uniform, omit this field, but report Global Mean Mole Fraction of CH4 (see the table entry after the next one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: ch4 -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4 -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -long_name: Mole Fraction of CH4 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CH4 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as ch4global, not ch4. If CH4 is spatially uniform, omit this field, but report Global Mean Mole Fraction of CH4 (see the table entry after the next). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: ch4 -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4global -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean -long_name: Global Mean Mole Fraction of CH4 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If CH4 is spatially nonuniform, omit this field, but report Mole Fraction of CH4 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: ch4global -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4globalClim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -long_name: Global Mean Mole Fraction of CH4 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CH4 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as ch4globalClim, not ch4global. If CH4 is spatially nonuniform, omit this field, but report Global Mean Mole Fraction of CH4 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time2 -out_name: ch4global -type: real -!---------------------------------- -! - -!============ -variable_entry: n2o -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean -long_name: Mole Fraction of N2O -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If N2O is spatially uniform, omit this field, but report Global Mean Mole Fraction of N2O (see the table entry after the next one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: n2o -type: real -!---------------------------------- -! - -!============ -variable_entry: n2oClim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -long_name: Mole Fraction of N2O -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the N2O does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as n2oglobal, not n2o. If N2O is spatially uniform, omit this field, but report Global Mean Mole Fraction of N2O (see the table entry after the next). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: n2o -type: real -!---------------------------------- -! - -!============ -variable_entry: n2oglobal -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean -long_name: Global Mean Mole Fraction of N2O -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If N2O is spatially nonuniform, omit this field, but report Mole Fraction of N2O (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: n2oglobal -type: real -!---------------------------------- -! - -!============ -variable_entry: n2oglobalClim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -long_name: Global Mean Mole Fraction of N2O -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the N2O does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as ch4globalClim, not ch4global. If N2O is spatially nonuniform, omit this field, but report Global Mean Mole Fraction of N2O (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time2 -out_name: n2oglobal -type: real -!---------------------------------- -! - - -!============ -variable_entry: pfull -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -cell_methods: time: mean within years time: mean over years -long_name: Pressure on Model Levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time2 -out_name: pfull -type: real -!---------------------------------- -! - -!============ -variable_entry: phalf -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -cell_methods: time: mean within years time: mean over years -long_name: Pressure on Model Half-Levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevbnds time2 -out_name: phalf -type: real -!---------------------------------- -! - diff --git a/Test/CMIP5_Amons b/Test/CMIP5_Amons deleted file mode 100644 index e3df49a95bf533ba4500e2d3d784d4d1176c3511..0000000000000000000000000000000000000000 --- a/Test/CMIP5_Amons +++ /dev/null @@ -1,10929 +0,0 @@ -table_id: Table Amon -modeling_realm: atmos - -frequency: mon - -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 30 March 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id branch_time contact ! space separated required global attribute - -forcings: N/A Nat Ant GHG SD SI SA TO SO Oz LU Sl Vl SS Ds BC MD OC AA - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'volcano-free hindcasts XXXX' 'noVolcXXXX' -expt_id_ok: 'prediction with 2010 volcano' 'volcIn2010' -expt_id_ok: 'pre-industrial control' 'piControl' -expt_id_ok: 'Historical' 'historical' -expt_id_ok: 'mid-Holocene' 'midHolocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.6' 'rcp26' -expt_id_ok: 'RCP6' 'rcp60' -expt_id_ok: 'ESM pre-industrial control' 'esmControl' -expt_id_ok: 'ESM historical' 'esmHistorical' -expt_id_ok: 'ESM RCP8.5' 'esmrcp85' -expt_id_ok: 'ESM fixed climate 1' 'esmFixClim1' -expt_id_ok: 'ESM fixed climate 2' 'esmFixClim2' -expt_id_ok: 'ESM feedback 1' 'esmFdbk1' -expt_id_ok: 'ESM feedback 2' 'esmFdbk2' -expt_id_ok: '1 percent per year CO2' '1pctCO2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt4xCO2' -expt_id_ok: 'natural-only' 'historicalNat' -expt_id_ok: 'GHG-only' 'historicalGHG' -expt_id_ok: 'anthropogenic-only' 'historicalAnt' -expt_id_ok: 'anthropogenic sulfate aerosol direct effect only' 'historicalSD' -expt_id_ok: 'anthropogenic sulfate aerosol indirect effect only' 'historicalSI' -expt_id_ok: 'anthropogenic sulfate aerosol only' 'historicalSA' -expt_id_ok: 'tropospheric ozone only' 'historicalTO' -expt_id_ok: 'stratospheric ozone' 'historicalSO' -expt_id_ok: 'ozone only' 'historicalOz' -expt_id_ok: 'land-use change only' 'historicalLU' -expt_id_ok: 'solar irradiance only' 'historicalSl' -expt_id_ok: 'volcanic aerosol only' 'historicalVl' -expt_id_ok: 'sea salt only' 'historicalSS' -expt_id_ok: 'dust' 'historicalDs' -expt_id_ok: 'black carbon only' 'historicalBC' -expt_id_ok: 'mineral dust only' 'historicalMD' -expt_id_ok: 'organic carbon only' 'historicalOC' -expt_id_ok: 'anthropogenic aerosols only' 'historicalAA' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst2030' -expt_id_ok: 'control SST climatology' 'sstClim' -expt_id_ok: 'CO2 forcing' 'sstClim4xCO2' -expt_id_ok: 'all aerosol forcing' 'sstClimAerosol' -expt_id_ok: 'sulfate aerosol forcing' 'sstClimSulfate' -expt_id_ok: '4xCO2 AMIP' 'amip4xCO2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amipFuture' -expt_id_ok: 'aqua planet control' 'aquaControl' -expt_id_ok: '4xCO2 aqua planet' 'aqua4xCO2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua4K' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip4K' - - -approx_interval: 30.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0 -valid_max: 360 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90 -valid_max: 90 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: plevs -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -tolerance: 0.001 - -type: double -requested: 100000. 92500. 85000. 70000. 60000. 50000. 40000. 30000. 25000. 20000. 15000. 10000. 7000. 5000. 3000. 2000. 1000. ! space-separated list of requested coordinates -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: alevhalf -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: atmospheric model half-level -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -type: double -must_have_bounds: no -index_only: ok -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time2 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -climatology: yes -!---------------------------------- -! - - -!============ -axis_entry: height2m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1 -valid_max: 10 -stored_direction: increasing -type: double -value: 2. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: height10m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1 -valid_max: 30 -stored_direction: increasing -type: double -value: 10. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - -!============ -axis_entry: smooth_level -!============ -! -! This coordinate is a hybrid height coordinate with units of meters (m). -! It increases upward. -! The values of a(k)*ztop, which appear in the formula below, should be stored as smooth_level. -! Note that in the netCDF file the variable will be named "lev", not smooth_level. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sleve_coordinate -units: m -axis: Z -positive: up -long_name: atmosphere smooth level vertical (SLEVE) coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: -200. -valid_max: 800000. -formula: z(n,k,j,i) = a(k)*ztop + b1(k)*zsurf1(n,j,i) + b2(k)*zsurf2(n,j,i) -z_factors: a: a b1: b1 b2: b2 ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -z_bounds_factors: a: a_bnds b1: b1_bnds b2: b2_bnds ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -!---------------------------------- -! -!============ -axis_entry: natural_log_pressure -!============ -! -!This coordinate is dimensionless and varies from near 0 at the surface and increases upward. -! The values of lev(k), which appears in the formula below, should be stored as natural_log_pressure. -! Note that in the netCDF file the variable will be named "lev", not natural_log_pressure. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_ln_pressure_coordinate -axis: Z -long_name: atmosphere natural log pressure coordinate -positive: down -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 20. -formula: p(k) = p0 * exp(-lev(k)) -z_factors: p0: p0 lev: lev -z_bounds_factors: p0: p0 lev: lev_bnds -!---------------------------------- -! -!============ -axis_entry: standard_sigma -!============ -! -! This coordinate is dimensionless and varies from 0 at the model top to 1.0 at the surface. -! The values of sigma(k), which appears in the formula below, should be stored as standard_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -z_factors: ptop: ptop sigma: lev ps: ps -z_bounds_factors: ptop: ptop sigma: lev_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of a(k)+ b(k), which appear in the formula below, should be stored as standard_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_hybrid_sigma. -! -!--------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of ap(k)/p0 + b(k), which appear in the formula below, should be stored as alternate_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not alternate_hybrid_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -z_factors: ap: ap b: b ps: ps -z_bounds_factors: ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! This coordinate has dimension of meters (m) and increases upward. -! The values of a(k) which appear in the formula below, should be stored as hybrid_height. -! Note that in the netCDF file the variable will be named "lev", not hybrid_height. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0.0 -formula: z(k,j,i) = a(k) + b(k)*orog(j,i) -z_factors: a: lev b: b orog: orog -z_bounds_factors: a: lev_bnds b: b_bnds orog: orog -!---------------------------------- -! -! *************************************************************** -! -! Vertical coordinate formula terms: -! -! *************************************************************** -! -! -!============ -variable_entry: orog -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -comment: height above the geoid; as defined here, ""the geoid"" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Report here the height above the present-day geoid. Over ocean, report as 0.0 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: orog -type: real -valid_min: -700 -valid_max: 1.00E+04 -!---------------------------------- -! -! -!============ -variable_entry: p0 -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: reference pressure -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -! -!============ -variable_entry: a -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k+1/2) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ztop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: height of top of model -units: m -!---------------------------------- -! -! -! - -!============ -variable_entry: tas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Near-Surface Air Temperature -comment: near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tas -type: real -!---------------------------------- -! - -!============ -variable_entry: ts -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Surface Temperature -comment: ""skin"" temperature (i.e., SST for open ocean) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ts -type: real -!---------------------------------- -! - -!============ -variable_entry: tasmin -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: minimum within days time: mean over days -long_name: Daily Minimum Near-Surface Air Temperature -comment: monthly mean of the daily-minimum near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tasmin -type: real -!---------------------------------- -! - -!============ -variable_entry: tasmax -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: maximum within days time: mean over days -long_name: Daily Maximum Near-Surface Air Temperature -comment: monthly mean of the daily-maximum near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tasmax -type: real -!---------------------------------- -! - -!============ -variable_entry: psl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -long_name: Sea Level Pressure -comment: not, in general, the same as surface pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: psl -type: real -!---------------------------------- -! - -!============ -variable_entry: ps -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: mean -long_name: Surface Air Pressure -comment: not, in general, the same as mean sea-level pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ps -type: real -!---------------------------------- -! - -!============ -variable_entry: uas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Eastward Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) eastward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: uas -type: real -!---------------------------------- -! - -!============ -variable_entry: vas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Northward Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) northward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: vas -type: real -!---------------------------------- -! - -!============ -variable_entry: sfcWind -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: wind_speed -units: m s-1 -cell_methods: time: mean -long_name: Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) wind speed. This is the mean of the speed, not the speed computed from the mean u and v components of wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: sfcWind -type: real -!---------------------------------- -! - -!============ -variable_entry: hurs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: mean -long_name: Near-Surface Relative Humidity -comment: near-surface (usually, 2meters) relative humidity expressed as a percentage. This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: hurs -type: real -!---------------------------------- -! - -!============ -variable_entry: huss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -long_name: Near-Surface Specific Humidity -comment: near-surface (usually, 2 meters) specific humidity. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: huss -type: real -!---------------------------------- -! - -!============ -variable_entry: pr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation -comment: at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: pr -type: real -!---------------------------------- -! - -!============ -variable_entry: prsn -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: snowfall_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Snowfall Flux -comment: at surface; includes precipitation of all forms of water in the solid phase -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prsn -type: real -!---------------------------------- -! - -!============ -variable_entry: prc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Convective Precipitation -comment: at surface; includes both liquid and solid phases. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prc -type: real -!---------------------------------- -! - -!============ -variable_entry: evspsbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Evaporation -comment: at surface; flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: evspsbl -type: real -!---------------------------------- -! - -!============ -variable_entry: sbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_sublimation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Surface Snow and Ice Sublimation Flux -comment: The snow and ice sublimation flux is the loss of snow and ice mass from the surface resulting from their conversion to water vapor that enters the atmosphere. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: sbl -type: real -!---------------------------------- -! - -!============ -variable_entry: tauu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_eastward_stress -units: Pa -cell_methods: time: mean -long_name: Surface Downward Eastward Wind Stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tauu -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: tauv -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_northward_stress -units: Pa -cell_methods: time: mean -long_name: Surface Downward Northward Wind Stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tauv -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: hfls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Sensible Heat Flux -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfss -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlds -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rlus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlus -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsds -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsus -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsdscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsdscs -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsuscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsuscs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rldscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rldscs -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsdt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_incoming_shortwave_flux -units: W m-2 -cell_methods: time: mean -long_name: TOA Incident Shortwave Radiation -comment: incident shortwave at the top of the atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsdt -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsut -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux -units: W m-2 -cell_methods: time: mean -long_name: TOA Outgoing Shortwave Radiation -comment: at the top of the atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsut -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlut -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux -units: W m-2 -cell_methods: time: mean -long_name: TOA Outgoing Longwave Radiation -comment: at the top of the atmosphere (to be compared with satellite measurements) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlut -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlutcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: TOA Outgoing Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlutcs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsutcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: TOA Outgoing Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsutcs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: prw -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_water_vapor_content -units: kg m-2 -cell_methods: time: mean -long_name: Water Vapor Path -comment: vertically integrated through the atmospheric column -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prw -type: real -!---------------------------------- -! - -!============ -variable_entry: clt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -long_name: Total Cloud Fraction -comment: for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clt -type: real -!---------------------------------- -! - -!============ -variable_entry: clwvi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_condensed_water_content -units: kg m-2 -cell_methods: time: mean -long_name: Condensed Water Path -comment: calculate mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clwvi -type: real -!---------------------------------- -! - -!============ -variable_entry: clivi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_ice_content -units: kg m-2 -cell_methods: time: mean -long_name: Ice Water Path -comment: calculate mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Include precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clivi -type: real -!---------------------------------- -! - -!============ -variable_entry: rtmt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_downward_radiative_flux_at_top_of_atmosphere_model -units: W m-2 -cell_methods: time: mean -long_name: Net Downward Flux at Top of Model -comment: i.e., at the top of that portion of the atmosphere where dynamics are explicitly treated by the model. Report only if this differs from the net downward radiative flux at the top of the atmosphere. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rtmt -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: ccb -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_convective_cloud_base -units: Pa -cell_methods: time: mean -long_name: Air Pressure at Convective Cloud Base -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ccb -type: real -!---------------------------------- -! - -!============ -variable_entry: cct -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_convective_cloud_top -units: Pa -cell_methods: time: mean -long_name: Air Pressure at Convective Cloud Top -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cct -type: real -!---------------------------------- -! - -!============ -variable_entry: ci -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: 1 -cell_methods: time: mean -long_name: Fraction of Time Convection Occurs -comment: Fraction of time that convection occurs in the grid cell . -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ci -type: real -!---------------------------------- -! - -!============ -variable_entry: sci -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: 1 -cell_methods: time: mean -long_name: Fraction of Time Shallow Convection Occurs -comment: Fraction of time that shallow convection occurs in the grid cell. ( For models with a distinct shallow convection scheme only) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: sci -type: real -!---------------------------------- -! - -!============ -variable_entry: fco2antt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2 -comment: This is requested only for the emission-driven coupled carbon climate model runs. Do not include natural fire sources, but include all anthropogenic sources, including fossil fuel use, cement production, agricultural burning, and sources associated with anthropogenic land use change excluding forest regrowth. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fco2antt -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fco2fos -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Carbon Mass Flux into Atmosphere Due to Fossil Fuel Emissions of CO2 -comment: This is requested only for the emission-driven coupled carbon climate model runs. Report the prescribed anthropogenic CO2 flux from fossil fuel use, including cement production, and flaring (but not from land-use changes, agricultural burning, forest regrowth, etc.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fco2fos -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fco2nat -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Surface Carbon Mass Flux into the Atmosphere Due to Natural Sources -comment: Report from all simulations (both emission-driven and concentration-driven) performed by models with fully interactive and responsive carbon cycles. This is what the atmosphere sees (on its own grid). This field should be equivalent to the combined natural fluxes of carbon (requested in the L_mon and O_mon tables) that account for natural exchanges between the atmosphere and land or ocean reservoirs (i.e., ""net ecosystem biospheric productivity"", for land, and ""air to sea CO2 flux"", for ocean.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fco2nat -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: cl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Cloud Area Fraction -comment: Report on model layers (not standard pressures). Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: cl -type: real -!---------------------------------- -! - -!============ -variable_entry: clw -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_cloud_liquid_water_in_air -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mass Fraction of Cloud Liquid Water -comment: Report on model layers (not standard pressures). Include both large-scale and convective cloud. Calculate as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cells. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: clw -type: real -!---------------------------------- -! - -!============ -variable_entry: cli -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_cloud_ice_in_air -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mass Fraction of Cloud Ice -comment: Report on model layers (not standard pressures). Include both large-scale and convective cloud. Calculate as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: cli -type: real -!---------------------------------- -! - -!============ -variable_entry: mc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_net_upward_convective_mass_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Convective Mass Flux -comment: Report on model half-levels (i.e., model layer bounds and not standard pressures). The net mass flux should represent the difference between the updraft and downdraft components. The flux is computed as the mass divided by the area of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: mc -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: ta -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: ta -type: real -!---------------------------------- -! - -!============ -variable_entry: ua -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Eastward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: ua -type: real -!---------------------------------- -! - -!============ -variable_entry: va -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Northward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: va -type: real -!---------------------------------- -! - -!============ -variable_entry: hus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Specific Humidity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: hus -type: real -!---------------------------------- -! - -!============ -variable_entry: hur -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Relative Humidity -comment: This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: hur -type: real -!---------------------------------- -! - -!============ -variable_entry: wap -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: lagrangian_tendency_of_air_pressure -units: Pa s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: omega (=dp/dt) -comment: commonly referred to as ""omega"", this represents the vertical component of velocity in pressure coordinates (positive down) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: wap -type: real -!---------------------------------- -! - -!============ -variable_entry: zg -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: geopotential_height -units: m -cell_methods: time: mean -cell_measures: area: areacella -long_name: Geopotential Height -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: zg -type: real -!---------------------------------- -! - -!============ -variable_entry: tro3 -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_ozone_in_air -units: 1e-9 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mole Fraction of O3 -comment: If this does not change over time (except possibly to vary identically over each annual cycle), report instead the variable described in the next table entry. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: tro3 -type: real -!---------------------------------- -! - -!============ -variable_entry: tro3Clim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_ozone_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Mole Fraction of O3 -comment: If O3 does not vary from one year to the next, report 12 months, starting with January. (Note: include all 12 months even if the values don't vary seasonally.) When calling CMOR, identify this variable as tro3Clim, not tro3. If the O3 varies from one year to the next, then report instead the field described in the previous table entry. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: tro3 -type: real -!---------------------------------- -! - -!============ -variable_entry: co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_carbon_dioxide_in_air -units: 1e-6 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mole Fraction of CO2 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If spatially uniform, omit this field, but report Total Atmospheric Mass of CO2 (see the table entry after the next one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: co2 -type: real -!---------------------------------- -! - -!============ -variable_entry: co2Clim -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_carbon_dioxide_in_air -units: 1e-6 -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Mole Fraction of CO2 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CO2 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as co2Clim, not co2. If CO2 is spatially uniform, omit this field, but report Total Atmospheric Mass of CO2 (see the table entry after the next). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: co2 -type: real -!---------------------------------- -! - -!============ -variable_entry: co2mass -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg -cell_methods: time: mean -long_name: Total Atmospheric Mass of CO2 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If CO2 is spatially nonuniform, omit this field, but report Mole Fraction of CO2 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: co2mass -type: real -!---------------------------------- -! - -!============ -variable_entry: co2massClim -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg -cell_methods: time: mean within years time: mean over years -long_name: Total Atmospheric Mass of CO2 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CO2 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as co2massClim, not co2mass. If CO2 is spatially nonuniform, omit this field, but report Mole Fraction of CO2 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time2 -out_name: co2mass -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4 -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mole Fraction of CH4 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If CH4 is spatially uniform, omit this field, but report Global Mean Mole Fraction of CH4 (see the table entry after the next one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: ch4 -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4 -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Mole Fraction of CH4 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CH4 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as ch4global, not ch4. If CH4 is spatially uniform, omit this field, but report Global Mean Mole Fraction of CH4 (see the table entry after the next). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: ch4 -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4global -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean -long_name: Global Mean Mole Fraction of CH4 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If CH4 is spatially nonuniform, omit this field, but report Mole Fraction of CH4 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: ch4global -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4globalClim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -long_name: Global Mean Mole Fraction of CH4 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CH4 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as ch4globalClim, not ch4global. If CH4 is spatially nonuniform, omit this field, but report Global Mean Mole Fraction of CH4 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time2 -out_name: ch4global -type: real -!---------------------------------- -! - -!============ -variable_entry: n2o -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mole Fraction of N2O -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If N2O is spatially uniform, omit this field, but report Global Mean Mole Fraction of N2O (see the table entry after the next one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: n2o -type: real -!---------------------------------- -! - -!============ -variable_entry: n2oClim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Mole Fraction of N2O -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the N2O does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as n2oglobal, not n2o. If N2O is spatially uniform, omit this field, but report Global Mean Mole Fraction of N2O (see the table entry after the next). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: n2o -type: real -!---------------------------------- -! - -!============ -variable_entry: n2oglobal -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean -long_name: Global Mean Mole Fraction of N2O -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If N2O is spatially nonuniform, omit this field, but report Mole Fraction of N2O (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: n2oglobal -type: real -!---------------------------------- -! - -!============ -variable_entry: n2oglobalClim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -long_name: Global Mean Mole Fraction of N2O -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the N2O does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as ch4globalClim, not ch4global. If N2O is spatially nonuniform, omit this field, but report Global Mean Mole Fraction of N2O (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time2 -out_name: n2oglobal -type: real -!---------------------------------- -! - - -!============ -variable_entry: pfull -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Pressure on Model Levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time2 -out_name: pfull -type: real -!---------------------------------- -! - -!============ -variable_entry: phalf -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Pressure on Model Half-Levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time2 -out_name: phalf -type: real -!---------------------------------- -! - -!============ -variable_entry: hfls0 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls0 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls1 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls1 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls2 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls3 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls3 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls4 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls4 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls5 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls5 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls6 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls6 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls7 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls7 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls8 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls8 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls9 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls9 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls10 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls10 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls11 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls11 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls12 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls12 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls13 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls13 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls14 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls14 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls15 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls15 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls16 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls16 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls17 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls17 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls18 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls18 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls19 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls19 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls20 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls20 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls21 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls21 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls22 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls22 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls23 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls23 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls24 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls24 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls25 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls25 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls26 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls26 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls27 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls27 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls28 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls28 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls29 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls29 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls30 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls30 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls31 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls31 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls32 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls32 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls33 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls33 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls34 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls34 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls35 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls35 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls36 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls36 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls37 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls37 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls38 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls38 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls39 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls39 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls40 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls40 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls41 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls41 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls42 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls42 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls43 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls43 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls44 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls44 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls45 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls45 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls46 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls46 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls47 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls47 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls48 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls48 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls49 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls49 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls50 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls50 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls51 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls51 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls52 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls52 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls53 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls53 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls54 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls54 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls55 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls55 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls56 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls56 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls57 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls57 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls58 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls58 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls59 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls59 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls60 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls60 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls61 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls61 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls62 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls62 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls63 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls63 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls64 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls64 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls65 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls65 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls66 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls66 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls67 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls67 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls68 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls68 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls69 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls69 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls70 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls70 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls71 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls71 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls72 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls72 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls73 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls73 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls74 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls74 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls75 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls75 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls76 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls76 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls77 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls77 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls78 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls78 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls79 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls79 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls80 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls80 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls81 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls81 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls82 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls82 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls83 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls83 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls84 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls84 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls85 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls85 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls86 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls86 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls87 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls87 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls88 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls88 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls89 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls89 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls90 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls90 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls91 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls91 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls92 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls92 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls93 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls93 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls94 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls94 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls95 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls95 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls96 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls96 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls97 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls97 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls98 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls98 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls99 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls99 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls100 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls100 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls101 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls101 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls102 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls102 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls103 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls103 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls104 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls104 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls105 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls105 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls106 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls106 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls107 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls107 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls108 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls108 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls109 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls109 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls110 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls110 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls111 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls111 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls112 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls112 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls113 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls113 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls114 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls114 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls115 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls115 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls116 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls116 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls117 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls117 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls118 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls118 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls119 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls119 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls120 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls120 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls121 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls121 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls122 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls122 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls123 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls123 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls124 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls124 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls125 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls125 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls126 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls126 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls127 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls127 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls128 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls128 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls129 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls129 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls130 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls130 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls131 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls131 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls132 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls132 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls133 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls133 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls134 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls134 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls135 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls135 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls136 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls136 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls137 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls137 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls138 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls138 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls139 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls139 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls140 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls140 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls141 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls141 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls142 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls142 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls143 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls143 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls144 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls144 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls145 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls145 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls146 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls146 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls147 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls147 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls148 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls148 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls149 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls149 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls150 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls150 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls151 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls151 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls152 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls152 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls153 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls153 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls154 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls154 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls155 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls155 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls156 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls156 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls157 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls157 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls158 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls158 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls159 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls159 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls160 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls160 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls161 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls161 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls162 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls162 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls163 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls163 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls164 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls164 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls165 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls165 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls166 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls166 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls167 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls167 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls168 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls168 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls169 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls169 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls170 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls170 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls171 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls171 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls172 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls172 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls173 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls173 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls174 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls174 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls175 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls175 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls176 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls176 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls177 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls177 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls178 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls178 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls179 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls179 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls180 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls180 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls181 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls181 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls182 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls182 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls183 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls183 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls184 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls184 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls185 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls185 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls186 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls186 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls187 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls187 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls188 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls188 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls189 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls189 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls190 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls190 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls191 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls191 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls192 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls192 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls193 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls193 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls194 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls194 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls195 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls195 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls196 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls196 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls197 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls197 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls198 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls198 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls199 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls199 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls200 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls200 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls201 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls201 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls202 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls202 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls203 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls203 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls204 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls204 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls205 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls205 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls206 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls206 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls207 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls207 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls208 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls208 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls209 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls209 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls210 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls210 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls211 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls211 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls212 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls212 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls213 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls213 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls214 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls214 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls215 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls215 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls216 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls216 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls217 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls217 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls218 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls218 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls219 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls219 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls220 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls220 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls221 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls221 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls222 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls222 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls223 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls223 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls224 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls224 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls225 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls225 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls226 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls226 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls227 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls227 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls228 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls228 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls229 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls229 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls230 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls230 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls231 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls231 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls232 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls232 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls233 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls233 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls234 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls234 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls235 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls235 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls236 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls236 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls237 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls237 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls238 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls238 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls239 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls239 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls240 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls240 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls241 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls241 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls242 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls242 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls243 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls243 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls244 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls244 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls245 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls245 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls246 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls246 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls247 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls247 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls248 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls248 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls249 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls249 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls250 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls250 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls251 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls251 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls252 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls252 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls253 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls253 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls254 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls254 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls255 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls255 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls256 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls256 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls257 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls257 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls258 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls258 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls259 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls259 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls260 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls260 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls261 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls261 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls262 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls262 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls263 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls263 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls264 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls264 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls265 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls265 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls266 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls266 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls267 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls267 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls268 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls268 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls269 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls269 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls270 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls270 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls271 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls271 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls272 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls272 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls273 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls273 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls274 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls274 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls275 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls275 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls276 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls276 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls277 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls277 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls278 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls278 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls279 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls279 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls280 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls280 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls281 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls281 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls282 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls282 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls283 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls283 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls284 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls284 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls285 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls285 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls286 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls286 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls287 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls287 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls288 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls288 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls289 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls289 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls290 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls290 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls291 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls291 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls292 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls292 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls293 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls293 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls294 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls294 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls295 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls295 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls296 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls296 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls297 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls297 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls298 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls298 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls299 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls299 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls300 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls300 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls301 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls301 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls302 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls302 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls303 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls303 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls304 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls304 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls305 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls305 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls306 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls306 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls307 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls307 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls308 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls308 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls309 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls309 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls310 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls310 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls311 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls311 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls312 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls312 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls313 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls313 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls314 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls314 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls315 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls315 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls316 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls316 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls317 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls317 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls318 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls318 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls319 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls319 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls320 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls320 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls321 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls321 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls322 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls322 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls323 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls323 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls324 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls324 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls325 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls325 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls326 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls326 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls327 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls327 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls328 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls328 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls329 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls329 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls330 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls330 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls331 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls331 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls332 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls332 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls333 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls333 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls334 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls334 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls335 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls335 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls336 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls336 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls337 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls337 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls338 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls338 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls339 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls339 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls340 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls340 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls341 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls341 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls342 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls342 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls343 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls343 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls344 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls344 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls345 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls345 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls346 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls346 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls347 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls347 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls348 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls348 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls349 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls349 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls350 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls350 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls351 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls351 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls352 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls352 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls353 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls353 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls354 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls354 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls355 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls355 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls356 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls356 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls357 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls357 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls358 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls358 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls359 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls359 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls360 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls360 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls361 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls361 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls362 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls362 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls363 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls363 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls364 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls364 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls365 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls365 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls366 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls366 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls367 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls367 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls368 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls368 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls369 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls369 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls370 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls370 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls371 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls371 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls372 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls372 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls373 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls373 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls374 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls374 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls375 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls375 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls376 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls376 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls377 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls377 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls378 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls378 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls379 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls379 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls380 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls380 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls381 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls381 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls382 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls382 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls383 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls383 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls384 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls384 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls385 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls385 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls386 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls386 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls387 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls387 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls388 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls388 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls389 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls389 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls390 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls390 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls391 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls391 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls392 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls392 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls393 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls393 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls394 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls394 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls395 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls395 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls396 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls396 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls397 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls397 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls398 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls398 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfls399 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls399 -type: real -positive: up -!---------------------------------- -! - -!============ diff --git a/Test/CMIP5_cf3hr.txt b/Test/CMIP5_cf3hr.txt deleted file mode 100644 index 0d9f43bc9f3d7410e49281f24fc529f64ac32281..0000000000000000000000000000000000000000 --- a/Test/CMIP5_cf3hr.txt +++ /dev/null @@ -1,230 +0,0 @@ -table_id: Table cf3hr -modeling_realm: atmos - -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 23 June 2009 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -required_global_attributes: creation_date tracking_id forcing model_id ! space separated required global attribute - -expt_id_ok: '10-and 30-year predictions XXXX' 'decadal-XXXX' -expt_id_ok: 'volcano-free hindcasts' 'no-volcano' -expt_id_ok: 'prediction with 2010 volcano' 'volcano-2010' -expt_id_ok: 'chemistry-focused runs XXXX' 'decadal-chem-XXXX' -expt_id_ok: 'pre-industrial control' 'pi-control' -expt_id_ok: 'Historical' 'historical' -expt_id_ok: 'mid-Holocene' 'mid-holocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past-1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.X' 'rcp2x' -expt_id_ok: 'RCP6' 'rcp6' -expt_id_ok: 'ESM pre-industrial control' 'esm-control' -expt_id_ok: 'ESM historical' 'esm-historical' -expt_id_ok: 'ESM RCP8.5' 'esm-rcp85' -expt_id_ok: 'ESM fixed climate 1' 'esm-fixclim1' -expt_id_ok: 'ESM fixed climate 2' 'esm-fixclim2' -expt_id_ok: 'ESM feedback 1' 'esm-fdbk1' -expt_id_ok: 'ESM feedback 2' 'esm-fdbk2' -expt_id_ok: '1 percent per year CO2' '1pct-co2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt-4xco2' -expt_id_ok: 'natural-only' 'historical-nat???' -expt_id_ok: 'GHG-only' 'historical-ghg???' -expt_id_ok: 'other-only' 'historical-???' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst-2030' -expt_id_ok: 'control SST climatology' 'sstclim' -expt_id_ok: 'CO2 forcing' 'sstclim-4xco2' -expt_id_ok: 'aerosol forcing' 'sstclim-aerosol' -expt_id_ok: '4xCO2 AMIP' 'amip-4xco2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amip-future' -expt_id_ok: 'aqua planet control' 'aqua-control' -expt_id_ok: '4xCO2 aqua planet' 'aqua-4xco2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua-4k' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip-4k' - - -approx_interval: 1.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - - -!============ -axis_entry: height40 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: altitude -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: altitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height40 -!stored_direction: increasing -tolerance: 0.001 - -type: double -! requested: 240. 720. 1200. 1680. 2160. 2640. 3120. 3600. 4080. 4560. 5040. 5520. 6000. 6480. 6960. 7440. 7920. 8400. 8880. 9360. 9840. 10320. 10800. 11280. 11760. 12240. 12720. 13200. 13680. 14160. 14640. 15120. 15600. 16080. 16560. 17040. 17520. 18000. 18480. 18960. ! space-separated list of requested coordinates -! requested_bounds: . 0. 480. 480. 960. 960. 1440. 1440. 1920. 1920. 2400. 2400. 2880. 2880. 3360. 3360. 3840. 3840. 4320. 4320. 4800. 4800. 5280. 5280. 5760. 5760. 6240. 6240. 6720. 6720. 7200. 7200. 7680. 7680. 8160. 8160. 8640. 8640. 9120. 9120. 9600. 9600. 10080. 10080. 10560. 10560. 11040. 11040. 11520. 11520. 12000. 12000. 12480. 12480. 12960. 12960. 13440. 13440. 13920. 13920. 14400. 14400. 14880. 14880. 15360. 15360. 15840. 15840. 16320. 16320. 16800. 16800. 17280. 17280. 17760. 17760. 18240. 18240. 18720. . 18720. 19200. ! space-separated list of requested coordinate bounds -must_have_bounds: yes -!---------------------------------- -! - -!============ -axis_entry: location -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: profile_id -units: 1 -long_name: location index -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: loc -stored_direction: increasing -type: double -must_have_bounds: no -index_only: ok -!---------------------------------- -! - -!============ -axis_entry: section -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: section_id -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: section -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: section -stored_direction: increasing -type: double -must_have_bounds: no -!---------------------------------- -! -!============ -axis_entry: vertices -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: vertices -units: 1 -long_name: vertices -! -!============ -variable_entry: longitude -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -long_name: Longitude -comment: function of time -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location section -out_name: lon -type: real -!---------------------------------- -! -!============ -variable_entry: latitude -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -long_name: Latitude -comment: function of time -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location section -out_name: lat -type: real -!---------------------------------- -! -!============ -variable_entry: vertices_longitude -!============ -!---------------------------------- -standard_name: vertices_longitude -units: degrees_east -long_name: longitude vertices coordinate -dimensions: vertices location section -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: vertices_lon -valid_min: 0. -valid_max: 360. -!---------------------------------- -! -! -!============ -variable_entry: vertices_latitude -!============ -!---------------------------------- -standard_name: vertices_latitude -units: degrees_north -long_name: latitude vertices coordinate -dimensions: vertices location section -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: vertices_lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! - -!============ -variable_entry: curtain -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: 1 -long_name: curtain -comment: Test of curtain format with grid -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: height40 location section -out_name: curtain -type: real -!---------------------------------- -! - diff --git a/Test/CMIP5_cf3hr_0.txt b/Test/CMIP5_cf3hr_0.txt deleted file mode 100644 index 34b0dbe526bdf1db3cc227ea3b027b81b08f3349..0000000000000000000000000000000000000000 --- a/Test/CMIP5_cf3hr_0.txt +++ /dev/null @@ -1,185 +0,0 @@ -table_id: Table cf3hr -modeling_realm: atmos - -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 23 June 2009 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -required_global_attributes: creation_date tracking_id forcing model_id ! space separated required global attribute - -expt_id_ok: '10-and 30-year predictions XXXX' 'decadal-XXXX' -expt_id_ok: 'volcano-free hindcasts' 'no-volcano' -expt_id_ok: 'prediction with 2010 volcano' 'volcano-2010' -expt_id_ok: 'chemistry-focused runs XXXX' 'decadal-chem-XXXX' -expt_id_ok: 'pre-industrial control' 'pi-control' -expt_id_ok: 'Historical' 'historical' -expt_id_ok: 'mid-Holocene' 'mid-holocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past-1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.X' 'rcp2x' -expt_id_ok: 'RCP6' 'rcp6' -expt_id_ok: 'ESM pre-industrial control' 'esm-control' -expt_id_ok: 'ESM historical' 'esm-historical' -expt_id_ok: 'ESM RCP8.5' 'esm-rcp85' -expt_id_ok: 'ESM fixed climate 1' 'esm-fixclim1' -expt_id_ok: 'ESM fixed climate 2' 'esm-fixclim2' -expt_id_ok: 'ESM feedback 1' 'esm-fdbk1' -expt_id_ok: 'ESM feedback 2' 'esm-fdbk2' -expt_id_ok: '1 percent per year CO2' '1pct-co2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt-4xco2' -expt_id_ok: 'natural-only' 'historical-nat???' -expt_id_ok: 'GHG-only' 'historical-ghg???' -expt_id_ok: 'other-only' 'historical-???' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst-2030' -expt_id_ok: 'control SST climatology' 'sstclim' -expt_id_ok: 'CO2 forcing' 'sstclim-4xco2' -expt_id_ok: 'aerosol forcing' 'sstclim-aerosol' -expt_id_ok: '4xCO2 AMIP' 'amip-4xco2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amip-future' -expt_id_ok: 'aqua planet control' 'aqua-control' -expt_id_ok: '4xCO2 aqua planet' 'aqua-4xco2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua-4k' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip-4k' - - -approx_interval: 1.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - - -!============ -axis_entry: height40 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: altitude -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: altitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height40 -!stored_direction: increasing -tolerance: 0.001 - -type: double -! requested: 240. 720. 1200. 1680. 2160. 2640. 3120. 3600. 4080. 4560. 5040. 5520. 6000. 6480. 6960. 7440. 7920. 8400. 8880. 9360. 9840. 10320. 10800. 11280. 11760. 12240. 12720. 13200. 13680. 14160. 14640. 15120. 15600. 16080. 16560. 17040. 17520. 18000. 18480. 18960. ! space-separated list of requested coordinates -! requested_bounds: . 0. 480. 480. 960. 960. 1440. 1440. 1920. 1920. 2400. 2400. 2880. 2880. 3360. 3360. 3840. 3840. 4320. 4320. 4800. 4800. 5280. 5280. 5760. 5760. 6240. 6240. 6720. 6720. 7200. 7200. 7680. 7680. 8160. 8160. 8640. 8640. 9120. 9120. 9600. 9600. 10080. 10080. 10560. 10560. 11040. 11040. 11520. 11520. 12000. 12000. 12480. 12480. 12960. 12960. 13440. 13440. 13920. 13920. 14400. 14400. 14880. 14880. 15360. 15360. 15840. 15840. 16320. 16320. 16800. 16800. 17280. 17280. 17760. 17760. 18240. 18240. 18720. . 18720. 19200. ! space-separated list of requested coordinate bounds -must_have_bounds: yes -!---------------------------------- -! - -!============ -axis_entry: location -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: profile_id -units: 1 -long_name: location index -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: loc -stored_direction: increasing -type: double -must_have_bounds: no -index_only: ok -!---------------------------------- -! - -!============ -axis_entry: section -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: section_id -units: 1 -long_name: section -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: section -stored_direction: increasing -type: double -must_have_bounds: no -index_only: ok -!---------------------------------- -! - - -!============ -variable_entry: longitude -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -long_name: Longitude -comment: function of time -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location -out_name: lon -type: real -!---------------------------------- -! - -!============ -variable_entry: latitude -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -long_name: Latitude -comment: function of time -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location -out_name: lat -type: real -!---------------------------------- -! - -!============ -variable_entry: curtain -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: 1 -long_name: curtain -comment: Test of curtain format with grid -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location section height40 -out_name: curtain -type: real -!---------------------------------- -! - diff --git a/Test/CMIP5_cf3hr_1.txt b/Test/CMIP5_cf3hr_1.txt deleted file mode 100644 index 49161c9be94015306814f67cabee73d783a94897..0000000000000000000000000000000000000000 --- a/Test/CMIP5_cf3hr_1.txt +++ /dev/null @@ -1,185 +0,0 @@ -table_id: Table cf3hr -modeling_realm: atmos - -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 23 June 2009 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -required_global_attributes: creation_date tracking_id forcing model_id ! space separated required global attribute - -expt_id_ok: '10-and 30-year predictions XXXX' 'decadal-XXXX' -expt_id_ok: 'volcano-free hindcasts' 'no-volcano' -expt_id_ok: 'prediction with 2010 volcano' 'volcano-2010' -expt_id_ok: 'chemistry-focused runs XXXX' 'decadal-chem-XXXX' -expt_id_ok: 'pre-industrial control' 'pi-control' -expt_id_ok: 'Historical' 'historical' -expt_id_ok: 'mid-Holocene' 'mid-holocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past-1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.X' 'rcp2x' -expt_id_ok: 'RCP6' 'rcp6' -expt_id_ok: 'ESM pre-industrial control' 'esm-control' -expt_id_ok: 'ESM historical' 'esm-historical' -expt_id_ok: 'ESM RCP8.5' 'esm-rcp85' -expt_id_ok: 'ESM fixed climate 1' 'esm-fixclim1' -expt_id_ok: 'ESM fixed climate 2' 'esm-fixclim2' -expt_id_ok: 'ESM feedback 1' 'esm-fdbk1' -expt_id_ok: 'ESM feedback 2' 'esm-fdbk2' -expt_id_ok: '1 percent per year CO2' '1pct-co2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt-4xco2' -expt_id_ok: 'natural-only' 'historical-nat???' -expt_id_ok: 'GHG-only' 'historical-ghg???' -expt_id_ok: 'other-only' 'historical-???' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst-2030' -expt_id_ok: 'control SST climatology' 'sstclim' -expt_id_ok: 'CO2 forcing' 'sstclim-4xco2' -expt_id_ok: 'aerosol forcing' 'sstclim-aerosol' -expt_id_ok: '4xCO2 AMIP' 'amip-4xco2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amip-future' -expt_id_ok: 'aqua planet control' 'aqua-control' -expt_id_ok: '4xCO2 aqua planet' 'aqua-4xco2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua-4k' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip-4k' - - -approx_interval: 1.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - - -!============ -axis_entry: height40 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: altitude -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: altitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height40 -!stored_direction: increasing -tolerance: 0.001 - -type: double -! requested: 240. 720. 1200. 1680. 2160. 2640. 3120. 3600. 4080. 4560. 5040. 5520. 6000. 6480. 6960. 7440. 7920. 8400. 8880. 9360. 9840. 10320. 10800. 11280. 11760. 12240. 12720. 13200. 13680. 14160. 14640. 15120. 15600. 16080. 16560. 17040. 17520. 18000. 18480. 18960. ! space-separated list of requested coordinates -! requested_bounds: . 0. 480. 480. 960. 960. 1440. 1440. 1920. 1920. 2400. 2400. 2880. 2880. 3360. 3360. 3840. 3840. 4320. 4320. 4800. 4800. 5280. 5280. 5760. 5760. 6240. 6240. 6720. 6720. 7200. 7200. 7680. 7680. 8160. 8160. 8640. 8640. 9120. 9120. 9600. 9600. 10080. 10080. 10560. 10560. 11040. 11040. 11520. 11520. 12000. 12000. 12480. 12480. 12960. 12960. 13440. 13440. 13920. 13920. 14400. 14400. 14880. 14880. 15360. 15360. 15840. 15840. 16320. 16320. 16800. 16800. 17280. 17280. 17760. 17760. 18240. 18240. 18720. . 18720. 19200. ! space-separated list of requested coordinate bounds -must_have_bounds: yes -!---------------------------------- -! - -!============ -axis_entry: location -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: profile_id -units: 1 -long_name: location index -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: loc -stored_direction: increasing -type: double -must_have_bounds: no -index_only: ok -!---------------------------------- -! - -!============ -axis_entry: section -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: section_id -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: section -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: section -stored_direction: increasing -type: double -must_have_bounds: no -!---------------------------------- -! - - -!============ -variable_entry: longitude -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -long_name: Longitude -comment: function of time -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location -out_name: lon -type: real -!---------------------------------- -! - -!============ -variable_entry: latitude -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -long_name: Latitude -comment: function of time -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location -out_name: lat -type: real -!---------------------------------- -! - -!============ -variable_entry: curtain -!============ -modeling_realm: atmos - -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: 1 -long_name: curtain -comment: Test of curtain format with grid -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location section height40 -out_name: curtain -type: real -!---------------------------------- -! - diff --git a/Test/CMOR_SAMPLE_TABLE b/Test/CMOR_SAMPLE_TABLE deleted file mode 100644 index 0dc32ed432d992c9fc0ab97ad72a6eef0dfdfd7d..0000000000000000000000000000000000000000 --- a/Test/CMOR_SAMPLE_TABLE +++ /dev/null @@ -1,860 +0,0 @@ -cmor_version: 1.0 ! version of CMOR that can read this table -cf_version: 1.3 ! version of CF that output conforms to -project_id: IPCC ! project id -table_id: Table 2 ! table id -table_date: 22 October 2008 ! date this table was last updated - -modeling_realm: atm - -expt_id_ok: 'committed climate change experiment' 'ccce' ! official name(s) of -expt_id_ok: 'SRES A2 experiment' ! project's experiments -expt_id_ok: 'control experiment (for committed climate change experiment)' -expt_id_ok: '720 ppm stabilization experiment (SRES A1B)' -expt_id_ok: '550 ppm stabilization experiment (SRES B1)' -expt_id_ok: '1%/year CO2 increase experiment (to doubling)' -expt_id_ok: '1%/year CO2 increase experiment (to quadrupling)' -expt_id_ok: 'control experiment (for 1%/year CO2 run)' -expt_id_ok: '2xCO2 equilibrium experiment' '2xco2' -expt_id_ok: 'control experiment (for 2xCO2 run)' - -required_global_attributes: creation_date tracking_id model_id forcing - - -magic_number: -1 ! used to check whether this file has been - ! altered from the official version. - ! should be set to number of non-blank - ! characters in file. -approx_interval: 30. ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! SUBROUTINE ARGUMENT DEFAULT INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! set default specifications for subroutine arguments to: -! required/indeterminate/optional/ignored/forbidden -! (indeterminate may or may not be required information, but is not always -! required as an argument of the function call) -! -! -!============ -subroutine_entry: cmor_axis -!============ -! -required: table axis_name units length coord_vals cell_bounds -ignored: interval -! -!============ -subroutine_entry: cmor_variable -!============ -! -required: table table_entry units axis_ids -indeterminate: missing_value -optional: tolerance original_name history comment -ignored: positive -! -!============ -subroutine_entry: cmor_write -!============ -! -required: var_id data -indeterminate: ntimes_passed time_vals time_bnds store_with -optional: file_suffix -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! AXIS INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! ??? what about climatology??? -! ??? what about model level data??? -! -! -! TEMPLATE FOR AXES -! -!============ -!axis_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -! acceptable arguments include units length coord_vals cell_bounds interval -!required: ! (default: table axis_name units length -! coord_vals cell_bounds) -!indeterminate: -!optional: -!ignored: ! (default: interval) -!forbidden: -!------------ -! -! Axis attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!axis: ! X, Y, Z, T (default: undeclared) -!positive: ! up or down (default: undeclared) -!long_name: ! (default: undeclared) -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -!out_name: ! (default: same as axis_entry) -!type: ! double (default), real, character, integer -!stored_direction: ! increasing (default) or decreasing -!valid_min: ! type: double precision (default: no check performed -!valid_max: ! type: double precision (default: no check performed -!requested: ! space-separated list of requested coordinates - ! (default: undeclared) -!requested_bounds: ! space-separated list of requested coordinate bounds - ! (default: undeclared) -!tol_on_requests: ! fractional tolerance for meeting request - ! (default=1.e-3, which is used in the formula: - ! eps = MIN(( tol*interval between grid-points) - ! and (1.e-3*tol*coordinate value))) -!value: ! of scalar (singleton) dimension -!bounds_values: ! of scalar (singleton) dimension bounds -!---------------------------------- -! -! -! TEMPLATE FOR VARIABLES -! -! -!============ -!variable_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_variable -!------------ -! acceptable arguments include file_suffix missing_value tolerance -! original_name history comment positive -!required: ! (default: table table_entry units axis_ids) -!indeterminate: ! (default: file_suffix missing_value) -!optional: ! (default: original_name history comment) -!ignored: ! (default: positive) -!forbidden: -!------------ -! -! Variable attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!cell_methods: ! (default: undeclared) -!long_name: ! (default: undeclared) -!comment: ! (default: undeclared) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -!dimensions: ! (required) (scalar dimension(s) should appear - ! last in list) -!out_name: ! (default: variable_entry) -!type: ! real (default), double, integer -!positive: ! up or down (default: undeclared) -!valid_min: ! type: real (default: no check performed) -!valid_max: ! type: real (default: no check performed) -!ok_min_mean_abs: ! type: real (default: no check performed) -!ok_max_mean_abs: ! type: real (default: no check performed) -!---------------------------------- -! - -! -!============ -axis_entry: longitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X -long_name: longitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. The - ! data will also be rearranged - ! appropriately. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============= -axis_entry: latitude -!============= -! -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y -long_name: latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! - -! ??? What about climatological data??? -! - -!============ -axis_entry: time -!============ -! -! Override default argument specifications for cmor_axis -!------------ -!required: interval -optional: interval -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since 1979-1-1 -axis: T -long_name: time -!---------------------------------- -! -! -!============ -axis_entry: pressure -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -valid_min: 0. -valid_max: 110000. -requested: 10000. 20000. 30000. 40000. 50000. -!---------------------------------- -! -! -!============ -axis_entry: region -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: units cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: region -long_name: region -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -type: character -requested: atlantic_ocean indian_ocean pacific_ocean global_ocean -!---------------------------------- -! -! -!============ -axis_entry: height1 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 10. -value: 2. -!---------------------------------- -! -! -!============ -axis_entry: height2 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 30. -value: 10. -!---------------------------------- -! -!============ -axis_entry: depth1 -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z -positive: down -long_name: depth -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 1.0 -value: 0.05 -bounds_values: 0.0 0.1 -!---------------------------------- -! -! -!============ -axis_entry: standard_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -ignored: coord_vals -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -convert_to: standard_hybrid_sigma -z_factors: ptop sigma ps -z_bounds_factors: ptop sigma_bnds ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -! ignored: coord_vals -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: eta -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -z_factors: p0 a b ps -z_bounds_factors: p0 a_bnds b_bnds ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -convert_to: standard_hybrid_sigma -z_factors: p0 ap b ps -z_bounds_factors: p0 ap_bnds b_bnds ps -!---------------------------------- -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! VARIABLE INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -!============ -variable_entry: tas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -valid_min: 190. -valid_max: 340. -ok_min_mean_abs: 270. -ok_max_mean_abs: 300. -shuffle: 1 -deflate: 1 -deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: upward_surface_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -shuffle: 1 -deflate: 1 -deflate_level: 9 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 20. -ok_max_mean_abs: 150. -!---------------------------------- -! -! -!============ -variable_entry: mrsos -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: moisture_content_of_soil_layer -units: kg m-2 -cell_methods: time: mean -long_name: Moisture in Upper 0.1 m of Soil Column -comment: includes subsurface frozen water but not surface snow and ice -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth1 -!---------------------------------- -! -! -!============ -variable_entry: ua -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Zonal Wind Component -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: -200. -valid_max: 300. -ok_min_mean_abs: 0.1 -ok_max_mean_abs: 100. -!---------------------------------- -! -! -!============ -variable_entry: ta -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Temperature -flag_values: 8 6 7 8 9654 -flag_meanings: region5 region6 region7 region8 9region - -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: 150. -valid_max: 350. -ok_min_mean_abs: 200. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: pr -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: precipitation -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation -comment: includes all types (rain, snow, large-scale, convective, etc.) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -valid_max: 1.e-4 -ok_min_mean_abs: 1.e-6 -ok_max_mean_abs: 5.e-5 -!---------------------------------- -! -! -!============ -variable_entry: cl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -long_name: Total Cloud Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude zlevel time -valid_min: 0.0 -valid_max: 100.0 -ok_min_mean_abs: 10.0 -ok_max_mean_abs: 90.0 -!---------------------------------- -! -! -!============ -variable_entry: ci -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_i -units: % -cell_methods: time: mean -long_name: Total Cloud Fraction Crap -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: latitude longitude zlevel time -valid_min: 0.0 -valid_max: 100.0 -ok_min_mean_abs: 10.0 -ok_max_mean_abs: 90.0 -!---------------------------------- -! -! -!============ -variable_entry: hfogo -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: northward_ocean_heat_transport -units: W -cell_methods: time: mean -long_name: Northward Ocean Heat Transport -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: latitude region time -valid_min: -4.e15 -valid_max: 4.e15 -ok_min_mean_abs: 0.0 -ok_max_mean_abs: 4.e15 -!---------------------------------- -! -! -!============ -variable_entry: ps -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: mean -long_name: Surface Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.5e5 -valid_max: 1.2e5 -ok_min_mean_abs: 0.9e5 -ok_max_mean_abs: 1.1e5 -!---------------------------------- -! -! -!============ -variable_entry: p0 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -ignored: axis_ids -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: reference pressure for hybrid sigma coordinate -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: sigma -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: sigma coordinate -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel longitude -type: double -!---------------------------------- -! -! -!============ -variable_entry: a -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: alternate hybrid sigma coordinate A coefficient for layer -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: alternate hybrid sigma coordinate A coefficient for layer bounds -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! diff --git a/Test/Curts_table b/Test/Curts_table deleted file mode 100644 index f116bb22e0879710d6f0b1dd1869066e1ecb11f7..0000000000000000000000000000000000000000 --- a/Test/Curts_table +++ /dev/null @@ -1,761 +0,0 @@ -cmor_version: 1.0 ! version of CMOR that can read this table -cf_version: 1.0 ! version of CF that output conforms to -project_id: IPCC Fourth Assessment ! project id -table_id: Curts_table A ! table id -table_date: 9 January 2006 ! date this table was constructed -modeling_realm: atm - -expt_id_ok: 'pre-industrial control experiment' -expt_id_ok: 'present-day control experiment' -expt_id_ok: 'climate of the 20th Century experiment (20C3M)' '20c3m' -expt_id_ok: 'committed climate change experiment' ! official name(s) of -expt_id_ok: 'SRES A2 experiment' ! project's experiments -expt_id_ok: '720 ppm stabilization experiment (SRES A1B)' -expt_id_ok: '550 ppm stabilization experiment (SRES B1)' -expt_id_ok: '1%/year CO2 increase experiment (to doubling)' -expt_id_ok: '1%/year CO2 increase experiment (to quadrupling)' -expt_id_ok: 'slab ocean control experiment' -expt_id_ok: '2xCO2 equilibrium experiment' -expt_id_ok: 'AMIP experiment' - -magic_number: -1 ! used to check whether this file has been - ! altered from the official version. - ! should be set to number of non-blank - ! characters in file. -approx_interval: 1. ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate), but this is ignored if set to 0. -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! SUBROUTINE ARGUMENT DEFAULT INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! set default specifications for subroutine arguments to: -! required/indeterminate/optional/ignored/forbidden -! (indeterminate may or may not be required information, but is not always -! required as an argument of the function call) -! -! -!============ -subroutine_entry: cmor_axis -!============ -! -required: table axis_name units length coord_vals cell_bounds -ignored: interval -! -!============ -subroutine_entry: cmor_variable -!============ -! -required: table table_entry units axis_ids -indeterminate: missing_value -optional: tolerance original_name history comment -ignored: positive -! -!============ -subroutine_entry: cmor_write -!============ -! -required: var_id data -indeterminate: ntimes_passed time_vals time_bnds store_with -optional: file_suffix -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! AXIS INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! ??? what about climatology??? -! ??? what about model level data??? -! -! -! TEMPLATE FOR AXES -! -!============ -!axis_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -! acceptable arguments include units length coord_vals cell_bounds interval -!required: ! (default: table axis_name units length -! coord_vals cell_bounds) -!indeterminate: -!optional: -!ignored: ! (default: interval) -!forbidden: -!------------ -! -! Axis attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!axis: ! X, Y, Z, T (default: undeclared) -!positive: ! up or down (default: undeclared) -!long_name: ! (default: undeclared) -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -!out_name: ! (default: same as axis_entry) -!type: ! double (default), real, character, integer -!stored_direction: ! increasing (default) or decreasing -!valid_min: ! type: double precision (default: no check performed -!valid_max: ! type: double precision (default: no check performed -!requested: ! space-separated list of requested coordinates - ! (default: undeclared) -!bounds_requested: ! space-separated list of requested coordinate bounds - ! (default: undeclared) -!tol_on_requests: ! fractional tolerance for meeting request - ! (default=1.e-3, which is used in the formula: - ! eps = MIN(( tol*interval between grid-points) - ! and (1.e-3*tol*coordinate value))) -!value: ! of scalar (singleton) dimension -!bounds_values: ! of scalar (singleton) dimension bounds -!---------------------------------- -! -! -! TEMPLATE FOR VARIABLES -! -! -!============ -!variable_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_variable -!------------ -! acceptable arguments include file_suffix missing_value tolerance -! original_name history comment positive -!required: ! (default: table table_entry units axis_ids) -!indeterminate: ! (default: file_suffix missing_value) -!optional: ! (default: original_name history comment) -!ignored: ! (default: positive) -!forbidden: -!------------ -! -! Variable attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!cell_methods: ! (default: undeclared) -!long_name: ! (default: undeclared) -!comment: ! (default: undeclared) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -!dimensions: ! (required) (scalar dimension(s) should appear - ! last in list) -!out_name: ! (default: variable_entry) -!type: ! real (default), double, integer -!positive: ! up or down (default: undeclared) -!valid_min: ! type: real (default: no check performed) -!valid_max: ! type: real (default: no check performed) -!ok_min_mean_abs: ! type: real (default: no check performed) -!ok_max_mean_abs: ! type: real (default: no check performed) -!---------------------------------- -! - -! -!============ -axis_entry: longitude -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X -long_name: longitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. The - ! data will also be rearranged - ! appropriately. -valid_max: 360. ! see above comment. -value: 287.8 -!---------------------------------- -! -! -!============= -axis_entry: latitude -!============= -! -! Override default argument specifications for cmor_axis -!------------ -optional: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y -long_name: latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -value: 42.5 -!---------------------------------- -! -! - -! ??? What about climatological data??? -! - -!============ -axis_entry: time -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -long_name: time -!---------------------------------- -! -! -!============ -axis_entry: pressure -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -valid_min: 0. -valid_max: 110000. -requested: 100000. 92500. 85000. 70000. 60000. 50000. 40000. -requested: 30000. 20000. -!---------------------------------- -! -! -!============ -axis_entry: height1 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 10. -value: 2. -!---------------------------------- -! -! -!============ -axis_entry: height2 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 30. -value: 10. -!---------------------------------- -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! VARIABLE INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! -! -! *************************************************************** -! -! IPCC Table A2a: Daily-mean 2-d atmosphere data -! -! *************************************************************** -! -! -! -!============ -variable_entry: psl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -long_name: Sea Level Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 90000. -valid_max: 120000. -ok_min_mean_abs: 102000. -ok_max_mean_abs: 98000. -!---------------------------------- -! -! -!============ -variable_entry: pr -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation -comment: includes all types (rain, snow, large-scale, convective, etc.) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: tasmin -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: minimum -long_name: Minimum Daily Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -valid_min: 185. -valid_max: 330. -ok_min_mean_abs: 270. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: tasmax -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: maximum -long_name: Maximum Daily Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -valid_min: 185. -valid_max: 350. -ok_min_mean_abs: 270. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: tas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: time longitude latitude height1 -valid_min: 185. -valid_max: 330. -ok_min_mean_abs: 260. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: hfls -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -300. -valid_max: 2000. -ok_min_mean_abs: 50. -ok_max_mean_abs: 120. -!---------------------------------- -! -! -!============ -variable_entry: hfss -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Sensible Heat Flux -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rlds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Longwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: down -valid_min: 20. -valid_max: 600. -ok_min_mean_abs: 300. -ok_max_mean_abs: 370. -!---------------------------------- -! -! -!============ -variable_entry: rlus -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Longwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: 50. -valid_max: 750. -ok_min_mean_abs: 250. -ok_max_mean_abs: 450. -!---------------------------------- -! -! -!============ -variable_entry: rsds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Shortwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: down -valid_min: 0. -valid_max: 550. -ok_min_mean_abs: 150. -ok_max_mean_abs: 220. -!---------------------------------- -! -! -!============ -variable_entry: rsus -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Shortwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: uas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Zonal Surface Wind Speed -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2 -!---------------------------------- -! -! -!============ -variable_entry: vas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Meridional Surface Wind Speed -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2 -!---------------------------------- -! -! -!============ -variable_entry: rlut -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux -units: W m-2 -cell_methods: time: mean -long_name: Outgoing Longwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 10. -valid_max: 500. -positive: up -!---------------------------------- -! -! -! -! -! *************************************************************** -! -! IPCC Table A2b: Daily-mean 3-d atmosphere data -! -! *************************************************************** -! -! -! -!============ -variable_entry: ta -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: 100. -valid_max: 360. -!---------------------------------- -! -! -!============ -variable_entry: ua -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Zonal Wind Component -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -!---------------------------------- -! -! -!============ -variable_entry: va -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Meridional Wind Component -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -!---------------------------------- -! -! -!============ -variable_entry: hus -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -long_name: Specific Humidity -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: 0. -!---------------------------------- -! -! - diff --git a/Test/IPCC_table_A1 b/Test/IPCC_table_A1 deleted file mode 100644 index 359799bf16289d63aa503bada8f043e0af6a9878..0000000000000000000000000000000000000000 --- a/Test/IPCC_table_A1 +++ /dev/null @@ -1,2364 +0,0 @@ -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.0 ! version of CF that output conforms to -project_id: IPCC Fourth Assessment ! project id -table_id: Table A1 ! table id -table_date: 17 November 2004 ! date this table was constructed -required_global_attributes: creation_date tracking_id model_id forcing - -modeling_realm: atm - -expt_id_ok: 'pre-industrial control experiment' -expt_id_ok: 'present-day control experiment' -expt_id_ok: 'climate of the 20th Century experiment (20C3M)' -expt_id_ok: 'committed climate change experiment' ! official name(s) of -expt_id_ok: 'SRES A2 experiment' ! project's experiments -expt_id_ok: '720 ppm stabilization experiment (SRES A1B)' -expt_id_ok: '550 ppm stabilization experiment (SRES B1)' -expt_id_ok: '1%/year CO2 increase experiment (to doubling)' -expt_id_ok: '1%/year CO2 increase experiment (to quadrupling)' -expt_id_ok: 'slab ocean control experiment' -expt_id_ok: '2xCO2 equilibrium experiment' '2xco2' -expt_id_ok: 'AMIP experiment' - -magic_number: -1 ! used to check whether this file has been - ! altered from the official version. - ! should be set to number of non-blank - ! characters in file. -approx_interval: 30. ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate), but this is ignored if set to 0. -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! SUBROUTINE ARGUMENT DEFAULT INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! set default specifications for subroutine arguments to: -! required/indeterminate/optional/ignored/forbidden -! (indeterminate may or may not be required information, but is not always -! required as an argument of the function call) -! -! -!============ -subroutine_entry: cmor_axis -!============ -! -required: table axis_name units length coord_vals cell_bounds -ignored: interval -! -!============ -subroutine_entry: cmor_variable -!============ -! -required: table table_entry units axis_ids -indeterminate: missing_value -optional: tolerance original_name history comment -ignored: positive -! -!============ -subroutine_entry: cmor_write -!============ -! -required: var_id data -indeterminate: ntimes_passed time_vals time_bnds store_with -optional: file_suffix -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! AXIS INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! ??? what about climatology??? -! ??? what about model level data??? -! -! -! TEMPLATE FOR AXES -! -!============ -!axis_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -! acceptable arguments include units length coord_vals cell_bounds interval -!required: ! (default: table axis_name units length -! coord_vals cell_bounds) -!indeterminate: -!optional: -!ignored: ! (default: interval) -!forbidden: -!------------ -! -! Axis attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!axis: ! X, Y, Z, T (default: undeclared) -!positive: ! up or down (default: undeclared) -!long_name: ! (default: undeclared) -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -!out_name: ! (default: same as axis_entry) -!type: ! double (default), real, character, integer -!stored_direction: ! increasing (default) or decreasing -!valid_min: ! type: double precision (default: no check performed -!valid_max: ! type: double precision (default: no check performed -!requested: ! space-separated list of requested coordinates - ! (default: undeclared) -!bounds_requested: ! space-separated list of requested coordinate bounds - ! (default: undeclared) -!tol_on_requests: ! fractional tolerance for meeting request - ! (default=1.e-3, which is used in the formula: - ! eps = MIN(( tol*interval between grid-points) - ! and (1.e-3*tol*coordinate value))) -!value: ! of scalar (singleton) dimension -!bounds_values: ! of scalar (singleton) dimension bounds -!---------------------------------- -! -! -! TEMPLATE FOR VARIABLES -! -! -!============ -!variable_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_variable -!------------ -! acceptable arguments include file_suffix missing_value tolerance -! original_name history comment positive -!required: ! (default: table table_entry units axis_ids) -!indeterminate: ! (default: file_suffix missing_value) -!optional: ! (default: original_name history comment) -!ignored: ! (default: positive) -!forbidden: -!------------ -! -! Variable attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!cell_methods: ! (default: undeclared) -!long_name: ! (default: undeclared) -!comment: ! (default: undeclared) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -!dimensions: ! (required) (scalar dimension(s) should appear - ! last in list) -!out_name: ! (default: variable_entry) -!type: ! real (default), double, integer -!positive: ! up or down (default: undeclared) -!valid_min: ! type: real (default: no check performed) -!valid_max: ! type: real (default: no check performed) -!ok_min_mean_abs: ! type: real (default: no check performed) -!ok_max_mean_abs: ! type: real (default: no check performed) -!---------------------------------- -! - -! -!============ -axis_entry: longitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X -long_name: longitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. The - ! data will also be rearranged - ! appropriately. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============= -axis_entry: latitude -!============= -! -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y -long_name: latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! - -! ??? What about climatological data??? -! - -!============ -axis_entry: time -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -long_name: time -!---------------------------------- -! -! -!============ -axis_entry: pressure -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -valid_min: 0. -valid_max: 110000. -!requested: 100000. 92500. 85000. 70000. 60000. 50000. 40000. -!requested: 30000. 25000. 20000. 15000. 10000. 7000. 5000. -!requested: 3000. 2000. 1000. -!---------------------------------- -! -! -!============ -axis_entry: height1 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 10. -value: 2. -!---------------------------------- -! -! -!============ -axis_entry: height2 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 30. -value: 10. -!---------------------------------- -! -! -!============ -axis_entry: depth1 -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z -positive: down -long_name: depth -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 1.0 -value: 0.05 -bounds_values: 0.0 0.1 -!---------------------------------- -! -! -!============ -axis_entry: pressure1 -! -! Scalar dimension (200 hPa) defined for near-tropopause radiation fluxes -! (rsntp, rlntp, rsntpcs, rlntpcs, rsftropa_?, rsftropi_?, rlftropa_?, -! rlftropi_?, rsftropacs_?, rsftropics_?, rlftropacs_?, rlftropics_?) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -valid_min: 10000. -valid_max: 30000. -value: 20000. -!---------------------------------- -! -! -!============ -axis_entry: pressure2 -! -! Is defined for Table A1d: ISCCP simulator data (clisccp) -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -stored_direction: decreasing -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -bounds_requested: 100000. 80000. 80000. 68000. 68000. 56000. -bounds_requested: 56000. 44000. 44000. 31000. 31000. 18000. -bounds_requested: 18000. 0. -!----------------------------------! -! -! -!============ -axis_entry: pressure3 -! -! Is defined for Table A1e: sulfate aerosol data (trsul) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -valid_min: 0. -valid_max: 110000. -requested: 100400. 98300. 95300. 91000. 84800. 76500. 66300. -requested: 54600. 42500. 31800. 23800. 18300. 14000. 10300. -requested: 7200. 4700. 2700. 1300. 400. -!---------------------------------- -! -! -!============ -axis_entry: tau -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: cloud_optical_depth -units: 1 -long_name: optical depth -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -bounds_requested: 0.0 0.3 0.3 1.3 1.3 3.6 3.6 9.4 -bounds_requested: 9.4 23.0 23.0 60.0 60.0 100000. -!---------------------------------- -! -! -!============ -axis_entry: standard_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -convert_to: standard_hybrid_sigma -z_factors: ptop: ptop sigma: sigma ps: ps -z_bounds_factors: ptop: ptop sigma: sigma_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -stored_direction: decreasing -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -convert_to: standard_hybrid_sigma -z_factors: p0: p0 ap: ap b: b ps: ps -z_bounds_factors: p0 ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: increasing -valid_min: 0.0 -formula: z(k,j,i) = a(k) + b(k)*orog(j,i) -z_factors: a: a b: b orog: orog -z_bounds_factors: a: a_bnds b: b_bnds orog: orog -!---------------------------------- -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! VARIABLE INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! -! -! *************************************************************** -! -! Vertical dimensionless coordinate variables: -! -! *************************************************************** -! -! -! -!============ -variable_entry: p0 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -ignored: axis_ids -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: reference pressure for hybrid sigma coordinate -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -! Override default argument specifications for cmor_variable -!------------ -ignored: axis_ids -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: sigma -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: sigma coordinate -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: sigma_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: sigma coordinate for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: alternate hybrid sigma coordinate A coefficient for layer -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: alternate hybrid sigma coordinate A coefficient for layer bounds -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ztop -!============ -! -! Override default argument specifications for cmor_variable -!------------ -ignored: axis_ids -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: height of top of model -units: m -!---------------------------------- -! -! -!============ -variable_entry: az -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid height coordinate coefficient (eta) for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: bz -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid height coordinate coefficient (tau) for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: az_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate coefficient (eta) for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: bz_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient (tau) for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -! -! *************************************************************** -! -! IPCC Table A1a: Monthly-mean 2-d atmosphere or land surface data -! -! *************************************************************** -! -! -! -!============ -variable_entry: psl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -long_name: Sea Level Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 90000. -valid_max: 120000. -ok_min_mean_abs: 102000. -ok_max_mean_abs: 98000. -!---------------------------------- -! -! -!============ -variable_entry: pr -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation -comment: includes all types (rain, snow, large-scale, convective, etc.) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -valid_max: 1.e-3 -ok_min_mean_abs: 1.e-6 -ok_max_mean_abs: 5.e-5 -!---------------------------------- -! -! -!============ -variable_entry: tas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -valid_min: 195. -valid_max: 330. -ok_min_mean_abs: 270. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: mrsos -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: moisture_content_of_soil_layer -units: kg m-2 -cell_methods: time: mean -long_name: Moisture in Upper 0.1 m of Soil Column -comment: includes subsurface frozen water but not surface snow and ice -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth1 -!---------------------------------- -! -! -!============ -variable_entry: mrso -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: soil_moisture_content -units: kg m-2 -cell_methods: time: mean -long_name: Total Soil Moisture Content -comment: includes subsurface frozen water but not surface snow and ice -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -!============ -variable_entry: tauu -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_eastward_stress -units: Pa -cell_methods: time: mean -long_name: Zonal Surface Wind Stress -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: down -!---------------------------------- -! -! -!============ -variable_entry: tauv -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_northward_stress -units: Pa -cell_methods: time: mean -long_name: Meridional Surface Wind Stress -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: down -!---------------------------------- -! -! -!============ -variable_entry: snd -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_snow_thickness -units: m -cell_methods: time: mean -long_name: Snow Depth -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: hfls -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -120 -valid_max: 900. -ok_min_mean_abs: 50. -ok_max_mean_abs: 120. -!---------------------------------- -! -! -!============ -variable_entry: hfss -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Sensible Heat Flux -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rlds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Longwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: down -valid_min: 20. -valid_max: 600. -ok_min_mean_abs: 300. -ok_max_mean_abs: 370. -!---------------------------------- -! -! -!============ -variable_entry: rlus -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Longwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: 50. -valid_max: 750. -ok_min_mean_abs: 250. -ok_max_mean_abs: 450. -!---------------------------------- -! -! -!============ -variable_entry: rsds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Shortwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: down -valid_min: 0. -valid_max: 550. -ok_min_mean_abs: 150. -ok_max_mean_abs: 220. -!---------------------------------- -! -! -!============ -variable_entry: rsus -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Shortwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: ts -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: mean -long_name: Surface Skin Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 170. -valid_max: 340. -ok_min_mean_abs: 280. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: ps -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: mean -long_name: Surface Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.48e5 -valid_max: 1.1e5 -ok_min_mean_abs: 0.97e5 -ok_max_mean_abs: 1.0e5 -!---------------------------------- -! -! -!============ -variable_entry: prsn -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: snowfall_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Snowfall Flux -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: prc -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: convective_precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Convective Precipitation -comment: includes both liquid and solid phases -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: prw -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_water_vapor_content -units: kg m-2 -cell_methods: time: mean -long_name: Precipitable Water -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -valid_max: 150. -ok_min_mean_abs: 20. -ok_max_mean_abs: 30. -!---------------------------------- -! -! -!============ -variable_entry: mrfso -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: soil_frozen_water_content -units: kg m-2 -cell_methods: time: mean -long_name: Soil Frozen Water Content -comment: excludes surface snow and ice -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: mrros -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_runoff_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Surface Runoff -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -!============ -variable_entry: mrro -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: runoff_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Surface and Subsurface Runoff -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -!============ -variable_entry: snw -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_snow_amount_where_land -units: kg m-2 -cell_methods: time: mean -long_name: Snow Amount -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: snc -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_snow_area_fraction_where_land -units: % -cell_methods: time: mean -long_name: Snow Area Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -valid_max: 100. -!---------------------------------- -! -! -!============ -variable_entry: snm -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_snow_melt_flux_where_land -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Snow Melt -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: uas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Zonal Surface Wind Speed -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2 -!---------------------------------- -! -! -!============ -variable_entry: vas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Meridional Surface Wind Speed -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2 -!---------------------------------- -! -! -!============ -variable_entry: huss -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: kg kg-1 -cell_methods: time: mean -long_name: Surface Specific Humidity -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: rsdt -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: toa_incoming_shortwave_flux -units: W m-2 -cell_methods: time: mean -long_name: TOA Incident Shortwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: down -!---------------------------------- -! -! -!============ -variable_entry: rsut -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux -units: W m-2 -cell_methods: time: mean -long_name: TOA Reflected Shortwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rlut -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux -units: W m-2 -cell_methods: time: mean -long_name: Outgoing Longwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 10. -valid_max: 500. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rtmt -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: net_downward_radiative_flux_at_top_of_atmosphere_model -units: W m-2 -cell_methods: time: mean -long_name: Net Flux at Top of Model -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: down -!---------------------------------- -! -! -!============ -variable_entry: rsntp -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: net_downward_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Net Downward Shortwave Flux at 200 hPa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time pressure1 -valid_min: 0. -positive: down -!---------------------------------- -! -! -!============ -variable_entry: rlntp -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: net_upward_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Net Upward Longwave Flux at 200 hPa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time pressure1 -valid_min: 0. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rsntpcs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: net_downward_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Net Downward Clear-Sky Shortwave Flux at 200 hPa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time pressure1 -valid_min: 0. -positive: down -!---------------------------------- -! -! -!============ -variable_entry: rlntpcs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: net_upward_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Net Upward Clear-Sky Longwave Flux at 200 hPa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time pressure1 -valid_min: 0. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rsdscs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Incident Surface Clear-Sky Shortwave -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: down -!---------------------------------- -! -! -!============ -variable_entry: rsuscs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Reflected Surface Clear-Sky Shortwave -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rldscs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Downwelling Surface Clear-Sky Longwave -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: down -!---------------------------------- -! -! -!============ -variable_entry: rlutcs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Outgoing Clear-Sky Longwave -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 10. -valid_max: 500. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rsutcs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Reflected Clear-Sky Shortwave -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: clt -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -long_name: Total Cloud Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -valid_max: 100.0 -ok_min_mean_abs: 30. -ok_max_mean_abs: 75. -!---------------------------------- -! -! -!============ -variable_entry: clwvi -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_condensed_water_content -units: kg m-2 -cell_methods: time: mean -long_name: Column Integerated Cloud Water Content -comment: should include both liquid and solid phase -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: clivi -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_ice_content -units: kg m-2 -cell_methods: time: mean -long_name: Column Integerated Cloud Ice Content -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -! -! -! *************************************************************** -! -! IPCC Table A1b: Time-independent 2-d land surface data -! -! *************************************************************** -! -! -! -!============ -variable_entry: orog -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -valid_min: -500. -valid_max: 12000. -ok_min_mean_abs: 0. -ok_max_mean_abs: 2000. -!---------------------------------- -! -! -!============ -variable_entry: sftlf -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: land_area_fraction -units: % -long_name: Land Area Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -valid_min: 0.0 -valid_max: 100. -ok_min_mean_abs: 20. -ok_max_mean_abs: 40. -!---------------------------------- -! -! -!============ -variable_entry: sftgif -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: land_ice_area_fraction -units: % -long_name: Fraction of Grid Cell Covered with Glacier -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -valid_min: 0.0 -valid_max: 100. -!---------------------------------- -! -! -!============ -variable_entry: mrsofc -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: soil_moisture_content_at_field_capacity -units: kg m-2 -long_name: Capacity of Soil to Store Water -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -!---------------------------------- -! -! -! -! -! *************************************************************** -! -! IPCC Table A1c: Monthly-mean 3-d atmosphere data -! -! *************************************************************** -! -! -! -!============ -variable_entry: cl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: mean -long_name: Cloud Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude zlevel time -valid_min: 0.0 -valid_max: 100.0 -ok_min_mean_abs: 10.0 -ok_max_mean_abs: 90.0 -!---------------------------------- -! -! -!============ -variable_entry: ta -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: 150. -valid_max: 350. -ok_min_mean_abs: 200. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: ua -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Zonal Wind Component -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: -200. -valid_max: 300. -ok_min_mean_abs: 0.1 -ok_max_mean_abs: 100. -!---------------------------------- -! -! -!============ -variable_entry: va -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Meridional Wind Component -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: -100. -valid_max: 100. -ok_min_mean_abs: 0.1 -ok_max_mean_abs: 50. -!---------------------------------- -! -! -!============ -variable_entry: hus -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -long_name: Specific Humidity -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -!---------------------------------- -! -! -!============ -variable_entry: wap -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: lagrangian_tendency_of_air_pressure -units: Pa s-1 -cell_methods: time: mean -long_name: Omega (=dp/dt) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -!---------------------------------- -! -! -!============ -variable_entry: zg -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: geopotential_height -units: m -cell_methods: time: mean -long_name: Geopotential Height -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -!---------------------------------- -! -! -!============ -variable_entry: hur -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: mean -long_name: Relative Humidity -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: 0. -valid_max: 100. -ok_min_mean_abs: 1. -ok_max_mean_abs: 99. -!---------------------------------- -! -! -!============ -variable_entry: tro3 -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_o3_in_air -units: 1e-9 -cell_methods: time: mean -long_name: Ozone Mole Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -!---------------------------------- -! -! -! -! -! *************************************************************** -! -! IPCC Table A1d: Monthly-mean 3-d ISCCP simulator data -! -! *************************************************************** -! -! -! -!============ -variable_entry: clisccp -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: isccp_cloud_area_fraction -units: 1 -cell_methods: time: mean -long_name: Cloud Fraction as Calculated by the ISCCP Simulator -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure2 tau time -valid_min: 0.0 -valid_max: 1.0 -ok_min_mean_abs: 0.001 -ok_max_mean_abs: 0.9 -!---------------------------------- -! -! -! -! -! *************************************************************** -! -! IPCC Table A1e: Monthly-mean 2-d and 3-d sulfate aerosol fields -! -! *************************************************************** -! -! -! -!============ -variable_entry: trsul -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: mass_concentration_of_sulfate_aerosol_in_air -units: 1e-9 kg m-3 -cell_methods: time: mean -long_name: Mass Concentration of Sulfate Aerosol -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure3 time -!---------------------------------- -! -! -!============ -variable_entry: trsult -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_content_of_sulfate_aerosol -units: 1e-6 kg m-2 -cell_methods: time: mean -long_name: Sulfate Burden -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -! -! -! *************************************************************** -! -! IPCC Table A1f: Monthly-mean land surface fields and prescribed land surface characteristics -! -! *************************************************************** -! -! -! -!============ -variable_entry: prveg -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux_onto_canopy -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation Intercepted by Vegetation Canopy -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -!============ -variable_entry: evspsblveg -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux_from_canopy -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Evaporation from Vegetation Canopy -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -!============ -variable_entry: zmla -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_boundary_layer_thickness -units: m -cell_methods: time: mean -long_name: Atmospheric Boundary Layer Thickness -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -!============ -variable_entry: rootd -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: root_depth -units: m -long_name: Root Depth -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -!---------------------------------- -! -! -!============ -variable_entry: tasmin -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: minimum within days time: mean over days -long_name: Daily Minimum Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -!---------------------------------- -! -! -!============ -variable_entry: tasmax -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: maximum within days time: mean over days -long_name: Daily Miximum Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -!---------------------------------- -! -! diff --git a/Test/IPCC_table_A3 b/Test/IPCC_table_A3 deleted file mode 100644 index 94922679b9f43a6383221c11ccc7971e19d448fe..0000000000000000000000000000000000000000 --- a/Test/IPCC_table_A3 +++ /dev/null @@ -1,545 +0,0 @@ -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.0 ! version of CF that output conforms to -project_id: IPCC Fourth Assessment ! project id -table_id: Table A3 ! table id -table_date: 17 November 2004 ! date this table was constructed -required_global_attributes: creation_date tracking_id model_id forcing - -modeling_realm: atm - -expt_id_ok: 'pre-industrial control experiment' -expt_id_ok: 'present-day control experiment' -expt_id_ok: 'climate of the 20th Century experiment (20C3M)' -expt_id_ok: 'committed climate change experiment' ! official name(s) of -expt_id_ok: 'SRES A2 experiment' ! project's experiments -expt_id_ok: '720 ppm stabilization experiment (SRES A1B)' -expt_id_ok: '550 ppm stabilization experiment (SRES B1)' -expt_id_ok: '1%/year CO2 increase experiment (to doubling)' -expt_id_ok: '1%/year CO2 increase experiment (to quadrupling)' -expt_id_ok: 'slab ocean control experiment' -expt_id_ok: '2xCO2 equilibrium experiment' '2xco2' -expt_id_ok: 'AMIP experiment' - -magic_number: -1 ! used to check whether this file has been - ! altered from the official version. - ! should be set to number of non-blank - ! characters in file. -approx_interval: 0.125 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate), but this is ignored if set to 0. -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! SUBROUTINE ARGUMENT DEFAULT INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! set default specifications for subroutine arguments to: -! required/indeterminate/optional/ignored/forbidden -! (indeterminate may or may not be required information, but is not always -! required as an argument of the function call) -! -! -!============ -subroutine_entry: cmor_axis -!============ -! -required: table axis_name units length coord_vals cell_bounds -ignored: interval -! -!============ -subroutine_entry: cmor_variable -!============ -! -required: table table_entry units axis_ids -indeterminate: missing_value -optional: tolerance original_name history comment -ignored: positive -! -!============ -subroutine_entry: cmor_write -!============ -! -required: var_id data -indeterminate: ntimes_passed time_vals time_bnds store_with -optional: file_suffix -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! AXIS INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! ??? what about climatology??? -! ??? what about model level data??? -! -! -! TEMPLATE FOR AXES -! -!============ -!axis_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -! acceptable arguments include units length coord_vals cell_bounds interval -!required: ! (default: table axis_name units length -! coord_vals cell_bounds) -!indeterminate: -!optional: -!ignored: ! (default: interval) -!forbidden: -!------------ -! -! Axis attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!axis: ! X, Y, Z, T (default: undeclared) -!positive: ! up or down (default: undeclared) -!long_name: ! (default: undeclared) -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -!out_name: ! (default: same as axis_entry) -!type: ! double (default), real, character, integer -!stored_direction: ! increasing (default) or decreasing -!valid_min: ! type: double precision (default: no check performed -!valid_max: ! type: double precision (default: no check performed -!requested: ! space-separated list of requested coordinates - ! (default: undeclared) -!bounds_requested: ! space-separated list of requested coordinate bounds - ! (default: undeclared) -!tol_on_requests: ! fractional tolerance for meeting request - ! (default=1.e-3, which is used in the formula: - ! eps = MIN(( tol*interval between grid-points) - ! and (1.e-3*tol*coordinate value))) -!value: ! of scalar (singleton) dimension -!bounds_values: ! of scalar (singleton) dimension bounds -!---------------------------------- -! -! -! TEMPLATE FOR VARIABLES -! -! -!============ -!variable_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_variable -!------------ -! acceptable arguments include file_suffix missing_value tolerance -! original_name history comment positive -!required: ! (default: table table_entry units axis_ids) -!indeterminate: ! (default: file_suffix missing_value) -!optional: ! (default: original_name history comment) -!ignored: ! (default: positive) -!forbidden: -!------------ -! -! Variable attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!cell_methods: ! (default: undeclared) -!long_name: ! (default: undeclared) -!comment: ! (default: undeclared) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -!dimensions: ! (required) (scalar dimension(s) should appear - ! last in list) -!out_name: ! (default: variable_entry) -!type: ! real (default), double, integer -!positive: ! up or down (default: undeclared) -!valid_min: ! type: real (default: no check performed) -!valid_max: ! type: real (default: no check performed) -!ok_min_mean_abs: ! type: real (default: no check performed) -!ok_max_mean_abs: ! type: real (default: no check performed) -!---------------------------------- -! - -! -!============ -axis_entry: longitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X -long_name: longitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. The - ! data will also be rearranged - ! appropriately. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============= -axis_entry: latitude -!============= -! -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y -long_name: latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! - -! ??? What about climatological data??? -! -!============ -axis_entry: time -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -long_name: time -!---------------------------------- -! -! -!============ -axis_entry: time1 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals -forbidden: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -out_name: time -standard_name: time -units: days since ? -axis: T -long_name: time -!---------------------------------- -! -! -!============ -axis_entry: pressure -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -valid_min: 0. -valid_max: 110000. -requested: 100000. 92500. 85000. 70000. 60000. 50000. 40000. -requested: 30000. 25000. 20000. 15000. 10000. 7000. 5000. -requested: 3000. 2000. 1000. -!---------------------------------- -! -! -!============ -axis_entry: height1 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 10. -value: 2. -!---------------------------------- -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! VARIABLE INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! -! -! *************************************************************** -! -! IPCC Table A3: 3-bourly 2-d atmosphere data -! -! *************************************************************** -! -! -! -!============ -variable_entry: psl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -long_name: Sea Level Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -valid_min: 90000. -valid_max: 120000. -ok_min_mean_abs: 102000. -ok_max_mean_abs: 98000. -!---------------------------------- -! -! -!============ -variable_entry: pr -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation -comment: includes all types (rain, snow, large-scale, convective, etc.) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: tas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -long_name: Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 height1 -valid_min: 185. -valid_max: 350. -ok_min_mean_abs: 270. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: hfls -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -long_name: Surface Latent Heat Flux -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -positive: up -valid_min: -1000. -valid_max: 2000. -ok_min_mean_abs: 50. -ok_max_mean_abs: 120. -!---------------------------------- -! -! -!============ -variable_entry: hfss -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -long_name: Surface Sensible Heat Flux -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rlds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -long_name: Surface Downwelling Longwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -positive: down -valid_min: 20. -valid_max: 600. -ok_min_mean_abs: 300. -ok_max_mean_abs: 370. -!---------------------------------- -! -! -!============ -variable_entry: rlus -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_longwave_flux_in_air -units: W m-2 -long_name: Surface Upwelling Longwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -positive: up -valid_min: 50. -valid_max: 900. -ok_min_mean_abs: 250. -ok_max_mean_abs: 450. -!---------------------------------- -! -! -!============ -variable_entry: rsds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -long_name: Surface Downwelling Shortwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -positive: down -valid_min: 0. -valid_max: 1400. -!---------------------------------- -! -! -!============ -variable_entry: rsus -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air -units: W m-2 -long_name: Surface Upwelling Shortwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -valid_min: 0. -positive: up -!---------------------------------- -! -! diff --git a/Test/IPCC_test_table_A b/Test/IPCC_test_table_A deleted file mode 100644 index e9cb7ad6c1a9af304b0facba9b34524e2e4ca310..0000000000000000000000000000000000000000 --- a/Test/IPCC_test_table_A +++ /dev/null @@ -1,1023 +0,0 @@ -cmor_version: 1.0 ! version of CMOR that can read this table -cf_version: 1.3 ! version of CF that output conforms to -project_id: IPCC Fourth Assessment ! project id -table_id: Table A1 ! table id -table_date: 23 October 2008 ! date this table was constructed -baseURL: http://www-pcmdi.llnl.gov/ - -modeling_realm: atm - -expt_id_ok: 'pre-industrial control experiment' -expt_id_ok: 'present-day control experiment' -expt_id_ok: 'climate of the 20th Century experiment (20C3M)' '20c3m' -expt_id_ok: 'committed climate change experiment' ! official name(s) of -expt_id_ok: 'SRES A2 experiment' ! project's experiments -expt_id_ok: '720 ppm stabilization experiment (SRES A1B)' -expt_id_ok: '550 ppm stabilization experiment (SRES B1)' -expt_id_ok: '1%/year CO2 increase experiment (to doubling)' -expt_id_ok: '1%/year CO2 increase experiment (to quadrupling)' -expt_id_ok: 'slab ocean control experiment' -expt_id_ok: '2xCO2 equilibrium experiment' '2xco2' -expt_id_ok: 'AMIP experiment' - -required_global_attributes: creation_date tracking_id forcing model_id ! space separated required global attribute - -! global attributes: Conventions (cf_version in here), table_id, project_id, -! institution, experiment_id, source, calendar: are always required anyway -magic_number: -1 ! used to check whether this file has been - ! altered from the official version. - ! should be set to number of non-blank - ! characters in file. -approx_interval: 30. ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! SUBROUTINE ARGUMENT DEFAULT INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! set default specifications for subroutine arguments to: -! required/indeterminate/optional/ignored/forbidden -! (indeterminate may or may not be required information, but is not always -! required as an argument of the function call) -! -! -!============ -subroutine_entry: cmor_axis -!============ -! -required: table axis_name units length coord_vals cell_bounds -ignored: interval -! -!============ -subroutine_entry: cmor_variable -!============ -! -required: table table_entry units axis_ids -indeterminate: missing_value -optional: tolerance original_name history comment -ignored: positive -! -!============ -subroutine_entry: cmor_write -!============ -! -required: var_id data -indeterminate: ntimes_passed time_vals time_bnds store_with -optional: file_suffix -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! AXIS INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! ??? what about climatology??? -! ??? what about model level data??? -! -! -! TEMPLATE FOR AXES -! -!============ -!axis_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -! acceptable arguments include units length coord_vals cell_bounds interval -!required: ! (default: table axis_name units length -! coord_vals cell_bounds) -!indeterminate: -!optional: -!ignored: ! (default: interval) -!forbidden: -!------------ -! -! Axis attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!axis: ! X, Y, Z, T (default: undeclared) -!positive: ! up or down (default: undeclared) -!long_name: ! (default: undeclared) -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -!out_name: ! (default: same as axis_entry) -!type: ! double (default), real, character, integer -!stored_direction: ! increasing (default) or decreasing -!valid_min: ! type: double precision (default: no check performed -!valid_max: ! type: double precision (default: no check performed -!requested: ! space-separated list of requested coordinates - ! (default: undeclared) -!requested_bounds: ! space-separated list of requested coordinate bounds - ! (default: undeclared) -!tol_on_requests: ! fractional tolerance for meeting request - ! (default=1.e-3, which is used in the formula: - ! eps = MIN(( tol*interval between grid-points) - ! and (1.e-3*tol*coordinate value))) -!value: ! of scalar (singleton) dimension -!bounds_values: ! of scalar (singleton) dimension bounds -!---------------------------------- -! -! -! TEMPLATE FOR VARIABLES -! -! -!============ -!variable_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_variable -!------------ -! acceptable arguments include file_suffix missing_value tolerance -! original_name history comment positive -!required: ! (default: table table_entry units axis_ids) -!indeterminate: ! (default: file_suffix missing_value) -!optional: ! (default: original_name history comment) -!ignored: ! (default: positive) -!forbidden: -!------------ -! -! Variable attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!cell_methods: ! (default: undeclared) -!long_name: ! (default: undeclared) -!comment: ! (default: undeclared) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -!dimensions: ! (required) (scalar dimension(s) should appear - ! last in list) -!out_name: ! (default: variable_entry) -!type: ! real (default), double, integer -!positive: ! up or down (default: undeclared) -!valid_min: ! type: real (default: no check performed) -!valid_max: ! type: real (default: no check performed) -!ok_min_mean_abs: ! type: real (default: no check performed) -!ok_max_mean_abs: ! type: real (default: no check performed) -!---------------------------------- -! - -! -!============ -axis_entry: longitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X -long_name: longitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. The - ! data will also be rearranged - ! appropriately. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============= -axis_entry: latitude -!============= -! -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y -long_name: latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! -!============ -axis_entry: time -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -long_name: time -!---------------------------------- -! -! -! -!============ -axis_entry: time_clim -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -climatology: yes -long_name: time -!---------------------------------- -! -! -! -!============ -axis_entry: pressure -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -valid_min: 0. -valid_max: 110000. -requested: 10000. 20000. 30000. 40000. 50000. -!---------------------------------- -! -! -!============ -axis_entry: height1 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 10. -value: 2. -!---------------------------------- -! -! -!============ -axis_entry: height2 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 30. -value: 10. -!---------------------------------- -! -!============ -axis_entry: depth1 -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z -positive: down -long_name: depth -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 1.0 -value: 0.05 -bounds_values: 0.0 0.1 -!---------------------------------- -! -! -!============ -axis_entry: standard_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -convert_to: standard_hybrid_sigma -z_factors: ptop: ptop sigma: sigma ps: ps -z_bounds_factors: ptop: ptop sigma: sigma_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -convert_to: standard_hybrid_sigma -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -convert_to: standard_hybrid_sigma -z_factors: p0: p0 ap: ap b: b ps: ps -z_bounds_factors: p0 ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: increasing -valid_min: 0.0 -formula: z(k,j,i) = a(k) + b(k)*orog(j,i) -z_factors: a: az b: bz orog: orog -z_bounds_factors: a: az_bnds b: bz_bnds orog: orog -!---------------------------------- -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! VARIABLE INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! -! -! *************************************************************** -! -! Vertical dimensionless coordinate variables: -! -! *************************************************************** -! -! -! -!============ -variable_entry: p0 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -ignored: axis_ids -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: reference pressure for hybrid sigma coordinate -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -! Override default argument specifications for cmor_variable -!------------ -ignored: axis_ids -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: sigma -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: sigma coordinate -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: sigma_bnds -!============ -!IPCC_table_A1 -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: sigma coordinate for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: alternate hybrid sigma coordinate A coefficient for layer -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: alternate hybrid sigma coordinate A coefficient for layer bounds -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: az -!============ -! -! -! Variable attributes: -!---------------------------------- -long_name: hybrid height coordinate A coefficient for layer -units: m -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: bz -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid height coordinate B coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: az_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer bounds -units: m -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: bz_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: psl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -long_name: Sea Level Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 90000. -valid_max: 120000. -ok_min_mean_abs: 102000. -ok_max_mean_abs: 98000. -!---------------------------------- -! -! -!============ -variable_entry: orog -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -valid_min: -500. -valid_max: 12000. -ok_min_mean_abs: 0. -ok_max_mean_abs: 2000. -!---------------------------------- -! -! -!============ -variable_entry: pr -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation -comment: includes all types (rain, snow, large-scale, convective, etc.) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -valid_max: 1.e-4 -ok_min_mean_abs: 1.e-6 -ok_max_mean_abs: 5.e-5 -!---------------------------------- -! -! -!============ -variable_entry: tas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Surface Air Temperature -deflate: 9 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -valid_min: 200. -valid_max: 330. -ok_min_mean_abs: 260. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: tas_diurnal -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean within days time: mean over days -long_name: Diurnal Cycle Climatology for Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time_clim height1 -valid_min: 200. -valid_max: 330. -ok_min_mean_abs: 270. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: mrsos -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: moisture_content_of_soil_layer -units: kg m-2 -cell_methods: time: mean -long_name: Moisture in Upper 0.1 m of Soil Column -comment: includes subsurface frozen water but not surface snow and ice -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth1 -!---------------------------------- -! -! -!============ -variable_entry: hfls -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: ps -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: mean -long_name: Surface Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.48e5 -valid_max: 1.1e5 -ok_min_mean_abs: 0.97e5 -ok_max_mean_abs: 1.0e5 -!---------------------------------- -! -! -!============ -variable_entry: ua -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Zonal Wind Component -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: -200. -valid_max: 300. -ok_min_mean_abs: 0.1 -ok_max_mean_abs: 100. -!---------------------------------- -! -! -!============ -variable_entry: ta -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: 150. -valid_max: 350. -ok_min_mean_abs: 200. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: cl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -long_name: Total Cloud Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude zlevel time -valid_min: 0.0 -valid_max: 100.0 -ok_min_mean_abs: 10.0 -ok_max_mean_abs: 90.0 -!---------------------------------- -! -! diff --git a/Test/IPCC_test_table_As b/Test/IPCC_test_table_As deleted file mode 100644 index a726042f76c2e21d09ba964bf55911ad1ef77439..0000000000000000000000000000000000000000 --- a/Test/IPCC_test_table_As +++ /dev/null @@ -1,14624 +0,0 @@ -cmor_version: 1.0 ! version of CMOR that can read this table -cf_version: 1.3 ! version of CF that output conforms to -project_id: IPCC Fourth Assessment ! project id -table_id: Table A1 ! table id -table_date: 23 October 2008 ! date this table was constructed -baseURL: http://www-pcmdi.llnl.gov/ - -modeling_realm: land - -expt_id_ok: 'pre-industrial control experiment' 'preind' -expt_id_ok: 'present-day control experiment' 'present' -expt_id_ok: 'climate of the 20th Century experiment (20C3M)' '20c3m' -expt_id_ok: 'committed climate change experiment' ! official name(s) of 'ccce' -expt_id_ok: 'SRES A2 experiment' ! project's experiments 'sresa2' -expt_id_ok: '720 ppm stabilization experiment (SRES A1B)' 'sresa1b' -expt_id_ok: '550 ppm stabilization experiment (SRES B1)' 'sres1b' -expt_id_ok: '1%/year CO2 increase experiment (to doubling)' '1pct2x' -expt_id_ok: '1%/year CO2 increase experiment (to quadrupling)' '1pct4x' -expt_id_ok: 'slab ocean control experiment' 'slab' -expt_id_ok: '2xCO2 equilibrium experiment' '2xco2' -expt_id_ok: 'AMIP experiment' 'amip' - -required_global_attributes: creation_date tracking_id forcing model_id initialization_method ! space separated required global attribute - -! global attributes: Conventions (cf_version in here), table_id, project_id, -! institution, experiment_id, source, calendar: are always required anyway -magic_number: -1 ! used to check whether this file has been - ! altered from the official version. - ! should be set to number of non-blank - ! characters in file. -approx_interval: 30. ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! SUBROUTINE ARGUMENT DEFAULT INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! set default specifications for subroutine arguments to: -! required/indeterminate/optional/ignored/forbidden -! (indeterminate may or may not be required information, but is not always -! required as an argument of the function call) -! -! -!============ -subroutine_entry: cmor_axis -!============ -! -required: table axis_name units length coord_vals cell_bounds -ignored: interval -! -!============ -subroutine_entry: cmor_variable -!============ -! -required: table table_entry units axis_ids -indeterminate: missing_value -optional: tolerance original_name history comment -ignored: positive -! -!============ -subroutine_entry: cmor_write -!============ -! -required: var_id data -indeterminate: ntimes_passed time_vals time_bnds store_with -optional: file_suffix -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! AXIS INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! ??? what about climatology??? -! ??? what about model level data??? -! -! -! TEMPLATE FOR AXES -! -!============ -!axis_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -! acceptable arguments include units length coord_vals cell_bounds interval -!required: ! (default: table axis_name units length -! coord_vals cell_bounds) -!indeterminate: -!optional: -!ignored: ! (default: interval) -!forbidden: -!------------ -! -! Axis attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!axis: ! X, Y, Z, T (default: undeclared) -!positive: ! up or down (default: undeclared) -!long_name: ! (default: undeclared) -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -!out_name: ! (default: same as axis_entry) -!type: ! double (default), real, character, integer -!stored_direction: ! increasing (default) or decreasing -!valid_min: ! type: double precision (default: no check performed -!valid_max: ! type: double precision (default: no check performed -!requested: ! space-separated list of requested coordinates - ! (default: undeclared) -!requested_bounds: ! space-separated list of requested coordinate bounds - ! (default: undeclared) -!tol_on_requests: ! fractional tolerance for meeting request - ! (default=1.e-3, which is used in the formula: - ! eps = MIN(( tol*interval between grid-points) - ! and (1.e-3*tol*coordinate value))) -!value: ! of scalar (singleton) dimension -!bounds_values: ! of scalar (singleton) dimension bounds -!---------------------------------- -! -! -! TEMPLATE FOR VARIABLES -! -! -!============ -!variable_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_variable -!------------ -! acceptable arguments include file_suffix missing_value tolerance -! original_name history comment positive -!required: ! (default: table table_entry units axis_ids) -!indeterminate: ! (default: file_suffix missing_value) -!optional: ! (default: original_name history comment) -!ignored: ! (default: positive) -!forbidden: -!------------ -! -! Variable attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!cell_methods: ! (default: undeclared) -!long_name: ! (default: undeclared) -!comment: ! (default: undeclared) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -!dimensions: ! (required) (scalar dimension(s) should appear - ! last in list) -!out_name: ! (default: variable_entry) -!type: ! real (default), double, integer -!positive: ! up or down (default: undeclared) -!valid_min: ! type: real (default: no check performed) -!valid_max: ! type: real (default: no check performed) -!ok_min_mean_abs: ! type: real (default: no check performed) -!ok_max_mean_abs: ! type: real (default: no check performed) -!---------------------------------- -! - -! -!============ -axis_entry: longitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X -long_name: longitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. The - ! data will also be rearranged - ! appropriately. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============= -axis_entry: latitude -!============= -! -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y -long_name: latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! -!============ -axis_entry: time -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -long_name: time -!---------------------------------- -! -! -! -!============ -axis_entry: time_clim -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -climatology: yes -long_name: time -!---------------------------------- -! -! -! -!============ -axis_entry: pressure -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -valid_min: 0. -valid_max: 110000. -requested: 10000. 20000. 30000. 40000. 50000. -!---------------------------------- -! -! -!============ -axis_entry: height1 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 10. -value: 2. -!---------------------------------- -! -! -!============ -axis_entry: height2 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 30. -value: 10. -!---------------------------------- -! -!============ -axis_entry: depth1 -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z -positive: down -long_name: depth -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 1.0 -value: 0.05 -bounds_values: 0.0 0.1 -!---------------------------------- -! -! -!============ -axis_entry: standard_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -convert_to: standard_hybrid_sigma -z_factors: ptop: ptop sigma: sigma ps: ps -z_bounds_factors: ptop: ptop sigma: sigma_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -convert_to: standard_hybrid_sigma -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -convert_to: standard_hybrid_sigma -z_factors: p0: p0 ap: ap b: b ps: ps -z_bounds_factors: p0 ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: increasing -valid_min: 0.0 -formula: z(k,j,i) = a(k) + b(k)*orog(j,i) -z_factors: a: az b: bz orog: orog -z_bounds_factors: a: az_bnds b: bz_bnds orog: orog -!---------------------------------- -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! VARIABLE INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! -! -! *************************************************************** -! -! Vertical dimensionless coordinate variables: -! -! *************************************************************** -! -! -! -!============ -variable_entry: p0 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -ignored: axis_ids -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: reference pressure for hybrid sigma coordinate -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -! Override default argument specifications for cmor_variable -!------------ -ignored: axis_ids -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: sigma -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: sigma coordinate -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: sigma_bnds -!============ -!IPCC_table_A1 -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: sigma coordinate for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: alternate hybrid sigma coordinate A coefficient for layer -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: alternate hybrid sigma coordinate A coefficient for layer bounds -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: az -!============ -! -! -! Variable attributes: -!---------------------------------- -long_name: hybrid height coordinate A coefficient for layer -units: m -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: bz -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid height coordinate B coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: az_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer bounds -units: m -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: bz_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: psl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -long_name: Sea Level Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 90000. -valid_max: 120000. -ok_min_mean_abs: 102000. -ok_max_mean_abs: 98000. -!---------------------------------- -! -! -!============ -variable_entry: orog -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -valid_min: -500. -valid_max: 12000. -ok_min_mean_abs: 0. -ok_max_mean_abs: 2000. -!---------------------------------- -! -! -!============ -variable_entry: pr -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation -comment: includes all types (rain, snow, large-scale, convective, etc.) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -valid_max: 1.e-4 -ok_min_mean_abs: 1.e-6 -ok_max_mean_abs: 5.e-5 -!---------------------------------- -! -! -!============ -variable_entry: tas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Surface Air Temperature -deflate: 9 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -valid_min: 200. -valid_max: 330. -ok_min_mean_abs: 260. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: tas_diurnal -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean within days time: mean over days -long_name: Diurnal Cycle Climatology for Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time_clim height1 -valid_min: 200. -valid_max: 330. -ok_min_mean_abs: 270. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: mrsos -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: moisture_content_of_soil_layer -units: kg m-2 -cell_methods: time: mean -long_name: Moisture in Upper 0.1 m of Soil Column -comment: includes subsurface frozen water but not surface snow and ice -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth1 -!---------------------------------- -! -! -!============ -variable_entry: hfls -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: ps -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: mean -long_name: Surface Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.48e5 -valid_max: 1.1e5 -ok_min_mean_abs: 0.97e5 -ok_max_mean_abs: 1.0e5 -!---------------------------------- -! -! -!============ -variable_entry: ua -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Zonal Wind Component -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: -200. -valid_max: 300. -ok_min_mean_abs: 0.1 -ok_max_mean_abs: 100. -!---------------------------------- -! -! -!============ -variable_entry: ta -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: 150. -valid_max: 350. -ok_min_mean_abs: 200. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: cl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -long_name: Total Cloud Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude zlevel time -valid_min: 0.0 -valid_max: 100.0 -ok_min_mean_abs: 10.0 -ok_max_mean_abs: 90.0 -!---------------------------------- -! -! -!============ -variable_entry: hfls0 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls0 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls1 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls1 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls2 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls2 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls3 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls3 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls4 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls4 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls5 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls5 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls6 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls6 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls7 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls7 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls8 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls8 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls9 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls9 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls10 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls10 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls11 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls11 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls12 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls12 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls13 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls13 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls14 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls14 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls15 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls15 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls16 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls16 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls17 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls17 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls18 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls18 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls19 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls19 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls20 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls20 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls21 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls21 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls22 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls22 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls23 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls23 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls24 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls24 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls25 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls25 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls26 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls26 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls27 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls27 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls28 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls28 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls29 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls29 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls30 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls30 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls31 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls31 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls32 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls32 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls33 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls33 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls34 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls34 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls35 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls35 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls36 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls36 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls37 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls37 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls38 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls38 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls39 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls39 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls40 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls40 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls41 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls41 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls42 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls42 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls43 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls43 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls44 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls44 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls45 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls45 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls46 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls46 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls47 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls47 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls48 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls48 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls49 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls49 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls50 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls50 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls51 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls51 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls52 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls52 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls53 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls53 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls54 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls54 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls55 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls55 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls56 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls56 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls57 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls57 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls58 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls58 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls59 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls59 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls60 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls60 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls61 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls61 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls62 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls62 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls63 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls63 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls64 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls64 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls65 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls65 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls66 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls66 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls67 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls67 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls68 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls68 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls69 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls69 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls70 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls70 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls71 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls71 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls72 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls72 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls73 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls73 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls74 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls74 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls75 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls75 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls76 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls76 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls77 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls77 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls78 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls78 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls79 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls79 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls80 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls80 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls81 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls81 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls82 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls82 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls83 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls83 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls84 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls84 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls85 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls85 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls86 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls86 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls87 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls87 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls88 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls88 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls89 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls89 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls90 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls90 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls91 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls91 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls92 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls92 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls93 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls93 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls94 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls94 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls95 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls95 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls96 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls96 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls97 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls97 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls98 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls98 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls99 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls99 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls100 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls100 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls101 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls101 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls102 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls102 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls103 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls103 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls104 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls104 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls105 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls105 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls106 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls106 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls107 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls107 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls108 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls108 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls109 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls109 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls110 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls110 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls111 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls111 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls112 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls112 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls113 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls113 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls114 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls114 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls115 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls115 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls116 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls116 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls117 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls117 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls118 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls118 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls119 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls119 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls120 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls120 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls121 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls121 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls122 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls122 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls123 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls123 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls124 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls124 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls125 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls125 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls126 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls126 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls127 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls127 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls128 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls128 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls129 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls129 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls130 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls130 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls131 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls131 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls132 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls132 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls133 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls133 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls134 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls134 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls135 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls135 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls136 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls136 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls137 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls137 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls138 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls138 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls139 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls139 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls140 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls140 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls141 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls141 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls142 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls142 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls143 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls143 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls144 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls144 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls145 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls145 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls146 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls146 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls147 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls147 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls148 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls148 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls149 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls149 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls150 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls150 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls151 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls151 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls152 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls152 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls153 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls153 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls154 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls154 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls155 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls155 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls156 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls156 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls157 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls157 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls158 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls158 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls159 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls159 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls160 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls160 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls161 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls161 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls162 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls162 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls163 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls163 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls164 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls164 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls165 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls165 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls166 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls166 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls167 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls167 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls168 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls168 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls169 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls169 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls170 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls170 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls171 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls171 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls172 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls172 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls173 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls173 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls174 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls174 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls175 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls175 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls176 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls176 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls177 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls177 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls178 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls178 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls179 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls179 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls180 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls180 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls181 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls181 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls182 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls182 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls183 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls183 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls184 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls184 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls185 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls185 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls186 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls186 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls187 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls187 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls188 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls188 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls189 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls189 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls190 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls190 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls191 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls191 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls192 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls192 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls193 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls193 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls194 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls194 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls195 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls195 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls196 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls196 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls197 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls197 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls198 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls198 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls199 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls199 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls200 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls200 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls201 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls201 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls202 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls202 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls203 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls203 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls204 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls204 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls205 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls205 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls206 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls206 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls207 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls207 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls208 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls208 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls209 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls209 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls210 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls210 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls211 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls211 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls212 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls212 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls213 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls213 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls214 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls214 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls215 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls215 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls216 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls216 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls217 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls217 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls218 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls218 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls219 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls219 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls220 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls220 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls221 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls221 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls222 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls222 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls223 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls223 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls224 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls224 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls225 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls225 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls226 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls226 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls227 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls227 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls228 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls228 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls229 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls229 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls230 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls230 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls231 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls231 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls232 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls232 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls233 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls233 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls234 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls234 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls235 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls235 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls236 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls236 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls237 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls237 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls238 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls238 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls239 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls239 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls240 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls240 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls241 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls241 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls242 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls242 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls243 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls243 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls244 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls244 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls245 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls245 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls246 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls246 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls247 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls247 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls248 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls248 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls249 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls249 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls250 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls250 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls251 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls251 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls252 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls252 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls253 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls253 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls254 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls254 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls255 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls255 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls256 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls256 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls257 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls257 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls258 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls258 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls259 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls259 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls260 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls260 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls261 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls261 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls262 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls262 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls263 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls263 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls264 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls264 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls265 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls265 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls266 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls266 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls267 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls267 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls268 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls268 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls269 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls269 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls270 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls270 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls271 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls271 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls272 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls272 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls273 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls273 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls274 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls274 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls275 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls275 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls276 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls276 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls277 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls277 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls278 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls278 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls279 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls279 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls280 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls280 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls281 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls281 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls282 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls282 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls283 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls283 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls284 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls284 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls285 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls285 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls286 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls286 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls287 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls287 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls288 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls288 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls289 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls289 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls290 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls290 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls291 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls291 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls292 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls292 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls293 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls293 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls294 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls294 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls295 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls295 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls296 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls296 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls297 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls297 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls298 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls298 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls299 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls299 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls300 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls300 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls301 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls301 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls302 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls302 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls303 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls303 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls304 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls304 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls305 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls305 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls306 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls306 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls307 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls307 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls308 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls308 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls309 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls309 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls310 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls310 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls311 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls311 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls312 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls312 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls313 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls313 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls314 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls314 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls315 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls315 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls316 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls316 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls317 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls317 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls318 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls318 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls319 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls319 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls320 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls320 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls321 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls321 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls322 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls322 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls323 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls323 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls324 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls324 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls325 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls325 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls326 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls326 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls327 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls327 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls328 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls328 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls329 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls329 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls330 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls330 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls331 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls331 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls332 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls332 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls333 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls333 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls334 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls334 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls335 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls335 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls336 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls336 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls337 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls337 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls338 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls338 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls339 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls339 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls340 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls340 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls341 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls341 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls342 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls342 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls343 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls343 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls344 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls344 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls345 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls345 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls346 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls346 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls347 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls347 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls348 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls348 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls349 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls349 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls350 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls350 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls351 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls351 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls352 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls352 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls353 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls353 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls354 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls354 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls355 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls355 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls356 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls356 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls357 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls357 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls358 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls358 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls359 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls359 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls360 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls360 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls361 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls361 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls362 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls362 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls363 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls363 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls364 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls364 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls365 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls365 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls366 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls366 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls367 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls367 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls368 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls368 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls369 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls369 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls370 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls370 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls371 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls371 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls372 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls372 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls373 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls373 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls374 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls374 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls375 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls375 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls376 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls376 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls377 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls377 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls378 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls378 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls379 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls379 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls380 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls380 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls381 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls381 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls382 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls382 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls383 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls383 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls384 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls384 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls385 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls385 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls386 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls386 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls387 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls387 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls388 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls388 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls389 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls389 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls390 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls390 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls391 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls391 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls392 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls392 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls393 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls393 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls394 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls394 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls395 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls395 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls396 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls396 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls397 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls397 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls398 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls398 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: hfls399 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls399 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ diff --git a/Test/IPCC_test_table_Grids b/Test/IPCC_test_table_Grids deleted file mode 100644 index 95b89bd7d6e563c091d48517845c1f7c983595e8..0000000000000000000000000000000000000000 --- a/Test/IPCC_test_table_Grids +++ /dev/null @@ -1,192 +0,0 @@ -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.0 ! version of CF that output conforms to -project_id: IPCC Fourth Assessment ! project id -table_id: Table Grids ! table id -table_date: 25 October 2007 ! date this table was constructed - -expt_id_ok: 'pre-industrial control experiment' -expt_id_ok: 'present-day control experiment' -expt_id_ok: 'climate of the 20th Century experiment (20C3M)' -expt_id_ok: 'committed climate change experiment' ! official name(s) of -expt_id_ok: 'SRES A2 experiment' ! project's experiments -expt_id_ok: '720 ppm stabilization experiment (SRES A1B)' -expt_id_ok: '550 ppm stabilization experiment (SRES B1)' -expt_id_ok: '1%/year CO2 increase experiment (to doubling)' -expt_id_ok: '1%/year CO2 increase experiment (to quadrupling)' -expt_id_ok: 'slab ocean control experiment' -expt_id_ok: '2xCO2 equilibrium experiment' -expt_id_ok: 'AMIP experiment' - -magic_number: -1 ! used to check whether this file has been - ! altered from the official version. - ! should be set to number of non-blank - ! characters in file. -approx_interval: 30. ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) -! -! -!============ -mapping_entry: crap -!============ -parameter: false_easting -parameter: false_northing -coordinates: rlon rlat -! -!============ -axis_entry: x -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: projection_x_coordinate -units: ? -long_name: x coordinate of projection -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -! -!============ -axis_entry: y -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: projection_y_coordinate -units: ? -long_name: y coordinate of projection -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -! -!============ -axis_entry: grid_latitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: grid_latitude -units: degrees -long_name: latitude in rotated pole grid -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: rlat -! -!============ -axis_entry: grid_longitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: grid_longitude -units: degrees -long_name: longitude in rotated pole grid -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: rlon -! -!============ -axis_entry: vertices -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: vertices -units: 1 -long_name: vertices -! -!============ -variable_entry: longitude -!============ -!---------------------------------- -standard_name: longitude -units: degrees_east -long_name: longitude coordinate -dimensions: longitude latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: -180. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. -valid_max: 180. ! see above comment. -!---------------------------------- -! -! -!============ -variable_entry: latitude -!============ -!---------------------------------- -standard_name: latitude -units: degrees_north -long_name: latitude coordinate -dimensions: longitude latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! -!============ -variable_entry: vertices_longitude -!============ -!---------------------------------- -standard_name: vertices_longitude -units: degrees_east -long_name: longitude vertices coordinate -dimensions: vertices longitude latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: vertices_lon -valid_min: -180. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. -valid_max: 180. ! see above comment. -!---------------------------------- -! -! -!============ -variable_entry: vertices_latitude -!============ -!---------------------------------- -standard_name: vertices_latitude -units: degrees_north -long_name: latitude vertices coordinate -dimensions: vertices longitude latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: vertices_lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! diff --git a/Test/IPCC_test_table_O b/Test/IPCC_test_table_O deleted file mode 100644 index 8a8fed6bd1c31d9e9d37437d6e06dfe45056126a..0000000000000000000000000000000000000000 --- a/Test/IPCC_test_table_O +++ /dev/null @@ -1,287 +0,0 @@ -cmor_version: 1.0 ! version of CMOR that can read this table -cf_version: 1.0 ! version of CF that output conforms to -project_id: IPCC Fourth Assessment ! project id -table_id: Table O1 ! table id -table_date: 4 June 2004 ! date this table was constructed - -modeling_realm: atm - -expt_id_ok: 'climate of the 20th Century (20C3M)' -expt_id_ok: 'committed climate change experiment' ! official name(s) of -expt_id_ok: 'SRES A2 experiment' ! project's experiments -expt_id_ok: 'control experiment (for 20C3M)' -expt_id_ok: '720 ppm stabilization experiment (SRES A1B)' -expt_id_ok: '550 ppm stabilization experiment (SRES B1)' -expt_id_ok: '1%/year CO2 increase experiment (to doubling)' -expt_id_ok: '1%/year CO2 increase experiment (to quadrupling)' -expt_id_ok: 'control experiment (for 1%/year CO2 run)' -expt_id_ok: '2xCO2 equilibrium experiment' '2xco2' -expt_id_ok: 'control experiment (for 2xCO2 run)' - -required_global_attributes: creation_date tracking_id forcing model_id ! space separated required global attribute - -magic_number: -1 ! used to check whether this file has been - ! altered from the official version. - ! should be set to number of non-blank - ! characters in file. -approx_interval: 30. ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! SUBROUTINE ARGUMENT DEFAULT INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! set default specifications for subroutine arguments to: -! required/indeterminate/optional/ignored/forbidden -! (indeterminate may or may not be required information, but is not always -! required as an argument of the function call) -! -! -!============ -subroutine_entry: cmor_axis -!============ -! -required: table axis_name units length coord_vals cell_bounds -ignored: interval -! -!============ -subroutine_entry: cmor_variable -!============ -! -required: table table_entry units axis_ids -indeterminate: missing_value -optional: tolerance original_name history comment -ignored: positive -! -!============ -subroutine_entry: cmor_write -!============ -! -required: var_id data -indeterminate: ntimes_passed time_vals time_bnds store_with -optional: file_suffix -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! AXIS INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! ??? what about climatology??? -! ??? what about model level data??? -! -! -! TEMPLATE FOR AXES -! -!============ -!axis_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -! acceptable arguments include units length coord_vals cell_bounds interval -!required: ! (default: table axis_name units length -! coord_vals cell_bounds) -!indeterminate: -!optional: -!ignored: ! (default: interval) -!forbidden: -!------------ -! -! Axis attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!axis: ! X, Y, Z, T (default: undeclared) -!positive: ! up or down (default: undeclared) -!long_name: ! (default: undeclared) -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -!out_name: ! (default: same as axis_entry) -!type: ! double (default), real, character, integer -!stored_direction: ! increasing (default) or decreasing -!valid_min: ! type: double precision (default: no check performed -!valid_max: ! type: double precision (default: no check performed -!requested: ! space-separated list of requested coordinates - ! (default: undeclared) -!requested_bounds: ! space-separated list of requested coordinate bounds - ! (default: undeclared) -!tol_on_requests: ! fractional tolerance for meeting request - ! (default=1.e-3, which is used in the formula: - ! eps = MIN(( tol*interval between grid-points) - ! and (1.e-3*tol*coordinate value))) -!value: ! of scalar (singleton) dimension -!bounds_values: ! of scalar (singleton) dimension bounds -!---------------------------------- -! -! -! TEMPLATE FOR VARIABLES -! -! -!============ -!variable_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_variable -!------------ -! acceptable arguments include file_suffix missing_value tolerance -! original_name history comment positive -!required: ! (default: table table_entry units axis_ids) -!indeterminate: ! (default: file_suffix missing_value) -!optional: ! (default: original_name history comment) -!ignored: ! (default: positive) -!forbidden: -!------------ -! -! Variable attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!cell_methods: ! (default: undeclared) -!long_name: ! (default: undeclared) -!comment: ! (default: undeclared) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -!dimensions: ! (required) (scalar dimension(s) should appear - ! last in list) -!out_name: ! (default: variable_entry) -!type: ! real (default), double, integer -!positive: ! up or down (default: undeclared) -!valid_min: ! type: real (default: no check performed) -!valid_max: ! type: real (default: no check performed) -!ok_min_mean_abs: ! type: real (default: no check performed) -!ok_max_mean_abs: ! type: real (default: no check performed) -!---------------------------------- -! - -! -!============ -axis_entry: longitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X -long_name: longitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. The - ! data will also be rearranged - ! appropriately. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============= -axis_entry: latitude -!============= -! -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y -long_name: latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! - -! ??? What about climatological data??? -! - -!============ -axis_entry: time -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -long_name: time -! -! -!============ -axis_entry: region -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: units cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: region -long_name: Ocean Basin -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -coords_attrib: geo_region -type: character -requested: atlantic_ocean indian_ocean pacific_ocean global_ocean -!---------------------------------- -! -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! VARIABLE INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! -!============ -variable_entry: hfogo -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: northward_ocean_heat_transport -units: W -cell_methods: time: mean longitude: sum -long_name: Northward Ocean Heat Transport -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: latitude region time -valid_min: -4.e15 -valid_max: 4.e15 -ok_min_mean_abs: 0.0 -ok_max_mean_abs: 4.e15 -!---------------------------------- diff --git a/Test/IPCC_test_table_S b/Test/IPCC_test_table_S deleted file mode 100644 index 19f8247564eba3bcae253040fd8d353703e55f76..0000000000000000000000000000000000000000 --- a/Test/IPCC_test_table_S +++ /dev/null @@ -1,691 +0,0 @@ -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.0 ! version of CF that output conforms to -project_id: IPCC Fourth Assessment ! project id -table_id: Table A1 ! table id -table_date: 25 October 2007 ! date this table was constructed !Oct 20008 added axis - station data section - -expt_id_ok: 'pre-industrial control experiment' -expt_id_ok: 'present-day control experiment' -expt_id_ok: 'climate of the 20th Century experiment (20C3M)' -expt_id_ok: 'committed climate change experiment' ! official name(s) of -expt_id_ok: 'SRES A2 experiment' ! project's experiments -expt_id_ok: '720 ppm stabilization experiment (SRES A1B)' -expt_id_ok: '550 ppm stabilization experiment (SRES B1)' -expt_id_ok: '1%/year CO2 increase experiment (to doubling)' -expt_id_ok: '1%/year CO2 increase experiment (to quadrupling)' -expt_id_ok: 'slab ocean control experiment' -expt_id_ok: '2xCO2 equilibrium experiment' -expt_id_ok: 'AMIP experiment' - -required_global_attributes: creation_date tracking_id model_id ! space separated required global attribute - -magic_number: -1 ! used to check whether this file has been - ! altered from the official version. - ! should be set to number of non-blank - ! characters in file. -approx_interval: 30. ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! SUBROUTINE ARGUMENT DEFAULT INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! set default specifications for subroutine arguments to: -! required/indeterminate/optional/ignored/forbidden -! (indeterminate may or may not be required information, but is not always -! required as an argument of the function call) -! -! -!============ -subroutine_entry: cmor_axis -!============ -! -required: table axis_name units length coord_vals cell_bounds -ignored: interval -! -!============ -subroutine_entry: cmor_variable -!============ -! -required: table table_entry units axis_ids -indeterminate: missing_value -optional: tolerance original_name history comment -ignored: positive -! -!============ -subroutine_entry: cmor_write -!============ -! -required: var_id data -indeterminate: ntimes_passed time_vals time_bnds store_with -optional: file_suffix -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! AXIS INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! ??? what about climatology??? -! ??? what about model level data??? -! -! -! TEMPLATE FOR AXES -! -!============ -!axis_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -! acceptable arguments include units length coord_vals cell_bounds interval -!required: ! (default: table axis_name units length -! coord_vals cell_bounds) -!indeterminate: -!optional: -!ignored: ! (default: interval) -!forbidden: -!------------ -! -! Axis attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!axis: ! X, Y, Z, T (default: undeclared) -!positive: ! up or down (default: undeclared) -!long_name: ! (default: undeclared) -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -!out_name: ! (default: same as axis_entry) -!type: ! double (default), real, character, integer -!stored_direction: ! increasing (default) or decreasing -!valid_min: ! type: double precision (default: no check performed -!valid_max: ! type: double precision (default: no check performed -!requested: ! space-separated list of requested coordinates - ! (default: undeclared) -!requested_bounds: ! space-separated list of requested coordinate bounds - ! (default: undeclared) -!tol_on_requests: ! fractional tolerance for meeting request - ! (default=1.e-3, which is used in the formula: - ! eps = MIN(( tol*interval between grid-points) - ! and (1.e-3*tol*coordinate value))) -!value: ! of scalar (singleton) dimension -!bounds_values: ! of scalar (singleton) dimension bounds -!---------------------------------- -! -! -! TEMPLATE FOR VARIABLES -! -! -!============ -!variable_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_variable -!------------ -! acceptable arguments include file_suffix missing_value tolerance -! original_name history comment positive -!required: ! (default: table table_entry units axis_ids) -!indeterminate: ! (default: file_suffix missing_value) -!optional: ! (default: original_name history comment) -!ignored: ! (default: positive) -!forbidden: -!------------ -! -! Variable attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!cell_methods: ! (default: undeclared) -!long_name: ! (default: undeclared) -!comment: ! (default: undeclared) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -!dimensions: ! (required) (scalar dimension(s) should appear - ! last in list) -!out_name: ! (default: variable_entry) -!type: ! real (default), double, integer -!positive: ! up or down (default: undeclared) -!valid_min: ! type: real (default: no check performed) -!valid_max: ! type: real (default: no check performed) -!ok_min_mean_abs: ! type: real (default: no check performed) -!ok_max_mean_abs: ! type: real (default: no check performed) -!---------------------------------- -! - -! -!============ -axis_entry: longitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X -long_name: longitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. The - ! data will also be rearranged - ! appropriately. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============= -axis_entry: latitude -!============= -! -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y -long_name: latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! -!============ -axis_entry: time -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -long_name: time -!---------------------------------- -! -! -! -!============ -axis_entry: time_clim -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -climatology: yes -long_name: time -!---------------------------------- -! -! -! -!============ -axis_entry: pressure -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -valid_min: 0. -valid_max: 110000. -requested: 10000. 20000. 30000. 40000. 50000. -!---------------------------------- -! -! -!============ -axis_entry: height1 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 10. -value: 2. -!---------------------------------- -! -! -!============ -axis_entry: height2 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 30. -value: 10. -!---------------------------------- -! -!============ -axis_entry: depth1 -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z -positive: down -long_name: depth -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 1.0 -value: 0.05 -bounds_values: 0.0 0.1 -!---------------------------------- -! -! -! -!============ -axis_entry: station -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: units cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: station -long_name: station number -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -coords_attrib: station_number -type: integer -!requested: atlantic_ocean indian_ocean pacific_ocean global_ocean -!---------------------------------- -! - - - -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! VARIABLE INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! -! -! *************************************************************** -! -! Vertical dimensionless coordinate variables: -! -! *************************************************************** -! -! -! -!============ -variable_entry: longitude -!============ -!---------------------------------- -standard_name: longitude -units: degrees_east -long_name: longitude coordinate -dimensions: station -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============ -variable_entry: latitude -!============ -!---------------------------------- -standard_name: latitude -units: degrees_north -long_name: latitude coordinate -dimensions: station -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! - -! -!============ -variable_entry: psl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -long_name: Sea Level Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: station time -valid_min: 90000. -valid_max: 120000. -ok_min_mean_abs: 102000. -ok_max_mean_abs: 98000. -!---------------------------------- -! -! -!============ -variable_entry: orog -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: station -valid_min: -500. -valid_max: 12000. -ok_min_mean_abs: 0. -ok_max_mean_abs: 2000. -!---------------------------------- -! -! -!============ -variable_entry: pr -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation -comment: includes all types (rain, snow, large-scale, convective, etc.) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: station time -valid_min: 0.0 -valid_max: 1.e-4 -ok_min_mean_abs: 1.e-6 -ok_max_mean_abs: 5.e-5 -!---------------------------------- -! -! -!============ -variable_entry: tas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 200. -valid_max: 330. -ok_min_mean_abs: 260. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: tas_diurnal -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean within days time: mean over days -long_name: Diurnal Cycle Climatology for Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: station time_clim height1 -valid_min: 200. -valid_max: 330. -ok_min_mean_abs: 270. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: mrsos -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: moisture_content_of_soil_layer -units: kg m-2 -cell_methods: time: mean -long_name: Moisture in Upper 0.1 m of Soil Column -comment: includes subsurface frozen water but not surface snow and ice -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: station time depth1 -!---------------------------------- -! -! -!============ -variable_entry: hfls -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -!dimensions: longitude latitude time -dimensions: station time -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: ps -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: mean -long_name: Surface Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: station time -valid_min: 0.48e5 -valid_max: 1.1e5 -ok_min_mean_abs: 0.97e5 -ok_max_mean_abs: 1.0e5 -!---------------------------------- -! -! -!============ -variable_entry: ua -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Zonal Wind Component -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: station pressure time -valid_min: -200. -valid_max: 300. -ok_min_mean_abs: 0.1 -ok_max_mean_abs: 100. -!---------------------------------- -! -! -!============ -variable_entry: ta -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: station pressure time -valid_min: 150. -valid_max: 350. -ok_min_mean_abs: 200. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: cl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -long_name: Total Cloud Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: station zlevel time -valid_min: 0.0 -valid_max: 100.0 -ok_min_mean_abs: 10.0 -ok_max_mean_abs: 90.0 -!---------------------------------- -! -! diff --git a/Test/Sophie_Table b/Test/Sophie_Table deleted file mode 100644 index 97ea39893d78a3a9484d226ea018377cb561db9d..0000000000000000000000000000000000000000 --- a/Test/Sophie_Table +++ /dev/null @@ -1,1021 +0,0 @@ -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.3 ! version of CF that output conforms to -project_id: IPCC Fourth Assessment ! project id -table_id: Table A1 ! table id -table_date: 23 October 2008 ! date this table was constructed - -expt_id_ok: 'pre-industrial control experiment' -expt_id_ok: 'present-day control experiment' -expt_id_ok: 'climate of the 20th Century experiment (20C3M)' -expt_id_ok: 'committed climate change experiment' ! official name(s) of -expt_id_ok: 'SRES A2 experiment' ! project's experiments -expt_id_ok: '720 ppm stabilization experiment (SRES A1B)' -expt_id_ok: '550 ppm stabilization experiment (SRES B1)' -expt_id_ok: '1%/year CO2 increase experiment (to doubling)' -expt_id_ok: '1%/year CO2 increase experiment (to quadrupling)' -expt_id_ok: 'slab ocean control experiment' -expt_id_ok: '2xCO2 equilibrium experiment' -expt_id_ok: 'AMIP experiment' - -required_global_attributes: creation_date tracking_id forcing model_id ! space separated required global attribute - -! global attributes: Conventions (cf_version in here), table_id, project_id, -! institution, experiment_id, source, calendar: are always required anyway -magic_number: -1 ! used to check whether this file has been - ! altered from the official version. - ! should be set to number of non-blank - ! characters in file. -approx_interval: 30. ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! SUBROUTINE ARGUMENT DEFAULT INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! set default specifications for subroutine arguments to: -! required/indeterminate/optional/ignored/forbidden -! (indeterminate may or may not be required information, but is not always -! required as an argument of the function call) -! -! -!============ -subroutine_entry: cmor_axis -!============ -! -required: table axis_name units length coord_vals cell_bounds -ignored: interval -! -!============ -subroutine_entry: cmor_variable -!============ -! -required: table table_entry units axis_ids -indeterminate: missing_value -optional: tolerance original_name history comment -ignored: positive -! -!============ -subroutine_entry: cmor_write -!============ -! -required: var_id data -indeterminate: ntimes_passed time_vals time_bnds store_with -optional: file_suffix -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! AXIS INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! ??? what about climatology??? -! ??? what about model level data??? -! -! -! TEMPLATE FOR AXES -! -!============ -!axis_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -! acceptable arguments include units length coord_vals cell_bounds interval -!required: ! (default: table axis_name units length -! coord_vals cell_bounds) -!indeterminate: -!optional: -!ignored: ! (default: interval) -!forbidden: -!------------ -! -! Axis attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!axis: ! X, Y, Z, T (default: undeclared) -!positive: ! up or down (default: undeclared) -!long_name: ! (default: undeclared) -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -!out_name: ! (default: same as axis_entry) -!type: ! double (default), real, character, integer -!stored_direction: ! increasing (default) or decreasing -!valid_min: ! type: double precision (default: no check performed -!valid_max: ! type: double precision (default: no check performed -!requested: ! space-separated list of requested coordinates - ! (default: undeclared) -!requested_bounds: ! space-separated list of requested coordinate bounds - ! (default: undeclared) -!tol_on_requests: ! fractional tolerance for meeting request - ! (default=1.e-3, which is used in the formula: - ! eps = MIN(( tol*interval between grid-points) - ! and (1.e-3*tol*coordinate value))) -!value: ! of scalar (singleton) dimension -!bounds_values: ! of scalar (singleton) dimension bounds -!---------------------------------- -! -! -! TEMPLATE FOR VARIABLES -! -! -!============ -!variable_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_variable -!------------ -! acceptable arguments include file_suffix missing_value tolerance -! original_name history comment positive -!required: ! (default: table table_entry units axis_ids) -!indeterminate: ! (default: file_suffix missing_value) -!optional: ! (default: original_name history comment) -!ignored: ! (default: positive) -!forbidden: -!------------ -! -! Variable attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!cell_methods: ! (default: undeclared) -!long_name: ! (default: undeclared) -!comment: ! (default: undeclared) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -!dimensions: ! (required) (scalar dimension(s) should appear - ! last in list) -!out_name: ! (default: variable_entry) -!type: ! real (default), double, integer -!positive: ! up or down (default: undeclared) -!valid_min: ! type: real (default: no check performed) -!valid_max: ! type: real (default: no check performed) -!ok_min_mean_abs: ! type: real (default: no check performed) -!ok_max_mean_abs: ! type: real (default: no check performed) -!---------------------------------- -! - -! -!============ -axis_entry: longitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X -long_name: longitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. The - ! data will also be rearranged - ! appropriately. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============= -axis_entry: latitude -!============= -! -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y -long_name: latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! -!============ -axis_entry: time -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -long_name: time -!---------------------------------- -! -! -! -!============ -axis_entry: time_clim -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -climatology: yes -long_name: time -!---------------------------------- -! -! -! -!============ -axis_entry: pressure -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -valid_min: 0. -valid_max: 110000. -requested: 10000. 20000. 30000. 40000. 50000. -!---------------------------------- -! -! -!============ -axis_entry: height1 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 10. -value: 2. -!---------------------------------- -! -! -!============ -axis_entry: height2 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 30. -value: 10. -!---------------------------------- -! -!============ -axis_entry: depth1 -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z -positive: down -long_name: depth -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 1.0 -value: 0.05 -bounds_values: 0.0 0.1 -!---------------------------------- -! -! -!============ -axis_entry: standard_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -convert_to: standard_hybrid_sigma -z_factors: ptop: ptop sigma: sigma ps: ps -z_bounds_factors: ptop: ptop sigma: sigma_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -convert_to: standard_hybrid_sigma -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -convert_to: standard_hybrid_sigma -z_factors: p0: p0 ap: ap b: b ps: ps -z_bounds_factors: p0 ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: increasing -valid_min: 0.0 -formula: z(k,j,i) = a(k) + b(k)*orog(j,i) -z_factors: a: az b: bz orog: orog -z_bounds_factors: a: az_bnds b: bz_bnds orog: orog -!---------------------------------- -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! VARIABLE INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! -! -! *************************************************************** -! -! Vertical dimensionless coordinate variables: -! -! *************************************************************** -! -! -! -!============ -variable_entry: p0 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -ignored: axis_ids -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: reference pressure for hybrid sigma coordinate -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -! Override default argument specifications for cmor_variable -!------------ -ignored: axis_ids -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: sigma -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: sigma coordinate -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: sigma_bnds -!============ -!IPCC_table_A1 -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: sigma coordinate for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: alternate hybrid sigma coordinate A coefficient for layer -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: alternate hybrid sigma coordinate A coefficient for layer bounds -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: az -!============ -! -! -! Variable attributes: -!---------------------------------- -long_name: hybrid height coordinate A coefficient for layer -units: m -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: bz -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid height coordinate B coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: az_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer bounds -units: m -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: bz_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: psl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -long_name: Sea Level Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 90000. -valid_max: 120000. -ok_min_mean_abs: 102000. -ok_max_mean_abs: 98000. -!---------------------------------- -! -! -!============ -variable_entry: orog -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -valid_min: -500. -valid_max: 12000. -ok_min_mean_abs: 0. -ok_max_mean_abs: 2000. -!---------------------------------- -! -! -!============ -variable_entry: pr -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation -comment: includes all types (rain, snow, large-scale, convective, etc.) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -valid_max: 1.e-4 -ok_min_mean_abs: 1.e-6 -ok_max_mean_abs: 5.e-5 -!---------------------------------- -! -! -!============ -variable_entry: tas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Surface Air Temperature -deflate: 9 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -valid_min: 200. -valid_max: 330. -ok_min_mean_abs: 260. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: tas_diurnal -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean within days time: mean over days -long_name: Diurnal Cycle Climatology for Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time_clim height1 -valid_min: 200. -valid_max: 330. -ok_min_mean_abs: 270. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: mrsos -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: moisture_content_of_soil_layer -units: kg m-2 -cell_methods: time: mean -long_name: Moisture in Upper 0.1 m of Soil Column -comment: includes subsurface frozen water but not surface snow and ice -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth1 -!---------------------------------- -! -! -!============ -variable_entry: hfls -!============ -! -! Override default argument specifications for cmor_variable -!------------ -!required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -!cell_methods: time: mean -long_name: Surface Latent Heat Flux -modeling_realm: atmosphere -comment: whatever dude -out_name: hfls -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -!dimensions: longitude latitude time -dimensions: longitude latitude -positive: up -valid_min: -50. -valid_max: 300. -ok_min_mean_abs: 10. -ok_max_mean_abs: 120. -!shuffle: 1 -!deflate: 1 -!deflate_level: 9 -!---------------------------------- -! -! -!============ -variable_entry: ps -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: mean -long_name: Surface Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.48e5 -valid_max: 1.1e5 -ok_min_mean_abs: 0.97e5 -ok_max_mean_abs: 1.0e5 -!---------------------------------- -! -! -!============ -variable_entry: ua -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Zonal Wind Component -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: -200. -valid_max: 300. -ok_min_mean_abs: 0.1 -ok_max_mean_abs: 100. -!---------------------------------- -! -! -!============ -variable_entry: ta -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: 140. -valid_max: 350. -ok_min_mean_abs: 200. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: cl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -long_name: Total Cloud Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude zlevel time -valid_min: 0.0 -valid_max: 100.0 -ok_min_mean_abs: 10.0 -ok_max_mean_abs: 90.0 -!---------------------------------- -! -! diff --git a/Test/_cmor_stub.py b/Test/_cmor_stub.py deleted file mode 100644 index 011796af8c8568457abfb2e770be6a46bc927fff..0000000000000000000000000000000000000000 --- a/Test/_cmor_stub.py +++ /dev/null @@ -1,7 +0,0 @@ -'''stub implementation of the C functions''' - -def grid(*args): - return args - -def getCMOR_defaults_include(attr): - return attr diff --git a/Test/alejandro.txt b/Test/alejandro.txt deleted file mode 100644 index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000 --- a/Test/alejandro.txt +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/Test/alejandro_1.txt b/Test/alejandro_1.txt deleted file mode 100644 index d00491fd7e5bb6fa28c517a0bb32b8b506539d4d..0000000000000000000000000000000000000000 --- a/Test/alejandro_1.txt +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/Test/alejandro_2.txt b/Test/alejandro_2.txt deleted file mode 100644 index 0cfbf08886fca9a91cb753ec8734c84fcbe52c9f..0000000000000000000000000000000000000000 --- a/Test/alejandro_2.txt +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/Test/check_results.py b/Test/check_results.py deleted file mode 100644 index 96e1bb5662439b0c0823da1e3e833f6d221b66d2..0000000000000000000000000000000000000000 --- a/Test/check_results.py +++ /dev/null @@ -1,51 +0,0 @@ -from out_files import out -from in_files import input_tables -import sys,os - -import cmor - -test = sys.argv[1] - -test = os.path.split(test)[1] -if test[-4:].lower()=='.f90': - test=test[:-4] - -print 'Checking results for:',test - -outfiles = out.get(test,[]) -intables = input_tables.get(test,['IPCC_test_table_A',]) - - -class CMORResultCheckError(Exception): - def __init__(self,args=None): - self.args=args - -nfiles = 0 - -print 'files:',outfiles -gotfiles=[] -missing=[] -for f in outfiles: - if f is None: - print 'No checking' - sys.exit() - tables=[] - for t in intables: - tables.append(os.path.join("Test",t)) - tbl = tables.pop(0) - if len(tables)==0: - tables=[None,] - fnm = os.path.join("Test",f) - if os.path.exists(fnm): - nfiles+=1 - gotfiles.append(fnm) - print 'Checking output file:',f - cmor.checkCMOR(sys.stdout,fnm,tbl,other_tables=tables) - print '----------------------- Success ------------------------------' - os.remove(fnm) - else: - missing.append(fnm) -if nfiles == 0 and outfiles!=[]: - raise CMORResultCheckError,["Error could not find any output file for test: Test/%s.f90" % (test),] -elif nfiles!=len(outfiles): - raise CMORResultCheckError,["Error checking output files for test: Test/%s.f90 we could only find %i files when %i were expected.\n\n Expected files: \n\t%s\n\nPresent files: \n\t%s\n\nMissing files: \n\t%s\n" % (test,nfiles,len(outfiles),repr(outfiles),repr(gotfiles),repr(missing)),] diff --git a/Test/climatology_test.c b/Test/climatology_test.c deleted file mode 100644 index 7fa419d06f94784506558e433e3b3ec7be123940..0000000000000000000000000000000000000000 --- a/Test/climatology_test.c +++ /dev/null @@ -1,194 +0,0 @@ -/* - * climatology_test.c - */ -#include -#include -#include - -#include "cmor.h" - -/* - * global attributes for dataset. - */ -static char *experiment_id = "historical"; -static char *institution = "MIROC(AORI, NIES and JAMSTEC)"; -static char *source = "MIROC4h 2009"; -static char *calendar = "gregorian"; -static int realization = 1; -static char *contact = "anonymous"; -static char *history = NULL; -static char *comment = NULL; -static char *references = NULL; -static char *model_id = "MIROC4h"; -static char *forcing = "GHG"; -static int initialization_method = 1; -static int physics_version = 1; -static char *institute_id = "MIROC"; -static char *parent_experiment_id = "pre-industrial control"; -static char *parent_experiment_rip = "r1i1p1"; -static double branch_time = 36500.; - - -static int -setup(void) -{ - int status; - int message = CMOR_NORMAL; - int action = CMOR_REPLACE_3; - - status = cmor_setup(NULL, &action, &message, NULL, NULL, NULL); - if (status != 0) { - fprintf(stderr, "cmor_setup() failed.\n"); - return -1; - } - - status = cmor_dataset( - "./", - experiment_id, - institution, - source, - calendar, - realization, - contact, - history, - comment, - references, - 0, - 0, - NULL, - model_id, - forcing, - initialization_method, - physics_version, - institute_id, - parent_experiment_id, - &branch_time, - parent_experiment_rip); - - if (status != 0) { - fprintf(stderr, "cmor_dataset(): failed.\n"); - return -1; - } - return 0; -} - - -void -fill_values(float *data, size_t size1, size_t size2, double v0, double step) -{ - int n, i; - - for (n = 0; n < size2; n++) - for (i = 0; i < size1; i++) - *data++ = (float)(v0 + n * step); -} - - -int -test_convert(void) -{ -#define NLON 4 -#define NLAT 2 -#define NPLEV 17 - static double lon[] = {0., 90., 180., 270.}; - static double lat[] = {-45., 45.}; - static double lon_bnds[] = { -45., 45, 135., 225., 315.}; - static double lat_bnds[] = { -90., 0, 90.}; - static double plevs[] = { - 1000., 925., 850., 700., 600., 500., 400., 300., - 250., 200., 150., 100., 70., 50., 30., 20., 10. - }; - double time[] = { - 380.5, 410., 439.5, 470., 500.5, 531., - 561.5, 592.5, 623., 653.5, 684., 714.5 - }; - double time_bnds[] = { /* climatorogical bounds (1951-1960) */ - 365., 3683., /* 1951-01-01, 1960-02-01 */ - 396., 3712., /* 1951-02-01, 1960-03-01 */ - 424., 3743., - 455., 3773., - 485., 3804., - 516., 3834., - 546., 3865., - 577., 3896., - 608., 3926., - 638., 3957., - 669., 3987., - 699., 4018. /* 1951-12-01, 1961-01-01 */ - }; - int i, axis_ids[4]; - struct { - char *name, *units; - double *values, *bnds; - size_t len; - } dims[] = { - {"plevs", "hPa", plevs, NULL, NPLEV}, - {"latitude", "degrees_north", lat, lat_bnds, NLAT}, - {"longitude", "degrees_east", lon, lon_bnds, NLON} - }; - float miss = -999.f; - float co2[NLON * NLAT * NPLEV]; - const int UNLIMITED = 0; - int varid; - - assert(sizeof plevs / sizeof plevs[0] == NPLEV); - assert(sizeof lat / sizeof lat[0] == NLAT); - assert(sizeof lon / sizeof lon[0] == NLON); - assert(sizeof lat_bnds / sizeof lat_bnds[0] == NLAT + 1); - assert(sizeof lon_bnds / sizeof lon_bnds[0] == NLON + 1); - - if (cmor_axis(axis_ids, "time2", "days since 1950-1-1", UNLIMITED, - NULL, 'd', NULL, 0, NULL) != 0) { - fprintf(stderr, "failed to setup time-axis.\n"); - return -1; - } - for (i = 0; i < 3; i++) - if (cmor_axis(axis_ids + 1 + i, - dims[i].name, dims[i].units, dims[i].len, - dims[i].values, 'd', dims[i].bnds, - dims[i].bnds ? 1 : 0, NULL) != 0) { - fprintf(stderr, "failed to setup axis(%s).\n", dims[i].name); - return -1; - } - - if (cmor_variable(&varid, "co2Clim", "1e-6", - 4, axis_ids, - 'f', &miss, - NULL, NULL, "CO2", NULL, NULL) != 0) { - fprintf(stderr, "failed to setup var.\n"); - return -1; - } - - /* - * write a variable for each time. - */ - for (i = 0; i < 12; i++) { - fill_values(co2, NLON * NLAT, NPLEV, 300. + i, .01); - - if (cmor_write(varid, co2, 'f', NULL, 1, - time + i, time_bnds + 2 * i, NULL) != 0) { - fprintf(stderr, "failed to write var(t=%d).\n", i); - return -1; - } - } - return 0; -} - - -int -main(int argc, char **argv) -{ - int table_id, rval; - - if (setup() < 0) - exit(1); - - if (cmor_load_table("Tables/CMIP5_Amon", &table_id) != 0) { - fprintf(stderr, "cmor_load_table() failed.\n"); - exit(1); - } - rval = test_convert(); - cmor_close(); - printf(rval == 0 ? "SUCCESSFUL END\n" : "ABNORMAL END\n"); - return 0; -} diff --git a/Test/climatology_test_code.f90 b/Test/climatology_test_code.f90 deleted file mode 100644 index 57b9bb5a2262163630fb5a55bb964baefb98f77e..0000000000000000000000000000000000000000 --- a/Test/climatology_test_code.f90 +++ /dev/null @@ -1,374 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: time_bnds - - INTEGER :: i - - DO i=1,SIZE(time) - time(i) = (it-1)*size(time)*30+(i-.5)*30!+ (i-.5)/SIZE(time) - time_bnds(1,i) = (it-1)*size(time)*30.+(i-1)*30!+ (i-1)*1.0/SIZE(time) - time_bnds(2,i) = (it-1)*size(time)*30.+(i+108)*30!+ i*1.0/SIZE(time) + 29. - time(i) = (it-1)*size(time)*30.+(i+47.5)*30!+ i*1.0/SIZE(time) + 29. - !time(i) = (time_bnds(2,i)+time_bnds(1,i))/2. - print*, i,time_bnds(1,i),time(i),time_bnds(2,i) - END DO - - RETURN - END SUBROUTINE read_time - - - SUBROUTINE read_2d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:,:) :: field - - INTEGER :: i, j, k,l - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - - factor = 2.2 - offset = -220. - - DO k=1,SIZE(field,4) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - DO l=1,SIZE(field, 3) - field(i,size(field,2)+1-j,l,k) = ((k-1)*0.005 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM ipcc_test_code -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 1 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 17 ! number of latitude grid cells - INTEGER, PARAMETER :: n2d = 1 ! number of IPCC Table A1a fields to be - ! output. - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=4), DIMENSION(n2d) :: & - varin2d=(/ 'TSURF' /) - - ! Units appropriate to my data - CHARACTER (LEN=1), DIMENSION(n2d) :: & - units2d=(/ '1'/) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=10), DIMENSION(n2d) :: & - entry2d = (/ 'co2Clim' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, DIMENSION(n2d) :: var2d_ids - REAL, DIMENSION(lon,lat,lev,24) :: data2d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION, DIMENSION(12) :: time - DOUBLE PRECISION, DIMENSION(2,12):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - INTEGER :: ilon, ilat, ipres, itim - double precision bt - - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - bt=0. - plevs = (/100000., 92500., 85000., 70000.,& - 60000., 50000., 40000., 30000., 25000., 20000.,& - 15000., 10000., 7000., 5000., 3000., 2000., 1000. /) - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, alons, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace')!,logfile="climatology_test_code.LOG") - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', & - model_id = 'GICCM1', & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - ! Define all axes that will be needed - - ipres = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='plevs', & - units='Pa', & - length=lev, & - coord_vals=plevs) - ilat = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='time2', & - units='days since 2030-1-1', & - length=ntimes*24 & - ) - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, ipres, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - ENDDO - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - print*, 'CALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL' - print*, 'times:',time(1),time(2) - print*, 'btimes:',bnds_time(1,1),bnds_time(2,1),bnds_time(1,2),bnds_time(2,2) - print*, "BEFORE" - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 12, & - time_vals = time, & - time_bnds = bnds_time ) - print*, "AFTER" - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing climatology test Table A ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM ipcc_test_code - diff --git a/Test/climatology_test_table_A b/Test/climatology_test_table_A deleted file mode 100644 index cd5be09fb8f7dc9b30db3b2467c5696dfd9326bb..0000000000000000000000000000000000000000 --- a/Test/climatology_test_table_A +++ /dev/null @@ -1,296 +0,0 @@ -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.3 ! version of CF that output conforms to -project_id: IPCC Fourth Assessment ! project id -table_id: Table A1 ! table id -table_date: 22 October 2008 ! date this table was last updated - -modeling_realm: atm - -required_global_attributes: creation_date tracking_id model_id forcing - -expt_id_ok: 'pre-industrial control experiment' -expt_id_ok: 'present-day control experiment' -expt_id_ok: 'climate of the 20th Century experiment (20C3M)' -expt_id_ok: 'committed climate change experiment' ! official name(s) of -expt_id_ok: 'SRES A2 experiment' ! project's experiments -expt_id_ok: '720 ppm stabilization experiment (SRES A1B)' -expt_id_ok: '550 ppm stabilization experiment (SRES B1)' -expt_id_ok: '1%/year CO2 increase experiment (to doubling)' -expt_id_ok: '1%/year CO2 increase experiment (to quadrupling)' -expt_id_ok: 'slab ocean control experiment' -expt_id_ok: '2xCO2 equilibrium experiment' '2xco2' -expt_id_ok: 'AMIP experiment' - -magic_number: -1 ! used to check whether this file has been - ! altered from the official version. - ! should be set to number of non-blank - ! characters in file. -approx_interval: 30. ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! SUBROUTINE ARGUMENT DEFAULT INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! set default specifications for subroutine arguments to: -! required/indeterminate/optional/ignored/forbidden -! (indeterminate may or may not be required information, but is not always -! required as an argument of the function call) -! -! -!============ -subroutine_entry: cmor_axis -!============ -! -required: table axis_name units length coord_vals cell_bounds -ignored: interval -! -!============ -subroutine_entry: cmor_variable -!============ -! -required: table table_entry units axis_ids -indeterminate: missing_value -optional: tolerance original_name history comment -ignored: positive -! -!============ -subroutine_entry: cmor_write -!============ -! -required: var_id data -indeterminate: ntimes_passed time_vals time_bnds store_with -optional: file_suffix -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! AXIS INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! ??? what about climatology??? -! ??? what about model level data??? -! -! -! TEMPLATE FOR AXES -! -!============ -!axis_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -! acceptable arguments include units length coord_vals cell_bounds interval -!required: ! (default: table axis_name units length -! coord_vals cell_bounds) -!indeterminate: -!optional: -!ignored: ! (default: interval) -!forbidden: -!------------ -! -! Axis attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!axis: ! X, Y, Z, T (default: undeclared) -!positive: ! up or down (default: undeclared) -!long_name: ! (default: undeclared) -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -!out_name: ! (default: same as axis_entry) -!type: ! double (default), real, character, integer -!stored_direction: ! increasing (default) or decreasing -!valid_min: ! type: double precision (default: no check performed -!valid_max: ! type: double precision (default: no check performed -!requested: ! space-separated list of requested coordinates - ! (default: undeclared) -!requested_bounds: ! space-separated list of requested coordinate bounds - ! (default: undeclared) -!tol_on_requests: ! fractional tolerance for meeting request - ! (default=1.e-3, which is used in the formula: - ! eps = MIN(( tol*interval between grid-points) - ! and (1.e-3*tol*coordinate value))) -!value: ! of scalar (singleton) dimension -!bounds_values: ! of scalar (singleton) dimension bounds -!---------------------------------- -! -! -! TEMPLATE FOR VARIABLES -! -! -!============ -!variable_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_variable -!------------ -! acceptable arguments include file_suffix missing_value tolerance -! original_name history comment positive -!required: ! (default: table table_entry units axis_ids) -!indeterminate: ! (default: file_suffix missing_value) -!optional: ! (default: original_name history comment) -!ignored: ! (default: positive) -!forbidden: -!------------ -! -! Variable attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!cell_methods: ! (default: undeclared) -!long_name: ! (default: undeclared) -!comment: ! (default: undeclared) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -!dimensions: ! (required) (scalar dimension(s) should appear - ! last in list) -!out_name: ! (default: variable_entry) -!type: ! real (default), double, integer -!positive: ! up or down (default: undeclared) -!valid_min: ! type: real (default: no check performed) -!valid_max: ! type: real (default: no check performed) -!ok_min_mean_abs: ! type: real (default: no check performed) -!ok_max_mean_abs: ! type: real (default: no check performed) -!---------------------------------- -! - -! -!============ -axis_entry: longitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X -long_name: longitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. The - ! data will also be rearranged - ! appropriately. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============= -axis_entry: latitude -!============= -! -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y -long_name: latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! -! -!============ -axis_entry: time -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -climatology: yes -long_name: time -!---------------------------------- -! -! -! -!============ -axis_entry: height1 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 10. -value: 2. -!---------------------------------- -! -! -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! VARIABLE INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! -! -!============ -variable_entry: tasDiurnal -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean within days time: mean over days -long_name: Diurnal Cycle Climatology for Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -valid_min: 200. -valid_max: 330. -ok_min_mean_abs: 270. -ok_max_mean_abs: 300. -!---------------------------------- -! -! diff --git a/Test/cmor_speed_and_compression.py b/Test/cmor_speed_and_compression.py deleted file mode 100644 index 6206618da866d98e9d95c4db2ea9aa2707f7ff6b..0000000000000000000000000000000000000000 --- a/Test/cmor_speed_and_compression.py +++ /dev/null @@ -1,162 +0,0 @@ -import cmor,numpy,sys,os -try: - import cdms2 - cdms2.setNetcdfShuffleFlag(0) - cdms2.setNetcdfDeflateFlag(0) - cdms2.setNetcdfDeflateLevelFlag(0) -except: - print "This test code needs a recent cdms2 interface for i/0" - sys.exit() - -if len(sys.argv)>1: - level = int(sys.argv[1]) -else: - level=int(os.environ.get("DEFLATE_LEVEL",0)) - -if len(sys.argv)>2: - shuffle= int(sys.argv[2]) -else: - shuffle=int(os.environ.get("SHUFFLE",0)) - -if level==0: - deflate = 0 -else: - deflate = 1 - -f=open("Test/speed_test_table_A") -s=f.read() -f.close() -s=s.replace("${DEFLATE_LEVEL}",str(level)) -s=s.replace("${DEFLATE}",str(deflate)) -s=s.replace("${SHUFFLE}",str(shuffle)) -f=open("mytable","w") -f.write(s) -f.close() - -cmor.setup(inpath="Test",set_verbosity=cmor.CMOR_NORMAL, netcdf_file_action = cmor.CMOR_REPLACE, exit_control = cmor.CMOR_EXIT_ON_MAJOR); -cmor.dataset( - outpath = "Test", - experiment_id = "historical", - institution = "GICC (Generic International Climate Center, Geneva, Switzerland)", - source = "GICCM1 (2002): atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); ocean: MOM (mom3_ver_3.5.2, 2x3L15); sea ice: GISIM4; land: GILSM2.5", - calendar = "standard", - realization = 1, - contact = "Charles Doutriaux (doutriaux1@llnl.gov)", - history = "Test for speed and compression.", - comment = "NetCDF4 vs NetCDF3 testing", - references = "http://cdat.sf.net", - leap_year=0, - leap_month=0, - institute_id="PCMDI", - month_lengths=None,model_id="GICCM1",forcing="SO",parent_experiment_id="lgm",branch_time=4.) - -tables=[] -tables.append(cmor.load_table("mytable")) -print 'Tables ids:',tables - - -## read in data, just one slice -f=cdms2.open(sys.prefix+'/sample_data/tas_dnm-95a_1984.01-1984.12.nc') -s=f("tas",time=slice(0,1),squeeze=1) - -ntimes = 12 - -myaxes=numpy.arange(10) -myvars=numpy.arange(10) -myaxes[0] = cmor.axis(table_entry = 'latitude', - units = 'degrees_north', - coord_vals = s.getLatitude()[:],cell_bounds=s.getLatitude().getBounds()) -myaxes[1] = cmor.axis(table_entry = 'longitude', - units = 'degrees_north', - coord_vals = s.getLongitude()[:],cell_bounds=s.getLongitude().getBounds()) - - - -myaxes[3] = cmor.axis(table_entry = 'time', - units = 'months since 1980', - coord_vals = numpy.arange(ntimes), cell_bounds=numpy.arange(ntimes+1)) - -pass_axes = [myaxes[2],myaxes[0],myaxes[1]] - -myvars[0] = cmor.variable( table_entry = 'tas', - units = 'K', - axis_ids = pass_axes, - original_name = 'CLT', - history = 'no history', - comment = 'testing speed' - ) - - -import time,MV2 -st = time.time() -totcmor=0 -totcdms=0 -maxcmor=0 -mincmor=1000 -maxcdms=0 -mincdms=1000 -c0=st -s2=s*1 -sh=list(s.shape) -print 'shape:',sh -sh.insert(0,1) -s2=MV2.reshape(s2,sh) -s2.setAxis(1,s.getLatitude()) -s2.setAxis(2,s.getLongitude()) -f=cdms2.open("Test/crap.nc","w") -for i in range(ntimes): - #print 'Time:',i - cmor.write(myvars[0],s.filled(),1) - c=time.time() - #print 'cmor write time:',c-c0 - totcmor+=c-c0 - if maxcmorc-c0: - mincmor=c-c0 - c0=c - t=cdms2.createAxis([i]) - t.id='time' - t.units='months since 1980' - t.designateTime() - s2.setAxis(0,t) - f.write(s2,id='tas') - c=time.time() - #print 'cdms time:',c-c0 - totcdms+=c-c0 - if maxcdmsc-c0: - mincdms=c-c0 - c0=c -f.close() -cmor.close() - -import cdtime,os -ltime = cdtime.reltime(ntimes-1,'month since 1980').tocomp() -lcmor = os.stat("Test/CMIP5/output/PCMDI/GICCM1/historical/mon/atmos/tas/r1i1p1/tas_Amon_GICCM1_historical_r1i1p1_198001-%i%.2i.nc" % (ltime.year,ltime.month))[6] -print 'level:',level,"shuffle:",shuffle -print 'total cmor:',totcmor,mincmor,totcmor/ntimes,maxcmor,lcmor -lcdms = os.stat("Test/crap.nc")[6] -print 'total cdms:',totcdms,mincdms,totcdms/ntimes,maxcdms,lcdms -print 'Size diff:',float(lcmor)/float(lcdms) -print 'speed diff:', totcmor/totcdms - -if os.path.exists("summary.txt"): - f = open("summary.txt") - s=f.read() - f.close() - dic = eval(s) -else: - dic = {} - -dic[(level,shuffle)]=(float(lcmor)/float(lcdms),totcmor/totcdms) - -for i in range(10): - a = dic.get((i,0),"N/A") - b = dic.get((i,1),"N/A") - print 'Level: ',i,"no suffle:",a,"shuffle",b -f=open("summary.txt","w") -f.write(repr(dic)) -f.close() - diff --git a/Test/cmor_speed_and_compression_01.py b/Test/cmor_speed_and_compression_01.py deleted file mode 100644 index f46d344922ebd2ca192c1a4d00fa45f821a05bdb..0000000000000000000000000000000000000000 --- a/Test/cmor_speed_and_compression_01.py +++ /dev/null @@ -1,151 +0,0 @@ -import cmor,numpy,sys,os -try: - import cdms2 - cdms2.setNetcdfShuffleFlag(0) - cdms2.setNetcdfDeflateFlag(0) - cdms2.setNetcdfDeflateLevelFlag(0) -except: - print "This test code needs a recent cdms2 interface for i/0" - sys.exit() - -if len(sys.argv)>1: - level = int(sys.argv[1]) -else: - level=int(os.environ.get("DEFLATE_LEVEL",0)) - -if len(sys.argv)>2: - shuffle= int(sys.argv[2]) -else: - shuffle=int(os.environ.get("SHUFFLE",0)) - -if level==0: - deflate = 0 -else: - deflate = 1 - -f=open("Test/speed_test_table_A") -s=f.read() -f.close() -s=s.replace("${DEFLATE_LEVEL}",str(level)) -s=s.replace("${DEFLATE}",str(deflate)) -s=s.replace("${SHUFFLE}",str(shuffle)) -f=open("mytable","w") -f.write(s) -f.close() - -cmor.setup(inpath="Test",set_verbosity=cmor.CMOR_NORMAL, netcdf_file_action = cmor.CMOR_REPLACE, exit_control = cmor.CMOR_EXIT_ON_MAJOR); -cmor.dataset( - outpath = "Test", - experiment_id = "lgm", - institution = "GICC (Generic International Climate Center, Geneva, Switzerland)", - source = "GICCM1 (2002): atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); ocean: MOM (mom3_ver_3.5.2, 2x3L15); sea ice: GISIM4; land: GILSM2.5", - calendar = "standard", - realization = 1, - contact = "Charles Doutriaux (doutriaux1@llnl.gov)", - history = "Test for speed and compression.", - comment = "NetCDF4 vs NetCDF3 testing", - references = "http://cdat.sf.net", - leap_year=0, - leap_month=0, - institute_id="PCMDI", - month_lengths=None,model_id="GICCM1",forcing="SO",parent_experiment_id="N/A",branch_time=0.) - -tables=[] -tables.append(cmor.load_table("mytable")) -print 'Tables ids:',tables - - -## read in data, just one slice -f=cdms2.open(sys.prefix+'/sample_data/tas_dnm-95a_1984.01-1984.12.nc') -s=f("tas",time=slice(0,12),squeeze=1) - -ntimes = 12 -varout='tas' - -myaxes=numpy.arange(10) -myvars=numpy.arange(10) -myaxes[0] = cmor.axis(table_entry = 'latitude', - units = 'degrees_north', - coord_vals = s.getLatitude()[:],cell_bounds=s.getLatitude().getBounds()) -myaxes[1] = cmor.axis(table_entry = 'longitude', - units = 'degrees_north', - coord_vals = s.getLongitude()[:],cell_bounds=s.getLongitude().getBounds()) - - - -myaxes[2] = cmor.axis(table_entry = 'time', - units = s.getTime().units, - coord_vals = s.getTime()[:],cell_bounds=s.getTime().getBounds()) - -pass_axes = [myaxes[2],myaxes[0],myaxes[1]] - -myvars[0] = cmor.variable( table_entry = varout, - units = s.units, - axis_ids = pass_axes, - original_name = s.id, - history = 'no history', - comment = 'testing speed' - ) - - -import time,MV2 -st = time.time() -totcmor=0 -totcdms=0 -maxcmor=0 -mincmor=1000 -maxcdms=0 -mincdms=1000 -c0=st -f=cdms2.open("Test/crap.nc","w") -#print 'Time:',i -print s.filled().shape -cmor.write(myvars[0],s.filled(),ntimes_passed=ntimes) -c=time.time() -#print 'cmor write time:',c-c0 -totcmor+=c-c0 -if maxcmorc-c0: - mincmor=c-c0 -c0=c -f.write(s,id=varout) -c=time.time() -#print 'cdms time:',c-c0 -totcdms+=c-c0 -if maxcdmsc-c0: - mincdms=c-c0 -c0=c -f.close() -cmor.close() - -import cdtime,os -ltime = cdtime.reltime(ntimes-1,'month since 1980').tocomp() -lcmor = os.stat("Test/CMIP5/output/PCMDI/GICCM1/lgm/mon/atmos/tas/r1i1p1/tas_Amon_GICCM1_lgm_r1i1p1_198401-198412.nc")[6] -print 'level:',level,"shuffle:",shuffle -print 'total cmor:',totcmor,mincmor,totcmor/ntimes,maxcmor,lcmor -lcdms = os.stat("Test/crap.nc")[6] -print 'total cdms:',totcdms,mincdms,totcdms/ntimes,maxcdms,lcdms -print 'Size diff:',float(lcmor)/float(lcdms) -print 'speed diff:', totcmor/totcdms - -if os.path.exists("summary.txt"): - f = open("summary.txt") - s=f.read() - f.close() - dic = eval(s) -else: - dic = {} - -dic[(level,shuffle)]=(float(lcmor)/float(lcdms),totcmor/totcdms) - -for i in range(10): - a = dic.get((i,0),"N/A") - b = dic.get((i,1),"N/A") - print 'Level: ',i,"no suffle:",a,"shuffle",b -f=open("summary.txt","w") -f.write(repr(dic)) -f.close() - diff --git a/Test/cmor_speed_and_compression_02.py b/Test/cmor_speed_and_compression_02.py deleted file mode 100644 index ad0378a2d2e476eae86b18c92c92284c8302564a..0000000000000000000000000000000000000000 --- a/Test/cmor_speed_and_compression_02.py +++ /dev/null @@ -1,184 +0,0 @@ -import cmor,numpy,sys,os -try: - import cdms2 -except: - print "This test code needs cdms2 interface for i/0" - sys.exit() - -cdms2.setNetcdfShuffleFlag(0) -cdms2.setNetcdfDeflateFlag(0) -cdms2.setNetcdfDeflateLevelFlag(0) - -if len(sys.argv)>1: - level = int(sys.argv[1]) -else: - level=int(os.environ.get("DEFLATE_LEVEL",0)) - -if len(sys.argv)>2: - shuffle= int(sys.argv[2]) -else: - shuffle=int(os.environ.get("SHUFFLE",0)) - -if level==0: - deflate = 0 -else: - deflate = 1 - -f=open("Test/speed_test_table_A") -s=f.read() -f.close() -s=s.replace("${DEFLATE_LEVEL}",str(level)) -s=s.replace("${DEFLATE}",str(deflate)) -s=s.replace("${SHUFFLE}",str(shuffle)) -f=open("mytable","w") -f.write(s) -f.close() - -cmor.setup(inpath="Test",set_verbosity=cmor.CMOR_NORMAL, netcdf_file_action = cmor.CMOR_REPLACE, exit_control = cmor.CMOR_EXIT_ON_MAJOR); -cmor.dataset( - outpath = "Test", - experiment_id = "2xCO2 equilibrium experiment", - institution = "GICC (Generic International Climate Center, Geneva, Switzerland)", - source = "GICCM1 (2002): atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); ocean: MOM (mom3_ver_3.5.2, 2x3L15); sea ice: GISIM4; land: GILSM2.5", - calendar = "standard", - realization = 1, - contact = "Charles Doutriaux (doutriaux1@llnl.gov)", - history = "Test for speed and compression.", - comment = "NetCDF4 vs NetCDF3 testing", - references = "http://cdat.sf.net", - leap_year=0, - leap_month=0, - month_lengths=None,model_id="pcmdi-09a",forcing="co2") - -tables=[] -tables.append(cmor.load_table("mytable")) -print 'Tables ids:',tables - - -## read in data, just one slice -var='tos' -#f=cdms2.open('/export/ipcc/20c3m/atm/3h/tas/miroc3_2_medres/run1/tas_A3.nc') -#f=cdms2.open('/export/ipcc/20c3m/atm/3h/pr/miroc3_2_medres/run1/pr_A3.nc') -f=cdms2.open('/export/ipcc/20c3m/ocn/mo/tos/miroc3_2_medres/run1/tos_O1_1934_2000.nc') -s=f[var] - -ntimes = s.shape[0] -ntimes=100 -Tim = s.getTime().clone() -myaxes=numpy.arange(10) -myvars=numpy.arange(10) -try: - missing_value = s.missing_value[0] -except: - try: - missing_value=s.missing_value - except: - missing_value=None - -print 'Missing:',type(missing_value),missing_value -#missing_value = -999. -myaxes[0] = cmor.axis(table_entry = 'latitude', - units = 'degrees_north', - coord_vals = s.getLatitude()[:]) -myaxes[1] = cmor.axis(table_entry = 'longitude', - units = 'degrees_north', - coord_vals = s.getLongitude()[:]) - - - -myaxes[2] = cmor.axis(table_entry = 'time', - units = Tim.units, - coord_vals = Tim[:ntimes]) - -pass_axes = [myaxes[2],myaxes[0],myaxes[1]] - -myvars[0] = cmor.variable( table_entry = var, - units = s.units, - axis_ids = pass_axes, - original_name = var, - history = 'no history', - comment = 'testing speed', - missing_value=missing_value, - tolerance = 1.e-2 - ) - - -import time,MV2 -st = time.time() -totcmor=0 -totcdms=0 -maxcmor=0 -mincmor=1000 -maxcdms=0 -mincdms=1000 -c0=st -f=cdms2.open("Test/crap.nc","w") -step=10 -for i in range(0,ntimes,step): - print 'Time:',i - j1=i - j2=i+step - cmor.write(myvars[0],s[j1:j2].filled(),step,file_suffix="speed-comp-02") - c=time.time() - #print 'cmor write time:',c-c0 - totcmor+=c-c0 - if maxcmorc-c0: - mincmor=c-c0 - c0=c - s2=s[j1:j2] - sh=list(s2.shape) - if len(sh)==2: - sh.insert(0,1) - s2=MV2.reshape(s2,sh) - s2.setAxis(-1,s.getLongitude()) - s2.setAxis(-2,s.getLatitude()) - t=cdms2.createAxis([Tim[i],]) - t.id='time' - t.units=Tim.units - t.designateTime() - s2.setAxis(0,t) - f.write(s2,id=var) - c=time.time() - #print 'cdms time:',c-c0 - totcdms+=c-c0 - if maxcdmsc-c0: - mincdms=c-c0 - c0=c -f.close() -cmor.close() - -import cdtime,os -ltime = cdtime.reltime(Tim[ntimes-1],Tim.units).tocomp() -ftime = cdtime.reltime(Tim[0],Tim.units).tocomp() -print ftime,ltime -print (var,var,ftime.year,ftime.month,ltime.year,ltime.month) -lcmor = os.stat("Test/IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-09a/mon/REALM/%s/r1/%s_A1_pcmdi-09a_r1_%i%.2i-%i%.2i_speed-comp-02.nc" % (var,var,ftime.year,ftime.month,ltime.year,ltime.month))[6] -print 'level:',level,"shuffle:",shuffle -print 'total cmor:',totcmor,mincmor,totcmor/ntimes,maxcmor,lcmor -lcdms = os.stat("Test/crap.nc")[6] -print 'total cdms:',totcdms,mincdms,totcdms/ntimes,maxcdms,lcdms -print 'Size diff:',float(lcmor)/float(lcdms) -print 'speed diff:', totcmor/totcdms - -if os.path.exists("summary.txt"): - f = open("summary.txt") - s=f.read() - f.close() - dic = eval(s) -else: - dic = {} - -dic[(level,shuffle)]=(float(lcmor)/float(lcdms),totcmor/totcdms) - -for i in range(10): - a = dic.get((i,0),"N/A") - b = dic.get((i,1),"N/A") - print 'Level: ',i,"no suffle:",a,"shuffle",b -f=open("summary.txt","w") -f.write(repr(dic)) -f.close() - diff --git a/Test/in_files.py b/Test/in_files.py deleted file mode 100644 index c010f7417e167de12134b2f4d83bf8b4e62c5c4d..0000000000000000000000000000000000000000 --- a/Test/in_files.py +++ /dev/null @@ -1,31 +0,0 @@ -input_tables = { - 'climatology_test_code' : ['climatology_test_table_A'], - 'test_any_from_asc' : ['CMOR_SAMPLE_TABLE'], - 'test_any_from_asc_d' : ['CMOR_SAMPLE_TABLE'], - 'test_any_from_asc_i' : ['CMOR_SAMPLE_TABLE'], - 'karls_test' : ['IPCC_test_table_A'], - 'test1' : ['CMOR_SAMPLE_TABLE'], - 'test2' : ['CMOR_SAMPLE_TABLE'], - 'test3' : ['CMOR_SAMPLE_TABLE'], - 'test4' : ['CMOR_SAMPLE_TABLE'], - 'main_prog' : ['CMOR_SAMPLE_TABLE'], - 'test_any_from_asc_i' : ['CMOR_SAMPLE_TABLE',], - 'mytest_4d_r' : ['CMOR_SAMPLE_TABLE'], - 'rewrite_harvardf_data': ['Curts_table'], - 'test_3h' : ['IPCC_table_A3'], - 'test_dimensionless' : ['IPCC_table_A1'], - 'test_fortran_example_00' : ['IPCC_test_table_A'], - 'test_fortran_example_01' : ['IPCC_test_table_A','IPCC_test_table_Grids'], - 'test_station_data' : ['IPCC_test_table_S'], - 'test_region': ['IPCC_test_table_O'], - 'test_sigma' : ['IPCC_table_A1'], - 'test_singleton' : ['IPCC_test_table_A'], - 'mytest_4d_r_big_array' : ['CMOR_SAMPLE_TABLE'], - 'mytest_4d_d_big_array_2' : ['CMOR_SAMPLE_TABLE'], - 'mytest_4d_d_big_array_3' : ['CMOR_SAMPLE_TABLE'], - 'mytest_4d_d_big_array_4' : ['CMOR_SAMPLE_TABLE'], - 'mytest_4d_d_big_array_5' : ['CMOR_SAMPLE_TABLE'], - 'test_lots_of_variables' : ['IPCC_test_table_As'], - 'test_shrt_exp_nm_set_att_initi' : ['IPCC_test_table_As'], - 'test_sophie' : ['Sophie_Table'], - } diff --git a/Test/ipcc_test_code.c b/Test/ipcc_test_code.c deleted file mode 100644 index a62d07e4620c9b36c8aed523bb014c6153321191..0000000000000000000000000000000000000000 --- a/Test/ipcc_test_code.c +++ /dev/null @@ -1,384 +0,0 @@ -#include -#include -#include -#include "cmor.h" -#include - -void read_coords(alats, alons, plevs, bnds_lat, bnds_lon,lon,lat,lev) - double *alats,*alons; - int *plevs; - double *bnds_lat,*bnds_lon; - int lon,lat,lev; -{ - int i; - - for (i=0;imydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) - - -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' ) - - current=>mydims - do i = 0,ndim-1 - print*,'CMOR AXIS',i,'AAAAAAA**************************' - print*, 'Name:',trim(adjustl(current%name)),'--',trim(adjustl(mydims%name)) - print*, current%units - print*, current%n,size(current%values) - print*, current%values(1:min(4,size(current%values))) - print*, current%bounds(1:2,1:min(4,size(current%values))) - if (i==0) then - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n) - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - endif - current=>current%next - enddo - - print*,'CMOR VAR' - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'tas',& - 'K',& - myaxis,& - missing_value=1.e20) - -!! figures out length of dimension other than time - - - - j=ntot/mydims%n - print*, '&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' - do i=1,mydims%n !! write times one at a time -!!$ print*,'before:', arrayin(j*(i-1)+1),j*(i-1)+1,j,i,ntot - print*, 'size of arrayin',size(arrayin(j*(i-1)+1:j*i)) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin(j*(i-1)+1:j*i), & - ntimes_passed = 1, & - time_vals = mydims%values(i:i), & - time_bnds = mydims%bounds(1:2,i:i) & - ) - enddo - - ierr = cmor_close() - - -contains - subroutine allocate_dims(file_id,mydims,ndim) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(I4)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I4)') tmp - dimlength(8-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - allocate(arrayin(n)) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims -! integer, dimension(ntot),intent(inout) :: arrayin - double precision, dimension(ntot),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,*) current%name - print*, 'NAME is:',current%name,trim(adjustl(mydims%name)),n,ntot - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, current%values(1),current%values(n) - print*, current%bounds(1,1),current%bounds(2,1) - print*, current%bounds(1,n),current%bounds(2,n) - current=>current%next - enddo - print *, 'ntot:',ntot - read(file_unit,*) (arrayin(i),i=1,ntot) - -print* ,trim(adjustl(mydims%name)) -print*,'done reading' - end subroutine read_ascii - -end program main - diff --git a/Test/mytest_3d_i_2.f90 b/Test/mytest_3d_i_2.f90 deleted file mode 100644 index 55a7c96b1d3ed51f25819e4113a72107985cebaa..0000000000000000000000000000000000000000 --- a/Test/mytest_3d_i_2.f90 +++ /dev/null @@ -1,194 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l -! double precision, allocatable, dimension(:,:,:,:):: arrayin - integer, allocatable, dimension(:,:,:,:):: arrayin - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax - - print*, 'hi' - filein='Test/ta.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - print*,'allocatedat:',shape(arrayin),dimlength(1),dimlength(2),dimlength(3) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' ) - - current=>mydims - do i = 0,ndim-1 - print*,'CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Name:',trim(adjustl(current%name)) -!!$ print*, current%units -!!$ print*, current%n,size(current%values) -!!$ print*, current%values(1:min(4,size(current%values))) -!!$ print*, current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'time found' - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='20 minutes') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'not time' - endif - current=>current%next - enddo - - print*,'CMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VAR' - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'ta',& - 'K',& - myaxis,& - missing_value=120) - -!! figures out length of dimension other than time - - j=ntot/mydims%n - print*, '&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' - print*,'before:', shape(arrayin),mydims%n - print*,'before:', shape(arrayin(:,i,:)) - print*, 'time before:',mydims%next%values(i:i) - do i = 1, mydims%n - - amin=1.e20 - amax=-1.e20 - do j=1, size(arrayin,2) - do k= 1, size(arrayin,3) - do l = 1, size(arrayin,4) - if (arrayin(i,j,k,l).lt.amin) amin=arrayin(i,j,k,l) - if (arrayin(i,j,k,l).gt.amax) amax=arrayin(i,j,k,l) - end do - enddo - enddo - - print*, 'Array for',i,' min,max :',amin,amax - ierr = cmor_write( & - var_id = myvar, & - data = arrayin(i,:,:,:), & - ntimes_passed = 1, & - time_vals = mydims%values(i:i), & - time_bnds = mydims%bounds(:,i:i) & - ) - enddo - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'I') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'I') tmp -!!$print*,'allocatedat:',tmp - dimlength(4-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims -! double precision, dimension(:,:,:),intent(inout) :: arrayin - integer, dimension(:,:,:,:),intent(inout) :: arrayin - integer, dimension(ndim) - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(23,*) (current%name) - print*, 'NAME is:',current%name,trim(adjustl(mydims%name)) - read(23,*) (current%units) - read(23,*) (current%values(j),j=1,n) - read(23,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((arrayin(j,k,l),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)) -print* ,trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/mytest_3d_r.f90 b/Test/mytest_3d_r.f90 deleted file mode 100644 index c611f04dacf3bbce428a379de8e90ae8b3f10d42..0000000000000000000000000000000000000000 --- a/Test/mytest_3d_r.f90 +++ /dev/null @@ -1,182 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot -! double precision, allocatable, dimension(:,:,:):: arrayin - real, allocatable, dimension(:,:,:):: arrayin - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real mymiss - - print*, 'hi' - filein='Test/tas_3d_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3))) - print*,'allocatedat:',shape(arrayin),dimlength(1),dimlength(2),dimlength(3) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) - - -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' ) - - current=>mydims - do i = 0,ndim-1 - print*,'CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Name:',trim(adjustl(current%name)) -!!$ print*, current%units -!!$ print*, current%n,size(current%values) -!!$ print*, current%values(1:min(4,size(current%values))) -!!$ print*, current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'time found' - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='20 minutes') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'not time' - endif - current=>current%next - enddo - - mymiss=1.e20 - print*,'CMOR VARCMOR VARCMOR VARCMOR',mymiss - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'tas',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n - print*, '&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' - print*,'before:', shape(arrayin),mydims%n - print*,'before:', shape(arrayin(:,:,i)) - print*, 'time before:',mydims%values(i:i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin, & - ntimes_passed = mydims%next%n, & - time_vals = mydims%next%values, & - time_bnds = mydims%next%bounds & - ) - - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(I8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'allocatedat:',tmp - dimlength(4-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims -! double precision, dimension(:,:,:),intent(inout) :: arrayin - real, dimension(:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(23,*) (current%name) - print*, 'NAME is:',current%name,trim(adjustl(mydims%name)) - read(23,*) (current%units) - read(23,*) (current%values(j),j=1,n) - read(23,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((arrayin(j,k,l),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)) -print* ,trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/mytest_3d_r_2.f90 b/Test/mytest_3d_r_2.f90 deleted file mode 100644 index b0b039014de786a64f99e9394faf72a502c2c15b..0000000000000000000000000000000000000000 --- a/Test/mytest_3d_r_2.f90 +++ /dev/null @@ -1,196 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l -! double precision, allocatable, dimension(:,:,:,:):: arrayin - real, allocatable, dimension(:,:,:,:):: arrayin - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - - print*, 'hi' - filein='Test/ta_3D_r_2.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - print*,'allocatedat:',shape(arrayin),dimlength(1),dimlength(2),dimlength(3),dimlength(4) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' ) - - current=>mydims - do i = 0,ndim-1 - print*,'CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Name:',trim(adjustl(current%name)) -!!$ print*, current%units -!!$ print*, current%n,size(current%values) -!!$ print*, current%values(1:min(4,size(current%values))) -!!$ print*, current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'time found' - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='20 minutes') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'not time' - endif - current=>current%next - enddo - - print*,'CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, '&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'before:', shape(arrayin),mydims%n -!!$ print*,'before:', shape(arrayin(:,i,:)) -!!$ print*, 'time before:',mydims%next%values(i:i) - do i = 1, mydims%n - - amin=1.e20 - amax=-1.e20 - do j=1, size(arrayin,2) - do k= 1, size(arrayin,3) - do l = 1, size(arrayin,4) - if (arrayin(j,k,l,i).lt.amin) amin=arrayin(i,j,k,l) - if (arrayin(j,k,l,i).gt.amax) amax=arrayin(i,j,k,l) - end do - enddo - enddo - - print*, 'Array for',i,' min,max :',amin,amax,'Ssub',shape(arrayin(:,:,:,i)),'S',shape(arrayin) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin(:,:,:,i), & - ntimes_passed = 1, & - time_vals = mydims%values(i:i), & - time_bnds = mydims%bounds(:,i:i) & - ) - enddo - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims -! double precision, dimension(:,:,:),intent(inout) :: arrayin - real, dimension(:,:,:,:),intent(inout) :: arrayin -! integer, dimension(ndim) - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(23,*) (current%name) - print*, 'NAME is:',current%name,trim(adjustl(mydims%name)) - read(23,*) (current%units) - read(23,*) (current%values(j),j=1,n) - read(23,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print* ,trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/mytest_4d_d_big_array_2.f90 b/Test/mytest_4d_d_big_array_2.f90 deleted file mode 100644 index 424e945b80a582ac72abb48d3217ce2c2d22d442..0000000000000000000000000000000000000000 --- a/Test/mytest_4d_d_big_array_2.f90 +++ /dev/null @@ -1,207 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l - double precision, allocatable, dimension(:,:,:,:):: arrayin -! real, allocatable, dimension(:,:,:,:):: arrayin - double precision, allocatable :: bigarray(:) - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - double precision bt - bt=0. - print*, 'Test Code: hi' - filein='Test/ta_4D_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - allocate(bigarray(dimlength(1)*dimlength(2)*5*dimlength(3)*dimlength(4))) - print*,'Test Code: allocate data :',shape(arrayin),'dims:',dimlength(1),dimlength(2),dimlength(3),dimlength(4) - print*,'Test Code: allocate data big:',shape(bigarray) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*, 'Test Code: putting everything into the big array contiguous fortran order means faster moving is first element' - bigarray=666. ! initialize bigarray at some bad value - ierr=1 - do l = 1, dimlength(4) - do k = 1, dimlength(3) - do j = 1, dimlength(2) - do i = 1, dimlength(1) - bigarray(ierr)=arrayin(i,j,k,l) - ierr=ierr+1 - enddo - enddo - enddo - enddo - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)', model_id="GICCM1", & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Test Code: Name:',trim(adjustl(current%name)) -!!$ print*, 'Test Code: ',current%units -!!$ print*, 'Test Code: ',current%n,size(current%values) -!!$ print*, 'Test Code: ',current%values(1:min(4,size(current%values))) -!!$ print*, 'Test Code: ',current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='30 days') - else - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('Tables/CMIP5_Amon',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, 'Test Code: &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'Test Code: before:', shape(arrayin),mydims%n -!!$ print*,'Test Code: before:', shape(arrayin(:,i,:)) -!!$ print*, 'Test Code: time before:',mydims%next%values(i:i) - current=>mydims%next%next -print*, 'Test Code: values:',current%values -print*, 'Test Code: bounds:',current%bounds -print*, 'Test Code: N:',current%n - ierr = cmor_write( & - var_id = myvar, & - data = bigarray, & - ntimes_passed = current%n, & - time_vals = current%values, & - time_bnds = current%bounds & - ) - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'Test Code: allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:),intent(inout) :: arrayin -! real, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name,trim(adjustl(mydims%name)) - if (current%name.eq."pressure") current%name="plevs" - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: ',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo -print*, 'Test Code: arrayin shape:',shape(arrayin) - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print*, 'Test Code: done!' -print* ,'Test Code: ',trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/mytest_4d_d_big_array_3.f90 b/Test/mytest_4d_d_big_array_3.f90 deleted file mode 100644 index 705076618aa7d5b0630ebd834601d77af5fa776d..0000000000000000000000000000000000000000 --- a/Test/mytest_4d_d_big_array_3.f90 +++ /dev/null @@ -1,207 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l - double precision, allocatable, dimension(:,:,:,:):: arrayin -! real, allocatable, dimension(:,:,:,:):: arrayin - double precision, allocatable :: bigarray(:,:,:,:,:) - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - double precision bt - bt=0. - print*, 'Test Code: hi' - filein='Test/ta_4D_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - allocate(bigarray(dimlength(1),dimlength(2),dimlength(3),dimlength(4),5)) - print*,'Test Code: allocate data :',shape(arrayin),'dims:',dimlength(1),dimlength(2),dimlength(3),dimlength(4) - print*,'Test Code: allocate data big:',shape(bigarray) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*, 'Test Code: putting everything into the big array contiguous fortran order means faster moving is first element' - bigarray=666. ! initialize bigarray at some bad value - ierr=1 - do l = 1, dimlength(4) - do k = 1, dimlength(3) - do j = 1, dimlength(2) - do i = 1, dimlength(1) - bigarray(i,j,k,l,1)=arrayin(i,j,k,l) - ierr=ierr+1 - enddo - enddo - enddo - enddo - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICCM1 (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)', model_id="GICCM1", & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Test Code: Name:',trim(adjustl(current%name)) -!!$ print*, 'Test Code: ',current%units -!!$ print*, 'Test Code: ',current%n,size(current%values) -!!$ print*, 'Test Code: ',current%values(1:min(4,size(current%values))) -!!$ print*, 'Test Code: ',current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='30 days') - else - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('Tables/CMIP5_Amon',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, 'Test Code: &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'Test Code: before:', shape(arrayin),mydims%n -!!$ print*,'Test Code: before:', shape(arrayin(:,i,:)) -!!$ print*, 'Test Code: time before:',mydims%next%values(i:i) - current=>mydims%next%next -print*, 'Test Code: values:',current%values -print*, 'Test Code: bounds:',current%bounds -print*, 'Test Code: N:',current%n - ierr = cmor_write( & - var_id = myvar, & - data = bigarray(:,:,:,:,1), & - ntimes_passed = current%n, & - time_vals = current%values, & - time_bnds = current%bounds & - ) - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'Test Code: allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:),intent(inout) :: arrayin -! real, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name,trim(adjustl(mydims%name)) - if (current%name.eq."pressure") current%name="plevs" - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: ',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo -print*, 'Test Code: arrayin shape:',shape(arrayin) - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print*, 'Test Code: done!' -print* ,'Test Code: ',trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/mytest_4d_d_big_array_4.f90 b/Test/mytest_4d_d_big_array_4.f90 deleted file mode 100644 index d06caf42c1fa90a427f05c2c079921cc1e4f03b6..0000000000000000000000000000000000000000 --- a/Test/mytest_4d_d_big_array_4.f90 +++ /dev/null @@ -1,206 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l - double precision, allocatable, dimension(:,:,:,:):: arrayin -! real, allocatable, dimension(:,:,:,:):: arrayin - double precision, allocatable :: smallarray(:,:,:) - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - double precision bt - bt=0. - print*, 'Test Code: hi' - filein='Test/ta_4D_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - allocate(smallarray(dimlength(1)+5,dimlength(3)+6,dimlength(4)+7)) - print*,'Test Code: allocate data :',shape(arrayin),'dims:',dimlength(1),dimlength(2),dimlength(3),dimlength(4) - print*,'Test Code: allocate data big:',shape(smallarray) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*, 'Test Code: putting everything into the big array contiguous fortran order means faster moving is first element' - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)',model_id="GICCM1", & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Test Code: Name:',trim(adjustl(current%name)) -!!$ print*, 'Test Code: ',current%units -!!$ print*, 'Test Code: ',current%n,size(current%values) -!!$ print*, 'Test Code: ',current%values(1:min(4,size(current%values))) -!!$ print*, 'Test Code: ',current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - print*, 'Test Code: bounds:',current%bounds,current%units - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds, & - interval='1 month') - else - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('Tables/CMIP5_Amon',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, 'Test Code: &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'Test Code: before:', shape(arrayin),mydims%n -!!$ print*,'Test Code: before:', shape(arrayin(:,i,:)) -!!$ print*, 'Test Code: time before:',mydims%next%values(i:i) - current=>mydims%next%next -print*, 'Test Code: values:',current%values -print*, 'Test Code: bounds:',current%bounds -print*, 'Test Code: N:',current%n -do i=1,current%n - smallarray=666. ! initialize smallarray at some bad value - ierr=1 - !put time i into it - do l = 1, dimlength(4) - do k = 1, dimlength(3) - do j = 1, dimlength(1) - smallarray(j,k,l)=arrayin(j,i,k,l) - enddo - enddo - enddo - ierr = cmor_write( & - var_id = myvar, & - data = smallarray, & - ntimes_passed = 1 & - ) -enddo -ierr = cmor_close(myvar) - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'Test Code: allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:),intent(inout) :: arrayin -! real, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name,trim(adjustl(mydims%name)) - if (current%name.eq."pressure") current%name="plevs" - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: ',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo -print*, 'Test Code: arrayin shape:',shape(arrayin) - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print*, 'Test Code: done!' -print* ,'Test Code: ',trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/mytest_4d_d_big_array_5.f90 b/Test/mytest_4d_d_big_array_5.f90 deleted file mode 100644 index 6dd55b9b92047aa30db29f1c7ccc62dff8ee3059..0000000000000000000000000000000000000000 --- a/Test/mytest_4d_d_big_array_5.f90 +++ /dev/null @@ -1,204 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l - double precision, allocatable, dimension(:,:,:,:):: arrayin -! real, allocatable, dimension(:,:,:,:):: arrayin - double precision, allocatable :: bigarray(:,:,:,:) - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - double precision bt - bt=0. - print*, 'Test Code: hi' - filein='Test/ta_4D_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - allocate(bigarray(dimlength(1)+10,dimlength(2)+10,dimlength(3)+10,dimlength(4)+10)) - print*,'Test Code: allocate data :',shape(arrayin),'dims:',dimlength(1),dimlength(2),dimlength(3),dimlength(4) - print*,'Test Code: allocate data big:',shape(bigarray) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*, 'Test Code: putting everything into the big array contiguous fortran order means faster moving is first element' - bigarray=666. ! initialize bigarray at some bad value - ierr=1 - do l = 1, dimlength(4) - do k = 1, dimlength(3) - do j = 1, dimlength(2) - do i = 1, dimlength(1) - bigarray(i,j,k,l)=arrayin(i,j,k,l) - ierr=ierr+1 - enddo - enddo - enddo - enddo - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)',model_id='GICCM1', & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Test Code: Name:',trim(adjustl(current%name)) -!!$ print*, 'Test Code: ',current%units -!!$ print*, 'Test Code: ',current%n,size(current%values) -!!$ print*, 'Test Code: ',current%values(1:min(4,size(current%values))) -!!$ print*, 'Test Code: ',current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found','with ',current%n,'times' - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds, & - interval='31 days') - else - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('Tables/CMIP5_Amon',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, 'Test Code: &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'Test Code: before:', shape(arrayin),mydims%n -!!$ print*,'Test Code: before:', shape(arrayin(:,i,:)) -!!$ print*, 'Test Code: time before:',mydims%next%values(i:i) - current=>mydims%next%next -print*, 'Test Code: values:',current%values -print*, 'Test Code: bounds:',current%bounds -print*, 'Test Code: N:',current%n - ierr = cmor_write( & - var_id = myvar, & - data = bigarray & - ) - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'Test Code: allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:),intent(inout) :: arrayin -! real, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name,trim(adjustl(mydims%name)) - if (current%name.eq."pressure") current%name="plevs" - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: ',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo -print*, 'Test Code: arrayin shape:',shape(arrayin) - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print*, 'Test Code: done!' -print* ,'Test Code: ',trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/mytest_4d_r.f90 b/Test/mytest_4d_r.f90 deleted file mode 100644 index 96b4434a04d56e8c2eda4f8f5ebb6b16fcd997bf..0000000000000000000000000000000000000000 --- a/Test/mytest_4d_r.f90 +++ /dev/null @@ -1,189 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l -! double precision, allocatable, dimension(:,:,:,:):: arrayin - real, allocatable, dimension(:,:,:,:):: arrayin - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - double precision bt - bt=0. - print*, 'hi' - filein='Test/ta_4D_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - print*,'allocatedat:',shape(arrayin),dimlength(1),dimlength(2),dimlength(3),dimlength(4) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - print*,'CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)', & - model_id="GICCM1",& - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - current=>mydims - do i = 0,ndim-1 - print*,'CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Name:',trim(adjustl(current%name)) -!!$ print*, current%units -!!$ print*, current%n,size(current%values) -!!$ print*, current%values(1:min(4,size(current%values))) -!!$ print*, current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'time found' - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='1 month') - else - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'not time' - endif - current=>current%next - enddo - - print*,'CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('Tables/CMIP5_Amon',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, '&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'before:', shape(arrayin),mydims%n -!!$ print*,'before:', shape(arrayin(:,i,:)) -!!$ print*, 'time before:',mydims%next%values(i:i) - current=>mydims%next%next -print*, 'values:',current%values -print*, 'bounds:',current%bounds -print*, 'N:',current%n - ierr = cmor_write( & - myvar, & - arrayin, & - ntimes_passed = current%n, & - time_vals = current%values, & - time_bnds = current%bounds & - ) - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims -! double precision, dimension(:,:,:),intent(inout) :: arrayin - real, dimension(:,:,:,:),intent(inout) :: arrayin -! integer, dimension(ndim) - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'NAME is:',current%name,trim(adjustl(mydims%name)) - if (current%name.eq."pressure") current%name="plevs" - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print* ,trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/mytest_4d_r_big_array.f90 b/Test/mytest_4d_r_big_array.f90 deleted file mode 100644 index 093906c64312786840acaa0fa1867b1321b2a0fb..0000000000000000000000000000000000000000 --- a/Test/mytest_4d_r_big_array.f90 +++ /dev/null @@ -1,204 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l - double precision, allocatable, dimension(:,:,:,:):: arrayin -! real, allocatable, dimension(:,:,:,:):: arrayin - double precision, allocatable :: bigarray(:,:,:,:) - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - double precision bt - bt=0. - print*, 'Test Code: hi' - filein='Test/ta_4D_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - allocate(bigarray(dimlength(1)+10,dimlength(2)+10,dimlength(3)+10,dimlength(4)+10)) - print*,'Test Code: allocate data :',shape(arrayin),'dims:',dimlength(1),dimlength(2),dimlength(3),dimlength(4) - print*,'Test Code: allocate data big:',shape(bigarray) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*, 'Test Code: putting everything into the big array' - bigarray=666. ! initialize bigarray at some bad value - do i = 1, dimlength(1) - do j = 1, dimlength(2) - do k = 1, dimlength(3) - do l = 1, dimlength(4) - bigarray(i,j,k,l)=arrayin(i,j,k,l) - enddo - enddo - enddo - enddo - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)', model_id="GICCM1", & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Test Code: Name:',trim(adjustl(current%name)) -!!$ print*, 'Test Code: ',current%units -!!$ print*, 'Test Code: ',current%n,size(current%values) -!!$ print*, 'Test Code: ',current%values(1:min(4,size(current%values))) -!!$ print*, 'Test Code: ',current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='1 month') - else - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('Tables/CMIP5_Amon',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, 'Test Code: &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'Test Code: before:', shape(arrayin),mydims%n -!!$ print*,'Test Code: before:', shape(arrayin(:,i,:)) -!!$ print*, 'Test Code: time before:',mydims%next%values(i:i) - current=>mydims%next%next -print*, 'Test Code: values:',current%values -print*, 'Test Code: bounds:',current%bounds -print*, 'Test Code: N:',current%n - ierr = cmor_write( & - var_id = myvar, & - data = bigarray, & - ntimes_passed = current%n, & - time_vals = current%values, & - time_bnds = current%bounds & - ) - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'Test Code: allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:),intent(inout) :: arrayin -! real, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name,trim(adjustl(mydims%name)) - if (current%name.eq."pressure") current%name="plevs" - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: ',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo -print*, 'Test Code: arrayin shape:',shape(arrayin) - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print*, 'Test Code: done!' -print* ,'Test Code: ',trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/nc2asc.py b/Test/nc2asc.py deleted file mode 100755 index 88f2600d9e78c74315fcc554ee581ad56ccbf748..0000000000000000000000000000000000000000 --- a/Test/nc2asc.py +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/env python - -import cdms2,sys, genutil -cdms2.setAutoBounds('on') - -type = 'd' - -order='zxty' -#order='xty' -#order = None -#order= 'txy' -var ='ta' -if len(sys.argv)>2: - fnm=sys.argv[1] - fout=sys.argv[2] -else: - fnm='/ipcc/20c3m/atm/mo/%s/ncar_ccsm3_0/run1/%s_A1.20C3M_1.CCSM.atmm.1870-01_cat_1879-12.nc' % (var,var) - fout='Test/%s.asc' % (var) - -f=cdms2.open(fnm) - -ntimes= 3 -print 'var:',var -#s=f(var,time=slice(0,3),latitude=(-20,20),order=order,squeeze=1) -if order is not None: - if order.find('z')>-1: - s=f(var,time=slice(0,ntimes),order=order,squeeze=1,longitude=(-180,180,'con'),level=slice(5,12)) - print s.getLevel()[:] - else: - s=f(var,time=slice(0,ntimes),order=order,squeeze=1,longitude=(-180,180,'con')) -else: - s=f(var,time=slice(0,ntimes),squeeze=1) -#s=s[:,::4,::4] -print 'Read in',s.shape -try: - p=s.getLevel() - p.id='pressure' - p.units='Pa' -except: - pass -#print genutil.minmax(s) -f.close() - -f=open(fout,'w') - -ndim=s.rank() -print 'Dumping' -print >>f, s.id -print >>f, s.units -print >>f, ndim - -for i in range(ndim): - ax=s.getAxis(i) - print >>f, len(ax) - -for i in range(ndim): - ax=s.getAxis(i) - if ax.isLatitude(): - print >>f, 'latitude' - elif ax.isLongitude(): - print >>f,'longitude' - else: - print >>f, ax.id - print >>f, ax.units - print ax.id - print ax.units - for j in ax[:]: - print >>f, j, - print >>f - for j in ax.getBounds().flat[:]: - print >>f, j, - print >>f -f.flush() - -s=s.filled(120).astype(type) -s=s.flat -j=0 -for i in s[:]: - print >>f, i, - j+=1 -print >>f -print j,s[-1] - -f.close() diff --git a/Test/noinput b/Test/noinput deleted file mode 100644 index afcf4f8ada525ff4578a854a3b597dbbe2b5a971..0000000000000000000000000000000000000000 --- a/Test/noinput +++ /dev/null @@ -1,2 +0,0 @@ -Test/tas.asc - diff --git a/Test/old_cmor_tables/climatology_test_code.f90 b/Test/old_cmor_tables/climatology_test_code.f90 deleted file mode 100644 index a274be6b58c26b784a30510b12653ec8205001d2..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/climatology_test_code.f90 +++ /dev/null @@ -1,355 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: time_bnds - - INTEGER :: i - - DO i=1,SIZE(time) - time(i) = (it-1)*30.+ (i-.5)/SIZE(time) - time_bnds(1,i) = (it-1)*30.+ (i-1)*1.0/SIZE(time) - time_bnds(2,i) = (it-1)*30.+ i*1.0/SIZE(time) + 29. - print*, i,time_bnds(1,i),time(i),time_bnds(2,i) - END DO - - RETURN - END SUBROUTINE read_time - - - SUBROUTINE read_2d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - - factor = 2.2 - offset = -220. - - DO k=1,SIZE(field,3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,size(field,2)+1-j,k) = ((k-1)*0.005 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM ipcc_test_code -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: n2d = 1 ! number of IPCC Table A1a fields to be - ! output. - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=4), DIMENSION(n2d) :: & - varin2d=(/ 'TSURF' /) - - ! Units appropriate to my data - CHARACTER (LEN=1), DIMENSION(n2d) :: & - units2d=(/ 'K'/) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=10), DIMENSION(n2d) :: & - entry2d = (/ 'tasDiurnal' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, DIMENSION(n2d) :: var2d_ids - REAL, DIMENSION(lon,lat,24) :: data2d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(24) :: time - DOUBLE PRECISION, DIMENSION(2,24):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - INTEGER :: ilon, ilat, ipres, itim - - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, alons, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace',logfile="climatology_test_code.LOG") - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', & - model_id = 'pcmdi-01', & - forcing = 'atm') - - ! Define all axes that will be needed - - ilat = cmor_axis( & - table='climatology_test_table_A', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table='climatology_test_table_A', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='climatology_test_table_A', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes*24 & - ) - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - var2d_ids(m) = cmor_variable( & - table='climatology_test_table_A', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - ENDDO - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - print*, 'CALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL' - print*, 'times:',time(1),time(2) - print*, 'btimes:',bnds_time(1,1),bnds_time(2,1),bnds_time(1,2),bnds_time(2,2) - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 24, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing climatology test Table A ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM ipcc_test_code - diff --git a/Test/old_cmor_tables/ipcc_test_code.f90 b/Test/old_cmor_tables/ipcc_test_code.f90 deleted file mode 100644 index b57f7b2a0e9d20e5979a87004740faaf26421622..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/ipcc_test_code.f90 +++ /dev/null @@ -1,550 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('CLOUD') - factor = 0.1 - offset = -50. - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j,k) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('LATENT') - - factor = 1. - offset = 20. - CASE ('TSURF') - factor = 2.0 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - CASE ('PSURF') - factor = 100. - offset = -9.7e4 - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,size(field,2)+1-j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM ipcc_test_code -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - REAL, DIMENSION(lon,lat,lev) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - REAL, DIMENSION(lev) :: a_coeff - REAL, DIMENSION(lev) :: b_coeff - REAL :: p0 - REAL, DIMENSION(lev+1) :: a_coeff_bnds - REAL, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim - - character(256):: outpath - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace') - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)' ) - - ! Define all axes that will be needed - - ilat = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - ipres = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='20 minutes') - - ! define model eta levels (although these must be provided, they will - ! actually be replaced by a+b before writing the netCDF file) - zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) - zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) - - ilev = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='standard_hybrid_sigma', & - units='1', & - length=lev, & - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - ! define z-factors needed to transform from model level to pressure - p0 = 1.e5 - a_coeff = (/ 0.1, 0.2, 0.3, 0.22, 0.1 /) - b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) - - a_coeff_bnds=(/0.,.15, .25, .25, .16, 0./) - b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='p0', & - units='Pa', & - zfactor_values = p0) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='b', & - axis_ids= (/ ilev /), & - zfactor_values = b_coeff, & - zfactor_bounds = b_coeff_bnds ) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='a', & - axis_ids= (/ ilev /), & - zfactor_values = a_coeff, & - zfactor_bounds = a_coeff_bnds ) - - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - ! Define the only field to be written that is a function of model level - ! (appearing in IPCC table A1c) - - var3d_ids(1) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry3d(1), & - units=units3d(1), & - axis_ids=(/ ilon, ilat, ilev, itim /), & - missing_value=1.0e28, & - original_name=varin3d(1)) - - ! Define variables appearing in IPCC table A1c that are a function of pressure - ! (3-d variables) - - DO m=2,n3d - var3d_ids(m) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=(/ ilon, ilat, ipres, itim /), & - missing_value=1.0e28, & - original_name=varin3d(m)) - ENDDO - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - var2d_ids(m) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - ENDDO - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - call read_3d_input_files(it, varin3d(1), data3d) - - error_flag = cmor_write( & - var_id = var3d_ids(1), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - call read_2d_input_files(it, varin2d(4), data2d) - - error_flag = cmor_write( & - var_id = zfactor_id, & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids(1) ) - - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=2,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - call cmor_create_output_path(var3d_ids(m),outpath) - print*, 'Ok we will dump that at: ',outpath - error_flag = cmor_write( & - var_id = var3d_ids(m), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1c ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM ipcc_test_code - diff --git a/Test/old_cmor_tables/karls_test.f90 b/Test/old_cmor_tables/karls_test.f90 deleted file mode 100644 index dcd6a65ea5f477871409135e50f84722dc711175..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/karls_test.f90 +++ /dev/null @@ -1,604 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i, ii - - ii = 0 - DO i = 1, SIZE(alons) - ii = ii+1 - alons(i) = (ii-1)*360./SIZE(alons) - bnds_lon(1,i) = (ii - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (ii - 0.5)*360./SIZE(alons) -!!$ alons(size(alons)+1-i) = (ii-1)*360./SIZE(alons) -!!$ bnds_lon(1,size(alons)+1-i) = (ii - 1.5)*360./SIZE(alons) -!!$ bnds_lon(2,size(alons)+1-i) = (ii - 0.5)*360./SIZE(alons) -!!$ alons(i) = (i-1)*360./SIZE(alons) -!!$ bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) -!!$ bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) -!!$ alats(i) = i*10 -!!$ bnds_lat(1,i) = i*10. - 5. -!!$ bnds_lat(2,i) = i*10. + 5. - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('CLOUD') - factor = 0.1 - offset = -50. - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j,k) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j, ii - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('LATENT') - - factor = 1. - offset = 20. - CASE ('TSURF') - factor = 2.0 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - CASE ('PSURF') - factor = 100. - offset = -9.7e4 - END SELECT - - DO j=1,SIZE(field, 2) - ii = 0 - DO i=1,SIZE(field, 1) - ii = ii + 1 - if (ii>size(field,1)) ii = 1 - field(i,size(field,2)+1-j) = ((j-1)*16 + (ii-1)*4 + it)*factor - offset -!!$ field(size(field,1)+1-i,size(field,2)+1-j) = ((j-1)*16 + (ii-1)*4 + it)*factor - offset -! field(i,size(field,2)+1-j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset -! field(i,j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM karls_test -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - REAL, DIMENSION(lon,lat,lev) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - REAL, DIMENSION(lev) :: a_coeff - REAL, DIMENSION(lev) :: b_coeff - REAL :: p0 - REAL, DIMENSION(lev+1) :: a_coeff_bnds - REAL, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim - - REAL, DIMENSION(lon,1,lat) :: dum3d - INTEGER :: iz - - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace',logfile='karls_test.LOG') - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)',& - model_id='pcmdi-a01',forcing='atm') - - ! Define all axes that will be needed - - iz = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='height1', & - units='m', & - length=1, & - coord_vals=(/ 1.5 /) ) -print*, 'iz = ', iz - - ilat = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - ipres = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - ! define model eta levels (although these must be provided, they will - ! actually be replaced by a+b before writing the netCDF file) - zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) - zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) - - ilev = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='standard_hybrid_sigma', & - length=lev, & - units = '1', & - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - ! define z-factors needed to transform from model level to pressure - p0 = 1.e5 - a_coeff = (/ 0.1, 0.2, 0.3, 0.22, 0.1 /) - b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) - - a_coeff_bnds=(/0.,.15, .25, .25, .16, 0./) - b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='p0', & - units='Pa', & - zfactor_values = p0) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='b', & - axis_ids= (/ ilev /), & - zfactor_values = b_coeff, & - zfactor_bounds = b_coeff_bnds ) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='a', & - axis_ids= (/ ilev /), & - zfactor_values = a_coeff, & - zfactor_bounds = a_coeff_bnds ) - - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - ! Define the only field to be written that is a function of model level - ! (appearing in IPCC table A1c) - - var3d_ids(1) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry3d(1), & - units=units3d(1), & - axis_ids=(/ ilon, ilat, ilev, itim /), & - missing_value=1.0e28, & - original_name=varin3d(1)) - - ! Define variables appearing in IPCC table A1c that are a function of pressure - ! (3-d variables) - - DO m=2,n3d - var3d_ids(m) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=(/ ilon, ilat, ipres, itim /), & - missing_value=1.0e28, & - original_name=varin3d(m)) - print*, 'got var3did:',var3d_ids(m),entry3d(m) - ENDDO - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - IF (m==2) then -!!$ - var2d_ids(m) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, iz, ilat, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - - else - var2d_ids(m) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - endif - ENDDO - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - call read_3d_input_files(it, varin3d(1), data3d) - - print*, 'yep ',entry3d(1),shape(data3d) - error_flag = cmor_write( & - var_id = var3d_ids(1), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - print*, 'passed' - call read_2d_input_files(it, varin2d(4), data2d) - - error_flag = cmor_write( & - var_id = zfactor_id, & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids(1) ) - - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=2,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - print*, 'm,dsh:',m,shape(data3d),entry3d(m),' ',varin3d(m),var3d_ids(m) - error_flag = cmor_write( & - var_id = var3d_ids(m), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - print*, 'Done------------------------------------------------------------------' - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1c ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - IF (m == 2) then - dum3d(:,1,:) = data2d - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = dum3d(:,1,:), & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - ELSE - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - ENDIF - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM karls_test - diff --git a/Test/old_cmor_tables/main_prog.f90 b/Test/old_cmor_tables/main_prog.f90 deleted file mode 100644 index 44ce0ce5e4397a35c573e9418add03a149b34e79..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/main_prog.f90 +++ /dev/null @@ -1,472 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/main_prog.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF//include -L/pcmdi/charles_work/NetCDF//lib -lnetcdf -module Modules -IModules -L. -lcmor Test/main_prog.f90 -o cmor_test - -MODULE local_subs - - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1) = (it-1)*30. - time_bnds(2) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - - SELECT CASE (TRIM(ADJUSTL(varname))) - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j,k) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - - - SELECT CASE (TRIM(ADJUSTL(varname))) - CASE ('LATENT') - - factor = 1.5 - offset = 20. - CASE ('TSURF') - factor = 2.2 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM mip_contribution -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is required by many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, APE, and -! IPCC scenario runs) -! -! Background information for this sample code: -! -! Standard output requested by AMIP is listed in 6 different -! tables. This sample code processes only 2 variables listed in AMIP -! Table 1a ("3-d" fields, containing monthly mean data that are a -! function of longitude, latitude, pressure and time) and only 3 -! variables in AMIP Table 2 ("2-d" fields, containing monthly mean -! data that are a function of longitude, latitude, and time). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 3 ! number of AMIP Table 2 fields to be - ! output. - INTEGER, PARAMETER :: n3d = 2 ! number of AMIP Table 1a fields to - ! be output. - - ! Tables associating the user's variables with AMIP standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for Table 1a fields - CHARACTER (LEN=2), DIMENSION(n3d) :: varin3d=(/ 'U', 'T'/) - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ 'm s-1', 'K ' /) - CHARACTER (LEN=4), DIMENSION(n3d) :: & - positive3d= (/ '', '' /) - ! Corresponding AMIP Table 1a entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'ua', 'ta' /) - - ! My variable names for Table 2 fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET' /) - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2' /) - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ' /) - ! Corresponding AMIP Table 2 entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, DIMENSION(3) :: axis2d_ids - INTEGER, DIMENSION(4) :: axis3d_ids - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - REAL, DIMENSION(lon,lat,lev) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION :: time - DOUBLE PRECISION, DIMENSION(2):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - -!!$ REAL, DIMENSION(lat*lon*lev) :: tmp3d -!!$ REAL, DIMENSION(lat*lon) :: tmp2d - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - print*, 'calling read_coords ' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - print*, 'returned from read_coords' - - ! Specify path where tables can be found, indicate that existing netCDF - ! files should not be overwritten, and instruct CMOR to error exit on - ! encountering errors of any severity. - - error_flag = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) runcmor_write under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - print*, 'calling cmor_dataset' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)', model_id="pcmdi-08a", & - forcing="co2") - - print*, 'returned from cmor_dataset' - - ! Define axes for 3-d fields - - print*, 'defining 3-d axes' - - axis3d_ids(2) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis3d_ids(1) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - axis3d_ids(3) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (below). -print*, 'before time ' - axis3d_ids(4) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='1 month') - - print*, 'finished defining 3-d axes' - - ! Define axes for 2-d fields - - print*, 'defining 2-d axes' - - axis2d_ids(1) = axis3d_ids(1) - axis2d_ids(2) = axis3d_ids(2) - axis2d_ids(3) = axis3d_ids(4) - -print*, 'finished defining 2-d axes' - - ! Define variables found in AMIP table 1a (3-d variables) - - DO m=1,n3d - var3d_ids(m) = cmor_variable( & - table='CMOR_SAMPLE_TABLE', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=axis3d_ids, & - missing_value=1.0e20, & - positive=positive3d(m), & - original_name=varin3d(m)) - ENDDO - - - ! Define variables found in AMIP table 2a (2-d variables) - - DO m=1,n2d - var2d_ids(m) = cmor_variable( & - table='CMOR_SAMPLE_TABLE', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=axis2d_ids, & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - ENDDO - -print*, 'completed everything up to writing output fields ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested AMIP table 1a and table 2 fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - ! Cycle through the 3-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - - DO m=1,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var3d_ids(m), & - data = RESHAPE(data3d, (/ lat*lon*lev /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var3d_ids(m) -print*, ' error flag = ', error_flag - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 1a ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = RESHAPE(data2d, (/ lat*lon /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var2d_ids(m) -print*, ' error flag = ', error_flag - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 2 ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - -print*, '******************************' -print*, ' ' -print*, 'CMOR COMPLETED SUCCESSFULLY ' -print*, ' ' -print*, '******************************' - -END PROGRAM mip_contribution - diff --git a/Test/old_cmor_tables/mytest.f90 b/Test/old_cmor_tables/mytest.f90 deleted file mode 100644 index b94ccedcdf4a3bcfff616d5ca55e5bff2a6a6cf0..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/mytest.f90 +++ /dev/null @@ -1,182 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot -! integer, allocatable, dimension(:):: arrayin - double precision, allocatable, dimension(:):: arrayin - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - - print*, 'hi enter test file case' - filein='Test/tas.asc' - read(5,'(A)') filein - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim) - allocate(myaxis(ndim)) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) - - -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' ) - - current=>mydims - do i = 0,ndim-1 - print*,'CMOR AXIS',i,'AAAAAAA**************************' - print*, 'Name:',trim(adjustl(current%name)),'--',trim(adjustl(mydims%name)) - print*, current%units - print*, current%n,size(current%values) - print*, current%values(1:min(4,size(current%values))) - print*, current%bounds(1:2,1:min(4,size(current%values))) - if (i==0) then - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n) - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - endif - current=>current%next - enddo - - print*,'CMOR VAR' - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'tas',& - 'K',& - myaxis,& - missing_value=1.e20) - -!! figures out length of dimension other than time - - - - j=ntot/mydims%n - print*, '&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' - do i=1,mydims%n !! write times one at a time -!!$ print*,'before:', arrayin(j*(i-1)+1),j*(i-1)+1,j,i,ntot - print*, 'size of arrayin',size(arrayin(j*(i-1)+1:j*i)) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin(j*(i-1)+1:j*i), & - ntimes_passed = 1, & - time_vals = mydims%values(i:i), & - time_bnds = mydims%bounds(1:2,i:i) & - ) - enddo - - ierr = cmor_close() - - -contains - subroutine allocate_dims(file_id,mydims,ndim) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(I4)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I4)') tmp - dimlength(8-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - allocate(arrayin(n)) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims -! integer, dimension(ntot),intent(inout) :: arrayin - double precision, dimension(ntot),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,*) current%name - print*, 'NAME is:',current%name,trim(adjustl(mydims%name)),n,ntot - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, current%values(1),current%values(n) - print*, current%bounds(1,1),current%bounds(2,1) - print*, current%bounds(1,n),current%bounds(2,n) - current=>current%next - enddo - print *, 'ntot:',ntot - read(file_unit,*) (arrayin(i),i=1,ntot) - -print* ,trim(adjustl(mydims%name)) -print*,'done reading' - end subroutine read_ascii - -end program main - diff --git a/Test/old_cmor_tables/mytest_3d_i_2.f90 b/Test/old_cmor_tables/mytest_3d_i_2.f90 deleted file mode 100644 index 55a7c96b1d3ed51f25819e4113a72107985cebaa..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/mytest_3d_i_2.f90 +++ /dev/null @@ -1,194 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l -! double precision, allocatable, dimension(:,:,:,:):: arrayin - integer, allocatable, dimension(:,:,:,:):: arrayin - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax - - print*, 'hi' - filein='Test/ta.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - print*,'allocatedat:',shape(arrayin),dimlength(1),dimlength(2),dimlength(3) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' ) - - current=>mydims - do i = 0,ndim-1 - print*,'CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Name:',trim(adjustl(current%name)) -!!$ print*, current%units -!!$ print*, current%n,size(current%values) -!!$ print*, current%values(1:min(4,size(current%values))) -!!$ print*, current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'time found' - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='20 minutes') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'not time' - endif - current=>current%next - enddo - - print*,'CMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VARCMOR VAR' - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'ta',& - 'K',& - myaxis,& - missing_value=120) - -!! figures out length of dimension other than time - - j=ntot/mydims%n - print*, '&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' - print*,'before:', shape(arrayin),mydims%n - print*,'before:', shape(arrayin(:,i,:)) - print*, 'time before:',mydims%next%values(i:i) - do i = 1, mydims%n - - amin=1.e20 - amax=-1.e20 - do j=1, size(arrayin,2) - do k= 1, size(arrayin,3) - do l = 1, size(arrayin,4) - if (arrayin(i,j,k,l).lt.amin) amin=arrayin(i,j,k,l) - if (arrayin(i,j,k,l).gt.amax) amax=arrayin(i,j,k,l) - end do - enddo - enddo - - print*, 'Array for',i,' min,max :',amin,amax - ierr = cmor_write( & - var_id = myvar, & - data = arrayin(i,:,:,:), & - ntimes_passed = 1, & - time_vals = mydims%values(i:i), & - time_bnds = mydims%bounds(:,i:i) & - ) - enddo - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'I') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'I') tmp -!!$print*,'allocatedat:',tmp - dimlength(4-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims -! double precision, dimension(:,:,:),intent(inout) :: arrayin - integer, dimension(:,:,:,:),intent(inout) :: arrayin - integer, dimension(ndim) - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(23,*) (current%name) - print*, 'NAME is:',current%name,trim(adjustl(mydims%name)) - read(23,*) (current%units) - read(23,*) (current%values(j),j=1,n) - read(23,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((arrayin(j,k,l),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)) -print* ,trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/old_cmor_tables/mytest_3d_r.f90 b/Test/old_cmor_tables/mytest_3d_r.f90 deleted file mode 100644 index c611f04dacf3bbce428a379de8e90ae8b3f10d42..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/mytest_3d_r.f90 +++ /dev/null @@ -1,182 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot -! double precision, allocatable, dimension(:,:,:):: arrayin - real, allocatable, dimension(:,:,:):: arrayin - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real mymiss - - print*, 'hi' - filein='Test/tas_3d_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3))) - print*,'allocatedat:',shape(arrayin),dimlength(1),dimlength(2),dimlength(3) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) - - -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' ) - - current=>mydims - do i = 0,ndim-1 - print*,'CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Name:',trim(adjustl(current%name)) -!!$ print*, current%units -!!$ print*, current%n,size(current%values) -!!$ print*, current%values(1:min(4,size(current%values))) -!!$ print*, current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'time found' - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='20 minutes') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'not time' - endif - current=>current%next - enddo - - mymiss=1.e20 - print*,'CMOR VARCMOR VARCMOR VARCMOR',mymiss - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'tas',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n - print*, '&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' - print*,'before:', shape(arrayin),mydims%n - print*,'before:', shape(arrayin(:,:,i)) - print*, 'time before:',mydims%values(i:i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin, & - ntimes_passed = mydims%next%n, & - time_vals = mydims%next%values, & - time_bnds = mydims%next%bounds & - ) - - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(I8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'allocatedat:',tmp - dimlength(4-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims -! double precision, dimension(:,:,:),intent(inout) :: arrayin - real, dimension(:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(23,*) (current%name) - print*, 'NAME is:',current%name,trim(adjustl(mydims%name)) - read(23,*) (current%units) - read(23,*) (current%values(j),j=1,n) - read(23,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((arrayin(j,k,l),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)) -print* ,trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/old_cmor_tables/mytest_3d_r_2.f90 b/Test/old_cmor_tables/mytest_3d_r_2.f90 deleted file mode 100644 index b0b039014de786a64f99e9394faf72a502c2c15b..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/mytest_3d_r_2.f90 +++ /dev/null @@ -1,196 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l -! double precision, allocatable, dimension(:,:,:,:):: arrayin - real, allocatable, dimension(:,:,:,:):: arrayin - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - - print*, 'hi' - filein='Test/ta_3D_r_2.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - print*,'allocatedat:',shape(arrayin),dimlength(1),dimlength(2),dimlength(3),dimlength(4) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' ) - - current=>mydims - do i = 0,ndim-1 - print*,'CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Name:',trim(adjustl(current%name)) -!!$ print*, current%units -!!$ print*, current%n,size(current%values) -!!$ print*, current%values(1:min(4,size(current%values))) -!!$ print*, current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'time found' - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='20 minutes') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'not time' - endif - current=>current%next - enddo - - print*,'CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, '&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'before:', shape(arrayin),mydims%n -!!$ print*,'before:', shape(arrayin(:,i,:)) -!!$ print*, 'time before:',mydims%next%values(i:i) - do i = 1, mydims%n - - amin=1.e20 - amax=-1.e20 - do j=1, size(arrayin,2) - do k= 1, size(arrayin,3) - do l = 1, size(arrayin,4) - if (arrayin(j,k,l,i).lt.amin) amin=arrayin(i,j,k,l) - if (arrayin(j,k,l,i).gt.amax) amax=arrayin(i,j,k,l) - end do - enddo - enddo - - print*, 'Array for',i,' min,max :',amin,amax,'Ssub',shape(arrayin(:,:,:,i)),'S',shape(arrayin) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin(:,:,:,i), & - ntimes_passed = 1, & - time_vals = mydims%values(i:i), & - time_bnds = mydims%bounds(:,i:i) & - ) - enddo - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims -! double precision, dimension(:,:,:),intent(inout) :: arrayin - real, dimension(:,:,:,:),intent(inout) :: arrayin -! integer, dimension(ndim) - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(23,*) (current%name) - print*, 'NAME is:',current%name,trim(adjustl(mydims%name)) - read(23,*) (current%units) - read(23,*) (current%values(j),j=1,n) - read(23,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print* ,trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/old_cmor_tables/mytest_4d_d_big_array_2.f90 b/Test/old_cmor_tables/mytest_4d_d_big_array_2.f90 deleted file mode 100644 index 49a21e2415ddbdf5c7079d506d381d92a9031d18..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/mytest_4d_d_big_array_2.f90 +++ /dev/null @@ -1,204 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l - double precision, allocatable, dimension(:,:,:,:):: arrayin -! real, allocatable, dimension(:,:,:,:):: arrayin - double precision, allocatable :: bigarray(:) - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - - print*, 'Test Code: hi' - filein='Test/ta_4D_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - allocate(bigarray(dimlength(1)*dimlength(2)*5*dimlength(3)*dimlength(4))) - print*,'Test Code: allocate data :',shape(arrayin),'dims:',dimlength(1),dimlength(2),dimlength(3),dimlength(4) - print*,'Test Code: allocate data big:',shape(bigarray) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*, 'Test Code: putting everything into the big array contiguous fortran order means faster moving is first element' - bigarray=666. ! initialize bigarray at some bad value - ierr=1 - do l = 1, dimlength(4) - do k = 1, dimlength(3) - do j = 1, dimlength(2) - do i = 1, dimlength(1) - bigarray(ierr)=arrayin(i,j,k,l) - ierr=ierr+1 - enddo - enddo - enddo - enddo - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)', model_id="pcmdi-08a", & - forcing="atm" ) - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Test Code: Name:',trim(adjustl(current%name)) -!!$ print*, 'Test Code: ',current%units -!!$ print*, 'Test Code: ',current%n,size(current%values) -!!$ print*, 'Test Code: ',current%values(1:min(4,size(current%values))) -!!$ print*, 'Test Code: ',current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='30 days') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, 'Test Code: &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'Test Code: before:', shape(arrayin),mydims%n -!!$ print*,'Test Code: before:', shape(arrayin(:,i,:)) -!!$ print*, 'Test Code: time before:',mydims%next%values(i:i) - current=>mydims%next%next -print*, 'Test Code: values:',current%values -print*, 'Test Code: bounds:',current%bounds -print*, 'Test Code: N:',current%n - ierr = cmor_write( & - var_id = myvar, & - data = bigarray, & - ntimes_passed = current%n, & - time_vals = current%values, & - time_bnds = current%bounds & - ) - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'Test Code: allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:),intent(inout) :: arrayin -! real, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name,trim(adjustl(mydims%name)) - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: ',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo -print*, 'Test Code: arrayin shape:',shape(arrayin) - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print*, 'Test Code: done!' -print* ,'Test Code: ',trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/old_cmor_tables/mytest_4d_d_big_array_3.f90 b/Test/old_cmor_tables/mytest_4d_d_big_array_3.f90 deleted file mode 100644 index b62c229230bfe379ea7ccdae83923e56142a1e2c..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/mytest_4d_d_big_array_3.f90 +++ /dev/null @@ -1,204 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l - double precision, allocatable, dimension(:,:,:,:):: arrayin -! real, allocatable, dimension(:,:,:,:):: arrayin - double precision, allocatable :: bigarray(:,:,:,:,:) - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - - print*, 'Test Code: hi' - filein='Test/ta_4D_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - allocate(bigarray(dimlength(1),dimlength(2),dimlength(3),dimlength(4),5)) - print*,'Test Code: allocate data :',shape(arrayin),'dims:',dimlength(1),dimlength(2),dimlength(3),dimlength(4) - print*,'Test Code: allocate data big:',shape(bigarray) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*, 'Test Code: putting everything into the big array contiguous fortran order means faster moving is first element' - bigarray=666. ! initialize bigarray at some bad value - ierr=1 - do l = 1, dimlength(4) - do k = 1, dimlength(3) - do j = 1, dimlength(2) - do i = 1, dimlength(1) - bigarray(i,j,k,l,1)=arrayin(i,j,k,l) - ierr=ierr+1 - enddo - enddo - enddo - enddo - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)', model_id="pcmdi-08a", & - forcing = 'atm' ) - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Test Code: Name:',trim(adjustl(current%name)) -!!$ print*, 'Test Code: ',current%units -!!$ print*, 'Test Code: ',current%n,size(current%values) -!!$ print*, 'Test Code: ',current%values(1:min(4,size(current%values))) -!!$ print*, 'Test Code: ',current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='30 days') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, 'Test Code: &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'Test Code: before:', shape(arrayin),mydims%n -!!$ print*,'Test Code: before:', shape(arrayin(:,i,:)) -!!$ print*, 'Test Code: time before:',mydims%next%values(i:i) - current=>mydims%next%next -print*, 'Test Code: values:',current%values -print*, 'Test Code: bounds:',current%bounds -print*, 'Test Code: N:',current%n - ierr = cmor_write( & - var_id = myvar, & - data = bigarray(:,:,:,:,1), & - ntimes_passed = current%n, & - time_vals = current%values, & - time_bnds = current%bounds & - ) - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'Test Code: allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:),intent(inout) :: arrayin -! real, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name,trim(adjustl(mydims%name)) - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: ',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo -print*, 'Test Code: arrayin shape:',shape(arrayin) - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print*, 'Test Code: done!' -print* ,'Test Code: ',trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/old_cmor_tables/mytest_4d_d_big_array_4.f90 b/Test/old_cmor_tables/mytest_4d_d_big_array_4.f90 deleted file mode 100644 index 3ddcbebc4571028e01756cd7f07f21fc0e672810..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/mytest_4d_d_big_array_4.f90 +++ /dev/null @@ -1,203 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l - double precision, allocatable, dimension(:,:,:,:):: arrayin -! real, allocatable, dimension(:,:,:,:):: arrayin - double precision, allocatable :: smallarray(:,:,:) - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - - print*, 'Test Code: hi' - filein='Test/ta_4D_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - allocate(smallarray(dimlength(1)+5,dimlength(3)+6,dimlength(4)+7)) - print*,'Test Code: allocate data :',shape(arrayin),'dims:',dimlength(1),dimlength(2),dimlength(3),dimlength(4) - print*,'Test Code: allocate data big:',shape(smallarray) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*, 'Test Code: putting everything into the big array contiguous fortran order means faster moving is first element' - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)',model_id="pcmdi-08a", & - forcing='co2' ) - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Test Code: Name:',trim(adjustl(current%name)) -!!$ print*, 'Test Code: ',current%units -!!$ print*, 'Test Code: ',current%n,size(current%values) -!!$ print*, 'Test Code: ',current%values(1:min(4,size(current%values))) -!!$ print*, 'Test Code: ',current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - print*, 'Test Code: bounds:',current%bounds,current%units - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds, & - interval='1 month') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, 'Test Code: &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'Test Code: before:', shape(arrayin),mydims%n -!!$ print*,'Test Code: before:', shape(arrayin(:,i,:)) -!!$ print*, 'Test Code: time before:',mydims%next%values(i:i) - current=>mydims%next%next -print*, 'Test Code: values:',current%values -print*, 'Test Code: bounds:',current%bounds -print*, 'Test Code: N:',current%n -do i=1,current%n - smallarray=666. ! initialize smallarray at some bad value - ierr=1 - !put time i into it - do l = 1, dimlength(4) - do k = 1, dimlength(3) - do j = 1, dimlength(1) - smallarray(j,k,l)=arrayin(j,i,k,l) - enddo - enddo - enddo - ierr = cmor_write( & - var_id = myvar, & - data = smallarray, & - ntimes_passed = 1 & - ) -enddo -ierr = cmor_close(myvar) - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'Test Code: allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:),intent(inout) :: arrayin -! real, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name,trim(adjustl(mydims%name)) - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: ',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo -print*, 'Test Code: arrayin shape:',shape(arrayin) - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print*, 'Test Code: done!' -print* ,'Test Code: ',trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/old_cmor_tables/mytest_4d_d_big_array_5.f90 b/Test/old_cmor_tables/mytest_4d_d_big_array_5.f90 deleted file mode 100644 index 0a8ecabd6007b267aa1ee124bc6e41f05ebedc3c..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/mytest_4d_d_big_array_5.f90 +++ /dev/null @@ -1,201 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l - double precision, allocatable, dimension(:,:,:,:):: arrayin -! real, allocatable, dimension(:,:,:,:):: arrayin - double precision, allocatable :: bigarray(:,:,:,:) - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - - print*, 'Test Code: hi' - filein='Test/ta_4D_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - allocate(bigarray(dimlength(1)+10,dimlength(2)+10,dimlength(3)+10,dimlength(4)+10)) - print*,'Test Code: allocate data :',shape(arrayin),'dims:',dimlength(1),dimlength(2),dimlength(3),dimlength(4) - print*,'Test Code: allocate data big:',shape(bigarray) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*, 'Test Code: putting everything into the big array contiguous fortran order means faster moving is first element' - bigarray=666. ! initialize bigarray at some bad value - ierr=1 - do l = 1, dimlength(4) - do k = 1, dimlength(3) - do j = 1, dimlength(2) - do i = 1, dimlength(1) - bigarray(i,j,k,l)=arrayin(i,j,k,l) - ierr=ierr+1 - enddo - enddo - enddo - enddo - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)',model_id='pcmdi-08a', & - forcing='atm' ) - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Test Code: Name:',trim(adjustl(current%name)) -!!$ print*, 'Test Code: ',current%units -!!$ print*, 'Test Code: ',current%n,size(current%values) -!!$ print*, 'Test Code: ',current%values(1:min(4,size(current%values))) -!!$ print*, 'Test Code: ',current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found','with ',current%n,'times' - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds, & - interval='31 days') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, 'Test Code: &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'Test Code: before:', shape(arrayin),mydims%n -!!$ print*,'Test Code: before:', shape(arrayin(:,i,:)) -!!$ print*, 'Test Code: time before:',mydims%next%values(i:i) - current=>mydims%next%next -print*, 'Test Code: values:',current%values -print*, 'Test Code: bounds:',current%bounds -print*, 'Test Code: N:',current%n - ierr = cmor_write( & - var_id = myvar, & - data = bigarray & - ) - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'Test Code: allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:),intent(inout) :: arrayin -! real, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name,trim(adjustl(mydims%name)) - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: ',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo -print*, 'Test Code: arrayin shape:',shape(arrayin) - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print*, 'Test Code: done!' -print* ,'Test Code: ',trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/old_cmor_tables/mytest_4d_r.f90 b/Test/old_cmor_tables/mytest_4d_r.f90 deleted file mode 100644 index 8e997562aa1bc4495ab5dbff0324ca0d4f516208..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/mytest_4d_r.f90 +++ /dev/null @@ -1,185 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l -! double precision, allocatable, dimension(:,:,:,:):: arrayin - real, allocatable, dimension(:,:,:,:):: arrayin - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - - print*, 'hi' - filein='Test/ta_4D_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - print*,'allocatedat:',shape(arrayin),dimlength(1),dimlength(2),dimlength(3),dimlength(4) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - print*,'CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)', & - model_id="pcmdi-a08",forcing="CO2") - - current=>mydims - do i = 0,ndim-1 - print*,'CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Name:',trim(adjustl(current%name)) -!!$ print*, current%units -!!$ print*, current%n,size(current%values) -!!$ print*, current%values(1:min(4,size(current%values))) -!!$ print*, current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'time found' - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='1 month') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'not time' - endif - current=>current%next - enddo - - print*,'CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, '&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'before:', shape(arrayin),mydims%n -!!$ print*,'before:', shape(arrayin(:,i,:)) -!!$ print*, 'time before:',mydims%next%values(i:i) - current=>mydims%next%next -print*, 'values:',current%values -print*, 'bounds:',current%bounds -print*, 'N:',current%n - ierr = cmor_write( & - myvar, & - arrayin, & - ntimes_passed = current%n, & - time_vals = current%values, & - time_bnds = current%bounds & - ) - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims -! double precision, dimension(:,:,:),intent(inout) :: arrayin - real, dimension(:,:,:,:),intent(inout) :: arrayin -! integer, dimension(ndim) - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'NAME is:',current%name,trim(adjustl(mydims%name)) - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print* ,trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/old_cmor_tables/mytest_4d_r_big_array.f90 b/Test/old_cmor_tables/mytest_4d_r_big_array.f90 deleted file mode 100644 index 48d5bd93eee8fc25884acf03a4c5749831c31c3e..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/mytest_4d_r_big_array.f90 +++ /dev/null @@ -1,202 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current - integer ndim,i,j,ntot,k,l - double precision, allocatable, dimension(:,:,:,:):: arrayin -! real, allocatable, dimension(:,:,:,:):: arrayin - double precision, allocatable :: bigarray(:,:,:,:) - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - real amin,amax,mymiss - - print*, 'Test Code: hi' - filein='Test/ta_4D_r.asc' - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength) - allocate(myaxis(ndim)) - allocate(arrayin(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - allocate(bigarray(dimlength(1)+10,dimlength(2)+10,dimlength(3)+10,dimlength(4)+10)) - print*,'Test Code: allocate data :',shape(arrayin),'dims:',dimlength(1),dimlength(2),dimlength(3),dimlength(4) - print*,'Test Code: allocate data big:',shape(bigarray) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - call read_ascii(23,mydims, ndim,ntot,arrayin) -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*, 'Test Code: putting everything into the big array' - bigarray=666. ! initialize bigarray at some bad value - do i = 1, dimlength(1) - do j = 1, dimlength(2) - do k = 1, dimlength(3) - do l = 1, dimlength(4) - bigarray(i,j,k,l)=arrayin(i,j,k,l) - enddo - enddo - enddo - enddo - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)', model_id="pcmdi-08a", & - forcing="atm" ) - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i,'AAAAAAA*************************************************************************' - print*, 'Test Code: Name:',trim(adjustl(current%name)) -!!$ print*, 'Test Code: ',current%units -!!$ print*, 'Test Code: ',current%n,size(current%values) -!!$ print*, 'Test Code: ',current%values(1:min(4,size(current%values))) -!!$ print*, 'Test Code: ',current%bounds(1:2,1:min(4,size(current%values))) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='1 month') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VARCMOR VARCMOR VARCMOR' - - mymiss=1.e20 - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - 'ta',& - 'K',& - myaxis,& - missing_value=mymiss) - -!! figures out length of dimension other than time - - j=ntot/mydims%n -!!$ print*, 'Test Code: &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&' -!!$ print*,'Test Code: before:', shape(arrayin),mydims%n -!!$ print*,'Test Code: before:', shape(arrayin(:,i,:)) -!!$ print*, 'Test Code: time before:',mydims%next%values(i:i) - current=>mydims%next%next -print*, 'Test Code: values:',current%values -print*, 'Test Code: bounds:',current%bounds -print*, 'Test Code: N:',current%n - ierr = cmor_write( & - var_id = myvar, & - data = bigarray, & - ntimes_passed = current%n, & - time_vals = current%values, & - time_bnds = current%bounds & - ) - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - read(file_id,'(i8)') ndim -!!$ allocate(dimlength(ndim)) - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I8)') tmp -!!$print*,'Test Code: allocatedat:',tmp - dimlength(5-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:),intent(inout) :: arrayin -! real, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name,trim(adjustl(mydims%name)) - read(file_unit,'(A)') current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: ',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo -print*, 'Test Code: arrayin shape:',shape(arrayin) - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) -print*, 'Test Code: done!' -print* ,'Test Code: ',trim(adjustl(mydims%name)) - end subroutine read_ascii - -end program main - diff --git a/Test/old_cmor_tables/rewrite_harvardf_data.f90 b/Test/old_cmor_tables/rewrite_harvardf_data.f90 deleted file mode 100644 index 68651ce778436c7cf5912fbc41024872be0fd38b..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/rewrite_harvardf_data.f90 +++ /dev/null @@ -1,113 +0,0 @@ - program rewrite_harvardf_data - -! Use CMOR routines to rewrite Harvard Forest obs data into CF-standard netCDF. -! Start with data in easy-to-read ASCII text (Mathematica input) format, which -! was produced by the script read_harvard_forest_obs_dat.py. - -! Note: first line of each input data file is ASCII text to be skipped over. - -! Curt Covey January 2006 - -USE cmor_users_functions - - character(len = 25) :: input_file = 'Test/tas_harvardf.txt' - character(len = 20) :: output_file = 'tas_harvardf.nc' - character(len = 20) :: units_string = 'K' -! character(len = 20) :: input_table = 'IPCC_test_table_A' -!!$ character(len = 20) :: input_table = 'IPCC_table_A2' - character(len = 20) :: input_table = 'Test/Curts_table' - - character :: first_line ! throwaway - - integer :: iaxis(3) ! identifier for axes (time, latitude, longitude) - -!!$ integer, parameter :: ndatalines = 4383 ! # lines in file that contain data - integer, parameter :: ndatalines = 10 ! # lines in file that contain data - ! ( = total # lines in file - 1) - integer, parameter :: np1 = ndatalines + 1 - - double precision :: lat(1) ! single-member array to hold latitude - double precision :: lon(1) ! single-member array to hold longitude - double precision :: t(ndatalines) ! array to hold time coordinate - double precision :: tbounds(np1) ! array to hold time coordinate cell bounds - real :: x(ndatalines,1,1) ! array to hold data from each input data file -! -Harvard Forest is located at 42.5 deg N, 72.2 deg W ... - lat(1) = 42.5d0 - lon(1) = -72.2d0 -! ... and is 3000 acres ~ a circle with radius of 0.02 deg lat/lon: - latlonrad = 0.02 - do i = 1, ndatalines - t(i) = i - 1.0 ! time coord = "days since" = 0, 1, ... - tbounds(i) = i - 1.5 ! time bounds = -0.5, +0.5, ... - enddo - tbounds(np1) = ndatalines - 0.5 - - print *, 'Opening ', input_file, '...' - open(10, file = input_file) - read(10, '(A)') first_line - print '(A)', 'First line begins with: ', first_line - do i = 1, ndatalines - read(10, '(F6.2)') x(i,1,1) -! print *, x(i,1,1) - enddo - - print *, 'Initializing CMOR ...' - ierrorflag = cmor_setup(netcdf_file_action = 'replace') - - print *, 'Identifying output data sets for CMOR ...' - ierrorflag = cmor_dataset( & - outpath = 'Test', & - experiment_id = & - 'climate of the 20th Century experiment (20C3M)', & - institution = & - 'Berkeley CAS (Center for Atmospheric Science)', & - source = & - 'ftp://ftp.as.harvard.edu/pub/nigec/HU_Wofsy/hf_data', & - calendar = 'gregorian', & - contact = & - 'Jasmin John, Berkeley CAS ') - -! print *, ' ** Time coordinate vector:', t -! print *, ' ** Time bounds vector:', tbounds - - print *, 'Defining coordinates for CMOR output data ...',t - iaxis(1) = cmor_axis( & - table = input_table, & - table_entry = 'time', & - units = 'days since 1992-1-1', & - length = ndatalines, & - coord_vals = t, & - cell_bounds = tbounds) - - iaxis(2) = cmor_axis( & - table = input_table, & - table_entry = 'latitude', & - units = 'degrees_north', & - length = 1, & - coord_vals = lat) - - iaxis(3) = cmor_axis( & - table = input_table, & - table_entry = 'longitude', & - units = 'degrees_east', & - length = 1, & - coord_vals = lon) - - print *, 'Defining CMOR output data variables ...' - ivarb = cmor_variable( & - table = input_table, & - table_entry = 'tas', & - units = units_string, & - axis_ids = iaxis) - -!!$ print *, ' ** Data vector:', x - - print *, 'Writing CMOR output ...',shape(x) - ierrorflag = cmor_write( & - var_id = ivarb, & - data = x(:,1,1)) - - print *, 'Closing file(s) created by CMOR ...' - ierrorflag = cmor_close() - - end program rewrite_harvardf_data diff --git a/Test/old_cmor_tables/test1.f90 b/Test/old_cmor_tables/test1.f90 deleted file mode 100644 index f6d2b20053d11c387ff8531acfebdfea2ff69819..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test1.f90 +++ /dev/null @@ -1,473 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test1.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF//include -L/pcmdi/charles_work/NetCDF//lib -lnetcdf -module Modules -IModules -L. -lcmor Test/test1.f90 -o cmor_test - -MODULE local_subs - - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1) = (it-1)*30. - time_bnds(2) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - - SELECT CASE (TRIM(ADJUSTL(varname))) - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 1) - DO j=1,SIZE(field, 3) - DO i=1,SIZE(field, 2) - field(k,i,j) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - - - SELECT CASE (TRIM(ADJUSTL(varname))) - CASE ('LATENT') - - factor = 1.5 - offset = 20. - CASE ('TSURF') - factor = 2.2 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - END SELECT - - DO j=1,SIZE(field, 1) - DO i=1,SIZE(field, 2) - field(j,i) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM mip_contribution -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is required by many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, APE, and -! IPCC scenario runs) -! -! Background information for this sample code: -! -! Standard output requested by AMIP is listed in 6 different -! tables. This sample code processes only 2 variables listed in AMIP -! Table 1a ("3-d" fields, containing monthly mean data that are a -! function of longitude, latitude, pressure and time) and only 3 -! variables in AMIP Table 2 ("2-d" fields, containing monthly mean -! data that are a function of longitude, latitude, and time). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 3 ! number of AMIP Table 2 fields to be - ! output. - INTEGER, PARAMETER :: n3d = 2 ! number of AMIP Table 1a fields to - ! be output. - - ! Tables associating the user's variables with AMIP standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for Table 1a fields - CHARACTER (LEN=2), DIMENSION(n3d) :: varin3d=(/ 'U', 'T'/) - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ 'm s-1', 'K ' /) - CHARACTER (LEN=4), DIMENSION(n3d) :: & - positive3d= (/ '', '' /) - ! Corresponding AMIP Table 1a entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'ua', 'ta' /) - - ! My variable names for Table 2 fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET' /) - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2' /) - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ' /) -! Corresponding AMIP Table 2 entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, DIMENSION(3) :: axis2d_ids - INTEGER, DIMENSION(4) :: axis3d_ids - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lat,lon) :: data2d - REAL, DIMENSION(lev,lon,lat) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION :: time - DOUBLE PRECISION, DIMENSION(2):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - -!!$ REAL, DIMENSION(lat*lon*lev) :: tmp3d -!!$ REAL, DIMENSION(lat*lon) :: tmp2d - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - print*, 'calling read_coords ' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - print*, 'returned from read_coords' - - ! Specify path where tables can be found, indicate that existing netCDF - ! files should not be overwritten, and instruct CMOR to error exit on - ! encountering errors of any severity. - - error_flag = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) runcmor_write under IPCC 2xCO2 equilibrium experiment - ! conditions, and provide information to be included as attributes in - ! all CF-netCDF files written as part of this dataset. - - print*, 'calling cmor_dataset' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)',model_id="pcmdi-08a", & - forcing="co2") - - print*, 'returned from cmor_dataset' - - ! Define axes for 3-d fields - - print*, 'defining 3-d axes' - - axis3d_ids(3) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis3d_ids(2) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - axis3d_ids(1) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (below). -print*, 'before time ' - axis3d_ids(4) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='1 month') - - print*, 'finished defining 3-d axes' - - ! Define axes for 2-d fields - - print*, 'defining 2-d axes' - - axis2d_ids(1) = axis3d_ids(3) - axis2d_ids(2) = axis3d_ids(2) - axis2d_ids(3) = axis3d_ids(4) - -print*, 'finished defining 2-d axes' - - ! Define variables found in AMIP table 1a (3-d variables) - - DO m=1,n3d - var3d_ids(m) = cmor_variable( & - table='CMOR_SAMPLE_TABLE', & - table_entry=entry3d(m), & -!!$ file_suffix='1979-2001', & - units=units3d(m), & - axis_ids=axis3d_ids, & - missing_value=1.0e20, & - positive=positive3d(m), & - original_name=varin3d(m)) - ENDDO - - - ! Define variables found in AMIP table 2a (2-d variables) - - DO m=1,n2d - var2d_ids(m) = cmor_variable( & - table='CMOR_SAMPLE_TABLE', & - table_entry=entry2d(m), & -!!$ file_suffix='1979-2001', & - units=units2d(m), & - axis_ids=axis2d_ids, & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - ENDDO - -print*, 'completed everything up to writing output fields ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested AMIP table 1a and table 2 fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - ! Cycle through the 3-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - - DO m=1,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - print*, RESHAPE(bnds_time, (/ 2,1 /)) - error_flag = cmor_write(var_id = var3d_ids(m), & - data = RESHAPE(data3d, (/ lat*lon*lev /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var3d_ids(m) -print*, ' error flag = ', error_flag - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 1a ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - print*, RESHAPE(bnds_time, (/ 2,1 /)) - error_flag = cmor_write(var_id = var2d_ids(m), & - data = RESHAPE(data2d, (/ lat*lon /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var2d_ids(m) -print*, ' error flag = ', error_flag - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 2 ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - -print*, '******************************' -print*, ' ' -print*, 'CMOR COMPLETED SUCCESSFULLY ' -print*, ' ' -print*, '******************************' - -END PROGRAM mip_contribution - diff --git a/Test/old_cmor_tables/test2.f90 b/Test/old_cmor_tables/test2.f90 deleted file mode 100644 index b6a0acbeb267fa94abc06a5f4350dd7e2d06899c..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test2.f90 +++ /dev/null @@ -1,477 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test1.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF//include -L/pcmdi/charles_work/NetCDF//lib -lnetcdf -module Modules -IModules -L. -lcmor Test/test1.f90 -o cmor_test - -MODULE local_subs - - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i, irev - - DO i = 1, SIZE(alons) - irev = SIZE(alons)+1-i - alons(irev) = (i-1)*360./SIZE(alons) - bnds_lon(1,irev) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,irev) = (i - 0.5)*360./SIZE(alons) - print*, i,irev,alons(irev),bnds_lon(1,irev),bnds_lon(2,irev) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1) = (it-1)*30. - time_bnds(2) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k, irev - REAL :: factor, offset - - SELECT CASE (TRIM(ADJUSTL(varname))) - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 1) - DO j=1,SIZE(field, 3) - DO i=1,SIZE(field, 2) - irev = SIZE(field, 2) + 1 - i - field(k,irev,j) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j, irev - REAL :: factor, offset - - - SELECT CASE (TRIM(ADJUSTL(varname))) - CASE ('LATENT') - - factor = 1.5 - offset = 20. - CASE ('TSURF') - factor = 2.2 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - END SELECT - - DO j=1,SIZE(field, 1) - DO i=1,SIZE(field, 2) - irev = SIZE(field, 2) + 1 - i - field(j,irev) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM mip_contribution -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is required by many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, APE, and -! IPCC scenario runs) -! -! Background information for this sample code: -! -! Standard output requested by AMIP is listed in 6 different -! tables. This sample code processes only 2 variables listed in AMIP -! Table 1a ("3-d" fields, containing monthly mean data that are a -! function of longitude, latitude, pressure and time) and only 3 -! variables in AMIP Table 2 ("2-d" fields, containing monthly mean -! data that are a function of longitude, latitude, and time). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 3 ! number of AMIP Table 2 fields to be - ! output. - INTEGER, PARAMETER :: n3d = 2 ! number of AMIP Table 1a fields to - ! be output. - - ! Tables associating the user's variables with AMIP standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for Table 1a fields - CHARACTER (LEN=2), DIMENSION(n3d) :: varin3d=(/ 'U', 'T'/) - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ 'm s-1', 'K ' /) - CHARACTER (LEN=4), DIMENSION(n3d) :: & - positive3d= (/ '', '' /) - ! Corresponding AMIP Table 1a entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'ua', 'ta' /) - - ! My variable names for Table 2 fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET' /) - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2' /) - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ' /) - ! Corresponding AMIP Table 2 entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, DIMENSION(3) :: axis2d_ids - INTEGER, DIMENSION(4) :: axis3d_ids - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lat,lon) :: data2d - REAL, DIMENSION(lev,lon,lat) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION :: time - DOUBLE PRECISION, DIMENSION(2):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - -!!$ REAL, DIMENSION(lat*lon*lev) :: tmp3d -!!$ REAL, DIMENSION(lat*lon) :: tmp2d - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - print*, 'calling read_coords ' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - print*, 'returned from read_coords' - - ! Specify path where tables can be found, indicate that existing netCDF - ! files should not be overwritten, and instruct CMOR to error exit on - ! encountering errors of any severity. - - error_flag = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) runcmor_write under IPCC 2xCO2 equilibrium experiment - ! conditions, and provide information to be included as attributes in - ! all CF-netCDF files written as part of this dataset. - - print*, 'calling cmor_dataset' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' , & - model_id="pcmdi-01a",forcing="atm") - - print*, 'returned from cmor_dataset' - - ! Define axes for 3-d fields - - print*, 'defining 3-d axes' - - axis3d_ids(3) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - print*, 'alons:',alons - print*, 'blons:',bnds_lon - axis3d_ids(2) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - axis3d_ids(1) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (below). -print*, 'before time ' - axis3d_ids(4) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='1 month') - - print*, 'finished defining 3-d axes' - - ! Define axes for 2-d fields - - print*, 'defining 2-d axes' - - axis2d_ids(1) = axis3d_ids(3) - axis2d_ids(2) = axis3d_ids(2) - axis2d_ids(3) = axis3d_ids(4) - -print*, 'finished defining 2-d axes' - - ! Define variables found in AMIP table 1a (3-d variables) - - DO m=1,n3d - var3d_ids(m) = cmor_variable( & - table='CMOR_SAMPLE_TABLE', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=axis3d_ids, & - missing_value=1.0e20, & - positive=positive3d(m), & - original_name=varin3d(m)) - ENDDO - - - ! Define variables found in AMIP table 2a (2-d variables) - - DO m=1,n2d - var2d_ids(m) = cmor_variable( & - table='CMOR_SAMPLE_TABLE', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=axis2d_ids, & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - ENDDO - -print*, 'completed everything up to writing output fields ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested AMIP table 1a and table 2 fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - ! Cycle through the 3-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - - DO m=1,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write(var_id = var3d_ids(m), & - data = RESHAPE(data3d, (/ lat*lon*lev /)), & - file_suffix='User-suffix-1979-2001', & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var3d_ids(m) -print*, ' error flag = ', error_flag - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 1a ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write(var_id = var2d_ids(m), & - data = RESHAPE(data2d, (/ lat*lon /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var2d_ids(m) -print*, ' error flag = ', error_flag - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 2 ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - -print*, '******************************' -print*, ' ' -print*, 'CMOR COMPLETED SUCCESSFULLY ' -print*, ' ' -print*, '******************************' - -END PROGRAM mip_contribution - diff --git a/Test/old_cmor_tables/test3.f90 b/Test/old_cmor_tables/test3.f90 deleted file mode 100644 index 4da87232dbfe66617f823f0ba7b8861622a28d41..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test3.f90 +++ /dev/null @@ -1,481 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test1.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF//include -L/pcmdi/charles_work/NetCDF//lib -lnetcdf -module Modules -IModules -L. -lcmor Test/test1.f90 -o cmor_test - -MODULE local_subs - - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i, irev, ioff - - DO i = 1, SIZE(alons) - irev = SIZE(alons)+1-i - ioff = irev +2 - if (ioff>SIZE(alons)) ioff = ioff - SIZE(alons) - alons(ioff) = (i-1)*360./SIZE(alons) - bnds_lon(1,ioff) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,ioff) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1) = (it-1)*30. - time_bnds(2) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k, irev, ioff - REAL :: factor, offset - - SELECT CASE (TRIM(ADJUSTL(varname))) - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 1) - DO j=1,SIZE(field, 3) - DO i=1,SIZE(field, 2) - irev = SIZE(field, 2) + 1 - i - ioff = irev + 2 - IF (ioff > SIZE(field,2)) ioff = ioff - SIZE(field,2) - field(k,ioff,j) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j, irev, ioff - REAL :: factor, offset - - - SELECT CASE (TRIM(ADJUSTL(varname))) - CASE ('LATENT') - - factor = 1.5 - offset = 20. - CASE ('TSURF') - factor = 2.2 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - END SELECT - - DO j=1,SIZE(field, 1) - DO i=1,SIZE(field, 2) - irev = SIZE(field, 2) + 1 - i - ioff = irev + 2 - IF (ioff > SIZE(field,2)) ioff = ioff - SIZE(field,2) - field(j,ioff) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM mip_contribution -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is required by many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, APE, and -! IPCC scenario runs) -! -! Background information for this sample code: -! -! Standard output requested by AMIP is listed in 6 different -! tables. This sample code processes only 2 variables listed in AMIP -! Table 1a ("3-d" fields, containing monthly mean data that are a -! function of longitude, latitude, pressure and time) and only 3 -! variables in AMIP Table 2 ("2-d" fields, containing monthly mean -! data that are a function of longitude, latitude, and time). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 3 ! number of AMIP Table 2 fields to be - ! output. - INTEGER, PARAMETER :: n3d = 2 ! number of AMIP Table 1a fields to - ! be output. - - ! Tables associating the user's variables with AMIP standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for Table 1a fields - CHARACTER (LEN=2), DIMENSION(n3d) :: varin3d=(/ 'U', 'T'/) - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ 'm s-1', 'K ' /) - CHARACTER (LEN=4), DIMENSION(n3d) :: & - positive3d= (/ ' ', ' ' /) - ! Corresponding AMIP Table 1a entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'ua', 'ta' /) - - ! My variable names for Table 2 fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET' /) - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2' /) - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ' /) - ! Corresponding AMIP Table 2 entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, DIMENSION(3) :: axis2d_ids - INTEGER, DIMENSION(4) :: axis3d_ids - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lat,lon) :: data2d - REAL, DIMENSION(lev,lon,lat) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION :: time - DOUBLE PRECISION, DIMENSION(2):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - -!!$ REAL, DIMENSION(lat*lon*lev) :: tmp3d -!!$ REAL, DIMENSION(lat*lon) :: tmp2d - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - print*, 'calling read_coords ' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - print*, 'returned from read_coords' - - ! Specify path where tables can be found, indicate that existing netCDF - ! files should not be overwritten, and instruct CMOR to error exit on - ! encountering errors of any severity. - - error_flag = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) runcmor_write under IPCC 2xCO2 equilibrium experiment - ! conditions, and provide information to be included as attributes in - ! all CF-netCDF files written as part of this dataset. - - print*, 'calling cmor_dataset' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' , & - model_id="pcmdi-08a",forcing="atm") - - print*, 'returned from cmor_dataset' - - ! Define axes for 3-d fields - - print*, 'defining 3-d axes' - - axis3d_ids(3) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis3d_ids(2) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - axis3d_ids(1) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (below). -print*, 'before time ' - axis3d_ids(4) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='30 days') - - print*, 'finished defining 3-d axes' - - ! Define axes for 2-d fields - - print*, 'defining 2-d axes' - - axis2d_ids(1) = axis3d_ids(3) - axis2d_ids(2) = axis3d_ids(2) - axis2d_ids(3) = axis3d_ids(4) - -print*, 'finished defining 2-d axes' - - ! Define variables found in AMIP table 1a (3-d variables) - - DO m=1,n3d - var3d_ids(m) = cmor_variable( & - table='CMOR_SAMPLE_TABLE', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=axis3d_ids, & - missing_value=1.0e20, & - positive=positive3d(m), & - original_name=varin3d(m)) - ENDDO - - - ! Define variables found in AMIP table 2a (2-d variables) - - DO m=1,n2d - var2d_ids(m) = cmor_variable( & - table='CMOR_SAMPLE_TABLE', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=axis2d_ids, & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - ENDDO - -print*, 'completed everything up to writing output fields ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested AMIP table 1a and table 2 fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - ! Cycle through the 3-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - - DO m=1,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write(var_id = var3d_ids(m), & - file_suffix='1979-2001', & - data = RESHAPE(data3d, (/ lat*lon*lev /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var3d_ids(m) -print*, ' error flag = ', error_flag - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 1a ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write(var_id = var2d_ids(m), & - file_suffix='1979-2001', & - data = RESHAPE(data2d, (/ lat*lon /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var2d_ids(m) -print*, ' error flag = ', error_flag - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 2 ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - -print*, '******************************' -print*, ' ' -print*, 'CMOR COMPLETED SUCCESSFULLY ' -print*, ' ' -print*, '******************************' - -END PROGRAM mip_contribution - diff --git a/Test/old_cmor_tables/test4.f90 b/Test/old_cmor_tables/test4.f90 deleted file mode 100644 index 3d7a5f8a33b743edee64acb4dd4e37232ce4739d..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test4.f90 +++ /dev/null @@ -1,475 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/main_prog.f90 -IModules -L/work/Unidata/lib -ludunits -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF//include -L/pcmdi/charles_work/NetCDF//lib -lnetcdf -module Modules -IModules -L. -lcmor Test/main_prog.f90 -L/pcmdi/charles_work/Unidata/lib -ludunits -o cmor_test - -MODULE local_subs - - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1) = (it-1)*30. - time_bnds(2) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - - SELECT CASE (TRIM(ADJUSTL(varname))) - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j,k) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - if (TRIM(ADJUSTL(varname)).eq.'T') field(i,j,k) = field(i,j,k)*1.8 - 459.67 - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - - - SELECT CASE (TRIM(ADJUSTL(varname))) - CASE ('LATENT') - - factor = 1.5 - offset = 20. - CASE ('TSURF') - factor = 2.2 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM mip_contribution -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is required by many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, APE, and -! IPCC scenario runs) -! -! Background information for this sample code: -! -! Standard output requested by AMIP is listed in 6 different -! tables. This sample code processes only 2 variables listed in AMIP -! Table 1a ("3-d" fields, containing monthly mean data that are a -! function of longitude, latitude, pressure and time) and only 3 -! variables in AMIP Table 2 ("2-d" fields, containing monthly mean -! data that are a function of longitude, latitude, and time). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 3 ! number of AMIP Table 2 fields to be - ! output. - INTEGER, PARAMETER :: n3d = 2 ! number of AMIP Table 1a fields to - ! be output. - - ! Tables associating the user's variables with AMIP standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for Table 1a fields - CHARACTER (LEN=2), DIMENSION(n3d) :: varin3d=(/ 'U', 'T'/) - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ 'm s-1', 'degF ' /) - CHARACTER (LEN=4), DIMENSION(n3d) :: & - positive3d= (/ ' ', ' ' /) - ! Corresponding AMIP Table 1a entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'ua', 'ta' /) - - ! My variable names for Table 2 fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET' /) - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2' /) - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ' /) - ! Corresponding AMIP Table 2 entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, DIMENSION(3) :: axis2d_ids - INTEGER, DIMENSION(4) :: axis3d_ids - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - REAL, DIMENSION(lon,lat,lev) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION :: time - DOUBLE PRECISION, DIMENSION(2):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - -!!$ REAL, DIMENSION(lat*lon*lev) :: tmp3d -!!$ REAL, DIMENSION(lat*lon) :: tmp2d - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - character(256) outputpath - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - print*, 'calling read_coords ' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - print*, 'returned from read_coords' - - ! Specify path where tables can be found, indicate that existing netCDF - ! files should not be overwritten, and instruct CMOR to error exit on - ! encountering errors of any severity. - - error_flag = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) runcmor_write under IPCC 2xCO2 equilibrium experiment - ! conditions, and provide information to be included as attributes in - ! all CF-netCDF files written as part of this dataset. - - print*, 'calling cmor_dataset' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' , model_id="pcmdi-08a", & - forcing = "atm") - - print*, 'returned from cmor_dataset' - - ! Define axes for 3-d fields - - print*, 'defining 3-d axes' - - axis3d_ids(2) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis3d_ids(1) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - axis3d_ids(3) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (below). -print*, 'before time ' - axis3d_ids(4) = cmor_axis( & - table='CMOR_SAMPLE_TABLE', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='31 days') - - print*, 'finished defining 3-d axes' - - ! Define axes for 2-d fields - - print*, 'defining 2-d axes' - - axis2d_ids(1) = axis3d_ids(1) - axis2d_ids(2) = axis3d_ids(2) - axis2d_ids(3) = axis3d_ids(4) - -print*, 'finished defining 2-d axes' - - ! Define variables found in AMIP table 1a (3-d variables) - - DO m=1,n3d - var3d_ids(m) = cmor_variable( & - table='CMOR_SAMPLE_TABLE', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=axis3d_ids, & - missing_value=1.0e20, & - positive=positive3d(m), & - original_name=varin3d(m)) - ENDDO - - - ! Define variables found in AMIP table 2a (2-d variables) - - DO m=1,n2d - var2d_ids(m) = cmor_variable( & - table='CMOR_SAMPLE_TABLE', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=axis2d_ids, & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - ENDDO - -print*, 'completed everything up to writing output fields ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested AMIP table 1a and table 2 fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - ! Cycle through the 3-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - - DO m=1,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - call cmor_create_output_path(var3d_ids(m),outputpath) - print*, 'Test Code: we are dumping this varialbe ',var3d_ids(m),'to:',outputpath - error_flag = cmor_write(var_id = var3d_ids(m), & - data = RESHAPE(data3d, (/ lat*lon*lev /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var3d_ids(m) -print*, ' error flag = ', error_flag - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 1a ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - call cmor_create_output_path(var2d_ids(m),outputpath) - print*, 'Test Code: we are dumping this varialbe ',var2d_ids(m),'to:',outputpath - - error_flag = cmor_write(var_id = var2d_ids(m), & - data = RESHAPE(data2d, (/ lat*lon /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var2d_ids(m) -print*, ' error flag = ', error_flag - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 2 ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - -print*, '******************************' -print*, ' ' -print*, 'CMOR COMPLETED SUCCESSFULLY ' -print*, ' ' -print*, '******************************' - -END PROGRAM mip_contribution - diff --git a/Test/old_cmor_tables/test_3h.f90 b/Test/old_cmor_tables/test_3h.f90 deleted file mode 100644 index 5e14471753bf372f05261f725c4b419b42d6cfd2..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_3h.f90 +++ /dev/null @@ -1,580 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*3 - time_bnds(1,1) = (it-1)*3. - time_bnds(2,1) = it*3. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('CLOUD') - factor = 0.1 - offset = -50. - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j,k) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('LATENT') - - factor = 3.2 - offset = 20. - CASE ('TSURF') - factor = 2.2 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - CASE ('PSURF') - factor = 100. - offset = -9.7e4 - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,size(field,2)+1-j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM ipcc_test_code -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 3 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ','PSURF ', 'TSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=10), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'kg m-2 s-1', 'K ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'pr ', 'tas ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - REAL, DIMENSION(lon,lat,lev) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - REAL, DIMENSION(lev) :: a_coeff - REAL, DIMENSION(lev) :: b_coeff - REAL :: p0 - REAL, DIMENSION(lev+1) :: a_coeff_bnds - REAL, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim, itim1 - - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace',logfile='test_3h.LOG') - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', model_id="pcmdi-08a", & - forcing="CO2" ) - - ! Define all axes that will be needed - - ilat = cmor_axis( & - table='IPCC_table_A3', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table='IPCC_table_A3', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - -!!$ ipres = cmor_axis( & -!!$ table='IPCC_table_A3', & -!!$ table_entry='pressure', & -!!$ units='Pa', & -!!$ length=lev, & -!!$ coord_vals=plevs) -!!$ - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='IPCC_table_A3', & - table_entry='time', & - units='hours since 2030-1-1', & - length=ntimes, & - interval='3 hours') - - itim1 = cmor_axis( & - table='IPCC_table_A3', & - table_entry='time1', & - units='hours since 2030-1-1', & - length=ntimes) -!!$ -!!$ ! define model eta levels (although these must be provided, they will -!!$ ! actually be replaced by a+b before writing the netCDF file) -!!$ zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) -!!$ zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) -!!$ -!!$ ilev = cmor_axis( & -!!$ table='IPCC_table_A3', & -!!$ table_entry='standard_hybrid_sigma', & -!!$ length=lev, & -!!$ coord_vals=zlevs, & -!!$ cell_bounds=zlev_bnds) -!!$ -!!$ ! define z-factors needed to transform from model level to pressure -!!$ p0 = 1.e5 -!!$ a_coeff = (/ 0.1, 0.2, 0.3, 0.22, 0.1 /) -!!$ b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) -!!$ -!!$ a_coeff_bnds=(/0.,.15, .25, .25, .16, 0./) -!!$ b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) -!!$ -!!$ error_flag = cmor_zfactor( & -!!$ zaxis_id=ilev, & -!!$ zfactor_name='p0', & -!!$ units='Pa', & -!!$ zfactor_values = p0) -!!$ -!!$ error_flag = cmor_zfactor( & -!!$ zaxis_id=ilev, & -!!$ zfactor_name='b', & -!!$ axis_ids= (/ ilev /), & -!!$ zfactor_values = b_coeff, & -!!$ zfactor_bounds = b_coeff_bnds ) -!!$ -!!$ error_flag = cmor_zfactor( & -!!$ zaxis_id=ilev, & -!!$ zfactor_name='a', & -!!$ axis_ids= (/ ilev /), & -!!$ zfactor_values = a_coeff, & -!!$ zfactor_bounds = a_coeff_bnds ) -!!$ -!!$ zfactor_id = cmor_zfactor( & -!!$ zaxis_id=ilev, & -!!$ zfactor_name='ps', & -!!$ axis_ids=(/ ilon, ilat, itim /), & -!!$ units='Pa' ) -!!$ -!!$ ! Define the only field to be written that is a function of model level -!!$ ! (appearing in IPCC table A1c) -!!$ -!!$ var3d_ids(1) = cmor_variable( & -!!$ table='IPCC_table_A3', & -!!$ table_entry=entry3d(1), & -!!$ units=units3d(1), & -!!$ axis_ids=(/ ilon, ilat, ilev, itim /), & -!!$ missing_value=1.0e28, & -!!$ original_name=varin3d(1)) -!!$ -!!$ ! Define variables appearing in IPCC table A1c that are a function of pressure -!!$ ! (3-d variables) -!!$ -!!$ DO m=2,n3d -!!$ var3d_ids(m) = cmor_variable( & -!!$ table='IPCC_table_A3', & -!!$ table_entry=entry3d(m), & -!!$ units=units3d(m), & -!!$ axis_ids=(/ ilon, ilat, ipres, itim /), & -!!$ missing_value=1.0e28, & -!!$ original_name=varin3d(m)) -!!$ ENDDO -!!$ - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - - IF (m==2) THEN - - var2d_ids(m) = cmor_variable( & - table='IPCC_table_A3', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - - ELSE - var2d_ids(m) = cmor_variable( & - table='IPCC_table_A3', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim1 /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - - END IF - - ENDDO - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - -!!$ call read_3d_input_files(it, varin3d(1), data3d) -!!$ -!!$ error_flag = cmor_write( & -!!$ var_id = var3d_ids(1), & -!!$ data = data3d, & -!!$ ntimes_passed = 1, & -!!$ time_vals = time, & -!!$ time_bnds = bnds_time ) -!!$ -!!$ call read_2d_input_files(it, varin2d(4), data2d) -!!$ -!!$ error_flag = cmor_write( & -!!$ var_id = zfactor_id, & -!!$ data = data2d, & -!!$ ntimes_passed = 1, & -!!$ time_vals = time, & -!!$ time_bnds = bnds_time, & -!!$ store_with = var3d_ids(1) ) - - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - -!!$ DO m=2,n3d -!!$ -!!$ ! The user must write the code that fills the arrays of data -!!$ ! that will be passed to CMOR. The following line is simply a -!!$ ! a place-holder for the user's code, which should replace it. -!!$ -!!$ call read_3d_input_files(it, varin3d(m), data3d) -!!$ -!!$ ! append a single time sample of data for a single field to -!!$ ! the appropriate netCDF file. -!!$ -!!$ error_flag = cmor_write( & -!!$ var_id = var3d_ids(m), & -!!$ data = data3d, & -!!$ ntimes_passed = 1, & -!!$ time_vals = time, & -!!$ time_bnds = bnds_time ) -!!$ -!!$ IF (error_flag < 0) THEN -!!$ ! write diagnostic messages to standard output device -!!$ write(*,*) ' Error encountered writing IPCC Table A1c ' & -!!$ // 'field ', entry3d(m), ', which I call ', varin3d(m) -!!$ write(*,*) ' Was processing time sample: ', time -!!$ -!!$ END IF -!!$ -!!$ END DO -!!$ - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - IF (m==2) THEN - print*, 'Passing times (1):',time - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - ELSE - print*, 'Passing times (2):',time - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 1, & - time_vals = time) - END IF - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM ipcc_test_code - diff --git a/Test/old_cmor_tables/test_any_from_asc.f90 b/Test/old_cmor_tables/test_any_from_asc.f90 deleted file mode 100644 index d4a4f2cee0d8f9ab465b6d30ea1fb2773b1b48ff..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_any_from_asc.f90 +++ /dev/null @@ -1,348 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current,ptimes - integer ndim,i,j,ntot -! real, allocatable, dimension(:,:,:):: arrayin - real, allocatable, dimension(:,:):: arrayin2d - real, allocatable, dimension(:,:,:):: arrayin3d - real, allocatable, dimension(:,:,:,:):: arrayin4d - real, allocatable, dimension(:,:,:,:,:):: arrayin5d - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - character(50) :: var,units - - print*, 'Test Code: Welcome to the general from ascii testing code' - read(5,'(A)') filein - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength,var,units) - allocate(myaxis(ndim)) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - if (ndim.eq.2) then - allocate(arrayin2d(dimlength(1),dimlength(2))) - call read_ascii2d(23,mydims, ndim,ntot,arrayin2d) - print*,'Test Code: allocate data:',shape(arrayin2d) - else if (ndim.eq.3) then - allocate(arrayin3d(dimlength(1),dimlength(2),dimlength(3))) - call read_ascii3d(23,mydims, ndim,ntot,arrayin3d) - print*,'Test Code: allocate data:',shape(arrayin3d) - else if (ndim.eq.4) then - allocate(arrayin4d(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - call read_ascii4d(23,mydims, ndim,ntot,arrayin4d) - print*,'Test Code: allocate data:',shape(arrayin4d) - else if (ndim.eq.5) then - call read_ascii5d(23,mydims, ndim,ntot,arrayin5d) - allocate(arrayin5d(dimlength(1),dimlength(2),dimlength(3),dimlength(4),dimlength(5))) - print*,'Test Code: allocate data:',shape(arrayin5d) - endif - - -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)', & - model_id='pcmdi-01a',forcing='atm' ) - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i - print*, 'Test Code: Axis Name:',trim(adjustl(current%name)) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - ptimes => current - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='1 month') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VAR' - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - var,& - units,& - myaxis,& - missing_value=1.e20) - - !! figures out length of dimension other than time - - print*, 'Test Code: time before:',ptimes%values(i:i) - if (ndim.eq.2) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin2d(:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin2d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else if (ndim.eq.3) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin3d(:,:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once',ptimes%units,ptimes%values - ierr = cmor_write( & - var_id = myvar, & - data = arrayin3d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else if (ndim.eq.4) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin4d(:,:,:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once',ptimes%units - ierr = cmor_write( & - var_id = myvar, & - data = arrayin4d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin5d(:,:,:,:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin5d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - endif - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength,var,units) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - character(50), intent(inout) :: var,units - read(file_id,'(A)') var - read(file_id,'(A)') units - read(file_id,'(I4)') ndim - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I4)') tmp - dimlength(4-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii2d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - real, dimension(:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((arrayin(j,k),j=1,size(arrayin,1)),k=1,size(arrayin,2)) - end subroutine read_ascii2d - subroutine read_ascii3d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - real, dimension(:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((arrayin(j,k,l),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)) - end subroutine read_ascii3d - subroutine read_ascii4d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - real, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) - end subroutine read_ascii4d - subroutine read_ascii5d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - real, dimension(:,:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m,o - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((((arrayin(j,k,l,m,o),j=1,size(arrayin,1)),& - k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)),& - o=1,size(arrayin,5)) - end subroutine read_ascii5d - - -end program main - diff --git a/Test/old_cmor_tables/test_any_from_asc_d.f90 b/Test/old_cmor_tables/test_any_from_asc_d.f90 deleted file mode 100644 index 8538ce22af2468e0c50d84d258be55cafd7c7a5c..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_any_from_asc_d.f90 +++ /dev/null @@ -1,348 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current,ptimes - integer ndim,i,j,ntot -! double precision, allocatable, dimension(:,:,:):: arrayin - double precision, allocatable, dimension(:,:):: arrayin2d - double precision, allocatable, dimension(:,:,:):: arrayin3d - double precision, allocatable, dimension(:,:,:,:):: arrayin4d - double precision, allocatable, dimension(:,:,:,:,:):: arrayin5d - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - character(50) :: var,units - - print*, 'Test Code: Welcome to the general from ascii testing code' - read(5,'(A)') filein - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength,var,units) - allocate(myaxis(ndim)) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - if (ndim.eq.2) then - allocate(arrayin2d(dimlength(1),dimlength(2))) - call read_ascii2d(23,mydims, ndim,ntot,arrayin2d) - print*,'Test Code: allocate data:',shape(arrayin2d) - else if (ndim.eq.3) then - allocate(arrayin3d(dimlength(1),dimlength(2),dimlength(3))) - call read_ascii3d(23,mydims, ndim,ntot,arrayin3d) - print*,'Test Code: allocate data:',shape(arrayin3d) - else if (ndim.eq.4) then - allocate(arrayin4d(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - call read_ascii4d(23,mydims, ndim,ntot,arrayin4d) - print*,'Test Code: allocate data:',shape(arrayin4d) - else if (ndim.eq.5) then - call read_ascii5d(23,mydims, ndim,ntot,arrayin5d) - allocate(arrayin5d(dimlength(1),dimlength(2),dimlength(3),dimlength(4),dimlength(5))) - print*,'Test Code: allocate data:',shape(arrayin5d) - endif - - -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' , & - model_id = "pcmdi-01a",forcing="atm") - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i - print*, 'Test Code: Axis Name:',trim(adjustl(current%name)) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - ptimes => current - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='1 month') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VAR' - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - var,& - units,& - myaxis,& - missing_value=1.e20) - - !! figures out length of dimension other than time - - print*, 'Test Code: time before:',ptimes%values(i:i) - if (ndim.eq.2) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin2d(:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin2d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else if (ndim.eq.3) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin3d(:,:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin3d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else if (ndim.eq.4) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin4d(:,:,:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin4d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin5d, & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin5d(:,:,:,:,i:i), & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - endif - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength,var,units) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - character(50), intent(inout) :: var,units - read(file_id,'(A)') var - read(file_id,'(A)') units - read(file_id,'(I4)') ndim - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I4)') tmp - dimlength(4-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii2d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((arrayin(j,k),j=1,size(arrayin,1)),k=1,size(arrayin,2)) - end subroutine read_ascii2d - subroutine read_ascii3d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((arrayin(j,k,l),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)) - end subroutine read_ascii3d - subroutine read_ascii4d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) - end subroutine read_ascii4d - subroutine read_ascii5d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m,o - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((((arrayin(j,k,l,m,o),j=1,size(arrayin,1)),& - k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)),& - o=1,size(arrayin,5)) - end subroutine read_ascii5d - - -end program main - diff --git a/Test/old_cmor_tables/test_any_from_asc_i.f90 b/Test/old_cmor_tables/test_any_from_asc_i.f90 deleted file mode 100644 index df5b4c2a1b843c7b9826a1093918d1a082d957b4..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_any_from_asc_i.f90 +++ /dev/null @@ -1,348 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current,ptimes - integer ndim,i,j,ntot -! integer, allocatable, dimension(:,:,:):: arrayin - integer, allocatable, dimension(:,:):: arrayin2d - integer, allocatable, dimension(:,:,:):: arrayin3d - integer, allocatable, dimension(:,:,:,:):: arrayin4d - integer, allocatable, dimension(:,:,:,:,:):: arrayin5d - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - character(50) :: var,units - - print*, 'Test Code: Welcome to the general from ascii testing code' - read(5,'(A)') filein - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength,var,units) - allocate(myaxis(ndim)) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - if (ndim.eq.2) then - allocate(arrayin2d(dimlength(1),dimlength(2))) - call read_ascii2d(23,mydims, ndim,ntot,arrayin2d) - print*,'Test Code: allocate data:',shape(arrayin2d) - else if (ndim.eq.3) then - allocate(arrayin3d(dimlength(1),dimlength(2),dimlength(3))) - call read_ascii3d(23,mydims, ndim,ntot,arrayin3d) - print*,'Test Code: allocate data:',shape(arrayin3d) - else if (ndim.eq.4) then - allocate(arrayin4d(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - call read_ascii4d(23,mydims, ndim,ntot,arrayin4d) - print*,'Test Code: allocate data:',shape(arrayin4d) - else if (ndim.eq.5) then - call read_ascii5d(23,mydims, ndim,ntot,arrayin5d) - allocate(arrayin5d(dimlength(1),dimlength(2),dimlength(3),dimlength(4),dimlength(5))) - print*,'Test Code: allocate data:',shape(arrayin5d) - endif - - -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)', & - model_id = "pcmdi-08a", forcing="co2" ) - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i - print*, 'Test Code: Axis Name:',trim(adjustl(current%name)) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - ptimes => current - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='1 month') - else - myaxis(ndim-i)=cmor_axis('CMOR_SAMPLE_TABLE', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VAR',var,units - myvar=cmor_variable('CMOR_SAMPLE_TABLE',& - var,& - units,& - myaxis,& - missing_value=120) - - !! figures out length of dimension other than time - - print*, 'Test Code: time before:',ptimes%values(i:i) - if (ndim.eq.2) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin2d, & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin2d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else if (ndim.eq.3) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin3d, & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin3d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else if (ndim.eq.4) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin4d, & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin4d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin5d, & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin5d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - endif - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength,var,units) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - character(50), intent(inout) :: var,units - read(file_id,'(A)') var - read(file_id,'(A)') units - read(file_id,'(I4)') ndim - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I4)') tmp - dimlength(4-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii2d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - integer, dimension(:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((arrayin(j,k),j=1,size(arrayin,1)),k=1,size(arrayin,2)) - end subroutine read_ascii2d - subroutine read_ascii3d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - integer, dimension(:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((arrayin(j,k,l),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)) - end subroutine read_ascii3d - subroutine read_ascii4d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - integer, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) - end subroutine read_ascii4d - subroutine read_ascii5d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - integer, dimension(:,:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m,o - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((((arrayin(j,k,l,m,o),j=1,size(arrayin,1)),& - k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)),& - o=1,size(arrayin,5)) - end subroutine read_ascii5d - - -end program main - diff --git a/Test/old_cmor_tables/test_cmor_grid_alejandro.f90 b/Test/old_cmor_tables/test_cmor_grid_alejandro.f90 deleted file mode 100644 index 155a44ca63a0432e6fa1c4b2ac3ed34e903c51e4..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_cmor_grid_alejandro.f90 +++ /dev/null @@ -1,166 +0,0 @@ -PROGRAM test_cmor_grid - USE cmor_users_functions - - IMPLICIT NONE - - INTEGER, PARAMETER :: n_sections = 3 - INTEGER, PARAMETER :: n_points = 10 - INTEGER, PARAMETER :: n_lev = 4 - real, parameter :: R_UNDEF = -1.0E+30 - INTEGER :: i, j, k, var_id,option -! REAL :: x(n_lev,n_points,n_sections) - REAL :: x(n_points,n_sections,n_lev) - real :: z_ax(n_lev),z_bounds(2,n_points) - double precision :: profile_ax(n_points),section_ax(n_sections) - real :: lat(n_points,n_sections),lon(n_points,n_sections) - real :: lat_bounds(4,n_points,n_sections),lon_bounds(4,n_points,n_sections) - character(len=128) :: table='Test/CMIP5_cf3hr.txt' - character(len=32) :: sec_units='days since 2000-01-01' - integer :: error_flag,height_axid,time_axid,profile_axid,grid_id,section_axid - real :: lat_step,lon_step - integer latvar_id,lonvar_id - integer blatvar_id,blonvar_id - - print *, 'Option (0,1,other)?' - read(*,*) option - - if (option == 0) then ! 1D grid, no time dimension - table='Test/CMIP5_cf3hr_0.txt' - sec_units='1' - endif - if (option == 1) then ! 1D grid, section as time dimension - table='Test/CMIP5_cf3hr_1.txt' - sec_units='days since 2000-01-01' - endif - - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Fill in variables with some data - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - do k=1,n_sections - do j=1,n_points - do i=1,n_lev - x(j,k,i) = k*1000000 + 1000*j + i - enddo - enddo - enddo - - ! Values for section axis - do i=1,n_sections - section_ax(i) = float(i) - enddo - - ! Values for profile axis - do i=1,n_points - profile_ax(i) = float(i) - enddo - - ! Height of vertical levels - do i=1,n_lev - z_ax(i) = 240.0 + 480.0*(i-1) - z_bounds(1,i) = z_ax(i) - 240.0 - z_bounds(2,i) = z_ax(i) + 240.0 - enddo - - lat_step = 180.0/(n_points+2) - lon_step = 360.0/(n_points+2) - do i=1,n_points - lat(i,:) = -90.0 + lat_step*0.5 + lat_step*i - lon(i,:) = 0.0 + lon_step*0.5 + lon_step*i - lat_bounds(1,i,:) = lat(i,:) - lat_step*0.5 - lat_bounds(2,i,:) = lat(i,:) - lat_step*0.5 - lat_bounds(3,i,:) = lat(i,:) + lat_step*0.5 - lat_bounds(4,i,:) = lat(i,:) + lat_step*0.5 - lon_bounds(1,i,:) = lon(i,:) - lon_step*0.5 - lon_bounds(2,i,:) = lon(i,:) + lon_step*0.5 - lon_bounds(3,i,:) = lon(i,:) - lon_step*0.5 - lon_bounds(4,i,:) = lon(i,:) + lon_step*0.5 - enddo - - - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Specify path for tables and set up other CMOR options - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - error_flag = cmor_setup(inpath='./',netcdf_file_action="replace",create_subdirectories=0) - - print *, '---------------Define dataset' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Define dataset as output from COSP, and other model details - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - error_flag = cmor_dataset(outpath='Test/',experiment_id='AMIP',institution='Met Office', & - source='source',calendar='360_day',realization=1,contact='alejandro.bodas@metoffice.gov.uk', & - history='history',comment='En un lugar de la Mancha de cuyo nombre no quiero acordarme', & - references='references',forcing="CH4",model_id="mymod-10a") - - print *, '---------------Define axis' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Define axis - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - profile_axid = cmor_axis(table=table, table_entry='location', units='1', & - length=n_points, coord_vals=profile_ax) - height_axid = cmor_axis(table=table, table_entry='height40', units='m', & - length=n_lev, coord_vals=z_ax,cell_bounds=z_bounds) - section_axid = cmor_axis(table=table, table_entry='section', units=sec_units, & - length=n_sections, coord_vals=section_ax) - - print *, '---------------Define grid' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Define grid - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - if ((option == 0).or.(option == 1)) then - grid_id = cmor_grid((/profile_axid/), lat(:,1), lon(:,1)) - else - print*, "AXES FOR GRID: ",(/profile_axid, section_axid/) - grid_id = cmor_grid((/profile_axid, section_axid/),nvertices=4) - print*, 'got grid:',grid_id - !need to add code for defining the lat lon var here - latvar_id = cmor_time_varying_grid_coordinate(grid_id,table_entry='latitude',units='degrees_north') - lonvar_id = cmor_time_varying_grid_coordinate(grid_id,table_entry='longitude',units='degrees_east') - blatvar_id = cmor_time_varying_grid_coordinate(grid_id,table_entry='vertices_latitude',units='degrees_north') - blonvar_id = cmor_time_varying_grid_coordinate(grid_id,table_entry='vertices_longitude',units='degrees_east') - endif - if (grid_id > 0) then - print *, '*********** Error, grid_id: ', grid_id - stop - endif - - print *, '---------------Define variables' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Define variables. Fill in dimensions table first if needed - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - if ((option == 0).or.(option == 1)) then - var_id = cmor_variable(table=table, table_entry='curtain', units='1', & - axis_ids=(/grid_id,section_axid,height_axid/), missing_value=R_UNDEF) - else - var_id = cmor_variable(table=table, table_entry='curtain', units='1', & - axis_ids=(/grid_id,height_axid/), missing_value=R_UNDEF) - endif - - print *, '---------------Write variables' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Write variables to file - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - if ((option == 0).or.(option == 1)) then - error_flag = cmor_write(var_id=var_id, data=x) - else - error_flag = cmor_write(var_id=var_id, data=x) - error_flag = cmor_write(var_id=latvar_id, data=lat, store_with=var_id) - error_flag = cmor_write(var_id=lonvar_id, data=lon, store_with=var_id) - error_flag = cmor_write(var_id=latvar_id, data=lat, store_with=var_id) - error_flag = cmor_write(var_id=lonvar_id, data=lon, store_with=var_id) - print*, 'writing blat',blatvar_id - error_flag = cmor_write(var_id=blatvar_id, data=lat_bounds, store_with=var_id) - print*, 'writing blon',blonvar_id - error_flag = cmor_write(var_id=blonvar_id, data=lon_bounds, store_with=var_id) - endif - if (error_flag /= 0) then - print *, '*********** Error writing variable: ', error_flag - stop - endif - - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Close files - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - error_flag = cmor_close() - - - END diff --git a/Test/old_cmor_tables/test_dimensionless.f90 b/Test/old_cmor_tables/test_dimensionless.f90 deleted file mode 100644 index 270817147ebcb4d60e191888eb2b65988215f8b1..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_dimensionless.f90 +++ /dev/null @@ -1,549 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('CLOUD') - factor = 0.1 - offset = -50. - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - CASE ('tro3') - factor = 1. - offset = 0. - END SELECT - - DO k=1,SIZE(field, 1) - DO j=1,SIZE(field, 3) - DO i=1,SIZE(field, 2) - field(k,i,j) = ((SIZE(field, 1) - k)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('LATENT') - - factor = 2.8 - offset = 10. - CASE ('TSURF') - factor = 2.2 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - CASE ('PSURF') - factor = 100. - offset = -9.7e4 - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM ipcc_test_code -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 4 ! number of IPCC Table A1c fields to - ! be output. - - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'tro3 ', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ '% ', '1e-9 ', 'm s-1', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=4), DIMENSION(n3d) :: entry3d = (/ 'cl ', 'tro3', 'ua ', 'ta ' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - REAL, DIMENSION(lev,lon,lat) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - REAL, DIMENSION(lev) :: a_coeff - REAL, DIMENSION(lev) :: b_coeff - REAL :: p0 - REAL, DIMENSION(lev+1) :: a_coeff_bnds - REAL, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim - - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace') - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', model_id="pcmdi-a08", & - forcing="CO2") - - ! Define all axes that will be needed - - ilat = cmor_axis( & - table='IPCC_table_A1', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table='IPCC_table_A1', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - -print*, 'Test Code:',lev,':',plevs - ipres = cmor_axis( & - table='IPCC_table_A1', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) -print*,'ok' - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='IPCC_table_A1', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - ! define model eta levels - zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) - zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) - - ilev = cmor_axis( & - table='IPCC_table_A1', & - table_entry='standard_hybrid_sigma', & - units='1', & - length=lev, & - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - ! define z-factors needed to transform from model level to pressure - p0 = 1.e5 - a_coeff = (/ 0.1, 0.2, 0.3, 0.2, 0.1 /) - b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) - - a_coeff_bnds=(/0.,.15, .25, .25, .15, 0./) - b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='p0', & - units='Pa', & - zfactor_values = p0) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='b', & - axis_ids= (/ ilev /), & - zfactor_values = b_coeff, & - zfactor_bounds = b_coeff_bnds ) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='a', & - axis_ids= (/ ilev /), & - zfactor_values = a_coeff, & - zfactor_bounds = a_coeff_bnds ) - - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - ! Define the only field to be written that is a function of model level - ! (appearing in IPCC table A1c) - - var3d_ids(1) = cmor_variable( & - table='IPCC_table_A1', & - table_entry=entry3d(1), & - units=units3d(1), & - axis_ids=(/ ilev, ilon, ilat, itim /), & - missing_value=1.0e28, & - original_name=varin3d(1)) - - ! Define variables appearing in IPCC table A1c that are a function of pressure - ! (3-d variables) - - DO m=2,n3d - var3d_ids(m) = cmor_variable( & - table='IPCC_table_A1', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=(/ ipres, ilon, ilat, itim /), & - missing_value=1.0e28, & - original_name=varin3d(m)) - ENDDO - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - var2d_ids(m) = cmor_variable( & - table='IPCC_table_A1', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - ENDDO - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - call read_3d_input_files(it, varin3d(1), data3d) - - error_flag = cmor_write( & - var_id = var3d_ids(1), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - call read_2d_input_files(it, varin2d(4), data2d) - - error_flag = cmor_write( & - var_id = zfactor_id, & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids(1) ) - - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=2,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var3d_ids(m), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1c ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM ipcc_test_code - diff --git a/Test/old_cmor_tables/test_fortran_example_00.f90 b/Test/old_cmor_tables/test_fortran_example_00.f90 deleted file mode 100644 index aa2c91dcf7ad9fc1dea46584e60a24727450a90d..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_fortran_example_00.f90 +++ /dev/null @@ -1,481 +0,0 @@ -MODULE local_subs - - USE cmor_users_functions -!!$ PRIVATE -!!$ PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('CLOUD') - factor = 0.1 - offset = -50. - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j,k) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('LATENT') - - factor = 1. - offset = 20. - CASE ('TSURF') - factor = 2.0 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - CASE ('PSURF') - factor = 100. - offset = -9.7e4 - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,size(field,2)+1-j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - -program testing - use cmor_users_functions - use local_subs - implicit none - integer error_flag - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1 ', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - real, DIMENSION(lon*lat) :: data1dtest - REAL, DIMENSION(lon,lat,lev) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - real, DIMENSION(lev) :: a_coeff - DOUBLE PRECISION, DIMENSION(lev) :: b_coeff - DOUBLE PRECISION :: p0 - DOUBLE PRECISION :: p0array(1) - real, DIMENSION(lev+1) :: a_coeff_bnds - DOUBLE PRECISION, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim,i - real :: missing - - ! Other variables: - ! --------------------- - - INTEGER :: it, m, j,k - - j = CMOR_REPLACE - k = CMOR_EXIT_ON_MAJOR - error_flag = cmor_setup(inpath='Test', netcdf_file_action=j,& - exit_control=k) - print*,'Test code: done' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', model_id="pcmdi-08a", & - forcing="CO2") - print*, 'Test code: done 2 lalala' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - - print*, 'Test code: ok calling axis stuff lat' - ilat = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - print*, 'Test code: ok calling axis stuff lon',ilat - ilon = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - print*, 'Test code: ok calling axis stuff pressure',ilon - ipres = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - print*, 'Test code: ok calling axis stuff time',ipres - itim = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='30 days') - - ! define model eta levels (although these must be provided, they will - ! actually be replaced by a+b before writing the netCDF file) - zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) - zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) - - print*, 'Test code: ok calling axis stuff lev2',itim - ilev = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='standard_hybrid_sigma', & - units="1", & - length=lev, & - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - print*, 'Test code: ok called stuff lev2',ilev - ! define z-factors needed to transform from model level to pressure - p0 = 1.e5 - p0array(1)=p0 - a_coeff = (/ 0.1, 0.2, 0.3, 0.22, 0.1 /) - b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) - - a_coeff_bnds=(/0.,.15, .25, .25, .16, 0./) - b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) - - print*, 'Test code: zfactor p0' - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='p0', & - units='Pa', & - zfactor_values = p0) - - print*, 'Test code: result',error_flag - print*, 'Test code: zfactor b' - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='b', & - axis_ids= (/ ilev /), & - zfactor_values = b_coeff, & - zfactor_bounds = b_coeff_bnds ) - - print*, 'Test code: result',error_flag - print*, 'Test code: zfactor a' - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='a', & - axis_ids= (/ ilev /), & - zfactor_values = a_coeff, & - zfactor_bounds = a_coeff_bnds ) - - print*, 'Test code: result',error_flag - print*, 'Test code: zfactor ps' - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - print*, 'Test code: result',zfactor_id - print*, 'Test code: var3d' - missing = 1.e28 - var3d_ids(1) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry3d(1), & - units=units3d(1), & - axis_ids=(/ ilon, ilat, ilev, itim /), & - missing_value=missing, & - original_name=varin3d(1)) - - ! Define variables appearing in IPCC table A1c that are a function of pressure - ! (3-d variables) - - print*, 'Test code: result',var3d_ids(1) - DO m=2,n3d - print*, 'Test code: var: ',entry3d(m) - var3d_ids(m) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=(/ ilon, ilat, ipres, itim /), & - missing_value=missing, & - original_name=varin3d(m)) - print*, 'Test code: result',var3d_ids(m) - ENDDO - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - print*, 'Test code: var: ',entry2d(m) - var2d_ids(m) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=missing, & - positive=positive2d(m), & - original_name=varin2d(m)) - print*, 'Test code: result',var2d_ids(m) - ENDDO - - PRINT*, 'Test code: ' - PRINT*, 'Test code: completed everything up to writing output fields ' - PRINT*, 'Test code: ' - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - call read_3d_input_files(it, varin3d(1), data3d) - - error_flag = cmor_write( & - var_id = var3d_ids(1), & - file_suffix ="ftn", & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - call read_2d_input_files(it, varin2d(4), data2d) - - error_flag = cmor_write( & - var_id = zfactor_id, & - file_suffix ="ftn-00", & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids(1) ) - - print*, 'Test code: result',error_flag - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=2,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var3d_ids(m), & - file_suffix ="ftn-00", & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) 'Test code: Error encountered writing IPCC Table A1c ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) 'Test code: Was processing time sample: ', time - - END IF - - END DO -!!$ -!!$ ! Cycle through the 2-d fields, retrieve the requested variable and -!!$ ! append each to the appropriate netCDF file. -!!$ - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - file_suffix ="ftn-00", & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) 'Test code: Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) 'Test code: Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - error_flag = cmor_close() - -end program testing diff --git a/Test/old_cmor_tables/test_fortran_example_01.f90 b/Test/old_cmor_tables/test_fortran_example_01.f90 deleted file mode 100644 index d0993ebff4d2bdc3868f51b8b9eff7f6d45349d5..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_fortran_example_01.f90 +++ /dev/null @@ -1,334 +0,0 @@ -MODULE local_subs - - USE cmor_users_functions -!!$ PRIVATE -!!$ PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('CLOUD') - factor = 0.1 - offset = -50. - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j,k) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('LATENT') - - factor = 1. - offset = 20. - CASE ('TSURF') - factor = 2.0 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - CASE ('PSURF') - factor = 100. - offset = -9.7e4 - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,size(field,2)+1-j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - -program testing - use cmor_users_functions - use local_subs - implicit none - integer error_flag - INTEGER, PARAMETER :: nvert = 4 ! number of time samples to process - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 3 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 4 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1 ', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - real, DIMENSION(lon*lat) :: data1dtest - REAL, DIMENSION(lon,lat,lev) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - real, DIMENSION(lev) :: a_coeff - DOUBLE PRECISION, DIMENSION(lev) :: b_coeff - DOUBLE PRECISION :: p0 - DOUBLE PRECISION :: p0array(1) - real, DIMENSION(lev+1) :: a_coeff_bnds - DOUBLE PRECISION, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim,i - real :: missing - character(1024) inpath,mapnm - character(len=30),dimension(6) ::params =(/ "standard_parallel1 ",& - "longitude_of_central_meridian ","latitude_of_projection_origin ",& - "false_easting ","false_northing ", & - "standard_parallel2 " /) - character(len=5) ,dimension(6) :: punits = (/ " "," "," "," "," "," " /) - double precision,dimension(6) :: pvalues = (/-20.,175.,13.,8.,0.,20. /) - ! Other variables: - ! --------------------- - - INTEGER :: it, m, j,k,tables(2),vars(10),axes(10) - - integer pass_axes(2) - - integer :: grid_id - - - real lon_coords(lon,lat),lat_coords(lon,lat) - real lon_vertices(nvert,lon,lat),lat_vertices(nvert,lon,lat) - real area(lon,lat) - real x(lon),y(lat) - - real lon0,lat0,delta_lon,delta_lat - - lon0 = -120. - lat0=0.; - delta_lon = 10.; - delta_lat = 10.; - -!!$ /* first construct grid lon/lat */ - do j=1,lat - y(j)=j - do i=1,lon - x(i)=i - lon_coords(i,j) = lon0+delta_lon*(j+i-1); - lat_coords(i,j) = lat0+delta_lat*(j-i-2); -!!$ /* vertices lon*/ -!!$ k = i*4+j*lon*4+0; -!!$ printf('i,j,k: %i, %i, %i\n',i,j,k); - lon_vertices(1,i,j) = lon_coords(i,j)-delta_lon; - lon_vertices(2,i,j) = lon_coords(i,j); - lon_vertices(3,i,j) = lon_coords(i,j)+delta_lon; - lon_vertices(4,i,j) = lon_coords(i,j); -!!$ /* vertices lat */ - lat_vertices(1,i,j) = lat_coords(i,j); - lat_vertices(2,i,j) = lat_coords(i,j)-delta_lat; - lat_vertices(3,i,j) = lat_coords(i,j); - lat_vertices(4,i,j) = lat_coords(i,j)+delta_lat; - end do - end do - - inpath ='Test' - j = CMOR_REPLACE - k = CMOR_EXIT_ON_MAJOR - error_flag = cmor_setup(inpath='Test', netcdf_file_action=j,& - exit_control=k) - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)',model_id="pcmdi-08a", & - forcing="CO2") - - tables(1) = cmor_load_table('IPCC_test_table_A') - tables(2) = cmor_load_table('IPCC_test_table_Grids') - - axes(1) = cmor_axis(table_entry = 'x', & - units = '1', & - length = lon, & - coord_vals = x) - axes(2) = cmor_axis(table_entry = 'y', & - units = '1', & - length = lat, & - coord_vals = y) - - grid_id = cmor_grid(axis_ids = axes, & - latitude = lat_coords, & - longitude = lon_coords, & - latitude_vertices = lat_vertices, & - longitude_vertices = lon_vertices) - print*, 'Got grid id: ',grid_id - - mapnm = 'lambert_conformal_conic' - error_flag = cmor_set_grid_mapping(grid_id,& - mapnm,params,pvalues,punits) - - call cmor_set_table(table_id=tables(2)) - - - axes(3) = cmor_axis(table = 'IPCC_test_table_A',& - table_entry = 'time',& - units = 'days since 1980',& - length = 2 & - ) - - - pass_axes(2) = axes(3) - pass_axes(1) = grid_id - - vars(1) = cmor_variable(table = 'IPCC_test_table_A',& - table_entry = 'hfls',& - units = 'W m-2',& - axis_ids = pass_axes,& - positive = 'down',& - original_name = 'HFLS',& - history = 'no history',& - comment = 'no future'& - ) - do i=1,ntimes - call read_time(i, time(1), bnds_time) - print*, 'Test code: writing time:',i,'of',ntimes,time(1) - call read_2d_input_files(i, 'LATENT', data2d) - error_flag = cmor_write(var_id = vars(1) ,& - data =data2d,& - file_suffix='ftn-01',& - ntimes_passed = 1,& - time_vals = time,& - time_bnds = bnds_time) - end do - error_flag = cmor_close() - - end program testing - diff --git a/Test/old_cmor_tables/test_fortran_example_02.f90 b/Test/old_cmor_tables/test_fortran_example_02.f90 deleted file mode 100644 index 2680528ae0bc82d91a181261ae491f7a96e0b878..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_fortran_example_02.f90 +++ /dev/null @@ -1,376 +0,0 @@ -MODULE local_subs - - USE cmor_users_functions -!!$ PRIVATE -!!$ PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon, station, st_lons, st_lats) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - INTEGER, INTENT(OUT), DIMENSION(:) :: station - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: st_lats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: st_lons - - INTEGER :: i, j, k - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - k = 1 - DO i = 1, SIZE(alons) - DO j = 1, SIZE(alats) - station(k) = k - st_lons(k) = alons(i) - st_lats(k) = alats(j) - k = k+1 - END DO - END DO - - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - - !------------------------------------------------ - SUBROUTINE read_3d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('CLOUD') - factor = 0.1 - offset = -50. - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j,k) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - !------------------------------------------------ - SUBROUTINE read_2d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('LATENT') - - factor = 1. - offset = 20. - CASE ('TSURF') - factor = 2.0 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - CASE ('PSURF') - factor = 100. - offset = -9.7e4 - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,size(field,2)+1-j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -!======================================================= -program testing - use cmor_users_functions - use local_subs - implicit none - integer error_flag - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: nst = 12 ! number of stations - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1 ', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - - INTEGER igrid; - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - real, DIMENSION(lon*lat) :: data1dtest - REAL, DIMENSION(lon,lat,lev) :: data3d - REAL, DIMENSION(lon*lat,lev) :: data2d_st - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - INTEGER, DIMENSION(lon*lat) :: station - DOUBLE PRECISION, DIMENSION(lon*lat) :: st_lons - DOUBLE PRECISION, DIMENSION(lon*lat) :: st_lats - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - real, DIMENSION(lev) :: a_coeff - DOUBLE PRECISION, DIMENSION(lev) :: b_coeff - DOUBLE PRECISION :: p0 - DOUBLE PRECISION :: p0array(1) - real, DIMENSION(lev+1) :: a_coeff_bnds - DOUBLE PRECISION, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim, i, ist - real :: missing - - ! Other variables: - ! --------------------- - - INTEGER :: it, m, j,k - - j = CMOR_REPLACE - k = CMOR_EXIT_ON_MAJOR - error_flag = cmor_setup(inpath='Test', netcdf_file_action=j,& - exit_control=k) - print*,'Test code: done' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)' ) - print*, 'Test code: done 2 lalala' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon, station, st_lons, st_lats) - - - print*, 'Test code: ok calling axis stuff station' - ist = cmor_axis( & - table='IPCC_test_table_S', & - table_entry='station', & - units=' ', & - length=nst, & - coord_vals=station ) - - - print*, 'Test code: ok calling axis stuff pressure',ilon - ipres = cmor_axis( & - table='IPCC_test_table_S', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - print*, 'Test code: ok calling axis stuff time',ipres - itim = cmor_axis( & - table='IPCC_test_table_S', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='20 minutes') - - - - igrid = cmor_grid((/ist/), st_lats, st_lons) - - write(*,'(a, 12f6.1)'), 'lons: ',st_lons - write(*,'(a, 12f6.1)'), 'lats: ',st_lats - - !=============================================================== - print*, ' ' - - - ! Define variables appearing in IPCC table A1a (2-d variables) - DO m=1,4 - print*, 'Test code: var: ',entry2d(m) - var2d_ids(m) = cmor_variable( & - table='IPCC_test_table_S', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ igrid, itim /), & - missing_value=missing, & - positive=positive2d(m), & - original_name=varin2d(m)) - print*, 'Test code: result',var2d_ids(m) - ENDDO - - - PRINT*, 'Test code: ' - PRINT*, 'Test code: completed everything up to writing output fields ' - PRINT*, 'Test code: ' - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - -!!$ -!!$ ! Cycle through the 2-d fields, retrieve the requested variable and -!!$ ! append each to the appropriate netCDF file. -!!$ - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - k = 1 - DO j = 1, lat - data1dtest(k:k+lat) = data2d(:,j) - k = k+lat+1 - END DO - !write(*,'(a, 12(f8.1,1x))'), entry2d(m), data1dtest - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data1dtest, & - file_suffix ="ftn-02", & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) 'Test code: Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) 'Test code: Was processing time sample: ', time - - END IF - - END DO - - - END DO time_loop - - error_flag = cmor_close() - -end program testing diff --git a/Test/old_cmor_tables/test_lots_of_variables.f90 b/Test/old_cmor_tables/test_lots_of_variables.f90 deleted file mode 100644 index 804c757de8b7c432be21be87e5e3d5a962ff4f75..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_lots_of_variables.f90 +++ /dev/null @@ -1,343 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test1.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF//include -L/pcmdi/charles_work/NetCDF//lib -lnetcdf -module Modules -IModules -L. -lcmor Test/test1.f90 -o cmor_test - -MODULE local_subs - - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1) = (it-1)*30. - time_bnds(2) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_2d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - - - SELECT CASE (TRIM(ADJUSTL(varname))) - CASE ('LATENT') - - factor = 1.5 - offset = 20. - CASE ('TSURF') - factor = 2.2 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - END SELECT - - DO j=1,SIZE(field, 1) - DO i=1,SIZE(field, 2) - field(j,i) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM mip_contribution - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: n2d = 1 ! number of AMIP Table 2 fields to be - ! output. - - ! Tables associating the user's variables with AMIP standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for Table 1a fields - ! My variable names for Table 2 fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ' /) - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ' /) - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down' /) - ! Corresponding AMIP Table 2 entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, PARAMETER :: ntest=400 - INTEGER, DIMENSION(3) :: axis2d_ids - INTEGER, DIMENSION(n2d+ntest) :: var2d_ids - REAL, DIMENSION(lat,lon) :: data2d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(5) :: plevs - DOUBLE PRECISION :: time - DOUBLE PRECISION, DIMENSION(2):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - -!!$ REAL, DIMENSION(lat*lon*lev) :: tmp3d -!!$ REAL, DIMENSION(lat*lon) :: tmp2d - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - character (len=200) :: msg,msg2 - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - print*, 'calling read_coords ' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - print*, 'returned from read_coords' - - ! Specify path where tables can be found, indicate that existing netCDF - ! files should not be overwritten, and instruct CMOR to error exit on - ! encountering errors of any severity. - - error_flag = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) runcmor_write under IPCC 2xCO2 equilibrium experiment - ! conditions, and provide information to be included as attributes in - ! all CF-netCDF files written as part of this dataset. - - print*, 'calling cmor_dataset' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)',model_id="pcmdi-08a", & - forcing="co2") - - error_flag = cmor_set_cur_dataset_attribute("initialization_method","4") - error_flag = cmor_set_cur_dataset_attribute("physics_version","6") - - print*, 'returned from cmor_dataset' - - ! Define axes for 3-d fields - - print*, 'defining axes' - - axis2d_ids(1) = cmor_axis( & - table='IPCC_test_table_As', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis2d_ids(2) = cmor_axis( & - table='IPCC_test_table_As', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (below). -print*, 'before time ' - axis2d_ids(3) = cmor_axis( & - table='IPCC_test_table_As', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='1 month') - - print*, 'finished defining axes' - - - - ! Define variables found in AMIP table 2a (2-d variables) - - DO m=1,ntest - write(msg,*) m-1 - msg2 = trim(entry2d(1)(1:4)//adjustl(msg)) - print*,'Test Code: defining variable: :',msg2 - var2d_ids(m) = cmor_variable( & - table='IPCC_test_table_As', & - table_entry=msg2, & -!!$ file_suffix='1979-2001', & - units=units2d(1), & - axis_ids=axis2d_ids, & - missing_value=1.0e20, & - positive=positive2d(1), & - original_name=varin2d(1)) - ENDDO - - print*, 'completed everything up to writing output fields ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - DO m=1,ntest - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested AMIP table 1a and table 2 fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - ! Cycle through the 3-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(1), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - print*, RESHAPE(bnds_time, (/ 2,1 /)) - error_flag = cmor_write(var_id = var2d_ids(m), & - data = RESHAPE(data2d, (/ lat*lon /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - - print*, 'after writing variable, ', var2d_ids(m) - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 2 ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO time_loop - error_flag = cmor_close(var2d_ids(m)) - END DO - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - -print*, '******************************' -print*, ' ' -print*, 'CMOR COMPLETED SUCCESSFULLY ' -print*, ' ' -print*, '******************************' - -END PROGRAM mip_contribution - diff --git a/Test/old_cmor_tables/test_region.f90 b/Test/old_cmor_tables/test_region.f90 deleted file mode 100644 index a793dfcf27824f1684620edaee09e2737fcf985a..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_region.f90 +++ /dev/null @@ -1,335 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_1d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, bnds_lat) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - - INTEGER :: i - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_1d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('OFLUX') - factor = 1.e14 - offset = 20.e14 - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_1d_input_files - -END MODULE local_subs - - -PROGRAM test_region -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: reg = 4 ! number of regions - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: n1d = 1 ! number of IPCC Table O1 fields to be - ! output. - ! - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table O1a fields - CHARACTER (LEN=5), DIMENSION(n1d) :: & - varin1d=(/ 'OFLUX' /) - - ! Units appropriate to my data - CHARACTER (LEN=1), DIMENSION(n1d) :: & - units1d=(/ 'W' /) - - ! Corresponding IPCC Table O1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n1d) :: entry1d = (/ 'hfogo' /) - - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, DIMENSION(n1d) :: var1d_ids - REAL, DIMENSION(lat,reg) :: data1d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - INTEGER :: ilat, ireg, itim - - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, bnds_lat) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace') - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)' , model_id="pcmdi-08a", & - forcing="CO2") - - ! Define all axes that will be needed - - ilat = cmor_axis( & - table='IPCC_test_table_O', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ireg = cmor_axis( & - table='IPCC_test_table_O', & - table_entry='region', & - length=reg, & - units='none', & - coord_vals= (/ "atlantic_ocean", "indian_ocean ", "pacific_ocean ", & - "global_ocean " /) ) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='IPCC_test_table_O', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - - ! Define variables appearing in IPCC table O1a (functions of lat and reg) - - DO m=1,n1d - var1d_ids(m) = cmor_variable( & - table='IPCC_test_table_O', & - table_entry=entry1d(m), & - units=units1d(m), & - axis_ids=(/ ilat, ireg, itim /), & - missing_value=1.0e28, & - original_name=varin1d(m)) - ENDDO - - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - ! Cycle through the 1-d fields (functions of lat and region), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=1,n1d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_1d_input_files(it, varin1d(m), data1d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var1d_ids(m), & - data = data1d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table O ' & - // 'field ', entry1d(m), ', which I call ', varin1d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - - END DO time_loop - - ! Close all files opened by CMOR. - - print*, 'Ok wrote everythin' - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM test_region - diff --git a/Test/old_cmor_tables/test_shrt_exp_nm_set_att_initi.f90 b/Test/old_cmor_tables/test_shrt_exp_nm_set_att_initi.f90 deleted file mode 100644 index 909150ec90e01df4d42cfb1ade492a8fd802ae3c..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_shrt_exp_nm_set_att_initi.f90 +++ /dev/null @@ -1,343 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test1.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF//include -L/pcmdi/charles_work/NetCDF//lib -lnetcdf -module Modules -IModules -L. -lcmor Test/test1.f90 -o cmor_test - -MODULE local_subs - - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1) = (it-1)*30. - time_bnds(2) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_2d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - - - SELECT CASE (TRIM(ADJUSTL(varname))) - CASE ('LATENT') - - factor = 1.5 - offset = 20. - CASE ('TSURF') - factor = 2.2 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - END SELECT - - DO j=1,SIZE(field, 1) - DO i=1,SIZE(field, 2) - field(j,i) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM mip_contribution - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: n2d = 1 ! number of AMIP Table 2 fields to be - ! output. - - ! Tables associating the user's variables with AMIP standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for Table 1a fields - ! My variable names for Table 2 fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ' /) - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ' /) - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down' /) - ! Corresponding AMIP Table 2 entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, PARAMETER :: ntest=1 - INTEGER, DIMENSION(3) :: axis2d_ids - INTEGER, DIMENSION(n2d+ntest) :: var2d_ids - REAL, DIMENSION(lat,lon) :: data2d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(5) :: plevs - DOUBLE PRECISION :: time - DOUBLE PRECISION, DIMENSION(2):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - -!!$ REAL, DIMENSION(lat*lon*lev) :: tmp3d -!!$ REAL, DIMENSION(lat*lon) :: tmp2d - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - character (len=200) :: msg,msg2 - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - print*, 'calling read_coords ' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - print*, 'returned from read_coords' - - ! Specify path where tables can be found, indicate that existing netCDF - ! files should not be overwritten, and instruct CMOR to error exit on - ! encountering errors of any severity. - - error_flag = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) runcmor_write under IPCC 2xCO2 equilibrium experiment - ! conditions, and provide information to be included as attributes in - ! all CF-netCDF files written as part of this dataset. - - print*, 'calling cmor_dataset' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xco2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)',model_id="pcmdi-08a", & - forcing="co2") - - print*, 'returned from cmor_dataset' - - error_flag = cmor_set_cur_dataset_attribute("initialization_method","1") - print*, 'returned from cmor_dataset' - - ! Define axes for 3-d fields - - print*, 'defining axes' - - axis2d_ids(1) = cmor_axis( & - table='IPCC_test_table_As', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis2d_ids(2) = cmor_axis( & - table='IPCC_test_table_As', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (below). -print*, 'before time ' - axis2d_ids(3) = cmor_axis( & - table='IPCC_test_table_As', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='1 month') - - print*, 'finished defining axes' - - - - ! Define variables found in AMIP table 2a (2-d variables) - - DO m=1,ntest - write(msg,*) m-1 - msg2 = trim(entry2d(1)(1:4)//adjustl(msg)) - print*,'Test Code: defining variable: :',msg2 - var2d_ids(m) = cmor_variable( & - table='IPCC_test_table_As', & - table_entry=msg2, & -!!$ file_suffix='1979-2001', & - units=units2d(1), & - axis_ids=axis2d_ids, & - missing_value=1.0e20, & - positive=positive2d(1), & - original_name=varin2d(1)) - ENDDO - - print*, 'completed everything up to writing output fields ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - DO m=1,ntest - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested AMIP table 1a and table 2 fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - ! Cycle through the 3-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(1), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - print*, RESHAPE(bnds_time, (/ 2,1 /)) - error_flag = cmor_write(var_id = var2d_ids(m), & - data = RESHAPE(data2d, (/ lat*lon /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - - print*, 'after writing variable, ', var2d_ids(m) - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 2 ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO time_loop - error_flag = cmor_close(var2d_ids(m)) - END DO - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - -print*, '******************************' -print*, ' ' -print*, 'CMOR COMPLETED SUCCESSFULLY ' -print*, ' ' -print*, '******************************' - -END PROGRAM mip_contribution - diff --git a/Test/old_cmor_tables/test_sigma.f90 b/Test/old_cmor_tables/test_sigma.f90 deleted file mode 100644 index c41dc161ac6af7087657dcca36784133eaa3ec50..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_sigma.f90 +++ /dev/null @@ -1,551 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('CLOUD') - factor = 0.1 - offset = -50. - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - CASE ('tro3') - factor = 1. - offset = 0. - END SELECT - - DO k=1,SIZE(field, 1) - DO j=1,SIZE(field, 3) - DO i=1,SIZE(field, 2) - field(k,i,j) = ((SIZE(field, 1) - k)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('LATENT') - - factor = 2.8 - offset = 10. - CASE ('TSURF') - factor = 2.2 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - CASE ('PSURF') - factor = 100. - offset = -9.7e4 - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM ipcc_test_code -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 4 ! number of IPCC Table A1c fields to - ! be output. - - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'tro3 ', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ '% ', '1e-9 ', 'm s-1', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=4), DIMENSION(n3d) :: entry3d = (/ 'cl ', 'tro3', 'ua ', 'ta ' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - REAL, DIMENSION(lev,lon,lat) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - REAL, DIMENSION(lev) :: a_coeff - REAL, DIMENSION(lev) :: b_coeff - REAL :: p0 - REAL, DIMENSION(lev+1) :: a_coeff_bnds - REAL, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim - - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace') - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archivcl_A1.nce/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)',model_id="pcmdi-08a", & - forcing="co2") - - ! Define all axes that will be needed - - ilat = cmor_axis( & - table='IPCC_table_A1', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table='IPCC_table_A1', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - ipres = cmor_axis( & - table='IPCC_table_A1', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='IPCC_table_A1', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - ! define model eta levels - zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) - zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) - - ilev = cmor_axis( & - table='IPCC_table_A1', & - table_entry='standard_sigma', & -!!$ table_entry='standard_hybrid_sigma', & - units='1',& - length=lev, & - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - ! define z-factors needed to transform from model level to pressure - p0 = 0.5e4 -!!$ p0 = 1.e5 -!!$ a_coeff = (/ 0.1, 0.2, 0.3, 0.2, 0.1 /) - a_coeff = (/ 0.2, 0.4, 0.6, 0.8, 0.95 /) - b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) - -!!$ a_coeff_bnds=(/0.,.15, .25, .25, .15, 0./) - a_coeff_bnds=(/0.,.3, .5, .7, .9, 1./) - b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ptop', & - units='Pa', & - zfactor_values = p0) - -!!$ error_flag = cmor_zfactor( & -!!$ zaxis_id=ilev, & -!!$ zfactor_name='b', & -!!$ axis_ids= (/ ilev /), & -!!$ zfactor_values = b_coeff, & -!!$ zfactor_bounds = b_coeff_bnds ) -!!$ - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='sigma', & - axis_ids= (/ ilev /), & - zfactor_values = a_coeff, & - zfactor_bounds = a_coeff_bnds ) - - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - ! Define the only field to be written that is a function of model level - ! (appearing in IPCC table A1c) - - var3d_ids(1) = cmor_variable( & - table='IPCC_table_A1', & - table_entry=entry3d(1), & - units=units3d(1), & - axis_ids=(/ ilev, ilon, ilat, itim /), & - missing_value=1.0e28, & - original_name=varin3d(1)) - - ! Define variables appearing in IPCC table A1c that are a function of pressure - ! (3-d variables) - - DO m=2,n3d - var3d_ids(m) = cmor_variable( & - table='IPCC_table_A1', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=(/ ipres, ilon, ilat, itim /), & - missing_value=1.0e28, & - original_name=varin3d(m)) - ENDDO - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - var2d_ids(m) = cmor_variable( & - table='IPCC_table_A1', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - ENDDO - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - call read_3d_input_files(it, varin3d(1), data3d) - - error_flag = cmor_write( & - var_id = var3d_ids(1), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - call read_2d_input_files(it, varin2d(4), data2d) - - error_flag = cmor_write( & - var_id = zfactor_id, & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids(1) ) - - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=2,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var3d_ids(m), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1c ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM ipcc_test_code - diff --git a/Test/old_cmor_tables/test_singleton.f90 b/Test/old_cmor_tables/test_singleton.f90 deleted file mode 100755 index 8055f620d70c3fda2cc17f8c5003bda73503ac68..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_singleton.f90 +++ /dev/null @@ -1,594 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - REAL, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - REAL, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('CLOUD') - factor = 0.1 - offset = -50. - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j,k) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('LATENT') - - factor = 1.2 - offset = 10. - CASE ('TSURF') - factor = 2.2 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - CASE ('PSURF') - factor = 100. - offset = -9.7e4 - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,size(field,2)+1-j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -PROGRAM ipcc_test_code -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - REAL, DIMENSION(lon,lat,lev) :: data3d - DOUBLE PRECISION, DIMENSION(lat,1,lon) :: scramble - DOUBLE PRECISION, DIMENSION(lat) :: alats - REAL, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - REAL, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - REAL, DIMENSION(lev) :: a_coeff - REAL, DIMENSION(lev) :: b_coeff - REAL :: p0 - REAL, DIMENSION(lev+1) :: a_coeff_bnds - REAL, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim - INTEGER :: iht - - ! Other variables: - ! --------------------- - - INTEGER :: it, m, i, j - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace') - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', model_id="pcmdi-08a", & - forcing="atm") - - ! Define all axes that will be needed - - ilat = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - ipres = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - - iht = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='height1', & - units='m', & - length=1, & - coord_vals=(/3.0/)) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - ! define model eta levels (although these must be provided, they will - ! actually be replaced by a+b before writing the netCDF file) - zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) - zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) - - ilev = cmor_axis( & - table='IPCC_test_table_A', & - table_entry='standard_hybrid_sigma', & - length=lev, & - units='1',& - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - ! define z-factors needed to transform from model level to pressure - p0 = 1.e5 - a_coeff = (/ 0.1, 0.2, 0.3, 0.22, 0.1 /) - b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) - - a_coeff_bnds=(/0.,.15, .25, .25, .16, 0./) - b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='p0', & - units='Pa', & - zfactor_values = p0) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='b', & - axis_ids= (/ ilev /), & - zfactor_values = b_coeff, & - zfactor_bounds = b_coeff_bnds ) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='a', & - axis_ids= (/ ilev /), & - zfactor_values = a_coeff, & - zfactor_bounds = a_coeff_bnds ) - - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - ! Define the only field to be written that is a function of model level - ! (appearing in IPCC table A1c) - - var3d_ids(1) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry3d(1), & - units=units3d(1), & - axis_ids=(/ ilon, ilat, ilev, itim /), & - missing_value=1.0e28, & - original_name=varin3d(1)) - - ! Define variables appearing in IPCC table A1c that are a function of pressure - ! (3-d variables) - - DO m=2,n3d - var3d_ids(m) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=(/ ilon, ilat, ipres, itim /), & - missing_value=1.0e28, & - original_name=varin3d(m)) - ENDDO - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - IF (m==2) THEN - - var2d_ids(m) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilat, iht, ilon, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - - ELSE - - var2d_ids(m) = cmor_variable( & - table='IPCC_test_table_A', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - - ENDIF - ENDDO - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - call read_3d_input_files(it, varin3d(1), data3d) - print*, 'shape(data3d)',shape(data3d),varin3d(1) - error_flag = cmor_write( & - var_id = var3d_ids(1), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - call read_2d_input_files(it, varin2d(4), data2d) - - print*, 'shape(data2d)',shape(data2d),varin2d(4) - error_flag = cmor_write( & - var_id = zfactor_id, & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids(1) ) - - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=2,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - print*, 'shape(data3d)',shape(data3d),varin3d(m) - error_flag = cmor_write( & - var_id = var3d_ids(m), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1c ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - IF (m == 2) THEN - - DO j=1,lat - DO i=1,lon - scramble(j,1,i) = data2d(i,j) - END DO - END DO - - error_flag = cmor_write( & - var_id = var2d_ids(2), & - data = scramble(:,1,:), & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - ELSE - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM ipcc_test_code - diff --git a/Test/old_cmor_tables/test_sophie.f90 b/Test/old_cmor_tables/test_sophie.f90 deleted file mode 100644 index 867a9b11917545d995b7561ef6f606d52cfc6773..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_sophie.f90 +++ /dev/null @@ -1,483 +0,0 @@ -MODULE local_subs - - USE cmor_users_functions -!!$ PRIVATE -!!$ PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('CLOUD') - factor = 0.1 - offset = -50. - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - DO k=1,SIZE(field, 3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j,k) = ((k-1)*64. + (j-1)*16. + (i-1)*4. + it)*factor - offset - END DO - END DO - END DO - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('LATENT') - - factor = 1. - offset = 20. - CASE ('TSURF') - factor = 2.0 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - CASE ('PSURF') - factor = 100. - offset = -9.7e4 - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,size(field,2)+1-j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - -program testing - use cmor_users_functions - use local_subs - implicit none - integer error_flag - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels -! INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - INTEGER, PARAMETER :: n2d = 1 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1 ', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & -! varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - varin2d=(/ 'LATENT ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & -! units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - units2d=(/ 'W m-2 ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & -! positive2d= (/ 'down', ' ', ' ', ' ' /) - positive2d= (/ 'down' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & -! entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - entry2d = (/ 'hfls ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - real, DIMENSION(lon*lat) :: data1dtest - REAL, DIMENSION(lon,lat,lev) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - real, DIMENSION(lev) :: a_coeff - DOUBLE PRECISION, DIMENSION(lev) :: b_coeff - DOUBLE PRECISION :: p0 - DOUBLE PRECISION :: p0array(1) - real, DIMENSION(lev+1) :: a_coeff_bnds - DOUBLE PRECISION, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim,i - real :: missing - - ! Other variables: - ! --------------------- - - INTEGER :: it, m, j,k - -! format classic(NETCDF-3) -! j = CMOR_REPLACE_3 -! format NETCDF-4 - j = CMOR_REPLACE - k = CMOR_EXIT_ON_MAJOR - error_flag = cmor_setup(inpath='Test', netcdf_file_action=j,& - exit_control=k) - print*,'Test code: done' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', model_id="pcmdi-08a", & - forcing="CO2") - print*, 'Test code: done 2 lalala' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - - print*, 'Test code: ok calling axis stuff lat',alats - ilat = cmor_axis( & - table='Sophie_Table', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - print*, 'Test code: ok calling axis stuff lon',ilat - ilon = cmor_axis( & - table='Sophie_Table', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - print*, 'Test code: ok calling axis stuff pressure',ilon - ipres = cmor_axis( & - table='Sophie_Table', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - print*, 'Test code: ok calling axis stuff time',ipres,ntimes - itim = cmor_axis( & - table='Sophie_Table', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='30 days') - - ! define model eta levels (although these must be provided, they will - ! actually be replaced by a+b before writing the netCDF file) - zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) - zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) - - print*, 'Test code: ok calling axis stuff lev2',itim - ilev = cmor_axis( & - table='Sophie_Table', & - table_entry='standard_hybrid_sigma', & - units="1", & - length=lev, & - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - print*, 'Test code: ok called stuff lev2',ilev - ! define z-factors needed to transform from model level to pressure - p0 = 1.e5 - p0array(1)=p0 - a_coeff = (/ 0.1, 0.2, 0.3, 0.22, 0.1 /) - b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) - - a_coeff_bnds=(/0.,.15, .25, .25, .16, 0./) - b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) - - print*, 'Test code: zfactor p0' - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='p0', & - units='Pa', & - zfactor_values = p0) - - print*, 'Test code: result',error_flag - print*, 'Test code: zfactor b' - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='b', & - axis_ids= (/ ilev /), & - zfactor_values = b_coeff, & - zfactor_bounds = b_coeff_bnds ) - - print*, 'Test code: result',error_flag - print*, 'Test code: zfactor a' - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='a', & - axis_ids= (/ ilev /), & - zfactor_values = a_coeff, & - zfactor_bounds = a_coeff_bnds ) - - print*, 'Test code: result',error_flag - print*, 'Test code: zfactor ps' - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - print*, 'Test code: result',zfactor_id - print*, 'Test code: var3d' - missing = 1.e28 - var3d_ids(1) = cmor_variable( & - table='Sophie_Table', & - table_entry=entry3d(1), & - units=units3d(1), & - axis_ids=(/ ilon, ilat, ilev, itim /), & - missing_value=missing, & - original_name=varin3d(1)) - - ! Define variables appearing in IPCC table A1c that are a function of pressure - ! (3-d variables) - - print*, 'Test code: result',var3d_ids(1) - DO m=2,n3d - print*, 'Test code: var: ',entry3d(m) - var3d_ids(m) = cmor_variable( & - table='Sophie_Table', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=(/ ilon, ilat, ipres, itim /), & - missing_value=missing, & - original_name=varin3d(m)) - print*, 'Test code: result',var3d_ids(m) - ENDDO - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - print*, 'Test code: var: ',entry2d(m) - var2d_ids(m) = cmor_variable( & - table='Sophie_Table', & - table_entry=entry2d(m), & - units=units2d(m), & - ! axis_ids=(/ ilon, ilat, itim /), & - axis_ids=(/ ilon, ilat /), & - missing_value=missing, & - positive=positive2d(m), & - original_name=varin2d(m)) - print*, 'Test code: result',var2d_ids(m) - ENDDO - - PRINT*, 'Test code: ' - PRINT*, 'Test code: completed everything up to writing output fields ' - PRINT*, 'Test code: ' - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - call read_time(it, time(1), bnds_time) - call read_3d_input_files(it, varin3d(1), data3d) - - error_flag = cmor_write( & - var_id = var3d_ids(1), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - call read_2d_input_files(it, 'PSURF', data2d) - - error_flag = cmor_write( & - var_id = zfactor_id, & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids(1) ) - - print*, 'Test code: result',error_flag - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=2,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - print*, ' Writing 3D variable:',var3d_ids(m) - error_flag = cmor_write( & - var_id = var3d_ids(m), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) 'Test code: Error encountered writing IPCC Table A1c ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) 'Test code: Was processing time sample: ', time - - END IF - - END DO -!!$ -!!$ ! Cycle through the 2-d fields, retrieve the requested variable and -!!$ ! append each to the appropriate netCDF file. -!!$ - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - print*, 'Writing var 2d:',var2d_ids(m) - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 0 ) - !ntimes_passed = 1, & - !time_vals = time, & - !time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) 'Test code: Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) 'Test code: Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - error_flag = cmor_close() - -end program testing diff --git a/Test/old_cmor_tables/test_station_data.f90 b/Test/old_cmor_tables/test_station_data.f90 deleted file mode 100644 index 47b1c7aa344510dffae086c00c8db99aae7aaaf9..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/test_station_data.f90 +++ /dev/null @@ -1,380 +0,0 @@ -MODULE local_subs - - USE cmor_users_functions -!!$ PRIVATE -!!$ PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon, station, st_lons, st_lats) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - INTEGER, INTENT(OUT), DIMENSION(:) :: station - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: st_lats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: st_lons - - INTEGER :: i, j, k - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - k = 1 - DO i = 1, SIZE(alons) - DO j = 1, SIZE(alats) - station(k) = k - st_lons(k) = alons(i) - st_lats(k) = alats(j) - k = k+1 - END DO - END DO - - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - - !------------------------------------------------ - SUBROUTINE read_3d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('CLOUD') - factor = 0.1 - offset = -50. - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j,k) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - !------------------------------------------------ - SUBROUTINE read_2d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('LATENT') - - factor = 1. - offset = 20. - CASE ('TSURF') - factor = 2.0 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - CASE ('PSURF') - factor = 100. - offset = -9.7e4 - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,size(field,2)+1-j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -!======================================================= -program testing - use cmor_users_functions - use local_subs - implicit none - integer error_flag - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: nst = 12 ! number of stations - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1 ', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - - INTEGER igrid; - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - real, DIMENSION(lon*lat) :: data1dtest - REAL, DIMENSION(lon,lat,lev) :: data3d - REAL, DIMENSION(lon*lat,lev) :: data2d_st - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - INTEGER, DIMENSION(lon*lat) :: station - DOUBLE PRECISION, DIMENSION(lon*lat) :: st_lons - DOUBLE PRECISION, DIMENSION(lon*lat) :: st_lats - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - real, DIMENSION(lev) :: a_coeff - DOUBLE PRECISION, DIMENSION(lev) :: b_coeff - DOUBLE PRECISION :: p0 - DOUBLE PRECISION :: p0array(1) - real, DIMENSION(lev+1) :: a_coeff_bnds - DOUBLE PRECISION, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim, i, ist - real :: missing - - ! Other variables: - ! --------------------- - - INTEGER :: it, m, j,k - - j = CMOR_REPLACE - k = CMOR_EXIT_ON_MAJOR - error_flag = cmor_setup(inpath='Test', netcdf_file_action=j,& - exit_control=k) - print*,'Test code: done' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', model_id="pcmdi-08a", & - forcing="CO2") - print*, 'Test code: done 2 lalala' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon, station, st_lons, st_lats) - - - print*, 'Test code: ok calling axis stuff station' - ist = cmor_axis( & - table='IPCC_test_table_S', & - table_entry='station', & - units=' ', & - length=nst, & - coord_vals=station ) - - - print*, 'Test code: ok calling axis stuff pressure',ist - ipres = cmor_axis( & - table='IPCC_test_table_S', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - print*, 'Test code: ok calling axis stuff time',ipres - itim = cmor_axis( & - table='IPCC_test_table_S', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - - ! to make it a station data, we need to define the grid with lon/lat - ! information. CMOR will then add the 'longitude' and 'latitude' - ! variables as assosiated to the station data. - ! You do not set up lon/lat as axis variables for the station data - ! note - the first parameter has ot be an array (of dim=1 in this example) - igrid = cmor_grid((/ist/), st_lats, st_lons) - - write(*,'(a, 12f6.1)') 'lons: ',st_lons - write(*,'(a, 12f6.1)') 'lats: ',st_lats - - !=============================================================== - print*, ' ' - - - ! Define variables appearing in IPCC table A1a (2-d variables) - DO m=1,4 - print*, 'Test code: var: ',entry2d(m) - var2d_ids(m) = cmor_variable( & - table='IPCC_test_table_S', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ igrid, itim /), & - missing_value=missing, & - positive=positive2d(m), & - original_name=varin2d(m)) - print*, 'Test code: result',var2d_ids(m) - ENDDO - - - PRINT*, 'Test code: ' - PRINT*, 'Test code: completed everything up to writing output fields ' - PRINT*, 'Test code: ' - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - -!!$ -!!$ ! Cycle through the 2-d fields, retrieve the requested variable and -!!$ ! append each to the appropriate netCDF file. -!!$ - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - k = 1 - DO j = 1, lat - data1dtest(k:k+lat) = data2d(:,j) - k = k+lat+1 - END DO - !write(*,'(a, 12(f8.1,1x))'), entry2d(m), data1dtest - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data1dtest, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) 'Test code: Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) 'Test code: Was processing time sample: ', time - - END IF - - END DO - - - END DO time_loop - - error_flag = cmor_close() - -end program testing diff --git a/Test/old_cmor_tables/wegner_test.f90 b/Test/old_cmor_tables/wegner_test.f90 deleted file mode 100644 index 70cfd83a561816dfe1ce5c489103e146125cdf91..0000000000000000000000000000000000000000 --- a/Test/old_cmor_tables/wegner_test.f90 +++ /dev/null @@ -1,447 +0,0 @@ -module my_subs - -contains - -subroutine levrein(mlev, alev, blev, zlev, alevb, blevb, zlevb, p0) - -integer :: mlev -double precision, intent(INOUT),dimension(mlev) :: zlev -double precision, intent(INOUT),dimension(mlev+1) :: zlevb -real, dimension(mlev) :: slev -real, intent(INOUT),dimension(mlev) :: alev, blev -real, intent(INOUT),dimension(mlev+1) :: alevb, blevb -real , intent(inout) :: p0 -p0=101325.0 - -slev=(/ & - 0.00000000000000000,& - 2000.00000000000000000,& - 4000.00000000000000000,& - 6000.00000000000000000,& - 8000.00000000000000000,& - 9976.13671875000000000,& -11820.53906250000000000,& -13431.39453125000000000,& -14736.35546875000000000,& -15689.20703125000000000,& -16266.60937500000000000,& -16465.00390625000000000,& -16297.62109375000000000,& -15791.59765625000000000,& -14985.26953125000000000,& -13925.51953125000000000,& -12665.29296875000000000,& -11261.23046875000000000,& - 9771.40625000000000000,& - 8253.21093750000000000,& - 6761.33984375000000000,& - 5345.91406250000000000,& - 4050.71777343750000000,& - 2911.56933593750000000,& - 1954.80517578125000000,& - 1195.88989257812500000,& - 638.14892578125000000,& - 271.62646484375000000,& - 72.06358337402343750,& - 0.00000000000000000,& - 0.00000000000000000,& - 0.00000000000000000 /) - -do i=1,mlev - alev(i)=slev(i)/p0 -end do -blev=(/ & -0.00000000000000000,& -0.00000000000000000,& -0.00000000000000000,& -0.00000000000000000,& -0.00000000000000000,& -0.00039085815660655,& -0.00291970069520175,& -0.00919413194060326,& -0.02031915634870529,& -0.03697485849261284,& -0.05948764085769653,& -0.08789497613906860,& -0.12200361490249634,& -0.16144150495529175,& -0.20570325851440430,& -0.25418859720230103,& -0.30623537302017212,& -0.36114501953125000,& -0.41820228099822998,& -0.47668814659118652,& -0.53588658571243286,& -0.59508424997329712,& -0.65356457233428955,& -0.71059441566467285,& -0.76540523767471313,& -0.81716698408126831,& -0.86495584249496460,& -0.90771585702896118,& -0.94421321153640747,& -0.97298520803451538,& -0.99228149652481079,& -1.00000000000000000 /) - -do i=1,mlev - zlev(i)=alev(i)+blev(i) -end do -do i=2,mlev - alevb(i)=abs((alev(i)+alev(i-1))/2) -end do -alevb(1)=0. -alevb(mlev+1)=0. - -do i=2,mlev - blevb(i)=abs((blev(i)+blev(i-1))/2) -end do -blevb(1)=0. -blevb(mlev+1)=1.0 - -do i=2,mlev - zlevb(i)=abs((zlev(i)+zlev(i-1))/2) -end do -zlevb(1)=0. -zlevb(mlev+1)=1.0 -print*, 'done levrein going out' -end subroutine levrein - -subroutine latrein(lat, lon, latd, lond, bndslat, bndslon) - -double precision, dimension(lon) :: lond -double precision, dimension(lat) :: latd -double precision, dimension(2,lon) :: bndslon -double precision, dimension(2,lat) :: bndslat -double precision, dimension(17) :: plevs - -integer :: i - -lond(1)=0.0 -bndslon(1,1)=-0.9375 -bndslon(2,1)=0.9375 -do i=1,191 - lond(i+1) =lond(i)+1.875000 - bndslon(1,i+1)=lond(i+1)-0.9375 - bndslon(2,i+1)=lond(i+1)+0.9375 -end do - -latd=(/ & - -88.572,-86.723,-84.862,-82.999,-81.135,-79.271,-77.406,-75.541,-73.676,-71.811, & - -69.946,-68.081,-66.216,-64.351,-62.486,-60.620,-58.755,-56.890,-55.025,-53.160, & - -51.294,-49.429,-47.564,-45.699,-43.833,-41.968,-40.103,-38.238,-36.372,-34.507, & - -32.642,-30.777,-28.911,-27.046,-25.181,-23.316,-21.450,-19.585,-17.720,-15.855, & - -13.989,-12.124,-10.259,-8.394,-6.528,-4.663,-2.798,-0.933, 0.933, 2.798, & - 4.663, 6.528, 8.394, 10.259, 12.124, 13.989, 15.855, 17.720, 19.585, 21.450, & - 23.316,25.181,27.046,28.911,30.777,32.642,34.507,36.372,38.238,40.103, & - 41.968,43.833,45.699,47.564,49.429,51.294,53.160,55.025,56.890,58.755, & - 60.620,62.486,64.351,66.216,68.081,69.946,71.811,73.676,75.541,77.406, & - 79.271,81.135,82.999,84.862,86.723,88.572 /) - -do i=1,95 - bndslat(2,i)=latd(i)-((latd(i)-(latd(i+1)))/2.) - bndslat(1,i+1)=bndslat(2,i) -end do -bndslat(1,1)=-90.0 -bndslat(2,96)=90.0 - -end subroutine latrein - - -subroutine timdatrein(nrec, lev, lat, lon, time, bndstime, data2, data3) - -double precision, dimension(nrec) :: time -double precision, dimension(2,nrec) :: bndstime - -real, dimension(lon*lat) :: dummy2, dummy3 -real, dimension(lon,lat,nrec) :: data2 -real, dimension(lon,lat,lev,nrec):: data3 -integer :: jtime, icode, ilevel, nsize -integer :: i, nyear, ihalf, nrec -integer :: iyear, imon, iday, im, id, itime -integer :: jd1860, jdactu -character (len=50) :: filearg - -! filenamen als argument fuer program einlesen: -! filearg 1 ist 2d feld -! filearg 2 ist 3d feld -! -call getarg(1, filearg) -open(1,file=filearg, form='unformatted') -call getarg(2, filearg) -open(2,file=filearg, form='unformatted') - -! Zeit seit 1860 01 01 12 -! Julian date 1859 12 31 12 -! -jd1860 = 31-32075+1461*(1859+4800+(12-14)/12)/4+367*(12-2-(12-14)/12*12) & - /12-3*((1859+4900+(12-14)/12)/100)/4 - -do i=1,nrec - read(1) jtime, icode, ilevel,nsize - read(1) dummy2 - - iyear = int(jtime/10000) - im = iyear*100 - imon = int(jtime/100)-im - id = imon*100 - - monlen: select case (imon) - case(4,6,9,11) - iday = 30 - case(2) - if(mod(iyear,4).eq.0) then - if (mod(iyear,100).eq.0) then - iday = 28 - else - iday = 29 - endif - if(mod(iyear,400).eq.0) iday=29 - else - iday = 28 - endif - case default - iday = 31 - end select monlen - ihalf=15 - print*, itime, iyear, imon, iday - jdactu = ihalf-32075+1461*(iyear+4800+(imon-14)/12)/4+367*(imon-2-(imon-14)/12*12) & - /12-3*((iyear+4900+(imon-14)/12)/100)/4 - time(i) = jdactu - jd1860 - bndstime(1,i) = time(i) - ihalf - bndstime(2,i) = time(i) + (iday-ihalf) - print*, bndstime(1,i), time(i), bndstime(2,i) - - do j=1,lat - do k=1,lon - data2(k,j,i)= dummy2(lon*(j-1) + k) - end do - end do - - do l=1,lev - read(2) jtime, icode, ilevel, nsize - read(2) dummy3 - do j=1,lat - do k=1,lon - data3(k,j,l,i)= dummy3(lon*(j-1) + k) - end do - end do - end do - -end do - print*, time - -end subroutine timdatrein - -end module my_subs - -program wegner - ! - use cmor_users_functions - - use my_subs - - implicit none - - ! dimension parameters: - ! --------------------------------- - - INTEGER, PARAMETER :: nti = 24 - INTEGER, PARAMETER :: lon = 192 - INTEGER, PARAMETER :: lat = 96 - INTEGER, PARAMETER :: lev = 32 - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=50) :: TABLE = 'Test/IPCC_table_A1' - CHARACTER (LEN=50) :: OUTDIR = 'Test' - CHARACTER (LEN=50) :: TABELLE = 'Test/IPCC_table_A1' - CHARACTER (LEN=5) :: varin2d = 'MSLP ' - CHARACTER (LEN=5) :: units2d = 'Pa ' - CHARACTER (LEN=5) :: posit2d = ' ' - CHARACTER (LEN=5) :: entry2d = 'ps ' - CHARACTER (LEN=5) :: varin3d = 'CLOUD' - CHARACTER (LEN=5) :: units3d = '% ' - CHARACTER (LEN=5) :: entry3d = 'cl ' - - - ! uninitialized variables used in communicating with CMOR: - ! --------------------------------------------------------- - - INTEGER :: error_flag, j,k - INTEGER :: znondim_id, zfactor_id=1 - INTEGER :: var2d_ids - INTEGER :: var3d_ids - REAL, DIMENSION(lon,lat,nti) :: data2d - REAL, DIMENSION(lon,lat,lev,nti) :: data3d - REAL, DIMENSION(lon,lat) :: data2d2 - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(nti) :: time - DOUBLE PRECISION, DIMENSION(2,nti) :: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - REAL, DIMENSION(lev) :: a_coeff, b_coeff - REAL, DIMENSION(lev+1) :: a_coeff_bnds, b_coeff_bnds - REAL :: p0 - INTEGER :: ilon, ilat, ipres, ilev, itim - - ! Other variables: - ! --------------------- - - INTEGER :: it - - ! read the grid - ! -------------------- - - call latrein(lat, lon, alats, alons, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='TABLE', & - netcdf_file_action='replace', & - exit_control=1) - - ! Define dataset as output from ECHAM5-OM1 - ! ----------------------------------------- - error_flag = cmor_dataset( & - outpath = OUTDIR, & - experiment_id ='pre-industrial control experiment', & - institution ='MPI (Max Planck Institute for Meteorology,' // & - 'Hamburg, Germany)', & - source ='ECHAM5/MPI-OM(2004):'// & - 'atmosphere: ECHAM5 (T63L32);'// & - 'ocean: OM (1x1L41); '// & - 'sea ice: ECHAM5', & - calendar ='gregorian', & - realization =1, & - contact = 'Joerg Wegner (wegner@dkrz.de) ', & - history='Output from CERA Database/EH5_OM_20C_1_TEMP2', & - comment='anthropogenic forcing only', & - references='ECHAM5: E. Roeckner et. all, 2003,' // & - 'The atmospheric general circulation model ECHAM5' // & - 'Report No. 349' // & - 'OM: Marsland et. all, 2003,' // & - 'The Max-Planck-Institute global ocean/sea ice model'// & - 'with orthogonal curvelinear coordinates' // & - 'Ocean Modell., 5, 91-127.' ) - - ! Define all axes that will be needed - - ilat = cmor_axis( & - table=TABELLE, & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table=TABELLE, & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table=TABELLE, & - table_entry='time', & - units='days since 1860-1-1', & - length=nti, & - interval='12 minutes') - - call levrein(lev, a_coeff, b_coeff, zlevs, a_coeff_bnds, b_coeff_bnds, zlev_bnds, p0) - print*, 'done levrein' - print*, 'sure ?' - ilev = cmor_axis( & - table=TABELLE, & - table_entry='standard_hybrid_sigma',& - length=lev, & - units = '1',& - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='p0', & - units='Pa', & - zfactor_values = p0) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='b', & - axis_ids= (/ ilev /), & - zfactor_values = b_coeff, & - zfactor_bounds = b_coeff_bnds ) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='a', & - axis_ids= (/ ilev /), & - zfactor_values = a_coeff, & - zfactor_bounds = a_coeff_bnds ) - - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - - var2d_ids = cmor_variable( & - table=TABELLE, & - table_entry=entry2d, & - units=units2d, & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e20, & - positive=posit2d, & - original_name=varin2d) - - var3d_ids = cmor_variable( & - table=TABELLE, & - table_entry=entry3d, & - units=units3d, & - axis_ids=(/ ilon, ilat, ilev, itim /), & - missing_value=1.0e20, & - original_name=varin3d) - - print*, ' ' - print*, 'completed everything up to writing output fields ' - print*, ' ' - - call timdatrein(nti, lev, lat, lon, time, bnds_time, data2d, data3d) - - - error_flag = cmor_write( & - var_id = var3d_ids, & - data = data3d, & - ntimes_passed = nti, & - time_vals = time, & - time_bnds = bnds_time ) - - error_flag = cmor_write( & - var_id = var2d_ids, & - data = data2d, & - ntimes_passed = nti, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids ) - - if (error_flag < 0) then - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d, ', which I call ', varin2d - write(*,*) ' Was processing time sample: ', time - end if - ! Close all files opened by CMOR. - ! ------------------------------- - error_flag = cmor_close() - -end program wegner diff --git a/Test/omonxyztst.f90 b/Test/omonxyztst.f90 deleted file mode 100644 index 64fa3f560c6c1d9a35c61884deef8438b64e3234..0000000000000000000000000000000000000000 --- a/Test/omonxyztst.f90 +++ /dev/null @@ -1,473 +0,0 @@ - -MODULE local_subs - - PRIVATE - PUBLIC read_time, read_2d_input_files, read_3d_input_files, read_eta_input_files -CONTAINS - - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2) :: time_bnds - INTEGER :: nm, nyr - INTEGER, DIMENSION(0:12) :: & - mon=(/0,31,59,90,120,151,181,212,243,273,304,334,365/) - nm = mod(it,12) - if(nm.eq.0) then - nm=12 - end if - nyr=(it-nm)/12 - time_bnds(1) = mon(nm-1)+nyr*365. - time_bnds(2) = mon(nm)+nyr*365. - time = (time_bnds(1)+time_bnds(2))*0.5 - - RETURN - END SUBROUTINE read_time - - SUBROUTINE read_3d_input_files(it,field) - - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER, INTENT(IN) :: it - INTEGER :: i, j, k - - DO k=1,SIZE(field, 1) - DO j=1,SIZE(field, 3) - DO i=1,SIZE(field, 2) - field(k,i,j)= 15.0+0.001*(i+j+k+it) - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - - SUBROUTINE read_2d_input_files(it, field) - - INTEGER, INTENT(IN) :: it - REAL, INTENT(OUT), DIMENSION(:,:) :: field - INTEGER :: i, j - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j)=0.001*(i-180)+0.002*(j-170) - END DO - END DO - - END SUBROUTINE read_2d_input_files - - SUBROUTINE read_eta_input_files(it, field) - - INTEGER, INTENT(IN) :: it - REAL, INTENT(OUT), DIMENSION(:,:) :: field - INTEGER :: i, j - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j)=0.001*(i-180)+0.002*(j-170) - END DO - END DO - - END SUBROUTINE read_eta_input_files - -END MODULE local_subs - - -PROGRAM mip_contribution - - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: nt = 12 ! number of time samples to process - INTEGER, PARAMETER :: lon = 360 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 340 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 40 ! number of latitude grid cells - INTEGER, PARAMETER :: n3d = 2 ! number of AMIP Table 2 fields to be - INTEGER, PARAMETER :: n2d = 1 ! number of AMIP Table 2 fields to be - ! output. - - ! Tables associating the user's variables with AMIP standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - - ! My variable names for Table 2 fields - CHARACTER (LEN=10), DIMENSION(n3d) :: & - varin3d=(/ 'thetao ','so '/) - ! Units appropriate to my data - CHARACTER (LEN=10), DIMENSION(n3d) :: & - units3d=(/ 'K ','psu '/) - CHARACTER (LEN=4), DIMENSION(n3d) :: & - positive3d= (/' ',' '/) - CHARACTER (LEN=10), DIMENSION(n3d) :: & - entry3d=(/ 'thetao ','so '/) - - - CHARACTER (LEN=10), DIMENSION(n2d) :: varin2d=(/'zos'/) - CHARACTER (LEN=10), DIMENSION(n2d) :: units2d=(/'m'/) - CHARACTER (LEN=4), DIMENSION(n2d) :: positive2d=(/' '/) - CHARACTER (LEN=10), DIMENSION(n2d) :: entry2d=(/'zos'/) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag, i, j, k, grid_ids, zfactor_id,itim,ilev,ilat,ilon - INTEGER, DIMENSION(5) :: myaxes - INTEGER, DIMENSION(n3d) :: var3d_ids - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(1) :: vard_ids - REAL, DIMENSION(lev,lon,lat) :: data3d - REAL, DIMENSION(lon,lat) :: data2d - DOUBLE PRECISION, DIMENSION (lon,lat) :: rdepth - DOUBLE PRECISION, DIMENSION(lon,lat) :: alat_coords - DOUBLE PRECISION, DIMENSION(lon,lat) :: alon_coords - DOUBLE PRECISION, DIMENSION(lon,lat,4) :: alat_vertices - DOUBLE PRECISION, DIMENSION(lon,lat,4) :: alon_vertices - DOUBLE PRECISION :: time - DOUBLE PRECISION, DIMENSION(2):: bnds_time - REAL, DIMENSION(lon,lat) :: w - REAL, DIMENSION(lon) :: rlon - REAL, DIMENSION(lat) :: rlat - DOUBLE PRECISION, DIMENSION(lev) :: slev - DOUBLE PRECISION, DIMENSION(lev+1) :: slev_bnds - DOUBLE PRECISION, DIMENSION(3) :: pvalues - DOUBLE PRECISION :: bt - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - - bt=0. - - ! ================================ - ! Execution begins here: - ! ================================ - - ! definition of true longitude - do j=1,lat - do i=1,lon - alon_coords(i,j)=(i-1)*1.0 - alon_vertices(i,j,2)=alon_coords(i,j) - alon_vertices(i,j,4)=alon_coords(i,j) - end do - end do - do j=1,lat - do i=2,lon - alon_vertices(i,j,1)=alon_coords(i-1,j) - alon_vertices(i,j,1)=alon_coords(i-1,j) - end do - alon_vertices(1,j,1)=alon_coords(lon,j) - do i=1,lon-1 - alon_vertices(i,j,3)=alon_coords(i+1,j) - end do - alon_vertices(lon,j,3)=alon_coords(1,j) - end do - ! definition of true latitude - do j=1,lat - do i=1,lon - alat_coords(i,j)=-85.25+(j-1)*0.5 - alat_vertices(i,j,2)=alat_coords(i,j) - alat_vertices(i,j,4)=alat_coords(i,j) - end do - end do - do j=2,lat - do i=1,lon - alat_vertices(i,j,1)=alat_coords(i,j-1) - end do - end do - do j=1,lat-1 - do i=1,lon - alat_vertices(i,j,3)=alat_coords(i,j+1) - end do - end do - do i=1,lon - alat_vertices(i,1,1)=alat_coords(i,1) - alat_vertices(i,lat,3)=alat_coords(i,lat) - end do - !definition of longitude and latitude in rotated coordinate system - do i=1,lon - rlon(i)=0.5+(i-1)*1.0 - end do - do j=1,lat - rlat(j)=-85.25+(j-1)*0.5 - end do - - !definition of depth - do j=1,lat - do i=1,lon - rdepth(i,j)=3000.+(j-170+i-180) - end do - end do - ! definition of sigma levels - do k=1,lev - slev(k)=-(k-0.5)/lev - slev_bnds(k)=-(k-1.0)/lev - end do - slev_bnds(lev+1)=-1.0 - ! Specify path where tables can be found, indicate that existing netCDF - ! files should not be overwritten, and instruct CMOR to error exit on - ! encountering errors of any severity. - - error_flag = cmor_setup(inpath='Tables', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - ! Define dataset as output from the INM model - - print*, 'calling cmor_dataset' - error_flag = cmor_dataset( & - outpath='Test', & - contact='Evgeny Volodin, volodin@inm.ras.ru,' // & - 'INM RAS, Gubkina 8, Moscow, 119333 Russia,' // & - '+7-495-9383904', & - experiment_id='piControl', & - institution='INM (Institute for Numerical Mathematics, ' // & - ' Moscow, Russia)', & - institute_id='INM', & - source='inmcm4.0 (2009)', & - calendar='365_day', & - realization=1, & - initialization_method=1, & - history='Output from /data5/volodin/PICNTL', & - comment='no comments', & - references='Volodin, Diansky, Gusev 2010. Climate ' // & - 'model INMCM4.0. Izvestia RAS. Atmospheric and ' // & - 'oceanic physics, V.46, N4, in print.', & - model_id="inmcm4", & - !modeling_realm="ocean", & - parent_experiment_rip="N/A",parent_experiment_id="N/A", & - physics_version=1, & - branch_time=bt, & - ! frequency='mon', & - forcing="N/A") - - print*, 'returned from cmor_dataset' - - - print*, 'defining axes' - -! definition of grid longitude - myaxes(1) = cmor_axis( & - table='CMIP5_grids', & - table_entry='grid_longitude', & - length=lon, & - units='degrees', & - coord_vals=rlon) - -! definition of grid latitude - myaxes(2) = cmor_axis( & - table='CMIP5_grids', & - table_entry='grid_latitude', & - units='degrees', & - length=lat, & - coord_vals=rlat) - -! definition of horizontal grid - grid_ids = cmor_grid(axis_ids = (/myaxes(1),myaxes(2)/), & - latitude = alat_coords, & - longitude = alon_coords, & - latitude_vertices = alat_vertices, & - longitude_vertices = alon_vertices) - - myaxes(3) = grid_ids - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (below). - print*, 'before time ' - myaxes(4) = cmor_axis( & - table='CMIP5_Omon', & - table_entry='time', & - units='days since 1850-1-1', & - length=nt, & - interval='1 month') - itim=myaxes(4) - -! definition of vertical coordinate - myaxes(5) = cmor_axis( & - table='CMIP5_Omon', & - table_entry='ocean_sigma', & - units='1',& - length=lev, & - coord_vals=slev, & - cell_bounds=slev_bnds) - ilev=myaxes(5) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='sigma', & - axis_ids= (/ilev/), & - zfactor_values = slev)!, & -! zfactor_bounds = slev_bnds) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='depth', & - axis_ids= (/grid_ids/), & - zfactor_values = rdepth, & - units='m') - write(*,*) '1.7',error_flag - - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='eta', & - axis_ids=(/ grid_ids, itim /), & - units='m' ) -print*, 'finished defining axes', zfactor_id - pvalues(1)=90. - pvalues(2)=0. - pvalues(3)=0. - -!!$ error_flag = cmor_set_grid_mapping(grid_id=grid_ids, & -!!$ mapping_name='rotated_latitude_longitude', & -!!$ parameter_names=(/'grid_north_pole_latitude ','grid_north_pole_longitude','north_pole_grid_longitude'/), & -!!$ parameter_values=pvalues, & -!!$ parameter_units=(/'degrees_north','degrees_east ','degrees '/)) - write(*,*) 'after grid_mapping',error_flag - - - DO m=1,n3d - write(*,*) 'm =',m,ilev,grid_ids,itim -! IN THIS LINE I HAVE SEGMENTATION FAULT - var3d_ids(m) = cmor_variable( & - table='CMIP5_Omon', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=(/ilev,grid_ids,itim/), & - missing_value=1.0e20, & - positive=positive3d(m), & - original_name=varin3d(m)) - write(*,*) 'var3d_ids =',var3d_ids(m) - ENDDO - DO m=1,n2d - var2d_ids(m) = cmor_variable( & - table='CMIP5_Omon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/grid_ids,itim/), & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - write(*,*) 'var2d_ids =',var2d_ids(m) - ENDDO -! commenting this out, depth is a zfactor not an actual var in this code -! vard_ids(1) = cmor_variable( & -! table='CMIP5_Omon', & -! table_entry='depth', & -! units='m', & -! axis_ids=(/grid_ids/), & -! missing_value=1.0e20, & -! original_name='depth') - -print*, 'completed everything up to writing output fields ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested AMIP table 1a and table 2 fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - -time_loop: DO it=1,nt - call read_time(it, time, bnds_time) - DO m=1,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it,data3d) - write(*,*) '3d file was read' - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - !print*, RESHAPE(bnds_time, (/ 2,1 /)) - write(*,*) '3d var writing: ',var3d_ids(m) - error_flag = cmor_write(var_id = var3d_ids(m), & - data = RESHAPE(data3d, (/ lat*lon*lev /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - write(*,*) '3d file was written, error_flag =',error_flag - !/* editing this out, depth is zfactor should be written with zfactor but eta needs to be */ - !and it needs to be done at each time - write(*,*) "reading in eta" - call read_eta_input_files(it,data2d) - write(*,*) "writing in eta" - error_flag = cmor_write(var_id = zfactor_id, & - data = data2d, & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /)), & - store_with = var3d_ids(m)) - enddo - DO m=1,n2d - call read_2d_input_files(it,data2d) - write(*,*) '2d var writing with: ',var2d_ids(1) - error_flag = cmor_write(var_id = var2d_ids(1), & - data = RESHAPE(data2d, (/ lat*lon /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - print*, 'after writing variable, ', var2d_ids(m) - if(error_flag.ne.0) print*, ' error flag = ', error_flag - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 2 ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO -END DO time_loop - - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - -print*, '******************************' -print*, ' ' -print*, 'CMOR COMPLETED SUCCESSFULLY ' -print*, ' ' -print*, '******************************' - -END PROGRAM mip_contribution - diff --git a/Test/out_files.py b/Test/out_files.py deleted file mode 100644 index a448bfb76860357d692eaaa5a2e61b3f66fd15e2..0000000000000000000000000000000000000000 --- a/Test/out_files.py +++ /dev/null @@ -1,493 +0,0 @@ -lots = """ -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls0/r1i4p6/hfls0_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls1/r1i4p6/hfls1_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls10/r1i4p6/hfls10_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls100/r1i4p6/hfls100_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls101/r1i4p6/hfls101_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls102/r1i4p6/hfls102_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls103/r1i4p6/hfls103_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls104/r1i4p6/hfls104_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls105/r1i4p6/hfls105_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls106/r1i4p6/hfls106_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls107/r1i4p6/hfls107_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls108/r1i4p6/hfls108_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls109/r1i4p6/hfls109_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls11/r1i4p6/hfls11_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls110/r1i4p6/hfls110_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls111/r1i4p6/hfls111_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls112/r1i4p6/hfls112_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls113/r1i4p6/hfls113_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls114/r1i4p6/hfls114_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls115/r1i4p6/hfls115_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls116/r1i4p6/hfls116_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls117/r1i4p6/hfls117_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls118/r1i4p6/hfls118_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls119/r1i4p6/hfls119_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls12/r1i4p6/hfls12_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls120/r1i4p6/hfls120_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls121/r1i4p6/hfls121_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls122/r1i4p6/hfls122_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls123/r1i4p6/hfls123_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls124/r1i4p6/hfls124_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls125/r1i4p6/hfls125_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls126/r1i4p6/hfls126_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls127/r1i4p6/hfls127_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls128/r1i4p6/hfls128_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls129/r1i4p6/hfls129_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls13/r1i4p6/hfls13_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls130/r1i4p6/hfls130_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls131/r1i4p6/hfls131_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls132/r1i4p6/hfls132_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls133/r1i4p6/hfls133_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls134/r1i4p6/hfls134_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls135/r1i4p6/hfls135_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls136/r1i4p6/hfls136_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls137/r1i4p6/hfls137_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls138/r1i4p6/hfls138_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls139/r1i4p6/hfls139_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls14/r1i4p6/hfls14_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls140/r1i4p6/hfls140_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls141/r1i4p6/hfls141_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls142/r1i4p6/hfls142_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls143/r1i4p6/hfls143_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls144/r1i4p6/hfls144_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls145/r1i4p6/hfls145_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls146/r1i4p6/hfls146_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls147/r1i4p6/hfls147_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls148/r1i4p6/hfls148_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls149/r1i4p6/hfls149_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls15/r1i4p6/hfls15_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls150/r1i4p6/hfls150_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls151/r1i4p6/hfls151_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls152/r1i4p6/hfls152_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls153/r1i4p6/hfls153_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls154/r1i4p6/hfls154_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls155/r1i4p6/hfls155_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls156/r1i4p6/hfls156_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls157/r1i4p6/hfls157_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls158/r1i4p6/hfls158_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls159/r1i4p6/hfls159_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls16/r1i4p6/hfls16_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls160/r1i4p6/hfls160_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls161/r1i4p6/hfls161_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls162/r1i4p6/hfls162_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls163/r1i4p6/hfls163_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls164/r1i4p6/hfls164_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls165/r1i4p6/hfls165_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls166/r1i4p6/hfls166_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls167/r1i4p6/hfls167_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls168/r1i4p6/hfls168_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls169/r1i4p6/hfls169_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls17/r1i4p6/hfls17_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls170/r1i4p6/hfls170_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls171/r1i4p6/hfls171_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls172/r1i4p6/hfls172_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls173/r1i4p6/hfls173_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls174/r1i4p6/hfls174_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls175/r1i4p6/hfls175_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls176/r1i4p6/hfls176_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls177/r1i4p6/hfls177_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls178/r1i4p6/hfls178_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls179/r1i4p6/hfls179_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls18/r1i4p6/hfls18_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls180/r1i4p6/hfls180_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls181/r1i4p6/hfls181_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls182/r1i4p6/hfls182_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls183/r1i4p6/hfls183_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls184/r1i4p6/hfls184_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls185/r1i4p6/hfls185_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls186/r1i4p6/hfls186_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls187/r1i4p6/hfls187_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls188/r1i4p6/hfls188_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls189/r1i4p6/hfls189_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls19/r1i4p6/hfls19_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls190/r1i4p6/hfls190_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls191/r1i4p6/hfls191_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls192/r1i4p6/hfls192_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls193/r1i4p6/hfls193_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls194/r1i4p6/hfls194_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls195/r1i4p6/hfls195_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls196/r1i4p6/hfls196_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls197/r1i4p6/hfls197_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls198/r1i4p6/hfls198_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls199/r1i4p6/hfls199_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls2/r1i4p6/hfls2_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls20/r1i4p6/hfls20_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls200/r1i4p6/hfls200_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls201/r1i4p6/hfls201_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls202/r1i4p6/hfls202_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls203/r1i4p6/hfls203_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls204/r1i4p6/hfls204_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls205/r1i4p6/hfls205_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls206/r1i4p6/hfls206_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls207/r1i4p6/hfls207_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls208/r1i4p6/hfls208_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls209/r1i4p6/hfls209_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls21/r1i4p6/hfls21_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls210/r1i4p6/hfls210_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls211/r1i4p6/hfls211_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls212/r1i4p6/hfls212_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls213/r1i4p6/hfls213_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls214/r1i4p6/hfls214_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls215/r1i4p6/hfls215_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls216/r1i4p6/hfls216_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls217/r1i4p6/hfls217_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls218/r1i4p6/hfls218_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls219/r1i4p6/hfls219_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls22/r1i4p6/hfls22_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls220/r1i4p6/hfls220_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls221/r1i4p6/hfls221_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls222/r1i4p6/hfls222_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls223/r1i4p6/hfls223_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls224/r1i4p6/hfls224_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls225/r1i4p6/hfls225_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls226/r1i4p6/hfls226_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls227/r1i4p6/hfls227_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls228/r1i4p6/hfls228_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls229/r1i4p6/hfls229_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls23/r1i4p6/hfls23_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls230/r1i4p6/hfls230_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls231/r1i4p6/hfls231_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls232/r1i4p6/hfls232_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls233/r1i4p6/hfls233_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls234/r1i4p6/hfls234_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls235/r1i4p6/hfls235_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls236/r1i4p6/hfls236_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls237/r1i4p6/hfls237_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls238/r1i4p6/hfls238_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls239/r1i4p6/hfls239_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls24/r1i4p6/hfls24_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls240/r1i4p6/hfls240_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls241/r1i4p6/hfls241_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls242/r1i4p6/hfls242_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls243/r1i4p6/hfls243_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls244/r1i4p6/hfls244_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls245/r1i4p6/hfls245_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls246/r1i4p6/hfls246_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls247/r1i4p6/hfls247_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls248/r1i4p6/hfls248_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls249/r1i4p6/hfls249_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls25/r1i4p6/hfls25_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls250/r1i4p6/hfls250_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls251/r1i4p6/hfls251_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls252/r1i4p6/hfls252_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls253/r1i4p6/hfls253_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls254/r1i4p6/hfls254_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls255/r1i4p6/hfls255_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls256/r1i4p6/hfls256_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls257/r1i4p6/hfls257_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls258/r1i4p6/hfls258_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls259/r1i4p6/hfls259_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls26/r1i4p6/hfls26_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls260/r1i4p6/hfls260_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls261/r1i4p6/hfls261_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls262/r1i4p6/hfls262_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls263/r1i4p6/hfls263_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls264/r1i4p6/hfls264_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls265/r1i4p6/hfls265_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls266/r1i4p6/hfls266_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls267/r1i4p6/hfls267_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls268/r1i4p6/hfls268_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls269/r1i4p6/hfls269_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls27/r1i4p6/hfls27_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls270/r1i4p6/hfls270_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls271/r1i4p6/hfls271_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls272/r1i4p6/hfls272_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls273/r1i4p6/hfls273_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls274/r1i4p6/hfls274_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls275/r1i4p6/hfls275_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls276/r1i4p6/hfls276_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls277/r1i4p6/hfls277_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls278/r1i4p6/hfls278_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls279/r1i4p6/hfls279_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls28/r1i4p6/hfls28_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls280/r1i4p6/hfls280_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls281/r1i4p6/hfls281_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls282/r1i4p6/hfls282_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls283/r1i4p6/hfls283_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls284/r1i4p6/hfls284_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls285/r1i4p6/hfls285_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls286/r1i4p6/hfls286_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls287/r1i4p6/hfls287_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls288/r1i4p6/hfls288_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls289/r1i4p6/hfls289_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls29/r1i4p6/hfls29_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls290/r1i4p6/hfls290_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls291/r1i4p6/hfls291_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls292/r1i4p6/hfls292_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls293/r1i4p6/hfls293_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls294/r1i4p6/hfls294_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls295/r1i4p6/hfls295_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls296/r1i4p6/hfls296_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls297/r1i4p6/hfls297_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls298/r1i4p6/hfls298_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls299/r1i4p6/hfls299_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls3/r1i4p6/hfls3_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls30/r1i4p6/hfls30_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls300/r1i4p6/hfls300_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls301/r1i4p6/hfls301_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls302/r1i4p6/hfls302_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls303/r1i4p6/hfls303_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls304/r1i4p6/hfls304_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls305/r1i4p6/hfls305_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls306/r1i4p6/hfls306_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls307/r1i4p6/hfls307_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls308/r1i4p6/hfls308_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls309/r1i4p6/hfls309_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls31/r1i4p6/hfls31_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls310/r1i4p6/hfls310_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls311/r1i4p6/hfls311_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls312/r1i4p6/hfls312_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls313/r1i4p6/hfls313_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls314/r1i4p6/hfls314_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls315/r1i4p6/hfls315_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls316/r1i4p6/hfls316_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls317/r1i4p6/hfls317_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls318/r1i4p6/hfls318_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls319/r1i4p6/hfls319_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls32/r1i4p6/hfls32_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls320/r1i4p6/hfls320_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls321/r1i4p6/hfls321_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls322/r1i4p6/hfls322_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls323/r1i4p6/hfls323_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls324/r1i4p6/hfls324_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls325/r1i4p6/hfls325_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls326/r1i4p6/hfls326_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls327/r1i4p6/hfls327_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls328/r1i4p6/hfls328_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls329/r1i4p6/hfls329_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls33/r1i4p6/hfls33_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls330/r1i4p6/hfls330_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls331/r1i4p6/hfls331_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls332/r1i4p6/hfls332_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls333/r1i4p6/hfls333_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls334/r1i4p6/hfls334_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls335/r1i4p6/hfls335_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls336/r1i4p6/hfls336_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls337/r1i4p6/hfls337_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls338/r1i4p6/hfls338_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls339/r1i4p6/hfls339_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls34/r1i4p6/hfls34_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls340/r1i4p6/hfls340_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls341/r1i4p6/hfls341_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls342/r1i4p6/hfls342_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls343/r1i4p6/hfls343_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls344/r1i4p6/hfls344_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls345/r1i4p6/hfls345_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls346/r1i4p6/hfls346_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls347/r1i4p6/hfls347_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls348/r1i4p6/hfls348_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls349/r1i4p6/hfls349_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls35/r1i4p6/hfls35_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls350/r1i4p6/hfls350_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls351/r1i4p6/hfls351_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls352/r1i4p6/hfls352_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls353/r1i4p6/hfls353_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls354/r1i4p6/hfls354_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls355/r1i4p6/hfls355_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls356/r1i4p6/hfls356_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls357/r1i4p6/hfls357_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls358/r1i4p6/hfls358_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls359/r1i4p6/hfls359_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls36/r1i4p6/hfls36_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls360/r1i4p6/hfls360_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls361/r1i4p6/hfls361_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls362/r1i4p6/hfls362_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls363/r1i4p6/hfls363_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls364/r1i4p6/hfls364_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls365/r1i4p6/hfls365_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls366/r1i4p6/hfls366_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls367/r1i4p6/hfls367_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls368/r1i4p6/hfls368_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls369/r1i4p6/hfls369_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls37/r1i4p6/hfls37_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls370/r1i4p6/hfls370_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls371/r1i4p6/hfls371_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls372/r1i4p6/hfls372_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls373/r1i4p6/hfls373_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls374/r1i4p6/hfls374_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls375/r1i4p6/hfls375_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls376/r1i4p6/hfls376_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls377/r1i4p6/hfls377_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls378/r1i4p6/hfls378_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls379/r1i4p6/hfls379_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls38/r1i4p6/hfls38_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls380/r1i4p6/hfls380_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls381/r1i4p6/hfls381_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls382/r1i4p6/hfls382_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls383/r1i4p6/hfls383_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls384/r1i4p6/hfls384_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls385/r1i4p6/hfls385_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls386/r1i4p6/hfls386_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls387/r1i4p6/hfls387_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls388/r1i4p6/hfls388_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls389/r1i4p6/hfls389_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls39/r1i4p6/hfls39_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls390/r1i4p6/hfls390_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls391/r1i4p6/hfls391_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls392/r1i4p6/hfls392_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls393/r1i4p6/hfls393_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls394/r1i4p6/hfls394_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls395/r1i4p6/hfls395_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls396/r1i4p6/hfls396_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls397/r1i4p6/hfls397_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls398/r1i4p6/hfls398_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls399/r1i4p6/hfls399_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls4/r1i4p6/hfls4_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls40/r1i4p6/hfls40_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls41/r1i4p6/hfls41_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls42/r1i4p6/hfls42_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls43/r1i4p6/hfls43_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls44/r1i4p6/hfls44_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls45/r1i4p6/hfls45_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls46/r1i4p6/hfls46_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls47/r1i4p6/hfls47_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls48/r1i4p6/hfls48_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls49/r1i4p6/hfls49_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls5/r1i4p6/hfls5_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls50/r1i4p6/hfls50_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls51/r1i4p6/hfls51_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls52/r1i4p6/hfls52_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls53/r1i4p6/hfls53_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls54/r1i4p6/hfls54_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls55/r1i4p6/hfls55_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls56/r1i4p6/hfls56_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls57/r1i4p6/hfls57_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls58/r1i4p6/hfls58_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls59/r1i4p6/hfls59_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls6/r1i4p6/hfls6_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls60/r1i4p6/hfls60_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls61/r1i4p6/hfls61_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls62/r1i4p6/hfls62_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls63/r1i4p6/hfls63_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls64/r1i4p6/hfls64_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls65/r1i4p6/hfls65_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls66/r1i4p6/hfls66_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls67/r1i4p6/hfls67_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls68/r1i4p6/hfls68_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls69/r1i4p6/hfls69_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls7/r1i4p6/hfls7_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls70/r1i4p6/hfls70_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls71/r1i4p6/hfls71_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls72/r1i4p6/hfls72_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls73/r1i4p6/hfls73_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls74/r1i4p6/hfls74_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls75/r1i4p6/hfls75_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls76/r1i4p6/hfls76_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls77/r1i4p6/hfls77_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls78/r1i4p6/hfls78_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls79/r1i4p6/hfls79_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls8/r1i4p6/hfls8_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls80/r1i4p6/hfls80_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls81/r1i4p6/hfls81_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls82/r1i4p6/hfls82_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls83/r1i4p6/hfls83_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls84/r1i4p6/hfls84_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls85/r1i4p6/hfls85_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls86/r1i4p6/hfls86_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls87/r1i4p6/hfls87_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls88/r1i4p6/hfls88_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls89/r1i4p6/hfls89_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls9/r1i4p6/hfls9_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls90/r1i4p6/hfls90_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls91/r1i4p6/hfls91_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls92/r1i4p6/hfls92_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls93/r1i4p6/hfls93_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls94/r1i4p6/hfls94_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls95/r1i4p6/hfls95_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls96/r1i4p6/hfls96_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls97/r1i4p6/hfls97_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls98/r1i4p6/hfls98_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls99/r1i4p6/hfls99_A1_pcmdi-08a_2xco2_r1i4p6_197901-197902.nc -""".split() - -out = { - 'old_cmor_tables_climatology_test_code' : ['IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-01/2xco2/monClim/atm/tasDiurnal/r1i1p1/tasDiurnal_A1_pcmdi-01_2xco2_r1i1p1_203001-203003_clim.nc'], - 'old_cmor_tables_test_any_from_asc' : ['IPCC/output/INSTITUTE_ID/pcmdi-01a/2xco2/mon/atm/tas/r1i1p1/tas_2_pcmdi-01a_2xco2_r1i1p1_187001-187003.nc'], - 'old_cmor_tables_test_any_from_asc_d' : ['IPCC/output/INSTITUTE_ID/pcmdi-01a/2xco2/mon/atm/tas/r1i1p1/tas_2_pcmdi-01a_2xco2_r1i1p1_187001-187003.nc'], - 'old_cmor_tables_test_any_from_asc_i' : ['IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/tas/r1i1p1/tas_2_pcmdi-08a_2xco2_r1i1p1_187001-187003.nc'], - 'old_cmor_tables_karls_test' : ['IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a01/2xco2/mon/atm/cl/r1i1p1/cl_A1_pcmdi-a01_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a01/2xco2/mon/atmosphere/hfls/r1i1p1/hfls_A1_pcmdi-a01_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a01/2xco2/mon/atm/mrsos/r1i1p1/mrsos_A1_pcmdi-a01_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a01/2xco2/mon/atm/ps/r1i1p1/ps_A1_pcmdi-a01_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a01/2xco2/mon/atm/ta/r1i1p1/ta_A1_pcmdi-a01_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a01/2xco2/mon/atm/tas/r1i1p1/tas_A1_pcmdi-a01_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a01/2xco2/mon/atm/ua/r1i1p1/ua_A1_pcmdi-a01_2xco2_r1i1p1_203001-203002.nc'], - 'old_cmor_tables_test1' : ['IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/hfls/r1i1p1/hfls_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/mrsos/r1i1p1/mrsos_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ta/r1i1p1/ta_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/tas/r1i1p1/tas_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ua/r1i1p1/ua_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc'], - 'old_cmor_tables_test2' : ['IPCC/output/INSTITUTE_ID/pcmdi-01a/2xco2/mon/atm/hfls/r1i1p1/hfls_2_pcmdi-01a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-01a/2xco2/mon/atm/mrsos/r1i1p1/mrsos_2_pcmdi-01a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-01a/2xco2/mon/atm/ta/r1i1p1/ta_2_pcmdi-01a_2xco2_r1i1p1_197901-197902_User-suffix-1979-2001.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-01a/2xco2/mon/atm/tas/r1i1p1/tas_2_pcmdi-01a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-01a/2xco2/mon/atm/ua/r1i1p1/ua_2_pcmdi-01a_2xco2_r1i1p1_197901-197902_User-suffix-1979-2001.nc'], - 'old_cmor_tables_test3' : ['IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/hfls/r1i1p1/hfls_2_pcmdi-08a_2xco2_r1i1p1_197901-197902_1979-2001.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/mrsos/r1i1p1/mrsos_2_pcmdi-08a_2xco2_r1i1p1_197901-197902_1979-2001.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ta/r1i1p1/ta_2_pcmdi-08a_2xco2_r1i1p1_197901-197902_1979-2001.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/tas/r1i1p1/tas_2_pcmdi-08a_2xco2_r1i1p1_197901-197902_1979-2001.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ua/r1i1p1/ua_2_pcmdi-08a_2xco2_r1i1p1_197901-197902_1979-2001.nc'], - 'old_cmor_tables_test4' : ['IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/hfls/r1i1p1/hfls_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/mrsos/r1i1p1/mrsos_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ta/r1i1p1/ta_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/tas/r1i1p1/tas_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ua/r1i1p1/ua_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc'], - 'old_cmor_tables_main_prog' : ['IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/hfls/r1i1p1/hfls_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/mrsos/r1i1p1/mrsos_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ta/r1i1p1/ta_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/tas/r1i1p1/tas_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc', - 'IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ua/r1i1p1/ua_2_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc'], - 'old_cmor_tables_mytest_4d_r' : ['IPCC/output/INSTITUTE_ID/pcmdi-a08/2xco2/mon/atm/ta/r1i1p1/ta_2_pcmdi-a08_2xco2_r1i1p1_194901-194903.nc'], - 'old_cmor_tables_rewrite_harvardf_data' :['IPCC_Fourth_Assessment/output/INSTITUTE_ID/20c3m/day/atm/tas/r1i1p1/tas_A_20c3m_r1i1p1_19920101-19920110.nc'], - 'old_cmor_tables_test_3h' : ['IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/3hr/atm/hfls/r1i1p1/hfls_A3_pcmdi-08a_2xco2_r1i1p1_2030010101-2030010104.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/3hr/atm/pr/r1i1p1/pr_A3_pcmdi-08a_2xco2_r1i1p1_2030010101-2030010104.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/3hr/atm/tas/r1i1p1/tas_A3_pcmdi-08a_2xco2_r1i1p1_2030010101-2030010104.nc'], - 'old_cmor_tables_test_dimensionless' : ['IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a08/2xco2/mon/atm/cl/r1i1p1/cl_A1_pcmdi-a08_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a08/2xco2/mon/atm/hfls/r1i1p1/hfls_A1_pcmdi-a08_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a08/2xco2/mon/atm/mrsos/r1i1p1/mrsos_A1_pcmdi-a08_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a08/2xco2/mon/atm/ps/r1i1p1/ps_A1_pcmdi-a08_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a08/2xco2/mon/atm/ta/r1i1p1/ta_A1_pcmdi-a08_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a08/2xco2/mon/atm/tas/r1i1p1/tas_A1_pcmdi-a08_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a08/2xco2/mon/atm/tro3/r1i1p1/tro3_A1_pcmdi-a08_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-a08/2xco2/mon/atm/ua/r1i1p1/ua_A1_pcmdi-a08_2xco2_r1i1p1_203001-203002.nc'], - 'old_cmor_tables_test_fortran_example_00' : ['IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/cl/r1i1p1/cl_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002_ftn.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls/r1i1p1/hfls_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002_ftn-00.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/mrsos/r1i1p1/mrsos_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002_ftn-00.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ps/r1i1p1/ps_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002_ftn-00.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ta/r1i1p1/ta_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002_ftn-00.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/tas/r1i1p1/tas_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002_ftn-00.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ua/r1i1p1/ua_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002_ftn-00.nc'], - 'old_cmor_tables_test_fortran_example_01' : ['IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls/r1i1p1/hfls_A1_pcmdi-08a_2xco2_r1i1p1_198001-198002_ftn-01.nc',] , - 'old_cmor_tables_test_fortran_example_02' : ['Test/IPCC_Fourth_Assessment/output/INSTITUTE_ID/mon/REALM/hfls/r1i1p1/hfls_A1_r1i1p1_203001-203002_ftn-02.nc', - 'Test/IPCC_Fourth_Assessment/output/INSTITUTE_ID/mon/REALM/mrsos/r1i1p1/mrsos_A1_r1i1p1_203001-203002_ftn-02.nc', - 'Test/IPCC_Fourth_Assessment/output/INSTITUTE_ID/mon/REALM/ps/r1i1p1/ps_A1_r1i1p1_203001-203002_ftn-02.nc', - 'Test/IPCC_Fourth_Assessment/output/INSTITUTE_ID/mon/REALM/tas/r1i1p1/tas_A1_r1i1p1_203001-203002_ftn-02.nc', - ], - 'old_cmor_tables_test_station_data': [None], - 'old_cmor_tables_test_cmor_grid_alejandro' : [None], - 'old_cmor_tables_test_sophie': ['IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/fx/atmosphere/hfls/r0i0p0/hfls_A1_pcmdi-08a_r0i0p0.nc'], - 'old_cmor_tables_test_region' : ['IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/hfogo/r1i1p1/hfogo_O1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc'], - 'old_cmor_tables_test_sigma' : ['IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/cl/r1i1p1/cl_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/hfls/r1i1p1/hfls_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/mrsos/r1i1p1/mrsos_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ps/r1i1p1/ps_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ta/r1i1p1/ta_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/tas/r1i1p1/tas_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/tro3/r1i1p1/tro3_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ua/r1i1p1/ua_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc'], - 'old_cmor_tables_test_singleton' : ['IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/cl/r1i1p1/cl_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls/r1i1p1/hfls_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/mrsos/r1i1p1/mrsos_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ps/r1i1p1/ps_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ta/r1i1p1/ta_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/tas/r1i1p1/tas_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc', - 'IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ua/r1i1p1/ua_A1_pcmdi-08a_2xco2_r1i1p1_203001-203002.nc'], - 'old_cmor_tables_mytest_4d_r_big_array' : ['IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ta/r1i1p1/ta_2_pcmdi-08a_2xco2_r1i1p1_194901-194903.nc'], - 'old_cmor_tables_mytest_4d_d_big_array_2' : ['IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ta/r1i1p1/ta_2_pcmdi-08a_2xco2_r1i1p1_194901-194903.nc'], - 'old_cmor_tables_mytest_4d_d_big_array_3' : ['IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ta/r1i1p1/ta_2_pcmdi-08a_2xco2_r1i1p1_194901-194903.nc'], - 'old_cmor_tables_mytest_4d_d_big_array_4' : ['IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ta/r1i1p1/ta_2_pcmdi-08a_2xco2_r1i1p1_194901-194903.nc'], - 'old_cmor_tables_mytest_4d_d_big_array_5' : ['IPCC/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atm/ta/r1i1p1/ta_2_pcmdi-08a_2xco2_r1i1p1_194901-194903.nc'], - 'old_cmor_tables_test_lots_of_variables' : lots, - 'old_cmor_tables_test_shrt_exp_nm_set_att_initi' : ['IPCC_Fourth_Assessment/output/INSTITUTE_ID/pcmdi-08a/2xco2/mon/atmosphere/hfls0/r1i1p1/hfls0_A1_pcmdi-08a_2xco2_r1i1p1_197901-197902.nc'], - } diff --git a/Test/python_test_table_A b/Test/python_test_table_A deleted file mode 100644 index 7292432d68a0e93ddd3eeb737b6295413d05e0d0..0000000000000000000000000000000000000000 --- a/Test/python_test_table_A +++ /dev/null @@ -1,2388 +0,0 @@ -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.0 ! version of CF that output conforms to -project_id: IPCC Fourth Assessment ! project id -table_id: Table A1 ! table id -table_date: 17 November 2004 ! date this table was constructed -required_global_attributes: creation_date tracking_id model_id forcing - -expt_id_ok: 'pre-industrial control experiment' -expt_id_ok: 'present-day control experiment' -expt_id_ok: 'climate of the 20th Century experiment (20C3M)' -expt_id_ok: 'committed climate change experiment' ! official name(s) of -expt_id_ok: 'SRES A2 experiment' ! project's experiments -expt_id_ok: '720 ppm stabilization experiment (SRES A1B)' -expt_id_ok: '550 ppm stabilization experiment (SRES B1)' -expt_id_ok: '1%/year CO2 increase experiment (to doubling)' -expt_id_ok: '1%/year CO2 increase experiment (to quadrupling)' -expt_id_ok: 'slab ocean control experiment' -expt_id_ok: '2xCO2 equilibrium experiment' -expt_id_ok: 'AMIP experiment' - -baseURL: http://cmip-pcmdi.llnl.gov - -magic_number: -1 ! used to check whether this file has been - ! altered from the official version. - ! should be set to number of non-blank - ! characters in file. -approx_interval: 30. ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate), but this is ignored if set to 0. -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! SUBROUTINE ARGUMENT DEFAULT INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! set default specifications for subroutine arguments to: -! required/indeterminate/optional/ignored/forbidden -! (indeterminate may or may not be required information, but is not always -! required as an argument of the function call) -! -! -!============ -subroutine_entry: cmor_axis -!============ -! -required: table axis_name units length coord_vals cell_bounds -ignored: interval -! -!============ -subroutine_entry: cmor_variable -!============ -! -required: table table_entry units axis_ids -indeterminate: missing_value -optional: tolerance original_name history comment -ignored: positive -! -!============ -subroutine_entry: cmor_write -!============ -! -required: var_id data -indeterminate: ntimes_passed time_vals time_bnds store_with -optional: file_suffix -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! AXIS INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! ??? what about climatology??? -! ??? what about model level data??? -! -! -! TEMPLATE FOR AXES -! -!============ -!axis_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -! acceptable arguments include units length coord_vals cell_bounds interval -!required: ! (default: table axis_name units length -! coord_vals cell_bounds) -!indeterminate: -!optional: -!ignored: ! (default: interval) -!forbidden: -!------------ -! -! Axis attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!axis: ! X, Y, Z, T (default: undeclared) -!positive: ! up or down (default: undeclared) -!long_name: ! (default: undeclared) -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -!out_name: ! (default: same as axis_entry) -!type: ! double (default), real, character, integer -!stored_direction: ! increasing (default) or decreasing -!valid_min: ! type: double precision (default: no check performed -!valid_max: ! type: double precision (default: no check performed -!requested: ! space-separated list of requested coordinates - ! (default: undeclared) -!bounds_requested: ! space-separated list of requested coordinate bounds - ! (default: undeclared) -!tol_on_requests: ! fractional tolerance for meeting request - ! (default=1.e-3, which is used in the formula: - ! eps = MIN(( tol*interval between grid-points) - ! and (1.e-3*tol*coordinate value))) -!value: ! of scalar (singleton) dimension -!bounds_values: ! of scalar (singleton) dimension bounds -!---------------------------------- -! -! -! TEMPLATE FOR VARIABLES -! -! -!============ -!variable_entry: ! (required) -!============ -! -! Override default argument specifications for cmor_variable -!------------ -! acceptable arguments include file_suffix missing_value tolerance -! original_name history comment positive -!required: ! (default: table table_entry units axis_ids) -!indeterminate: ! (default: file_suffix missing_value) -!optional: ! (default: original_name history comment) -!ignored: ! (default: positive) -!forbidden: -!------------ -! -! Variable attributes: -!---------------------------------- -!standard_name: ! (required) -!units: ! (required) -!cell_methods: ! (default: undeclared) -!long_name: ! (default: undeclared) -!comment: ! (default: undeclared) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -!dimensions: ! (required) (scalar dimension(s) should appear - ! last in list) -!out_name: ! (default: variable_entry) -!type: ! real (default), double, integer -!positive: ! up or down (default: undeclared) -!valid_min: ! type: real (default: no check performed) -!valid_max: ! type: real (default: no check performed) -!ok_min_mean_abs: ! type: real (default: no check performed) -!ok_max_mean_abs: ! type: real (default: no check performed) -!---------------------------------- -! - -! -!============ -axis_entry: longitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X -long_name: longitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. The - ! data will also be rearranged - ! appropriately. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============= -axis_entry: latitude -!============= -! -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y -long_name: latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! - -! ??? What about climatological data??? -! - -!============ -axis_entry: time -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: interval length -indeterminate: coord_vals cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T -long_name: time -!---------------------------------- -! -! -!============ -axis_entry: pressure -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -valid_min: 0. -valid_max: 110000. -!requested: 100000. 92500. 85000. 70000. 60000. 50000. 40000. -!requested: 30000. 25000. 20000. 15000. 10000. 7000. 5000. -!requested: 3000. 2000. 1000. -!---------------------------------- -! -! -!============ -axis_entry: height1 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 10. -value: 2. -!---------------------------------- -! -! -!============ -axis_entry: height2 -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z -positive: up -long_name: height -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 0. -valid_max: 30. -value: 10. -!---------------------------------- -! -! -!============ -axis_entry: depth1 -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z -positive: down -long_name: depth -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 1.0 -value: 0.05 -bounds_values: 0.0 0.1 -!---------------------------------- -! -! -!============ -axis_entry: pressure1 -! -! Scalar dimension (200 hPa) defined for near-tropopause radiation fluxes -! (rsntp, rlntp, rsntpcs, rlntpcs, rsftropa_?, rsftropi_?, rlftropa_?, -! rlftropi_?, rsftropacs_?, rsftropics_?, rlftropacs_?, rlftropics_?) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -ignored: cell_bounds -!------------ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -valid_min: 10000. -valid_max: 30000. -value: 20000. -!---------------------------------- -! -! -!============ -axis_entry: pressure2 -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -stored_direction: decreasing -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -bounds_requested: 100000. 80000. 80000. 68000. 68000. 56000. 56000. 44000. 44000. 31000. 31000. 18000. 18000. 0. -!bounds_requested: 56000. 44000. 44000. 31000. 31000. 18000. -!bounds_requested: 18000. 0. -!----------------------------------! -! -! -!============ -axis_entry: pressure3 -! -! Is defined for Table A1e: sulfate aerosol data (trsul) -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: cell_bounds -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z -positive: down -long_name: pressure -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -valid_min: 0. -valid_max: 110000. -requested: 100400. 98300. 95300. 91000. 84800. 76500. 66300. -requested: 54600. 42500. 31800. 23800. 18300. 14000. 10300. -requested: 7200. 4700. 2700. 1300. 400. -!---------------------------------- -! -! -!============ -axis_entry: tau -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: cloud_optical_depth -units: 1 -long_name: optical depth -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -bounds_requested: 0.0 0.3 0.3 1.3 1.3 3.6 3.6 9.4 -bounds_requested: 9.4 23.0 23.0 60.0 60.0 100000. -!---------------------------------- -! -! -!============ -axis_entry: standard_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -convert_to: standard_hybrid_sigma -z_factors: ptop: ptop sigma: sigma ps: ps -z_bounds_factors: ptop: ptop sigma: sigma_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -stored_direction: decreasing -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -convert_to: standard_hybrid_sigma -z_factors: p0: p0 ap: ap b: b ps: ps -z_bounds_factors: p0 ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! Override default argument specifications for cmor_axis -!------------ -optional: units -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: increasing -valid_min: 0.0 -formula: z(k,j,i) = a(k) + b(k)*orog(j,i) -z_factors: a: a b: b orog: orog -z_bounds_factors: a: a_bnds b: b_bnds orog: orog -!---------------------------------- -! -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! VARIABLE INFORMATION -! -!*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# -! -! -! -! *************************************************************** -! -! Vertical dimensionless coordinate variables: -! -! *************************************************************** -! -! -! -!============ -variable_entry: p0 -!============ -! -! Override default argument specifications for cmor_variable -!------------ -ignored: axis_ids -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: reference pressure for hybrid sigma coordinate -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -! Override default argument specifications for cmor_variable -!------------ -ignored: axis_ids -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: sigma -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: sigma coordinate -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: sigma_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: sigma coordinate for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate A coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: alternate hybrid sigma coordinate A coefficient for layer -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: alternate hybrid sigma coordinate A coefficient for layer bounds -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ztop -!============ -! -! Override default argument specifications for cmor_variable -!------------ -ignored: axis_ids -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: height of top of model -units: m -!---------------------------------- -! -! -!============ -variable_entry: az -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid height coordinate coefficient (eta) for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: bz -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid height coordinate coefficient (tau) for layer -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: az_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate coefficient (eta) for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: bz_bnds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -optional: units -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: hybrid sigma coordinate B coefficient (tau) for layer bounds -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: zlevel -type: double -!---------------------------------- -! -! -! -! *************************************************************** -! -! IPCC Table A1a: Monthly-mean 2-d atmosphere or land surface data -! -! *************************************************************** -! -! -! -!============ -variable_entry: psl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -long_name: Sea Level Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 90000. -valid_max: 120000. -ok_min_mean_abs: 102000. -ok_max_mean_abs: 98000. -!---------------------------------- -! -! -!============ -variable_entry: pr -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation -comment: includes all types (rain, snow, large-scale, convective, etc.) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -valid_max: 1.e-3 -ok_min_mean_abs: 1.e-6 -ok_max_mean_abs: 5.e-5 -!---------------------------------- -! -! -!============ -variable_entry: tas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -valid_min: 195. -valid_max: 330. -ok_min_mean_abs: 270. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: mrsos -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: moisture_content_of_soil_layer -units: kg m-2 -cell_methods: time: mean -long_name: Moisture in Upper 0.1 m of Soil Column -comment: includes subsurface frozen water but not surface snow and ice -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth1 -!---------------------------------- -! -! -!============ -variable_entry: mrso -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: soil_moisture_content -units: kg m-2 -cell_methods: time: mean -long_name: Total Soil Moisture Content -comment: includes subsurface frozen water but not surface snow and ice -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -!============ -variable_entry: tauu -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_eastward_stress -units: Pa -cell_methods: time: mean -long_name: Zonal Surface Wind Stress -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: down -!---------------------------------- -! -! -!============ -variable_entry: tauv -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_northward_stress -units: Pa -cell_methods: time: mean -long_name: Meridional Surface Wind Stress -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: down -!---------------------------------- -! -! -!============ -variable_entry: snd -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_snow_thickness -units: m -cell_methods: time: mean -long_name: Snow Depth -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: hfls -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Latent Heat Flux -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: -120 -valid_max: 900. -ok_min_mean_abs: 50. -ok_max_mean_abs: 120. -!---------------------------------- -! -! -!============ -variable_entry: hfss -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Sensible Heat Flux -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rlds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Longwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: down -valid_min: 20. -valid_max: 600. -ok_min_mean_abs: 300. -ok_max_mean_abs: 370. -!---------------------------------- -! -! -!============ -variable_entry: rlus -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Longwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: up -valid_min: 50. -valid_max: 750. -ok_min_mean_abs: 250. -ok_max_mean_abs: 450. -!---------------------------------- -! -! -!============ -variable_entry: rsds -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Shortwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: down -valid_min: 0. -valid_max: 550. -ok_min_mean_abs: 150. -ok_max_mean_abs: 220. -!---------------------------------- -! -! -!============ -variable_entry: rsus -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Shortwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: ts -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: mean -long_name: Surface Skin Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 170. -valid_max: 340. -ok_min_mean_abs: 280. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: ps -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: mean -long_name: Surface Pressure -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.48e5 -valid_max: 1.1e5 -ok_min_mean_abs: 0.97e5 -ok_max_mean_abs: 1.0e5 -!---------------------------------- -! -! -!============ -variable_entry: prsn -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: snowfall_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Snowfall Flux -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: prc -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: convective_precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Convective Precipitation -comment: includes both liquid and solid phases -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: prw -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_water_vapor_content -units: kg m-2 -cell_methods: time: mean -long_name: Precipitable Water -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -valid_max: 150. -ok_min_mean_abs: 20. -ok_max_mean_abs: 30. -!---------------------------------- -! -! -!============ -variable_entry: mrfso -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: soil_frozen_water_content -units: kg m-2 -cell_methods: time: mean -long_name: Soil Frozen Water Content -comment: excludes surface snow and ice -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: mrros -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_runoff_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Surface Runoff -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -!============ -variable_entry: mrro -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: runoff_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Surface and Subsurface Runoff -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -!============ -variable_entry: snw -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_snow_amount_where_land -units: kg m-2 -cell_methods: time: mean -long_name: Snow Amount -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: snc -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_snow_area_fraction_where_land -units: % -cell_methods: time: mean -long_name: Snow Area Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -valid_max: 100. -!---------------------------------- -! -! -!============ -variable_entry: snm -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_snow_melt_flux_where_land -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Snow Melt -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: uas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Zonal Surface Wind Speed -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2 -!---------------------------------- -! -! -!============ -variable_entry: vas -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Meridional Surface Wind Speed -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2 -!---------------------------------- -! -! -!============ -variable_entry: huss -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: kg kg-1 -cell_methods: time: mean -long_name: Surface Specific Humidity -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: rsdt -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: toa_incoming_shortwave_flux -units: W m-2 -cell_methods: time: mean -long_name: TOA Incident Shortwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: down -!---------------------------------- -! -! -!============ -variable_entry: rsut -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux -units: W m-2 -cell_methods: time: mean -long_name: TOA Reflected Shortwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rlut -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux -units: W m-2 -cell_methods: time: mean -long_name: Outgoing Longwave Radiation -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 10. -valid_max: 500. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rtmt -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: net_downward_radiative_flux_at_top_of_atmosphere_model -units: W m-2 -cell_methods: time: mean -long_name: Net Flux at Top of Model -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -positive: down -!---------------------------------- -! -! -!============ -variable_entry: rsntp -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: net_downward_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Net Downward Shortwave Flux at 200 hPa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time pressure1 -valid_min: 0. -positive: down -!---------------------------------- -! -! -!============ -variable_entry: rlntp -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: net_upward_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Net Upward Longwave Flux at 200 hPa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time pressure1 -valid_min: 0. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rsntpcs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: net_downward_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Net Downward Clear-Sky Shortwave Flux at 200 hPa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time pressure1 -valid_min: 0. -positive: down -!---------------------------------- -! -! -!============ -variable_entry: rlntpcs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: net_upward_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Net Upward Clear-Sky Longwave Flux at 200 hPa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time pressure1 -valid_min: 0. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rsdscs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Incident Surface Clear-Sky Shortwave -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: down -!---------------------------------- -! -! -!============ -variable_entry: rsuscs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Reflected Surface Clear-Sky Shortwave -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rldscs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Downwelling Surface Clear-Sky Longwave -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: down -!---------------------------------- -! -! -!============ -variable_entry: rlutcs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Outgoing Clear-Sky Longwave -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 10. -valid_max: 500. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: rsutcs -!============ -! -! Override default argument specifications for cmor_variable -!------------ -required: positive -!------------ -! -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Reflected Clear-Sky Shortwave -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0. -positive: up -!---------------------------------- -! -! -!============ -variable_entry: clt2 -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -long_name: Total Cloud Fraction -deflate: 1 -deflate_level: 9 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -valid_max: 100.0 -ok_min_mean_abs: 30. -ok_max_mean_abs: 75. -!---------------------------------- -! -! -!============ -variable_entry: clt -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -long_name: Total Cloud Fraction -deflate: 0 -deflate_level: 0 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -valid_max: 100.0 -ok_min_mean_abs: 30. -ok_max_mean_abs: 75. -!---------------------------------- -! -! -!============ -variable_entry: clwvi -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_condensed_water_content -units: kg m-2 -cell_methods: time: mean -long_name: Column Integerated Cloud Water Content -comment: should include both liquid and solid phase -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -!============ -variable_entry: clivi -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_ice_content -units: kg m-2 -cell_methods: time: mean -long_name: Column Integerated Cloud Ice Content -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -valid_min: 0.0 -!---------------------------------- -! -! -! -! -! *************************************************************** -! -! IPCC Table A1b: Time-independent 2-d land surface data -! -! *************************************************************** -! -! -! -!============ -variable_entry: orog -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -valid_min: -500. -valid_max: 12000. -ok_min_mean_abs: 0. -ok_max_mean_abs: 2000. -!---------------------------------- -! -! -!============ -variable_entry: sftlf -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: land_area_fraction -units: % -long_name: Land Area Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -valid_min: 0.0 -valid_max: 100. -ok_min_mean_abs: 20. -ok_max_mean_abs: 40. -!---------------------------------- -! -! -!============ -variable_entry: sftgif -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: land_ice_area_fraction -units: % -long_name: Fraction of Grid Cell Covered with Glacier -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -valid_min: 0.0 -valid_max: 100. -!---------------------------------- -! -! -!============ -variable_entry: mrsofc -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: soil_moisture_content_at_field_capacity -units: kg m-2 -long_name: Capacity of Soil to Store Water -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -!---------------------------------- -! -! -! -! -! *************************************************************** -! -! IPCC Table A1c: Monthly-mean 3-d atmosphere data -! -! *************************************************************** -! -! -! -!============ -variable_entry: cl -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: mean -long_name: Cloud Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude zlevel time -valid_min: 0.0 -valid_max: 100.0 -ok_min_mean_abs: 10.0 -ok_max_mean_abs: 90.0 -!---------------------------------- -! -! -!============ -variable_entry: ta -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -long_name: Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure2 time -valid_min: 150. -valid_max: 350. -ok_min_mean_abs: 200. -ok_max_mean_abs: 300. -!---------------------------------- -! -! -!============ -variable_entry: ua -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Zonal Wind Component -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: -200. -valid_max: 300. -ok_min_mean_abs: 0.1 -ok_max_mean_abs: 100. -!---------------------------------- -! -! -!============ -variable_entry: va -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Meridional Wind Component -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: -100. -valid_max: 100. -ok_min_mean_abs: 0.1 -ok_max_mean_abs: 50. -!---------------------------------- -! -! -!============ -variable_entry: hus -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -long_name: Specific Humidity -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -!---------------------------------- -! -! -!============ -variable_entry: wap -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: lagrangian_tendency_of_air_pressure -units: Pa s-1 -cell_methods: time: mean -long_name: Omega (=dp/dt) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -!---------------------------------- -! -! -!============ -variable_entry: zg -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: geopotential_height -units: m -cell_methods: time: mean -long_name: Geopotential Height -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -!---------------------------------- -! -! -!============ -variable_entry: hur -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: mean -long_name: Relative Humidity -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -valid_min: 0. -valid_max: 100. -ok_min_mean_abs: 1. -ok_max_mean_abs: 99. -!---------------------------------- -! -! -!============ -variable_entry: tro3 -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_o3_in_air -units: 1e-9 -cell_methods: time: mean -long_name: Ozone Mole Fraction -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure time -!---------------------------------- -! -! -! -! -! *************************************************************** -! -! IPCC Table A1d: Monthly-mean 3-d ISCCP simulator data -! -! *************************************************************** -! -! -! -!============ -variable_entry: clisccp -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: isccp_cloud_area_fraction -units: 1 -cell_methods: time: mean -long_name: Cloud Fraction as Calculated by the ISCCP Simulator -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure2 tau time -valid_min: 0.0 -valid_max: 1.0 -ok_min_mean_abs: 0.001 -ok_max_mean_abs: 0.9 -!---------------------------------- -! -! -! -! -! *************************************************************** -! -! IPCC Table A1e: Monthly-mean 2-d and 3-d sulfate aerosol fields -! -! *************************************************************** -! -! -! -!============ -variable_entry: trsul -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: mass_concentration_of_sulfate_aerosol_in_air -units: 1e-9 kg m-3 -cell_methods: time: mean -long_name: Mass Concentration of Sulfate Aerosol -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude pressure3 time -!---------------------------------- -! -! -!============ -variable_entry: trsult -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_content_of_sulfate_aerosol -units: 1e-6 kg m-2 -cell_methods: time: mean -long_name: Sulfate Burden -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -! -! -! *************************************************************** -! -! IPCC Table A1f: Monthly-mean land surface fields and prescribed land surface characteristics -! -! *************************************************************** -! -! -! -!============ -variable_entry: prveg -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux_onto_canopy -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation Intercepted by Vegetation Canopy -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -!============ -variable_entry: evspsblveg -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux_from_canopy -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Evaporation from Vegetation Canopy -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -!============ -variable_entry: zmla -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_boundary_layer_thickness -units: m -cell_methods: time: mean -long_name: Atmospheric Boundary Layer Thickness -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -!---------------------------------- -! -! -!============ -variable_entry: rootd -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: root_depth -units: m -long_name: Root Depth -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -!---------------------------------- -! -! -!============ -variable_entry: tasmin -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: minimum within days time: mean over days -long_name: Daily Minimum Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -!---------------------------------- -! -! -!============ -variable_entry: tasmax -!============ -! -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: maximum within days time: mean over days -long_name: Daily Miximum Surface Air Temperature -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height1 -!---------------------------------- -! -! diff --git a/Test/reader_2D_3D.f90 b/Test/reader_2D_3D.f90 deleted file mode 100644 index a456049b4ea7f7f5b297cecd130b0769ec47b658..0000000000000000000000000000000000000000 --- a/Test/reader_2D_3D.f90 +++ /dev/null @@ -1,133 +0,0 @@ - SUBROUTINE read_3d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset,min,max - CHARACTER(len=LEN(varname)) :: tmp - - min= -1.e20 - max=1.e20 - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('CLOUD') - factor = 0.02 - offset = -20. - CASE ('U') - factor = .075 - offset = 45. - max=21 - min=17 - CASE ('T') - factor = 1.3 - offset = -27.5 - min=191. - max=240. - CASE ('tro3') - factor = 1. - offset = 0. - END SELECT - - DO k=1,SIZE(field, 3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j,k) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - if (field(i,j,k).gt.max) field(i,j,k)=max - if (field(i,j,k).lt.min) field(i,j,k)=min - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - SUBROUTINE read_2d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset,min,max - CHARACTER(len=LEN(varname)) :: tmp - - min= -1.e20 - max=1.e20 - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('LATENT') - - factor = 4.2 - offset = 0. - min=-65 - max=65 - CASE ('TSURF') - factor = 2.0 - offset = -230. - max=285 - min=270 - CASE ('SOIL_WET') - factor = 4. - offset = 0. - max = 128. - CASE ('PSURF') - factor = 100. - offset = -9.4e4 - CASE ('PRECIP') - factor = 1.2e-6 - offset = 0. - max = 1.e-3 - min=0. - CASE ('SFTLF') - factor = 1. - offset = -12. - max = 100. - min=0. - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,size(field,2)+1-j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - if (field(i,size(field,2)+1-j).gt.max) field(i,size(field,2)+1-j)=max - if (field(i,size(field,2)+1-j).lt.min) field(i,size(field,2)+1-j)=min - END DO - END DO - - END SUBROUTINE read_2d_input_files - SUBROUTINE read_1d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset,min,max - CHARACTER(len=LEN(varname)) :: tmp - - min=-1.e20 - max=1.e20 - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('OFLUX') - factor = .5e14 - offset = 2.e13 - max = 1.492e14 - min = 1.46e14 - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - if (field(i,j).gt.max) field(i,j)=max - if (field(i,j).lt.min) field(i,j)=min - END DO - END DO - - END SUBROUTINE read_1d_input_files diff --git a/Test/reader_2D_3D.h b/Test/reader_2D_3D.h deleted file mode 100644 index a7c5adb6d685d8d0db965ebbde2b3e80a2935aca..0000000000000000000000000000000000000000 --- a/Test/reader_2D_3D.h +++ /dev/null @@ -1,85 +0,0 @@ -void read_3d_input_files(it, varname, field,n0,n1,n2) - int it,n0,n1,n2; - char *varname; - double field[]; -{ - int i,j,k; - float factor,offset,max,min; - min=-1.e20; - max=1.e20; - - if (strcmp(varname,"CLOUD")==0) { - factor = 0.02; - offset = -20.; - } - else if (strcmp(varname,"U")==0) { - factor = .08; - offset = 45.; - } - else if (strcmp(varname,"T")==0) { - factor = 1.2; - offset = -25.; - min=161.; - max=320.; - } - - for (k=0;kmax) field[k*(n0*n1)+j*n0+i]=max; - } - } - } -} - -void read_2d_input_files(it, varname, field, n0, n1) - int it,n0,n1; - char *varname; - double field[]; -{ - int i, j,k; - double factor, offset,min,max; - double tmp; - - min=-1.e20; - max=1.e20; - - if (strcmp(varname,"LATENT")==0){ - factor = 5.; - offset = 0.; - min=-65; - max=65.; - } - else if (strcmp(varname,"TSURF")==0){ - factor = 2.1; - offset = -230.; - max=320.; - } - else if (strcmp(varname,"SOIL_WET")==0){ - factor = 4.; - offset = 0.; - max=130.; - } - else if (strcmp(varname,"PSURF")==0){ - factor = 1.; - offset = -9.4e2; - } - else if (strcmp(varname,"htov")==0){ - factor = .5e14; - offset = 2.e13; - max = 1.492e14; - min = 1.46e14; - } - - for (j=0;jmax) field[k]=max; - } - } -} diff --git a/Test/rewrite_harvardf_data.f90 b/Test/rewrite_harvardf_data.f90 deleted file mode 100644 index 9954ffb9a2c3e678437e948aa24409a17eed2218..0000000000000000000000000000000000000000 --- a/Test/rewrite_harvardf_data.f90 +++ /dev/null @@ -1,125 +0,0 @@ - program rewrite_harvardf_data - -! Use CMOR routines to rewrite Harvard Forest obs data into CF-standard netCDF. -! Start with data in easy-to-read ASCII text (Mathematica input) format, which -! was produced by the script read_harvard_forest_obs_dat.py. - -! Note: first line of each input data file is ASCII text to be skipped over. - -! Curt Covey January 2006 - -USE cmor_users_functions - - character(len = 25) :: input_file = 'Test/tas_harvardf.txt' - character(len = 20) :: output_file = 'tas_harvardf.nc' - character(len = 20) :: units_string = 'K' -! character(len = 20) :: input_table = 'IPCC_test_table_A' -!!$ character(len = 20) :: input_table = 'IPCC_table_A2' - character(len = 20) :: input_table = 'Tables/CMIP5_day' - - character :: first_line ! throwaway - - integer :: iaxis(3) ! identifier for axes (time, latitude, longitude) - -!!$ integer, parameter :: ndatalines = 4383 ! # lines in file that contain data - integer, parameter :: ndatalines = 10 ! # lines in file that contain data - ! ( = total # lines in file - 1) - integer, parameter :: np1 = ndatalines + 1 - - double precision :: lat(1) ! single-member array to hold latitude - double precision :: lon(1) ! single-member array to hold longitude - double precision :: blat(2) ! single-member array to hold latitude - double precision :: blon(2) ! single-member array to hold longitude - double precision :: t(ndatalines) ! array to hold time coordinate - double precision :: tbounds(np1) ! array to hold time coordinate cell bounds - real :: x(ndatalines,1,1) ! array to hold data from each input data file - double precision bt - bt=0. -! -Harvard Forest is located at 42.5 deg N, 72.2 deg W ... - lat(1) = 42.5d0 - lon(1) = 360-72.2d0 - blat(1) = 42.5d0 - blon(1) = 360-72.2d0 - blat(2) = 42.5d0 - blon(2) = 360-72.2d0 -! ... and is 3000 acres ~ a circle with radius of 0.02 deg lat/lon: - latlonrad = 0.02 - do i = 1, ndatalines - t(i) = i - 1.0 ! time coord = "days since" = 0, 1, ... - tbounds(i) = i - 1.5 ! time bounds = -0.5, +0.5, ... - enddo - tbounds(np1) = ndatalines - 0.5 - - print *, 'Opening ', input_file, '...' - open(10, file = input_file) - read(10, '(A)') first_line - print '(A)', 'First line begins with: ', first_line - do i = 1, ndatalines - read(10, '(F6.2)') x(i,1,1) -! print *, x(i,1,1) - enddo - - print *, 'Initializing CMOR ...' - ierrorflag = cmor_setup(netcdf_file_action = 'replace') - - print *, 'Identifying output data sets for CMOR ...' - ierrorflag = cmor_dataset( & - outpath = 'Test', & - experiment_id = & - 'abrupt 4XCO2', & - institution = & - 'Berkeley CAS (Center for Atmospheric Science)', & - source = & - 'GICCM1 ftp://ftp.as.harvard.edu/pub/nigec/HU_Wofsy/hf_data', & - calendar = 'gregorian', & - contact = & - 'Jasmin John, Berkeley CAS ', & - model_id = "GICCM1" ,institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id='N/A',forcing='SO',branch_time=bt) - -! print *, ' ** Time coordinate vector:', t -! print *, ' ** Time bounds vector:', tbounds - - print *, 'Defining coordinates for CMOR output data ...',t - iaxis(1) = cmor_axis( & - table = input_table, & - table_entry = 'time', & - units = 'days since 1992-1-1', & - length = ndatalines, & - coord_vals = t, & - cell_bounds = tbounds) - - iaxis(2) = cmor_axis( & - table = input_table, & - table_entry = 'latitude', & - units = 'degrees_north', & - length = 1, & - coord_vals = lat, & - cell_bounds = blat) - - iaxis(3) = cmor_axis( & - table = input_table, & - table_entry = 'longitude', & - units = 'degrees_east', & - length = 1, & - coord_vals = lon, & - cell_bounds = blon) - - print *, 'Defining CMOR output data variables ...' - ivarb = cmor_variable( & - table = input_table, & - table_entry = 'tas', & - units = units_string, & - axis_ids = iaxis) - -!!$ print *, ' ** Data vector:', x - - print *, 'Writing CMOR output ...',shape(x) - ierrorflag = cmor_write( & - var_id = ivarb, & - data = x(:,1,1)+2.5) - - print *, 'Closing file(s) created by CMOR ...' - ierrorflag = cmor_close() - - end program rewrite_harvardf_data diff --git a/Test/speed_test_table_A b/Test/speed_test_table_A deleted file mode 100644 index 8bea21c3810b999e580b8a5406d43695baa19863..0000000000000000000000000000000000000000 --- a/Test/speed_test_table_A +++ /dev/null @@ -1,2131 +0,0 @@ -table_id: Table Amon -modeling_realm: atmos - -frequency: mon - -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 02 April 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id branch_time contact ! space separated required global attribute - -forcings: N/A Nat Ant GHG SD SI SA TO SO Oz LU Sl Vl SS Ds BC MD OC AA - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'volcano-free hindcasts XXXX' 'noVolcXXXX' -expt_id_ok: 'prediction with 2010 volcano' 'volcIn2010' -expt_id_ok: 'pre-industrial control' 'piControl' -expt_id_ok: 'Historical' 'historical' -expt_id_ok: 'mid-Holocene' 'midHolocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.6' 'rcp26' -expt_id_ok: 'RCP6' 'rcp60' -expt_id_ok: 'ESM pre-industrial control' 'esmControl' -expt_id_ok: 'ESM historical' 'esmHistorical' -expt_id_ok: 'ESM RCP8.5' 'esmrcp85' -expt_id_ok: 'ESM fixed climate 1' 'esmFixClim1' -expt_id_ok: 'ESM fixed climate 2' 'esmFixClim2' -expt_id_ok: 'ESM feedback 1' 'esmFdbk1' -expt_id_ok: 'ESM feedback 2' 'esmFdbk2' -expt_id_ok: '1 percent per year CO2' '1pctCO2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt4xCO2' -expt_id_ok: 'natural-only' 'historicalNat' -expt_id_ok: 'GHG-only' 'historicalGHG' -expt_id_ok: 'anthropogenic-only' 'historicalAnt' -expt_id_ok: 'anthropogenic sulfate aerosol direct effect only' 'historicalSD' -expt_id_ok: 'anthropogenic sulfate aerosol indirect effect only' 'historicalSI' -expt_id_ok: 'anthropogenic sulfate aerosol only' 'historicalSA' -expt_id_ok: 'tropospheric ozone only' 'historicalTO' -expt_id_ok: 'stratospheric ozone' 'historicalSO' -expt_id_ok: 'ozone only' 'historicalOz' -expt_id_ok: 'land-use change only' 'historicalLU' -expt_id_ok: 'solar irradiance only' 'historicalSl' -expt_id_ok: 'volcanic aerosol only' 'historicalVl' -expt_id_ok: 'sea salt only' 'historicalSS' -expt_id_ok: 'dust' 'historicalDs' -expt_id_ok: 'black carbon only' 'historicalBC' -expt_id_ok: 'mineral dust only' 'historicalMD' -expt_id_ok: 'organic carbon only' 'historicalOC' -expt_id_ok: 'anthropogenic aerosols only' 'historicalAA' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst2030' -expt_id_ok: 'control SST climatology' 'sstClim' -expt_id_ok: 'CO2 forcing' 'sstClim4xCO2' -expt_id_ok: 'all aerosol forcing' 'sstClimAerosol' -expt_id_ok: 'sulfate aerosol forcing' 'sstClimSulfate' -expt_id_ok: '4xCO2 AMIP' 'amip4xCO2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amipFuture' -expt_id_ok: 'aqua planet control' 'aquaControl' -expt_id_ok: '4xCO2 aqua planet' 'aqua4xCO2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua4K' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip4K' - - -approx_interval: 30.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0 -valid_max: 360 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90 -valid_max: 90 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: plevs -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -tolerance: 0.001 - -type: double -requested: 100000. 92500. 85000. 70000. 60000. 50000. 40000. 30000. 25000. 20000. 15000. 10000. 7000. 5000. 3000. 2000. 1000. ! space-separated list of requested coordinates -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: alevhalf -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: atmospheric model half-level -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -type: double -must_have_bounds: no -index_only: ok -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time2 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -climatology: yes -!---------------------------------- -! - - -!============ -axis_entry: height2m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1 -valid_max: 10 -stored_direction: increasing -type: double -value: 2. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: height10m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1 -valid_max: 30 -stored_direction: increasing -type: double -value: 10. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - -!============ -axis_entry: smooth_level -!============ -! -! This coordinate is a hybrid height coordinate with units of meters (m). -! It increases upward. -! The values of a(k)*ztop, which appear in the formula below, should be stored as smooth_level. -! Note that in the netCDF file the variable will be named "lev", not smooth_level. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sleve_coordinate -units: m -axis: Z -positive: up -long_name: atmosphere smooth level vertical (SLEVE) coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: -200. -valid_max: 800000. -formula: z(n,k,j,i) = a(k)*ztop + b1(k)*zsurf1(n,j,i) + b2(k)*zsurf2(n,j,i) -z_factors: a: a b1: b1 b2: b2 ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -z_bounds_factors: a: a_bnds b1: b1_bnds b2: b2_bnds ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -!---------------------------------- -! -!============ -axis_entry: natural_log_pressure -!============ -! -!This coordinate is dimensionless and varies from near 0 at the surface and increases upward. -! The values of lev(k), which appears in the formula below, should be stored as natural_log_pressure. -! Note that in the netCDF file the variable will be named "lev", not natural_log_pressure. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_ln_pressure_coordinate -axis: Z -long_name: atmosphere natural log pressure coordinate -positive: down -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 20. -formula: p(k) = p0 * exp(-lev(k)) -z_factors: p0: p0 lev: lev -z_bounds_factors: p0: p0 lev: lev_bnds -!---------------------------------- -! -!============ -axis_entry: standard_sigma -!============ -! -! This coordinate is dimensionless and varies from 0 at the model top to 1.0 at the surface. -! The values of sigma(k), which appears in the formula below, should be stored as standard_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -z_factors: ptop: ptop sigma: lev ps: ps -z_bounds_factors: ptop: ptop sigma: lev_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of a(k)+ b(k), which appear in the formula below, should be stored as standard_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_hybrid_sigma. -! -!--------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of ap(k)/p0 + b(k), which appear in the formula below, should be stored as alternate_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not alternate_hybrid_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -z_factors: ap: ap b: b ps: ps -z_bounds_factors: ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! This coordinate has dimension of meters (m) and increases upward. -! The values of a(k) which appear in the formula below, should be stored as hybrid_height. -! Note that in the netCDF file the variable will be named "lev", not hybrid_height. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0.0 -formula: z(k,j,i) = a(k) + b(k)*orog(j,i) -z_factors: a: lev b: b orog: orog -z_bounds_factors: a: lev_bnds b: b_bnds orog: orog -!---------------------------------- -! -! *************************************************************** -! -! Vertical coordinate formula terms: -! -! *************************************************************** -! -! -!============ -variable_entry: orog -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -comment: height above the geoid; as defined here, ""the geoid"" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Report here the height above the present-day geoid. Over ocean, report as 0.0 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: orog -type: real -valid_min: -700 -valid_max: 1.00E+04 -!---------------------------------- -! -! -!============ -variable_entry: p0 -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: reference pressure -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -! -!============ -variable_entry: a -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k+1/2) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ztop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: height of top of model -units: m -!---------------------------------- -! -! -! - -!============ -variable_entry: tas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -deflate: ${DEFLATE_LEVEL} -shuffle: ${SHUFFLE} -deflate_level: ${DEFLATE_LEVEL} -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Near-Surface Air Temperature -comment: near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tas -type: real -!---------------------------------- -! - -!============ -variable_entry: ts -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Surface Temperature -comment: ""skin"" temperature (i.e., SST for open ocean) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ts -type: real -!---------------------------------- -! - -!============ -variable_entry: tasmin -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: minimum within days time: mean over days -long_name: Daily Minimum Near-Surface Air Temperature -comment: monthly mean of the daily-minimum near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tasmin -type: real -!---------------------------------- -! - -!============ -variable_entry: tasmax -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: maximum within days time: mean over days -long_name: Daily Maximum Near-Surface Air Temperature -comment: monthly mean of the daily-maximum near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tasmax -type: real -!---------------------------------- -! - -!============ -variable_entry: psl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -long_name: Sea Level Pressure -comment: not, in general, the same as surface pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: psl -type: real -!---------------------------------- -! - -!============ -variable_entry: ps -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: mean -long_name: Surface Air Pressure -comment: not, in general, the same as mean sea-level pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ps -type: real -!---------------------------------- -! - -!============ -variable_entry: uas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Eastward Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) eastward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: uas -type: real -!---------------------------------- -! - -!============ -variable_entry: vas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Northward Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) northward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: vas -type: real -!---------------------------------- -! - -!============ -variable_entry: sfcWind -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: wind_speed -units: m s-1 -cell_methods: time: mean -long_name: Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) wind speed. This is the mean of the speed, not the speed computed from the mean u and v components of wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: sfcWind -type: real -!---------------------------------- -! - -!============ -variable_entry: hurs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: mean -long_name: Near-Surface Relative Humidity -comment: near-surface (usually, 2meters) relative humidity expressed as a percentage. This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: hurs -type: real -!---------------------------------- -! - -!============ -variable_entry: huss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -long_name: Near-Surface Specific Humidity -comment: near-surface (usually, 2 meters) specific humidity. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: huss -type: real -!---------------------------------- -! - -!============ -variable_entry: pr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Precipitation -comment: at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: pr -type: real -!---------------------------------- -! - -!============ -variable_entry: prsn -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: snowfall_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Snowfall Flux -comment: at surface; includes precipitation of all forms of water in the solid phase -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prsn -type: real -!---------------------------------- -! - -!============ -variable_entry: prc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Convective Precipitation -comment: at surface; includes both liquid and solid phases. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prc -type: real -!---------------------------------- -! - -!============ -variable_entry: evspsbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Evaporation -comment: at surface; flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: evspsbl -type: real -!---------------------------------- -! - -!============ -variable_entry: sbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_sublimation_flux -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Surface Snow and Ice Sublimation Flux -comment: The snow and ice sublimation flux is the loss of snow and ice mass from the surface resulting from their conversion to water vapor that enters the atmosphere. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: sbl -type: real -!---------------------------------- -! - -!============ -variable_entry: tauu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_eastward_stress -units: Pa -cell_methods: time: mean -long_name: Surface Downward Eastward Wind Stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tauu -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: tauv -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_northward_stress -units: Pa -cell_methods: time: mean -long_name: Surface Downward Northward Wind Stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tauv -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: hfls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -cell_methods: time: mean -long_name: Surface Upward Sensible Heat Flux -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfss -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlds -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rlus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlus -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsds -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsus -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsdscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsdscs -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsuscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Surface Upwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsuscs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rldscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: Surface Downwelling Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rldscs -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsdt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_incoming_shortwave_flux -units: W m-2 -cell_methods: time: mean -long_name: TOA Incident Shortwave Radiation -comment: incident shortwave at the top of the atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsdt -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsut -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux -units: W m-2 -cell_methods: time: mean -long_name: TOA Outgoing Shortwave Radiation -comment: at the top of the atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsut -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlut -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux -units: W m-2 -cell_methods: time: mean -long_name: TOA Outgoing Longwave Radiation -comment: at the top of the atmosphere (to be compared with satellite measurements) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlut -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlutcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: TOA Outgoing Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlutcs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsutcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -long_name: TOA Outgoing Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsutcs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: prw -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_water_vapor_content -units: kg m-2 -cell_methods: time: mean -long_name: Water Vapor Path -comment: vertically integrated through the atmospheric column -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prw -type: real -!---------------------------------- -! - -!============ -variable_entry: clt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -long_name: Total Cloud Fraction -comment: for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clt -type: real -!---------------------------------- -! - -!============ -variable_entry: clwvi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_condensed_water_content -units: kg m-2 -cell_methods: time: mean -long_name: Condensed Water Path -comment: calculate mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clwvi -type: real -!---------------------------------- -! - -!============ -variable_entry: clivi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_ice_content -units: kg m-2 -cell_methods: time: mean -long_name: Ice Water Path -comment: calculate mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Include precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clivi -type: real -!---------------------------------- -! - -!============ -variable_entry: rtmt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_downward_radiative_flux_at_top_of_atmosphere_model -units: W m-2 -cell_methods: time: mean -long_name: Net Downward Flux at Top of Model -comment: i.e., at the top of that portion of the atmosphere where dynamics are explicitly treated by the model. Report only if this differs from the net downward radiative flux at the top of the atmosphere. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rtmt -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: ccb -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_convective_cloud_base -units: Pa -cell_methods: time: mean -long_name: Air Pressure at Convective Cloud Base -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ccb -type: real -!---------------------------------- -! - -!============ -variable_entry: cct -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_convective_cloud_top -units: Pa -cell_methods: time: mean -long_name: Air Pressure at Convective Cloud Top -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cct -type: real -!---------------------------------- -! - -!============ -variable_entry: ci -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: 1 -cell_methods: time: mean -long_name: Fraction of Time Convection Occurs -comment: Fraction of time that convection occurs in the grid cell . -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ci -type: real -!---------------------------------- -! - -!============ -variable_entry: sci -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: 1 -cell_methods: time: mean -long_name: Fraction of Time Shallow Convection Occurs -comment: Fraction of time that shallow convection occurs in the grid cell. ( For models with a distinct shallow convection scheme only) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: sci -type: real -!---------------------------------- -! - -!============ -variable_entry: fco2antt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2 -comment: This is requested only for the emission-driven coupled carbon climate model runs. Do not include natural fire sources, but include all anthropogenic sources, including fossil fuel use, cement production, agricultural burning, and sources associated with anthropogenic land use change excluding forest regrowth. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fco2antt -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fco2fos -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Carbon Mass Flux into Atmosphere Due to Fossil Fuel Emissions of CO2 -comment: This is requested only for the emission-driven coupled carbon climate model runs. Report the prescribed anthropogenic CO2 flux from fossil fuel use, including cement production, and flaring (but not from land-use changes, agricultural burning, forest regrowth, etc.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fco2fos -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fco2nat -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg m-2 s-1 -cell_methods: time: mean -long_name: Surface Carbon Mass Flux into the Atmosphere Due to Natural Sources -comment: Report from all simulations (both emission-driven and concentration-driven) performed by models with fully interactive and responsive carbon cycles. This is what the atmosphere sees (on its own grid). This field should be equivalent to the combined natural fluxes of carbon (requested in the L_mon and O_mon tables) that account for natural exchanges between the atmosphere and land or ocean reservoirs (i.e., ""net ecosystem biospheric productivity"", for land, and ""air to sea CO2 flux"", for ocean.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fco2nat -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: cl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Cloud Area Fraction -comment: Report on model layers (not standard pressures). Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: cl -type: real -!---------------------------------- -! - -!============ -variable_entry: clw -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_cloud_liquid_water_in_air -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mass Fraction of Cloud Liquid Water -comment: Report on model layers (not standard pressures). Include both large-scale and convective cloud. Calculate as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cells. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: clw -type: real -!---------------------------------- -! - -!============ -variable_entry: cli -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_cloud_ice_in_air -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mass Fraction of Cloud Ice -comment: Report on model layers (not standard pressures). Include both large-scale and convective cloud. Calculate as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: cli -type: real -!---------------------------------- -! - -!============ -variable_entry: mc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_net_upward_convective_mass_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Convective Mass Flux -comment: Report on model half-levels (i.e., model layer bounds and not standard pressures). The net mass flux should represent the difference between the updraft and downdraft components. The flux is computed as the mass divided by the area of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: mc -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: ta -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: ta -type: real -!---------------------------------- -! - -!============ -variable_entry: ua -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Eastward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: ua -type: real -!---------------------------------- -! - -!============ -variable_entry: va -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Northward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: va -type: real -!---------------------------------- -! - -!============ -variable_entry: hus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Specific Humidity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: hus -type: real -!---------------------------------- -! - -!============ -variable_entry: hur -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Relative Humidity -comment: This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: hur -type: real -!---------------------------------- -! - -!============ -variable_entry: wap -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: lagrangian_tendency_of_air_pressure -units: Pa s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: omega (=dp/dt) -comment: commonly referred to as ""omega"", this represents the vertical component of velocity in pressure coordinates (positive down) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: wap -type: real -!---------------------------------- -! - -!============ -variable_entry: zg -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: geopotential_height -units: m -cell_methods: time: mean -cell_measures: area: areacella -long_name: Geopotential Height -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: zg -type: real -!---------------------------------- -! - -!============ -variable_entry: tro3 -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_ozone_in_air -units: 1e-9 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mole Fraction of O3 -comment: If this does not change over time (except possibly to vary identically over each annual cycle), report instead the variable described in the next table entry. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: tro3 -type: real -!---------------------------------- -! - -!============ -variable_entry: tro3Clim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_ozone_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Mole Fraction of O3 -comment: If O3 does not vary from one year to the next, report 12 months, starting with January. (Note: include all 12 months even if the values don't vary seasonally.) When calling CMOR, identify this variable as tro3Clim, not tro3. If the O3 varies from one year to the next, then report instead the field described in the previous table entry. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: tro3 -type: real -!---------------------------------- -! - -!============ -variable_entry: co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_carbon_dioxide_in_air -units: 1e-6 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mole Fraction of CO2 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If spatially uniform, omit this field, but report Total Atmospheric Mass of CO2 (see the table entry after the next one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: co2 -type: real -!---------------------------------- -! - -!============ -variable_entry: co2Clim -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_carbon_dioxide_in_air -units: 1e-6 -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Mole Fraction of CO2 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CO2 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as co2Clim, not co2. If CO2 is spatially uniform, omit this field, but report Total Atmospheric Mass of CO2 (see the table entry after the next). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: co2 -type: real -!---------------------------------- -! - -!============ -variable_entry: co2mass -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg -cell_methods: time: mean -long_name: Total Atmospheric Mass of CO2 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If CO2 is spatially nonuniform, omit this field, but report Mole Fraction of CO2 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: co2mass -type: real -!---------------------------------- -! - -!============ -variable_entry: co2massClim -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: kg -cell_methods: time: mean within years time: mean over years -long_name: Total Atmospheric Mass of CO2 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CO2 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as co2massClim, not co2mass. If CO2 is spatially nonuniform, omit this field, but report Mole Fraction of CO2 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time2 -out_name: co2mass -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4 -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mole Fraction of CH4 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If CH4 is spatially uniform, omit this field, but report Global Mean Mole Fraction of CH4 (see the table entry after the next one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: ch4 -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4 -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Mole Fraction of CH4 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CH4 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as ch4global, not ch4. If CH4 is spatially uniform, omit this field, but report Global Mean Mole Fraction of CH4 (see the table entry after the next). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: ch4 -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4global -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean -long_name: Global Mean Mole Fraction of CH4 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If CH4 is spatially nonuniform, omit this field, but report Mole Fraction of CH4 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: ch4global -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4globalClim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -long_name: Global Mean Mole Fraction of CH4 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CH4 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as ch4globalClim, not ch4global. If CH4 is spatially nonuniform, omit this field, but report Global Mean Mole Fraction of CH4 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time2 -out_name: ch4global -type: real -!---------------------------------- -! - -!============ -variable_entry: n2o -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mole Fraction of N2O -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If N2O is spatially uniform, omit this field, but report Global Mean Mole Fraction of N2O (see the table entry after the next one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: n2o -type: real -!---------------------------------- -! - -!============ -variable_entry: n2oClim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Mole Fraction of N2O -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the N2O does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as n2oglobal, not n2o. If N2O is spatially uniform, omit this field, but report Global Mean Mole Fraction of N2O (see the table entry after the next). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: n2o -type: real -!---------------------------------- -! - -!============ -variable_entry: n2oglobal -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean -long_name: Global Mean Mole Fraction of N2O -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If N2O is spatially nonuniform, omit this field, but report Mole Fraction of N2O (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: n2oglobal -type: real -!---------------------------------- -! - -!============ -variable_entry: n2oglobalClim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -long_name: Global Mean Mole Fraction of N2O -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the N2O does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as ch4globalClim, not ch4global. If N2O is spatially nonuniform, omit this field, but report Global Mean Mole Fraction of N2O (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time2 -out_name: n2oglobal -type: real -!---------------------------------- -! - - -!============ -variable_entry: pfull -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Pressure on Model Levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time2 -out_name: pfull -type: real -!---------------------------------- -! - -!============ -variable_entry: phalf -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Pressure on Model Half-Levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time2 -out_name: phalf -type: real -!---------------------------------- -! - diff --git a/Test/t_cmor_fx_basin.f90 b/Test/t_cmor_fx_basin.f90 deleted file mode 100644 index cbd2592cae60e160762e939d8664214553911728..0000000000000000000000000000000000000000 --- a/Test/t_cmor_fx_basin.f90 +++ /dev/null @@ -1,226 +0,0 @@ -program t_cmor_fx_basin - - use cmor_users_functions - - implicit none - - !--- Cmor variable/axis ID's - integer :: id_xaxis, id_yaxis, curr_vid - integer, allocatable :: dimids(:) - integer :: error_flag - - !--- Ocean grid - integer, parameter :: nlat_o=192, nlon_o=256 - double precision, dimension(nlat_o) :: lat_o - double precision, dimension(nlat_o+1) :: lat_o_bnds - double precision, dimension(nlon_o) :: lon_o - double precision, dimension(nlon_o+1) :: lon_o_bnds - double precision, dimension(nlon_o,nlat_o) :: crap - !--- Misc - character(256) :: outpath = 'TestMe' - character(1024) :: source = 'CanESM2 2010 atmosphere: CanAM4 (AGCM15i, T63L35)' - character(1024) :: global_comment = ' ' - character(1024) :: references = 'http://www.cccma.ec.gc.ca/models' - character(1024) :: history = ' ' - character(256) :: institution = & - 'CCCma (Canadian Centre for Climate Modelling and Analysis, Victoria, BC, Canada)' - character(64) :: institute_id = 'CCCma' - character(64) :: experiment_id = 'piControl' - character(64) :: contact = 'cccma_info@ec.gc.ca' - character(64) :: time_units = 'days since 1850-1-1' - character(64) :: calendar = '365_day' - character(64) :: model_id = 'CanESM2' - character(1024) :: forcing = 'N/A' - character(64) :: parent_experiment_id = 'N/A' - character(64) :: parent_experiment_rip = 'N/A' - character(64) :: mip_table = 'CMIP5_Amon' - character(128) :: var_name = ' ' - character(128) :: var_units = 'K' - character(512) :: var_history = ' ' - character(512) :: var_comment = ' ' - character(512) :: var_positive = ' ' - double precision :: branch_time=0.d0 - - !=============================================================================== - !=============================================================================== - - error_flag = cmor_setup(inpath='/git/cmip5-cmor-tables/Tables', & - netcdf_file_action=CMOR_REPLACE, & - exit_control=CMOR_EXIT_ON_MAJOR, & - create_subdirectories=0) - - if (error_flag.ne.0) then - write(6,*)'Error in cmor_setup: ',error_flag - stop - endif - - error_flag = cmor_dataset( & - outpath=trim(outpath), & - experiment_id=trim(experiment_id), & - institution=trim(institution), & - source=trim(source), & - calendar=trim(calendar), & - realization=1, & - institute_id = trim("hi"), & - initialization_method=1, & - physics_version=1, & - contact=trim(contact), & - history=trim(history), & - comment=trim(global_comment), & - references=trim(references), & - model_id=trim(model_id), & - forcing=trim(forcing), & - parent_experiment_id=trim(parent_experiment_id), & - parent_experiment_rip=trim(parent_experiment_rip), & - branch_time=branch_time) - - if (error_flag.ne.0) then - write(6,*)"Error in cmor_dataset: ",error_flag - stop - endif - - call def_ogrid(nlon_o, nlat_o, lon_o, lon_o_bnds, lat_o, lat_o_bnds) - - id_yaxis = cmor_axis( & - table="CMIP5_fx", & - table_entry='latitude', & - units='degrees_north', & - length=nlat_o, & - coord_vals=lat_o, & - cell_bounds=lat_o_bnds) - - id_xaxis = cmor_axis( & - table="CMIP5_fx", & - table_entry='longitude', & - length=nlon_o, & - units='degrees_east', & - coord_vals=lon_o, & - cell_bounds=lon_o_bnds) - - var_name = "basin" - ! var_name = "areacello" - - curr_vid = cmor_variable( & - table="CMIP5_fx", & - table_entry=trim(var_name), & - units="1", & - axis_ids=(/ id_xaxis, id_yaxis /), & - missing_value=1.0e38, & - positive=trim(var_positive), & - original_name="BASIN", & - history=trim(var_history), & - comment=trim(var_comment) ) - - - error_flag = cmor_write(curr_vid,crap) - - error_flag = cmor_close() - - if (error_flag.ne.0) then - write(6,*)"Error in cmor_close: ",error_flag - stop - endif - -end program t_cmor_fx_basin - -subroutine def_ogrid(nlon_o, nlat_o, lon_o, lon_o_bnds, lat_o, lat_o_bnds) - integer :: nlon_o, nlat_o - double precision :: lon_o(nlon_o), lon_o_bnds(nlon_o+1), lat_o(nlat_o), lat_o_bnds(nlat_o+1) - - lon_o = (/ & - -7.0313D-01, 7.0313D-01, 2.1094D+00, 3.5156D+00, 4.9219D+00, 6.3281D+00, 7.7344D+00, 9.1406D+00, 1.0547D+01, 1.1953D+01 & -, 1.3359D+01, 1.4766D+01, 1.6172D+01, 1.7578D+01, 1.8984D+01, 2.0391D+01, 2.1797D+01, 2.3203D+01, 2.4609D+01, 2.6016D+01 & -, 2.7422D+01, 2.8828D+01, 3.0234D+01, 3.1641D+01, 3.3047D+01, 3.4453D+01, 3.5859D+01, 3.7266D+01, 3.8672D+01, 4.0078D+01 & -, 4.1484D+01, 4.2891D+01, 4.4297D+01, 4.5703D+01, 4.7109D+01, 4.8516D+01, 4.9922D+01, 5.1328D+01, 5.2734D+01, 5.4141D+01 & -, 5.5547D+01, 5.6953D+01, 5.8359D+01, 5.9766D+01, 6.1172D+01, 6.2578D+01, 6.3984D+01, 6.5391D+01, 6.6797D+01, 6.8203D+01 & -, 6.9609D+01, 7.1016D+01, 7.2422D+01, 7.3828D+01, 7.5234D+01, 7.6641D+01, 7.8047D+01, 7.9453D+01, 8.0859D+01, 8.2266D+01 & -, 8.3672D+01, 8.5078D+01, 8.6484D+01, 8.7891D+01, 8.9297D+01, 9.0703D+01, 9.2109D+01, 9.3516D+01, 9.4922D+01, 9.6328D+01 & -, 9.7734D+01, 9.9141D+01, 1.0055D+02, 1.0195D+02, 1.0336D+02, 1.0477D+02, 1.0617D+02, 1.0758D+02, 1.0898D+02, 1.1039D+02 & -, 1.1180D+02, 1.1320D+02, 1.1461D+02, 1.1602D+02, 1.1742D+02, 1.1883D+02, 1.2023D+02, 1.2164D+02, 1.2305D+02, 1.2445D+02 & -, 1.2586D+02, 1.2727D+02, 1.2867D+02, 1.3008D+02, 1.3148D+02, 1.3289D+02, 1.3430D+02, 1.3570D+02, 1.3711D+02, 1.3852D+02 & -, 1.3992D+02, 1.4133D+02, 1.4273D+02, 1.4414D+02, 1.4555D+02, 1.4695D+02, 1.4836D+02, 1.4977D+02, 1.5117D+02, 1.5258D+02 & -, 1.5398D+02, 1.5539D+02, 1.5680D+02, 1.5820D+02, 1.5961D+02, 1.6102D+02, 1.6242D+02, 1.6383D+02, 1.6523D+02, 1.6664D+02 & -, 1.6805D+02, 1.6945D+02, 1.7086D+02, 1.7227D+02, 1.7367D+02, 1.7508D+02, 1.7648D+02, 1.7789D+02, 1.7930D+02, 1.8070D+02 & -, 1.8211D+02, 1.8352D+02, 1.8492D+02, 1.8633D+02, 1.8773D+02, 1.8914D+02, 1.9055D+02, 1.9195D+02, 1.9336D+02, 1.9477D+02 & -, 1.9617D+02, 1.9758D+02, 1.9898D+02, 2.0039D+02, 2.0180D+02, 2.0320D+02, 2.0461D+02, 2.0602D+02, 2.0742D+02, 2.0883D+02 & -, 2.1023D+02, 2.1164D+02, 2.1305D+02, 2.1445D+02, 2.1586D+02, 2.1727D+02, 2.1867D+02, 2.2008D+02, 2.2148D+02, 2.2289D+02 & -, 2.2430D+02, 2.2570D+02, 2.2711D+02, 2.2852D+02, 2.2992D+02, 2.3133D+02, 2.3273D+02, 2.3414D+02, 2.3555D+02, 2.3695D+02 & -, 2.3836D+02, 2.3977D+02, 2.4117D+02, 2.4258D+02, 2.4398D+02, 2.4539D+02, 2.4680D+02, 2.4820D+02, 2.4961D+02, 2.5102D+02 & -, 2.5242D+02, 2.5383D+02, 2.5523D+02, 2.5664D+02, 2.5805D+02, 2.5945D+02, 2.6086D+02, 2.6227D+02, 2.6367D+02, 2.6508D+02 & -, 2.6648D+02, 2.6789D+02, 2.6930D+02, 2.7070D+02, 2.7211D+02, 2.7352D+02, 2.7492D+02, 2.7633D+02, 2.7773D+02, 2.7914D+02 & -, 2.8055D+02, 2.8195D+02, 2.8336D+02, 2.8477D+02, 2.8617D+02, 2.8758D+02, 2.8898D+02, 2.9039D+02, 2.9180D+02, 2.9320D+02 & -, 2.9461D+02, 2.9602D+02, 2.9742D+02, 2.9883D+02, 3.0023D+02, 3.0164D+02, 3.0305D+02, 3.0445D+02, 3.0586D+02, 3.0727D+02 & -, 3.0867D+02, 3.1008D+02, 3.1148D+02, 3.1289D+02, 3.1430D+02, 3.1570D+02, 3.1711D+02, 3.1852D+02, 3.1992D+02, 3.2133D+02 & -, 3.2273D+02, 3.2414D+02, 3.2555D+02, 3.2695D+02, 3.2836D+02, 3.2977D+02, 3.3117D+02, 3.3258D+02, 3.3398D+02, 3.3539D+02 & -, 3.3680D+02, 3.3820D+02, 3.3961D+02, 3.4102D+02, 3.4242D+02, 3.4383D+02, 3.4523D+02, 3.4664D+02, 3.4805D+02, 3.4945D+02 & -, 3.5086D+02, 3.5227D+02, 3.5367D+02, 3.5508D+02, 3.5648D+02, 3.5789D+02 /) - lon_o_bnds = (/ & - -1.4063D+00, 0.0000D+00, 1.4063D+00, 2.8125D+00, 4.2188D+00, 5.6250D+00, 7.0313D+00, 8.4375D+00, 9.8438D+00, 1.1250D+01 & -, 1.2656D+01, 1.4063D+01, 1.5469D+01, 1.6875D+01, 1.8281D+01, 1.9688D+01, 2.1094D+01, 2.2500D+01, 2.3906D+01, 2.5313D+01 & -, 2.6719D+01, 2.8125D+01, 2.9531D+01, 3.0938D+01, 3.2344D+01, 3.3750D+01, 3.5156D+01, 3.6563D+01, 3.7969D+01, 3.9375D+01 & -, 4.0781D+01, 4.2188D+01, 4.3594D+01, 4.5000D+01, 4.6406D+01, 4.7813D+01, 4.9219D+01, 5.0625D+01, 5.2031D+01, 5.3438D+01 & -, 5.4844D+01, 5.6250D+01, 5.7656D+01, 5.9063D+01, 6.0469D+01, 6.1875D+01, 6.3281D+01, 6.4688D+01, 6.6094D+01, 6.7500D+01 & -, 6.8906D+01, 7.0313D+01, 7.1719D+01, 7.3125D+01, 7.4531D+01, 7.5938D+01, 7.7344D+01, 7.8750D+01, 8.0156D+01, 8.1563D+01 & -, 8.2969D+01, 8.4375D+01, 8.5781D+01, 8.7188D+01, 8.8594D+01, 9.0000D+01, 9.1406D+01, 9.2813D+01, 9.4219D+01, 9.5625D+01 & -, 9.7031D+01, 9.8438D+01, 9.9844D+01, 1.0125D+02, 1.0266D+02, 1.0406D+02, 1.0547D+02, 1.0688D+02, 1.0828D+02, 1.0969D+02 & -, 1.1109D+02, 1.1250D+02, 1.1391D+02, 1.1531D+02, 1.1672D+02, 1.1813D+02, 1.1953D+02, 1.2094D+02, 1.2234D+02, 1.2375D+02 & -, 1.2516D+02, 1.2656D+02, 1.2797D+02, 1.2938D+02, 1.3078D+02, 1.3219D+02, 1.3359D+02, 1.3500D+02, 1.3641D+02, 1.3781D+02 & -, 1.3922D+02, 1.4063D+02, 1.4203D+02, 1.4344D+02, 1.4484D+02, 1.4625D+02, 1.4766D+02, 1.4906D+02, 1.5047D+02, 1.5188D+02 & -, 1.5328D+02, 1.5469D+02, 1.5609D+02, 1.5750D+02, 1.5891D+02, 1.6031D+02, 1.6172D+02, 1.6313D+02, 1.6453D+02, 1.6594D+02 & -, 1.6734D+02, 1.6875D+02, 1.7016D+02, 1.7156D+02, 1.7297D+02, 1.7438D+02, 1.7578D+02, 1.7719D+02, 1.7859D+02, 1.8000D+02 & -, 1.8141D+02, 1.8281D+02, 1.8422D+02, 1.8563D+02, 1.8703D+02, 1.8844D+02, 1.8984D+02, 1.9125D+02, 1.9266D+02, 1.9406D+02 & -, 1.9547D+02, 1.9688D+02, 1.9828D+02, 1.9969D+02, 2.0109D+02, 2.0250D+02, 2.0391D+02, 2.0531D+02, 2.0672D+02, 2.0813D+02 & -, 2.0953D+02, 2.1094D+02, 2.1234D+02, 2.1375D+02, 2.1516D+02, 2.1656D+02, 2.1797D+02, 2.1938D+02, 2.2078D+02, 2.2219D+02 & -, 2.2359D+02, 2.2500D+02, 2.2641D+02, 2.2781D+02, 2.2922D+02, 2.3063D+02, 2.3203D+02, 2.3344D+02, 2.3484D+02, 2.3625D+02 & -, 2.3766D+02, 2.3906D+02, 2.4047D+02, 2.4188D+02, 2.4328D+02, 2.4469D+02, 2.4609D+02, 2.4750D+02, 2.4891D+02, 2.5031D+02 & -, 2.5172D+02, 2.5313D+02, 2.5453D+02, 2.5594D+02, 2.5734D+02, 2.5875D+02, 2.6016D+02, 2.6156D+02, 2.6297D+02, 2.6438D+02 & -, 2.6578D+02, 2.6719D+02, 2.6859D+02, 2.7000D+02, 2.7141D+02, 2.7281D+02, 2.7422D+02, 2.7563D+02, 2.7703D+02, 2.7844D+02 & -, 2.7984D+02, 2.8125D+02, 2.8266D+02, 2.8406D+02, 2.8547D+02, 2.8688D+02, 2.8828D+02, 2.8969D+02, 2.9109D+02, 2.9250D+02 & -, 2.9391D+02, 2.9531D+02, 2.9672D+02, 2.9813D+02, 2.9953D+02, 3.0094D+02, 3.0234D+02, 3.0375D+02, 3.0516D+02, 3.0656D+02 & -, 3.0797D+02, 3.0938D+02, 3.1078D+02, 3.1219D+02, 3.1359D+02, 3.1500D+02, 3.1641D+02, 3.1781D+02, 3.1922D+02, 3.2063D+02 & -, 3.2203D+02, 3.2344D+02, 3.2484D+02, 3.2625D+02, 3.2766D+02, 3.2906D+02, 3.3047D+02, 3.3188D+02, 3.3328D+02, 3.3469D+02 & -, 3.3609D+02, 3.3750D+02, 3.3891D+02, 3.4031D+02, 3.4172D+02, 3.4313D+02, 3.4453D+02, 3.4594D+02, 3.4734D+02, 3.4875D+02 & -, 3.5016D+02, 3.5156D+02, 3.5297D+02, 3.5438D+02, 3.5578D+02, 3.5719D+02, 3.585937D+02 /) - lat_o = (/ & - -8.9430D+01,-8.8289D+01,-8.7148D+01,-8.6108D+01,-8.5167D+01,-8.4227D+01,-8.3290D+01,-8.2356D+01,-8.1422D+01,-8.0489D+01 & -,-7.9557D+01,-7.8624D+01,-7.7693D+01,-7.6761D+01,-7.5830D+01,-7.4898D+01,-7.3967D+01,-7.3036D+01,-7.2105D+01,-7.1174D+01 & -,-7.0244D+01,-6.9313D+01,-6.8382D+01,-6.7451D+01,-6.6521D+01,-6.5590D+01,-6.4660D+01,-6.3729D+01,-6.2798D+01,-6.1868D+01 & -,-6.0937D+01,-6.0007D+01,-5.9076D+01,-5.8146D+01,-5.7215D+01,-5.6285D+01,-5.5355D+01,-5.4424D+01,-5.3494D+01,-5.2563D+01 & -,-5.1633D+01,-5.0702D+01,-4.9772D+01,-4.8842D+01,-4.7911D+01,-4.6981D+01,-4.6051D+01,-4.5120D+01,-4.4190D+01,-4.3260D+01 & -,-4.2329D+01,-4.1399D+01,-4.0468D+01,-3.9538D+01,-3.8608D+01,-3.7677D+01,-3.6747D+01,-3.5817D+01,-3.4886D+01,-3.3956D+01 & -,-3.3026D+01,-3.2095D+01,-3.1165D+01,-3.0235D+01,-2.9305D+01,-2.8374D+01,-2.7444D+01,-2.6514D+01,-2.5583D+01,-2.4653D+01 & -,-2.3723D+01,-2.2792D+01,-2.1862D+01,-2.0932D+01,-2.0001D+01,-1.9071D+01,-1.8141D+01,-1.7211D+01,-1.6280D+01,-1.5350D+01 & -,-1.4420D+01,-1.3489D+01,-1.2559D+01,-1.1629D+01,-1.0698D+01,-9.7681D+00,-8.8378D+00,-7.9075D+00,-6.9772D+00,-6.0469D+00 & -,-5.1166D+00,-4.1863D+00,-3.2560D+00,-2.3257D+00,-1.3954D+00,-4.6515D-01, 4.6515D-01, 1.3954D+00, 2.3257D+00, 3.2560D+00 & -, 4.1863D+00, 5.1166D+00, 6.0469D+00, 6.9772D+00, 7.9075D+00, 8.8378D+00, 9.7681D+00, 1.0698D+01, 1.1629D+01, 1.2559D+01 & -, 1.3489D+01, 1.4420D+01, 1.5350D+01, 1.6280D+01, 1.7211D+01, 1.8141D+01, 1.9071D+01, 2.0001D+01, 2.0932D+01, 2.1862D+01 & -, 2.2792D+01, 2.3723D+01, 2.4653D+01, 2.5583D+01, 2.6514D+01, 2.7444D+01, 2.8374D+01, 2.9305D+01, 3.0235D+01, 3.1165D+01 & -, 3.2095D+01, 3.3026D+01, 3.3956D+01, 3.4886D+01, 3.5817D+01, 3.6747D+01, 3.7677D+01, 3.8608D+01, 3.9538D+01, 4.0468D+01 & -, 4.1399D+01, 4.2329D+01, 4.3260D+01, 4.4190D+01, 4.5120D+01, 4.6051D+01, 4.6981D+01, 4.7911D+01, 4.8842D+01, 4.9772D+01 & -, 5.0702D+01, 5.1633D+01, 5.2563D+01, 5.3494D+01, 5.4424D+01, 5.5355D+01, 5.6285D+01, 5.7215D+01, 5.8146D+01, 5.9076D+01 & -, 6.0007D+01, 6.0937D+01, 6.1868D+01, 6.2798D+01, 6.3729D+01, 6.4660D+01, 6.5590D+01, 6.6521D+01, 6.7451D+01, 6.8382D+01 & -, 6.9313D+01, 7.0244D+01, 7.1174D+01, 7.2105D+01, 7.3036D+01, 7.3967D+01, 7.4898D+01, 7.5830D+01, 7.6761D+01, 7.7693D+01 & -, 7.8624D+01, 7.9557D+01, 8.0489D+01, 8.1422D+01, 8.2356D+01, 8.3290D+01, 8.4227D+01, 8.5167D+01, 8.6108D+01, 8.7148D+01 & -, 8.8289D+01, 8.9430D+01 /) - lat_o_bnds = (/ & - -9.0000D+01,-8.8859D+01,-8.7718D+01,-8.6578D+01,-8.5638D+01,-8.4697D+01,-8.3757D+01,-8.2823D+01,-8.1889D+01,-8.0955D+01 & -,-8.0023D+01,-7.9091D+01,-7.8158D+01,-7.7227D+01,-7.6295D+01,-7.5364D+01,-7.4433D+01,-7.3502D+01,-7.2571D+01,-7.1640D+01 & -,-7.0709D+01,-6.9778D+01,-6.8847D+01,-6.7917D+01,-6.6986D+01,-6.6055D+01,-6.5125D+01,-6.4194D+01,-6.3264D+01,-6.2333D+01 & -,-6.1403D+01,-6.0472D+01,-5.9542D+01,-5.8611D+01,-5.7681D+01,-5.6750D+01,-5.5820D+01,-5.4889D+01,-5.3959D+01,-5.3028D+01 & -,-5.2098D+01,-5.1168D+01,-5.0237D+01,-4.9307D+01,-4.8377D+01,-4.7446D+01,-4.6516D+01,-4.5585D+01,-4.4655D+01,-4.3725D+01 & -,-4.2794D+01,-4.1864D+01,-4.0934D+01,-4.0003D+01,-3.9073D+01,-3.8143D+01,-3.7212D+01,-3.6282D+01,-3.5352D+01,-3.4421D+01 & -,-3.3491D+01,-3.2561D+01,-3.1630D+01,-3.0700D+01,-2.9770D+01,-2.8839D+01,-2.7909D+01,-2.6979D+01,-2.6048D+01,-2.5118D+01 & -,-2.4188D+01,-2.3258D+01,-2.2327D+01,-2.1397D+01,-2.0467D+01,-1.9536D+01,-1.8606D+01,-1.7676D+01,-1.6745D+01,-1.5815D+01 & -,-1.4885D+01,-1.3954D+01,-1.3024D+01,-1.2094D+01,-1.1164D+01,-1.0233D+01,-9.3030D+00,-8.3727D+00,-7.4424D+00,-6.5121D+00 & -,-5.5818D+00,-4.6515D+00,-3.7212D+00,-2.7909D+00,-1.8606D+00,-9.3030D-01, 2.8758D-08, 9.3030D-01, 1.8606D+00, 2.7909D+00 & -, 3.7212D+00, 4.6515D+00, 5.5818D+00, 6.5121D+00, 7.4424D+00, 8.3727D+00, 9.3030D+00, 1.0233D+01, 1.1164D+01, 1.2094D+01 & -, 1.3024D+01, 1.3954D+01, 1.4885D+01, 1.5815D+01, 1.6745D+01, 1.7676D+01, 1.8606D+01, 1.9536D+01, 2.0467D+01, 2.1397D+01 & -, 2.2327D+01, 2.3258D+01, 2.4188D+01, 2.5118D+01, 2.6048D+01, 2.6979D+01, 2.7909D+01, 2.8839D+01, 2.9770D+01, 3.0700D+01 & -, 3.1630D+01, 3.2561D+01, 3.3491D+01, 3.4421D+01, 3.5352D+01, 3.6282D+01, 3.7212D+01, 3.8143D+01, 3.9073D+01, 4.0003D+01 & -, 4.0934D+01, 4.1864D+01, 4.2794D+01, 4.3725D+01, 4.4655D+01, 4.5585D+01, 4.6516D+01, 4.7446D+01, 4.8377D+01, 4.9307D+01 & -, 5.0237D+01, 5.1168D+01, 5.2098D+01, 5.3028D+01, 5.3959D+01, 5.4889D+01, 5.5820D+01, 5.6750D+01, 5.7681D+01, 5.8611D+01 & -, 5.9542D+01, 6.0472D+01, 6.1403D+01, 6.2333D+01, 6.3264D+01, 6.4194D+01, 6.5125D+01, 6.6055D+01, 6.6986D+01, 6.7917D+01 & -, 6.8847D+01, 6.9778D+01, 7.0709D+01, 7.1640D+01, 7.2571D+01, 7.3502D+01, 7.4433D+01, 7.5364D+01, 7.6295D+01, 7.7227D+01 & -, 7.8158D+01, 7.9091D+01, 8.0023D+01, 8.0955D+01, 8.1889D+01, 8.2823D+01, 8.3757D+01, 8.4697D+01, 8.5638D+01, 8.6578D+01 & -, 8.7718D+01, 8.8859D+01, 9.0000D+01 /) -end subroutine def_ogrid diff --git a/Test/ta_3D_r_2.asc b/Test/ta_3D_r_2.asc deleted file mode 100644 index d269407db950b949bd6159725a83d2667df764fb..0000000000000000000000000000000000000000 --- a/Test/ta_3D_r_2.asc +++ /dev/null @@ -1,22 +0,0 @@ -4 -3 -144 -17 -17 -time -months since 1949-1-1 0:0 -0.0 1.0 2.0 --0.5 0.5 0.5 1.5 1.5 2.5 -longitude -degrees_east -0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 22.5 25.0 27.5 30.0 32.5 35.0 37.5 40.0 42.5 45.0 47.5 50.0 52.5 55.0 57.5 60.0 62.5 65.0 67.5 70.0 72.5 75.0 77.5 80.0 82.5 85.0 87.5 90.0 92.5 95.0 97.5 100.0 102.5 105.0 107.5 110.0 112.5 115.0 117.5 120.0 122.5 125.0 127.5 130.0 132.5 135.0 137.5 140.0 142.5 145.0 147.5 150.0 152.5 155.0 157.5 160.0 162.5 165.0 167.5 170.0 172.5 175.0 177.5 180.0 182.5 185.0 187.5 190.0 192.5 195.0 197.5 200.0 202.5 205.0 207.5 210.0 212.5 215.0 217.5 220.0 222.5 225.0 227.5 230.0 232.5 235.0 237.5 240.0 242.5 245.0 247.5 250.0 252.5 255.0 257.5 260.0 262.5 265.0 267.5 270.0 272.5 275.0 277.5 280.0 282.5 285.0 287.5 290.0 292.5 295.0 297.5 300.0 302.5 305.0 307.5 310.0 312.5 315.0 317.5 320.0 322.5 325.0 327.5 330.0 332.5 335.0 337.5 340.0 342.5 345.0 347.5 350.0 352.5 355.0 357.5 --1.25 1.25 1.25 3.75 3.75 6.25 6.25 8.75 8.75 11.25 11.25 13.75 13.75 16.25 16.25 18.75 18.75 21.25 21.25 23.75 23.75 26.25 26.25 28.75 28.75 31.25 31.25 33.75 33.75 36.25 36.25 38.75 38.75 41.25 41.25 43.75 43.75 46.25 46.25 48.75 48.75 51.25 51.25 53.75 53.75 56.25 56.25 58.75 58.75 61.25 61.25 63.75 63.75 66.25 66.25 68.75 68.75 71.25 71.25 73.75 73.75 76.25 76.25 78.75 78.75 81.25 81.25 83.75 83.75 86.25 86.25 88.75 88.75 91.25 91.25 93.75 93.75 96.25 96.25 98.75 98.75 101.25 101.25 103.75 103.75 106.25 106.25 108.75 108.75 111.25 111.25 113.75 113.75 116.25 116.25 118.75 118.75 121.25 121.25 123.75 123.75 126.25 126.25 128.75 128.75 131.25 131.25 133.75 133.75 136.25 136.25 138.75 138.75 141.25 141.25 143.75 143.75 146.25 146.25 148.75 148.75 151.25 151.25 153.75 153.75 156.25 156.25 158.75 158.75 161.25 161.25 163.75 163.75 166.25 166.25 168.75 168.75 171.25 171.25 173.75 173.75 176.25 176.25 178.75 178.75 181.25 181.25 183.75 183.75 186.25 186.25 188.75 188.75 191.25 191.25 193.75 193.75 196.25 196.25 198.75 198.75 201.25 201.25 203.75 203.75 206.25 206.25 208.75 208.75 211.25 211.25 213.75 213.75 216.25 216.25 218.75 218.75 221.25 221.25 223.75 223.75 226.25 226.25 228.75 228.75 231.25 231.25 233.75 233.75 236.25 236.25 238.75 238.75 241.25 241.25 243.75 243.75 246.25 246.25 248.75 248.75 251.25 251.25 253.75 253.75 256.25 256.25 258.75 258.75 261.25 261.25 263.75 263.75 266.25 266.25 268.75 268.75 271.25 271.25 273.75 273.75 276.25 276.25 278.75 278.75 281.25 281.25 283.75 283.75 286.25 286.25 288.75 288.75 291.25 291.25 293.75 293.75 296.25 296.25 298.75 298.75 301.25 301.25 303.75 303.75 306.25 306.25 308.75 308.75 311.25 311.25 313.75 313.75 316.25 316.25 318.75 318.75 321.25 321.25 323.75 323.75 326.25 326.25 328.75 328.75 331.25 331.25 333.75 333.75 336.25 336.25 338.75 338.75 341.25 341.25 343.75 343.75 346.25 346.25 348.75 348.75 351.25 351.25 353.75 353.75 356.25 356.25 358.75 -pressure -hPa -1000.0 925.0 850.0 700.0 600.0 500.0 400.0 300.0 250.0 200.0 150.0 100.0 70.0 50.0 30.0 20.0 10.0 -1037.5 962.5 962.5 887.5 887.5 775.0 775.0 650.0 650.0 550.0 550.0 450.0 450.0 350.0 350.0 275.0 275.0 225.0 225.0 175.0 175.0 125.0 125.0 85.0 85.0 60.0 60.0 40.0 40.0 25.0 25.0 15.0 15.0 5.0 -latitude -degrees_north --20.0 -17.5 -15.0 -12.5 -10.0 -7.5 -5.0 -2.5 0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 --21.25 -18.75 -18.75 -16.25 -16.25 -13.75 -13.75 -11.25 -11.25 -8.75 -8.75 -6.25 -6.25 -3.75 -3.75 -1.25 -1.25 1.25 1.25 3.75 3.75 6.25 6.25 8.75 8.75 11.25 11.25 13.75 13.75 16.25 16.25 18.75 18.75 21.25 -294.539123535 294.75982666 294.929748535 295.109436035 295.58013916 296.449279785 297.47076416 298.300842285 298.910217285 299.429748535 300.140686035 301.199279785 302.20904541 301.929748535 299.410217285 295.429748535 291.949279785 288.780456543 289.399597168 289.889831543 290.280456543 291.059753418 292.399597168 293.790222168 294.499206543 294.569519043 294.770690918 295.870300293 297.749206543 299.380065918 299.479675293 297.559753418 294.360534668 291.120300293 290.840240479 293.059967041 293.680084229 292.760162354 291.229888916 289.979888916 289.359771729 289.189849854 289.250396729 289.600006104 290.550201416 292.109771729 293.519927979 293.760162354 292.330474854 289.779693604 286.930084229 280.649780273 280.569702148 280.550170898 280.659545898 280.809936523 280.840209961 280.659545898 280.399780273 280.199584961 280.069702148 279.909545898 279.830444336 279.989624023 280.349975586 280.519897461 280.040405273 278.790405273 274.260070801 273.809875488 274.000305176 274.630187988 275.120422363 275.149719238 274.979797363 274.870422363 274.779602051 274.630187988 274.550109863 274.590148926 274.489562988 273.889953613 272.889953613 271.910461426 271.080383301 266.280426025 266.429840088 266.679840088 266.910308838 266.979644775 266.939605713 267.019683838 267.269683838 267.5597229 267.670074463 267.490386963 267.009918213 266.250152588 265.229644775 264.04019165 262.849761963 261.750152588 256.330078125 256.610351562 256.830078125 256.959960938 257.0 257.049804688 257.129882812 257.25 257.330078125 257.23046875 256.83984375 256.120117188 255.139648438 253.959960938 252.599609375 251.150390625 249.8203125 241.309997559 241.460388184 241.260192871 241.069763184 241.050231934 241.149841309 241.250427246 241.319763184 241.329528809 241.220153809 240.949645996 240.540466309 239.899841309 238.960388184 237.689880371 236.199645996 234.619567871 231.340057373 231.449920654 231.469940186 231.559783936 231.650115967 231.650115967 231.559783936 231.509979248 231.480194092 231.389862061 231.190155029 230.900115967 230.409881592 229.559783936 228.389862061 227.070037842 225.679901123 220.049789429 220.169906616 220.240219116 220.240219116 220.169906616 220.060043335 219.970199585 219.930160522 219.899887085 219.850082397 219.700180054 219.470199585 219.089828491 218.47996521 217.64012146 216.709945679 215.770004272 207.77003479 207.390151978 207.160171509 207.000015259 206.959976196 207.000015259 207.060073853 207.100112915 207.10987854 207.149917603 207.18019104 207.189956665 207.259780884 207.549819946 208.080093384 208.669937134 209.120132446 196.39956665 195.339996338 194.549957275 194.030426025 193.589996338 193.070465088 192.599761963 192.330230713 192.3097229 192.420074463 192.64956665 193.120269775 193.960113525 195.120269775 196.490386963 198.04019165 199.830230713 196.109573364 194.880081177 193.710159302 192.689651489 192.030471802 191.700393677 191.490432739 191.269729614 191.170120239 191.309768677 191.679885864 192.300003052 193.280471802 194.719924927 196.410354614 198.130081177 199.880081177 203.739868164 203.42980957 203.299926758 203.25012207 203.170043945 203.080200195 203.08996582 203.199829102 203.270141602 203.190063477 203.049926758 202.940063477 202.909790039 203.049926758 203.67980957 204.989868164 206.699829102 217.840026855 217.279968262 216.799987793 216.469909668 216.369812012 216.500183105 216.639831543 216.529968262 216.290222168 216.250183105 216.480163574 216.650085449 216.529968262 216.159851074 215.750183105 215.360046387 215.049987793 219.259841919 219.229568481 219.589920044 220.099685669 220.370193481 220.280349731 220.179763794 220.360427856 220.580154419 220.460037231 219.990310669 219.660232544 219.700271606 219.830154419 219.689529419 219.299880981 219.070388794 228.139572144 227.679611206 227.139572144 226.580001831 226.190353394 226.129806519 226.169845581 225.990158081 225.749923706 226.060470581 227.129806519 228.379806519 229.209884644 229.910079956 231.179611206 232.919845581 234.080001831 294.320373535 294.679748535 295.000061035 295.250061035 295.789123535 296.83013916 298.050842285 298.929748535 299.250061035 299.320373535 299.74029541 300.88092041 302.160217285 302.140686035 299.84967041 296.11920166 292.800842285 288.739440918 289.839050293 290.569519043 290.919128418 291.499206543 292.700378418 294.069519043 294.770690918 294.690612793 294.669128418 295.680847168 297.710144043 299.630065918 300.049987793 298.399597168 295.319519043 291.870300293 292.170318604 294.000396729 294.130279541 292.890045166 291.189849854 289.930084229 289.470123291 289.519927979 289.590240479 289.699615479 290.439849854 292.029693604 293.710357666 294.199615479 292.989654541 290.649810791 287.970123291 281.319702148 281.090209961 280.870483398 280.790405273 280.840209961 280.870483398 280.729858398 280.439819336 280.180053711 280.010131836 279.909545898 279.899780273 280.099975586 280.470092773 280.659545898 280.220092773 278.989624023 274.189758301 273.670227051 273.840148926 274.489562988 275.010070801 275.050109863 274.849914551 274.729797363 274.700500488 274.689758301 274.720031738 274.779602051 274.639953613 274.059875488 273.109680176 272.139953613 271.229797363 266.259918213 266.570465088 266.910308838 267.14956665 267.170074463 267.0597229 267.080230713 267.330230713 267.580230713 267.620269775 267.3800354 266.929840088 266.299957275 265.3800354 264.21987915 263.030426025 261.939605713 256.200195312 256.5 256.790039062 256.969726562 257.030273438 257.059570312 257.150390625 257.240234375 257.309570312 257.23046875 256.889648438 256.23046875 255.309570312 254.1796875 252.830078125 251.360351562 250.0 241.250427246 241.359802246 241.210388184 241.069763184 241.069763184 241.140075684 241.229919434 241.350036621 241.399841309 241.319763184 241.019958496 240.569763184 239.920349121 239.010192871 237.769958496 236.329528809 234.819763184 231.420135498 231.539764404 231.619842529 231.699920654 231.739959717 231.690155029 231.630096436 231.610076904 231.610076904 231.529998779 231.309783936 230.980194092 230.480194092 229.659881592 228.559783936 227.259979248 225.869842529 220.310043335 220.430160522 220.450180054 220.39012146 220.270004272 220.169906616 220.089828491 220.040023804 219.999984741 219.919906616 219.770004272 219.540023804 219.169906616 218.56980896 217.749984741 216.830062866 215.899887085 207.589859009 207.200210571 206.939956665 206.850112915 206.879898071 206.959976196 206.959976196 206.919937134 206.910171509 206.970230103 207.029800415 207.069839478 207.209976196 207.589859009 208.18019104 208.77003479 209.18019104 196.29019165 195.359527588 194.6300354 194.009918213 193.389801025 192.859527588 192.580230713 192.54019165 192.54019165 192.500152588 192.620269775 193.109527588 194.000152588 195.120269775 196.389801025 197.8800354 199.7003479 195.840042114 194.509963989 193.269729614 192.309768677 191.759963989 191.530471802 191.359573364 191.120315552 191.040237427 191.250198364 191.670120239 192.179885864 192.969924927 194.269729614 195.939651489 197.660354614 199.370315552 204.040161133 203.900024414 203.859985352 203.730102539 203.469848633 203.17980957 203.08996582 203.190063477 203.290161133 203.190063477 203.029907227 202.969848633 202.969848633 203.009887695 203.420043945 204.58996582 206.330200195 217.329772949 216.540222168 215.989929199 215.739929199 215.840026855 216.190124512 216.50994873 216.50994873 216.279968262 216.199890137 216.409851074 216.59979248 216.520202637 216.199890137 215.810241699 215.409851074 215.049987793 219.240310669 219.450271606 219.849685669 220.179763794 220.229568481 220.120193481 220.189529419 220.540115356 220.820388794 220.669998169 220.160232544 219.759841919 219.710037231 219.769607544 219.610427856 219.240310669 218.950271606 228.490158081 227.839767456 227.280197144 226.889572144 226.679611206 226.589767456 226.400314331 225.990158081 225.610275269 225.860275269 226.919845581 228.270431519 229.270431519 230.049728394 231.280197144 233.060470581 234.469650269 293.019592285 293.58013916 294.41998291 295.300842285 296.300842285 297.570373535 298.81060791 299.429748535 299.269592285 298.890686035 299.20904541 300.550842285 302.00982666 302.09967041 300.09967041 296.88092041 293.86920166 289.079284668 290.639831543 291.690612793 292.149597168 292.589050293 293.440612793 294.440612793 294.899597168 294.690612793 294.620300293 295.649597168 297.790222168 299.790222168 300.329284668 298.899597168 295.960144043 292.319519043 293.640045166 294.750396729 294.300201416 292.890045166 291.260162354 290.080474854 289.659576416 289.670318604 289.580474854 289.489654541 290.210357666 292.010162354 293.920318604 294.550201416 293.420318604 291.269927979 288.800201416 281.859741211 281.460327148 281.050170898 280.830444336 280.840209961 280.909545898 280.800170898 280.479858398 280.159545898 279.989624023 279.930053711 280.000366211 280.260131836 280.670288086 280.890014648 280.449584961 279.109741211 274.229797363 273.689758301 273.809875488 274.410461426 274.880187988 274.920227051 274.760070801 274.689758301 274.760070801 274.889953613 274.989562988 275.000305176 274.750305176 274.130187988 273.250305176 272.290344238 271.279602051 266.229644775 266.570465088 266.96987915 267.269683838 267.349761963 267.259918213 267.21987915 267.330230713 267.479644775 267.46987915 267.250152588 266.8800354 266.370269775 265.5597229 264.439605713 263.259918213 262.170074463 256.099609375 256.419921875 256.75 256.940429688 257.0 257.049804688 257.139648438 257.240234375 257.299804688 257.240234375 256.940429688 256.330078125 255.450195312 254.379882812 253.099609375 251.66015625 250.26953125 241.100036621 241.220153809 241.170349121 241.119567871 241.149841309 241.189880371 241.260192871 241.369567871 241.449645996 241.359802246 241.059997559 240.600036621 239.989685059 239.109802246 237.920349121 236.519958496 235.059997559 231.440155029 231.590057373 231.710174561 231.770233154 231.739959717 231.639862061 231.559783936 231.579803467 231.630096436 231.599822998 231.420135498 231.099822998 230.590057373 229.809783936 228.750213623 227.489959717 226.099822998 220.560043335 220.689926147 220.669906616 220.549789429 220.410140991 220.279769897 220.169906616 220.120101929 220.080062866 220.020004272 219.879867554 219.649887085 219.299789429 218.720199585 217.930160522 217.029769897 216.129867554 207.52003479 207.10987854 206.85987854 206.810073853 206.899917603 206.970230103 206.919937134 206.830093384 206.810073853 206.870132446 206.93019104 206.979995728 207.169937134 207.60987854 208.240249634 208.85987854 209.299819946 195.889801025 194.920074463 194.139801025 193.439605713 192.799957275 192.439605713 192.479644775 192.620269775 192.500152588 192.189605713 192.179840088 192.79019165 193.870269775 195.109527588 196.389801025 197.859527588 199.64956665 195.929885864 194.689651489 193.569534302 192.649612427 192.059768677 191.670120239 191.319534302 191.040237427 191.069534302 191.460159302 191.929885864 192.259963989 192.740432739 193.759963989 195.309768677 196.990432739 198.670120239 204.210083008 204.120239258 204.08996582 203.949829102 203.670043945 203.370239258 203.270141602 203.359985352 203.359985352 203.120239258 202.870239258 202.850219727 202.960083008 203.009887695 203.259887695 204.25012207 205.980102539 216.770202637 215.92010498 215.380065918 215.159851074 215.250183105 215.619812012 216.070007324 216.310241699 216.320007324 216.340026855 216.520202637 216.639831543 216.500183105 216.17010498 215.829772949 215.480163574 215.09979248 219.809646606 220.280349731 220.679763794 220.780349731 220.599685669 220.400466919 220.469802856 220.759841919 220.919998169 220.679763794 220.179763794 219.750076294 219.629959106 219.669998169 219.589920044 219.320388794 219.019607544 228.160079956 227.379806519 226.900314331 226.740158081 226.709884644 226.610275269 226.349533081 225.889572144 225.509689331 225.719650269 226.740158081 228.190353394 229.389572144 230.249923706 231.330001831 232.969650269 234.549728394 292.11920166 292.949279785 294.269592285 295.660217285 296.91998291 298.109436035 299.06060791 299.36920166 298.93951416 298.50982666 299.08013916 300.70904541 302.179748535 302.070373535 300.15045166 297.40045166 294.730529785 290.630065918 292.389831543 293.440612793 293.850769043 294.030456543 294.360534668 294.799987793 294.969909668 294.700378418 294.649597168 295.690612793 297.770690918 299.739440918 300.290222168 298.989440918 296.169128418 292.430847168 295.090240479 295.369537354 294.369537354 292.909576416 291.460357666 290.369537354 289.859771729 289.689849854 289.449615479 289.420318604 290.409576416 292.510162354 294.460357666 294.859771729 293.550201416 291.439849854 289.119537354 282.309936523 281.769897461 281.210327148 280.859741211 280.849975586 280.949584961 280.870483398 280.550170898 280.210327148 280.010131836 279.960327148 280.059936523 280.380249023 280.890014648 281.189819336 280.710327148 279.189819336 274.269836426 273.750305176 273.849914551 274.359680176 274.760070801 274.809875488 274.689758301 274.689758301 274.830383301 275.010070801 275.130187988 275.059875488 274.739562988 274.139953613 273.380187988 272.479797363 271.340148926 266.210113525 266.519683838 266.910308838 267.259918213 267.439605713 267.420074463 267.299957275 267.250152588 267.299957275 267.320465088 267.21987915 266.960113525 266.519683838 265.759918213 264.689605713 263.509918213 262.3800354 256.009765625 256.349609375 256.6796875 256.870117188 256.919921875 257.0 257.110351562 257.219726562 257.280273438 257.259765625 257.01953125 256.469726562 255.620117188 254.580078125 253.360351562 251.969726562 250.580078125 241.010192871 241.199645996 241.250427246 241.279724121 241.290466309 241.269958496 241.290466309 241.369567871 241.439880371 241.350036621 241.059997559 240.619567871 240.069763184 239.260192871 238.119567871 236.769958496 235.340270996 231.440155029 231.639862061 231.800018311 231.860076904 231.770233154 231.610076904 231.489959717 231.489959717 231.550018311 231.570037842 231.469940186 231.199920654 230.710174561 229.960174561 228.960174561 227.730194092 226.349822998 220.740219116 220.859848022 220.850082397 220.720199585 220.560043335 220.39012146 220.249984741 220.180160522 220.160140991 220.120101929 219.999984741 219.810043335 219.450180054 218.899887085 218.14012146 217.279769897 216.419906616 207.529800415 207.120132446 206.85987854 206.810073853 206.899917603 206.950210571 206.890151978 206.799819946 206.799819946 206.850112915 206.879898071 206.93019104 207.129898071 207.589859009 208.240249634 208.910171509 209.450210571 195.349761963 194.29019165 193.410308838 192.620269775 192.030426025 191.8800354 192.120269775 192.269683838 191.939605713 191.39956665 191.359527588 192.179840088 193.580230713 195.070465088 196.490386963 197.960113525 199.639801025 196.300003052 195.280471802 194.399612427 193.620315552 192.960159302 192.319534302 191.700393677 191.300003052 191.380081177 191.880081177 192.300003052 192.399612427 192.540237427 193.250198364 194.599807739 196.179885864 197.870315552 203.989868164 203.690063477 203.529907227 203.400024414 203.259887695 203.170043945 203.259887695 203.449829102 203.380004883 202.969848633 202.580200195 202.569946289 202.799926758 202.92980957 203.130004883 203.969848633 205.609985352 216.630065918 216.020202637 215.699890137 215.529968262 215.440124512 215.610046387 216.029968262 216.449890137 216.659851074 216.770202637 216.860046387 216.820007324 216.540222168 216.130065918 215.779968262 215.480163574 215.139831543 220.580154419 221.139724731 221.460037231 221.400466919 221.089920044 220.790115356 220.669998169 220.669998169 220.559646606 220.219802856 219.790115356 219.500076294 219.469802856 219.620193481 219.719802856 219.589920044 219.280349731 227.469650269 226.660079956 226.230392456 226.150314331 226.160079956 226.099533081 225.950119019 225.759689331 225.700119019 226.089767456 227.099533081 228.450119019 229.580001831 230.289962769 231.110275269 232.539962769 234.169845581 293.97076416 295.00982666 296.08013916 297.00982666 297.68951416 298.250061035 298.730529785 298.86920166 298.56060791 298.480529785 299.52935791 301.47076416 302.750061035 302.09967041 299.88092041 297.339904785 294.93951416 293.850769043 295.219909668 295.610534668 295.479675293 295.200378418 295.010925293 295.030456543 295.049987793 294.819519043 294.760925293 295.710144043 297.770690918 299.770690918 300.319519043 298.940612793 296.030456543 292.200378418 296.359771729 295.979888916 294.500396729 292.909576416 291.559967041 290.569732666 290.050201416 289.819732666 289.640045166 289.880279541 291.239654541 293.500396729 295.199615479 295.080474854 293.390045166 291.180084229 288.930084229 282.840209961 282.210327148 281.470092773 280.949584961 280.819702148 280.909545898 280.840209961 280.529663086 280.210327148 280.019897461 279.960327148 280.050170898 280.439819336 281.090209961 281.500366211 281.000366211 279.290405273 274.170227051 273.739562988 273.870422363 274.330383301 274.670227051 274.739562988 274.679992676 274.689758301 274.779602051 274.910461426 274.979797363 274.880187988 274.580383301 274.120422363 273.580383301 272.769836426 271.489562988 266.189605713 266.519683838 266.89956665 267.240386963 267.4503479 267.429840088 267.269683838 267.160308838 267.2003479 267.3097229 267.320465088 267.1300354 266.679840088 265.929840088 264.889801025 263.729644775 262.5597229 255.940429688 256.290039062 256.620117188 256.76953125 256.830078125 256.940429688 257.080078125 257.169921875 257.219726562 257.259765625 257.110351562 256.629882812 255.830078125 254.8203125 253.620117188 252.280273438 250.889648438 241.040466309 241.309997559 241.430114746 241.460388184 241.409606934 241.309997559 241.269958496 241.340270996 241.420349121 241.350036621 241.069763184 240.659606934 240.119567871 239.359802246 238.290466309 237.019958496 235.640075684 231.469940186 231.719940186 231.920135498 231.980194092 231.869842529 231.690155029 231.529998779 231.460174561 231.469940186 231.489959717 231.449920654 231.219940186 230.750213623 230.059783936 229.139862061 227.980194092 226.619842529 220.810043335 220.899887085 220.89012146 220.799789429 220.649887085 220.47996521 220.31980896 220.240219116 220.22996521 220.209945679 220.129867554 219.939926147 219.609848022 219.080062866 218.370101929 217.549789429 216.700180054 207.540054321 207.100112915 206.799819946 206.68019104 206.720230103 206.759780884 206.740249634 206.709976196 206.750015259 206.790054321 206.810073853 206.85987854 207.089859009 207.560073853 208.200210571 208.919937134 209.589859009 195.080230713 194.049957275 193.160308838 192.359527588 191.769683838 191.620269775 191.8097229 191.820465088 191.299957275 190.670074463 190.679840088 191.670074463 193.299957275 195.009918213 196.599761963 198.109527588 199.64956665 196.479690552 195.500198364 194.790237427 194.189651489 193.569534302 192.859573364 192.139846802 191.689651489 191.740432739 192.170120239 192.479690552 192.420120239 192.380081177 192.889846802 194.030471802 195.450393677 197.099807739 203.549926758 202.92980957 202.520141602 202.350219727 202.350219727 202.50012207 202.83996582 203.199829102 203.210083008 202.75012207 202.290161133 202.290161133 202.600219727 202.799926758 202.960083008 203.67980957 205.199829102 217.060241699 216.869812012 216.889831543 216.810241699 216.570007324 216.489929199 216.779968262 217.17010498 217.369812012 217.360046387 217.290222168 217.070007324 216.639831543 216.090026855 215.690124512 215.449890137 215.190124512 220.620193481 220.960037231 221.120193481 221.000076294 220.719802856 220.429763794 220.179763794 219.929763794 219.650466919 219.339920044 219.099685669 219.070388794 219.280349731 219.639724731 219.919998169 219.889724731 219.549880981 227.700119019 226.950119019 226.450119019 226.219650269 226.120040894 226.020431519 225.980392456 226.120040894 226.499923706 227.179611206 228.139572144 229.120040894 229.770431519 230.120040894 230.719650269 231.999923706 233.599533081 299.000061035 299.800842285 299.660217285 299.13092041 298.59967041 298.320373535 298.41998291 298.550842285 298.45904541 298.68951416 300.13092041 302.36920166 303.519592285 302.25982666 299.45904541 296.789123535 294.56060791 297.989440918 298.360534668 297.510925293 296.460144043 295.649597168 295.159362793 295.110534668 295.249206543 295.120300293 295.010925293 295.940612793 298.210144043 300.499206543 301.030456543 299.239440918 295.839050293 291.839050293 297.430084229 296.600006104 294.680084229 292.809967041 291.420318604 290.569732666 290.269927979 290.210357666 290.189849854 290.619537354 292.130279541 294.359771729 295.750396729 295.189849854 293.170318604 290.850006104 288.580474854 283.470092773 282.760131836 281.809936523 281.040405273 280.760131836 280.769897461 280.680053711 280.380249023 280.109741211 280.000366211 279.949584961 280.040405273 280.500366211 281.269897461 281.790405273 281.269897461 279.470092773 273.920227051 273.609680176 273.830383301 274.300109863 274.660461426 274.769836426 274.739562988 274.689758301 274.670227051 274.700500488 274.710266113 274.620422363 274.399719238 274.139953613 273.819641113 273.139953613 271.739562988 266.0597229 266.54019165 267.019683838 267.320465088 267.429840088 267.359527588 267.210113525 267.120269775 267.21987915 267.39956665 267.460113525 267.259918213 266.780426025 266.009918213 265.019683838 263.910308838 262.729644775 255.91015625 256.290039062 256.599609375 256.719726562 256.780273438 256.91015625 257.049804688 257.110351562 257.129882812 257.1796875 257.099609375 256.73046875 256.0 255.040039062 253.879882812 252.5703125 251.190429688 241.109802246 241.439880371 241.579528809 241.569763184 241.449645996 241.309997559 241.250427246 241.329528809 241.439880371 241.399841309 241.140075684 240.710388184 240.149841309 239.399841309 238.399841309 237.220153809 235.920349121 231.509979248 231.789764404 232.029998779 232.079803467 231.980194092 231.809783936 231.650115967 231.520233154 231.449920654 231.440155029 231.400115967 231.199920654 230.750213623 230.099822998 229.270233154 228.199920654 226.900115967 220.740219116 220.799789429 220.790023804 220.72996521 220.64012146 220.499984741 220.350082397 220.260238647 220.249984741 220.249984741 220.180160522 220.040023804 219.760238647 219.299789429 218.64012146 217.839828491 216.97996521 207.479995728 207.02003479 206.649917603 206.450210571 206.410171509 206.439956665 206.479995728 206.540054321 206.60987854 206.660171509 206.689956665 206.799819946 207.080093384 207.560073853 208.189956665 208.910171509 209.669937134 195.2003479 194.339996338 193.570465088 192.830230713 192.229644775 191.960113525 191.929840088 191.759918213 191.170074463 190.570465088 190.599761963 191.5597229 193.139801025 194.920074463 196.639801025 198.210113525 199.6300354 196.130081177 195.009963989 194.240432739 193.660354614 193.090042114 192.530471802 192.030471802 191.729690552 191.809768677 192.120315552 192.349807739 192.319534302 192.319534302 192.800003052 193.729690552 194.920120239 196.460159302 203.380004883 202.520141602 201.949829102 201.730102539 201.770141602 201.980102539 202.370239258 202.799926758 202.909790039 202.569946289 202.159790039 202.159790039 202.469848633 202.67980957 202.799926758 203.400024414 204.779907227 217.590026855 217.719909668 217.940124512 217.92010498 217.639831543 217.50994873 217.739929199 218.020202637 218.020202637 217.770202637 217.50994873 217.219909668 216.730163574 216.119812012 215.659851074 215.449890137 215.25994873 219.679763794 219.589920044 219.530349731 219.439529419 219.339920044 219.200271606 219.009841919 218.790115356 218.620193481 218.530349731 218.559646606 218.780349731 219.189529419 219.689529419 220.040115356 220.019607544 219.679763794 229.480392456 228.870040894 228.230392456 227.759689331 227.440353394 227.150314331 226.980392456 227.120040894 227.639572144 228.429611206 229.200119019 229.650314331 229.749923706 229.830001831 230.419845581 231.709884644 233.169845581 304.74029541 304.570373535 302.75982666 300.75982666 299.36920166 298.730529785 298.70904541 298.83013916 298.699279785 298.88092041 300.40045166 302.90045166 304.16998291 302.58013916 299.199279785 296.22076416 294.089904785 301.499206543 300.540222168 298.389831543 296.579284668 295.489440918 295.069519043 295.270690918 295.659362793 295.659362793 295.530456543 296.559753418 299.229675293 301.889831543 302.270690918 299.790222168 295.680847168 291.520690918 298.309967041 297.090240479 294.790435791 292.619537354 291.159576416 290.559967041 290.600006104 290.750396729 290.729888916 291.059967041 292.470123291 294.630279541 295.979888916 295.399810791 293.319732666 290.850006104 288.380279541 284.000366211 283.149780273 281.989624023 281.029663086 280.680053711 280.670288086 280.540405273 280.220092773 279.989624023 279.949584961 279.949584961 280.040405273 280.529663086 281.380249023 281.939819336 281.420288086 279.599975586 273.639953613 273.489562988 273.809875488 274.340148926 274.729797363 274.870422363 274.819641113 274.710266113 274.620422363 274.590148926 274.590148926 274.510070801 274.359680176 274.229797363 274.059875488 273.470031738 272.019836426 265.750152588 266.530426025 267.189605713 267.4503479 267.429840088 267.3097229 267.2003479 267.160308838 267.269683838 267.429840088 267.460113525 267.269683838 266.799957275 266.0597229 265.099761963 264.0597229 262.89956665 255.950195312 256.379882812 256.650390625 256.73046875 256.780273438 256.900390625 257.009765625 257.030273438 257.030273438 257.059570312 257.01953125 256.709960938 256.08984375 255.200195312 254.110351562 252.849609375 251.490234375 241.130310059 241.479919434 241.619567871 241.600036621 241.479919434 241.340270996 241.300231934 241.380310059 241.489685059 241.460388184 241.199645996 240.760192871 240.180114746 239.449645996 238.519958496 237.420349121 236.170349121 231.509979248 231.820037842 232.050018311 232.110076904 232.020233154 231.909881592 231.770233154 231.599822998 231.449920654 231.409881592 231.380096436 231.179901123 230.739959717 230.119842529 229.369842529 228.409881592 227.179901123 220.620101929 220.64012146 220.649887085 220.649887085 220.589828491 220.459945679 220.330062866 220.260238647 220.240219116 220.22996521 220.189926147 220.100082397 219.910140991 219.529769897 218.930160522 218.180160522 217.31980896 207.450210571 206.970230103 206.549819946 206.279800415 206.200210571 206.229995728 206.310073853 206.399917603 206.500015259 206.549819946 206.600112915 206.750015259 207.089859009 207.580093384 208.18019104 208.899917603 209.709976196 195.420074463 194.660308838 193.96987915 193.339996338 192.79019165 192.439605713 192.259918213 192.009918213 191.500152588 190.96987915 190.939605713 191.660308838 193.009918213 194.710113525 196.530426025 198.2003479 199.570465088 195.540237427 194.300003052 193.380081177 192.609573364 191.969924927 191.559768677 191.399612427 191.420120239 191.620315552 191.920120239 192.149612427 192.219924927 192.349807739 192.800003052 193.540237427 194.500198364 195.939651489 203.690063477 202.799926758 202.210083008 202.049926758 202.100219727 202.17980957 202.33996582 202.58996582 202.670043945 202.440063477 202.159790039 202.17980957 202.440063477 202.58996582 202.670043945 203.190063477 204.449829102 217.679870605 217.820007324 217.980163574 217.92010498 217.719909668 217.75994873 218.119812012 218.380065918 218.199890137 217.770202637 217.440124512 217.210144043 216.820007324 216.239929199 215.75994873 215.549987793 215.389831543 218.549880981 218.110427856 217.910232544 217.900466919 217.990310669 218.030349731 218.009841919 218.019607544 218.120193481 218.299880981 218.509841919 218.809646606 219.240310669 219.710037231 220.009841919 219.990310669 219.750076294 231.770431519 231.289962769 230.610275269 229.990158081 229.480392456 228.929611206 228.370040894 228.089767456 228.299728394 228.879806519 229.419845581 229.580001831 229.469650269 229.610275269 230.419845581 231.749923706 232.929611206 308.06060791 306.47076416 303.45904541 300.95904541 299.750061035 299.429748535 299.47076416 299.410217285 299.039123535 298.95904541 300.320373535 302.910217285 304.390686035 302.769592285 299.070373535 295.839904785 293.820373535 303.219909668 301.110534668 298.270690918 296.229675293 295.299987793 295.190612793 295.649597168 296.200378418 296.249206543 296.159362793 297.299987793 300.110534668 302.739440918 302.710144043 299.589050293 295.139831543 291.190612793 298.939849854 297.279693604 294.750396729 292.460357666 291.140045166 290.819732666 291.069732666 291.199615479 291.000396729 291.119537354 292.399810791 294.609771729 296.210357666 295.909576416 293.869537354 291.119537354 288.279693604 284.180053711 283.149780273 281.849975586 280.899780273 280.620483398 280.689819336 280.529663086 280.149780273 279.930053711 279.939819336 279.979858398 280.069702148 280.569702148 281.430053711 281.930053711 281.340209961 279.580444336 273.510070801 273.529602051 273.920227051 274.439758301 274.830383301 274.939758301 274.849914551 274.720031738 274.649719238 274.670227051 274.689758301 274.590148926 274.439758301 274.330383301 274.229797363 273.689758301 272.269836426 265.420074463 266.519683838 267.339996338 267.589996338 267.479644775 267.330230713 267.229644775 267.189605713 267.229644775 267.299957275 267.320465088 267.2003479 266.830230713 266.139801025 265.229644775 264.21987915 263.089996338 256.0703125 256.540039062 256.76953125 256.799804688 256.809570312 256.900390625 256.959960938 256.98046875 256.990234375 257.01953125 256.959960938 256.6796875 256.139648438 255.349609375 254.330078125 253.110351562 251.76953125 241.050231934 241.420349121 241.579528809 241.590270996 241.519958496 241.439880371 241.409606934 241.460388184 241.519958496 241.460388184 241.220153809 240.809997559 240.269958496 239.559997559 238.699645996 237.649841309 236.430114746 231.469940186 231.800018311 232.039764404 232.090057373 232.009979248 231.920135498 231.789764404 231.599822998 231.420135498 231.369842529 231.369842529 231.199920654 230.759979248 230.170135498 229.500213623 228.619842529 227.460174561 220.490219116 220.499984741 220.560043335 220.609848022 220.560043335 220.419906616 220.270004272 220.220199585 220.209945679 220.189926147 220.14012146 220.100082397 219.990219116 219.700180054 219.180160522 218.470199585 217.649887085 207.509780884 207.009780884 206.569839478 206.310073853 206.240249634 206.27003479 206.350112915 206.43019104 206.500015259 206.540054321 206.589859009 206.750015259 207.060073853 207.509780884 208.089859009 208.839859009 209.700210571 195.460113525 194.54019165 193.759918213 193.179840088 192.759918213 192.46987915 192.29019165 192.080230713 191.7003479 191.299957275 191.229644775 191.740386963 192.849761963 194.439605713 196.299957275 198.049957275 199.439605713 195.139846802 194.130081177 193.200393677 192.200393677 191.319534302 190.899612427 190.960159302 191.240432739 191.569534302 191.880081177 192.090042114 192.170120239 192.269729614 192.590042114 193.149612427 193.979690552 195.420120239 204.270141602 203.350219727 202.819946289 202.770141602 202.870239258 202.810180664 202.670043945 202.58996582 202.509887695 202.319946289 202.130004883 202.170043945 202.389770508 202.509887695 202.600219727 203.069946289 204.210083008 217.290222168 217.279968262 217.25994873 217.130065918 217.070007324 217.380065918 217.980163574 218.329772949 218.090026855 217.570007324 217.239929199 217.130065918 216.869812012 216.369812012 215.889831543 215.659851074 215.500183105 218.169998169 217.650466919 217.419998169 217.479568481 217.639724731 217.740310669 217.809646606 217.969802856 218.259841919 218.549880981 218.769607544 218.990310669 219.299880981 219.660232544 219.910232544 219.979568481 219.910232544 232.950119019 232.549728394 231.980392456 231.419845581 230.830001831 230.089767456 229.179611206 228.419845581 228.150314331 228.419845581 228.870040894 229.129806519 229.259689331 229.690353394 230.669845581 231.860275269 232.629806519 308.089904785 305.429748535 302.230529785 300.320373535 299.93951416 300.050842285 299.91998291 299.550842285 299.089904785 299.000061035 300.179748535 302.519592285 303.93951416 302.38092041 298.609436035 295.31060791 293.480529785 303.110534668 300.510925293 297.770690918 296.059753418 295.499206543 295.610534668 296.040222168 296.409362793 296.389831543 296.389831543 297.520690918 299.960144043 301.880065918 301.159362793 297.790222168 293.760925293 290.649597168 299.080474854 297.069732666 294.550201416 292.470123291 291.439849854 291.290435791 291.449615479 291.340240479 291.010162354 291.149810791 292.500396729 294.769927979 296.510162354 296.340240479 294.180084229 291.040435791 287.859771729 283.970092773 282.779663086 281.519897461 280.710327148 280.609741211 280.750366211 280.559936523 280.120483398 279.909545898 279.970092773 280.029663086 280.149780273 280.699584961 281.540405273 281.890014648 281.149780273 279.409545898 273.630187988 273.750305176 274.130187988 274.580383301 274.880187988 274.939758301 274.840148926 274.750305176 274.769836426 274.840148926 274.800109863 274.609680176 274.420227051 274.349914551 274.269836426 273.760070801 272.429992676 265.339996338 266.620269775 267.490386963 267.689605713 267.54019165 267.359527588 267.259918213 267.179840088 267.120269775 267.139801025 267.2003479 267.2003479 266.960113525 266.339996338 265.429840088 264.429840088 263.299957275 256.26953125 256.719726562 256.889648438 256.879882812 256.860351562 256.900390625 256.9296875 256.969726562 257.040039062 257.08984375 257.009765625 256.73046875 256.25 255.530273438 254.559570312 253.379882812 252.030273438 240.960388184 241.340270996 241.540466309 241.590270996 241.569763184 241.510192871 241.470153809 241.470153809 241.500427246 241.420349121 241.199645996 240.840270996 240.369567871 239.739685059 238.909606934 237.890075684 236.680114746 231.420135498 231.770233154 232.020233154 232.079803467 232.000213623 231.880096436 231.739959717 231.529998779 231.340057373 231.309783936 231.349822998 231.230194092 230.800018311 230.230194092 229.619842529 228.820037842 227.730194092 220.370101929 220.419906616 220.540023804 220.629867554 220.560043335 220.370101929 220.220199585 220.180160522 220.189926147 220.14012146 220.06980896 220.020004272 219.959945679 219.749984741 219.31980896 218.680160522 217.910140991 207.580093384 207.060073853 206.629898071 206.410171509 206.390151978 206.439956665 206.470230103 206.509780884 206.529800415 206.560073853 206.620132446 206.729995728 206.959976196 207.339859009 207.939956665 208.759780884 209.700210571 195.39956665 194.139801025 193.170074463 192.580230713 192.269683838 192.0597229 191.910308838 191.769683838 191.549957275 191.330230713 191.339996338 191.79019165 192.740386963 194.210113525 196.009918213 197.759918213 199.189605713 195.059768677 194.550003052 193.849807739 192.710159302 191.580276489 191.040237427 191.120315552 191.460159302 191.790237427 192.030471802 192.120315552 192.040237427 191.950393677 192.109573364 192.569534302 193.420120239 194.960159302 204.67980957 203.639770508 203.08996582 203.109985352 203.25012207 203.120239258 202.790161133 202.50012207 202.319946289 202.150024414 202.029907227 202.120239258 202.310180664 202.449829102 202.549926758 202.989868164 204.00012207 216.84979248 216.750183105 216.659851074 216.549987793 216.639831543 217.190124512 217.960144043 218.369812012 218.079772949 217.480163574 217.119812012 217.040222168 216.829772949 216.340026855 215.860046387 215.619812012 215.489929199 218.559646606 218.110427856 217.919998169 218.000076294 218.089920044 218.059646606 218.019607544 218.160232544 218.450271606 218.700271606 218.849685669 218.979568481 219.219802856 219.549880981 219.860427856 220.080154419 220.189529419 232.709884644 232.330001831 231.980392456 231.549728394 230.990158081 230.249923706 229.349533081 228.459884644 227.929611206 227.990158081 228.490158081 229.060470581 229.520431519 230.070236206 230.889572144 231.730392456 232.139572144 306.47076416 303.730529785 301.15045166 300.09967041 300.300842285 300.31060791 299.59967041 298.910217285 298.769592285 299.13092041 300.230529785 302.02935791 303.019592285 301.390686035 297.660217285 294.38092041 292.699279785 301.989440918 299.669128418 297.499206543 296.239440918 295.919128418 295.960144043 295.960144043 295.870300293 295.749206543 295.969909668 297.120300293 298.940612793 299.829284668 298.360534668 295.049987793 291.889831543 289.930847168 298.550201416 296.500396729 294.250396729 292.550201416 291.790435791 291.609771729 291.399810791 291.019927979 290.840240479 291.359771729 292.850006104 294.939849854 296.420318604 296.019927979 293.580474854 290.159576416 286.920318604 283.500366211 282.279663086 281.210327148 280.620483398 280.640014648 280.779663086 280.540405273 280.090209961 279.909545898 280.019897461 280.109741211 280.290405273 280.930053711 281.779663086 281.989624023 281.040405273 279.269897461 273.859680176 274.059875488 274.389953613 274.720031738 274.910461426 274.910461426 274.830383301 274.819641113 274.889953613 274.889953613 274.679992676 274.370422363 274.200500488 274.239562988 274.260070801 273.809875488 272.550109863 265.6300354 266.8800354 267.6300354 267.750152588 267.570465088 267.3800354 267.240386963 267.1300354 267.099761963 267.14956665 267.259918213 267.330230713 267.1300354 266.549957275 265.64956665 264.64956665 263.519683838 256.459960938 256.870117188 256.969726562 256.919921875 256.889648438 256.900390625 256.9296875 257.0 257.120117188 257.200195312 257.110351562 256.830078125 256.389648438 255.73046875 254.809570312 253.639648438 252.299804688 240.899841309 241.319763184 241.540466309 241.609802246 241.579528809 241.510192871 241.449645996 241.449645996 241.470153809 241.420349121 241.220153809 240.899841309 240.460388184 239.859802246 239.059997559 238.069763184 236.880310059 231.400115967 231.750213623 232.029998779 232.099822998 232.009979248 231.869842529 231.719940186 231.489959717 231.289764404 231.279998779 231.340057373 231.219940186 230.820037842 230.270233154 229.699920654 228.969940186 227.949920654 220.260238647 220.330062866 220.520004272 220.649887085 220.560043335 220.339828491 220.180160522 220.149887085 220.180160522 220.120101929 220.010238647 219.930160522 219.899887085 219.770004272 219.430160522 218.859848022 218.109848022 207.549819946 206.970230103 206.560073853 206.419937134 206.439956665 206.500015259 206.52003479 206.500015259 206.500015259 206.549819946 206.60987854 206.709976196 206.879898071 207.240249634 207.870132446 208.750015259 209.720230103 195.39956665 193.920074463 192.820465088 192.240386963 191.9503479 191.729644775 191.549957275 191.429840088 191.370269775 191.370269775 191.530426025 191.96987915 192.780426025 194.030426025 195.64956665 197.339996338 198.830230713 195.189651489 195.090042114 194.540237427 193.330276489 192.090042114 191.490432739 191.530471802 191.769729614 191.960159302 192.059768677 192.030471802 191.840042114 191.630081177 191.700393677 192.160354614 193.080276489 194.689651489 204.710083008 203.529907227 202.960083008 202.980102539 203.08996582 202.889770508 202.520141602 202.239868164 202.100219727 202.00012207 201.969848633 202.08996582 202.259887695 202.370239258 202.449829102 202.819946289 203.719848633 216.719909668 216.659851074 216.59979248 216.570007324 216.790222168 217.440124512 218.219909668 218.570007324 218.190124512 217.50994873 217.079772949 216.960144043 216.719909668 216.17010498 215.639831543 215.409851074 215.380065918 218.950271606 218.589920044 218.490310669 218.549880981 218.500076294 218.259841919 218.030349731 218.040115356 218.269607544 218.490310669 218.620193481 218.759841919 219.059646606 219.479568481 219.910232544 220.259841919 220.469802856 232.219650269 231.830001831 231.549728394 231.120040894 230.599533081 230.089767456 229.580001831 228.969650269 228.419845581 228.299728394 228.799728394 229.539962769 230.060470581 230.370040894 230.789962769 231.289962769 231.599533081 305.019592285 303.09967041 301.269592285 300.59967041 300.72076416 300.250061035 298.97076416 298.16998291 298.570373535 299.550842285 300.65045166 301.859436035 302.339904785 300.609436035 296.88092041 293.41998291 291.59967041 300.680847168 299.100769043 297.469909668 296.419128418 296.089050293 295.930847168 295.499206543 294.979675293 294.880065918 295.520690918 296.919128418 298.389831543 298.540222168 296.540222168 293.290222168 290.710144043 289.460144043 297.399810791 295.739654541 293.899810791 292.529693604 291.920318604 291.569732666 291.029693604 290.590240479 290.769927979 291.729888916 293.189849854 294.769927979 295.699615479 294.989654541 292.390045166 288.930084229 285.949615479 282.880249023 281.809936523 281.019897461 280.649780273 280.720092773 280.790405273 280.500366211 280.080444336 279.960327148 280.069702148 280.149780273 280.390014648 281.149780273 282.040405273 282.149780273 281.059936523 279.290405273 274.040344238 274.309875488 274.639953613 274.859680176 274.920227051 274.870422363 274.809875488 274.809875488 274.840148926 274.679992676 274.300109863 273.929992676 273.899719238 274.179992676 274.359680176 273.929992676 272.700500488 266.109527588 267.2003479 267.750152588 267.769683838 267.570465088 267.349761963 267.2003479 267.170074463 267.269683838 267.410308838 267.509918213 267.479644775 267.240386963 266.660308838 265.820465088 264.870269775 263.769683838 256.650390625 256.98046875 257.009765625 256.9296875 256.879882812 256.889648438 256.940429688 257.049804688 257.1796875 257.240234375 257.129882812 256.870117188 256.469726562 255.879882812 255.0 253.870117188 252.549804688 240.890075684 241.350036621 241.590270996 241.649841309 241.590270996 241.479919434 241.420349121 241.449645996 241.529724121 241.519958496 241.340270996 241.000427246 240.529724121 239.899841309 239.109802246 238.140075684 237.019958496 231.409881592 231.759979248 232.029998779 232.110076904 232.009979248 231.860076904 231.710174561 231.520233154 231.349822998 231.309783936 231.329803467 231.170135498 230.759979248 230.219940186 229.670135498 229.020233154 228.110076904 220.180160522 220.249984741 220.470199585 220.64012146 220.56980896 220.339828491 220.169906616 220.149887085 220.169906616 220.100082397 219.959945679 219.870101929 219.870101929 219.810043335 219.56980896 219.049789429 218.310043335 207.379898071 206.779800415 206.410171509 206.330093384 206.379898071 206.43019104 206.439956665 206.419937134 206.450210571 206.52003479 206.620132446 206.750015259 206.950210571 207.339859009 208.009780884 208.879898071 209.779800415 195.370269775 193.89956665 192.8800354 192.349761963 192.0597229 191.759918213 191.519683838 191.439605713 191.519683838 191.670074463 191.8800354 192.210113525 192.799957275 193.79019165 195.2003479 196.830230713 198.460113525 195.509963989 195.399612427 194.750198364 193.469924927 192.259963989 191.710159302 191.689651489 191.750198364 191.750198364 191.759963989 191.769729614 191.649612427 191.530471802 191.670120239 192.179885864 193.109573364 194.649612427 204.389770508 203.259887695 202.799926758 202.83996582 202.83996582 202.580200195 202.290161133 202.150024414 202.109985352 202.049926758 202.009887695 202.109985352 202.230102539 202.239868164 202.239868164 202.509887695 203.319946289 216.92010498 216.909851074 216.829772949 216.779968262 216.989929199 217.570007324 218.230163574 218.449890137 218.040222168 217.389831543 217.020202637 216.929870605 216.67010498 216.049987793 215.429870605 215.219909668 215.329772949 218.830154419 218.559646606 218.620193481 218.740310669 218.610427856 218.200271606 217.820388794 217.769607544 217.990310669 218.229568481 218.410232544 218.620193481 219.000076294 219.519607544 220.040115356 220.439529419 220.629959106 232.509689331 231.990158081 231.499923706 230.879806519 230.370040894 230.200119019 230.219650269 229.990158081 229.400314331 228.990158081 229.219650269 229.849533081 230.259689331 230.289962769 230.389572144 230.810470581 231.259689331 304.109436035 303.160217285 301.72076416 300.910217285 300.769592285 300.179748535 299.000061035 298.47076416 299.230529785 300.45904541 301.47076416 302.339904785 302.63092041 300.949279785 297.15045166 293.22076416 290.859436035 299.559753418 298.700378418 297.319519043 296.229675293 295.880065918 295.770690918 295.319519043 294.780456543 294.870300293 295.930847168 297.659362793 299.159362793 299.159362793 297.040222168 293.710144043 290.999206543 289.649597168 295.920318604 294.890045166 293.460357666 292.350006104 291.859771729 291.510162354 291.000396729 290.769927979 291.330474854 292.390045166 293.479888916 294.430084229 294.930084229 294.180084229 291.699615479 288.359771729 285.600006104 282.250366211 281.399780273 280.880249023 280.680053711 280.760131836 280.790405273 280.529663086 280.159545898 280.040405273 280.099975586 280.130249023 280.399780273 281.199584961 282.090209961 282.149780273 281.090209961 279.439819336 274.160461426 274.540344238 274.889953613 275.000305176 274.910461426 274.760070801 274.649719238 274.599914551 274.529602051 274.290344238 273.870422363 273.590148926 273.779602051 274.309875488 274.609680176 274.179992676 272.910461426 266.570465088 267.420074463 267.79019165 267.769683838 267.599761963 267.3800354 267.259918213 267.330230713 267.570465088 267.750152588 267.71987915 267.519683838 267.179840088 266.660308838 265.920074463 265.0597229 263.96987915 256.780273438 257.099609375 257.080078125 256.940429688 256.849609375 256.860351562 256.950195312 257.080078125 257.1796875 257.190429688 257.059570312 256.8203125 256.48046875 255.950195312 255.129882812 254.049804688 252.759765625 240.909606934 241.390075684 241.630310059 241.699645996 241.649841309 241.550231934 241.489685059 241.540466309 241.659606934 241.680114746 241.510192871 241.159606934 240.630310059 239.930114746 239.090270996 238.159606934 237.119567871 231.469940186 231.789764404 232.039764404 232.090057373 231.969940186 231.820037842 231.710174561 231.579803467 231.449920654 231.380096436 231.329803467 231.119842529 230.679901123 230.119842529 229.559783936 228.949920654 228.159881592 220.149887085 220.220199585 220.450180054 220.620101929 220.580062866 220.370101929 220.189926147 220.149887085 220.129867554 220.040023804 219.899887085 219.81980896 219.830062866 219.839828491 219.680160522 219.22996521 218.529769897 207.18019104 206.620132446 206.339859009 206.299819946 206.339859009 206.370132446 206.379898071 206.410171509 206.459976196 206.540054321 206.669937134 206.85987854 207.140151978 207.569839478 208.240249634 209.040054321 209.830093384 195.120269775 193.799957275 192.96987915 192.54019165 192.240386963 191.929840088 191.710113525 191.729644775 191.889801025 192.04019165 192.1300354 192.259918213 192.6300354 193.429840088 194.710113525 196.349761963 198.080230713 196.080276489 195.609573364 194.649612427 193.300003052 192.219924927 191.729690552 191.580276489 191.420120239 191.240432739 191.280471802 191.460159302 191.599807739 191.679885864 191.889846802 192.410354614 193.290237427 194.729690552 203.889770508 203.009887695 202.770141602 202.83996582 202.770141602 202.549926758 202.449829102 202.509887695 202.480102539 202.290161133 202.100219727 202.080200195 202.109985352 202.029907227 201.940063477 202.159790039 202.92980957 217.270202637 217.219909668 217.020202637 216.860046387 216.940124512 217.290222168 217.719909668 217.840026855 217.500183105 217.070007324 216.940124512 217.020202637 216.790222168 216.139831543 215.480163574 215.25994873 215.440124512 218.460037231 218.290115356 218.500076294 218.719802856 218.589920044 218.160232544 217.780349731 217.740310669 217.979568481 218.259841919 218.460037231 218.689529419 219.059646606 219.589920044 220.129959106 220.519607544 220.700271606 233.150314331 232.520431519 231.770431519 230.980392456 230.520431519 230.650314331 231.049728394 230.980392456 230.169845581 229.270431519 229.049728394 229.490158081 229.879806519 229.959884644 230.089767456 230.599533081 231.139572144 303.089904785 302.70904541 301.359436035 300.390686035 300.320373535 300.320373535 299.949279785 299.93951416 300.70904541 301.679748535 302.43951416 303.25982666 303.699279785 302.289123535 298.519592285 294.179748535 291.18951416 298.549987793 298.100769043 296.850769043 295.809753418 295.620300293 295.860534668 295.850769043 295.719909668 296.040222168 297.169128418 298.870300293 300.399597168 300.649597168 298.819519043 295.489440918 292.339050293 290.370300293 294.369537354 293.869537354 292.819732666 291.989654541 291.769927979 291.729888916 291.609771729 291.800201416 292.540435791 293.390045166 293.930084229 294.399810791 294.819732666 294.309967041 292.100006104 288.850006104 286.019927979 281.809936523 281.130249023 280.729858398 280.580444336 280.670288086 280.739624023 280.540405273 280.239624023 280.120483398 280.120483398 280.149780273 280.430053711 281.189819336 281.979858398 282.010131836 281.080444336 279.649780273 274.389953613 274.889953613 275.210266113 275.139953613 274.859680176 274.569641113 274.359680176 274.220031738 274.120422363 273.929992676 273.660461426 273.550109863 273.880187988 274.489562988 274.840148926 274.399719238 273.099914551 266.939605713 267.5597229 267.780426025 267.79019165 267.679840088 267.479644775 267.370269775 267.500152588 267.780426025 267.889801025 267.710113525 267.3800354 267.0597229 266.660308838 266.04019165 265.21987915 264.1300354 256.870117188 257.209960938 257.190429688 257.0 256.849609375 256.83984375 256.959960938 257.110351562 257.1796875 257.150390625 257.009765625 256.799804688 256.490234375 255.98046875 255.219726562 254.200195312 252.9296875 240.939880371 241.390075684 241.619567871 241.710388184 241.720153809 241.670349121 241.630310059 241.670349121 241.760192871 241.790466309 241.659606934 241.329528809 240.790466309 240.029724121 239.119567871 238.170349121 237.189880371 231.590057373 231.860076904 232.029998779 232.039764404 231.900115967 231.750213623 231.659881592 231.610076904 231.529998779 231.440155029 231.340057373 231.099822998 230.650115967 230.050018311 229.429901123 228.820037842 228.150115967 220.149887085 220.220199585 220.419906616 220.56980896 220.540023804 220.370101929 220.209945679 220.120101929 220.060043335 219.950180054 219.81980896 219.72996521 219.709945679 219.72996521 219.629867554 219.270004272 218.709945679 207.049819946 206.569839478 206.379898071 206.370132446 206.390151978 206.379898071 206.390151978 206.439956665 206.509780884 206.589859009 206.709976196 206.919937134 207.229995728 207.700210571 208.339859009 209.089859009 209.830093384 194.750152588 193.609527588 192.910308838 192.509918213 192.21987915 191.960113525 191.870269775 191.990386963 192.170074463 192.189605713 192.080230713 192.070465088 192.3800354 193.139801025 194.370269775 195.960113525 197.750152588 196.639846802 195.729690552 194.490432739 193.200393677 192.280471802 191.800003052 191.450393677 191.019729614 190.719924927 190.840042114 191.250198364 191.639846802 191.849807739 192.040237427 192.490432739 193.370315552 194.790237427 203.549926758 202.900024414 202.759887695 202.759887695 202.650024414 202.609985352 202.850219727 203.130004883 203.049926758 202.58996582 202.159790039 201.989868164 201.949829102 201.83996582 201.719848633 201.92980957 202.699829102 217.469909668 217.340026855 217.079772949 216.880065918 216.840026855 216.960144043 217.139831543 217.17010498 216.980163574 216.820007324 216.929870605 217.119812012 216.960144043 216.360046387 215.739929199 215.540222168 215.679870605 218.429763794 218.219802856 218.379959106 218.540115356 218.439529419 218.120193481 217.879959106 217.889724731 218.120193481 218.410232544 218.599685669 218.780349731 219.070388794 219.530349731 220.059646606 220.509841919 220.750076294 233.009689331 232.570236206 231.959884644 231.360275269 231.070236206 231.339767456 231.810470581 231.709884644 230.650314331 229.280197144 228.610275269 228.889572144 229.480392456 229.889572144 230.230392456 230.690353394 231.039962769 301.66998291 301.50982666 300.34967041 299.519592285 299.75982666 300.47076416 300.980529785 301.40045166 301.97076416 302.480529785 302.99029541 303.820373535 304.43951416 303.359436035 300.00982666 295.83013916 292.61920166 297.419128418 297.169128418 296.229675293 295.489440918 295.569519043 296.100769043 296.559753418 296.899597168 297.380065918 298.200378418 299.360534668 300.559753418 300.979675293 299.690612793 296.799987793 293.600769043 291.130065918 292.779693604 292.529693604 291.840240479 291.420318604 291.569732666 291.920318604 292.250396729 292.769927979 293.510162354 294.059967041 294.290435791 294.619537354 295.130279541 294.840240479 292.859771729 289.699615479 286.710357666 281.710327148 281.130249023 280.659545898 280.449584961 280.529663086 280.620483398 280.500366211 280.260131836 280.170288086 280.199584961 280.309936523 280.680053711 281.380249023 282.000366211 281.939819336 281.140014648 279.920288086 274.870422363 275.420227051 275.590148926 275.269836426 274.800109863 274.410461426 274.139953613 273.960266113 273.889953613 273.870422363 273.800109863 273.769836426 274.029602051 274.550109863 274.849914551 274.439758301 273.200500488 267.330230713 267.7003479 267.79019165 267.799957275 267.740386963 267.549957275 267.420074463 267.530426025 267.740386963 267.729644775 267.460113525 267.179840088 266.990386963 266.71987915 266.179840088 265.349761963 264.2003479 256.900390625 257.309570312 257.3203125 257.08984375 256.879882812 256.849609375 256.969726562 257.129882812 257.190429688 257.16015625 257.049804688 256.860351562 256.549804688 256.030273438 255.290039062 254.3203125 253.0703125 241.029724121 241.390075684 241.559997559 241.640075684 241.710388184 241.739685059 241.739685059 241.750427246 241.779724121 241.779724121 241.710388184 241.470153809 240.970153809 240.180114746 239.199645996 238.189880371 237.220153809 231.719940186 231.920135498 232.029998779 232.000213623 231.849822998 231.690155029 231.619842529 231.599822998 231.550018311 231.469940186 231.369842529 231.159881592 230.719940186 230.079803467 229.380096436 228.730194092 228.119842529 220.14012146 220.22996521 220.359848022 220.450180054 220.399887085 220.260238647 220.14012146 220.06980896 219.999984741 219.910140991 219.770004272 219.64012146 219.560043335 219.520004272 219.430160522 219.200180054 218.810043335 206.970230103 206.549819946 206.43019104 206.470230103 206.470230103 206.419937134 206.410171509 206.450210571 206.500015259 206.549819946 206.640151978 206.839859009 207.169937134 207.660171509 208.299819946 209.040054321 209.799819946 194.639801025 193.639801025 192.960113525 192.500152588 192.14956665 191.939605713 191.9503479 192.1300354 192.259918213 192.170074463 191.9503479 191.939605713 192.330230713 193.1300354 194.250152588 195.689605713 197.460113525 196.809768677 195.559768677 194.229690552 193.120315552 192.389846802 191.899612427 191.349807739 190.740432739 190.410354614 190.609573364 191.200393677 191.719924927 191.950393677 192.050003052 192.420120239 193.319534302 194.800003052 203.719848633 203.130004883 202.810180664 202.540161133 202.330200195 202.50012207 203.069946289 203.549926758 203.42980957 202.819946289 202.239868164 201.989868164 201.900024414 201.770141602 201.650024414 201.83996582 202.580200195 217.210144043 217.049987793 216.869812012 216.829772949 216.860046387 216.889831543 216.92010498 216.92010498 216.860046387 216.84979248 216.969909668 217.09979248 216.929870605 216.440124512 216.000183105 215.880065918 215.969909668 219.040115356 218.589920044 218.360427856 218.200271606 218.049880981 217.919998169 217.860427856 217.910232544 218.070388794 218.309646606 218.519607544 218.700271606 218.919998169 219.309646606 219.860427856 220.419998169 220.790115356 231.589767456 231.740158081 231.849533081 231.849533081 231.830001831 232.020431519 232.330001831 232.179611206 231.129806519 229.650314331 228.740158081 228.900314331 229.650314331 230.339767456 230.730392456 230.900314331 230.879806519 300.25982666 300.25982666 299.61920166 299.16998291 299.480529785 300.269592285 301.00982666 301.570373535 302.02935791 302.390686035 302.800842285 303.47076416 303.90045166 303.050842285 300.56060791 297.34967041 294.50982666 296.130065918 296.030456543 295.630065918 295.399597168 295.549987793 295.969909668 296.499206543 297.089050293 297.669128418 298.169128418 298.700378418 299.329284668 299.620300293 298.799987793 296.719909668 294.089050293 291.569519043 291.199615479 290.989654541 290.670318604 290.680084229 291.059967041 291.529693604 291.970123291 292.510162354 293.140045166 293.630279541 293.960357666 294.439849854 294.930084229 294.590240479 292.800201416 290.029693604 287.260162354 281.930053711 281.380249023 280.809936523 280.489624023 280.489624023 280.529663086 280.420288086 280.239624023 280.220092773 280.330444336 280.559936523 281.029663086 281.739624023 282.220092773 282.059936523 281.279663086 280.159545898 275.519836426 275.989562988 275.910461426 275.349914551 274.769836426 274.399719238 274.170227051 274.019836426 274.029602051 274.170227051 274.189758301 274.069641113 274.109680176 274.429992676 274.649719238 274.309875488 273.179992676 267.71987915 267.859527588 267.8097229 267.769683838 267.679840088 267.490386963 267.320465088 267.370269775 267.490386963 267.420074463 267.2003479 267.04019165 267.000152588 266.830230713 266.29019165 265.410308838 264.229644775 256.9296875 257.379882812 257.440429688 257.219726562 256.969726562 256.900390625 257.0 257.129882812 257.1796875 257.169921875 257.110351562 256.950195312 256.599609375 256.059570312 255.33984375 254.419921875 253.169921875 241.170349121 241.449645996 241.500427246 241.519958496 241.600036621 241.710388184 241.769958496 241.779724121 241.760192871 241.720153809 241.670349121 241.510192871 241.090270996 240.319763184 239.290466309 238.239685059 237.239685059 231.809783936 231.940155029 231.989959717 231.969940186 231.840057373 231.699920654 231.619842529 231.579803467 231.529998779 231.460174561 231.389862061 231.219940186 230.849822998 230.219940186 229.460174561 228.750213623 228.130096436 220.129867554 220.200180054 220.279769897 220.279769897 220.189926147 220.06980896 220.010238647 219.999984741 219.990219116 219.930160522 219.810043335 219.660140991 219.499984741 219.370101929 219.249984741 219.080062866 218.839828491 206.870132446 206.459976196 206.390151978 206.479995728 206.52003479 206.450210571 206.399917603 206.399917603 206.419937134 206.439956665 206.509780884 206.709976196 207.069839478 207.589859009 208.250015259 209.000015259 209.790054321 194.830230713 193.920074463 193.229644775 192.670074463 192.259918213 192.030426025 192.019683838 192.160308838 192.269683838 192.179840088 192.030426025 192.109527588 192.570465088 193.320465088 194.250152588 195.509918213 197.210113525 196.670120239 195.229690552 193.889846802 192.929885864 192.349807739 191.870315552 191.269729614 190.670120239 190.380081177 190.609573364 191.219924927 191.790237427 192.030471802 192.090042114 192.410354614 193.309768677 194.769729614 204.359985352 203.699829102 203.100219727 202.509887695 202.130004883 202.310180664 202.949829102 203.480102539 203.420043945 202.909790039 202.440063477 202.210083008 202.069946289 201.859985352 201.67980957 201.810180664 202.449829102 216.610046387 216.369812012 216.290222168 216.460144043 216.67010498 216.799987793 216.92010498 217.020202637 217.079772949 217.040222168 217.000183105 216.909851074 216.67010498 216.34979248 216.17010498 216.199890137 216.290222168 220.089920044 219.389724731 218.689529419 218.169998169 217.929763794 217.929763794 217.939529419 217.910232544 217.910232544 218.059646606 218.290115356 218.519607544 218.740310669 219.099685669 219.650466919 220.259841919 220.710037231 229.520431519 230.289962769 231.219650269 231.810470581 231.929611206 231.889572144 231.999923706 231.959884644 231.310470581 230.219650269 229.469650269 229.589767456 230.299728394 230.950119019 231.179611206 231.060470581 230.870040894 299.31060791 299.539123535 299.519592285 299.38092041 299.41998291 299.660217285 300.02935791 300.500061035 301.11920166 301.75982666 302.269592285 302.500061035 302.300842285 301.43951416 299.980529785 298.160217285 296.019592285 294.979675293 295.020690918 295.139831543 295.280456543 295.299987793 295.309753418 295.559753418 296.130065918 296.819519043 297.360534668 297.710144043 297.909362793 297.780456543 297.059753418 295.729675293 293.950378418 291.700378418 289.890045166 289.689849854 289.689849854 289.930084229 290.290435791 290.550201416 290.760162354 291.040435791 291.529693604 292.170318604 292.890045166 293.559967041 293.790435791 293.159576416 291.670318604 289.790435791 287.790435791 282.050170898 281.590209961 281.059936523 280.729858398 280.630249023 280.559936523 280.399780273 280.290405273 280.309936523 280.390014648 280.569702148 281.069702148 281.819702148 282.279663086 282.050170898 281.220092773 280.090209961 276.040344238 276.359680176 276.080383301 275.389953613 274.809875488 274.559875488 274.420227051 274.340148926 274.410461426 274.599914551 274.620422363 274.370422363 274.189758301 274.330383301 274.500305176 274.170227051 273.080383301 268.019683838 268.000152588 267.830230713 267.710113525 267.580230713 267.339996338 267.139801025 267.14956665 267.240386963 267.2003479 267.070465088 267.030426025 267.0597229 266.870269775 266.3097229 265.429840088 264.259918213 257.01953125 257.459960938 257.540039062 257.349609375 257.08984375 256.98046875 257.030273438 257.120117188 257.139648438 257.150390625 257.099609375 256.940429688 256.580078125 256.030273438 255.33984375 254.459960938 253.23046875 241.369567871 241.559997559 241.510192871 241.449645996 241.489685059 241.630310059 241.750427246 241.790466309 241.739685059 241.670349121 241.590270996 241.470153809 241.109802246 240.380310059 239.390075684 238.340270996 237.309997559 231.829803467 231.889862061 231.909881592 231.920135498 231.889862061 231.789764404 231.679901123 231.590057373 231.520233154 231.449920654 231.380096436 231.239959717 230.929901123 230.369842529 229.630096436 228.880096436 228.179901123 220.100082397 220.189926147 220.240219116 220.200180054 220.060043335 219.919906616 219.870101929 219.930160522 219.999984741 219.990219116 219.910140991 219.760238647 219.589828491 219.39012146 219.200180054 219.029769897 218.859848022 206.720230103 206.330093384 206.299819946 206.439956665 206.529800415 206.490249634 206.43019104 206.399917603 206.370132446 206.350112915 206.410171509 206.649917603 207.080093384 207.649917603 208.299819946 209.009780884 209.790054321 194.859527588 194.000152588 193.349761963 192.830230713 192.439605713 192.179840088 192.070465088 192.120269775 192.240386963 192.280426025 192.269683838 192.410308838 192.839996338 193.46987915 194.250152588 195.39956665 197.099761963 196.769729614 195.259963989 193.870315552 192.920120239 192.330276489 191.859573364 191.370315552 190.920120239 190.679885864 190.780471802 191.219924927 191.719924927 192.050003052 192.200393677 192.519729614 193.330276489 194.620315552 204.870239258 204.17980957 203.469848633 202.759887695 202.259887695 202.239868164 202.630004883 202.989868164 203.020141602 202.810180664 202.650024414 202.540161133 202.330200195 201.980102539 201.690063477 201.699829102 202.219848633 216.239929199 215.860046387 215.699890137 215.869812012 216.17010498 216.480163574 216.820007324 217.130065918 217.279968262 217.199890137 216.989929199 216.750183105 216.500183105 216.320007324 216.320007324 216.489929199 216.650085449 221.000076294 220.339920044 219.570388794 218.979568481 218.740310669 218.700271606 218.589920044 218.320388794 218.089920044 218.059646606 218.229568481 218.439529419 218.679763794 219.030349731 219.549880981 220.110427856 220.519607544 227.999923706 228.839767456 229.870040894 230.490158081 230.469650269 230.240158081 230.270431519 230.480392456 230.459884644 230.139572144 229.999923706 230.299728394 230.839767456 231.200119019 231.280197144 231.200119019 231.240158081 298.890686035 299.18951416 299.47076416 299.480529785 299.25982666 299.02935791 298.97076416 299.31060791 300.160217285 301.24029541 301.86920166 301.589904785 300.58013916 299.52935791 298.820373535 298.109436035 296.519592285 294.360534668 294.440612793 294.739440918 294.909362793 294.749206543 294.479675293 294.489440918 294.919128418 295.649597168 296.479675293 297.110534668 297.190612793 296.540222168 295.499206543 294.540222168 293.510925293 291.680847168 289.189849854 289.059967041 289.159576416 289.359771729 289.519927979 289.609771729 289.590240479 289.600006104 289.880279541 290.630279541 291.649810791 292.340240479 292.149810791 291.210357666 290.180084229 289.449615479 288.519927979 281.790405273 281.489624023 281.180053711 280.970092773 280.809936523 280.599975586 280.399780273 280.380249023 280.439819336 280.359741211 280.279663086 280.609741211 281.349975586 281.870483398 281.620483398 280.710327148 279.519897461 276.170227051 276.429992676 276.080383301 275.410461426 274.929992676 274.779602051 274.710266113 274.620422363 274.700500488 274.889953613 274.920227051 274.670227051 274.460266113 274.529602051 274.609680176 274.149719238 272.960266113 268.099761963 268.009918213 267.839996338 267.729644775 267.570465088 267.299957275 267.0597229 267.04019165 267.1300354 267.14956665 267.099761963 267.089996338 267.080230713 266.839996338 266.280426025 265.439605713 264.299957275 257.169921875 257.580078125 257.650390625 257.459960938 257.219726562 257.0703125 257.059570312 257.080078125 257.08984375 257.080078125 257.040039062 256.879882812 256.509765625 255.969726562 255.3203125 254.450195312 253.219726562 241.529724121 241.689880371 241.600036621 241.489685059 241.479919434 241.579528809 241.710388184 241.769958496 241.720153809 241.609802246 241.500427246 241.369567871 241.029724121 240.390075684 239.500427246 238.500427246 237.449645996 231.820037842 231.840057373 231.849822998 231.909881592 231.929901123 231.880096436 231.750213623 231.630096436 231.529998779 231.440155029 231.349822998 231.199920654 230.909881592 230.429901123 229.779998779 229.020233154 228.259979248 220.089828491 220.189926147 220.260238647 220.209945679 220.040023804 219.870101929 219.81980896 219.89012146 219.990219116 219.999984741 219.950180054 219.859848022 219.709945679 219.510238647 219.260238647 219.040023804 218.859848022 206.60987854 206.259780884 206.259780884 206.410171509 206.509780884 206.509780884 206.490249634 206.470230103 206.43019104 206.370132446 206.399917603 206.649917603 207.129898071 207.729995728 208.35987854 209.000015259 209.729995728 194.410308838 193.54019165 193.009918213 192.71987915 192.509918213 192.29019165 192.089996338 192.030426025 192.189605713 192.359527588 192.460113525 192.589996338 192.920074463 193.479644775 194.250152588 195.410308838 197.139801025 197.340042114 195.880081177 194.420120239 193.300003052 192.559768677 192.050003052 191.689651489 191.420120239 191.189651489 191.030471802 191.099807739 191.420120239 191.819534302 192.139846802 192.509963989 193.200393677 194.259963989 204.650024414 204.00012207 203.460083008 202.960083008 202.540161133 202.319946289 202.310180664 202.370239258 202.42980957 202.520141602 202.67980957 202.699829102 202.449829102 202.009887695 201.659790039 201.580200195 201.989868164 216.619812012 216.17010498 215.810241699 215.719909668 215.869812012 216.210144043 216.67010498 217.079772949 217.279968262 217.199890137 217.00994873 216.810241699 216.619812012 216.460144043 216.460144043 216.659851074 216.889831543 221.089920044 220.809646606 220.500076294 220.280349731 220.179763794 220.009841919 219.650466919 219.139724731 218.710037231 218.479568481 218.419998169 218.490310669 218.710037231 219.099685669 219.580154419 220.049880981 220.410232544 227.940353394 228.129806519 228.339767456 228.270431519 227.940353394 227.700119019 227.839767456 228.249923706 228.669845581 229.150314331 229.820236206 230.539962769 230.950119019 231.039962769 231.120040894 231.419845581 231.860275269 298.77935791 298.91998291 299.070373535 299.070373535 298.929748535 298.730529785 298.550842285 298.66998291 299.47076416 300.730529785 301.43951416 300.84967041 299.320373535 298.050842285 297.589904785 297.289123535 295.97076416 294.309753418 294.309753418 294.370300293 294.299987793 294.079284668 293.919128418 293.950378418 294.139831543 294.630065918 295.569519043 296.549987793 296.680847168 295.610534668 294.139831543 293.290222168 292.860534668 291.620300293 289.100006104 289.019927979 288.949615479 288.890045166 288.920318604 289.069732666 289.159576416 289.080474854 289.109771729 289.689849854 290.640045166 291.130279541 290.569732666 289.489654541 288.939849854 289.159576416 289.069732666 281.260131836 281.149780273 281.090209961 281.059936523 280.880249023 280.580444336 280.390014648 280.500366211 280.649780273 280.430053711 280.029663086 280.090209961 280.729858398 281.269897461 280.989624023 279.960327148 278.680053711 276.000305176 276.269836426 276.000305176 275.450500488 275.099914551 275.000305176 274.910461426 274.760070801 274.779602051 274.970031738 275.090148926 275.010070801 274.920227051 274.979797363 274.889953613 274.220031738 272.819641113 268.019683838 267.960113525 267.889801025 267.849761963 267.710113525 267.39956665 267.109527588 267.04019165 267.120269775 267.179840088 267.160308838 267.120269775 267.0597229 266.799957275 266.269683838 265.460113525 264.29019165 257.33984375 257.6796875 257.740234375 257.5703125 257.309570312 257.110351562 257.049804688 257.049804688 257.0703125 257.0703125 257.01953125 256.83984375 256.469726562 255.940429688 255.280273438 254.400390625 253.169921875 241.619567871 241.760192871 241.699645996 241.600036621 241.559997559 241.579528809 241.649841309 241.689880371 241.630310059 241.510192871 241.390075684 241.250427246 240.930114746 240.359802246 239.590270996 238.680114746 237.600036621 231.860076904 231.889862061 231.880096436 231.909881592 231.940155029 231.909881592 231.779998779 231.650115967 231.570037842 231.489959717 231.360076904 231.159881592 230.860076904 230.440155029 229.860076904 229.130096436 228.320037842 220.049789429 220.189926147 220.290023804 220.260238647 220.080062866 219.89012146 219.81980896 219.870101929 219.950180054 219.959945679 219.930160522 219.879867554 219.799789429 219.609848022 219.330062866 219.049789429 218.859848022 206.589859009 206.290054321 206.27003479 206.35987854 206.43019104 206.470230103 206.509780884 206.560073853 206.540054321 206.470230103 206.450210571 206.669937134 207.120132446 207.720230103 208.299819946 208.899917603 209.629898071 193.769683838 192.849761963 192.479644775 192.490386963 192.570465088 192.479644775 192.21987915 192.0597229 192.170074463 192.39956665 192.519683838 192.620269775 192.89956665 193.479644775 194.3097229 195.509918213 197.179840088 197.870315552 196.509963989 195.030471802 193.780471802 192.870315552 192.269729614 191.969924927 191.830276489 191.609573364 191.229690552 190.939651489 191.009963989 191.389846802 191.830276489 192.269729614 192.870315552 193.849807739 203.909790039 203.290161133 203.009887695 202.870239258 202.670043945 202.389770508 202.120239258 201.960083008 201.980102539 202.219848633 202.529907227 202.630004883 202.409790039 202.009887695 201.670043945 201.58996582 201.960083008 217.520202637 217.150085449 216.67010498 216.299987793 216.17010498 216.310241699 216.650085449 216.980163574 217.110046387 217.070007324 217.020202637 216.989929199 216.84979248 216.59979248 216.460144043 216.579772949 216.869812012 220.179763794 220.299880981 220.639724731 220.979568481 221.099685669 220.849685669 220.339920044 219.799880981 219.370193481 219.019607544 218.700271606 218.540115356 218.719802856 219.189529419 219.729568481 220.160232544 220.549880981 229.289962769 228.629806519 227.660079956 226.679611206 226.070236206 225.999923706 226.289962769 226.639572144 227.089767456 227.969650269 229.270431519 230.389572144 230.789962769 230.719650269 230.950119019 231.650314331 232.249923706 298.70904541 298.66998291 298.539123535 298.47076416 298.61920166 298.750061035 298.52935791 298.24029541 298.609436035 299.679748535 300.410217285 299.86920166 298.339904785 297.019592285 296.41998291 295.95904541 294.789123535 294.339050293 294.249206543 293.960144043 293.610534668 293.469909668 293.639831543 293.780456543 293.639831543 293.630065918 294.309753418 295.319519043 295.460144043 294.210144043 292.579284668 291.899597168 292.030456543 291.549987793 289.140045166 289.069732666 288.729888916 288.350006104 288.350006104 288.760162354 289.130279541 289.080474854 288.859771729 289.069732666 289.659576416 289.850006104 289.109771729 288.080474854 287.850006104 288.470123291 288.750396729 280.960327148 280.960327148 281.029663086 281.080444336 280.920288086 280.599975586 280.430053711 280.649780273 280.920288086 280.739624023 280.199584961 280.059936523 280.559936523 281.040405273 280.699584961 279.529663086 278.080444336 275.809875488 276.090148926 275.929992676 275.529602051 275.269836426 275.200500488 275.069641113 274.840148926 274.760070801 274.950500488 275.189758301 275.319641113 275.380187988 275.389953613 275.109680176 274.239562988 272.710266113 267.960113525 267.990386963 268.009918213 268.019683838 267.8800354 267.54019165 267.210113525 267.070465088 267.120269775 267.170074463 267.160308838 267.099761963 267.019683838 266.799957275 266.3097229 265.460113525 264.189605713 257.41015625 257.73046875 257.790039062 257.620117188 257.33984375 257.099609375 256.990234375 257.01953125 257.0703125 257.080078125 257.01953125 256.830078125 256.469726562 255.940429688 255.25 254.33984375 253.0703125 241.640075684 241.779724121 241.769958496 241.720153809 241.649841309 241.590270996 241.569763184 241.540466309 241.479919434 241.369567871 241.290466309 241.159606934 240.840270996 240.300231934 239.600036621 238.750427246 237.649841309 231.960174561 232.029998779 231.989959717 231.949920654 231.920135498 231.860076904 231.759979248 231.670135498 231.610076904 231.539764404 231.409881592 231.170135498 230.869842529 230.480194092 229.920135498 229.190155029 228.360076904 220.049789429 220.189926147 220.290023804 220.240219116 220.06980896 219.899887085 219.81980896 219.850082397 219.89012146 219.899887085 219.879867554 219.870101929 219.830062866 219.669906616 219.39012146 219.089828491 218.879867554 206.60987854 206.350112915 206.290054321 206.290054321 206.290054321 206.339859009 206.459976196 206.580093384 206.600112915 206.540054321 206.52003479 206.689956665 207.060073853 207.580093384 208.149917603 208.790054321 209.600112915 193.519683838 192.599761963 192.339996338 192.530426025 192.79019165 192.8097229 192.54019165 192.299957275 192.299957275 192.46987915 192.580230713 192.670074463 192.960113525 193.570465088 194.429840088 195.54019165 197.070465088 197.700393677 196.420120239 195.019729614 193.809768677 192.870315552 192.210159302 191.899612427 191.849807739 191.750198364 191.380081177 190.950393677 190.849807739 191.130081177 191.569534302 192.009963989 192.620315552 193.660354614 203.50012207 202.880004883 202.699829102 202.719848633 202.659790039 202.449829102 202.170043945 201.949829102 201.909790039 202.08996582 202.33996582 202.449829102 202.319946289 202.049926758 201.810180664 201.759887695 202.109985352 218.029968262 217.860046387 217.440124512 216.989929199 216.679870605 216.59979248 216.699890137 216.820007324 216.84979248 216.84979248 216.949890137 217.060241699 216.92010498 216.540222168 216.239929199 216.299987793 216.630065918 219.009841919 219.229568481 219.910232544 220.599685669 220.919998169 220.729568481 220.309646606 219.979568481 219.769607544 219.450271606 218.960037231 218.639724731 218.790115356 219.339920044 219.919998169 220.400466919 220.919998169 230.959884644 229.900314331 228.200119019 226.650314331 225.919845581 225.980392456 226.310470581 226.389572144 226.509689331 227.280197144 228.740158081 230.020431519 230.440353394 230.389572144 230.799728394 231.669845581 232.080001831 298.49029541 298.49029541 298.24029541 298.11920166 298.449279785 298.789123535 298.480529785 297.750061035 297.56060791 298.22076416 298.84967041 298.52935791 297.390686035 296.20904541 295.359436035 294.570373535 293.61920166 293.909362793 293.880065918 293.489440918 293.030456543 292.989440918 293.380065918 293.559753418 293.120300293 292.620300293 292.880065918 293.639831543 293.669128418 292.460144043 291.030456543 290.649597168 291.210144043 291.399597168 288.840240479 288.790435791 288.309967041 287.790435791 287.769927979 288.309967041 288.830474854 288.800201416 288.430084229 288.309967041 288.519927979 288.439849854 287.720123291 286.880279541 286.720123291 287.180084229 287.340240479 281.229858398 281.239624023 281.250366211 281.279663086 281.159545898 280.849975586 280.649780273 280.859741211 281.210327148 281.180053711 280.760131836 280.569702148 280.960327148 281.349975586 280.960327148 279.699584961 278.050170898 275.769836426 276.050109863 275.920227051 275.609680176 275.429992676 275.370422363 275.229797363 274.950500488 274.800109863 274.950500488 275.269836426 275.519836426 275.620422363 275.540344238 275.120422363 274.200500488 272.689758301 268.04019165 268.14956665 268.189605713 268.139801025 267.920074463 267.589996338 267.259918213 267.089996338 267.089996338 267.139801025 267.120269775 267.070465088 266.990386963 266.799957275 266.320465088 265.410308838 264.019683838 257.389648438 257.719726562 257.780273438 257.620117188 257.309570312 257.030273438 256.9296875 256.98046875 257.059570312 257.0703125 256.990234375 256.780273438 256.440429688 255.91015625 255.200195312 254.25 252.959960938 241.670349121 241.800231934 241.819763184 241.790466309 241.699645996 241.569763184 241.479919434 241.420349121 241.329528809 241.260192871 241.199645996 241.090270996 240.769958496 240.220153809 239.540466309 238.710388184 237.609802246 232.110076904 232.210174561 232.139862061 231.989959717 231.869842529 231.800018311 231.719940186 231.659881592 231.610076904 231.559783936 231.449920654 231.259979248 231.000213623 230.610076904 230.020233154 229.239959717 228.380096436 220.120101929 220.260238647 220.290023804 220.180160522 219.999984741 219.859848022 219.790023804 219.799789429 219.830062866 219.850082397 219.859848022 219.879867554 219.859848022 219.740219116 219.47996521 219.189926147 218.959945679 206.600112915 206.339859009 206.250015259 206.189956665 206.169937134 206.240249634 206.379898071 206.52003479 206.580093384 206.580093384 206.600112915 206.729995728 207.009780884 207.439956665 208.02003479 208.740249634 209.640151978 193.839996338 192.960113525 192.679840088 192.839996338 193.099761963 193.14956665 192.920074463 192.639801025 192.54019165 192.620269775 192.710113525 192.839996338 193.139801025 193.710113525 194.479644775 195.439605713 196.8097229 196.950393677 195.679885864 194.439651489 193.420120239 192.609573364 191.969924927 191.630081177 191.620315552 191.689651489 191.540237427 191.229690552 191.099807739 191.309768677 191.660354614 192.040237427 192.660354614 193.840042114 203.900024414 203.290161133 203.029907227 202.920043945 202.770141602 202.580200195 202.370239258 202.190063477 202.100219727 202.139770508 202.259887695 202.330200195 202.279907227 202.130004883 201.989868164 201.989868164 202.330200195 217.650085449 217.560241699 217.329772949 217.040222168 216.779968262 216.639831543 216.619812012 216.619812012 216.59979248 216.639831543 216.799987793 216.929870605 216.790222168 216.380065918 216.049987793 216.119812012 216.469909668 218.660232544 218.710037231 219.290115356 219.990310669 220.379959106 220.320388794 220.059646606 219.950271606 219.960037231 219.780349731 219.309646606 218.939529419 219.030349731 219.540115356 220.099685669 220.599685669 221.309646606 231.480392456 230.570236206 228.940353394 227.400314331 226.639572144 226.669845581 226.870040894 226.740158081 226.530197144 226.950119019 228.139572144 229.320236206 229.830001831 229.990158081 230.580001831 231.440353394 231.530197144 298.070373535 298.339904785 298.199279785 298.070373535 298.36920166 298.699279785 298.359436035 297.52935791 297.070373535 297.31060791 297.61920166 297.36920166 296.59967041 295.640686035 294.63092041 293.640686035 292.97076416 293.030456543 293.219909668 293.020690918 292.669128418 292.659362793 293.040222168 293.200378418 292.710144043 292.059753418 292.030456543 292.419128418 292.249206543 291.169128418 290.049987793 289.870300293 290.499206543 290.940612793 288.170318604 288.229888916 287.880279541 287.430084229 287.369537354 287.800201416 288.229888916 288.210357666 287.880279541 287.659576416 287.600006104 287.330474854 286.689849854 286.050201416 285.809967041 285.830474854 285.590240479 281.920288086 281.890014648 281.739624023 281.680053711 281.630249023 281.370483398 281.059936523 281.080444336 281.390014648 281.510131836 281.269897461 281.120483398 281.409545898 281.760131836 281.430053711 280.220092773 278.470092773 275.840148926 276.090148926 276.000305176 275.729797363 275.569641113 275.500305176 275.340148926 275.069641113 274.920227051 275.029602051 275.330383301 275.580383301 275.649719238 275.500305176 275.050109863 274.210266113 272.819641113 268.189605713 268.3800354 268.349761963 268.14956665 267.830230713 267.509918213 267.250152588 267.109527588 267.089996338 267.1300354 267.120269775 267.0597229 266.96987915 266.769683838 266.269683838 265.299957275 263.859527588 257.379882812 257.73046875 257.809570312 257.629882812 257.26953125 256.969726562 256.870117188 256.940429688 257.030273438 257.01953125 256.91015625 256.700195312 256.360351562 255.83984375 255.120117188 254.16015625 252.860351562 241.769958496 241.890075684 241.909606934 241.859802246 241.720153809 241.550231934 241.430114746 241.350036621 241.269958496 241.170349121 241.130310059 241.019958496 240.710388184 240.170349121 239.470153809 238.649841309 237.540466309 232.210174561 232.349822998 232.250213623 232.029998779 231.860076904 231.770233154 231.710174561 231.630096436 231.559783936 231.500213623 231.449920654 231.360076904 231.179901123 230.809783936 230.170135498 229.320037842 228.400115967 220.279769897 220.410140991 220.359848022 220.160140991 219.959945679 219.839828491 219.779769897 219.749984741 219.749984741 219.779769897 219.830062866 219.879867554 219.879867554 219.790023804 219.56980896 219.279769897 219.029769897 206.52003479 206.27003479 206.18019104 206.140151978 206.140151978 206.220230103 206.350112915 206.450210571 206.509780884 206.569839478 206.649917603 206.77003479 206.979995728 207.35987854 207.939956665 208.720230103 209.629898071 194.320465088 193.46987915 193.089996338 193.070465088 193.21987915 193.299957275 193.160308838 192.920074463 192.759918213 192.769683838 192.870269775 193.04019165 193.339996338 193.8097229 194.439605713 195.299957275 196.6300354 196.370315552 195.099807739 193.990432739 193.160354614 192.509963989 191.920120239 191.540237427 191.490432739 191.630081177 191.670120239 191.559768677 191.550003052 191.740432739 192.000198364 192.300003052 192.939651489 194.229690552 204.670043945 204.120239258 203.719848633 203.350219727 202.980102539 202.690063477 202.50012207 202.359985352 202.25012207 202.210083008 202.25012207 202.310180664 202.299926758 202.219848633 202.120239258 202.130004883 202.460083008 216.869812012 216.699890137 216.590026855 216.520202637 216.469909668 216.449890137 216.469909668 216.500183105 216.50994873 216.549987793 216.67010498 216.75994873 216.639831543 216.329772949 216.119812012 216.250183105 216.590026855 219.410232544 219.309646606 219.589920044 220.049880981 220.370193481 220.339920044 220.099685669 220.000076294 220.070388794 220.030349731 219.729568481 219.410232544 219.429763794 219.759841919 220.169998169 220.669998169 221.479568481 230.370040894 229.820236206 228.730392456 227.570236206 226.870040894 226.749923706 226.839767456 226.730392456 226.469650269 226.599533081 227.370040894 228.360275269 229.049728394 229.560470581 230.339767456 231.139572144 231.080001831 297.72076416 298.199279785 298.20904541 298.070373535 298.25982666 298.519592285 298.34967041 297.859436035 297.519592285 297.449279785 297.289123535 296.859436035 296.25982666 295.480529785 294.410217285 293.359436035 292.84967041 292.270690918 292.659362793 292.700378418 292.479675293 292.440612793 292.749206543 292.940612793 292.649597168 292.190612793 292.040222168 292.069519043 291.700378418 290.749206543 289.829284668 289.530456543 289.770690918 290.010925293 287.500396729 287.699615479 287.600006104 287.340240479 287.260162354 287.479888916 287.790435791 287.850006104 287.710357666 287.550201416 287.330474854 286.899810791 286.309967041 285.850006104 285.550201416 285.140045166 284.479888916 282.590209961 282.529663086 282.239624023 282.120483398 282.109741211 281.859741211 281.430053711 281.239624023 281.430053711 281.620483398 281.519897461 281.390014648 281.580444336 281.880249023 281.670288086 280.640014648 278.960327148 275.880187988 276.149719238 276.120422363 275.910461426 275.700500488 275.540344238 275.340148926 275.139953613 275.040344238 275.160461426 275.399719238 275.599914551 275.639953613 275.460266113 275.050109863 274.309875488 273.019836426 268.269683838 268.549957275 268.460113525 268.099761963 267.7003479 267.420074463 267.240386963 267.109527588 267.080230713 267.120269775 267.139801025 267.089996338 266.960113525 266.71987915 266.189605713 265.21987915 263.799957275 257.440429688 257.790039062 257.860351562 257.639648438 257.25 256.940429688 256.849609375 256.919921875 256.990234375 256.950195312 256.830078125 256.639648438 256.299804688 255.790039062 255.080078125 254.120117188 252.799804688 241.859802246 242.010192871 242.040466309 241.939880371 241.760192871 241.559997559 241.430114746 241.319763184 241.220153809 241.109802246 241.050231934 240.949645996 240.659606934 240.159606934 239.489685059 238.659606934 237.540466309 232.289764404 232.440155029 232.340057373 232.099822998 231.909881592 231.820037842 231.739959717 231.619842529 231.500213623 231.429901123 231.420135498 231.420135498 231.329803467 230.980194092 230.300018311 229.400115967 228.449920654 220.419906616 220.56980896 220.470199585 220.209945679 219.999984741 219.879867554 219.779769897 219.700180054 219.680160522 219.72996521 219.799789429 219.830062866 219.850082397 219.779769897 219.580062866 219.290023804 219.029769897 206.390151978 206.149917603 206.100112915 206.10987854 206.149917603 206.240249634 206.330093384 206.390151978 206.439956665 206.529800415 206.629898071 206.750015259 206.93019104 207.279800415 207.870132446 208.620132446 209.470230103 194.500152588 193.64956665 193.2003479 193.070465088 193.14956665 193.269683838 193.250152588 193.070465088 192.910308838 192.889801025 193.019683838 193.21987915 193.490386963 193.859527588 194.410308838 195.299957275 196.710113525 196.410354614 195.160354614 194.090042114 193.300003052 192.670120239 192.090042114 191.670120239 191.540237427 191.620315552 191.679885864 191.689651489 191.790237427 192.040237427 192.280471802 192.569534302 193.200393677 194.530471802 205.069946289 204.580200195 204.109985352 203.600219727 203.08996582 202.690063477 202.440063477 202.290161133 202.210083008 202.199829102 202.279907227 202.350219727 202.359985352 202.299926758 202.210083008 202.199829102 202.509887695 216.549987793 216.270202637 216.150085449 216.179870605 216.279968262 216.380065918 216.489929199 216.570007324 216.590026855 216.59979248 216.630065918 216.639831543 216.570007324 216.440124512 216.409851074 216.570007324 216.880065918 220.429763794 220.330154419 220.389724731 220.620193481 220.790115356 220.660232544 220.309646606 220.049880981 220.040115356 220.099685669 220.009841919 219.820388794 219.740310669 219.849685669 220.110427856 220.589920044 221.460037231 228.669845581 228.299728394 227.719650269 227.039962769 226.490158081 226.299728394 226.389572144 226.450119019 226.339767456 226.320236206 226.740158081 227.539962769 228.429611206 229.310470581 230.249923706 230.980392456 230.959884644 297.660217285 298.140686035 298.179748535 298.06060791 298.140686035 298.33013916 298.359436035 298.300842285 298.250061035 298.019592285 297.49029541 296.929748535 296.43951416 295.730529785 294.589904785 293.50982666 293.00982666 292.030456543 292.460144043 292.569519043 292.380065918 292.319519043 292.579284668 292.850769043 292.799987793 292.549987793 292.329284668 292.120300293 291.669128418 290.909362793 290.069519043 289.389831543 288.940612793 288.749206543 287.159576416 287.390045166 287.439849854 287.309967041 287.220123291 287.399810791 287.710357666 287.909576416 287.930084229 287.790435791 287.479888916 286.930084229 286.399810791 286.119537354 285.899810791 285.319732666 284.380279541 282.930053711 282.890014648 282.569702148 282.370483398 282.309936523 282.029663086 281.540405273 281.269897461 281.430053711 281.670288086 281.659545898 281.510131836 281.599975586 281.800170898 281.649780273 280.809936523 279.300170898 275.809875488 276.170227051 276.239562988 276.080383301 275.800109863 275.510070801 275.279602051 275.149719238 275.160461426 275.290344238 275.479797363 275.639953613 275.679992676 275.510070801 275.099914551 274.380187988 273.120422363 268.250152588 268.620269775 268.509918213 268.0597229 267.6300354 267.389801025 267.250152588 267.099761963 267.009918213 267.0597229 267.160308838 267.14956665 267.000152588 266.7003479 266.160308838 265.229644775 263.859527588 257.490234375 257.860351562 257.91015625 257.639648438 257.219726562 256.91015625 256.83984375 256.919921875 256.950195312 256.900390625 256.799804688 256.620117188 256.290039062 255.76953125 255.0703125 254.120117188 252.799804688 241.899841309 242.109802246 242.149841309 242.040466309 241.829528809 241.600036621 241.430114746 241.309997559 241.189880371 241.079528809 241.000427246 240.899841309 240.659606934 240.199645996 239.569763184 238.739685059 237.600036621 232.329803467 232.500213623 232.400115967 232.190155029 232.020233154 231.909881592 231.779998779 231.610076904 231.469940186 231.400115967 231.400115967 231.449920654 231.389862061 231.059783936 230.389862061 229.480194092 228.520233154 220.470199585 220.64012146 220.529769897 220.270004272 220.060043335 219.919906616 219.799789429 219.689926147 219.660140991 219.709945679 219.760238647 219.770004272 219.760238647 219.700180054 219.520004272 219.220199585 218.950180054 206.250015259 206.029800415 206.000015259 206.049819946 206.10987854 206.189956665 206.27003479 206.330093384 206.410171509 206.490249634 206.569839478 206.660171509 206.850112915 207.220230103 207.77003479 208.450210571 209.200210571 194.3800354 193.549957275 193.1300354 193.019683838 193.109527588 193.259918213 193.29019165 193.179840088 193.030426025 193.000152588 193.139801025 193.370269775 193.609527588 193.929840088 194.490386963 195.46987915 196.960113525 196.819534302 195.559768677 194.420120239 193.509963989 192.769729614 192.170120239 191.759963989 191.590042114 191.580276489 191.569534302 191.609573364 191.780471802 192.069534302 192.349807739 192.660354614 193.340042114 194.609573364 204.920043945 204.460083008 204.020141602 203.549926758 203.049926758 202.630004883 202.33996582 202.170043945 202.139770508 202.199829102 202.319946289 202.420043945 202.460083008 202.409790039 202.319946289 202.290161133 202.549926758 216.880065918 216.529968262 216.320007324 216.290222168 216.369812012 216.500183105 216.590026855 216.639831543 216.659851074 216.639831543 216.59979248 216.549987793 216.529968262 216.540222168 216.630065918 216.799987793 217.029968262 220.759841919 220.759841919 220.780349731 220.889724731 220.950271606 220.750076294 220.309646606 219.950271606 219.900466919 220.030349731 220.080154419 219.969802856 219.830154419 219.790115356 219.950271606 220.469802856 221.400466919 227.810470581 227.419845581 227.070236206 226.679611206 226.349533081 226.230392456 226.330001831 226.469650269 226.459884644 226.370040894 226.530197144 227.190353394 228.209884644 229.349533081 230.360275269 230.999923706 231.039962769 297.800842285 298.11920166 298.13092041 298.089904785 298.15045166 298.179748535 298.18951416 298.31060791 298.43951416 298.22076416 297.66998291 297.269592285 296.980529785 296.24029541 294.910217285 293.74029541 293.179748535 292.149597168 292.479675293 292.510925293 292.329284668 292.299987793 292.530456543 292.790222168 292.829284668 292.630065918 292.339050293 292.049987793 291.770690918 291.360534668 290.589050293 289.440612793 288.309753418 287.710144043 287.059967041 287.229888916 287.279693604 287.180084229 287.130279541 287.390045166 287.819732666 288.059967041 288.029693604 287.830474854 287.500396729 287.029693604 286.619537354 286.510162354 286.439849854 285.930084229 284.960357666 282.920288086 282.979858398 282.680053711 282.399780273 282.210327148 281.880249023 281.460327148 281.290405273 281.500366211 281.790405273 281.849975586 281.750366211 281.739624023 281.790405273 281.569702148 280.849975586 279.540405273 275.720031738 276.149719238 276.290344238 276.160461426 275.840148926 275.460266113 275.210266113 275.179992676 275.290344238 275.410461426 275.569641113 275.729797363 275.779602051 275.590148926 275.109680176 274.340148926 273.090148926 268.160308838 268.609527588 268.519683838 268.070465088 267.64956665 267.429840088 267.269683838 267.0597229 266.920074463 266.990386963 267.170074463 267.21987915 267.049957275 266.71987915 266.189605713 265.299957275 263.979644775 257.440429688 257.83984375 257.889648438 257.610351562 257.190429688 256.889648438 256.830078125 256.879882812 256.879882812 256.830078125 256.75 256.599609375 256.26953125 255.75 255.059570312 254.139648438 252.849609375 241.859802246 242.130310059 242.220153809 242.130310059 241.909606934 241.640075684 241.420349121 241.260192871 241.170349121 241.109802246 241.050231934 240.930114746 240.680114746 240.260192871 239.640075684 238.800231934 237.649841309 232.340057373 232.509979248 232.440155029 232.270233154 232.119842529 231.980194092 231.789764404 231.599822998 231.480194092 231.440155029 231.449920654 231.449920654 231.369842529 231.070037842 230.440155029 229.570037842 228.619842529 220.39012146 220.600082397 220.520004272 220.290023804 220.06980896 219.930160522 219.799789429 219.709945679 219.689926147 219.720199585 219.720199585 219.689926147 219.680160522 219.649887085 219.490219116 219.189926147 218.879867554 206.10987854 205.919937134 205.919937134 205.979995728 206.049819946 206.100112915 206.18019104 206.290054321 206.390151978 206.459976196 206.479995728 206.549819946 206.77003479 207.169937134 207.669937134 208.250015259 208.93019104 194.280426025 193.46987915 193.1300354 193.089996338 193.2003479 193.320465088 193.359527588 193.280426025 193.160308838 193.109527588 193.240386963 193.460113525 193.7003479 194.000152588 194.570465088 195.609527588 197.14956665 197.050003052 195.759963989 194.519729614 193.469924927 192.620315552 192.009963989 191.660354614 191.530471802 191.509963989 191.500198364 191.540237427 191.750198364 192.030471802 192.309768677 192.670120239 193.370315552 194.550003052 204.699829102 204.210083008 203.819946289 203.42980957 203.029907227 202.659790039 202.359985352 202.190063477 202.159790039 202.25012207 202.380004883 202.480102539 202.549926758 202.549926758 202.469848633 202.409790039 202.630004883 217.250183105 216.900085449 216.610046387 216.489929199 216.489929199 216.520202637 216.540222168 216.540222168 216.579772949 216.630065918 216.59979248 216.50994873 216.460144043 216.50994873 216.659851074 216.810241699 216.969909668 220.400466919 220.469802856 220.559646606 220.679763794 220.729568481 220.549880981 220.189529419 219.900466919 219.860427856 219.979568481 220.040115356 219.960037231 219.780349731 219.669998169 219.809646606 220.400466919 221.389724731 228.129806519 227.639572144 227.190353394 226.860275269 226.700119019 226.669845581 226.690353394 226.709884644 226.669845581 226.570236206 226.629806519 227.160079956 228.230392456 229.520431519 230.589767456 231.139572144 231.150314331 297.77935791 297.980529785 298.050842285 298.18951416 298.33013916 298.22076416 298.00982666 298.070373535 298.230529785 298.089904785 297.769592285 297.70904541 297.660217285 296.81060791 295.18951416 293.88092041 293.320373535 292.149597168 292.399597168 292.409362793 292.350769043 292.419128418 292.600769043 292.739440918 292.690612793 292.469909668 292.169128418 291.989440918 292.040222168 292.049987793 291.419128418 289.950378418 288.319519043 287.430847168 286.970123291 287.119537354 287.180084229 287.100006104 287.100006104 287.449615479 287.890045166 288.000396729 287.769927979 287.519927979 287.359771729 287.140045166 286.920318604 286.909576416 286.930084229 286.529693604 285.649810791 282.720092773 282.859741211 282.609741211 282.279663086 281.960327148 281.649780273 281.399780273 281.390014648 281.620483398 281.899780273 282.010131836 282.010131836 281.970092773 281.830444336 281.479858398 280.840209961 279.769897461 275.710266113 276.109680176 276.220031738 276.090148926 275.769836426 275.429992676 275.239562988 275.269836426 275.389953613 275.510070801 275.670227051 275.870422363 275.929992676 275.649719238 275.059875488 274.239562988 273.059875488 268.070465088 268.54019165 268.490386963 268.099761963 267.71987915 267.490386963 267.29019165 267.04019165 266.889801025 266.979644775 267.2003479 267.269683838 267.080230713 266.71987915 266.21987915 265.39956665 264.109527588 257.26953125 257.709960938 257.799804688 257.540039062 257.139648438 256.870117188 256.8203125 256.83984375 256.790039062 256.740234375 256.6796875 256.540039062 256.200195312 255.669921875 255.0 254.120117188 252.900390625 241.779724121 242.100036621 242.239685059 242.170349121 241.960388184 241.659606934 241.380310059 241.210388184 241.170349121 241.189880371 241.159606934 241.019958496 240.729919434 240.300231934 239.659606934 238.809997559 237.659606934 232.279998779 232.460174561 232.420135498 232.300018311 232.159881592 231.980194092 231.750213623 231.570037842 231.509979248 231.500213623 231.480194092 231.429901123 231.320037842 231.039764404 230.489959717 229.670135498 228.699920654 220.220199585 220.459945679 220.430160522 220.240219116 220.049789429 219.910140991 219.790023804 219.72996521 219.720199585 219.720199585 219.680160522 219.620101929 219.64012146 219.669906616 219.549789429 219.240219116 218.899887085 205.979995728 205.819839478 205.850112915 205.959976196 206.02003479 206.060073853 206.120132446 206.240249634 206.35987854 206.410171509 206.43019104 206.509780884 206.759780884 207.149917603 207.589859009 208.069839478 208.709976196 194.410308838 193.589996338 193.250152588 193.189605713 193.240386963 193.3097229 193.359527588 193.339996338 193.269683838 193.2003479 193.259918213 193.4503479 193.689605713 193.979644775 194.549957275 195.609527588 197.109527588 197.019729614 195.679885864 194.439651489 193.359573364 192.479690552 191.849807739 191.550003052 191.469924927 191.500198364 191.540237427 191.620315552 191.819534302 192.030471802 192.259963989 192.630081177 193.349807739 194.410354614 204.75012207 204.219848633 203.810180664 203.42980957 203.060180664 202.730102539 202.449829102 202.270141602 202.210083008 202.270141602 202.389770508 202.50012207 202.58996582 202.639770508 202.600219727 202.540161133 202.75012207 217.199890137 216.889831543 216.630065918 216.500183105 216.469909668 216.449890137 216.400085449 216.380065918 216.480163574 216.659851074 216.690124512 216.540222168 216.389831543 216.42010498 216.579772949 216.710144043 216.799987793 220.059646606 220.160232544 220.320388794 220.490310669 220.559646606 220.460037231 220.259841919 220.089920044 220.030349731 220.040115356 220.009841919 219.939529419 219.769607544 219.620193481 219.719802856 220.339920044 221.410232544 228.740158081 228.160079956 227.469650269 227.009689331 226.910079956 226.919845581 226.789962769 226.639572144 226.610275269 226.639572144 226.730392456 227.160079956 228.200119019 229.620040894 230.820236206 231.360275269 231.280197144 297.539123535 297.750061035 297.91998291 298.269592285 298.550842285 298.41998291 298.109436035 298.08013916 298.24029541 298.16998291 298.00982666 298.16998291 298.230529785 297.300842285 295.50982666 294.13092041 293.63092041 291.909362793 292.169128418 292.309753418 292.469909668 292.680847168 292.780456543 292.719909668 292.620300293 292.460144043 292.249206543 292.159362793 292.430847168 292.790222168 292.409362793 290.960144043 289.169128418 288.110534668 286.790435791 287.040435791 287.229888916 287.239654541 287.300201416 287.619537354 287.939849854 287.840240479 287.470123291 287.279693604 287.380279541 287.430084229 287.359771729 287.359771729 287.380279541 287.010162354 286.189849854 282.489624023 282.649780273 282.399780273 282.029663086 281.729858398 281.529663086 281.500366211 281.609741211 281.760131836 281.890014648 282.019897461 282.099975586 282.040405273 281.739624023 281.300170898 280.800170898 279.970092773 275.779602051 276.099914551 276.099914551 275.939758301 275.670227051 275.420227051 275.300109863 275.349914551 275.460266113 275.580383301 275.790344238 276.040344238 276.080383301 275.700500488 275.019836426 274.210266113 273.160461426 267.920074463 268.420074463 268.439605713 268.1300354 267.780426025 267.54019165 267.320465088 267.070465088 266.939605713 267.049957275 267.250152588 267.269683838 267.04019165 266.679840088 266.210113525 265.4503479 264.210113525 257.0 257.51953125 257.700195312 257.5 257.139648438 256.879882812 256.8203125 256.809570312 256.719726562 256.650390625 256.620117188 256.490234375 256.150390625 255.610351562 254.940429688 254.08984375 252.91015625 241.680114746 242.079528809 242.229919434 242.170349121 241.939880371 241.609802246 241.309997559 241.140075684 241.159606934 241.229919434 241.229919434 241.079528809 240.779724121 240.319763184 239.659606934 238.769958496 237.619567871 232.139862061 232.349822998 232.349822998 232.270233154 232.150115967 231.940155029 231.710174561 231.559783936 231.520233154 231.520233154 231.469940186 231.380096436 231.250213623 231.009979248 230.539764404 229.759979248 228.750213623 219.999984741 220.260238647 220.31980896 220.200180054 220.040023804 219.910140991 219.799789429 219.760238647 219.749984741 219.709945679 219.620101929 219.589828491 219.64012146 219.720199585 219.64012146 219.350082397 218.970199585 205.910171509 205.759780884 205.830093384 205.959976196 206.060073853 206.089859009 206.100112915 206.18019104 206.279800415 206.350112915 206.390151978 206.509780884 206.77003479 207.10987854 207.470230103 207.890151978 208.540054321 194.7003479 193.8097229 193.339996338 193.160308838 193.120269775 193.179840088 193.280426025 193.370269775 193.339996338 193.250152588 193.229644775 193.359527588 193.589996338 193.8800354 194.439605713 195.479644775 196.960113525 196.990432739 195.620315552 194.450393677 193.439651489 192.580276489 191.929885864 191.599807739 191.519729614 191.530471802 191.569534302 191.689651489 191.870315552 192.030471802 192.189651489 192.559768677 193.259963989 194.250198364 204.920043945 204.370239258 203.880004883 203.420043945 203.009887695 202.690063477 202.440063477 202.259887695 202.17980957 202.219848633 202.33996582 202.480102539 202.630004883 202.719848633 202.730102539 202.719848633 202.960083008 216.969909668 216.739929199 216.579772949 216.529968262 216.549987793 216.529968262 216.42010498 216.369812012 216.520202637 216.750183105 216.799987793 216.579772949 216.340026855 216.34979248 216.520202637 216.610046387 216.639831543 220.160232544 220.229568481 220.400466919 220.549880981 220.610427856 220.540115356 220.419998169 220.290115356 220.160232544 220.059646606 219.990310669 219.969802856 219.860427856 219.669998169 219.660232544 220.210037231 221.309646606 228.839767456 228.209884644 227.339767456 226.759689331 226.679611206 226.690353394 226.490158081 226.320236206 226.429611206 226.669845581 226.810470581 227.120040894 228.089767456 229.610275269 230.980392456 231.620040894 231.530197144 297.410217285 297.660217285 297.83013916 298.24029541 298.609436035 298.589904785 298.339904785 298.359436035 298.539123535 298.47076416 298.27935791 298.410217285 298.49029541 297.68951416 296.11920166 294.88092041 294.38092041 291.729675293 292.030456543 292.270690918 292.610534668 292.909362793 292.919128418 292.739440918 292.649597168 292.680847168 292.549987793 292.419128418 292.690612793 293.260925293 293.299987793 292.290222168 290.749206543 289.639831543 286.659576416 287.029693604 287.369537354 287.489654541 287.569732666 287.800201416 287.949615479 287.729888916 287.380279541 287.359771729 287.609771729 287.760162354 287.739654541 287.830474854 287.920318604 287.569732666 286.710357666 282.340209961 282.439819336 282.159545898 281.800170898 281.559936523 281.519897461 281.659545898 281.809936523 281.849975586 281.840209961 281.930053711 282.050170898 281.949584961 281.519897461 281.059936523 280.689819336 280.059936523 275.809875488 276.059875488 276.000305176 275.840148926 275.630187988 275.410461426 275.319641113 275.370422363 275.479797363 275.630187988 275.889953613 276.189758301 276.189758301 275.750305176 275.050109863 274.290344238 273.340148926 267.729644775 268.280426025 268.3800354 268.14956665 267.839996338 267.570465088 267.330230713 267.109527588 267.019683838 267.1300354 267.280426025 267.229644775 266.96987915 266.6300354 266.189605713 265.46987915 264.269683838 256.73046875 257.349609375 257.620117188 257.48046875 257.129882812 256.879882812 256.8203125 256.780273438 256.690429688 256.629882812 256.620117188 256.51953125 256.190429688 255.639648438 254.9296875 254.030273438 252.849609375 241.550231934 242.010192871 242.180114746 242.109802246 241.869567871 241.550231934 241.250427246 241.100036621 241.109802246 241.180114746 241.189880371 241.059997559 240.800231934 240.350036621 239.659606934 238.720153809 237.550231934 231.909881592 232.179901123 232.259979248 232.250213623 232.139862061 231.929901123 231.710174561 231.570037842 231.529998779 231.500213623 231.429901123 231.320037842 231.190155029 230.969940186 230.570037842 229.829803467 228.770233154 219.720199585 220.020004272 220.180160522 220.169906616 220.049789429 219.930160522 219.850082397 219.799789429 219.749984741 219.669906616 219.620101929 219.620101929 219.689926147 219.749984741 219.680160522 219.439926147 219.029769897 205.93019104 205.750015259 205.799819946 205.950210571 206.069839478 206.10987854 206.100112915 206.129898071 206.209976196 206.299819946 206.379898071 206.529800415 206.750015259 207.029800415 207.330093384 207.750015259 208.399917603 195.019683838 194.009918213 193.359527588 193.04019165 192.96987915 193.0597229 193.250152588 193.389801025 193.370269775 193.250152588 193.189605713 193.299957275 193.500152588 193.780426025 194.339996338 195.370269775 196.799957275 197.080276489 195.700393677 194.580276489 193.620315552 192.750198364 192.080276489 191.719924927 191.590042114 191.530471802 191.550003052 191.660354614 191.840042114 191.990432739 192.130081177 192.479690552 193.160354614 194.109573364 204.92980957 204.370239258 203.830200195 203.310180664 202.880004883 202.569946289 202.33996582 202.17980957 202.109985352 202.170043945 202.319946289 202.509887695 202.690063477 202.830200195 202.900024414 202.960083008 203.25012207 216.969909668 216.790222168 216.730163574 216.739929199 216.790222168 216.75994873 216.619812012 216.50994873 216.59979248 216.790222168 216.799987793 216.549987793 216.299987793 216.310241699 216.469909668 216.520202637 216.469909668 220.370193481 220.389724731 220.509841919 220.610427856 220.620193481 220.540115356 220.389724731 220.229568481 220.070388794 219.939529419 219.939529419 220.019607544 219.979568481 219.759841919 219.610427856 220.019607544 221.040115356 228.520431519 227.910079956 227.060470581 226.520431519 226.459884644 226.480392456 226.299728394 226.249923706 226.530197144 226.849533081 226.919845581 227.110275269 227.999923706 229.549728394 231.039962769 231.849533081 231.900314331 297.570373535 297.83013916 297.890686035 298.15045166 298.50982666 298.56060791 298.38092041 298.41998291 298.63092041 298.61920166 298.41998291 298.449279785 298.570373535 298.179748535 297.20904541 296.33013916 295.72076416 291.790222168 292.069519043 292.280456543 292.630065918 292.950378418 292.919128418 292.710144043 292.690612793 292.819519043 292.729675293 292.499206543 292.700378418 293.450378418 294.049987793 293.780456543 292.809753418 291.770690918 286.720123291 287.080474854 287.399810791 287.559967041 287.659576416 287.809967041 287.850006104 287.649810791 287.460357666 287.540435791 287.729888916 287.779693604 287.840240479 288.229888916 288.649810791 288.420318604 287.479888916 282.309936523 282.359741211 282.029663086 281.670288086 281.460327148 281.489624023 281.699584961 281.890014648 281.899780273 281.849975586 281.920288086 282.029663086 281.870483398 281.349975586 280.849975586 280.510131836 279.939819336 275.750305176 276.000305176 275.960266113 275.819641113 275.620422363 275.389953613 275.279602051 275.330383301 275.489562988 275.689758301 275.960266113 276.220031738 276.200500488 275.779602051 275.130187988 274.399719238 273.429992676 267.549957275 268.139801025 268.299957275 268.14956665 267.859527588 267.570465088 267.330230713 267.139801025 267.070465088 267.160308838 267.250152588 267.179840088 266.929840088 266.609527588 266.189605713 265.4503479 264.280426025 256.469726562 257.190429688 257.559570312 257.459960938 257.110351562 256.870117188 256.790039062 256.759765625 256.6796875 256.650390625 256.6796875 256.610351562 256.299804688 255.73046875 254.950195312 253.959960938 252.75 241.369567871 241.890075684 242.090270996 242.040466309 241.819763184 241.510192871 241.239685059 241.090270996 241.059997559 241.100036621 241.079528809 241.000427246 240.800231934 240.380310059 239.670349121 238.689880371 237.479919434 231.650115967 232.000213623 232.190155029 232.250213623 232.150115967 231.940155029 231.730194092 231.590057373 231.529998779 231.469940186 231.409881592 231.309783936 231.159881592 230.940155029 230.559783936 229.869842529 228.800018311 219.450180054 219.779769897 220.060043335 220.149887085 220.06980896 219.959945679 219.89012146 219.81980896 219.72996521 219.660140991 219.660140991 219.720199585 219.760238647 219.740219116 219.660140991 219.450180054 219.029769897 206.049819946 205.790054321 205.77003479 205.879898071 206.02003479 206.080093384 206.100112915 206.120132446 206.200210571 206.290054321 206.390151978 206.509780884 206.689956665 206.919937134 207.229995728 207.660171509 208.319839478 195.320465088 194.240386963 193.460113525 193.049957275 192.979644775 193.109527588 193.280426025 193.359527588 193.3097229 193.21987915 193.210113525 193.320465088 193.479644775 193.71987915 194.269683838 195.299957275 196.660308838 197.179885864 195.759963989 194.620315552 193.630081177 192.740432739 192.090042114 191.769729614 191.630081177 191.530471802 191.490432739 191.620315552 191.840042114 192.009963989 192.160354614 192.479690552 193.080276489 194.000198364 204.819946289 204.259887695 203.739868164 203.259887695 202.859985352 202.569946289 202.33996582 202.170043945 202.109985352 202.199829102 202.370239258 202.569946289 202.759887695 202.940063477 203.08996582 203.239868164 203.580200195 217.159851074 216.969909668 216.869812012 216.840026855 216.860046387 216.840026855 216.719909668 216.590026855 216.59979248 216.699890137 216.679870605 216.489929199 216.290222168 216.299987793 216.369812012 216.340026855 216.270202637 220.339920044 220.299880981 220.370193481 220.460037231 220.490310669 220.410232544 220.240310669 220.049880981 219.919998169 219.900466919 219.979568481 220.070388794 220.019607544 219.769607544 219.580154419 219.849685669 220.689529419 228.370040894 227.820236206 227.120040894 226.650314331 226.560470581 226.530197144 226.440353394 226.499923706 226.789962769 226.990158081 226.929611206 227.099533081 228.009689331 229.520431519 230.999923706 231.980392456 232.330001831 297.699279785 297.99029541 297.99029541 298.140686035 298.429748535 298.47076416 298.24029541 298.179748535 298.410217285 298.56060791 298.52935791 298.58013916 298.800842285 298.90045166 298.660217285 298.18951416 297.390686035 291.979675293 292.180847168 292.260925293 292.549987793 292.870300293 292.889831543 292.669128418 292.630065918 292.760925293 292.700378418 292.489440918 292.739440918 293.710144043 294.819519043 295.280456543 294.919128418 294.069519043 286.909576416 287.130279541 287.319732666 287.449615479 287.580474854 287.720123291 287.729888916 287.580474854 287.510162354 287.600006104 287.619537354 287.550201416 287.809967041 288.670318604 289.540435791 289.540435791 288.559967041 282.330444336 282.380249023 282.050170898 281.670288086 281.439819336 281.409545898 281.599975586 281.849975586 281.960327148 281.939819336 281.989624023 282.050170898 281.849975586 281.309936523 280.710327148 280.210327148 279.540405273 275.630187988 275.920227051 275.960266113 275.870422363 275.649719238 275.370422363 275.229797363 275.319641113 275.519836426 275.750305176 275.979797363 276.170227051 276.139953613 275.809875488 275.229797363 274.450500488 273.359680176 267.39956665 268.019683838 268.250152588 268.120269775 267.839996338 267.5597229 267.339996338 267.170074463 267.120269775 267.189605713 267.250152588 267.170074463 266.9503479 266.639801025 266.189605713 265.39956665 264.229644775 256.259765625 257.059570312 257.48046875 257.419921875 257.08984375 256.83984375 256.76953125 256.740234375 256.690429688 256.6796875 256.73046875 256.6796875 256.379882812 255.790039062 254.959960938 253.889648438 252.629882812 241.149841309 241.720153809 241.970153809 241.960388184 241.779724121 241.519958496 241.269958496 241.100036621 241.050231934 241.040466309 241.029724121 240.979919434 240.809997559 240.420349121 239.689880371 238.659606934 237.420349121 231.400115967 231.829803467 232.130096436 232.250213623 232.159881592 231.940155029 231.719940186 231.570037842 231.469940186 231.420135498 231.389862061 231.329803467 231.170135498 230.909881592 230.539764404 229.900115967 228.829803467 219.249984741 219.600082397 219.950180054 220.120101929 220.06980896 219.939926147 219.870101929 219.790023804 219.689926147 219.629867554 219.700180054 219.81980896 219.839828491 219.740219116 219.600082397 219.410140991 218.950180054 206.229995728 205.890151978 205.77003479 205.810073853 205.93019104 206.040054321 206.120132446 206.18019104 206.259780884 206.330093384 206.390151978 206.470230103 206.620132446 206.850112915 207.18019104 207.629898071 208.240249634 195.670074463 194.549957275 193.679840088 193.21987915 193.1300354 193.229644775 193.29019165 193.259918213 193.2003479 193.189605713 193.269683838 193.370269775 193.4503479 193.620269775 194.14956665 195.160308838 196.460113525 197.179885864 195.710159302 194.509963989 193.460159302 192.590042114 192.019729614 191.780471802 191.689651489 191.590042114 191.559768677 191.689651489 191.910354614 192.080276489 192.210159302 192.460159302 192.969924927 193.889846802 204.799926758 204.259887695 203.790161133 203.389770508 203.040161133 202.739868164 202.469848633 202.259887695 202.190063477 202.270141602 202.42980957 202.600219727 202.790161133 203.020141602 203.259887695 203.480102539 203.859985352 217.219909668 216.949890137 216.730163574 216.590026855 216.570007324 216.630065918 216.619812012 216.570007324 216.560241699 216.59979248 216.59979248 216.500183105 216.380065918 216.299987793 216.219909668 216.119812012 216.130065918 220.169998169 220.129959106 220.219802856 220.360427856 220.469802856 220.419998169 220.219802856 220.030349731 219.969802856 220.030349731 220.099685669 220.059646606 219.900466919 219.700271606 219.589920044 219.799880981 220.400466919 228.480392456 228.009689331 227.410079956 226.919845581 226.669845581 226.539962769 226.499923706 226.620040894 226.799728394 226.789962769 226.709884644 227.089767456 228.179611206 229.599533081 230.950119019 232.080001831 232.780197144 297.50982666 297.86920166 297.99029541 298.20904541 298.519592285 298.550842285 298.24029541 298.02935791 298.24029541 298.589904785 298.769592285 298.859436035 299.11920166 299.519592285 299.800842285 299.679748535 298.820373535 292.049987793 292.190612793 292.200378418 292.469909668 292.860534668 292.950378418 292.729675293 292.589050293 292.659362793 292.649597168 292.600769043 292.969909668 294.040222168 295.370300293 296.280456543 296.460144043 295.950378418 287.069732666 287.180084229 287.229888916 287.359771729 287.559967041 287.710357666 287.689849854 287.559967041 287.550201416 287.600006104 287.500396729 287.439849854 287.960357666 289.180084229 290.330474854 290.489654541 289.640045166 282.269897461 282.390014648 282.109741211 281.750366211 281.470092773 281.340209961 281.479858398 281.790405273 282.019897461 282.040405273 281.989624023 281.960327148 281.769897461 281.269897461 280.569702148 279.830444336 278.960327148 275.500305176 275.840148926 275.960266113 275.920227051 275.689758301 275.389953613 275.239562988 275.349914551 275.569641113 275.779602051 275.960266113 276.109680176 276.099914551 275.840148926 275.300109863 274.429992676 273.200500488 267.299957275 267.939605713 268.170074463 268.049957275 267.769683838 267.530426025 267.370269775 267.250152588 267.210113525 267.269683838 267.320465088 267.240386963 267.009918213 266.670074463 266.160308838 265.320465088 264.170074463 256.120117188 256.959960938 257.419921875 257.370117188 257.0703125 256.830078125 256.759765625 256.719726562 256.6796875 256.709960938 256.759765625 256.6796875 256.349609375 255.76953125 254.9296875 253.830078125 252.51953125 240.939880371 241.540466309 241.859802246 241.909606934 241.769958496 241.529724121 241.279724121 241.109802246 241.050231934 241.050231934 241.040466309 241.000427246 240.819763184 240.420349121 239.689880371 238.659606934 237.350036621 231.170135498 231.679901123 232.070037842 232.239959717 232.150115967 231.900115967 231.670135498 231.489959717 231.360076904 231.300018311 231.340057373 231.349822998 231.190155029 230.880096436 230.500213623 229.909881592 228.840057373 219.169906616 219.520004272 219.899887085 220.109848022 220.060043335 219.930160522 219.830062866 219.749984741 219.629867554 219.589828491 219.709945679 219.870101929 219.89012146 219.740219116 219.560043335 219.31980896 218.790023804 206.43019104 206.02003479 205.830093384 205.819839478 205.919937134 206.040054321 206.149917603 206.259780884 206.350112915 206.390151978 206.390151978 206.43019104 206.569839478 206.819839478 207.160171509 207.580093384 208.100112915 196.049957275 194.8800354 193.910308838 193.359527588 193.210113525 193.240386963 193.21987915 193.139801025 193.109527588 193.189605713 193.299957275 193.339996338 193.299957275 193.3800354 193.8800354 194.89956665 196.2003479 197.139846802 195.620315552 194.399612427 193.359573364 192.550003052 192.050003052 191.840042114 191.759963989 191.679885864 191.660354614 191.769729614 191.920120239 192.030471802 192.120315552 192.319534302 192.780471802 193.710159302 204.880004883 204.359985352 203.92980957 203.549926758 203.210083008 202.870239258 202.560180664 202.319946289 202.25012207 202.310180664 202.440063477 202.600219727 202.819946289 203.109985352 203.409790039 203.699829102 204.100219727 217.09979248 216.739929199 216.42010498 216.230163574 216.230163574 216.389831543 216.540222168 216.59979248 216.619812012 216.650085449 216.659851074 216.619812012 216.489929199 216.270202637 216.029968262 215.92010498 216.09979248 220.139724731 220.169998169 220.290115356 220.490310669 220.639724731 220.589920044 220.360427856 220.139724731 220.120193481 220.210037231 220.200271606 219.990310669 219.729568481 219.610427856 219.689529419 219.919998169 220.299880981 228.539962769 228.080001831 227.499923706 226.940353394 226.539962769 226.330001831 226.330001831 226.490158081 226.560470581 226.429611206 226.490158081 227.219650269 228.490158081 229.759689331 230.889572144 232.099533081 233.089767456 297.13092041 297.63092041 297.95904541 298.300842285 298.640686035 298.68951416 298.390686035 298.160217285 298.300842285 298.660217285 298.859436035 298.890686035 299.039123535 299.429748535 299.90045166 300.08013916 299.49029541 291.989440918 292.149597168 292.210144043 292.520690918 292.930847168 293.030456543 292.799987793 292.610534668 292.630065918 292.690612793 292.729675293 293.089050293 293.979675293 295.149597168 296.169128418 296.799987793 296.819519043 287.189849854 287.279693604 287.279693604 287.399810791 287.640045166 287.790435791 287.710357666 287.580474854 287.580474854 287.630279541 287.550201416 287.569732666 288.220123291 289.430084229 290.479888916 290.689849854 290.189849854 282.109741211 282.340209961 282.140014648 281.840209961 281.559936523 281.370483398 281.460327148 281.809936523 282.099975586 282.069702148 281.880249023 281.760131836 281.630249023 281.239624023 280.489624023 279.519897461 278.500366211 275.370422363 275.739562988 275.929992676 275.929992676 275.729797363 275.450500488 275.319641113 275.389953613 275.569641113 275.750305176 275.939758301 276.099914551 276.109680176 275.880187988 275.309875488 274.370422363 273.050109863 267.189605713 267.849761963 268.099761963 267.96987915 267.689605713 267.500152588 267.39956665 267.349761963 267.339996338 267.410308838 267.46987915 267.370269775 267.080230713 266.660308838 266.089996338 265.250152588 264.099761963 256.0703125 256.900390625 257.349609375 257.3203125 257.049804688 256.830078125 256.73046875 256.669921875 256.650390625 256.700195312 256.759765625 256.639648438 256.290039062 255.719726562 254.91015625 253.799804688 252.4296875 240.779724121 241.409606934 241.750427246 241.840270996 241.739685059 241.510192871 241.260192871 241.079528809 241.019958496 241.050231934 241.059997559 241.000427246 240.809997559 240.390075684 239.680114746 238.640075684 237.260192871 231.029998779 231.579803467 232.029998779 232.219940186 232.130096436 231.869842529 231.610076904 231.409881592 231.250213623 231.179901123 231.259979248 231.309783936 231.179901123 230.860076904 230.469940186 229.880096436 228.800018311 219.160140991 219.510238647 219.910140991 220.129867554 220.06980896 219.930160522 219.830062866 219.749984741 219.64012146 219.589828491 219.709945679 219.870101929 219.919906616 219.790023804 219.580062866 219.240219116 218.580062866 206.629898071 206.189956665 205.959976196 205.919937134 205.979995728 206.069839478 206.18019104 206.310073853 206.419937134 206.450210571 206.410171509 206.43019104 206.580093384 206.839859009 207.160171509 207.52003479 207.93019104 196.3800354 195.089996338 193.979644775 193.280426025 193.070465088 193.089996338 193.109527588 193.089996338 193.1300354 193.229644775 193.280426025 193.210113525 193.080230713 193.099761963 193.530426025 194.519683838 195.889801025 197.080276489 195.550003052 194.349807739 193.399612427 192.649612427 192.179885864 191.920120239 191.769729614 191.679885864 191.679885864 191.759963989 191.809768677 191.840042114 191.929885864 192.139846802 192.590042114 193.580276489 204.92980957 204.409790039 203.960083008 203.569946289 203.219848633 202.870239258 202.549926758 202.33996582 202.279907227 202.330200195 202.440063477 202.639770508 202.920043945 203.279907227 203.609985352 203.92980957 204.389770508 217.000183105 216.59979248 216.279968262 216.139831543 216.210144043 216.380065918 216.560241699 216.659851074 216.699890137 216.719909668 216.739929199 216.710144043 216.520202637 216.190124512 215.84979248 215.750183105 216.110046387 220.250076294 220.320388794 220.460037231 220.620193481 220.729568481 220.669998169 220.419998169 220.189529419 220.169998169 220.259841919 220.210037231 219.929763794 219.629959106 219.610427856 219.870193481 220.189529419 220.450271606 228.410079956 227.950119019 227.379806519 226.820236206 226.410079956 226.230392456 226.289962769 226.450119019 226.450119019 226.320236206 226.560470581 227.490158081 228.770431519 229.820236206 230.730392456 231.870040894 232.919845581 296.980529785 297.609436035 298.08013916 298.390686035 298.589904785 298.59967041 298.429748535 298.289123535 298.359436035 298.500061035 298.49029541 298.359436035 298.33013916 298.50982666 298.88092041 299.27935791 299.289123535 291.979675293 292.200378418 292.360534668 292.659362793 292.940612793 292.940612793 292.719909668 292.589050293 292.639831543 292.690612793 292.659362793 292.780456543 293.249206543 294.020690918 294.950378418 295.940612793 296.579284668 287.340240479 287.479888916 287.460357666 287.529693604 287.699615479 287.760162354 287.649810791 287.540435791 287.600006104 287.670318604 287.609771729 287.649810791 288.159576416 289.050201416 289.750396729 289.989654541 289.960357666 281.960327148 282.260131836 282.159545898 281.949584961 281.710327148 281.470092773 281.500366211 281.819702148 282.120483398 282.040405273 281.750366211 281.599975586 281.590209961 281.340209961 280.590209961 279.489624023 278.380249023 275.179992676 275.609680176 275.859680176 275.889953613 275.739562988 275.519836426 275.410461426 275.420227051 275.510070801 275.679992676 275.929992676 276.139953613 276.139953613 275.880187988 275.279602051 274.279602051 272.960266113 267.019683838 267.750152588 268.049957275 267.939605713 267.660308838 267.479644775 267.420074463 267.410308838 267.429840088 267.519683838 267.599761963 267.490386963 267.14956665 266.64956665 266.019683838 265.179840088 264.030426025 256.099609375 256.900390625 257.299804688 257.25 257.0 256.799804688 256.690429688 256.610351562 256.58984375 256.6796875 256.740234375 256.620117188 256.280273438 255.740234375 254.950195312 253.790039062 252.3203125 240.699645996 241.329528809 241.680114746 241.779724121 241.699645996 241.479919434 241.229919434 241.050231934 241.010192871 241.029724121 241.040466309 240.970153809 240.769958496 240.359802246 239.680114746 238.619567871 237.170349121 230.989959717 231.590057373 232.050018311 232.259979248 232.139862061 231.869842529 231.579803467 231.360076904 231.190155029 231.130096436 231.190155029 231.270233154 231.159881592 230.849822998 230.429901123 229.809783936 228.710174561 219.200180054 219.540023804 219.939926147 220.169906616 220.120101929 219.959945679 219.850082397 219.779769897 219.689926147 219.64012146 219.709945679 219.850082397 219.939926147 219.89012146 219.669906616 219.220199585 218.419906616 206.850112915 206.410171509 206.149917603 206.069839478 206.080093384 206.129898071 206.209976196 206.339859009 206.450210571 206.490249634 206.459976196 206.470230103 206.60987854 206.85987854 207.18019104 207.52003479 207.879898071 196.5597229 195.109527588 193.849761963 193.049957275 192.799957275 192.870269775 192.990386963 193.099761963 193.2003479 193.259918213 193.229644775 193.120269775 192.979644775 192.9503479 193.280426025 194.170074463 195.620269775 196.990432739 195.469924927 194.309768677 193.420120239 192.750198364 192.259963989 191.920120239 191.689651489 191.609573364 191.649612427 191.700393677 191.679885864 191.719924927 191.899612427 192.179885864 192.639846802 193.670120239 204.880004883 204.33996582 203.859985352 203.469848633 203.120239258 202.799926758 202.549926758 202.400024414 202.359985352 202.380004883 202.489868164 202.719848633 203.080200195 203.460083008 203.799926758 204.17980957 204.719848633 217.020202637 216.650085449 216.389831543 216.310241699 216.34979248 216.449890137 216.540222168 216.570007324 216.610046387 216.67010498 216.710144043 216.659851074 216.460144043 216.110046387 215.750183105 215.659851074 216.079772949 220.259841919 220.370193481 220.469802856 220.559646606 220.610427856 220.570388794 220.389724731 220.210037231 220.160232544 220.229568481 220.200271606 219.969802856 219.700271606 219.700271606 220.019607544 220.429763794 220.740310669 228.320236206 227.820236206 227.310470581 226.879806519 226.589767456 226.459884644 226.499923706 226.589767456 226.570236206 226.499923706 226.799728394 227.679611206 228.789962769 229.660079956 230.419845581 231.349533081 232.169845581 297.11920166 297.84967041 298.320373535 298.41998291 298.34967041 298.289123535 298.269592285 298.300842285 298.300842285 298.199279785 297.980529785 297.750061035 297.58013916 297.429748535 297.449279785 297.910217285 298.58013916 292.079284668 292.380065918 292.610534668 292.799987793 292.839050293 292.700378418 292.549987793 292.549987793 292.639831543 292.610534668 292.440612793 292.280456543 292.339050293 292.680847168 293.389831543 294.520690918 295.620300293 287.580474854 287.750396729 287.689849854 287.659576416 287.680084229 287.640045166 287.500396729 287.470123291 287.580474854 287.630279541 287.519927979 287.460357666 287.729888916 288.239654541 288.640045166 288.930084229 289.309967041 281.870483398 282.239624023 282.250366211 282.140014648 281.920288086 281.630249023 281.529663086 281.769897461 282.050170898 281.989624023 281.729858398 281.640014648 281.750366211 281.630249023 280.909545898 279.750366211 278.580444336 275.000305176 275.510070801 275.800109863 275.830383301 275.710266113 275.569641113 275.510070801 275.479797363 275.510070801 275.679992676 275.960266113 276.160461426 276.149719238 275.849914551 275.220031738 274.200500488 272.870422363 266.859527588 267.660308838 268.049957275 267.960113525 267.670074463 267.46987915 267.420074463 267.39956665 267.410308838 267.530426025 267.639801025 267.5597229 267.2003479 266.660308838 265.990386963 265.120269775 263.920074463 256.190429688 256.9296875 257.25 257.169921875 256.940429688 256.76953125 256.650390625 256.549804688 256.540039062 256.650390625 256.740234375 256.639648438 256.309570312 255.799804688 255.01953125 253.780273438 252.190429688 240.710388184 241.319763184 241.649841309 241.750427246 241.670349121 241.489685059 241.269958496 241.090270996 241.019958496 241.019958496 241.029724121 240.960388184 240.769958496 240.390075684 239.710388184 238.619567871 237.079528809 231.050018311 231.679901123 232.139862061 232.320037842 232.190155029 231.860076904 231.559783936 231.340057373 231.210174561 231.150115967 231.199920654 231.259979248 231.170135498 230.860076904 230.389862061 229.719940186 228.610076904 219.270004272 219.64012146 220.029769897 220.240219116 220.180160522 219.990219116 219.850082397 219.779769897 219.72996521 219.700180054 219.72996521 219.81980896 219.939926147 219.990219116 219.81980896 219.299789429 218.419906616 207.100112915 206.640151978 206.339859009 206.200210571 206.169937134 206.200210571 206.279800415 206.35987854 206.450210571 206.490249634 206.479995728 206.490249634 206.60987854 206.870132446 207.220230103 207.620132446 208.000015259 196.549957275 194.960113525 193.620269775 192.820465088 192.580230713 192.679840088 192.870269775 193.049957275 193.2003479 193.250152588 193.189605713 193.120269775 193.0597229 193.030426025 193.21987915 193.979644775 195.460113525 196.849807739 195.370315552 194.240432739 193.380081177 192.740432739 192.259963989 191.910354614 191.660354614 191.599807739 191.679885864 191.729690552 191.729690552 191.830276489 192.139846802 192.509963989 192.969924927 193.969924927 204.810180664 204.239868164 203.759887695 203.370239258 203.049926758 202.779907227 202.580200195 202.480102539 202.440063477 202.440063477 202.529907227 202.790161133 203.170043945 203.540161133 203.900024414 204.389770508 205.080200195 217.040222168 216.719909668 216.529968262 216.440124512 216.42010498 216.409851074 216.400085449 216.380065918 216.440124512 216.549987793 216.610046387 216.570007324 216.42010498 216.150085449 215.810241699 215.67010498 215.989929199 220.160232544 220.280349731 220.379959106 220.450271606 220.509841919 220.530349731 220.460037231 220.330154419 220.250076294 220.259841919 220.250076294 220.099685669 219.860427856 219.769607544 220.019607544 220.519607544 220.969802856 228.349533081 227.820236206 227.349533081 227.009689331 226.810470581 226.700119019 226.639572144 226.629806519 226.610275269 226.620040894 226.889572144 227.599533081 228.560470581 229.450119019 230.219650269 230.870040894 231.200119019 297.230529785 298.00982666 298.429748535 298.40045166 298.20904541 298.11920166 298.199279785 298.300842285 298.27935791 298.11920166 297.890686035 297.72076416 297.480529785 296.97076416 296.49029541 296.74029541 297.750061035 292.210144043 292.569519043 292.819519043 292.870300293 292.739440918 292.569519043 292.510925293 292.569519043 292.620300293 292.530456543 292.319519043 292.089050293 291.960144043 291.979675293 292.339050293 293.249206543 294.399597168 287.840240479 288.000396729 287.890045166 287.790435791 287.710357666 287.559967041 287.430084229 287.439849854 287.550201416 287.569732666 287.369537354 287.189849854 287.309967041 287.619537354 287.890045166 288.220123291 288.710357666 281.760131836 282.199584961 282.309936523 282.300170898 282.109741211 281.760131836 281.540405273 281.699584961 281.979858398 282.010131836 281.830444336 281.800170898 282.010131836 281.960327148 281.269897461 280.069702148 278.859741211 274.899719238 275.500305176 275.800109863 275.779602051 275.660461426 275.609680176 275.620422363 275.599914551 275.609680176 275.769836426 276.019836426 276.179992676 276.160461426 275.899719238 275.269836426 274.179992676 272.769836426 266.769683838 267.6300354 268.080230713 268.000152588 267.689605713 267.460113525 267.370269775 267.3097229 267.320465088 267.439605713 267.589996338 267.549957275 267.229644775 266.679840088 265.96987915 265.0597229 263.820465088 256.280273438 256.959960938 257.23046875 257.129882812 256.900390625 256.740234375 256.639648438 256.540039062 256.530273438 256.629882812 256.73046875 256.650390625 256.360351562 255.870117188 255.049804688 253.740234375 252.049804688 240.769958496 241.359802246 241.670349121 241.750427246 241.689880371 241.519958496 241.319763184 241.140075684 241.040466309 241.019958496 241.029724121 240.989685059 240.809997559 240.449645996 239.779724121 238.649841309 237.069763184 231.190155029 231.820037842 232.250213623 232.400115967 232.219940186 231.829803467 231.489959717 231.309783936 231.250213623 231.230194092 231.259979248 231.300018311 231.210174561 230.889862061 230.369842529 229.619842529 228.550018311 219.450180054 219.830062866 220.180160522 220.31980896 220.22996521 219.990219116 219.790023804 219.700180054 219.689926147 219.720199585 219.720199585 219.760238647 219.879867554 220.029769897 219.959945679 219.47996521 218.589828491 207.339859009 206.850112915 206.470230103 206.279800415 206.259780884 206.319839478 206.390151978 206.43019104 206.450210571 206.450210571 206.439956665 206.470230103 206.580093384 206.850112915 207.259780884 207.729995728 208.169937134 196.3800354 194.71987915 193.439605713 192.71987915 192.509918213 192.5597229 192.7003479 192.89956665 193.099761963 193.179840088 193.160308838 193.160308838 193.189605713 193.189605713 193.330230713 194.000152588 195.460113525 196.740432739 195.309768677 194.200393677 193.330276489 192.710159302 192.300003052 191.990432739 191.750198364 191.689651489 191.759963989 191.809768677 191.849807739 192.030471802 192.450393677 192.880081177 193.340042114 194.319534302 204.779907227 204.190063477 203.699829102 203.310180664 203.00012207 202.730102539 202.549926758 202.489868164 202.460083008 202.449829102 202.520141602 202.779907227 203.150024414 203.509887695 203.909790039 204.529907227 205.400024414 217.000183105 216.75994873 216.590026855 216.449890137 216.400085449 216.389831543 216.380065918 216.369812012 216.429870605 216.540222168 216.590026855 216.520202637 216.409851074 216.25994873 216.00994873 215.779968262 215.929870605 220.120193481 220.240310669 220.410232544 220.530349731 220.589920044 220.610427856 220.589920044 220.509841919 220.389724731 220.309646606 220.290115356 220.200271606 219.939529419 219.710037231 219.839920044 220.389724731 221.049880981 228.360275269 227.820236206 227.299728394 226.950119019 226.770431519 226.650314331 226.520431519 226.450119019 226.459884644 226.580001831 226.849533081 227.450119019 228.389572144 229.490158081 230.410079956 230.770431519 230.530197144 297.160217285 297.929748535 298.33013916 298.36920166 298.300842285 298.289123535 298.34967041 298.34967041 298.31060791 298.24029541 298.18951416 298.13092041 297.86920166 297.179748535 296.320373535 296.16998291 297.00982666 292.339050293 292.739440918 292.930847168 292.889831543 292.739440918 292.690612793 292.700378418 292.649597168 292.549987793 292.460144043 292.370300293 292.260925293 292.139831543 292.030456543 292.069519043 292.520690918 293.299987793 288.000396729 288.159576416 288.040435791 287.920318604 287.809967041 287.640045166 287.470123291 287.439849854 287.529693604 287.529693604 287.319732666 287.130279541 287.210357666 287.500396729 287.769927979 288.029693604 288.309967041 281.529663086 281.970092773 282.189819336 282.269897461 282.140014648 281.800170898 281.559936523 281.680053711 281.989624023 282.090209961 281.960327148 281.960327148 282.159545898 282.149780273 281.479858398 280.260131836 279.019897461 274.910461426 275.569641113 275.849914551 275.750305176 275.620422363 275.660461426 275.750305176 275.769836426 275.769836426 275.899719238 276.080383301 276.179992676 276.200500488 276.040344238 275.420227051 274.220031738 272.689758301 266.8097229 267.670074463 268.080230713 267.979644775 267.639801025 267.420074463 267.320465088 267.259918213 267.240386963 267.349761963 267.509918213 267.509918213 267.21987915 266.7003479 265.990386963 265.04019165 263.769683838 256.379882812 257.0 257.240234375 257.120117188 256.900390625 256.740234375 256.639648438 256.559570312 256.530273438 256.610351562 256.690429688 256.629882812 256.370117188 255.889648438 255.059570312 253.709960938 251.98046875 240.869567871 241.449645996 241.729919434 241.779724121 241.689880371 241.529724121 241.329528809 241.140075684 241.029724121 241.019958496 241.050231934 241.010192871 240.819763184 240.470153809 239.819763184 238.720153809 237.109802246 231.360076904 231.969940186 232.349822998 232.449920654 232.210174561 231.750213623 231.380096436 231.239959717 231.259979248 231.279998779 231.300018311 231.309783936 231.230194092 230.920135498 230.369842529 229.590057373 228.539764404 219.700180054 220.089828491 220.350082397 220.399887085 220.240219116 219.970199585 219.709945679 219.580062866 219.609848022 219.700180054 219.72996521 219.740219116 219.830062866 220.020004272 220.049789429 219.660140991 218.859848022 207.500015259 206.979995728 206.549819946 206.310073853 206.310073853 206.439956665 206.529800415 206.509780884 206.43019104 206.379898071 206.379898071 206.450210571 206.580093384 206.839859009 207.259780884 207.790054321 208.259780884 196.070465088 194.460113525 193.339996338 192.769683838 192.54019165 192.460113525 192.509918213 192.729644775 193.019683838 193.170074463 193.14956665 193.120269775 193.170074463 193.240386963 193.4503479 194.160308838 195.5597229 196.689651489 195.300003052 194.170120239 193.290237427 192.700393677 192.370315552 192.120315552 191.880081177 191.769729614 191.800003052 191.830276489 191.859573364 192.069534302 192.519729614 193.009963989 193.559768677 194.599807739 204.719848633 204.120239258 203.639770508 203.259887695 202.909790039 202.620239258 202.420043945 202.380004883 202.400024414 202.42980957 202.509887695 202.770141602 203.109985352 203.469848633 203.909790039 204.639770508 205.630004883 217.029968262 216.869812012 216.690124512 216.50994873 216.480163574 216.560241699 216.619812012 216.590026855 216.59979248 216.67010498 216.630065918 216.469909668 216.34979248 216.340026855 216.199890137 215.940124512 215.960144043 220.160232544 220.290115356 220.519607544 220.689529419 220.700271606 220.599685669 220.530349731 220.490310669 220.410232544 220.320388794 220.280349731 220.219802856 219.960037231 219.599685669 219.570388794 220.120193481 220.960037231 228.259689331 227.709884644 227.129806519 226.719650269 226.580001831 226.560470581 226.480392456 226.379806519 226.410079956 226.589767456 226.889572144 227.450119019 228.450119019 229.789962769 230.900314331 231.099533081 230.440353394 297.15045166 297.839904785 298.22076416 298.36920166 298.49029541 298.56060791 298.449279785 298.250061035 298.160217285 298.230529785 298.289123535 298.24029541 298.039123535 297.519592285 296.730529785 296.250061035 296.500061035 292.520690918 292.909362793 293.010925293 292.889831543 292.839050293 292.919128418 292.880065918 292.620300293 292.360534668 292.339050293 292.419128418 292.419128418 292.370300293 292.370300293 292.360534668 292.440612793 292.700378418 288.090240479 288.260162354 288.149810791 288.040435791 287.939849854 287.739654541 287.510162354 287.409576416 287.470123291 287.500396729 287.369537354 287.239654541 287.309967041 287.590240479 287.869537354 288.050201416 288.069732666 281.239624023 281.609741211 281.849975586 282.000366211 281.949584961 281.710327148 281.550170898 281.689819336 282.000366211 282.120483398 282.000366211 281.939819336 282.099975586 282.120483398 281.510131836 280.340209961 279.080444336 274.910461426 275.609680176 275.840148926 275.689758301 275.580383301 275.700500488 275.849914551 275.880187988 275.870422363 276.000305176 276.139953613 276.229797363 276.309875488 276.239562988 275.609680176 274.260070801 272.639953613 266.920074463 267.71987915 268.019683838 267.859527588 267.5597229 267.389801025 267.339996338 267.280426025 267.250152588 267.339996338 267.460113525 267.460113525 267.21987915 266.750152588 266.04019165 265.0597229 263.780426025 256.490234375 257.0703125 257.280273438 257.139648438 256.889648438 256.709960938 256.620117188 256.540039062 256.509765625 256.5703125 256.650390625 256.610351562 256.370117188 255.91015625 255.08984375 253.75 252.009765625 240.970153809 241.529724121 241.790466309 241.800231934 241.680114746 241.500427246 241.300231934 241.100036621 241.000427246 241.000427246 241.040466309 240.979919434 240.760192871 240.409606934 239.829528809 238.800231934 237.210388184 231.539764404 232.110076904 232.440155029 232.469940186 232.170135498 231.670135498 231.270233154 231.159881592 231.199920654 231.239959717 231.239959717 231.239959717 231.190155029 230.929901123 230.420135498 229.659881592 228.630096436 219.959945679 220.31980896 220.470199585 220.430160522 220.22996521 219.959945679 219.669906616 219.490219116 219.520004272 219.669906616 219.790023804 219.81980896 219.89012146 220.049789429 220.109848022 219.810043335 219.100082397 207.569839478 207.029800415 206.569839478 206.319839478 206.350112915 206.529800415 206.660171509 206.600112915 206.459976196 206.370132446 206.379898071 206.479995728 206.620132446 206.870132446 207.259780884 207.759780884 208.250015259 195.71987915 194.21987915 193.3097229 192.839996338 192.549957275 192.359527588 192.370269775 192.679840088 193.099761963 193.29019165 193.189605713 193.019683838 192.990386963 193.109527588 193.460113525 194.259918213 195.620269775 196.620315552 195.250198364 194.099807739 193.210159302 192.660354614 192.380081177 192.160354614 191.910354614 191.759963989 191.759963989 191.790237427 191.800003052 191.969924927 192.399612427 192.979690552 193.660354614 194.790237427 204.609985352 204.029907227 203.580200195 203.219848633 202.870239258 202.520141602 202.319946289 202.290161133 202.359985352 202.420043945 202.529907227 202.790161133 203.139770508 203.509887695 203.969848633 204.699829102 205.670043945 217.159851074 217.020202637 216.820007324 216.619812012 216.619812012 216.770202637 216.829772949 216.750183105 216.730163574 216.790222168 216.699890137 216.409851074 216.239929199 216.320007324 216.360046387 216.150085449 216.130065918 220.150466919 220.259841919 220.530349731 220.710037231 220.629959106 220.400466919 220.309646606 220.360427856 220.389724731 220.320388794 220.299880981 220.280349731 220.009841919 219.509841919 219.259841919 219.700271606 220.639724731 228.150314331 227.629806519 227.030197144 226.620040894 226.589767456 226.730392456 226.719650269 226.560470581 226.509689331 226.690353394 227.030197144 227.549728394 228.539962769 230.030197144 231.370040894 231.679611206 230.910079956 297.31060791 297.97076416 298.300842285 298.45904541 298.609436035 298.63092041 298.34967041 297.97076416 297.890686035 298.070373535 298.109436035 297.88092041 297.750061035 297.72076416 297.429748535 296.820373535 296.34967041 292.680847168 293.120300293 293.139831543 292.969909668 292.930847168 293.030456543 292.860534668 292.399597168 292.130065918 292.270690918 292.430847168 292.350769043 292.350769043 292.680847168 293.020690918 293.010925293 292.809753418 288.220123291 288.399810791 288.269927979 288.140045166 288.000396729 287.760162354 287.489654541 287.359771729 287.409576416 287.479888916 287.430084229 287.319732666 287.319732666 287.519927979 287.830474854 288.080474854 288.080474854 281.019897461 281.309936523 281.510131836 281.620483398 281.630249023 281.529663086 281.479858398 281.630249023 281.880249023 281.970092773 281.830444336 281.729858398 281.840209961 281.899780273 281.420288086 280.330444336 279.109741211 274.800109863 275.479797363 275.689758301 275.559875488 275.519836426 275.710266113 275.889953613 275.910461426 275.929992676 276.069641113 276.239562988 276.340148926 276.450500488 276.410461426 275.739562988 274.279602051 272.630187988 267.030426025 267.71987915 267.8800354 267.670074463 267.460113525 267.429840088 267.4503479 267.389801025 267.359527588 267.39956665 267.479644775 267.429840088 267.21987915 266.8097229 266.120269775 265.099761963 263.79019165 256.599609375 257.129882812 257.299804688 257.139648438 256.849609375 256.650390625 256.549804688 256.48046875 256.440429688 256.5 256.599609375 256.599609375 256.41015625 255.98046875 255.16015625 253.849609375 252.08984375 241.059997559 241.609802246 241.850036621 241.819763184 241.649841309 241.449645996 241.229919434 241.059997559 240.970153809 241.000427246 241.029724121 240.939880371 240.689880371 240.369567871 239.890075684 238.939880371 237.350036621 231.699920654 232.219940186 232.489959717 232.480194092 232.130096436 231.610076904 231.199920654 231.059783936 231.099822998 231.099822998 231.090057373 231.099822998 231.090057373 230.909881592 230.509979248 229.849822998 228.849822998 220.14012146 220.450180054 220.520004272 220.410140991 220.209945679 219.959945679 219.669906616 219.430160522 219.399887085 219.589828491 219.839828491 219.97996521 220.06980896 220.180160522 220.209945679 219.959945679 219.339828491 207.580093384 207.049819946 206.60987854 206.35987854 206.390151978 206.580093384 206.729995728 206.689956665 206.549819946 206.450210571 206.439956665 206.52003479 206.660171509 206.890151978 207.240249634 207.700210571 208.220230103 195.410308838 194.04019165 193.259918213 192.830230713 192.509918213 192.299957275 192.3800354 192.780426025 193.269683838 193.460113525 193.29019165 193.000152588 192.859527588 192.96987915 193.359527588 194.189605713 195.519683838 196.500198364 195.099807739 193.939651489 193.069534302 192.569534302 192.319534302 192.109573364 191.870315552 191.729690552 191.729690552 191.790237427 191.790237427 191.910354614 192.330276489 192.960159302 193.750198364 194.870315552 204.529907227 204.00012207 203.600219727 203.270141602 202.920043945 202.569946289 202.33996582 202.310180664 202.380004883 202.449829102 202.560180664 202.799926758 203.159790039 203.549926758 204.00012207 204.639770508 205.489868164 217.239929199 217.060241699 216.820007324 216.59979248 216.610046387 216.75994873 216.75994873 216.659851074 216.699890137 216.869812012 216.810241699 216.409851074 216.139831543 216.299987793 216.560241699 216.489929199 216.449890137 220.059646606 220.150466919 220.429763794 220.629959106 220.519607544 220.290115356 220.269607544 220.439529419 220.519607544 220.429763794 220.389724731 220.419998169 220.150466919 219.450271606 218.839920044 219.000076294 219.969802856 228.150314331 227.660079956 227.070236206 226.679611206 226.730392456 226.929611206 226.900314331 226.610275269 226.480392456 226.700119019 227.080001831 227.539962769 228.429611206 230.020431519 231.759689331 232.549728394 232.009689331 297.31060791 298.09967041 298.500061035 298.609436035 298.65045166 298.589904785 298.269592285 297.890686035 297.890686035 298.16998291 298.13092041 297.68951416 297.539123535 297.949279785 298.16998291 297.56060791 296.519592285 292.659362793 293.249206543 293.350769043 293.139831543 293.049987793 293.010925293 292.659362793 292.139831543 292.040222168 292.399597168 292.520690918 292.229675293 292.239440918 293.030456543 293.880065918 293.969909668 293.430847168 288.460357666 288.640045166 288.479888916 288.290435791 288.080474854 287.779693604 287.500396729 287.369537354 287.399810791 287.460357666 287.420318604 287.309967041 287.239654541 287.359771729 287.739654541 288.260162354 288.540435791 280.970092773 281.180053711 281.319702148 281.359741211 281.370483398 281.370483398 281.390014648 281.510131836 281.659545898 281.720092773 281.590209961 281.439819336 281.489624023 281.569702148 281.199584961 280.189819336 278.979858398 274.559875488 275.229797363 275.479797363 275.429992676 275.479797363 275.720031738 275.899719238 275.939758301 276.000305176 276.220031738 276.410461426 276.500305176 276.590148926 276.500305176 275.779602051 274.279602051 272.609680176 267.0597229 267.6300354 267.679840088 267.46987915 267.3800354 267.490386963 267.580230713 267.54019165 267.479644775 267.500152588 267.490386963 267.39956665 267.21987915 266.889801025 266.240386963 265.14956665 263.729644775 256.6796875 257.150390625 257.26953125 257.080078125 256.759765625 256.549804688 256.459960938 256.400390625 256.360351562 256.41015625 256.549804688 256.610351562 256.459960938 256.049804688 255.26953125 253.950195312 252.1796875 241.140075684 241.670349121 241.890075684 241.840270996 241.619567871 241.369567871 241.159606934 241.000427246 240.939880371 240.970153809 241.000427246 240.899841309 240.670349121 240.420349121 240.050231934 239.180114746 237.569763184 231.800018311 232.259979248 232.489959717 232.449920654 232.090057373 231.550018311 231.119842529 230.949920654 230.940155029 230.920135498 230.889862061 230.920135498 230.949920654 230.889862061 230.670135498 230.150115967 229.210174561 220.240219116 220.490219116 220.520004272 220.39012146 220.200180054 219.97996521 219.680160522 219.359848022 219.240219116 219.419906616 219.749984741 220.040023804 220.220199585 220.330062866 220.370101929 220.160140991 219.629867554 207.560073853 207.080093384 206.68019104 206.439956665 206.410171509 206.580093384 206.729995728 206.77003479 206.689956665 206.60987854 206.560073853 206.560073853 206.649917603 206.85987854 207.18019104 207.629898071 208.229995728 195.160308838 193.89956665 193.179840088 192.759918213 192.490386963 192.3800354 192.530426025 192.920074463 193.3097229 193.439605713 193.269683838 193.049957275 192.929840088 192.929840088 193.189605713 193.939605713 195.229644775 196.370315552 194.960159302 193.830276489 193.019729614 192.530471802 192.280471802 192.080276489 191.880081177 191.769729614 191.790237427 191.830276489 191.830276489 191.950393677 192.359573364 192.990432739 193.719924927 194.649612427 204.549926758 204.060180664 203.67980957 203.359985352 203.009887695 202.659790039 202.420043945 202.350219727 202.380004883 202.42980957 202.529907227 202.770141602 203.150024414 203.540161133 203.960083008 204.480102539 205.199829102 217.119812012 216.880065918 216.610046387 216.42010498 216.469909668 216.610046387 216.590026855 216.540222168 216.75994873 217.110046387 217.060241699 216.520202637 216.119812012 216.34979248 216.810241699 216.92010498 216.880065918 220.019607544 220.110427856 220.389724731 220.610427856 220.580154419 220.450271606 220.519607544 220.710037231 220.679763794 220.450271606 220.379959106 220.500076294 220.269607544 219.349685669 218.299880981 218.059646606 218.969802856 228.190353394 227.719650269 227.139572144 226.740158081 226.719650269 226.830001831 226.679611206 226.360275269 226.320236206 226.679611206 227.120040894 227.469650269 228.200119019 229.950119019 232.320236206 233.940353394 233.870040894 296.910217285 297.980529785 298.61920166 298.75982666 298.72076416 298.660217285 298.429748535 298.08013916 298.089904785 298.45904541 298.52935791 298.089904785 297.86920166 298.300842285 298.58013916 297.84967041 296.58013916 292.430847168 293.309753418 293.600769043 293.440612793 293.219909668 292.979675293 292.510925293 292.069519043 292.180847168 292.659362793 292.710144043 292.270690918 292.360534668 293.450378418 294.559753418 294.589050293 293.749206543 288.800201416 288.960357666 288.760162354 288.519927979 288.229888916 287.859771729 287.550201416 287.420318604 287.399810791 287.359771729 287.279693604 287.220123291 287.199615479 287.319732666 287.760162354 288.540435791 289.189849854 281.040405273 281.210327148 281.279663086 281.250366211 281.220092773 281.309936523 281.409545898 281.479858398 281.559936523 281.609741211 281.489624023 281.300170898 281.229858398 281.239624023 280.830444336 279.800170898 278.510131836 274.300109863 274.989562988 275.340148926 275.420227051 275.540344238 275.790344238 275.979797363 276.040344238 276.160461426 276.389953613 276.569641113 276.620422363 276.660461426 276.559875488 275.819641113 274.309875488 272.550109863 266.990386963 267.509918213 267.530426025 267.330230713 267.3097229 267.490386963 267.620269775 267.620269775 267.589996338 267.580230713 267.500152588 267.339996338 267.189605713 266.96987915 266.389801025 265.259918213 263.7003479 256.700195312 257.099609375 257.1796875 256.959960938 256.639648438 256.440429688 256.389648438 256.360351562 256.299804688 256.33984375 256.490234375 256.58984375 256.5 256.129882812 255.360351562 254.080078125 252.309570312 241.199645996 241.689880371 241.899841309 241.840270996 241.579528809 241.300231934 241.069763184 240.920349121 240.850036621 240.890075684 240.939880371 240.880310059 240.720153809 240.559997559 240.290466309 239.510192871 237.960388184 231.840057373 232.239959717 232.420135498 232.380096436 232.029998779 231.509979248 231.079803467 230.860076904 230.789764404 230.739959717 230.739959717 230.789764404 230.860076904 230.889862061 230.840057373 230.509979248 229.659881592 220.299789429 220.499984741 220.499984741 220.359848022 220.189926147 219.959945679 219.669906616 219.299789429 219.100082397 219.209945679 219.560043335 219.939926147 220.220199585 220.410140991 220.510238647 220.399887085 219.999984741 207.560073853 207.129898071 206.77003479 206.500015259 206.410171509 206.509780884 206.689956665 206.799819946 206.830093384 206.799819946 206.709976196 206.620132446 206.629898071 206.810073853 207.100112915 207.529800415 208.200210571 194.9503479 193.750152588 193.070465088 192.710113525 192.5597229 192.589996338 192.750152588 192.960113525 193.089996338 193.070465088 193.019683838 193.009918213 193.019683838 192.96987915 193.030426025 193.609527588 194.910308838 196.280471802 194.899612427 193.830276489 193.059768677 192.550003052 192.280471802 192.109573364 191.969924927 191.889846802 191.870315552 191.889846802 191.889846802 192.000198364 192.370315552 192.910354614 193.439651489 194.009963989 204.609985352 204.120239258 203.719848633 203.370239258 203.020141602 202.670043945 202.420043945 202.290161133 202.279907227 202.319946289 202.460083008 202.719848633 203.08996582 203.489868164 203.889770508 204.370239258 205.060180664 216.900085449 216.630065918 216.389831543 216.270202637 216.400085449 216.59979248 216.67010498 216.750183105 217.130065918 217.549987793 217.42010498 216.679870605 216.130065918 216.360046387 216.969909668 217.250183105 217.230163574 220.099685669 220.179763794 220.410232544 220.639724731 220.679763794 220.650466919 220.710037231 220.750076294 220.490310669 220.120193481 220.070388794 220.370193481 220.299880981 219.309646606 217.910232544 217.250076294 217.950271606 228.169845581 227.730392456 227.200119019 226.770431519 226.599533081 226.549728394 226.370040894 226.230392456 226.450119019 227.009689331 227.450119019 227.570236206 228.089767456 229.919845581 232.910079956 235.480392456 236.099533081 296.43951416 297.750061035 298.640686035 298.86920166 298.800842285 298.77935791 298.58013916 298.109436035 297.88092041 298.24029541 298.66998291 298.61920166 298.41998291 298.449279785 298.250061035 297.18951416 295.929748535 292.190612793 293.350769043 293.850769043 293.739440918 293.389831543 292.999206543 292.520690918 292.180847168 292.350769043 292.760925293 292.760925293 292.440612793 292.669128418 293.719909668 294.489440918 294.079284668 292.979675293 289.340240479 289.390045166 289.080474854 288.769927979 288.390045166 287.920318604 287.550201416 287.390045166 287.290435791 287.109771729 286.970123291 287.040435791 287.189849854 287.319732666 287.640045166 288.380279541 289.119537354 281.149780273 281.279663086 281.309936523 281.189819336 281.159545898 281.300170898 281.449584961 281.519897461 281.590209961 281.670288086 281.599975586 281.349975586 281.149780273 281.010131836 280.489624023 279.260131836 277.779663086 274.130187988 274.849914551 275.330383301 275.529602051 275.689758301 275.920227051 276.090148926 276.189758301 276.300109863 276.470031738 276.580383301 276.609680176 276.670227051 276.590148926 275.910461426 274.389953613 272.489562988 266.889801025 267.429840088 267.46987915 267.280426025 267.250152588 267.429840088 267.5597229 267.620269775 267.660308838 267.689605713 267.54019165 267.299957275 267.170074463 267.0597229 266.570465088 265.479644775 263.820465088 256.66015625 257.030273438 257.080078125 256.830078125 256.5 256.3203125 256.3203125 256.330078125 256.280273438 256.299804688 256.4296875 256.559570312 256.51953125 256.190429688 255.48046875 254.240234375 252.540039062 241.210388184 241.659606934 241.859802246 241.819763184 241.579528809 241.260192871 240.979919434 240.800231934 240.729919434 240.760192871 240.829528809 240.859802246 240.800231934 240.739685059 240.540466309 239.869567871 238.460388184 231.820037842 232.150115967 232.340057373 232.320037842 232.009979248 231.520233154 231.070037842 230.800018311 230.679901123 230.650115967 230.699920654 230.779998779 230.840057373 230.920135498 230.989959717 230.860076904 230.139862061 220.359848022 220.520004272 220.499984741 220.350082397 220.160140991 219.919906616 219.620101929 219.279769897 219.060043335 219.089828491 219.379867554 219.760238647 220.089828491 220.350082397 220.549789429 220.600082397 220.370101929 207.569839478 207.18019104 206.830093384 206.52003479 206.35987854 206.410171509 206.580093384 206.750015259 206.85987854 206.899917603 206.819839478 206.700210571 206.68019104 206.819839478 207.040054321 207.390151978 208.029800415 194.759918213 193.599761963 192.9503479 192.679840088 192.679840088 192.830230713 192.939605713 192.910308838 192.740386963 192.589996338 192.620269775 192.830230713 192.979644775 192.89956665 192.830230713 193.3097229 194.599761963 196.240432739 194.889846802 193.859573364 193.099807739 192.559768677 192.250198364 192.139846802 192.099807739 192.050003052 192.000198364 191.969924927 191.950393677 192.019729614 192.280471802 192.670120239 192.969924927 193.229690552 204.609985352 204.109985352 203.690063477 203.310180664 202.960083008 202.620239258 202.33996582 202.150024414 202.08996582 202.170043945 202.380004883 202.67980957 203.049926758 203.449829102 203.880004883 204.42980957 205.210083008 216.820007324 216.540222168 216.320007324 216.250183105 216.449890137 216.75994873 216.969909668 217.199890137 217.610046387 217.949890137 217.679870605 216.829772949 216.159851074 216.270202637 216.84979248 217.219909668 217.310241699 220.160232544 220.189529419 220.370193481 220.589920044 220.669998169 220.620193481 220.540115356 220.349685669 219.939529419 219.530349731 219.589920044 220.110427856 220.299880981 219.490310669 218.040115356 217.099685669 217.479568481 228.139572144 227.789962769 227.330001831 226.860275269 226.580001831 226.459884644 226.429611206 226.599533081 227.089767456 227.719650269 228.009689331 227.870040894 228.089767456 229.719650269 232.860275269 236.070236206 237.480392456 296.320373535 297.730529785 298.750061035 298.949279785 298.750061035 298.66998291 298.41998291 297.65045166 296.980529785 297.199279785 298.06060791 298.660217285 298.609436035 298.13092041 297.15045166 295.609436035 294.38092041 292.159362793 293.450378418 294.030456543 293.899597168 293.460144043 292.989440918 292.549987793 292.249206543 292.260925293 292.440612793 292.479675293 292.510925293 292.969909668 293.610534668 293.510925293 292.339050293 290.999206543 290.199615479 290.019927979 289.470123291 288.979888916 288.489654541 287.909576416 287.460357666 287.279693604 287.130279541 286.830474854 286.649810791 286.819732666 287.109771729 287.119537354 287.010162354 287.260162354 287.699615479 281.330444336 281.420288086 281.380249023 281.180053711 281.080444336 281.220092773 281.380249023 281.449584961 281.550170898 281.689819336 281.659545898 281.380249023 281.120483398 280.920288086 280.300170898 278.899780273 277.149780273 274.069641113 274.769836426 275.319641113 275.609680176 275.800109863 275.989562988 276.149719238 276.260070801 276.340148926 276.399719238 276.429992676 276.479797363 276.630187988 276.660461426 276.059875488 274.569641113 272.489562988 266.830230713 267.410308838 267.500152588 267.320465088 267.240386963 267.359527588 267.500152588 267.620269775 267.740386963 267.799957275 267.6300354 267.339996338 267.189605713 267.170074463 266.8097229 265.780426025 264.139801025 256.580078125 256.950195312 257.030273438 256.76953125 256.41015625 256.219726562 256.240234375 256.299804688 256.280273438 256.290039062 256.419921875 256.559570312 256.549804688 256.259765625 255.620117188 254.509765625 252.919921875 241.140075684 241.550231934 241.790466309 241.829528809 241.630310059 241.269958496 240.939880371 240.710388184 240.630310059 240.649841309 240.750427246 240.840270996 240.880310059 240.869567871 240.720153809 240.180114746 239.019958496 231.800018311 232.110076904 232.309783936 232.329803467 232.050018311 231.570037842 231.090057373 230.789764404 230.659881592 230.670135498 230.759979248 230.849822998 230.889862061 230.960174561 231.110076904 231.139862061 230.630096436 220.419906616 220.56980896 220.540023804 220.379867554 220.149887085 219.89012146 219.609848022 219.31980896 219.120101929 219.100082397 219.279769897 219.580062866 219.910140991 220.22996521 220.510238647 220.700180054 220.660140991 207.600112915 207.220230103 206.839859009 206.490249634 206.290054321 206.310073853 206.439956665 206.580093384 206.700210571 206.779800415 206.779800415 206.720230103 206.759780884 206.899917603 207.049819946 207.259780884 207.77003479 194.549957275 193.420074463 192.830230713 192.64956665 192.740386963 192.960113525 193.0597229 192.9503479 192.679840088 192.490386963 192.530426025 192.729644775 192.830230713 192.689605713 192.599761963 193.049957275 194.250152588 196.240432739 194.880081177 193.859573364 193.099807739 192.519729614 192.210159302 192.149612427 192.210159302 192.210159302 192.160354614 192.120315552 192.080276489 192.050003052 192.139846802 192.389846802 192.599807739 192.769729614 204.509887695 204.049926758 203.650024414 203.279907227 202.940063477 202.600219727 202.279907227 202.040161133 201.940063477 202.040161133 202.299926758 202.650024414 203.020141602 203.42980957 203.900024414 204.540161133 205.469848633 216.92010498 216.650085449 216.389831543 216.279968262 216.480163574 216.860046387 217.199890137 217.449890137 217.75994873 217.969909668 217.679870605 216.909851074 216.230163574 216.119812012 216.460144043 216.790222168 217.060241699 220.049880981 220.070388794 220.259841919 220.509841919 220.580154419 220.439529419 220.219802856 219.929763794 219.549880981 219.250076294 219.400466919 219.960037231 220.320388794 219.870193481 218.729568481 217.790115356 217.799880981 228.240158081 227.929611206 227.480392456 226.980392456 226.660079956 226.589767456 226.749923706 227.120040894 227.639572144 228.120040894 228.249923706 228.049728394 228.070236206 229.179611206 231.730392456 234.870040894 236.959884644 296.480529785 297.90045166 298.910217285 298.980529785 298.570373535 298.339904785 298.02935791 297.09967041 296.070373535 296.050842285 297.13092041 298.18951416 298.300842285 297.41998291 295.77935791 293.789123535 292.359436035 292.399597168 293.600769043 294.089050293 293.919128418 293.419128418 292.899597168 292.469909668 292.120300293 291.880065918 291.770690918 291.899597168 292.409362793 293.049987793 293.120300293 291.979675293 290.069519043 288.549987793 291.430084229 290.920318604 289.970123291 289.229888916 288.580474854 287.880279541 287.369537354 287.220123291 287.119537354 286.809967041 286.580474854 286.750396729 287.019927979 286.760162354 286.029693604 285.519927979 285.399810791 281.580444336 281.620483398 281.510131836 281.210327148 281.019897461 281.069702148 281.149780273 281.170288086 281.269897461 281.439819336 281.420288086 281.159545898 280.930053711 280.809936523 280.269897461 278.840209961 276.890014648 274.050109863 274.639953613 275.189758301 275.559875488 275.760070801 275.920227051 276.069641113 276.210266113 276.250305176 276.220031738 276.189758301 276.309875488 276.590148926 276.729797363 276.229797363 274.819641113 272.639953613 266.79019165 267.39956665 267.5597229 267.39956665 267.29019165 267.349761963 267.490386963 267.609527588 267.750152588 267.839996338 267.71987915 267.4503479 267.3097229 267.299957275 267.030426025 266.1300354 264.549957275 256.469726562 256.91015625 257.0703125 256.83984375 256.440429688 256.190429688 256.200195312 256.280273438 256.299804688 256.330078125 256.450195312 256.58984375 256.580078125 256.349609375 255.799804688 254.83984375 253.4296875 241.050231934 241.449645996 241.739685059 241.869567871 241.729919434 241.340270996 240.920349121 240.670349121 240.590270996 240.609802246 240.710388184 240.850036621 240.960388184 240.970153809 240.829528809 240.399841309 239.519958496 231.789764404 232.150115967 232.369842529 232.380096436 232.119842529 231.639862061 231.139862061 230.789764404 230.659881592 230.710174561 230.849822998 230.949920654 230.960174561 230.989959717 231.179901123 231.360076904 231.119842529 220.490219116 220.64012146 220.64012146 220.47996521 220.209945679 219.910140991 219.620101929 219.359848022 219.200180054 219.14012146 219.220199585 219.439926147 219.760238647 220.109848022 220.439926147 220.709945679 220.830062866 207.649917603 207.259780884 206.839859009 206.450210571 206.229995728 206.209976196 206.299819946 206.35987854 206.43019104 206.500015259 206.549819946 206.60987854 206.740249634 206.939956665 207.089859009 207.209976196 207.580093384 194.370269775 193.240386963 192.689605713 192.54019165 192.689605713 192.939605713 193.139801025 193.189605713 193.109527588 193.019683838 192.990386963 192.939605713 192.759918213 192.46987915 192.389801025 192.849761963 193.870269775 196.280471802 194.920120239 193.910354614 193.149612427 192.550003052 192.210159302 192.179885864 192.290237427 192.319534302 192.290237427 192.300003052 192.250198364 192.099807739 192.019729614 192.200393677 192.500198364 192.790237427 204.400024414 203.980102539 203.620239258 203.299926758 202.969848633 202.620239258 202.299926758 202.029907227 201.92980957 202.040161133 202.299926758 202.630004883 202.989868164 203.400024414 203.870239258 204.520141602 205.540161133 217.079772949 216.810241699 216.500183105 216.320007324 216.480163574 216.869812012 217.190124512 217.340026855 217.460144043 217.549987793 217.400085449 216.929870605 216.360046387 216.020202637 215.989929199 216.210144043 216.639831543 219.879959106 219.939529419 220.210037231 220.509841919 220.580154419 220.389724731 220.120193481 219.939529419 219.780349731 219.669998169 219.750076294 220.059646606 220.339920044 220.189529419 219.559646606 218.839920044 218.589920044 228.440353394 228.030197144 227.469650269 226.940353394 226.679611206 226.690353394 226.889572144 227.150314331 227.419845581 227.639572144 227.780197144 227.889572144 228.049728394 228.610275269 230.049728394 232.429611206 234.770431519 296.45904541 297.929748535 298.99029541 299.02935791 298.449279785 298.070373535 297.789123535 297.019592285 295.99029541 295.750061035 296.640686035 297.660217285 297.74029541 296.65045166 294.72076416 292.480529785 290.65045166 293.020690918 293.899597168 294.139831543 293.930847168 293.419128418 292.819519043 292.319519043 291.909362793 291.479675293 291.159362793 291.350769043 292.149597168 292.850769043 292.419128418 290.569519043 288.239440918 286.579284668 292.830474854 291.979888916 290.649810791 289.569732666 288.729888916 287.939849854 287.420318604 287.330474854 287.350006104 287.109771729 286.850006104 286.930084229 287.069732666 286.550201416 285.319732666 284.149810791 283.430084229 281.840209961 281.840209961 281.640014648 281.250366211 280.979858398 280.939819336 280.930053711 280.870483398 280.930053711 281.080444336 281.059936523 280.800170898 280.599975586 280.590209961 280.250366211 278.979858398 276.970092773 274.050109863 274.450500488 274.950500488 275.370422363 275.599914551 275.720031738 275.889953613 276.069641113 276.109680176 276.000305176 275.929992676 276.120422363 276.489562988 276.720031738 276.340148926 275.059875488 272.920227051 266.7003479 267.3097229 267.54019165 267.429840088 267.3097229 267.370269775 267.479644775 267.54019165 267.599761963 267.689605713 267.679840088 267.549957275 267.479644775 267.479644775 267.229644775 266.410308838 264.89956665 256.349609375 256.900390625 257.169921875 257.009765625 256.599609375 256.299804688 256.240234375 256.299804688 256.33984375 256.379882812 256.5 256.620117188 256.629882812 256.4296875 255.990234375 255.209960938 253.98046875 240.960388184 241.409606934 241.769958496 241.970153809 241.850036621 241.409606934 240.939880371 240.659606934 240.579528809 240.619567871 240.720153809 240.880310059 241.029724121 241.050231934 240.899841309 240.569763184 239.949645996 231.840057373 232.270233154 232.489959717 232.469940186 232.199920654 231.730194092 231.219940186 230.829803467 230.670135498 230.730194092 230.900115967 231.020233154 231.020233154 231.029998779 231.210174561 231.500213623 231.550018311 220.580062866 220.770004272 220.779769897 220.620101929 220.339828491 219.990219116 219.669906616 219.419906616 219.240219116 219.149887085 219.160140991 219.330062866 219.660140991 220.049789429 220.399887085 220.669906616 220.879867554 207.700210571 207.259780884 206.819839478 206.399917603 206.160171509 206.100112915 206.129898071 206.140151978 206.160171509 206.240249634 206.330093384 206.43019104 206.620132446 206.890151978 207.10987854 207.250015259 207.529800415 194.229644775 193.080230713 192.519683838 192.3800354 192.530426025 192.849761963 193.229644775 193.54019165 193.71987915 193.750152588 193.6300354 193.299957275 192.799957275 192.320465088 192.259918213 192.750152588 193.5597229 196.370315552 195.050003052 194.059768677 193.319534302 192.700393677 192.340042114 192.290237427 192.370315552 192.380081177 192.340042114 192.380081177 192.340042114 192.120315552 191.920120239 192.080276489 192.550003052 193.069534302 204.33996582 203.940063477 203.58996582 203.25012207 202.920043945 202.58996582 202.299926758 202.100219727 202.060180664 202.17980957 202.409790039 202.670043945 203.009887695 203.389770508 203.799926758 204.310180664 205.239868164 217.159851074 216.949890137 216.67010498 216.500183105 216.619812012 216.949890137 217.150085449 217.130065918 217.060241699 217.070007324 217.060241699 216.860046387 216.440124512 215.929870605 215.59979248 215.730163574 216.299987793 219.839920044 219.950271606 220.250076294 220.530349731 220.559646606 220.389724731 220.250076294 220.280349731 220.379959106 220.410232544 220.349685669 220.290115356 220.269607544 220.240310669 220.019607544 219.610427856 219.219802856 228.570236206 228.009689331 227.330001831 226.839767456 226.700119019 226.740158081 226.749923706 226.700119019 226.620040894 226.620040894 226.919845581 227.570236206 228.200119019 228.520431519 228.929611206 230.240158081 232.339767456 296.43951416 297.859436035 298.99029541 299.18951416 298.65045166 298.13092041 297.84967041 297.33013916 296.56060791 296.22076416 296.66998291 297.269592285 297.160217285 296.089904785 294.300842285 292.070373535 289.800842285 294.350769043 294.620300293 294.450378418 294.130065918 293.569519043 292.870300293 292.280456543 291.880065918 291.440612793 291.020690918 291.120300293 291.870300293 292.440612793 291.760925293 289.749206543 287.430847168 285.680847168 294.199615479 293.050201416 291.390045166 290.010162354 288.979888916 288.119537354 287.590240479 287.580474854 287.699615479 287.529693604 287.239654541 287.239654541 287.290435791 286.689849854 285.319732666 283.859771729 282.720123291 282.099975586 282.010131836 281.680053711 281.220092773 280.920288086 280.859741211 280.830444336 280.760131836 280.790405273 280.939819336 280.930053711 280.659545898 280.409545898 280.370483398 280.149780273 279.109741211 277.180053711 273.970031738 274.239562988 274.739562988 275.210266113 275.450500488 275.540344238 275.689758301 275.910461426 275.960266113 275.790344238 275.670227051 275.849914551 276.260070801 276.519836426 276.239562988 275.179992676 273.189758301 266.46987915 267.109527588 267.429840088 267.389801025 267.29019165 267.349761963 267.429840088 267.370269775 267.29019165 267.339996338 267.46987915 267.5597229 267.609527588 267.639801025 267.410308838 266.639801025 265.170074463 256.190429688 256.870117188 257.25 257.190429688 256.8203125 256.459960938 256.3203125 256.330078125 256.360351562 256.400390625 256.509765625 256.629882812 256.66015625 256.509765625 256.16015625 255.559570312 254.509765625 240.899841309 241.449645996 241.890075684 242.140075684 242.010192871 241.529724121 241.010192871 240.699645996 240.640075684 240.670349121 240.750427246 240.880310059 241.040466309 241.090270996 240.960388184 240.699645996 240.279724121 231.929901123 232.440155029 232.639862061 232.559783936 232.289764404 231.889862061 231.389862061 230.960174561 230.739959717 230.770233154 230.940155029 231.090057373 231.110076904 231.110076904 231.230194092 231.550018311 231.809783936 220.689926147 220.919906616 220.939926147 220.749984741 220.450180054 220.080062866 219.72996521 219.450180054 219.279769897 219.169906616 219.160140991 219.299789429 219.64012146 220.060043335 220.399887085 220.629867554 220.850082397 207.700210571 207.220230103 206.759780884 206.339859009 206.060073853 205.93019104 205.919937134 205.939956665 206.000015259 206.129898071 206.259780884 206.35987854 206.529800415 206.799819946 207.100112915 207.319839478 207.600112915 194.21987915 193.019683838 192.389801025 192.2003479 192.339996338 192.750152588 193.299957275 193.780426025 194.04019165 194.070465088 193.870269775 193.420074463 192.769683838 192.229644775 192.21987915 192.750152588 193.439605713 196.460159302 195.179885864 194.240432739 193.509963989 192.910354614 192.540237427 192.450393677 192.479690552 192.420120239 192.330276489 192.370315552 192.359573364 192.120315552 191.870315552 192.030471802 192.599807739 193.300003052 204.389770508 203.920043945 203.520141602 203.139770508 202.799926758 202.50012207 202.279907227 202.17980957 202.210083008 202.33996582 202.520141602 202.730102539 203.029907227 203.420043945 203.75012207 204.080200195 204.790161133 217.17010498 217.049987793 216.860046387 216.770202637 216.900085449 217.130065918 217.210144043 217.110046387 216.969909668 216.960144043 216.969909668 216.799987793 216.389831543 215.779968262 215.329772949 215.440124512 216.09979248 219.950271606 220.030349731 220.250076294 220.389724731 220.360427856 220.269607544 220.299880981 220.479568481 220.689529419 220.759841919 220.639724731 220.379959106 220.169998169 220.120193481 220.099685669 219.830154419 219.370193481 228.570236206 227.929611206 227.259689331 226.929611206 226.950119019 226.919845581 226.639572144 226.310470581 226.110275269 226.099533081 226.469650269 227.400314331 228.440353394 228.849533081 228.780197144 229.330001831 230.969650269 297.300842285 298.15045166 299.070373535 299.50982666 299.179748535 298.519592285 297.95904541 297.47076416 296.93951416 296.660217285 296.789123535 297.000061035 296.77935791 295.949279785 294.52935791 292.519592285 289.949279785 296.680847168 296.030456543 295.190612793 294.569519043 293.889831543 293.049987793 292.430847168 292.169128418 291.889831543 291.450378418 291.309753418 291.729675293 292.069519043 291.409362793 289.710144043 287.719909668 285.880065918 295.470123291 294.019927979 292.090240479 290.460357666 289.260162354 288.359771729 287.880279541 287.890045166 288.019927979 287.840240479 287.510162354 287.449615479 287.510162354 287.069732666 285.909576416 284.500396729 283.140045166 282.449584961 282.149780273 281.630249023 281.090209961 280.779663086 280.760131836 280.800170898 280.779663086 280.840209961 281.040405273 281.130249023 280.949584961 280.630249023 280.399780273 280.099975586 279.189819336 277.390014648 273.779602051 274.050109863 274.620422363 275.149719238 275.380187988 275.399719238 275.540344238 275.779602051 275.849914551 275.630187988 275.420227051 275.550109863 275.920227051 276.170227051 275.979797363 275.099914551 273.340148926 266.099761963 266.859527588 267.320465088 267.339996338 267.250152588 267.3097229 267.370269775 267.21987915 266.979644775 266.939605713 267.1300354 267.389801025 267.599761963 267.7003479 267.54019165 266.849761963 265.420074463 256.0 256.76953125 257.259765625 257.299804688 257.0 256.620117188 256.41015625 256.360351562 256.360351562 256.389648438 256.490234375 256.610351562 256.669921875 256.580078125 256.3203125 255.860351562 254.98046875 240.840270996 241.579528809 242.119567871 242.369567871 242.229919434 241.739685059 241.199645996 240.869567871 240.800231934 240.829528809 240.869567871 240.930114746 241.029724121 241.079528809 240.979919434 240.809997559 240.579528809 232.050018311 232.639862061 232.789764404 232.659881592 232.420135498 232.079803467 231.639862061 231.190155029 230.900115967 230.889862061 231.039764404 231.210174561 231.279998779 231.270233154 231.309783936 231.529998779 231.889862061 220.81980896 221.060043335 221.049789429 220.850082397 220.520004272 220.14012146 219.749984741 219.490219116 219.339828491 219.270004272 219.270004272 219.399887085 219.720199585 220.14012146 220.439926147 220.600082397 220.779769897 207.660171509 207.10987854 206.68019104 206.279800415 205.950210571 205.740249634 205.669937134 205.720230103 205.870132446 206.089859009 206.27003479 206.379898071 206.490249634 206.729995728 207.060073853 207.370132446 207.669937134 194.330230713 193.0597229 192.320465088 192.019683838 192.139801025 192.639801025 193.299957275 193.79019165 193.910308838 193.79019165 193.570465088 193.210113525 192.670074463 192.189605713 192.210113525 192.780426025 193.460113525 196.469924927 195.210159302 194.280471802 193.590042114 193.050003052 192.710159302 192.620315552 192.620315552 192.500198364 192.380081177 192.399612427 192.410354614 192.210159302 191.969924927 192.069534302 192.620315552 193.399612427 204.520141602 203.989868164 203.520141602 203.100219727 202.75012207 202.469848633 202.279907227 202.17980957 202.219848633 202.33996582 202.489868164 202.670043945 202.980102539 203.400024414 203.730102539 203.949829102 204.480102539 217.17010498 217.060241699 216.929870605 216.900085449 217.040222168 217.179870605 217.230163574 217.219909668 217.270202637 217.340026855 217.250183105 216.909851074 216.329772949 215.639831543 215.139831543 215.239929199 215.889831543 220.070388794 220.080154419 220.169998169 220.160232544 220.099685669 220.110427856 220.250076294 220.370193481 220.389724731 220.370193481 220.320388794 220.210037231 220.099685669 220.089920044 220.080154419 219.780349731 219.169998169 228.560470581 227.959884644 227.400314331 227.249923706 227.330001831 227.129806519 226.639572144 226.339767456 226.450119019 226.650314331 226.900314331 227.530197144 228.480392456 229.030197144 229.030197144 229.410079956 230.740158081 299.519592285 299.050842285 299.27935791 299.800842285 299.769592285 299.019592285 298.039123535 297.269592285 296.839904785 296.730529785 296.859436035 297.000061035 296.88092041 296.339904785 295.300842285 293.56060791 290.88092041 299.639831543 297.960144043 296.280456543 295.149597168 294.219909668 293.290222168 292.710144043 292.630065918 292.559753418 292.130065918 291.770690918 291.860534668 292.040222168 291.579284668 290.389831543 288.790222168 286.780456543 296.670318604 294.890045166 292.699615479 290.850006104 289.519927979 288.640045166 288.239654541 288.239654541 288.269927979 287.979888916 287.580474854 287.510162354 287.630279541 287.420318604 286.640045166 285.449615479 283.930084229 282.909545898 282.349975586 281.599975586 280.939819336 280.630249023 280.640014648 280.720092773 280.750366211 280.840209961 281.099975586 281.359741211 281.390014648 281.109741211 280.710327148 280.220092773 279.309936523 277.620483398 273.510070801 273.880187988 274.550109863 275.149719238 275.359680176 275.319641113 275.410461426 275.670227051 275.760070801 275.540344238 275.279602051 275.340148926 275.649719238 275.859680176 275.660461426 274.889953613 273.319641113 265.670074463 266.6300354 267.250152588 267.349761963 267.269683838 267.320465088 267.389801025 267.210113525 266.859527588 266.689605713 266.830230713 267.120269775 267.39956665 267.609527588 267.599761963 267.049957275 265.710113525 255.83984375 256.639648438 257.1796875 257.3203125 257.110351562 256.759765625 256.490234375 256.379882812 256.370117188 256.389648438 256.459960938 256.58984375 256.6796875 256.650390625 256.440429688 256.080078125 255.33984375 240.809997559 241.760192871 242.390075684 242.649841309 242.489685059 242.010192871 241.460388184 241.119567871 241.040466309 241.079528809 241.090270996 241.069763184 241.069763184 241.050231934 240.979919434 240.890075684 240.800231934 232.210174561 232.829803467 232.929901123 232.750213623 232.529998779 232.270233154 231.869842529 231.409881592 231.110076904 231.070037842 231.230194092 231.420135498 231.520233154 231.520233154 231.480194092 231.550018311 231.840057373 220.930160522 221.160140991 221.109848022 220.899887085 220.580062866 220.180160522 219.790023804 219.499984741 219.39012146 219.410140991 219.459945679 219.580062866 219.859848022 220.240219116 220.510238647 220.609848022 220.720199585 207.580093384 206.979995728 206.589859009 206.27003479 205.910171509 205.60987854 205.470230103 205.490249634 205.649917603 205.879898071 206.080093384 206.209976196 206.330093384 206.580093384 206.959976196 207.35987854 207.709976196 194.46987915 193.2003479 192.349761963 191.870269775 191.8800354 192.420074463 193.170074463 193.660308838 193.670074463 193.439605713 193.259918213 193.089996338 192.740386963 192.299957275 192.229644775 192.71987915 193.420074463 196.420120239 195.130081177 194.189651489 193.550003052 193.109573364 192.849807739 192.780471802 192.759963989 192.649612427 192.519729614 192.540237427 192.550003052 192.359573364 192.109573364 192.160354614 192.670120239 193.469924927 204.659790039 204.150024414 203.670043945 203.219848633 202.83996582 202.549926758 202.299926758 202.120239258 202.060180664 202.150024414 202.299926758 202.509887695 202.850219727 203.310180664 203.699829102 203.949829102 204.400024414 217.17010498 216.949890137 216.75994873 216.770202637 216.929870605 217.079772949 217.179870605 217.34979248 217.650085449 217.860046387 217.690124512 217.130065918 216.360046387 215.579772949 215.00994873 214.989929199 215.529968262 220.059646606 220.089920044 220.129959106 220.070388794 220.030349731 220.139724731 220.250076294 220.129959106 219.809646606 219.599685669 219.669998169 219.889724731 220.070388794 220.210037231 220.200271606 219.780349731 218.979568481 228.719650269 228.120040894 227.620040894 227.499923706 227.499923706 227.139572144 226.610275269 226.620040894 227.280197144 227.810470581 227.810470581 227.820236206 228.270431519 228.780197144 229.030197144 229.599533081 230.950119019 302.40045166 300.27935791 299.45904541 299.81060791 300.09967041 299.480529785 298.24029541 297.199279785 296.81060791 296.910217285 297.18951416 297.43951416 297.49029541 297.160217285 296.31060791 294.769592285 292.16998291 302.290222168 299.780456543 297.389831543 295.719909668 294.520690918 293.530456543 293.010925293 293.020690918 293.030456543 292.649597168 292.239440918 292.219909668 292.370300293 292.130065918 291.360534668 290.030456543 287.819519043 297.680084229 295.580474854 293.220123291 291.210357666 289.809967041 288.979888916 288.640045166 288.590240479 288.470123291 288.069732666 287.640045166 287.540435791 287.689849854 287.649810791 287.159576416 286.180084229 284.529693604 283.380249023 282.550170898 281.649780273 280.949584961 280.590209961 280.550170898 280.630249023 280.670288086 280.750366211 281.000366211 281.380249023 281.609741211 281.510131836 281.099975586 280.500366211 279.529663086 277.899780273 273.290344238 273.739562988 274.460266113 275.069641113 275.279602051 275.229797363 275.290344238 275.540344238 275.679992676 275.500305176 275.279602051 275.300109863 275.559875488 275.700500488 275.439758301 274.660461426 273.189758301 265.320465088 266.46987915 267.21987915 267.389801025 267.349761963 267.429840088 267.509918213 267.330230713 266.9503479 266.689605713 266.689605713 266.859527588 267.109527588 267.420074463 267.589996338 267.240386963 266.009918213 255.6796875 256.5 257.0703125 257.3203125 257.219726562 256.889648438 256.580078125 256.419921875 256.400390625 256.419921875 256.469726562 256.58984375 256.700195312 256.6796875 256.509765625 256.219726562 255.620117188 240.819763184 241.960388184 242.649841309 242.840270996 242.640075684 242.189880371 241.680114746 241.319763184 241.229919434 241.300231934 241.350036621 241.290466309 241.180114746 241.069763184 240.960388184 240.920349121 240.930114746 232.320037842 232.989959717 233.059783936 232.829803467 232.590057373 232.349822998 231.989959717 231.550018311 231.270233154 231.259979248 231.440155029 231.630096436 231.759979248 231.789764404 231.719940186 231.670135498 231.820037842 220.990219116 221.189926147 221.120101929 220.950180054 220.680160522 220.299789429 219.859848022 219.540023804 219.439926147 219.510238647 219.609848022 219.740219116 219.97996521 220.330062866 220.600082397 220.680160522 220.740219116 207.509780884 206.85987854 206.549819946 206.299819946 205.970230103 205.620132446 205.390151978 205.310073853 205.339859009 205.43019104 205.580093384 205.740249634 205.970230103 206.310073853 206.779800415 207.279800415 207.700210571 194.580230713 193.349761963 192.39956665 191.710113525 191.549957275 192.030426025 192.839996338 193.439605713 193.54019165 193.39956665 193.349761963 193.330230713 193.049957275 192.5597229 192.299957275 192.570465088 193.2003479 196.389846802 195.019729614 194.059768677 193.469924927 193.130081177 192.960159302 192.939651489 192.939651489 192.870315552 192.780471802 192.769729614 192.710159302 192.450393677 192.160354614 192.179885864 192.679885864 193.530471802 204.779907227 204.359985352 203.909790039 203.420043945 202.989868164 202.620239258 202.290161133 202.009887695 201.870239258 201.940063477 202.159790039 202.420043945 202.759887695 203.199829102 203.650024414 203.969848633 204.420043945 217.110046387 216.730163574 216.469909668 216.540222168 216.829772949 217.09979248 217.250183105 217.469909668 217.840026855 218.049987793 217.829772949 217.199890137 216.42010498 215.630065918 214.940124512 214.699890137 215.040222168 219.950271606 220.099685669 220.219802856 220.210037231 220.179763794 220.229568481 220.229568481 219.939529419 219.450271606 219.150466919 219.290115356 219.679763794 220.049880981 220.309646606 220.320388794 219.839920044 218.900466919 229.089767456 228.360275269 227.749923706 227.499923706 227.389572144 227.020431519 226.620040894 226.919845581 227.879806519 228.570236206 228.410079956 227.999923706 228.080001831 228.469650269 228.830001831 229.580001831 231.049728394 304.75982666 301.45904541 299.660217285 299.61920166 300.09967041 299.81060791 298.68951416 297.66998291 297.359436035 297.56060791 297.84967041 298.089904785 298.179748535 297.890686035 297.070373535 295.679748535 293.359436035 303.870300293 301.059753418 298.280456543 296.219909668 294.819519043 293.839050293 293.339050293 293.270690918 293.210144043 292.870300293 292.579284668 292.630065918 292.809753418 292.639831543 292.040222168 290.839050293 288.549987793 298.279693604 296.069732666 293.710357666 291.640045166 290.180084229 289.340240479 288.979888916 288.830474854 288.609771729 288.220123291 287.830474854 287.710357666 287.779693604 287.760162354 287.420318604 286.550201416 284.830474854 283.630249023 282.659545898 281.750366211 281.090209961 280.739624023 280.630249023 280.659545898 280.689819336 280.739624023 280.899780273 281.239624023 281.569702148 281.649780273 281.370483398 280.790405273 279.800170898 278.159545898 273.239562988 273.670227051 274.309875488 274.880187988 275.120422363 275.120422363 275.179992676 275.399719238 275.559875488 275.479797363 275.309875488 275.340148926 275.559875488 275.660461426 275.340148926 274.479797363 273.019836426 265.14956665 266.349761963 267.1300354 267.389801025 267.410308838 267.509918213 267.589996338 267.4503479 267.1300354 266.8800354 266.780426025 266.79019165 266.929840088 267.240386963 267.549957275 267.370269775 266.299957275 255.559570312 256.379882812 257.0 257.349609375 257.330078125 257.01953125 256.66015625 256.459960938 256.4296875 256.459960938 256.509765625 256.610351562 256.719726562 256.709960938 256.549804688 256.309570312 255.860351562 240.829528809 242.130310059 242.800231934 242.890075684 242.630310059 242.210388184 241.750427246 241.399841309 241.300231934 241.409606934 241.540466309 241.510192871 241.350036621 241.140075684 240.970153809 240.920349121 241.000427246 232.340057373 233.070037842 233.150115967 232.889862061 232.630096436 232.400115967 232.050018311 231.639862061 231.380096436 231.389862061 231.570037842 231.759979248 231.900115967 231.980194092 231.960174561 231.869842529 231.900115967 221.010238647 221.169906616 221.109848022 220.990219116 220.799789429 220.450180054 219.999984741 219.629867554 219.499984741 219.56980896 219.680160522 219.810043335 220.029769897 220.370101929 220.680160522 220.799789429 220.81980896 207.470230103 206.810073853 206.549819946 206.350112915 206.02003479 205.649917603 205.379898071 205.200210571 205.060073853 204.979995728 205.009780884 205.200210571 205.549819946 206.02003479 206.580093384 207.149917603 207.669937134 194.6300354 193.389801025 192.339996338 191.519683838 191.210113525 191.5597229 192.320465088 192.979644775 193.330230713 193.4503479 193.570465088 193.609527588 193.320465088 192.759918213 192.339996338 192.410308838 192.920074463 196.410354614 194.969924927 193.960159302 193.399612427 193.139846802 193.080276489 193.130081177 193.210159302 193.229690552 193.179885864 193.099807739 192.889846802 192.490432739 192.090042114 192.059768677 192.569534302 193.509963989 204.850219727 204.529907227 204.109985352 203.569946289 203.029907227 202.580200195 202.190063477 201.859985352 201.739868164 201.870239258 202.199829102 202.540161133 202.850219727 203.199829102 203.58996582 203.920043945 204.370239258 216.980163574 216.540222168 216.299987793 216.480163574 216.960144043 217.380065918 217.540222168 217.619812012 217.770202637 217.820007324 217.540222168 216.989929199 216.369812012 215.690124512 214.969909668 214.520202637 214.630065918 219.849685669 220.120193481 220.330154419 220.370193481 220.229568481 220.070388794 219.939529419 219.710037231 219.429763794 219.320388794 219.479568481 219.759841919 220.009841919 220.219802856 220.240310669 219.780349731 218.830154419 229.520431519 228.570236206 227.810470581 227.429611206 227.360275269 227.219650269 227.049728394 227.280197144 227.950119019 228.370040894 228.169845581 227.910079956 228.129806519 228.589767456 228.969650269 229.669845581 231.060470581 306.15045166 302.679748535 300.24029541 299.570373535 299.949279785 300.00982666 299.289123535 298.519592285 298.31060791 298.410217285 298.43951416 298.410217285 298.40045166 298.11920166 297.300842285 296.050842285 294.140686035 304.450378418 301.819519043 298.950378418 296.649597168 295.149597168 294.229675293 293.739440918 293.540222168 293.339050293 293.040222168 292.880065918 292.989440918 293.059753418 292.760925293 292.120300293 291.020690918 288.870300293 298.449615479 296.420318604 294.180084229 292.140045166 290.630279541 289.729888916 289.239654541 288.970123291 288.739654541 288.460357666 288.199615479 288.040435791 287.930084229 287.790435791 287.449615479 286.649810791 284.920318604 283.590209961 282.670288086 281.880249023 281.330444336 280.989624023 280.809936523 280.760131836 280.790405273 280.849975586 280.960327148 281.189819336 281.470092773 281.620483398 281.510131836 281.040405273 280.059936523 278.359741211 273.319641113 273.630187988 274.120422363 274.649719238 274.950500488 275.059875488 275.130187988 275.290344238 275.429992676 275.420227051 275.300109863 275.319641113 275.500305176 275.609680176 275.290344238 274.370422363 272.870422363 265.1300354 266.210113525 266.960113525 267.29019165 267.410308838 267.500152588 267.54019165 267.429840088 267.269683838 267.139801025 267.0597229 266.9503479 266.939605713 267.14956665 267.490386963 267.4503479 266.549957275 255.459960938 256.33984375 257.009765625 257.4296875 257.450195312 257.110351562 256.690429688 256.469726562 256.459960938 256.51953125 256.580078125 256.650390625 256.73046875 256.719726562 256.58984375 256.419921875 256.120117188 240.819763184 242.189880371 242.829528809 242.819763184 242.519958496 242.170349121 241.800231934 241.470153809 241.350036621 241.460388184 241.640075684 241.689880371 241.540466309 241.279724121 241.029724121 240.930114746 241.040466309 232.250213623 233.059783936 233.199920654 232.949920654 232.690155029 232.469940186 232.159881592 231.779998779 231.520233154 231.500213623 231.639862061 231.789764404 231.929901123 232.059783936 232.119842529 232.070037842 232.070037842 221.049789429 221.189926147 221.109848022 221.010238647 220.859848022 220.56980896 220.160140991 219.799789429 219.64012146 219.649887085 219.72996521 219.850082397 220.049789429 220.399887085 220.749984741 220.930160522 220.959945679 207.509780884 206.879898071 206.60987854 206.370132446 205.979995728 205.580093384 205.319839478 205.129898071 204.93019104 204.759780884 204.720230103 204.919937134 205.310073853 205.839859009 206.43019104 207.040054321 207.60987854 194.6300354 193.210113525 192.0597229 191.259918213 190.960113525 191.179840088 191.7003479 192.280426025 192.729644775 193.099761963 193.370269775 193.429840088 193.160308838 192.670074463 192.299957275 192.320465088 192.759918213 196.450393677 194.990432739 193.960159302 193.370315552 193.149612427 193.189651489 193.410354614 193.649612427 193.750198364 193.700393677 193.519729614 193.160354614 192.609573364 192.090042114 191.969924927 192.429885864 193.389846802 204.889770508 204.580200195 204.150024414 203.609985352 203.009887695 202.469848633 202.029907227 201.730102539 201.670043945 201.909790039 202.319946289 202.719848633 203.009887695 203.259887695 203.540161133 203.799926758 204.17980957 216.940124512 216.560241699 216.380065918 216.59979248 217.150085449 217.639831543 217.779968262 217.699890137 217.610046387 217.460144043 217.130065918 216.67010498 216.210144043 215.710144043 215.070007324 214.540222168 214.449890137 219.780349731 220.049880981 220.330154419 220.389724731 220.110427856 219.710037231 219.450271606 219.439529419 219.599685669 219.809646606 219.969802856 219.990310669 219.929763794 219.939529419 219.910232544 219.519607544 218.700271606 229.849533081 228.780197144 227.919845581 227.480392456 227.549728394 227.780197144 227.810470581 227.740158081 227.679611206 227.539962769 227.379806519 227.620040894 228.360275269 229.099533081 229.509689331 230.070236206 231.209884644 307.11920166 304.22076416 301.34967041 299.859436035 299.86920166 300.140686035 299.820373535 299.27935791 299.089904785 299.00982666 298.66998291 298.31060791 298.199279785 297.97076416 297.20904541 296.02935791 294.45904541 304.659362793 302.409362793 299.489440918 296.989440918 295.430847168 294.620300293 294.180847168 293.899597168 293.639831543 293.380065918 293.249206543 293.249206543 293.100769043 292.589050293 291.860534668 290.839050293 288.979675293 298.449615479 296.760162354 294.640045166 292.590240479 291.050201416 290.069732666 289.479888916 289.119537354 288.909576416 288.800201416 288.670318604 288.430084229 288.109771729 287.779693604 287.399810791 286.600006104 284.899810791 283.420288086 282.680053711 282.029663086 281.569702148 281.220092773 280.930053711 280.779663086 280.790405273 280.920288086 281.090209961 281.300170898 281.519897461 281.680053711 281.649780273 281.279663086 280.330444336 278.590209961 273.330383301 273.519836426 273.920227051 274.439758301 274.849914551 275.069641113 275.179992676 275.300109863 275.399719238 275.399719238 275.300109863 275.260070801 275.399719238 275.550109863 275.290344238 274.370422363 272.859680176 265.1300354 266.049957275 266.769683838 267.170074463 267.339996338 267.389801025 267.389801025 267.349761963 267.330230713 267.39956665 267.39956665 267.240386963 267.080230713 267.160308838 267.420074463 267.460113525 266.759918213 255.370117188 256.33984375 257.080078125 257.509765625 257.5 257.139648438 256.6796875 256.459960938 256.490234375 256.58984375 256.66015625 256.690429688 256.719726562 256.700195312 256.620117188 256.549804688 256.389648438 240.729919434 242.119567871 242.760192871 242.739685059 242.479919434 242.210388184 241.939880371 241.649841309 241.489685059 241.550231934 241.720153809 241.809997559 241.720153809 241.479919434 241.199645996 241.040466309 241.130310059 232.110076904 233.000213623 233.210174561 233.009979248 232.750213623 232.559783936 232.320037842 232.000213623 231.710174561 231.630096436 231.710174561 231.820037842 231.949920654 232.099822998 232.219940186 232.230194092 232.250213623 221.160140991 221.299789429 221.169906616 221.020004272 220.870101929 220.620101929 220.279769897 219.970199585 219.799789429 219.770004272 219.81980896 219.939926147 220.129867554 220.450180054 220.810043335 221.029769897 221.100082397 207.640151978 207.029800415 206.709976196 206.350112915 205.850112915 205.399917603 205.149917603 205.02003479 204.899917603 204.779800415 204.77003479 204.939956665 205.299819946 205.779800415 206.330093384 206.919937134 207.52003479 194.5597229 192.8097229 191.570465088 190.939605713 190.849761963 191.030426025 191.250152588 191.509918213 191.870269775 192.3097229 192.6300354 192.689605713 192.509918213 192.269683838 192.160308838 192.299957275 192.750152588 196.530471802 195.130081177 194.080276489 193.420120239 193.179885864 193.319534302 193.729690552 194.120315552 194.269729614 194.149612427 193.880081177 193.479690552 192.910354614 192.330276489 192.080276489 192.389846802 193.280471802 204.880004883 204.460083008 204.029907227 203.549926758 203.009887695 202.449829102 201.960083008 201.659790039 201.639770508 201.920043945 202.359985352 202.759887695 203.049926758 203.259887695 203.460083008 203.639770508 203.940063477 217.110046387 216.900085449 216.690124512 216.770202637 217.139831543 217.520202637 217.639831543 217.549987793 217.449890137 217.310241699 216.980163574 216.520202637 216.079772949 215.659851074 215.139831543 214.659851074 214.469909668 219.650466919 219.839920044 220.179763794 220.349685669 220.099685669 219.589920044 219.250076294 219.339920044 219.759841919 220.160232544 220.259841919 220.080154419 219.820388794 219.679763794 219.589920044 219.229568481 218.559646606 230.110275269 229.039962769 228.099533081 227.570236206 227.669845581 228.120040894 228.320236206 228.009689331 227.410079956 226.879806519 226.810470581 227.450119019 228.570236206 229.499923706 229.999923706 230.530197144 231.419845581 308.000061035 305.74029541 302.480529785 300.24029541 299.88092041 300.269592285 300.160217285 299.699279785 299.47076416 299.250061035 298.70904541 298.16998291 298.050842285 297.95904541 297.24029541 295.95904541 294.43951416 304.850769043 302.899597168 299.909362793 297.219909668 295.630065918 294.880065918 294.460144043 294.180847168 293.989440918 293.799987793 293.630065918 293.450378418 293.120300293 292.510925293 291.729675293 290.729675293 289.059753418 298.540435791 297.130279541 294.979888916 292.830474854 291.290435791 290.340240479 289.699615479 289.260162354 289.090240479 289.119537354 289.059967041 288.750396729 288.269927979 287.869537354 287.439849854 286.590240479 284.869537354 283.279663086 282.699584961 282.149780273 281.720092773 281.359741211 280.989624023 280.720092773 280.670288086 280.849975586 281.159545898 281.500366211 281.769897461 281.939819336 281.920288086 281.559936523 280.620483398 278.909545898 273.170227051 273.349914551 273.760070801 274.309875488 274.809875488 275.139953613 275.309875488 275.410461426 275.489562988 275.500305176 275.389953613 275.319641113 275.420227051 275.590148926 275.410461426 274.550109863 273.050109863 265.049957275 265.910308838 266.64956665 267.120269775 267.29019165 267.3097229 267.3097229 267.349761963 267.460113525 267.599761963 267.620269775 267.439605713 267.210113525 267.170074463 267.349761963 267.410308838 266.920074463 255.309570312 256.389648438 257.16015625 257.559570312 257.51953125 257.139648438 256.73046875 256.540039062 256.58984375 256.709960938 256.740234375 256.700195312 256.690429688 256.669921875 256.620117188 256.639648438 256.620117188 240.579528809 241.989685059 242.670349121 242.720153809 242.540466309 242.350036621 242.119567871 241.869567871 241.699645996 241.689880371 241.800231934 241.899841309 241.880310059 241.739685059 241.489685059 241.269958496 241.290466309 232.029998779 232.949920654 233.210174561 233.029998779 232.800018311 232.639862061 232.460174561 232.179901123 231.900115967 231.759979248 231.800018311 231.909881592 232.050018311 232.190155029 232.320037842 232.360076904 232.389862061 221.359848022 221.499984741 221.310043335 221.080062866 220.89012146 220.669906616 220.379867554 220.120101929 219.950180054 219.89012146 219.959945679 220.109848022 220.310043335 220.56980896 220.859848022 221.089828491 221.200180054 207.799819946 207.169937134 206.77003479 206.319839478 205.750015259 205.27003479 205.009780884 204.919937134 204.899917603 204.899917603 204.939956665 205.060073853 205.310073853 205.709976196 206.209976196 206.779800415 207.399917603 194.389801025 192.320465088 191.049957275 190.670074463 190.839996338 191.019683838 190.979644775 190.920074463 191.089996338 191.460113525 191.750152588 191.799957275 191.740386963 191.780426025 191.960113525 192.269683838 192.780426025 196.649612427 195.340042114 194.269729614 193.540237427 193.250198364 193.450393677 193.960159302 194.399612427 194.500198364 194.280471802 194.000198364 193.710159302 193.290237427 192.759963989 192.380081177 192.479690552 193.210159302 204.790161133 204.210083008 203.790161133 203.469848633 203.069946289 202.549926758 202.029907227 201.719848633 201.710083008 201.969848633 202.359985352 202.710083008 202.980102539 203.17980957 203.33996582 203.489868164 203.719848633 217.500183105 217.389831543 217.119812012 216.940124512 217.020202637 217.190124512 217.250183105 217.239929199 217.310241699 217.329772949 217.070007324 216.560241699 216.00994873 215.549987793 215.079772949 214.679870605 214.440124512 219.370193481 219.509841919 219.919998169 220.320388794 220.320388794 219.929763794 219.559646606 219.580154419 219.900466919 220.169998169 220.189529419 219.990310669 219.780349731 219.660232544 219.519607544 219.129959106 218.509841919 230.499923706 229.440353394 228.389572144 227.620040894 227.480392456 227.830001831 228.070236206 227.820236206 227.249923706 226.810470581 226.900314331 227.629806519 228.639572144 229.469650269 230.039962769 230.700119019 231.549728394 308.45904541 306.49029541 302.97076416 300.36920166 299.929748535 300.41998291 300.320373535 299.750061035 299.480529785 299.36920166 298.90045166 298.359436035 298.27935791 298.289123535 297.570373535 296.089904785 294.339904785 304.790222168 303.069519043 300.110534668 297.399597168 295.790222168 294.989440918 294.479675293 294.190612793 294.110534668 294.069519043 293.880065918 293.579284668 293.210144043 292.710144043 291.979675293 290.880065918 289.139831543 298.569732666 297.269927979 295.029693604 292.800201416 291.330474854 290.460357666 289.800201416 289.300201416 289.149810791 289.279693604 289.269927979 288.939849854 288.470123291 288.100006104 287.680084229 286.750396729 284.939849854 283.069702148 282.620483398 282.099975586 281.699584961 281.380249023 281.029663086 280.710327148 280.620483398 280.840209961 281.279663086 281.750366211 282.130249023 282.319702148 282.269897461 281.859741211 280.920288086 279.300170898 272.929992676 273.189758301 273.679992676 274.290344238 274.840148926 275.220031738 275.439758301 275.540344238 275.620422363 275.649719238 275.599914551 275.529602051 275.620422363 275.779602051 275.639953613 274.840148926 273.410461426 264.9503479 265.859527588 266.710113525 267.2003479 267.339996338 267.349761963 267.410308838 267.54019165 267.660308838 267.729644775 267.660308838 267.460113525 267.240386963 267.179840088 267.29019165 267.370269775 267.019683838 255.280273438 256.440429688 257.240234375 257.580078125 257.540039062 257.219726562 256.879882812 256.700195312 256.73046875 256.799804688 256.780273438 256.690429688 256.629882812 256.610351562 256.610351562 256.6796875 256.75 240.489685059 241.899841309 242.619567871 242.769958496 242.649841309 242.460388184 242.239685059 242.010192871 241.829528809 241.790466309 241.859802246 241.949645996 242.019958496 241.989685059 241.809997559 241.569763184 241.500427246 232.090057373 232.969940186 233.219940186 233.070037842 232.829803467 232.659881592 232.500213623 232.259979248 232.009979248 231.860076904 231.900115967 232.079803467 232.250213623 232.380096436 232.460174561 232.469940186 232.489959717 221.600082397 221.720199585 221.470199585 221.200180054 220.999984741 220.799789429 220.520004272 220.249984741 220.049789429 219.990219116 220.100082397 220.330062866 220.560043335 220.740219116 220.950180054 221.14012146 221.279769897 207.919937134 207.220230103 206.759780884 206.299819946 205.759780884 205.279800415 205.009780884 204.919937134 204.959976196 205.040054321 205.089859009 205.120132446 205.240249634 205.560073853 206.049819946 206.620132446 207.279800415 194.179840088 191.979644775 190.769683838 190.530426025 190.769683838 190.889801025 190.7003479 190.490386963 190.5597229 190.849761963 191.0597229 191.070465088 191.109527588 191.349761963 191.750152588 192.189605713 192.729644775 196.740432739 195.420120239 194.309768677 193.540237427 193.259963989 193.490432739 194.000198364 194.399612427 194.399612427 194.139846802 193.899612427 193.790237427 193.559768677 193.109573364 192.630081177 192.540237427 193.120315552 204.67980957 204.040161133 203.650024414 203.469848633 203.190063477 202.710083008 202.199829102 201.900024414 201.909790039 202.150024414 202.469848633 202.730102539 202.92980957 203.069946289 203.210083008 203.319946289 203.529907227 217.75994873 217.690124512 217.380065918 217.090026855 217.020202637 217.079772949 217.070007324 217.090026855 217.230163574 217.34979248 217.159851074 216.619812012 216.000183105 215.449890137 214.949890137 214.540222168 214.25994873 219.049880981 219.160232544 219.639724731 220.229568481 220.500076294 220.320388794 220.030349731 219.929763794 220.009841919 220.049880981 219.979568481 219.879959106 219.849685669 219.849685669 219.700271606 219.250076294 218.599685669 231.070236206 229.980392456 228.799728394 227.759689331 227.240158081 227.289962769 227.450119019 227.370040894 227.150314331 227.080001831 227.360275269 227.950119019 228.610275269 229.190353394 229.759689331 230.610275269 231.549728394 308.09967041 306.22076416 302.769592285 300.31060791 300.00982666 300.49029541 300.22076416 299.50982666 299.320373535 299.480529785 299.250061035 298.77935791 298.679748535 298.70904541 298.02935791 296.41998291 294.41998291 304.210144043 302.799987793 300.079284668 297.520690918 295.930847168 295.010925293 294.329284668 293.979675293 294.040222168 294.169128418 294.040222168 293.719909668 293.399597168 293.079284668 292.430847168 291.180847168 289.219909668 298.210357666 297.010162354 294.729888916 292.569732666 291.220123291 290.430084229 289.729888916 289.170318604 289.090240479 289.319732666 289.390045166 289.090240479 288.689849854 288.409576416 288.010162354 287.000396729 285.119537354 282.680053711 282.269897461 281.819702148 281.529663086 281.330444336 281.069702148 280.819702148 280.790405273 281.069702148 281.540405273 282.050170898 282.449584961 282.670288086 282.590209961 282.130249023 281.170288086 279.659545898 272.840148926 273.160461426 273.739562988 274.399719238 274.970031738 275.359680176 275.559875488 275.649719238 275.710266113 275.760070801 275.769836426 275.769836426 275.859680176 276.000305176 275.840148926 275.080383301 273.790344238 264.960113525 266.000152588 266.939605713 267.429840088 267.530426025 267.549957275 267.689605713 267.849761963 267.870269775 267.750152588 267.54019165 267.330230713 267.2003479 267.21987915 267.320465088 267.3800354 267.1300354 255.290039062 256.509765625 257.290039062 257.620117188 257.620117188 257.389648438 257.08984375 256.860351562 256.790039062 256.799804688 256.75 256.66015625 256.610351562 256.610351562 256.629882812 256.709960938 256.8203125 240.550231934 241.930114746 242.649841309 242.809997559 242.689880371 242.479919434 242.239685059 242.029724121 241.880310059 241.840270996 241.899841309 242.029724121 242.170349121 242.220153809 242.100036621 241.840270996 241.689880371 232.259979248 233.050018311 233.250213623 233.110076904 232.889862061 232.699920654 232.509979248 232.300018311 232.070037842 231.940155029 232.020233154 232.250213623 232.480194092 232.610076904 232.610076904 232.570037842 232.559783936 221.799789429 221.870101929 221.589828491 221.31980896 221.149887085 220.970199585 220.689926147 220.370101929 220.14012146 220.100082397 220.270004272 220.549789429 220.790023804 220.919906616 221.029769897 221.189926147 221.339828491 207.939956665 207.189956665 206.709976196 206.310073853 205.850112915 205.419937134 205.120132446 205.02003479 205.089859009 205.209976196 205.240249634 205.189956665 205.200210571 205.450210571 205.899917603 206.490249634 207.149917603 194.030426025 191.929840088 190.79019165 190.490386963 190.530426025 190.46987915 190.250152588 190.0597229 190.1300354 190.330230713 190.460113525 190.46987915 190.589996338 190.990386963 191.54019165 192.080230713 192.660308838 196.670120239 195.210159302 194.040237427 193.309768677 193.120315552 193.399612427 193.870315552 194.210159302 194.210159302 193.990432739 193.819534302 193.769729614 193.620315552 193.200393677 192.679885864 192.500198364 192.960159302 204.759887695 204.190063477 203.850219727 203.650024414 203.350219727 202.880004883 202.400024414 202.130004883 202.159790039 202.389770508 202.67980957 202.889770508 202.989868164 203.029907227 203.069946289 203.139770508 203.330200195 217.579772949 217.469909668 217.210144043 217.029968262 217.090026855 217.250183105 217.279968262 217.250183105 217.320007324 217.360046387 217.150085449 216.659851074 216.090026855 215.540222168 214.960144043 214.400085449 213.989929199 218.919998169 219.049880981 219.500076294 220.049880981 220.370193481 220.309646606 220.120193481 220.019607544 220.019607544 219.979568481 219.910232544 219.889724731 219.960037231 219.990310669 219.830154419 219.389724731 218.740310669 231.549728394 230.410079956 229.179611206 228.030197144 227.320236206 227.150314331 227.190353394 227.169845581 227.120040894 227.259689331 227.620040894 228.110275269 228.589767456 229.049728394 229.629806519 230.509689331 231.490158081 307.24029541 305.52935791 302.47076416 300.38092041 300.11920166 300.34967041 299.839904785 299.15045166 299.18951416 299.61920166 299.550842285 299.09967041 298.91998291 298.910217285 298.33013916 296.839904785 294.81060791 303.339050293 302.200378418 299.790222168 297.440612793 295.899597168 294.919128418 294.180847168 293.870300293 294.049987793 294.309753418 294.219909668 293.880065918 293.579284668 293.319519043 292.749206543 291.479675293 289.399597168 297.369537354 296.319732666 294.189849854 292.220123291 291.010162354 290.250396729 289.519927979 289.029693604 289.100006104 289.460357666 289.559967041 289.269927979 288.909576416 288.649810791 288.220123291 287.180084229 285.340240479 282.120483398 281.769897461 281.460327148 281.340209961 281.260131836 281.080444336 280.939819336 281.050170898 281.420288086 281.880249023 282.279663086 282.609741211 282.819702148 282.800170898 282.359741211 281.430053711 279.960327148 272.939758301 273.290344238 273.960266113 274.710266113 275.279602051 275.609680176 275.750305176 275.769836426 275.769836426 275.809875488 275.880187988 275.950500488 276.040344238 276.099914551 275.880187988 275.179992676 274.069641113 265.14956665 266.299957275 267.269683838 267.740386963 267.820465088 267.849761963 268.000152588 268.089996338 267.960113525 267.660308838 267.339996338 267.160308838 267.170074463 267.3097229 267.46987915 267.519683838 267.29019165 255.360351562 256.620117188 257.41015625 257.73046875 257.75 257.58984375 257.280273438 256.959960938 256.780273438 256.75 256.740234375 256.709960938 256.700195312 256.719726562 256.740234375 256.790039062 256.900390625 240.739685059 242.059997559 242.699645996 242.809997559 242.670349121 242.449645996 242.229919434 242.040466309 241.920349121 241.909606934 242.000427246 242.170349121 242.329528809 242.390075684 242.279724121 242.029724121 241.829528809 232.489959717 233.150115967 233.279998779 233.159881592 232.980194092 232.779998779 232.570037842 232.360076904 232.159881592 232.050018311 232.150115967 232.420135498 232.679901123 232.779998779 232.730194092 232.639862061 232.599822998 221.950180054 221.930160522 221.629867554 221.39012146 221.270004272 221.080062866 220.779769897 220.439926147 220.22996521 220.220199585 220.430160522 220.72996521 220.939926147 221.010238647 221.06980896 221.220199585 221.399887085 207.939956665 207.169937134 206.729995728 206.370132446 205.970230103 205.540054321 205.229995728 205.120132446 205.229995728 205.410171509 205.470230103 205.379898071 205.319839478 205.479995728 205.870132446 206.399917603 207.040054321 194.009918213 192.0597229 190.920074463 190.39956665 190.14956665 189.929840088 189.71987915 189.620269775 189.660308838 189.729644775 189.759918213 189.8097229 190.080230713 190.639801025 191.330230713 191.960113525 192.599761963 196.410354614 194.780471802 193.599807739 193.009963989 192.950393677 193.250198364 193.670120239 194.009963989 194.109573364 193.990432739 193.830276489 193.689651489 193.439651489 193.009963989 192.550003052 192.389846802 192.800003052 205.080200195 204.650024414 204.319946289 203.989868164 203.580200195 203.060180664 202.600219727 202.33996582 202.330200195 202.529907227 202.819946289 203.049926758 203.120239258 203.049926758 202.960083008 202.949829102 203.100219727 217.049987793 216.869812012 216.679870605 216.67010498 216.980163574 217.389831543 217.59979248 217.630065918 217.610046387 217.520202637 217.219909668 216.779968262 216.340026855 215.860046387 215.199890137 214.409851074 213.790222168 219.169998169 219.320388794 219.679763794 220.070388794 220.179763794 220.000076294 219.780349731 219.769607544 219.879959106 219.939529419 219.919998169 219.900466919 219.919998169 219.889724731 219.729568481 219.379959106 218.830154419 231.539962769 230.419845581 229.200119019 228.110275269 227.520431519 227.480392456 227.580001831 227.469650269 227.259689331 227.259689331 227.570236206 228.089767456 228.679611206 229.259689331 229.870040894 230.589767456 231.410079956 306.589904785 305.089904785 302.45904541 300.59967041 300.140686035 299.99029541 299.38092041 298.949279785 299.300842285 299.820373535 299.68951416 299.179748535 298.91998291 298.88092041 298.38092041 297.16998291 295.38092041 302.610534668 301.540222168 299.180847168 296.930847168 295.510925293 294.680847168 294.139831543 294.010925293 294.290222168 294.530456543 294.399597168 293.999206543 293.620300293 293.290222168 292.770690918 291.690612793 289.819519043 296.369537354 295.449615479 293.519927979 291.720123291 290.630279541 289.920318604 289.309967041 289.040435791 289.290435791 289.699615479 289.739654541 289.420318604 289.069732666 288.769927979 288.250396729 287.220123291 285.559967041 281.590209961 281.349975586 281.250366211 281.309936523 281.279663086 281.069702148 280.939819336 281.149780273 281.620483398 282.069702148 282.359741211 282.569702148 282.790405273 282.859741211 282.540405273 281.670288086 280.239624023 273.120422363 273.510070801 274.300109863 275.149719238 275.729797363 275.970031738 275.979797363 275.899719238 275.830383301 275.849914551 275.939758301 276.069641113 276.160461426 276.130187988 275.819641113 275.170227051 274.239562988 265.460113525 266.639801025 267.599761963 268.04019165 268.109527588 268.1300354 268.179840088 268.14956665 267.889801025 267.530426025 267.2003479 267.0597229 267.170074463 267.439605713 267.679840088 267.740386963 267.500152588 255.48046875 256.799804688 257.58984375 257.889648438 257.900390625 257.740234375 257.389648438 257.009765625 256.780273438 256.780273438 256.83984375 256.879882812 256.889648438 256.900390625 256.900390625 256.91015625 256.98046875 241.019958496 242.239685059 242.750427246 242.769958496 242.619567871 242.449645996 242.300231934 242.149841309 242.059997559 242.069763184 242.199645996 242.390075684 242.529724121 242.510192871 242.369567871 242.130310059 241.930114746 232.750213623 233.270233154 233.300018311 233.199920654 233.070037842 232.880096436 232.659881592 232.449920654 232.300018311 232.210174561 232.300018311 232.579803467 232.820037842 232.869842529 232.770233154 232.650115967 232.619842529 222.060043335 221.970199585 221.660140991 221.439926147 221.310043335 221.080062866 220.740219116 220.430160522 220.299789429 220.370101929 220.609848022 220.870101929 221.020004272 221.020004272 221.049789429 221.209945679 221.439926147 207.93019104 207.240249634 206.839859009 206.479995728 206.040054321 205.580093384 205.259780884 205.160171509 205.310073853 205.560073853 205.709976196 205.669937134 205.589859009 205.669937134 205.950210571 206.379898071 206.959976196 194.000152588 192.089996338 190.889801025 190.189605713 189.780426025 189.530426025 189.429840088 189.359527588 189.240386963 189.080230713 188.990386963 189.1300354 189.599761963 190.330230713 191.14956665 191.8800354 192.580230713 196.139846802 194.429885864 193.340042114 192.899612427 192.899612427 193.130081177 193.460159302 193.819534302 194.040237427 194.019729614 193.790237427 193.450393677 193.050003052 192.630081177 192.300003052 192.280471802 192.700393677 205.420043945 205.060180664 204.67980957 204.239868164 203.730102539 203.219848633 202.799926758 202.540161133 202.449829102 202.580200195 202.889770508 203.190063477 203.270141602 203.109985352 202.889770508 202.759887695 202.850219727 216.67010498 216.480163574 216.290222168 216.310241699 216.730163574 217.320007324 217.750183105 217.940124512 217.969909668 217.820007324 217.429870605 216.960144043 216.579772949 216.190124512 215.500183105 214.560241699 213.739929199 219.620193481 219.809646606 220.129959106 220.389724731 220.259841919 219.799880981 219.429763794 219.410232544 219.639724731 219.830154419 219.849685669 219.799880981 219.729568481 219.629959106 219.479568481 219.250076294 218.839920044 231.009689331 229.980392456 228.740158081 227.740158081 227.469650269 227.870040894 228.230392456 228.030197144 227.549728394 227.310470581 227.530197144 228.110275269 228.870040894 229.629806519 230.249923706 230.740158081 231.289962769 306.269592285 304.800842285 302.38092041 300.59967041 299.91998291 299.539123535 299.09967041 299.13092041 299.72076416 300.08013916 299.70904541 299.109436035 298.86920166 298.750061035 298.269592285 297.31060791 295.84967041 302.149597168 300.770690918 298.239440918 296.049987793 294.899597168 294.450378418 294.280456543 294.380065918 294.620300293 294.680847168 294.389831543 293.950378418 293.510925293 293.049987793 292.530456543 291.749206543 290.319519043 295.559967041 294.590240479 292.729888916 291.069732666 290.100006104 289.580474854 289.260162354 289.269927979 289.619537354 289.869537354 289.710357666 289.359771729 289.090240479 288.790435791 288.189849854 287.199615479 285.779693604 281.199584961 281.109741211 281.239624023 281.449584961 281.409545898 281.090209961 280.870483398 281.090209961 281.609741211 282.080444336 282.300170898 282.460327148 282.680053711 282.849975586 282.670288086 281.899780273 280.529663086 273.260070801 273.790344238 274.720031738 275.660461426 276.200500488 276.300109863 276.160461426 275.970031738 275.849914551 275.870422363 276.010070801 276.179992676 276.279602051 276.200500488 275.830383301 275.189758301 274.389953613 265.71987915 266.889801025 267.799957275 268.240386963 268.3097229 268.259918213 268.189605713 268.030426025 267.759918213 267.460113525 267.210113525 267.099761963 267.229644775 267.570465088 267.89956665 267.990386963 267.740386963 255.669921875 257.049804688 257.799804688 258.009765625 257.959960938 257.75 257.4296875 257.080078125 256.900390625 256.959960938 257.08984375 257.139648438 257.129882812 257.110351562 257.0703125 257.030273438 257.040039062 241.340270996 242.420349121 242.790466309 242.739685059 242.609802246 242.489685059 242.399841309 242.309997559 242.239685059 242.260192871 242.420349121 242.630310059 242.710388184 242.600036621 242.390075684 242.189880371 242.019958496 233.020233154 233.400115967 233.340057373 233.219940186 233.110076904 232.920135498 232.699920654 232.539764404 232.449920654 232.440155029 232.539764404 232.770233154 232.940155029 232.909881592 232.750213623 232.639862061 232.630096436 222.149887085 222.029769897 221.72996521 221.499984741 221.310043335 220.999984741 220.620101929 220.379867554 220.359848022 220.529769897 220.779769897 220.999984741 221.089828491 221.040023804 221.029769897 221.209945679 221.470199585 207.93019104 207.319839478 206.939956665 206.540054321 206.049819946 205.589859009 205.290054321 205.209976196 205.35987854 205.649917603 205.870132446 205.919937134 205.85987854 205.879898071 206.040054321 206.370132446 206.919937134 193.79019165 191.8097229 190.599761963 189.920074463 189.570465088 189.460113525 189.429840088 189.3097229 188.96987915 188.54019165 188.330230713 188.5597229 189.2003479 190.099761963 191.019683838 191.820465088 192.549957275 195.979690552 194.370315552 193.410354614 193.009963989 192.920120239 192.979690552 193.219924927 193.590042114 193.899612427 193.929885864 193.599807739 193.080276489 192.559768677 192.179885864 192.019729614 192.160354614 192.649612427 205.509887695 205.069946289 204.620239258 204.170043945 203.730102539 203.350219727 203.040161133 202.799926758 202.650024414 202.699829102 203.009887695 203.370239258 203.460083008 203.239868164 202.870239258 202.600219727 202.580200195 216.860046387 216.730163574 216.469909668 216.369812012 216.690124512 217.279968262 217.790222168 218.079772949 218.190124512 218.060241699 217.619812012 217.060241699 216.630065918 216.25994873 215.639831543 214.710144043 213.810241699 219.870193481 220.030349731 220.450271606 220.729568481 220.479568481 219.790115356 219.250076294 219.210037231 219.490310669 219.700271606 219.729568481 219.669998169 219.620193481 219.509841919 219.349685669 219.129959106 218.790115356 230.480392456 229.580001831 228.219650269 227.179611206 227.240158081 228.139572144 228.759689331 228.490158081 227.770431519 227.419845581 227.669845581 228.249923706 228.980392456 229.789962769 230.440353394 230.849533081 231.219650269 305.66998291 303.980529785 301.68951416 300.160217285 299.570373535 299.269592285 299.15045166 299.570373535 300.250061035 300.33013916 299.679748535 299.050842285 298.86920166 298.679748535 298.109436035 297.25982666 296.09967041 301.499206543 299.669128418 297.069519043 295.200378418 294.520690918 294.489440918 294.620300293 294.799987793 294.889831543 294.659362793 294.219909668 293.790222168 293.360534668 292.799987793 292.229675293 291.669128418 290.639831543 294.850006104 293.670318604 291.819732666 290.319732666 289.619537354 289.430084229 289.449615479 289.680084229 289.930084229 289.869537354 289.449615479 289.090240479 288.960357666 288.739654541 288.119537354 287.199615479 286.040435791 280.930053711 281.000366211 281.300170898 281.620483398 281.590209961 281.210327148 280.920288086 281.059936523 281.540405273 281.989624023 282.220092773 282.380249023 282.609741211 282.830444336 282.739624023 282.099975586 280.819702148 273.399719238 274.099914551 275.149719238 276.069641113 276.479797363 276.420227051 276.170227051 275.920227051 275.809875488 275.859680176 276.050109863 276.269836426 276.420227051 276.349914551 275.989562988 275.349914551 274.580383301 265.910308838 267.070465088 267.929840088 268.339996338 268.359527588 268.229644775 268.049957275 267.859527588 267.689605713 267.549957275 267.410308838 267.3097229 267.39956665 267.71987915 268.080230713 268.210113525 267.939605713 255.950195312 257.309570312 257.98046875 258.059570312 257.889648438 257.650390625 257.389648438 257.16015625 257.099609375 257.219726562 257.360351562 257.379882812 257.33984375 257.26953125 257.200195312 257.110351562 257.0703125 241.689880371 242.609802246 242.859802246 242.779724121 242.649841309 242.550231934 242.479919434 242.420349121 242.380310059 242.430114746 242.600036621 242.819763184 242.850036621 242.649841309 242.390075684 242.220153809 242.100036621 233.309783936 233.550018311 233.400115967 233.239959717 233.130096436 232.929901123 232.699920654 232.590057373 232.599822998 232.679901123 232.809783936 232.989959717 233.059783936 232.929901123 232.719940186 232.630096436 232.650115967 222.240219116 222.06980896 221.790023804 221.549789429 221.299789429 220.919906616 220.549789429 220.370101929 220.439926147 220.669906616 220.930160522 221.129867554 221.189926147 221.109848022 221.06980896 221.22996521 221.520004272 207.879898071 207.299819946 206.910171509 206.450210571 205.970230103 205.60987854 205.399917603 205.330093384 205.43019104 205.669937134 205.919937134 206.040054321 206.02003479 206.02003479 206.129898071 206.410171509 206.910171509 193.320465088 191.349761963 190.280426025 189.8097229 189.609527588 189.549957275 189.500152588 189.269683838 188.769683838 188.179840088 187.889801025 188.14956665 188.910308838 189.920074463 190.920074463 191.780426025 192.54019165 195.939651489 194.450393677 193.530471802 193.050003052 192.800003052 192.750198364 192.960159302 193.389846802 193.750198364 193.769729614 193.359573364 192.750198364 192.170120239 191.809768677 191.729690552 191.960159302 192.509963989 205.319946289 204.730102539 204.270141602 203.940063477 203.659790039 203.420043945 203.219848633 203.040161133 202.889770508 202.92980957 203.219848633 203.569946289 203.639770508 203.350219727 202.870239258 202.469848633 202.319946289 217.42010498 217.320007324 216.989929199 216.770202637 216.989929199 217.480163574 217.880065918 218.090026855 218.17010498 218.079772949 217.67010498 217.049987793 216.500183105 216.090026855 215.579772949 214.799987793 213.940124512 219.679763794 219.799880981 220.320388794 220.689529419 220.410232544 219.679763794 219.139724731 219.179763794 219.519607544 219.710037231 219.679763794 219.660232544 219.689529419 219.639724731 219.389724731 219.049880981 218.650466919 230.499923706 229.669845581 228.150314331 227.030197144 227.320236206 228.520431519 229.160079956 228.620040894 227.679611206 227.389572144 227.789962769 228.360275269 228.889572144 229.570236206 230.339767456 230.919845581 231.289962769 304.18951416 302.38092041 300.50982666 299.59967041 299.449279785 299.36920166 299.43951416 300.019592285 300.640686035 300.49029541 299.679748535 299.06060791 298.910217285 298.65045166 297.95904541 297.15045166 296.20904541 300.180847168 298.159362793 295.940612793 294.749206543 294.630065918 294.819519043 294.989440918 295.120300293 295.059753418 294.649597168 294.089050293 293.690612793 293.290222168 292.659362793 291.979675293 291.479675293 290.700378418 293.869537354 292.510162354 290.850006104 289.750396729 289.449615479 289.580474854 289.809967041 290.040435791 290.109771729 289.779693604 289.210357666 288.859771729 288.819732666 288.609771729 287.970123291 287.149810791 286.250396729 280.760131836 280.989624023 281.380249023 281.720092773 281.720092773 281.390014648 281.099975586 281.149780273 281.479858398 281.830444336 282.080444336 282.300170898 282.590209961 282.849975586 282.830444336 282.279663086 281.130249023 273.670227051 274.529602051 275.550109863 276.300109863 276.510070801 276.349914551 276.069641113 275.849914551 275.760070801 275.819641113 276.040344238 276.309875488 276.510070801 276.529602051 276.220031738 275.590148926 274.790344238 266.139801025 267.280426025 268.070465088 268.3800354 268.320465088 268.089996338 267.8800354 267.750152588 267.710113525 267.740386963 267.710113525 267.609527588 267.620269775 267.8800354 268.229644775 268.349761963 268.070465088 256.290039062 257.580078125 258.120117188 258.059570312 257.76953125 257.51953125 257.3203125 257.219726562 257.25 257.389648438 257.509765625 257.51953125 257.459960938 257.400390625 257.3203125 257.200195312 257.099609375 242.100036621 242.829528809 242.970153809 242.880310059 242.760192871 242.649841309 242.550231934 242.500427246 242.489685059 242.550231934 242.739685059 242.949645996 242.960388184 242.699645996 242.369567871 242.210388184 242.140075684 233.590057373 233.699920654 233.460174561 233.300018311 233.190155029 232.980194092 232.739959717 232.650115967 232.730194092 232.869842529 233.029998779 233.190155029 233.199920654 233.000213623 232.730194092 232.630096436 232.679901123 222.290023804 222.06980896 221.779769897 221.540023804 221.260238647 220.89012146 220.560043335 220.419906616 220.510238647 220.749984741 221.010238647 221.209945679 221.270004272 221.200180054 221.129867554 221.270004272 221.560043335 207.77003479 207.189956665 206.750015259 206.279800415 205.870132446 205.640151978 205.549819946 205.490249634 205.500015259 205.660171509 205.890151978 206.02003479 206.080093384 206.120132446 206.240249634 206.479995728 206.93019104 192.750152588 190.990386963 190.21987915 189.960113525 189.780426025 189.5597229 189.339996338 189.049957275 188.570465088 188.009918213 187.710113525 187.960113525 188.740386963 189.79019165 190.849761963 191.769683838 192.570465088 195.830276489 194.370315552 193.410354614 192.800003052 192.469924927 192.460159302 192.800003052 193.330276489 193.700393677 193.670120239 193.200393677 192.530471802 191.929885864 191.559768677 191.469924927 191.710159302 192.280471802 205.130004883 204.480102539 204.08996582 203.870239258 203.670043945 203.469848633 203.310180664 203.159790039 203.060180664 203.109985352 203.359985352 203.659790039 203.710083008 203.370239258 202.830200195 202.310180664 202.049926758 217.779968262 217.590026855 217.199890137 216.989929199 217.230163574 217.699890137 217.989929199 218.020202637 217.980163574 217.909851074 217.630065918 217.070007324 216.449890137 215.949890137 215.480163574 214.84979248 214.060241699 219.250076294 219.400466919 219.969802856 220.339920044 220.049880981 219.370193481 219.009841919 219.250076294 219.679763794 219.820388794 219.710037231 219.689529419 219.820388794 219.799880981 219.479568481 218.979568481 218.479568481 230.969650269 230.089767456 228.450119019 227.370040894 227.810470581 229.060470581 229.469650269 228.509689331 227.349533081 227.179611206 227.810470581 228.389572144 228.709884644 229.259689331 230.169845581 230.999923706 231.490158081 302.019592285 300.550842285 299.50982666 299.429748535 299.730529785 299.75982666 299.77935791 300.25982666 300.800842285 300.59967041 299.789123535 299.16998291 298.949279785 298.589904785 297.839904785 297.09967041 296.339904785 298.169128418 296.430847168 295.030456543 294.680847168 294.940612793 295.100769043 295.120300293 295.210144043 295.180847168 294.780456543 294.190612793 293.739440918 293.299987793 292.589050293 291.839050293 291.329284668 290.690612793 292.380279541 291.149810791 290.010162354 289.489654541 289.580474854 289.859771729 290.050201416 290.140045166 290.090240479 289.760162354 289.260162354 288.909576416 288.739654541 288.390045166 287.689849854 286.989654541 286.340240479 280.760131836 281.149780273 281.550170898 281.809936523 281.809936523 281.580444336 281.359741211 281.309936523 281.430053711 281.609741211 281.819702148 282.140014648 282.550170898 282.920288086 283.000366211 282.559936523 281.500366211 274.149719238 275.080383301 275.910461426 276.340148926 276.349914551 276.170227051 275.970031738 275.830383301 275.760070801 275.830383301 276.040344238 276.290344238 276.519836426 276.599914551 276.420227051 275.849914551 275.029602051 266.519683838 267.620269775 268.269683838 268.429840088 268.21987915 267.920074463 267.729644775 267.679840088 267.769683838 267.889801025 267.939605713 267.859527588 267.839996338 268.030426025 268.349761963 268.460113525 268.139801025 256.6796875 257.830078125 258.23046875 258.080078125 257.75 257.469726562 257.290039062 257.23046875 257.26953125 257.400390625 257.490234375 257.51953125 257.509765625 257.5 257.450195312 257.3203125 257.169921875 242.500427246 243.050231934 243.069763184 242.989685059 242.920349121 242.800231934 242.670349121 242.600036621 242.609802246 242.670349121 242.840270996 243.050231934 243.059997559 242.750427246 242.340270996 242.130310059 242.100036621 233.820037842 233.779998779 233.520233154 233.389862061 233.320037842 233.139862061 232.869842529 232.759979248 232.849822998 232.989959717 233.159881592 233.309783936 233.329803467 233.099822998 232.770233154 232.630096436 232.690155029 222.310043335 222.049789429 221.749984741 221.510238647 221.240219116 220.919906616 220.620101929 220.499984741 220.560043335 220.749984741 220.97996521 221.180160522 221.290023804 221.249984741 221.169906616 221.270004272 221.560043335 207.640151978 207.080093384 206.60987854 206.140151978 205.799819946 205.68019104 205.649917603 205.569839478 205.540054321 205.640151978 205.830093384 205.959976196 206.069839478 206.220230103 206.410171509 206.620132446 206.979995728 192.339996338 190.89956665 190.420074463 190.240386963 189.870269775 189.349761963 188.929840088 188.670074463 188.3800354 187.990386963 187.780426025 188.000152588 188.7003479 189.7003479 190.780426025 191.769683838 192.6300354 195.590042114 194.080276489 193.050003052 192.399612427 192.160354614 192.319534302 192.819534302 193.399612427 193.710159302 193.569534302 193.050003052 192.380081177 191.790237427 191.410354614 191.300003052 191.519729614 192.080276489 205.170043945 204.600219727 204.279907227 204.069946289 203.83996582 203.549926758 203.33996582 203.210083008 203.150024414 203.17980957 203.380004883 203.609985352 203.639770508 203.290161133 202.699829102 202.130004883 201.790161133 217.610046387 217.250183105 216.829772949 216.699890137 217.040222168 217.590026855 217.900085449 217.880065918 217.770202637 217.710144043 217.579772949 217.17010498 216.560241699 215.969909668 215.449890137 214.869812012 214.079772949 219.099685669 219.360427856 219.910232544 220.179763794 219.830154419 219.219802856 219.030349731 219.400466919 219.830154419 219.879959106 219.679763794 219.639724731 219.790115356 219.790115356 219.460037231 218.929763794 218.370193481 231.259689331 230.209884644 228.620040894 227.669845581 228.179611206 229.289962769 229.410079956 228.219650269 227.049728394 227.049728394 227.870040894 228.469650269 228.700119019 229.179611206 230.139572144 231.089767456 231.629806519 299.949279785 299.289123535 299.15045166 299.65045166 300.13092041 300.11920166 300.00982666 300.34967041 300.81060791 300.66998291 299.93951416 299.300842285 298.93951416 298.480529785 297.72076416 297.06060791 296.480529785 295.940612793 294.889831543 294.419128418 294.669128418 295.020690918 295.010925293 294.919128418 295.059753418 295.219909668 294.969909668 294.409362793 293.880065918 293.299987793 292.510925293 291.719909668 291.249206543 290.749206543 290.659576416 289.899810791 289.420318604 289.439849854 289.750396729 289.949615479 289.939849854 289.899810791 289.920318604 289.840240479 289.540435791 289.149810791 288.750396729 288.159576416 287.399810791 286.809967041 286.369537354 280.979858398 281.510131836 281.849975586 281.960327148 281.890014648 281.739624023 281.609741211 281.500366211 281.420288086 281.390014648 281.550170898 281.949584961 282.510131836 283.019897461 283.229858398 282.909545898 281.949584961 274.769836426 275.670227051 276.229797363 276.330383301 276.189758301 276.029602051 275.960266113 275.889953613 275.830383301 275.880187988 276.040344238 276.250305176 276.439758301 276.590148926 276.540344238 276.120422363 275.330383301 267.049957275 268.030426025 268.500152588 268.460113525 268.1300354 267.79019165 267.6300354 267.639801025 267.750152588 267.889801025 267.979644775 267.96987915 267.979644775 268.139801025 268.439605713 268.549957275 268.2003479 257.080078125 258.0703125 258.360351562 258.1796875 257.83984375 257.549804688 257.33984375 257.219726562 257.219726562 257.299804688 257.389648438 257.459960938 257.530273438 257.58984375 257.5703125 257.450195312 257.259765625 242.859802246 243.220153809 243.159606934 243.109802246 243.119567871 243.029724121 242.859802246 242.760192871 242.739685059 242.779724121 242.909606934 243.100036621 243.130310059 242.790466309 242.290466309 242.000427246 242.010192871 233.969940186 233.829803467 233.559783936 233.520233154 233.520233154 233.349822998 233.070037842 232.929901123 232.969940186 233.079803467 233.210174561 233.380096436 233.440155029 233.219940186 232.829803467 232.599822998 232.639862061 222.310043335 222.020004272 221.760238647 221.549789429 221.310043335 221.020004272 220.749984741 220.600082397 220.620101929 220.760238647 220.939926147 221.120101929 221.249984741 221.240219116 221.180160522 221.249984741 221.529769897 207.540054321 207.049819946 206.60987854 206.169937134 205.870132446 205.77003479 205.700210571 205.580093384 205.540054321 205.640151978 205.799819946 205.910171509 206.049819946 206.319839478 206.629898071 206.85987854 207.100112915 192.189605713 190.979644775 190.570465088 190.259918213 189.64956665 188.89956665 188.39956665 188.229644775 188.14956665 188.009918213 187.920074463 188.160308838 188.79019165 189.7003479 190.7003479 191.71987915 192.689605713 195.290237427 193.790237427 192.790237427 192.229690552 192.099807739 192.399612427 192.950393677 193.460159302 193.639846802 193.399612427 192.840042114 192.179885864 191.620315552 191.280471802 191.210159302 191.429885864 191.969924927 205.380004883 204.889770508 204.580200195 204.319946289 204.009887695 203.67980957 203.440063477 203.319946289 203.259887695 203.270141602 203.400024414 203.580200195 203.549926758 203.17980957 202.540161133 201.900024414 201.520141602 217.17010498 216.719909668 216.340026855 216.25994873 216.590026855 217.17010498 217.630065918 217.75994873 217.679870605 217.619812012 217.520202637 217.199890137 216.630065918 216.00994873 215.429870605 214.799987793 213.969909668 219.400466919 219.780349731 220.269607544 220.429763794 220.070388794 219.540115356 219.370193481 219.639724731 219.910232544 219.839920044 219.620193481 219.580154419 219.700271606 219.669998169 219.370193481 218.919998169 218.419998169 230.879806519 229.719650269 228.339767456 227.580001831 227.969650269 228.780197144 228.770431519 227.789962769 226.940353394 227.139572144 227.969650269 228.560470581 228.830001831 229.349533081 230.299728394 231.150314331 231.580001831 298.63092041 298.84967041 299.33013916 299.949279785 300.31060791 300.250061035 300.160217285 300.410217285 300.74029541 300.609436035 299.99029541 299.34967041 298.91998291 298.36920166 297.609436035 296.97076416 296.49029541 294.130065918 293.909362793 294.110534668 294.559753418 294.790222168 294.669128418 294.610534668 294.860534668 295.149597168 295.049987793 294.569519043 293.969909668 293.290222168 292.419128418 291.620300293 291.159362793 290.799987793 289.239654541 289.069732666 289.149810791 289.449615479 289.750396729 289.819732666 289.659576416 289.600006104 289.779693604 289.970123291 289.830474854 289.359771729 288.729888916 288.019927979 287.279693604 286.750396729 286.399810791 281.309936523 281.899780273 282.140014648 282.069702148 281.909545898 281.830444336 281.819702148 281.729858398 281.529663086 281.380249023 281.489624023 281.939819336 282.569702148 283.130249023 283.390014648 283.159545898 282.319702148 275.410461426 276.229797363 276.540344238 276.410461426 276.139953613 276.000305176 275.979797363 275.939758301 275.870422363 275.870422363 275.989562988 276.160461426 276.340148926 276.540344238 276.630187988 276.359680176 275.649719238 267.599761963 268.429840088 268.689605713 268.479644775 268.070465088 267.710113525 267.570465088 267.589996338 267.660308838 267.769683838 267.889801025 267.96987915 268.030426025 268.229644775 268.530426025 268.660308838 268.29019165 257.469726562 258.280273438 258.469726562 258.299804688 257.990234375 257.700195312 257.440429688 257.259765625 257.190429688 257.219726562 257.330078125 257.459960938 257.580078125 257.639648438 257.639648438 257.530273438 257.33984375 243.140075684 243.350036621 243.229919434 243.239685059 243.350036621 243.300231934 243.100036621 242.939880371 242.880310059 242.869567871 242.970153809 243.130310059 243.149841309 242.790466309 242.229919434 241.859802246 241.880310059 234.070037842 233.849822998 233.630096436 233.679901123 233.739959717 233.590057373 233.309783936 233.159881592 233.150115967 233.199920654 233.289764404 233.449920654 233.550018311 233.320037842 232.860076904 232.520233154 232.539764404 222.290023804 222.040023804 221.859848022 221.700180054 221.490219116 221.220199585 220.939926147 220.760238647 220.760238647 220.870101929 221.010238647 221.129867554 221.22996521 221.260238647 221.22996521 221.279769897 221.520004272 207.470230103 207.089859009 206.729995728 206.370132446 206.10987854 205.970230103 205.799819946 205.620132446 205.589859009 205.729995728 205.85987854 205.910171509 206.060073853 206.419937134 206.839859009 207.10987854 207.290054321 192.189605713 191.009918213 190.420074463 189.870269775 189.139801025 188.370269775 187.929840088 187.820465088 187.849761963 187.849761963 187.929840088 188.269683838 188.89956665 189.710113525 190.639801025 191.639801025 192.689605713 195.050003052 193.630081177 192.750198364 192.300003052 192.219924927 192.500198364 192.960159302 193.349807739 193.429885864 193.149612427 192.590042114 191.960159302 191.450393677 191.179885864 191.179885864 191.420120239 191.920120239 205.529907227 205.020141602 204.639770508 204.33996582 204.069946289 203.819946289 203.650024414 203.549926758 203.480102539 203.449829102 203.540161133 203.639770508 203.549926758 203.08996582 202.370239258 201.670043945 201.259887695 216.880065918 216.500183105 216.250183105 216.159851074 216.329772949 216.820007324 217.369812012 217.719909668 217.770202637 217.639831543 217.409851074 217.040222168 216.540222168 215.960144043 215.369812012 214.679870605 213.75994873 219.900466919 220.250076294 220.610427856 220.750076294 220.509841919 220.099685669 219.879959106 219.889724731 219.910232544 219.790115356 219.679763794 219.710037231 219.750076294 219.620193481 219.299880981 218.969802856 218.549880981 229.980392456 228.980392456 227.980392456 227.370040894 227.440353394 227.820236206 227.830001831 227.349533081 227.020431519 227.289962769 227.900314331 228.370040894 228.780197144 229.499923706 230.450119019 231.160079956 231.440353394 298.140686035 298.95904541 299.63092041 300.050842285 300.24029541 300.25982666 300.320373535 300.480529785 300.59967041 300.40045166 299.88092041 299.339904785 298.910217285 298.34967041 297.570373535 296.84967041 296.34967041 293.139831543 293.569519043 294.079284668 294.440612793 294.520690918 294.460144043 294.530456543 294.799987793 295.020690918 294.969909668 294.589050293 294.020690918 293.280456543 292.399597168 291.559753418 291.030456543 290.669128418 288.470123291 288.760162354 289.130279541 289.460357666 289.670318604 289.689849854 289.580474854 289.590240479 289.859771729 290.140045166 289.989654541 289.390045166 288.659576416 287.970123291 287.330474854 286.819732666 286.449615479 281.620483398 282.159545898 282.269897461 282.059936523 281.849975586 281.840209961 281.960327148 281.960327148 281.769897461 281.590209961 281.720092773 282.199584961 282.800170898 283.269897461 283.439819336 283.210327148 282.489624023 275.960266113 276.689758301 276.849914551 276.590148926 276.260070801 276.090148926 276.029602051 275.960266113 275.830383301 275.790344238 275.880187988 276.050109863 276.279602051 276.550109863 276.750305176 276.569641113 275.920227051 268.080230713 268.769683838 268.849761963 268.509918213 268.030426025 267.679840088 267.530426025 267.530426025 267.570465088 267.660308838 267.799957275 267.9503479 268.099761963 268.349761963 268.670074463 268.799957275 268.420074463 257.799804688 258.459960938 258.549804688 258.379882812 258.120117188 257.849609375 257.559570312 257.309570312 257.1796875 257.219726562 257.379882812 257.559570312 257.669921875 257.690429688 257.629882812 257.530273438 257.349609375 243.329528809 243.439880371 243.329528809 243.430114746 243.609802246 243.590270996 243.359802246 243.140075684 243.050231934 243.019958496 243.069763184 243.170349121 243.140075684 242.750427246 242.159606934 241.769958496 241.769958496 234.079803467 233.860076904 233.750213623 233.869842529 233.949920654 233.789764404 233.550018311 233.409881592 233.400115967 233.400115967 233.429901123 233.559783936 233.619842529 233.369842529 232.820037842 232.409881592 232.449920654 222.220199585 222.089828491 222.010238647 221.910140991 221.709945679 221.450180054 221.169906616 220.97996521 220.970199585 221.089828491 221.189926147 221.260238647 221.299789429 221.339828491 221.359848022 221.410140991 221.609848022 207.43019104 207.149917603 206.890151978 206.620132446 206.43019104 206.240249634 205.970230103 205.720230103 205.700210571 205.879898071 206.000015259 206.000015259 206.129898071 206.509780884 207.000015259 207.319839478 207.490249634 192.139801025 190.859527588 190.000152588 189.259918213 188.54019165 187.9503479 187.620269775 187.509918213 187.490386963 187.54019165 187.769683838 188.250152588 188.939605713 189.750152588 190.609527588 191.589996338 192.679840088 194.840042114 193.559768677 192.780471802 192.330276489 192.179885864 192.330276489 192.700393677 193.030471802 193.099807739 192.840042114 192.340042114 191.759963989 191.300003052 191.080276489 191.120315552 191.370315552 191.819534302 205.540161133 204.92980957 204.480102539 204.210083008 204.080200195 203.989868164 203.880004883 203.770141602 203.659790039 203.630004883 203.699829102 203.75012207 203.549926758 202.989868164 202.190063477 201.42980957 200.989868164 216.889831543 216.650085449 216.529968262 216.400085449 216.369812012 216.639831543 217.179870605 217.679870605 217.860046387 217.67010498 217.279968262 216.810241699 216.329772949 215.860046387 215.320007324 214.579772949 213.570007324 220.219802856 220.360427856 220.589920044 220.750076294 220.719802856 220.479568481 220.210037231 220.000076294 219.870193481 219.809646606 219.889724731 220.019607544 219.979568481 219.679763794 219.299880981 218.990310669 218.610427856 229.219650269 228.570236206 227.980392456 227.450119019 227.150314331 227.129806519 227.190353394 227.169845581 227.169845581 227.299728394 227.530197144 227.879806519 228.490158081 229.459884644 230.509689331 231.179611206 231.410079956 298.179748535 299.18951416 299.820373535 300.050842285 300.140686035 300.31060791 300.480529785 300.519592285 300.410217285 300.16998291 299.800842285 299.359436035 298.91998291 298.36920166 297.61920166 296.820373535 296.199279785 292.919128418 293.659362793 294.190612793 294.399597168 294.430847168 294.530456543 294.700378418 294.850769043 294.919128418 294.829284668 294.540222168 293.999206543 293.249206543 292.399597168 291.579284668 290.909362793 290.409362793 288.260162354 288.790435791 289.239654541 289.489654541 289.630279541 289.710357666 289.720123291 289.809967041 290.109771729 290.319732666 290.029693604 289.279693604 288.489654541 287.899810791 287.359771729 286.850006104 286.420318604 281.870483398 282.309936523 282.300170898 282.010131836 281.790405273 281.819702148 282.019897461 282.109741211 281.979858398 281.880249023 282.080444336 282.599975586 283.140014648 283.430053711 283.439819336 283.140014648 282.500366211 276.429992676 277.050109863 277.130187988 276.849914551 276.489562988 276.239562988 276.109680176 275.979797363 275.819641113 275.720031738 275.800109863 276.010070801 276.330383301 276.689758301 276.920227051 276.769836426 276.120422363 268.46987915 269.0597229 269.019683838 268.589996338 268.049957275 267.670074463 267.519683838 267.519683838 267.549957275 267.64956665 267.820465088 268.019683838 268.21987915 268.490386963 268.820465088 268.920074463 268.519683838 258.0703125 258.580078125 258.58984375 258.4296875 258.240234375 257.990234375 257.690429688 257.379882812 257.209960938 257.259765625 257.48046875 257.709960938 257.790039062 257.719726562 257.580078125 257.450195312 257.3203125 243.449645996 243.500427246 243.449645996 243.630310059 243.859802246 243.840270996 243.590270996 243.340270996 243.250427246 243.250427246 243.269958496 243.269958496 243.119567871 242.699645996 242.130310059 241.750427246 241.720153809 234.009979248 233.869842529 233.889862061 234.059783936 234.119842529 233.969940186 233.759979248 233.659881592 233.650115967 233.619842529 233.610076904 233.670135498 233.670135498 233.340057373 232.750213623 232.320037842 232.380096436 222.160140991 222.14012146 222.160140991 222.080062866 221.89012146 221.64012146 221.39012146 221.200180054 221.189926147 221.310043335 221.410140991 221.419906616 221.430160522 221.490219116 221.560043335 221.64012146 221.790023804 207.439956665 207.240249634 207.029800415 206.85987854 206.740249634 206.52003479 206.160171509 205.839859009 205.810073853 205.990249634 206.120132446 206.120132446 206.229995728 206.600112915 207.089859009 207.450210571 207.68019104 191.979644775 190.609527588 189.580230713 188.759918213 188.160308838 187.759918213 187.549957275 187.429840088 187.339996338 187.3800354 187.64956665 188.21987915 188.979644775 189.799957275 190.679840088 191.660308838 192.729644775 194.630081177 193.410354614 192.639846802 192.099807739 191.790237427 191.840042114 192.179885864 192.519729614 192.630081177 192.410354614 191.969924927 191.469924927 191.090042114 190.939651489 191.009963989 191.250198364 191.679885864 205.509887695 204.830200195 204.370239258 204.170043945 204.159790039 204.139770508 204.040161133 203.870239258 203.75012207 203.730102539 203.790161133 203.770141602 203.469848633 202.830200195 201.980102539 201.210083008 200.730102539 217.049987793 216.840026855 216.750183105 216.590026855 216.440124512 216.50994873 216.909851074 217.42010498 217.690124512 217.540222168 217.09979248 216.59979248 216.17010498 215.799987793 215.290222168 214.50994873 213.429870605 220.240310669 220.189529419 220.309646606 220.540115356 220.660232544 220.540115356 220.259841919 219.990310669 219.849685669 219.879959106 220.070388794 220.229568481 220.150466919 219.769607544 219.320388794 218.979568481 218.580154419 228.969650269 228.620040894 228.240158081 227.719650269 227.209884644 227.009689331 227.120040894 227.330001831 227.370040894 227.240158081 227.160079956 227.450119019 228.249923706 229.379806519 230.459884644 231.160079956 231.469650269 298.339904785 299.300842285 299.88092041 300.08013916 300.18951416 300.40045166 300.570373535 300.480529785 300.27935791 300.109436035 299.86920166 299.410217285 298.84967041 298.33013916 297.699279785 296.90045166 296.109436035 293.110534668 293.839050293 294.290222168 294.419128418 294.479675293 294.669128418 294.850769043 294.870300293 294.829284668 294.760925293 294.499206543 293.880065918 293.089050293 292.350769043 291.649597168 290.880065918 290.139831543 288.309967041 288.909576416 289.359771729 289.580474854 289.699615479 289.790435791 289.840240479 289.960357666 290.229888916 290.390045166 290.000396729 289.140045166 288.300201416 287.729888916 287.260162354 286.729888916 286.290435791 282.090209961 282.420288086 282.370483398 282.080444336 281.849975586 281.859741211 282.029663086 282.120483398 282.050170898 282.019897461 282.300170898 282.859741211 283.390014648 283.630249023 283.529663086 283.159545898 282.489624023 276.849914551 277.370422363 277.389953613 277.099914551 276.700500488 276.399719238 276.210266113 276.059875488 275.880187988 275.760070801 275.830383301 276.109680176 276.510070801 276.920227051 277.139953613 276.979797363 276.300109863 268.79019165 269.330230713 269.210113525 268.7003479 268.120269775 267.710113525 267.5597229 267.54019165 267.609527588 267.729644775 267.929840088 268.160308838 268.3800354 268.639801025 268.920074463 268.979644775 268.580230713 258.26953125 258.66015625 258.639648438 258.530273438 258.389648438 258.1796875 257.849609375 257.490234375 257.280273438 257.3203125 257.580078125 257.830078125 257.870117188 257.700195312 257.490234375 257.33984375 257.240234375 243.510192871 243.540466309 243.590270996 243.829528809 244.050231934 244.019958496 243.750427246 243.519958496 243.439880371 243.479919434 243.489685059 243.399841309 243.109802246 242.649841309 242.119567871 241.790466309 241.729919434 233.920135498 233.889862061 234.039764404 234.230194092 234.250213623 234.090057373 233.920135498 233.840057373 233.820037842 233.789764404 233.759979248 233.750213623 233.659881592 233.279998779 232.690155029 232.289764404 232.380096436 222.109848022 222.200180054 222.279769897 222.189926147 221.97996521 221.760238647 221.540023804 221.379867554 221.350082397 221.450180054 221.529769897 221.520004272 221.529769897 221.629867554 221.760238647 221.870101929 221.990219116 207.479995728 207.339859009 207.18019104 207.049819946 206.959976196 206.729995728 206.310073853 205.93019104 205.850112915 206.009780884 206.140151978 206.189956665 206.350112915 206.700210571 207.149917603 207.52003479 207.799819946 191.71987915 190.330230713 189.269683838 188.500152588 188.009918213 187.759918213 187.660308838 187.589996338 187.54019165 187.5597229 187.799957275 188.330230713 189.0597229 189.920074463 190.849761963 191.820465088 192.849761963 194.399612427 193.200393677 192.359573364 191.689651489 191.269729614 191.259963989 191.590042114 191.939651489 192.040237427 191.819534302 191.429885864 191.050003052 190.790237427 190.719924927 190.849807739 191.120315552 191.569534302 205.529907227 204.870239258 204.440063477 204.290161133 204.299926758 204.259887695 204.109985352 203.909790039 203.810180664 203.819946289 203.850219727 203.75012207 203.350219727 202.650024414 201.799926758 201.020141602 200.509887695 217.219909668 216.889831543 216.699890137 216.549987793 216.389831543 216.340026855 216.549987793 216.900085449 217.179870605 217.150085449 216.810241699 216.380065918 216.029968262 215.730163574 215.270202637 214.449890137 213.329772949 220.139724731 220.040115356 220.169998169 220.439529419 220.599685669 220.490310669 220.200271606 219.950271606 219.879959106 219.960037231 220.110427856 220.219802856 220.120193481 219.809646606 219.410232544 219.019607544 218.540115356 229.160079956 228.839767456 228.379806519 227.770431519 227.270431519 227.129806519 227.349533081 227.599533081 227.560470581 227.270431519 227.110275269 227.490158081 228.360275269 229.410079956 230.320236206 231.009689331 231.459884644 298.429748535 299.269592285 299.90045166 300.179748535 300.300842285 300.47076416 300.550842285 300.410217285 300.20904541 300.15045166 299.980529785 299.429748535 298.68951416 298.15045166 297.70904541 296.980529785 295.99029541 293.299987793 293.909362793 294.319519043 294.479675293 294.559753418 294.719909668 294.829284668 294.790222168 294.739440918 294.749206543 294.469909668 293.719909668 292.829284668 292.210144043 291.700378418 290.889831543 289.909362793 288.369537354 288.989654541 289.470123291 289.699615479 289.779693604 289.819732666 289.800201416 289.880279541 290.149810791 290.319732666 289.949615479 289.069732666 288.180084229 287.569732666 287.090240479 286.580474854 286.180084229 282.269897461 282.510131836 282.449584961 282.220092773 281.989624023 281.899780273 281.979858398 282.059936523 282.040405273 282.059936523 282.349975586 282.899780273 283.470092773 283.769897461 283.720092773 283.340209961 282.559936523 277.290344238 277.689758301 277.620422363 277.269836426 276.830383301 276.470031738 276.260070801 276.120422363 275.970031738 275.870422363 275.970031738 276.300109863 276.760070801 277.160461426 277.349914551 277.160461426 276.489562988 269.070465088 269.5597229 269.359527588 268.780426025 268.189605713 267.820465088 267.660308838 267.6300354 267.670074463 267.8097229 268.049957275 268.3097229 268.530426025 268.740386963 268.939605713 268.9503479 268.570465088 258.41015625 258.73046875 258.719726562 258.650390625 258.559570312 258.349609375 258.009765625 257.610351562 257.360351562 257.400390625 257.650390625 257.870117188 257.849609375 257.629882812 257.379882812 257.240234375 257.16015625 243.529724121 243.579528809 243.720153809 243.979919434 244.149841309 244.059997559 243.829528809 243.619567871 243.559997559 243.600036621 243.609802246 243.449645996 243.090270996 242.579528809 242.119567871 241.829528809 241.760192871 233.869842529 233.969940186 234.210174561 234.380096436 234.360076904 234.199920654 234.050018311 233.960174561 233.920135498 233.869842529 233.829803467 233.789764404 233.639862061 233.230194092 232.670135498 232.329803467 232.440155029 222.06980896 222.270004272 222.399887085 222.279769897 222.040023804 221.839828491 221.660140991 221.499984741 221.459945679 221.520004272 221.560043335 221.560043335 221.589828491 221.740219116 221.899887085 222.020004272 222.149887085 207.529800415 207.439956665 207.299819946 207.189956665 207.069839478 206.799819946 206.370132446 205.979995728 205.879898071 205.979995728 206.100112915 206.229995728 206.459976196 206.839859009 207.240249634 207.569839478 207.890151978 191.420074463 190.0597229 189.049957275 188.330230713 187.929840088 187.769683838 187.79019165 187.870269775 187.910308838 187.920074463 188.080230713 188.500152588 189.189605713 190.0597229 191.04019165 192.04019165 192.990386963 194.179885864 192.979690552 192.099807739 191.380081177 190.899612427 190.849807739 191.120315552 191.399612427 191.439651489 191.210159302 190.920120239 190.660354614 190.509963989 190.500198364 190.679885864 191.019729614 191.540237427 205.560180664 204.949829102 204.560180664 204.409790039 204.370239258 204.290161133 204.150024414 204.029907227 203.980102539 203.989868164 203.960083008 203.75012207 203.259887695 202.50012207 201.630004883 200.830200195 200.290161133 217.360046387 216.880065918 216.590026855 216.42010498 216.310241699 216.210144043 216.219909668 216.389831543 216.59979248 216.650085449 216.449890137 216.130065918 215.860046387 215.650085449 215.230163574 214.409851074 213.270202637 220.080154419 220.059646606 220.259841919 220.540115356 220.660232544 220.490310669 220.179763794 219.990310669 219.969802856 220.019607544 220.049880981 220.049880981 219.990310669 219.849685669 219.559646606 219.120193481 218.509841919 229.450119019 228.969650269 228.280197144 227.580001831 227.179611206 227.179611206 227.469650269 227.679611206 227.610275269 227.360275269 227.360275269 227.839767456 228.660079956 229.490158081 230.160079956 230.770431519 231.310470581 298.43951416 299.250061035 299.949279785 300.300842285 300.390686035 300.49029541 300.52935791 300.34967041 300.109436035 300.070373535 299.97076416 299.390686035 298.550842285 297.980529785 297.65045166 296.95904541 295.789123535 293.350769043 293.909362793 294.380065918 294.610534668 294.669128418 294.739440918 294.790222168 294.710144043 294.659362793 294.690612793 294.430847168 293.630065918 292.680847168 292.079284668 291.659362793 290.819519043 289.659362793 288.409576416 289.040435791 289.559967041 289.809967041 289.869537354 289.830474854 289.769927979 289.819732666 290.050201416 290.199615479 289.899810791 289.100006104 288.220123291 287.550201416 287.010162354 286.529693604 286.159576416 282.309936523 282.409545898 282.349975586 282.220092773 282.029663086 281.880249023 281.880249023 281.979858398 282.059936523 282.130249023 282.380249023 282.870483398 283.439819336 283.849975586 283.909545898 283.519897461 282.620483398 277.700500488 278.019836426 277.819641113 277.370422363 276.859680176 276.460266113 276.239562988 276.120422363 276.010070801 275.970031738 276.130187988 276.529602051 276.970031738 277.309875488 277.460266113 277.300109863 276.649719238 269.359527588 269.769683838 269.439605713 268.8097229 268.280426025 267.990386963 267.839996338 267.740386963 267.7003479 267.830230713 268.089996338 268.3800354 268.599761963 268.769683838 268.889801025 268.859527588 268.519683838 258.549804688 258.830078125 258.83984375 258.780273438 258.650390625 258.4296875 258.08984375 257.719726562 257.469726562 257.490234375 257.700195312 257.860351562 257.790039062 257.549804688 257.330078125 257.200195312 257.120117188 243.529724121 243.659606934 243.890075684 244.119567871 244.170349121 244.040466309 243.840270996 243.670349121 243.600036621 243.609802246 243.600036621 243.420349121 243.019958496 242.500427246 242.069763184 241.850036621 241.800231934 233.889862061 234.110076904 234.400115967 234.520233154 234.440155029 234.279998779 234.139862061 234.029998779 233.960174561 233.940155029 233.909881592 233.849822998 233.639862061 233.219940186 232.710174561 232.429901123 232.539764404 222.049789429 222.339828491 222.490219116 222.359848022 222.109848022 221.930160522 221.770004272 221.629867554 221.560043335 221.56980896 221.580062866 221.580062866 221.649887085 221.81980896 221.999984741 222.120101929 222.249984741 207.580093384 207.529800415 207.410171509 207.259780884 207.080093384 206.77003479 206.35987854 206.040054321 205.950210571 206.000015259 206.100112915 206.259780884 206.589859009 207.009780884 207.35987854 207.649917603 207.979995728 191.14956665 189.799957275 188.8097229 188.170074463 187.8097229 187.71987915 187.859527588 188.080230713 188.189605713 188.170074463 188.240386963 188.580230713 189.250152588 190.170074463 191.210113525 192.229644775 193.160308838 194.000198364 192.790237427 191.910354614 191.189651489 190.719924927 190.609573364 190.780471802 190.969924927 190.969924927 190.819534302 190.630081177 190.490432739 190.370315552 190.340042114 190.490432739 190.880081177 191.469924927 205.529907227 204.969848633 204.600219727 204.42980957 204.350219727 204.279907227 204.219848633 204.190063477 204.190063477 204.170043945 204.060180664 203.770141602 203.190063477 202.370239258 201.449829102 200.630004883 200.060180664 217.42010498 216.929870605 216.570007324 216.360046387 216.230163574 216.130065918 216.070007324 216.130065918 216.25994873 216.320007324 216.179870605 215.909851074 215.719909668 215.59979248 215.250183105 214.429870605 213.279968262 220.070388794 220.150466919 220.360427856 220.620193481 220.710037231 220.540115356 220.250076294 220.059646606 220.059646606 220.080154419 220.000076294 219.919998169 219.900466919 219.889724731 219.689529419 219.210037231 218.460037231 229.589767456 228.999923706 228.200119019 227.499923706 227.169845581 227.179611206 227.389572144 227.549728394 227.539962769 227.469650269 227.599533081 228.099533081 228.820236206 229.499923706 230.080001831 230.629806519 231.160079956 298.500061035 299.339904785 300.089904785 300.41998291 300.45904541 300.519592285 300.570373535 300.320373535 299.929748535 299.800842285 299.800842285 299.38092041 298.550842285 297.91998291 297.56060791 296.83013916 295.519592285 293.339050293 293.979675293 294.540222168 294.780456543 294.809753418 294.850769043 294.889831543 294.760925293 294.579284668 294.510925293 294.309753418 293.649597168 292.729675293 292.049987793 291.540222168 290.630065918 289.360534668 288.449615479 289.080474854 289.580474854 289.840240479 289.909576416 289.920318604 289.930084229 289.970123291 290.080474854 290.100006104 289.830474854 289.189849854 288.390045166 287.640045166 287.029693604 286.529693604 286.170318604 282.140014648 282.029663086 281.949584961 281.949584961 281.890014648 281.769897461 281.790405273 281.979858398 282.180053711 282.309936523 282.510131836 282.899780273 283.409545898 283.840209961 283.970092773 283.580444336 282.569702148 278.010070801 278.250305176 277.929992676 277.389953613 276.819641113 276.410461426 276.210266113 276.099914551 276.010070801 276.010070801 276.250305176 276.670227051 277.080383301 277.370422363 277.479797363 277.319641113 276.710266113 269.660308838 269.960113525 269.500152588 268.830230713 268.349761963 268.139801025 268.009918213 267.839996338 267.729644775 267.8097229 268.070465088 268.359527588 268.589996338 268.740386963 268.830230713 268.780426025 268.479644775 258.73046875 259.0 259.009765625 258.889648438 258.6796875 258.400390625 258.08984375 257.790039062 257.599609375 257.610351562 257.76953125 257.860351562 257.759765625 257.540039062 257.349609375 257.219726562 257.120117188 243.559997559 243.800231934 244.109802246 244.260192871 244.149841309 243.960388184 243.819763184 243.729919434 243.640075684 243.590270996 243.540466309 243.350036621 242.930114746 242.399841309 242.000427246 241.829528809 241.809997559 233.940155029 234.259979248 234.539764404 234.590057373 234.469940186 234.309783936 234.170135498 234.059783936 234.009979248 234.029998779 234.039764404 233.940155029 233.679901123 233.259979248 232.800018311 232.550018311 232.650115967 222.049789429 222.39012146 222.560043335 222.430160522 222.200180054 222.020004272 221.879867554 221.740219116 221.660140991 221.64012146 221.620101929 221.620101929 221.709945679 221.89012146 222.060043335 222.189926147 222.350082397 207.60987854 207.589859009 207.459976196 207.259780884 207.029800415 206.700210571 206.330093384 206.10987854 206.049819946 206.089859009 206.149917603 206.339859009 206.720230103 207.160171509 207.500015259 207.759780884 208.089859009 190.939605713 189.580230713 188.639801025 188.04019165 187.740386963 187.710113525 187.9503479 188.229644775 188.330230713 188.229644775 188.21987915 188.570465088 189.269683838 190.229644775 191.3097229 192.39956665 193.3800354 193.840042114 192.609573364 191.710159302 191.040237427 190.590042114 190.420120239 190.460159302 190.580276489 190.609573364 190.569534302 190.519729614 190.439651489 190.319534302 190.189651489 190.259963989 190.660354614 191.349807739 205.480102539 204.949829102 204.620239258 204.42980957 204.33996582 204.290161133 204.299926758 204.310180664 204.299926758 204.219848633 204.049926758 203.710083008 203.120239258 202.259887695 201.290161133 200.420043945 199.859985352 217.400085449 216.960144043 216.579772949 216.25994873 216.040222168 215.940124512 215.940124512 216.020202637 216.150085449 216.190124512 216.040222168 215.790222168 215.630065918 215.590026855 215.329772949 214.540222168 213.34979248 220.099685669 220.179763794 220.349685669 220.570388794 220.710037231 220.629959106 220.379959106 220.160232544 220.099685669 220.099685669 220.019607544 219.910232544 219.889724731 219.900466919 219.729568481 219.210037231 218.379959106 229.560470581 229.020431519 228.310470581 227.700119019 227.349533081 227.240158081 227.299728394 227.419845581 227.539962769 227.599533081 227.740158081 228.110275269 228.740158081 229.480392456 230.160079956 230.709884644 231.129806519 298.660217285 299.539123535 300.24029541 300.50982666 300.49029541 300.550842285 300.609436035 300.300842285 299.74029541 299.50982666 299.65045166 299.43951416 298.660217285 297.890686035 297.38092041 296.609436035 295.300842285 293.440612793 294.139831543 294.690612793 294.880065918 294.860534668 294.940612793 295.059753418 294.889831543 294.479675293 294.210144043 294.089050293 293.649597168 292.819519043 292.010925293 291.319519043 290.370300293 289.110534668 288.489654541 289.050201416 289.500396729 289.769927979 289.899810791 290.029693604 290.159576416 290.199615479 290.100006104 289.920318604 289.649810791 289.189849854 288.510162354 287.710357666 286.989654541 286.460357666 286.109771729 281.849975586 281.519897461 281.409545898 281.559936523 281.689819336 281.699584961 281.779663086 282.069702148 282.359741211 282.550170898 282.710327148 283.019897461 283.460327148 283.830444336 283.930053711 283.510131836 282.460327148 278.130187988 278.300109863 277.910461426 277.290344238 276.739562988 276.389953613 276.220031738 276.109680176 276.000305176 276.019836426 276.300109863 276.720031738 277.099914551 277.349914551 277.429992676 277.250305176 276.639953613 269.920074463 270.120269775 269.570465088 268.849761963 268.410308838 268.21987915 268.070465088 267.889801025 267.769683838 267.849761963 268.0597229 268.3097229 268.519683838 268.679840088 268.780426025 268.71987915 268.429840088 258.959960938 259.219726562 259.219726562 259.0 258.66015625 258.3203125 258.0703125 257.860351562 257.73046875 257.73046875 257.830078125 257.900390625 257.809570312 257.610351562 257.4296875 257.290039062 257.150390625 243.600036621 243.949645996 244.319763184 244.380310059 244.130310059 243.880310059 243.779724121 243.750427246 243.680114746 243.579528809 243.489685059 243.300231934 242.869567871 242.329528809 241.930114746 241.790466309 241.819763184 233.969940186 234.340057373 234.610076904 234.610076904 234.449920654 234.289764404 234.159881592 234.059783936 234.070037842 234.150115967 234.159881592 234.039764404 233.750213623 233.340057373 232.909881592 232.670135498 232.739959717 222.06980896 222.410140991 222.56980896 222.459945679 222.249984741 222.080062866 221.930160522 221.81980896 221.760238647 221.740219116 221.709945679 221.680160522 221.760238647 221.939926147 222.120101929 222.290023804 222.490219116 207.620132446 207.600112915 207.470230103 207.259780884 206.990249634 206.640151978 206.310073853 206.140151978 206.149917603 206.189956665 206.259780884 206.450210571 206.85987854 207.310073853 207.629898071 207.870132446 208.189956665 190.830230713 189.519683838 188.620269775 188.070465088 187.799957275 187.839996338 188.1300354 188.429840088 188.4503479 188.240386963 188.189605713 188.5597229 189.3097229 190.280426025 191.370269775 192.54019165 193.609527588 193.729690552 192.439651489 191.490432739 190.849807739 190.429885864 190.200393677 190.139846802 190.189651489 190.250198364 190.290237427 190.300003052 190.280471802 190.170120239 190.030471802 190.069534302 190.460159302 191.200393677 205.460083008 204.980102539 204.670043945 204.469848633 204.33996582 204.290161133 204.319946289 204.33996582 204.299926758 204.190063477 204.00012207 203.659790039 203.060180664 202.170043945 201.150024414 200.270141602 199.719848633 217.329772949 216.960144043 216.520202637 216.060241699 215.710144043 215.59979248 215.67010498 215.810241699 215.960144043 216.029968262 215.92010498 215.679870605 215.540222168 215.549987793 215.369812012 214.619812012 213.380065918 220.160232544 220.210037231 220.330154419 220.530349731 220.750076294 220.790115356 220.580154419 220.280349731 220.129959106 220.139724731 220.120193481 220.009841919 219.919998169 219.879959106 219.719802856 219.229568481 218.379959106 229.440353394 228.969650269 228.400314331 227.870040894 227.490158081 227.280197144 227.270431519 227.450119019 227.690353394 227.799728394 227.830001831 228.039962769 228.629806519 229.499923706 230.320236206 230.870040894 231.160079956 298.839904785 299.679748535 300.320373535 300.570373535 300.519592285 300.50982666 300.52935791 300.20904541 299.640686035 299.429748535 299.61920166 299.49029541 298.660217285 297.70904541 297.089904785 296.38092041 295.160217285 293.639831543 294.270690918 294.710144043 294.819519043 294.790222168 294.930847168 295.120300293 294.960144043 294.399597168 293.969909668 293.850769043 293.549987793 292.780456543 291.870300293 291.089050293 290.180847168 288.999206543 288.519927979 288.970123291 289.359771729 289.670318604 289.899810791 290.100006104 290.269927979 290.250396729 289.979888916 289.630279541 289.380279541 289.090240479 288.500396729 287.649810791 286.859771729 286.319732666 285.970123291 281.510131836 281.059936523 280.949584961 281.250366211 281.569702148 281.739624023 281.920288086 282.250366211 282.559936523 282.729858398 282.880249023 283.159545898 283.529663086 283.819702148 283.830444336 283.370483398 282.349975586 278.040344238 278.139953613 277.720031738 277.120422363 276.639953613 276.380187988 276.239562988 276.109680176 276.000305176 276.050109863 276.330383301 276.720031738 277.059875488 277.279602051 277.349914551 277.149719238 276.500305176 270.049957275 270.189605713 269.620269775 268.920074463 268.46987915 268.21987915 268.04019165 267.889801025 267.870269775 267.979644775 268.139801025 268.280426025 268.429840088 268.599761963 268.71987915 268.670074463 268.370269775 259.190429688 259.48046875 259.419921875 259.08984375 258.639648438 258.26953125 258.0703125 257.950195312 257.8203125 257.780273438 257.860351562 257.9296875 257.870117188 257.700195312 257.530273438 257.370117188 257.190429688 243.640075684 244.059997559 244.420349121 244.420349121 244.079528809 243.779724121 243.720153809 243.739685059 243.670349121 243.559997559 243.449645996 243.260192871 242.859802246 242.319763184 241.909606934 241.769958496 241.840270996 233.960174561 234.380096436 234.619842529 234.590057373 234.409881592 234.259979248 234.139862061 234.079803467 234.139862061 234.259979248 234.259979248 234.090057373 233.789764404 233.420135498 233.029998779 232.770233154 232.809783936 222.089828491 222.39012146 222.510238647 222.419906616 222.22996521 222.06980896 221.930160522 221.850082397 221.850082397 221.870101929 221.81980896 221.760238647 221.799789429 221.970199585 222.189926147 222.410140991 222.680160522 207.580093384 207.529800415 207.399917603 207.209976196 206.959976196 206.629898071 206.310073853 206.169937134 206.200210571 206.27003479 206.370132446 206.589859009 206.979995728 207.43019104 207.750015259 207.990249634 208.319839478 190.8097229 189.589996338 188.759918213 188.240386963 188.000152588 188.070465088 188.39956665 188.670074463 188.620269775 188.330230713 188.250152588 188.64956665 189.39956665 190.320465088 191.389801025 192.599761963 193.759918213 193.700393677 192.330276489 191.340042114 190.710159302 190.309768677 190.009963989 189.819534302 189.780471802 189.849807739 189.899612427 189.920120239 189.929885864 189.929885864 189.910354614 190.000198364 190.399612427 191.160354614 205.50012207 205.029907227 204.690063477 204.449829102 204.279907227 204.219848633 204.259887695 204.319946289 204.310180664 204.199829102 204.00012207 203.639770508 203.029907227 202.120239258 201.069946289 200.170043945 199.630004883 217.329772949 216.969909668 216.500183105 215.92010498 215.460144043 215.290222168 215.340026855 215.449890137 215.579772949 215.690124512 215.679870605 215.520202637 215.400085449 215.429870605 215.320007324 214.650085449 213.369812012 220.179763794 220.299880981 220.419998169 220.599685669 220.830154419 220.950271606 220.759841919 220.419998169 220.229568481 220.269607544 220.320388794 220.179763794 219.969802856 219.849685669 219.750076294 219.360427856 218.540115356 229.320236206 228.839767456 228.289962769 227.770431519 227.389572144 227.219650269 227.299728394 227.570236206 227.839767456 227.919845581 227.860275269 228.039962769 228.660079956 229.570236206 230.379806519 230.860275269 231.080001831 298.95904541 299.679748535 300.289123535 300.63092041 300.59967041 300.429748535 300.300842285 300.02935791 299.640686035 299.50982666 299.66998291 299.45904541 298.519592285 297.45904541 296.83013916 296.18951416 295.06060791 293.850769043 294.299987793 294.610534668 294.749206543 294.760925293 294.860534668 295.030456543 294.909362793 294.389831543 293.919128418 293.729675293 293.419128418 292.639831543 291.690612793 290.919128418 290.100769043 288.989440918 288.580474854 288.890045166 289.269927979 289.689849854 289.979888916 290.140045166 290.239654541 290.159576416 289.830474854 289.439849854 289.189849854 288.970123291 288.420318604 287.550201416 286.739654541 286.210357666 285.819732666 281.260131836 280.809936523 280.720092773 281.090209961 281.529663086 281.819702148 282.090209961 282.460327148 282.739624023 282.870483398 282.979858398 283.250366211 283.580444336 283.760131836 283.649780273 283.159545898 282.210327148 277.779602051 277.849914551 277.450500488 276.929992676 276.559875488 276.370422363 276.239562988 276.090148926 276.019836426 276.120422363 276.399719238 276.720031738 276.979797363 277.160461426 277.229797363 277.010070801 276.359680176 269.979644775 270.089996338 269.580230713 268.979644775 268.519683838 268.2003479 267.960113525 267.889801025 268.000152588 268.14956665 268.229644775 268.240386963 268.320465088 268.500152588 268.64956665 268.589996338 268.269683838 259.349609375 259.610351562 259.5 259.0703125 258.559570312 258.23046875 258.08984375 257.98046875 257.830078125 257.740234375 257.8203125 257.9296875 257.91015625 257.759765625 257.580078125 257.419921875 257.219726562 243.640075684 244.050231934 244.380310059 244.340270996 244.010192871 243.710388184 243.640075684 243.659606934 243.600036621 243.500427246 243.409606934 243.250427246 242.890075684 242.380310059 241.970153809 241.809997559 241.890075684 233.929901123 234.380096436 234.599822998 234.550018311 234.380096436 234.250213623 234.159881592 234.139862061 234.239959717 234.349822998 234.309783936 234.099822998 233.809783936 233.489959717 233.119842529 232.849822998 232.869842529 222.049789429 222.31980896 222.419906616 222.31980896 222.160140991 222.010238647 221.899887085 221.879867554 221.950180054 221.999984741 221.959945679 221.850082397 221.850082397 222.010238647 222.260238647 222.549789429 222.879867554 207.470230103 207.399917603 207.279800415 207.120132446 206.910171509 206.60987854 206.330093384 206.189956665 206.240249634 206.35987854 206.479995728 206.709976196 207.089859009 207.529800415 207.879898071 208.149917603 208.490249634 190.859527588 189.729644775 188.939605713 188.4503479 188.21987915 188.320465088 188.6300354 188.8800354 188.769683838 188.460113525 188.370269775 188.759918213 189.500152588 190.3800354 191.410308838 192.609527588 193.8097229 193.710159302 192.319534302 191.300003052 190.649612427 190.219924927 189.830276489 189.530471802 189.450393677 189.519729614 189.559768677 189.550003052 189.590042114 189.719924927 189.870315552 190.069534302 190.490432739 191.240432739 205.529907227 205.029907227 204.650024414 204.319946289 204.130004883 204.080200195 204.159790039 204.290161133 204.350219727 204.259887695 204.020141602 203.609985352 202.960083008 202.040161133 200.989868164 200.069946289 199.540161133 217.409851074 217.020202637 216.529968262 215.92010498 215.42010498 215.179870605 215.150085449 215.139831543 215.179870605 215.310241699 215.42010498 215.380065918 215.299987793 215.340026855 215.299987793 214.690124512 213.409851074 220.169998169 220.370193481 220.540115356 220.679763794 220.860427856 220.960037231 220.809646606 220.490310669 220.339920044 220.450271606 220.540115356 220.360427856 220.000076294 219.809646606 219.780349731 219.549880981 218.759841919 229.270431519 228.709884644 228.080001831 227.520431519 227.190353394 227.160079956 227.389572144 227.690353394 227.860275269 227.830001831 227.799728394 228.099533081 228.849533081 229.709884644 230.339767456 230.669845581 230.950119019 299.02935791 299.63092041 300.24029541 300.750061035 300.75982666 300.390686035 300.06060791 299.84967041 299.65045166 299.570373535 299.61920166 299.339904785 298.41998291 297.390686035 296.750061035 296.13092041 294.980529785 293.999206543 294.270690918 294.559753418 294.850769043 294.899597168 294.839050293 294.839050293 294.739440918 294.389831543 293.989440918 293.739440918 293.350769043 292.559753418 291.649597168 290.899597168 290.089050293 288.930847168 288.729888916 288.949615479 289.350006104 289.840240479 290.140045166 290.199615479 290.189849854 290.119537354 289.840240479 289.470123291 289.189849854 288.920318604 288.350006104 287.519927979 286.760162354 286.220123291 285.689849854 281.099975586 280.769897461 280.710327148 281.050170898 281.489624023 281.830444336 282.189819336 282.590209961 282.870483398 282.970092773 283.059936523 283.309936523 283.580444336 283.630249023 283.370483398 282.819702148 281.939819336 277.489562988 277.559875488 277.220031738 276.800109863 276.529602051 276.370422363 276.220031738 276.099914551 276.090148926 276.269836426 276.510070801 276.729797363 276.880187988 277.000305176 277.029602051 276.790344238 276.179992676 269.750152588 269.830230713 269.4503479 268.990386963 268.580230713 268.2003479 267.920074463 267.89956665 268.080230713 268.250152588 268.229644775 268.160308838 268.210113525 268.389801025 268.519683838 268.4503479 268.109527588 259.360351562 259.5703125 259.379882812 258.91015625 258.419921875 258.150390625 258.059570312 257.969726562 257.780273438 257.669921875 257.759765625 257.91015625 257.940429688 257.799804688 257.629882812 257.469726562 257.25 243.559997559 243.920349121 244.189880371 244.180114746 243.920349121 243.670349121 243.579528809 243.579528809 243.519958496 243.439880371 243.369567871 243.239685059 242.939880371 242.479919434 242.079528809 241.899841309 241.970153809 233.860076904 234.320037842 234.550018311 234.489959717 234.349822998 234.230194092 234.170135498 234.199920654 234.329803467 234.420135498 234.340057373 234.099822998 233.820037842 233.520233154 233.190155029 232.949920654 232.980194092 221.959945679 222.220199585 222.299789429 222.220199585 222.080062866 221.970199585 221.899887085 221.919906616 222.029769897 222.100082397 222.040023804 221.919906616 221.899887085 222.06980896 222.359848022 222.700180054 223.06980896 207.330093384 207.240249634 207.129898071 207.000015259 206.819839478 206.580093384 206.350112915 206.229995728 206.279800415 206.43019104 206.600112915 206.819839478 207.160171509 207.589859009 207.990249634 208.339859009 208.709976196 190.960113525 189.849761963 189.089996338 188.639801025 188.4503479 188.549957275 188.839996338 189.030426025 188.8800354 188.549957275 188.460113525 188.8800354 189.620269775 190.46987915 191.460113525 192.620269775 193.820465088 193.729690552 192.330276489 191.300003052 190.630081177 190.130081177 189.649612427 189.269729614 189.179885864 189.290237427 189.380081177 189.359573364 189.380081177 189.590042114 189.880081177 190.189651489 190.630081177 191.359573364 205.560180664 205.020141602 204.569946289 204.230102539 204.029907227 204.00012207 204.100219727 204.259887695 204.33996582 204.259887695 203.969848633 203.489868164 202.830200195 201.92980957 200.880004883 199.969848633 199.440063477 217.440124512 217.029968262 216.560241699 215.969909668 215.460144043 215.199890137 215.110046387 215.020202637 214.980163574 215.079772949 215.250183105 215.320007324 215.329772949 215.409851074 215.400085449 214.829772949 213.50994873 220.099685669 220.370193481 220.589920044 220.689529419 220.780349731 220.849685669 220.729568481 220.469802856 220.349685669 220.509841919 220.660232544 220.450271606 219.990310669 219.710037231 219.740310669 219.650466919 218.910232544 229.249923706 228.679611206 228.020431519 227.429611206 227.120040894 227.200119019 227.520431519 227.799728394 227.830001831 227.690353394 227.700119019 228.169845581 229.049728394 229.889572144 230.339767456 230.539962769 230.919845581 299.15045166 299.65045166 300.250061035 300.86920166 300.90045166 300.359436035 299.90045166 299.730529785 299.59967041 299.45904541 299.41998291 299.22076416 298.500061035 297.539123535 296.83013916 296.140686035 294.95904541 294.159362793 294.319519043 294.630065918 295.030456543 295.120300293 294.860534668 294.630065918 294.520690918 294.299987793 293.969909668 293.680847168 293.309753418 292.600769043 291.739440918 290.960144043 290.100769043 288.870300293 288.989654541 289.159576416 289.519927979 290.000396729 290.250396729 290.199615479 290.149810791 290.119537354 289.939849854 289.600006104 289.250396729 288.880279541 288.300201416 287.550201416 286.850006104 286.239654541 285.529693604 281.029663086 280.849975586 280.840209961 281.099975586 281.460327148 281.809936523 282.239624023 282.689819336 282.970092773 283.069702148 283.170288086 283.399780273 283.599975586 283.510131836 283.080444336 282.409545898 281.540405273 277.210266113 277.330383301 277.059875488 276.729797363 276.510070801 276.349914551 276.200500488 276.120422363 276.210266113 276.429992676 276.620422363 276.720031738 276.769836426 276.800109863 276.760070801 276.479797363 275.889953613 269.460113525 269.549957275 269.280426025 268.9503479 268.599761963 268.210113525 267.910308838 267.89956665 268.080230713 268.189605713 268.120269775 268.019683838 268.089996338 268.259918213 268.359527588 268.250152588 267.889801025 259.209960938 259.349609375 259.129882812 258.700195312 258.290039062 258.08984375 258.01953125 257.919921875 257.73046875 257.639648438 257.75 257.919921875 257.959960938 257.830078125 257.639648438 257.469726562 257.209960938 243.420349121 243.699645996 243.920349121 243.960388184 243.800231934 243.609802246 243.540466309 243.529724121 243.500427246 243.420349121 243.350036621 243.239685059 242.979919434 242.579528809 242.189880371 242.019958496 242.119567871 233.730194092 234.210174561 234.429901123 234.380096436 234.250213623 234.179901123 234.170135498 234.230194092 234.369842529 234.449920654 234.349822998 234.110076904 233.820037842 233.529998779 233.239959717 233.059783936 233.170135498 221.850082397 222.109848022 222.189926147 222.120101929 222.010238647 221.939926147 221.930160522 221.959945679 222.029769897 222.080062866 222.020004272 221.939926147 221.970199585 222.189926147 222.529769897 222.89012146 223.249984741 207.200210571 207.100112915 207.000015259 206.870132446 206.729995728 206.560073853 206.35987854 206.259780884 206.319839478 206.490249634 206.689956665 206.910171509 207.220230103 207.629898071 208.080093384 208.52003479 208.950210571 191.109527588 189.990386963 189.250152588 188.820465088 188.689605713 188.799957275 189.04019165 189.170074463 188.990386963 188.670074463 188.599761963 189.009918213 189.750152588 190.609527588 191.580230713 192.7003479 193.8800354 193.729690552 192.330276489 191.280471802 190.580276489 190.030471802 189.479690552 189.069534302 188.979690552 189.130081177 189.250198364 189.229690552 189.250198364 189.490432739 189.849807739 190.250198364 190.729690552 191.429885864 205.620239258 205.069946289 204.609985352 204.25012207 204.060180664 204.009887695 204.069946289 204.199829102 204.279907227 204.190063477 203.870239258 203.370239258 202.699829102 201.819946289 200.799926758 199.889770508 199.380004883 217.380065918 216.960144043 216.489929199 215.92010498 215.409851074 215.139831543 215.079772949 215.029968262 214.960144043 214.989929199 215.130065918 215.279968262 215.42010498 215.59979248 215.59979248 214.989929199 213.619812012 220.049880981 220.320388794 220.570388794 220.679763794 220.740310669 220.769607544 220.660232544 220.389724731 220.250076294 220.410232544 220.629959106 220.490310669 220.009841919 219.660232544 219.669998169 219.650466919 218.979568481 229.200119019 228.700119019 228.080001831 227.459884644 227.120040894 227.200119019 227.539962769 227.870040894 227.900314331 227.719650269 227.690353394 228.190353394 229.150314331 230.039962769 230.469650269 230.620040894 231.020431519 299.300842285 299.70904541 300.24029541 300.84967041 300.84967041 300.289123535 299.839904785 299.730529785 299.550842285 299.25982666 299.16998291 299.13092041 298.63092041 297.68951416 296.839904785 296.089904785 295.00982666 294.329284668 294.440612793 294.680847168 295.089050293 295.149597168 294.799987793 294.489440918 294.380065918 294.180847168 293.799987793 293.479675293 293.200378418 292.649597168 291.819519043 290.999206543 290.120300293 288.969909668 289.239654541 289.380279541 289.659576416 290.029693604 290.170318604 290.080474854 290.029693604 290.029693604 289.899810791 289.569732666 289.220123291 288.819732666 288.260162354 287.550201416 286.869537354 286.170318604 285.319732666 281.010131836 280.979858398 281.000366211 281.180053711 281.479858398 281.890014648 282.390014648 282.849975586 283.120483398 283.180053711 283.269897461 283.470092773 283.599975586 283.409545898 282.849975586 282.069702148 281.170288086 277.010070801 277.179992676 276.950500488 276.639953613 276.420227051 276.250305176 276.130187988 276.130187988 276.300109863 276.519836426 276.630187988 276.639953613 276.630187988 276.620422363 276.470031738 276.090148926 275.479797363 269.240386963 269.370269775 269.160308838 268.889801025 268.5597229 268.179840088 267.920074463 267.89956665 268.009918213 268.04019165 267.929840088 267.8800354 268.000152588 268.14956665 268.160308838 267.990386963 267.589996338 258.919921875 259.049804688 258.879882812 258.5703125 258.290039062 258.129882812 258.049804688 257.91015625 257.740234375 257.669921875 257.790039062 257.959960938 257.990234375 257.830078125 257.599609375 257.360351562 257.049804688 243.239685059 243.479919434 243.659606934 243.729919434 243.649841309 243.529724121 243.489685059 243.519958496 243.519958496 243.460388184 243.380310059 243.260192871 243.000427246 242.619567871 242.269958496 242.149841309 242.300231934 233.529998779 234.020233154 234.250213623 234.230194092 234.150115967 234.119842529 234.139862061 234.219940186 234.340057373 234.440155029 234.380096436 234.139862061 233.829803467 233.509979248 233.279998779 233.219940186 233.449920654 221.72996521 221.990219116 222.080062866 222.049789429 221.970199585 221.930160522 221.939926147 221.950180054 221.970199585 221.990219116 221.939926147 221.910140991 222.040023804 222.350082397 222.749984741 223.120101929 223.470199585 207.060073853 206.970230103 206.870132446 206.77003479 206.669937134 206.549819946 206.399917603 206.299819946 206.339859009 206.529800415 206.750015259 206.979995728 207.27003479 207.689956665 208.189956665 208.709976196 209.209976196 191.3097229 190.170074463 189.410308838 189.000152588 188.8800354 188.990386963 189.210113525 189.299957275 189.120269775 188.830230713 188.79019165 189.189605713 189.910308838 190.769683838 191.740386963 192.849761963 194.009918213 193.780471802 192.389846802 191.309768677 190.559768677 189.979690552 189.429885864 189.000198364 188.880081177 188.990432739 189.109573364 189.099807739 189.149612427 189.399612427 189.809768677 190.280471802 190.809768677 191.519729614 205.730102539 205.17980957 204.719848633 204.370239258 204.150024414 204.040161133 204.040161133 204.109985352 204.190063477 204.130004883 203.819946289 203.330200195 202.650024414 201.790161133 200.779907227 199.900024414 199.409790039 217.320007324 216.880065918 216.409851074 215.84979248 215.299987793 215.00994873 214.989929199 215.020202637 214.969909668 214.909851074 214.980163574 215.17010498 215.469909668 215.75994873 215.739929199 215.040222168 213.619812012 220.030349731 220.259841919 220.549880981 220.710037231 220.799880981 220.820388794 220.679763794 220.360427856 220.139724731 220.269607544 220.580154419 220.570388794 220.160232544 219.740310669 219.650466919 219.650466919 219.059646606 229.129806519 228.690353394 228.080001831 227.440353394 227.020431519 227.039962769 227.410079956 227.860275269 228.049728394 227.929611206 227.799728394 228.150314331 229.049728394 230.039962769 230.599533081 230.789962769 231.129806519 299.339904785 299.72076416 300.179748535 300.66998291 300.63092041 300.140686035 299.839904785 299.789123535 299.52935791 299.089904785 298.980529785 299.089904785 298.679748535 297.65045166 296.66998291 295.97076416 295.11920166 294.399597168 294.489440918 294.639831543 294.930847168 294.950378418 294.649597168 294.430847168 294.360534668 294.089050293 293.610534668 293.260925293 293.100769043 292.680847168 291.839050293 290.930847168 290.139831543 289.239440918 289.340240479 289.489654541 289.710357666 289.949615479 289.989654541 289.899810791 289.880279541 289.880279541 289.699615479 289.399810791 289.119537354 288.800201416 288.250396729 287.519927979 286.779693604 286.010162354 285.119537354 280.989624023 281.099975586 281.130249023 281.260131836 281.559936523 282.040405273 282.620483398 283.080444336 283.279663086 283.279663086 283.290405273 283.409545898 283.470092773 283.239624023 282.659545898 281.849975586 280.909545898 276.830383301 277.029602051 276.830383301 276.510070801 276.239562988 276.050109863 275.979797363 276.080383301 276.309875488 276.489562988 276.529602051 276.489562988 276.489562988 276.450500488 276.179992676 275.679992676 275.010070801 269.080230713 269.280426025 269.120269775 268.830230713 268.490386963 268.1300354 267.910308838 267.889801025 267.9503479 267.889801025 267.769683838 267.769683838 267.89956665 267.990386963 267.8800354 267.639801025 267.210113525 258.58984375 258.780273438 258.73046875 258.580078125 258.41015625 258.26953125 258.129882812 257.959960938 257.799804688 257.75 257.849609375 257.98046875 257.959960938 257.759765625 257.48046875 257.169921875 256.790039062 243.029724121 243.260192871 243.449645996 243.550231934 243.510192871 243.430114746 243.430114746 243.500427246 243.550231934 243.540466309 243.460388184 243.300231934 243.019958496 242.640075684 242.309997559 242.250427246 242.460388184 233.289764404 233.779998779 234.050018311 234.079803467 234.050018311 234.059783936 234.110076904 234.170135498 234.279998779 234.400115967 234.380096436 234.150115967 233.809783936 233.489959717 233.329803467 233.409881592 233.750213623 221.549789429 221.830062866 221.959945679 221.959945679 221.930160522 221.919906616 221.919906616 221.899887085 221.89012146 221.89012146 221.870101929 221.89012146 222.100082397 222.520004272 222.97996521 223.359848022 223.689926147 206.939956665 206.850112915 206.779800415 206.700210571 206.629898071 206.569839478 206.459976196 206.350112915 206.390151978 206.560073853 206.799819946 207.029800415 207.339859009 207.799819946 208.379898071 208.959976196 209.52003479 191.549957275 190.359527588 189.54019165 189.109527588 188.979644775 189.099761963 189.299957275 189.39956665 189.240386963 188.990386963 188.979644775 189.370269775 190.089996338 190.979644775 191.979644775 193.070465088 194.189605713 193.939651489 192.559768677 191.460159302 190.660354614 190.030471802 189.490432739 189.050003052 188.859573364 188.889846802 188.979690552 189.030471802 189.130081177 189.399612427 189.819534302 190.330276489 190.899612427 191.639846802 205.850219727 205.290161133 204.799926758 204.409790039 204.159790039 204.020141602 203.989868164 204.049926758 204.139770508 204.109985352 203.830200195 203.310180664 202.639770508 201.779907227 200.819946289 199.960083008 199.480102539 217.329772949 216.869812012 216.429870605 215.880065918 215.299987793 214.929870605 214.889831543 214.980163574 214.949890137 214.84979248 214.840026855 215.070007324 215.480163574 215.840026855 215.790222168 215.00994873 213.540222168 220.019607544 220.210037231 220.519607544 220.750076294 220.849685669 220.849685669 220.679763794 220.349685669 220.089920044 220.210037231 220.559646606 220.689529419 220.360427856 219.900466919 219.710037231 219.660232544 219.169998169 229.099533081 228.629806519 227.969650269 227.299728394 226.870040894 226.870040894 227.240158081 227.770431519 228.110275269 228.080001831 227.889572144 228.080001831 228.879806519 229.900314331 230.589767456 230.870040894 231.169845581 299.199279785 299.63092041 300.09967041 300.500061035 300.410217285 300.000061035 299.81060791 299.769592285 299.43951416 298.980529785 298.91998291 299.08013916 298.65045166 297.56060791 296.539123535 295.929748535 295.250061035 294.239440918 294.419128418 294.540222168 294.729675293 294.700378418 294.489440918 294.380065918 294.319519043 293.999206543 293.479675293 293.180847168 293.130065918 292.760925293 291.839050293 290.839050293 290.130065918 289.469909668 289.199615479 289.399810791 289.659576416 289.830474854 289.809967041 289.750396729 289.779693604 289.729888916 289.489654541 289.229888916 289.080474854 288.859771729 288.300201416 287.489654541 286.649810791 285.809967041 284.960357666 281.019897461 281.199584961 281.250366211 281.330444336 281.620483398 282.170288086 282.790405273 283.229858398 283.380249023 283.309936523 283.229858398 283.180053711 283.109741211 282.880249023 282.370483398 281.590209961 280.670288086 276.599914551 276.819641113 276.660461426 276.340148926 276.040344238 275.840148926 275.819641113 276.010070801 276.269836426 276.420227051 276.410461426 276.349914551 276.330383301 276.200500488 275.840148926 275.229797363 274.510070801 268.920074463 269.210113525 269.099761963 268.79019165 268.429840088 268.099761963 267.920074463 267.910308838 267.920074463 267.799957275 267.660308838 267.670074463 267.769683838 267.729644775 267.490386963 267.170074463 266.729644775 258.299804688 258.580078125 258.669921875 258.650390625 258.549804688 258.400390625 258.209960938 258.040039062 257.889648438 257.83984375 257.889648438 257.950195312 257.889648438 257.650390625 257.309570312 256.950195312 256.530273438 242.790466309 243.040466309 243.269958496 243.390075684 243.380310059 243.340270996 243.369567871 243.479919434 243.569763184 243.579528809 243.529724121 243.369567871 243.050231934 242.619567871 242.300231934 242.300231934 242.559997559 233.009979248 233.509979248 233.829803467 233.940155029 233.969940186 234.020233154 234.079803467 234.119842529 234.199920654 234.329803467 234.349822998 234.150115967 233.779998779 233.489959717 233.440155029 233.650115967 234.039764404 221.31980896 221.620101929 221.810043335 221.879867554 221.899887085 221.899887085 221.870101929 221.81980896 221.810043335 221.839828491 221.850082397 221.879867554 222.120101929 222.620101929 223.160140991 223.56980896 223.89012146 206.879898071 206.779800415 206.709976196 206.640151978 206.60987854 206.569839478 206.500015259 206.419937134 206.470230103 206.620132446 206.839859009 207.069839478 207.43019104 207.990249634 208.649917603 209.310073853 209.899917603 191.759918213 190.500152588 189.620269775 189.120269775 188.979644775 189.120269775 189.389801025 189.509918213 189.349761963 189.089996338 189.070465088 189.500152588 190.269683838 191.240386963 192.299957275 193.389801025 194.46987915 194.219924927 192.889846802 191.769729614 190.880081177 190.170120239 189.569534302 189.090042114 188.840042114 188.819534302 188.929885864 189.069534302 189.229690552 189.479690552 189.859573364 190.359573364 190.979690552 191.769729614 205.969848633 205.359985352 204.810180664 204.359985352 204.069946289 203.949829102 203.960083008 204.029907227 204.120239258 204.069946289 203.779907227 203.270141602 202.600219727 201.770141602 200.83996582 200.009887695 199.540161133 217.400085449 216.900085449 216.480163574 215.980163574 215.380065918 214.929870605 214.820007324 214.909851074 214.929870605 214.84979248 214.840026855 215.060241699 215.50994873 215.889831543 215.810241699 214.980163574 213.520202637 220.000076294 220.160232544 220.490310669 220.729568481 220.820388794 220.769607544 220.589920044 220.320388794 220.150466919 220.269607544 220.570388794 220.689529419 220.410232544 219.979568481 219.769607544 219.689529419 219.250076294 229.080001831 228.530197144 227.830001831 227.209884644 226.870040894 226.910079956 227.240158081 227.709884644 228.030197144 228.030197144 227.900314331 228.099533081 228.849533081 229.820236206 230.490158081 230.820236206 231.179611206 298.929748535 299.50982666 300.050842285 300.41998291 300.289123535 299.929748535 299.72076416 299.570373535 299.22076416 298.859436035 298.91998291 299.06060791 298.59967041 297.56060791 296.640686035 296.039123535 295.300842285 293.899597168 294.239440918 294.460144043 294.600769043 294.540222168 294.360534668 294.239440918 294.120300293 293.799987793 293.389831543 293.229675293 293.229675293 292.870300293 291.930847168 290.860534668 290.100769043 289.479675293 288.880279541 289.189849854 289.550201416 289.699615479 289.630279541 289.609771729 289.699615479 289.630279541 289.350006104 289.140045166 289.100006104 288.920318604 288.340240479 287.479888916 286.550201416 285.640045166 284.760162354 281.140014648 281.390014648 281.449584961 281.460327148 281.699584961 282.199584961 282.769897461 283.180053711 283.330444336 283.279663086 283.109741211 282.870483398 282.620483398 282.330444336 281.880249023 281.180053711 280.279663086 276.319641113 276.529602051 276.439758301 276.189758301 275.920227051 275.739562988 275.760070801 275.960266113 276.220031738 276.349914551 276.330383301 276.220031738 276.109680176 275.849914551 275.359680176 274.689758301 273.960266113 268.710113525 269.04019165 268.990386963 268.710113525 268.3800354 268.109527588 267.979644775 267.960113525 267.920074463 267.759918213 267.609527588 267.580230713 267.580230713 267.3800354 267.009918213 266.599761963 266.139801025 258.040039062 258.41015625 258.58984375 258.639648438 258.580078125 258.4296875 258.259765625 258.110351562 257.990234375 257.919921875 257.9296875 257.9296875 257.799804688 257.490234375 257.08984375 256.6796875 256.259765625 242.479919434 242.790466309 243.050231934 243.220153809 243.250427246 243.250427246 243.309997559 243.420349121 243.519958496 243.569763184 243.559997559 243.390075684 243.029724121 242.569763184 242.300231934 242.359802246 242.619567871 232.670135498 233.179901123 233.570037842 233.759979248 233.849822998 233.929901123 234.000213623 234.029998779 234.110076904 234.250213623 234.300018311 234.110076904 233.759979248 233.550018311 233.630096436 233.980194092 234.360076904 221.049789429 221.379867554 221.64012146 221.799789429 221.870101929 221.870101929 221.799789429 221.740219116 221.760238647 221.839828491 221.839828491 221.850082397 222.100082397 222.649887085 223.279769897 223.740219116 224.06980896 206.879898071 206.77003479 206.669937134 206.589859009 206.569839478 206.569839478 206.52003479 206.479995728 206.549819946 206.709976196 206.879898071 207.10987854 207.560073853 208.240249634 209.02003479 209.720230103 210.310073853 191.960113525 190.620269775 189.64956665 189.089996338 188.960113525 189.189605713 189.54019165 189.679840088 189.46987915 189.14956665 189.120269775 189.599761963 190.479644775 191.5597229 192.7003479 193.799957275 194.820465088 194.620315552 193.309768677 192.179885864 191.200393677 190.359573364 189.639846802 189.099807739 188.809768677 188.800003052 188.960159302 189.170120239 189.359573364 189.559768677 189.859573364 190.330276489 191.000198364 191.870315552 206.130004883 205.460083008 204.819946289 204.310180664 204.020141602 203.940063477 203.969848633 204.049926758 204.08996582 204.00012207 203.690063477 203.190063477 202.560180664 201.770141602 200.880004883 200.069946289 199.600219727 217.449890137 216.929870605 216.50994873 216.020202637 215.42010498 214.929870605 214.770202637 214.860046387 214.940124512 214.909851074 214.909851074 215.130065918 215.540222168 215.909851074 215.84979248 215.040222168 213.590026855 220.009841919 220.129959106 220.429763794 220.700271606 220.780349731 220.689529419 220.509841919 220.330154419 220.269607544 220.379959106 220.570388794 220.570388794 220.309646606 219.969802856 219.820388794 219.750076294 219.299880981 229.020431519 228.450119019 227.759689331 227.209884644 226.959884644 227.049728394 227.349533081 227.709884644 227.889572144 227.849533081 227.860275269 228.259689331 229.060470581 229.879806519 230.379806519 230.709884644 231.209884644 298.72076416 299.41998291 300.019592285 300.320373535 300.18951416 299.859436035 299.58013916 299.269592285 298.929748535 298.789123535 298.93951416 298.95904541 298.47076416 297.640686035 296.890686035 296.18951416 295.22076416 293.559753418 294.069519043 294.360534668 294.479675293 294.419128418 294.249206543 294.040222168 293.829284668 293.549987793 293.319519043 293.260925293 293.239440918 292.889831543 292.079284668 291.069519043 290.169128418 289.339050293 288.510162354 288.960357666 289.420318604 289.529693604 289.390045166 289.409576416 289.559967041 289.500396729 289.199615479 289.029693604 289.040435791 288.890045166 288.330474854 287.510162354 286.590240479 285.559967041 284.559967041 281.319702148 281.599975586 281.670288086 281.659545898 281.790405273 282.149780273 282.590209961 282.949584961 283.159545898 283.189819336 283.000366211 282.609741211 282.170288086 281.790405273 281.330444336 280.649780273 279.750366211 276.069641113 276.260070801 276.229797363 276.069641113 275.880187988 275.760070801 275.800109863 275.979797363 276.189758301 276.300109863 276.229797363 276.059875488 275.800109863 275.380187988 274.790344238 274.099914551 273.359680176 268.39956665 268.750152588 268.740386963 268.54019165 268.3097229 268.1300354 268.049957275 268.019683838 267.960113525 267.799957275 267.6300354 267.519683838 267.370269775 267.000152588 266.46987915 265.9503479 265.429840088 257.76953125 258.209960938 258.440429688 258.530273438 258.5 258.389648438 258.280273438 258.190429688 258.099609375 258.01953125 257.969726562 257.900390625 257.669921875 257.23046875 256.690429688 256.23046875 255.809570312 242.140075684 242.489685059 242.819763184 243.029724121 243.109802246 243.149841309 243.229919434 243.340270996 243.409606934 243.470153809 243.489685059 243.329528809 242.930114746 242.479919434 242.279724121 242.420349121 242.680114746 232.279998779 232.809783936 233.259979248 233.520233154 233.679901123 233.789764404 233.869842529 233.900115967 233.989959717 234.150115967 234.230194092 234.059783936 233.759979248 233.659881592 233.929901123 234.389862061 234.730194092 220.740219116 221.100082397 221.450180054 221.680160522 221.799789429 221.799789429 221.720199585 221.649887085 221.700180054 221.810043335 221.799789429 221.790023804 222.049789429 222.689926147 223.410140991 223.930160522 224.279769897 206.890151978 206.729995728 206.600112915 206.529800415 206.529800415 206.549819946 206.529800415 206.529800415 206.640151978 206.790054321 206.939956665 207.189956665 207.709976196 208.52003479 209.390151978 210.120132446 210.729995728 192.210113525 190.8097229 189.759918213 189.1300354 189.009918213 189.320465088 189.740386963 189.870269775 189.589996338 189.21987915 189.2003479 189.740386963 190.7003479 191.870269775 193.0597229 194.179840088 195.2003479 195.109573364 193.790237427 192.609573364 191.540237427 190.599807739 189.759963989 189.139846802 188.830276489 188.819534302 189.009963989 189.269729614 189.460159302 189.599807739 189.840042114 190.319534302 191.040237427 191.969924927 206.350219727 205.639770508 204.949829102 204.380004883 204.060180664 203.960083008 203.969848633 204.009887695 204.040161133 203.92980957 203.650024414 203.190063477 202.580200195 201.819946289 200.92980957 200.139770508 199.659790039 217.500183105 216.960144043 216.500183105 216.00994873 215.409851074 214.929870605 214.790222168 214.900085449 215.000183105 214.980163574 214.969909668 215.130065918 215.50994873 215.889831543 215.860046387 215.110046387 213.67010498 220.030349731 220.120193481 220.400466919 220.700271606 220.820388794 220.729568481 220.530349731 220.370193481 220.370193481 220.479568481 220.559646606 220.469802856 220.229568481 220.009841919 219.960037231 219.900466919 219.419998169 228.900314331 228.370040894 227.740158081 227.209884644 226.940353394 226.990158081 227.299728394 227.660079956 227.780197144 227.690353394 227.789962769 228.370040894 229.240158081 229.940353394 230.280197144 230.580001831 231.209884644 298.640686035 299.429748535 299.91998291 300.08013916 300.000061035 299.789123535 299.449279785 299.02935791 298.75982666 298.81060791 298.949279785 298.769592285 298.22076416 297.609436035 297.039123535 296.24029541 295.070373535 293.339050293 293.909362793 294.149597168 294.219909668 294.229675293 294.139831543 293.919128418 293.639831543 293.430847168 293.339050293 293.270690918 293.110534668 292.770690918 292.219909668 291.409362793 290.409362793 289.319519043 288.199615479 288.760162354 289.269927979 289.319732666 289.170318604 289.239654541 289.420318604 289.350006104 289.050201416 288.899810791 288.949615479 288.819732666 288.340240479 287.680084229 286.809967041 285.670318604 284.510162354 281.399780273 281.670288086 281.779663086 281.779663086 281.840209961 282.059936523 282.380249023 282.710327148 282.979858398 283.069702148 282.870483398 282.399780273 281.890014648 281.449584961 280.939819336 280.189819336 279.269897461 275.929992676 276.090148926 276.069641113 275.970031738 275.849914551 275.809875488 275.870422363 276.029602051 276.179992676 276.239562988 276.120422363 275.840148926 275.429992676 274.899719238 274.250305176 273.540344238 272.800109863 268.019683838 268.370269775 268.429840088 268.320465088 268.2003479 268.1300354 268.109527588 268.109527588 268.04019165 267.89956665 267.710113525 267.500152588 267.160308838 266.599761963 265.89956665 265.21987915 264.609527588 257.469726562 257.940429688 258.200195312 258.33984375 258.370117188 258.330078125 258.280273438 258.240234375 258.169921875 258.08984375 258.0 257.83984375 257.469726562 256.809570312 256.080078125 255.490234375 255.049804688 241.779724121 242.189880371 242.569763184 242.819763184 242.930114746 243.010192871 243.119567871 243.210388184 243.260192871 243.329528809 243.350036621 243.189880371 242.760192871 242.329528809 242.199645996 242.430114746 242.670349121 231.880096436 232.429901123 232.909881592 233.250213623 233.460174561 233.630096436 233.730194092 233.770233154 233.860076904 234.020233154 234.119842529 234.000213623 233.759979248 233.789764404 234.230194092 234.809783936 235.130096436 220.399887085 220.790023804 221.180160522 221.47996521 221.660140991 221.680160522 221.609848022 221.580062866 221.64012146 221.749984741 221.740219116 221.72996521 222.060043335 222.779769897 223.600082397 224.189926147 224.549789429 206.850112915 206.60987854 206.450210571 206.410171509 206.479995728 206.529800415 206.529800415 206.560073853 206.709976196 206.85987854 207.000015259 207.27003479 207.879898071 208.779800415 209.689956665 210.450210571 211.089859009 192.6300354 191.210113525 190.070465088 189.349761963 189.179840088 189.509918213 189.929840088 190.009918213 189.670074463 189.29019165 189.339996338 189.9503479 190.9503479 192.120269775 193.3097229 194.439605713 195.519683838 195.679885864 194.290237427 193.030471802 191.910354614 190.899612427 190.000198364 189.319534302 188.979690552 188.960159302 189.139846802 189.370315552 189.550003052 189.689651489 189.939651489 190.420120239 191.170120239 192.139846802 206.58996582 205.870239258 205.150024414 204.540161133 204.120239258 203.940063477 203.909790039 203.940063477 203.969848633 203.909790039 203.670043945 203.239868164 202.630004883 201.870239258 201.00012207 200.199829102 199.739868164 217.560241699 217.020202637 216.540222168 216.000183105 215.440124512 215.029968262 214.949890137 215.070007324 215.159851074 215.09979248 215.020202637 215.119812012 215.469909668 215.860046387 215.880065918 215.150085449 213.699890137 220.040115356 220.110427856 220.379959106 220.689529419 220.900466919 220.830154419 220.589920044 220.370193481 220.360427856 220.490310669 220.570388794 220.490310669 220.299880981 220.169998169 220.160232544 220.099685669 219.610427856 228.799728394 228.310470581 227.759689331 227.200119019 226.780197144 226.690353394 227.030197144 227.499923706 227.700119019 227.599533081 227.669845581 228.280197144 229.179611206 229.849533081 230.169845581 230.499923706 231.139572144 298.660217285 299.429748535 299.750061035 299.77935791 299.789123535 299.70904541 299.34967041 298.84967041 298.65045166 298.84967041 298.95904541 298.59967041 297.99029541 297.50982666 297.02935791 296.179748535 295.02935791 293.219909668 293.739440918 293.870300293 293.889831543 293.989440918 294.049987793 293.870300293 293.569519043 293.419128418 293.409362793 293.299987793 292.989440918 292.649597168 292.329284668 291.729675293 290.700378418 289.520690918 287.979888916 288.600006104 289.080474854 289.149810791 289.080474854 289.220123291 289.380279541 289.220123291 288.899810791 288.819732666 288.920318604 288.850006104 288.500396729 287.979888916 287.189849854 286.010162354 284.769927979 281.300170898 281.510131836 281.640014648 281.699584961 281.779663086 281.949584961 282.229858398 282.569702148 282.830444336 282.880249023 282.630249023 282.180053711 281.739624023 281.330444336 280.769897461 279.979858398 279.040405273 275.910461426 276.029602051 275.979797363 275.849914551 275.760070801 275.779602051 275.899719238 276.059875488 276.200500488 276.200500488 276.010070801 275.630187988 275.109680176 274.519836426 273.830383301 273.099914551 272.349914551 267.6300354 268.000152588 268.14956665 268.139801025 268.1300354 268.139801025 268.179840088 268.2003479 268.160308838 268.04019165 267.820465088 267.479644775 266.960113525 266.2003479 265.299957275 264.439605713 263.710113525 257.120117188 257.610351562 257.9296875 258.110351562 258.209960938 258.219726562 258.219726562 258.200195312 258.16015625 258.080078125 257.969726562 257.75 257.23046875 256.379882812 255.419921875 254.650390625 254.120117188 241.420349121 241.890075684 242.329528809 242.609802246 242.729919434 242.840270996 242.979919434 243.090270996 243.140075684 243.189880371 243.229919434 243.040466309 242.579528809 242.119567871 242.010192871 242.260192871 242.460388184 231.520233154 232.050018311 232.559783936 232.960174561 233.250213623 233.469940186 233.599822998 233.659881592 233.730194092 233.889862061 234.000213623 233.909881592 233.719940186 233.800018311 234.340057373 235.029998779 235.369842529 220.040023804 220.430160522 220.850082397 221.189926147 221.419906616 221.499984741 221.47996521 221.47996521 221.560043335 221.660140991 221.660140991 221.700180054 222.06980896 222.870101929 223.760238647 224.39012146 224.770004272 206.77003479 206.439956665 206.240249634 206.259780884 206.390151978 206.500015259 206.529800415 206.600112915 206.759780884 206.910171509 207.029800415 207.319839478 207.990249634 208.939956665 209.879898071 210.660171509 211.350112915 193.210113525 191.8097229 190.609527588 189.780426025 189.519683838 189.769683838 190.109527588 190.099761963 189.71987915 189.389801025 189.530426025 190.2003479 191.210113525 192.339996338 193.490386963 194.6300354 195.759918213 196.269729614 194.780471802 193.429885864 192.259963989 191.219924927 190.290237427 189.590042114 189.229690552 189.189651489 189.340042114 189.540237427 189.719924927 189.889846802 190.149612427 190.649612427 191.399612427 192.349807739 206.850219727 206.120239258 205.370239258 204.690063477 204.190063477 203.900024414 203.810180664 203.850219727 203.92980957 203.900024414 203.67980957 203.25012207 202.639770508 201.880004883 201.040161133 200.290161133 199.870239258 217.590026855 217.049987793 216.540222168 216.000183105 215.489929199 215.17010498 215.159851074 215.310241699 215.369812012 215.25994873 215.139831543 215.199890137 215.50994873 215.889831543 215.92010498 215.179870605 213.719909668 220.030349731 220.139724731 220.379959106 220.689529419 220.900466919 220.870193481 220.599685669 220.320388794 220.269607544 220.400466919 220.549880981 220.540115356 220.410232544 220.290115356 220.259841919 220.179763794 219.719802856 228.749923706 228.259689331 227.780197144 227.219650269 226.660079956 226.429611206 226.749923706 227.320236206 227.599533081 227.520431519 227.560470581 228.080001831 228.919845581 229.650314331 230.110275269 230.530197144 231.099533081 298.61920166 299.36920166 299.58013916 299.589904785 299.699279785 299.660217285 299.18951416 298.589904785 298.449279785 298.75982666 298.890686035 298.519592285 297.97076416 297.50982666 296.95904541 296.089904785 295.140686035 293.100769043 293.579284668 293.659362793 293.680847168 293.860534668 293.960144043 293.749206543 293.409362793 293.299987793 293.389831543 293.299987793 292.989440918 292.690612793 292.430847168 291.889831543 290.899597168 289.799987793 287.859771729 288.439849854 288.869537354 289.010162354 289.109771729 289.290435791 289.330474854 289.050201416 288.760162354 288.800201416 289.010162354 289.000396729 288.729888916 288.300201416 287.569732666 286.420318604 285.239654541 281.099975586 281.220092773 281.349975586 281.470092773 281.630249023 281.859741211 282.170288086 282.510131836 282.699584961 282.620483398 282.269897461 281.880249023 281.569702148 281.250366211 280.699584961 279.920288086 279.080444336 275.870422363 275.960266113 275.859680176 275.689758301 275.599914551 275.670227051 275.849914551 276.059875488 276.210266113 276.200500488 275.929992676 275.460266113 274.880187988 274.250305176 273.519836426 272.739562988 272.000305176 267.250152588 267.7003479 267.96987915 268.049957275 268.089996338 268.160308838 268.21987915 268.259918213 268.250152588 268.160308838 267.920074463 267.479644775 266.799957275 265.859527588 264.769683838 263.729644775 262.889801025 256.759765625 257.26953125 257.639648438 257.900390625 258.030273438 258.059570312 258.0703125 258.080078125 258.0703125 258.009765625 257.900390625 257.620117188 257.040039062 256.099609375 255.009765625 254.049804688 253.360351562 241.059997559 241.600036621 242.090270996 242.390075684 242.529724121 242.659606934 242.859802246 242.989685059 243.050231934 243.100036621 243.130310059 242.939880371 242.420349121 241.880310059 241.689880371 241.850036621 241.960388184 231.179901123 231.699920654 232.210174561 232.650115967 233.000213623 233.270233154 233.460174561 233.550018311 233.630096436 233.750213623 233.849822998 233.750213623 233.550018311 233.610076904 234.150115967 234.880096436 235.239959717 219.660140991 220.049789429 220.470199585 220.850082397 221.14012146 221.299789429 221.350082397 221.379867554 221.47996521 221.580062866 221.589828491 221.64012146 222.029769897 222.81980896 223.72996521 224.410140991 224.810043335 206.709976196 206.290054321 206.080093384 206.10987854 206.299819946 206.459976196 206.540054321 206.649917603 206.819839478 206.919937134 207.000015259 207.290054321 207.979995728 208.959976196 209.919937134 210.729995728 211.479995728 193.849761963 192.479644775 191.250152588 190.349761963 190.009918213 190.14956665 190.349761963 190.210113525 189.79019165 189.509918213 189.750152588 190.46987915 191.46987915 192.570465088 193.7003479 194.830230713 195.96987915 196.849807739 195.269729614 193.830276489 192.609573364 191.519729614 190.550003052 189.809768677 189.469924927 189.450393677 189.580276489 189.750198364 189.929885864 190.130081177 190.389846802 190.880081177 191.609573364 192.559768677 207.08996582 206.33996582 205.569946289 204.83996582 204.270141602 203.920043945 203.790161133 203.830200195 203.900024414 203.859985352 203.630004883 203.210083008 202.630004883 201.920043945 201.139770508 200.440063477 200.040161133 217.560241699 216.969909668 216.460144043 215.949890137 215.489929199 215.25994873 215.310241699 215.469909668 215.529968262 215.449890137 215.340026855 215.369812012 215.619812012 215.949890137 215.969909668 215.230163574 213.770202637 220.049880981 220.229568481 220.460037231 220.700271606 220.870193481 220.830154419 220.570388794 220.290115356 220.210037231 220.309646606 220.460037231 220.519607544 220.439529419 220.290115356 220.219802856 220.129959106 219.740310669 228.730392456 228.200119019 227.749923706 227.240158081 226.679611206 226.410079956 226.650314331 227.129806519 227.410079956 227.419845581 227.509689331 227.999923706 228.759689331 229.520431519 230.150314331 230.679611206 231.150314331 298.500061035 299.18951416 299.429748535 299.550842285 299.72076416 299.589904785 298.949279785 298.300842285 298.199279785 298.52935791 298.679748535 298.45904541 298.089904785 297.61920166 296.859436035 295.95904541 295.25982666 292.950378418 293.440612793 293.600769043 293.690612793 293.839050293 293.839050293 293.510925293 293.139831543 293.059753418 293.200378418 293.219909668 293.049987793 292.839050293 292.530456543 291.880065918 290.909362793 290.020690918 287.830474854 288.300201416 288.670318604 288.909576416 289.109771729 289.229888916 289.100006104 288.760162354 288.590240479 288.769927979 289.050201416 289.100006104 288.890045166 288.489654541 287.769927979 286.689849854 285.649810791 280.930053711 281.000366211 281.109741211 281.290405273 281.519897461 281.800170898 282.149780273 282.460327148 282.550170898 282.309936523 281.890014648 281.540405273 281.349975586 281.069702148 280.559936523 279.870483398 279.199584961 275.670227051 275.739562988 275.639953613 275.479797363 275.439758301 275.559875488 275.790344238 276.040344238 276.210266113 276.160461426 275.840148926 275.300109863 274.700500488 274.040344238 273.269836426 272.439758301 271.710266113 266.910308838 267.439605713 267.8097229 267.979644775 268.049957275 268.139801025 268.210113525 268.240386963 268.269683838 268.240386963 268.019683838 267.519683838 266.759918213 265.710113525 264.500152588 263.349761963 262.429840088 256.400390625 256.940429688 257.370117188 257.669921875 257.830078125 257.879882812 257.91015625 257.959960938 257.990234375 257.959960938 257.799804688 257.490234375 256.940429688 256.049804688 254.950195312 253.879882812 252.98046875 240.720153809 241.329528809 241.869567871 242.189880371 242.340270996 242.500427246 242.739685059 242.920349121 242.979919434 243.010192871 243.029724121 242.850036621 242.300231934 241.649841309 241.300231934 241.279724121 241.239685059 230.849822998 231.349822998 231.869842529 232.349822998 232.750213623 233.050018311 233.279998779 233.429901123 233.520233154 233.630096436 233.710174561 233.590057373 233.329803467 233.259979248 233.659881592 234.320037842 234.699920654 219.310043335 219.680160522 220.100082397 220.520004272 220.879867554 221.100082397 221.220199585 221.279769897 221.399887085 221.499984741 221.520004272 221.549789429 221.870101929 222.589828491 223.459945679 224.14012146 224.549789429 206.689956665 206.220230103 205.979995728 206.009780884 206.200210571 206.379898071 206.529800415 206.689956665 206.850112915 206.910171509 206.93019104 207.200210571 207.890151978 208.870132446 209.850112915 210.700210571 211.479995728 194.410308838 193.070465088 191.859527588 190.929840088 190.530426025 190.570465088 190.620269775 190.359527588 189.89956665 189.670074463 189.9503479 190.7003479 191.7003479 192.799957275 193.929840088 195.0597229 196.210113525 197.410354614 195.800003052 194.290237427 192.990432739 191.809768677 190.759963989 190.000198364 189.670120239 189.689651489 189.819534302 189.979690552 190.149612427 190.349807739 190.620315552 191.080276489 191.800003052 192.750198364 207.299926758 206.529907227 205.730102539 204.969848633 204.350219727 203.969848633 203.810180664 203.819946289 203.850219727 203.779907227 203.560180664 203.199829102 202.699829102 202.060180664 201.319946289 200.639770508 200.230102539 217.520202637 216.909851074 216.380065918 215.900085449 215.500183105 215.329772949 215.400085449 215.540222168 215.59979248 215.560241699 215.50994873 215.500183105 215.650085449 215.929870605 215.949890137 215.25994873 213.829772949 220.080154419 220.320388794 220.580154419 220.769607544 220.870193481 220.809646606 220.589920044 220.349685669 220.240310669 220.280349731 220.379959106 220.429763794 220.379959106 220.259841919 220.169998169 220.099685669 219.769607544 228.700119019 228.139572144 227.650314331 227.129806519 226.639572144 226.459884644 226.650314331 226.929611206 227.089767456 227.200119019 227.499923706 228.039962769 228.709884644 229.440353394 230.179611206 230.799728394 231.240158081 298.36920166 298.97076416 299.289123535 299.539123535 299.70904541 299.449279785 298.769592285 298.199279785 298.160217285 298.359436035 298.40045166 298.300842285 298.160217285 297.679748535 296.679748535 295.699279785 295.22076416 292.839050293 293.290222168 293.579284668 293.760925293 293.819519043 293.639831543 293.260925293 292.969909668 292.930847168 293.010925293 293.040222168 293.020690918 292.950378418 292.610534668 291.819519043 290.839050293 290.079284668 287.890045166 288.220123291 288.550201416 288.869537354 289.069732666 289.029693604 288.769927979 288.510162354 288.510162354 288.750396729 288.970123291 289.019927979 288.930084229 288.559967041 287.779693604 286.699615479 285.760162354 280.870483398 280.930053711 281.010131836 281.189819336 281.449584961 281.769897461 282.130249023 282.399780273 282.399780273 282.080444336 281.609741211 281.269897461 281.069702148 280.769897461 280.260131836 279.699584961 279.239624023 275.319641113 275.370422363 275.330383301 275.269836426 275.340148926 275.540344238 275.800109863 276.029602051 276.149719238 276.050109863 275.670227051 275.130187988 274.550109863 273.899719238 273.109680176 272.250305176 271.550109863 266.620269775 267.170074463 267.609527588 267.839996338 267.96987915 268.070465088 268.1300354 268.179840088 268.240386963 268.280426025 268.1300354 267.660308838 266.870269775 265.799957275 264.570465088 263.39956665 262.460113525 256.0703125 256.629882812 257.110351562 257.450195312 257.650390625 257.73046875 257.799804688 257.889648438 257.969726562 257.9296875 257.719726562 257.370117188 256.849609375 256.08984375 255.080078125 253.950195312 252.91015625 240.470153809 241.119567871 241.689880371 242.029724121 242.199645996 242.390075684 242.649841309 242.850036621 242.909606934 242.909606934 242.920349121 242.750427246 242.220153809 241.500427246 240.960388184 240.710388184 240.500427246 230.570037842 231.070037842 231.610076904 232.130096436 232.529998779 232.840057373 233.090057373 233.309783936 233.449920654 233.550018311 233.579803467 233.429901123 233.099822998 232.869842529 233.059783936 233.529998779 233.840057373 218.999984741 219.350082397 219.770004272 220.22996521 220.629867554 220.919906616 221.080062866 221.189926147 221.299789429 221.399887085 221.410140991 221.399887085 221.629867554 222.220199585 222.999984741 223.649887085 224.049789429 206.589859009 206.120132446 205.870132446 205.890151978 206.069839478 206.279800415 206.500015259 206.720230103 206.85987854 206.85987854 206.850112915 207.089859009 207.77003479 208.720230103 209.689956665 210.560073853 211.370132446 194.830230713 193.500152588 192.299957275 191.389801025 190.960113525 190.8800354 190.780426025 190.420074463 189.96987915 189.8097229 190.120269775 190.839996338 191.830230713 192.960113525 194.139801025 195.29019165 196.4503479 197.950393677 196.330276489 194.759963989 193.389846802 192.120315552 191.000198364 190.210159302 189.899612427 189.929885864 190.059768677 190.200393677 190.380081177 190.599807739 190.880081177 191.319534302 192.009963989 192.969924927 207.469848633 206.67980957 205.859985352 205.060180664 204.409790039 203.969848633 203.779907227 203.75012207 203.75012207 203.690063477 203.529907227 203.259887695 202.830200195 202.25012207 201.540161133 200.859985352 200.42980957 217.590026855 216.989929199 216.449890137 215.949890137 215.590026855 215.469909668 215.529968262 215.619812012 215.650085449 215.650085449 215.619812012 215.560241699 215.610046387 215.810241699 215.860046387 215.25994873 213.889831543 220.070388794 220.330154419 220.620193481 220.839920044 220.919998169 220.839920044 220.629959106 220.419998169 220.290115356 220.269607544 220.309646606 220.360427856 220.349685669 220.280349731 220.240310669 220.229568481 219.919998169 228.759689331 228.209884644 227.599533081 226.929611206 226.440353394 226.379806519 226.610275269 226.759689331 226.810470581 226.990158081 227.440353394 228.020431519 228.620040894 229.310470581 230.099533081 230.789962769 231.240158081 298.31060791 298.800842285 299.179748535 299.49029541 299.58013916 299.250061035 298.68951416 298.359436035 298.359436035 298.33013916 298.140686035 298.06060791 298.06060791 297.58013916 296.429748535 295.339904785 294.910217285 292.770690918 293.110534668 293.450378418 293.690612793 293.669128418 293.399597168 293.130065918 293.040222168 293.049987793 292.969909668 292.839050293 292.850769043 292.919128418 292.630065918 291.809753418 290.770690918 289.950378418 287.909576416 288.140045166 288.489654541 288.880279541 289.029693604 288.850006104 288.569732666 288.489654541 288.630279541 288.760162354 288.779693604 288.819732666 288.890045166 288.619537354 287.750396729 286.550201416 285.550201416 280.849975586 280.930053711 280.960327148 281.069702148 281.340209961 281.689819336 282.059936523 282.330444336 282.319702148 281.989624023 281.519897461 281.140014648 280.819702148 280.430053711 279.930053711 279.489624023 279.189819336 274.979797363 275.050109863 275.090148926 275.160461426 275.340148926 275.609680176 275.889953613 276.090148926 276.139953613 275.939758301 275.519836426 274.979797363 274.429992676 273.830383301 273.080383301 272.279602051 271.609680176 266.3800354 266.910308838 267.359527588 267.660308838 267.859527588 267.990386963 268.0597229 268.099761963 268.189605713 268.299957275 268.21987915 267.79019165 267.019683838 266.000152588 264.859527588 263.79019165 262.8800354 255.780273438 256.389648438 256.879882812 257.25 257.5 257.650390625 257.759765625 257.889648438 257.98046875 257.919921875 257.669921875 257.25 256.73046875 256.01953125 255.08984375 254.01953125 252.91015625 240.329528809 240.989685059 241.550231934 241.899841309 242.109802246 242.309997559 242.569763184 242.760192871 242.829528809 242.829528809 242.819763184 242.649841309 242.149841309 241.420349121 240.729919434 240.260192871 239.880310059 230.369842529 230.889862061 231.460174561 232.000213623 232.400115967 232.670135498 232.940155029 233.199920654 233.400115967 233.489959717 233.480194092 233.289764404 232.929901123 232.579803467 232.520233154 232.730194092 232.920135498 218.72996521 219.06980896 219.499984741 219.970199585 220.399887085 220.720199585 220.950180054 221.089828491 221.209945679 221.290023804 221.279769897 221.240219116 221.370101929 221.830062866 222.499984741 223.080062866 223.419906616 206.339859009 205.890151978 205.700210571 205.729995728 205.919937134 206.189956665 206.479995728 206.720230103 206.830093384 206.790054321 206.759780884 207.009780884 207.629898071 208.52003479 209.470230103 210.35987854 211.18019104 195.139801025 193.799957275 192.589996338 191.710113525 191.250152588 191.0597229 190.799957275 190.370269775 189.979644775 189.920074463 190.269683838 190.960113525 191.929840088 193.089996338 194.3097229 195.479644775 196.64956665 198.429885864 196.790237427 195.200393677 193.759963989 192.439651489 191.269729614 190.469924927 190.149612427 190.179885864 190.290237427 190.429885864 190.630081177 190.910354614 191.210159302 191.639846802 192.290237427 193.219924927 207.639770508 206.830200195 205.980102539 205.150024414 204.449829102 203.949829102 203.690063477 203.620239258 203.620239258 203.600219727 203.509887695 203.310180664 202.940063477 202.389770508 201.710083008 201.060180664 200.639770508 217.719909668 217.139831543 216.570007324 216.029968262 215.699890137 215.639831543 215.710144043 215.750183105 215.730163574 215.739929199 215.730163574 215.630065918 215.570007324 215.699890137 215.770202637 215.219909668 213.900085449 220.030349731 220.259841919 220.580154419 220.849685669 220.950271606 220.839920044 220.599685669 220.370193481 220.229568481 220.189529419 220.240310669 220.309646606 220.339920044 220.290115356 220.309646606 220.370193481 220.120193481 228.929611206 228.440353394 227.690353394 226.799728394 226.219650269 226.240158081 226.560470581 226.730392456 226.730392456 226.900314331 227.360275269 227.900314331 228.440353394 229.150314331 229.999923706 230.719650269 231.179611206 298.300842285 298.72076416 299.11920166 299.41998291 299.410217285 299.050842285 298.65045166 298.480529785 298.47076416 298.289123535 297.980529785 297.890686035 297.910217285 297.41998291 296.230529785 295.02935791 294.41998291 292.690612793 292.889831543 293.239440918 293.520690918 293.469909668 293.200378418 293.040222168 293.120300293 293.169128418 292.960144043 292.680847168 292.649597168 292.790222168 292.579284668 291.770690918 290.620300293 289.540222168 287.800201416 287.979888916 288.399810791 288.859771729 288.989654541 288.739654541 288.519927979 288.609771729 288.800201416 288.739654541 288.550201416 288.609771729 288.869537354 288.699615479 287.699615479 286.290435791 285.119537354 280.859741211 280.939819336 280.880249023 280.899780273 281.140014648 281.550170898 282.000366211 282.290405273 282.330444336 282.080444336 281.640014648 281.159545898 280.680053711 280.180053711 279.710327148 279.359741211 279.109741211 274.800109863 274.929992676 275.040344238 275.170227051 275.389953613 275.689758301 275.989562988 276.189758301 276.189758301 275.929992676 275.470031738 274.929992676 274.410461426 273.819641113 273.120422363 272.410461426 271.809875488 266.229644775 266.71987915 267.14956665 267.490386963 267.769683838 267.960113525 268.04019165 268.070465088 268.179840088 268.299957275 268.240386963 267.820465088 267.070465088 266.099761963 265.099761963 264.179840088 263.359527588 255.610351562 256.219726562 256.709960938 257.08984375 257.370117188 257.5703125 257.73046875 257.860351562 257.950195312 257.889648438 257.610351562 257.150390625 256.559570312 255.83984375 254.959960938 253.950195312 252.879882812 240.250427246 240.869567871 241.399841309 241.779724121 242.019958496 242.239685059 242.479919434 242.670349121 242.760192871 242.769958496 242.750427246 242.569763184 242.090270996 241.369567871 240.600036621 239.949645996 239.409606934 230.259979248 230.779998779 231.360076904 231.889862061 232.259979248 232.529998779 232.800018311 233.099822998 233.329803467 233.409881592 233.349822998 233.150115967 232.789764404 232.369842529 232.119842529 232.090057373 232.119842529 218.510238647 218.879867554 219.330062866 219.779769897 220.169906616 220.499984741 220.779769897 220.970199585 221.100082397 221.149887085 221.129867554 221.06980896 221.14012146 221.47996521 222.020004272 222.510238647 222.799789429 205.93019104 205.580093384 205.490249634 205.600112915 205.839859009 206.160171509 206.490249634 206.709976196 206.750015259 206.68019104 206.660171509 206.890151978 207.459976196 208.27003479 209.200210571 210.120132446 210.959976196 195.389801025 194.000152588 192.780426025 191.929840088 191.460113525 191.170074463 190.769683838 190.299957275 190.000152588 190.049957275 190.4503479 191.109527588 192.0597229 193.229644775 194.479644775 195.660308838 196.8097229 198.809768677 197.179885864 195.569534302 194.090042114 192.710159302 191.509963989 190.700393677 190.380081177 190.380081177 190.490432739 190.649612427 190.899612427 191.219924927 191.550003052 191.969924927 192.580276489 193.469924927 207.799926758 206.980102539 206.109985352 205.270141602 204.529907227 203.989868164 203.67980957 203.560180664 203.540161133 203.529907227 203.469848633 203.299926758 202.980102539 202.489868164 201.900024414 201.299926758 200.900024414 217.779968262 217.190124512 216.570007324 216.000183105 215.699890137 215.710144043 215.810241699 215.820007324 215.770202637 215.799987793 215.840026855 215.730163574 215.59979248 215.650085449 215.679870605 215.150085449 213.860046387 220.049880981 220.240310669 220.549880981 220.839920044 220.950271606 220.820388794 220.540115356 220.259841919 220.110427856 220.080154419 220.150466919 220.240310669 220.259841919 220.200271606 220.240310669 220.389724731 220.250076294 229.089767456 228.620040894 227.820236206 226.820236206 226.169845581 226.179611206 226.570236206 226.810470581 226.839767456 226.999923706 227.349533081 227.780197144 228.289962769 229.080001831 230.020431519 230.730392456 231.129806519 298.20904541 298.63092041 299.08013916 299.359436035 299.289123535 298.91998291 298.539123535 298.33013916 298.250061035 298.11920166 297.97076416 297.91998291 297.820373535 297.250061035 296.089904785 294.839904785 293.890686035 292.499206543 292.659362793 293.059753418 293.389831543 293.350769043 293.049987793 292.889831543 292.969909668 293.020690918 292.850769043 292.620300293 292.579284668 292.649597168 292.409362793 291.579284668 290.280456543 288.850769043 287.519927979 287.689849854 288.199615479 288.739654541 288.869537354 288.619537354 288.449615479 288.609771729 288.779693604 288.630279541 288.369537354 288.479888916 288.840240479 288.689849854 287.580474854 285.979888916 284.609771729 280.899780273 280.989624023 280.819702148 280.720092773 280.949584961 281.449584961 281.970092773 282.309936523 282.409545898 282.250366211 281.840209961 281.250366211 280.649780273 280.109741211 279.699584961 279.380249023 279.069702148 274.809875488 275.029602051 275.179992676 275.279602051 275.429992676 275.700500488 276.029602051 276.269836426 276.279602051 276.000305176 275.510070801 274.960266113 274.399719238 273.769836426 273.090148926 272.479797363 271.989562988 266.189605713 266.64956665 267.0597229 267.410308838 267.740386963 267.960113525 268.0597229 268.089996338 268.189605713 268.29019165 268.179840088 267.729644775 266.96987915 266.049957275 265.1300354 264.349761963 263.64956665 255.5703125 256.169921875 256.610351562 256.969726562 257.290039062 257.51953125 257.690429688 257.809570312 257.870117188 257.809570312 257.549804688 257.099609375 256.469726562 255.690429688 254.809570312 253.870117188 252.889648438 240.189880371 240.729919434 241.210388184 241.609802246 241.909606934 242.149841309 242.369567871 242.559997559 242.689880371 242.739685059 242.689880371 242.489685059 242.010192871 241.309997559 240.500427246 239.729919434 239.050231934 230.210174561 230.699920654 231.230194092 231.699920654 232.050018311 232.329803467 232.630096436 232.969940186 233.219940186 233.289764404 233.210174561 233.009979248 232.659881592 232.219940186 231.849822998 231.639862061 231.520233154 218.399887085 218.799789429 219.249984741 219.64012146 219.959945679 220.270004272 220.580062866 220.81980896 220.959945679 221.010238647 220.970199585 220.899887085 220.919906616 221.149887085 221.560043335 221.970199585 222.240219116 205.509780884 205.279800415 205.319839478 205.540054321 205.830093384 206.18019104 206.509780884 206.689956665 206.669937134 206.549819946 206.529800415 206.740249634 207.240249634 208.000015259 208.919937134 209.85987854 210.700210571 195.549957275 194.139801025 192.910308838 192.089996338 191.64956665 191.3097229 190.830230713 190.339996338 190.109527588 190.240386963 190.639801025 191.259918213 192.189605713 193.3800354 194.6300354 195.799957275 196.910308838 199.090042114 197.500198364 195.920120239 194.399612427 192.960159302 191.729690552 190.920120239 190.580276489 190.559768677 190.660354614 190.849807739 191.130081177 191.479690552 191.849807739 192.269729614 192.899612427 193.750198364 207.949829102 207.100219727 206.210083008 205.370239258 204.659790039 204.109985352 203.75012207 203.560180664 203.50012207 203.480102539 203.440063477 203.319946289 203.069946289 202.67980957 202.170043945 201.639770508 201.219848633 217.739929199 217.130065918 216.50994873 215.949890137 215.67010498 215.710144043 215.829772949 215.799987793 215.739929199 215.810241699 215.909851074 215.829772949 215.650085449 215.59979248 215.549987793 215.020202637 213.799987793 220.120193481 220.309646606 220.599685669 220.849685669 220.939529419 220.799880981 220.519607544 220.240310669 220.070388794 220.030349731 220.080154419 220.169998169 220.169998169 220.099685669 220.160232544 220.389724731 220.360427856 229.139572144 228.580001831 227.780197144 226.849533081 226.249923706 226.230392456 226.560470581 226.820236206 226.929611206 227.099533081 227.400314331 227.759689331 228.280197144 229.120040894 230.049728394 230.700119019 231.039962769 298.000061035 298.480529785 298.97076416 299.22076416 299.160217285 298.88092041 298.480529785 298.089904785 297.88092041 297.95904541 298.140686035 298.11920166 297.72076416 296.95904541 295.91998291 294.68951416 293.40045166 292.249206543 292.460144043 292.930847168 293.319519043 293.290222168 292.979675293 292.729675293 292.690612793 292.719909668 292.700378418 292.659362793 292.639831543 292.520690918 292.120300293 291.239440918 289.829284668 288.130065918 287.149810791 287.369537354 287.960357666 288.550201416 288.699615479 288.460357666 288.279693604 288.399810791 288.559967041 288.470123291 288.319732666 288.470123291 288.779693604 288.540435791 287.369537354 285.659576416 284.109771729 280.989624023 281.059936523 280.790405273 280.599975586 280.849975586 281.439819336 282.019897461 282.340209961 282.449584961 282.340209961 281.960327148 281.340209961 280.689819336 280.199584961 279.840209961 279.519897461 279.090209961 274.910461426 275.229797363 275.370422363 275.370422363 275.410461426 275.630187988 275.979797363 276.260070801 276.300109863 276.029602051 275.540344238 274.970031738 274.359680176 273.670227051 272.950500488 272.389953613 272.019836426 266.210113525 266.689605713 267.070465088 267.39956665 267.710113525 267.9503479 268.080230713 268.1300354 268.21987915 268.269683838 268.089996338 267.589996338 266.8097229 265.910308838 265.030426025 264.299957275 263.679840088 255.599609375 256.150390625 256.559570312 256.900390625 257.209960938 257.459960938 257.650390625 257.759765625 257.799804688 257.709960938 257.469726562 257.0703125 256.440429688 255.629882812 254.759765625 253.879882812 252.950195312 240.140075684 240.590270996 241.000427246 241.399841309 241.750427246 242.019958496 242.250427246 242.449645996 242.609802246 242.680114746 242.619567871 242.380310059 241.909606934 241.210388184 240.399841309 239.559997559 238.790466309 230.179901123 230.619842529 231.050018311 231.449920654 231.779998779 232.099822998 232.460174561 232.820037842 233.070037842 233.150115967 233.070037842 232.860076904 232.500213623 232.059783936 231.639862061 231.309783936 231.070037842 218.359848022 218.779769897 219.200180054 219.520004272 219.779769897 220.06980896 220.379867554 220.649887085 220.799789429 220.859848022 220.839828491 220.740219116 220.700180054 220.830062866 221.149887085 221.499984741 221.740219116 205.140151978 205.040054321 205.220230103 205.509780884 205.850112915 206.209976196 206.509780884 206.649917603 206.580093384 206.439956665 206.390151978 206.560073853 207.02003479 207.750015259 208.660171509 209.580093384 210.379898071 195.609527588 194.210113525 193.019683838 192.250152588 191.849761963 191.490386963 190.96987915 190.46987915 190.280426025 190.439605713 190.8097229 191.389801025 192.269683838 193.439605713 194.679840088 195.839996338 196.960113525 199.280471802 197.800003052 196.259963989 194.700393677 193.210159302 191.979690552 191.170120239 190.809768677 190.769729614 190.870315552 191.069534302 191.370315552 191.729690552 192.120315552 192.599807739 193.259963989 194.120315552 208.020141602 207.130004883 206.219848633 205.409790039 204.730102539 204.17980957 203.779907227 203.560180664 203.460083008 203.42980957 203.42980957 203.389770508 203.25012207 202.960083008 202.540161133 202.029907227 201.569946289 217.75994873 217.150085449 216.570007324 216.070007324 215.810241699 215.810241699 215.869812012 215.799987793 215.739929199 215.820007324 215.949890137 215.889831543 215.679870605 215.560241699 215.429870605 214.889831543 213.779968262 220.160232544 220.389724731 220.660232544 220.849685669 220.889724731 220.750076294 220.519607544 220.309646606 220.150466919 220.049880981 220.059646606 220.120193481 220.150466919 220.120193481 220.219802856 220.500076294 220.549880981 229.089767456 228.379806519 227.560470581 226.799728394 226.330001831 226.280197144 226.490158081 226.700119019 226.860275269 227.099533081 227.419845581 227.799728394 228.330001831 229.120040894 229.940353394 230.499923706 230.830001831 297.81060791 298.31060791 298.750061035 298.93951416 298.929748535 298.839904785 298.550842285 298.06060791 297.75982666 297.97076416 298.34967041 298.25982666 297.519592285 296.58013916 295.66998291 294.519592285 292.99029541 292.049987793 292.329284668 292.809753418 293.149597168 293.130065918 292.899597168 292.680847168 292.579284668 292.549987793 292.630065918 292.719909668 292.659362793 292.339050293 291.790222168 290.880065918 289.440612793 287.579284668 286.830474854 287.109771729 287.750396729 288.359771729 288.550201416 288.369537354 288.189849854 288.250396729 288.390045166 288.430084229 288.399810791 288.529693604 288.670318604 288.319732666 287.149810791 285.420318604 283.699615479 281.080444336 281.080444336 280.720092773 280.489624023 280.790405273 281.479858398 282.059936523 282.319702148 282.370483398 282.279663086 281.920288086 281.319702148 280.729858398 280.319702148 280.029663086 279.670288086 279.120483398 275.019836426 275.380187988 275.479797363 275.389953613 275.340148926 275.540344238 275.899719238 276.210266113 276.269836426 276.000305176 275.489562988 274.920227051 274.300109863 273.580383301 272.840148926 272.300109863 271.960266113 266.269683838 266.750152588 267.089996338 267.359527588 267.639801025 267.889801025 268.049957275 268.139801025 268.210113525 268.2003479 267.979644775 267.460113525 266.7003479 265.799957275 264.920074463 264.170074463 263.549957275 255.620117188 256.099609375 256.48046875 256.830078125 257.129882812 257.400390625 257.599609375 257.740234375 257.75 257.610351562 257.370117188 257.0 256.41015625 255.599609375 254.709960938 253.860351562 252.969726562 240.109802246 240.489685059 240.840270996 241.189880371 241.559997559 241.859802246 242.100036621 242.319763184 242.510192871 242.590270996 242.519958496 242.269958496 241.790466309 241.109802246 240.300231934 239.460388184 238.640075684 230.170135498 230.570037842 230.920135498 231.230194092 231.539764404 231.909881592 232.300018311 232.650115967 232.900115967 233.009979248 232.949920654 232.719940186 232.349822998 231.889862061 231.449920654 231.079803467 230.750213623 218.350082397 218.720199585 219.080062866 219.359848022 219.609848022 219.899887085 220.209945679 220.47996521 220.649887085 220.72996521 220.720199585 220.600082397 220.490219116 220.529769897 220.779769897 221.100082397 221.299789429 204.839859009 204.839859009 205.100112915 205.459976196 205.839859009 206.200210571 206.470230103 206.580093384 206.509780884 206.350112915 206.27003479 206.410171509 206.839859009 207.540054321 208.410171509 209.259780884 209.990249634 195.580230713 194.280426025 193.160308838 192.4503479 192.0597229 191.670074463 191.109527588 190.620269775 190.46987915 190.639801025 190.979644775 191.500152588 192.320465088 193.420074463 194.620269775 195.79019165 196.939605713 199.460159302 198.050003052 196.550003052 194.960159302 193.450393677 192.240432739 191.469924927 191.099807739 191.019729614 191.120315552 191.340042114 191.649612427 192.030471802 192.450393677 193.000198364 193.700393677 194.580276489 208.069946289 207.109985352 206.17980957 205.380004883 204.699829102 204.150024414 203.739868164 203.489868164 203.400024414 203.400024414 203.440063477 203.469848633 203.420043945 203.239868164 202.880004883 202.400024414 201.949829102 217.840026855 217.279968262 216.790222168 216.360046387 216.090026855 216.000183105 215.989929199 215.889831543 215.820007324 215.889831543 216.000183105 215.940124512 215.750183105 215.590026855 215.409851074 214.889831543 213.869812012 220.099685669 220.349685669 220.629959106 220.799880981 220.790115356 220.650466919 220.490310669 220.330154419 220.200271606 220.070388794 220.009841919 220.059646606 220.139724731 220.219802856 220.379959106 220.679763794 220.769607544 229.110275269 228.259689331 227.389572144 226.709884644 226.330001831 226.280197144 226.440353394 226.639572144 226.820236206 227.060470581 227.419845581 227.860275269 228.400314331 229.060470581 229.730392456 230.219650269 230.580001831 297.74029541 298.20904541 298.570373535 298.640686035 298.63092041 298.699279785 298.61920166 298.18951416 297.820373535 298.000061035 298.38092041 298.18951416 297.320373535 296.339904785 295.480529785 294.289123535 292.570373535 291.919128418 292.239440918 292.659362793 292.899597168 292.860534668 292.760925293 292.700378418 292.630065918 292.549987793 292.589050293 292.659362793 292.530456543 292.130065918 291.530456543 290.630065918 289.100769043 287.089050293 286.590240479 286.939849854 287.590240479 288.199615479 288.460357666 288.380279541 288.260162354 288.290435791 288.420318604 288.460357666 288.439849854 288.470123291 288.489654541 288.130279541 287.000396729 285.210357666 283.330474854 281.149780273 281.029663086 280.569702148 280.330444336 280.710327148 281.449584961 282.000366211 282.210327148 282.250366211 282.149780273 281.800170898 281.229858398 280.699584961 280.390014648 280.149780273 279.729858398 279.090209961 275.099914551 275.450500488 275.479797363 275.319641113 275.250305176 275.439758301 275.819641113 276.160461426 276.250305176 275.979797363 275.450500488 274.849914551 274.260070801 273.599914551 272.920227051 272.359680176 271.960266113 266.280426025 266.780426025 267.0597229 267.269683838 267.530426025 267.799957275 268.000152588 268.089996338 268.1300354 268.070465088 267.830230713 267.330230713 266.599761963 265.740386963 264.849761963 264.0597229 263.389801025 255.549804688 255.990234375 256.370117188 256.719726562 257.030273438 257.290039062 257.51953125 257.6796875 257.700195312 257.540039062 257.26953125 256.900390625 256.299804688 255.450195312 254.530273438 253.6796875 252.8203125 240.109802246 240.439880371 240.720153809 241.010192871 241.329528809 241.649841309 241.930114746 242.189880371 242.369567871 242.449645996 242.380310059 242.140075684 241.670349121 240.979919434 240.180114746 239.359802246 238.540466309 230.190155029 230.559783936 230.829803467 231.070037842 231.349822998 231.739959717 232.139862061 232.469940186 232.719940186 232.860076904 232.840057373 232.610076904 232.190155029 231.699920654 231.239959717 230.860076904 230.480194092 218.310043335 218.609848022 218.899887085 219.160140991 219.459945679 219.799789429 220.129867554 220.370101929 220.540023804 220.629867554 220.620101929 220.470199585 220.299789429 220.279769897 220.490219116 220.770004272 220.930160522 204.600112915 204.660171509 204.979995728 205.390151978 205.830093384 206.189956665 206.439956665 206.52003479 206.439956665 206.290054321 206.189956665 206.299819946 206.709976196 207.379898071 208.169937134 208.939956665 209.620132446 195.54019165 194.389801025 193.410308838 192.750152588 192.330230713 191.870269775 191.29019165 190.8097229 190.64956665 190.820465088 191.14956665 191.6300354 192.3800354 193.39956665 194.549957275 195.729644775 196.939605713 199.639846802 198.259963989 196.759963989 195.149612427 193.660354614 192.500198364 191.769729614 191.389846802 191.269729614 191.349807739 191.620315552 191.969924927 192.370315552 192.840042114 193.420120239 194.160354614 195.059768677 208.130004883 207.130004883 206.190063477 205.359985352 204.670043945 204.109985352 203.699829102 203.460083008 203.389770508 203.409790039 203.469848633 203.549926758 203.549926758 203.440063477 203.159790039 202.75012207 202.359985352 217.900085449 217.389831543 216.960144043 216.560241699 216.250183105 216.079772949 216.020202637 215.949890137 215.909851074 215.960144043 216.040222168 215.989929199 215.840026855 215.699890137 215.50994873 214.989929199 214.040222168 220.000076294 220.229568481 220.540115356 220.729568481 220.719802856 220.570388794 220.410232544 220.299880981 220.210037231 220.070388794 219.950271606 219.969802856 220.080154419 220.219802856 220.419998169 220.750076294 220.870193481 229.200119019 228.330001831 227.419845581 226.690353394 226.289962769 226.249923706 226.490158081 226.749923706 226.900314331 227.060470581 227.400314331 227.929611206 228.509689331 229.089767456 229.639572144 230.099533081 230.490158081 297.730529785 298.179748535 298.50982666 298.519592285 298.410217285 298.45904541 298.45904541 298.15045166 297.77935791 297.820373535 298.089904785 297.97076416 297.289123535 296.41998291 295.43951416 293.929748535 291.95904541 291.870300293 292.169128418 292.549987793 292.729675293 292.669128418 292.620300293 292.649597168 292.630065918 292.510925293 292.450378418 292.450378418 292.309753418 291.969909668 291.450378418 290.450378418 288.649597168 286.380065918 286.489654541 286.830474854 287.460357666 288.059967041 288.369537354 288.399810791 288.369537354 288.420318604 288.489654541 288.430084229 288.279693604 288.220123291 288.269927979 287.989654541 286.880279541 284.970123291 282.920318604 281.189819336 280.930053711 280.409545898 280.199584961 280.599975586 281.319702148 281.840209961 282.050170898 282.140014648 282.069702148 281.710327148 281.140014648 280.670288086 280.399780273 280.140014648 279.659545898 278.970092773 275.130187988 275.470031738 275.450500488 275.250305176 275.149719238 275.340148926 275.739562988 276.139953613 276.260070801 276.000305176 275.429992676 274.790344238 274.210266113 273.660461426 273.090148926 272.529602051 272.019836426 266.21987915 266.71987915 266.960113525 267.1300354 267.410308838 267.740386963 267.96987915 268.04019165 268.009918213 267.920074463 267.670074463 267.210113525 266.519683838 265.679840088 264.8097229 263.979644775 263.210113525 255.459960938 255.849609375 256.219726562 256.58984375 256.879882812 257.120117188 257.370117188 257.580078125 257.629882812 257.469726562 257.1796875 256.76953125 256.120117188 255.219726562 254.259765625 253.400390625 252.549804688 240.090270996 240.380310059 240.590270996 240.800231934 241.069763184 241.380310059 241.729919434 242.019958496 242.210388184 242.269958496 242.220153809 242.010192871 241.550231934 240.829528809 239.970153809 239.159606934 238.380310059 230.199920654 230.509979248 230.719940186 230.880096436 231.150115967 231.529998779 231.940155029 232.279998779 232.550018311 232.719940186 232.730194092 232.500213623 232.029998779 231.489959717 230.989959717 230.599822998 230.219940186 218.22996521 218.459945679 218.680160522 218.959945679 219.31980896 219.740219116 220.100082397 220.339828491 220.470199585 220.540023804 220.510238647 220.339828491 220.149887085 220.100082397 220.249984741 220.47996521 220.580062866 204.450210571 204.540054321 204.879898071 205.35987854 205.850112915 206.229995728 206.450210571 206.500015259 206.390151978 206.220230103 206.10987854 206.209976196 206.600112915 207.220230103 207.950210571 208.649917603 209.319839478 195.549957275 194.5597229 193.729644775 193.120269775 192.64956665 192.139801025 191.530426025 191.009918213 190.839996338 190.96987915 191.29019165 191.780426025 192.509918213 193.490386963 194.599761963 195.79019165 197.049957275 199.849807739 198.479690552 196.960159302 195.349807739 193.889846802 192.790237427 192.080276489 191.649612427 191.490432739 191.590042114 191.899612427 192.300003052 192.729690552 193.210159302 193.819534302 194.590042114 195.500198364 208.210083008 207.199829102 206.239868164 205.400024414 204.699829102 204.139770508 203.739868164 203.540161133 203.460083008 203.480102539 203.540161133 203.630004883 203.67980957 203.639770508 203.460083008 203.159790039 202.83996582 217.869812012 217.329772949 216.900085449 216.500183105 216.159851074 215.969909668 215.92010498 215.92010498 215.929870605 215.980163574 216.029968262 216.000183105 215.900085449 215.770202637 215.570007324 215.060241699 214.17010498 219.969802856 220.179763794 220.500076294 220.740310669 220.759841919 220.580154419 220.379959106 220.280349731 220.229568481 220.110427856 219.950271606 219.910232544 219.979568481 220.110427856 220.339920044 220.669998169 220.849685669 229.190353394 228.429611206 227.530197144 226.740158081 226.259689331 226.219650269 226.539962769 226.839767456 226.929611206 226.999923706 227.360275269 227.990158081 228.650314331 229.209884644 229.719650269 230.169845581 230.539962769 297.63092041 298.070373535 298.480529785 298.570373535 298.36920166 298.20904541 298.109436035 297.86920166 297.56060791 297.480529785 297.66998291 297.750061035 297.41998291 296.65045166 295.359436035 293.390686035 291.140686035 291.809753418 292.059753418 292.520690918 292.770690918 292.719909668 292.569519043 292.499206543 292.440612793 292.339050293 292.280456543 292.239440918 292.139831543 291.940612793 291.450378418 290.239440918 288.030456543 285.430847168 286.510162354 286.790435791 287.359771729 287.960357666 288.279693604 288.330474854 288.330474854 288.399810791 288.439849854 288.260162354 287.979888916 287.930084229 288.100006104 287.890045166 286.689849854 284.590240479 282.489654541 281.149780273 280.819702148 280.319702148 280.170288086 280.569702148 281.180053711 281.649780273 281.939819336 282.120483398 282.069702148 281.670288086 281.130249023 280.689819336 280.399780273 280.050170898 279.519897461 278.809936523 275.120422363 275.479797363 275.450500488 275.220031738 275.080383301 275.250305176 275.649719238 276.069641113 276.239562988 275.979797363 275.389953613 274.689758301 274.120422363 273.630187988 273.139953613 272.590148926 271.979797363 266.120269775 266.589996338 266.799957275 266.979644775 267.299957275 267.689605713 267.960113525 268.009918213 267.920074463 267.8097229 267.620269775 267.179840088 266.46987915 265.620269775 264.759918213 263.889801025 263.000152588 255.370117188 255.700195312 256.059570312 256.419921875 256.709960938 256.940429688 257.190429688 257.440429688 257.540039062 257.41015625 257.120117188 256.66015625 255.940429688 255.0 254.040039062 253.1796875 252.309570312 239.989685059 240.229919434 240.390075684 240.540466309 240.769958496 241.090270996 241.489685059 241.840270996 242.019958496 242.059997559 242.029724121 241.859802246 241.399841309 240.619567871 239.699645996 238.869567871 238.119567871 230.159881592 230.389862061 230.509979248 230.610076904 230.860076904 231.259979248 231.699920654 232.079803467 232.389862061 232.599822998 232.610076904 232.340057373 231.849822998 231.250213623 230.699920654 230.289764404 229.929901123 218.149887085 218.31980896 218.490219116 218.749984741 219.160140991 219.649887085 220.060043335 220.31980896 220.439926147 220.459945679 220.379867554 220.209945679 220.010238647 219.930160522 220.020004272 220.180160522 220.22996521 204.35987854 204.500015259 204.85987854 205.370132446 205.890151978 206.290054321 206.479995728 206.479995728 206.330093384 206.140151978 206.040054321 206.140151978 206.500015259 207.069839478 207.750015259 208.450210571 209.140151978 195.599761963 194.769683838 194.049957275 193.479644775 192.960113525 192.39956665 191.750152588 191.229644775 191.009918213 191.099761963 191.39956665 191.889801025 192.64956665 193.6300354 194.759918213 195.990386963 197.269683838 200.099807739 198.740432739 197.219924927 195.630081177 194.219924927 193.160354614 192.420120239 191.960159302 191.750198364 191.849807739 192.200393677 192.639846802 193.099807739 193.599807739 194.219924927 195.009963989 195.960159302 208.299926758 207.290161133 206.310180664 205.440063477 204.730102539 204.17980957 203.810180664 203.620239258 203.540161133 203.540161133 203.600219727 203.710083008 203.83996582 203.909790039 203.83996582 203.630004883 203.350219727 217.799987793 217.190124512 216.699890137 216.290222168 215.989929199 215.820007324 215.799987793 215.840026855 215.909851074 215.980163574 216.029968262 216.020202637 215.92010498 215.790222168 215.540222168 215.040222168 214.239929199 220.009841919 220.200271606 220.530349731 220.820388794 220.849685669 220.639724731 220.379959106 220.290115356 220.299880981 220.210037231 220.019607544 219.889724731 219.919998169 220.059646606 220.290115356 220.620193481 220.820388794 229.060470581 228.410079956 227.599533081 226.820236206 226.310470581 226.249923706 226.520431519 226.740158081 226.749923706 226.820236206 227.280197144 228.049728394 228.770431519 229.320236206 229.799728394 230.249923706 230.549728394 297.45904541 297.820373535 298.339904785 298.609436035 298.41998291 298.02935791 297.75982666 297.570373535 297.36920166 297.25982666 297.410217285 297.609436035 297.49029541 296.70904541 295.089904785 292.789123535 290.43951416 291.770690918 291.930847168 292.460144043 292.889831543 292.899597168 292.600769043 292.329284668 292.219909668 292.210144043 292.200378418 292.149597168 292.069519043 291.930847168 291.450378418 290.010925293 287.469909668 284.630065918 286.609771729 286.790435791 287.319732666 287.930084229 288.260162354 288.250396729 288.180084229 288.239654541 288.290435791 288.069732666 287.760162354 287.769927979 288.050201416 287.819732666 286.420318604 284.180084229 282.170318604 280.970092773 280.649780273 280.260131836 280.210327148 280.569702148 281.080444336 281.550170898 281.960327148 282.199584961 282.099975586 281.640014648 281.140014648 280.769897461 280.409545898 279.909545898 279.330444336 278.659545898 275.069641113 275.489562988 275.479797363 275.220031738 275.050109863 275.179992676 275.580383301 276.000305176 276.149719238 275.880187988 275.269836426 274.559875488 273.970031738 273.479797363 272.989562988 272.420227051 271.760070801 265.990386963 266.439605713 266.660308838 266.870269775 267.21987915 267.670074463 267.96987915 268.009918213 267.910308838 267.8097229 267.64956665 267.210113525 266.460113525 265.580230713 264.71987915 263.820465088 262.799957275 255.259765625 255.549804688 255.879882812 256.240234375 256.540039062 256.799804688 257.059570312 257.309570312 257.4296875 257.33984375 257.049804688 256.559570312 255.799804688 254.860351562 253.9296875 253.080078125 252.120117188 239.829528809 240.010192871 240.119567871 240.250427246 240.470153809 240.819763184 241.260192871 241.640075684 241.819763184 241.869567871 241.850036621 241.699645996 241.229919434 240.380310059 239.390075684 238.540466309 237.800231934 230.020233154 230.150115967 230.199920654 230.279998779 230.539764404 230.969940186 231.449920654 231.909881592 232.279998779 232.489959717 232.460174561 232.150115967 231.630096436 230.989959717 230.380096436 229.940155029 229.599822998 218.010238647 218.160140991 218.290023804 218.529769897 218.950180054 219.490219116 219.999984741 220.310043335 220.419906616 220.379867554 220.249984741 220.060043335 219.870101929 219.770004272 219.770004272 219.839828491 219.859848022 204.310073853 204.509780884 204.879898071 205.379898071 205.910171509 206.319839478 206.509780884 206.459976196 206.27003479 206.060073853 205.939956665 206.040054321 206.390151978 206.93019104 207.580093384 208.279800415 209.000015259 195.660308838 194.960113525 194.339996338 193.769683838 193.2003479 192.5597229 191.920074463 191.410308838 191.179840088 191.21987915 191.500152588 192.000152588 192.780426025 193.79019165 194.960113525 196.21987915 197.54019165 200.370315552 199.030471802 197.530471802 195.979690552 194.599807739 193.550003052 192.800003052 192.300003052 192.080276489 192.179885864 192.530471802 192.979690552 193.450393677 193.979690552 194.639846802 195.469924927 196.490432739 208.389770508 207.359985352 206.370239258 205.460083008 204.730102539 204.17980957 203.83996582 203.639770508 203.560180664 203.549926758 203.620239258 203.770141602 203.969848633 204.150024414 204.199829102 204.060180664 203.830200195 217.799987793 217.070007324 216.50994873 216.130065918 215.869812012 215.719909668 215.690124512 215.750183105 215.860046387 215.980163574 216.079772949 216.090026855 216.00994873 215.829772949 215.529968262 215.040222168 214.320007324 220.019607544 220.210037231 220.559646606 220.830154419 220.860427856 220.610427856 220.330154419 220.259841919 220.320388794 220.280349731 220.059646606 219.879959106 219.900466919 220.080154419 220.360427856 220.689529419 220.860427856 228.980392456 228.379806519 227.650314331 226.929611206 226.469650269 226.379806519 226.530197144 226.580001831 226.509689331 226.679611206 227.299728394 228.129806519 228.820236206 229.330001831 229.799728394 230.230392456 230.480392456 297.390686035 297.589904785 298.089904785 298.45904541 298.339904785 297.86920166 297.519592285 297.390686035 297.289123535 297.199279785 297.31060791 297.52935791 297.41998291 296.52935791 294.75982666 292.45904541 290.179748535 291.790222168 291.829284668 292.339050293 292.889831543 292.950378418 292.589050293 292.210144043 292.089050293 292.149597168 292.180847168 292.100769043 291.979675293 291.880065918 291.409362793 289.899597168 287.219909668 284.290222168 286.670318604 286.760162354 287.279693604 287.960357666 288.319732666 288.220123291 288.040435791 288.059967041 288.109771729 287.909576416 287.649810791 287.760162354 288.080474854 287.760162354 286.210357666 283.960357666 282.130279541 280.720092773 280.430053711 280.149780273 280.180053711 280.519897461 281.000366211 281.550170898 282.099975586 282.359741211 282.109741211 281.569702148 281.130249023 280.840209961 280.399780273 279.739624023 279.109741211 278.529663086 275.040344238 275.460266113 275.439758301 275.160461426 275.000305176 275.149719238 275.550109863 275.950500488 276.050109863 275.750305176 275.139953613 274.460266113 273.849914551 273.300109863 272.739562988 272.120422363 271.439758301 265.8800354 266.330230713 266.609527588 266.859527588 267.21987915 267.660308838 267.979644775 268.030426025 267.939605713 267.849761963 267.689605713 267.240386963 266.439605713 265.54019165 264.679840088 263.759918213 262.620269775 255.129882812 255.379882812 255.6796875 256.049804688 256.379882812 256.6796875 256.959960938 257.200195312 257.330078125 257.25 256.98046875 256.48046875 255.700195312 254.780273438 253.900390625 253.01953125 251.91015625 239.640075684 239.750427246 239.840270996 239.970153809 240.210388184 240.590270996 241.059997559 241.449645996 241.659606934 241.710388184 241.710388184 241.559997559 241.040466309 240.130310059 239.109802246 238.250427246 237.489685059 229.809783936 229.849822998 229.860076904 229.969940186 230.279998779 230.739959717 231.259979248 231.759979248 232.170135498 232.369842529 232.279998779 231.929901123 231.369842529 230.690155029 230.039764404 229.590057373 229.250213623 217.810043335 217.950180054 218.060043335 218.279769897 218.700180054 219.310043335 219.89012146 220.270004272 220.39012146 220.310043335 220.109848022 219.89012146 219.700180054 219.560043335 219.499984741 219.499984741 219.520004272 204.27003479 204.509780884 204.899917603 205.399917603 205.919937134 206.330093384 206.500015259 206.419937134 206.200210571 205.970230103 205.850112915 205.950210571 206.279800415 206.790054321 207.419937134 208.10987854 208.85987854 195.759918213 195.170074463 194.620269775 194.04019165 193.389801025 192.689605713 192.030426025 191.5597229 191.359527588 191.39956665 191.670074463 192.170074463 192.939605713 193.9503479 195.1300354 196.420074463 197.8097229 200.649612427 199.330276489 197.840042114 196.290237427 194.920120239 193.859573364 193.090042114 192.559768677 192.340042114 192.450393677 192.809768677 193.259963989 193.769729614 194.340042114 195.050003052 195.950393677 197.050003052 208.489868164 207.469848633 206.449829102 205.509887695 204.75012207 204.190063477 203.850219727 203.659790039 203.580200195 203.560180664 203.620239258 203.75012207 204.00012207 204.290161133 204.469848633 204.449829102 204.279907227 217.829772949 217.00994873 216.389831543 216.00994873 215.75994873 215.579772949 215.500183105 215.549987793 215.710144043 215.900085449 216.070007324 216.150085449 216.119812012 215.960144043 215.630065918 215.119812012 214.440124512 220.000076294 220.200271606 220.540115356 220.820388794 220.839920044 220.570388794 220.250076294 220.179763794 220.269607544 220.259841919 220.040115356 219.839920044 219.860427856 220.089920044 220.410232544 220.740310669 220.889724731 229.070236206 228.490158081 227.759689331 227.049728394 226.629806519 226.580001831 226.660079956 226.589767456 226.499923706 226.740158081 227.389572144 228.209884644 228.849533081 229.349533081 229.849533081 230.259689331 230.469650269 297.429748535 297.539123535 297.890686035 298.18951416 298.089904785 297.660217285 297.320373535 297.199279785 297.140686035 297.070373535 297.199279785 297.47076416 297.36920166 296.40045166 294.63092041 292.45904541 290.24029541 291.829284668 291.809753418 292.239440918 292.749206543 292.839050293 292.489440918 292.110534668 291.989440918 292.049987793 292.049987793 291.930847168 291.870300293 291.870300293 291.469909668 289.950378418 287.229675293 284.219909668 286.609771729 286.670318604 287.210357666 287.979888916 288.390045166 288.260162354 287.960357666 287.880279541 287.880279541 287.699615479 287.529693604 287.729888916 288.080474854 287.739654541 286.180084229 284.040435791 282.319732666 280.559936523 280.279663086 280.019897461 280.050170898 280.359741211 280.870483398 281.580444336 282.290405273 282.540405273 282.120483398 281.479858398 281.109741211 280.870483398 280.340209961 279.550170898 278.890014648 278.409545898 275.040344238 275.370422363 275.300109863 275.029602051 274.899719238 275.109680176 275.550109863 275.939758301 276.000305176 275.689758301 275.109680176 274.450500488 273.800109863 273.170227051 272.529602051 271.870422363 271.170227051 265.8097229 266.269683838 266.620269775 266.920074463 267.269683838 267.660308838 267.979644775 268.070465088 267.979644775 267.839996338 267.6300354 267.160308838 266.370269775 265.479644775 264.639801025 263.7003479 262.46987915 255.0 255.219726562 255.490234375 255.860351562 256.240234375 256.580078125 256.879882812 257.110351562 257.209960938 257.139648438 256.900390625 256.41015625 255.650390625 254.75 253.870117188 252.91015625 251.610351562 239.439880371 239.489685059 239.569763184 239.739685059 240.010192871 240.399841309 240.880310059 241.279724121 241.519958496 241.609802246 241.619567871 241.420349121 240.859802246 239.899841309 238.859802246 238.010192871 237.170349121 229.539764404 229.539764404 229.579803467 229.750213623 230.110076904 230.590057373 231.099822998 231.619842529 232.039764404 232.230194092 232.099822998 231.699920654 231.099822998 230.389862061 229.730194092 229.270233154 228.909881592 217.529769897 217.669906616 217.799789429 218.040023804 218.499984741 219.14012146 219.770004272 220.200180054 220.339828491 220.220199585 219.959945679 219.700180054 219.47996521 219.330062866 219.220199585 219.200180054 219.22996521 204.240249634 204.52003479 204.910171509 205.390151978 205.919937134 206.330093384 206.470230103 206.35987854 206.120132446 205.890151978 205.779800415 205.870132446 206.169937134 206.649917603 207.240249634 207.93019104 208.729995728 195.9503479 195.420074463 194.939605713 194.349761963 193.620269775 192.849761963 192.170074463 191.729644775 191.5597229 191.6300354 191.920074463 192.429840088 193.189605713 194.160308838 195.3097229 196.620269775 198.089996338 200.969924927 199.649612427 198.149612427 196.590042114 195.179885864 194.069534302 193.259963989 192.729690552 192.509963989 192.620315552 192.990432739 193.490432739 194.040237427 194.660354614 195.420120239 196.399612427 197.590042114 208.600219727 207.58996582 206.549926758 205.600219727 204.810180664 204.239868164 203.880004883 203.699829102 203.630004883 203.609985352 203.630004883 203.719848633 203.980102539 204.359985352 204.690063477 204.830200195 204.770141602 217.84979248 216.989929199 216.329772949 215.92010498 215.639831543 215.369812012 215.219909668 215.250183105 215.429870605 215.67010498 215.889831543 216.070007324 216.159851074 216.070007324 215.750183105 215.219909668 214.560241699 220.019607544 220.210037231 220.540115356 220.849685669 220.900466919 220.629959106 220.290115356 220.169998169 220.250076294 220.259841919 220.059646606 219.839920044 219.820388794 220.019607544 220.339920044 220.669998169 220.820388794 229.219650269 228.690353394 227.870040894 227.070236206 226.639572144 226.660079956 226.810470581 226.789962769 226.679611206 226.879806519 227.450119019 228.169845581 228.860275269 229.490158081 230.049728394 230.429611206 230.570236206 297.410217285 297.589904785 297.789123535 297.910217285 297.75982666 297.429748535 297.109436035 296.929748535 296.800842285 296.750061035 297.019592285 297.480529785 297.50982666 296.56060791 294.74029541 292.539123535 290.22076416 291.749206543 291.819519043 292.219909668 292.649597168 292.719909668 292.419128418 292.069519043 291.870300293 291.799987793 291.749206543 291.729675293 291.870300293 292.040222168 291.669128418 290.100769043 287.280456543 284.110534668 286.460357666 286.569732666 287.159576416 287.960357666 288.399810791 288.260162354 287.899810791 287.680084229 287.569732666 287.409576416 287.359771729 287.670318604 288.069732666 287.769927979 286.350006104 284.350006104 282.580474854 280.599975586 280.300170898 279.960327148 279.899780273 280.159545898 280.710327148 281.559936523 282.390014648 282.620483398 282.120483398 281.439819336 281.120483398 280.909545898 280.300170898 279.409545898 278.729858398 278.269897461 275.019836426 275.239562988 275.109680176 274.870422363 274.809875488 275.080383301 275.540344238 275.920227051 276.010070801 275.739562988 275.200500488 274.510070801 273.779602051 273.059875488 272.370422363 271.700500488 270.989562988 265.740386963 266.179840088 266.599761963 266.939605713 267.250152588 267.599761963 267.920074463 268.0597229 267.960113525 267.759918213 267.490386963 267.030426025 266.3097229 265.460113525 264.620269775 263.620269775 262.280426025 254.889648438 255.080078125 255.33984375 255.709960938 256.120117188 256.5 256.809570312 257.030273438 257.110351562 257.040039062 256.8203125 256.360351562 255.639648438 254.740234375 253.8203125 252.75 251.259765625 239.210388184 239.229919434 239.340270996 239.569763184 239.880310059 240.269958496 240.720153809 241.140075684 241.430114746 241.540466309 241.529724121 241.309997559 240.710388184 239.720153809 238.640075684 237.739685059 236.840270996 229.250213623 229.250213623 229.340057373 229.590057373 230.000213623 230.480194092 230.980194092 231.489959717 231.909881592 232.090057373 231.940155029 231.509979248 230.869842529 230.110076904 229.409881592 228.929901123 228.529998779 217.22996521 217.379867554 217.560043335 217.859848022 218.370101929 219.029769897 219.649887085 220.06980896 220.200180054 220.089828491 219.81980896 219.510238647 219.249984741 219.049789429 218.939926147 218.919906616 218.970199585 204.220230103 204.500015259 204.879898071 205.35987854 205.890151978 206.290054321 206.399917603 206.259780884 206.02003479 205.810073853 205.729995728 205.799819946 206.060073853 206.500015259 207.069839478 207.77003479 208.649917603 196.269683838 195.799957275 195.320465088 194.679840088 193.8800354 193.0597229 192.370269775 191.9503479 191.79019165 191.870269775 192.160308838 192.7003479 193.460113525 194.410308838 195.530426025 196.849761963 198.410308838 201.309768677 199.979690552 198.479690552 196.899612427 195.460159302 194.280471802 193.420120239 192.859573364 192.649612427 192.769729614 193.160354614 193.710159302 194.319534302 194.969924927 195.769729614 196.809768677 198.090042114 208.659790039 207.650024414 206.600219727 205.630004883 204.830200195 204.239868164 203.880004883 203.699829102 203.650024414 203.650024414 203.639770508 203.710083008 203.980102539 204.449829102 204.940063477 205.230102539 205.299926758 217.889831543 217.049987793 216.389831543 215.960144043 215.630065918 215.299987793 215.060241699 215.029968262 215.190124512 215.409851074 215.659851074 215.909851074 216.090026855 216.070007324 215.75994873 215.219909668 214.560241699 220.059646606 220.210037231 220.530349731 220.879959106 221.000076294 220.780349731 220.429763794 220.240310669 220.290115356 220.320388794 220.150466919 219.910232544 219.809646606 219.939529419 220.219802856 220.559646606 220.759841919 229.209884644 228.789962769 227.950119019 227.020431519 226.520431519 226.599533081 226.879806519 226.959884644 226.879806519 226.940353394 227.349533081 228.030197144 228.839767456 229.639572144 230.270431519 230.570236206 230.660079956 297.179748535 297.52935791 297.679748535 297.640686035 297.50982666 297.27935791 296.99029541 296.70904541 296.480529785 296.49029541 296.90045166 297.56060791 297.769592285 296.86920166 294.93951416 292.50982666 289.949279785 291.499206543 291.760925293 292.200378418 292.569519043 292.649597168 292.419128418 292.069519043 291.749206543 291.559753418 291.510925293 291.649597168 291.989440918 292.290222168 291.919128418 290.270690918 287.339050293 283.999206543 286.319732666 286.540435791 287.170318604 287.939849854 288.340240479 288.199615479 287.790435791 287.460357666 287.260162354 287.149810791 287.260162354 287.689849854 288.100006104 287.850006104 286.630279541 284.790435791 282.890045166 280.720092773 280.359741211 279.920288086 279.790405273 280.029663086 280.599975586 281.500366211 282.349975586 282.580444336 282.090209961 281.479858398 281.210327148 280.979858398 280.319702148 279.390014648 278.689819336 278.159545898 274.859680176 275.029602051 274.939758301 274.779602051 274.800109863 275.090148926 275.529602051 275.899719238 276.029602051 275.849914551 275.330383301 274.569641113 273.720031738 272.929992676 272.239562988 271.580383301 270.859680176 265.639801025 266.049957275 266.460113525 266.79019165 267.080230713 267.410308838 267.780426025 267.96987915 267.859527588 267.620269775 267.349761963 266.9503479 266.3097229 265.490386963 264.599761963 263.519683838 262.089996338 254.8203125 254.98046875 255.23046875 255.610351562 256.040039062 256.419921875 256.759765625 256.98046875 257.059570312 256.969726562 256.740234375 256.309570312 255.620117188 254.740234375 253.780273438 252.620117188 251.009765625 238.949645996 238.970153809 239.140075684 239.460388184 239.809997559 240.199645996 240.630310059 241.059997559 241.359802246 241.479919434 241.430114746 241.199645996 240.600036621 239.609802246 238.470153809 237.489685059 236.479919434 228.960174561 228.989959717 229.139862061 229.460174561 229.920135498 230.420135498 230.909881592 231.400115967 231.800018311 231.960174561 231.800018311 231.360076904 230.699920654 229.880096436 229.099822998 228.570037842 228.119842529 216.950180054 217.129867554 217.359848022 217.72996521 218.299789429 218.970199585 219.529769897 219.89012146 220.040023804 219.959945679 219.700180054 219.350082397 219.020004272 218.770004272 218.629867554 218.609848022 218.689926147 204.169937134 204.450210571 204.819839478 205.290054321 205.810073853 206.18019104 206.259780884 206.120132446 205.899917603 205.740249634 205.689956665 205.740249634 205.959976196 206.370132446 206.939956665 207.660171509 208.620132446 196.759918213 196.280426025 195.740386963 195.000152588 194.120269775 193.280426025 192.609527588 192.2003479 192.049957275 192.109527588 192.39956665 192.929840088 193.689605713 194.639801025 195.759918213 197.109527588 198.740386963 201.630081177 200.300003052 198.800003052 197.229690552 195.759963989 194.530471802 193.599807739 193.019729614 192.800003052 192.910354614 193.319534302 193.920120239 194.609573364 195.319534302 196.149612427 197.229690552 198.580276489 208.639770508 207.609985352 206.560180664 205.540161133 204.710083008 204.130004883 203.770141602 203.58996582 203.540161133 203.560180664 203.58996582 203.699829102 204.00012207 204.540161133 205.139770508 205.569946289 205.759887695 217.989929199 217.17010498 216.500183105 216.079772949 215.750183105 215.400085449 215.119812012 215.029968262 215.119812012 215.310241699 215.560241699 215.869812012 216.079772949 216.029968262 215.679870605 215.119812012 214.480163574 220.030349731 220.160232544 220.439529419 220.780349731 220.969802856 220.849685669 220.540115356 220.309646606 220.299880981 220.330154419 220.189529419 219.950271606 219.790115356 219.860427856 220.139724731 220.530349731 220.769607544 229.070236206 228.740158081 227.969650269 227.039962769 226.499923706 226.570236206 226.900314331 227.060470581 226.980392456 226.959884644 227.270431519 227.959884644 228.889572144 229.749923706 230.289962769 230.480392456 230.599533081 296.859436035 297.300842285 297.390686035 297.320373535 297.27935791 297.16998291 296.88092041 296.539123535 296.339904785 296.429748535 296.890686035 297.570373535 297.90045166 297.16998291 295.20904541 292.570373535 289.83013916 291.219909668 291.579284668 292.030456543 292.380065918 292.510925293 292.370300293 292.030456543 291.649597168 291.419128418 291.440612793 291.690612793 292.100769043 292.409362793 292.089050293 290.530456543 287.659362793 284.249206543 286.210357666 286.529693604 287.189849854 287.909576416 288.260162354 288.090240479 287.659576416 287.260162354 287.029693604 287.019927979 287.300201416 287.790435791 288.140045166 287.920318604 286.939849854 285.350006104 283.409576416 280.750366211 280.309936523 279.809936523 279.689819336 280.000366211 280.630249023 281.500366211 282.269897461 282.470092773 282.069702148 281.569702148 281.319702148 281.059936523 280.390014648 279.489624023 278.760131836 278.149780273 274.529602051 274.750305176 274.769836426 274.729797363 274.819641113 275.109680176 275.529602051 275.889953613 276.050109863 275.920227051 275.410461426 274.590148926 273.679992676 272.870422363 272.189758301 271.510070801 270.739562988 265.519683838 265.870269775 266.21987915 266.509918213 266.769683838 267.160308838 267.609527588 267.839996338 267.71987915 267.460113525 267.240386963 266.929840088 266.359527588 265.5597229 264.609527588 263.439605713 261.960113525 254.75 254.900390625 255.129882812 255.51953125 255.969726562 256.370117188 256.719726562 256.959960938 257.030273438 256.9296875 256.700195312 256.280273438 255.610351562 254.73046875 253.75 252.559570312 250.919921875 238.670349121 238.720153809 238.970153809 239.369567871 239.769958496 240.149841309 240.579528809 241.029724121 241.340270996 241.409606934 241.319763184 241.079528809 240.529724121 239.559997559 238.390075684 237.319763184 236.220153809 228.690155029 228.759979248 228.960174561 229.329803467 229.840057373 230.369842529 230.880096436 231.360076904 231.699920654 231.809783936 231.639862061 231.219940186 230.579803467 229.719940186 228.860076904 228.230194092 227.710174561 216.72996521 216.939926147 217.209945679 217.649887085 218.270004272 218.910140991 219.410140991 219.720199585 219.870101929 219.839828491 219.600082397 219.22996521 218.839828491 218.520004272 218.31980896 218.260238647 218.330062866 204.10987854 204.399917603 204.779800415 205.250015259 205.729995728 206.060073853 206.120132446 205.990249634 205.819839478 205.700210571 205.640151978 205.669937134 205.879898071 206.290054321 206.819839478 207.540054321 208.549819946 197.349761963 196.859527588 196.189605713 195.299957275 194.339996338 193.479644775 192.839996338 192.460113525 192.330230713 192.410308838 192.689605713 193.179840088 193.8800354 194.8097229 195.9503479 197.330230713 199.009918213 201.939651489 200.569534302 199.050003052 197.500198364 196.009963989 194.729690552 193.750198364 193.160354614 192.920120239 193.000198364 193.410354614 194.059768677 194.809768677 195.599807739 196.490432739 197.620315552 199.009963989 208.569946289 207.560180664 206.480102539 205.42980957 204.569946289 203.989868164 203.639770508 203.449829102 203.380004883 203.409790039 203.480102539 203.639770508 203.980102539 204.560180664 205.219848633 205.75012207 206.080200195 218.029968262 217.17010498 216.460144043 216.049987793 215.750183105 215.440124512 215.17010498 215.049987793 215.110046387 215.299987793 215.619812012 215.969909668 216.17010498 216.040222168 215.619812012 215.040222168 214.440124512 219.950271606 220.120193481 220.370193481 220.660232544 220.860427856 220.820388794 220.580154419 220.330154419 220.259841919 220.240310669 220.120193481 219.870193481 219.710037231 219.769607544 220.080154419 220.519607544 220.780349731 228.980392456 228.639572144 227.940353394 227.120040894 226.629806519 226.669845581 226.959884644 227.129806519 227.110275269 227.110275269 227.410079956 228.110275269 229.030197144 229.810470581 230.190353394 230.320236206 230.530197144 296.699279785 297.019592285 297.000061035 296.929748535 297.02935791 297.00982666 296.660217285 296.289123535 296.25982666 296.500061035 296.910217285 297.449279785 297.88092041 297.449279785 295.70904541 293.019592285 290.179748535 291.100769043 291.399597168 291.729675293 292.020690918 292.219909668 292.190612793 291.889831543 291.520690918 291.370300293 291.489440918 291.729675293 292.040222168 292.339050293 292.219909668 290.979675293 288.339050293 284.930847168 286.080474854 286.439849854 287.140045166 287.850006104 288.170318604 287.970123291 287.529693604 287.119537354 286.890045166 286.949615479 287.330474854 287.840240479 288.130279541 287.949615479 287.250396729 286.010162354 284.210357666 280.630249023 280.099975586 279.599975586 279.599975586 280.059936523 280.769897461 281.580444336 282.229858398 282.370483398 282.040405273 281.649780273 281.409545898 281.109741211 280.449584961 279.599975586 278.890014648 278.229858398 274.120422363 274.479797363 274.630187988 274.649719238 274.760070801 275.080383301 275.519836426 275.899719238 276.040344238 275.889953613 275.370422363 274.569641113 273.710266113 272.960266113 272.279602051 271.519836426 270.670227051 265.370269775 265.7003479 265.979644775 266.2003479 266.479644775 266.9503479 267.490386963 267.750152588 267.6300354 267.370269775 267.210113525 266.9503479 266.389801025 265.580230713 264.6300354 263.479644775 262.000152588 254.669921875 254.780273438 255.009765625 255.4296875 255.91015625 256.3203125 256.66015625 256.9296875 257.040039062 256.950195312 256.719726562 256.299804688 255.620117188 254.740234375 253.740234375 252.5703125 250.969726562 238.420349121 238.510192871 238.809997559 239.250427246 239.689880371 240.100036621 240.540466309 241.019958496 241.319763184 241.350036621 241.189880371 240.949645996 240.470153809 239.579528809 238.409606934 237.279724121 236.140075684 228.469940186 228.570037842 228.800018311 229.199920654 229.750213623 230.340057373 230.900115967 231.340057373 231.610076904 231.619842529 231.429901123 231.050018311 230.469940186 229.630096436 228.710174561 227.980194092 227.389862061 216.56980896 216.799789429 217.109848022 217.600082397 218.249984741 218.899887085 219.350082397 219.629867554 219.760238647 219.72996521 219.499984741 219.100082397 218.669906616 218.299789429 218.020004272 217.899887085 217.950180054 204.069839478 204.370132446 204.799819946 205.27003479 205.729995728 205.990249634 206.040054321 205.939956665 205.810073853 205.68019104 205.60987854 205.620132446 205.810073853 206.18019104 206.689956665 207.370132446 208.35987854 197.9503479 197.420074463 196.64956665 195.639801025 194.580230713 193.679840088 193.04019165 192.689605713 192.609527588 192.759918213 193.04019165 193.460113525 194.080230713 194.9503479 196.070465088 197.4503479 199.120269775 202.210159302 200.790237427 199.240432739 197.670120239 196.160354614 194.830276489 193.809768677 193.189651489 192.929885864 193.000198364 193.389846802 194.050003052 194.880081177 195.759963989 196.719924927 197.880081177 199.280471802 208.509887695 207.540161133 206.440063477 205.350219727 204.480102539 203.92980957 203.600219727 203.400024414 203.299926758 203.310180664 203.389770508 203.549926758 203.889770508 204.449829102 205.170043945 205.819946289 206.279907227 217.949890137 217.000183105 216.239929199 215.799987793 215.50994873 215.250183105 215.040222168 214.969909668 215.029968262 215.250183105 215.630065918 216.029968262 216.230163574 216.060241699 215.610046387 215.040222168 214.460144043 219.919998169 220.189529419 220.460037231 220.700271606 220.860427856 220.839920044 220.620193481 220.370193481 220.240310669 220.179763794 220.059646606 219.820388794 219.629959106 219.679763794 219.990310669 220.439529419 220.740310669 229.020431519 228.549728394 227.839767456 227.110275269 226.709884644 226.730392456 226.959884644 227.160079956 227.230392456 227.320236206 227.629806519 228.289962769 229.150314331 229.870040894 230.219650269 230.360275269 230.620040894 296.660217285 296.789123535 296.61920166 296.59967041 296.81060791 296.800842285 296.34967041 295.95904541 296.109436035 296.550842285 296.929748535 297.36920166 297.90045166 297.839904785 296.390686035 293.699279785 290.730529785 291.089050293 291.239440918 291.389831543 291.610534668 291.880065918 291.960144043 291.690612793 291.380065918 291.350769043 291.540222168 291.729675293 291.950378418 292.339050293 292.510925293 291.589050293 289.100769043 285.620300293 285.899810791 286.279693604 287.059967041 287.850006104 288.170318604 287.939849854 287.470123291 287.069732666 286.840240479 286.899810791 287.279693604 287.790435791 288.100006104 288.029693604 287.590240479 286.699615479 285.140045166 280.439819336 279.870483398 279.439819336 279.550170898 280.130249023 280.899780273 281.659545898 282.170288086 282.260131836 281.979858398 281.659545898 281.420288086 281.080444336 280.460327148 279.689819336 279.000366211 278.330444336 273.849914551 274.309875488 274.519836426 274.529602051 274.620422363 274.970031738 275.500305176 275.899719238 276.019836426 275.790344238 275.260070801 274.550109863 273.830383301 273.220031738 272.550109863 271.679992676 270.710266113 265.179840088 265.54019165 265.79019165 265.979644775 266.280426025 266.830230713 267.4503479 267.750152588 267.64956665 267.429840088 267.280426025 267.000152588 266.3800354 265.549957275 264.679840088 263.6300354 262.21987915 254.540039062 254.650390625 254.889648438 255.349609375 255.849609375 256.259765625 256.599609375 256.879882812 257.040039062 257.009765625 256.809570312 256.400390625 255.709960938 254.790039062 253.780273438 252.639648438 251.139648438 238.250427246 238.369567871 238.659606934 239.090270996 239.559997559 240.019958496 240.500427246 240.979919434 241.279724121 241.269958496 241.090270996 240.850036621 240.420349121 239.609802246 238.489685059 237.359802246 236.210388184 228.289764404 228.409881592 228.650115967 229.070037842 229.670135498 230.329803467 230.909881592 231.329803467 231.520233154 231.460174561 231.230194092 230.889862061 230.369842529 229.590057373 228.659881592 227.869842529 227.199920654 216.439926147 216.689926147 217.049789429 217.600082397 218.290023804 218.930160522 219.379867554 219.620101929 219.709945679 219.64012146 219.370101929 218.950180054 218.510238647 218.100082397 217.770004272 217.580062866 217.589828491 204.060073853 204.410171509 204.879898071 205.379898071 205.779800415 205.990249634 206.029800415 205.959976196 205.839859009 205.720230103 205.620132446 205.600112915 205.750015259 206.080093384 206.529800415 207.149917603 208.080093384 198.46987915 197.89956665 197.0597229 195.979644775 194.859527588 193.89956665 193.2003479 192.830230713 192.79019165 193.009918213 193.349761963 193.740386963 194.280426025 195.070465088 196.139801025 197.460113525 199.080230713 202.450393677 200.979690552 199.380081177 197.769729614 196.219924927 194.849807739 193.790237427 193.149612427 192.880081177 192.950393677 193.330276489 194.000198364 194.849807739 195.780471802 196.800003052 197.979690552 199.380081177 208.460083008 207.489868164 206.359985352 205.239868164 204.370239258 203.850219727 203.569946289 203.400024414 203.310180664 203.290161133 203.33996582 203.460083008 203.759887695 204.319946289 205.080200195 205.830200195 206.400024414 217.84979248 216.909851074 216.159851074 215.67010498 215.329772949 215.070007324 214.929870605 214.909851074 214.969909668 215.179870605 215.560241699 215.969909668 216.179870605 216.029968262 215.619812012 215.079772949 214.460144043 219.969802856 220.330154419 220.650466919 220.860427856 220.960037231 220.900466919 220.660232544 220.379959106 220.240310669 220.189529419 220.099685669 219.900466919 219.700271606 219.660232544 219.900466919 220.339920044 220.679763794 229.089767456 228.469650269 227.669845581 226.950119019 226.599533081 226.639572144 226.870040894 227.099533081 227.270431519 227.410079956 227.669845581 228.240158081 229.099533081 229.919845581 230.400314331 230.599533081 230.770431519 296.49029541 296.50982666 296.269592285 296.289123535 296.609436035 296.63092041 296.15045166 295.77935791 296.02935791 296.58013916 297.00982666 297.47076416 298.11920166 298.250061035 296.910217285 294.160217285 291.089904785 290.930847168 290.979675293 290.999206543 291.200378418 291.579284668 291.780456543 291.589050293 291.329284668 291.350769043 291.579284668 291.770690918 292.030456543 292.579284668 292.950378418 292.130065918 289.630065918 286.130065918 285.699615479 286.130279541 287.050201416 287.970123291 288.309967041 288.000396729 287.489654541 287.109771729 286.899810791 286.909576416 287.229888916 287.739654541 288.149810791 288.229888916 287.979888916 287.319732666 285.960357666 280.239624023 279.750366211 279.420288086 279.569702148 280.159545898 280.920288086 281.609741211 282.010131836 282.050170898 281.840209961 281.580444336 281.340209961 281.010131836 280.460327148 279.790405273 279.109741211 278.449584961 273.790344238 274.300109863 274.479797363 274.429992676 274.519836426 274.920227051 275.489562988 275.920227051 275.989562988 275.720031738 275.200500488 274.580383301 274.040344238 273.580383301 272.960266113 272.010070801 270.910461426 264.979644775 265.3800354 265.660308838 265.859527588 266.189605713 266.79019165 267.4503479 267.799957275 267.780426025 267.639801025 267.479644775 267.109527588 266.3800354 265.54019165 264.769683838 263.859527588 262.549957275 254.379882812 254.509765625 254.780273438 255.26953125 255.799804688 256.209960938 256.549804688 256.849609375 257.049804688 257.059570312 256.900390625 256.509765625 255.830078125 254.91015625 253.889648438 252.799804688 251.41015625 238.130310059 238.269958496 238.510192871 238.909606934 239.420349121 239.960388184 240.489685059 240.949645996 241.210388184 241.210388184 241.029724121 240.800231934 240.399841309 239.649841309 238.619567871 237.529724121 236.420349121 228.170135498 228.309783936 228.550018311 228.989959717 229.630096436 230.329803467 230.920135498 231.289764404 231.429901123 231.349822998 231.110076904 230.770233154 230.279998779 229.550018311 228.659881592 227.840057373 227.139862061 216.330062866 216.600082397 217.020004272 217.64012146 218.370101929 219.020004272 219.450180054 219.660140991 219.700180054 219.560043335 219.249984741 218.830062866 218.39012146 217.950180054 217.56980896 217.330062866 217.279769897 204.080093384 204.450210571 204.979995728 205.490249634 205.850112915 206.009780884 206.040054321 205.990249634 205.910171509 205.779800415 205.649917603 205.60987854 205.700210571 205.939956665 206.339859009 206.899917603 207.77003479 198.889801025 198.250152588 197.339996338 196.21987915 195.080230713 194.109527588 193.359527588 192.920074463 192.859527588 193.120269775 193.509918213 193.929840088 194.4503479 195.179840088 196.160308838 197.39956665 198.939605713 202.590042114 201.099807739 199.469924927 197.800003052 196.219924927 194.809768677 193.729690552 193.059768677 192.780471802 192.889846802 193.290237427 193.950393677 194.790237427 195.740432739 196.800003052 197.979690552 199.340042114 208.359985352 207.33996582 206.159790039 205.020141602 204.150024414 203.670043945 203.460083008 203.350219727 203.279907227 203.25012207 203.270141602 203.359985352 203.639770508 204.190063477 204.969848633 205.759887695 206.370239258 217.92010498 217.130065918 216.469909668 215.940124512 215.500183105 215.199890137 215.060241699 215.040222168 215.090026855 215.239929199 215.570007324 215.940124512 216.119812012 215.989929199 215.619812012 215.060241699 214.360046387 219.979568481 220.349685669 220.689529419 220.900466919 220.969802856 220.849685669 220.570388794 220.290115356 220.160232544 220.160232544 220.139724731 220.000076294 219.790115356 219.689529419 219.870193481 220.290115356 220.719802856 229.080001831 228.429611206 227.549728394 226.780197144 226.440353394 226.509689331 226.770431519 227.030197144 227.219650269 227.349533081 227.549728394 228.070236206 228.990158081 229.980392456 230.580001831 230.740158081 230.719650269 296.08013916 296.089904785 295.859436035 295.90045166 296.269592285 296.45904541 296.160217285 295.890686035 296.11920166 296.640686035 297.11920166 297.68951416 298.38092041 298.449279785 297.08013916 294.45904541 291.61920166 290.479675293 290.510925293 290.450378418 290.669128418 291.200378418 291.620300293 291.610534668 291.419128418 291.430847168 291.620300293 291.809753418 292.190612793 292.880065918 293.309753418 292.510925293 290.169128418 287.069519043 285.439849854 286.000396729 287.119537354 288.189849854 288.510162354 288.080474854 287.500396729 287.159576416 287.000396729 286.979888916 287.220123291 287.739654541 288.250396729 288.449615479 288.309967041 287.830474854 286.760162354 280.040405273 279.710327148 279.479858398 279.620483398 280.120483398 280.819702148 281.430053711 281.750366211 281.769897461 281.609741211 281.420288086 281.220092773 280.939819336 280.529663086 279.970092773 279.319702148 278.649780273 273.870422363 274.309875488 274.439758301 274.420227051 274.559875488 275.019836426 275.590148926 275.970031738 276.010070801 275.720031738 275.229797363 274.689758301 274.300109863 274.019836426 273.489562988 272.479797363 271.239562988 264.79019165 265.250152588 265.589996338 265.849761963 266.2003479 266.780426025 267.429840088 267.830230713 267.929840088 267.89956665 267.740386963 267.269683838 266.4503479 265.589996338 264.89956665 264.099761963 262.870269775 254.190429688 254.389648438 254.6796875 255.190429688 255.740234375 256.190429688 256.540039062 256.870117188 257.0703125 257.08984375 256.91015625 256.530273438 255.91015625 255.030273438 254.049804688 253.009765625 251.740234375 238.040466309 238.159606934 238.340270996 238.699645996 239.279724121 239.930114746 240.519958496 240.939880371 241.170349121 241.170349121 241.019958496 240.790466309 240.409606934 239.729919434 238.779724121 237.750427246 236.680114746 228.079803467 228.239959717 228.500213623 228.969940186 229.619842529 230.320037842 230.889862061 231.230194092 231.340057373 231.289764404 231.070037842 230.730194092 230.230194092 229.529998779 228.699920654 227.900115967 227.179901123 216.22996521 216.540023804 217.029769897 217.720199585 218.47996521 219.129867554 219.520004272 219.669906616 219.660140991 219.490219116 219.169906616 218.770004272 218.310043335 217.830062866 217.399887085 217.120101929 217.020004272 204.149917603 204.540054321 205.089859009 205.600112915 205.910171509 206.029800415 206.049819946 206.040054321 205.979995728 205.870132446 205.729995728 205.640151978 205.660171509 205.819839478 206.160171509 206.700210571 207.459976196 199.250152588 198.490386963 197.500152588 196.349761963 195.21987915 194.250152588 193.500152588 193.030426025 192.920074463 193.14956665 193.570465088 194.049957275 194.599761963 195.259918213 196.139801025 197.299957275 198.759918213 202.569534302 201.090042114 199.420120239 197.719924927 196.090042114 194.670120239 193.580276489 192.910354614 192.660354614 192.790237427 193.210159302 193.849807739 194.670120239 195.630081177 196.710159302 197.889846802 199.189651489 208.199829102 207.109985352 205.900024414 204.770141602 203.940063477 203.489868164 203.319946289 203.259887695 203.219848633 203.199829102 203.199829102 203.279907227 203.549926758 204.080200195 204.799926758 205.509887695 206.08996582 218.09979248 217.469909668 216.929870605 216.389831543 215.84979248 215.469909668 215.270202637 215.199890137 215.199890137 215.34979248 215.679870605 216.020202637 216.159851074 216.000183105 215.610046387 215.000183105 214.219909668 219.879959106 220.189529419 220.519607544 220.790115356 220.870193481 220.710037231 220.410232544 220.150466919 220.049880981 220.070388794 220.049880981 219.939529419 219.750076294 219.669998169 219.839920044 220.290115356 220.790115356 229.009689331 228.389572144 227.499923706 226.709884644 226.389572144 226.509689331 226.780197144 227.009689331 227.160079956 227.289962769 227.530197144 228.110275269 229.080001831 230.080001831 230.639572144 230.690353394 230.570236206 295.59967041 295.640686035 295.41998291 295.390686035 295.750061035 296.15045166 296.22076416 296.13092041 296.250061035 296.61920166 297.15045166 297.84967041 298.50982666 298.45904541 297.230529785 295.22076416 293.250061035 289.940612793 289.919128418 289.799987793 290.020690918 290.700378418 291.389831543 291.659362793 291.610534668 291.589050293 291.649597168 291.809753418 292.249206543 292.979675293 293.430847168 292.860534668 291.229675293 289.180847168 285.069732666 285.840240479 287.149810791 288.340240479 288.619537354 288.080474854 287.439849854 287.140045166 287.050201416 287.019927979 287.210357666 287.710357666 288.260162354 288.519927979 288.519927979 288.340240479 287.760162354 279.920288086 279.750366211 279.580444336 279.649780273 280.080444336 280.699584961 281.239624023 281.489624023 281.500366211 281.399780273 281.269897461 281.109741211 280.920288086 280.670288086 280.250366211 279.640014648 278.970092773 273.939758301 274.229797363 274.300109863 274.380187988 274.689758301 275.220031738 275.760070801 276.050109863 276.019836426 275.750305176 275.290344238 274.819641113 274.540344238 274.439758301 274.080383301 273.090148926 271.700500488 264.7003479 265.179840088 265.609527588 265.960113525 266.330230713 266.839996338 267.420074463 267.859527588 268.0597229 268.109527588 267.960113525 267.439605713 266.570465088 265.71987915 265.089996338 264.359527588 263.189605713 254.030273438 254.3203125 254.650390625 255.129882812 255.690429688 256.169921875 256.58984375 256.919921875 257.120117188 257.080078125 256.83984375 256.48046875 255.9296875 255.139648438 254.209960938 253.219726562 252.049804688 237.890075684 238.029724121 238.170349121 238.519958496 239.170349121 239.930114746 240.579528809 240.989685059 241.170349121 241.180114746 241.040466309 240.800231934 240.430114746 239.809997559 238.939880371 237.989685059 236.989685059 227.960174561 228.150115967 228.449920654 228.940155029 229.610076904 230.309783936 230.829803467 231.119842529 231.230194092 231.219940186 231.059783936 230.719940186 230.210174561 229.539764404 228.770233154 228.020233154 227.320037842 216.160140991 216.529769897 217.100082397 217.850082397 218.620101929 219.220199585 219.529769897 219.620101929 219.56980896 219.419906616 219.149887085 218.760238647 218.290023804 217.760238647 217.270004272 216.950180054 216.799789429 204.339859009 204.729995728 205.27003479 205.740249634 206.009780884 206.089859009 206.100112915 206.089859009 206.049819946 205.950210571 205.810073853 205.68019104 205.640151978 205.750015259 206.049819946 206.509780884 207.120132446 199.599761963 198.71987915 197.6300354 196.420074463 195.280426025 194.349761963 193.6300354 193.160308838 193.019683838 193.21987915 193.660308838 194.2003479 194.740386963 195.330230713 196.080230713 197.139801025 198.5597229 202.429885864 200.920120239 199.229690552 197.500198364 195.849807739 194.420120239 193.340042114 192.689651489 192.479690552 192.620315552 193.019729614 193.630081177 194.429885864 195.410354614 196.500198364 197.630081177 198.840042114 208.069946289 206.949829102 205.75012207 204.670043945 203.889770508 203.469848633 203.319946289 203.279907227 203.239868164 203.190063477 203.17980957 203.25012207 203.50012207 203.92980957 204.520141602 205.120239258 205.659790039 218.130065918 217.570007324 217.070007324 216.529968262 215.989929199 215.560241699 215.279968262 215.090026855 215.049987793 215.290222168 215.719909668 216.079772949 216.179870605 215.989929199 215.570007324 214.960144043 214.199890137 219.809646606 220.110427856 220.460037231 220.759841919 220.839920044 220.679763794 220.400466919 220.200271606 220.120193481 220.059646606 219.929763794 219.769607544 219.620193481 219.599685669 219.769607544 220.200271606 220.669998169 228.929611206 228.320236206 227.419845581 226.610275269 226.320236206 226.509689331 226.810470581 226.980392456 227.070236206 227.270431519 227.669845581 228.349533081 229.270431519 230.150314331 230.620040894 230.709884644 230.799728394 295.230529785 295.269592285 295.06060791 294.95904541 295.250061035 295.77935791 296.15045166 296.230529785 296.25982666 296.52935791 297.15045166 297.99029541 298.59967041 298.519592285 297.74029541 296.789123535 296.02935791 289.479675293 289.409362793 289.229675293 289.460144043 290.260925293 291.190612793 291.710144043 291.809753418 291.770690918 291.739440918 291.850769043 292.260925293 292.960144043 293.469909668 293.389831543 292.860534668 292.159362793 284.640045166 285.609771729 287.090240479 288.350006104 288.630279541 288.040435791 287.380279541 287.100006104 287.059967041 287.050201416 287.220123291 287.670318604 288.159576416 288.439849854 288.630279541 288.899810791 288.939849854 280.010131836 279.930053711 279.750366211 279.750366211 280.090209961 280.640014648 281.090209961 281.260131836 281.260131836 281.239624023 281.170288086 281.059936523 280.960327148 280.840209961 280.519897461 279.949584961 279.330444336 273.970031738 274.099914551 274.109680176 274.290344238 274.760070801 275.380187988 275.889953613 276.069641113 275.979797363 275.689758301 275.290344238 274.880187988 274.710266113 274.769836426 274.599914551 273.710266113 272.269836426 264.71987915 265.210113525 265.710113525 266.14956665 266.5597229 267.019683838 267.54019165 267.96987915 268.229644775 268.299957275 268.139801025 267.599761963 266.780426025 265.990386963 265.370269775 264.689605713 263.620269775 253.919921875 254.309570312 254.650390625 255.120117188 255.66015625 256.1796875 256.620117188 256.969726562 257.150390625 257.059570312 256.790039062 256.440429688 255.969726562 255.280273438 254.389648438 253.400390625 252.3203125 237.649841309 237.840270996 238.019958496 238.420349121 239.140075684 239.989685059 240.689880371 241.100036621 241.229919434 241.199645996 241.029724121 240.750427246 240.350036621 239.790466309 239.040466309 238.199645996 237.309997559 227.739959717 228.000213623 228.349822998 228.880096436 229.579803467 230.279998779 230.779998779 231.020233154 231.119842529 231.130096436 231.009979248 230.699920654 230.199920654 229.579803467 228.900115967 228.210174561 227.539764404 216.120101929 216.549789429 217.189926147 217.990219116 218.740219116 219.260238647 219.47996521 219.510238647 219.450180054 219.339828491 219.129867554 218.779769897 218.290023804 217.740219116 217.22996521 216.859848022 216.660140991 204.68019104 205.029800415 205.490249634 205.890151978 206.100112915 206.140151978 206.140151978 206.129898071 206.100112915 206.000015259 205.870132446 205.740249634 205.68019104 205.759780884 205.990249634 206.310073853 206.709976196 199.96987915 199.000152588 197.820465088 196.54019165 195.349761963 194.39956665 193.7003479 193.269683838 193.1300354 193.330230713 193.780426025 194.330230713 194.859527588 195.359527588 195.979644775 196.9503479 198.269683838 202.250198364 200.700393677 198.979690552 197.219924927 195.569534302 194.139846802 193.090042114 192.500198364 192.319534302 192.460159302 192.800003052 193.359573364 194.139846802 195.120315552 196.160354614 197.179885864 198.229690552 207.989868164 206.900024414 205.759887695 204.719848633 203.969848633 203.569946289 203.420043945 203.380004883 203.310180664 203.230102539 203.199829102 203.270141602 203.469848633 203.799926758 204.25012207 204.759887695 205.290161133 217.960144043 217.329772949 216.810241699 216.299987793 215.840026855 215.480163574 215.130065918 214.810241699 214.719909668 215.029968262 215.549987793 215.960144043 216.049987793 215.889831543 215.549987793 215.029968262 214.380065918 219.910232544 220.269607544 220.669998169 220.950271606 220.990310669 220.790115356 220.549880981 220.419998169 220.370193481 220.210037231 219.950271606 219.740310669 219.629959106 219.589920044 219.669998169 219.960037231 220.320388794 228.889572144 228.219650269 227.249923706 226.400314331 226.129806519 226.419845581 226.759689331 226.879806519 226.940353394 227.219650269 227.740158081 228.440353394 229.249923706 230.060470581 230.700119019 231.200119019 231.770431519 294.83013916 294.90045166 294.789123535 294.74029541 295.02935791 295.589904785 296.06060791 296.20904541 296.250061035 296.570373535 297.320373535 298.230529785 298.750061035 298.66998291 298.410217285 298.43951416 298.58013916 289.059753418 288.960144043 288.809753418 289.139831543 290.079284668 291.139831543 291.780456543 291.950378418 291.940612793 291.909362793 292.040222168 292.450378418 293.079284668 293.639831543 293.989440918 294.280456543 294.479675293 284.250396729 285.430084229 287.029693604 288.340240479 288.619537354 288.059967041 287.430084229 287.170318604 287.140045166 287.159576416 287.340240479 287.750396729 288.140045166 288.409576416 288.769927979 289.380279541 289.830474854 280.290405273 280.260131836 280.059936523 279.989624023 280.220092773 280.630249023 280.930053711 281.010131836 281.010131836 281.050170898 281.080444336 281.069702148 281.050170898 280.989624023 280.670288086 280.109741211 279.580444336 274.040344238 274.080383301 274.029602051 274.239562988 274.750305176 275.389953613 275.880187988 276.000305176 275.849914551 275.529602051 275.170227051 274.870422363 274.809875488 274.979797363 274.960266113 274.260070801 272.950500488 264.8097229 265.280426025 265.820465088 266.349761963 266.8097229 267.259918213 267.759918213 268.2003479 268.46987915 268.530426025 268.320465088 267.830230713 267.099761963 266.389801025 265.820465088 265.189605713 264.210113525 253.83984375 254.330078125 254.719726562 255.169921875 255.690429688 256.190429688 256.629882812 256.990234375 257.16015625 257.0703125 256.809570312 256.490234375 256.0703125 255.440429688 254.5703125 253.599609375 252.580078125 237.329528809 237.619567871 237.939880371 238.449645996 239.229919434 240.119567871 240.819763184 241.189880371 241.269958496 241.180114746 240.939880371 240.600036621 240.189880371 239.670349121 239.019958496 238.329528809 237.600036621 227.420135498 227.779998779 228.219940186 228.820037842 229.559783936 230.289764404 230.779998779 230.989959717 231.050018311 231.039764404 230.920135498 230.610076904 230.150115967 229.599822998 229.000213623 228.389862061 227.759979248 216.089828491 216.580062866 217.260238647 218.06980896 218.790023804 219.220199585 219.370101929 219.39012146 219.370101929 219.31980896 219.120101929 218.779769897 218.31980896 217.790023804 217.299789429 216.910140991 216.649887085 205.10987854 205.350112915 205.669937134 205.959976196 206.100112915 206.140151978 206.140151978 206.149917603 206.129898071 206.049819946 205.939956665 205.839859009 205.790054321 205.830093384 205.950210571 206.100112915 206.290054321 200.349761963 199.3097229 198.070465088 196.71987915 195.439605713 194.410308838 193.679840088 193.269683838 193.179840088 193.39956665 193.849761963 194.39956665 194.910308838 195.339996338 195.8800354 196.729644775 197.910308838 202.069534302 200.469924927 198.740432739 196.990432739 195.340042114 193.920120239 192.910354614 192.370315552 192.229690552 192.330276489 192.630081177 193.149612427 193.910354614 194.819534302 195.740432739 196.559768677 197.450393677 207.92980957 206.900024414 205.790161133 204.770141602 204.020141602 203.600219727 203.460083008 203.409790039 203.33996582 203.25012207 203.219848633 203.270141602 203.420043945 203.670043945 204.060180664 204.560180664 205.120239258 217.790222168 217.079772949 216.529968262 216.079772949 215.739929199 215.440124512 215.049987793 214.650085449 214.520202637 214.820007324 215.34979248 215.739929199 215.889831543 215.880065918 215.67010498 215.239929199 214.699890137 220.080154419 220.479568481 220.879959106 221.120193481 221.080154419 220.830154419 220.610427856 220.549880981 220.519607544 220.339920044 220.070388794 219.879959106 219.780349731 219.650466919 219.540115356 219.629959106 219.889724731 228.879806519 228.200119019 227.200119019 226.310470581 226.039962769 226.370040894 226.740158081 226.849533081 226.919845581 227.219650269 227.719650269 228.280197144 228.990158081 229.950119019 231.099533081 232.209884644 233.160079956 294.289123535 294.339904785 294.359436035 294.570373535 295.02935791 295.59967041 296.019592285 296.199279785 296.36920166 296.83013916 297.65045166 298.45904541 298.820373535 298.72076416 298.66998291 299.019592285 299.269592285 288.530456543 288.419128418 288.370300293 288.930847168 290.079284668 291.219909668 291.860534668 292.059753418 292.089050293 292.139831543 292.319519043 292.739440918 293.339050293 293.889831543 294.299987793 294.690612793 294.889831543 283.970123291 285.350006104 287.059967041 288.369537354 288.640045166 288.130279541 287.559967041 287.340240479 287.309967041 287.350006104 287.559967041 287.930084229 288.269927979 288.519927979 288.920318604 289.519927979 289.890045166 280.569702148 280.609741211 280.470092773 280.370483398 280.500366211 280.689819336 280.760131836 280.699584961 280.670288086 280.800170898 280.979858398 281.120483398 281.180053711 281.090209961 280.699584961 280.140014648 279.699584961 274.120422363 274.189758301 274.160461426 274.290344238 274.700500488 275.260070801 275.729797363 275.870422363 275.660461426 275.319641113 275.019836426 274.859680176 274.880187988 275.090148926 275.160461426 274.689758301 273.630187988 264.89956665 265.3097229 265.849761963 266.460113525 267.000152588 267.490386963 268.000152588 268.479644775 268.769683838 268.799957275 268.580230713 268.120269775 267.490386963 266.870269775 266.359527588 265.769683838 264.910308838 253.75 254.3203125 254.780273438 255.240234375 255.740234375 256.219726562 256.639648438 256.98046875 257.150390625 257.080078125 256.830078125 256.540039062 256.16015625 255.58984375 254.790039062 253.860351562 252.91015625 236.979919434 237.420349121 237.920349121 238.559997559 239.390075684 240.260192871 240.899841309 241.199645996 241.229919434 241.069763184 240.779724121 240.399841309 239.970153809 239.489685059 238.930114746 238.359802246 237.800231934 227.090057373 227.559783936 228.110076904 228.789764404 229.590057373 230.349822998 230.840057373 231.020233154 231.020233154 230.949920654 230.789764404 230.469940186 230.039764404 229.539764404 229.009979248 228.460174561 227.889862061 216.060043335 216.56980896 217.279769897 218.080062866 218.749984741 219.129867554 219.279769897 219.350082397 219.379867554 219.330062866 219.120101929 218.770004272 218.339828491 217.870101929 217.430160522 217.040023804 216.720199585 205.52003479 205.589859009 205.750015259 205.93019104 206.040054321 206.089859009 206.120132446 206.169937134 206.200210571 206.149917603 206.060073853 205.979995728 205.959976196 205.950210571 205.950210571 205.950210571 206.02003479 200.64956665 199.519683838 198.269683838 196.8800354 195.509918213 194.370269775 193.620269775 193.259918213 193.250152588 193.479644775 193.89956665 194.420074463 194.910308838 195.339996338 195.8097229 196.54019165 197.490386963 201.889846802 200.250198364 198.519729614 196.790237427 195.149612427 193.759963989 192.780471802 192.259963989 192.120315552 192.189651489 192.469924927 192.969924927 193.700393677 194.509963989 195.240432739 195.889846802 196.670120239 207.859985352 206.850219727 205.759887695 204.739868164 203.989868164 203.569946289 203.42980957 203.380004883 203.310180664 203.230102539 203.190063477 203.219848633 203.310180664 203.520141602 203.92980957 204.460083008 205.029907227 217.810241699 217.090026855 216.529968262 216.079772949 215.739929199 215.389831543 214.969909668 214.590026855 214.500183105 214.799987793 215.250183105 215.639831543 215.949890137 216.130065918 216.020202637 215.529968262 214.929870605 220.059646606 220.429763794 220.809646606 221.009841919 220.939529419 220.710037231 220.540115356 220.519607544 220.469802856 220.299880981 220.099685669 219.990310669 219.870193481 219.589920044 219.309646606 219.330154419 219.660232544 228.870040894 228.299728394 227.360275269 226.490158081 226.209884644 226.509689331 226.849533081 226.940353394 227.020431519 227.339767456 227.740158081 228.150314331 228.839767456 230.129806519 231.839767456 233.339767456 234.190353394 293.75982666 293.660217285 293.730529785 294.20904541 294.97076416 295.63092041 296.00982666 296.250061035 296.56060791 297.11920166 297.839904785 298.449279785 298.68951416 298.550842285 298.36920166 298.34967041 298.11920166 287.989440918 287.790222168 287.839050293 288.639831543 289.999206543 291.239440918 291.950378418 292.200378418 292.270690918 292.309753418 292.450378418 292.870300293 293.510925293 294.049987793 294.249206543 294.169128418 293.749206543 283.779693604 285.350006104 287.189849854 288.489654541 288.689849854 288.149810791 287.640045166 287.479888916 287.470123291 287.489654541 287.680084229 288.019927979 288.359771729 288.659576416 289.010162354 289.309967041 289.189849854 280.739624023 280.890014648 280.849975586 280.790405273 280.809936523 280.790405273 280.640014648 280.439819336 280.380249023 280.559936523 280.880249023 281.189819336 281.340209961 281.210327148 280.769897461 280.220092773 279.899780273 274.109680176 274.269836426 274.279602051 274.370422363 274.620422363 275.069641113 275.540344238 275.710266113 275.470031738 275.109680176 274.910461426 274.920227051 275.040344238 275.189758301 275.269836426 275.010070801 274.300109863 264.929840088 265.29019165 265.830230713 266.509918213 267.14956665 267.7003479 268.240386963 268.750152588 269.049957275 269.0597229 268.830230713 268.39956665 267.839996338 267.269683838 266.799957275 266.269683838 265.509918213 253.58984375 254.25 254.780273438 255.26953125 255.759765625 256.240234375 256.650390625 256.98046875 257.150390625 257.0703125 256.830078125 256.509765625 256.16015625 255.66015625 254.990234375 254.169921875 253.299804688 236.680114746 237.260192871 237.899841309 238.640075684 239.500427246 240.329528809 240.899841309 241.130310059 241.100036621 240.899841309 240.590270996 240.199645996 239.790466309 239.340270996 238.829528809 238.319763184 237.869567871 226.860076904 227.420135498 228.050018311 228.789764404 229.619842529 230.400115967 230.880096436 231.020233154 230.949920654 230.820037842 230.619842529 230.309783936 229.880096436 229.409881592 228.909881592 228.400115967 227.889862061 216.049789429 216.580062866 217.290023804 218.060043335 218.680160522 219.049789429 219.240219116 219.370101929 219.430160522 219.350082397 219.100082397 218.72996521 218.339828491 217.919906616 217.520004272 217.14012146 216.790023804 205.890151978 205.799819946 205.810073853 205.899917603 206.009780884 206.089859009 206.169937134 206.250015259 206.319839478 206.319839478 206.250015259 206.18019104 206.140151978 206.10987854 206.040054321 205.950210571 206.000015259 200.830230713 199.599761963 198.299957275 196.89956665 195.479644775 194.299957275 193.5597229 193.320465088 193.39956665 193.64956665 194.030426025 194.500152588 194.990386963 195.389801025 195.8097229 196.389801025 197.120269775 201.719924927 200.059768677 198.319534302 196.590042114 194.969924927 193.620315552 192.670120239 192.149612427 191.939651489 191.960159302 192.219924927 192.750198364 193.429885864 194.099807739 194.679885864 195.280471802 196.080276489 207.730102539 206.739868164 205.67980957 204.690063477 203.969848633 203.58996582 203.469848633 203.409790039 203.350219727 203.259887695 203.199829102 203.170043945 203.199829102 203.400024414 203.819946289 204.380004883 204.850219727 217.909851074 217.190124512 216.630065918 216.130065918 215.630065918 215.130065918 214.659851074 214.389831543 214.449890137 214.770202637 215.190124512 215.67010498 216.190124512 216.540222168 216.380065918 215.659851074 214.84979248 219.839920044 220.189529419 220.559646606 220.769607544 220.799880981 220.689529419 220.610427856 220.580154419 220.479568481 220.280349731 220.120193481 220.009841919 219.780349731 219.360427856 219.040115356 219.200271606 219.790115356 228.820236206 228.339767456 227.480392456 226.679611206 226.429611206 226.669845581 226.910079956 226.940353394 227.049728394 227.400314331 227.789962769 228.179611206 228.999923706 230.620040894 232.589767456 233.990158081 234.259689331 293.50982666 293.179748535 293.15045166 293.789123535 294.77935791 295.589904785 296.02935791 296.34967041 296.74029541 297.22076416 297.730529785 298.20904541 298.539123535 298.500061035 298.070373535 297.43951416 296.66998291 287.620300293 287.329284668 287.419128418 288.370300293 289.860534668 291.219909668 292.059753418 292.460144043 292.549987793 292.440612793 292.399597168 292.799987793 293.549987793 294.139831543 294.149597168 293.569519043 292.549987793 283.670318604 285.420318604 287.439849854 288.760162354 288.859771729 288.220123291 287.699615479 287.580474854 287.580474854 287.540435791 287.619537354 287.920318604 288.309967041 288.689849854 289.000396729 288.970123291 288.359771729 280.970092773 281.170288086 281.149780273 281.099975586 281.019897461 280.840209961 280.559936523 280.300170898 280.210327148 280.409545898 280.819702148 281.260131836 281.489624023 281.359741211 280.939819336 280.529663086 280.340209961 273.939758301 274.149719238 274.260070801 274.349914551 274.510070801 274.880187988 275.330383301 275.540344238 275.309875488 274.950500488 274.859680176 275.040344238 275.250305176 275.349914551 275.370422363 275.250305176 274.830383301 264.89956665 265.240386963 265.799957275 266.549957275 267.299957275 267.929840088 268.490386963 268.979644775 269.269683838 269.269683838 269.000152588 268.570465088 268.04019165 267.509918213 267.030426025 266.5597229 265.889801025 253.41015625 254.129882812 254.73046875 255.26953125 255.76953125 256.25 256.6796875 257.0 257.169921875 257.080078125 256.790039062 256.419921875 256.040039062 255.620117188 255.0703125 254.41015625 253.629882812 236.470153809 237.130310059 237.859802246 238.640075684 239.500427246 240.309997559 240.840270996 241.029724121 240.970153809 240.760192871 240.420349121 240.029724121 239.640075684 239.220153809 238.720153809 238.229919434 237.800231934 226.759979248 227.380096436 228.050018311 228.800018311 229.630096436 230.409881592 230.869842529 230.949920654 230.820037842 230.650115967 230.440155029 230.139862061 229.739959717 229.289764404 228.800018311 228.309783936 227.840057373 216.100082397 216.64012146 217.299789429 218.029769897 218.64012146 219.020004272 219.240219116 219.379867554 219.419906616 219.290023804 219.020004272 218.689926147 218.339828491 217.959945679 217.560043335 217.180160522 216.81980896 206.259780884 206.060073853 205.970230103 206.000015259 206.100112915 206.160171509 206.220230103 206.319839478 206.43019104 206.470230103 206.450210571 206.399917603 206.390151978 206.35987854 206.250015259 206.149917603 206.200210571 200.910308838 199.54019165 198.229644775 196.830230713 195.410308838 194.229644775 193.5597229 193.429840088 193.609527588 193.89956665 194.269683838 194.729644775 195.189605713 195.54019165 195.859527588 196.29019165 196.839996338 201.599807739 199.950393677 198.189651489 196.429885864 194.830276489 193.530471802 192.620315552 192.050003052 191.750198364 191.700393677 191.960159302 192.500198364 193.109573364 193.639846802 194.120315552 194.780471802 195.710159302 207.520141602 206.549926758 205.529907227 204.620239258 203.949829102 203.609985352 203.520141602 203.489868164 203.449829102 203.359985352 203.270141602 203.17980957 203.170043945 203.350219727 203.75012207 204.25012207 204.580200195 217.869812012 217.130065918 216.59979248 216.079772949 215.449890137 214.790222168 214.290222168 214.130065918 214.310241699 214.650085449 215.070007324 215.650085449 216.360046387 216.770202637 216.429870605 215.440124512 214.469909668 219.719802856 220.110427856 220.500076294 220.740310669 220.839920044 220.860427856 220.870193481 220.830154419 220.669998169 220.460037231 220.299880981 220.110427856 219.710037231 219.169998169 218.950271606 219.379959106 220.240310669 228.709884644 228.139572144 227.299728394 226.580001831 226.419845581 226.650314331 226.810470581 226.770431519 226.849533081 227.219650269 227.650314331 228.150314331 229.169845581 230.940353394 232.799728394 233.730392456 233.349533081 293.390686035 292.99029541 292.91998291 293.61920166 294.75982666 295.679748535 296.18951416 296.539123535 296.910217285 297.24029541 297.570373535 298.089904785 298.699279785 298.86920166 298.250061035 297.16998291 296.179748535 287.380065918 287.110534668 287.299987793 288.319519043 289.870300293 291.299987793 292.270690918 292.799987793 292.880065918 292.600769043 292.419128418 292.819519043 293.690612793 294.329284668 294.229675293 293.430847168 292.229675293 283.699615479 285.680084229 287.899810791 289.250396729 289.229888916 288.449615479 287.840240479 287.710357666 287.710357666 287.609771729 287.609771729 287.850006104 288.250396729 288.659576416 288.909576416 288.720123291 287.939849854 281.420288086 281.559936523 281.439819336 281.260131836 281.040405273 280.750366211 280.460327148 280.220092773 280.159545898 280.340209961 280.800170898 281.319702148 281.590209961 281.460327148 281.159545898 281.000366211 280.960327148 273.739562988 273.950500488 274.139953613 274.300109863 274.439758301 274.750305176 275.179992676 275.410461426 275.200500488 274.859680176 274.849914551 275.189758301 275.470031738 275.519836426 275.479797363 275.410461426 275.149719238 264.8097229 265.179840088 265.769683838 266.589996338 267.420074463 268.109527588 268.7003479 269.179840088 269.4503479 269.410308838 269.099761963 268.6300354 268.109527588 267.599761963 267.139801025 266.670074463 266.070465088 253.23046875 253.990234375 254.66015625 255.219726562 255.740234375 256.240234375 256.690429688 257.009765625 257.169921875 257.0703125 256.75 256.3203125 255.889648438 255.490234375 255.040039062 254.48046875 253.790039062 236.329528809 237.040466309 237.800231934 238.590270996 239.449645996 240.250427246 240.769958496 240.960388184 240.899841309 240.659606934 240.279724121 239.850036621 239.449645996 239.050231934 238.569763184 238.059997559 237.609802246 226.739959717 227.380096436 228.039764404 228.770233154 229.630096436 230.420135498 230.860076904 230.880096436 230.699920654 230.509979248 230.309783936 230.029998779 229.630096436 229.210174561 228.759979248 228.300018311 227.849822998 216.200180054 216.709945679 217.31980896 217.999984741 218.600082397 218.999984741 219.249984741 219.359848022 219.330062866 219.160140991 218.930160522 218.680160522 218.399887085 218.029769897 217.620101929 217.22996521 216.859848022 206.620132446 206.35987854 206.18019104 206.149917603 206.18019104 206.209976196 206.229995728 206.319839478 206.459976196 206.580093384 206.60987854 206.620132446 206.660171509 206.689956665 206.620132446 206.500015259 206.500015259 201.009918213 199.530426025 198.170074463 196.79019165 195.389801025 194.21987915 193.570465088 193.479644775 193.71987915 194.070465088 194.479644775 194.96987915 195.39956665 195.670074463 195.870269775 196.2003479 196.679840088 201.540237427 199.920120239 198.120315552 196.330276489 194.740432739 193.479690552 192.609573364 192.019729614 191.649612427 191.550003052 191.800003052 192.319534302 192.830276489 193.219924927 193.670120239 194.439651489 195.519729614 207.25012207 206.310180664 205.359985352 204.480102539 203.830200195 203.50012207 203.42980957 203.460083008 203.469848633 203.42980957 203.33996582 203.239868164 203.210083008 203.389770508 203.739868164 204.100219727 204.239868164 217.659851074 216.92010498 216.480163574 216.029968262 215.400085449 214.690124512 214.190124512 214.110046387 214.310241699 214.59979248 214.980163574 215.619812012 216.34979248 216.659851074 216.139831543 215.040222168 214.130065918 219.830154419 220.309646606 220.679763794 220.839920044 220.900466919 220.939529419 220.979568481 220.950271606 220.820388794 220.669998169 220.549880981 220.309646606 219.820388794 219.269607544 219.200271606 219.849685669 220.790115356 228.599533081 227.910079956 227.049728394 226.410079956 226.330001831 226.620040894 226.799728394 226.740158081 226.740158081 226.969650269 227.349533081 227.929611206 229.080001831 230.780197144 232.280197144 232.709884644 232.020431519 292.99029541 292.839904785 292.980529785 293.820373535 295.019592285 295.95904541 296.449279785 296.769592285 297.070373535 297.33013916 297.63092041 298.25982666 299.039123535 299.300842285 298.550842285 297.31060791 296.43951416 286.989440918 286.930847168 287.350769043 288.549987793 290.159362793 291.559753418 292.510925293 293.030456543 293.069519043 292.749206543 292.600769043 293.079284668 293.960144043 294.489440918 294.219909668 293.389831543 292.360534668 283.949615479 286.229888916 288.619537354 289.920318604 289.710357666 288.729888916 288.029693604 287.840240479 287.830474854 287.769927979 287.819732666 288.059967041 288.369537354 288.609771729 288.699615479 288.479888916 287.840240479 281.949584961 281.960327148 281.689819336 281.370483398 280.979858398 280.599975586 280.330444336 280.189819336 280.159545898 280.319702148 280.779663086 281.330444336 281.609741211 281.510131836 281.330444336 281.399780273 281.529663086 273.689758301 273.889953613 274.109680176 274.340148926 274.500305176 274.739562988 275.099914551 275.300109863 275.139953613 274.859680176 274.929992676 275.340148926 275.670227051 275.679992676 275.569641113 275.479797363 275.269836426 264.71987915 265.1300354 265.71987915 266.530426025 267.39956665 268.160308838 268.799957275 269.3097229 269.589996338 269.509918213 269.120269775 268.620269775 268.139801025 267.689605713 267.229644775 266.729644775 266.160308838 253.049804688 253.830078125 254.540039062 255.139648438 255.690429688 256.209960938 256.669921875 256.990234375 257.110351562 257.009765625 256.690429688 256.23046875 255.76953125 255.33984375 254.900390625 254.379882812 253.76953125 236.189880371 236.960388184 237.739685059 238.559997559 239.420349121 240.210388184 240.729919434 240.909606934 240.840270996 240.569763184 240.130310059 239.630310059 239.189880371 238.790466309 238.340270996 237.829528809 237.380310059 226.699920654 227.309783936 227.969940186 228.730194092 229.619842529 230.429901123 230.869842529 230.860076904 230.650115967 230.460174561 230.270233154 229.960174561 229.539764404 229.130096436 228.759979248 228.389862061 227.960174561 216.279769897 216.749984741 217.310043335 217.939926147 218.549789429 218.999984741 219.260238647 219.330062866 219.249984741 219.089828491 218.939926147 218.799789429 218.560043335 218.189926147 217.790023804 217.410140991 216.999984741 206.939956665 206.620132446 206.35987854 206.240249634 206.200210571 206.189956665 206.209976196 206.330093384 206.509780884 206.669937134 206.750015259 206.819839478 206.93019104 207.029800415 207.009780884 206.879898071 206.759780884 201.189605713 199.6300354 198.21987915 196.839996338 195.4503479 194.269683838 193.580230713 193.439605713 193.670074463 194.049957275 194.54019165 195.0597229 195.439605713 195.6300354 195.780426025 196.120269775 196.64956665 201.530471802 199.889846802 198.040237427 196.210159302 194.620315552 193.389846802 192.530471802 191.939651489 191.559768677 191.469924927 191.740432739 192.200393677 192.609573364 192.910354614 193.359573364 194.219924927 195.389846802 206.989868164 206.109985352 205.219848633 204.380004883 203.719848633 203.350219727 203.279907227 203.370239258 203.42980957 203.409790039 203.330200195 203.259887695 203.290161133 203.460083008 203.710083008 203.909790039 203.900024414 217.480163574 216.75994873 216.369812012 215.960144043 215.329772949 214.630065918 214.199890137 214.179870605 214.42010498 214.710144043 215.09979248 215.730163574 216.34979248 216.460144043 215.829772949 214.840026855 214.179870605 220.019607544 220.479568481 220.729568481 220.780349731 220.769607544 220.799880981 220.849685669 220.839920044 220.750076294 220.679763794 220.610427856 220.370193481 219.910232544 219.490310669 219.589920044 220.320388794 221.139724731 228.599533081 228.009689331 227.249923706 226.639572144 226.520431519 226.789962769 227.039962769 227.039962769 226.929611206 226.969650269 227.219650269 227.830001831 228.999923706 230.469650269 231.499923706 231.570236206 230.959884644 292.289123535 292.519592285 293.039123535 294.09967041 295.359436035 296.250061035 296.66998291 296.90045166 297.16998291 297.43951416 297.81060791 298.410217285 299.050842285 299.109436035 298.300842285 297.16998291 296.539123535 286.430847168 286.579284668 287.370300293 288.940612793 290.700378418 292.020690918 292.760925293 293.069519043 293.020690918 292.760925293 292.729675293 293.249206543 293.979675293 294.180847168 293.680847168 292.870300293 292.069519043 284.529693604 287.100006104 289.449615479 290.489654541 290.019927979 288.899810791 288.090240479 287.830474854 287.830474854 287.890045166 288.090240479 288.359771729 288.500396729 288.420318604 288.239654541 287.989654541 287.600006104 282.170288086 282.130249023 281.849975586 281.479858398 281.010131836 280.559936523 280.300170898 280.210327148 280.189819336 280.309936523 280.750366211 281.340209961 281.659545898 281.569702148 281.449584961 281.640014648 281.859741211 273.809875488 273.979797363 274.210266113 274.479797363 274.630187988 274.779602051 275.029602051 275.179992676 275.090148926 274.920227051 275.069641113 275.519836426 275.849914551 275.840148926 275.649719238 275.500305176 275.269836426 264.660308838 265.089996338 265.620269775 266.3800354 267.250152588 268.070465088 268.769683838 269.330230713 269.620269775 269.54019165 269.099761963 268.580230713 268.160308838 267.8097229 267.389801025 266.849761963 266.250152588 252.879882812 253.620117188 254.360351562 255.01953125 255.629882812 256.200195312 256.66015625 256.950195312 257.040039062 256.9296875 256.629882812 256.16015625 255.669921875 255.219726562 254.75 254.240234375 253.669921875 236.040466309 236.809997559 237.640075684 238.489685059 239.390075684 240.159606934 240.640075684 240.800231934 240.710388184 240.430114746 239.970153809 239.420349121 238.920349121 238.500427246 238.050231934 237.579528809 237.159606934 226.529998779 227.159881592 227.860076904 228.690155029 229.610076904 230.409881592 230.829803467 230.809783936 230.610076904 230.449920654 230.270233154 229.940155029 229.480194092 229.050018311 228.770233154 228.509979248 228.119842529 216.290023804 216.72996521 217.260238647 217.870101929 218.499984741 219.010238647 219.290023804 219.339828491 219.249984741 219.149887085 219.089828491 219.020004272 218.779769897 218.419906616 218.049789429 217.709945679 217.249984741 207.189956665 206.830093384 206.500015259 206.299819946 206.240249634 206.259780884 206.350112915 206.52003479 206.689956665 206.810073853 206.870132446 206.939956665 207.100112915 207.250015259 207.27003479 207.129898071 206.93019104 201.39956665 199.780426025 198.320465088 196.89956665 195.509918213 194.330230713 193.599761963 193.410308838 193.599761963 194.009918213 194.490386963 194.9503479 195.240386963 195.39956665 195.599761963 196.0597229 196.679840088 201.479690552 199.800003052 197.899612427 196.040237427 194.439651489 193.210159302 192.330276489 191.729690552 191.399612427 191.380081177 191.679885864 192.080276489 192.399612427 192.670120239 193.170120239 194.069534302 195.229690552 206.83996582 206.029907227 205.25012207 204.50012207 203.870239258 203.469848633 203.370239258 203.42980957 203.480102539 203.420043945 203.310180664 203.259887695 203.33996582 203.489868164 203.639770508 203.659790039 203.560180664 217.42010498 216.659851074 216.150085449 215.579772949 214.810241699 214.079772949 213.730163574 213.889831543 214.340026855 214.829772949 215.400085449 216.029968262 216.500183105 216.429870605 215.820007324 215.079772949 214.650085449 220.019607544 220.349685669 220.549880981 220.650466919 220.750076294 220.879959106 220.960037231 220.950271606 220.820388794 220.669998169 220.469802856 220.169998169 219.769607544 219.519607544 219.759841919 220.460037231 221.099685669 228.690353394 228.410079956 227.820236206 227.129806519 226.759689331 226.839767456 227.080001831 227.139572144 227.030197144 226.990158081 227.259689331 228.039962769 229.289962769 230.560470581 231.190353394 231.009689331 230.549728394 291.789123535 292.199279785 293.000061035 294.25982666 295.570373535 296.43951416 296.820373535 297.019592285 297.25982666 297.58013916 297.910217285 298.250061035 298.45904541 298.269592285 297.550842285 296.74029541 296.269592285 286.010925293 286.290222168 287.489440918 289.530456543 291.540222168 292.739440918 293.149597168 293.180847168 293.020690918 292.770690918 292.729675293 293.089050293 293.469909668 293.339050293 292.680847168 291.950378418 291.329284668 285.470123291 288.170318604 290.250396729 290.869537354 290.159576416 288.989654541 288.170318604 287.850006104 287.790435791 287.939849854 288.229888916 288.470123291 288.390045166 288.000396729 287.600006104 287.340240479 287.100006104 282.099975586 282.120483398 281.949584961 281.659545898 281.199584961 280.720092773 280.460327148 280.359741211 280.269897461 280.290405273 280.710327148 281.390014648 281.809936523 281.779663086 281.659545898 281.800170898 281.989624023 274.000305176 274.139953613 274.340148926 274.590148926 274.729797363 274.800109863 274.950500488 275.080383301 275.029602051 274.970031738 275.200500488 275.670227051 276.019836426 276.010070801 275.769836426 275.550109863 275.260070801 264.620269775 265.04019165 265.54019165 266.240386963 267.089996338 267.929840088 268.670074463 269.240386963 269.530426025 269.439605713 268.990386963 268.500152588 268.160308838 267.910308838 267.530426025 266.9503479 266.3097229 252.740234375 253.41015625 254.16015625 254.889648438 255.599609375 256.219726562 256.700195312 256.98046875 257.049804688 256.91015625 256.580078125 256.120117188 255.629882812 255.1796875 254.700195312 254.150390625 253.5703125 235.869567871 236.630310059 237.470153809 238.369567871 239.300231934 240.069763184 240.519958496 240.640075684 240.519958496 240.260192871 239.829528809 239.290466309 238.739685059 238.269958496 237.819763184 237.380310059 236.989685059 226.289764404 226.960174561 227.750213623 228.650115967 229.559783936 230.320037842 230.690155029 230.670135498 230.509979248 230.409881592 230.300018311 229.989959717 229.500213623 229.059783936 228.829803467 228.639862061 228.250213623 216.240219116 216.689926147 217.220199585 217.850082397 218.499984741 218.999984741 219.290023804 219.330062866 219.270004272 219.260238647 219.299789429 219.249984741 219.010238647 218.629867554 218.310043335 217.999984741 217.529769897 207.399917603 207.049819946 206.709976196 206.479995728 206.410171509 206.459976196 206.600112915 206.790054321 206.93019104 206.950210571 206.919937134 206.959976196 207.10987854 207.279800415 207.330093384 207.229995728 207.049819946 201.519683838 199.889801025 198.370269775 196.889801025 195.490386963 194.349761963 193.679840088 193.490386963 193.689605713 194.070465088 194.46987915 194.769683838 194.929840088 195.080230713 195.429840088 196.049957275 196.759918213 201.370315552 199.639846802 197.759963989 195.920120239 194.330276489 193.069534302 192.149612427 191.540237427 191.259963989 191.330276489 191.649612427 192.000198364 192.259963989 192.559768677 193.109573364 193.990432739 195.059768677 206.779907227 206.009887695 205.33996582 204.730102539 204.210083008 203.830200195 203.690063477 203.690063477 203.639770508 203.480102539 203.299926758 203.239868164 203.33996582 203.449829102 203.469848633 203.380004883 203.219848633 217.409851074 216.500183105 215.739929199 214.900085449 213.960144043 213.210144043 213.020202637 213.429870605 214.17010498 214.969909668 215.739929199 216.380065918 216.690124512 216.540222168 216.070007324 215.579772949 215.270202637 219.849685669 220.150466919 220.479568481 220.860427856 221.219802856 221.469802856 221.549880981 221.450271606 221.210037231 220.849685669 220.400466919 219.910232544 219.500076294 219.349685669 219.620193481 220.240310669 220.769607544 228.749923706 228.620040894 228.049728394 227.179611206 226.520431519 226.370040894 226.520431519 226.589767456 226.509689331 226.580001831 227.099533081 228.219650269 229.709884644 230.950119019 231.400314331 231.099533081 230.700119019 291.75982666 292.11920166 293.070373535 294.49029541 295.90045166 296.83013916 297.250061035 297.41998291 297.59967041 297.859436035 298.02935791 298.00982666 297.789123535 297.480529785 297.089904785 296.65045166 296.160217285 285.930847168 286.430847168 288.110534668 290.600769043 292.739440918 293.729675293 293.790222168 293.579284668 293.370300293 293.130065918 292.909362793 292.880065918 292.829284668 292.460144043 291.850769043 291.309753418 290.780456543 286.680084229 289.239654541 290.880279541 291.149810791 290.399810791 289.359771729 288.600006104 288.189849854 288.029693604 288.119537354 288.369537354 288.439849854 288.109771729 287.529693604 287.080474854 286.899810791 286.739654541 282.260131836 282.309936523 282.189819336 281.899780273 281.399780273 280.890014648 280.630249023 280.529663086 280.370483398 280.309936523 280.680053711 281.430053711 282.010131836 282.099975586 281.970092773 282.000366211 282.059936523 274.260070801 274.359680176 274.500305176 274.689758301 274.800109863 274.870422363 274.970031738 275.059875488 275.019836426 274.989562988 275.229797363 275.710266113 276.099914551 276.139953613 275.910461426 275.620422363 275.290344238 264.609527588 265.019683838 265.519683838 266.2003479 267.019683838 267.830230713 268.519683838 269.030426025 269.29019165 269.210113525 268.839996338 268.410308838 268.120269775 267.89956665 267.530426025 266.929840088 266.259918213 252.650390625 253.259765625 254.0 254.809570312 255.58984375 256.280273438 256.799804688 257.08984375 257.16015625 257.009765625 256.629882812 256.129882812 255.66015625 255.25 254.759765625 254.150390625 253.51953125 235.779724121 236.479919434 237.319763184 238.260192871 239.199645996 239.979919434 240.430114746 240.519958496 240.420349121 240.170349121 239.779724121 239.290466309 238.729919434 238.210388184 237.760192871 237.309997559 236.920349121 226.090057373 226.800018311 227.690155029 228.619842529 229.489959717 230.159881592 230.489959717 230.489959717 230.380096436 230.349822998 230.320037842 230.110076904 229.670135498 229.250213623 229.000213623 228.789764404 228.349822998 216.149887085 216.64012146 217.220199585 217.870101929 218.499984741 218.970199585 219.209945679 219.22996521 219.209945679 219.270004272 219.39012146 219.399887085 219.160140991 218.799789429 218.490219116 218.189926147 217.700180054 207.580093384 207.299819946 206.979995728 206.729995728 206.60987854 206.620132446 206.729995728 206.890151978 207.000015259 206.979995728 206.899917603 206.890151978 207.000015259 207.149917603 207.209976196 207.189956665 207.140151978 201.5597229 199.939605713 198.330230713 196.79019165 195.410308838 194.339996338 193.740386963 193.599761963 193.799957275 194.160308838 194.460113525 194.609527588 194.670074463 194.859527588 195.359527588 196.099761963 196.830230713 201.179885864 199.490432739 197.700393677 195.960159302 194.410354614 193.149612427 192.189651489 191.559768677 191.319534302 191.450393677 191.780471802 192.090042114 192.349807739 192.689651489 193.250198364 194.030471802 194.920120239 206.659790039 205.870239258 205.219848633 204.690063477 204.259887695 203.92980957 203.770141602 203.739868164 203.650024414 203.420043945 203.199829102 203.150024414 203.259887695 203.350219727 203.279907227 203.120239258 202.969848633 217.400085449 216.329772949 215.449890137 214.560241699 213.719909668 213.179870605 213.199890137 213.739929199 214.579772949 215.449890137 216.190124512 216.659851074 216.799987793 216.650085449 216.389831543 216.090026855 215.719909668 219.750076294 220.240310669 220.849685669 221.450271606 221.860427856 221.969802856 221.830154419 221.589920044 221.299880981 220.879959106 220.320388794 219.769607544 219.360427856 219.229568481 219.439529419 219.929763794 220.429763794 228.709884644 228.310470581 227.520431519 226.570236206 225.929611206 225.839767456 225.980392456 226.009689331 225.900314331 226.030197144 226.730392456 228.049728394 229.690353394 231.020431519 231.570236206 231.400314331 231.070236206 291.699279785 292.230529785 293.519592285 295.199279785 296.699279785 297.63092041 298.00982666 298.089904785 298.15045166 298.27935791 298.320373535 298.070373535 297.660217285 297.40045166 297.34967041 297.160217285 296.480529785 286.049987793 287.139831543 289.419128418 292.169128418 294.120300293 294.669128418 294.339050293 293.989440918 293.880065918 293.749206543 293.479675293 293.110534668 292.680847168 292.139831543 291.639831543 291.290222168 290.760925293 287.880279541 290.040435791 291.279693604 291.430084229 290.830474854 290.000396729 289.279693604 288.760162354 288.510162354 288.580474854 288.760162354 288.659576416 288.080474854 287.369537354 286.970123291 286.920318604 286.800201416 282.930053711 282.909545898 282.630249023 282.099975586 281.409545898 280.840209961 280.620483398 280.569702148 280.420288086 280.309936523 280.630249023 281.399780273 282.080444336 282.309936523 282.239624023 282.189819336 282.120483398 274.620422363 274.729797363 274.830383301 274.929992676 275.010070801 275.059875488 275.160461426 275.210266113 275.109680176 275.019836426 275.189758301 275.630187988 276.040344238 276.160461426 275.970031738 275.660461426 275.279602051 264.620269775 265.070465088 265.620269775 266.280426025 267.019683838 267.740386963 268.3097229 268.71987915 268.929840088 268.910308838 268.670074463 268.359527588 268.089996338 267.799957275 267.339996338 266.71987915 266.070465088 252.620117188 253.200195312 253.950195312 254.790039062 255.629882812 256.33984375 256.860351562 257.200195312 257.3203125 257.169921875 256.76953125 256.259765625 255.8203125 255.400390625 254.889648438 254.190429688 253.48046875 235.739685059 236.430114746 237.279724121 238.229919434 239.180114746 239.949645996 240.409606934 240.540466309 240.439880371 240.210388184 239.859802246 239.380310059 238.850036621 238.340270996 237.880310059 237.409606934 236.939880371 225.989959717 226.739959717 227.670135498 228.599822998 229.400115967 230.009979248 230.340057373 230.389862061 230.320037842 230.300018311 230.329803467 230.219940186 229.880096436 229.500213623 229.239959717 228.949920654 228.429901123 216.060043335 216.600082397 217.220199585 217.879867554 218.470199585 218.89012146 219.080062866 219.100082397 219.109848022 219.209945679 219.370101929 219.410140991 219.209945679 218.870101929 218.560043335 218.249984741 217.749984741 207.689956665 207.450210571 207.160171509 206.899917603 206.709976196 206.589859009 206.600112915 206.709976196 206.850112915 206.890151978 206.839859009 206.839859009 206.899917603 206.979995728 207.040054321 207.100112915 207.229995728 201.620269775 199.96987915 198.29019165 196.689605713 195.330230713 194.320465088 193.710113525 193.500152588 193.620269775 193.9503479 194.250152588 194.39956665 194.509918213 194.8097229 195.420074463 196.2003479 196.8800354 200.889846802 199.300003052 197.660354614 196.040237427 194.559768677 193.340042114 192.389846802 191.759963989 191.550003052 191.689651489 192.000198364 192.319534302 192.609573364 193.000198364 193.530471802 194.139846802 194.819534302 206.469848633 205.560180664 204.779907227 204.190063477 203.730102539 203.400024414 203.270141602 203.279907227 203.270141602 203.120239258 202.949829102 202.960083008 203.109985352 203.199829102 203.109985352 202.940063477 202.819946289 217.440124512 216.389831543 215.67010498 215.159851074 214.810241699 214.719909668 214.940124512 215.369812012 215.92010498 216.429870605 216.790222168 216.900085449 216.820007324 216.710144043 216.67010498 216.50994873 216.020202637 219.809646606 220.549880981 221.269607544 221.750076294 221.790115356 221.410232544 220.870193481 220.500076294 220.339920044 220.169998169 219.879959106 219.570388794 219.360427856 219.290115356 219.410232544 219.769607544 220.240310669 228.669845581 227.799728394 226.860275269 226.129806519 225.950119019 226.240158081 226.549728394 226.530197144 226.330001831 226.360275269 226.879806519 227.910079956 229.259689331 230.539962769 231.330001831 231.530197144 231.389572144 291.300842285 292.589904785 294.550842285 296.50982666 297.86920166 298.480529785 298.550842285 298.390686035 298.300842285 298.43951416 298.59967041 298.43951416 298.019592285 297.81060791 297.90045166 297.699279785 296.75982666 286.389831543 288.409362793 291.210144043 293.809753418 295.139831543 295.030456543 294.280456543 293.829284668 293.909362793 294.139831543 294.139831543 293.790222168 293.130065918 292.380065918 291.819519043 291.499206543 290.940612793 288.750396729 290.409576416 291.390045166 291.569732666 291.140045166 290.380279541 289.559967041 288.930084229 288.760162354 289.029693604 289.369537354 289.239654541 288.500396729 287.619537354 287.149810791 287.119537354 287.010162354 283.640014648 283.519897461 283.000366211 282.149780273 281.220092773 280.590209961 280.430053711 280.489624023 280.409545898 280.300170898 280.550170898 281.210327148 281.899780273 282.250366211 282.290405273 282.250366211 282.109741211 275.000305176 275.200500488 275.309875488 275.349914551 275.330383301 275.319641113 275.370422363 275.370422363 275.220031738 275.050109863 275.139953613 275.519836426 275.920227051 276.090148926 275.960266113 275.630187988 275.210266113 264.759918213 265.3097229 265.910308838 266.490386963 267.0597229 267.609527588 268.070465088 268.3800354 268.549957275 268.599761963 268.54019165 268.3800354 268.099761963 267.64956665 267.04019165 266.3800354 265.769683838 252.650390625 253.23046875 253.990234375 254.8203125 255.629882812 256.330078125 256.860351562 257.25 257.41015625 257.309570312 256.9296875 256.450195312 256.030273438 255.58984375 254.98046875 254.190429688 253.4296875 235.729919434 236.470153809 237.359802246 238.300231934 239.210388184 239.939880371 240.420349121 240.590270996 240.519958496 240.279724121 239.930114746 239.489685059 239.019958496 238.569763184 238.140075684 237.630310059 237.029724121 225.980194092 226.739959717 227.670135498 228.570037842 229.320037842 229.900115967 230.279998779 230.400115967 230.329803467 230.259979248 230.270233154 230.219940186 230.000213623 229.690155029 229.420135498 229.079803467 228.469940186 216.010238647 216.580062866 217.209945679 217.839828491 218.399887085 218.799789429 219.020004272 219.109848022 219.14012146 219.200180054 219.31980896 219.330062866 219.189926147 218.89012146 218.549789429 218.180160522 217.680160522 207.68019104 207.419937134 207.140151978 206.899917603 206.689956665 206.490249634 206.399917603 206.500015259 206.720230103 206.85987854 206.870132446 206.839859009 206.839859009 206.870132446 206.910171509 207.060073853 207.290054321 201.710113525 200.000152588 198.240386963 196.6300354 195.320465088 194.3097229 193.580230713 193.14956665 193.089996338 193.359527588 193.740386963 194.0597229 194.3800354 194.849761963 195.530426025 196.259918213 196.8800354 200.500198364 198.969924927 197.429885864 195.889846802 194.490432739 193.349807739 192.490432739 191.929885864 191.689651489 191.790237427 192.059768677 192.380081177 192.759963989 193.229690552 193.740432739 194.189651489 194.710159302 206.290161133 205.279907227 204.330200195 203.58996582 203.020141602 202.609985352 202.480102539 202.600219727 202.739868164 202.730102539 202.67980957 202.779907227 202.980102539 203.08996582 203.00012207 202.830200195 202.739868164 217.610046387 216.750183105 216.389831543 216.400085449 216.639831543 216.969909668 217.25994873 217.429870605 217.460144043 217.429870605 217.310241699 217.090026855 216.84979248 216.810241699 216.92010498 216.869812012 216.320007324 219.860427856 220.580154419 221.080154419 221.129959106 220.669998169 219.839920044 219.019607544 218.629959106 218.669998169 218.849685669 218.990310669 219.089920044 219.219802856 219.299880981 219.400466919 219.689529419 220.189529419 228.709884644 227.789962769 227.060470581 226.810470581 227.120040894 227.709884644 228.080001831 228.039962769 227.849533081 227.830001831 228.009689331 228.379806519 229.049728394 230.020431519 230.999923706 231.599533081 231.700119019 291.36920166 293.68951416 296.300842285 298.160217285 298.839904785 298.699279785 298.22076416 297.75982666 297.609436035 298.000061035 298.570373535 298.72076416 298.36920166 298.050842285 298.000061035 297.70904541 296.61920166 287.589050293 290.329284668 293.169128418 295.049987793 295.419128418 294.630065918 293.569519043 293.040222168 293.249206543 293.880065918 294.430847168 294.419128418 293.700378418 292.630065918 291.829284668 291.419128418 290.850769043 289.309967041 290.540435791 291.340240479 291.479888916 290.970123291 290.010162354 289.010162354 288.369537354 288.420318604 289.080474854 289.760162354 289.809967041 289.040435791 287.939849854 287.210357666 287.040435791 286.909576416 283.680053711 283.550170898 282.949584961 282.000366211 281.019897461 280.409545898 280.290405273 280.399780273 280.370483398 280.260131836 280.399780273 280.909545898 281.519897461 281.949584961 282.140014648 282.140014648 281.979858398 275.200500488 275.500305176 275.660461426 275.660461426 275.540344238 275.420227051 275.370422363 275.309875488 275.160461426 275.019836426 275.099914551 275.420227051 275.800109863 275.989562988 275.870422363 275.550109863 275.099914551 265.0597229 265.769683838 266.3800354 266.799957275 267.120269775 267.490386963 267.8800354 268.14956665 268.29019165 268.359527588 268.420074463 268.389801025 268.099761963 267.500152588 266.740386963 266.04019165 265.490386963 252.740234375 253.370117188 254.099609375 254.870117188 255.620117188 256.280273438 256.830078125 257.23046875 257.440429688 257.370117188 257.049804688 256.639648438 256.240234375 255.73046875 254.98046875 254.099609375 253.330078125 235.750427246 236.559997559 237.470153809 238.369567871 239.189880371 239.869567871 240.350036621 240.550231934 240.510192871 240.290466309 239.960388184 239.569763184 239.170349121 238.800231934 238.399841309 237.850036621 237.130310059 226.070037842 226.800018311 227.690155029 228.529998779 229.239959717 229.820037842 230.250213623 230.420135498 230.349822998 230.199920654 230.139862061 230.090057373 229.929901123 229.690155029 229.440155029 229.079803467 228.420135498 216.06980896 216.600082397 217.200180054 217.799789429 218.350082397 218.790023804 219.109848022 219.310043335 219.370101929 219.330062866 219.279769897 219.209945679 219.06980896 218.810043335 218.459945679 218.029769897 217.510238647 207.540054321 207.259780884 207.000015259 206.85987854 206.740249634 206.569839478 206.470230103 206.589859009 206.830093384 206.990249634 206.970230103 206.879898071 206.819839478 206.810073853 206.890151978 207.089859009 207.370132446 201.64956665 199.8800354 198.120269775 196.570465088 195.330230713 194.330230713 193.46987915 192.820465088 192.549957275 192.71987915 193.160308838 193.64956665 194.2003479 194.859527588 195.580230713 196.240386963 196.820465088 200.069534302 198.479690552 196.910354614 195.410354614 194.109573364 193.120315552 192.389846802 191.889846802 191.649612427 191.670120239 191.870315552 192.170120239 192.620315552 193.189651489 193.719924927 194.120315552 194.599807739 206.25012207 205.230102539 204.219848633 203.370239258 202.699829102 202.210083008 202.040161133 202.17980957 202.409790039 202.520141602 202.569946289 202.719848633 202.969848633 203.100219727 203.009887695 202.83996582 202.75012207 217.810241699 217.190124512 217.079772949 217.369812012 217.869812012 218.340026855 218.570007324 218.500183105 218.199890137 217.829772949 217.480163574 217.130065918 216.880065918 216.889831543 217.110046387 217.130065918 216.639831543 219.669998169 220.000076294 220.059646606 219.780349731 219.200271606 218.439529419 217.780349731 217.500076294 217.599685669 217.870193481 218.160232544 218.509841919 218.870193481 219.089920044 219.240310669 219.559646606 220.120193481 228.849533081 228.490158081 228.339767456 228.429611206 228.709884644 228.980392456 229.030197144 228.919845581 228.990158081 229.280197144 229.429611206 229.360275269 229.419845581 230.039962769 231.049728394 231.860275269 232.070236206 293.18951416 296.02935791 298.56060791 299.61920166 299.199279785 298.16998291 297.24029541 296.63092041 296.58013916 297.269592285 298.300842285 298.75982666 298.40045166 297.83013916 297.570373535 297.25982666 296.300842285 290.280456543 292.940612793 295.010925293 295.680847168 295.089050293 293.919128418 292.870300293 292.290222168 292.440612793 293.280456543 294.280456543 294.649597168 293.940612793 292.589050293 291.499206543 291.040222168 290.579284668 290.000396729 290.909576416 291.449615479 291.260162354 290.380279541 289.170318604 288.100006104 287.600006104 287.859771729 288.750396729 289.659576416 289.909576416 289.210357666 287.960357666 286.949615479 286.550201416 286.390045166 283.069702148 283.000366211 282.559936523 281.800170898 281.000366211 280.479858398 280.349975586 280.370483398 280.300170898 280.180053711 280.250366211 280.609741211 281.149780273 281.649780273 281.949584961 281.949584961 281.720092773 275.170227051 275.439758301 275.590148926 275.620422363 275.489562988 275.279602051 275.099914551 274.989562988 274.920227051 274.899719238 275.050109863 275.359680176 275.700500488 275.889953613 275.800109863 275.450500488 274.979797363 265.460113525 266.299957275 266.889801025 267.109527588 267.210113525 267.429840088 267.79019165 268.070465088 268.179840088 268.210113525 268.299957275 268.3097229 268.009918213 267.339996338 266.519683838 265.820465088 265.320465088 252.940429688 253.620117188 254.280273438 254.9296875 255.599609375 256.259765625 256.809570312 257.219726562 257.4296875 257.379882812 257.129882812 256.799804688 256.389648438 255.780273438 254.900390625 253.950195312 253.209960938 235.930114746 236.760192871 237.619567871 238.399841309 239.119567871 239.769958496 240.260192871 240.510192871 240.489685059 240.290466309 239.979919434 239.640075684 239.300231934 238.960388184 238.529724121 237.909606934 237.119567871 226.279998779 226.949920654 227.750213623 228.509979248 229.179901123 229.750213623 230.219940186 230.440155029 230.349822998 230.150115967 230.029998779 229.969940186 229.829803467 229.590057373 229.320037842 228.920135498 228.270233154 216.279769897 216.749984741 217.279769897 217.870101929 218.399887085 218.850082397 219.240219116 219.529769897 219.620101929 219.47996521 219.249984741 219.060043335 218.899887085 218.660140991 218.290023804 217.830062866 217.310043335 207.350112915 207.049819946 206.879898071 206.870132446 206.899917603 206.839859009 206.779800415 206.870132446 207.060073853 207.149917603 207.040054321 206.879898071 206.790054321 206.819839478 206.959976196 207.220230103 207.500015259 201.240386963 199.500152588 197.859527588 196.4503479 195.3097229 194.349761963 193.46987915 192.769683838 192.420074463 192.490386963 192.839996338 193.339996338 193.990386963 194.769683838 195.54019165 196.179840088 196.759918213 199.670120239 197.910354614 196.280471802 194.830276489 193.660354614 192.819534302 192.219924927 191.790237427 191.540237427 191.500198364 191.620315552 191.899612427 192.380081177 193.000198364 193.590042114 194.050003052 194.569534302 206.279907227 205.290161133 204.33996582 203.529907227 202.870239258 202.350219727 202.100219727 202.170043945 202.370239258 202.520141602 202.600219727 202.770141602 203.049926758 203.219848633 203.159790039 202.980102539 202.870239258 217.889831543 217.440124512 217.360046387 217.579772949 217.960144043 218.310241699 218.480163574 218.369812012 218.029968262 217.650085449 217.320007324 217.040222168 216.860046387 216.889831543 217.079772949 217.159851074 216.799987793 219.219802856 219.049880981 218.809646606 218.530349731 218.320388794 218.120193481 217.939529419 217.839920044 217.820388794 217.820388794 217.929763794 218.189529419 218.549880981 218.799880981 218.990310669 219.370193481 220.030349731 229.230392456 229.610275269 229.900314331 229.849533081 229.499923706 228.950119019 228.389572144 228.169845581 228.610275269 229.440353394 229.999923706 229.999923706 229.929611206 230.429611206 231.440353394 232.289962769 232.469650269 296.730529785 299.019592285 300.52935791 300.33013916 298.910217285 297.449279785 296.550842285 296.089904785 296.140686035 296.949279785 298.15045166 298.75982666 298.33013916 297.50982666 297.06060791 296.839904785 296.179748535 293.860534668 295.559753418 296.329284668 295.790222168 294.589050293 293.530456543 292.780456543 292.249206543 292.210144043 292.940612793 294.069519043 294.579284668 293.850769043 292.339050293 291.110534668 290.659362793 290.350769043 291.130279541 291.710357666 291.779693604 291.040435791 289.779693604 288.550201416 287.729888916 287.439849854 287.720123291 288.439849854 289.210357666 289.470123291 288.859771729 287.619537354 286.510162354 285.970123291 285.800201416 282.680053711 282.609741211 282.309936523 281.779663086 281.180053711 280.729858398 280.519897461 280.380249023 280.229858398 280.109741211 280.149780273 280.449584961 280.970092773 281.550170898 281.870483398 281.790405273 281.399780273 275.179992676 275.250305176 275.309875488 275.399719238 275.340148926 275.099914551 274.840148926 274.710266113 274.700500488 274.800109863 274.989562988 275.279602051 275.599914551 275.790344238 275.720031738 275.380187988 274.870422363 265.780426025 266.689605713 267.21987915 267.3097229 267.269683838 267.420074463 267.759918213 268.049957275 268.1300354 268.109527588 268.1300354 268.109527588 267.799957275 267.160308838 266.39956665 265.750152588 265.259918213 253.280273438 253.969726562 254.509765625 255.009765625 255.599609375 256.259765625 256.830078125 257.219726562 257.400390625 257.379882812 257.1796875 256.879882812 256.450195312 255.759765625 254.799804688 253.8203125 253.08984375 236.359802246 237.109802246 237.809997559 238.449645996 239.100036621 239.760192871 240.319763184 240.609802246 240.609802246 240.390075684 240.090270996 239.769958496 239.439880371 239.029724121 238.500427246 237.779724121 236.960388184 226.670135498 227.250213623 227.909881592 228.599822998 229.230194092 229.809783936 230.279998779 230.509979248 230.440155029 230.219940186 230.050018311 229.969940186 229.809783936 229.509979248 229.150115967 228.690155029 228.009979248 216.620101929 217.010238647 217.499984741 218.060043335 218.560043335 218.959945679 219.31980896 219.620101929 219.709945679 219.540023804 219.220199585 218.959945679 218.749984741 218.47996521 218.100082397 217.620101929 217.109848022 207.149917603 206.910171509 206.810073853 206.890151978 207.000015259 207.000015259 206.959976196 207.000015259 207.100112915 207.10987854 206.970230103 206.819839478 206.790054321 206.879898071 207.100112915 207.419937134 207.689956665 200.490386963 198.910308838 197.509918213 196.280426025 195.210113525 194.280426025 193.519683838 192.960113525 192.689605713 192.679840088 192.849761963 193.21987915 193.820465088 194.660308838 195.46987915 196.139801025 196.780426025 199.300003052 197.439651489 195.830276489 194.500198364 193.460159302 192.710159302 192.170120239 191.769729614 191.540237427 191.490432739 191.599807739 191.849807739 192.309768677 192.950393677 193.590042114 194.139846802 194.769729614 206.170043945 205.210083008 204.33996582 203.650024414 203.100219727 202.609985352 202.310180664 202.270141602 202.409790039 202.540161133 202.630004883 202.819946289 203.120239258 203.359985352 203.380004883 203.239868164 203.120239258 217.790222168 217.460144043 217.329772949 217.389831543 217.549987793 217.75994873 217.940124512 217.949890137 217.75994873 217.440124512 217.159851074 216.960144043 216.810241699 216.779968262 216.880065918 216.969909668 216.790222168 218.729568481 218.309646606 218.059646606 218.049880981 218.269607544 218.549880981 218.719802856 218.710037231 218.530349731 218.269607544 218.129959106 218.219802856 218.469802856 218.679763794 218.889724731 219.309646606 219.990310669 230.060470581 230.650314331 230.780197144 230.190353394 229.139572144 228.009689331 227.099533081 226.799728394 227.400314331 228.560470581 229.499923706 229.830001831 230.020431519 230.650314331 231.709884644 232.549728394 232.719650269 300.16998291 301.09967041 301.289123535 300.109436035 298.33013916 297.11920166 296.679748535 296.50982666 296.519592285 297.140686035 298.179748535 298.750061035 298.320373535 297.410217285 296.83013916 296.609436035 296.15045166 296.639831543 297.100769043 296.780456543 295.579284668 294.299987793 293.610534668 293.219909668 292.760925293 292.540222168 293.049987793 294.020690918 294.440612793 293.649597168 292.130065918 290.889831543 290.430847168 290.169128418 292.420318604 292.510162354 291.989654541 290.739654541 289.369537354 288.479888916 288.119537354 288.040435791 288.109771729 288.390045166 288.750396729 288.809967041 288.250396729 287.170318604 286.149810791 285.630279541 285.430084229 283.159545898 282.899780273 282.470092773 281.920288086 281.370483398 280.949584961 280.640014648 280.399780273 280.220092773 280.140014648 280.220092773 280.500366211 281.019897461 281.630249023 281.939819336 281.710327148 281.099975586 275.510070801 275.319641113 275.260070801 275.370422363 275.359680176 275.109680176 274.800109863 274.660461426 274.689758301 274.809875488 274.960266113 275.179992676 275.470031738 275.679992676 275.620422363 275.260070801 274.700500488 265.979644775 266.859527588 267.320465088 267.370269775 267.3097229 267.410308838 267.7003479 267.9503479 268.04019165 268.019683838 267.979644775 267.849761963 267.509918213 266.9503479 266.320465088 265.729644775 265.179840088 253.650390625 254.330078125 254.759765625 255.129882812 255.650390625 256.26953125 256.809570312 257.16015625 257.330078125 257.330078125 257.169921875 256.889648438 256.419921875 255.690429688 254.690429688 253.700195312 252.950195312 236.930114746 237.559997559 238.090270996 238.609802246 239.220153809 239.930114746 240.550231934 240.899841309 240.890075684 240.619567871 240.269958496 239.939880371 239.569763184 239.079528809 238.369567871 237.529724121 236.670349121 227.239959717 227.690155029 228.219940186 228.820037842 229.440155029 230.020233154 230.500213623 230.739959717 230.670135498 230.420135498 230.199920654 230.070037842 229.880096436 229.520233154 229.029998779 228.440155029 227.719940186 217.029769897 217.370101929 217.799789429 218.310043335 218.760238647 219.089828491 219.379867554 219.629867554 219.709945679 219.540023804 219.240219116 218.939926147 218.680160522 218.370101929 217.950180054 217.459945679 216.97996521 206.979995728 206.790054321 206.720230103 206.810073853 206.910171509 206.899917603 206.830093384 206.819839478 206.879898071 206.890151978 206.819839478 206.77003479 206.819839478 206.990249634 207.250015259 207.60987854 207.910171509 199.609527588 198.259918213 197.139801025 196.0597229 195.000152588 194.089996338 193.439605713 193.0597229 192.910308838 192.870269775 192.929840088 193.170074463 193.740386963 194.580230713 195.4503479 196.189605713 196.910308838 199.000198364 197.210159302 195.729690552 194.519729614 193.540237427 192.769729614 192.200393677 191.800003052 191.609573364 191.609573364 191.740432739 192.000198364 192.460159302 193.099807739 193.769729614 194.410354614 195.149612427 205.909790039 204.909790039 204.080200195 203.50012207 203.060180664 202.670043945 202.389770508 202.299926758 202.389770508 202.509887695 202.630004883 202.830200195 203.150024414 203.469848633 203.609985352 203.549926758 203.42980957 217.590026855 217.369812012 217.310241699 217.320007324 217.380065918 217.529968262 217.779968262 217.949890137 217.860046387 217.529968262 217.199890137 216.980163574 216.829772949 216.690124512 216.67010498 216.750183105 216.739929199 218.429763794 218.129959106 218.129959106 218.309646606 218.599685669 218.870193481 218.979568481 218.919998169 218.700271606 218.419998169 218.250076294 218.309646606 218.519607544 218.719802856 218.950271606 219.379959106 220.040115356 231.240158081 231.310470581 230.679611206 229.490158081 228.289962769 227.339767456 226.669845581 226.429611206 226.910079956 227.919845581 228.849533081 229.349533081 229.749923706 230.530197144 231.629806519 232.520431519 232.780197144 301.66998291 301.40045166 300.800842285 299.390686035 297.90045166 297.22076416 297.230529785 297.20904541 297.070373535 297.320373535 298.06060791 298.519592285 298.230529785 297.449279785 296.800842285 296.38092041 295.84967041 297.520690918 297.169128418 296.479675293 295.339050293 294.350769043 293.889831543 293.620300293 293.180847168 292.909362793 293.270690918 293.969909668 294.130065918 293.309753418 291.930847168 290.809753418 290.249206543 289.839050293 293.220123291 292.760162354 291.699615479 290.229888916 289.100006104 288.720123291 288.739654541 288.699615479 288.540435791 288.460357666 288.470123291 288.300201416 287.710357666 286.769927979 285.930084229 285.479888916 285.199615479 283.949584961 283.409545898 282.680053711 281.989624023 281.449584961 281.050170898 280.729858398 280.460327148 280.309936523 280.290405273 280.390014648 280.670288086 281.189819336 281.790405273 282.050170898 281.699584961 280.930053711 276.029602051 275.760070801 275.630187988 275.670227051 275.580383301 275.239562988 274.899719238 274.779602051 274.819641113 274.870422363 274.910461426 275.069641113 275.330383301 275.529602051 275.460266113 275.059875488 274.439758301 266.170074463 266.929840088 267.320465088 267.420074463 267.389801025 267.4503479 267.620269775 267.79019165 267.889801025 267.929840088 267.859527588 267.639801025 267.250152588 266.750152588 266.210113525 265.620269775 264.9503479 253.959960938 254.599609375 254.950195312 255.259765625 255.719726562 256.259765625 256.709960938 257.0 257.16015625 257.209960938 257.08984375 256.809570312 256.309570312 255.549804688 254.559570312 253.549804688 252.75 237.479919434 237.979919434 238.399841309 238.859802246 239.460388184 240.170349121 240.800231934 241.159606934 241.140075684 240.840270996 240.449645996 240.100036621 239.720153809 239.119567871 238.269958496 237.290466309 236.350036621 227.860076904 228.199920654 228.599822998 229.150115967 229.750213623 230.329803467 230.800018311 231.039764404 230.969940186 230.670135498 230.380096436 230.179901123 229.960174561 229.570037842 228.969940186 228.239959717 227.409881592 217.470199585 217.760238647 218.129867554 218.580062866 218.990219116 219.290023804 219.540023804 219.740219116 219.799789429 219.649887085 219.350082397 219.029769897 218.709945679 218.339828491 217.870101929 217.39012146 216.919906616 206.850112915 206.669937134 206.60987854 206.660171509 206.700210571 206.660171509 206.569839478 206.540054321 206.600112915 206.669937134 206.729995728 206.790054321 206.899917603 207.080093384 207.379898071 207.77003479 208.140151978 198.830230713 197.670074463 196.740386963 195.769683838 194.71987915 193.8097229 193.21987915 192.929840088 192.799957275 192.759918213 192.820465088 193.080230713 193.670074463 194.54019165 195.46987915 196.320465088 197.160308838 198.819534302 197.210159302 195.870315552 194.689651489 193.670120239 192.819534302 192.210159302 191.819534302 191.649612427 191.670120239 191.840042114 192.160354614 192.660354614 193.319534302 194.019729614 194.740432739 195.590042114 205.650024414 204.639770508 203.850219727 203.330200195 202.960083008 202.659790039 202.420043945 202.330200195 202.370239258 202.50012207 202.650024414 202.880004883 203.230102539 203.609985352 203.870239258 203.889770508 203.790161133 217.380065918 217.270202637 217.320007324 217.400085449 217.429870605 217.549987793 217.829772949 218.09979248 218.070007324 217.699890137 217.299987793 217.049987793 216.880065918 216.679870605 216.560241699 216.650085449 216.770202637 218.469802856 218.460037231 218.679763794 218.879959106 218.929763794 218.839920044 218.679763794 218.500076294 218.339920044 218.189529419 218.120193481 218.240310669 218.500076294 218.759841919 219.030349731 219.450271606 220.070388794 232.150314331 231.410079956 229.980392456 228.469650269 227.599533081 227.330001831 227.200119019 227.120040894 227.400314331 228.080001831 228.759689331 229.190353394 229.589767456 230.360275269 231.440353394 232.379806519 232.780197144 301.390686035 300.72076416 300.08013916 298.95904541 297.83013916 297.410217285 297.50982666 297.43951416 297.16998291 297.18951416 297.640686035 298.019592285 297.910217285 297.41998291 296.800842285 296.13092041 295.36920166 297.239440918 296.680847168 296.159362793 295.360534668 294.559753418 294.040222168 293.620300293 293.159362793 292.999206543 293.339050293 293.749206543 293.579284668 292.739440918 291.639831543 290.719909668 290.069519043 289.440612793 293.229888916 292.359771729 291.050201416 289.699615479 288.960357666 288.920318604 289.029693604 288.859771729 288.569732666 288.470123291 288.409576416 288.069732666 287.340240479 286.460357666 285.750396729 285.290435791 284.920318604 283.870483398 283.180053711 282.380249023 281.750366211 281.390014648 281.149780273 280.890014648 280.640014648 280.489624023 280.470092773 280.569702148 280.840209961 281.359741211 281.939819336 282.159545898 281.739624023 280.890014648 276.359680176 276.250305176 276.149719238 276.069641113 275.769836426 275.279602051 274.929992676 274.870422363 274.929992676 274.889953613 274.849914551 274.960266113 275.220031738 275.380187988 275.250305176 274.800109863 274.149719238 266.389801025 267.030426025 267.3800354 267.509918213 267.530426025 267.530426025 267.570465088 267.6300354 267.759918213 267.839996338 267.769683838 267.46987915 267.030426025 266.549957275 266.049957275 265.389801025 264.580230713 254.1796875 254.790039062 255.120117188 255.41015625 255.790039062 256.219726562 256.559570312 256.790039062 256.950195312 257.030273438 256.950195312 256.669921875 256.150390625 255.360351562 254.370117188 253.33984375 252.450195312 237.909606934 238.329528809 238.699645996 239.159606934 239.739685059 240.350036621 240.890075684 241.220153809 241.220153809 240.939880371 240.569763184 240.239685059 239.850036621 239.210388184 238.229919434 237.090270996 236.029724121 228.429901123 228.690155029 229.020233154 229.520233154 230.090057373 230.619842529 231.050018311 231.289764404 231.230194092 230.920135498 230.529998779 230.250213623 230.000213623 229.619842529 228.960174561 228.079803467 227.079803467 217.930160522 218.180160522 218.470199585 218.830062866 219.209945679 219.540023804 219.810043335 219.97996521 220.020004272 219.879867554 219.560043335 219.180160522 218.790023804 218.370101929 217.899887085 217.410140991 216.919906616 206.819839478 206.589859009 206.509780884 206.529800415 206.569839478 206.529800415 206.450210571 206.410171509 206.470230103 206.569839478 206.689956665 206.810073853 206.959976196 207.149917603 207.479995728 207.939956665 208.390151978 198.240386963 197.170074463 196.3097229 195.410308838 194.429840088 193.599761963 193.049957275 192.729644775 192.530426025 192.460113525 192.570465088 192.960113525 193.639801025 194.509918213 195.46987915 196.460113525 197.46987915 198.780471802 197.280471802 195.960159302 194.729690552 193.620315552 192.750198364 192.170120239 191.830276489 191.649612427 191.649612427 191.830276489 192.219924927 192.790237427 193.500198364 194.250198364 195.069534302 196.030471802 205.560180664 204.630004883 203.920043945 203.409790039 203.049926758 202.770141602 202.569946289 202.460083008 202.449829102 202.529907227 202.710083008 202.989868164 203.389770508 203.83996582 204.17980957 204.270141602 204.199829102 217.199890137 217.139831543 217.239929199 217.340026855 217.34979248 217.380065918 217.650085449 217.980163574 218.00994873 217.690124512 217.320007324 217.09979248 216.92010498 216.67010498 216.50994873 216.630065918 216.869812012 218.910232544 219.030349731 219.250076294 219.330154419 219.179763794 218.889724731 218.580154419 218.339920044 218.160232544 218.040115356 217.990310669 218.110427856 218.389724731 218.729568481 219.049880981 219.439529419 220.019607544 232.039962769 230.919845581 229.209884644 227.799728394 227.299728394 227.450119019 227.580001831 227.599533081 227.870040894 228.469650269 229.049728394 229.360275269 229.669845581 230.339767456 231.370040894 232.349533081 232.870040894 301.019592285 300.56060791 300.089904785 299.09967041 297.99029541 297.429748535 297.339904785 297.20904541 296.99029541 297.000061035 297.27935791 297.50982666 297.49029541 297.25982666 296.81060791 296.050842285 295.09967041 297.370300293 296.839050293 296.389831543 295.610534668 294.690612793 293.940612793 293.350769043 292.950378418 292.989440918 293.339050293 293.450378418 292.960144043 292.100769043 291.299987793 290.659362793 290.010925293 289.219909668 292.809967041 291.809967041 290.569732666 289.489654541 289.029693604 289.029693604 288.920318604 288.569732666 288.340240479 288.420318604 288.430084229 287.960357666 287.100006104 286.229888916 285.569732666 285.059967041 284.500396729 282.510131836 281.949584961 281.479858398 281.319702148 281.359741211 281.349975586 281.159545898 280.890014648 280.680053711 280.599975586 280.670288086 280.949584961 281.470092773 282.019897461 282.180053711 281.739624023 280.920288086 276.229797363 276.429992676 276.450500488 276.250305176 275.750305176 275.170227051 274.880187988 274.920227051 274.979797363 274.899719238 274.809875488 274.920227051 275.170227051 275.250305176 275.050109863 274.580383301 273.950500488 266.620269775 267.170074463 267.46987915 267.599761963 267.6300354 267.589996338 267.54019165 267.549957275 267.64956665 267.750152588 267.660308838 267.3097229 266.839996338 266.370269775 265.830230713 265.120269775 264.21987915 254.419921875 255.0 255.33984375 255.58984375 255.849609375 256.139648438 256.400390625 256.610351562 256.76953125 256.849609375 256.790039062 256.509765625 255.98046875 255.150390625 254.110351562 253.040039062 252.08984375 238.350036621 238.689880371 239.050231934 239.519958496 240.029724121 240.489685059 240.859802246 241.119567871 241.159606934 240.949645996 240.640075684 240.350036621 239.989685059 239.300231934 238.210388184 236.920349121 235.689880371 228.929901123 229.150115967 229.449920654 229.909881592 230.429901123 230.869842529 231.210174561 231.420135498 231.409881592 231.110076904 230.690155029 230.340057373 230.090057373 229.710174561 229.000213623 227.940155029 226.750213623 218.410140991 218.629867554 218.830062866 219.089828491 219.430160522 219.779769897 220.060043335 220.220199585 220.240219116 220.109848022 219.799789429 219.359848022 218.899887085 218.450180054 217.990219116 217.470199585 216.919906616 206.85987854 206.569839478 206.439956665 206.439956665 206.500015259 206.52003479 206.470230103 206.43019104 206.450210571 206.540054321 206.660171509 206.779800415 206.939956665 207.18019104 207.569839478 208.10987854 208.640151978 197.849761963 196.769683838 195.89956665 195.019683838 194.160308838 193.479644775 193.030426025 192.679840088 192.389801025 192.250152588 192.439605713 192.929840088 193.639801025 194.490386963 195.479644775 196.599761963 197.8097229 198.700393677 197.189651489 195.800003052 194.500198364 193.399612427 192.639846802 192.200393677 191.920120239 191.710159302 191.639846802 191.840042114 192.300003052 192.950393677 193.700393677 194.530471802 195.450393677 196.509963989 205.620239258 204.830200195 204.210083008 203.690063477 203.239868164 202.920043945 202.699829102 202.569946289 202.489868164 202.520141602 202.710083008 203.080200195 203.569946289 204.100219727 204.520141602 204.67980957 204.659790039 217.119812012 216.989929199 217.060241699 217.150085449 217.139831543 217.139831543 217.369812012 217.730163574 217.84979248 217.630065918 217.329772949 217.130065918 216.909851074 216.59979248 216.42010498 216.59979248 216.949890137 219.589920044 219.549880981 219.519607544 219.419998169 219.290115356 219.129959106 218.889724731 218.620193481 218.360427856 218.160232544 218.040115356 218.110427856 218.379959106 218.750076294 219.089920044 219.439529419 219.979568481 230.879806519 230.030197144 228.789962769 227.799728394 227.429611206 227.379806519 227.289962769 227.280197144 227.740158081 228.499923706 229.129806519 229.419845581 229.690353394 230.339767456 231.379806519 232.400314331 232.969650269 301.480529785 301.160217285 300.519592285 299.27935791 297.980529785 297.289123535 297.13092041 297.039123535 296.93951416 297.00982666 297.199279785 297.300842285 297.24029541 297.13092041 296.820373535 296.13092041 295.16998291 298.299987793 297.690612793 296.860534668 295.659362793 294.469909668 293.639831543 293.130065918 292.919128418 293.079284668 293.370300293 293.260925293 292.559753418 291.739440918 291.159362793 290.669128418 290.010925293 289.200378418 292.390045166 291.479888916 290.449615479 289.600006104 289.199615479 289.029693604 288.689849854 288.269927979 288.170318604 288.399810791 288.449615479 287.890045166 286.970123291 286.149810791 285.510162354 284.869537354 284.130279541 280.720092773 280.500366211 280.580444336 281.019897461 281.460327148 281.580444336 281.380249023 281.080444336 280.840209961 280.710327148 280.750366211 281.029663086 281.540405273 281.989624023 282.050170898 281.569702148 280.769897461 275.840148926 276.269836426 276.370422363 276.109680176 275.559875488 275.040344238 274.889953613 275.010070801 275.050109863 274.910461426 274.830383301 274.950500488 275.139953613 275.139953613 274.880187988 274.439758301 273.859680176 266.759918213 267.240386963 267.46987915 267.5597229 267.589996338 267.549957275 267.500152588 267.490386963 267.5597229 267.609527588 267.46987915 267.099761963 266.620269775 266.14956665 265.6300354 264.910308838 264.009918213 254.759765625 255.330078125 255.629882812 255.76953125 255.889648438 256.059570312 256.280273438 256.5 256.669921875 256.709960938 256.620117188 256.33984375 255.780273438 254.919921875 253.83984375 252.73046875 251.740234375 238.949645996 239.199645996 239.500427246 239.909606934 240.319763184 240.609802246 240.819763184 241.019958496 241.100036621 240.979919434 240.729919434 240.470153809 240.109802246 239.369567871 238.180114746 236.739685059 235.369567871 229.420135498 229.619842529 229.900115967 230.320037842 230.759979248 231.110076904 231.349822998 231.520233154 231.520233154 231.279998779 230.880096436 230.500213623 230.250213623 229.849822998 229.039764404 227.809783936 226.429901123 218.870101929 219.06980896 219.220199585 219.39012146 219.660140991 219.959945679 220.189926147 220.310043335 220.339828491 220.249984741 219.999984741 219.560043335 219.049789429 218.56980896 218.080062866 217.529769897 216.899887085 206.890151978 206.529800415 206.35987854 206.330093384 206.399917603 206.459976196 206.450210571 206.43019104 206.439956665 206.509780884 206.589859009 206.709976196 206.899917603 207.18019104 207.649917603 208.250015259 208.839859009 197.609527588 196.509918213 195.549957275 194.639801025 193.870269775 193.339996338 193.009918213 192.7003479 192.370269775 192.240386963 192.46987915 193.019683838 193.710113525 194.519683838 195.519683838 196.780426025 198.170074463 198.420120239 196.880081177 195.460159302 194.179885864 193.210159302 192.630081177 192.319534302 192.090042114 191.849807739 191.750198364 191.969924927 192.490432739 193.170120239 193.960159302 194.870315552 195.910354614 197.059768677 205.710083008 205.040161133 204.469848633 203.880004883 203.299926758 202.870239258 202.639770508 202.50012207 202.400024414 202.42980957 202.670043945 203.109985352 203.710083008 204.330200195 204.830200195 205.069946289 205.120239258 217.159851074 216.889831543 216.889831543 217.049987793 217.110046387 217.159851074 217.409851074 217.750183105 217.880065918 217.690124512 217.389831543 217.17010498 216.900085449 216.50994873 216.320007324 216.560241699 217.000183105 220.150466919 219.889724731 219.509841919 219.240310669 219.189529419 219.210037231 219.070388794 218.780349731 218.479568481 218.269607544 218.189529419 218.269607544 218.530349731 218.889724731 219.210037231 219.519607544 220.000076294 229.539962769 229.200119019 228.770431519 228.360275269 227.959884644 227.469650269 227.009689331 226.969650269 227.549728394 228.360275269 228.889572144 229.120040894 229.459884644 230.230392456 231.349533081 232.410079956 233.020431519 301.910217285 301.429748535 300.34967041 298.839904785 297.640686035 297.199279785 297.199279785 297.13092041 296.980529785 297.039123535 297.269592285 297.40045166 297.339904785 297.160217285 296.789123535 296.11920166 295.25982666 298.850769043 298.079284668 296.799987793 295.229675293 293.989440918 293.380065918 293.130065918 293.020690918 293.130065918 293.299987793 293.130065918 292.510925293 291.829284668 291.299987793 290.729675293 289.919128418 289.069519043 291.920318604 291.199615479 290.380279541 289.680084229 289.239654541 288.930084229 288.540435791 288.199615479 288.170318604 288.399810791 288.390045166 287.850006104 287.029693604 286.300201416 285.609771729 284.779693604 283.880279541 279.710327148 279.790405273 280.290405273 281.059936523 281.609741211 281.670288086 281.420288086 281.140014648 280.949584961 280.840209961 280.849975586 281.099975586 281.519897461 281.830444336 281.739624023 281.199584961 280.380249023 275.500305176 275.970031738 276.029602051 275.769836426 275.319641113 274.989562988 274.970031738 275.120422363 275.109680176 274.939758301 274.859680176 274.970031738 275.090148926 275.010070801 274.750305176 274.359680176 273.760070801 266.769683838 267.170074463 267.339996338 267.370269775 267.389801025 267.420074463 267.429840088 267.429840088 267.460113525 267.4503479 267.280426025 266.89956665 266.410308838 265.929840088 265.439605713 264.79019165 263.939605713 255.1796875 255.700195312 255.91015625 255.91015625 255.879882812 255.990234375 256.240234375 256.490234375 256.620117188 256.58984375 256.4296875 256.129882812 255.559570312 254.669921875 253.580078125 252.469726562 251.459960938 239.699645996 239.840270996 240.019958496 240.319763184 240.600036621 240.760192871 240.859802246 241.000427246 241.100036621 241.040466309 240.840270996 240.579528809 240.180114746 239.390075684 238.119567871 236.569763184 235.100036621 229.949920654 230.119842529 230.349822998 230.690155029 231.059783936 231.320037842 231.489959717 231.590057373 231.599822998 231.400115967 231.050018311 230.699920654 230.429901123 229.969940186 229.050018311 227.670135498 226.199920654 219.249984741 219.459945679 219.600082397 219.709945679 219.879867554 220.089828491 220.249984741 220.299789429 220.330062866 220.299789429 220.14012146 219.749984741 219.22996521 218.700180054 218.14012146 217.510238647 216.850082397 206.819839478 206.470230103 206.279800415 206.209976196 206.27003479 206.339859009 206.379898071 206.390151978 206.439956665 206.490249634 206.549819946 206.649917603 206.830093384 207.160171509 207.660171509 208.310073853 208.939956665 197.439605713 196.280426025 195.229644775 194.259918213 193.509918213 193.080230713 192.830230713 192.570465088 192.29019165 192.229644775 192.54019165 193.1300354 193.799957275 194.580230713 195.639801025 197.019683838 198.530426025 198.000198364 196.540237427 195.210159302 194.069534302 193.219924927 192.710159302 192.460159302 192.229690552 192.000198364 191.939651489 192.210159302 192.729690552 193.410354614 194.200393677 195.189651489 196.359573364 197.599807739 205.770141602 205.08996582 204.509887695 203.850219727 203.170043945 202.670043945 202.42980957 202.319946289 202.270141602 202.330200195 202.620239258 203.130004883 203.799926758 204.509887695 205.08996582 205.42980957 205.560180664 217.329772949 216.949890137 216.929870605 217.150085449 217.310241699 217.429870605 217.659851074 217.960144043 218.00994873 217.739929199 217.409851074 217.179870605 216.880065918 216.460144043 216.270202637 216.549987793 217.040222168 220.250076294 219.900466919 219.360427856 218.979568481 218.919998169 218.969802856 218.799880981 218.479568481 218.269607544 218.269607544 218.360427856 218.490310669 218.719802856 219.040115356 219.320388794 219.599685669 220.040115356 228.969650269 228.839767456 228.980392456 228.990158081 228.620040894 227.929611206 227.379806519 227.370040894 227.839767456 228.310470581 228.509689331 228.669845581 229.179611206 230.150314331 231.310470581 232.349533081 232.990158081 301.109436035 300.49029541 299.300842285 298.00982666 297.320373535 297.339904785 297.500061035 297.300842285 296.93951416 296.93951416 297.300842285 297.660217285 297.68951416 297.359436035 296.72076416 295.890686035 295.070373535 297.839050293 297.200378418 295.930847168 294.489440918 293.589050293 293.350769043 293.309753418 293.130065918 293.010925293 293.040222168 292.989440918 292.659362793 292.219909668 291.680847168 290.839050293 289.749206543 288.799987793 291.100006104 290.609771729 290.069732666 289.529693604 289.119537354 288.809967041 288.510162354 288.290435791 288.250396729 288.350006104 288.300201416 287.930084229 287.340240479 286.649810791 285.800201416 284.739654541 283.720123291 279.739624023 279.939819336 280.540405273 281.269897461 281.659545898 281.559936523 281.260131836 281.080444336 281.019897461 280.960327148 280.970092773 281.140014648 281.399780273 281.519897461 281.300170898 280.710327148 279.870483398 275.300109863 275.620422363 275.590148926 275.380187988 275.109680176 274.970031738 275.019836426 275.130187988 275.080383301 274.910461426 274.849914551 274.929992676 274.950500488 274.830383301 274.590148926 274.220031738 273.529602051 266.740386963 267.04019165 267.120269775 267.1300354 267.170074463 267.259918213 267.339996338 267.389801025 267.410308838 267.370269775 267.189605713 266.780426025 266.229644775 265.71987915 265.240386963 264.660308838 263.870269775 255.549804688 255.98046875 256.0703125 255.959960938 255.870117188 255.98046875 256.259765625 256.530273438 256.610351562 256.490234375 256.26953125 255.919921875 255.3203125 254.4296875 253.360351562 252.280273438 251.26953125 240.420349121 240.479919434 240.529724121 240.699645996 240.859802246 240.890075684 240.899841309 240.970153809 241.069763184 241.050231934 240.880310059 240.619567871 240.189880371 239.359802246 238.040466309 236.460388184 234.949645996 230.520233154 230.639862061 230.770233154 230.989959717 231.250213623 231.449920654 231.559783936 231.619842529 231.610076904 231.449920654 231.150115967 230.860076904 230.570037842 230.059783936 229.020233154 227.570037842 226.079803467 219.529769897 219.770004272 219.910140991 219.959945679 220.040023804 220.180160522 220.279769897 220.290023804 220.290023804 220.299789429 220.180160522 219.879867554 219.399887085 218.81980896 218.149887085 217.450180054 216.799789429 206.689956665 206.390151978 206.220230103 206.160171509 206.200210571 206.27003479 206.330093384 206.390151978 206.479995728 206.540054321 206.549819946 206.589859009 206.77003479 207.120132446 207.640151978 208.290054321 208.979995728 197.160308838 195.929840088 194.820465088 193.839996338 193.14956665 192.799957275 192.620269775 192.39956665 192.160308838 192.189605713 192.609527588 193.240386963 193.889801025 194.64956665 195.769683838 197.269683838 198.870269775 197.740432739 196.479690552 195.319534302 194.269729614 193.389846802 192.790237427 192.460159302 192.259963989 192.130081177 192.160354614 192.429885864 192.920120239 193.550003052 194.380081177 195.479690552 196.759963989 198.059768677 205.699829102 204.949829102 204.310180664 203.650024414 203.009887695 202.540161133 202.299926758 202.190063477 202.159790039 202.290161133 202.630004883 203.17980957 203.889770508 204.659790039 205.33996582 205.770141602 205.969848633 217.579772949 217.210144043 217.210144043 217.380065918 217.460144043 217.529968262 217.739929199 217.969909668 217.929870605 217.590026855 217.270202637 217.09979248 216.860046387 216.460144043 216.239929199 216.50994873 217.049987793 219.809646606 219.610427856 219.169998169 218.839920044 218.759841919 218.710037231 218.439529419 218.150466919 218.120193481 218.370193481 218.610427856 218.710037231 218.809646606 219.059646606 219.349685669 219.660232544 220.080154419 229.440353394 229.089767456 229.179611206 229.230392456 228.919845581 228.379806519 228.049728394 228.080001831 228.240158081 228.200119019 228.089767456 228.339767456 229.150314331 230.289962769 231.410079956 232.310470581 232.959884644 299.269592285 298.929748535 298.230529785 297.570373535 297.390686035 297.61920166 297.70904541 297.36920166 296.949279785 296.99029541 297.500061035 298.000061035 298.070373535 297.589904785 296.699279785 295.65045166 294.789123535 295.690612793 295.520690918 294.819519043 293.960144043 293.510925293 293.510925293 293.469909668 293.139831543 292.829284668 292.799987793 292.889831543 292.850769043 292.620300293 292.079284668 291.040222168 289.700378418 288.630065918 290.000396729 289.819732666 289.649810791 289.380279541 289.069732666 288.790435791 288.569732666 288.380279541 288.260162354 288.239654541 288.260162354 288.140045166 287.750396729 287.019927979 285.939849854 284.710357666 283.680084229 280.159545898 280.390014648 280.870483398 281.390014648 281.569702148 281.359741211 281.059936523 280.970092773 281.010131836 281.029663086 281.040405273 281.120483398 281.199584961 281.140014648 280.830444336 280.260131836 279.430053711 275.069641113 275.200500488 275.109680176 275.019836426 274.960266113 274.960266113 275.040344238 275.080383301 275.000305176 274.889953613 274.840148926 274.830383301 274.739562988 274.559875488 274.349914551 273.950500488 273.130187988 266.679840088 266.859527588 266.889801025 266.920074463 267.000152588 267.1300354 267.259918213 267.339996338 267.370269775 267.359527588 267.189605713 266.759918213 266.14956665 265.530426025 265.019683838 264.479644775 263.7003479 255.799804688 256.080078125 256.0703125 255.940429688 255.879882812 256.030273438 256.349609375 256.58984375 256.610351562 256.4296875 256.150390625 255.76953125 255.139648438 254.23046875 253.1796875 252.139648438 251.110351562 240.989685059 241.010192871 240.979919434 241.019958496 241.050231934 240.989685059 240.890075684 240.899841309 240.979919434 241.000427246 240.869567871 240.609802246 240.130310059 239.290466309 237.979919434 236.420349121 234.920349121 231.020233154 231.099822998 231.119842529 231.190155029 231.340057373 231.480194092 231.539764404 231.559783936 231.539764404 231.420135498 231.190155029 230.949920654 230.670135498 230.090057373 228.980194092 227.489959717 226.059783936 219.760238647 220.010238647 220.129867554 220.089828491 220.089828491 220.209945679 220.310043335 220.299789429 220.260238647 220.209945679 220.120101929 219.910140991 219.520004272 218.950180054 218.200180054 217.399887085 216.749984741 206.540054321 206.299819946 206.189956665 206.169937134 206.220230103 206.290054321 206.339859009 206.410171509 206.529800415 206.600112915 206.560073853 206.529800415 206.700210571 207.089859009 207.640151978 208.290054321 209.009780884 196.670074463 195.3800354 194.29019165 193.4503479 192.929840088 192.740386963 192.660308838 192.46987915 192.229644775 192.259918213 192.729644775 193.39956665 194.000152588 194.689605713 195.849761963 197.4503479 199.139801025 197.800003052 196.750198364 195.729690552 194.660354614 193.599807739 192.790237427 192.359573364 192.229690552 192.219924927 192.330276489 192.590042114 193.030471802 193.670120239 194.580276489 195.780471802 197.109573364 198.410354614 205.449829102 204.569946289 203.900024414 203.330200195 202.880004883 202.560180664 202.359985352 202.199829102 202.130004883 202.259887695 202.630004883 203.219848633 203.949829102 204.790161133 205.580200195 206.109985352 206.359985352 217.840026855 217.650085449 217.650085449 217.630065918 217.449890137 217.329772949 217.469909668 217.679870605 217.619812012 217.279968262 217.029968262 216.980163574 216.860046387 216.480163574 216.199890137 216.409851074 216.960144043 219.129959106 219.099685669 218.929763794 218.820388794 218.830154419 218.750076294 218.450271606 218.210037231 218.330154419 218.689529419 218.910232544 218.849685669 218.799880981 218.990310669 219.339920044 219.700271606 220.129959106 230.549728394 229.839767456 229.469650269 229.179611206 228.789962769 228.410079956 228.280197144 228.299728394 228.160079956 227.789962769 227.650314331 228.219650269 229.370040894 230.599533081 231.539962769 232.289962769 232.940353394 297.750061035 297.97076416 297.99029541 297.859436035 297.74029541 297.699279785 297.59967041 297.38092041 297.31060791 297.589904785 298.050842285 298.300842285 298.15045166 297.59967041 296.68951416 295.63092041 294.730529785 293.899597168 294.239440918 294.210144043 293.909362793 293.669128418 293.610534668 293.440612793 293.059753418 292.799987793 292.829284668 292.989440918 293.020690918 292.850769043 292.350769043 291.319519043 289.930847168 288.780456543 289.130279541 289.300201416 289.489654541 289.470123291 289.210357666 288.869537354 288.569732666 288.330474854 288.159576416 288.130279541 288.260162354 288.330474854 288.050201416 287.250396729 286.040435791 284.790435791 283.819732666 280.340209961 280.550170898 280.930053711 281.319702148 281.420288086 281.189819336 280.930053711 280.870483398 280.960327148 281.050170898 281.080444336 281.080444336 281.000366211 280.760131836 280.409545898 279.909545898 279.130249023 274.729797363 274.739562988 274.700500488 274.779602051 274.929992676 275.040344238 275.099914551 275.099914551 275.029602051 274.939758301 274.840148926 274.700500488 274.470031738 274.229797363 274.000305176 273.559875488 272.649719238 266.5597229 266.639801025 266.670074463 266.740386963 266.859527588 267.009918213 267.160308838 267.269683838 267.339996338 267.339996338 267.179840088 266.750152588 266.080230713 265.3800354 264.799957275 264.21987915 263.39956665 255.919921875 256.0703125 256.009765625 255.900390625 255.900390625 256.08984375 256.400390625 256.610351562 256.599609375 256.400390625 256.120117188 255.709960938 255.01953125 254.080078125 253.049804688 252.040039062 250.969726562 241.350036621 241.359802246 241.269958496 241.250427246 241.189880371 241.040466309 240.890075684 240.829528809 240.880310059 240.909606934 240.819763184 240.569763184 240.069763184 239.189880371 237.920349121 236.420349121 234.970153809 231.389862061 231.469940186 231.400115967 231.349822998 231.389862061 231.460174561 231.480194092 231.469940186 231.449920654 231.369842529 231.210174561 231.009979248 230.730194092 230.099822998 228.940155029 227.449920654 226.050018311 219.970199585 220.200180054 220.249984741 220.120101929 220.049789429 220.149887085 220.279769897 220.299789429 220.200180054 220.080062866 219.97996521 219.839828491 219.589828491 219.080062866 218.290023804 217.399887085 216.689926147 206.43019104 206.209976196 206.149917603 206.18019104 206.259780884 206.319839478 206.310073853 206.370132446 206.52003479 206.620132446 206.560073853 206.490249634 206.640151978 207.069839478 207.660171509 208.319839478 209.049819946 196.170074463 194.859527588 193.8800354 193.210113525 192.89956665 192.920074463 192.990386963 192.839996338 192.54019165 192.500152588 192.920074463 193.549957275 194.089996338 194.729644775 195.849761963 197.509918213 199.320465088 198.009963989 197.009963989 196.030471802 194.920120239 193.740432739 192.800003052 192.309768677 192.229690552 192.309768677 192.439651489 192.660354614 193.090042114 193.809768677 194.859573364 196.139846802 197.469924927 198.729690552 205.060180664 204.100219727 203.389770508 202.960083008 202.739868164 202.639770508 202.50012207 202.299926758 202.159790039 202.25012207 202.630004883 203.219848633 203.980102539 204.870239258 205.75012207 206.380004883 206.67980957 217.989929199 218.020202637 218.020202637 217.790222168 217.380065918 217.110046387 217.190124512 217.380065918 217.299987793 217.000183105 216.829772949 216.92010498 216.900085449 216.549987793 216.179870605 216.270202637 216.810241699 218.570388794 218.549880981 218.570388794 218.700271606 218.900466919 218.960037231 218.759841919 218.580154419 218.700271606 219.009841919 219.129959106 218.929763794 218.759841919 218.939529419 219.370193481 219.820388794 220.240310669 231.730392456 230.929611206 230.139572144 229.370040894 228.669845581 228.200119019 228.020431519 227.940353394 227.679611206 227.310470581 227.379806519 228.249923706 229.610275269 230.789962769 231.570236206 232.219650269 232.929611206 297.359436035 297.97076416 298.43951416 298.429748535 298.019592285 297.56060791 297.339904785 297.480529785 297.929748535 298.429748535 298.61920166 298.34967041 297.839904785 297.300842285 296.640686035 295.769592285 294.84967041 293.339050293 293.909362793 294.260925293 294.180847168 293.889831543 293.589050293 293.280456543 292.979675293 292.889831543 293.069519043 293.219909668 293.159362793 292.930847168 292.469909668 291.569519043 290.290222168 289.120300293 288.909576416 289.290435791 289.640045166 289.699615479 289.359771729 288.859771729 288.430084229 288.149810791 288.010162354 288.059967041 288.260162354 288.409576416 288.149810791 287.350006104 286.199615479 285.059967041 284.119537354 280.250366211 280.460327148 280.769897461 281.109741211 281.199584961 281.010131836 280.819702148 280.800170898 280.930053711 281.069702148 281.159545898 281.109741211 280.859741211 280.460327148 280.040405273 279.580444336 278.909545898 274.389953613 274.389953613 274.470031738 274.720031738 275.000305176 275.170227051 275.229797363 275.220031738 275.160461426 275.040344238 274.849914551 274.569641113 274.210266113 273.889953613 273.599914551 273.120422363 272.250305176 266.320465088 266.370269775 266.479644775 266.639801025 266.780426025 266.89956665 267.0597229 267.210113525 267.3097229 267.29019165 267.099761963 266.64956665 265.990386963 265.259918213 264.589996338 263.89956665 263.04019165 255.950195312 256.01953125 255.940429688 255.860351562 255.91015625 256.110351562 256.389648438 256.580078125 256.580078125 256.4296875 256.150390625 255.6796875 254.940429688 253.969726562 252.9296875 251.91015625 250.830078125 241.479919434 241.479919434 241.359802246 241.250427246 241.159606934 241.029724121 240.890075684 240.809997559 240.819763184 240.850036621 240.779724121 240.550231934 240.040466309 239.130310059 237.869567871 236.449645996 235.059997559 231.610076904 231.679901123 231.550018311 231.440155029 231.400115967 231.420135498 231.400115967 231.380096436 231.380096436 231.329803467 231.230194092 231.070037842 230.779998779 230.110076904 228.929901123 227.420135498 226.009979248 220.109848022 220.31980896 220.299789429 220.109848022 219.959945679 220.020004272 220.14012146 220.169906616 220.080062866 219.939926147 219.81980896 219.760238647 219.609848022 219.200180054 218.399887085 217.410140991 216.580062866 206.339859009 206.10987854 206.080093384 206.160171509 206.259780884 206.27003479 206.220230103 206.250015259 206.450210571 206.620132446 206.580093384 206.470230103 206.589859009 207.049819946 207.68019104 208.339859009 209.009780884 195.960113525 194.740386963 193.859527588 193.269683838 193.019683838 193.120269775 193.320465088 193.229644775 192.889801025 192.71987915 193.019683838 193.589996338 194.1300354 194.740386963 195.839996338 197.519683838 199.3800354 197.990432739 196.870315552 195.880081177 194.859573364 193.780471802 192.889846802 192.420120239 192.330276489 192.380081177 192.469924927 192.679885864 193.170120239 194.019729614 195.179885864 196.509963989 197.809768677 199.019729614 204.799926758 203.83996582 203.100219727 202.699829102 202.609985352 202.639770508 202.600219727 202.400024414 202.239868164 202.319946289 202.67980957 203.25012207 204.00012207 204.900024414 205.830200195 206.549926758 206.909790039 217.860046387 218.000183105 217.980163574 217.730163574 217.360046387 217.130065918 217.17010498 217.25994873 217.110046387 216.810241699 216.699890137 216.869812012 216.949890137 216.650085449 216.219909668 216.210144043 216.690124512 218.330154419 218.129959106 218.139724731 218.379959106 218.750076294 219.000076294 218.969802856 218.849685669 218.929763794 219.160232544 219.229568481 219.009841919 218.799880981 218.939529419 219.400466919 219.929763794 220.370193481 232.520431519 232.009689331 231.129806519 230.070236206 229.039962769 228.240158081 227.780197144 227.560470581 227.330001831 227.120040894 227.370040894 228.320236206 229.660079956 230.780197144 231.490158081 232.150314331 232.910079956 297.640686035 298.250061035 298.750061035 298.70904541 298.179748535 297.640686035 297.480529785 297.77935791 298.36920166 298.83013916 298.750061035 298.11920166 297.410217285 296.980529785 296.59967041 295.90045166 294.929748535 293.559753418 294.059753418 294.469909668 294.460144043 294.139831543 293.719909668 293.299987793 292.979675293 292.960144043 293.180847168 293.350769043 293.260925293 292.999206543 292.579284668 291.780456543 290.569519043 289.339050293 289.130279541 289.470123291 289.739654541 289.729888916 289.350006104 288.790435791 288.300201416 288.019927979 287.930084229 288.010162354 288.229888916 288.359771729 288.140045166 287.470123291 286.500396729 285.449615479 284.460357666 280.210327148 280.370483398 280.599975586 280.830444336 280.870483398 280.720092773 280.640014648 280.760131836 280.979858398 281.180053711 281.279663086 281.210327148 280.849975586 280.300170898 279.750366211 279.279663086 278.720092773 274.229797363 274.300109863 274.479797363 274.779602051 275.050109863 275.200500488 275.279602051 275.300109863 275.229797363 275.069641113 274.819641113 274.479797363 274.029602051 273.599914551 273.220031738 272.729797363 272.000305176 266.019683838 266.120269775 266.359527588 266.620269775 266.79019165 266.89956665 267.070465088 267.259918213 267.330230713 267.229644775 266.96987915 266.509918213 265.89956665 265.160308838 264.389801025 263.599761963 262.729644775 255.91015625 255.940429688 255.870117188 255.8203125 255.860351562 256.049804688 256.330078125 256.549804688 256.58984375 256.459960938 256.1796875 255.66015625 254.860351562 253.860351562 252.799804688 251.780273438 250.709960938 241.380310059 241.340270996 241.159606934 241.029724121 240.960388184 240.930114746 240.869567871 240.819763184 240.809997559 240.800231934 240.750427246 240.540466309 240.029724121 239.100036621 237.850036621 236.479919434 235.149841309 231.630096436 231.690155029 231.539764404 231.380096436 231.329803467 231.320037842 231.300018311 231.279998779 231.300018311 231.289764404 231.219940186 231.079803467 230.779998779 230.099822998 228.900115967 227.400115967 225.929901123 220.120101929 220.310043335 220.270004272 220.040023804 219.859848022 219.850082397 219.930160522 219.959945679 219.899887085 219.779769897 219.689926147 219.649887085 219.589828491 219.240219116 218.459945679 217.410140991 216.419906616 206.290054321 206.049819946 206.040054321 206.149917603 206.240249634 206.220230103 206.129898071 206.169937134 206.399917603 206.629898071 206.620132446 206.490249634 206.549819946 206.979995728 207.60987854 208.250015259 208.85987854 196.210113525 195.139801025 194.320465088 193.670074463 193.280426025 193.280426025 193.46987915 193.4503479 193.089996338 192.799957275 192.9503479 193.479644775 194.089996338 194.780426025 195.889801025 197.530426025 199.3800354 197.660354614 196.359573364 195.370315552 194.540237427 193.710159302 193.009963989 192.609573364 192.469924927 192.450393677 192.500198364 192.740432739 193.330276489 194.259963989 195.450393677 196.769729614 198.059768677 199.300003052 204.900024414 204.060180664 203.299926758 202.810180664 202.630004883 202.630004883 202.58996582 202.449829102 202.350219727 202.449829102 202.790161133 203.319946289 204.020141602 204.900024414 205.859985352 206.639770508 207.069946289 217.469909668 217.460144043 217.400085449 217.310241699 217.25994873 217.270202637 217.299987793 217.239929199 216.989929199 216.690124512 216.619812012 216.820007324 216.960144043 216.750183105 216.34979248 216.239929199 216.590026855 218.429763794 218.040115356 217.910232544 218.059646606 218.419998169 218.780349731 218.919998169 218.900466919 218.979568481 219.210037231 219.330154419 219.160232544 218.910232544 218.929763794 219.339920044 219.910232544 220.419998169 232.549728394 232.429611206 231.780197144 230.830001831 229.730392456 228.669845581 227.889572144 227.480392456 227.289962769 227.209884644 227.459884644 228.299728394 229.560470581 230.700119019 231.509689331 232.169845581 232.889572144 297.679748535 298.13092041 298.570373535 298.660217285 298.47076416 298.27935791 298.22076416 298.289123535 298.449279785 298.589904785 298.429748535 297.90045166 297.289123535 296.949279785 296.660217285 295.97076416 294.91998291 293.649597168 294.020690918 294.389831543 294.510925293 294.399597168 294.130065918 293.649597168 293.130065918 292.899597168 293.040222168 293.270690918 293.309753418 293.169128418 292.799987793 292.030456543 290.790222168 289.460144043 289.199615479 289.350006104 289.479888916 289.489654541 289.260162354 288.819732666 288.380279541 288.059967041 287.920318604 287.960357666 288.159576416 288.309967041 288.180084229 287.659576416 286.840240479 285.830474854 284.699615479 280.370483398 280.430053711 280.519897461 280.580444336 280.489624023 280.370483398 280.470092773 280.800170898 281.149780273 281.340209961 281.409545898 281.309936523 280.920288086 280.269897461 279.609741211 279.080444336 278.580444336 274.290344238 274.479797363 274.700500488 274.899719238 275.019836426 275.069641113 275.149719238 275.210266113 275.170227051 275.000305176 274.750305176 274.429992676 273.989562988 273.450500488 272.939758301 272.420227051 271.819641113 265.8097229 266.009918213 266.349761963 266.679840088 266.859527588 266.990386963 267.189605713 267.3800354 267.39956665 267.21987915 266.870269775 266.429840088 265.839996338 265.089996338 264.229644775 263.320465088 262.4503479 255.780273438 255.8203125 255.790039062 255.75 255.790039062 255.969726562 256.259765625 256.530273438 256.610351562 256.5 256.1796875 255.610351562 254.780273438 253.759765625 252.6796875 251.629882812 250.580078125 241.079528809 241.019958496 240.819763184 240.670349121 240.680114746 240.769958496 240.829528809 240.829528809 240.790466309 240.760192871 240.699645996 240.519958496 240.010192871 239.079528809 237.829528809 236.479919434 235.189880371 231.460174561 231.509979248 231.340057373 231.170135498 231.119842529 231.139862061 231.139862061 231.150115967 231.190155029 231.219940186 231.190155029 231.059783936 230.759979248 230.059783936 228.869842529 227.360076904 225.860076904 219.959945679 220.120101929 220.06980896 219.879867554 219.700180054 219.649887085 219.660140991 219.669906616 219.649887085 219.589828491 219.540023804 219.540023804 219.510238647 219.220199585 218.470199585 217.370101929 216.22996521 206.310073853 206.089859009 206.10987854 206.189956665 206.240249634 206.189956665 206.100112915 206.160171509 206.399917603 206.640151978 206.649917603 206.490249634 206.500015259 206.870132446 207.470230103 208.080093384 208.620132446 196.750152588 195.8097229 195.019683838 194.269683838 193.710113525 193.519683838 193.620269775 193.589996338 193.250152588 192.889801025 192.910308838 193.370269775 194.049957275 194.849761963 195.96987915 197.54019165 199.339996338 197.340042114 195.920120239 194.920120239 194.219924927 193.580276489 193.050003052 192.719924927 192.569534302 192.490432739 192.540237427 192.880081177 193.559768677 194.509963989 195.679885864 196.950393677 198.250198364 199.530471802 205.230102539 204.569946289 203.870239258 203.270141602 202.889770508 202.690063477 202.560180664 202.449829102 202.42980957 202.560180664 202.870239258 203.350219727 204.009887695 204.889770508 205.880004883 206.739868164 207.239868164 217.029968262 216.719909668 216.570007324 216.67010498 216.980163574 217.239929199 217.290222168 217.139831543 216.869812012 216.650085449 216.590026855 216.750183105 216.92010498 216.829772949 216.520202637 216.310241699 216.480163574 218.839920044 218.469802856 218.219802856 218.139724731 218.280349731 218.559646606 218.769607544 218.860427856 219.009841919 219.280349731 219.460037231 219.339920044 219.019607544 218.900466919 219.189529419 219.780349731 220.379959106 231.610275269 231.629806519 231.330001831 230.820236206 230.070236206 229.110275269 228.200119019 227.610275269 227.339767456 227.249923706 227.429611206 228.169845581 229.429611206 230.749923706 231.690353394 232.310470581 232.839767456 297.410217285 297.769592285 298.199279785 298.519592285 298.81060791 299.050842285 299.050842285 298.72076416 298.339904785 298.199279785 298.160217285 297.929748535 297.480529785 297.070373535 296.660217285 295.949279785 294.91998291 293.280456543 293.569519043 293.919128418 294.200378418 294.430847168 294.430847168 293.979675293 293.260925293 292.790222168 292.819519043 293.120300293 293.350769043 293.370300293 293.079284668 292.309753418 291.059753418 289.680847168 288.750396729 288.800201416 288.920318604 289.080474854 289.140045166 288.949615479 288.550201416 288.119537354 287.840240479 287.819732666 288.059967041 288.309967041 288.279693604 287.850006104 287.090240479 286.069732666 284.850006104 280.599975586 280.580444336 280.559936523 280.500366211 280.340209961 280.269897461 280.529663086 281.029663086 281.420288086 281.519897461 281.479858398 281.349975586 281.000366211 280.370483398 279.649780273 279.050170898 278.569702148 274.450500488 274.769836426 275.000305176 275.069641113 274.979797363 274.880187988 274.929992676 275.069641113 275.050109863 274.889953613 274.689758301 274.450500488 274.040344238 273.420227051 272.769836426 272.200500488 271.660461426 265.759918213 266.030426025 266.39956665 266.729644775 266.920074463 267.080230713 267.280426025 267.4503479 267.439605713 267.240386963 266.89956665 266.460113525 265.859527588 265.0597229 264.089996338 263.080230713 262.170074463 255.610351562 255.690429688 255.690429688 255.6796875 255.719726562 255.900390625 256.200195312 256.490234375 256.610351562 256.490234375 256.150390625 255.559570312 254.719726562 253.709960938 252.610351562 251.509765625 250.450195312 240.710388184 240.649841309 240.489685059 240.399841309 240.460388184 240.619567871 240.760192871 240.790466309 240.750427246 240.699645996 240.649841309 240.460388184 239.960388184 239.040466309 237.790466309 236.430114746 235.159606934 231.150115967 231.199920654 231.020233154 230.849822998 230.829803467 230.900115967 230.940155029 230.980194092 231.050018311 231.119842529 231.119842529 231.009979248 230.710174561 230.009979248 228.820037842 227.309783936 225.800018311 219.649887085 219.770004272 219.72996521 219.580062866 219.450180054 219.379867554 219.359848022 219.370101929 219.370101929 219.370101929 219.359848022 219.399887085 219.419906616 219.180160522 218.459945679 217.31980896 216.06980896 206.439956665 206.279800415 206.299819946 206.310073853 206.259780884 206.160171509 206.080093384 206.149917603 206.399917603 206.60987854 206.60987854 206.470230103 206.459976196 206.759780884 207.310073853 207.899917603 208.379898071 197.299957275 196.389801025 195.620269775 194.89956665 194.299957275 193.990386963 193.929840088 193.830230713 193.500152588 193.120269775 193.049957275 193.420074463 194.070465088 194.910308838 196.049957275 197.549957275 199.299957275 197.349807739 195.939651489 194.910354614 194.149612427 193.509963989 193.019729614 192.750198364 192.620315552 192.550003052 192.639846802 193.030471802 193.769729614 194.759963989 195.899612427 197.170120239 198.469924927 199.769729614 205.409790039 204.92980957 204.33996582 203.730102539 203.219848633 202.830200195 202.580200195 202.449829102 202.460083008 202.609985352 202.889770508 203.330200195 203.960083008 204.83996582 205.870239258 206.799926758 207.409790039 216.880065918 216.360046387 216.090026855 216.230163574 216.639831543 216.980163574 217.049987793 216.929870605 216.799987793 216.710144043 216.679870605 216.739929199 216.869812012 216.900085449 216.699890137 216.42010498 216.360046387 219.429763794 219.250076294 219.049880981 218.780349731 218.610427856 218.629959106 218.759841919 218.900466919 219.080154419 219.320388794 219.490310669 219.410232544 219.110427856 218.900466919 219.089920044 219.669998169 220.309646606 229.999923706 229.820236206 229.690353394 229.690353394 229.570236206 229.089767456 228.339767456 227.679611206 227.280197144 227.120040894 227.310470581 228.060470581 229.370040894 230.830001831 231.889572144 232.450119019 232.770431519 297.289123535 297.65045166 298.019592285 298.38092041 298.800842285 299.179748535 299.20904541 298.789123535 298.289123535 298.13092041 298.20904541 298.08013916 297.56060791 296.90045166 296.33013916 295.74029541 294.95904541 292.739440918 292.999206543 293.249206543 293.559753418 293.969909668 294.159362793 293.850769043 293.210144043 292.760925293 292.809753418 293.130065918 293.419128418 293.479675293 293.219909668 292.469909668 291.299987793 289.960144043 287.960357666 288.059967041 288.279693604 288.640045166 288.920318604 288.869537354 288.500396729 288.000396729 287.649810791 287.640045166 287.989654541 288.369537354 288.399810791 287.939849854 287.159576416 286.170318604 284.989654541 280.750366211 280.710327148 280.689819336 280.649780273 280.529663086 280.529663086 280.870483398 281.370483398 281.659545898 281.620483398 281.460327148 281.319702148 281.040405273 280.470092773 279.779663086 279.159545898 278.640014648 274.679992676 275.080383301 275.319641113 275.290344238 275.000305176 274.769836426 274.800109863 274.979797363 274.989562988 274.809875488 274.609680176 274.450500488 274.090148926 273.450500488 272.679992676 272.040344238 271.489562988 265.870269775 266.1300354 266.4503479 266.710113525 266.89956665 267.080230713 267.29019165 267.439605713 267.439605713 267.280426025 267.000152588 266.570465088 265.920074463 265.049957275 264.000152588 262.910308838 261.939605713 255.459960938 255.559570312 255.599609375 255.620117188 255.690429688 255.879882812 256.169921875 256.440429688 256.549804688 256.450195312 256.099609375 255.509765625 254.700195312 253.719726562 252.629882812 251.450195312 250.330078125 240.359802246 240.359802246 240.269958496 240.229919434 240.319763184 240.489685059 240.630310059 240.680114746 240.680114746 240.670349121 240.619567871 240.409606934 239.890075684 238.989685059 237.729919434 236.359802246 235.079528809 230.759979248 230.820037842 230.670135498 230.539764404 230.559783936 230.679901123 230.770233154 230.829803467 230.920135498 231.009979248 231.029998779 230.940155029 230.639862061 229.940155029 228.750213623 227.259979248 225.739959717 219.260238647 219.31980896 219.279769897 219.200180054 219.149887085 219.109848022 219.06980896 219.080062866 219.120101929 219.149887085 219.169906616 219.249984741 219.330062866 219.120101929 218.419906616 217.270004272 215.930160522 206.660171509 206.569839478 206.560073853 206.479995728 206.299819946 206.120132446 206.049819946 206.149917603 206.379898071 206.560073853 206.569839478 206.450210571 206.43019104 206.68019104 207.169937134 207.729995728 208.169937134 197.729644775 196.740386963 195.990386963 195.410308838 194.96987915 194.6300354 194.3800354 194.099761963 193.71987915 193.389801025 193.3097229 193.599761963 194.160308838 194.9503479 196.070465088 197.549957275 199.259918213 197.599807739 196.309768677 195.250198364 194.359573364 193.599807739 193.069534302 192.819534302 192.729690552 192.670120239 192.740432739 193.109573364 193.870315552 194.920120239 196.139846802 197.450393677 198.759963989 200.030471802 205.219848633 204.810180664 204.359985352 203.870239258 203.389770508 202.960083008 202.650024414 202.50012207 202.520141602 202.650024414 202.900024414 203.310180664 203.920043945 204.759887695 205.779907227 206.799926758 207.540161133 217.150085449 216.659851074 216.329772949 216.290222168 216.500183105 216.690124512 216.739929199 216.739929199 216.779968262 216.829772949 216.810241699 216.770202637 216.84979248 216.949890137 216.860046387 216.560241699 216.340026855 219.870193481 219.979568481 219.950271606 219.669998169 219.290115356 219.030349731 218.990310669 219.059646606 219.169998169 219.299880981 219.400466919 219.349685669 219.150466919 218.979568481 219.099685669 219.589920044 220.219802856 228.560470581 227.980392456 227.740158081 227.950119019 228.330001831 228.440353394 228.110275269 227.560470581 227.129806519 227.009689331 227.280197144 228.060470581 229.330001831 230.780197144 231.900314331 232.480392456 232.719650269 297.480529785 297.77935791 297.99029541 298.16998291 298.36920166 298.59967041 298.66998291 298.519592285 298.33013916 298.31060791 298.339904785 298.070373535 297.31060791 296.38092041 295.70904541 295.339904785 294.90045166 292.309753418 292.559753418 292.680847168 292.889831543 293.249206543 293.479675293 293.360534668 293.020690918 292.870300293 293.030456543 293.339050293 293.569519043 293.589050293 293.219909668 292.409362793 291.290222168 290.069519043 287.220123291 287.460357666 287.790435791 288.210357666 288.519927979 288.519927979 288.210357666 287.790435791 287.519927979 287.590240479 288.029693604 288.519927979 288.550201416 287.979888916 287.109771729 286.170318604 285.080474854 280.769897461 280.750366211 280.790405273 280.870483398 280.880249023 280.960327148 281.239624023 281.590209961 281.699584961 281.559936523 281.380249023 281.239624023 280.970092773 280.470092773 279.870483398 279.300170898 278.720092773 274.989562988 275.389953613 275.590148926 275.479797363 275.090148926 274.760070801 274.750305176 274.950500488 274.960266113 274.739562988 274.510070801 274.370422363 274.069641113 273.439758301 272.649719238 271.929992676 271.330383301 266.000152588 266.250152588 266.479644775 266.689605713 266.8800354 267.070465088 267.280426025 267.420074463 267.479644775 267.389801025 267.170074463 266.7003479 265.96987915 265.04019165 263.96987915 262.839996338 261.79019165 255.360351562 255.450195312 255.509765625 255.58984375 255.709960938 255.91015625 256.16015625 256.379882812 256.48046875 256.389648438 256.059570312 255.490234375 254.700195312 253.759765625 252.669921875 251.459960938 250.290039062 240.069763184 240.100036621 240.069763184 240.059997559 240.149841309 240.309997559 240.439880371 240.519958496 240.600036621 240.659606934 240.619567871 240.359802246 239.840270996 238.949645996 237.720153809 236.309997559 235.019958496 230.349822998 230.420135498 230.320037842 230.259979248 230.360076904 230.520233154 230.630096436 230.699920654 230.809783936 230.909881592 230.929901123 230.849822998 230.550018311 229.860076904 228.679901123 227.210174561 225.690155029 218.830062866 218.859848022 218.839828491 218.850082397 218.859848022 218.859848022 218.830062866 218.859848022 218.930160522 218.97996521 219.020004272 219.120101929 219.209945679 219.029769897 218.350082397 217.209945679 215.839828491 206.950210571 206.910171509 206.890151978 206.720230103 206.399917603 206.140151978 206.060073853 206.169937134 206.399917603 206.560073853 206.569839478 206.439956665 206.390151978 206.589859009 207.040054321 207.580093384 207.979995728 198.099761963 196.990386963 196.210113525 195.780426025 195.519683838 195.21987915 194.799957275 194.299957275 193.830230713 193.54019165 193.519683838 193.780426025 194.269683838 195.000152588 196.099761963 197.570465088 199.280426025 197.740432739 196.590042114 195.569534302 194.630081177 193.780471802 193.219924927 192.960159302 192.870315552 192.790237427 192.809768677 193.149612427 193.899612427 195.000198364 196.309768677 197.710159302 199.040237427 200.250198364 204.83996582 204.420043945 204.049926758 203.690063477 203.33996582 202.989868164 202.710083008 202.569946289 202.560180664 202.670043945 202.920043945 203.330200195 203.92980957 204.710083008 205.67980957 206.719848633 207.580200195 217.590026855 217.320007324 217.00994873 216.730163574 216.59979248 216.610046387 216.650085449 216.690124512 216.770202637 216.84979248 216.829772949 216.770202637 216.829772949 216.960144043 216.940124512 216.690124512 216.429870605 219.919998169 220.189529419 220.370193481 220.259841919 219.900466919 219.540115356 219.360427856 219.330154419 219.320388794 219.309646606 219.330154419 219.330154419 219.240310669 219.110427856 219.150466919 219.509841919 220.049880981 228.030197144 227.139572144 226.589767456 226.589767456 227.030197144 227.480392456 227.530197144 227.249923706 226.969650269 226.990158081 227.370040894 228.110275269 229.219650269 230.549728394 231.740158081 232.459884644 232.759689331 297.570373535 297.769592285 297.890686035 297.95904541 298.00982666 298.070373535 298.16998291 298.269592285 298.34967041 298.34967041 298.250061035 297.84967041 297.02935791 295.99029541 295.20904541 294.86920166 294.61920166 291.989440918 292.249206543 292.370300293 292.520690918 292.790222168 292.989440918 292.989440918 292.960144043 293.049987793 293.280456543 293.569519043 293.809753418 293.819519043 293.290222168 292.249206543 291.020690918 289.870300293 286.750396729 287.100006104 287.489654541 287.909576416 288.180084229 288.199615479 288.010162354 287.790435791 287.640045166 287.750396729 288.220123291 288.750396729 288.779693604 288.119537354 287.119537354 286.109771729 285.010162354 280.599975586 280.609741211 280.729858398 280.930053711 281.069702148 281.180053711 281.359741211 281.529663086 281.529663086 281.390014648 281.269897461 281.130249023 280.800170898 280.319702148 279.859741211 279.409545898 278.779663086 275.349914551 275.660461426 275.750305176 275.599914551 275.170227051 274.760070801 274.720031738 274.889953613 274.889953613 274.649719238 274.410461426 274.269836426 274.000305176 273.410461426 272.639953613 271.899719238 271.229797363 266.080230713 266.299957275 266.479644775 266.679840088 266.889801025 267.109527588 267.320465088 267.490386963 267.589996338 267.580230713 267.339996338 266.79019165 266.000152588 265.0597229 264.019683838 262.889801025 261.750152588 255.25 255.3203125 255.41015625 255.5703125 255.780273438 255.990234375 256.209960938 256.370117188 256.459960938 256.370117188 256.049804688 255.48046875 254.700195312 253.790039062 252.709960938 251.490234375 250.280273438 239.819763184 239.859802246 239.819763184 239.809997559 239.909606934 240.090270996 240.229919434 240.350036621 240.510192871 240.640075684 240.600036621 240.329528809 239.800231934 238.949645996 237.739685059 236.319763184 234.979919434 229.960174561 230.029998779 229.989959717 230.000213623 230.150115967 230.349822998 230.480194092 230.559783936 230.659881592 230.770233154 230.809783936 230.750213623 230.460174561 229.789764404 228.650115967 227.190155029 225.670135498 218.439926147 218.459945679 218.499984741 218.56980896 218.64012146 218.64012146 218.629867554 218.680160522 218.790023804 218.870101929 218.910140991 218.990219116 219.06980896 218.899887085 218.270004272 217.169906616 215.790023804 207.27003479 207.299819946 207.279800415 207.040054321 206.640151978 206.299819946 206.18019104 206.290054321 206.509780884 206.660171509 206.629898071 206.450210571 206.339859009 206.479995728 206.919937134 207.450210571 207.839859009 198.420074463 197.2003479 196.359527588 196.000152588 195.859527588 195.609527588 195.120269775 194.479644775 193.920074463 193.6300354 193.660308838 193.9503479 194.410308838 195.1300354 196.2003479 197.660308838 199.339996338 197.590042114 196.540237427 195.609573364 194.710159302 193.880081177 193.290237427 192.979690552 192.849807739 192.769729614 192.819534302 193.170120239 193.920120239 195.040237427 196.410354614 197.870315552 199.240432739 200.450393677 204.650024414 204.199829102 203.799926758 203.489868164 203.210083008 202.949829102 202.730102539 202.58996582 202.560180664 202.630004883 202.880004883 203.330200195 203.949829102 204.699829102 205.630004883 206.659790039 207.600219727 217.860046387 217.790222168 217.50994873 217.090026855 216.790222168 216.75994873 216.820007324 216.820007324 216.75994873 216.750183105 216.750183105 216.770202637 216.810241699 216.869812012 216.84979248 216.690124512 216.520202637 219.639724731 219.860427856 220.169998169 220.299880981 220.139724731 219.839920044 219.629959106 219.559646606 219.509841919 219.429763794 219.400466919 219.410232544 219.360427856 219.200271606 219.120193481 219.339920044 219.830154419 228.299728394 227.370040894 226.560470581 226.160079956 226.299728394 226.719650269 226.980392456 226.929611206 226.849533081 226.999923706 227.429611206 228.070236206 229.009689331 230.270431519 231.580001831 232.499923706 232.900314331 297.24029541 297.410217285 297.570373535 297.81060791 298.02935791 298.13092041 298.20904541 298.31060791 298.339904785 298.20904541 298.000061035 297.68951416 297.06060791 296.050842285 295.050842285 294.45904541 294.13092041 291.680847168 292.030456543 292.229675293 292.460144043 292.770690918 292.989440918 293.059753418 293.120300293 293.239440918 293.389831543 293.680847168 294.100769043 294.249206543 293.589050293 292.210144043 290.719909668 289.530456543 286.500396729 286.949615479 287.409576416 287.869537354 288.149810791 288.199615479 288.130279541 288.019927979 287.899810791 287.939849854 288.369537354 288.960357666 289.100006104 288.430084229 287.290435791 286.090240479 284.819732666 280.279663086 280.319702148 280.489624023 280.769897461 281.000366211 281.140014648 281.260131836 281.309936523 281.269897461 281.210327148 281.180053711 281.040405273 280.620483398 280.099975586 279.739624023 279.430053711 278.779663086 275.679992676 275.830383301 275.819641113 275.599914551 275.160461426 274.760070801 274.689758301 274.830383301 274.819641113 274.590148926 274.359680176 274.220031738 273.939758301 273.380187988 272.639953613 271.910461426 271.160461426 266.070465088 266.250152588 266.420074463 266.64956665 266.929840088 267.189605713 267.420074463 267.609527588 267.740386963 267.71987915 267.4503479 266.849761963 266.009918213 265.080230713 264.089996338 262.96987915 261.759918213 255.08984375 255.16015625 255.309570312 255.5703125 255.83984375 256.080078125 256.280273438 256.4296875 256.490234375 256.419921875 256.080078125 255.490234375 254.709960938 253.799804688 252.719726562 251.509765625 250.280273438 239.579528809 239.659606934 239.640075684 239.609802246 239.710388184 239.909606934 240.069763184 240.220153809 240.409606934 240.569763184 240.550231934 240.279724121 239.760192871 238.949645996 237.760192871 236.319763184 234.949645996 229.659881592 229.759979248 229.750213623 229.789764404 229.960174561 230.179901123 230.300018311 230.369842529 230.480194092 230.610076904 230.679901123 230.630096436 230.369842529 229.719940186 228.619842529 227.179901123 225.659881592 218.169906616 218.220199585 218.290023804 218.39012146 218.450180054 218.450180054 218.450180054 218.540023804 218.689926147 218.799789429 218.850082397 218.899887085 218.939926147 218.770004272 218.189926147 217.149887085 215.799789429 207.629898071 207.700210571 207.689956665 207.410171509 206.970230103 206.600112915 206.450210571 206.549819946 206.729995728 206.839859009 206.740249634 206.500015259 206.310073853 206.43019104 206.85987854 207.399917603 207.779800415 198.5597229 197.320465088 196.4503479 196.070465088 195.960113525 195.769683838 195.320465088 194.689605713 194.109527588 193.799957275 193.830230713 194.139801025 194.6300354 195.349761963 196.39956665 197.8097229 199.439605713 197.349807739 196.319534302 195.450393677 194.609573364 193.809768677 193.179885864 192.780471802 192.580276489 192.530471802 192.689651489 193.139846802 193.950393677 195.069534302 196.450393677 197.939651489 199.359573364 200.639846802 204.699829102 204.230102539 203.799926758 203.440063477 203.150024414 202.909790039 202.719848633 202.569946289 202.50012207 202.540161133 202.779907227 203.259887695 203.920043945 204.710083008 205.630004883 206.670043945 207.630004883 217.840026855 217.799987793 217.540222168 217.119812012 216.889831543 216.969909668 217.110046387 217.029968262 216.790222168 216.650085449 216.719909668 216.829772949 216.860046387 216.779968262 216.659851074 216.549987793 216.50994873 219.410232544 219.519607544 219.820388794 220.080154419 220.089920044 219.889724731 219.710037231 219.629959106 219.580154419 219.519607544 219.509841919 219.530349731 219.450271606 219.240310669 219.070388794 219.210037231 219.650466919 228.570236206 227.810470581 227.020431519 226.410079956 226.249923706 226.469650269 226.709884644 226.780197144 226.810470581 226.999923706 227.360275269 227.929611206 228.830001831 230.150314331 231.549728394 232.570236206 232.990158081 296.81060791 296.93951416 297.11920166 297.570373535 298.089904785 298.38092041 298.41998291 298.40045166 298.320373535 298.11920166 297.910217285 297.699279785 297.199279785 296.18951416 294.929748535 293.99029541 293.47076416 291.479675293 291.850769043 292.069519043 292.380065918 292.839050293 293.180847168 293.319519043 293.380065918 293.389831543 293.399597168 293.700378418 294.350769043 294.729675293 294.040222168 292.380065918 290.630065918 289.309753418 286.350006104 286.899810791 287.479888916 288.019927979 288.350006104 288.409576416 288.330474854 288.220123291 288.050201416 287.979888916 288.369537354 289.090240479 289.439849854 288.869537354 287.640045166 286.250396729 284.760162354 279.930053711 280.040405273 280.290405273 280.609741211 280.890014648 281.050170898 281.120483398 281.120483398 281.080444336 281.090209961 281.149780273 281.000366211 280.489624023 279.870483398 279.500366211 279.250366211 278.620483398 275.880187988 275.920227051 275.790344238 275.529602051 275.109680176 274.750305176 274.689758301 274.809875488 274.800109863 274.599914551 274.389953613 274.210266113 273.859680176 273.279602051 272.590148926 271.899719238 271.090148926 266.049957275 266.160308838 266.3097229 266.580230713 266.929840088 267.250152588 267.500152588 267.679840088 267.780426025 267.759918213 267.500152588 266.8800354 266.04019165 265.109527588 264.109527588 262.979644775 261.740386963 254.919921875 255.049804688 255.280273438 255.599609375 255.900390625 256.150390625 256.349609375 256.509765625 256.580078125 256.48046875 256.129882812 255.51953125 254.73046875 253.809570312 252.740234375 251.509765625 250.259765625 239.420349121 239.579528809 239.590270996 239.559997559 239.649841309 239.840270996 240.010192871 240.140075684 240.329528809 240.500427246 240.479919434 240.210388184 239.720153809 238.930114746 237.729919434 236.269958496 234.869567871 229.480194092 229.639862061 229.659881592 229.690155029 229.840057373 230.020233154 230.110076904 230.190155029 230.309783936 230.469940186 230.570037842 230.529998779 230.289764404 229.659881592 228.590057373 227.159881592 225.619842529 218.080062866 218.160140991 218.220199585 218.279769897 218.299789429 218.31980896 218.370101929 218.490219116 218.649887085 218.770004272 218.839828491 218.879867554 218.879867554 218.669906616 218.100082397 217.120101929 215.81980896 208.040054321 208.089859009 208.009780884 207.700210571 207.279800415 206.959976196 206.830093384 206.890151978 207.02003479 207.069839478 206.919937134 206.589859009 206.350112915 206.450210571 206.890151978 207.419937134 207.790054321 198.479644775 197.3097229 196.46987915 196.04019165 195.849761963 195.660308838 195.320465088 194.820465088 194.299957275 193.990386963 194.000152588 194.320465088 194.849761963 195.589996338 196.6300354 197.990386963 199.580230713 197.240432739 196.200393677 195.309768677 194.490432739 193.700393677 193.030471802 192.540237427 192.250198364 192.189651489 192.439651489 193.019729614 193.889846802 195.030471802 196.410354614 197.929885864 199.439651489 200.830276489 204.759887695 204.310180664 203.880004883 203.480102539 203.159790039 202.909790039 202.710083008 202.58996582 202.520141602 202.529907227 202.719848633 203.159790039 203.830200195 204.659790039 205.620239258 206.670043945 207.650024414 217.739929199 217.590026855 217.310241699 216.960144043 216.860046387 217.070007324 217.279968262 217.17010498 216.840026855 216.659851074 216.779968262 216.949890137 216.940124512 216.739929199 216.520202637 216.409851074 216.429870605 219.490310669 219.519607544 219.769607544 220.000076294 220.030349731 219.849685669 219.660232544 219.559646606 219.509841919 219.490310669 219.519607544 219.559646606 219.469802856 219.250076294 219.070388794 219.200271606 219.639724731 228.339767456 227.749923706 227.150314331 226.650314331 226.429611206 226.509689331 226.679611206 226.740158081 226.789962769 226.940353394 227.249923706 227.799728394 228.770431519 230.169845581 231.610275269 232.570236206 232.929611206 296.70904541 296.68951416 296.679748535 297.109436035 297.789123535 298.199279785 298.269592285 298.269592285 298.33013916 298.320373535 298.11920166 297.74029541 297.06060791 295.949279785 294.609436035 293.49029541 292.839904785 291.430847168 291.659362793 291.749206543 292.089050293 292.680847168 293.190612793 293.450378418 293.549987793 293.549987793 293.510925293 293.819519043 294.589050293 295.130065918 294.510925293 292.770690918 290.860534668 289.339050293 286.260162354 286.899810791 287.580474854 288.189849854 288.529693604 288.519927979 288.380279541 288.239654541 288.080474854 287.989654541 288.380279541 289.220123291 289.800201416 289.399810791 288.189849854 286.699615479 285.100006104 279.750366211 279.930053711 280.239624023 280.590209961 280.859741211 281.000366211 281.029663086 280.979858398 280.920288086 280.979858398 281.120483398 281.000366211 280.449584961 279.699584961 279.180053711 278.870483398 278.260131836 275.929992676 275.920227051 275.710266113 275.399719238 275.019836426 274.729797363 274.710266113 274.840148926 274.859680176 274.679992676 274.429992676 274.120422363 273.639953613 273.029602051 272.399719238 271.750305176 270.899719238 266.0597229 266.099761963 266.210113525 266.500152588 266.910308838 267.29019165 267.5597229 267.679840088 267.729644775 267.7003479 267.460113525 266.920074463 266.109527588 265.139801025 264.070465088 262.8800354 261.599761963 254.809570312 255.0703125 255.400390625 255.740234375 255.990234375 256.209960938 256.4296875 256.610351562 256.6796875 256.549804688 256.169921875 255.549804688 254.76953125 253.83984375 252.75 251.509765625 250.200195312 239.350036621 239.600036621 239.640075684 239.600036621 239.680114746 239.850036621 240.000427246 240.109802246 240.279724121 240.430114746 240.409606934 240.159606934 239.680114746 238.880310059 237.659606934 236.180114746 234.729919434 229.429901123 229.650115967 229.690155029 229.699920654 229.809783936 229.940155029 230.000213623 230.079803467 230.219940186 230.389862061 230.489959717 230.449920654 230.210174561 229.599822998 228.539764404 227.110076904 225.550018311 218.169906616 218.260238647 218.270004272 218.249984741 218.260238647 218.330062866 218.439926147 218.56980896 218.689926147 218.790023804 218.870101929 218.919906616 218.859848022 218.589828491 217.990219116 217.040023804 215.799789429 208.439956665 208.35987854 208.160171509 207.819839478 207.490249634 207.27003479 207.189956665 207.209976196 207.279800415 207.279800415 207.100112915 206.740249634 206.459976196 206.540054321 206.979995728 207.490249634 207.850112915 198.3097229 197.269683838 196.490386963 195.979644775 195.639801025 195.370269775 195.089996338 194.71987915 194.320465088 194.04019165 194.049957275 194.410308838 195.000152588 195.780426025 196.8097229 198.170074463 199.759918213 197.229690552 196.160354614 195.229690552 194.399612427 193.630081177 192.950393677 192.420120239 192.059768677 191.950393677 192.200393677 192.809768677 193.719924927 194.880081177 196.290237427 197.870315552 199.479690552 200.979690552 204.650024414 204.25012207 203.870239258 203.50012207 203.150024414 202.859985352 202.690063477 202.630004883 202.620239258 202.639770508 202.779907227 203.139770508 203.75012207 204.560180664 205.540161133 206.609985352 207.609985352 217.739929199 217.480163574 217.190124512 216.880065918 216.790222168 217.000183105 217.239929199 217.179870605 216.909851074 216.75994873 216.860046387 217.000183105 216.949890137 216.739929199 216.529968262 216.400085449 216.369812012 219.700271606 219.769607544 219.960037231 220.120193481 220.059646606 219.839920044 219.629959106 219.519607544 219.490310669 219.469802856 219.490310669 219.519607544 219.460037231 219.290115356 219.160232544 219.309646606 219.729568481 227.919845581 227.320236206 226.870040894 226.580001831 226.490158081 226.549728394 226.620040894 226.620040894 226.629806519 226.789962769 227.120040894 227.740158081 228.810470581 230.240158081 231.620040894 232.499923706 232.830001831 296.81060791 296.52935791 296.289123535 296.59967041 297.269592285 297.730529785 297.88092041 298.039123535 298.40045166 298.66998291 298.480529785 297.789123535 296.81060791 295.72076416 294.58013916 293.45904541 292.589904785 291.350769043 291.370300293 291.309753418 291.669128418 292.399597168 293.049987793 293.440612793 293.649597168 293.719909668 293.760925293 294.100769043 294.909362793 295.589050293 295.159362793 293.569519043 291.579284668 289.749206543 286.260162354 286.960357666 287.689849854 288.330474854 288.590240479 288.500396729 288.319732666 288.269927979 288.210357666 288.159576416 288.550201416 289.470123291 290.229888916 290.029693604 288.920318604 287.430084229 285.800201416 279.769897461 279.939819336 280.229858398 280.590209961 280.849975586 280.930053711 280.870483398 280.760131836 280.689819336 280.779663086 280.979858398 280.979858398 280.479858398 279.640014648 278.890014648 278.390014648 277.790405273 275.830383301 275.819641113 275.609680176 275.300109863 274.950500488 274.710266113 274.739562988 274.910461426 274.950500488 274.779602051 274.450500488 273.970031738 273.340148926 272.670227051 272.080383301 271.460266113 270.590148926 266.089996338 266.099761963 266.179840088 266.460113525 266.910308838 267.349761963 267.6300354 267.71987915 267.679840088 267.609527588 267.410308838 266.9503479 266.179840088 265.170074463 264.000152588 262.710113525 261.3800354 254.809570312 255.240234375 255.669921875 255.969726562 256.150390625 256.3203125 256.540039062 256.740234375 256.790039062 256.620117188 256.219726562 255.610351562 254.799804688 253.849609375 252.73046875 251.48046875 250.120117188 239.329528809 239.640075684 239.689880371 239.659606934 239.720153809 239.859802246 240.000427246 240.130310059 240.309997559 240.430114746 240.369567871 240.119567871 239.640075684 238.819763184 237.579528809 236.079528809 234.600036621 229.460174561 229.699920654 229.739959717 229.739959717 229.829803467 229.929901123 229.989959717 230.059783936 230.210174561 230.369842529 230.440155029 230.389862061 230.139862061 229.539764404 228.480194092 227.039764404 225.449920654 218.39012146 218.450180054 218.399887085 218.31980896 218.339828491 218.47996521 218.649887085 218.740219116 218.779769897 218.830062866 218.910140991 218.970199585 218.879867554 218.540023804 217.899887085 216.939926147 215.749984741 208.77003479 208.509780884 208.169937134 207.819839478 207.560073853 207.459976196 207.419937134 207.410171509 207.419937134 207.410171509 207.240249634 206.899917603 206.620132446 206.68019104 207.089859009 207.569839478 207.970230103 198.2003479 197.269683838 196.549957275 195.9503479 195.439605713 195.070465088 194.799957275 194.519683838 194.2003479 193.9503479 193.979644775 194.359527588 195.019683838 195.8800354 196.96987915 198.339996338 199.96987915 197.099807739 196.019729614 195.080276489 194.259963989 193.519729614 192.880081177 192.330276489 191.929885864 191.790237427 192.040237427 192.639846802 193.559768677 194.710159302 196.130081177 197.750198364 199.460159302 201.080276489 204.489868164 204.150024414 203.850219727 203.50012207 203.109985352 202.790161133 202.639770508 202.639770508 202.690063477 202.75012207 202.870239258 203.170043945 203.710083008 204.489868164 205.440063477 206.50012207 207.489868164 217.790222168 217.500183105 217.199890137 216.860046387 216.690124512 216.799987793 217.020202637 217.090026855 216.960144043 216.869812012 216.880065918 216.900085449 216.820007324 216.67010498 216.560241699 216.469909668 216.380065918 219.719802856 219.879959106 220.089920044 220.189529419 220.059646606 219.820388794 219.650466919 219.610427856 219.620193481 219.589920044 219.549880981 219.530349731 219.490310669 219.360427856 219.259841919 219.379959106 219.780349731 227.870040894 227.110275269 226.650314331 226.480392456 226.499923706 226.580001831 226.549728394 226.419845581 226.370040894 226.549728394 226.999923706 227.749923706 228.839767456 230.200119019 231.530197144 232.450119019 232.830001831 296.58013916 296.15045166 295.90045166 296.250061035 296.95904541 297.50982666 297.75982666 298.02935791 298.500061035 298.90045166 298.75982666 298.06060791 297.179748535 296.390686035 295.539123535 294.359436035 293.00982666 291.040222168 290.919128418 290.880065918 291.339050293 292.200378418 292.979675293 293.469909668 293.739440918 293.880065918 293.989440918 294.419128418 295.350769043 296.260925293 296.200378418 294.899597168 292.880065918 290.680847168 286.309967041 287.090240479 287.920318604 288.529693604 288.710357666 288.529693604 288.369537354 288.420318604 288.430084229 288.380279541 288.739654541 289.739654541 290.720123291 290.750396729 289.720123291 288.229888916 286.600006104 279.830444336 279.859741211 280.050170898 280.430053711 280.739624023 280.809936523 280.670288086 280.489624023 280.420288086 280.529663086 280.779663086 280.870483398 280.500366211 279.680053711 278.769897461 278.050170898 277.399780273 275.590148926 275.599914551 275.479797363 275.269836426 274.970031738 274.750305176 274.779602051 274.970031738 275.059875488 274.920227051 274.529602051 273.910461426 273.139953613 272.389953613 271.769836426 271.120422363 270.210266113 266.099761963 266.160308838 266.229644775 266.460113525 266.8800354 267.349761963 267.689605713 267.79019165 267.710113525 267.570465088 267.349761963 266.910308838 266.189605713 265.2003479 263.96987915 262.570465088 261.139801025 254.940429688 255.509765625 255.969726562 256.219726562 256.3203125 256.450195312 256.669921875 256.860351562 256.879882812 256.6796875 256.290039062 255.669921875 254.8203125 253.809570312 252.650390625 251.389648438 249.990234375 239.399841309 239.710388184 239.760192871 239.720153809 239.790466309 239.909606934 240.050231934 240.220153809 240.409606934 240.489685059 240.369567871 240.069763184 239.559997559 238.720153809 237.489685059 236.010192871 234.500427246 229.529998779 229.750213623 229.759979248 229.770233154 229.860076904 229.960174561 230.020233154 230.119842529 230.289764404 230.409881592 230.420135498 230.329803467 230.090057373 229.489959717 228.420135498 226.969940186 225.389862061 218.649887085 218.669906616 218.549789429 218.459945679 218.510238647 218.700180054 218.879867554 218.919906616 218.89012146 218.879867554 218.959945679 219.029769897 218.919906616 218.540023804 217.859848022 216.89012146 215.740219116 208.950210571 208.560073853 208.129898071 207.779800415 207.589859009 207.529800415 207.490249634 207.439956665 207.399917603 207.410171509 207.319839478 207.060073853 206.810073853 206.85987854 207.240249634 207.720230103 208.140151978 198.109527588 197.240386963 196.519683838 195.849761963 195.250152588 194.839996338 194.580230713 194.370269775 194.109527588 193.8800354 193.8800354 194.240386963 194.960113525 195.929840088 197.089996338 198.500152588 200.14956665 196.859573364 195.759963989 194.849807739 194.040237427 193.319534302 192.660354614 192.090042114 191.700393677 191.609573364 191.929885864 192.599807739 193.519729614 194.649612427 196.019729614 197.630081177 199.380081177 201.099807739 204.440063477 204.159790039 203.909790039 203.549926758 203.120239258 202.770141602 202.630004883 202.650024414 202.710083008 202.75012207 202.859985352 203.159790039 203.699829102 204.469848633 205.42980957 206.449829102 207.400024414 217.719909668 217.429870605 217.130065918 216.770202637 216.50994873 216.540222168 216.75994873 216.909851074 216.909851074 216.869812012 216.840026855 216.750183105 216.59979248 216.500183105 216.500183105 216.469909668 216.389831543 219.580154419 219.809646606 220.049880981 220.129959106 220.000076294 219.769607544 219.669998169 219.740310669 219.839920044 219.809646606 219.689529419 219.610427856 219.559646606 219.450271606 219.309646606 219.360427856 219.750076294 228.160079956 227.289962769 226.740158081 226.580001831 226.669845581 226.759689331 226.650314331 226.360275269 226.160079956 226.339767456 226.919845581 227.780197144 228.830001831 230.060470581 231.400314331 232.499923706 233.039962769 295.890686035 295.570373535 295.570373535 296.050842285 296.800842285 297.500061035 297.949279785 298.24029541 298.539123535 298.839904785 298.949279785 298.769592285 298.47076416 298.11920166 297.34967041 295.820373535 293.839904785 290.569519043 290.440612793 290.479675293 291.020690918 291.989440918 292.930847168 293.559753418 293.870300293 293.969909668 294.089050293 294.610534668 295.770690918 297.020690918 297.380065918 296.380065918 294.350769043 291.899597168 286.390045166 287.399810791 288.390045166 288.949615479 288.949615479 288.640045166 288.489654541 288.569732666 288.559967041 288.439849854 288.779693604 289.949615479 291.199615479 291.449615479 290.420318604 288.819732666 287.109771729 279.800170898 279.649780273 279.739624023 280.180053711 280.630249023 280.760131836 280.580444336 280.349975586 280.260131836 280.359741211 280.559936523 280.659545898 280.430053711 279.769897461 278.840209961 277.949584961 277.180053711 275.229797363 275.269836426 275.319641113 275.300109863 275.090148926 274.870422363 274.849914551 275.019836426 275.149719238 275.050109863 274.679992676 274.040344238 273.189758301 272.349914551 271.609680176 270.859680176 269.910461426 266.099761963 266.259918213 266.339996338 266.479644775 266.79019165 267.240386963 267.660308838 267.849761963 267.79019165 267.589996338 267.280426025 266.799957275 266.089996338 265.170074463 263.979644775 262.519683838 260.9503479 255.150390625 255.780273438 256.219726562 256.41015625 256.459960938 256.58984375 256.799804688 256.950195312 256.940429688 256.740234375 256.370117188 255.740234375 254.83984375 253.73046875 252.51953125 251.240234375 249.809570312 239.619567871 239.920349121 239.949645996 239.920349121 239.979919434 240.090270996 240.220153809 240.399841309 240.579528809 240.619567871 240.430114746 240.059997559 239.479919434 238.590270996 237.359802246 235.909606934 234.409606934 229.670135498 229.849822998 229.820037842 229.820037842 229.920135498 230.020233154 230.099822998 230.230194092 230.409881592 230.500213623 230.440155029 230.300018311 230.029998779 229.409881592 228.340057373 226.920135498 225.380096436 218.879867554 218.850082397 218.720199585 218.64012146 218.720199585 218.899887085 219.060043335 219.06980896 219.010238647 218.97996521 219.020004272 219.049789429 218.939926147 218.560043335 217.879867554 216.899887085 215.740219116 209.02003479 208.540054321 208.100112915 207.790054321 207.600112915 207.529800415 207.479995728 207.390151978 207.339859009 207.35987854 207.350112915 207.18019104 206.990249634 207.069839478 207.459976196 207.93019104 208.339859009 197.9503479 197.070465088 196.29019165 195.570465088 194.960113525 194.5597229 194.330230713 194.160308838 193.96987915 193.799957275 193.799957275 194.120269775 194.849761963 195.89956665 197.160308838 198.599761963 200.269683838 196.639846802 195.540237427 194.649612427 193.870315552 193.139846802 192.439651489 191.819534302 191.420120239 191.420120239 191.840042114 192.580276489 193.509963989 194.609573364 195.950393677 197.540237427 199.300003052 201.069534302 204.449829102 204.190063477 203.960083008 203.569946289 203.120239258 202.779907227 202.67980957 202.719848633 202.739868164 202.730102539 202.799926758 203.08996582 203.650024414 204.449829102 205.42980957 206.469848633 207.389770508 217.590026855 217.310241699 216.989929199 216.610046387 216.340026855 216.380065918 216.590026855 216.730163574 216.739929199 216.750183105 216.770202637 216.699890137 216.500183105 216.329772949 216.310241699 216.340026855 216.320007324 219.540115356 219.790115356 220.040115356 220.129959106 220.019607544 219.799880981 219.710037231 219.830154419 220.000076294 219.969802856 219.780349731 219.639724731 219.610427856 219.540115356 219.349685669 219.299880981 219.660232544 228.270431519 227.429611206 226.879806519 226.719650269 226.830001831 226.969650269 226.860275269 226.480392456 226.120040894 226.240158081 226.919845581 227.870040894 228.830001831 229.929611206 231.310470581 232.669845581 233.370040894 295.27935791 295.199279785 295.429748535 295.839904785 296.45904541 297.269592285 298.019592285 298.40045166 298.49029541 298.66998291 299.13092041 299.68951416 300.06060791 299.86920166 298.77935791 296.74029541 294.339904785 290.190612793 290.089050293 290.130065918 290.610534668 291.610534668 292.760925293 293.639831543 294.030456543 294.049987793 294.100769043 294.719909668 296.069519043 297.540222168 298.100769043 297.200378418 295.180847168 292.729675293 286.529693604 287.909576416 289.090240479 289.510162354 289.220123291 288.729888916 288.540435791 288.609771729 288.559967041 288.399810791 288.830474854 290.189849854 291.670318604 292.010162354 290.859771729 289.010162354 287.159576416 279.699584961 279.449584961 279.500366211 280.040405273 280.640014648 280.830444336 280.609741211 280.330444336 280.229858398 280.290405273 280.359741211 280.370483398 280.229858398 279.779663086 279.000366211 278.059936523 277.120483398 274.870422363 274.889953613 275.099914551 275.300109863 275.239562988 275.010070801 274.899719238 274.979797363 275.109680176 275.080383301 274.809875488 274.239562988 273.420227051 272.479797363 271.609680176 270.750305176 269.760070801 266.160308838 266.410308838 266.490386963 266.530426025 266.729644775 267.139801025 267.599761963 267.8800354 267.8800354 267.660308838 267.240386963 266.64956665 265.920074463 265.070465088 263.979644775 262.549957275 260.89956665 255.440429688 256.040039062 256.379882812 256.5 256.549804688 256.690429688 256.889648438 257.01953125 256.98046875 256.790039062 256.4296875 255.790039062 254.830078125 253.669921875 252.419921875 251.099609375 249.620117188 239.970153809 240.300231934 240.300231934 240.260192871 240.300231934 240.369567871 240.460388184 240.600036621 240.769958496 240.779724121 240.550231934 240.119567871 239.439880371 238.470153809 237.199645996 235.790466309 234.309997559 229.900115967 230.059783936 230.000213623 229.989959717 230.070037842 230.159881592 230.239959717 230.400115967 230.599822998 230.659881592 230.520233154 230.300018311 229.960174561 229.279998779 228.179901123 226.820037842 225.369842529 219.049789429 218.97996521 218.850082397 218.810043335 218.89012146 219.040023804 219.180160522 219.209945679 219.180160522 219.120101929 219.089828491 219.029769897 218.870101929 218.510238647 217.830062866 216.839828491 215.689926147 208.950210571 208.450210571 208.069839478 207.779800415 207.580093384 207.500015259 207.459976196 207.390151978 207.330093384 207.319839478 207.299819946 207.200210571 207.100112915 207.240249634 207.649917603 208.129898071 208.490249634 197.710113525 196.799957275 195.9503479 195.2003479 194.580230713 194.14956665 193.870269775 193.710113525 193.6300354 193.620269775 193.679840088 193.979644775 194.689605713 195.799957275 197.139801025 198.6300354 200.320465088 196.569534302 195.439651489 194.550003052 193.790237427 193.069534302 192.380081177 191.759963989 191.370315552 191.359573364 191.750198364 192.439651489 193.330276489 194.450393677 195.849807739 197.479690552 199.229690552 201.000198364 204.380004883 204.100219727 203.819946289 203.42980957 203.00012207 202.739868164 202.719848633 202.790161133 202.810180664 202.779907227 202.819946289 203.069946289 203.560180664 204.330200195 205.350219727 206.460083008 207.42980957 217.59979248 217.340026855 217.000183105 216.619812012 216.400085449 216.480163574 216.639831543 216.639831543 216.540222168 216.570007324 216.739929199 216.770202637 216.549987793 216.25994873 216.139831543 216.159851074 216.210144043 219.650466919 219.849685669 220.080154419 220.200271606 220.139724731 219.929763794 219.799880981 219.900466919 220.070388794 220.030349731 219.790115356 219.610427856 219.599685669 219.559646606 219.349685669 219.219802856 219.549880981 228.039962769 227.299728394 226.830001831 226.660079956 226.730392456 226.900314331 226.919845581 226.589767456 226.179611206 226.230392456 226.980392456 228.030197144 228.969650269 229.980392456 231.370040894 232.910079956 233.740158081 295.179748535 295.27935791 295.50982666 295.65045166 295.97076416 296.820373535 297.839904785 298.410217285 298.43951416 298.589904785 299.33013916 300.38092041 301.00982666 300.570373535 298.890686035 296.390686035 293.97076416 289.979675293 289.870300293 289.839050293 290.200378418 291.169128418 292.540222168 293.700378418 294.200378418 294.180847168 294.219909668 294.940612793 296.329284668 297.710144043 298.049987793 296.909362793 294.780456543 292.499206543 286.830474854 288.600006104 289.890045166 290.080474854 289.470123291 288.809967041 288.609771729 288.680084229 288.640045166 288.600006104 289.170318604 290.609771729 292.100006104 292.330474854 290.960357666 288.809967041 286.790435791 279.620483398 279.380249023 279.470092773 280.069702148 280.720092773 280.890014648 280.590209961 280.250366211 280.170288086 280.220092773 280.159545898 280.059936523 279.970092773 279.769897461 279.199584961 278.290405273 277.189819336 274.639953613 274.569641113 274.849914551 275.210266113 275.290344238 275.080383301 274.889953613 274.899719238 274.979797363 274.979797363 274.809875488 274.370422363 273.609680176 272.639953613 271.660461426 270.739562988 269.779602051 266.29019165 266.549957275 266.609527588 266.639801025 266.8097229 267.179840088 267.609527588 267.889801025 267.929840088 267.729644775 267.269683838 266.570465088 265.759918213 264.910308838 263.920074463 262.580230713 260.960113525 255.780273438 256.280273438 256.5 256.5703125 256.610351562 256.76953125 256.969726562 257.08984375 257.049804688 256.870117188 256.48046875 255.790039062 254.799804688 253.629882812 252.389648438 251.049804688 249.540039062 240.340270996 240.680114746 240.659606934 240.579528809 240.590270996 240.640075684 240.680114746 240.790466309 240.920349121 240.939880371 240.720153809 240.269958496 239.519958496 238.420349121 237.079528809 235.649841309 234.180114746 230.190155029 230.349822998 230.279998779 230.250213623 230.320037842 230.380096436 230.440155029 230.619842529 230.820037842 230.869842529 230.679901123 230.380096436 229.940155029 229.159881592 228.000213623 226.690155029 225.329803467 219.149887085 219.06980896 218.990219116 218.970199585 219.040023804 219.160140991 219.279769897 219.359848022 219.370101929 219.290023804 219.149887085 218.970199585 218.72996521 218.339828491 217.649887085 216.669906616 215.549789429 208.759780884 208.290054321 207.970230103 207.720230103 207.500015259 207.43019104 207.459976196 207.459976196 207.379898071 207.279800415 207.189956665 207.100112915 207.089859009 207.310073853 207.759780884 208.240249634 208.569839478 197.509918213 196.549957275 195.660308838 194.89956665 194.3097229 193.799957275 193.370269775 193.120269775 193.139801025 193.299957275 193.509918213 193.839996338 194.530426025 195.660308838 197.0597229 198.599761963 200.330230713 196.509963989 195.380081177 194.460159302 193.679885864 192.990432739 192.370315552 191.849807739 191.509963989 191.439651489 191.679885864 192.179885864 192.979690552 194.149612427 195.700393677 197.420120239 199.149612427 200.870315552 204.199829102 203.830200195 203.50012207 203.159790039 202.83996582 202.659790039 202.670043945 202.770141602 202.830200195 202.880004883 202.960083008 203.150024414 203.50012207 204.139770508 205.150024414 206.359985352 207.449829102 217.820007324 217.610046387 217.279968262 216.900085449 216.679870605 216.750183105 216.829772949 216.679870605 216.460144043 216.489929199 216.739929199 216.869812012 216.630065918 216.250183105 216.040222168 216.00994873 216.070007324 219.679763794 219.790115356 219.919998169 220.089920044 220.150466919 220.019607544 219.870193481 219.929763794 220.110427856 220.080154419 219.790115356 219.540115356 219.500076294 219.490310669 219.290115356 219.129959106 219.400466919 227.839767456 227.190353394 226.820236206 226.589767456 226.490158081 226.610275269 226.770431519 226.589767456 226.209884644 226.230392456 227.039962769 228.230392456 229.249923706 230.200119019 231.570236206 233.129806519 234.039962769 295.250061035 295.359436035 295.52935791 295.52935791 295.74029541 296.58013916 297.699279785 298.34967041 298.449279785 298.660217285 299.50982666 300.640686035 301.15045166 300.289123535 298.039123535 295.22076416 292.93951416 289.719909668 289.620300293 289.610534668 289.969909668 291.010925293 292.499206543 293.749206543 294.270690918 294.280456543 294.469909668 295.360534668 296.760925293 297.839050293 297.669128418 295.989440918 293.559753418 291.350769043 287.309967041 289.369537354 290.659576416 290.619537354 289.790435791 289.069732666 288.830474854 288.859771729 288.859771729 288.989654541 289.720123291 291.140045166 292.420318604 292.430084229 290.830474854 288.439849854 286.210357666 279.580444336 279.430053711 279.580444336 280.159545898 280.739624023 280.800170898 280.399780273 280.029663086 279.989624023 280.080444336 279.989624023 279.830444336 279.809936523 279.830444336 279.500366211 278.649780273 277.390014648 274.580383301 274.399719238 274.630187988 275.069641113 275.250305176 275.090148926 274.899719238 274.880187988 274.920227051 274.880187988 274.739562988 274.399719238 273.729797363 272.760070801 271.720031738 270.790344238 269.920227051 266.39956665 266.580230713 266.6300354 266.740386963 266.979644775 267.330230713 267.64956665 267.849761963 267.89956665 267.769683838 267.349761963 266.6300354 265.71987915 264.79019165 263.820465088 262.599761963 261.120269775 256.120117188 256.51953125 256.639648438 256.650390625 256.700195312 256.860351562 257.059570312 257.200195312 257.1796875 256.969726562 256.509765625 255.75 254.73046875 253.610351562 252.41015625 251.080078125 249.559570312 240.609802246 240.930114746 240.869567871 240.760192871 240.760192871 240.819763184 240.859802246 240.930114746 241.019958496 241.040466309 240.880310059 240.449645996 239.670349121 238.510192871 237.090270996 235.619567871 234.109802246 230.460174561 230.630096436 230.559783936 230.539764404 230.599822998 230.639862061 230.679901123 230.820037842 231.009979248 231.050018311 230.860076904 230.529998779 230.009979248 229.119842529 227.889862061 226.590057373 225.300018311 219.22996521 219.180160522 219.149887085 219.180160522 219.220199585 219.290023804 219.370101929 219.470199585 219.520004272 219.450180054 219.22996521 218.939926147 218.629867554 218.169906616 217.450180054 216.490219116 215.430160522 208.500015259 208.080093384 207.819839478 207.569839478 207.370132446 207.330093384 207.439956665 207.509780884 207.410171509 207.220230103 207.060073853 206.970230103 207.02003479 207.299819946 207.790054321 208.290054321 208.629898071 197.349761963 196.3097229 195.3800354 194.7003479 194.210113525 193.7003479 193.139801025 192.750152588 192.750152588 193.030426025 193.339996338 193.679840088 194.370269775 195.509918213 196.960113525 198.549957275 200.299957275 196.439651489 195.319534302 194.349807739 193.469924927 192.729690552 192.160354614 191.759963989 191.530471802 191.490432739 191.599807739 191.950393677 192.660354614 193.899612427 195.569534302 197.359573364 199.059768677 200.740432739 204.009887695 203.569946289 203.230102539 202.989868164 202.810180664 202.710083008 202.67980957 202.710083008 202.799926758 202.92980957 203.100219727 203.239868164 203.440063477 203.920043945 204.870239258 206.190063477 207.440063477 218.040222168 217.889831543 217.590026855 217.159851074 216.860046387 216.829772949 216.860046387 216.710144043 216.489929199 216.529968262 216.779968262 216.869812012 216.610046387 216.199890137 215.960144043 215.889831543 215.889831543 219.549880981 219.509841919 219.559646606 219.799880981 220.019607544 219.990310669 219.849685669 219.910232544 220.120193481 220.150466919 219.839920044 219.509841919 219.419998169 219.389724731 219.210037231 219.040115356 219.269607544 227.900314331 227.370040894 227.099533081 226.749923706 226.400314331 226.389572144 226.639572144 226.610275269 226.240158081 226.219650269 227.060470581 228.370040894 229.490158081 230.459884644 231.759689331 233.270431519 234.150314331 294.90045166 294.93951416 295.179748535 295.410217285 295.839904785 296.72076416 297.70904541 298.269592285 298.43951416 298.800842285 299.679748535 300.70904541 301.070373535 300.000061035 297.429748535 294.320373535 291.93951416 289.329284668 289.280456543 289.419128418 289.969909668 291.120300293 292.600769043 293.770690918 294.210144043 294.290222168 294.719909668 295.860534668 297.319519043 298.190612793 297.589050293 295.409362793 292.559753418 290.169128418 287.979888916 290.180084229 291.390045166 291.199615479 290.290435791 289.500396729 289.130279541 288.979888916 288.949615479 289.239654541 290.149810791 291.529693604 292.630279541 292.460357666 290.769927979 288.210357666 285.729888916 279.559936523 279.500366211 279.689819336 280.210327148 280.680053711 280.649780273 280.220092773 279.870483398 279.859741211 279.970092773 279.899780273 279.750366211 279.809936523 280.000366211 279.880249023 279.109741211 277.750366211 274.590148926 274.309875488 274.489562988 274.960266113 275.220031738 275.120422363 274.979797363 274.970031738 274.979797363 274.859680176 274.679992676 274.410461426 273.870422363 272.929992676 271.849914551 270.939758301 270.149719238 266.420074463 266.460113525 266.509918213 266.71987915 267.0597229 267.39956665 267.609527588 267.710113525 267.750152588 267.729644775 267.4503479 266.780426025 265.820465088 264.780426025 263.759918213 262.620269775 261.299957275 256.379882812 256.709960938 256.780273438 256.759765625 256.799804688 256.940429688 257.129882812 257.290039062 257.309570312 257.08984375 256.5703125 255.73046875 254.690429688 253.580078125 252.419921875 251.099609375 249.639648438 240.819763184 241.100036621 240.970153809 240.819763184 240.850036621 240.960388184 241.029724121 241.069763184 241.109802246 241.090270996 240.939880371 240.559997559 239.819763184 238.670349121 237.229919434 235.720153809 234.149841309 230.699920654 230.849822998 230.800018311 230.800018311 230.880096436 230.920135498 230.909881592 230.980194092 231.119842529 231.150115967 231.000213623 230.699920654 230.159881592 229.210174561 227.929901123 226.599822998 225.309783936 219.350082397 219.350082397 219.39012146 219.459945679 219.470199585 219.470199585 219.490219116 219.560043335 219.629867554 219.56980896 219.350082397 219.040023804 218.669906616 218.129867554 217.359848022 216.419906616 215.439926147 208.279800415 207.910171509 207.689956665 207.459976196 207.240249634 207.220230103 207.390151978 207.490249634 207.399917603 207.189956665 207.029800415 206.959976196 207.029800415 207.319839478 207.819839478 208.35987854 208.759780884 197.080230713 195.920074463 194.960113525 194.410308838 194.1300354 193.740386963 193.139801025 192.639801025 192.5597229 192.8097229 193.1300354 193.490386963 194.189605713 195.3800354 196.870269775 198.500152588 200.259918213 196.429885864 195.370315552 194.340042114 193.319534302 192.439651489 191.800003052 191.460159302 191.349807739 191.389846802 191.550003052 191.870315552 192.559768677 193.800003052 195.479690552 197.259963989 198.920120239 200.590042114 203.859985352 203.370239258 203.080200195 202.980102539 202.980102539 202.960083008 202.889770508 202.810180664 202.830200195 202.960083008 203.109985352 203.219848633 203.310180664 203.690063477 204.600219727 205.989868164 207.380004883 218.110046387 217.969909668 217.659851074 217.17010498 216.730163574 216.579772949 216.610046387 216.560241699 216.489929199 216.570007324 216.779968262 216.799987793 216.500183105 216.09979248 215.84979248 215.730163574 215.639831543 219.469802856 219.309646606 219.330154419 219.669998169 220.030349731 220.049880981 219.879959106 219.910232544 220.139724731 220.189529419 219.879959106 219.519607544 219.410232544 219.400466919 219.240310669 219.059646606 219.210037231 227.969650269 227.599533081 227.389572144 226.929611206 226.400314331 226.299728394 226.570236206 226.610275269 226.259689331 226.219650269 227.049728394 228.400314331 229.549728394 230.509689331 231.759689331 233.200119019 234.039962769 294.31060791 294.33013916 294.66998291 295.18951416 295.910217285 296.83013916 297.65045166 298.11920166 298.429748535 298.980529785 299.890686035 300.890686035 301.339904785 300.410217285 297.75982666 294.269592285 291.45904541 288.960144043 289.030456543 289.350769043 290.030456543 291.200378418 292.639831543 293.719909668 294.130065918 294.280456543 294.860534668 296.159362793 297.760925293 298.690612793 298.049987793 295.669128418 292.499206543 289.799987793 288.779693604 291.040435791 292.149810791 291.830474854 290.809967041 289.899810791 289.309967041 288.949615479 288.840240479 289.250396729 290.319732666 291.769927979 292.850006104 292.699615479 291.010162354 288.359771729 285.619537354 279.670288086 279.659545898 279.849975586 280.279663086 280.659545898 280.640014648 280.269897461 279.960327148 279.920288086 279.989624023 279.890014648 279.760131836 279.880249023 280.199584961 280.220092773 279.550170898 278.159545898 274.569641113 274.220031738 274.380187988 274.880187988 275.210266113 275.179992676 275.080383301 275.069641113 275.029602051 274.840148926 274.630187988 274.450500488 274.069641113 273.239562988 272.160461426 271.220031738 270.460266113 266.349761963 266.320465088 266.3800354 266.64956665 267.000152588 267.259918213 267.389801025 267.46987915 267.589996338 267.660308838 267.500152588 266.939605713 266.000152588 264.89956665 263.780426025 262.660308838 261.4503479 256.490234375 256.780273438 256.849609375 256.860351562 256.879882812 256.98046875 257.16015625 257.330078125 257.370117188 257.1796875 256.650390625 255.799804688 254.75 253.610351562 252.41015625 251.080078125 249.700195312 241.010192871 241.250427246 241.079528809 240.899841309 240.939880371 241.079528809 241.180114746 241.210388184 241.180114746 241.100036621 240.920349121 240.569763184 239.899841309 238.829528809 237.439880371 235.899841309 234.269958496 230.929901123 231.050018311 231.020233154 231.059783936 231.170135498 231.199920654 231.139862061 231.130096436 231.199920654 231.199920654 231.070037842 230.820037842 230.300018311 229.349822998 228.059783936 226.719940186 225.389862061 219.540023804 219.600082397 219.700180054 219.779769897 219.760238647 219.689926147 219.629867554 219.649887085 219.700180054 219.669906616 219.499984741 219.209945679 218.830062866 218.240219116 217.430160522 216.490219116 215.549789429 208.120132446 207.779800415 207.569839478 207.350112915 207.160171509 207.149917603 207.310073853 207.419937134 207.370132446 207.240249634 207.129898071 207.089859009 207.129898071 207.390151978 207.899917603 208.470230103 208.93019104 196.710113525 195.460113525 194.500152588 194.049957275 193.910308838 193.620269775 193.049957275 192.54019165 192.389801025 192.570465088 192.859527588 193.259918213 194.019683838 195.250152588 196.769683838 198.410308838 200.160308838 196.479690552 195.460159302 194.410354614 193.309768677 192.319534302 191.649612427 191.290237427 191.179885864 191.269729614 191.500198364 191.889846802 192.590042114 193.759963989 195.349807739 197.059768677 198.719924927 200.429885864 203.719848633 203.210083008 202.969848633 203.00012207 203.130004883 203.199829102 203.159790039 203.069946289 203.00012207 203.020141602 203.060180664 203.069946289 203.109985352 203.440063477 204.319946289 205.75012207 207.259887695 218.079772949 217.880065918 217.540222168 217.00994873 216.520202637 216.320007324 216.340026855 216.369812012 216.369812012 216.50994873 216.719909668 216.739929199 216.440124512 216.049987793 215.75994873 215.540222168 215.369812012 219.530349731 219.320388794 219.410232544 219.889724731 220.309646606 220.299880981 220.049880981 220.019607544 220.210037231 220.219802856 219.879959106 219.540115356 219.490310669 219.559646606 219.429763794 219.200271606 219.229568481 227.839767456 227.570236206 227.320236206 226.770431519 226.200119019 226.099533081 226.389572144 226.450119019 226.160079956 226.209884644 227.099533081 228.389572144 229.419845581 230.280197144 231.520431519 232.990158081 233.830001831 294.18951416 294.27935791 294.570373535 295.02935791 295.730529785 296.609436035 297.41998291 298.02935791 298.56060791 299.24029541 300.13092041 301.160217285 301.88092041 301.269592285 298.640686035 294.789123535 291.500061035 288.809753418 289.089050293 289.489440918 290.069519043 291.100769043 292.489440918 293.680847168 294.229675293 294.380065918 294.860534668 296.100769043 297.860534668 299.110534668 298.780456543 296.549987793 293.280456543 290.280456543 289.720123291 292.019927979 292.970123291 292.399810791 291.149810791 290.040435791 289.340240479 288.949615479 288.890045166 289.330474854 290.439849854 291.970123291 293.189849854 293.189849854 291.600006104 288.939849854 286.050201416 280.029663086 280.029663086 280.149780273 280.449584961 280.729858398 280.750366211 280.500366211 280.220092773 280.109741211 280.059936523 279.909545898 279.790405273 279.939819336 280.300170898 280.420288086 279.849975586 278.529663086 274.420227051 274.040344238 274.210266113 274.790344238 275.189758301 275.200500488 275.080383301 275.029602051 274.939758301 274.729797363 274.559875488 274.510070801 274.300109863 273.599914551 272.540344238 271.580383301 270.809875488 266.299957275 266.299957275 266.429840088 266.7003479 266.920074463 267.04019165 267.1300354 267.299957275 267.519683838 267.64956665 267.530426025 267.030426025 266.170074463 265.0597229 263.889801025 262.729644775 261.589996338 256.450195312 256.719726562 256.860351562 256.919921875 256.950195312 257.01953125 257.139648438 257.290039062 257.360351562 257.219726562 256.759765625 255.959960938 254.919921875 253.75 252.450195312 251.0703125 249.73046875 241.210388184 241.399841309 241.199645996 241.010192871 241.019958496 241.149841309 241.250427246 241.290466309 241.250427246 241.140075684 240.920349121 240.540466309 239.920349121 238.930114746 237.600036621 236.069763184 234.439880371 231.159881592 231.259979248 231.259979248 231.329803467 231.449920654 231.469940186 231.380096436 231.320037842 231.320037842 231.259979248 231.119842529 230.860076904 230.369842529 229.469940186 228.230194092 226.889862061 225.520233154 219.779769897 219.89012146 219.999984741 220.060043335 220.010238647 219.910140991 219.810043335 219.779769897 219.799789429 219.770004272 219.629867554 219.379867554 218.990219116 218.379867554 217.529769897 216.600082397 215.669906616 207.970230103 207.60987854 207.390151978 207.200210571 207.069839478 207.089859009 207.200210571 207.279800415 207.279800415 207.250015259 207.229995728 207.209976196 207.240249634 207.490249634 207.990249634 208.569839478 209.060073853 196.46987915 195.250152588 194.339996338 193.89956665 193.679840088 193.330230713 192.780426025 192.349761963 192.240386963 192.39956665 192.660308838 193.109527588 193.929840088 195.14956665 196.6300354 198.240386963 200.000152588 196.410354614 195.340042114 194.240432739 193.160354614 192.290237427 191.719924927 191.399612427 191.229690552 191.229690552 191.429885864 191.830276489 192.500198364 193.590042114 195.099807739 196.780471802 198.450393677 200.210159302 203.630004883 203.170043945 202.980102539 203.009887695 203.120239258 203.199829102 203.219848633 203.219848633 203.190063477 203.120239258 203.029907227 202.949829102 202.949829102 203.199829102 204.00012207 205.400024414 207.020141602 218.029968262 217.699890137 217.310241699 216.840026855 216.469909668 216.369812012 216.409851074 216.380065918 216.299987793 216.380065918 216.59979248 216.699890137 216.480163574 216.090026855 215.719909668 215.400085449 215.150085449 219.500076294 219.330154419 219.570388794 220.129959106 220.519607544 220.450271606 220.210037231 220.200271606 220.370193481 220.290115356 219.879959106 219.580154419 219.620193481 219.759841919 219.639724731 219.320388794 219.210037231 227.780197144 227.480392456 227.089767456 226.490158081 225.980392456 225.919845581 226.139572144 226.139572144 225.929611206 226.169845581 227.160079956 228.400314331 229.259689331 229.990158081 231.249923706 232.849533081 233.789962769 295.839996338 295.810699463 296.179840088 296.789215088 297.220855713 297.570465088 298.310699463 299.230621338 299.720855713 299.810699463 300.349761963 301.810699463 303.339996338 303.470855713 301.640777588 298.660308838 295.800933838 290.659667969 291.229980469 292.009277344 292.599121094 292.940917969 293.499511719 294.470214844 295.210449219 295.190917969 295.079589844 296.089355469 298.310058594 300.370605469 300.790527344 299.239746094 296.499511719 293.630371094 289.530334473 290.58013916 290.90045166 290.719787598 290.25982666 289.91998291 289.889709473 290.000061035 289.950256348 290.059631348 291.019592285 292.84967041 294.540100098 294.860412598 293.49029541 291.08013916 288.410217285 280.250061035 280.58013916 280.790100098 281.019592285 281.160217285 280.979553223 280.530334473 280.08013916 279.860412598 279.820373535 279.809631348 279.929748535 280.309631348 280.75982666 280.780334473 279.99029541 278.519592285 274.600006104 274.899810791 275.279693604 275.399810791 275.140045166 274.739654541 274.489654541 274.449615479 274.489654541 274.479888916 274.359771729 274.080474854 273.649810791 273.149810791 272.580474854 271.830474854 270.729888916 266.280395508 266.57043457 266.960083008 267.240356445 267.299926758 267.299926758 267.370239258 267.41027832 267.290161133 267.120239258 267.01965332 266.880004883 266.450317383 265.57043457 264.42980957 263.200317383 261.889770508 256.050292969 256.380371094 256.550292969 256.770019531 257.020019531 257.260253906 257.439941406 257.600097656 257.659667969 257.560058594 257.180175781 256.510253906 255.579605103 254.470230103 253.27003479 252.010269165 250.640151978 240.609771729 240.920318604 241.100006104 241.170318604 241.180084229 241.229888916 241.369537354 241.489654541 241.449615479 241.239654541 240.939849854 240.519927979 239.859771729 238.890045166 237.739654541 236.479888916 235.109771729 231.330200195 231.509887695 231.460083008 231.310180664 231.219848633 231.190063477 231.190063477 231.17980957 231.210083008 231.199829102 231.029907227 230.670043945 230.100219727 229.279907227 228.170043945 226.92980957 225.770141602 220.979919434 220.890075684 220.650085449 220.449890137 220.309997559 220.150085449 219.969909668 219.870056152 219.930114746 219.989929199 219.870056152 219.620056152 219.340026855 218.92010498 218.180114746 217.209899902 216.390075684 208.379806519 207.919845581 207.609786987 207.450119019 207.410079956 207.390060425 207.3099823 207.209884644 207.200119019 207.320236206 207.530197144 207.740158081 207.97013855 208.330001831 208.870040894 209.539962769 210.160079956 196.640151978 195.53956604 194.78956604 194.130386353 193.399917603 192.739761353 192.369644165 192.310073853 192.369644165 192.319839478 192.329605103 192.850112915 194.119644165 195.939956665 197.78956604 199.43019104 201.02003479 198.139877319 196.519760132 195.069564819 193.990463257 193.399642944 193.149642944 193.019760132 192.920150757 192.889877319 193.029525757 193.309799194 193.639877319 194.090072632 194.830307007 195.990463257 197.639877319 199.710189819 205.629959106 205.230056763 205.040115356 204.859939575 204.609939575 204.390213013 204.390213013 204.569900513 204.719802856 204.640213013 204.399978638 204.149978638 203.960037231 203.919998169 204.109939575 204.629959106 205.410232544 218.389801025 217.529937744 216.659820557 216.069976807 215.96987915 216.150054932 216.230133057 216.069976807 215.869781494 215.8800354 216.100250244 216.330230713 216.449859619 216.350250244 215.920074463 215.270172119 214.770172119 219.129608154 219.140350342 219.459686279 219.789764404 219.900115967 219.900115967 220.049530029 220.390350342 220.619842529 220.499725342 220.129608154 219.820037842 219.810272217 220.100311279 220.589569092 220.989959717 220.989959717 228.839691162 228.179534912 227.400238037 226.749847412 226.410003662 226.230316162 225.919769287 225.390472412 224.980316162 225.150238037 226.039886475 227.150238037 227.9402771 228.400238037 228.999847412 229.9402771 230.7996521 295.379058838 295.589996338 296.150543213 296.849761963 297.320465088 297.849761963 298.810699463 299.769683838 300.019683838 299.740386963 300.080230713 301.550933838 303.119293213 303.259918213 301.539215088 298.869293213 296.330230713 290.310058594 291.179199219 292.159667969 292.880371094 293.220214844 293.749511719 294.710449219 295.460449219 295.349121094 295.069824219 295.960449219 298.220214844 300.409667969 300.999511719 299.700683594 297.169433594 294.210449219 290.620178223 291.719787598 291.84967041 291.320373535 290.50982666 289.940490723 289.969787598 290.25982666 290.269592285 290.190490723 290.91998291 292.710021973 294.540100098 295.070373535 293.950256348 291.809631348 289.379943848 280.530334473 280.58013916 280.629943848 280.879943848 281.129943848 280.99029541 280.49029541 279.979553223 279.729553223 279.710021973 279.780334473 280.019592285 280.500061035 280.91998291 280.84967041 280.000061035 278.570373535 274.420318604 274.600006104 274.930084229 275.080474854 274.920318604 274.640045166 274.479888916 274.470123291 274.540435791 274.600006104 274.510162354 274.180084229 273.670318604 273.149810791 272.649810791 271.920318604 270.809967041 266.380004883 266.830200195 267.259887695 267.439575195 267.330200195 267.210083008 267.280395508 267.389770508 267.370239258 267.219848633 267.110473633 266.990356445 266.630004883 265.860473633 264.790161133 263.540161133 262.170043945 256.060058594 256.310058594 256.470214844 256.720214844 256.979980469 257.180175781 257.340332031 257.520019531 257.659667969 257.600097656 257.229980469 256.560058594 255.69972229 254.68019104 253.560073853 252.34034729 250.979995728 240.930084229 241.229888916 241.369537354 241.420318604 241.409576416 241.420318604 241.489654541 241.550201416 241.510162354 241.330474854 241.059967041 240.640045166 240.010162354 239.109771729 238.019927979 236.809967041 235.510162354 231.529907227 231.75012207 231.759887695 231.639770508 231.520141602 231.42980957 231.359985352 231.319946289 231.350219727 231.370239258 231.230102539 230.870239258 230.299926758 229.509887695 228.42980957 227.210083008 226.069946289 220.979919434 220.890075684 220.749938965 220.610046387 220.469909668 220.309997559 220.090026855 219.969909668 219.999938965 220.049987793 219.949890137 219.709899902 219.400085449 218.979919434 218.279968262 217.350036621 216.539978027 208.109786987 207.580001831 207.189865112 207.010177612 206.999923706 207.030197144 206.990158081 206.930099487 206.97013855 207.109786987 207.320236206 207.550216675 207.820236206 208.22013855 208.769943237 209.439865112 210.050216675 196.44972229 195.560073853 194.960464478 194.300308228 193.53956604 192.94972229 192.760269165 192.819839478 192.760269165 192.479995728 192.310073853 192.760269165 193.979995728 195.749526978 197.600112915 199.279800415 200.850112915 197.899642944 196.269760132 194.800033569 193.719955444 193.149642944 192.910385132 192.759994507 192.639877319 192.689682007 192.939682007 193.279525757 193.580307007 193.939682007 194.550033569 195.599838257 197.109603882 199.050033569 205.77986145 205.52986145 205.399978638 205.230056763 204.919998169 204.609939575 204.520095825 204.609939575 204.679763794 204.580154419 204.370193481 204.169998169 203.989822388 203.870193481 203.910232544 204.27986145 205.009841919 218.060211182 217.060211182 216.080230713 215.46987915 215.420074463 215.71987915 215.929840088 215.839996338 215.659820557 215.699859619 216.000152588 216.319976807 216.509918213 216.429840088 216.04019165 215.46987915 215.069976807 219.289764404 219.459686279 219.760467529 219.949920654 219.909881592 219.869842529 220.119842529 220.570037842 220.850311279 220.699920654 220.279998779 219.890350342 219.739959717 219.919647217 220.360076904 220.799530029 220.860076904 228.9402771 228.1902771 227.469573975 227.009613037 226.770355225 226.5496521 226.1199646 225.499847412 224.950042725 224.950042725 225.719573975 226.9402771 227.999847412 228.6199646 229.160003662 230.03012085 231.060394287 294.199371338 294.779449463 295.839996338 296.959136963 297.789215088 298.570465088 299.539215088 300.170074463 299.859527588 299.220855713 299.650543213 301.379058838 302.980621338 302.890777588 301.070465088 298.619293213 296.349761963 290.630371094 291.890136719 293.040527344 293.780761719 294.050292969 294.360839844 295.040527344 295.509277344 295.229980469 294.929199219 295.919433594 298.259277344 300.360839844 300.780761719 299.429199219 296.970214844 293.929199219 291.90045166 292.690490723 292.440490723 291.679748535 290.769592285 290.160217285 290.160217285 290.370178223 290.210021973 290.000061035 290.74029541 292.66998291 294.610412598 295.120178223 293.99029541 291.99029541 289.750061035 280.820373535 280.58013916 280.49029541 280.75982666 281.09967041 281.030334473 280.519592285 279.969787598 279.660217285 279.610412598 279.75982666 280.160217285 280.74029541 281.160217285 280.969787598 280.019592285 278.50982666 274.229888916 274.319732666 274.630279541 274.819732666 274.769927979 274.600006104 274.470123291 274.470123291 274.590240479 274.710357666 274.619537354 274.159576416 273.529693604 273.050201416 272.710357666 272.119537354 270.979888916 266.610473633 267.120239258 267.509887695 267.559692383 267.33996582 267.17980957 267.26965332 267.460083008 267.51965332 267.420043945 267.309692383 267.170043945 266.809692383 266.099731445 265.120239258 263.92980957 262.530395508 255.989761353 256.229980469 256.420410156 256.659667969 256.890136719 257.069824219 257.249511719 257.470214844 257.659667969 257.619628906 257.249511719 256.600097656 255.800308228 254.890151978 253.850112915 252.670425415 251.319839478 241.149810791 241.409576416 241.529693604 241.569732666 241.569732666 241.550201416 241.529693604 241.510162354 241.449615479 241.330474854 241.109771729 240.720123291 240.130279541 239.319732666 238.309967041 237.170318604 235.920318604 231.659790039 231.900024414 231.969848633 231.880004883 231.759887695 231.650024414 231.529907227 231.440063477 231.449829102 231.480102539 231.370239258 231.029907227 230.50012207 229.770141602 228.770141602 227.560180664 226.42980957 220.940124512 220.910095215 220.860046387 220.739929199 220.58001709 220.390075684 220.190124512 220.049987793 220.039978027 220.08001709 220.019958496 219.799987793 219.489929199 219.059997559 218.410095215 217.570007324 216.789978027 207.879806519 207.320236206 206.930099487 206.789962769 206.850021362 206.89982605 206.850021362 206.8099823 206.859786987 207.010177612 207.200119019 207.430099487 207.709884644 208.109786987 208.64982605 209.289962769 209.910079956 196.069839478 195.210464478 194.550308228 193.78956604 193.03956604 192.68019104 192.77003479 192.939956665 192.729995728 192.229995728 191.979995728 192.439956665 193.69972229 195.499526978 197.439956665 199.220230103 200.749526978 197.929916382 196.519760132 195.250228882 194.269760132 193.630111694 193.189682007 192.819564819 192.580307007 192.679916382 193.080307007 193.479721069 193.670150757 193.809799194 194.229721069 195.090072632 196.420150757 198.219955444 205.870193481 205.569900513 205.390213013 205.210037231 204.969802856 204.739822388 204.679763794 204.719802856 204.660232544 204.4400177 204.1900177 204.020095825 203.919998169 203.819900513 203.799880981 204.060134888 204.6900177 217.54019165 216.619781494 215.739898682 215.150054932 215.04019165 215.310211182 215.580230713 215.650054932 215.610015869 215.730133057 216.04019165 216.3800354 216.560211182 216.46987915 216.119781494 215.670074463 215.360015869 219.999725342 220.339569092 220.600311279 220.640350342 220.440155029 220.279998779 220.400115967 220.720428467 220.900115967 220.669647217 220.209686279 219.779998779 219.589569092 219.739959717 220.199920654 220.720428467 220.820037842 228.499847412 227.719573975 227.150238037 226.810394287 226.579925537 226.329925537 225.9402771 225.429534912 224.950042725 224.890472412 225.60043335 226.9402771 228.219573975 228.929534912 229.320159912 230.0496521 231.230316162 293.580230713 294.519683838 295.920074463 297.300933838 298.269683838 299.050933838 299.779449463 299.949371338 299.240386963 298.629058838 299.550933838 301.750152588 303.310699463 302.759918213 300.629058838 298.199371338 295.970855713 292.089355469 293.519042969 294.470214844 294.989746094 295.050292969 295.060058594 295.310058594 295.399902344 294.950683594 294.759277344 295.989746094 298.409667969 300.280761719 300.310058594 298.700683594 296.159667969 293.030761719 293.370178223 293.589904785 292.820373535 291.879943848 291.059631348 290.50982666 290.360412598 290.299865723 289.960021973 289.870178223 290.99029541 293.24029541 295.09967041 295.200256348 293.690490723 291.549865723 289.33013916 281.110412598 280.710021973 280.50982666 280.729553223 281.08013916 281.070373535 280.610412598 280.049865723 279.700256348 279.610412598 279.799865723 280.320373535 281.019592285 281.460021973 281.210021973 280.09967041 278.379943848 274.100006104 274.140045166 274.439849854 274.640045166 274.630279541 274.519927979 274.399810791 274.380279541 274.489654541 274.619537354 274.449615479 273.869537354 273.229888916 272.930084229 272.869537354 272.500396729 271.340240479 266.809692383 267.309692383 267.620239258 267.610473633 267.380004883 267.25012207 267.360473633 267.580200195 267.710083008 267.689575195 267.620239258 267.450317383 267.059692383 266.360473633 265.42980957 264.32043457 262.939575195 255.93019104 256.210449219 256.420410156 256.630371094 256.840332031 257.020019531 257.199707031 257.430175781 257.609863281 257.579589844 257.229980469 256.659667969 255.93019104 255.100112915 254.10987854 252.970230103 251.649917603 241.260162354 241.489654541 241.569732666 241.580474854 241.580474854 241.559967041 241.489654541 241.399810791 241.330474854 241.260162354 241.090240479 240.739654541 240.189849854 239.479888916 238.569732666 237.500396729 236.300201416 231.699829102 231.969848633 232.08996582 232.029907227 231.909790039 231.779907227 231.620239258 231.460083008 231.420043945 231.440063477 231.359985352 231.069946289 230.620239258 230.00012207 229.08996582 227.92980957 226.790161133 220.870056152 220.910095215 220.940124512 220.850036621 220.640075684 220.430114746 220.249938965 220.120056152 220.070007324 220.070007324 220.019958496 219.840026855 219.529968262 219.120056152 218.539978027 217.789978027 217.059997559 207.729904175 207.180099487 206.8099823 206.760177612 206.879806519 206.930099487 206.870040894 206.8099823 206.890060425 207.050216675 207.200119019 207.390060425 207.669845581 208.050216675 208.539962769 209.129806519 209.769943237 195.689956665 194.760269165 193.920425415 193.010269165 192.229995728 191.979995728 192.189956665 192.319839478 191.970230103 191.439956665 191.34034729 192.010269165 193.35987854 195.189956665 197.27003479 199.220230103 200.729995728 198.139877319 197.009994507 196.069564819 195.279525757 194.639877319 194.050033569 193.450424194 193.059799194 193.109603882 193.509994507 193.809799194 193.790267944 193.670150757 193.859603882 194.519760132 195.639877319 197.300033569 205.660232544 205.120193481 204.750076294 204.520095825 204.379959106 204.359939575 204.489822388 204.609939575 204.520095825 204.1900177 203.870193481 203.730056763 203.719802856 203.719802856 203.730056763 203.929763794 204.460037231 217.360015869 216.730133057 216.170074463 215.710113525 215.480133057 215.610015869 215.929840088 216.170074463 216.270172119 216.339996338 216.489898682 216.650054932 216.699859619 216.560211182 216.259918213 215.900054932 215.619781494 220.760467529 221.100311279 221.289764404 221.249725342 220.989959717 220.650115967 220.480194092 220.489959717 220.430389404 220.110076904 219.669647217 219.360076904 219.329803467 219.629608154 220.169647217 220.720428467 220.879608154 227.85043335 227.110198975 226.579925537 226.20980835 225.919769287 225.660003662 225.469573975 225.329925537 225.240081787 225.410003662 226.160003662 227.429534912 228.589691162 229.129730225 229.320159912 229.929534912 231.1902771 295.279449463 296.339996338 297.369293213 298.199371338 298.650543213 298.949371338 299.300933838 299.230621338 298.570465088 298.439605713 300.029449463 302.629058838 303.939605713 302.769683838 300.179840088 297.640777588 295.279449463 294.769042969 295.819824219 296.069824219 295.999511719 295.720214844 295.450683594 295.419433594 295.310058594 294.819824219 294.759277344 296.200683594 298.729980469 300.429199219 300.050292969 298.050292969 295.290527344 292.040527344 294.870178223 294.50982666 293.229553223 292.059631348 291.24029541 290.74029541 290.530334473 290.290100098 289.969787598 290.229553223 291.870178223 294.370178223 295.90045166 295.309631348 293.16998291 290.74029541 288.410217285 281.559631348 281.09967041 280.75982666 280.780334473 280.99029541 281.000061035 280.660217285 280.179748535 279.860412598 279.75982666 279.979553223 280.559631348 281.33013916 281.799865723 281.49029541 280.280334473 278.34967041 273.989654541 274.010162354 274.260162354 274.449615479 274.489654541 274.420318604 274.309967041 274.250396729 274.319732666 274.350006104 274.050201416 273.430084229 272.909576416 272.869537354 273.109771729 272.949615479 271.809967041 266.899536133 267.360473633 267.620239258 267.610473633 267.450317383 267.370239258 267.460083008 267.649536133 267.809692383 267.870239258 267.870239258 267.719848633 267.309692383 266.610473633 265.719848633 264.689575195 263.370239258 255.909683228 256.260253906 256.479980469 256.670410156 256.840332031 257.020019531 257.220214844 257.409667969 257.550292969 257.510253906 257.229980469 256.760253906 256.109863281 255.329605103 254.35987854 253.220230103 251.920425415 241.300201416 241.510162354 241.559967041 241.540435791 241.510162354 241.470123291 241.390045166 241.300201416 241.250396729 241.199615479 241.029693604 240.689849854 240.199615479 239.559967041 238.760162354 237.760162354 236.609771729 231.699829102 231.989868164 232.150024414 232.100219727 231.949829102 231.799926758 231.58996582 231.380004883 231.290161133 231.290161133 231.230102539 231.00012207 230.639770508 230.150024414 229.350219727 228.25012207 227.08996582 220.769958496 220.850036621 220.949890137 220.870056152 220.660095215 220.459899902 220.309997559 220.160095215 220.08001709 220.039978027 220.00994873 219.870056152 219.590026855 219.209899902 218.690124512 218.00994873 217.299987793 207.609786987 207.030197144 206.669845581 206.660079956 206.830001831 206.890060425 206.820236206 206.8099823 206.919845581 207.070236206 207.180099487 207.339767456 207.629806519 208.010177612 208.430099487 208.97013855 209.620040894 195.53956604 194.659683228 193.800308228 192.819839478 191.970230103 191.640151978 191.69972229 191.600112915 191.119644165 190.69972229 190.899917603 191.78956604 193.140151978 194.890151978 197.03956604 199.159683228 200.710464478 198.120346069 197.109603882 196.319564819 195.700424194 195.189682007 194.670150757 194.080307007 193.660385132 193.649642944 193.910385132 194.009994507 193.779525757 193.540267944 193.649642944 194.149642944 195.019760132 196.490463257 205.250076294 204.460037231 203.899978638 203.589920044 203.469802856 203.560134888 203.839920044 204.120193481 204.10017395 203.799880981 203.500076294 203.419998169 203.500076294 203.560134888 203.629959106 203.819900513 204.270095825 217.699859619 217.460113525 217.270172119 216.960113525 216.679840088 216.730133057 217.089996338 217.449859619 217.54019165 217.420074463 217.239898682 217.069976807 216.900054932 216.670074463 216.409820557 216.1300354 215.8800354 220.659881592 220.730194092 220.749725342 220.720428467 220.520233154 220.140350342 219.749725342 219.510467529 219.329803467 219.029998779 218.739959717 218.690155029 219.010467529 219.560272217 220.199920654 220.739959717 220.919647217 228.070159912 227.419769287 226.839691162 226.320159912 225.8699646 225.589691162 225.579925537 225.820159912 226.20980835 226.749847412 227.499847412 228.379730225 228.990081787 229.129730225 229.160003662 229.730316162 230.95980835 299.429840088 300.099761963 300.050933838 299.660308838 299.089996338 298.720855713 298.740386963 298.689605713 298.349761963 298.699371338 300.759918213 303.509918213 304.500152588 302.699371338 299.599761963 296.869293213 294.449371338 297.960449219 298.140136719 297.360839844 296.530761719 295.860839844 295.429199219 295.419433594 295.429199219 295.089355469 295.120605469 296.679199219 299.349121094 301.050292969 300.370605469 297.870605469 294.700683594 291.290527344 296.120178223 295.360412598 293.719787598 292.250061035 291.290100098 290.820373535 290.700256348 290.570373535 290.40045166 290.929748535 292.839904785 295.34967041 296.519592285 295.34967041 292.729553223 290.00982666 287.530334473 282.160217285 281.700256348 281.139709473 280.820373535 280.809631348 280.820373535 280.620178223 280.290100098 280.059631348 280.019592285 280.25982666 280.820373535 281.570373535 282.049865723 281.769592285 280.559631348 278.549865723 273.809967041 273.850006104 274.090240479 274.290435791 274.399810791 274.390045166 274.279693604 274.170318604 274.149810791 274.059967041 273.649810791 273.059967041 272.720123291 272.930084229 273.369537354 273.330474854 272.229888916 266.91027832 267.360473633 267.620239258 267.630004883 267.540161133 267.469848633 267.490356445 267.620239258 267.76965332 267.899536133 267.969848633 267.860473633 267.479614258 266.799926758 265.939575195 264.969848633 263.759887695 255.94972229 256.359863281 256.600097656 256.739746094 256.890136719 257.069824219 257.249511719 257.409667969 257.510253906 257.489746094 257.289550781 256.899902344 256.319824219 255.550308228 254.59034729 253.460464478 252.18019104 241.319732666 241.540435791 241.600006104 241.540435791 241.439849854 241.380279541 241.309967041 241.260162354 241.229888916 241.159576416 240.970123291 240.619537354 240.159576416 239.609771729 238.899810791 237.949615479 236.850006104 231.699829102 232.009887695 232.17980957 232.130004883 231.949829102 231.75012207 231.520141602 231.299926758 231.190063477 231.170043945 231.120239258 230.92980957 230.639770508 230.239868164 229.549926758 228.520141602 227.380004883 220.640075684 220.749938965 220.880065918 220.83001709 220.640075684 220.459899902 220.320007324 220.17010498 220.039978027 219.989929199 219.999938965 219.92010498 219.699890137 219.350036621 218.870056152 218.239929199 217.539978027 207.459884644 206.820236206 206.410079956 206.390060425 206.570236206 206.660079956 206.620040894 206.660079956 206.8099823 206.950119019 207.050216675 207.209884644 207.519943237 207.910079956 208.3099823 208.8099823 209.47013855 195.59034729 194.909683228 194.229995728 193.399917603 192.579605103 192.119644165 191.920425415 191.569839478 190.979995728 190.649917603 191.029800415 191.960464478 193.130386353 194.649917603 196.710464478 198.93019104 200.550308228 197.750228882 196.590072632 195.660385132 194.990463257 194.590072632 194.330307007 194.009994507 193.769760132 193.779525757 193.950424194 193.939682007 193.670150757 193.509994507 193.710189819 194.130111694 194.729721069 195.920150757 205.020095825 204.140213013 203.569900513 203.239822388 203.049880981 203.049880981 203.27986145 203.560134888 203.589920044 203.379959106 203.210037231 203.250076294 203.370193481 203.419998169 203.460037231 203.660232544 204.10017395 218.150054932 218.119781494 218.119781494 217.929840088 217.699859619 217.779937744 218.199859619 218.580230713 218.569976807 218.199859619 217.71987915 217.310211182 216.96987915 216.690093994 216.489898682 216.319976807 216.110015869 219.549530029 219.190155029 218.989959717 219.010467529 218.989959717 218.730194092 218.369842529 218.169647217 218.089569092 218.010467529 217.970428467 218.209686279 218.820037842 219.579803467 220.239959717 220.720428467 220.940155029 229.640472412 229.150238037 228.499847412 227.820159912 227.240081787 226.85043335 226.759613037 227.009613037 227.579925537 228.270355225 228.85043335 229.160003662 229.089691162 228.890472412 228.929534912 229.6199646 230.740081787 303.929840088 303.699371338 302.359527588 300.859527588 299.609527588 298.920074463 298.830230713 298.839996338 298.650543213 299.119293213 301.250152588 304.009918213 304.859527588 302.709136963 299.160308838 296.189605713 293.750152588 300.519042969 299.630371094 297.970214844 296.589355469 295.649902344 295.280761719 295.540527344 295.899902344 295.790527344 295.880371094 297.460449219 300.239746094 302.030761719 301.140136719 298.089355469 294.360839844 290.769042969 296.99029541 295.969787598 294.129943848 292.41998291 291.309631348 290.929748535 291.030334473 291.09967041 291.000061035 291.500061035 293.34967041 295.750061035 296.809631348 295.540100098 292.769592285 289.84967041 287.09967041 282.710021973 282.210021973 281.40045166 280.75982666 280.59967041 280.66998291 280.620178223 280.379943848 280.190490723 280.200256348 280.450256348 280.979553223 281.679748535 282.15045166 281.960021973 280.860412598 278.910217285 273.619537354 273.729888916 274.010162354 274.269927979 274.439849854 274.439849854 274.260162354 274.080474854 273.989654541 273.809967041 273.359771729 272.819732666 272.670318604 273.069732666 273.569732666 273.540435791 272.510162354 266.960083008 267.460083008 267.700317383 267.729614258 267.649536133 267.540161133 267.479614258 267.559692383 267.710083008 267.870239258 267.92980957 267.849731445 267.51965332 266.899536133 266.07043457 265.16027832 264.049926758 256.020019531 256.489746094 256.720214844 256.800292969 256.920410156 257.109863281 257.300292969 257.439941406 257.529785156 257.539550781 257.380371094 257.029785156 256.499511719 255.77003479 254.829605103 253.710464478 252.44972229 241.319732666 241.580474854 241.670318604 241.600006104 241.460357666 241.340240479 241.269927979 241.229888916 241.189849854 241.109771729 240.909576416 240.569732666 240.170318604 239.689849854 239.040435791 238.159576416 237.090240479 231.690063477 232.00012207 232.17980957 232.109985352 231.920043945 231.719848633 231.509887695 231.299926758 231.17980957 231.150024414 231.08996582 230.909790039 230.639770508 230.299926758 229.719848633 228.799926758 227.710083008 220.559997559 220.680114746 220.809997559 220.75994873 220.590026855 220.430114746 220.289978027 220.100036621 219.940124512 219.900085449 219.949890137 219.959899902 219.789978027 219.489929199 219.090026855 218.50994873 217.83001709 207.269943237 206.589767456 206.140060425 206.100021362 206.289962769 206.390060425 206.39982605 206.479904175 206.629806519 206.760177612 206.870040894 207.0599823 207.390060425 207.769943237 208.14982605 208.620040894 209.280197144 195.569839478 195.029800415 194.59034729 193.999526978 193.350112915 192.890151978 192.59034729 192.119644165 191.470230103 191.140151978 191.479995728 192.27003479 193.18019104 194.399917603 196.279800415 198.479995728 200.18019104 197.330307007 196.040267944 194.840072632 193.910385132 193.469955444 193.389877319 193.370346069 193.370346069 193.529525757 193.769760132 193.779525757 193.590072632 193.569564819 193.880111694 194.269760132 194.639877319 195.569564819 205.1900177 204.359939575 203.929763794 203.710037231 203.460037231 203.270095825 203.27986145 203.379959106 203.330154419 203.140213013 203.069900513 203.219802856 203.339920044 203.290115356 203.230056763 203.429763794 203.919998169 218.1300354 218.069976807 218.029937744 217.889801025 217.770172119 217.989898682 218.480133057 218.810211182 218.670074463 218.159820557 217.619781494 217.210113525 216.900054932 216.650054932 216.529937744 216.46987915 216.369781494 218.379608154 217.690155029 217.350311279 217.409881592 217.549530029 217.480194092 217.310272217 217.310272217 217.520233154 217.690155029 217.829803467 218.190155029 218.869842529 219.629608154 220.249725342 220.709686279 220.989959717 231.640472412 231.289886475 230.660003662 229.929534912 229.259613037 228.6902771 228.259613037 228.1199646 228.379730225 228.890472412 229.259613037 229.169769287 228.7996521 228.589691162 228.900238037 229.669769287 230.539886475 306.410308838 305.009918213 302.810699463 301.009918213 299.970855713 299.550933838 299.529449463 299.439605713 299.119293213 299.410308838 301.349761963 304.119293213 305.129058838 302.970855713 299.109527588 295.789215088 293.320465088 301.659667969 299.909667969 297.839355469 296.329589844 295.499511719 295.390136719 295.960449219 296.599121094 296.659667969 296.769042969 298.239746094 300.960449219 302.690917969 301.560058594 298.030761719 293.909667969 290.319824219 297.549865723 296.190490723 294.229553223 292.469787598 291.440490723 291.269592285 291.559631348 291.66998291 291.460021973 291.780334473 293.460021973 295.870178223 297.160217285 296.129943848 293.34967041 290.110412598 286.960021973 283.000061035 282.370178223 281.370178223 280.59967041 280.49029541 280.710021973 280.700256348 280.389709473 280.139709473 280.179748535 280.479553223 281.000061035 281.66998291 282.16998291 282.059631348 281.049865723 279.200256348 273.619537354 273.800201416 274.100006104 274.390045166 274.559967041 274.479888916 274.199615479 273.949615479 273.850006104 273.670318604 273.189849854 272.689849854 272.670318604 273.180084229 273.689849854 273.649810791 272.689849854 267.110473633 267.670043945 267.899536133 267.889770508 267.759887695 267.58996582 267.490356445 267.559692383 267.759887695 267.920043945 267.939575195 267.82043457 267.530395508 266.990356445 266.210083008 265.309692383 264.26965332 256.170410156 256.649902344 256.819824219 256.829589844 256.920410156 257.119628906 257.329589844 257.489746094 257.600097656 257.609863281 257.460449219 257.109863281 256.600097656 255.920425415 255.03956604 253.960464478 252.729995728 241.279693604 241.580474854 241.739654541 241.689849854 241.500396729 241.309967041 241.210357666 241.170318604 241.130279541 241.029693604 240.859771729 240.600006104 240.290435791 239.850006104 239.239654541 238.390045166 237.359771729 231.659790039 231.92980957 232.08996582 232.049926758 231.889770508 231.719848633 231.529907227 231.33996582 231.210083008 231.170043945 231.100219727 230.920043945 230.67980957 230.370239258 229.880004883 229.08996582 228.069946289 220.559997559 220.67010498 220.749938965 220.690124512 220.549987793 220.400085449 220.249938965 220.039978027 219.860046387 219.809997559 219.860046387 219.870056152 219.749938965 219.529968262 219.209899902 218.729919434 218.120056152 207.080001831 206.430099487 206.019943237 205.999923706 206.189865112 206.3099823 206.330001831 206.390060425 206.519943237 206.640060425 206.780197144 206.990158081 207.289962769 207.600021362 207.950119019 208.439865112 209.120040894 195.380386353 194.760269165 194.369644165 193.960464478 193.479995728 193.119644165 192.890151978 192.510269165 191.909683228 191.53956604 191.749526978 192.420425415 193.189956665 194.220230103 195.85987854 197.909683228 199.630386353 197.219955444 196.080307007 194.750228882 193.550033569 192.929916382 192.870346069 192.969955444 193.109603882 193.389877319 193.710189819 193.759994507 193.559799194 193.519760132 193.840072632 194.210189819 194.490463257 195.290267944 205.540115356 204.699783325 204.429763794 204.370193481 204.149978638 203.810134888 203.60017395 203.500076294 203.290115356 203.02986145 203.009841919 203.219802856 203.330154419 203.160232544 203.009841919 203.199783325 203.759841919 217.619781494 217.420074463 217.270172119 217.150054932 217.199859619 217.600250244 218.179840088 218.46987915 218.230133057 217.679840088 217.250152588 217.009918213 216.830230713 216.659820557 216.589996338 216.619781494 216.619781494 218.070037842 217.350311279 216.959686279 217.020233154 217.190155029 217.180389404 217.119842529 217.279998779 217.659881592 217.970428467 218.140350342 218.390350342 218.919647217 219.570037842 220.150115967 220.650115967 221.070037842 232.669769287 232.379730225 231.860198975 231.230316162 230.570159912 229.839691162 229.0496521 228.429534912 228.230316162 228.450042725 228.730316162 228.730316162 228.579925537 228.669769287 229.20980835 229.910003662 230.410003662 306.359527588 304.060699463 301.650543213 300.339996338 300.089996338 300.170074463 300.109527588 299.779449463 299.330230713 299.539215088 301.300933838 303.970855713 305.119293213 303.109527588 299.070465088 295.390777588 292.869293213 301.470214844 299.310058594 297.269042969 296.030761719 295.599121094 295.829589844 296.499511719 297.060058594 297.079589844 297.190917969 298.560058594 300.940917969 302.269042969 300.780761719 297.009277344 292.950683594 289.739746094 297.799865723 296.070373535 294.000061035 292.34967041 291.639709473 291.729553223 292.019592285 291.940490723 291.620178223 291.950256348 293.639709473 296.120178223 297.59967041 296.710021973 293.75982666 290.070373535 286.570373535 282.969787598 282.16998291 281.139709473 280.469787598 280.540100098 280.84967041 280.780334473 280.320373535 280.000061035 280.070373535 280.469787598 281.059631348 281.75982666 282.290100098 282.15045166 281.129943848 279.299865723 273.830474854 274.040435791 274.319732666 274.569732666 274.670318604 274.500396729 274.170318604 273.930084229 273.869537354 273.680084229 273.170318604 272.640045166 272.659576416 273.239654541 273.790435791 273.769927979 272.909576416 267.290161133 267.880004883 268.099731445 268.040161133 267.849731445 267.610473633 267.469848633 267.559692383 267.83996582 268.040161133 268.01965332 267.83996582 267.559692383 267.099731445 266.380004883 265.50012207 264.479614258 256.369628906 256.819824219 256.899902344 256.850097656 256.909667969 257.130371094 257.369628906 257.539550781 257.640136719 257.640136719 257.489746094 257.140136719 256.659667969 256.039550781 255.210464478 254.159683228 252.960464478 241.220123291 241.559967041 241.769927979 241.739654541 241.500396729 241.250396729 241.119537354 241.069732666 241.029693604 240.960357666 240.850006104 240.689849854 240.449615479 240.059967041 239.449615479 238.619537354 237.609771729 231.609985352 231.799926758 231.960083008 231.960083008 231.850219727 231.690063477 231.509887695 231.310180664 231.17980957 231.130004883 231.08996582 230.949829102 230.719848633 230.440063477 230.020141602 229.319946289 228.380004883 220.640075684 220.719909668 220.749938965 220.660095215 220.529968262 220.410095215 220.239929199 220.029968262 219.850036621 219.779968262 219.75994873 219.699890137 219.590026855 219.459899902 219.239929199 218.850036621 218.309997559 206.939865112 206.379806519 206.050216675 206.070236206 206.249923706 206.350021362 206.359786987 206.390060425 206.47013855 206.609786987 206.780197144 206.990158081 207.209884644 207.430099487 207.760177612 208.300216675 209.019943237 195.18019104 194.319839478 193.85987854 193.510269165 193.100112915 192.77003479 192.619644165 192.420425415 192.010269165 191.68019104 191.85987854 192.489761353 193.249526978 194.159683228 195.529800415 197.329605103 199.029800415 197.439682007 196.660385132 195.389877319 194.019760132 193.229721069 193.080307007 193.149642944 193.259994507 193.519760132 193.819564819 193.809799194 193.460189819 193.259994507 193.479721069 193.880111694 194.229721069 195.069564819 205.699783325 204.739822388 204.500076294 204.560134888 204.379959106 203.969802856 203.660232544 203.469802856 203.230056763 202.949783325 202.9400177 203.179763794 203.299880981 203.10017395 202.879959106 203.049880981 203.629959106 217.100250244 216.839996338 216.650054932 216.569976807 216.79019165 217.389801025 218.089996338 218.3800354 218.04019165 217.449859619 217.069976807 216.960113525 216.869781494 216.71987915 216.650054932 216.71987915 216.79019165 218.499725342 217.919647217 217.570037842 217.560272217 217.600311279 217.480194092 217.339569092 217.470428467 217.850311279 218.159881592 218.260467529 218.369842529 218.730194092 219.299530029 219.930389404 220.549530029 221.110076904 232.480316162 232.169769287 231.820159912 231.329925537 230.70980835 229.969573975 229.140472412 228.339691162 227.879730225 227.9402771 228.339691162 228.719573975 228.969573975 229.289886475 229.770355225 230.200042725 230.320159912 305.119293213 302.660308838 300.550933838 299.859527588 300.259918213 300.539215088 300.119293213 299.470855713 299.189605713 299.720855713 301.390777588 303.650543213 304.550933838 302.519683838 298.420074463 294.589996338 292.119293213 300.630371094 298.560058594 296.769042969 295.860839844 295.870605469 296.310058594 296.700683594 296.769042969 296.620605469 296.899902344 298.300292969 300.239746094 300.870605469 298.890136719 295.149902344 291.569824219 289.140136719 297.570373535 295.660217285 293.549865723 292.129943848 291.799865723 292.030334473 292.08013916 291.750061035 291.540100098 292.190490723 293.99029541 296.269592285 297.49029541 296.389709473 293.16998291 289.219787598 285.729553223 282.710021973 281.799865723 280.910217285 280.500061035 280.700256348 280.979553223 280.750061035 280.200256348 279.90045166 280.08013916 280.589904785 281.25982666 282.00982666 282.519592285 282.299865723 281.15045166 279.25982666 274.119537354 274.330474854 274.529693604 274.670318604 274.710357666 274.559967041 274.309967041 274.149810791 274.090240479 273.850006104 273.250396729 272.689849854 272.720123291 273.340240479 273.949615479 273.989654541 273.180084229 267.399536133 268.00012207 268.200317383 268.110473633 267.870239258 267.580200195 267.399536133 267.509887695 267.860473633 268.120239258 268.080200195 267.830200195 267.540161133 267.170043945 266.559692383 265.740356445 264.710083008 256.560058594 256.970214844 256.979980469 256.869628906 256.920410156 257.159667969 257.399902344 257.550292969 257.640136719 257.649902344 257.510253906 257.180175781 256.729980469 256.149902344 255.34034729 254.300308228 253.119644165 241.239654541 241.569732666 241.790435791 241.760162354 241.479888916 241.199615479 241.050201416 241.000396729 240.949615479 240.899810791 240.859771729 240.769927979 240.580474854 240.199615479 239.600006104 238.790435791 237.800201416 231.569946289 231.699829102 231.859985352 231.920043945 231.819946289 231.639770508 231.42980957 231.219848633 231.080200195 231.060180664 231.049926758 230.969848633 230.790161133 230.529907227 230.120239258 229.449829102 228.569946289 220.729919434 220.75994873 220.739929199 220.640075684 220.519958496 220.390075684 220.219909668 220.029968262 219.890075684 219.820007324 219.719909668 219.559997559 219.449890137 219.400085449 219.269958496 218.930114746 218.42010498 206.890060425 206.410079956 206.14982605 206.160079956 206.280197144 206.330001831 206.339767456 206.370040894 206.439865112 206.580001831 206.780197144 206.979904175 207.129806519 207.289962769 207.660079956 208.260177612 208.999923706 195.069839478 194.060073853 193.59034729 193.279800415 192.85987854 192.499526978 192.369644165 192.34034729 192.189956665 192.02003479 192.18019104 192.739761353 193.420425415 194.18019104 195.279800415 196.810073853 198.460464478 197.759994507 197.240463257 196.000228882 194.540267944 193.649642944 193.450424194 193.460189819 193.460189819 193.569564819 193.750228882 193.670150757 193.269760132 192.960189819 193.120346069 193.540267944 194.040267944 194.950424194 205.480056763 204.390213013 204.1900177 204.339920044 204.169998169 203.679763794 203.35017395 203.230056763 203.089920044 202.899978638 202.910232544 203.1900177 203.330154419 203.129959106 202.870193481 202.969802856 203.489822388 216.980133057 216.770172119 216.560211182 216.480133057 216.759918213 217.480133057 218.279937744 218.580230713 218.199859619 217.54019165 217.110015869 217.009918213 216.909820557 216.699859619 216.569976807 216.650054932 216.830230713 218.860076904 218.400115967 218.140350342 218.060272217 217.919647217 217.619842529 217.320037842 217.320037842 217.589569092 217.890350342 217.999725342 218.089569092 218.409881592 218.999725342 219.730194092 220.449920654 221.079803467 232.10043335 231.70980835 231.400238037 230.950042725 230.390472412 229.85043335 229.310394287 228.740081787 228.270355225 228.230316162 228.70980835 229.339691162 229.78012085 229.999847412 230.179534912 230.339691162 230.320159912 303.929840088 302.080230713 300.449371338 300.089996338 300.640777588 300.650543213 299.730621338 298.920074463 299.109527588 300.240386963 301.910308838 303.500152588 303.740386963 301.500152588 297.420074463 293.619293213 291.300933838 299.610839844 298.030761719 296.509277344 295.819824219 296.069824219 296.479980469 296.380371094 295.899902344 295.710449219 296.489746094 298.200683594 299.800292969 299.710449219 297.269042969 293.599121094 290.579589844 288.890136719 296.620178223 294.979553223 293.08013916 291.950256348 291.879943848 292.059631348 291.809631348 291.370178223 291.540100098 292.629943848 294.360412598 296.00982666 296.58013916 295.15045166 291.860412598 288.030334473 284.910217285 282.269592285 281.389709473 280.780334473 280.639709473 280.889709473 280.99029541 280.629943848 280.120178223 279.979553223 280.269592285 280.780334473 281.410217285 282.15045166 282.639709473 282.360412598 281.139709473 279.250061035 274.350006104 274.559967041 274.699615479 274.720123291 274.689849854 274.630279541 274.519927979 274.399810791 274.250396729 273.899810791 273.300201416 272.819732666 272.920318604 273.569732666 274.220123291 274.269927979 273.460357666 267.469848633 268.049926758 268.219848633 268.08996582 267.830200195 267.509887695 267.330200195 267.460083008 267.849731445 268.139770508 268.080200195 267.740356445 267.420043945 267.110473633 266.649536133 265.950317383 264.939575195 256.630371094 257.020019531 257.010253906 256.909667969 256.970214844 257.189941406 257.399902344 257.510253906 257.600097656 257.640136719 257.539550781 257.249511719 256.819824219 256.249511719 255.460464478 254.43019104 253.260269165 241.390045166 241.689849854 241.869537354 241.790435791 241.489654541 241.210357666 241.050201416 241.000396729 240.930084229 240.869537354 240.830474854 240.779693604 240.619537354 240.239654541 239.659576416 238.869537354 237.939849854 231.569946289 231.67980957 231.870239258 231.949829102 231.830200195 231.58996582 231.33996582 231.130004883 231.020141602 230.989868164 231.00012207 230.960083008 230.850219727 230.620239258 230.159790039 229.469848633 228.659790039 220.779968262 220.789978027 220.739929199 220.630065918 220.50994873 220.360046387 220.160095215 219.969909668 219.900085449 219.870056152 219.739929199 219.519958496 219.400085449 219.440124512 219.380065918 219.029968262 218.499938965 206.919845581 206.510177612 206.260177612 206.189865112 206.180099487 206.189865112 206.240158081 206.330001831 206.419845581 206.550216675 206.740158081 206.939865112 207.070236206 207.229904175 207.64982605 208.320236206 209.039962769 194.94972229 194.010269165 193.640151978 193.439956665 193.069839478 192.659683228 192.52003479 192.649917603 192.729995728 192.69972229 192.77003479 193.100112915 193.569839478 194.140151978 195.02003479 196.350112915 197.94972229 198.019760132 197.439682007 196.109603882 194.599838257 193.710189819 193.509994507 193.469955444 193.330307007 193.240463257 193.300033569 193.290267944 193.069564819 192.899642944 193.040267944 193.469955444 194.019760132 194.969955444 205.02986145 204.000076294 203.9400177 204.179763794 204.000076294 203.469802856 203.129959106 203.140213013 203.160232544 203.049880981 203.049880981 203.270095825 203.410232544 203.210037231 202.910232544 202.899978638 203.319900513 217.190093994 217.020172119 216.770172119 216.610015869 216.810211182 217.449859619 218.190093994 218.489898682 218.1300354 217.500152588 217.100250244 217.000152588 216.8800354 216.589996338 216.400054932 216.509918213 216.810211182 218.650115967 218.289764404 218.169647217 218.150115967 217.949920654 217.520233154 217.110076904 217.010467529 217.230194092 217.549530029 217.760467529 217.919647217 218.279998779 218.919647217 219.720428467 220.470428467 221.060272217 232.35043335 231.820159912 231.35043335 230.789886475 230.259613037 230.009613037 229.95980835 229.730316162 229.270355225 228.95980835 229.1902771 229.770355225 230.140472412 230.160003662 230.129730225 230.249847412 230.35043335 302.800933838 301.869293213 300.689605713 300.420074463 300.859527588 300.650543213 299.539215088 298.879058838 299.670074463 301.390777588 303.039215088 304.019683838 303.660308838 301.230621338 297.179840088 293.369293213 291.070465088 298.399902344 297.499511719 296.280761719 295.729980469 296.019042969 296.300292969 295.890136719 295.259277344 295.470214844 296.950683594 299.069824219 300.489746094 299.960449219 297.229980469 293.569824219 290.749511719 289.310058594 294.910217285 293.940490723 292.570373535 291.84967041 291.940490723 292.00982666 291.59967041 291.40045166 292.129943848 293.540100098 294.910217285 295.750061035 295.679748535 294.15045166 291.110412598 287.559631348 284.74029541 281.750061035 280.979553223 280.629943848 280.710021973 280.950256348 280.929748535 280.58013916 280.219787598 280.210021973 280.49029541 280.860412598 281.360412598 282.00982666 282.49029541 282.24029541 281.089904785 279.33013916 274.600006104 274.859771729 274.920318604 274.769927979 274.640045166 274.609771729 274.569732666 274.369537354 274.029693604 273.600006104 273.149810791 272.920318604 273.180084229 273.869537354 274.510162354 274.540435791 273.670318604 267.549926758 268.099731445 268.219848633 268.030395508 267.740356445 267.469848633 267.360473633 267.509887695 267.870239258 268.110473633 267.990356445 267.610473633 267.240356445 267.00012207 266.67980957 266.099731445 265.149536133 256.600097656 257.010253906 257.069824219 256.989746094 257.050292969 257.229980469 257.369628906 257.449707031 257.550292969 257.649902344 257.590332031 257.310058594 256.869628906 256.319824219 255.579605103 254.600112915 253.460464478 241.630279541 241.869537354 241.979888916 241.850006104 241.540435791 241.250396729 241.100006104 241.010162354 240.920318604 240.830474854 240.800201416 240.779693604 240.640045166 240.269927979 239.670318604 238.920318604 238.050201416 231.609985352 231.739868164 231.949829102 232.020141602 231.859985352 231.560180664 231.279907227 231.109985352 231.009887695 230.969848633 230.949829102 230.940063477 230.889770508 230.670043945 230.159790039 229.440063477 228.67980957 220.820007324 220.809997559 220.739929199 220.620056152 220.499938965 220.320007324 220.08001709 219.900085449 219.870056152 219.890075684 219.75994873 219.50994873 219.390075684 219.469909668 219.469909668 219.120056152 218.570007324 207.019943237 206.620040894 206.339767456 206.189865112 206.070236206 206.0599823 206.169845581 206.339767456 206.459884644 206.5599823 206.729904175 206.939865112 207.070236206 207.240158081 207.700119019 208.39982605 209.0599823 194.84034729 194.02003479 193.739761353 193.60987854 193.300308228 192.93019104 192.850112915 193.060073853 193.28956604 193.310073853 193.229995728 193.239761353 193.460464478 193.93019104 194.729995728 195.939956665 197.479995728 198.130111694 197.279525757 195.870346069 194.439682007 193.639877319 193.439682007 193.319564819 193.000228882 192.700424194 192.679916382 192.849838257 192.979721069 193.040267944 193.189682007 193.500228882 194.029525757 195.009994507 204.669998169 203.839920044 203.910232544 204.199783325 204.020095825 203.52986145 203.310134888 203.460037231 203.580154419 203.4400177 203.290115356 203.35017395 203.410232544 203.219802856 202.899978638 202.810134888 203.160232544 217.360015869 217.199859619 216.929840088 216.699859619 216.759918213 217.150054932 217.650054932 217.850250244 217.589996338 217.190093994 217.009918213 217.04019165 216.929840088 216.569976807 216.330230713 216.46987915 216.860015869 218.220428467 217.919647217 217.940155029 218.039764404 217.909881592 217.520233154 217.119842529 216.999725342 217.209686279 217.570037842 217.850311279 218.070037842 218.400115967 219.020233154 219.810272217 220.579803467 221.180389404 232.839691162 232.249847412 231.6199646 230.900238037 230.400238037 230.419769287 230.770355225 230.789886475 230.140472412 229.2996521 229.020355225 229.329925537 229.719573975 229.810394287 229.860198975 230.079925537 230.289886475 301.300933838 301.039215088 300.230621338 300.070465088 300.539215088 300.519683838 299.839996338 299.740386963 301.029449463 302.970855713 304.490386963 305.179840088 304.679840088 302.320465088 298.320465088 294.320465088 291.730621338 296.870605469 296.579589844 295.819824219 295.489746094 295.780761719 295.989746094 295.710449219 295.560058594 296.460449219 298.450683594 300.649902344 301.890136719 301.249511719 298.610839844 294.979980469 291.929199219 290.149902344 292.700256348 292.450256348 291.839904785 291.65045166 291.91998291 291.99029541 291.780334473 292.09967041 293.370178223 294.879943848 295.799865723 296.049865723 295.75982666 294.410217285 291.65045166 288.16998291 285.190490723 281.370178223 280.65045166 280.389709473 280.570373535 280.839904785 280.860412598 280.629943848 280.440490723 280.469787598 280.629943848 280.860412598 281.280334473 281.90045166 282.33013916 282.089904785 281.09967041 279.50982666 275.050201416 275.350006104 275.300201416 274.939849854 274.609771729 274.489654541 274.390045166 274.059967041 273.559967041 273.149810791 272.930084229 272.989654541 273.399810791 274.119537354 274.729888916 274.760162354 273.850006104 267.689575195 268.189575195 268.240356445 267.979614258 267.66027832 267.479614258 267.469848633 267.620239258 267.870239258 267.979614258 267.790161133 267.420043945 267.120239258 266.939575195 266.719848633 266.240356445 265.32043457 256.579589844 257.060058594 257.189941406 257.149902344 257.149902344 257.229980469 257.289550781 257.369628906 257.520019531 257.670410156 257.619628906 257.310058594 256.859863281 256.350097656 255.689956665 254.810073853 253.710464478 241.830474854 242.019927979 242.050201416 241.890045166 241.590240479 241.309967041 241.130279541 241.019927979 240.899810791 240.809967041 240.809967041 240.840240479 240.729888916 240.350006104 239.729888916 238.970123291 238.140045166 231.699829102 231.83996582 232.040161133 232.069946289 231.870239258 231.540161133 231.270141602 231.120239258 231.020141602 230.92980957 230.870239258 230.880004883 230.880004883 230.670043945 230.130004883 229.370239258 228.67980957 220.870056152 220.83001709 220.719909668 220.590026855 220.449890137 220.269958496 220.039978027 219.860046387 219.860046387 219.900085449 219.769958496 219.479919434 219.33001709 219.400085449 219.42010498 219.120056152 218.620056152 207.080001831 206.700119019 206.430099487 206.229904175 206.0599823 206.019943237 206.169845581 206.379806519 206.519943237 206.600021362 206.760177612 206.97013855 207.109786987 207.280197144 207.72013855 208.390060425 209.010177612 194.960464478 194.19972229 193.810073853 193.53956604 193.249526978 192.999526978 192.970230103 193.210464478 193.44972229 193.470230103 193.279800415 193.10987854 193.229995728 193.720230103 194.550308228 195.68019104 197.100112915 197.979721069 196.870346069 195.529525757 194.370346069 193.740463257 193.519760132 193.269760132 192.769760132 192.309799194 192.229721069 192.559799194 192.979721069 193.210189819 193.259994507 193.389877319 193.920150757 195.029525757 204.699783325 204.020095825 204.020095825 204.149978638 203.919998169 203.609939575 203.640213013 203.960037231 204.089920044 203.830154419 203.480056763 203.35017395 203.339920044 203.160232544 202.870193481 202.750076294 203.080154419 217.210113525 217.04019165 216.839996338 216.730133057 216.759918213 216.920074463 217.1300354 217.199859619 217.049957275 216.920074463 217.009918213 217.179840088 217.089996338 216.699859619 216.440093994 216.589996338 216.989898682 218.220428467 217.829803467 217.779998779 217.860076904 217.799530029 217.549530029 217.270233154 217.169647217 217.360076904 217.730194092 218.049530029 218.239959717 218.470428467 218.959686279 219.760467529 220.650115967 221.400115967 232.6199646 232.270355225 231.820159912 231.219573975 230.810394287 230.969573975 231.53012085 231.640472412 230.740081787 229.339691162 228.490081787 228.610198975 229.20980835 229.6902771 229.929534912 230.079925537 230.110198975 299.670074463 299.640777588 299.170074463 299.240386963 299.869293213 300.289215088 300.420074463 301.070465088 302.580230713 304.240386963 305.400543213 306.009918213 305.730621338 303.720855713 299.920074463 295.789215088 292.830230713 295.200683594 295.319824219 295.149902344 295.229980469 295.589355469 295.829589844 295.960449219 296.569824219 298.019042969 299.960449219 301.620605469 302.460449219 301.950683594 299.780761719 296.380371094 293.050292969 290.720214844 290.540100098 290.710021973 290.780334473 291.16998291 291.66998291 291.889709473 292.049865723 292.910217285 294.500061035 295.940490723 296.549865723 296.610412598 296.389709473 295.269592285 292.610412598 288.969787598 285.620178223 281.40045166 280.620178223 280.229553223 280.339904785 280.65045166 280.820373535 280.75982666 280.660217285 280.639709473 280.700256348 280.969787598 281.549865723 282.229553223 282.570373535 282.24029541 281.280334473 279.809631348 275.720123291 275.979888916 275.800201416 275.189849854 274.619537354 274.369537354 274.220123291 273.869537354 273.390045166 273.080474854 273.019927979 273.170318604 273.569732666 274.239654541 274.869537354 274.939849854 274.019927979 267.870239258 268.32043457 268.299926758 267.960083008 267.620239258 267.490356445 267.540161133 267.66027832 267.719848633 267.670043945 267.469848633 267.210083008 267.049926758 266.969848633 266.790161133 266.33996582 265.450317383 256.749511719 257.289550781 257.449707031 257.359863281 257.249511719 257.199707031 257.189941406 257.289550781 257.499511719 257.680175781 257.630371094 257.289550781 256.819824219 256.359863281 255.779800415 254.979995728 253.920425415 241.949615479 242.080474854 242.069732666 241.920318604 241.640045166 241.369537354 241.170318604 241.019927979 240.890045166 240.819732666 240.880279541 240.949615479 240.880279541 240.489654541 239.809967041 239.010162354 238.210357666 231.799926758 231.940063477 232.08996582 232.080200195 231.859985352 231.549926758 231.299926758 231.150024414 231.029907227 230.920043945 230.830200195 230.83996582 230.870239258 230.670043945 230.08996582 229.319946289 228.699829102 220.92010498 220.840026855 220.67010498 220.479919434 220.33001709 220.17010498 219.979919434 219.850036621 219.860046387 219.910095215 219.779968262 219.469909668 219.25994873 219.269958496 219.289978027 219.059997559 218.650085449 207.039962769 206.680099487 206.47013855 206.320236206 206.129806519 206.050216675 206.169845581 206.370040894 206.499923706 206.570236206 206.729904175 206.950119019 207.100021362 207.260177612 207.669845581 208.330001831 208.939865112 195.43019104 194.630386353 193.960464478 193.460464478 193.119644165 192.970230103 193.010269165 193.19972229 193.369644165 193.369644165 193.189956665 193.050308228 193.19972229 193.720230103 194.529800415 195.560073853 196.829605103 197.590072632 196.319564819 195.170150757 194.319564819 193.849838257 193.569564819 193.210189819 192.660385132 192.179916382 192.099838257 192.500228882 193.040267944 193.279525757 193.179916382 193.170150757 193.719955444 194.990463257 205.160232544 204.520095825 204.219802856 203.969802856 203.640213013 203.489822388 203.770095825 204.230056763 204.330154419 204.000076294 203.580154419 203.399978638 203.339920044 203.179763794 202.899978638 202.770095825 203.060134888 216.79019165 216.569976807 216.500152588 216.600250244 216.759918213 216.889801025 216.989898682 217.009918213 216.949859619 216.940093994 217.110015869 217.259918213 217.110015869 216.750152588 216.560211182 216.750152588 217.100250244 218.909881592 218.260467529 217.820037842 217.610076904 217.520233154 217.400115967 217.230194092 217.140350342 217.270233154 217.619842529 217.959686279 218.129608154 218.279998779 218.699920654 219.529998779 220.610076904 221.589569092 231.240081787 231.520355225 231.730316162 231.60043335 231.3699646 231.53012085 232.070159912 232.240081787 231.320159912 229.70980835 228.589691162 228.660003662 229.480316162 230.249847412 230.509613037 230.2996521 229.919769287 298.679840088 298.650543213 298.519683838 298.800933838 299.420074463 300.039215088 300.769683838 301.970855713 303.439605713 304.560699463 305.160308838 305.560699463 305.429840088 303.839996338 300.550933838 296.750152588 293.789215088 293.909667969 294.179199219 294.589355469 295.130371094 295.569824219 295.819824219 296.310058594 297.419433594 298.960449219 300.290527344 301.089355469 301.409667969 301.019042969 299.419433594 296.540527344 293.259277344 290.620605469 289.000061035 289.200256348 289.690490723 290.460021973 291.16998291 291.540100098 291.950256348 292.99029541 294.519592285 295.769592285 296.320373535 296.460021973 296.299865723 295.210021973 292.59967041 289.049865723 285.729553223 281.84967041 280.940490723 280.339904785 280.280334473 280.549865723 280.780334473 280.870178223 280.83013916 280.74029541 280.769592285 281.179748535 282.040100098 282.870178223 283.120178223 282.59967041 281.58013916 280.15045166 276.340240479 276.540435791 276.239654541 275.470123291 274.750396729 274.409576416 274.309967041 274.119537354 273.830474854 273.680084229 273.619537354 273.609771729 273.769927979 274.290435791 274.930084229 275.059967041 274.170318604 268.059692383 268.42980957 268.370239258 268.00012207 267.620239258 267.479614258 267.509887695 267.530395508 267.450317383 267.280395508 267.110473633 267.01965332 267.00012207 267.00012207 266.830200195 266.399536133 265.51965332 257.119628906 257.640136719 257.749511719 257.560058594 257.319824219 257.140136719 257.090332031 257.189941406 257.430175781 257.640136719 257.569824219 257.229980469 256.800292969 256.359863281 255.829605103 255.079605103 254.069839478 242.010162354 242.119537354 242.090240479 241.949615479 241.710357666 241.430084229 241.189849854 241.040435791 240.930084229 240.880279541 240.930084229 241.019927979 240.970123291 240.590240479 239.880279541 239.059967041 238.290435791 231.920043945 232.049926758 232.120239258 232.049926758 231.83996582 231.560180664 231.330200195 231.17980957 231.069946289 230.969848633 230.889770508 230.880004883 230.889770508 230.670043945 230.08996582 229.330200195 228.730102539 220.940124512 220.789978027 220.58001709 220.340026855 220.150085449 219.999938965 219.860046387 219.769958496 219.789978027 219.850036621 219.779968262 219.539978027 219.320007324 219.25994873 219.239929199 219.039978027 218.699890137 206.959884644 206.600021362 206.47013855 206.390060425 206.22013855 206.089767456 206.140060425 206.3099823 206.419845581 206.47013855 206.609786987 206.820236206 206.990158081 207.189865112 207.589767456 208.249923706 208.879806519 195.880386353 194.989761353 194.140151978 193.489761353 193.189956665 193.18019104 193.260269165 193.34034729 193.380386353 193.380386353 193.300308228 193.260269165 193.420425415 193.890151978 194.600112915 195.489761353 196.670425415 197.340072632 195.990463257 194.920150757 194.210189819 193.759994507 193.399642944 193.019760132 192.599838257 192.269760132 192.259994507 192.630111694 193.120346069 193.309799194 193.139877319 193.069564819 193.630111694 194.920150757 205.719802856 205.080154419 204.520095825 203.9400177 203.469802856 203.379959106 203.719802856 204.129959106 204.219802856 203.949783325 203.660232544 203.580154419 203.549880981 203.359939575 203.009841919 202.77986145 202.960037231 216.429840088 216.080230713 215.96987915 216.139801025 216.420074463 216.699859619 216.940093994 217.119781494 217.159820557 217.119781494 217.1300354 217.100250244 216.889801025 216.610015869 216.580230713 216.869781494 217.230133057 220.029998779 219.140350342 218.270233154 217.709686279 217.499725342 217.400115967 217.239959717 217.060272217 217.070037842 217.320037842 217.650115967 217.879608154 218.060272217 218.480194092 219.350311279 220.510467529 221.579803467 229.270355225 230.160003662 231.110198975 231.499847412 231.379730225 231.410003662 231.85043335 232.110198975 231.499847412 230.28012085 229.4402771 229.570159912 230.360198975 231.03012085 231.089691162 230.60043335 230.009613037 298.570465088 298.550933838 298.750152588 299.129058838 299.470855713 299.839996338 300.609527588 301.910308838 303.230621338 303.959136963 304.129058838 304.099761963 303.720855713 302.379058838 299.920074463 297.050933838 294.570465088 293.399902344 293.610839844 294.300292969 295.110839844 295.589355469 295.819824219 296.390136719 297.530761719 298.739746094 299.479980469 299.679199219 299.610839844 299.169433594 297.899902344 295.620605469 292.839355469 290.300292969 288.40045166 288.429748535 288.960021973 289.790100098 290.540100098 290.99029541 291.429748535 292.219787598 293.320373535 294.33013916 294.99029541 295.269592285 294.979553223 293.74029541 291.450256348 288.660217285 286.129943848 282.269592285 281.360412598 280.690490723 280.49029541 280.620178223 280.809631348 280.950256348 280.99029541 280.870178223 280.820373535 281.219787598 282.16998291 283.070373535 283.269592285 282.690490723 281.66998291 280.339904785 276.649810791 276.779693604 276.489654541 275.750396729 275.010162354 274.630279541 274.580474854 274.580474854 274.569732666 274.580474854 274.470123291 274.210357666 274.080474854 274.420318604 275.000396729 275.119537354 274.210357666 268.210083008 268.51965332 268.460083008 268.08996582 267.66027832 267.42980957 267.380004883 267.33996582 267.210083008 267.040161133 266.92980957 266.939575195 266.979614258 266.979614258 266.82043457 266.41027832 265.57043457 257.510253906 257.970214844 257.979980469 257.699707031 257.369628906 257.100097656 256.999511719 257.069824219 257.289550781 257.460449219 257.420410156 257.149902344 256.789550781 256.369628906 255.850112915 255.149917603 254.18019104 242.090240479 242.189849854 242.159576416 242.019927979 241.769927979 241.470123291 241.199615479 241.059967041 241.000396729 240.960357666 240.960357666 241.010162354 240.960357666 240.609771729 239.939849854 239.149810791 238.420318604 232.060180664 232.170043945 232.159790039 232.020141602 231.810180664 231.549926758 231.319946289 231.17980957 231.130004883 231.08996582 231.029907227 230.980102539 230.909790039 230.690063477 230.150024414 229.42980957 228.83996582 220.880065918 220.729919434 220.519958496 220.279968262 220.039978027 219.840026855 219.690124512 219.600036621 219.590026855 219.660095215 219.690124512 219.610046387 219.479919434 219.42010498 219.360046387 219.140075684 218.799987793 206.910079956 206.550216675 206.450119019 206.39982605 206.249923706 206.109786987 206.140060425 206.300216675 206.410079956 206.419845581 206.479904175 206.64982605 206.839767456 207.080001831 207.519943237 208.160079956 208.800216675 195.760269165 194.880386353 194.069839478 193.529800415 193.409683228 193.560073853 193.670425415 193.619644165 193.53956604 193.510269165 193.499526978 193.52003479 193.659683228 194.010269165 194.59034729 195.409683228 196.579605103 197.639877319 196.250228882 195.099838257 194.300033569 193.719955444 193.259994507 192.920150757 192.710189819 192.580307007 192.590072632 192.809799194 193.149642944 193.309799194 193.200424194 193.149642944 193.620346069 194.729721069 205.890213013 205.299880981 204.730056763 204.120193481 203.609939575 203.429763794 203.589920044 203.819900513 203.85017395 203.759841919 203.739822388 203.839920044 203.830154419 203.569900513 203.089920044 202.6900177 202.710037231 216.520172119 216.020172119 215.670074463 215.610015869 215.819976807 216.239898682 216.759918213 217.179840088 217.310211182 217.21987915 217.049957275 216.869781494 216.6300354 216.460113525 216.580230713 217.009918213 217.460113525 220.909881592 220.089569092 219.180389404 218.560272217 218.299530029 218.119842529 217.820037842 217.480194092 217.289764404 217.329803467 217.520233154 217.760467529 218.070037842 218.579803467 219.390350342 220.409881592 221.350311279 227.820159912 228.740081787 229.7996521 230.240081787 230.070159912 229.950042725 230.249847412 230.60043335 230.520355225 230.1902771 230.129730225 230.499847412 230.990081787 231.240081787 231.140472412 230.7996521 230.539886475 298.820465088 298.859527588 299.250152588 299.640777588 299.699371338 299.660308838 300.039215088 301.039215088 302.199371338 302.980621338 303.160308838 302.769683838 301.869293213 300.560699463 299.029449463 297.349761963 295.459136963 293.610839844 293.640136719 294.200683594 294.919433594 295.370605469 295.649902344 296.159667969 296.940917969 297.720214844 298.259277344 298.519042969 298.399902344 297.720214844 296.429199219 294.720214844 292.759277344 290.620605469 288.59967041 288.49029541 288.74029541 289.309631348 289.969787598 290.50982666 290.879943848 291.219787598 291.750061035 292.559631348 293.410217285 293.769592285 293.25982666 291.929748535 290.309631348 288.820373535 287.41998291 282.229553223 281.519592285 281.030334473 280.809631348 280.74029541 280.799865723 281.00982666 281.210021973 281.139709473 280.889709473 280.969787598 281.639709473 282.440490723 282.66998291 282.190490723 281.320373535 280.179748535 276.580474854 276.710357666 276.550201416 276.010162354 275.359771729 274.939849854 274.819732666 274.890045166 275.059967041 275.229888916 275.170318604 274.830474854 274.559967041 274.720123291 275.140045166 275.109771729 274.100006104 268.299926758 268.559692383 268.51965332 268.170043945 267.719848633 267.380004883 267.229614258 267.17980957 267.110473633 267.01965332 266.979614258 267.009887695 267.030395508 266.969848633 266.799926758 266.42980957 265.620239258 257.749511719 258.109863281 258.039550781 257.720214844 257.359863281 257.090332031 256.970214844 256.989746094 257.119628906 257.220214844 257.199707031 257.029785156 256.739746094 256.350097656 255.829605103 255.189956665 254.329605103 242.199615479 242.300201416 242.250396729 242.100006104 241.819732666 241.439849854 241.140045166 241.029693604 241.040435791 241.019927979 240.970123291 240.949615479 240.890045166 240.600006104 240.010162354 239.300201416 238.619537354 232.219848633 232.310180664 232.230102539 232.040161133 231.810180664 231.549926758 231.299926758 231.170043945 231.190063477 231.230102539 231.17980957 231.040161133 230.909790039 230.710083008 230.259887695 229.609985352 229.00012207 220.820007324 220.67010498 220.529968262 220.320007324 220.039978027 219.779968262 219.600036621 219.459899902 219.380065918 219.410095215 219.529968262 219.610046387 219.610046387 219.58001709 219.50994873 219.269958496 218.890075684 206.97013855 206.570236206 206.39982605 206.330001831 206.200119019 206.100021362 206.189865112 206.39982605 206.519943237 206.479904175 206.450119019 206.550216675 206.749923706 207.010177612 207.450119019 208.050216675 208.669845581 195.079605103 194.310073853 193.760269165 193.529800415 193.649917603 193.899917603 193.999526978 193.869644165 193.68019104 193.600112915 193.59034729 193.60987854 193.69972229 193.960464478 194.479995728 195.300308228 196.52003479 198.290267944 196.929916382 195.679916382 194.719955444 194.000228882 193.450424194 193.139877319 193.059799194 193.029525757 192.929916382 192.889877319 193.000228882 193.130111694 193.160385132 193.189682007 193.540267944 194.380111694 205.449783325 204.960037231 204.589920044 204.1900177 203.790115356 203.52986145 203.4400177 203.410232544 203.390213013 203.469802856 203.710037231 203.9400177 203.949783325 203.640213013 203.080154419 202.569900513 202.4400177 217.159820557 216.639801025 216.049957275 215.639801025 215.600250244 215.980133057 216.610015869 217.1300354 217.310211182 217.21987915 217.049957275 216.869781494 216.650054932 216.480133057 216.6300354 217.119781494 217.730133057 220.909881592 220.459686279 219.999725342 219.739959717 219.589569092 219.310272217 218.839569092 218.360076904 217.989959717 217.770233154 217.680389404 217.810272217 218.220428467 218.839569092 219.570037842 220.339569092 221.060272217 227.759613037 228.03012085 228.320159912 228.179534912 227.789886475 227.629730225 227.8699646 228.20980835 228.560394287 229.160003662 230.070159912 230.810394287 230.95980835 230.78012085 230.749847412 230.980316162 231.270355225 298.900543213 298.929840088 299.310699463 299.699371338 299.750152588 299.550933838 299.470855713 299.849761963 300.750152588 301.849761963 302.459136963 302.019683838 300.709136963 299.400543213 298.629058838 297.939605713 296.369293213 294.079589844 293.929199219 294.079589844 294.419433594 294.819824219 295.269042969 295.690917969 295.989746094 296.329589844 296.999511719 297.749511719 297.800292969 296.819824219 295.419433594 294.349121094 293.429199219 291.829589844 289.09967041 288.960021973 288.790100098 288.870178223 289.389709473 290.110412598 290.540100098 290.549865723 290.629943848 291.280334473 292.229553223 292.610412598 291.940490723 290.750061035 289.979553223 289.74029541 289.190490723 281.790100098 281.389709473 281.160217285 280.960021973 280.750061035 280.710021973 281.019592285 281.460021973 281.540100098 281.129943848 280.769592285 280.979553223 281.549865723 281.820373535 281.469787598 280.729553223 279.700256348 276.340240479 276.470123291 276.489654541 276.210357666 275.699615479 275.239654541 274.979888916 274.960357666 275.140045166 275.430084229 275.559967041 275.380279541 275.170318604 275.210357666 275.369537354 275.100006104 273.930084229 268.330200195 268.530395508 268.51965332 268.25012207 267.809692383 267.399536133 267.139770508 267.059692383 267.049926758 267.07043457 267.120239258 267.17980957 267.149536133 267.059692383 266.880004883 266.51965332 265.689575195 257.789550781 258.079589844 257.960449219 257.640136719 257.319824219 257.100097656 256.979980469 256.949707031 256.989746094 257.020019531 256.999511719 256.899902344 256.670410156 256.289550781 255.810073853 255.249526978 254.470230103 242.290435791 242.390045166 242.319732666 242.140045166 241.809967041 241.369537354 241.029693604 240.960357666 241.040435791 241.069732666 240.989654541 240.930084229 240.859771729 240.609771729 240.090240479 239.460357666 238.830474854 232.389770508 232.480102539 232.350219727 232.109985352 231.870239258 231.580200195 231.299926758 231.170043945 231.230102539 231.330200195 231.270141602 231.069946289 230.889770508 230.730102539 230.380004883 229.779907227 229.159790039 220.769958496 220.650085449 220.559997559 220.380065918 220.090026855 219.809997559 219.610046387 219.440124512 219.289978027 219.269958496 219.380065918 219.529968262 219.610046387 219.640075684 219.600036621 219.360046387 218.930114746 207.050216675 206.600021362 206.320236206 206.180099487 206.0599823 206.030197144 206.200119019 206.47013855 206.600021362 206.550216675 206.47013855 206.550216675 206.740158081 206.999923706 207.379806519 207.89982605 208.510177612 194.479995728 193.850112915 193.619644165 193.670425415 193.909683228 194.18019104 194.239761353 194.079605103 193.85987854 193.710464478 193.619644165 193.569839478 193.630386353 193.880386353 194.390151978 195.210464478 196.420425415 198.620346069 197.340072632 196.080307007 195.090072632 194.340072632 193.769760132 193.450424194 193.380111694 193.359603882 193.149642944 192.859603882 192.710189819 192.800033569 192.939682007 193.050033569 193.290267944 193.960189819 204.879959106 204.399978638 204.219802856 204.060134888 203.790115356 203.509841919 203.27986145 203.140213013 203.10017395 203.250076294 203.549880981 203.819900513 203.839920044 203.569900513 203.080154419 202.580154419 202.410232544 217.850250244 217.489898682 216.889801025 216.299957275 216.029937744 216.21987915 216.690093994 217.089996338 217.199859619 217.159820557 217.119781494 217.049957275 216.830230713 216.569976807 216.600250244 217.069976807 217.79019165 219.949920654 219.860076904 219.980194092 220.230194092 220.279998779 219.980194092 219.489959717 219.060272217 218.709686279 218.299530029 217.909881592 217.869842529 218.299530029 219.010467529 219.690155029 220.329803467 220.989959717 229.060394287 228.53012085 227.70980835 226.749847412 226.089691162 226.039886475 226.28012085 226.45980835 226.829925537 227.919769287 229.520355225 230.570159912 230.560394287 230.179534912 230.379730225 231.129730225 231.669769287 298.750152588 298.750152588 298.949371338 299.310699463 299.599761963 299.570465088 299.160308838 298.800933838 299.179840088 300.359527588 301.390777588 301.140777588 299.769683838 298.599761963 298.379058838 298.220855713 296.769683838 294.280761719 294.120605469 293.860839844 293.769042969 294.120605469 294.780761719 295.130371094 294.909667969 294.749511719 295.440917969 296.540527344 296.720214844 295.540527344 294.239746094 294.009277344 294.239746094 293.300292969 289.309631348 289.24029541 288.719787598 288.370178223 288.74029541 289.639709473 290.219787598 290.120178223 289.91998291 290.34967041 291.200256348 291.49029541 290.820373535 289.979553223 289.950256348 290.469787598 290.229553223 281.49029541 281.269592285 281.129943848 280.90045166 280.59967041 280.540100098 280.940490723 281.589904785 281.889709473 281.549865723 281.019592285 280.940490723 281.339904785 281.610412598 281.25982666 280.389709473 279.200256348 276.189849854 276.290435791 276.399810791 276.309967041 275.949615479 275.500396729 275.140045166 274.970123291 275.050201416 275.380279541 275.739654541 275.869537354 275.800201416 275.729888916 275.640045166 275.119537354 273.830474854 268.290161133 268.450317383 268.479614258 268.32043457 267.969848633 267.530395508 267.17980957 266.990356445 266.960083008 267.040161133 267.189575195 267.309692383 267.32043457 267.219848633 267.01965332 266.620239258 265.710083008 257.760253906 257.979980469 257.840332031 257.550292969 257.260253906 257.060058594 256.979980469 256.949707031 256.939941406 256.909667969 256.869628906 256.800292969 256.590332031 256.220214844 255.749526978 255.260269165 254.53956604 242.319732666 242.420318604 242.359771729 242.170318604 241.800201416 241.309967041 240.949615479 240.890045166 241.019927979 241.090240479 241.029693604 240.970123291 240.890045166 240.649810791 240.140045166 239.529693604 238.939849854 232.560180664 232.659790039 232.509887695 232.25012207 231.960083008 231.650024414 231.350219727 231.190063477 231.259887695 231.380004883 231.330200195 231.100219727 230.900024414 230.759887695 230.460083008 229.880004883 229.239868164 220.769958496 220.680114746 220.590026855 220.390075684 220.08001709 219.820007324 219.660095215 219.519958496 219.350036621 219.279968262 219.360046387 219.479919434 219.559997559 219.610046387 219.630065918 219.430114746 218.999938965 207.070236206 206.580001831 206.229904175 206.010177612 205.890060425 205.930099487 206.140060425 206.39982605 206.519943237 206.47013855 206.450119019 206.550216675 206.749923706 206.999923706 207.330001831 207.800216675 208.39982605 194.439956665 193.920425415 193.84034729 194.010269165 194.249526978 194.439956665 194.479995728 194.380386353 194.220230103 194.050308228 193.850112915 193.68019104 193.659683228 193.85987854 194.329605103 195.079605103 196.19972229 198.219955444 197.019760132 195.870346069 195.000228882 194.359603882 193.830307007 193.479721069 193.389877319 193.399642944 193.210189819 192.830307007 192.569564819 192.590072632 192.750228882 192.880111694 193.090072632 193.740463257 204.810134888 204.310134888 204.140213013 204.020095825 203.790115356 203.520095825 203.299880981 203.169998169 203.129959106 203.230056763 203.449783325 203.640213013 203.669998169 203.500076294 203.179763794 202.810134888 202.660232544 217.960113525 217.819976807 217.389801025 216.8800354 216.549957275 216.569976807 216.799957275 216.96987915 216.980133057 216.96987915 217.060211182 217.069976807 216.860015869 216.509918213 216.420074463 216.830230713 217.560211182 218.829803467 218.810272217 219.209686279 219.749725342 219.989959717 219.799530029 219.449920654 219.260467529 219.110076904 218.709686279 218.190155029 217.999725342 218.369842529 219.049530029 219.730194092 220.409881592 221.239959717 230.700042725 229.789886475 228.270355225 226.740081787 225.9402771 225.969573975 226.200042725 226.110198975 226.160003662 227.150238037 228.860198975 230.039886475 230.089691162 229.829925537 230.240081787 231.1199646 231.3699646 298.580230713 298.609527588 298.619293213 298.879058838 299.400543213 299.660308838 299.140777588 298.199371338 297.920074463 298.740386963 299.699371338 299.570465088 298.379058838 297.480621338 297.580230713 297.699371338 296.410308838 293.950683594 293.979980469 293.599121094 293.269042969 293.560058594 294.300292969 294.569824219 293.940917969 293.310058594 293.700683594 294.659667969 294.679199219 293.450683594 292.479980469 293.079589844 294.319824219 294.089355469 288.940490723 289.030334473 288.460021973 287.889709473 288.120178223 289.00982666 289.66998291 289.589904785 289.269592285 289.40045166 289.870178223 289.940490723 289.370178223 288.929748535 289.370178223 290.139709473 289.879943848 281.719787598 281.49029541 281.179748535 280.799865723 280.49029541 280.469787598 280.84967041 281.530334473 282.040100098 282.00982666 281.679748535 281.620178223 281.979553223 282.210021973 281.729553223 280.559631348 279.00982666 276.250396729 276.290435791 276.369537354 276.340240479 276.090240479 275.720123291 275.350006104 275.069732666 275.029693604 275.319732666 275.840240479 276.229888916 276.300201416 276.149810791 275.859771729 275.210357666 273.899810791 268.26965332 268.370239258 268.420043945 268.380004883 268.170043945 267.76965332 267.330200195 267.009887695 266.91027832 267.00012207 267.210083008 267.399536133 267.450317383 267.349731445 267.110473633 266.66027832 265.670043945 257.739746094 257.920410156 257.770019531 257.460449219 257.170410156 256.979980469 256.939941406 256.939941406 256.909667969 256.850097656 256.810058594 256.749511719 256.560058594 256.189941406 255.720230103 255.210464478 254.499526978 242.319732666 242.430084229 242.380279541 242.189849854 241.809967041 241.330474854 240.960357666 240.880279541 240.989654541 241.080474854 241.059967041 241.019927979 240.949615479 240.670318604 240.140045166 239.519927979 238.949615479 232.719848633 232.830200195 232.670043945 232.370239258 232.049926758 231.710083008 231.400024414 231.230102539 231.279907227 231.409790039 231.380004883 231.159790039 230.960083008 230.819946289 230.509887695 229.92980957 229.270141602 220.820007324 220.749938965 220.610046387 220.33001709 219.999938965 219.75994873 219.67010498 219.58001709 219.440124512 219.360046387 219.410095215 219.489929199 219.529968262 219.58001709 219.67010498 219.570007324 219.160095215 207.010177612 206.530197144 206.14982605 205.910079956 205.8099823 205.859786987 206.039962769 206.22013855 206.269943237 206.249923706 206.3099823 206.490158081 206.729904175 206.990158081 207.3099823 207.780197144 208.379806519 194.819839478 194.279800415 194.159683228 194.300308228 194.479995728 194.619644165 194.689956665 194.710464478 194.69972229 194.560073853 194.279800415 193.94972229 193.779800415 193.880386353 194.260269165 194.880386353 195.920425415 197.529525757 196.399642944 195.399642944 194.670150757 194.139877319 193.660385132 193.279525757 193.189682007 193.290267944 193.250228882 193.000228882 192.759994507 192.750228882 192.859603882 192.920150757 193.069564819 193.779525757 205.330154419 204.799880981 204.540115356 204.290115356 203.969802856 203.679763794 203.520095825 203.429763794 203.379959106 203.390213013 203.480056763 203.569900513 203.580154419 203.489822388 203.339920044 203.120193481 203.02986145 217.420074463 217.350250244 217.119781494 216.770172119 216.529937744 216.529937744 216.670074463 216.750152588 216.71987915 216.730133057 216.819976807 216.839996338 216.659820557 216.369781494 216.299957275 216.639801025 217.29019165 218.549530029 218.360076904 218.659881592 219.190155029 219.510467529 219.419647217 219.239959717 219.230194092 219.289764404 219.060272217 218.610076904 218.379608154 218.610076904 219.140350342 219.760467529 220.560272217 221.669647217 231.259613037 230.539886475 229.03012085 227.429534912 226.539886475 226.5496521 226.740081787 226.45980835 226.140472412 226.6902771 228.039886475 229.169769287 229.469573975 229.560394287 230.140472412 230.810394287 230.539886475 298.429840088 298.619293213 298.539215088 298.640777588 299.179840088 299.619293213 299.240386963 298.209136963 297.550933838 297.769683838 298.220855713 297.910308838 296.890777588 296.189605713 296.379058838 296.629058838 295.769683838 293.210449219 293.540527344 293.319824219 292.979980469 293.190917969 293.870605469 294.110839844 293.399902344 292.550292969 292.519042969 292.950683594 292.620605469 291.390136719 290.690917969 291.710449219 293.440917969 293.800292969 288.15045166 288.469787598 288.129943848 287.639709473 287.74029541 288.41998291 288.99029541 289.000061035 288.710021973 288.589904785 288.589904785 288.320373535 287.83013916 287.719787598 288.320373535 289.000061035 288.700256348 282.33013916 282.000061035 281.410217285 280.839904785 280.58013916 280.610412598 280.870178223 281.379943848 281.960021973 282.269592285 282.280334473 282.360412598 282.729553223 282.950256348 282.41998291 281.049865723 279.250061035 276.470123291 276.460357666 276.449615479 276.390045166 276.189849854 275.899810791 275.550201416 275.199615479 275.050201416 275.309967041 275.899810791 276.449615479 276.619537354 276.430084229 276.040435791 275.369537354 274.130279541 268.290161133 268.370239258 268.41027832 268.42980957 268.290161133 267.92980957 267.469848633 267.099731445 266.979614258 267.080200195 267.290161133 267.460083008 267.490356445 267.360473633 267.08996582 266.58996582 265.58996582 257.739746094 257.890136719 257.729980469 257.399902344 257.079589844 256.899902344 256.880371094 256.899902344 256.869628906 256.800292969 256.760253906 256.729980469 256.569824219 256.220214844 255.739761353 255.18019104 254.409683228 242.319732666 242.449615479 242.399810791 242.170318604 241.800201416 241.359771729 241.019927979 240.920318604 241.000396729 241.059967041 241.059967041 241.050201416 241.010162354 240.710357666 240.119537354 239.479888916 238.920318604 232.819946289 232.940063477 232.779907227 232.42980957 232.060180664 231.719848633 231.42980957 231.25012207 231.259887695 231.389770508 231.420043945 231.25012207 231.060180664 230.880004883 230.540161133 229.940063477 229.299926758 220.870056152 220.820007324 220.630065918 220.299987793 219.940124512 219.729919434 219.67010498 219.58001709 219.449890137 219.410095215 219.469909668 219.529968262 219.519958496 219.58001709 219.739929199 219.729919434 219.350036621 206.879806519 206.450119019 206.109786987 205.890060425 205.820236206 205.870040894 205.999923706 206.080001831 206.0599823 206.039962769 206.14982605 206.390060425 206.669845581 206.950119019 207.320236206 207.820236206 208.410079956 195.140151978 194.439956665 194.19972229 194.279800415 194.470230103 194.649917603 194.77003479 194.899917603 195.02003479 194.970230103 194.670425415 194.229995728 193.920425415 193.899917603 194.170425415 194.720230103 195.69972229 197.279525757 196.229721069 195.309799194 194.620346069 194.109603882 193.630111694 193.229721069 193.120346069 193.229721069 193.309799194 193.219955444 193.120346069 193.149642944 193.179916382 193.109603882 193.200424194 193.920150757 205.870193481 205.359939575 204.989822388 204.60017395 204.169998169 203.830154419 203.669998169 203.589920044 203.52986145 203.520095825 203.560134888 203.580154419 203.569900513 203.520095825 203.449783325 203.339920044 203.270095825 216.8800354 216.739898682 216.549957275 216.310211182 216.179840088 216.259918213 216.480133057 216.6300354 216.639801025 216.619781494 216.610015869 216.569976807 216.460113525 216.3800354 216.449859619 216.759918213 217.259918213 219.289764404 218.940155029 218.989959717 219.350311279 219.610076904 219.539764404 219.339569092 219.320037842 219.409881592 219.329803467 219.100311279 218.940155029 219.039764404 219.329803467 219.820037842 220.680389404 221.949920654 230.310394287 229.929534912 228.890472412 227.579925537 226.719573975 226.610198975 226.730316162 226.480316162 226.0496521 226.179534912 227.039886475 228.009613037 228.610198975 229.1199646 229.839691162 230.2996521 229.7996521 298.259918213 298.609527588 298.539215088 298.509918213 298.869293213 299.300933838 299.209136963 298.609527588 298.080230713 297.920074463 297.759918213 297.140777588 296.160308838 295.459136963 295.429840088 295.670074463 295.379058838 292.479980469 292.999511719 293.019042969 292.790527344 292.919433594 293.470214844 293.749511719 293.329589844 292.649902344 292.360839844 292.259277344 291.640136719 290.440917969 289.769042969 290.489746094 292.009277344 292.700683594 287.360412598 287.820373535 287.799865723 287.570373535 287.620178223 288.030334473 288.450256348 288.610412598 288.530334473 288.309631348 287.910217285 287.370178223 286.950256348 287.049865723 287.59967041 288.049865723 287.66998291 282.860412598 282.50982666 281.729553223 281.059631348 280.860412598 280.910217285 281.000061035 281.290100098 281.839904785 282.320373535 282.469787598 282.559631348 282.889709473 283.179748535 282.790100098 281.530334473 279.769592285 276.670318604 276.659576416 276.580474854 276.470123291 276.290435791 276.010162354 275.670318604 275.300201416 275.109771729 275.330474854 275.939849854 276.559967041 276.800201416 276.630279541 276.220123291 275.580474854 274.430084229 268.32043457 268.42980957 268.469848633 268.450317383 268.290161133 267.939575195 267.50012207 267.189575195 267.130004883 267.26965332 267.460083008 267.540161133 267.469848633 267.280395508 266.979614258 266.490356445 265.540161133 257.710449219 257.850097656 257.689941406 257.350097656 257.020019531 256.859863281 256.859863281 256.869628906 256.810058594 256.729980469 256.710449219 256.720214844 256.600097656 256.289550781 255.810073853 255.189956665 254.34034729 242.330474854 242.460357666 242.369537354 242.109771729 241.739654541 241.350006104 241.059967041 240.970123291 241.019927979 241.059967041 241.069732666 241.090240479 241.059967041 240.779693604 240.180084229 239.500396729 238.930084229 232.819946289 232.949829102 232.810180664 232.460083008 232.049926758 231.719848633 231.42980957 231.239868164 231.239868164 231.370239258 231.42980957 231.319946289 231.130004883 230.92980957 230.580200195 230.009887695 229.389770508 220.83001709 220.83001709 220.660095215 220.340026855 219.999938965 219.789978027 219.690124512 219.58001709 219.440124512 219.410095215 219.499938965 219.529968262 219.50994873 219.58001709 219.789978027 219.83001709 219.469909668 206.729904175 206.320236206 206.030197144 205.870040894 205.850021362 205.910079956 205.999923706 206.030197144 205.979904175 205.939865112 206.050216675 206.289962769 206.570236206 206.870040894 207.289962769 207.820236206 208.379806519 195.210464478 194.369644165 194.029800415 194.130386353 194.399917603 194.630386353 194.78956604 194.960464478 195.140151978 195.170425415 194.899917603 194.44972229 194.079605103 193.979995728 194.189956665 194.710464478 195.68019104 197.569564819 196.609603882 195.689682007 194.929916382 194.330307007 193.800033569 193.389877319 193.219955444 193.259994507 193.319564819 193.279525757 193.319564819 193.420150757 193.410385132 193.259994507 193.290267944 193.969955444 205.949783325 205.429763794 205.009841919 204.549880981 204.109939575 203.770095825 203.589920044 203.489822388 203.4400177 203.469802856 203.569900513 203.620193481 203.589920044 203.560134888 203.52986145 203.429763794 203.339920044 216.909820557 216.690093994 216.449859619 216.210113525 216.110015869 216.250152588 216.520172119 216.739898682 216.779937744 216.710113525 216.580230713 216.449859619 216.400054932 216.509918213 216.759918213 217.069976807 217.480133057 220.180389404 219.839569092 219.720428467 219.900115967 220.049530029 219.919647217 219.579803467 219.379608154 219.390350342 219.440155029 219.400115967 219.379608154 219.409881592 219.520233154 219.850311279 220.680389404 221.949920654 228.78012085 228.579925537 228.009613037 227.10043335 226.360198975 226.179534912 226.2996521 226.219573975 225.910003662 225.85043335 226.2996521 227.060394287 227.829925537 228.640472412 229.45980835 229.879730225 229.570159912 298.109527588 298.509918213 298.480621338 298.379058838 298.550933838 298.820465088 298.920074463 298.900543213 298.830230713 298.599761963 298.080230713 297.310699463 296.400543213 295.529449463 295.009918213 295.039215088 295.189605713 292.110839844 292.599121094 292.720214844 292.599121094 292.690917969 293.110839844 293.470214844 293.429199219 293.089355469 292.720214844 292.360839844 291.710449219 290.700683594 289.829589844 289.739746094 290.460449219 291.190917969 286.870178223 287.290100098 287.469787598 287.469787598 287.549865723 287.799865723 288.160217285 288.49029541 288.629943848 288.41998291 287.860412598 287.229553223 286.940490723 287.16998291 287.639709473 287.799865723 287.309631348 283.000061035 282.769592285 282.019592285 281.370178223 281.179748535 281.16998291 281.139709473 281.320373535 281.820373535 282.25982666 282.320373535 282.269592285 282.540100098 282.910217285 282.780334473 281.860412598 280.360412598 276.729888916 276.750396729 276.649810791 276.519927979 276.340240479 276.059967041 275.720123291 275.399810791 275.229888916 275.439849854 276.029693604 276.670318604 276.960357666 276.819732666 276.399810791 275.769927979 274.699615479 268.33996582 268.51965332 268.559692383 268.460083008 268.210083008 267.83996582 267.469848633 267.25012207 267.26965332 267.42980957 267.58996582 267.620239258 267.469848633 267.219848633 266.91027832 266.420043945 265.559692383 257.640136719 257.800292969 257.649902344 257.310058594 256.979980469 256.859863281 256.859863281 256.840332031 256.749511719 256.680175781 256.699707031 256.720214844 256.609863281 256.329589844 255.880386353 255.220230103 254.310073853 242.319732666 242.449615479 242.330474854 242.029693604 241.659576416 241.309967041 241.069732666 240.989654541 241.040435791 241.100006104 241.109771729 241.109771729 241.090240479 240.850006104 240.300201416 239.619537354 239.000396729 232.690063477 232.870239258 232.799926758 232.50012207 232.100219727 231.739868164 231.449829102 231.25012207 231.210083008 231.330200195 231.42980957 231.370239258 231.190063477 230.969848633 230.639770508 230.109985352 229.520141602 220.680114746 220.739929199 220.630065918 220.380065918 220.100036621 219.880065918 219.739929199 219.590026855 219.449890137 219.430114746 219.499938965 219.529968262 219.519958496 219.610046387 219.820007324 219.860046387 219.519958496 206.580001831 206.169845581 205.910079956 205.800216675 205.8099823 205.890060425 205.97013855 205.999923706 205.97013855 205.930099487 205.999923706 206.209884644 206.479904175 206.789962769 207.209884644 207.740158081 208.269943237 195.249526978 194.380386353 194.029800415 194.130386353 194.460464478 194.710464478 194.850112915 195.010269165 195.189956665 195.229995728 194.989761353 194.579605103 194.229995728 194.119644165 194.34034729 194.85987854 195.779800415 197.889877319 196.979721069 196.019760132 195.149642944 194.460189819 193.889877319 193.479721069 193.290267944 193.250228882 193.200424194 193.179916382 193.290267944 193.460189819 193.460189819 193.279525757 193.300033569 193.939682007 205.719802856 205.140213013 204.669998169 204.250076294 203.890213013 203.620193481 203.449783325 203.35017395 203.319900513 203.410232544 203.560134888 203.620193481 203.629959106 203.629959106 203.620193481 203.509841919 203.359939575 217.360015869 217.1300354 216.850250244 216.569976807 216.429840088 216.520172119 216.730133057 216.850250244 216.860015869 216.779937744 216.619781494 216.440093994 216.369781494 216.54019165 216.889801025 217.279937744 217.699859619 220.400115967 220.129608154 219.980194092 220.070037842 220.150115967 219.959686279 219.570037842 219.289764404 219.260467529 219.329803467 219.430389404 219.520233154 219.579803467 219.629608154 219.869842529 220.610076904 221.779998779 227.999847412 227.789886475 227.4402771 226.820159912 226.249847412 226.060394287 226.160003662 226.200042725 226.0496521 225.950042725 226.150238037 226.669769287 227.4402771 228.35043335 229.200042725 229.6902771 229.740081787 298.070465088 298.349761963 298.330230713 298.300933838 298.410308838 298.480621338 298.550933838 298.800933838 299.070465088 298.920074463 298.369293213 297.759918213 297.060699463 295.990386963 294.849761963 294.439605713 294.759918213 292.079589844 292.380371094 292.470214844 292.460449219 292.599121094 292.919433594 293.249511719 293.380371094 293.249511719 292.890136719 292.509277344 292.110839844 291.460449219 290.380371094 289.349121094 289.079589844 289.620605469 286.679748535 286.950256348 287.139709473 287.25982666 287.410217285 287.66998291 288.040100098 288.429748535 288.620178223 288.410217285 287.870178223 287.370178223 287.290100098 287.66998291 288.120178223 288.139709473 287.460021973 282.83013916 282.799865723 282.250061035 281.690490723 281.410217285 281.269592285 281.190490723 281.389709473 281.83013916 282.120178223 282.040100098 281.950256348 282.200256348 282.59967041 282.639709473 282.040100098 280.879943848 276.640045166 276.670318604 276.569732666 276.460357666 276.300201416 276.059967041 275.769927979 275.529693604 275.439849854 275.670318604 276.210357666 276.790435791 277.069732666 276.939849854 276.510162354 275.899810791 274.909576416 268.32043457 268.580200195 268.620239258 268.439575195 268.139770508 267.76965332 267.469848633 267.309692383 267.32043457 267.479614258 267.649536133 267.67980957 267.540161133 267.25012207 266.899536133 266.41027832 265.58996582 257.600097656 257.760253906 257.630371094 257.270019531 256.939941406 256.819824219 256.840332031 256.810058594 256.720214844 256.680175781 256.699707031 256.699707031 256.560058594 256.300292969 255.890151978 255.239761353 254.27003479 242.250396729 242.390045166 242.279693604 242.010162354 241.659576416 241.319732666 241.069732666 240.989654541 241.069732666 241.159576416 241.170318604 241.140045166 241.109771729 240.909576416 240.439849854 239.769927979 239.080474854 232.489868164 232.730102539 232.759887695 232.560180664 232.210083008 231.83996582 231.520141602 231.279907227 231.199829102 231.299926758 231.420043945 231.400024414 231.239868164 231.029907227 230.719848633 230.239868164 229.670043945 220.489929199 220.559997559 220.519958496 220.370056152 220.150085449 219.930114746 219.749938965 219.590026855 219.469909668 219.440124512 219.489929199 219.529968262 219.559997559 219.690124512 219.880065918 219.870056152 219.549987793 206.47013855 206.039962769 205.800216675 205.740158081 205.780197144 205.839767456 205.910079956 205.959884644 205.959884644 205.930099487 205.990158081 206.169845581 206.419845581 206.72013855 207.120040894 207.629806519 208.140060425 195.439956665 194.640151978 194.279800415 194.319839478 194.529800415 194.749526978 194.93019104 195.100112915 195.239761353 195.229995728 194.960464478 194.579605103 194.279800415 194.229995728 194.460464478 194.970230103 195.850112915 197.889877319 196.939682007 195.969955444 195.080307007 194.349838257 193.769760132 193.399642944 193.250228882 193.210189819 193.149642944 193.120346069 193.250228882 193.429916382 193.410385132 193.259994507 193.330307007 193.899642944 205.629959106 204.989822388 204.480056763 204.109939575 203.830154419 203.649978638 203.509841919 203.390213013 203.359939575 203.419998169 203.549880981 203.629959106 203.669998169 203.739822388 203.750076294 203.60017395 203.399978638 217.6300354 217.429840088 217.139801025 216.830230713 216.670074463 216.690093994 216.759918213 216.770172119 216.730133057 216.71987915 216.639801025 216.449859619 216.299957275 216.409820557 216.819976807 217.299957275 217.779937744 220.039764404 219.829803467 219.709686279 219.779998779 219.860076904 219.739959717 219.449920654 219.249725342 219.220428467 219.270233154 219.360076904 219.499725342 219.600311279 219.650115967 219.860076904 220.529998779 221.619842529 228.270355225 227.969573975 227.570159912 227.020355225 226.539886475 226.329925537 226.329925537 226.339691162 226.270355225 226.230316162 226.320159912 226.679534912 227.379730225 228.2996521 229.140472412 229.679534912 229.969573975 298.029449463 298.150543213 298.099761963 298.250152588 298.480621338 298.470855713 298.379058838 298.589996338 298.910308838 298.820465088 298.400543213 298.099761963 297.660308838 296.439605713 294.740386963 293.810699463 294.060699463 292.079589844 292.220214844 292.259277344 292.409667969 292.679199219 292.950683594 293.140136719 293.229980469 293.110839844 292.759277344 292.489746094 292.450683594 292.169433594 290.979980469 289.210449219 288.120605469 288.399902344 286.629943848 286.75982666 286.910217285 287.059631348 287.290100098 287.620178223 288.019592285 288.320373535 288.379943848 288.129943848 287.74029541 287.469787598 287.570373535 288.089904785 288.660217285 288.719787598 287.929748535 282.549865723 282.710021973 282.440490723 282.000061035 281.589904785 281.290100098 281.219787598 281.460021973 281.769592285 281.84967041 281.729553223 281.769592285 282.120178223 282.479553223 282.50982666 282.15045166 281.299865723 276.500396729 276.519927979 276.430084229 276.340240479 276.220123291 276.019927979 275.819732666 275.689849854 275.710357666 275.939849854 276.399810791 276.890045166 277.119537354 276.960357666 276.500396729 275.899810791 275.019927979 268.26965332 268.57043457 268.580200195 268.349731445 268.030395508 267.759887695 267.540161133 267.380004883 267.330200195 267.450317383 267.649536133 267.75012207 267.639770508 267.32043457 266.91027832 266.380004883 265.580200195 257.550292969 257.770019531 257.649902344 257.279785156 256.899902344 256.760253906 256.789550781 256.770019531 256.699707031 256.680175781 256.720214844 256.689941406 256.520019531 256.249511719 255.85987854 255.229995728 254.229995728 242.090240479 242.279693604 242.260162354 242.050201416 241.750396729 241.390045166 241.090240479 241.000396729 241.109771729 241.239654541 241.239654541 241.149810791 241.080474854 240.939849854 240.559967041 239.930084229 239.170318604 232.290161133 232.549926758 232.67980957 232.58996582 232.290161133 231.940063477 231.58996582 231.319946289 231.210083008 231.279907227 231.400024414 231.409790039 231.290161133 231.100219727 230.810180664 230.370239258 229.810180664 220.309997559 220.360046387 220.370056152 220.309997559 220.160095215 219.940124512 219.719909668 219.559997559 219.449890137 219.42010498 219.449890137 219.529968262 219.630065918 219.799987793 219.930114746 219.890075684 219.610046387 206.450119019 205.990158081 205.769943237 205.749923706 205.800216675 205.830001831 205.870040894 205.89982605 205.919845581 205.930099487 205.999923706 206.160079956 206.390060425 206.669845581 207.050216675 207.510177612 208.030197144 195.710464478 194.970230103 194.529800415 194.369644165 194.43019104 194.630386353 194.899917603 195.170425415 195.279800415 195.159683228 194.819839478 194.439956665 194.19972229 194.19972229 194.460464478 194.979995728 195.800308228 197.719955444 196.710189819 195.779525757 194.969955444 194.279525757 193.700424194 193.319564819 193.219955444 193.240463257 193.229721069 193.229721069 193.330307007 193.439682007 193.359603882 193.229721069 193.349838257 193.849838257 205.819900513 205.160232544 204.629959106 204.219802856 203.949783325 203.799880981 203.679763794 203.540115356 203.4400177 203.4400177 203.520095825 203.60017395 203.6900177 203.810134888 203.859939575 203.679763794 203.480056763 217.489898682 217.270172119 216.989898682 216.71987915 216.589996338 216.610015869 216.639801025 216.600250244 216.600250244 216.699859619 216.71987915 216.500152588 216.239898682 216.299957275 216.759918213 217.369781494 217.889801025 219.789764404 219.600311279 219.499725342 219.579803467 219.699920654 219.669647217 219.539764404 219.419647217 219.379608154 219.329803467 219.350311279 219.459686279 219.579803467 219.619842529 219.779998779 220.419647217 221.499725342 228.759613037 228.400238037 227.839691162 227.179534912 226.6902771 226.419769287 226.259613037 226.160003662 226.1902771 226.289886475 226.410003662 226.719573975 227.410003662 228.3699646 229.230316162 229.770355225 230.1199646 297.900543213 297.929840088 297.869293213 298.170074463 298.589996338 298.660308838 298.500152588 298.609527588 298.890777588 298.849761963 298.580230713 298.470855713 298.179840088 296.849761963 294.810699463 293.509918213 293.589996338 291.979980469 292.060058594 292.130371094 292.409667969 292.790527344 293.030761719 293.099121094 293.140136719 293.060058594 292.800292969 292.640136719 292.810058594 292.739746094 291.560058594 289.470214844 287.919433594 287.950683594 286.589904785 286.719787598 286.860412598 287.030334473 287.269592285 287.639709473 288.030334473 288.219787598 288.15045166 287.950256348 287.750061035 287.65045166 287.790100098 288.34967041 289.120178223 289.379943848 288.589904785 282.290100098 282.570373535 282.570373535 282.250061035 281.74029541 281.360412598 281.320373535 281.549865723 281.65045166 281.49029541 281.410217285 281.719787598 282.200256348 282.429748535 282.360412598 282.16998291 281.620178223 276.369537354 276.399810791 276.330474854 276.250396729 276.159576416 276.019927979 275.890045166 275.850006104 275.939849854 276.180084229 276.550201416 276.920318604 277.050201416 276.859771729 276.420318604 275.850006104 275.050201416 268.259887695 268.51965332 268.450317383 268.170043945 267.880004883 267.710083008 267.580200195 267.420043945 267.309692383 267.399536133 267.630004883 267.780395508 267.66027832 267.309692383 266.83996582 266.299926758 265.509887695 257.479980469 257.760253906 257.699707031 257.319824219 256.890136719 256.710449219 256.739746094 256.770019531 256.720214844 256.710449219 256.739746094 256.699707031 256.520019531 256.260253906 255.880386353 255.229995728 254.18019104 241.909576416 242.149810791 242.220123291 242.119537354 241.850006104 241.470123291 241.130279541 241.019927979 241.149810791 241.309967041 241.300201416 241.170318604 241.059967041 240.939849854 240.619537354 240.040435791 239.269927979 232.109985352 232.400024414 232.569946289 232.540161133 232.299926758 231.960083008 231.630004883 231.359985352 231.230102539 231.259887695 231.370239258 231.409790039 231.330200195 231.159790039 230.909790039 230.509887695 229.989868164 220.130065918 220.180114746 220.219909668 220.239929199 220.160095215 219.940124512 219.699890137 219.50994873 219.400085449 219.350036621 219.380065918 219.50994873 219.699890137 219.870056152 219.940124512 219.880065918 219.690124512 206.490158081 206.050216675 205.859786987 205.830001831 205.859786987 205.850021362 205.839767456 205.859786987 205.890060425 205.939865112 206.019943237 206.180099487 206.379806519 206.640060425 206.979904175 207.419845581 207.939865112 195.920425415 195.159683228 194.60987854 194.27003479 194.220230103 194.479995728 194.899917603 195.249526978 195.310073853 195.060073853 194.640151978 194.27003479 194.060073853 194.09034729 194.399917603 194.960464478 195.739761353 197.679916382 196.620346069 195.750228882 195.050033569 194.399642944 193.790267944 193.380111694 193.250228882 193.279525757 193.309799194 193.340072632 193.410385132 193.439682007 193.309799194 193.179916382 193.319564819 193.719955444 206.020095825 205.379959106 204.839920044 204.379959106 204.049880981 203.859939575 203.710037231 203.549880981 203.410232544 203.379959106 203.449783325 203.549880981 203.6900177 203.859939575 203.899978638 203.730056763 203.589920044 217.270172119 216.989898682 216.699859619 216.460113525 216.409820557 216.500152588 216.600250244 216.6300354 216.679840088 216.819976807 216.830230713 216.569976807 216.239898682 216.29019165 216.860015869 217.580230713 218.089996338 219.940155029 219.749725342 219.659881592 219.709686279 219.799530029 219.810272217 219.720428467 219.600311279 219.489959717 219.369842529 219.339569092 219.449920654 219.549530029 219.529998779 219.610076904 220.209686279 221.339569092 228.78012085 228.400238037 227.719573975 226.999847412 226.509613037 226.179534912 225.890472412 225.78012085 225.9402771 226.20980835 226.410003662 226.719573975 227.450042725 228.499847412 229.400238037 229.929534912 230.2996521 297.740386963 297.830230713 297.789215088 298.089996338 298.570465088 298.750152588 298.679840088 298.810699463 299.119293213 299.199371338 299.009918213 298.879058838 298.519683838 297.220855713 295.250152588 293.879058838 293.810699463 291.819824219 291.989746094 292.110839844 292.399902344 292.780761719 292.970214844 293.019042969 293.120605469 293.220214844 293.130371094 293.030761719 293.190917969 293.190917969 292.229980469 290.319824219 288.739746094 288.540527344 286.559631348 286.750061035 286.929748535 287.08013916 287.25982666 287.589904785 287.969787598 288.15045166 288.110412598 288.070373535 288.049865723 287.960021973 288.00982666 288.58013916 289.549865723 290.040100098 289.290100098 282.089904785 282.469787598 282.660217285 282.429748535 281.889709473 281.469787598 281.479553223 281.66998291 281.549865723 281.200256348 281.200256348 281.74029541 282.290100098 282.34967041 282.179748535 282.160217285 281.84967041 276.220123291 276.290435791 276.269927979 276.220123291 276.140045166 276.040435791 275.970123291 275.979888916 276.109771729 276.359771729 276.670318604 276.899810791 276.930084229 276.720123291 276.319732666 275.779693604 274.989654541 268.280395508 268.469848633 268.32043457 267.990356445 267.710083008 267.580200195 267.51965332 267.41027832 267.309692383 267.389770508 267.599731445 267.729614258 267.580200195 267.189575195 266.700317383 266.149536133 265.370239258 257.340332031 257.699707031 257.720214844 257.359863281 256.920410156 256.710449219 256.749511719 256.800292969 256.760253906 256.729980469 256.760253906 256.739746094 256.600097656 256.350097656 255.94972229 255.239761353 254.140151978 241.729888916 242.019927979 242.170318604 242.140045166 241.909576416 241.519927979 241.159576416 241.050201416 241.189849854 241.350006104 241.359771729 241.220123291 241.059967041 240.899810791 240.609771729 240.100006104 239.380279541 231.980102539 232.259887695 232.449829102 232.449829102 232.25012207 231.949829102 231.650024414 231.409790039 231.259887695 231.259887695 231.350219727 231.420043945 231.370239258 231.219848633 231.00012207 230.659790039 230.199829102 219.949890137 220.00994873 220.100036621 220.199890137 220.17010498 219.949890137 219.67010498 219.459899902 219.33001709 219.289978027 219.340026855 219.529968262 219.779968262 219.92010498 219.940124512 219.860046387 219.779968262 206.600021362 206.169845581 205.959884644 205.89982605 205.890060425 205.850021362 205.8099823 205.8099823 205.859786987 205.939865112 206.039962769 206.180099487 206.370040894 206.620040894 206.950119019 207.359786987 207.859786987 196.069839478 195.249526978 194.619644165 194.19972229 194.170425415 194.53956604 195.050308228 195.390151978 195.369644165 195.03956604 194.60987854 194.239761353 194.02003479 194.02003479 194.34034729 194.939956665 195.729995728 197.779525757 196.670150757 195.819564819 195.149642944 194.500228882 193.880111694 193.429916382 193.250228882 193.240463257 193.250228882 193.300033569 193.399642944 193.410385132 193.259994507 193.130111694 193.240463257 193.540267944 206.060134888 205.460037231 204.929763794 204.449783325 204.069900513 203.819900513 203.640213013 203.460037231 203.330154419 203.310134888 203.399978638 203.549880981 203.710037231 203.879959106 203.919998169 203.790115356 203.739822388 217.270172119 216.909820557 216.569976807 216.339996338 216.299957275 216.46987915 216.670074463 216.799957275 216.860015869 216.920074463 216.850250244 216.529937744 216.179840088 216.279937744 216.929840088 217.730133057 218.270172119 220.159881592 219.980194092 219.860076904 219.860076904 219.890350342 219.850311279 219.709686279 219.539764404 219.400115967 219.289764404 219.310272217 219.459686279 219.539764404 219.480194092 219.480194092 219.999725342 221.079803467 228.499847412 228.1199646 227.499847412 226.8699646 226.419769287 226.070159912 225.759613037 225.700042725 225.980316162 226.320159912 226.499847412 226.759613037 227.499847412 228.579925537 229.53012085 230.150238037 230.650238037 297.679840088 297.929840088 297.910308838 298.060699463 298.429840088 298.679840088 298.730621338 298.890777588 299.230621338 299.400543213 299.269683838 299.029449463 298.599761963 297.589996338 296.129058838 295.019683838 294.759918213 291.759277344 292.069824219 292.190917969 292.370605469 292.630371094 292.780761719 292.860839844 293.060058594 293.310058594 293.370605469 293.300292969 293.419433594 293.550292969 293.110839844 291.880371094 290.599121094 290.149902344 286.570373535 286.799865723 287.019592285 287.110412598 287.200256348 287.41998291 287.780334473 288.040100098 288.139709473 288.24029541 288.280334473 288.160217285 288.179748535 288.889709473 290.089904785 290.66998291 289.83013916 282.030334473 282.460021973 282.75982666 282.589904785 282.030334473 281.570373535 281.59967041 281.750061035 281.530334473 281.120178223 281.179748535 281.809631348 282.299865723 282.219787598 282.00982666 282.08013916 281.889709473 276.069732666 276.180084229 276.199615479 276.170318604 276.109771729 276.050201416 276.000396729 276.040435791 276.199615479 276.470123291 276.750396729 276.899810791 276.840240479 276.609771729 276.239654541 275.670318604 274.809967041 268.26965332 268.439575195 268.280395508 267.950317383 267.630004883 267.509887695 267.490356445 267.439575195 267.399536133 267.469848633 267.620239258 267.670043945 267.460083008 267.07043457 266.58996582 266.00012207 265.189575195 257.180175781 257.609863281 257.699707031 257.380371094 256.930175781 256.710449219 256.760253906 256.819824219 256.779785156 256.749511719 256.800292969 256.819824219 256.720214844 256.479980469 256.020019531 255.220230103 254.060073853 241.600006104 241.930084229 242.130279541 242.149810791 241.920318604 241.540435791 241.199615479 241.109771729 241.220123291 241.380279541 241.399810791 241.279693604 241.100006104 240.869537354 240.550201416 240.090240479 239.439849854 231.830200195 232.150024414 232.350219727 232.380004883 232.219848633 231.949829102 231.67980957 231.449829102 231.279907227 231.259887695 231.350219727 231.449829102 231.400024414 231.259887695 231.069946289 230.810180664 230.400024414 219.779968262 219.890075684 220.059997559 220.209899902 220.199890137 219.959899902 219.630065918 219.400085449 219.279968262 219.249938965 219.350036621 219.570007324 219.850036621 220.00994873 219.999938965 219.92010498 219.860046387 206.760177612 206.339767456 206.0599823 205.930099487 205.859786987 205.8099823 205.760177612 205.760177612 205.820236206 205.919845581 206.019943237 206.14982605 206.339767456 206.620040894 206.990158081 207.390060425 207.839767456 196.249526978 195.380386353 194.69972229 194.28956604 194.310073853 194.720230103 195.229995728 195.489761353 195.409683228 195.100112915 194.720230103 194.35987854 194.03956604 193.93019104 194.210464478 194.869644165 195.69972229 197.819564819 196.670150757 195.759994507 195.050033569 194.399642944 193.830307007 193.420150757 193.219955444 193.160385132 193.160385132 193.250228882 193.389877319 193.439682007 193.319564819 193.160385132 193.170150757 193.380111694 206.060134888 205.500076294 205.009841919 204.540115356 204.140213013 203.870193481 203.669998169 203.489822388 203.359939575 203.359939575 203.469802856 203.60017395 203.750076294 203.899978638 203.969802856 203.879959106 203.899978638 217.360015869 216.929840088 216.520172119 216.250152588 216.210113525 216.389801025 216.670074463 216.850250244 216.8800354 216.850250244 216.730133057 216.420074463 216.100250244 216.159820557 216.770172119 217.619781494 218.239898682 220.140350342 219.989959717 219.850311279 219.810272217 219.820037842 219.739959717 219.570037842 219.379608154 219.270233154 219.260467529 219.339569092 219.499725342 219.589569092 219.529998779 219.499725342 219.869842529 220.749725342 228.410003662 228.060394287 227.560394287 227.0496521 226.629730225 226.249847412 225.950042725 225.950042725 226.240081787 226.480316162 226.560394287 226.78012085 227.499847412 228.5496521 229.539886475 230.390472412 231.179534912 297.609527588 298.060699463 298.089996338 298.080230713 298.320465088 298.619293213 298.759918213 298.849761963 299.050933838 299.250152588 299.240386963 299.039215088 298.730621338 298.279449463 297.650543213 296.929840088 296.300933838 291.710449219 292.140136719 292.269042969 292.329589844 292.499511719 292.690917969 292.800292969 292.960449219 293.179199219 293.310058594 293.349121094 293.560058594 294.019042969 294.339355469 294.060058594 293.249511719 292.540527344 286.59967041 286.820373535 287.030334473 287.09967041 287.120178223 287.280334473 287.610412598 287.91998291 288.089904785 288.210021973 288.229553223 288.15045166 288.41998291 289.49029541 290.91998291 291.410217285 290.33013916 282.120178223 282.559631348 282.879943848 282.750061035 282.190490723 281.690490723 281.629943848 281.75982666 281.58013916 281.210021973 281.250061035 281.769592285 282.15045166 282.019592285 281.780334473 281.809631348 281.58013916 275.960357666 276.080474854 276.119537354 276.100006104 276.069732666 276.040435791 276.019927979 276.050201416 276.199615479 276.500396729 276.809967041 276.899810791 276.760162354 276.519927979 276.130279541 275.479888916 274.470123291 268.200317383 268.420043945 268.360473633 268.059692383 267.719848633 267.549926758 267.549926758 267.58996582 267.610473633 267.66027832 267.719848633 267.66027832 267.42980957 267.049926758 266.549926758 265.889770508 264.990356445 257.039550781 257.510253906 257.649902344 257.359863281 256.920410156 256.710449219 256.749511719 256.800292969 256.749511719 256.749511719 256.829589844 256.899902344 256.810058594 256.550292969 256.029785156 255.170425415 253.960464478 241.479888916 241.869537354 242.109771729 242.140045166 241.920318604 241.550201416 241.239654541 241.159576416 241.250396729 241.380279541 241.439849854 241.359771729 241.159576416 240.830474854 240.470123291 240.050201416 239.460357666 231.67980957 232.029907227 232.299926758 232.380004883 232.259887695 232.009887695 231.730102539 231.460083008 231.279907227 231.25012207 231.370239258 231.469848633 231.420043945 231.270141602 231.130004883 230.92980957 230.549926758 219.719909668 219.890075684 220.130065918 220.309997559 220.269958496 219.979919434 219.620056152 219.360046387 219.239929199 219.229919434 219.350036621 219.600036621 219.890075684 220.08001709 220.120056152 220.059997559 219.969909668 206.97013855 206.519943237 206.169845581 205.950119019 205.830001831 205.769943237 205.72013855 205.72013855 205.780197144 205.870040894 205.97013855 206.089767456 206.3099823 206.660079956 207.089767456 207.499923706 207.89982605 196.460464478 195.53956604 194.800308228 194.369644165 194.380386353 194.739761353 195.170425415 195.380386353 195.319839478 195.119644165 194.84034729 194.439956665 193.999526978 193.749526978 193.939956665 194.640151978 195.569839478 197.759994507 196.580307007 195.639877319 194.910385132 194.300033569 193.819564819 193.500228882 193.319564819 193.229721069 193.229721069 193.330307007 193.479721069 193.509994507 193.370346069 193.170150757 193.090072632 193.219955444 206.140213013 205.589920044 205.109939575 204.649978638 204.259841919 203.969802856 203.759841919 203.569900513 203.4400177 203.449783325 203.540115356 203.640213013 203.770095825 203.9400177 204.02986145 203.980056763 204.000076294 217.330230713 216.850250244 216.420074463 216.139801025 216.100250244 216.310211182 216.610015869 216.810211182 216.839996338 216.759918213 216.639801025 216.420074463 216.119781494 216.049957275 216.480133057 217.29019165 218.080230713 220.010467529 219.890350342 219.789764404 219.770233154 219.789764404 219.730194092 219.539764404 219.369842529 219.299530029 219.329803467 219.419647217 219.529998779 219.610076904 219.610076904 219.600311279 219.799530029 220.400115967 228.570159912 228.219573975 227.749847412 227.219573975 226.740081787 226.320159912 226.070159912 226.1199646 226.320159912 226.419769287 226.419769287 226.719573975 227.490081787 228.499847412 229.509613037 230.669769287 231.839691162 297.420074463 297.990386963 298.119293213 298.080230713 298.310699463 298.720855713 298.949371338 298.900543213 298.869293213 299.039215088 299.250152588 299.310699463 299.330230713 299.529449463 299.709136963 299.349761963 298.259918213 291.550292969 292.069824219 292.210449219 292.249511719 292.470214844 292.749511719 292.880371094 292.919433594 293.009277344 293.190917969 293.419433594 293.899902344 294.759277344 295.810058594 296.399902344 296.099121094 295.210449219 286.58013916 286.780334473 286.99029541 287.08013916 287.089904785 287.24029541 287.58013916 287.879943848 288.030334473 288.059631348 288.059631348 288.200256348 288.91998291 290.450256348 292.00982666 292.299865723 291.000061035 282.299865723 282.65045166 282.90045166 282.83013916 282.34967041 281.820373535 281.65045166 281.74029541 281.639709473 281.33013916 281.24029541 281.540100098 281.769592285 281.65045166 281.379943848 281.229553223 280.860412598 275.939849854 276.069732666 276.119537354 276.100006104 276.080474854 276.069732666 276.050201416 276.040435791 276.159576416 276.500396729 276.840240479 276.920318604 276.720123291 276.399810791 275.939849854 275.149810791 274.029693604 268.07043457 268.399536133 268.479614258 268.240356445 267.889770508 267.670043945 267.700317383 267.799926758 267.849731445 267.860473633 267.830200195 267.719848633 267.50012207 267.149536133 266.620239258 265.830200195 264.82043457 256.960449219 257.460449219 257.600097656 257.329589844 256.909667969 256.710449219 256.710449219 256.739746094 256.699707031 256.739746094 256.880371094 256.960449219 256.850097656 256.550292969 255.999526978 255.130386353 253.899917603 241.380279541 241.830474854 242.109771729 242.159576416 241.960357666 241.590240479 241.290435791 241.180084229 241.250396729 241.390045166 241.479888916 241.449615479 241.229888916 240.840240479 240.420318604 240.029693604 239.460357666 231.540161133 231.969848633 232.290161133 232.42980957 232.350219727 232.120239258 231.799926758 231.489868164 231.290161133 231.270141602 231.380004883 231.480102539 231.420043945 231.290161133 231.170043945 231.020141602 230.630004883 219.799987793 220.039978027 220.299987793 220.449890137 220.370056152 220.049987793 219.67010498 219.400085449 219.269958496 219.249938965 219.340026855 219.549987793 219.850036621 220.090026855 220.209899902 220.180114746 220.029968262 207.22013855 206.709884644 206.280197144 205.990158081 205.830001831 205.740158081 205.689865112 205.700119019 205.749923706 205.820236206 205.89982605 206.030197144 206.289962769 206.700119019 207.189865112 207.600021362 207.97013855 196.619644165 195.630386353 194.84034729 194.34034729 194.27003479 194.53956604 194.890151978 195.119644165 195.170425415 195.09034729 194.869644165 194.420425415 193.899917603 193.550308228 193.68019104 194.34034729 195.34034729 197.740463257 196.559799194 195.639877319 194.929916382 194.399642944 194.000228882 193.719955444 193.540267944 193.450424194 193.439682007 193.490463257 193.509994507 193.439682007 193.269760132 193.040267944 192.889877319 193.029525757 206.230056763 205.629959106 205.109939575 204.629959106 204.230056763 203.929763794 203.699783325 203.509841919 203.410232544 203.429763794 203.52986145 203.629959106 203.77986145 204.000076294 204.140213013 204.080154419 204.080154419 217.230133057 216.770172119 216.420074463 216.230133057 216.21987915 216.420074463 216.739898682 216.949859619 216.949859619 216.839996338 216.739898682 216.589996338 216.299957275 216.060211182 216.270172119 217.000152588 217.929840088 219.980194092 219.900115967 219.839569092 219.860076904 219.890350342 219.810272217 219.610076904 219.419647217 219.350311279 219.379608154 219.419647217 219.449920654 219.499725342 219.560272217 219.610076904 219.720428467 220.070037842 228.660003662 228.240081787 227.669769287 227.0496521 226.499847412 226.10043335 225.980316162 226.10043335 226.230316162 226.200042725 226.249847412 226.740081787 227.629730225 228.610198975 229.640472412 231.020355225 232.480316162 297.160308838 297.789215088 298.060699463 298.089996338 298.339996338 298.849761963 299.179840088 299.050933838 298.839996338 299.000152588 299.449371338 299.800933838 300.099761963 300.730621338 301.459136963 301.439605713 300.179840088 291.339355469 291.880371094 292.079589844 292.200683594 292.499511719 292.849121094 292.989746094 292.940917969 292.950683594 293.220214844 293.679199219 294.339355469 295.419433594 296.849121094 298.040527344 298.269042969 297.489746094 286.49029541 286.700256348 286.90045166 287.019592285 287.089904785 287.269592285 287.610412598 287.91998291 288.030334473 288.019592285 288.040100098 288.429748535 289.530334473 291.309631348 292.839904785 293.00982666 291.780334473 282.460021973 282.639709473 282.74029541 282.729553223 282.40045166 281.90045166 281.639709473 281.719787598 281.719787598 281.440490723 281.16998291 281.179748535 281.309631348 281.24029541 280.91998291 280.49029541 280.000061035 275.979888916 276.140045166 276.220123291 276.199615479 276.170318604 276.180084229 276.149810791 276.069732666 276.119537354 276.460357666 276.859771729 276.939849854 276.670318604 276.269927979 275.699615479 274.790435791 273.609771729 267.969848633 268.399536133 268.57043457 268.389770508 268.01965332 267.790161133 267.82043457 267.950317383 268.009887695 267.979614258 267.91027832 267.780395508 267.580200195 267.25012207 266.67980957 265.809692383 264.700317383 256.899902344 257.449707031 257.609863281 257.340332031 256.939941406 256.720214844 256.710449219 256.699707031 256.670410156 256.749511719 256.920410156 256.989746094 256.859863281 256.529785156 255.999526978 255.130386353 253.85987854 241.300201416 241.830474854 242.159576416 242.220123291 242.029693604 241.659576416 241.340240479 241.210357666 241.250396729 241.390045166 241.540435791 241.540435791 241.330474854 240.909576416 240.460357666 240.059967041 239.479888916 231.529907227 231.989868164 232.319946289 232.50012207 232.469848633 232.230102539 231.900024414 231.569946289 231.370239258 231.33996582 231.42980957 231.480102539 231.420043945 231.310180664 231.230102539 231.080200195 230.659790039 220.019958496 220.269958496 220.469909668 220.559997559 220.440124512 220.130065918 219.75994873 219.489929199 219.340026855 219.289978027 219.340026855 219.519958496 219.779968262 220.039978027 220.209899902 220.209899902 220.029968262 207.439865112 206.870040894 206.390060425 206.050216675 205.830001831 205.700119019 205.629806519 205.629806519 205.680099487 205.760177612 205.839767456 205.990158081 206.289962769 206.72013855 207.209884644 207.629806519 207.990158081 196.659683228 195.600112915 194.760269165 194.239761353 194.140151978 194.380386353 194.720230103 194.999526978 195.119644165 195.09034729 194.829605103 194.35987854 193.829605103 193.499526978 193.569839478 194.140151978 195.100112915 197.790267944 196.630111694 195.740463257 195.069564819 194.559799194 194.179916382 193.880111694 193.679916382 193.590072632 193.590072632 193.559799194 193.429916382 193.240463257 193.050033569 192.840072632 192.649642944 192.809799194 206.179763794 205.520095825 204.9400177 204.429763794 204.02986145 203.739822388 203.509841919 203.330154419 203.270095825 203.35017395 203.480056763 203.620193481 203.810134888 204.089920044 204.270095825 204.199783325 204.149978638 217.279937744 216.940093994 216.710113525 216.589996338 216.569976807 216.71987915 217.000152588 217.199859619 217.179840088 217.029937744 216.900054932 216.770172119 216.46987915 216.139801025 216.199859619 216.839996338 217.810211182 219.999725342 219.919647217 219.869842529 219.879608154 219.900115967 219.799530029 219.579803467 219.350311279 219.239959717 219.270233154 219.320037842 219.320037842 219.320037842 219.369842529 219.489959717 219.680389404 219.989959717 228.560394287 228.020355225 227.379730225 226.749847412 226.240081787 225.980316162 226.009613037 226.20980835 226.310394287 226.240081787 226.360198975 226.990081787 227.969573975 228.919769287 229.910003662 231.28012085 232.810394287 297.039215088 297.709136963 298.109527588 298.189605713 298.330230713 298.759918213 299.119293213 299.039215088 298.789215088 298.929840088 299.449371338 299.879058838 300.150543213 300.750152588 301.670074463 302.099761963 301.300933838 291.220214844 291.769042969 292.069824219 292.259277344 292.509277344 292.810058594 292.960449219 292.929199219 292.960449219 293.269042969 293.790527344 294.440917969 295.390136719 296.800292969 298.259277344 299.019042969 298.690917969 286.469787598 286.66998291 286.820373535 286.960021973 287.049865723 287.229553223 287.559631348 287.910217285 288.070373535 288.070373535 288.139709473 288.59967041 289.74029541 291.389709473 292.75982666 293.049865723 292.290100098 282.540100098 282.519592285 282.469787598 282.500061035 282.320373535 281.870178223 281.549865723 281.639709473 281.790100098 281.59967041 281.200256348 281.00982666 281.089904785 281.08013916 280.66998291 279.99029541 279.360412598 275.939849854 276.170318604 276.319732666 276.309967041 276.260162354 276.279693604 276.269927979 276.130279541 276.100006104 276.399810791 276.819732666 276.909576416 276.609771729 276.159576416 275.550201416 274.550201416 273.290435791 267.899536133 268.380004883 268.620239258 268.490356445 268.130004883 267.880004883 267.889770508 268.009887695 268.07043457 268.030395508 267.939575195 267.799926758 267.610473633 267.26965332 266.700317383 265.790161133 264.610473633 256.840332031 257.479980469 257.670410156 257.399902344 256.989746094 256.760253906 256.720214844 256.699707031 256.680175781 256.779785156 256.960449219 257.020019531 256.859863281 256.550292969 256.029785156 255.159683228 253.819839478 241.309967041 241.899810791 242.250396729 242.330474854 242.159576416 241.790435791 241.430084229 241.250396729 241.269927979 241.420318604 241.590240479 241.630279541 241.449615479 241.050201416 240.600006104 240.159576416 239.510162354 231.659790039 232.109985352 232.409790039 232.569946289 232.560180664 232.33996582 232.00012207 231.67980957 231.489868164 231.460083008 231.50012207 231.509887695 231.449829102 231.380004883 231.319946289 231.150024414 230.699829102 220.289978027 220.489929199 220.58001709 220.58001709 220.440124512 220.150085449 219.809997559 219.519958496 219.350036621 219.309997559 219.380065918 219.549987793 219.779968262 220.019958496 220.199890137 220.209899902 220.029968262 207.64982605 206.999923706 206.510177612 206.140060425 205.870040894 205.640060425 205.519943237 205.499923706 205.550216675 205.629806519 205.769943237 205.979904175 206.300216675 206.72013855 207.169845581 207.580001831 208.010177612 196.569839478 195.420425415 194.59034729 194.130386353 194.10987854 194.409683228 194.810073853 195.119644165 195.249526978 195.149917603 194.800308228 194.279800415 193.78956604 193.53956604 193.619644165 194.079605103 194.960464478 197.849838257 196.670150757 195.769760132 195.090072632 194.569564819 194.170150757 193.840072632 193.639877319 193.590072632 193.630111694 193.559799194 193.359603882 193.160385132 193.029525757 192.840072632 192.580307007 192.710189819 206.060134888 205.359939575 204.77986145 204.290115356 203.9400177 203.669998169 203.460037231 203.299880981 203.250076294 203.35017395 203.480056763 203.629959106 203.85017395 204.160232544 204.35017395 204.299880981 204.27986145 217.440093994 217.210113525 217.049957275 216.889801025 216.770172119 216.810211182 217.04019165 217.239898682 217.230133057 217.069976807 216.920074463 216.759918213 216.489898682 216.199859619 216.190093994 216.699859619 217.569976807 219.940155029 219.839569092 219.779998779 219.760467529 219.770233154 219.699920654 219.499725342 219.239959717 219.110076904 219.140350342 219.270233154 219.320037842 219.279998779 219.230194092 219.379608154 219.779998779 220.279998779 228.429534912 227.829925537 227.20980835 226.669769287 226.289886475 226.140472412 226.240081787 226.469573975 226.570159912 226.499847412 226.629730225 227.249847412 228.230316162 229.179534912 230.110198975 231.28012085 232.570159912 297.070465088 297.800933838 298.320465088 298.369293213 298.259918213 298.459136963 298.830230713 298.890777588 298.670074463 298.689605713 299.050933838 299.279449463 299.230621338 299.400543213 300.140777588 301.019683838 301.230621338 291.220214844 291.800292969 292.220214844 292.429199219 292.509277344 292.640136719 292.810058594 292.890136719 292.929199219 293.130371094 293.489746094 293.940917969 294.610839844 295.769042969 297.229980469 298.390136719 298.669433594 286.549865723 286.719787598 286.820373535 286.929748535 287.019592285 287.160217285 287.479553223 287.84967041 288.049865723 288.08013916 288.129943848 288.479553223 289.34967041 290.629943848 291.809631348 292.389709473 292.309631348 282.49029541 282.339904785 282.219787598 282.299865723 282.179748535 281.729553223 281.379943848 281.50982666 281.83013916 281.799865723 281.429748535 281.179748535 281.250061035 281.269592285 280.809631348 279.929748535 279.16998291 275.840240479 276.180084229 276.390045166 276.369537354 276.269927979 276.300201416 276.319732666 276.170318604 276.059967041 276.300201416 276.699615479 276.809967041 276.550201416 276.140045166 275.519927979 274.460357666 273.100006104 267.780395508 268.280395508 268.559692383 268.50012207 268.189575195 267.939575195 267.91027832 268.009887695 268.080200195 268.059692383 267.950317383 267.790161133 267.559692383 267.25012207 266.689575195 265.76965332 264.530395508 256.840332031 257.560058594 257.779785156 257.479980469 257.029785156 256.779785156 256.729980469 256.720214844 256.720214844 256.829589844 256.979980469 257.020019531 256.880371094 256.590332031 256.100097656 255.170425415 253.739761353 241.439849854 242.069732666 242.399810791 242.460357666 242.290435791 241.939849854 241.569732666 241.330474854 241.309967041 241.449615479 241.630279541 241.699615479 241.590240479 241.250396729 240.809967041 240.290435791 239.559967041 231.870239258 232.310180664 232.540161133 232.650024414 232.620239258 232.400024414 232.049926758 231.739868164 231.580200195 231.569946289 231.569946289 231.549926758 231.520141602 231.480102539 231.42980957 231.210083008 230.75012207 220.600036621 220.699890137 220.67010498 220.58001709 220.42010498 220.140075684 219.779968262 219.459899902 219.279968262 219.269958496 219.390075684 219.600036621 219.840026855 220.08001709 220.25994873 220.269958496 220.110046387 207.820236206 207.140060425 206.64982605 206.300216675 205.959884644 205.620040894 205.39982605 205.339767456 205.370040894 205.450119019 205.640060425 205.939865112 206.320236206 206.729904175 207.120040894 207.550216675 208.0599823 196.329605103 195.09034729 194.27003479 193.920425415 194.060073853 194.489761353 194.970230103 195.310073853 195.439956665 195.279800415 194.829605103 194.220230103 193.729995728 193.529800415 193.649917603 194.079605103 194.890151978 197.849838257 196.679916382 195.740463257 194.990463257 194.460189819 194.069564819 193.750228882 193.559799194 193.569564819 193.660385132 193.620346069 193.460189819 193.349838257 193.330307007 193.130111694 192.769760132 192.830307007 206.020095825 205.339920044 204.799880981 204.399978638 204.10017395 203.870193481 203.649978638 203.469802856 203.399978638 203.4400177 203.540115356 203.660232544 203.839920044 204.10017395 204.290115356 204.330154419 204.469802856 217.489898682 217.299957275 217.100250244 216.810211182 216.560211182 216.54019165 216.770172119 216.989898682 217.049957275 216.949859619 216.830230713 216.679840088 216.480133057 216.259918213 216.230133057 216.54019165 217.159820557 219.869842529 219.760467529 219.690155029 219.699920654 219.749725342 219.739959717 219.589569092 219.320037842 219.140350342 219.159881592 219.339569092 219.480194092 219.390350342 219.230194092 219.390350342 220.029998779 220.810272217 228.400238037 227.810394287 227.259613037 226.789886475 226.429534912 226.259613037 226.329925537 226.5496521 226.679534912 226.660003662 226.740081787 227.230316162 228.129730225 229.169769287 230.140472412 231.039886475 231.890472412 297.029449463 297.810699463 298.439605713 298.490386963 298.199371338 298.250152588 298.679840088 298.910308838 298.689605713 298.509918213 298.609527588 298.609527588 298.220855713 297.830230713 298.099761963 299.140777588 300.339996338 291.210449219 291.860839844 292.399902344 292.579589844 292.479980469 292.499511719 292.729980469 292.919433594 292.890136719 292.849121094 292.979980469 293.280761719 293.800292969 294.700683594 295.950683594 297.200683594 297.880371094 286.66998291 286.820373535 286.910217285 287.00982666 287.070373535 287.179748535 287.469787598 287.83013916 288.019592285 288.019592285 288.00982666 288.229553223 288.83013916 289.750061035 290.750061035 291.549865723 291.960021973 282.250061035 282.08013916 282.030334473 282.16998291 282.089904785 281.629943848 281.250061035 281.40045166 281.84967041 282.000061035 281.74029541 281.479553223 281.519592285 281.549865723 281.09967041 280.16998291 279.290100098 275.779693604 276.250396729 276.500396729 276.390045166 276.199615479 276.229888916 276.290435791 276.149810791 275.989654541 276.170318604 276.550201416 276.699615479 276.519927979 276.199615479 275.609771729 274.479888916 272.979888916 267.610473633 268.080200195 268.399536133 268.420043945 268.189575195 267.960083008 267.899536133 267.969848633 268.07043457 268.099731445 267.990356445 267.76965332 267.50012207 267.219848633 266.700317383 265.790161133 264.460083008 256.920410156 257.680175781 257.899902344 257.560058594 257.060058594 256.779785156 256.739746094 256.760253906 256.779785156 256.869628906 256.999511719 257.020019531 256.890136719 256.640136719 256.140136719 255.170425415 253.670425415 241.649810791 242.300201416 242.569732666 242.569732666 242.390045166 242.069732666 241.680084229 241.399810791 241.350006104 241.479888916 241.659576416 241.750396729 241.689849854 241.439849854 241.029693604 240.449615479 239.630279541 232.109985352 232.529907227 232.699829102 232.75012207 232.67980957 232.409790039 232.020141602 231.710083008 231.580200195 231.58996582 231.609985352 231.600219727 231.600219727 231.609985352 231.529907227 231.290161133 230.819946289 220.900085449 220.890075684 220.769958496 220.640075684 220.469909668 220.160095215 219.749938965 219.390075684 219.180114746 219.17010498 219.33001709 219.58001709 219.860046387 220.130065918 220.340026855 220.400085449 220.309997559 207.959884644 207.269943237 206.820236206 206.490158081 206.089767456 205.640060425 205.330001831 205.22013855 205.229904175 205.289962769 205.490158081 205.870040894 206.330001831 206.740158081 207.120040894 207.589767456 208.200119019 195.989761353 194.670425415 193.85987854 193.600112915 193.850112915 194.409683228 194.999526978 195.420425415 195.59034729 195.43019104 194.920425415 194.220230103 193.640151978 193.420425415 193.60987854 194.100112915 194.890151978 197.849838257 196.689682007 195.719955444 194.950424194 194.439682007 194.099838257 193.819564819 193.620346069 193.620346069 193.719955444 193.719955444 193.609603882 193.620346069 193.689682007 193.479721069 193.069564819 193.099838257 206.089920044 205.449783325 204.969802856 204.609939575 204.330154419 204.069900513 203.830154419 203.620193481 203.520095825 203.52986145 203.60017395 203.679763794 203.810134888 203.980056763 204.169998169 204.35017395 204.699783325 217.3800354 217.159820557 216.860015869 216.46987915 216.21987915 216.270172119 216.509918213 216.739898682 216.850250244 216.869781494 216.799957275 216.659820557 216.489898682 216.3800354 216.360015869 216.420074463 216.730133057 219.919647217 219.810272217 219.779998779 219.860076904 219.940155029 219.919647217 219.749725342 219.489959717 219.260467529 219.209686279 219.379608154 219.600311279 219.549530029 219.329803467 219.419647217 220.129608154 221.119842529 228.379730225 227.85043335 227.310394287 226.770355225 226.339691162 226.110198975 226.160003662 226.400238037 226.610198975 226.650238037 226.679534912 226.999847412 227.820159912 228.999847412 230.140472412 230.910003662 231.339691162 296.869293213 297.679840088 298.379058838 298.470855713 298.189605713 298.300933838 298.859527588 299.150543213 298.859527588 298.480621338 298.449371338 298.429840088 297.959136963 297.230621338 296.970855713 297.759918213 299.359527588 291.190917969 291.929199219 292.530761719 292.649902344 292.450683594 292.489746094 292.870605469 293.089355469 292.909667969 292.659667969 292.720214844 293.069824219 293.599121094 294.349121094 295.290527344 296.310058594 297.030761719 286.710021973 286.929748535 287.049865723 287.160217285 287.210021973 287.299865723 287.58013916 287.889709473 288.00982666 287.950256348 287.950256348 288.190490723 288.690490723 289.410217285 290.229553223 290.969787598 291.429748535 281.799865723 281.719787598 281.84967041 282.110412598 282.059631348 281.610412598 281.250061035 281.389709473 281.860412598 282.09967041 281.91998291 281.629943848 281.559631348 281.559631348 281.210021973 280.370178223 279.450256348 275.850006104 276.430084229 276.670318604 276.430084229 276.119537354 276.130279541 276.229888916 276.100006104 275.920318604 276.080474854 276.460357666 276.640045166 276.529693604 276.269927979 275.689849854 274.489654541 272.909576416 267.420043945 267.860473633 268.189575195 268.26965332 268.130004883 267.91027832 267.809692383 267.860473633 268.009887695 268.110473633 268.009887695 267.740356445 267.469848633 267.210083008 266.75012207 265.83996582 264.439575195 257.079589844 257.800292969 257.979980469 257.590332031 257.069824219 256.800292969 256.779785156 256.829589844 256.869628906 256.960449219 257.039550781 257.029785156 256.909667969 256.680175781 256.180175781 255.189956665 253.689956665 241.890045166 242.529693604 242.720123291 242.640045166 242.439849854 242.119537354 241.720123291 241.409576416 241.350006104 241.500396729 241.670318604 241.760162354 241.729888916 241.580474854 241.220123291 240.609771729 239.720123291 232.359985352 232.759887695 232.870239258 232.850219727 232.719848633 232.400024414 231.949829102 231.600219727 231.480102539 231.529907227 231.58996582 231.620239258 231.670043945 231.719848633 231.639770508 231.370239258 230.920043945 221.150085449 221.059997559 220.890075684 220.749938965 220.549987793 220.199890137 219.75994873 219.370056152 219.140075684 219.090026855 219.219909668 219.479919434 219.799987793 220.120056152 220.380065918 220.50994873 220.519958496 208.0599823 207.359786987 206.939865112 206.609786987 206.160079956 205.629806519 205.249923706 205.129806519 205.140060425 205.200119019 205.410079956 205.820236206 206.320236206 206.740158081 207.140060425 207.660079956 208.350021362 195.649917603 194.329605103 193.52003479 193.279800415 193.579605103 194.229995728 194.93019104 195.44972229 195.670425415 195.53956604 195.029800415 194.260269165 193.59034729 193.34034729 193.59034729 194.170425415 194.970230103 197.819564819 196.660385132 195.689682007 194.969955444 194.540267944 194.300033569 194.019760132 193.779525757 193.710189819 193.769760132 193.740463257 193.639877319 193.679916382 193.800033569 193.649642944 193.300033569 193.439682007 206.129959106 205.52986145 205.089920044 204.730056763 204.379959106 204.060134888 203.790115356 203.60017395 203.509841919 203.540115356 203.629959106 203.739822388 203.839920044 203.949783325 204.120193481 204.410232544 204.949783325 217.270172119 216.989898682 216.6300354 216.259918213 216.119781494 216.279937744 216.54019165 216.690093994 216.79019165 216.889801025 216.869781494 216.670074463 216.480133057 216.500152588 216.560211182 216.46987915 216.480133057 220.029998779 219.900115967 219.930389404 220.039764404 220.079803467 219.930389404 219.699920654 219.480194092 219.279998779 219.180389404 219.310272217 219.579803467 219.640350342 219.409881592 219.320037842 219.879608154 220.869842529 228.320159912 227.8699646 227.2996521 226.660003662 226.179534912 226.020355225 226.150238037 226.410003662 226.640472412 226.70980835 226.70980835 226.910003662 227.6199646 228.879730225 230.249847412 231.10043335 231.379730225 296.779449463 297.650543213 298.349761963 298.449371338 298.259918213 298.490386963 299.070465088 299.220855713 298.759918213 298.349761963 298.379058838 298.470855713 298.109527588 297.410308838 296.920074463 297.300933838 298.660308838 291.280761719 292.110839844 292.679199219 292.700683594 292.489746094 292.640136719 293.069824219 293.210449219 292.909667969 292.659667969 292.819824219 293.269042969 293.860839844 294.569824219 295.310058594 295.979980469 296.470214844 286.75982666 287.08013916 287.25982666 287.34967041 287.339904785 287.41998291 287.710021973 287.979553223 288.00982666 287.90045166 287.979553223 288.339904785 288.90045166 289.519592285 290.110412598 290.610412598 290.83013916 281.360412598 281.389709473 281.700256348 282.040100098 282.00982666 281.629943848 281.33013916 281.450256348 281.839904785 282.070373535 281.910217285 281.549865723 281.33013916 281.290100098 281.070373535 280.41998291 279.540100098 275.979888916 276.640045166 276.809967041 276.439849854 276.059967041 276.050201416 276.180084229 276.069732666 275.909576416 276.090240479 276.479888916 276.670318604 276.559967041 276.300201416 275.710357666 274.500396729 272.899810791 267.290161133 267.700317383 267.979614258 268.08996582 268.009887695 267.82043457 267.700317383 267.75012207 267.92980957 268.07043457 267.979614258 267.710083008 267.439575195 267.210083008 266.799926758 265.91027832 264.490356445 257.220214844 257.880371094 257.979980469 257.569824219 257.069824219 256.829589844 256.840332031 256.899902344 256.939941406 257.029785156 257.109863281 257.069824219 256.930175781 256.699707031 256.220214844 255.239761353 253.760269165 242.119537354 242.750396729 242.869537354 242.699615479 242.460357666 242.119537354 241.720123291 241.390045166 241.340240479 241.510162354 241.670318604 241.729888916 241.720123291 241.640045166 241.369537354 240.779693604 239.850006104 232.639770508 232.989868164 233.029907227 232.940063477 232.75012207 232.380004883 231.889770508 231.489868164 231.359985352 231.42980957 231.540161133 231.639770508 231.75012207 231.83996582 231.759887695 231.489868164 231.060180664 221.340026855 221.17010498 220.969909668 220.809997559 220.590026855 220.209899902 219.769958496 219.400085449 219.150085449 219.049987793 219.140075684 219.400085449 219.75994873 220.110046387 220.390075684 220.58001709 220.680114746 208.089767456 207.410079956 206.999923706 206.660079956 206.160079956 205.5599823 205.14982605 205.039962769 205.120040894 205.22013855 205.439865112 205.820236206 206.269943237 206.700119019 207.120040894 207.680099487 208.439865112 195.369644165 194.10987854 193.350112915 193.09034729 193.369644165 194.079605103 194.880386353 195.470230103 195.68019104 195.52003479 195.02003479 194.279800415 193.59034729 193.319839478 193.60987854 194.279800415 195.09034729 197.670150757 196.479721069 195.559799194 194.939682007 194.620346069 194.439682007 194.160385132 193.880111694 193.769760132 193.809799194 193.740463257 193.599838257 193.599838257 193.729721069 193.670150757 193.479721069 193.779525757 206.10017395 205.549880981 205.120193481 204.719802856 204.310134888 203.960037231 203.710037231 203.560134888 203.509841919 203.569900513 203.710037231 203.859939575 203.9400177 204.009841919 204.160232544 204.520095825 205.120193481 217.270172119 216.96987915 216.589996338 216.250152588 216.190093994 216.409820557 216.580230713 216.619781494 216.730133057 216.940093994 216.940093994 216.619781494 216.400054932 216.560211182 216.819976807 216.730133057 216.560211182 220.010467529 219.850311279 219.900115967 220.039764404 219.999725342 219.730194092 219.480194092 219.379608154 219.310272217 219.190155029 219.249725342 219.539764404 219.699920654 219.430389404 219.079803467 219.270233154 220.100311279 228.28012085 227.910003662 227.320159912 226.660003662 226.270355225 226.270355225 226.490081787 226.660003662 226.759613037 226.820159912 226.8699646 227.020355225 227.589691162 228.839691162 230.429534912 231.610198975 232.039886475 296.920074463 297.869293213 298.509918213 298.539215088 298.390777588 298.660308838 299.050933838 298.890777588 298.320465088 298.070465088 298.230621338 298.220855713 297.859527588 297.459136963 297.289215088 297.480621338 298.250152588 291.530761719 292.429199219 292.919433594 292.819824219 292.630371094 292.839355469 293.200683594 293.159667969 292.839355469 292.769042969 293.060058594 293.440917969 293.940917969 294.729980469 295.550292969 296.040527344 296.190917969 286.969787598 287.389709473 287.610412598 287.610412598 287.49029541 287.540100098 287.809631348 288.049865723 287.99029541 287.879943848 288.00982666 288.440490723 289.030334473 289.589904785 290.070373535 290.389709473 290.410217285 281.16998291 281.299865723 281.710021973 282.000061035 281.91998291 281.589904785 281.379943848 281.469787598 281.729553223 281.910217285 281.75982666 281.360412598 281.030334473 280.979553223 280.91998291 280.450256348 279.570373535 276.059967041 276.710357666 276.809967041 276.380279541 275.979888916 275.989654541 276.159576416 276.100006104 275.979888916 276.170318604 276.569732666 276.729888916 276.590240479 276.309967041 275.699615479 274.489654541 272.949615479 267.229614258 267.580200195 267.82043457 267.920043945 267.889770508 267.75012207 267.649536133 267.670043945 267.83996582 267.979614258 267.920043945 267.66027832 267.420043945 267.200317383 266.799926758 265.92980957 264.50012207 257.329589844 257.880371094 257.909667969 257.499511719 257.060058594 256.869628906 256.899902344 256.920410156 256.960449219 257.050292969 257.140136719 257.100097656 256.949707031 256.739746094 256.279785156 255.319839478 253.819839478 242.359771729 242.949615479 243.000396729 242.750396729 242.449615479 242.100006104 241.680084229 241.340240479 241.319732666 241.519927979 241.699615479 241.710357666 241.670318604 241.659576416 241.510162354 240.979888916 240.040435791 232.960083008 233.230102539 233.170043945 232.989868164 232.739868164 232.350219727 231.830200195 231.409790039 231.25012207 231.319946289 231.489868164 231.670043945 231.83996582 231.969848633 231.92980957 231.67980957 231.290161133 221.479919434 221.229919434 221.00994873 220.850036621 220.590026855 220.17010498 219.739929199 219.400085449 219.160095215 219.019958496 219.090026855 219.400085449 219.809997559 220.17010498 220.430114746 220.640075684 220.809997559 208.089767456 207.439865112 207.050216675 206.680099487 206.120040894 205.47013855 205.039962769 204.959884644 205.109786987 205.289962769 205.530197144 205.859786987 206.240158081 206.609786987 207.050216675 207.660079956 208.459884644 195.149917603 193.970230103 193.220230103 192.920425415 193.18019104 193.94972229 194.85987854 195.470230103 195.600112915 195.350112915 194.850112915 194.210464478 193.600112915 193.28956604 193.529800415 194.229995728 195.159683228 197.410385132 196.219955444 195.370346069 194.880111694 194.660385132 194.500228882 194.219955444 193.929916382 193.840072632 193.889877319 193.809799194 193.609603882 193.569564819 193.719955444 193.759994507 193.670150757 194.040267944 206.040115356 205.52986145 205.120193481 204.699783325 204.27986145 203.949783325 203.77986145 203.679763794 203.629959106 203.669998169 203.810134888 203.9400177 203.969802856 204.009841919 204.169998169 204.540115356 205.10017395 217.310211182 217.009918213 216.619781494 216.270172119 216.190093994 216.299957275 216.350250244 216.339996338 216.589996338 216.989898682 217.049957275 216.6300354 216.330230713 216.650054932 217.170074463 217.179840088 216.900054932 219.860076904 219.669647217 219.730194092 219.879608154 219.839569092 219.579803467 219.419647217 219.470428467 219.489959717 219.329803467 219.299530029 219.549530029 219.749725342 219.390350342 218.730194092 218.520233154 219.129608154 228.310394287 227.95980835 227.400238037 226.820159912 226.560394287 226.6199646 226.730316162 226.669769287 226.629730225 226.749847412 226.95980835 227.129730225 227.60043335 228.7996521 230.660003662 232.320159912 233.070159912 297.039215088 298.089996338 298.699371338 298.689605713 298.589996338 298.839996338 298.970855713 298.529449463 298.039215088 298.129058838 298.359527588 297.980621338 297.339996338 297.330230713 297.859527588 298.209136963 298.339996338 291.790527344 292.739746094 293.140136719 292.989746094 292.829589844 293.019042969 293.200683594 292.999511719 292.800292969 293.009277344 293.329589844 293.399902344 293.679199219 294.700683594 295.940917969 296.470214844 296.200683594 287.41998291 287.889709473 288.070373535 287.960021973 287.729553223 287.719787598 287.960021973 288.09967041 288.000061035 287.860412598 288.000061035 288.410217285 288.940490723 289.549865723 290.179748535 290.65045166 290.719787598 281.280334473 281.50982666 281.90045166 282.040100098 281.809631348 281.49029541 281.33013916 281.379943848 281.540100098 281.660217285 281.540100098 281.15045166 280.799865723 280.780334473 280.84967041 280.500061035 279.629943848 276.029693604 276.649810791 276.699615479 276.290435791 275.920318604 275.979888916 276.180084229 276.180084229 276.109771729 276.300201416 276.649810791 276.779693604 276.640045166 276.319732666 275.670318604 274.449615479 272.920318604 267.17980957 267.50012207 267.670043945 267.75012207 267.75012207 267.689575195 267.630004883 267.649536133 267.76965332 267.870239258 267.82043457 267.620239258 267.420043945 267.189575195 266.759887695 265.880004883 264.420043945 257.399902344 257.859863281 257.829589844 257.420410156 257.020019531 256.890136719 256.909667969 256.899902344 256.909667969 257.020019531 257.119628906 257.100097656 256.979980469 256.800292969 256.359863281 255.380386353 253.819839478 242.619537354 243.140045166 243.109771729 242.769927979 242.420318604 242.059967041 241.649810791 241.300201416 241.279693604 241.510162354 241.670318604 241.640045166 241.609771729 241.680084229 241.670318604 241.250396729 240.309967041 233.25012207 233.42980957 233.279907227 233.009887695 232.710083008 232.310180664 231.799926758 231.370239258 231.17980957 231.25012207 231.440063477 231.67980957 231.920043945 232.100219727 232.109985352 231.949829102 231.600219727 221.600036621 221.320007324 221.120056152 220.969909668 220.660095215 220.17010498 219.699890137 219.360046387 219.100036621 218.940124512 219.029968262 219.410095215 219.900085449 220.289978027 220.539978027 220.769958496 220.999938965 208.0599823 207.47013855 207.080001831 206.669845581 206.100021362 205.450119019 205.010177612 204.919845581 205.089767456 205.330001831 205.600021362 205.879806519 206.180099487 206.499923706 206.959884644 207.620040894 208.459884644 194.899917603 193.760269165 193.010269165 192.68019104 192.920425415 193.739761353 194.760269165 195.420425415 195.489761353 195.140151978 194.649917603 194.159683228 193.640151978 193.229995728 193.260269165 193.93019104 195.060073853 197.189682007 196.040267944 195.309799194 194.939682007 194.779525757 194.599838257 194.300033569 194.029525757 193.979721069 194.009994507 193.880111694 193.660385132 193.649642944 193.840072632 193.889877319 193.779525757 194.059799194 205.989822388 205.509841919 205.089920044 204.649978638 204.259841919 204.009841919 203.910232544 203.85017395 203.77986145 203.799880981 203.919998169 203.980056763 203.919998169 203.899978638 204.060134888 204.419998169 204.890213013 217.330230713 217.049957275 216.670074463 216.279937744 216.119781494 216.119781494 216.089996338 216.139801025 216.549957275 217.139801025 217.250152588 216.759918213 216.409820557 216.839996338 217.549957275 217.670074463 217.360015869 219.760467529 219.570037842 219.570037842 219.720428467 219.760467529 219.659881592 219.650115967 219.760467529 219.699920654 219.400115967 219.239959717 219.489959717 219.690155029 219.270233154 218.369842529 217.850311279 218.289764404 228.2996521 227.929534912 227.450042725 226.990081787 226.740081787 226.660003662 226.509613037 226.28012085 226.28012085 226.640472412 227.0496521 227.230316162 227.570159912 228.810394287 231.020355225 233.200042725 234.259613037 296.970855713 298.070465088 298.709136963 298.779449463 298.820465088 299.099761963 299.070465088 298.519683838 298.259918213 298.750152588 299.070465088 298.349761963 297.490386963 297.890777588 299.160308838 299.740386963 299.250152588 291.979980469 292.870605469 293.229980469 293.099121094 292.999511719 293.159667969 293.190917969 292.950683594 292.970214844 293.429199219 293.669433594 293.380371094 293.560058594 295.009277344 296.819824219 297.419433594 296.599121094 288.00982666 288.41998291 288.519592285 288.320373535 288.040100098 287.979553223 288.120178223 288.16998291 287.99029541 287.84967041 287.960021973 288.320373535 288.879943848 289.74029541 290.820373535 291.75982666 292.00982666 281.540100098 281.799865723 282.09967041 282.070373535 281.710021973 281.370178223 281.24029541 281.250061035 281.320373535 281.40045166 281.299865723 280.91998291 280.540100098 280.540100098 280.710021973 280.469787598 279.66998291 275.979888916 276.529693604 276.609771729 276.260162354 275.939849854 275.989654541 276.210357666 276.290435791 276.269927979 276.420318604 276.680084229 276.779693604 276.659576416 276.350006104 275.630279541 274.290435791 272.670318604 267.149536133 267.450317383 267.57043457 267.599731445 267.610473633 267.639770508 267.649536133 267.649536133 267.689575195 267.729614258 267.710083008 267.58996582 267.41027832 267.170043945 266.700317383 265.799926758 264.299926758 257.460449219 257.869628906 257.779785156 257.369628906 256.999511719 256.890136719 256.890136719 256.859863281 256.869628906 256.989746094 257.100097656 257.100097656 257.020019531 256.880371094 256.460449219 255.470230103 253.85987854 242.880279541 243.309967041 243.199615479 242.809967041 242.409576416 242.040435791 241.619537354 241.279693604 241.229888916 241.449615479 241.569732666 241.519927979 241.500396729 241.689849854 241.840240479 241.550201416 240.670318604 233.480102539 233.580200195 233.370239258 233.049926758 232.719848633 232.299926758 231.799926758 231.370239258 231.17980957 231.239868164 231.440063477 231.699829102 231.980102539 232.190063477 232.270141602 232.219848633 231.989868164 221.699890137 221.449890137 221.309997559 221.190124512 220.840026855 220.25994873 219.719909668 219.340026855 219.059997559 218.900085449 218.999938965 219.42010498 219.930114746 220.340026855 220.640075684 220.940124512 221.25994873 207.999923706 207.47013855 207.0599823 206.609786987 206.019943237 205.450119019 205.050216675 204.930099487 205.039962769 205.269943237 205.570236206 205.850021362 206.109786987 206.430099487 206.89982605 207.570236206 208.430099487 194.600112915 193.479995728 192.729995728 192.369644165 192.600112915 193.439956665 194.52003479 195.27003479 195.34034729 194.970230103 194.550308228 194.19972229 193.739761353 193.170425415 192.920425415 193.470230103 194.78956604 197.099838257 196.050033569 195.429916382 195.149642944 194.990463257 194.769760132 194.460189819 194.219955444 194.160385132 194.120346069 193.920150757 193.660385132 193.670150757 193.880111694 193.920150757 193.710189819 193.809799194 205.879959106 205.390213013 204.9400177 204.509841919 204.149978638 203.969802856 203.929763794 203.85017395 203.750076294 203.77986145 203.949783325 204.02986145 203.919998169 203.819900513 203.960037231 204.270095825 204.679763794 217.389801025 217.139801025 216.770172119 216.369781494 216.179840088 216.179840088 216.210113525 216.330230713 216.79019165 217.3800354 217.46987915 216.929840088 216.569976807 216.989898682 217.750152588 217.980133057 217.710113525 219.789764404 219.549530029 219.449920654 219.549530029 219.690155029 219.760467529 219.829803467 219.820037842 219.539764404 219.070037842 218.890350342 219.230194092 219.529998779 219.119842529 218.150115967 217.470428467 217.760467529 228.1902771 227.85043335 227.480316162 227.1199646 226.7996521 226.480316162 226.169769287 226.03012085 226.339691162 227.009613037 227.499847412 227.499847412 227.6199646 228.890472412 231.45980835 234.10043335 235.360198975 296.910308838 297.980621338 298.660308838 298.859527588 299.019683838 299.320465088 299.220855713 298.660308838 298.550933838 299.289215088 299.779449463 299.199371338 298.619293213 299.490386963 301.160308838 301.699371338 300.629058838 292.249511719 292.979980469 293.239746094 293.159667969 293.140136719 293.269042969 293.249511719 293.089355469 293.300292969 293.849121094 293.989746094 293.620605469 293.999511719 295.919433594 298.110839844 298.610839844 297.239746094 288.58013916 288.84967041 288.83013916 288.58013916 288.290100098 288.190490723 288.229553223 288.160217285 287.950256348 287.799865723 287.90045166 288.269592285 289.000061035 290.219787598 291.820373535 293.210021973 293.559631348 281.769592285 281.979553223 282.15045166 281.979553223 281.570373535 281.250061035 281.139709473 281.129943848 281.160217285 281.190490723 281.040100098 280.59967041 280.139709473 280.08013916 280.25982666 280.16998291 279.589904785 275.939849854 276.449615479 276.550201416 276.260162354 275.970123291 275.979888916 276.220123291 276.369537354 276.420318604 276.510162354 276.659576416 276.710357666 276.640045166 276.359771729 275.559967041 274.059967041 272.250396729 267.210083008 267.540161133 267.58996582 267.509887695 267.50012207 267.580200195 267.66027832 267.649536133 267.610473633 267.610473633 267.620239258 267.559692383 267.420043945 267.170043945 266.700317383 265.790161133 264.259887695 257.590332031 257.960449219 257.829589844 257.399902344 257.029785156 256.909667969 256.880371094 256.850097656 256.869628906 256.989746094 257.109863281 257.130371094 257.090332031 256.989746094 256.579589844 255.60987854 254.02003479 243.080474854 243.439849854 243.319732666 242.909576416 242.479888916 242.080474854 241.640045166 241.279693604 241.220123291 241.359771729 241.439849854 241.359771729 241.390045166 241.670318604 241.939849854 241.819732666 241.069732666 233.630004883 233.659790039 233.460083008 233.170043945 232.810180664 232.350219727 231.830200195 231.400024414 231.230102539 231.299926758 231.509887695 231.759887695 232.020141602 232.239868164 232.389770508 232.440063477 232.359985352 221.799987793 221.570007324 221.499938965 221.410095215 221.039978027 220.390075684 219.75994873 219.340026855 219.08001709 218.959899902 219.090026855 219.459899902 219.910095215 220.299987793 220.690124512 221.110046387 221.529968262 207.919845581 207.419845581 206.950119019 206.419845581 205.870040894 205.430099487 205.14982605 204.990158081 204.97013855 205.120040894 205.430099487 205.769943237 206.0599823 206.390060425 206.870040894 207.510177612 208.320236206 194.310073853 193.210464478 192.489761353 192.149917603 192.319839478 193.079605103 194.130386353 194.939956665 195.119644165 194.819839478 194.479995728 194.249526978 193.850112915 193.159683228 192.640151978 193.010269165 194.43019104 197.069564819 196.099838257 195.580307007 195.340072632 195.160385132 194.910385132 194.630111694 194.439682007 194.380111694 194.279525757 194.009994507 193.689682007 193.620346069 193.769760132 193.779525757 193.529525757 193.509994507 205.719802856 205.219802856 204.790115356 204.390213013 204.069900513 203.9400177 203.859939575 203.719802856 203.560134888 203.640213013 203.910232544 204.10017395 204.02986145 203.899978638 203.969802856 204.239822388 204.640213013 217.509918213 217.239898682 216.830230713 216.400054932 216.259918213 216.400054932 216.589996338 216.750152588 217.100250244 217.489898682 217.489898682 217.009918213 216.650054932 216.960113525 217.610015869 217.889801025 217.779937744 219.779998779 219.510467529 219.329803467 219.369842529 219.549530029 219.669647217 219.690155029 219.499725342 219.049530029 218.529998779 218.449920654 218.900115967 219.350311279 219.089569092 218.220428467 217.520233154 217.650115967 228.1199646 227.85043335 227.589691162 227.270355225 226.890472412 226.499847412 226.240081787 226.3699646 227.020355225 227.85043335 228.219573975 227.929534912 227.770355225 228.900238037 231.560394287 234.4402771 235.910003662 297.170074463 298.150543213 298.830230713 299.019683838 299.109527588 299.259918213 299.070465088 298.470855713 298.279449463 298.929840088 299.629058838 299.670074463 299.849761963 301.109527588 302.640777588 302.759918213 301.300933838 292.769042969 293.249511719 293.370605469 293.269042969 293.239746094 293.349121094 293.329589844 293.239746094 293.450683594 293.899902344 294.009277344 293.929199219 294.749511719 296.909667969 298.960449219 299.140136719 297.429199219 289.129943848 289.15045166 288.969787598 288.719787598 288.460021973 288.299865723 288.210021973 288.08013916 287.870178223 287.710021973 287.790100098 288.210021973 289.120178223 290.59967041 292.40045166 293.84967041 294.089904785 281.960021973 282.049865723 282.08013916 281.809631348 281.379943848 281.09967041 281.040100098 281.049865723 281.08013916 281.070373535 280.84967041 280.299865723 279.729553223 279.530334473 279.639709473 279.639709473 279.34967041 275.930084229 276.350006104 276.430084229 276.199615479 275.920318604 275.909576416 276.159576416 276.399810791 276.500396729 276.529693604 276.550201416 276.540435791 276.479888916 276.260162354 275.449615479 273.890045166 271.930084229 267.399536133 267.75012207 267.740356445 267.540161133 267.450317383 267.549926758 267.66027832 267.649536133 267.559692383 267.540161133 267.580200195 267.580200195 267.469848633 267.229614258 266.780395508 265.889770508 264.349731445 257.789550781 258.149902344 257.999511719 257.569824219 257.149902344 256.939941406 256.859863281 256.829589844 256.890136719 257.020019531 257.140136719 257.180175781 257.180175781 257.079589844 256.689941406 255.78956604 254.310073853 243.229888916 243.580474854 243.489654541 243.109771729 242.649810791 242.180084229 241.699615479 241.319732666 241.210357666 241.300201416 241.330474854 241.260162354 241.319732666 241.640045166 241.989654541 241.989654541 241.430084229 233.710083008 233.730102539 233.580200195 233.33996582 232.960083008 232.42980957 231.830200195 231.389770508 231.239868164 231.33996582 231.569946289 231.830200195 232.080200195 232.290161133 232.469848633 232.609985352 232.650024414 221.890075684 221.690124512 221.630065918 221.539978027 221.140075684 220.459899902 219.789978027 219.350036621 219.130065918 219.100036621 219.249938965 219.559997559 219.900085449 220.25994873 220.699890137 221.199890137 221.680114746 207.830001831 207.339767456 206.789962769 206.180099487 205.680099487 205.410079956 205.269943237 205.089767456 204.919845581 204.950119019 205.240158081 205.629806519 205.999923706 206.379806519 206.859786987 207.439865112 208.14982605 194.03956604 193.010269165 192.35987854 192.029800415 192.10987854 192.670425415 193.600112915 194.460464478 194.829605103 194.69972229 194.399917603 194.18019104 193.810073853 193.100112915 192.460464478 192.689956665 194.029800415 196.990463257 196.099838257 195.639877319 195.429916382 195.240463257 195.000228882 194.759994507 194.639877319 194.609603882 194.529525757 194.269760132 193.899642944 193.660385132 193.649642944 193.639877319 193.479721069 193.479721069 205.589920044 205.140213013 204.790115356 204.460037231 204.210037231 204.060134888 203.929763794 203.710037231 203.489822388 203.540115356 203.870193481 204.149978638 204.169998169 204.069900513 204.089920044 204.290115356 204.719802856 217.549957275 217.199859619 216.690093994 216.190093994 216.049957275 216.330230713 216.679840088 216.889801025 217.060211182 217.259918213 217.250152588 216.940093994 216.670074463 216.770172119 217.139801025 217.400054932 217.520172119 219.690155029 219.440155029 219.279998779 219.329803467 219.489959717 219.549530029 219.459686279 219.199920654 218.779998779 218.390350342 218.360076904 218.789764404 219.249725342 219.190155029 218.619842529 218.049530029 218.010467529 228.240081787 227.990081787 227.730316162 227.390472412 227.020355225 226.740081787 226.669769287 226.950042725 227.589691162 228.270355225 228.490081787 228.150238037 227.890472412 228.740081787 230.999847412 233.70980835 235.379730225 297.619293213 298.519683838 299.160308838 299.250152588 299.070465088 298.929840088 298.640777588 298.039215088 297.629058838 297.910308838 298.619293213 299.310699463 300.230621338 301.500152588 302.310699463 301.800933838 300.279449463 293.429199219 293.630371094 293.579589844 293.460449219 293.380371094 293.370605469 293.290527344 293.149902344 293.179199219 293.370605469 293.560058594 293.979980469 295.220214844 297.140136719 298.499511719 298.220214844 296.540527344 289.66998291 289.389709473 289.059631348 288.820373535 288.58013916 288.34967041 288.16998291 288.049865723 287.879943848 287.710021973 287.710021973 288.129943848 289.110412598 290.519592285 292.000061035 293.030334473 292.940490723 282.190490723 282.160217285 282.040100098 281.660217285 281.219787598 280.99029541 280.99029541 281.040100098 281.070373535 281.059631348 280.790100098 280.200256348 279.570373535 279.25982666 279.210021973 279.139709473 278.969787598 275.920318604 276.210357666 276.250396729 276.059967041 275.809967041 275.800201416 276.069732666 276.359771729 276.500396729 276.470123291 276.369537354 276.260162354 276.170318604 276.010162354 275.340240479 273.890045166 271.909576416 267.620239258 268.030395508 267.960083008 267.670043945 267.479614258 267.540161133 267.639770508 267.599731445 267.50012207 267.50012207 267.580200195 267.630004883 267.549926758 267.33996582 266.920043945 266.040161133 264.51965332 258.060058594 258.399902344 258.249511719 257.819824219 257.359863281 257.020019531 256.829589844 256.779785156 256.869628906 256.999511719 257.119628906 257.199707031 257.249511719 257.159667969 256.770019531 255.960464478 254.619644165 243.380279541 243.720123291 243.670318604 243.319732666 242.819732666 242.269927979 241.720123291 241.309967041 241.170318604 241.239654541 241.279693604 241.260162354 241.380279541 241.689849854 242.019927979 242.090240479 241.729888916 233.770141602 233.799926758 233.730102539 233.529907227 233.130004883 232.50012207 231.810180664 231.319946289 231.159790039 231.290161133 231.549926758 231.850219727 232.130004883 232.350219727 232.540161133 232.710083008 232.83996582 222.00994873 221.820007324 221.729919434 221.58001709 221.17010498 220.519958496 219.850036621 219.390075684 219.180114746 219.199890137 219.400085449 219.680114746 219.959899902 220.269958496 220.709899902 221.229919434 221.719909668 207.740158081 207.249923706 206.64982605 205.999923706 205.5599823 205.439865112 205.430099487 205.269943237 204.97013855 204.859786987 205.080001831 205.510177612 205.939865112 206.350021362 206.830001831 207.359786987 207.990158081 193.850112915 192.909683228 192.319839478 191.979995728 191.920425415 192.239761353 192.989761353 193.93019104 194.59034729 194.689956665 194.399917603 194.029800415 193.569839478 192.899917603 192.329605103 192.510269165 193.68019104 196.859603882 196.040267944 195.649642944 195.490463257 195.340072632 195.120346069 194.910385132 194.790267944 194.769760132 194.759994507 194.590072632 194.219955444 193.800033569 193.559799194 193.569564819 193.630111694 193.759994507 205.569900513 205.199783325 204.9400177 204.679763794 204.419998169 204.270095825 204.149978638 203.9400177 203.710037231 203.679763794 203.910232544 204.160232544 204.239822388 204.1900177 204.179763794 204.290115356 204.730056763 217.369781494 216.940093994 216.369781494 215.830230713 215.670074463 215.940093994 216.319976807 216.529937744 216.600250244 216.71987915 216.850250244 216.850250244 216.71987915 216.610015869 216.600250244 216.730133057 217.04019165 219.610076904 219.440155029 219.390350342 219.499725342 219.619842529 219.579803467 219.430389404 219.279998779 219.119842529 218.949920654 218.879608154 218.989959717 219.220428467 219.289764404 219.089569092 218.789764404 218.659881592 228.480316162 228.140472412 227.759613037 227.339691162 227.039886475 226.950042725 226.969573975 227.089691162 227.289886475 227.570159912 227.820159912 227.900238037 227.990081787 228.560394287 229.999847412 232.070159912 233.7996521 297.859527588 298.720855713 299.339996338 299.410308838 299.039215088 298.670074463 298.349761963 297.859527588 297.320465088 297.189605713 297.670074463 298.640777588 299.769683838 300.519683838 300.300933838 299.199371338 297.920074463 294.040527344 293.929199219 293.749511719 293.640136719 293.530761719 293.380371094 293.169433594 292.909667969 292.669433594 292.589355469 292.870605469 293.729980469 295.130371094 296.419433594 296.790527344 296.079589844 294.720214844 290.250061035 289.639709473 289.15045166 288.910217285 288.710021973 288.41998291 288.219787598 288.160217285 288.110412598 287.910217285 287.769592285 288.110412598 289.000061035 290.049865723 290.860412598 291.200256348 290.769592285 282.429748535 282.360412598 282.09967041 281.589904785 281.129943848 280.969787598 281.030334473 281.129943848 281.190490723 281.16998291 280.90045166 280.370178223 279.820373535 279.49029541 279.25982666 278.940490723 278.559631348 275.930084229 276.119537354 276.119537354 275.960357666 275.750396729 275.720123291 275.960357666 276.260162354 276.409576416 276.350006104 276.170318604 275.949615479 275.779693604 275.649810791 275.189849854 274.000396729 272.140045166 267.790161133 268.25012207 268.189575195 267.809692383 267.530395508 267.50012207 267.57043457 267.51965332 267.420043945 267.439575195 267.57043457 267.66027832 267.639770508 267.469848633 267.080200195 266.210083008 264.649536133 258.279785156 258.590332031 258.470214844 258.069824219 257.569824219 257.109863281 256.800292969 256.710449219 256.779785156 256.880371094 256.979980469 257.130371094 257.270019531 257.220214844 256.850097656 256.119628906 254.909683228 243.500396729 243.790435791 243.750396729 243.409576416 242.890045166 242.260162354 241.649810791 241.210357666 241.069732666 241.149810791 241.260162354 241.350006104 241.519927979 241.819732666 242.090240479 242.199615479 242.010162354 233.819946289 233.870239258 233.859985352 233.67980957 233.25012207 232.560180664 231.819946289 231.279907227 231.08996582 231.199829102 231.460083008 231.790161133 232.120239258 232.400024414 232.600219727 232.770141602 232.969848633 222.160095215 221.989929199 221.840026855 221.600036621 221.180114746 220.610046387 220.029968262 219.570007324 219.289978027 219.269958496 219.479919434 219.75994873 220.029968262 220.320007324 220.729919434 221.199890137 221.67010498 207.640060425 207.160079956 206.570236206 205.950119019 205.550216675 205.519943237 205.600021362 205.47013855 205.129806519 204.919845581 205.080001831 205.47013855 205.89982605 206.3099823 206.760177612 207.289962769 207.919845581 193.78956604 192.939956665 192.369644165 191.970230103 191.739761353 191.819839478 192.390151978 193.380386353 194.319839478 194.69972229 194.460464478 193.880386353 193.249526978 192.619644165 192.229995728 192.479995728 193.499526978 196.719955444 195.950424194 195.630111694 195.529525757 195.450424194 195.309799194 195.139877319 194.960189819 194.859603882 194.840072632 194.779525757 194.479721069 193.920150757 193.500228882 193.519760132 193.809799194 194.120346069 205.640213013 205.310134888 205.060134888 204.770095825 204.469802856 204.290115356 204.250076294 204.179763794 204.069900513 204.02986145 204.10017395 204.199783325 204.259841919 204.270095825 204.239822388 204.230056763 204.580154419 217.04019165 216.650054932 216.199859619 215.770172119 215.600250244 215.770172119 216.04019165 216.150054932 216.1300354 216.21987915 216.46987915 216.739898682 216.79019165 216.54019165 216.179840088 216.100250244 216.500152588 219.690155029 219.560272217 219.539764404 219.650115967 219.709686279 219.619842529 219.499725342 219.560272217 219.739959717 219.810272217 219.619842529 219.320037842 219.190155029 219.270233154 219.419647217 219.409881592 219.220428467 228.6199646 228.20980835 227.679534912 227.20980835 227.009613037 227.020355225 226.999847412 226.770355225 226.419769287 226.270355225 226.629730225 227.390472412 228.110198975 228.579925537 229.160003662 230.35043335 231.900238037 297.990386963 298.679840088 299.279449463 299.500152588 299.220855713 298.779449463 298.420074463 298.039215088 297.519683838 297.160308838 297.390777588 298.259918213 299.119293213 299.109527588 298.019683838 296.619293213 295.699371338 294.630371094 294.140136719 293.819824219 293.780761719 293.729980469 293.470214844 293.140136719 292.800292969 292.409667969 292.120605469 292.390136719 293.429199219 294.710449219 295.280761719 294.829589844 293.919433594 292.950683594 290.910217285 289.91998291 289.24029541 288.969787598 288.799865723 288.549865723 288.41998291 288.49029541 288.50982666 288.250061035 287.99029541 288.200256348 288.910217285 289.559631348 289.74029541 289.49029541 288.83013916 282.559631348 282.519592285 282.179748535 281.58013916 281.110412598 281.030334473 281.16998291 281.299865723 281.370178223 281.34967041 281.139709473 280.729553223 280.34967041 280.110412598 279.780334473 279.120178223 278.290100098 275.930084229 276.119537354 276.149810791 276.019927979 275.779693604 275.670318604 275.830474854 276.090240479 276.239654541 276.199615479 276.010162354 275.720123291 275.470123291 275.309967041 275.000396729 274.069732666 272.380279541 267.91027832 268.420043945 268.380004883 267.960083008 267.559692383 267.460083008 267.490356445 267.460083008 267.370239258 267.370239258 267.490356445 267.58996582 267.620239258 267.559692383 267.219848633 266.330200195 264.719848633 258.399902344 258.640136719 258.539550781 258.210449219 257.699707031 257.149902344 256.770019531 256.649902344 256.670410156 256.689941406 256.749511719 256.949707031 257.210449219 257.270019531 256.979980469 256.319824219 255.18019104 243.540435791 243.750396729 243.689849854 243.359771729 242.840240479 242.210357666 241.569732666 241.109771729 240.960357666 241.059967041 241.239654541 241.430084229 241.659576416 241.930084229 242.170318604 242.340240479 242.300201416 233.880004883 233.949829102 233.92980957 233.730102539 233.290161133 232.620239258 231.920043945 231.409790039 231.199829102 231.219848633 231.420043945 231.719848633 232.069946289 232.380004883 232.600219727 232.799926758 233.049926758 222.309997559 222.190124512 221.979919434 221.640075684 221.180114746 220.729919434 220.309997559 219.890075684 219.539978027 219.42010498 219.549987793 219.789978027 220.070007324 220.370056152 220.739929199 221.140075684 221.590026855 207.550216675 207.089767456 206.5599823 205.990158081 205.609786987 205.5599823 205.669845581 205.609786987 205.350021362 205.160079956 205.240158081 205.550216675 205.910079956 206.269943237 206.689865112 207.229904175 207.910079956 193.850112915 193.119644165 192.529800415 192.02003479 191.619644165 191.479995728 191.78956604 192.630386353 193.68019104 194.319839478 194.239761353 193.649917603 192.94972229 192.420425415 192.229995728 192.59034729 193.52003479 196.540267944 195.790267944 195.460189819 195.429916382 195.479721069 195.529525757 195.509994507 195.359603882 195.130111694 194.979721069 194.910385132 194.630111694 194.019760132 193.469955444 193.460189819 193.899642944 194.349838257 205.719802856 205.35017395 205.049880981 204.6900177 204.310134888 204.080154419 204.060134888 204.149978638 204.239822388 204.290115356 204.310134888 204.299880981 204.310134888 204.35017395 204.319900513 204.210037231 204.379959106 216.810211182 216.529937744 216.310211182 216.150054932 216.089996338 216.199859619 216.310211182 216.29019165 216.179840088 216.1300354 216.299957275 216.619781494 216.770172119 216.480133057 215.909820557 215.639801025 216.020172119 219.860076904 219.650115967 219.529998779 219.529998779 219.539764404 219.470428467 219.419647217 219.579803467 219.930389404 220.169647217 220.010467529 219.539764404 219.190155029 219.260467529 219.570037842 219.680389404 219.390350342 228.610198975 228.219573975 227.700042725 227.249847412 227.060394287 227.03012085 226.919769287 226.570159912 226.039886475 225.669769287 225.950042725 227.009613037 228.179534912 228.719573975 228.78012085 229.28012085 230.53012085 298.599761963 298.800933838 299.240386963 299.660308838 299.670074463 299.230621338 298.679840088 298.150543213 297.660308838 297.339996338 297.509918213 298.189605713 298.689605713 298.199371338 296.740386963 295.369293213 294.699371338 295.550292969 294.530761719 293.970214844 293.970214844 293.960449219 293.679199219 293.329589844 293.060058594 292.679199219 292.280761719 292.399902344 293.319824219 294.319824219 294.440917969 293.649902344 292.800292969 292.130371094 291.660217285 290.309631348 289.410217285 289.049865723 288.889709473 288.729553223 288.74029541 288.91998291 288.960021973 288.610412598 288.219787598 288.299865723 288.84967041 289.269592285 289.129943848 288.59967041 287.84967041 282.549865723 282.59967041 282.25982666 281.620178223 281.160217285 281.129943848 281.290100098 281.389709473 281.440490723 281.469787598 281.370178223 281.120178223 280.889709473 280.769592285 280.460021973 279.589904785 278.299865723 275.859771729 276.140045166 276.279693604 276.170318604 275.869537354 275.640045166 275.680084229 275.899810791 276.069732666 276.080474854 275.930084229 275.649810791 275.340240479 275.119537354 274.830474854 274.040435791 272.470123291 268.009887695 268.540161133 268.540161133 268.099731445 267.630004883 267.439575195 267.469848633 267.479614258 267.399536133 267.349731445 267.360473633 267.399536133 267.460083008 267.509887695 267.26965332 266.42980957 264.809692383 258.399902344 258.550292969 258.470214844 258.189941406 257.699707031 257.140136719 256.760253906 256.630371094 256.600097656 256.520019531 256.499511719 256.739746094 257.100097656 257.289550781 257.119628906 256.569824219 255.510269165 243.470123291 243.649810791 243.569732666 243.290435791 242.819732666 242.229888916 241.600006104 241.130279541 240.960357666 241.069732666 241.279693604 241.510162354 241.739654541 241.979888916 242.210357666 242.449615479 242.580474854 233.940063477 234.00012207 233.920043945 233.699829102 233.270141602 232.699829102 232.120239258 231.710083008 231.509887695 231.480102539 231.560180664 231.75012207 232.049926758 232.33996582 232.560180664 232.770141602 233.100219727 222.469909668 222.400085449 222.150085449 221.699890137 221.190124512 220.799987793 220.499938965 220.209899902 219.880065918 219.680114746 219.699890137 219.880065918 220.110046387 220.400085449 220.729919434 221.08001709 221.50994873 207.530197144 207.109786987 206.64982605 206.109786987 205.680099487 205.530197144 205.570236206 205.589767456 205.47013855 205.370040894 205.439865112 205.669845581 205.959884644 206.260177612 206.640060425 207.160079956 207.870040894 193.899917603 193.249526978 192.600112915 191.979995728 191.479995728 191.159683228 191.130386353 191.560073853 192.380386353 193.149917603 193.390151978 193.130386353 192.649917603 192.319839478 192.34034729 192.800308228 193.640151978 196.359603882 195.550033569 195.170150757 195.149642944 195.359603882 195.710189819 196.040267944 196.130111694 195.880111694 195.540267944 195.259994507 194.889877319 194.219955444 193.559799194 193.439682007 193.899642944 194.460189819 205.750076294 205.379959106 205.02986145 204.640213013 204.219802856 203.910232544 203.759841919 203.799880981 203.960037231 204.169998169 204.299880981 204.319900513 204.330154419 204.399978638 204.410232544 204.270095825 204.330154419 216.860015869 216.560211182 216.460113525 216.520172119 216.679840088 216.850250244 216.980133057 216.96987915 216.819976807 216.600250244 216.500152588 216.569976807 216.650054932 216.369781494 215.770172119 215.400054932 215.730133057 219.930389404 219.619842529 219.369842529 219.289764404 219.299530029 219.289764404 219.220428467 219.230194092 219.409881592 219.680389404 219.749725342 219.539764404 219.329803467 219.430389404 219.720428467 219.709686279 219.169647217 228.5496521 228.259613037 227.85043335 227.450042725 227.150238037 226.9402771 226.829925537 226.810394287 226.700042725 226.379730225 226.289886475 226.910003662 227.969573975 228.589691162 228.589691162 228.879730225 229.980316162 300.000152588 299.390777588 299.410308838 299.920074463 300.189605713 299.750152588 298.839996338 297.980621338 297.470855713 297.339996338 297.619293213 298.209136963 298.519683838 297.939605713 296.629058838 295.490386963 294.859527588 296.860839844 295.220214844 294.300292969 294.190917969 294.200683594 293.909667969 293.620605469 293.489746094 293.269042969 292.860839844 292.790527344 293.409667969 294.159667969 294.149902344 293.460449219 292.829589844 292.229980469 292.49029541 290.83013916 289.690490723 289.200256348 289.00982666 288.960021973 289.09967041 289.309631348 289.269592285 288.83013916 288.379943848 288.389709473 288.839904785 289.179748535 289.040100098 288.50982666 287.690490723 282.50982666 282.639709473 282.360412598 281.769592285 281.34967041 281.280334473 281.33013916 281.33013916 281.370178223 281.500061035 281.530334473 281.379943848 281.229553223 281.200256348 280.950256348 280.059631348 278.559631348 275.699615479 276.109771729 276.350006104 276.269927979 275.920318604 275.619537354 275.619537354 275.819732666 275.979888916 276.010162354 275.909576416 275.680084229 275.380279541 275.119537354 274.779693604 274.000396729 272.470123291 268.099731445 268.610473633 268.620239258 268.189575195 267.670043945 267.450317383 267.490356445 267.549926758 267.50012207 267.360473633 267.229614258 267.16027832 267.200317383 267.330200195 267.240356445 266.50012207 264.950317383 258.319824219 258.409667969 258.350097656 258.100097656 257.630371094 257.090332031 256.739746094 256.640136719 256.569824219 256.420410156 256.350097656 256.569824219 256.979980469 257.270019531 257.239746094 256.819824219 255.880386353 243.340240479 243.559967041 243.529693604 243.290435791 242.880279541 242.340240479 241.750396729 241.300201416 241.130279541 241.229888916 241.439849854 241.619537354 241.790435791 241.960357666 242.170318604 242.479888916 242.750396729 234.00012207 234.040161133 233.909790039 233.620239258 233.210083008 232.75012207 232.319946289 232.020141602 231.870239258 231.810180664 231.810180664 231.920043945 232.130004883 232.359985352 232.540161133 232.730102539 233.08996582 222.630065918 222.570007324 222.320007324 221.820007324 221.229919434 220.799987793 220.549987793 220.350036621 220.110046387 219.92010498 219.890075684 220.00994873 220.199890137 220.469909668 220.769958496 221.070007324 221.449890137 207.629806519 207.280197144 206.859786987 206.320236206 205.800216675 205.479904175 205.410079956 205.430099487 205.419845581 205.410079956 205.490158081 205.669845581 205.930099487 206.229904175 206.600021362 207.089767456 207.780197144 193.670425415 193.029800415 192.329605103 191.670425415 191.210464478 190.829605103 190.489761353 190.390151978 190.77003479 191.510269165 192.170425415 192.420425415 192.350112915 192.279800415 192.470230103 192.970230103 193.739761353 196.250228882 195.389877319 194.950424194 194.929916382 195.240463257 195.870346069 196.620346069 197.090072632 196.990463257 196.469955444 195.889877319 195.319564819 194.559799194 193.809799194 193.550033569 193.910385132 194.500228882 205.730056763 205.429763794 205.160232544 204.830154419 204.4400177 204.009841919 203.620193481 203.370193481 203.410232544 203.710037231 204.049880981 204.219802856 204.259841919 204.319900513 204.370193481 204.330154419 204.390213013 217.110015869 216.659820557 216.449859619 216.529937744 216.830230713 217.190093994 217.480133057 217.639801025 217.610015869 217.339996338 216.960113525 216.670074463 216.54019165 216.270172119 215.730133057 215.330230713 215.610015869 219.829803467 219.570037842 219.360076904 219.289764404 219.350311279 219.360076904 219.159881592 218.820037842 218.610076904 218.770233154 219.140350342 219.409881592 219.539764404 219.720428467 219.919647217 219.699920654 218.850311279 228.629730225 228.310394287 227.910003662 227.499847412 227.0496521 226.660003662 226.629730225 227.169769287 227.789886475 227.749847412 227.169769287 226.95980835 227.509613037 228.129730225 228.320159912 228.749847412 229.9402771 301.650543213 300.150543213 299.629058838 300.070465088 300.490386963 300.070465088 298.949371338 297.890777588 297.400543213 297.500152588 297.890777588 298.339996338 298.550933838 298.129058838 297.140777588 296.170074463 295.300933838 298.179199219 295.960449219 294.679199219 294.419433594 294.380371094 294.079589844 293.810058594 293.790527344 293.720214844 293.380371094 293.249511719 293.659667969 294.210449219 294.229980469 293.769042969 293.290527344 292.499511719 293.219787598 291.339904785 290.08013916 289.460021973 289.210021973 289.190490723 289.34967041 289.49029541 289.320373535 288.870178223 288.530334473 288.570373535 288.929748535 289.250061035 289.229553223 288.780334473 287.820373535 282.519592285 282.66998291 282.500061035 282.049865723 281.66998291 281.500061035 281.370178223 281.24029541 281.280334473 281.49029541 281.639709473 281.549865723 281.389709473 281.339904785 281.139709473 280.33013916 278.809631348 275.529693604 275.989654541 276.269927979 276.220123291 275.909576416 275.670318604 275.699615479 275.899810791 276.010162354 275.979888916 275.880279541 275.720123291 275.500396729 275.239654541 274.859771729 274.019927979 272.479888916 268.149536133 268.559692383 268.549926758 268.149536133 267.66027832 267.42980957 267.490356445 267.58996582 267.549926758 267.389770508 267.16027832 266.979614258 266.960083008 267.120239258 267.130004883 266.549926758 265.120239258 258.210449219 258.340332031 258.310058594 258.060058594 257.569824219 257.060058594 256.739746094 256.649902344 256.569824219 256.399902344 256.329589844 256.520019531 256.920410156 257.220214844 257.260253906 256.979980469 256.210449219 243.239654541 243.550201416 243.580474854 243.369537354 242.970123291 242.439849854 241.890045166 241.489654541 241.369537354 241.500396729 241.689849854 241.819732666 241.899810791 241.979888916 242.130279541 242.409576416 242.779693604 234.069946289 234.100219727 233.920043945 233.600219727 233.199829102 232.790161133 232.440063477 232.199829102 232.060180664 232.00012207 231.989868164 232.080200195 232.259887695 232.460083008 232.58996582 232.730102539 233.029907227 222.729919434 222.699890137 222.489929199 221.989929199 221.360046387 220.820007324 220.50994873 220.320007324 220.130065918 219.999938965 219.989929199 220.08001709 220.269958496 220.539978027 220.860046387 221.130065918 221.430114746 207.8099823 207.530197144 207.120040894 206.539962769 205.919845581 205.499923706 205.320236206 205.269943237 205.249923706 205.260177612 205.320236206 205.499923706 205.789962769 206.129806519 206.539962769 207.039962769 207.709884644 193.149917603 192.399917603 191.670425415 191.100112915 190.779800415 190.489761353 189.999526978 189.510269165 189.52003479 190.19972229 191.159683228 191.85987854 192.119644165 192.220230103 192.460464478 192.989761353 193.739761353 196.309799194 195.490463257 195.040267944 194.960189819 195.240463257 195.929916382 196.939682007 197.769760132 197.899642944 197.309799194 196.469955444 195.679916382 194.849838257 194.059799194 193.670150757 193.889877319 194.479721069 205.679763794 205.489822388 205.330154419 205.10017395 204.790115356 204.319900513 203.710037231 203.169998169 203.009841919 203.330154419 203.830154419 204.140213013 204.199783325 204.179763794 204.210037231 204.250076294 204.429763794 217.389801025 216.850250244 216.460113525 216.3800354 216.679840088 217.150054932 217.580230713 217.889801025 218.000152588 217.799957275 217.299957275 216.779937744 216.46987915 216.230133057 215.79019165 215.389801025 215.529937744 219.629608154 219.579803467 219.549530029 219.560272217 219.589569092 219.510467529 219.180389404 218.600311279 218.129608154 218.190155029 218.730194092 219.320037842 219.650115967 219.860076904 219.999725342 219.709686279 218.709686279 228.879730225 228.289886475 227.730316162 227.270355225 226.829925537 226.4402771 226.53012085 227.390472412 228.450042725 228.60043335 227.730316162 226.969573975 227.160003662 227.789886475 228.129730225 228.650238037 229.9402771 302.830230713 300.670074463 299.759918213 300.039215088 300.490386963 300.179840088 299.150543213 298.199371338 297.920074463 298.160308838 298.480621338 298.660308838 298.709136963 298.439605713 297.720855713 296.750152588 295.519683838 299.130371094 296.530761719 294.989746094 294.599121094 294.519042969 294.200683594 293.899902344 293.860839844 293.839355469 293.649902344 293.610839844 293.970214844 294.370605469 294.339355469 293.979980469 293.479980469 292.380371094 293.719787598 291.750061035 290.469787598 289.799865723 289.469787598 289.370178223 289.429748535 289.410217285 289.160217285 288.839904785 288.729553223 288.879943848 289.139709473 289.360412598 289.389709473 289.019592285 287.870178223 282.549865723 282.660217285 282.59967041 282.320373535 282.040100098 281.780334473 281.530334473 281.33013916 281.379943848 281.59967041 281.769592285 281.66998291 281.469787598 281.360412598 281.129943848 280.320373535 278.84967041 275.420318604 275.809967041 276.050201416 276.050201416 275.880279541 275.800201416 275.909576416 276.069732666 276.059967041 275.920318604 275.790435791 275.680084229 275.540435791 275.330474854 274.930084229 274.090240479 272.529693604 268.130004883 268.399536133 268.360473633 268.01965332 267.620239258 267.41027832 267.42980957 267.51965332 267.51965332 267.399536133 267.170043945 266.92980957 266.83996582 266.960083008 267.030395508 266.580200195 265.299926758 258.109863281 258.340332031 258.359863281 258.079589844 257.550292969 257.039550781 256.739746094 256.640136719 256.560058594 256.430175781 256.399902344 256.590332031 256.899902344 257.140136719 257.199707031 257.029785156 256.420410156 243.199615479 243.590240479 243.659576416 243.420318604 242.979888916 242.470123291 241.970123291 241.640045166 241.580474854 241.710357666 241.890045166 241.989654541 242.050201416 242.090240479 242.140045166 242.340240479 242.699615479 234.080200195 234.139770508 233.969848633 233.630004883 233.239868164 232.850219727 232.509887695 232.25012207 232.069946289 232.00012207 232.009887695 232.130004883 232.33996582 232.569946289 232.699829102 232.779907227 233.00012207 222.769958496 222.729919434 222.559997559 222.130065918 221.50994873 220.92010498 220.50994873 220.269958496 220.08001709 219.969909668 219.949890137 220.059997559 220.269958496 220.58001709 220.930114746 221.229919434 221.479919434 207.959884644 207.72013855 207.280197144 206.660079956 206.039962769 205.600021362 205.379806519 205.260177612 205.140060425 205.080001831 205.120040894 205.280197144 205.580001831 205.990158081 206.47013855 207.019943237 207.700119019 192.510269165 191.579605103 190.869644165 190.44972229 190.28956604 190.079605103 189.560073853 188.970230103 188.890151978 189.579605103 190.69972229 191.59034729 191.960464478 192.03956604 192.27003479 192.850112915 193.670425415 196.469955444 195.759994507 195.309799194 195.130111694 195.250228882 195.819564819 196.840072632 197.849838257 198.179916382 197.660385132 196.740463257 195.830307007 194.990463257 194.210189819 193.750228882 193.819564819 194.380111694 205.609939575 205.509841919 205.399978638 205.239822388 204.989822388 204.580154419 203.9400177 203.299880981 203.040115356 203.310134888 203.859939575 204.230056763 204.259841919 204.120193481 204.020095825 204.060134888 204.330154419 217.589996338 217.170074463 216.71987915 216.509918213 216.71987915 217.150054932 217.520172119 217.739898682 217.860015869 217.750152588 217.310211182 216.750152588 216.400054932 216.230133057 215.920074463 215.480133057 215.3800354 219.449920654 219.579803467 219.720428467 219.730194092 219.589569092 219.339569092 218.980194092 218.529998779 218.209686279 218.299530029 218.829803467 219.350311279 219.570037842 219.669647217 219.810272217 219.669647217 218.820037842 229.179534912 228.230316162 227.450042725 226.999847412 226.810394287 226.719573975 226.8699646 227.5496521 228.360198975 228.400238037 227.570159912 226.900238037 227.230316162 227.990081787 228.360198975 228.6902771 229.810394287 303.459136963 301.029449463 299.929840088 300.039215088 300.410308838 300.220855713 299.470855713 298.839996338 298.769683838 299.000152588 299.060699463 298.920074463 298.810699463 298.640777588 298.089996338 297.070465088 295.560699463 299.769042969 296.999511719 295.319824219 294.819824219 294.690917969 294.370605469 294.060058594 293.950683594 293.880371094 293.780761719 293.870605469 294.220214844 294.429199219 294.220214844 293.800292969 293.239746094 291.929199219 294.110412598 292.120178223 290.879943848 290.219787598 289.790100098 289.549865723 289.460021973 289.33013916 289.070373535 288.91998291 289.040100098 289.25982666 289.33013916 289.339904785 289.339904785 288.969787598 287.719787598 282.58013916 282.589904785 282.610412598 282.50982666 282.320373535 282.070373535 281.790100098 281.639709473 281.710021973 281.889709473 281.950256348 281.809631348 281.620178223 281.460021973 281.110412598 280.210021973 278.690490723 275.359771729 275.640045166 275.809967041 275.850006104 275.830474854 275.890045166 276.059967041 276.149810791 276.050201416 275.830474854 275.680084229 275.600006104 275.489654541 275.300201416 274.930084229 274.119537354 272.590240479 268.08996582 268.26965332 268.200317383 267.920043945 267.610473633 267.42980957 267.389770508 267.420043945 267.42980957 267.380004883 267.210083008 266.969848633 266.830200195 266.889770508 266.969848633 266.620239258 265.479614258 257.989746094 258.359863281 258.430175781 258.119628906 257.560058594 257.029785156 256.749511719 256.619628906 256.529785156 256.460449219 256.510253906 256.689941406 256.909667969 257.069824219 257.109863281 257.020019531 256.569824219 243.189849854 243.600006104 243.659576416 243.399810791 242.960357666 242.470123291 242.040435791 241.769927979 241.729888916 241.840240479 241.979888916 242.080474854 242.170318604 242.220123291 242.229888916 242.330474854 242.619537354 234.00012207 234.139770508 234.009887695 233.699829102 233.319946289 232.940063477 232.58996582 232.299926758 232.080200195 231.940063477 231.940063477 232.069946289 232.310180664 232.58996582 232.810180664 232.889770508 233.029907227 222.749938965 222.690124512 222.519958496 222.140075684 221.590026855 221.00994873 220.590026855 220.320007324 220.130065918 219.979919434 219.940124512 220.00994873 220.219909668 220.559997559 220.979919434 221.33001709 221.600036621 207.990158081 207.760177612 207.3099823 206.680099487 206.089767456 205.740158081 205.570236206 205.39982605 205.209884644 205.0599823 205.050216675 205.180099487 205.47013855 205.890060425 206.39982605 206.999923706 207.729904175 192.050308228 190.899917603 190.210464478 189.920425415 189.800308228 189.529800415 188.979995728 188.470230103 188.53956604 189.369644165 190.529800415 191.409683228 191.749526978 191.78956604 192.02003479 192.649917603 193.600112915 196.569564819 195.969955444 195.490463257 195.170150757 195.139877319 195.569564819 196.509994507 197.500228882 197.920150757 197.550033569 196.719955444 195.870346069 195.069564819 194.309799194 193.790267944 193.750228882 194.219955444 205.580154419 205.469802856 205.399978638 205.27986145 205.10017395 204.759841919 204.219802856 203.660232544 203.399978638 203.589920044 204.040115356 204.359939575 204.35017395 204.120193481 203.890213013 203.859939575 204.169998169 217.679840088 217.489898682 217.139801025 216.900054932 217.04019165 217.400054932 217.619781494 217.610015869 217.569976807 217.480133057 217.150054932 216.659820557 216.360015869 216.299957275 216.100250244 215.580230713 215.179840088 219.329803467 219.480194092 219.680389404 219.650115967 219.289764404 218.860076904 218.579803467 218.489959717 218.549530029 218.799530029 219.159881592 219.390350342 219.329803467 219.279998779 219.470428467 219.579803467 219.039764404 229.469573975 228.28012085 227.329925537 226.890472412 227.03012085 227.339691162 227.5496521 227.740081787 227.890472412 227.640472412 227.039886475 226.890472412 227.650238037 228.60043335 228.900238037 228.9402771 229.6199646 304.009918213 301.539215088 300.310699463 300.209136963 300.459136963 300.330230713 299.810699463 299.390777588 299.390777588 299.470855713 299.250152588 298.849761963 298.660308838 298.589996338 298.160308838 297.129058838 295.609527588 300.419433594 297.599121094 295.769042969 295.110839844 294.899902344 294.640136719 294.390136719 294.269042969 294.120605469 293.970214844 294.060058594 294.300292969 294.259277344 293.819824219 293.310058594 292.769042969 291.479980469 294.610412598 292.610412598 291.370178223 290.679748535 290.16998291 289.809631348 289.620178223 289.469787598 289.269592285 289.229553223 289.41998291 289.559631348 289.379943848 289.120178223 288.969787598 288.559631348 287.299865723 282.639709473 282.540100098 282.589904785 282.639709473 282.540100098 282.299865723 282.059631348 281.99029541 282.110412598 282.219787598 282.16998291 282.00982666 281.860412598 281.690490723 281.219787598 280.16998291 278.540100098 275.330474854 275.550201416 275.680084229 275.739654541 275.790435791 275.899810791 276.029693604 276.069732666 275.939849854 275.769927979 275.659576416 275.590240479 275.439849854 275.220123291 274.859771729 274.109771729 272.640045166 268.08996582 268.219848633 268.139770508 267.920043945 267.67980957 267.50012207 267.389770508 267.330200195 267.330200195 267.32043457 267.219848633 267.01965332 266.880004883 266.91027832 266.969848633 266.689575195 265.689575195 257.859863281 258.340332031 258.439941406 258.100097656 257.539550781 257.039550781 256.749511719 256.600097656 256.499511719 256.479980469 256.569824219 256.749511719 256.909667969 257.020019531 257.060058594 257.029785156 256.710449219 243.130279541 243.519927979 243.580474854 243.359771729 242.989654541 242.569732666 242.180084229 241.930084229 241.859771729 241.920318604 241.989654541 242.059967041 242.180084229 242.309967041 242.369537354 242.420318604 242.640045166 233.810180664 234.049926758 233.989868164 233.710083008 233.359985352 233.020141602 232.699829102 232.420043945 232.190063477 232.029907227 231.960083008 232.009887695 232.210083008 232.540161133 232.859985352 233.040161133 233.190063477 222.709899902 222.650085449 222.449890137 222.100036621 221.600036621 221.08001709 220.690124512 220.469909668 220.320007324 220.160095215 220.070007324 220.090026855 220.25994873 220.559997559 220.979919434 221.400085449 221.739929199 207.89982605 207.689865112 207.289962769 206.709884644 206.180099487 205.879806519 205.729904175 205.589767456 205.370040894 205.189865112 205.14982605 205.260177612 205.510177612 205.870040894 206.350021362 206.959884644 207.729904175 191.829605103 190.470230103 189.749526978 189.489761353 189.310073853 188.869644165 188.27003479 187.890151978 188.159683228 189.09034729 190.229995728 191.069839478 191.44972229 191.59034729 191.890151978 192.579605103 193.569839478 196.519760132 195.969955444 195.410385132 195.009994507 194.969955444 195.410385132 196.250228882 197.120346069 197.500228882 197.240463257 196.580307007 195.859603882 195.120346069 194.370346069 193.819564819 193.719955444 194.130111694 205.60017395 205.460037231 205.460037231 205.419998169 205.27986145 204.980056763 204.540115356 204.109939575 203.870193481 203.929763794 204.169998169 204.359939575 204.319900513 204.089920044 203.810134888 203.719802856 204.020095825 217.710113525 217.650054932 217.339996338 217.119781494 217.279937744 217.650054932 217.810211182 217.679840088 217.520172119 217.400054932 217.1300354 216.710113525 216.429840088 216.409820557 216.259918213 215.659820557 214.980133057 219.199920654 219.279998779 219.510467529 219.520233154 219.110076904 218.589569092 218.360076904 218.510467529 218.839569092 219.129608154 219.310272217 219.289764404 219.100311279 219.020233154 219.249725342 219.499725342 219.239959717 229.749847412 228.560394287 227.450042725 226.890472412 227.10043335 227.660003662 227.929534912 227.78012085 227.4402771 227.0496521 226.7996521 227.089691162 228.060394287 229.020355225 229.2996521 229.230316162 229.53012085 304.660308838 302.099761963 300.650543213 300.359527588 300.560699463 300.539215088 300.129058838 299.740386963 299.629058838 299.560699463 299.170074463 298.670074463 298.480621338 298.439605713 297.990386963 296.929840088 295.509918213 301.110839844 298.290527344 296.290527344 295.380371094 295.040527344 294.849121094 294.769042969 294.720214844 294.519042969 294.269042969 294.210449219 294.249511719 293.960449219 293.329589844 292.739746094 292.220214844 291.069824219 295.219787598 293.219787598 291.889709473 291.09967041 290.519592285 290.120178223 289.950256348 289.839904785 289.700256348 289.679748535 289.769592285 289.700256348 289.320373535 288.839904785 288.469787598 287.910217285 286.660217285 282.75982666 282.570373535 282.639709473 282.780334473 282.719787598 282.440490723 282.200256348 282.219787598 282.40045166 282.479553223 282.379943848 282.24029541 282.16998291 282.00982666 281.450256348 280.250061035 278.540100098 275.319732666 275.590240479 275.760162354 275.809967041 275.809967041 275.819732666 275.880279541 275.890045166 275.830474854 275.769927979 275.760162354 275.699615479 275.529693604 275.260162354 274.880279541 274.170318604 272.760162354 268.110473633 268.259887695 268.17980957 267.990356445 267.759887695 267.549926758 267.370239258 267.25012207 267.219848633 267.210083008 267.139770508 267.00012207 266.92980957 266.990356445 267.059692383 266.82043457 265.920043945 257.729980469 258.249511719 258.350097656 258.029785156 257.529785156 257.100097656 256.800292969 256.579589844 256.449707031 256.449707031 256.579589844 256.760253906 256.880371094 256.970214844 257.050292969 257.079589844 256.880371094 243.019927979 243.359771729 243.460357666 243.340240479 243.080474854 242.720123291 242.359771729 242.109771729 242.019927979 242.029693604 242.019927979 242.029693604 242.140045166 242.340240479 242.479888916 242.559967041 242.760162354 233.560180664 233.859985352 233.900024414 233.690063477 233.380004883 233.069946289 232.799926758 232.580200195 232.400024414 232.259887695 232.139770508 232.08996582 232.190063477 232.469848633 232.870239258 233.190063477 233.409790039 222.699890137 222.67010498 222.469909668 222.130065918 221.67010498 221.17010498 220.809997559 220.630065918 220.519958496 220.410095215 220.299987793 220.309997559 220.42010498 220.640075684 220.999938965 221.430114746 221.860046387 207.749923706 207.589767456 207.320236206 206.859786987 206.359786987 206.019943237 205.850021362 205.72013855 205.530197144 205.370040894 205.300216675 205.390060425 205.620040894 205.930099487 206.330001831 206.879806519 207.64982605 191.819839478 190.28956604 189.43019104 189.079605103 188.829605103 188.34034729 187.739761353 187.470230103 187.850112915 188.739761353 189.78956604 190.60987854 191.149917603 191.529800415 191.970230103 192.630386353 193.550308228 196.380111694 195.800033569 195.149642944 194.740463257 194.819564819 195.389877319 196.200424194 196.859603882 197.059799194 196.819564819 196.330307007 195.759994507 195.050033569 194.309799194 193.779525757 193.689682007 194.109603882 205.629959106 205.520095825 205.620193481 205.719802856 205.60017395 205.270095825 204.839920044 204.489822388 204.299880981 204.259841919 204.290115356 204.290115356 204.219802856 204.020095825 203.739822388 203.620193481 203.899978638 217.730133057 217.54019165 217.190093994 216.949859619 217.150054932 217.619781494 217.900054932 217.839996338 217.670074463 217.529937744 217.259918213 216.850250244 216.54019165 216.46987915 216.310211182 215.690093994 214.869781494 219.010467529 219.039764404 219.360076904 219.579803467 219.350311279 218.850311279 218.570037842 218.690155029 218.980194092 219.159881592 219.169647217 219.089569092 219.010467529 219.060272217 219.320037842 219.529998779 219.310272217 230.160003662 229.03012085 227.810394287 226.950042725 226.860198975 227.329925537 227.629730225 227.469573975 227.1199646 226.919769287 227.009613037 227.469573975 228.230316162 228.950042725 229.259613037 229.360198975 229.60043335 305.089996338 302.300933838 300.539215088 300.170074463 300.539215088 300.750152588 300.400543213 299.929840088 299.740386963 299.650543213 299.289215088 298.800933838 298.570465088 298.429840088 297.800933838 296.560699463 295.109527588 301.489746094 298.800292969 296.700683594 295.560058594 295.089355469 294.950683594 294.989746094 295.019042969 294.819824219 294.519042969 294.349121094 294.220214844 293.780761719 293.060058594 292.360839844 291.669433594 290.489746094 295.620178223 293.690490723 292.25982666 291.34967041 290.74029541 290.360412598 290.229553223 290.16998291 290.089904785 290.030334473 289.969787598 289.750061035 289.280334473 288.700256348 288.129943848 287.299865723 285.929748535 282.84967041 282.620178223 282.710021973 282.889709473 282.83013916 282.500061035 282.229553223 282.280334473 282.50982666 282.629943848 282.540100098 282.460021973 282.460021973 282.339904785 281.710021973 280.429748535 278.65045166 275.409576416 275.800201416 276.040435791 276.080474854 275.939849854 275.779693604 275.699615479 275.710357666 275.739654541 275.819732666 275.899810791 275.890045166 275.710357666 275.420318604 275.040435791 274.330474854 272.949615479 268.130004883 268.309692383 268.229614258 268.059692383 267.83996582 267.580200195 267.330200195 267.170043945 267.08996582 267.059692383 267.00012207 266.960083008 266.990356445 267.130004883 267.200317383 266.990356445 266.17980957 257.659667969 258.130371094 258.220214844 257.999511719 257.619628906 257.249511719 256.909667969 256.619628906 256.409667969 256.420410156 256.560058594 256.720214844 256.850097656 256.960449219 257.069824219 257.149902344 257.039550781 242.899810791 243.239654541 243.390045166 243.369537354 243.170318604 242.859771729 242.500396729 242.260162354 242.199615479 242.210357666 242.149810791 242.080474854 242.130279541 242.319732666 242.519927979 242.680084229 242.909576416 233.299926758 233.659790039 233.790161133 233.659790039 233.400024414 233.139770508 232.909790039 232.730102539 232.600219727 232.509887695 232.409790039 232.310180664 232.290161133 232.469848633 232.859985352 233.279907227 233.609985352 222.610046387 222.640075684 222.519958496 222.269958496 221.860046387 221.360046387 220.940124512 220.719909668 220.640075684 220.58001709 220.539978027 220.559997559 220.650085449 220.789978027 221.049987793 221.449890137 221.930114746 207.609786987 207.479904175 207.379806519 207.080001831 206.609786987 206.169845581 205.910079956 205.800216675 205.689865112 205.530197144 205.39982605 205.450119019 205.689865112 206.010177612 206.350021362 206.830001831 207.5599823 192.010269165 190.34034729 189.249526978 188.739761353 188.479995728 188.10987854 187.60987854 187.390151978 187.729995728 188.510269165 189.390151978 190.189956665 190.880386353 191.499526978 192.069839478 192.710464478 193.53956604 196.139877319 195.490463257 194.790267944 194.429916382 194.639877319 195.319564819 196.090072632 196.550033569 196.590072632 196.340072632 195.990463257 195.509994507 194.849838257 194.139877319 193.670150757 193.649642944 194.099838257 205.679763794 205.629959106 205.830154419 205.969802856 205.830154419 205.4400177 205.020095825 204.759841919 204.679763794 204.649978638 204.560134888 204.419998169 204.259841919 204.000076294 203.6900177 203.52986145 203.77986145 217.659820557 217.319976807 216.909820557 216.6300354 216.770172119 217.299957275 217.779937744 217.920074463 217.810211182 217.610015869 217.310211182 216.889801025 216.569976807 216.449859619 216.250152588 215.650054932 214.860015869 218.810272217 218.829803467 219.220428467 219.640350342 219.680389404 219.320037842 218.970428467 218.940155029 219.089569092 219.150115967 219.070037842 219.020233154 219.079803467 219.299530029 219.549530029 219.589569092 219.279998779 230.650238037 229.579925537 228.320159912 227.160003662 226.669769287 226.839691162 227.089691162 227.03012085 226.85043335 226.910003662 227.259613037 227.730316162 228.200042725 228.610198975 228.95980835 229.3699646 229.810394287 305.070465088 302.129058838 300.109527588 299.769683838 300.410308838 300.839996338 300.509918213 299.959136963 299.810699463 299.879058838 299.689605713 299.259918213 298.939605713 298.640777588 297.789215088 296.300933838 294.640777588 301.360839844 298.970214844 296.929199219 295.690917969 295.149902344 295.019042969 295.069824219 295.089355469 294.909667969 294.659667969 294.509277344 294.319824219 293.839355469 293.099121094 292.249511719 291.229980469 289.759277344 295.530334473 293.769592285 292.33013916 291.360412598 290.75982666 290.429748535 290.320373535 290.280334473 290.24029541 290.200256348 290.09967041 289.809631348 289.33013916 288.750061035 288.00982666 286.879943848 285.280334473 282.790100098 282.570373535 282.66998291 282.870178223 282.820373535 282.460021973 282.16998291 282.219787598 282.49029541 282.639709473 282.610412598 282.59967041 282.700256348 282.610412598 281.979553223 280.639709473 278.799865723 275.590240479 276.100006104 276.420318604 276.420318604 276.159576416 275.819732666 275.619537354 275.580474854 275.659576416 275.790435791 275.930084229 276.000396729 275.890045166 275.640045166 275.260162354 274.540435791 273.159576416 268.17980957 268.360473633 268.330200195 268.200317383 267.979614258 267.639770508 267.32043457 267.110473633 267.01965332 266.969848633 266.939575195 266.969848633 267.110473633 267.290161133 267.370239258 267.170043945 266.42980957 257.680175781 258.069824219 258.159667969 258.039550781 257.789550781 257.470214844 257.090332031 256.710449219 256.460449219 256.439941406 256.569824219 256.710449219 256.829589844 256.949707031 257.090332031 257.210449219 257.149902344 242.830474854 243.189849854 243.390045166 243.409576416 243.239654541 242.930084229 242.609771729 242.409576416 242.380279541 242.399810791 242.340240479 242.229888916 242.189849854 242.319732666 242.529693604 242.750396729 243.040435791 233.120239258 233.520141602 233.719848633 233.67980957 233.489868164 233.230102539 233.009887695 232.830200195 232.730102539 232.67980957 232.630004883 232.569946289 232.489868164 232.549926758 232.83996582 233.290161133 233.710083008 222.370056152 222.469909668 222.469909668 222.360046387 222.049987793 221.559997559 221.090026855 220.809997559 220.729919434 220.699890137 220.719909668 220.769958496 220.860046387 220.949890137 221.130065918 221.479919434 221.959899902 207.479904175 207.379806519 207.410079956 207.269943237 206.859786987 206.350021362 206.010177612 205.910079956 205.839767456 205.669845581 205.479904175 205.459884644 205.700119019 206.0599823 206.410079956 206.839767456 207.519943237 192.390151978 190.649917603 189.300308228 188.59034729 188.350112915 188.10987854 187.68019104 187.420425415 187.649917603 188.310073853 189.09034729 189.829605103 190.550308228 191.279800415 191.960464478 192.649917603 193.470230103 195.849838257 195.109603882 194.439682007 194.109603882 194.319564819 194.960189819 195.689682007 196.109603882 196.139877319 195.960189819 195.700424194 195.300033569 194.679916382 194.009994507 193.590072632 193.599838257 194.050033569 205.799880981 205.810134888 205.980056763 206.02986145 205.819900513 205.419998169 205.060134888 204.910232544 204.969802856 205.02986145 204.960037231 204.750076294 204.469802856 204.10017395 203.699783325 203.449783325 203.640213013 217.400054932 217.069976807 216.690093994 216.360015869 216.369781494 216.860015869 217.520172119 217.8800354 217.860015869 217.600250244 217.21987915 216.830230713 216.560211182 216.420074463 216.179840088 215.610015869 214.909820557 218.779998779 218.760467529 219.089569092 219.570037842 219.749725342 219.489959717 219.119842529 219.039764404 219.199920654 219.299530029 219.230194092 219.140350342 219.220428467 219.459686279 219.659881592 219.610076904 219.199920654 230.969573975 229.950042725 228.759613037 227.53012085 226.810394287 226.7996521 226.999847412 226.919769287 226.669769287 226.679534912 227.089691162 227.650238037 228.10043335 228.450042725 228.829925537 229.429534912 230.039886475 304.959136963 302.050933838 299.949371338 299.609527588 300.359527588 300.779449463 300.359527588 299.779449463 299.769683838 300.070465088 300.039215088 299.619293213 299.230621338 298.830230713 297.929840088 296.320465088 294.449371338 300.950683594 298.899902344 296.950683594 295.720214844 295.210449219 295.120605469 295.110839844 295.030761719 294.880371094 294.739746094 294.640136719 294.429199219 293.940917969 293.210449219 292.269042969 290.970214844 289.190917969 295.049865723 293.519592285 292.09967041 291.129943848 290.58013916 290.339904785 290.25982666 290.250061035 290.269592285 290.299865723 290.200256348 289.889709473 289.410217285 288.820373535 287.950256348 286.610412598 284.820373535 282.620178223 282.41998291 282.50982666 282.729553223 282.690490723 282.33013916 282.040100098 282.120178223 282.40045166 282.559631348 282.570373535 282.639709473 282.839904785 282.860412598 282.290100098 280.940490723 279.000061035 275.819732666 276.369537354 276.710357666 276.710357666 276.409576416 275.989654541 275.670318604 275.550201416 275.550201416 275.659576416 275.840240479 276.000396729 276.000396729 275.819732666 275.470123291 274.739654541 273.359771729 268.280395508 268.509887695 268.530395508 268.450317383 268.210083008 267.809692383 267.399536133 267.130004883 267.030395508 266.990356445 266.990356445 267.08996582 267.25012207 267.41027832 267.469848633 267.32043457 266.670043945 257.840332031 258.140136719 258.239746094 258.180175781 257.999511719 257.689941406 257.300292969 256.899902344 256.659667969 256.609863281 256.680175781 256.749511719 256.829589844 256.960449219 257.119628906 257.229980469 257.220214844 242.790435791 243.189849854 243.430084229 243.449615479 243.269927979 242.989654541 242.729888916 242.580474854 242.559967041 242.559967041 242.510162354 242.409576416 242.330474854 242.380279541 242.529693604 242.779693604 243.109771729 233.009887695 233.440063477 233.699829102 233.719848633 233.569946289 233.350219727 233.130004883 232.949829102 232.83996582 232.799926758 232.810180664 232.799926758 232.730102539 232.690063477 232.850219727 233.25012207 233.739868164 222.019958496 222.190124512 222.299987793 222.299987793 222.070007324 221.640075684 221.180114746 220.910095215 220.840026855 220.840026855 220.870056152 220.930114746 221.00994873 221.08001709 221.219909668 221.529968262 221.999938965 207.430099487 207.289962769 207.390060425 207.370040894 207.030197144 206.519943237 206.14982605 206.039962769 206.010177612 205.830001831 205.580001831 205.510177612 205.740158081 206.100021362 206.47013855 206.890060425 207.550216675 192.84034729 191.079605103 189.52003479 188.640151978 188.35987854 188.119644165 187.630386353 187.229995728 187.380386353 188.010269165 188.779800415 189.460464478 190.10987854 190.829605103 191.600112915 192.439956665 193.390151978 195.639877319 194.849838257 194.229721069 193.870346069 193.920150757 194.410385132 195.080307007 195.590072632 195.790267944 195.750228882 195.569564819 195.189682007 194.599838257 193.979721069 193.599838257 193.599838257 193.990463257 206.000076294 205.969802856 205.969802856 205.870193481 205.629959106 205.339920044 205.109939575 205.049880981 205.149978638 205.27986145 205.259841919 205.049880981 204.6900177 204.219802856 203.719802856 203.399978638 203.520095825 217.060211182 216.8800354 216.589996338 216.150054932 215.980133057 216.440093994 217.259918213 217.8800354 217.940093994 217.600250244 217.150054932 216.799957275 216.619781494 216.500152588 216.210113525 215.619781494 214.960113525 219.049530029 218.940155029 219.119842529 219.520233154 219.680389404 219.390350342 218.959686279 218.869842529 219.169647217 219.459686279 219.470428467 219.289764404 219.230194092 219.379608154 219.570037842 219.560272217 219.199920654 230.7996521 229.890472412 228.85043335 227.719573975 227.060394287 227.160003662 227.480316162 227.2996521 226.719573975 226.35043335 226.629730225 227.35043335 228.089691162 228.629730225 229.0496521 229.589691162 230.150238037 304.990386963 302.289215088 300.220855713 299.810699463 300.400543213 300.599761963 300.019683838 299.509918213 299.709136963 300.170074463 300.150543213 299.670074463 299.199371338 298.779449463 297.959136963 296.490386963 294.629058838 300.550292969 298.640136719 296.710449219 295.519042969 295.169433594 295.169433594 295.140136719 295.019042969 294.909667969 294.839355469 294.720214844 294.380371094 293.810058594 293.099121094 292.190917969 290.849121094 288.999511719 294.49029541 293.089904785 291.690490723 290.719787598 290.25982666 290.15045166 290.16998291 290.219787598 290.33013916 290.41998291 290.309631348 289.950256348 289.440490723 288.790100098 287.820373535 286.360412598 284.540100098 282.469787598 282.280334473 282.370178223 282.549865723 282.49029541 282.139709473 281.879943848 281.979553223 282.250061035 282.41998291 282.469787598 282.620178223 282.929748535 283.08013916 282.629943848 281.320373535 279.309631348 276.040435791 276.540435791 276.869537354 276.899810791 276.630279541 276.220123291 275.840240479 275.580474854 275.449615479 275.489654541 275.689849854 275.949615479 276.080474854 275.979888916 275.649810791 274.939849854 273.609771729 268.469848633 268.76965332 268.849731445 268.76965332 268.50012207 268.009887695 267.51965332 267.200317383 267.08996582 267.099731445 267.16027832 267.26965332 267.380004883 267.450317383 267.469848633 267.370239258 266.849731445 258.069824219 258.359863281 258.449707031 258.390136719 258.180175781 257.850097656 257.470214844 257.140136719 256.960449219 256.909667969 256.899902344 256.869628906 256.880371094 256.970214844 257.119628906 257.249511719 257.239746094 242.750396729 243.189849854 243.460357666 243.489654541 243.300201416 243.050201416 242.869537354 242.760162354 242.710357666 242.659576416 242.609771729 242.559967041 242.500396729 242.479888916 242.569732666 242.800201416 243.170318604 232.92980957 233.389770508 233.690063477 233.75012207 233.620239258 233.420043945 233.219848633 233.069946289 232.969848633 232.940063477 232.969848633 233.009887695 232.949829102 232.830200195 232.880004883 233.190063477 233.719848633 221.709899902 221.930114746 222.100036621 222.140075684 221.959899902 221.58001709 221.209899902 221.019958496 220.989929199 221.029968262 221.049987793 221.08001709 221.130065918 221.160095215 221.299987793 221.610046387 222.059997559 207.459884644 207.300216675 207.370040894 207.39982605 207.140060425 206.660079956 206.289962769 206.160079956 206.120040894 205.97013855 205.740158081 205.660079956 205.839767456 206.180099487 206.530197144 206.97013855 207.609786987 193.09034729 191.300308228 189.670425415 188.729995728 188.390151978 188.060073853 187.460464478 186.979995728 187.10987854 187.77003479 188.52003479 189.149917603 189.729995728 190.399917603 191.249526978 192.239761353 193.350112915 195.649642944 194.880111694 194.300033569 193.859603882 193.679916382 193.939682007 194.509994507 195.109603882 195.469955444 195.540267944 195.380111694 195.000228882 194.439682007 193.889877319 193.580307007 193.569564819 193.939682007 206.140213013 205.980056763 205.77986145 205.589920044 205.469802856 205.419998169 205.339920044 205.259841919 205.270095825 205.359939575 205.359939575 205.179763794 204.77986145 204.259841919 203.730056763 203.370193481 203.429763794 216.949859619 216.8800354 216.549957275 215.949859619 215.679840088 216.159820557 217.150054932 217.889801025 217.989898682 217.589996338 217.119781494 216.810211182 216.699859619 216.589996338 216.250152588 215.639801025 214.96987915 219.470428467 219.289764404 219.390350342 219.720428467 219.799530029 219.350311279 218.749725342 218.589569092 218.980194092 219.430389404 219.529998779 219.329803467 219.150115967 219.220428467 219.440155029 219.539764404 219.299530029 230.20980835 229.490081787 228.53012085 227.450042725 226.980316162 227.429534912 228.060394287 227.910003662 227.009613037 226.259613037 226.339691162 227.150238037 228.160003662 228.9402771 229.400238037 229.770355225 230.129730225 304.810699463 302.320465088 300.379058838 299.939605713 300.330230713 300.310699463 299.720855713 299.439605713 299.849761963 300.320465088 300.160308838 299.570465088 299.019683838 298.539215088 297.769683838 296.529449463 294.920074463 300.079589844 298.089355469 296.099121094 295.050292969 294.960449219 295.149902344 295.169433594 295.089355469 295.050292969 294.979980469 294.700683594 294.169433594 293.489746094 292.780761719 291.929199219 290.720214844 289.060058594 293.960021973 292.549865723 291.139709473 290.229553223 289.910217285 289.969787598 290.129943848 290.290100098 290.450256348 290.50982666 290.320373535 289.90045166 289.40045166 288.750061035 287.710021973 286.179748535 284.379943848 282.379943848 282.200256348 282.25982666 282.379943848 282.250061035 281.889709473 281.679748535 281.83013916 282.129943848 282.320373535 282.41998291 282.639709473 283.000061035 283.229553223 282.889709473 281.690490723 279.710021973 276.210357666 276.670318604 276.930084229 276.970123291 276.769927979 276.399810791 276.010162354 275.670318604 275.409576416 275.340240479 275.550201416 275.899810791 276.130279541 276.100006104 275.819732666 275.149810791 273.890045166 268.689575195 269.049926758 269.139770508 269.030395508 268.689575195 268.149536133 267.630004883 267.299926758 267.170043945 267.210083008 267.33996582 267.479614258 267.509887695 267.460083008 267.41027832 267.349731445 266.950317383 258.270019531 258.579589844 258.680175781 258.579589844 258.289550781 257.909667969 257.590332031 257.359863281 257.270019531 257.229980469 257.159667969 257.050292969 256.979980469 257.020019531 257.140136719 257.239746094 257.229980469 242.659576416 243.140045166 243.470123291 243.510162354 243.330474854 243.109771729 242.970123291 242.880279541 242.800201416 242.729888916 242.699615479 242.699615479 242.649810791 242.590240479 242.630279541 242.869537354 243.250396729 232.870239258 233.33996582 233.659790039 233.75012207 233.639770508 233.440063477 233.259887695 233.170043945 233.139770508 233.109985352 233.139770508 233.17980957 233.130004883 232.980102539 232.92980957 233.190063477 233.719848633 221.499938965 221.769958496 221.969909668 222.00994873 221.820007324 221.489929199 221.209899902 221.090026855 221.110046387 221.17010498 221.219909668 221.239929199 221.229919434 221.239929199 221.360046387 221.67010498 222.120056152 207.539962769 207.359786987 207.370040894 207.370040894 207.14982605 206.740158081 206.370040894 206.200119019 206.14982605 206.050216675 205.89982605 205.870040894 206.019943237 206.269943237 206.589767456 207.039962769 207.680099487 193.02003479 191.210464478 189.649917603 188.77003479 188.390151978 188.010269165 187.43019104 187.079605103 187.27003479 187.869644165 188.479995728 188.999526978 189.550308228 190.249526978 191.119644165 192.18019104 193.35987854 195.889877319 195.139877319 194.559799194 194.029525757 193.679916382 193.710189819 194.130111694 194.670150757 195.019760132 195.080307007 194.910385132 194.540267944 194.040267944 193.599838257 193.370346069 193.439682007 193.870346069 206.129959106 205.799880981 205.469802856 205.299880981 205.390213013 205.580154419 205.640213013 205.520095825 205.399978638 205.399978638 205.410232544 205.230056763 204.810134888 204.250076294 203.699783325 203.339920044 203.379959106 217.230133057 217.100250244 216.589996338 215.900054932 215.659820557 216.230133057 217.199859619 217.819976807 217.770172119 217.350250244 216.929840088 216.699859619 216.6300354 216.520172119 216.199859619 215.600250244 214.929840088 219.690155029 219.489959717 219.669647217 220.029998779 220.010467529 219.390350342 218.650115967 218.430389404 218.820037842 219.310272217 219.449920654 219.289764404 219.129608154 219.190155029 219.430389404 219.579803467 219.430389404 229.70980835 229.1902771 228.179534912 227.020355225 226.719573975 227.539886475 228.45980835 228.339691162 227.339691162 226.4402771 226.429534912 227.1902771 228.219573975 229.070159912 229.589691162 229.900238037 230.129730225 303.740386963 301.550933838 299.959136963 299.699371338 300.050933838 299.980621338 299.570465088 299.609527588 300.199371338 300.539215088 300.179840088 299.509918213 298.949371338 298.359527588 297.500152588 296.379058838 295.050933838 299.190917969 297.110839844 295.259277344 294.560058594 294.810058594 295.159667969 295.229980469 295.220214844 295.269042969 295.140136719 294.659667969 293.960449219 293.249511719 292.540527344 291.700683594 290.579589844 289.120605469 293.219787598 291.820373535 290.540100098 289.820373535 289.700256348 289.940490723 290.219787598 290.440490723 290.589904785 290.540100098 290.200256348 289.74029541 289.320373535 288.769592285 287.710021973 286.129943848 284.339904785 282.299865723 282.110412598 282.120178223 282.15045166 281.960021973 281.620178223 281.479553223 281.700256348 282.049865723 282.309631348 282.49029541 282.74029541 283.070373535 283.280334473 283.00982666 281.940490723 280.070373535 276.380279541 276.769927979 276.949615479 276.930084229 276.720123291 276.390045166 276.059967041 275.720123291 275.409576416 275.290435791 275.489654541 275.859771729 276.149810791 276.180084229 275.949615479 275.340240479 274.159576416 268.870239258 269.25012207 269.299926758 269.110473633 268.710083008 268.189575195 267.710083008 267.41027832 267.26965332 267.32043457 267.490356445 267.66027832 267.649536133 267.509887695 267.380004883 267.330200195 266.969848633 258.329589844 258.699707031 258.850097656 258.699707031 258.340332031 257.930175781 257.630371094 257.479980469 257.439941406 257.420410156 257.340332031 257.220214844 257.119628906 257.100097656 257.170410156 257.220214844 257.170410156 242.569732666 243.090240479 243.460357666 243.529693604 243.380279541 243.149810791 243.010162354 242.930084229 242.880279541 242.830474854 242.819732666 242.840240479 242.779693604 242.670318604 242.689849854 242.949615479 243.350006104 232.799926758 233.259887695 233.600219727 233.730102539 233.650024414 233.449829102 233.290161133 233.239868164 233.25012207 233.270141602 233.290161133 233.330200195 233.290161133 233.120239258 233.009887695 233.219848633 233.739868164 221.33001709 221.620056152 221.870056152 221.92010498 221.75994873 221.479919434 221.229919434 221.130065918 221.130065918 221.209899902 221.309997559 221.360046387 221.340026855 221.299987793 221.400085449 221.699890137 222.150085449 207.589767456 207.390060425 207.339767456 207.289962769 207.0599823 206.689865112 206.379806519 206.22013855 206.160079956 206.089767456 206.019943237 206.050216675 206.169845581 206.359786987 206.669845581 207.129806519 207.780197144 192.78956604 191.029800415 189.649917603 188.880386353 188.489761353 188.100112915 187.739761353 187.659683228 187.939956665 188.300308228 188.600112915 188.970230103 189.569839478 190.350112915 191.210464478 192.220230103 193.35987854 196.139877319 195.340072632 194.660385132 194.059799194 193.649642944 193.599838257 193.870346069 194.219955444 194.429916382 194.429916382 194.269760132 193.929916382 193.529525757 193.179916382 193.059799194 193.229721069 193.759994507 206.060134888 205.60017395 205.250076294 205.160232544 205.359939575 205.640213013 205.739822388 205.620193481 205.489822388 205.500076294 205.500076294 205.27986145 204.819900513 204.219802856 203.649978638 203.290115356 203.299880981 217.659820557 217.319976807 216.6300354 215.980133057 215.940093994 216.569976807 217.259918213 217.449859619 217.170074463 216.79019165 216.569976807 216.460113525 216.389801025 216.279937744 216.020172119 215.520172119 214.8800354 219.470428467 219.320037842 219.640350342 220.029998779 219.890350342 219.180389404 218.520233154 218.459686279 218.900115967 219.339569092 219.449920654 219.339569092 219.260467529 219.329803467 219.510467529 219.640350342 219.480194092 229.7996521 229.3699646 228.200042725 226.990081787 226.900238037 227.929534912 228.789886475 228.450042725 227.320159912 226.560394287 226.679534912 227.3699646 228.200042725 228.95980835 229.560394287 229.980316162 230.240081787 301.820465088 300.189605713 299.250152588 299.359527588 299.800933838 299.810699463 299.609527588 299.890777588 300.509918213 300.629058838 300.080230713 299.429840088 298.970855713 298.349761963 297.359527588 296.250152588 295.109527588 297.749511719 295.890136719 294.530761719 294.370605469 294.909667969 295.290527344 295.329589844 295.409667969 295.499511719 295.290527344 294.610839844 293.839355469 293.200683594 292.540527344 291.669433594 290.530761719 289.120605469 292.120178223 290.929748535 290.019592285 289.65045166 289.780334473 290.09967041 290.370178223 290.610412598 290.75982666 290.620178223 290.120178223 289.559631348 289.210021973 288.799865723 287.809631348 286.190490723 284.379943848 282.16998291 281.960021973 281.91998291 281.879943848 281.660217285 281.410217285 281.389709473 281.660217285 282.040100098 282.34967041 282.59967041 282.860412598 283.129943848 283.269592285 283.040100098 282.09967041 280.339904785 276.510162354 276.859771729 276.920318604 276.769927979 276.479888916 276.180084229 275.939849854 275.699615479 275.470123291 275.359771729 275.519927979 275.859771729 276.140045166 276.210357666 276.050201416 275.489654541 274.359771729 268.990356445 269.32043457 269.32043457 269.07043457 268.630004883 268.170043945 267.809692383 267.57043457 267.42980957 267.460083008 267.630004883 267.809692383 267.799926758 267.620239258 267.450317383 267.330200195 266.950317383 258.289550781 258.739746094 258.920410156 258.760253906 258.350097656 257.930175781 257.659667969 257.520019531 257.449707031 257.420410156 257.409667969 257.350097656 257.279785156 257.229980469 257.220214844 257.189941406 257.069824219 242.540435791 243.040435791 243.430084229 243.540435791 243.409576416 243.180084229 243.019927979 242.970123291 242.970123291 242.970123291 242.979888916 242.970123291 242.869537354 242.699615479 242.710357666 243.010162354 243.449615479 232.739868164 233.17980957 233.520141602 233.67980957 233.659790039 233.50012207 233.330200195 233.279907227 233.319946289 233.359985352 233.409790039 233.460083008 233.409790039 233.230102539 233.100219727 233.270141602 233.770141602 221.150085449 221.449890137 221.709899902 221.809997559 221.709899902 221.489929199 221.279968262 221.140075684 221.120056152 221.199890137 221.340026855 221.449890137 221.440124512 221.360046387 221.42010498 221.709899902 222.17010498 207.5599823 207.350021362 207.240158081 207.140060425 206.89982605 206.589767456 206.359786987 206.249923706 206.209884644 206.140060425 206.089767456 206.120040894 206.240158081 206.430099487 206.760177612 207.269943237 207.89982605 192.720230103 191.09034729 189.920425415 189.229995728 188.760269165 188.35987854 188.189956665 188.369644165 188.659683228 188.729995728 188.69972229 188.970230103 189.640151978 190.489761353 191.300308228 192.220230103 193.319839478 196.219955444 195.259994507 194.410385132 193.740463257 193.370346069 193.370346069 193.559799194 193.759994507 193.859603882 193.859603882 193.750228882 193.490463257 193.139877319 192.880111694 192.819564819 193.050033569 193.639877319 206.080154419 205.649978638 205.35017395 205.259841919 205.370193481 205.520095825 205.560134888 205.500076294 205.469802856 205.52986145 205.52986145 205.27986145 204.770095825 204.160232544 203.589920044 203.210037231 203.179763794 217.799957275 217.21987915 216.46987915 216.000152588 216.159820557 216.710113525 217.009918213 216.799957275 216.409820557 216.230133057 216.29019165 216.310211182 216.21987915 216.080230713 215.869781494 215.460113525 214.869781494 219.039764404 219.020233154 219.430389404 219.720428467 219.409881592 218.720428467 218.360076904 218.640350342 219.190155029 219.510467529 219.510467529 219.400115967 219.360076904 219.419647217 219.549530029 219.650115967 219.489959717 230.360198975 229.829925537 228.539886475 227.4402771 227.60043335 228.660003662 229.1199646 228.249847412 226.95980835 226.4402771 226.85043335 227.5496521 228.1902771 228.829925537 229.499847412 230.0496521 230.390472412 299.929840088 299.189605713 299.000152588 299.429840088 299.879058838 299.879058838 299.810699463 300.160308838 300.670074463 300.570465088 299.869293213 299.269683838 298.959136963 298.400543213 297.390777588 296.330230713 295.310699463 296.099121094 294.860839844 294.239746094 294.550292969 295.169433594 295.399902344 295.390136719 295.540527344 295.710449219 295.399902344 294.589355469 293.790527344 293.229980469 292.659667969 291.810058594 290.679199219 289.300292969 290.870178223 290.129943848 289.74029541 289.769592285 290.049865723 290.33013916 290.500061035 290.690490723 290.889709473 290.75982666 290.160217285 289.450256348 289.070373535 288.729553223 287.839904785 286.290100098 284.519592285 282.000061035 281.820373535 281.719787598 281.620178223 281.440490723 281.339904785 281.460021973 281.75982666 282.070373535 282.360412598 282.660217285 282.950256348 283.190490723 283.299865723 283.089904785 282.219787598 280.549865723 276.580474854 276.880279541 276.830474854 276.550201416 276.180084229 275.899810791 275.769927979 275.670318604 275.540435791 275.500396729 275.649810791 275.930084229 276.170318604 276.269927979 276.159576416 275.649810791 274.529693604 269.040161133 269.330200195 269.309692383 269.030395508 268.599731445 268.189575195 267.91027832 267.740356445 267.630004883 267.620239258 267.76965332 267.920043945 267.91027832 267.75012207 267.580200195 267.380004883 266.91027832 258.270019531 258.770019531 258.970214844 258.770019531 258.340332031 257.930175781 257.680175781 257.510253906 257.390136719 257.350097656 257.420410156 257.460449219 257.439941406 257.369628906 257.289550781 257.170410156 256.979980469 242.550201416 243.000396729 243.350006104 243.500396729 243.430084229 243.220123291 243.059967041 243.010162354 243.050201416 243.080474854 243.080474854 243.050201416 242.899810791 242.710357666 242.710357666 243.040435791 243.519927979 232.759887695 233.139770508 233.420043945 233.600219727 233.659790039 233.569946289 233.409790039 233.319946289 233.33996582 233.409790039 233.489868164 233.549926758 233.520141602 233.319946289 233.150024414 233.299926758 233.790161133 221.019958496 221.279968262 221.529968262 221.650085449 221.620056152 221.489929199 221.299987793 221.160095215 221.120056152 221.199890137 221.380065918 221.519958496 221.519958496 221.42010498 221.440124512 221.699890137 222.17010498 207.479904175 207.249923706 207.120040894 206.979904175 206.760177612 206.499923706 206.339767456 206.3099823 206.269943237 206.180099487 206.100021362 206.129806519 206.260177612 206.490158081 206.870040894 207.39982605 208.030197144 192.93019104 191.460464478 190.44972229 189.760269165 189.159683228 188.689956665 188.579605103 188.84034729 189.02003479 188.869644165 188.689956665 188.960464478 189.69972229 190.53956604 191.300308228 192.159683228 193.27003479 196.210189819 195.080307007 194.040267944 193.279525757 192.960189819 193.000228882 193.170150757 193.319564819 193.439682007 193.519760132 193.479721069 193.250228882 192.950424194 192.719955444 192.700424194 192.939682007 193.519760132 206.27986145 205.919998169 205.6900177 205.520095825 205.410232544 205.359939575 205.319900513 205.330154419 205.390213013 205.469802856 205.429763794 205.149978638 204.660232544 204.089920044 203.52986145 203.120193481 203.040115356 217.500152588 216.819976807 216.1300354 215.810211182 216.000152588 216.360015869 216.409820557 216.110015869 215.8800354 216.009918213 216.270172119 216.339996338 216.179840088 216.009918213 215.830230713 215.480133057 214.900054932 218.860076904 218.999725342 219.409881592 219.529998779 219.049530029 218.440155029 218.379608154 218.909881592 219.449920654 219.579803467 219.449920654 219.350311279 219.329803467 219.360076904 219.480194092 219.640350342 219.570037842 230.749847412 229.950042725 228.629730225 227.789886475 228.200042725 229.129730225 229.10043335 227.810394287 226.499847412 226.289886475 226.969573975 227.70980835 228.270355225 228.8699646 229.560394287 230.10043335 230.390472412 298.910308838 299.109527588 299.470855713 299.920074463 300.189605713 300.129058838 300.089996338 300.420074463 300.769683838 300.509918213 299.750152588 299.170074463 298.900543213 298.400543213 297.480621338 296.560699463 295.650543213 294.759277344 294.300292969 294.360839844 294.880371094 295.290527344 295.339355469 295.310058594 295.569824219 295.800292969 295.429199219 294.569824219 293.759277344 293.239746094 292.700683594 291.940917969 290.970214844 289.739746094 289.889709473 289.639709473 289.710021973 289.979553223 290.299865723 290.460021973 290.49029541 290.610412598 290.879943848 290.84967041 290.250061035 289.440490723 288.940490723 288.589904785 287.780334473 286.40045166 284.799865723 281.84967041 281.719787598 281.589904785 281.450256348 281.379943848 281.469787598 281.719787598 281.979553223 282.16998291 282.370178223 282.66998291 282.979553223 283.229553223 283.360412598 283.16998291 282.34967041 280.710021973 276.600006104 276.830474854 276.699615479 276.359771729 275.989654541 275.739654541 275.670318604 275.659576416 275.619537354 275.649810791 275.819732666 276.069732666 276.279693604 276.390045166 276.319732666 275.850006104 274.729888916 269.059692383 269.349731445 269.370239258 269.099731445 268.639770508 268.219848633 267.990356445 267.860473633 267.780395508 267.780395508 267.870239258 267.969848633 267.960083008 267.860473633 267.710083008 267.42980957 266.849731445 258.350097656 258.859863281 259.010253906 258.739746094 258.289550781 257.920410156 257.710449219 257.539550781 257.390136719 257.359863281 257.460449219 257.569824219 257.560058594 257.460449219 257.340332031 257.170410156 256.920410156 242.590240479 242.949615479 243.239654541 243.420318604 243.439849854 243.290435791 243.119537354 243.040435791 243.069732666 243.100006104 243.090240479 243.059967041 242.939849854 242.750396729 242.710357666 243.029693604 243.529693604 232.819946289 233.139770508 233.33996582 233.520141602 233.650024414 233.639770508 233.50012207 233.380004883 233.380004883 233.449829102 233.549926758 233.609985352 233.580200195 233.389770508 233.199829102 233.299926758 233.799926758 220.989929199 221.229919434 221.410095215 221.50994873 221.519958496 221.430114746 221.289978027 221.17010498 221.150085449 221.269958496 221.440124512 221.559997559 221.549987793 221.459899902 221.459899902 221.699890137 222.180114746 207.419845581 207.180099487 207.050216675 206.930099487 206.700119019 206.47013855 206.350021362 206.350021362 206.330001831 206.209884644 206.109786987 206.129806519 206.289962769 206.5599823 206.97013855 207.519943237 208.129806519 193.239761353 191.85987854 190.880386353 190.159683228 189.510269165 188.989761353 188.819839478 188.960464478 189.010269165 188.78956604 188.659683228 189.02003479 189.77003479 190.53956604 191.249526978 192.140151978 193.28956604 196.300033569 195.099838257 193.950424194 193.109603882 192.729721069 192.710189819 192.830307007 192.990463257 193.179916382 193.340072632 193.300033569 193.069564819 192.769760132 192.590072632 192.609603882 192.840072632 193.420150757 206.480056763 206.169998169 205.9400177 205.669998169 205.410232544 205.250076294 205.230056763 205.319900513 205.419998169 205.4400177 205.310134888 205.009841919 204.580154419 204.060134888 203.489822388 203.040115356 202.919998169 217.119781494 216.520172119 216.000152588 215.690093994 215.670074463 215.779937744 215.779937744 215.690093994 215.779937744 216.089996338 216.360015869 216.339996338 216.170074463 216.009918213 215.860015869 215.520172119 214.929840088 219.129608154 219.360076904 219.709686279 219.669647217 219.159881592 218.690155029 218.770233154 219.249725342 219.539764404 219.440155029 219.279998779 219.249725342 219.270233154 219.249725342 219.390350342 219.680389404 219.770233154 230.469573975 229.45980835 228.240081787 227.640472412 228.079925537 228.730316162 228.410003662 227.179534912 226.249847412 226.379730225 227.1199646 227.78012085 228.310394287 228.990081787 229.6902771 230.10043335 230.20980835 298.759918213 299.589996338 300.150543213 300.390777588 300.449371338 300.369293213 300.379058838 300.619293213 300.810699463 300.500152588 299.820465088 299.259918213 298.929840088 298.379058838 297.519683838 296.730621338 295.949371338 293.989746094 294.210449219 294.700683594 295.140136719 295.280761719 295.169433594 295.210449219 295.519042969 295.710449219 295.339355469 294.560058594 293.839355469 293.290527344 292.710449219 291.999511719 291.239746094 290.210449219 289.370178223 289.530334473 289.820373535 290.129943848 290.410217285 290.500061035 290.41998291 290.440490723 290.679748535 290.750061035 290.25982666 289.479553223 288.91998291 288.519592285 287.790100098 286.549865723 285.15045166 281.729553223 281.660217285 281.530334473 281.389709473 281.41998291 281.700256348 282.049865723 282.250061035 282.320373535 282.450256348 282.729553223 283.049865723 283.269592285 283.389709473 283.210021973 282.429748535 280.84967041 276.600006104 276.750396729 276.569732666 276.250396729 275.930084229 275.739654541 275.689849854 275.659576416 275.670318604 275.760162354 275.970123291 276.220123291 276.430084229 276.559967041 276.519927979 276.050201416 274.930084229 269.080200195 269.389770508 269.439575195 269.16027832 268.67980957 268.240356445 267.990356445 267.880004883 267.83996582 267.870239258 267.92980957 267.979614258 267.990356445 267.939575195 267.799926758 267.439575195 266.740356445 258.510253906 258.960449219 258.999511719 258.659667969 258.210449219 257.909667969 257.770019531 257.630371094 257.479980469 257.460449219 257.590332031 257.699707031 257.649902344 257.499511719 257.340332031 257.159667969 256.869628906 242.630279541 242.930084229 243.140045166 243.340240479 243.449615479 243.369537354 243.189849854 243.059967041 243.029693604 243.019927979 243.040435791 243.050201416 243.010162354 242.840240479 242.750396729 243.000396729 243.479888916 232.900024414 233.17980957 233.33996582 233.509887695 233.690063477 233.730102539 233.600219727 233.440063477 233.420043945 233.489868164 233.569946289 233.630004883 233.600219727 233.42980957 233.239868164 233.299926758 233.790161133 221.039978027 221.249938965 221.380065918 221.449890137 221.459899902 221.380065918 221.25994873 221.17010498 221.199890137 221.350036621 221.499938965 221.570007324 221.539978027 221.469909668 221.499938965 221.709899902 222.180114746 207.370040894 207.140060425 207.030197144 206.930099487 206.729904175 206.499923706 206.359786987 206.350021362 206.339767456 206.240158081 206.160079956 206.200119019 206.379806519 206.64982605 207.070236206 207.609786987 208.200119019 193.44972229 192.03956604 190.989761353 190.249526978 189.649917603 189.159683228 188.939956665 188.909683228 188.84034729 188.670425415 188.670425415 189.100112915 189.78956604 190.499526978 191.239761353 192.220230103 193.420425415 196.529525757 195.359603882 194.229721069 193.319564819 192.819564819 192.660385132 192.670150757 192.819564819 193.040267944 193.189682007 193.109603882 192.840072632 192.569564819 192.439682007 192.490463257 192.740463257 193.330307007 206.580154419 206.199783325 205.890213013 205.580154419 205.299880981 205.179763794 205.250076294 205.410232544 205.509841919 205.469802856 205.299880981 205.000076294 204.589920044 204.080154419 203.480056763 202.960037231 202.799880981 217.020172119 216.659820557 216.310211182 215.920074463 215.619781494 215.489898682 215.509918213 215.659820557 215.920074463 216.190093994 216.279937744 216.179840088 216.060211182 216.000152588 215.889801025 215.54019165 214.940093994 219.600311279 219.770233154 219.970428467 219.879608154 219.499725342 219.199920654 219.289764404 219.520233154 219.499725342 219.260467529 219.180389404 219.299530029 219.329803467 219.230194092 219.329803467 219.720428467 219.940155029 229.629730225 228.669769287 227.730316162 227.259613037 227.45980835 227.70980835 227.339691162 226.589691162 226.28012085 226.650238037 227.219573975 227.629730225 228.169769287 229.03012085 229.839691162 230.129730225 230.060394287 298.920074463 299.939605713 300.439605713 300.529449463 300.529449463 300.560699463 300.580230713 300.660308838 300.689605713 300.449371338 299.949371338 299.480621338 299.060699463 298.429840088 297.580230713 296.800933838 296.060699463 293.679199219 294.339355469 295.030761719 295.349121094 295.280761719 295.149902344 295.220214844 295.440917969 295.489746094 295.130371094 294.560058594 294.009277344 293.479980469 292.819824219 292.079589844 291.380371094 290.479980469 289.179748535 289.570373535 289.950256348 290.24029541 290.479553223 290.559631348 290.429748535 290.34967041 290.469787598 290.540100098 290.16998291 289.519592285 289.019592285 288.629943848 287.90045166 286.75982666 285.500061035 281.639709473 281.620178223 281.530334473 281.429748535 281.549865723 281.910217285 282.290100098 282.440490723 282.450256348 282.58013916 282.860412598 283.139709473 283.309631348 283.379943848 283.190490723 282.450256348 280.960021973 276.619537354 276.689849854 276.479888916 276.189849854 275.939849854 275.800201416 275.729888916 275.699615479 275.699615479 275.819732666 276.059967041 276.319732666 276.519927979 276.680084229 276.659576416 276.189849854 275.040435791 269.08996582 269.399536133 269.41027832 269.08996582 268.610473633 268.210083008 267.979614258 267.899536133 267.860473633 267.889770508 267.960083008 268.009887695 268.059692383 268.059692383 267.899536133 267.420043945 266.599731445 258.600097656 258.949707031 258.880371094 258.529785156 258.170410156 257.970214844 257.859863281 257.720214844 257.579589844 257.579589844 257.720214844 257.810058594 257.710449219 257.489746094 257.300292969 257.109863281 256.800292969 242.680084229 242.909576416 243.080474854 243.309967041 243.489654541 243.449615479 243.239654541 243.069732666 242.989654541 242.970123291 242.970123291 243.050201416 243.080474854 242.949615479 242.819732666 242.979888916 243.409576416 232.949829102 233.239868164 233.400024414 233.600219727 233.790161133 233.830200195 233.670043945 233.480102539 233.460083008 233.540161133 233.600219727 233.620239258 233.580200195 233.449829102 233.270141602 233.310180664 233.770141602 221.039978027 221.249938965 221.380065918 221.459899902 221.469909668 221.390075684 221.249938965 221.160095215 221.239929199 221.400085449 221.529968262 221.539978027 221.499938965 221.469909668 221.539978027 221.739929199 222.180114746 207.350021362 207.120040894 206.999923706 206.930099487 206.760177612 206.519943237 206.370040894 206.350021362 206.339767456 206.280197144 206.249923706 206.320236206 206.499923706 206.760177612 207.160079956 207.689865112 208.269943237 193.499526978 192.029800415 190.890151978 190.119644165 189.600112915 189.19972229 188.960464478 188.850112915 188.749526978 188.630386353 188.720230103 189.119644165 189.720230103 190.409683228 191.27003479 192.369644165 193.579605103 196.729721069 195.609603882 194.529525757 193.620346069 193.029525757 192.740463257 192.670150757 192.750228882 192.939682007 193.019760132 192.910385132 192.639877319 192.420150757 192.340072632 192.380111694 192.630111694 193.259994507 206.609939575 206.109939575 205.710037231 205.379959106 205.169998169 205.129959106 205.239822388 205.399978638 205.500076294 205.480056763 205.319900513 205.060134888 204.640213013 204.069900513 203.410232544 202.839920044 202.669998169 217.190093994 217.009918213 216.79019165 216.360015869 215.900054932 215.6300354 215.6300354 215.810211182 216.009918213 216.100250244 216.060211182 215.980133057 216.000152588 216.04019165 215.940093994 215.560211182 214.940093994 219.930389404 219.900115967 219.919647217 219.839569092 219.619842529 219.510467529 219.579803467 219.629608154 219.430389404 219.199920654 219.239959717 219.470428467 219.459686279 219.239959717 219.260467529 219.659881592 219.940155029 228.860198975 228.169769287 227.5496521 227.1199646 226.980316162 226.8699646 226.5496521 226.2996521 226.469573975 226.879730225 227.1199646 227.310394287 227.910003662 228.969573975 229.919769287 230.270355225 230.150238037 298.949371338 299.900543213 300.369293213 300.480621338 300.570465088 300.679840088 300.660308838 300.550933838 300.439605713 300.279449463 300.000152588 299.619293213 299.189605713 298.560699463 297.750152588 296.920074463 296.070465088 293.630371094 294.509277344 295.259277344 295.519042969 295.390136719 295.280761719 295.339355469 295.399902344 295.280761719 294.960449219 294.569824219 294.159667969 293.659667969 292.999511719 292.269042969 291.489746094 290.540527344 289.089904785 289.610412598 290.089904785 290.41998291 290.629943848 290.690490723 290.549865723 290.40045166 290.41998291 290.41998291 290.110412598 289.570373535 289.160217285 288.780334473 288.059631348 286.91998291 285.710021973 281.59967041 281.629943848 281.629943848 281.620178223 281.75982666 282.089904785 282.40045166 282.500061035 282.519592285 282.66998291 282.950256348 283.179748535 283.309631348 283.34967041 283.190490723 282.500061035 281.120178223 276.710357666 276.699615479 276.439849854 276.149810791 275.930084229 275.819732666 275.769927979 275.739654541 275.769927979 275.890045166 276.109771729 276.330474854 276.519927979 276.699615479 276.710357666 276.220123291 275.050201416 269.099731445 269.33996582 269.210083008 268.830200195 268.42980957 268.16027832 268.030395508 267.960083008 267.91027832 267.91027832 267.969848633 268.059692383 268.16027832 268.200317383 267.990356445 267.399536133 266.460083008 258.590332031 258.819824219 258.710449219 258.439941406 258.229980469 258.109863281 257.989746094 257.789550781 257.609863281 257.640136719 257.810058594 257.909667969 257.770019531 257.489746094 257.239746094 257.039550781 256.710449219 242.729888916 242.920318604 243.040435791 243.269927979 243.479888916 243.479888916 243.279693604 243.080474854 242.989654541 242.949615479 242.939849854 243.029693604 243.109771729 243.040435791 242.899810791 242.979888916 243.330474854 232.960083008 233.270141602 233.50012207 233.719848633 233.889770508 233.889770508 233.690063477 233.509887695 233.50012207 233.580200195 233.609985352 233.580200195 233.540161133 233.449829102 233.290161133 233.299926758 233.730102539 220.969909668 221.190124512 221.380065918 221.499938965 221.549987793 221.449890137 221.269958496 221.17010498 221.249938965 221.440124512 221.539978027 221.50994873 221.440124512 221.459899902 221.570007324 221.799987793 222.209899902 207.300216675 207.070236206 206.959884644 206.910079956 206.760177612 206.550216675 206.39982605 206.359786987 206.359786987 206.330001831 206.320236206 206.430099487 206.609786987 206.859786987 207.249923706 207.769943237 208.359786987 193.44972229 191.999526978 190.829605103 190.029800415 189.510269165 189.170425415 188.960464478 188.850112915 188.77003479 188.710464478 188.779800415 189.079605103 189.60987854 190.34034729 191.310073853 192.489761353 193.69972229 196.790267944 195.649642944 194.599838257 193.719955444 193.099838257 192.769760132 192.639877319 192.689682007 192.790267944 192.809799194 192.679916382 192.519760132 192.380111694 192.309799194 192.330307007 192.559799194 193.219955444 206.669998169 206.109939575 205.6900177 205.370193481 205.179763794 205.109939575 205.169998169 205.27986145 205.370193481 205.399978638 205.310134888 205.060134888 204.629959106 204.009841919 203.310134888 202.719802856 202.52986145 217.3800354 217.199859619 216.96987915 216.589996338 216.150054932 215.860015869 215.759918213 215.819976807 215.889801025 215.900054932 215.889801025 215.940093994 216.080230713 216.159820557 216.020172119 215.600250244 214.989898682 219.989959717 219.779998779 219.690155029 219.629608154 219.520233154 219.480194092 219.570037842 219.579803467 219.390350342 219.230194092 219.339569092 219.520233154 219.459686279 219.199920654 219.180389404 219.520233154 219.820037842 228.60043335 228.160003662 227.679534912 227.219573975 226.879730225 226.610198975 226.379730225 226.3699646 226.650238037 226.910003662 226.9402771 227.079925537 227.78012085 228.9402771 229.9402771 230.410003662 230.400238037 298.900543213 299.730621338 300.269683838 300.500152588 300.650543213 300.730621338 300.660308838 300.449371338 300.289215088 300.209136963 300.019683838 299.640777588 299.160308838 298.640777588 298.000152588 297.170074463 296.140777588 293.700683594 294.620605469 295.370605469 295.599121094 295.479980469 295.390136719 295.419433594 295.399902344 295.259277344 294.999511719 294.630371094 294.149902344 293.620605469 293.089355469 292.499511719 291.710449219 290.649902344 288.99029541 289.629943848 290.25982666 290.629943848 290.780334473 290.750061035 290.589904785 290.49029541 290.530334473 290.50982666 290.16998291 289.65045166 289.229553223 288.84967041 288.129943848 287.019592285 285.839904785 281.59967041 281.690490723 281.799865723 281.879943848 282.019592285 282.219787598 282.40045166 282.440490723 282.49029541 282.65045166 282.889709473 283.09967041 283.24029541 283.339904785 283.250061035 282.639709473 281.33013916 276.840240479 276.750396729 276.439849854 276.130279541 275.899810791 275.809967041 275.809967041 275.840240479 275.880279541 275.970123291 276.119537354 276.279693604 276.460357666 276.649810791 276.680084229 276.189849854 275.010162354 269.120239258 269.240356445 268.990356445 268.599731445 268.299926758 268.170043945 268.130004883 268.07043457 267.979614258 267.92980957 267.969848633 268.08996582 268.240356445 268.299926758 268.040161133 267.370239258 266.380004883 258.529785156 258.689941406 258.590332031 258.460449219 258.369628906 258.289550781 258.100097656 257.819824219 257.609863281 257.630371094 257.850097656 257.979980469 257.850097656 257.529785156 257.239746094 256.999511719 256.630371094 242.760162354 242.899810791 242.989654541 243.199615479 243.430084229 243.449615479 243.250396729 243.059967041 242.989654541 242.970123291 242.949615479 243.010162354 243.090240479 243.069732666 242.949615479 242.989654541 243.260162354 232.949829102 233.310180664 233.58996582 233.810180664 233.940063477 233.889770508 233.690063477 233.509887695 233.520141602 233.600219727 233.609985352 233.549926758 233.509887695 233.420043945 233.259887695 233.259887695 233.670043945 220.910095215 221.190124512 221.440124512 221.620056152 221.660095215 221.529968262 221.33001709 221.180114746 221.269958496 221.469909668 221.559997559 221.489929199 221.400085449 221.440124512 221.610046387 221.860046387 222.249938965 207.22013855 207.030197144 206.930099487 206.890060425 206.780197144 206.600021362 206.450119019 206.39982605 206.379806519 206.359786987 206.370040894 206.479904175 206.669845581 206.939865112 207.350021362 207.870040894 208.439865112 193.34034729 191.960464478 190.829605103 190.010269165 189.489761353 189.149917603 188.960464478 188.899917603 188.890151978 188.85987854 188.890151978 189.119644165 189.60987854 190.369644165 191.390151978 192.550308228 193.729995728 196.759994507 195.580307007 194.519760132 193.620346069 192.979721069 192.630111694 192.509994507 192.519760132 192.550033569 192.529525757 192.460189819 192.380111694 192.330307007 192.279525757 192.279525757 192.529525757 193.210189819 206.770095825 206.239822388 205.839920044 205.520095825 205.299880981 205.1900177 205.149978638 205.199783325 205.27986145 205.339920044 205.27986145 205.02986145 204.560134888 203.929763794 203.230056763 202.640213013 202.419998169 217.509918213 217.179840088 216.860015869 216.500152588 216.150054932 215.869781494 215.690093994 215.610015869 215.6300354 215.71987915 215.850250244 216.009918213 216.170074463 216.210113525 216.049957275 215.659820557 215.069976807 219.869842529 219.669647217 219.629608154 219.589569092 219.480194092 219.419647217 219.470428467 219.520233154 219.419647217 219.289764404 219.329803467 219.430389404 219.339569092 219.169647217 219.199920654 219.489959717 219.730194092 228.810394287 228.360198975 227.749847412 227.1902771 226.860198975 226.679534912 226.539886475 226.53012085 226.679534912 226.78012085 226.810394287 227.10043335 227.910003662 228.95980835 229.839691162 230.379730225 230.589691162 298.920074463 299.709136963 300.330230713 300.619293213 300.670074463 300.660308838 300.609527588 300.470855713 300.359527588 300.289215088 300.089996338 299.619293213 299.039215088 298.599761963 298.160308838 297.420074463 296.289215088 293.839355469 294.679199219 295.370605469 295.560058594 295.450683594 295.370605469 295.409667969 295.429199219 295.370605469 295.190917969 294.759277344 294.069824219 293.440917969 293.050292969 292.700683594 291.979980469 290.870605469 288.950256348 289.65045166 290.339904785 290.729553223 290.790100098 290.65045166 290.50982666 290.519592285 290.660217285 290.660217285 290.320373535 289.75982666 289.280334473 288.84967041 288.15045166 287.09967041 286.000061035 281.589904785 281.679748535 281.879943848 282.049865723 282.16998291 282.269592285 282.339904785 282.379943848 282.41998291 282.530334473 282.719787598 282.91998291 283.120178223 283.309631348 283.280334473 282.750061035 281.50982666 276.939849854 276.779693604 276.439849854 276.109771729 275.899810791 275.840240479 275.880279541 275.939849854 275.979888916 276.050201416 276.130279541 276.229888916 276.369537354 276.569732666 276.609771729 276.130279541 274.979888916 269.16027832 269.219848633 268.92980957 268.58996582 268.389770508 268.309692383 268.219848633 268.099731445 267.969848633 267.920043945 267.939575195 268.059692383 268.240356445 268.290161133 267.990356445 267.299926758 266.32043457 258.499511719 258.630371094 258.590332031 258.539550781 258.510253906 258.390136719 258.140136719 257.829589844 257.630371094 257.659667969 257.869628906 258.020019531 257.909667969 257.600097656 257.279785156 256.989746094 256.560058594 242.750396729 242.859771729 242.939849854 243.149810791 243.359771729 243.369537354 243.189849854 243.029693604 243.000396729 243.010162354 242.989654541 243.019927979 243.080474854 243.059967041 242.949615479 242.960357666 243.159576416 232.949829102 233.350219727 233.670043945 233.850219727 233.920043945 233.850219727 233.659790039 233.520141602 233.520141602 233.580200195 233.58996582 233.520141602 233.469848633 233.380004883 233.199829102 233.190063477 233.609985352 220.910095215 221.279968262 221.58001709 221.749938965 221.75994873 221.610046387 221.390075684 221.239929199 221.309997559 221.479919434 221.559997559 221.469909668 221.360046387 221.42010498 221.620056152 221.910095215 222.289978027 207.120040894 206.97013855 206.910079956 206.890060425 206.8099823 206.660079956 206.510177612 206.450119019 206.419845581 206.379806519 206.379806519 206.499923706 206.709884644 207.019943237 207.439865112 207.959884644 208.510177612 193.159683228 191.819839478 190.739761353 189.960464478 189.439956665 189.119644165 188.970230103 188.960464478 188.979995728 188.979995728 189.02003479 189.249526978 189.760269165 190.53956604 191.510269165 192.619644165 193.77003479 196.769760132 195.580307007 194.479721069 193.529525757 192.819564819 192.420150757 192.300033569 192.300033569 192.309799194 192.290267944 192.269760132 192.259994507 192.219955444 192.170150757 192.219955444 192.529525757 193.229721069 206.830154419 206.35017395 205.960037231 205.649978638 205.410232544 205.259841919 205.199783325 205.219802856 205.290115356 205.35017395 205.270095825 204.980056763 204.509841919 203.890213013 203.1900177 202.580154419 202.310134888 217.670074463 217.190093994 216.750152588 216.3800354 216.060211182 215.770172119 215.509918213 215.400054932 215.46987915 215.659820557 215.830230713 215.96987915 216.080230713 216.119781494 216.020172119 215.690093994 215.139801025 219.739959717 219.669647217 219.730194092 219.749725342 219.610076904 219.480194092 219.499725342 219.549530029 219.480194092 219.350311279 219.310272217 219.329803467 219.289764404 219.249725342 219.339569092 219.570037842 219.739959717 229.140472412 228.490081787 227.640472412 226.980316162 226.740081787 226.679534912 226.589691162 226.509613037 226.539886475 226.610198975 226.759613037 227.230316162 228.060394287 228.929534912 229.6199646 230.20980835 230.589691162 299.029449463 299.820465088 300.470855713 300.679840088 300.580230713 300.550933838 300.609527588 300.539215088 300.400543213 300.320465088 300.150543213 299.660308838 298.990386963 298.509918213 298.170074463 297.519683838 296.359527588 293.970214844 294.710449219 295.310058594 295.479980469 295.399902344 295.370605469 295.409667969 295.429199219 295.419433594 295.310058594 294.870605469 294.089355469 293.390136719 293.079589844 292.860839844 292.210449219 291.089355469 289.00982666 289.65045166 290.290100098 290.639709473 290.65045166 290.530334473 290.469787598 290.570373535 290.719787598 290.719787598 290.410217285 289.90045166 289.389709473 288.90045166 288.210021973 287.25982666 286.210021973 281.519592285 281.58013916 281.820373535 282.030334473 282.129943848 282.16998291 282.229553223 282.320373535 282.370178223 282.41998291 282.530334473 282.74029541 282.99029541 283.190490723 283.160217285 282.66998291 281.549865723 276.920318604 276.729888916 276.390045166 276.090240479 275.939849854 275.920318604 275.970123291 276.000396729 276.040435791 276.080474854 276.149810791 276.210357666 276.330474854 276.500396729 276.510162354 276.040435791 274.949615479 269.210083008 269.25012207 269.01965332 268.790161133 268.639770508 268.490356445 268.240356445 268.00012207 267.880004883 267.849731445 267.889770508 268.00012207 268.149536133 268.17980957 267.880004883 267.200317383 266.25012207 258.529785156 258.649902344 258.619628906 258.579589844 258.529785156 258.359863281 258.100097656 257.859863281 257.720214844 257.760253906 257.920410156 258.020019531 257.920410156 257.640136719 257.329589844 257.020019531 256.470214844 242.720123291 242.869537354 242.970123291 243.170318604 243.340240479 243.309967041 243.130279541 243.010162354 243.010162354 243.059967041 243.069732666 243.090240479 243.119537354 243.059967041 242.909576416 242.869537354 243.000396729 232.92980957 233.400024414 233.739868164 233.870239258 233.880004883 233.819946289 233.690063477 233.560180664 233.520141602 233.529907227 233.529907227 233.480102539 233.440063477 233.330200195 233.150024414 233.150024414 233.580200195 220.930114746 221.390075684 221.699890137 221.83001709 221.789978027 221.640075684 221.449890137 221.33001709 221.360046387 221.489929199 221.539978027 221.449890137 221.350036621 221.410095215 221.650085449 221.959899902 222.350036621 207.019943237 206.89982605 206.870040894 206.870040894 206.8099823 206.669845581 206.539962769 206.47013855 206.419845581 206.379806519 206.39982605 206.539962769 206.749923706 207.089767456 207.519943237 208.030197144 208.570236206 192.94972229 191.569839478 190.52003479 189.800308228 189.350112915 189.079605103 188.970230103 188.979995728 189.010269165 189.029800415 189.119644165 189.420425415 189.979995728 190.739761353 191.659683228 192.729995728 193.899917603 196.819564819 195.670150757 194.559799194 193.519760132 192.719955444 192.269760132 192.120346069 192.139877319 192.179916382 192.189682007 192.200424194 192.170150757 192.099838257 192.059799194 192.170150757 192.559799194 193.290267944 206.870193481 206.379959106 205.989822388 205.660232544 205.419998169 205.27986145 205.239822388 205.239822388 205.290115356 205.319900513 205.219802856 204.9400177 204.460037231 203.839920044 203.129959106 202.480056763 202.179763794 217.830230713 217.319976807 216.839996338 216.429840088 216.069976807 215.71987915 215.46987915 215.3800354 215.500152588 215.679840088 215.79019165 215.830230713 215.920074463 216.029937744 216.020172119 215.71987915 215.159820557 219.669647217 219.659881592 219.770233154 219.810272217 219.699920654 219.589569092 219.589569092 219.610076904 219.520233154 219.369842529 219.310272217 219.329803467 219.339569092 219.369842529 219.459686279 219.610076904 219.730194092 229.289886475 228.539886475 227.589691162 226.890472412 226.650238037 226.570159912 226.4402771 226.360198975 226.4402771 226.570159912 226.78012085 227.259613037 228.039886475 228.820159912 229.469573975 230.079925537 230.5496521 299.109527588 299.910308838 300.529449463 300.650543213 300.519683838 300.550933838 300.670074463 300.529449463 300.230621338 300.099761963 300.080230713 299.740386963 299.060699463 298.480621338 298.089996338 297.439605713 296.289215088 294.060058594 294.749511719 295.269042969 295.440917969 295.440917969 295.470214844 295.479980469 295.360839844 295.210449219 295.110839844 294.829589844 294.220214844 293.599121094 293.280761719 292.999511719 292.290527344 291.159667969 289.110412598 289.629943848 290.139709473 290.429748535 290.50982666 290.530334473 290.589904785 290.66998291 290.690490723 290.58013916 290.370178223 290.030334473 289.589904785 289.030334473 288.320373535 287.429748535 286.410217285 281.440490723 281.479553223 281.679748535 281.870178223 281.940490723 281.960021973 282.09967041 282.280334473 282.339904785 282.33013916 282.410217285 282.639709473 282.879943848 282.99029541 282.879943848 282.429748535 281.440490723 276.830474854 276.649810791 276.330474854 276.109771729 276.029693604 276.029693604 276.050201416 276.040435791 276.040435791 276.090240479 276.149810791 276.199615479 276.300201416 276.420318604 276.390045166 275.899810791 274.869537354 269.229614258 269.280395508 269.120239258 268.969848633 268.83996582 268.580200195 268.200317383 267.889770508 267.780395508 267.799926758 267.860473633 267.939575195 268.059692383 268.040161133 267.729614258 267.080200195 266.170043945 258.560058594 258.640136719 258.600097656 258.569824219 258.449707031 258.249511719 258.029785156 257.890136719 257.850097656 257.880371094 257.949707031 257.989746094 257.859863281 257.609863281 257.340332031 256.989746094 256.350097656 242.699615479 242.920318604 243.100006104 243.279693604 243.390045166 243.319732666 243.149810791 243.040435791 243.069732666 243.130279541 243.149810791 243.189849854 243.199615479 243.059967041 242.840240479 242.720123291 242.790435791 232.909790039 233.440063477 233.799926758 233.889770508 233.870239258 233.819946289 233.75012207 233.620239258 233.529907227 233.509887695 233.50012207 233.480102539 233.42980957 233.319946289 233.139770508 233.150024414 233.580200195 220.910095215 221.400085449 221.699890137 221.769958496 221.719909668 221.620056152 221.50994873 221.42010498 221.430114746 221.50994873 221.529968262 221.459899902 221.380065918 221.440124512 221.67010498 222.00994873 222.410095215 206.930099487 206.830001831 206.800216675 206.789962769 206.740158081 206.640060425 206.530197144 206.439865112 206.390060425 206.370040894 206.419845581 206.5599823 206.800216675 207.129806519 207.570236206 208.089767456 208.64982605 192.78956604 191.380386353 190.329605103 189.649917603 189.27003479 189.060073853 188.979995728 189.010269165 189.029800415 189.050308228 189.19972229 189.569839478 190.159683228 190.909683228 191.810073853 192.880386353 194.100112915 196.830307007 195.719955444 194.599838257 193.519760132 192.670150757 192.189682007 192.040267944 192.069564819 192.109603882 192.149642944 192.149642944 192.120346069 192.019760132 191.990463257 192.170150757 192.620346069 193.370346069 206.960037231 206.4400177 206.020095825 205.669998169 205.419998169 205.270095825 205.199783325 205.169998169 205.169998169 205.1900177 205.120193481 204.85017395 204.390213013 203.750076294 203.000076294 202.339920044 202.049880981 217.839996338 217.400054932 216.940093994 216.500152588 216.089996338 215.730133057 215.509918213 215.480133057 215.610015869 215.71987915 215.730133057 215.739898682 215.8800354 216.080230713 216.100250244 215.750152588 215.110015869 219.669647217 219.619842529 219.680389404 219.699920654 219.659881592 219.640350342 219.659881592 219.600311279 219.459686279 219.329803467 219.320037842 219.369842529 219.390350342 219.390350342 219.419647217 219.520233154 219.629608154 229.270355225 228.589691162 227.730316162 227.070159912 226.740081787 226.499847412 226.270355225 226.249847412 226.499847412 226.740081787 226.860198975 227.1902771 227.900238037 228.759613037 229.539886475 230.1902771 230.579925537 299.140777588 299.939605713 300.519683838 300.619293213 300.529449463 300.629058838 300.740386963 300.459136963 299.970855713 299.820465088 299.970855713 299.800933838 299.150543213 298.490386963 298.019683838 297.330230713 296.179840088 294.099121094 294.759277344 295.249511719 295.429199219 295.470214844 295.540527344 295.519042969 295.239746094 294.890136719 294.700683594 294.599121094 294.300292969 293.849121094 293.489746094 293.089355469 292.290527344 291.140136719 289.16998291 289.620178223 290.019592285 290.290100098 290.440490723 290.589904785 290.729553223 290.729553223 290.530334473 290.320373535 290.210021973 290.09967041 289.75982666 289.160217285 288.410217285 287.540100098 286.50982666 281.429748535 281.460021973 281.59967041 281.729553223 281.750061035 281.790100098 282.00982666 282.250061035 282.320373535 282.269592285 282.339904785 282.589904785 282.790100098 282.769592285 282.570373535 282.179748535 281.360412598 276.790435791 276.659576416 276.390045166 276.199615479 276.159576416 276.159576416 276.119537354 276.050201416 276.019927979 276.059967041 276.100006104 276.130279541 276.189849854 276.279693604 276.239654541 275.750396729 274.750396729 269.280395508 269.299926758 269.099731445 268.950317383 268.82043457 268.51965332 268.139770508 267.860473633 267.809692383 267.83996582 267.880004883 267.950317383 268.01965332 267.969848633 267.630004883 266.979614258 266.08996582 258.529785156 258.569824219 258.520019531 258.479980469 258.369628906 258.149902344 257.970214844 257.920410156 257.939941406 257.960449219 257.979980469 257.939941406 257.779785156 257.539550781 257.270019531 256.890136719 256.170410156 242.630279541 242.949615479 243.229888916 243.420318604 243.460357666 243.340240479 243.180084229 243.119537354 243.159576416 243.199615479 243.220123291 243.250396729 243.250396729 243.069732666 242.769927979 242.580474854 242.569732666 232.889770508 233.50012207 233.880004883 233.949829102 233.900024414 233.870239258 233.810180664 233.690063477 233.58996582 233.560180664 233.540161133 233.509887695 233.460083008 233.33996582 233.17980957 233.199829102 233.580200195 220.890075684 221.340026855 221.58001709 221.620056152 221.600036621 221.590026855 221.559997559 221.50994873 221.489929199 221.539978027 221.549987793 221.499938965 221.440124512 221.50994873 221.729919434 222.049987793 222.479919434 206.879806519 206.769943237 206.729904175 206.700119019 206.660079956 206.589767456 206.499923706 206.430099487 206.370040894 206.339767456 206.410079956 206.589767456 206.820236206 207.14982605 207.589767456 208.140060425 208.769943237 192.729995728 191.310073853 190.279800415 189.640151978 189.279800415 189.09034729 189.02003479 189.03956604 189.069839478 189.119644165 189.28956604 189.710464478 190.319839478 191.050308228 191.939956665 193.060073853 194.300308228 196.800033569 195.660385132 194.540267944 193.479721069 192.660385132 192.189682007 192.029525757 192.019760132 192.029525757 192.040267944 192.050033569 192.019760132 191.969955444 191.979721069 192.189682007 192.660385132 193.429916382 207.109939575 206.589920044 206.140213013 205.750076294 205.460037231 205.270095825 205.140213013 205.060134888 205.040115356 205.080154419 205.020095825 204.77986145 204.310134888 203.649978638 202.879959106 202.230056763 201.980056763 217.699859619 217.299957275 216.8800354 216.449859619 216.049957275 215.699859619 215.509918213 215.520172119 215.619781494 215.699859619 215.699859619 215.759918213 215.96987915 216.210113525 216.190093994 215.750152588 215.020172119 219.730194092 219.629608154 219.610076904 219.610076904 219.619842529 219.680389404 219.690155029 219.579803467 219.379608154 219.279998779 219.310272217 219.360076904 219.350311279 219.320037842 219.339569092 219.430389404 219.560272217 229.1902771 228.6199646 227.890472412 227.28012085 226.85043335 226.450042725 226.179534912 226.270355225 226.669769287 226.95980835 226.990081787 227.179534912 227.839691162 228.789886475 229.6902771 230.379730225 230.669769287 299.189605713 299.970855713 300.500152588 300.599761963 300.560699463 300.650543213 300.689605713 300.339996338 299.890777588 299.800933838 299.980621338 299.789215088 299.089996338 298.420074463 297.970855713 297.300933838 296.160308838 294.089355469 294.749511719 295.239746094 295.380371094 295.360839844 295.399902344 295.399902344 295.130371094 294.679199219 294.419433594 294.370605469 294.220214844 293.870605469 293.499511719 293.069824219 292.319824219 291.200683594 289.110412598 289.59967041 290.019592285 290.299865723 290.429748535 290.549865723 290.66998291 290.610412598 290.299865723 290.030334473 290.00982666 290.08013916 289.84967041 289.219787598 288.440490723 287.589904785 286.549865723 281.40045166 281.429748535 281.500061035 281.58013916 281.589904785 281.690490723 281.979553223 282.280334473 282.34967041 282.25982666 282.309631348 282.530334473 282.66998291 282.549865723 282.33013916 282.030334473 281.370178223 276.890045166 276.840240479 276.590240479 276.380279541 276.290435791 276.229888916 276.130279541 276.029693604 275.979888916 275.989654541 275.989654541 275.960357666 275.970123291 276.059967041 276.029693604 275.580474854 274.659576416 269.420043945 269.33996582 269.01965332 268.780395508 268.58996582 268.33996582 268.07043457 267.920043945 267.91027832 267.920043945 267.920043945 267.969848633 268.040161133 267.950317383 267.559692383 266.899536133 266.01965332 258.470214844 258.460449219 258.430175781 258.420410156 258.340332031 258.140136719 257.970214844 257.930175781 257.960449219 257.989746094 257.979980469 257.909667969 257.689941406 257.409667969 257.119628906 256.710449219 255.94972229 242.510162354 242.930084229 243.309967041 243.519927979 243.519927979 243.380279541 243.239654541 243.220123291 243.260162354 243.279693604 243.250396729 243.260162354 243.239654541 243.050201416 242.720123291 242.439849854 242.319732666 232.889770508 233.580200195 233.980102539 234.049926758 233.989868164 233.940063477 233.859985352 233.739868164 233.670043945 233.659790039 233.639770508 233.560180664 233.480102539 233.380004883 233.239868164 233.239868164 233.529907227 220.890075684 221.289978027 221.479919434 221.529968262 221.570007324 221.610046387 221.610046387 221.570007324 221.549987793 221.600036621 221.620056152 221.58001709 221.529968262 221.58001709 221.769958496 222.090026855 222.519958496 206.839767456 206.740158081 206.709884644 206.680099487 206.620040894 206.539962769 206.479904175 206.430099487 206.370040894 206.350021362 206.419845581 206.600021362 206.859786987 207.189865112 207.629806519 208.200119019 208.879806519 192.689956665 191.310073853 190.28956604 189.670425415 189.329605103 189.119644165 189.03956604 189.060073853 189.100112915 189.149917603 189.34034729 189.78956604 190.44972229 191.210464478 192.09034729 193.19972229 194.460464478 196.800033569 195.639877319 194.490463257 193.450424194 192.670150757 192.240463257 192.059799194 191.979721069 191.939682007 191.920150757 191.920150757 191.920150757 191.910385132 191.969955444 192.219955444 192.689682007 193.460189819 207.259841919 206.739822388 206.250076294 205.810134888 205.469802856 205.250076294 205.109939575 205.040115356 205.040115356 205.069900513 205.000076294 204.730056763 204.230056763 203.560134888 202.819900513 202.199783325 201.980056763 217.580230713 217.190093994 216.79019165 216.389801025 216.000152588 215.670074463 215.480133057 215.460113525 215.549957275 215.639801025 215.710113525 215.819976807 216.020172119 216.230133057 216.179840088 215.739898682 214.980133057 219.789764404 219.720428467 219.690155029 219.669647217 219.690155029 219.739959717 219.720428467 219.570037842 219.379608154 219.299530029 219.339569092 219.360076904 219.299530029 219.279998779 219.379608154 219.510467529 219.629608154 229.179534912 228.610198975 227.879730225 227.249847412 226.789886475 226.400238037 226.160003662 226.2996521 226.700042725 226.969573975 227.020355225 227.230316162 227.910003662 228.8699646 229.740081787 230.390472412 230.650238037 299.289215088 299.990386963 300.470855713 300.619293213 300.560699463 300.519683838 300.439605713 300.170074463 299.920074463 299.949371338 300.029449463 299.660308838 298.879058838 298.269683838 297.920074463 297.300933838 296.179840088 294.040527344 294.679199219 295.200683594 295.339355469 295.210449219 295.120605469 295.140136719 295.030761719 294.690917969 294.390136719 294.239746094 294.050292969 293.700683594 293.339355469 292.989746094 292.370605469 291.319824219 288.950256348 289.50982666 290.049865723 290.379943848 290.440490723 290.389709473 290.40045166 290.360412598 290.09967041 289.820373535 289.83013916 290.000061035 289.860412598 289.25982666 288.479553223 287.639709473 286.58013916 281.290100098 281.24029541 281.219787598 281.290100098 281.389709473 281.59967041 281.979553223 282.34967041 282.429748535 282.320373535 282.309631348 282.440490723 282.49029541 282.339904785 282.160217285 281.950256348 281.379943848 277.029693604 277.040435791 276.760162354 276.479888916 276.309967041 276.199615479 276.090240479 275.979888916 275.920318604 275.909576416 275.859771729 275.769927979 275.750396729 275.819732666 275.790435791 275.399810791 274.559967041 269.599731445 269.42980957 268.979614258 268.599731445 268.32043457 268.110473633 267.960083008 267.939575195 267.939575195 267.91027832 267.889770508 267.960083008 268.030395508 267.899536133 267.469848633 266.799926758 265.939575195 258.409667969 258.409667969 258.390136719 258.420410156 258.369628906 258.180175781 258.010253906 257.949707031 257.949707031 257.989746094 257.999511719 257.899902344 257.619628906 257.249511719 256.899902344 256.460449219 255.69972229 242.369537354 242.890045166 243.359771729 243.609771729 243.609771729 243.460357666 243.340240479 243.350006104 243.399810791 243.390045166 243.309967041 243.269927979 243.229888916 243.040435791 242.680084229 242.330474854 242.050201416 232.940063477 233.670043945 234.080200195 234.159790039 234.109985352 234.029907227 233.889770508 233.759887695 233.739868164 233.779907227 233.739868164 233.580200195 233.469848633 233.380004883 233.279907227 233.25012207 233.420043945 220.92010498 221.309997559 221.489929199 221.570007324 221.640075684 221.690124512 221.67010498 221.610046387 221.620056152 221.680114746 221.719909668 221.67010498 221.620056152 221.650085449 221.820007324 222.120056152 222.529968262 206.789962769 206.749923706 206.749923706 206.72013855 206.620040894 206.530197144 206.479904175 206.450119019 206.419845581 206.39982605 206.47013855 206.660079956 206.919845581 207.240158081 207.680099487 208.269943237 208.990158081 192.619644165 191.220230103 190.19972229 189.60987854 189.300308228 189.119644165 189.02003479 189.010269165 189.02003479 189.060073853 189.260269165 189.760269165 190.510269165 191.35987854 192.279800415 193.350112915 194.600112915 196.889877319 195.679916382 194.509994507 193.479721069 192.719955444 192.279525757 192.059799194 191.960189819 191.920150757 191.910385132 191.899642944 191.870346069 191.859603882 191.969955444 192.240463257 192.729721069 193.519760132 207.35017395 206.790115356 206.270095825 205.790115356 205.419998169 205.1900177 205.080154419 205.069900513 205.10017395 205.109939575 204.989822388 204.660232544 204.149978638 203.489822388 202.77986145 202.199783325 201.989822388 217.619781494 217.199859619 216.799957275 216.420074463 216.04019165 215.699859619 215.480133057 215.420074463 215.509918213 215.659820557 215.779937744 215.869781494 215.989898682 216.1300354 216.119781494 215.779937744 215.069976807 219.779998779 219.760467529 219.770233154 219.760467529 219.749725342 219.749725342 219.709686279 219.570037842 219.430389404 219.400115967 219.430389404 219.379608154 219.270233154 219.299530029 219.499725342 219.699920654 219.760467529 229.240081787 228.60043335 227.7996521 227.110198975 226.660003662 226.379730225 226.20980835 226.289886475 226.539886475 226.730316162 226.890472412 227.2996521 228.070159912 228.919769287 229.6199646 230.20980835 230.560394287 299.339996338 299.980621338 300.429840088 300.640777588 300.599761963 300.410308838 300.150543213 299.920074463 299.839996338 299.949371338 299.939605713 299.509918213 298.779449463 298.230621338 297.879058838 297.220855713 296.109527588 293.890136719 294.530761719 295.120605469 295.370605469 295.190917969 294.940917969 294.880371094 294.870605469 294.690917969 294.390136719 294.179199219 293.940917969 293.589355469 293.229980469 292.909667969 292.360839844 291.339355469 288.719787598 289.309631348 289.960021973 290.410217285 290.440490723 290.250061035 290.16998291 290.179748535 290.00982666 289.729553223 289.700256348 289.91998291 289.879943848 289.34967041 288.549865723 287.660217285 286.559631348 281.139709473 280.950256348 280.820373535 280.910217285 281.160217285 281.50982666 281.979553223 282.40045166 282.540100098 282.429748535 282.33013916 282.34967041 282.320373535 282.160217285 282.000061035 281.809631348 281.250061035 277.059967041 277.019927979 276.689849854 276.350006104 276.159576416 276.080474854 276.010162354 275.939849854 275.880279541 275.869537354 275.809967041 275.699615479 275.630279541 275.640045166 275.559967041 275.159576416 274.409576416 269.649536133 269.469848633 268.979614258 268.490356445 268.110473633 267.870239258 267.780395508 267.82043457 267.83996582 267.790161133 267.780395508 267.880004883 267.950317383 267.76965332 267.32043457 266.66027832 265.830200195 258.369628906 258.430175781 258.439941406 258.460449219 258.399902344 258.229980469 258.060058594 257.970214844 257.960449219 257.999511719 258.020019531 257.899902344 257.560058594 257.109863281 256.670410156 256.189941406 255.43019104 242.250396729 242.859771729 243.399810791 243.720123291 243.739654541 243.580474854 243.439849854 243.449615479 243.519927979 243.519927979 243.420318604 243.309967041 243.210357666 243.010162354 242.640045166 242.180084229 241.750396729 232.940063477 233.699829102 234.109985352 234.230102539 234.210083008 234.109985352 233.909790039 233.779907227 233.810180664 233.880004883 233.799926758 233.580200195 233.42980957 233.359985352 233.290161133 233.25012207 233.319946289 220.940124512 221.350036621 221.549987793 221.650085449 221.749938965 221.789978027 221.739929199 221.67010498 221.699890137 221.75994873 221.779968262 221.719909668 221.67010498 221.699890137 221.870056152 222.150085449 222.539978027 206.729904175 206.740158081 206.789962769 206.760177612 206.629806519 206.490158081 206.450119019 206.47013855 206.47013855 206.459884644 206.530197144 206.72013855 206.990158081 207.3099823 207.729904175 208.330001831 209.089767456 192.569839478 191.09034729 190.02003479 189.460464478 189.229995728 189.119644165 189.010269165 188.939956665 188.909683228 188.920425415 189.119644165 189.659683228 190.52003479 191.489761353 192.479995728 193.550308228 194.78956604 197.000228882 195.790267944 194.590072632 193.519760132 192.729721069 192.259994507 192.019760132 191.939682007 191.950424194 191.979721069 191.960189819 191.889877319 191.859603882 191.990463257 192.300033569 192.809799194 193.630111694 207.410232544 206.810134888 206.259841919 205.750076294 205.359939575 205.140213013 205.060134888 205.060134888 205.109939575 205.089920044 204.929763794 204.569900513 204.060134888 203.419998169 202.739822388 202.160232544 201.960037231 217.71987915 217.270172119 216.850250244 216.420074463 216.020172119 215.659820557 215.460113525 215.429840088 215.549957275 215.730133057 215.869781494 215.929840088 215.96987915 216.060211182 216.1300354 215.909820557 215.21987915 219.730194092 219.720428467 219.770233154 219.760467529 219.720428467 219.699920654 219.659881592 219.549530029 219.449920654 219.459686279 219.499725342 219.400115967 219.239959717 219.249725342 219.510467529 219.770233154 219.820037842 229.259613037 228.660003662 227.85043335 227.140472412 226.700042725 226.469573975 226.339691162 226.310394287 226.3699646 226.480316162 226.740081787 227.35043335 228.219573975 228.999847412 229.560394287 230.079925537 230.520355225 299.279449463 299.869293213 300.330230713 300.670074463 300.730621338 300.439605713 300.019683838 299.709136963 299.609527588 299.660308838 299.660308838 299.410308838 298.910308838 298.390777588 297.830230713 297.000152588 295.890777588 293.679199219 294.280761719 294.950683594 295.370605469 295.290527344 294.940917969 294.720214844 294.649902344 294.489746094 294.239746094 294.040527344 293.880371094 293.620605469 293.259277344 292.839355469 292.210449219 291.179199219 288.530334473 289.059631348 289.75982666 290.339904785 290.450256348 290.24029541 290.09967041 290.120178223 289.979553223 289.679748535 289.59967041 289.84967041 289.950256348 289.469787598 288.59967041 287.59967041 286.460021973 281.09967041 280.769592285 280.549865723 280.690490723 281.040100098 281.469787598 281.950256348 282.389709473 282.58013916 282.500061035 282.34967041 282.25982666 282.179748535 282.040100098 281.870178223 281.610412598 281.00982666 276.869537354 276.750396729 276.359771729 276.029693604 275.909576416 275.939849854 275.979888916 275.939849854 275.890045166 275.850006104 275.800201416 275.710357666 275.619537354 275.519927979 275.330474854 274.890045166 274.199615479 269.460083008 269.32043457 268.889770508 268.389770508 267.950317383 267.66027832 267.599731445 267.670043945 267.710083008 267.67980957 267.689575195 267.780395508 267.799926758 267.580200195 267.099731445 266.460083008 265.66027832 258.310058594 258.489746094 258.510253906 258.479980469 258.390136719 258.239746094 258.100097656 258.020019531 257.999511719 258.029785156 258.039550781 257.909667969 257.520019531 257.020019531 256.510253906 255.94972229 255.140151978 242.189849854 242.840240479 243.439849854 243.800201416 243.859771729 243.689849854 243.510162354 243.489654541 243.590240479 243.619537354 243.510162354 243.340240479 243.180084229 242.949615479 242.559967041 242.040435791 241.460357666 232.900024414 233.650024414 234.040161133 234.190063477 234.239868164 234.150024414 233.940063477 233.810180664 233.889770508 233.989868164 233.880004883 233.609985352 233.420043945 233.350219727 233.299926758 233.25012207 233.230102539 220.900085449 221.33001709 221.570007324 221.709899902 221.809997559 221.850036621 221.799987793 221.769958496 221.789978027 221.83001709 221.789978027 221.709899902 221.660095215 221.729919434 221.900085449 222.190124512 222.559997559 206.680099487 206.700119019 206.760177612 206.740158081 206.600021362 206.450119019 206.39982605 206.439865112 206.490158081 206.490158081 206.570236206 206.749923706 207.019943237 207.339767456 207.769943237 208.379806519 209.180099487 192.600112915 191.03956604 189.93019104 189.390151978 189.249526978 189.18019104 189.050308228 188.939956665 188.880386353 188.899917603 189.09034729 189.630386353 190.53956604 191.60987854 192.689956665 193.819839478 195.079605103 197.099838257 195.880111694 194.630111694 193.529525757 192.710189819 192.210189819 191.969955444 191.899642944 191.929916382 191.979721069 191.950424194 191.870346069 191.849838257 192.009994507 192.380111694 192.939682007 193.809799194 207.52986145 206.910232544 206.339920044 205.819900513 205.410232544 205.149978638 205.040115356 205.020095825 205.069900513 205.049880981 204.879959106 204.52986145 204.020095825 203.399978638 202.710037231 202.120193481 201.919998169 217.710113525 217.239898682 216.759918213 216.279937744 215.830230713 215.480133057 215.319976807 215.3800354 215.54019165 215.71987915 215.869781494 215.949859619 216.000152588 216.089996338 216.179840088 216.000152588 215.299957275 219.709686279 219.680389404 219.720428467 219.720428467 219.699920654 219.699920654 219.669647217 219.539764404 219.419647217 219.419647217 219.499725342 219.419647217 219.209686279 219.140350342 219.369842529 219.709686279 219.829803467 229.219573975 228.740081787 228.03012085 227.329925537 226.839691162 226.560394287 226.410003662 226.3699646 226.390472412 226.469573975 226.719573975 227.3699646 228.289886475 229.1199646 229.6902771 230.160003662 230.560394287 299.160308838 299.689605713 300.179840088 300.650543213 300.800933838 300.529449463 300.070465088 299.670074463 299.420074463 299.330230713 299.359527588 299.369293213 299.109527588 298.529449463 297.689605713 296.720855713 295.679840088 293.489746094 294.030761719 294.679199219 295.239746094 295.319824219 294.970214844 294.649902344 294.470214844 294.269042969 293.979980469 293.819824219 293.810058594 293.669433594 293.280761719 292.710449219 291.989746094 290.989746094 288.460021973 288.91998291 289.58013916 290.229553223 290.469787598 290.269592285 290.089904785 290.070373535 289.940490723 289.610412598 289.50982666 289.790100098 289.969787598 289.540100098 288.589904785 287.500061035 286.34967041 281.190490723 280.809631348 280.570373535 280.74029541 281.129943848 281.540100098 281.950256348 282.339904785 282.559631348 282.500061035 282.320373535 282.190490723 282.110412598 282.00982666 281.820373535 281.429748535 280.780334473 276.590240479 276.390045166 275.989654541 275.729888916 275.710357666 275.859771729 275.989654541 275.979888916 275.899810791 275.830474854 275.739654541 275.649810791 275.559967041 275.409576416 275.130279541 274.630279541 273.970123291 269.059692383 268.979614258 268.649536133 268.210083008 267.76965332 267.51965332 267.490356445 267.610473633 267.689575195 267.689575195 267.689575195 267.700317383 267.610473633 267.32043457 266.830200195 266.200317383 265.450317383 258.220214844 258.489746094 258.520019531 258.439941406 258.319824219 258.199707031 258.109863281 258.050292969 258.020019531 258.039550781 258.060058594 257.899902344 257.499511719 256.970214844 256.409667969 255.760269165 254.880386353 242.140045166 242.819732666 243.420318604 243.790435791 243.869537354 243.720123291 243.529693604 243.500396729 243.600006104 243.649810791 243.540435791 243.330474854 243.119537354 242.859771729 242.439849854 241.869537354 241.199615479 232.819946289 233.520141602 233.900024414 234.080200195 234.17980957 234.109985352 233.92980957 233.850219727 233.980102539 234.08996582 233.980102539 233.699829102 233.469848633 233.370239258 233.299926758 233.25012207 233.17980957 220.789978027 221.249938965 221.50994873 221.67010498 221.799987793 221.860046387 221.860046387 221.860046387 221.870056152 221.850036621 221.769958496 221.660095215 221.620056152 221.699890137 221.900085449 222.199890137 222.559997559 206.629806519 206.620040894 206.669845581 206.64982605 206.539962769 206.410079956 206.379806519 206.419845581 206.459884644 206.479904175 206.539962769 206.72013855 206.990158081 207.330001831 207.789962769 208.430099487 209.269943237 192.69972229 191.149917603 190.010269165 189.460464478 189.34034729 189.279800415 189.10987854 188.94972229 188.920425415 189.010269165 189.229995728 189.739761353 190.60987854 191.739761353 192.920425415 194.100112915 195.390151978 197.279525757 195.990463257 194.700424194 193.569564819 192.729721069 192.229721069 191.960189819 191.859603882 191.840072632 191.859603882 191.840072632 191.809799194 191.849838257 192.069564819 192.500228882 193.099838257 194.000228882 207.710037231 207.049880981 206.449783325 205.929763794 205.500076294 205.1900177 205.02986145 205.000076294 205.049880981 205.060134888 204.919998169 204.589920044 204.089920044 203.449783325 202.719802856 202.129959106 201.929763794 217.650054932 217.150054932 216.639801025 216.1300354 215.6300354 215.279937744 215.179840088 215.279937744 215.449859619 215.589996338 215.730133057 215.869781494 215.989898682 216.110015869 216.179840088 215.96987915 215.259918213 219.739959717 219.690155029 219.730194092 219.760467529 219.749725342 219.779998779 219.770233154 219.600311279 219.390350342 219.350311279 219.470428467 219.480194092 219.279998779 219.110076904 219.260467529 219.629608154 219.879608154 229.150238037 228.740081787 228.1199646 227.4402771 226.879730225 226.520355225 226.35043335 226.379730225 226.509613037 226.629730225 226.810394287 227.310394287 228.20980835 229.169769287 229.890472412 230.339691162 230.570159912 299.019683838 299.560699463 300.070465088 300.580230713 300.730621338 300.470855713 300.089996338 299.740386963 299.410308838 299.189605713 299.189605713 299.310699463 299.129058838 298.439605713 297.470855713 296.509918213 295.640777588 293.360839844 293.880371094 294.450683594 294.999511719 295.159667969 294.880371094 294.550292969 294.370605469 294.159667969 293.849121094 293.679199219 293.700683594 293.599121094 293.149902344 292.489746094 291.780761719 290.950683594 288.460021973 288.929748535 289.540100098 290.190490723 290.450256348 290.250061035 290.00982666 289.940490723 289.799865723 289.519592285 289.429748535 289.719787598 289.91998291 289.49029541 288.519592285 287.429748535 286.34967041 281.250061035 280.91998291 280.750061035 280.950256348 281.339904785 281.679748535 282.00982666 282.339904785 282.540100098 282.479553223 282.290100098 282.139709473 282.09967041 282.040100098 281.799865723 281.33013916 280.629943848 276.330474854 276.140045166 275.779693604 275.580474854 275.630279541 275.830474854 275.989654541 276.010162354 275.920318604 275.790435791 275.640045166 275.510162354 275.420318604 275.279693604 274.949615479 274.409576416 273.760162354 268.580200195 268.580200195 268.360473633 267.990356445 267.630004883 267.450317383 267.479614258 267.620239258 267.719848633 267.740356445 267.710083008 267.630004883 267.420043945 267.049926758 266.540161133 265.920043945 265.189575195 258.029785156 258.359863281 258.420410156 258.310058594 258.199707031 258.130371094 258.100097656 258.060058594 258.039550781 258.050292969 258.060058594 257.890136719 257.489746094 256.930175781 256.319824219 255.579605103 254.640151978 242.090240479 242.769927979 243.319732666 243.680084229 243.769927979 243.659576416 243.500396729 243.500396729 243.609771729 243.640045166 243.519927979 243.300201416 243.059967041 242.769927979 242.309967041 241.680084229 240.939849854 232.759887695 233.400024414 233.739868164 233.940063477 234.049926758 234.020141602 233.900024414 233.900024414 234.049926758 234.159790039 234.040161133 233.779907227 233.560180664 233.400024414 233.279907227 233.199829102 233.060180664 220.67010498 221.130065918 221.400085449 221.58001709 221.719909668 221.820007324 221.880065918 221.910095215 221.900085449 221.840026855 221.739929199 221.630065918 221.570007324 221.640075684 221.850036621 222.180114746 222.539978027 206.539962769 206.479904175 206.499923706 206.499923706 206.459884644 206.39982605 206.379806519 206.410079956 206.430099487 206.450119019 206.499923706 206.669845581 206.930099487 207.280197144 207.780197144 208.47013855 209.350021362 192.84034729 191.329605103 190.18019104 189.600112915 189.439956665 189.34034729 189.119644165 188.920425415 188.93019104 189.10987854 189.390151978 189.890151978 190.739761353 191.890151978 193.149917603 194.390151978 195.689956665 197.580307007 196.219955444 194.859603882 193.679916382 192.830307007 192.309799194 192.040267944 191.880111694 191.800033569 191.759994507 191.769760132 191.800033569 191.929916382 192.200424194 192.639877319 193.269760132 194.200424194 207.890213013 207.169998169 206.52986145 205.960037231 205.489822388 205.149978638 204.980056763 204.969802856 205.040115356 205.080154419 204.969802856 204.660232544 204.169998169 203.520095825 202.799880981 202.210037231 202.009841919 217.650054932 217.119781494 216.6300354 216.139801025 215.6300354 215.259918213 215.159820557 215.259918213 215.389801025 215.480133057 215.600250244 215.770172119 215.949859619 216.089996338 216.1300354 215.909820557 215.210113525 219.749725342 219.709686279 219.770233154 219.799530029 219.779998779 219.799530029 219.820037842 219.680389404 219.419647217 219.320037842 219.449920654 219.560272217 219.419647217 219.199920654 219.270233154 219.629608154 219.959686279 229.110198975 228.660003662 228.03012085 227.360198975 226.829925537 226.450042725 226.259613037 226.329925537 226.570159912 226.749847412 226.8699646 227.219573975 228.020355225 229.070159912 229.9402771 230.4402771 230.520355225 298.890777588 299.519683838 300.119293213 300.580230713 300.580230713 300.250152588 299.929840088 299.709136963 299.429840088 299.170074463 299.140777588 299.199371338 298.920074463 298.160308838 297.250152588 296.470855713 295.740386963 293.310058594 293.890136719 294.399902344 294.849121094 294.919433594 294.630371094 294.339355469 294.229980469 294.099121094 293.829589844 293.630371094 293.599121094 293.450683594 292.950683594 292.249511719 291.620605469 290.940917969 288.469787598 289.019592285 289.59967041 290.16998291 290.360412598 290.120178223 289.83013916 289.729553223 289.610412598 289.389709473 289.33013916 289.58013916 289.729553223 289.339904785 288.440490723 287.429748535 286.440490723 281.139709473 280.910217285 280.860412598 281.129943848 281.540100098 281.870178223 282.160217285 282.429748535 282.59967041 282.540100098 282.33013916 282.16998291 282.139709473 282.070373535 281.790100098 281.24029541 280.519592285 276.140045166 276.000396729 275.699615479 275.529693604 275.590240479 275.779693604 275.930084229 275.989654541 275.949615479 275.809967041 275.600006104 275.420318604 275.319732666 275.170318604 274.790435791 274.199615479 273.550201416 268.149536133 268.259887695 268.110473633 267.799926758 267.530395508 267.439575195 267.51965332 267.639770508 267.710083008 267.719848633 267.67980957 267.530395508 267.240356445 266.82043457 266.259887695 265.599731445 264.870239258 257.739746094 258.130371094 258.229980469 258.170410156 258.100097656 258.079589844 258.100097656 258.090332031 258.090332031 258.100097656 258.079589844 257.880371094 257.430175781 256.829589844 256.170410156 255.399917603 254.420425415 242.040435791 242.680084229 243.180084229 243.500396729 243.609771729 243.550201416 243.470123291 243.500396729 243.609771729 243.609771729 243.479888916 243.279693604 243.040435791 242.680084229 242.180084229 241.479888916 240.659576416 232.710083008 233.319946289 233.639770508 233.830200195 233.909790039 233.900024414 233.850219727 233.920043945 234.08996582 234.159790039 234.029907227 233.810180664 233.600219727 233.409790039 233.219848633 233.060180664 232.830200195 220.50994873 220.989929199 221.289978027 221.489929199 221.650085449 221.779968262 221.860046387 221.870056152 221.860046387 221.83001709 221.75994873 221.660095215 221.559997559 221.590026855 221.789978027 222.140075684 222.50994873 206.370040894 206.280197144 206.289962769 206.330001831 206.350021362 206.359786987 206.379806519 206.39982605 206.410079956 206.419845581 206.479904175 206.609786987 206.850021362 207.22013855 207.769943237 208.519943237 209.450119019 192.989761353 191.52003479 190.369644165 189.739761353 189.529800415 189.380386353 189.130386353 188.899917603 188.920425415 189.130386353 189.470230103 189.999526978 190.890151978 192.09034729 193.399917603 194.659683228 195.960464478 197.979721069 196.529525757 195.109603882 193.859603882 192.950424194 192.389877319 192.099838257 191.939682007 191.830307007 191.779525757 191.809799194 191.889877319 192.059799194 192.349838257 192.819564819 193.479721069 194.450424194 208.069900513 207.310134888 206.589920044 205.949783325 205.4400177 205.089920044 204.919998169 204.910232544 204.989822388 205.040115356 204.9400177 204.649978638 204.179763794 203.569900513 202.879959106 202.319900513 202.109939575 217.679840088 217.139801025 216.690093994 216.250152588 215.779937744 215.369781494 215.210113525 215.279937744 215.429840088 215.509918213 215.589996338 215.750152588 215.929840088 216.080230713 216.1300354 215.929840088 215.29019165 219.720428467 219.690155029 219.770233154 219.779998779 219.709686279 219.690155029 219.739959717 219.680389404 219.470428467 219.339569092 219.419647217 219.549530029 219.489959717 219.310272217 219.329803467 219.640350342 219.970428467 229.10043335 228.5496521 227.860198975 227.230316162 226.810394287 226.509613037 226.320159912 226.320159912 226.5496521 226.770355225 226.919769287 227.230316162 227.950042725 228.950042725 229.839691162 230.379730225 230.520355225 298.759918213 299.570465088 300.320465088 300.679840088 300.509918213 300.080230713 299.759918213 299.519683838 299.269683838 299.089996338 299.119293213 299.119293213 298.720855713 297.939605713 297.150543213 296.490386963 295.750152588 293.269042969 293.989746094 294.509277344 294.819824219 294.749511719 294.370605469 294.069824219 293.970214844 293.890136719 293.710449219 293.560058594 293.530761719 293.360839844 292.829589844 292.099121094 291.419433594 290.749511719 288.429748535 289.110412598 289.700256348 290.139709473 290.190490723 289.91998291 289.629943848 289.49029541 289.370178223 289.190490723 289.179748535 289.410217285 289.519592285 289.160217285 288.360412598 287.410217285 286.410217285 280.910217285 280.780334473 280.839904785 281.179748535 281.660217285 282.040100098 282.339904785 282.589904785 282.729553223 282.660217285 282.450256348 282.280334473 282.210021973 282.09967041 281.75982666 281.160217285 280.389709473 275.920318604 275.840240479 275.580474854 275.439849854 275.519927979 275.699615479 275.840240479 275.920318604 275.949615479 275.880279541 275.670318604 275.460357666 275.340240479 275.130279541 274.670318604 273.979888916 273.290435791 267.830200195 268.009887695 267.899536133 267.639770508 267.469848633 267.509887695 267.630004883 267.689575195 267.670043945 267.66027832 267.599731445 267.42980957 267.099731445 266.630004883 266.009887695 265.280395508 264.51965332 257.409667969 257.859863281 258.050292969 258.069824219 258.050292969 258.069824219 258.109863281 258.140136719 258.149902344 258.159667969 258.109863281 257.859863281 257.359863281 256.689941406 255.960464478 255.149917603 254.149917603 241.949615479 242.569732666 243.019927979 243.319732666 243.439849854 243.430084229 243.430084229 243.489654541 243.569732666 243.550201416 243.420318604 243.250396729 243.000396729 242.600006104 242.019927979 241.269927979 240.350006104 232.630004883 233.239868164 233.560180664 233.730102539 233.799926758 233.810180664 233.830200195 233.949829102 234.08996582 234.109985352 233.949829102 233.75012207 233.569946289 233.370239258 233.139770508 232.909790039 232.540161133 220.320007324 220.840026855 221.180114746 221.400085449 221.58001709 221.739929199 221.809997559 221.820007324 221.809997559 221.83001709 221.809997559 221.690124512 221.539978027 221.519958496 221.739929199 222.110046387 222.459899902 206.109786987 206.050216675 206.080001831 206.160079956 206.22013855 206.269943237 206.330001831 206.359786987 206.379806519 206.410079956 206.47013855 206.570236206 206.780197144 207.160079956 207.760177612 208.580001831 209.5599823 193.170425415 191.689956665 190.53956604 189.890151978 189.640151978 189.479995728 189.220230103 188.989761353 188.989761353 189.189956665 189.53956604 190.100112915 191.050308228 192.319839478 193.670425415 194.93019104 196.229995728 198.410385132 196.889877319 195.399642944 194.069564819 193.059799194 192.420150757 192.109603882 191.960189819 191.870346069 191.830307007 191.889877319 192.000228882 192.170150757 192.490463257 193.000228882 193.729721069 194.729721069 208.310134888 207.520095825 206.730056763 206.02986145 205.460037231 205.080154419 204.899978638 204.859939575 204.899978638 204.9400177 204.859939575 204.620193481 204.199783325 203.640213013 202.989822388 202.419998169 202.199783325 217.690093994 217.100250244 216.659820557 216.279937744 215.839996338 215.429840088 215.21987915 215.279937744 215.460113525 215.580230713 215.670074463 215.779937744 215.940093994 216.089996338 216.179840088 216.029937744 215.420074463 219.720428467 219.669647217 219.739959717 219.749725342 219.640350342 219.579803467 219.629608154 219.659881592 219.529998779 219.360076904 219.350311279 219.430389404 219.419647217 219.320037842 219.360076904 219.619842529 219.879608154 229.060394287 228.45980835 227.730316162 227.150238037 226.820159912 226.629730225 226.45980835 226.410003662 226.539886475 226.759613037 226.999847412 227.400238037 228.089691162 228.929534912 229.6902771 230.249847412 230.579925537 298.650543213 299.650543213 300.449371338 300.730621338 300.480621338 300.070465088 299.720855713 299.339996338 299.000152588 298.939605713 299.129058838 299.150543213 298.679840088 297.910308838 297.150543213 296.429840088 295.529449463 293.220214844 294.069824219 294.610839844 294.800292969 294.620605469 294.220214844 293.880371094 293.700683594 293.579589844 293.470214844 293.450683594 293.499511719 293.349121094 292.819824219 292.030761719 291.210449219 290.370605469 288.370178223 289.16998291 289.769592285 290.049865723 289.99029541 289.710021973 289.460021973 289.280334473 289.08013916 288.950256348 289.049865723 289.309631348 289.389709473 289.040100098 288.280334473 287.280334473 286.179748535 280.75982666 280.690490723 280.790100098 281.16998291 281.700256348 282.139709473 282.450256348 282.679748535 282.820373535 282.769592285 282.570373535 282.379943848 282.25982666 282.110412598 281.729553223 281.089904785 280.269592285 275.649810791 275.600006104 275.359771729 275.260162354 275.399810791 275.619537354 275.739654541 275.830474854 275.920318604 275.890045166 275.710357666 275.510162354 275.369537354 275.109771729 274.540435791 273.750396729 273.019927979 267.58996582 267.759887695 267.649536133 267.479614258 267.460083008 267.639770508 267.790161133 267.799926758 267.719848633 267.66027832 267.580200195 267.380004883 267.009887695 266.479614258 265.780395508 264.979614258 264.189575195 257.090332031 257.609863281 257.909667969 258.050292969 258.060058594 258.050292969 258.100097656 258.159667969 258.199707031 258.210449219 258.140136719 257.880371094 257.329589844 256.579589844 255.749526978 254.85987854 253.84034729 241.830474854 242.430084229 242.859771729 243.149810791 243.290435791 243.330474854 243.359771729 243.439849854 243.500396729 243.470123291 243.350006104 243.180084229 242.920318604 242.479888916 241.859771729 241.069732666 240.080474854 232.480102539 233.100219727 233.440063477 233.609985352 233.710083008 233.770141602 233.83996582 233.969848633 234.060180664 234.029907227 233.859985352 233.659790039 233.469848633 233.270141602 233.049926758 232.739868164 232.230102539 220.110046387 220.67010498 221.059997559 221.309997559 221.499938965 221.660095215 221.739929199 221.739929199 221.769958496 221.83001709 221.83001709 221.680114746 221.469909668 221.449890137 221.690124512 222.08001709 222.390075684 205.830001831 205.8099823 205.89982605 205.990158081 206.0599823 206.14982605 206.249923706 206.320236206 206.359786987 206.390060425 206.450119019 206.539962769 206.72013855 207.109786987 207.760177612 208.640060425 209.680099487 193.350112915 191.84034729 190.720230103 190.079605103 189.800308228 189.630386353 189.380386353 189.170425415 189.149917603 189.329605103 189.670425415 190.260269165 191.220230103 192.510269165 193.890151978 195.170425415 196.489761353 198.859603882 197.250228882 195.689682007 194.300033569 193.200424194 192.500228882 192.130111694 191.950424194 191.859603882 191.840072632 191.920150757 192.059799194 192.279525757 192.630111694 193.200424194 194.009994507 195.059799194 208.569900513 207.759841919 206.949783325 206.1900177 205.560134888 205.120193481 204.879959106 204.810134888 204.819900513 204.859939575 204.839920044 204.649978638 204.27986145 203.750076294 203.120193481 202.569900513 202.319900513 217.679840088 217.060211182 216.569976807 216.199859619 215.799957275 215.409820557 215.179840088 215.230133057 215.429840088 215.600250244 215.699859619 215.799957275 215.929840088 216.089996338 216.21987915 216.089996338 215.460113525 219.739959717 219.669647217 219.739959717 219.779998779 219.720428467 219.640350342 219.650115967 219.659881592 219.560272217 219.409881592 219.320037842 219.339569092 219.339569092 219.310272217 219.409881592 219.659881592 219.839569092 228.990081787 228.400238037 227.669769287 227.070159912 226.740081787 226.570159912 226.480316162 226.480316162 226.589691162 226.78012085 227.060394287 227.5496521 228.249847412 228.95980835 229.5496521 230.089691162 230.60043335 298.599761963 299.679840088 300.420074463 300.560699463 300.349761963 300.129058838 299.810699463 299.250152588 298.769683838 298.800933838 299.160308838 299.220855713 298.689605713 297.910308838 297.150543213 296.310699463 295.220855713 293.169433594 294.079589844 294.569824219 294.649902344 294.460449219 294.149902344 293.849121094 293.569824219 293.349121094 293.259277344 293.349121094 293.440917969 293.280761719 292.769042969 291.999511719 291.079589844 290.079589844 288.290100098 289.210021973 289.820373535 290.000061035 289.839904785 289.610412598 289.389709473 289.129943848 288.84967041 288.780334473 289.040100098 289.370178223 289.40045166 288.960021973 288.16998291 287.139709473 285.929748535 280.750061035 280.700256348 280.780334473 281.15045166 281.679748535 282.120178223 282.41998291 282.65045166 282.799865723 282.780334473 282.58013916 282.370178223 282.229553223 282.049865723 281.690490723 281.040100098 280.160217285 275.420318604 275.359771729 275.119537354 275.069732666 275.309967041 275.580474854 275.689849854 275.750396729 275.830474854 275.809967041 275.619537354 275.399810791 275.250396729 274.979888916 274.369537354 273.540435791 272.769927979 267.420043945 267.51965332 267.399536133 267.32043457 267.460083008 267.759887695 267.960083008 267.969848633 267.870239258 267.76965332 267.620239258 267.33996582 266.91027832 266.330200195 265.57043457 264.729614258 263.920043945 256.819824219 257.390136719 257.789550781 258.020019531 258.060058594 258.029785156 258.060058594 258.140136719 258.199707031 258.199707031 258.130371094 257.890136719 257.350097656 256.529785156 255.560073853 254.560073853 253.499526978 241.680084229 242.260162354 242.680084229 242.970123291 243.149810791 243.229888916 243.300201416 243.390045166 243.439849854 243.399810791 243.300201416 243.119537354 242.800201416 242.319732666 241.689849854 240.899810791 239.859771729 232.239868164 232.859985352 233.219848633 233.440063477 233.609985352 233.75012207 233.850219727 233.940063477 233.989868164 233.92980957 233.770141602 233.549926758 233.330200195 233.100219727 232.880004883 232.540161133 231.909790039 219.870056152 220.479919434 220.890075684 221.150085449 221.370056152 221.549987793 221.660095215 221.67010498 221.719909668 221.799987793 221.799987793 221.600036621 221.360046387 221.340026855 221.610046387 221.989929199 222.269958496 205.5599823 205.600021362 205.740158081 205.850021362 205.930099487 206.050216675 206.200119019 206.3099823 206.359786987 206.379806519 206.419845581 206.510177612 206.700119019 207.120040894 207.800216675 208.72013855 209.769943237 193.53956604 191.999526978 190.909683228 190.28956604 189.999526978 189.779800415 189.52003479 189.310073853 189.310073853 189.510269165 189.85987854 190.43019104 191.380386353 192.659683228 194.03956604 195.35987854 196.749526978 199.359603882 197.630111694 195.979721069 194.540267944 193.410385132 192.670150757 192.240463257 192.009994507 191.870346069 191.840072632 191.950424194 192.149642944 192.420150757 192.819564819 193.429916382 194.290267944 195.380111694 208.77986145 207.969802856 207.120193481 206.310134888 205.60017395 205.10017395 204.839920044 204.739822388 204.770095825 204.839920044 204.870193481 204.730056763 204.390213013 203.870193481 203.270095825 202.739822388 202.509841919 217.750152588 217.119781494 216.589996338 216.179840088 215.810211182 215.449859619 215.210113525 215.210113525 215.369781494 215.549957275 215.690093994 215.779937744 215.900054932 216.060211182 216.199859619 216.060211182 215.409820557 219.739959717 219.659881592 219.720428467 219.820037842 219.839569092 219.789764404 219.730194092 219.669647217 219.539764404 219.400115967 219.329803467 219.339569092 219.339569092 219.369842529 219.499725342 219.770233154 219.949920654 228.929534912 228.360198975 227.650238037 226.990081787 226.520355225 226.310394287 226.310394287 226.480316162 226.669769287 226.810394287 227.03012085 227.509613037 228.230316162 228.929534912 229.469573975 229.969573975 230.5496521 298.599761963 299.699371338 300.250152588 300.209136963 300.080230713 300.070465088 299.810699463 299.140777588 298.599761963 298.730621338 299.160308838 299.160308838 298.570465088 297.789215088 297.050933838 296.170074463 295.089996338 293.069824219 293.999511719 294.450683594 294.460449219 294.290527344 294.110839844 293.870605469 293.530761719 293.249511719 293.190917969 293.310058594 293.370605469 293.130371094 292.640136719 291.950683594 291.089355469 290.099121094 288.110412598 289.139709473 289.820373535 289.969787598 289.809631348 289.620178223 289.40045166 289.049865723 288.729553223 288.750061035 289.16998291 289.549865723 289.469787598 288.910217285 288.08013916 287.070373535 285.889709473 280.839904785 280.769592285 280.790100098 281.110412598 281.589904785 281.99029541 282.269592285 282.530334473 282.719787598 282.700256348 282.479553223 282.24029541 282.089904785 281.91998291 281.549865723 280.889709473 279.979553223 275.290435791 275.220123291 274.970123291 274.960357666 275.269927979 275.559967041 275.659576416 275.689849854 275.750396729 275.699615479 275.430084229 275.159576416 274.989654541 274.750396729 274.189849854 273.369537354 272.559967041 267.360473633 267.380004883 267.240356445 267.229614258 267.469848633 267.799926758 268.01965332 268.040161133 267.990356445 267.880004883 267.670043945 267.299926758 266.799926758 266.16027832 265.370239258 264.50012207 263.700317383 256.579589844 257.140136719 257.619628906 257.920410156 257.989746094 257.960449219 257.999511719 258.119628906 258.180175781 258.170410156 258.100097656 257.890136719 257.369628906 256.489746094 255.399917603 254.279800415 253.159683228 241.479888916 242.050201416 242.470123291 242.800201416 243.019927979 243.149810791 243.260162354 243.359771729 243.420318604 243.399810791 243.300201416 243.080474854 242.689849854 242.149810791 241.510162354 240.699615479 239.619537354 231.900024414 232.529907227 232.940063477 233.230102539 233.50012207 233.710083008 233.819946289 233.83996582 233.850219727 233.830200195 233.699829102 233.449829102 233.150024414 232.870239258 232.639770508 232.279907227 231.560180664 219.559997559 220.199890137 220.650085449 220.949890137 221.199890137 221.430114746 221.559997559 221.590026855 221.630065918 221.719909668 221.699890137 221.479919434 221.219909668 221.219909668 221.499938965 221.850036621 222.059997559 205.359786987 205.430099487 205.600021362 205.72013855 205.8099823 205.979904175 206.200119019 206.359786987 206.410079956 206.390060425 206.390060425 206.479904175 206.72013855 207.180099487 207.890060425 208.800216675 209.8099823 193.779800415 192.229995728 191.159683228 190.53956604 190.229995728 189.960464478 189.640151978 189.409683228 189.409683228 189.649917603 190.03956604 190.60987854 191.52003479 192.779800415 194.159683228 195.529800415 196.979995728 199.880111694 198.040267944 196.279525757 194.779525757 193.639877319 192.870346069 192.399642944 192.090072632 191.929916382 191.889877319 192.019760132 192.279525757 192.609603882 193.029525757 193.649642944 194.529525757 195.679916382 208.929763794 208.069900513 207.1900177 206.330154419 205.569900513 205.02986145 204.750076294 204.669998169 204.710037231 204.810134888 204.870193481 204.750076294 204.429763794 203.949783325 203.410232544 202.9400177 202.730056763 217.869781494 217.259918213 216.730133057 216.270172119 215.889801025 215.529937744 215.279937744 215.210113525 215.330230713 215.520172119 215.679840088 215.779937744 215.860015869 216.000152588 216.159820557 216.049957275 215.400054932 219.690155029 219.629608154 219.680389404 219.779998779 219.839569092 219.820037842 219.739959717 219.629608154 219.459686279 219.339569092 219.320037842 219.350311279 219.369842529 219.369842529 219.539764404 219.860076904 220.089569092 228.910003662 228.310394287 227.6199646 226.929534912 226.379730225 226.10043335 226.150238037 226.429534912 226.719573975 226.8699646 227.009613037 227.400238037 228.1199646 228.900238037 229.499847412 229.999847412 230.490081787 298.550933838 299.650543213 300.070465088 299.959136963 299.869293213 299.890777588 299.570465088 298.849761963 298.400543213 298.650543213 299.060699463 298.959136963 298.330230713 297.599761963 296.890777588 296.050933838 295.109527588 292.849121094 293.839355469 294.339355469 294.360839844 294.210449219 294.030761719 293.769042969 293.399902344 293.130371094 293.149902344 293.290527344 293.280761719 292.999511719 292.499511719 291.860839844 291.099121094 290.259277344 287.799865723 288.889709473 289.660217285 289.910217285 289.809631348 289.629943848 289.360412598 288.940490723 288.639709473 288.769592285 289.269592285 289.639709473 289.469787598 288.809631348 287.960021973 287.040100098 286.00982666 280.940490723 280.860412598 280.83013916 281.09967041 281.500061035 281.839904785 282.110412598 282.410217285 282.629943848 282.589904785 282.33013916 282.070373535 281.910217285 281.719787598 281.299865723 280.58013916 279.660217285 275.210357666 275.159576416 274.930084229 274.930084229 275.229888916 275.510162354 275.619537354 275.699615479 275.769927979 275.680084229 275.340240479 274.979888916 274.790435791 274.550201416 274.029693604 273.250396729 272.390045166 267.399536133 267.380004883 267.229614258 267.25012207 267.50012207 267.790161133 267.939575195 267.990356445 268.009887695 267.950317383 267.710083008 267.280395508 266.729614258 266.040161133 265.189575195 264.299926758 263.50012207 256.359863281 256.869628906 257.359863281 257.720214844 257.859863281 257.899902344 257.979980469 258.119628906 258.189941406 258.140136719 258.039550781 257.829589844 257.329589844 256.430175781 255.249526978 254.02003479 252.84034729 241.229888916 241.809967041 242.250396729 242.609771729 242.880279541 243.069732666 243.199615479 243.300201416 243.380279541 243.399810791 243.319732666 243.059967041 242.600006104 241.979888916 241.279693604 240.430084229 239.300201416 231.50012207 232.17980957 232.630004883 233.00012207 233.370239258 233.630004883 233.730102539 233.719848633 233.710083008 233.739868164 233.650024414 233.370239258 232.980102539 232.630004883 232.33996582 231.92980957 231.139770508 219.190124512 219.840026855 220.33001709 220.699890137 221.039978027 221.320007324 221.479919434 221.519958496 221.549987793 221.600036621 221.549987793 221.340026855 221.130065918 221.160095215 221.410095215 221.680114746 221.799987793 205.22013855 205.300216675 205.47013855 205.600021362 205.709884644 205.910079956 206.189865112 206.419845581 206.459884644 206.39982605 206.379806519 206.479904175 206.749923706 207.260177612 207.990158081 208.859786987 209.8099823 194.140151978 192.569839478 191.479995728 190.850112915 190.510269165 190.210464478 189.850112915 189.550308228 189.52003479 189.779800415 190.189956665 190.779800415 191.649917603 192.880386353 194.300308228 195.729995728 197.220230103 200.370346069 198.439682007 196.590072632 195.019760132 193.840072632 193.019760132 192.479721069 192.160385132 191.990463257 191.960189819 192.090072632 192.370346069 192.740463257 193.189682007 193.809799194 194.729721069 195.960189819 209.040115356 208.129959106 207.219802856 206.319900513 205.540115356 205.000076294 204.719802856 204.640213013 204.669998169 204.750076294 204.799880981 204.719802856 204.469802856 204.060134888 203.569900513 203.149978638 202.969802856 217.889801025 217.330230713 216.810211182 216.350250244 215.929840088 215.560211182 215.279937744 215.170074463 215.270172119 215.500152588 215.710113525 215.79019165 215.810211182 215.920074463 216.110015869 216.100250244 215.509918213 219.650115967 219.629608154 219.669647217 219.720428467 219.739959717 219.739959717 219.699920654 219.600311279 219.409881592 219.260467529 219.239959717 219.310272217 219.329803467 219.339569092 219.499725342 219.829803467 220.129608154 228.900238037 228.230316162 227.5496521 226.900238037 226.390472412 226.1199646 226.1199646 226.360198975 226.660003662 226.910003662 227.10043335 227.45980835 228.110198975 228.919769287 229.60043335 230.1199646 230.539886475 298.420074463 299.470855713 299.910308838 299.869293213 299.810699463 299.709136963 299.220855713 298.500152588 298.209136963 298.519683838 298.849761963 298.699371338 298.150543213 297.470855713 296.670074463 295.810699463 295.050933838 292.569824219 293.589355469 294.200683594 294.349121094 294.210449219 293.929199219 293.550292969 293.159667969 292.970214844 293.050292969 293.210449219 293.200683594 292.950683594 292.450683594 291.739746094 290.940917969 290.210449219 287.49029541 288.530334473 289.379943848 289.769592285 289.769592285 289.549865723 289.16998291 288.729553223 288.49029541 288.679748535 289.16998291 289.530334473 289.379943848 288.729553223 287.799865723 286.870178223 286.00982666 281.049865723 280.960021973 280.91998291 281.139709473 281.469787598 281.750061035 282.019592285 282.33013916 282.530334473 282.460021973 282.190490723 281.960021973 281.780334473 281.530334473 281.019592285 280.25982666 279.370178223 275.109771729 275.100006104 274.930084229 274.960357666 275.199615479 275.449615479 275.590240479 275.739654541 275.850006104 275.729888916 275.359771729 274.970123291 274.739654541 274.479888916 273.939849854 273.130279541 272.250396729 267.450317383 267.469848633 267.330200195 267.33996582 267.540161133 267.729614258 267.82043457 267.899536133 268.01965332 268.01965332 267.780395508 267.33996582 266.780395508 266.059692383 265.149536133 264.170043945 263.290161133 256.149902344 256.609863281 257.069824219 257.470214844 257.710449219 257.840332031 257.989746094 258.130371094 258.189941406 258.119628906 257.979980469 257.739746094 257.220214844 256.310058594 255.100112915 253.800308228 252.550308228 240.960357666 241.569732666 242.019927979 242.399810791 242.710357666 242.939849854 243.090240479 243.220123291 243.300201416 243.350006104 243.290435791 243.019927979 242.500396729 241.809967041 241.029693604 240.100006104 238.890045166 231.139770508 231.830200195 232.330200195 232.75012207 233.159790039 233.489868164 233.620239258 233.609985352 233.620239258 233.67980957 233.620239258 233.319946289 232.859985352 232.440063477 232.080200195 231.569946289 230.710083008 218.809997559 219.440124512 219.979919434 220.449890137 220.870056152 221.219909668 221.400085449 221.459899902 221.489929199 221.50994873 221.42010498 221.219909668 221.08001709 221.150085449 221.360046387 221.529968262 221.519958496 205.140060425 205.169845581 205.350021362 205.490158081 205.620040894 205.850021362 206.180099487 206.419845581 206.490158081 206.410079956 206.370040894 206.47013855 206.769943237 207.300216675 208.030197144 208.879806519 209.789962769 194.60987854 193.02003479 191.890151978 191.210464478 190.850112915 190.53956604 190.140151978 189.779800415 189.670425415 189.909683228 190.34034729 190.920425415 191.760269165 192.970230103 194.420425415 195.93019104 197.479995728 200.800033569 198.830307007 196.950424194 195.330307007 194.050033569 193.120346069 192.509994507 192.189682007 192.059799194 192.040267944 192.130111694 192.389877319 192.779525757 193.290267944 193.960189819 194.939682007 196.250228882 209.149978638 208.179763794 207.230056763 206.319900513 205.52986145 205.000076294 204.719802856 204.629959106 204.629959106 204.669998169 204.730056763 204.710037231 204.540115356 204.219802856 203.810134888 203.410232544 203.239822388 217.799957275 217.299957275 216.819976807 216.350250244 215.920074463 215.520172119 215.21987915 215.089996338 215.190093994 215.449859619 215.690093994 215.750152588 215.710113525 215.79019165 216.04019165 216.1300354 215.659820557 219.650115967 219.690155029 219.730194092 219.720428467 219.669647217 219.650115967 219.680389404 219.640350342 219.449920654 219.249725342 219.180389404 219.249725342 219.320037842 219.350311279 219.480194092 219.799530029 220.140350342 228.900238037 228.1902771 227.45980835 226.829925537 226.410003662 226.20980835 226.140472412 226.20980835 226.469573975 226.8699646 227.259613037 227.660003662 228.20980835 228.929534912 229.650238037 230.219573975 230.610198975 298.269683838 299.189605713 299.679840088 299.820465088 299.820465088 299.570465088 298.959136963 298.330230713 298.170074463 298.439605713 298.619293213 298.449371338 298.070465088 297.410308838 296.379058838 295.339996338 294.699371338 292.390136719 293.310058594 293.960449219 294.229980469 294.159667969 293.810058594 293.360839844 293.009277344 292.919433594 292.989746094 293.060058594 293.069824219 292.940917969 292.470214844 291.579589844 290.569824219 289.819824219 287.33013916 288.24029541 289.08013916 289.58013916 289.660217285 289.379943848 288.929748535 288.519592285 288.34967041 288.519592285 288.91998291 289.280334473 289.290100098 288.700256348 287.629943848 286.500061035 285.66998291 281.129943848 281.059631348 281.019592285 281.16998291 281.429748535 281.690490723 281.979553223 282.269592285 282.410217285 282.320373535 282.08013916 281.879943848 281.710021973 281.40045166 280.870178223 280.160217285 279.360412598 274.960357666 275.040435791 274.970123291 275.019927979 275.210357666 275.420318604 275.609771729 275.809967041 275.920318604 275.769927979 275.399810791 275.059967041 274.819732666 274.470123291 273.869537354 273.050201416 272.170318604 267.399536133 267.479614258 267.360473633 267.370239258 267.549926758 267.700317383 267.76965332 267.899536133 268.080200195 268.130004883 267.899536133 267.460083008 266.91027832 266.17980957 265.200317383 264.110473633 263.099731445 255.94972229 256.399902344 256.819824219 257.239746094 257.550292969 257.770019531 257.949707031 258.100097656 258.140136719 258.069824219 257.920410156 257.640136719 257.090332031 256.170410156 254.979995728 253.640151978 252.310073853 240.689849854 241.309967041 241.790435791 242.199615479 242.540435791 242.800201416 242.989654541 243.140045166 243.229888916 243.260162354 243.189849854 242.899810791 242.369537354 241.630279541 240.779693604 239.760162354 238.479888916 230.83996582 231.520141602 232.040161133 232.489868164 232.940063477 233.299926758 233.469848633 233.509887695 233.560180664 233.630004883 233.560180664 233.239868164 232.779907227 232.330200195 231.880004883 231.270141602 230.310180664 218.489929199 219.08001709 219.67010498 220.219909668 220.709899902 221.08001709 221.299987793 221.400085449 221.459899902 221.440124512 221.320007324 221.120056152 221.039978027 221.140075684 221.33001709 221.390075684 221.249938965 205.0599823 205.0599823 205.22013855 205.39982605 205.570236206 205.820236206 206.140060425 206.39982605 206.47013855 206.39982605 206.359786987 206.47013855 206.760177612 207.260177612 207.97013855 208.820236206 209.729904175 195.060073853 193.489761353 192.329605103 191.600112915 191.18019104 190.850112915 190.409683228 189.970230103 189.810073853 190.02003479 190.44972229 191.029800415 191.829605103 192.999526978 194.470230103 196.050308228 197.670425415 201.219955444 199.259994507 197.370346069 195.700424194 194.330307007 193.269760132 192.590072632 192.259994507 192.170150757 192.160385132 192.210189819 192.420150757 192.859603882 193.439682007 194.200424194 195.219955444 196.569564819 209.250076294 208.199783325 207.1900177 206.259841919 205.480056763 204.960037231 204.679763794 204.569900513 204.560134888 204.60017395 204.669998169 204.699783325 204.620193481 204.410232544 204.069900513 203.730056763 203.580154419 217.770172119 217.310211182 216.850250244 216.369781494 215.909820557 215.529937744 215.230133057 215.080230713 215.1300354 215.3800354 215.6300354 215.690093994 215.610015869 215.659820557 215.929840088 216.089996338 215.739898682 219.640350342 219.680389404 219.760467529 219.760467529 219.680389404 219.629608154 219.680389404 219.690155029 219.529998779 219.289764404 219.190155029 219.270233154 219.379608154 219.449920654 219.579803467 219.869842529 220.180389404 228.950042725 228.270355225 227.45980835 226.730316162 226.329925537 226.200042725 226.1199646 226.060394287 226.249847412 226.770355225 227.35043335 227.7996521 228.240081787 228.8699646 229.589691162 230.179534912 230.579925537 298.199371338 298.939605713 299.439605713 299.689605713 299.730621338 299.429840088 298.830230713 298.359527588 298.289215088 298.410308838 298.369293213 298.220855713 298.009918213 297.349761963 296.070465088 294.800933838 294.199371338 292.380371094 293.079589844 293.649902344 293.979980469 293.979980469 293.659667969 293.249511719 293.030761719 293.019042969 292.989746094 292.890136719 292.849121094 292.860839844 292.460449219 291.409667969 290.120605469 289.269042969 287.339904785 288.08013916 288.839904785 289.410217285 289.519592285 289.229553223 288.750061035 288.410217285 288.33013916 288.429748535 288.66998291 289.030334473 289.219787598 288.74029541 287.49029541 286.059631348 285.070373535 281.120178223 281.070373535 281.030334473 281.120178223 281.33013916 281.620178223 281.950256348 282.210021973 282.290100098 282.190490723 282.00982666 281.83013916 281.610412598 281.280334473 280.860412598 280.360412598 279.719787598 274.819732666 275.000396729 275.059967041 275.109771729 275.239654541 275.439849854 275.649810791 275.869537354 275.939849854 275.739654541 275.399810791 275.109771729 274.869537354 274.449615479 273.779693604 273.000396729 272.210357666 267.189575195 267.349731445 267.259887695 267.309692383 267.51965332 267.670043945 267.759887695 267.92980957 268.17980957 268.240356445 268.00012207 267.559692383 267.01965332 266.280395508 265.26965332 264.120239258 263.009887695 255.760269165 256.199707031 256.619628906 257.039550781 257.420410156 257.689941406 257.890136719 258.010253906 258.060058594 258.010253906 257.869628906 257.560058594 256.970214844 256.069824219 254.890151978 253.550308228 252.119644165 240.430084229 241.059967041 241.559967041 242.000396729 242.359771729 242.670318604 242.920318604 243.100006104 243.189849854 243.170318604 243.059967041 242.760162354 242.210357666 241.470123291 240.569732666 239.489654541 238.140045166 230.609985352 231.25012207 231.75012207 232.230102539 232.710083008 233.109985352 233.330200195 233.420043945 233.489868164 233.540161133 233.42980957 233.120239258 232.699829102 232.259887695 231.739868164 231.009887695 229.949829102 218.25994873 218.83001709 219.42010498 220.00994873 220.529968262 220.890075684 221.140075684 221.33001709 221.440124512 221.410095215 221.239929199 221.039978027 220.989929199 221.100036621 221.239929199 221.209899902 220.959899902 204.959884644 204.910079956 205.080001831 205.300216675 205.530197144 205.820236206 206.14982605 206.390060425 206.439865112 206.379806519 206.350021362 206.459884644 206.72013855 207.169845581 207.820236206 208.669845581 209.609786987 195.470230103 193.939956665 192.77003479 191.979995728 191.499526978 191.09034729 190.579605103 190.09034729 189.899917603 190.10987854 190.569839478 191.149917603 191.920425415 193.029800415 194.470230103 196.079605103 197.779800415 201.639877319 199.689682007 197.790267944 196.090072632 194.639877319 193.490463257 192.729721069 192.389877319 192.309799194 192.309799194 192.349838257 192.559799194 193.040267944 193.710189819 194.529525757 195.569564819 196.910385132 209.330154419 208.210037231 207.120193481 206.169998169 205.390213013 204.870193481 204.589920044 204.489822388 204.480056763 204.52986145 204.609939575 204.669998169 204.640213013 204.52986145 204.299880981 204.060134888 203.949783325 217.850250244 217.389801025 216.889801025 216.3800354 215.920074463 215.560211182 215.279937744 215.089996338 215.089996338 215.310211182 215.580230713 215.679840088 215.610015869 215.6300354 215.850250244 216.020172119 215.759918213 219.570037842 219.579803467 219.720428467 219.779998779 219.690155029 219.610076904 219.640350342 219.669647217 219.539764404 219.310272217 219.220428467 219.310272217 219.430389404 219.520233154 219.669647217 219.959686279 220.279998779 229.0496521 228.45980835 227.570159912 226.6902771 226.249847412 226.169769287 226.129730225 226.03012085 226.1902771 226.719573975 227.35043335 227.78012085 228.1902771 228.810394287 229.560394287 230.1199646 230.480316162 298.189605713 298.839996338 299.289215088 299.560699463 299.589996338 299.269683838 298.740386963 298.359527588 298.310699463 298.310699463 298.170074463 298.050933838 297.910308838 297.230621338 295.820465088 294.439605713 293.779449463 292.429199219 292.929199219 293.390136719 293.720214844 293.769042969 293.499511719 293.140136719 293.030761719 293.089355469 293.009277344 292.759277344 292.640136719 292.690917969 292.349121094 291.239746094 289.769042969 288.710449219 287.370178223 287.960021973 288.660217285 289.219787598 289.389709473 289.110412598 288.66998291 288.410217285 288.379943848 288.429748535 288.519592285 288.83013916 289.110412598 288.719787598 287.370178223 285.66998291 284.450256348 280.99029541 280.99029541 280.929748535 280.979553223 281.190490723 281.540100098 281.90045166 282.120178223 282.160217285 282.09967041 281.969787598 281.769592285 281.450256348 281.129943848 280.889709473 280.65045166 280.179748535 274.710357666 275.010162354 275.140045166 275.159576416 275.220123291 275.390045166 275.659576416 275.899810791 275.949615479 275.720123291 275.380279541 275.109771729 274.830474854 274.350006104 273.670318604 272.970123291 272.309967041 266.849731445 267.08996582 267.07043457 267.189575195 267.460083008 267.639770508 267.75012207 267.960083008 268.229614258 268.309692383 268.030395508 267.57043457 267.030395508 266.309692383 265.32043457 264.149536133 262.979614258 255.53956604 256.010253906 256.420410156 256.869628906 257.289550781 257.619628906 257.840332031 257.960449219 258.010253906 257.979980469 257.829589844 257.489746094 256.880371094 255.970230103 254.819839478 253.460464478 251.970230103 240.199615479 240.800201416 241.319732666 241.790435791 242.189849854 242.529693604 242.850006104 243.069732666 243.149810791 243.090240479 242.920318604 242.619537354 242.069732666 241.319732666 240.399810791 239.279693604 237.890045166 230.400024414 230.980102539 231.480102539 231.989868164 232.520141602 232.949829102 233.190063477 233.299926758 233.359985352 233.370239258 233.25012207 232.960083008 232.569946289 232.139770508 231.58996582 230.770141602 229.630004883 218.110046387 218.650085449 219.239929199 219.840026855 220.350036621 220.709899902 220.979919434 221.219909668 221.380065918 221.360046387 221.17010498 220.959899902 220.92010498 221.00994873 221.070007324 220.949890137 220.630065918 204.839767456 204.780197144 204.950119019 205.22013855 205.510177612 205.839767456 206.169845581 206.390060425 206.419845581 206.350021362 206.320236206 206.430099487 206.669845581 207.070236206 207.669845581 208.490158081 209.450119019 195.920425415 194.420425415 193.229995728 192.369644165 191.78956604 191.28956604 190.739761353 190.229995728 190.029800415 190.260269165 190.749526978 191.34034729 192.09034729 193.130386353 194.499526978 196.100112915 197.850112915 202.029525757 200.080307007 198.160385132 196.399642944 194.899642944 193.700424194 192.880111694 192.479721069 192.399642944 192.429916382 192.519760132 192.779525757 193.279525757 193.990463257 194.849838257 195.910385132 197.229721069 209.410232544 208.219802856 207.089920044 206.120193481 205.359939575 204.85017395 204.569900513 204.469802856 204.469802856 204.509841919 204.560134888 204.609939575 204.620193481 204.580154419 204.489822388 204.370193481 204.339920044 217.909820557 217.3800354 216.830230713 216.270172119 215.79019165 215.460113525 215.210113525 215.020172119 214.989898682 215.199859619 215.520172119 215.710113525 215.71987915 215.699859619 215.830230713 215.960113525 215.779937744 219.510467529 219.489959717 219.659881592 219.749725342 219.690155029 219.600311279 219.619842529 219.640350342 219.520233154 219.339569092 219.260467529 219.310272217 219.379608154 219.459686279 219.629608154 219.980194092 220.360076904 229.089691162 228.560394287 227.669769287 226.770355225 226.289886475 226.219573975 226.20980835 226.150238037 226.2996521 226.78012085 227.310394287 227.719573975 228.179534912 228.890472412 229.660003662 230.140472412 230.3699646 298.099761963 298.789215088 299.279449463 299.519683838 299.480621338 299.140777588 298.589996338 298.179840088 298.089996338 298.150543213 298.109527588 298.029449463 297.810699463 297.060699463 295.660308838 294.269683838 293.420074463 292.319824219 292.810058594 293.249511719 293.599121094 293.669433594 293.380371094 292.999511719 292.860839844 292.950683594 292.950683594 292.739746094 292.560058594 292.509277344 292.159667969 291.040527344 289.450683594 288.130371094 287.24029541 287.799865723 288.469787598 289.040100098 289.24029541 289.00982666 288.589904785 288.33013916 288.339904785 288.410217285 288.450256348 288.679748535 288.940490723 288.559631348 287.200256348 285.379943848 283.940490723 280.809631348 280.860412598 280.84967041 280.910217285 281.139709473 281.519592285 281.84967041 282.000061035 282.00982666 282.000061035 281.950256348 281.690490723 281.280334473 280.950256348 280.839904785 280.780334473 280.370178223 274.649810791 275.019927979 275.140045166 275.100006104 275.090240479 275.269927979 275.590240479 275.890045166 275.949615479 275.710357666 275.369537354 275.059967041 274.739654541 274.229888916 273.590240479 272.979888916 272.409576416 266.51965332 266.809692383 266.889770508 267.120239258 267.439575195 267.620239258 267.719848633 267.960083008 268.26965332 268.349731445 268.059692383 267.559692383 266.990356445 266.280395508 265.32043457 264.139770508 262.950317383 255.310073853 255.800308228 256.229980469 256.699707031 257.170410156 257.560058594 257.819824219 257.960449219 258.020019531 257.970214844 257.800292969 257.409667969 256.749511719 255.84034729 254.720230103 253.369644165 251.84034729 239.960357666 240.550201416 241.109771729 241.609771729 242.029693604 242.390045166 242.729888916 242.970123291 243.040435791 242.970123291 242.819732666 242.519927979 241.989654541 241.220123291 240.269927979 239.109771729 237.689849854 230.199829102 230.739868164 231.239868164 231.799926758 232.370239258 232.819946289 233.080200195 233.170043945 233.219848633 233.199829102 233.080200195 232.810180664 232.440063477 232.00012207 231.409790039 230.540161133 229.370239258 217.979919434 218.50994873 219.08001709 219.690124512 220.209899902 220.590026855 220.880065918 221.130065918 221.309997559 221.289978027 221.110046387 220.92010498 220.860046387 220.890075684 220.870056152 220.67010498 220.289978027 204.749923706 204.700119019 204.890060425 205.169845581 205.490158081 205.850021362 206.180099487 206.390060425 206.39982605 206.300216675 206.260177612 206.359786987 206.609786987 206.979904175 207.5599823 208.339767456 209.260177612 196.460464478 194.94972229 193.689956665 192.720230103 192.029800415 191.479995728 190.920425415 190.439956665 190.27003479 190.489761353 190.970230103 191.569839478 192.310073853 193.310073853 194.600112915 196.149917603 197.920425415 202.340072632 200.399642944 198.460189819 196.649642944 195.099838257 193.870346069 193.009994507 192.559799194 192.450424194 192.519760132 192.679916382 192.979721069 193.479721069 194.200424194 195.109603882 196.229721069 197.580307007 209.460037231 208.250076294 207.109939575 206.149978638 205.410232544 204.919998169 204.640213013 204.52986145 204.520095825 204.549880981 204.589920044 204.620193481 204.669998169 204.699783325 204.710037231 204.699783325 204.719802856 217.810211182 217.21987915 216.650054932 216.089996338 215.6300354 215.29019165 215.049957275 214.869781494 214.839996338 215.069976807 215.429840088 215.699859619 215.770172119 215.759918213 215.810211182 215.909820557 215.830230713 219.549530029 219.549530029 219.699920654 219.779998779 219.709686279 219.650115967 219.680389404 219.709686279 219.600311279 219.409881592 219.320037842 219.329803467 219.329803467 219.369842529 219.570037842 219.959686279 220.419647217 229.020355225 228.45980835 227.660003662 226.879730225 226.450042725 226.329925537 226.259613037 226.200042725 226.3699646 226.7996521 227.28012085 227.6902771 228.230316162 229.020355225 229.770355225 230.160003662 230.259613037 297.869293213 298.679840088 299.240386963 299.459136963 299.400543213 299.070465088 298.490386963 297.949371338 297.800933838 298.029449463 298.209136963 298.140777588 297.699371338 296.810699463 295.500152588 294.119293213 292.990386963 292.030761719 292.659667969 293.210449219 293.569824219 293.630371094 293.349121094 292.899902344 292.649902344 292.729980469 292.870605469 292.810058594 292.610839844 292.399902344 291.919433594 290.769042969 289.079589844 287.489746094 287.000061035 287.610412598 288.299865723 288.870178223 289.09967041 288.910217285 288.460021973 288.160217285 288.16998291 288.299865723 288.41998291 288.59967041 288.729553223 288.309631348 286.940490723 285.059631348 283.469787598 280.679748535 280.769592285 280.860412598 280.979553223 281.229553223 281.570373535 281.820373535 281.860412598 281.83013916 281.879943848 281.879943848 281.620178223 281.160217285 280.799865723 280.710021973 280.629943848 280.16998291 274.619537354 275.010162354 275.090240479 274.970123291 274.930084229 275.149810791 275.540435791 275.880279541 275.949615479 275.720123291 275.330474854 274.979888916 274.619537354 274.159576416 273.580474854 273.029693604 272.439849854 266.330200195 266.620239258 266.76965332 267.08996582 267.450317383 267.599731445 267.689575195 267.960083008 268.330200195 268.42980957 268.120239258 267.580200195 267.00012207 266.280395508 265.299926758 264.110473633 262.849731445 255.10987854 255.600112915 256.039550781 256.529785156 257.050292969 257.489746094 257.810058594 257.979980469 258.039550781 257.970214844 257.729980469 257.279785156 256.590332031 255.69972229 254.579605103 253.229995728 251.68019104 239.750396729 240.359771729 240.949615479 241.489654541 241.909576416 242.260162354 242.580474854 242.809967041 242.890045166 242.850006104 242.739654541 242.470123291 241.939849854 241.130279541 240.140045166 238.960357666 237.519927979 230.009887695 230.560180664 231.080200195 231.630004883 232.199829102 232.670043945 232.92980957 233.049926758 233.100219727 233.100219727 232.989868164 232.710083008 232.319946289 231.850219727 231.239868164 230.350219727 229.170043945 217.870056152 218.370056152 218.92010498 219.539978027 220.110046387 220.529968262 220.83001709 221.070007324 221.229919434 221.219909668 221.049987793 220.880065918 220.779968262 220.769958496 220.690124512 220.449890137 219.999938965 204.700119019 204.680099487 204.879806519 205.169845581 205.499923706 205.850021362 206.180099487 206.370040894 206.359786987 206.260177612 206.189865112 206.280197144 206.519943237 206.910079956 207.479904175 208.229904175 209.100021362 196.989761353 195.44972229 194.079605103 192.979995728 192.210464478 191.619644165 191.079605103 190.659683228 190.510269165 190.710464478 191.159683228 191.739761353 192.489761353 193.470230103 194.720230103 196.239761353 198.02003479 202.569564819 200.660385132 198.700424194 196.859603882 195.279525757 194.040267944 193.160385132 192.679916382 192.550033569 192.660385132 192.899642944 193.219955444 193.700424194 194.410385132 195.370346069 196.569564819 197.960189819 209.449783325 208.230056763 207.089920044 206.149978638 205.4400177 204.9400177 204.660232544 204.540115356 204.52986145 204.569900513 204.620193481 204.710037231 204.799880981 204.899978638 204.980056763 205.02986145 205.109939575 217.6300354 217.04019165 216.529937744 216.04019165 215.600250244 215.250152588 214.980133057 214.810211182 214.79019165 215.000152588 215.360015869 215.650054932 215.759918213 215.750152588 215.759918213 215.839996338 215.839996338 219.629608154 219.659881592 219.789764404 219.810272217 219.720428467 219.690155029 219.770233154 219.820037842 219.709686279 219.520233154 219.409881592 219.379608154 219.379608154 219.419647217 219.619842529 220.010467529 220.489959717 228.9402771 228.28012085 227.539886475 226.9402771 226.579925537 226.390472412 226.219573975 226.129730225 226.2996521 226.730316162 227.200042725 227.650238037 228.240081787 229.020355225 229.719573975 230.060394287 230.140472412 297.670074463 298.519683838 299.070465088 299.240386963 299.230621338 299.050933838 298.539215088 297.920074463 297.709136963 298.039215088 298.369293213 298.240386963 297.560699463 296.539215088 295.289215088 293.879058838 292.449371338 291.769042969 292.530761719 293.159667969 293.489746094 293.530761719 293.300292969 292.899902344 292.589355469 292.589355469 292.769042969 292.829589844 292.649902344 292.300292969 291.669433594 290.440917969 288.649902344 286.849121094 286.75982666 287.440490723 288.179748535 288.750061035 289.000061035 288.839904785 288.389709473 288.030334473 288.019592285 288.210021973 288.389709473 288.540100098 288.589904785 288.089904785 286.66998291 284.719787598 283.000061035 280.629943848 280.769592285 280.91998291 281.089904785 281.339904785 281.65045166 281.820373535 281.769592285 281.710021973 281.769592285 281.790100098 281.540100098 281.089904785 280.729553223 280.58013916 280.370178223 279.799865723 274.630279541 275.010162354 275.029693604 274.859771729 274.850006104 275.119537354 275.559967041 275.899810791 275.970123291 275.710357666 275.279693604 274.869537354 274.519927979 274.119537354 273.630279541 273.059967041 272.380279541 266.25012207 266.490356445 266.700317383 267.080200195 267.42980957 267.559692383 267.649536133 267.969848633 268.380004883 268.479614258 268.139770508 267.599731445 267.00012207 266.280395508 265.280395508 264.040161133 262.700317383 254.970230103 255.439956665 255.890151978 256.399902344 256.939941406 257.420410156 257.779785156 257.999511719 258.050292969 257.930175781 257.619628906 257.119628906 256.430175781 255.560073853 254.460464478 253.09034729 251.52003479 239.580474854 240.220123291 240.859771729 241.420318604 241.830474854 242.149810791 242.439849854 242.659576416 242.750396729 242.760162354 242.699615479 242.439849854 241.880279541 241.029693604 240.000396729 238.809967041 237.350006104 229.889770508 230.480102539 230.980102539 231.489868164 232.020141602 232.480102539 232.779907227 232.940063477 233.020141602 233.060180664 232.949829102 232.650024414 232.230102539 231.739868164 231.120239258 230.239868164 229.029907227 217.799987793 218.269958496 218.779968262 219.400085449 220.00994873 220.489929199 220.820007324 221.049987793 221.180114746 221.160095215 221.00994873 220.840026855 220.719909668 220.650085449 220.549987793 220.289978027 219.820007324 204.680099487 204.680099487 204.890060425 205.200119019 205.550216675 205.89982605 206.189865112 206.339767456 206.3099823 206.209884644 206.140060425 206.209884644 206.430099487 206.820236206 207.390060425 208.129806519 208.950119019 197.350112915 195.78956604 194.35987854 193.189956665 192.350112915 191.739761353 191.220230103 190.810073853 190.670425415 190.85987854 191.27003479 191.84034729 192.59034729 193.569839478 194.78956604 196.310073853 198.119644165 202.740463257 200.840072632 198.899642944 197.050033569 195.429916382 194.170150757 193.300033569 192.819564819 192.719955444 192.870346069 193.170150757 193.509994507 193.990463257 194.700424194 195.710189819 196.960189819 198.370346069 209.379959106 208.169998169 207.040115356 206.089920044 205.359939575 204.85017395 204.560134888 204.4400177 204.449783325 204.520095825 204.609939575 204.759841919 204.929763794 205.080154419 205.219802856 205.35017395 205.480056763 217.560211182 216.989898682 216.529937744 216.119781494 215.710113525 215.339996338 215.04019165 214.860015869 214.839996338 215.000152588 215.310211182 215.600250244 215.750152588 215.750152588 215.710113525 215.750152588 215.819976807 219.610076904 219.680389404 219.789764404 219.779998779 219.680389404 219.659881592 219.770233154 219.829803467 219.730194092 219.549530029 219.440155029 219.440155029 219.480194092 219.560272217 219.739959717 220.049530029 220.489959717 228.980316162 228.230316162 227.520355225 226.999847412 226.660003662 226.410003662 226.20980835 226.140472412 226.289886475 226.650238037 227.10043335 227.60043335 228.20980835 228.929534912 229.570159912 229.9402771 230.1199646 297.670074463 298.439605713 298.890777588 298.959136963 298.980621338 298.959136963 298.619293213 298.039215088 297.779449463 298.060699463 298.410308838 298.209136963 297.449371338 296.390777588 295.129058838 293.580230713 291.929840088 291.710449219 292.509277344 293.120605469 293.349121094 293.310058594 293.159667969 292.909667969 292.630371094 292.540527344 292.649902344 292.720214844 292.569824219 292.200683594 291.470214844 290.130371094 288.229980469 286.300292969 286.59967041 287.34967041 288.129943848 288.679748535 288.90045166 288.780334473 288.379943848 288.049865723 288.00982666 288.160217285 288.320373535 288.450256348 288.479553223 287.950256348 286.469787598 284.40045166 282.589904785 280.639709473 280.820373535 280.979553223 281.129943848 281.370178223 281.66998291 281.83013916 281.799865723 281.719787598 281.750061035 281.719787598 281.460021973 281.049865723 280.710021973 280.479553223 280.15045166 279.479553223 274.689849854 275.029693604 274.979888916 274.790435791 274.809967041 275.130279541 275.600006104 275.939849854 275.979888916 275.699615479 275.229888916 274.769927979 274.420318604 274.059967041 273.619537354 273.010162354 272.210357666 266.189575195 266.389770508 266.649536133 267.059692383 267.380004883 267.469848633 267.58996582 267.960083008 268.380004883 268.469848633 268.120239258 267.549926758 266.960083008 266.240356445 265.240356445 263.969848633 262.57043457 254.880386353 255.350112915 255.810073853 256.340332031 256.899902344 257.390136719 257.770019531 257.999511719 258.039550781 257.859863281 257.489746094 256.960449219 256.300292969 255.460464478 254.35987854 252.960464478 251.35987854 239.489654541 240.159576416 240.819732666 241.369537354 241.739654541 242.040435791 242.309967041 242.519927979 242.630279541 242.680084229 242.649810791 242.390045166 241.790435791 240.909576416 239.859771729 238.649810791 237.189849854 229.83996582 230.440063477 230.900024414 231.350219727 231.830200195 232.290161133 232.630004883 232.819946289 232.960083008 233.020141602 232.920043945 232.600219727 232.159790039 231.659790039 231.049926758 230.159790039 228.920043945 217.779968262 218.219909668 218.680114746 219.279968262 219.900085449 220.42010498 220.779968262 221.00994873 221.130065918 221.110046387 220.969909668 220.769958496 220.610046387 220.519958496 220.440124512 220.190124512 219.67010498 204.629806519 204.629806519 204.859786987 205.22013855 205.620040894 205.97013855 206.209884644 206.320236206 206.280197144 206.189865112 206.129806519 206.169845581 206.330001831 206.689865112 207.269943237 208.010177612 208.8099823 197.499526978 195.970230103 194.550308228 193.390151978 192.560073853 191.93019104 191.369644165 190.93019104 190.779800415 190.960464478 191.380386353 191.970230103 192.720230103 193.68019104 194.869644165 196.380386353 198.220230103 202.849838257 200.960189819 199.019760132 197.149642944 195.519760132 194.240463257 193.380111694 192.920150757 192.840072632 193.040267944 193.380111694 193.779525757 194.290267944 195.040267944 196.090072632 197.349838257 198.750228882 209.319900513 208.120193481 207.000076294 206.040115356 205.290115356 204.770095825 204.480056763 204.390213013 204.390213013 204.460037231 204.569900513 204.759841919 204.969802856 205.1900177 205.419998169 205.649978638 205.870193481 217.639801025 217.049957275 216.569976807 216.139801025 215.730133057 215.330230713 215.020172119 214.839996338 214.810211182 214.949859619 215.230133057 215.580230713 215.810211182 215.819976807 215.690093994 215.659820557 215.739898682 219.529998779 219.589569092 219.730194092 219.720428467 219.629608154 219.610076904 219.669647217 219.739959717 219.690155029 219.560272217 219.470428467 219.449920654 219.520233154 219.610076904 219.749725342 219.980194092 220.390350342 229.10043335 228.360198975 227.629730225 227.060394287 226.669769287 226.450042725 226.3699646 226.3699646 226.450042725 226.650238037 227.020355225 227.570159912 228.230316162 228.929534912 229.570159912 230.03012085 230.270355225 297.789215088 298.470855713 298.820465088 298.800933838 298.759918213 298.769683838 298.550933838 298.060699463 297.789215088 297.990386963 298.279449463 298.140777588 297.470855713 296.439605713 295.029449463 293.259918213 291.470855713 291.780761719 292.569824219 293.159667969 293.290527344 293.159667969 293.009277344 292.829589844 292.599121094 292.460449219 292.499511719 292.560058594 292.470214844 292.130371094 291.349121094 289.880371094 287.829589844 285.800292969 286.549865723 287.320373535 288.09967041 288.629943848 288.839904785 288.74029541 288.389709473 288.110412598 288.059631348 288.15045166 288.219787598 288.33013916 288.389709473 287.879943848 286.339904785 284.16998291 282.309631348 280.719787598 280.90045166 281.019592285 281.120178223 281.299865723 281.58013916 281.809631348 281.870178223 281.839904785 281.809631348 281.700256348 281.40045166 281.000061035 280.660217285 280.370178223 279.960021973 279.269592285 274.739654541 275.029693604 274.939849854 274.720123291 274.739654541 275.090240479 275.569732666 275.909576416 275.939849854 275.649810791 275.170318604 274.680084229 274.290435791 273.939849854 273.500396729 272.859771729 271.979888916 266.059692383 266.290161133 266.620239258 267.040161133 267.32043457 267.399536133 267.549926758 267.960083008 268.370239258 268.439575195 268.059692383 267.50012207 266.870239258 266.130004883 265.139770508 263.91027832 262.509887695 254.850112915 255.35987854 255.85987854 256.399902344 256.930175781 257.420410156 257.810058594 258.039550781 258.050292969 257.819824219 257.390136719 256.840332031 256.199707031 255.380386353 254.279800415 252.85987854 251.260269165 239.479888916 240.149810791 240.760162354 241.250396729 241.600006104 241.880279541 242.149810791 242.350006104 242.489654541 242.569732666 242.550201416 242.279693604 241.670318604 240.779693604 239.729888916 238.510162354 237.040435791 229.830200195 230.380004883 230.779907227 231.190063477 231.659790039 232.150024414 232.50012207 232.719848633 232.870239258 232.940063477 232.859985352 232.540161133 232.100219727 231.609985352 230.989868164 230.060180664 228.770141602 217.769958496 218.17010498 218.600036621 219.180114746 219.779968262 220.299987793 220.680114746 220.940124512 221.070007324 221.070007324 220.930114746 220.709899902 220.50994873 220.390075684 220.309997559 220.070007324 219.519958496 204.550216675 204.550216675 204.820236206 205.240158081 205.680099487 206.030197144 206.260177612 206.320236206 206.269943237 206.189865112 206.129806519 206.140060425 206.260177612 206.5599823 207.120040894 207.870040894 208.689865112 197.579605103 196.079605103 194.739761353 193.640151978 192.829605103 192.18019104 191.560073853 191.079605103 190.899917603 191.09034729 191.53956604 192.149917603 192.93019104 193.880386353 195.03956604 196.510269165 198.329605103 202.899642944 200.990463257 199.090072632 197.229721069 195.590072632 194.290267944 193.410385132 192.960189819 192.880111694 193.090072632 193.469955444 193.939682007 194.540267944 195.349838257 196.429916382 197.689682007 199.080307007 209.270095825 208.109939575 206.989822388 206.049880981 205.299880981 204.77986145 204.489822388 204.410232544 204.429763794 204.489822388 204.580154419 204.759841919 205.000076294 205.27986145 205.609939575 205.960037231 206.259841919 217.71987915 217.080230713 216.509918213 216.020172119 215.569976807 215.170074463 214.830230713 214.639801025 214.610015869 214.759918213 215.089996338 215.520172119 215.830230713 215.830230713 215.610015869 215.500152588 215.589996338 219.489959717 219.549530029 219.690155029 219.749725342 219.680389404 219.619842529 219.650115967 219.709686279 219.720428467 219.669647217 219.589569092 219.510467529 219.499725342 219.570037842 219.659881592 219.850311279 220.270233154 229.150238037 228.480316162 227.730316162 227.079925537 226.640472412 226.490081787 226.560394287 226.640472412 226.6199646 226.640472412 226.95980835 227.560394287 228.2996521 229.039886475 229.730316162 230.270355225 230.520355225 297.789215088 298.429840088 298.810699463 298.810699463 298.689605713 298.560699463 298.279449463 297.859527588 297.640777588 297.820465088 298.109527588 298.109527588 297.609527588 296.539215088 294.879058838 292.830230713 290.939605713 291.829589844 292.579589844 293.220214844 293.419433594 293.259277344 292.979980469 292.690917969 292.450683594 292.360839844 292.419433594 292.519042969 292.479980469 292.149902344 291.280761719 289.640136719 287.370605469 285.220214844 286.610412598 287.34967041 288.09967041 288.629943848 288.860412598 288.729553223 288.360412598 288.08013916 288.040100098 288.120178223 288.179748535 288.269592285 288.33013916 287.809631348 286.219787598 284.00982666 282.139709473 280.799865723 281.019592285 281.110412598 281.129943848 281.210021973 281.450256348 281.729553223 281.879943848 281.910217285 281.84967041 281.679748535 281.370178223 280.969787598 280.589904785 280.229553223 279.780334473 279.059631348 274.699615479 274.949615479 274.869537354 274.659576416 274.659576416 274.979888916 275.470123291 275.800201416 275.819732666 275.550201416 275.100006104 274.600006104 274.159576416 273.769927979 273.319732666 272.659576416 271.720123291 265.870239258 266.200317383 266.649536133 267.099731445 267.330200195 267.399536133 267.58996582 268.01965332 268.399536133 268.439575195 268.08996582 267.509887695 266.809692383 266.00012207 265.01965332 263.860473633 262.490356445 254.890151978 255.460464478 255.989761353 256.499511719 256.999511719 257.470214844 257.840332031 258.079589844 258.079589844 257.810058594 257.340332031 256.760253906 256.119628906 255.310073853 254.220230103 252.800308228 251.19972229 239.529693604 240.130279541 240.649810791 241.080474854 241.420318604 241.710357666 241.979888916 242.189849854 242.319732666 242.409576416 242.390045166 242.149810791 241.559967041 240.689849854 239.630279541 238.399810791 236.909576416 229.779907227 230.25012207 230.600219727 231.009887695 231.529907227 232.049926758 232.400024414 232.620239258 232.759887695 232.83996582 232.770141602 232.480102539 232.069946289 231.580200195 230.920043945 229.92980957 228.58996582 217.690124512 218.08001709 218.519958496 219.070007324 219.650085449 220.150085449 220.559997559 220.840026855 220.979919434 220.989929199 220.860046387 220.640075684 220.410095215 220.269958496 220.150085449 219.900085449 219.340026855 204.459884644 204.499923706 204.820236206 205.260177612 205.72013855 206.080001831 206.300216675 206.359786987 206.3099823 206.209884644 206.129806519 206.109786987 206.189865112 206.450119019 206.979904175 207.729904175 208.580001831 197.68019104 196.210464478 194.920425415 193.869644165 193.060073853 192.380386353 191.720230103 191.210464478 191.029800415 191.229995728 191.69972229 192.34034729 193.140151978 194.100112915 195.249526978 196.69972229 198.489761353 202.939682007 201.050033569 199.170150757 197.340072632 195.700424194 194.399642944 193.519760132 193.059799194 192.929916382 193.109603882 193.490463257 194.029525757 194.719955444 195.620346069 196.719955444 197.990463257 199.410385132 209.169998169 208.060134888 206.989822388 206.069900513 205.319900513 204.799880981 204.509841919 204.419998169 204.4400177 204.489822388 204.589920044 204.77986145 205.040115356 205.379959106 205.810134888 206.270095825 206.649978638 217.710113525 217.029937744 216.429840088 215.920074463 215.460113525 215.029937744 214.670074463 214.449859619 214.420074463 214.589996338 214.960113525 215.429840088 215.770172119 215.750152588 215.46987915 215.29019165 215.409820557 219.560272217 219.619842529 219.749725342 219.799530029 219.739959717 219.680389404 219.680389404 219.749725342 219.829803467 219.839569092 219.749725342 219.610076904 219.539764404 219.560272217 219.640350342 219.810272217 220.239959717 229.110198975 228.469573975 227.730316162 227.0496521 226.610198975 226.499847412 226.6199646 226.6902771 226.60043335 226.560394287 226.879730225 227.560394287 228.339691162 229.10043335 229.85043335 230.429534912 230.640472412 297.650543213 298.220855713 298.679840088 298.820465088 298.689605713 298.400543213 298.000152588 297.609527588 297.490386963 297.709136963 298.029449463 298.099761963 297.660308838 296.490386963 294.570465088 292.330230713 290.390777588 291.810058594 292.460449219 293.179199219 293.550292969 293.450683594 293.040527344 292.569824219 292.280761719 292.269042969 292.440917969 292.579589844 292.530761719 292.140136719 291.179199219 289.370605469 286.950683594 284.630371094 286.750061035 287.370178223 288.059631348 288.65045166 288.940490723 288.780334473 288.299865723 287.91998291 287.910217285 288.089904785 288.219787598 288.320373535 288.33013916 287.729553223 286.089904785 283.870178223 282.030334473 280.879943848 281.129943848 281.24029541 281.210021973 281.179748535 281.339904785 281.629943848 281.84967041 281.910217285 281.83013916 281.639709473 281.339904785 280.950256348 280.519592285 280.08013916 279.58013916 278.820373535 274.540435791 274.809967041 274.800201416 274.619537354 274.600006104 274.909576416 275.390045166 275.710357666 275.710357666 275.449615479 275.029693604 274.540435791 274.059967041 273.630279541 273.170318604 272.510162354 271.500396729 265.710083008 266.170043945 266.719848633 267.17980957 267.389770508 267.490356445 267.729614258 268.149536133 268.460083008 268.469848633 268.139770508 267.540161133 266.759887695 265.870239258 264.899536133 263.799926758 262.469848633 254.999526978 255.59034729 256.090332031 256.560058594 257.010253906 257.460449219 257.829589844 258.069824219 258.079589844 257.819824219 257.340332031 256.729980469 256.069824219 255.260269165 254.159683228 252.779800415 251.189956665 239.559967041 240.050201416 240.479888916 240.890045166 241.250396729 241.580474854 241.859771729 242.059967041 242.180084229 242.260162354 242.260162354 242.050201416 241.500396729 240.640045166 239.590240479 238.350006104 236.840240479 229.690063477 230.080200195 230.400024414 230.83996582 231.409790039 231.920043945 232.279907227 232.509887695 232.659790039 232.75012207 232.67980957 232.409790039 232.020141602 231.520141602 230.819946289 229.790161133 228.409790039 217.559997559 217.930114746 218.390075684 218.940124512 219.499938965 220.00994873 220.449890137 220.749938965 220.880065918 220.880065918 220.769958496 220.559997559 220.309997559 220.120056152 219.959899902 219.680114746 219.140075684 204.430099487 204.519943237 204.859786987 205.3099823 205.760177612 206.120040894 206.330001831 206.390060425 206.320236206 206.200119019 206.100021362 206.0599823 206.109786987 206.339767456 206.839767456 207.580001831 208.47013855 197.779800415 196.34034729 195.100112915 194.060073853 193.229995728 192.479995728 191.810073853 191.329605103 191.210464478 191.420425415 191.850112915 192.460464478 193.279800415 194.279800415 195.44972229 196.890151978 198.659683228 203.000228882 201.160385132 199.309799194 197.500228882 195.870346069 194.569564819 193.700424194 193.219955444 193.050033569 193.170150757 193.550033569 194.139877319 194.899642944 195.859603882 197.000228882 198.319564819 199.759994507 209.009841919 207.949783325 206.929763794 206.02986145 205.310134888 204.770095825 204.4400177 204.319900513 204.319900513 204.399978638 204.52986145 204.739822388 205.040115356 205.429763794 205.9400177 206.509841919 206.969802856 217.6300354 216.96987915 216.420074463 215.960113525 215.520172119 215.04019165 214.6300354 214.389801025 214.389801025 214.600250244 214.949859619 215.3800354 215.690093994 215.659820557 215.360015869 215.150054932 215.299957275 219.650115967 219.690155029 219.779998779 219.799530029 219.749725342 219.680389404 219.669647217 219.739959717 219.839569092 219.879608154 219.799530029 219.669647217 219.600311279 219.629608154 219.709686279 219.879608154 220.299530029 229.129730225 228.450042725 227.719573975 227.0496521 226.640472412 226.53012085 226.6199646 226.629730225 226.509613037 226.520355225 226.890472412 227.570159912 228.310394287 229.060394287 229.810394287 230.419769287 230.6199646 297.529449463 297.970855713 298.410308838 298.640777588 298.580230713 298.259918213 297.820465088 297.480621338 297.429840088 297.670074463 297.949371338 298.019683838 297.580230713 296.339996338 294.320465088 292.019683838 290.029449463 291.839355469 292.319824219 292.989746094 293.489746094 293.479980469 293.019042969 292.470214844 292.169433594 292.220214844 292.450683594 292.569824219 292.479980469 292.089355469 291.099121094 289.229980469 286.679199219 284.210449219 286.90045166 287.360412598 287.940490723 288.58013916 288.979553223 288.820373535 288.229553223 287.750061035 287.74029541 288.019592285 288.24029541 288.360412598 288.320373535 287.66998291 286.00982666 283.809631348 281.969787598 280.889709473 281.160217285 281.34967041 281.320373535 281.219787598 281.290100098 281.58013916 281.860412598 281.91998291 281.790100098 281.589904785 281.33013916 280.969787598 280.500061035 279.979553223 279.429748535 278.610412598 274.380279541 274.680084229 274.750396729 274.609771729 274.580474854 274.880279541 275.350006104 275.670318604 275.659576416 275.409576416 275.029693604 274.580474854 274.069732666 273.600006104 273.100006104 272.399810791 271.350006104 265.649536133 266.17980957 266.790161133 267.259887695 267.479614258 267.649536133 267.939575195 268.330200195 268.559692383 268.490356445 268.130004883 267.50012207 266.670043945 265.729614258 264.790161133 263.729614258 262.41027832 255.079605103 255.619644165 256.069824219 256.499511719 256.939941406 257.359863281 257.739746094 257.999511719 258.060058594 257.840332031 257.380371094 256.770019531 256.060058594 255.210464478 254.130386353 252.779800415 251.210464478 239.529693604 239.930084229 240.309967041 240.720123291 241.130279541 241.489654541 241.800201416 242.010162354 242.119537354 242.170318604 242.149810791 241.960357666 241.470123291 240.640045166 239.600006104 238.369537354 236.859771729 229.569946289 229.920043945 230.230102539 230.67980957 231.239868164 231.75012207 232.120239258 232.400024414 232.600219727 232.67980957 232.580200195 232.319946289 231.92980957 231.420043945 230.67980957 229.639770508 228.290161133 217.42010498 217.799987793 218.279968262 218.820007324 219.370056152 219.900085449 220.370056152 220.67010498 220.769958496 220.709899902 220.610046387 220.430114746 220.199890137 219.949890137 219.729919434 219.440124512 218.930114746 204.450119019 204.580001831 204.939865112 205.379806519 205.830001831 206.180099487 206.379806519 206.390060425 206.280197144 206.14982605 206.050216675 205.999923706 206.030197144 206.22013855 206.689865112 207.419845581 208.359786987 197.78956604 196.43019104 195.279800415 194.279800415 193.390151978 192.569839478 191.880386353 191.489761353 191.439956665 191.68019104 192.03956604 192.579605103 193.369644165 194.380386353 195.59034729 197.029800415 198.800308228 203.120346069 201.330307007 199.490463257 197.660385132 196.009994507 194.719955444 193.840072632 193.330307007 193.130111694 193.219955444 193.599838257 194.229721069 195.050033569 196.040267944 197.250228882 198.639877319 200.120346069 208.890213013 207.85017395 206.870193481 206.009841919 205.290115356 204.719802856 204.359939575 204.199783325 204.199783325 204.270095825 204.419998169 204.649978638 204.969802856 205.399978638 205.989822388 206.669998169 207.239822388 217.610015869 216.96987915 216.449859619 216.009918213 215.549957275 215.029937744 214.569976807 214.3800354 214.460113525 214.699859619 215.020172119 215.369781494 215.659820557 215.659820557 215.389801025 215.159820557 215.250152588 219.659881592 219.699920654 219.760467529 219.770233154 219.730194092 219.659881592 219.640350342 219.669647217 219.739959717 219.770233154 219.720428467 219.629608154 219.610076904 219.659881592 219.749725342 219.919647217 220.310272217 229.28012085 228.560394287 227.770355225 227.089691162 226.6902771 226.589691162 226.660003662 226.640472412 226.560394287 226.6199646 226.999847412 227.610198975 228.28012085 229.020355225 229.810394287 230.410003662 230.570159912 297.570465088 297.859527588 298.170074463 298.330230713 298.300933838 298.070465088 297.720855713 297.439605713 297.410308838 297.580230713 297.810699463 297.900543213 297.519683838 296.339996338 294.339996338 292.009918213 289.890777588 291.940917969 292.269042969 292.800292969 293.269042969 293.300292969 292.880371094 292.370605469 292.099121094 292.159667969 292.339355469 292.419433594 292.360839844 292.079589844 291.169433594 289.290527344 286.620605469 283.950683594 286.979553223 287.280334473 287.769592285 288.440490723 288.91998291 288.799865723 288.179748535 287.66998291 287.639709473 287.889709473 288.08013916 288.179748535 288.179748535 287.639709473 286.089904785 283.929748535 282.00982666 280.860412598 281.139709473 281.379943848 281.389709473 281.25982666 281.290100098 281.610412598 281.940490723 282.00982666 281.820373535 281.570373535 281.34967041 281.00982666 280.50982666 279.929748535 279.34967041 278.50982666 274.350006104 274.659576416 274.760162354 274.619537354 274.529693604 274.769927979 275.239654541 275.580474854 275.619537354 275.430084229 275.130279541 274.720123291 274.220123291 273.680084229 273.100006104 272.340240479 271.260162354 265.689575195 266.229614258 266.83996582 267.309692383 267.58996582 267.870239258 268.26965332 268.639770508 268.75012207 268.540161133 268.059692383 267.389770508 266.540161133 265.630004883 264.710083008 263.67980957 262.349731445 255.069839478 255.529800415 255.920425415 256.340332031 256.810058594 257.270019531 257.630371094 257.899902344 258.010253906 257.859863281 257.449707031 256.840332031 256.079589844 255.189956665 254.10987854 252.819839478 251.249526978 239.409576416 239.760162354 240.140045166 240.580474854 241.010162354 241.390045166 241.710357666 241.960357666 242.100006104 242.119537354 242.050201416 241.880279541 241.420318604 240.630279541 239.630279541 238.439849854 236.949615479 229.449829102 229.790161133 230.120239258 230.560180664 231.080200195 231.569946289 231.960083008 232.299926758 232.540161133 232.600219727 232.460083008 232.190063477 231.810180664 231.279907227 230.520141602 229.509887695 228.230102539 217.33001709 217.749938965 218.229919434 218.75994873 219.309997559 219.860046387 220.340026855 220.610046387 220.630065918 220.539978027 220.440124512 220.289978027 220.059997559 219.779968262 219.50994873 219.180114746 218.709899902 204.539962769 204.680099487 205.010177612 205.439865112 205.89982605 206.269943237 206.430099487 206.379806519 206.22013855 206.080001831 205.999923706 205.959884644 205.979904175 206.129806519 206.550216675 207.260177612 208.229904175 197.710464478 196.479995728 195.470230103 194.529800415 193.59034729 192.68019104 191.970230103 191.630386353 191.689956665 191.960464478 192.28956604 192.739761353 193.460464478 194.470230103 195.69972229 197.149917603 198.93019104 203.250228882 201.509994507 199.670150757 197.819564819 196.130111694 194.800033569 193.889877319 193.349838257 193.120346069 193.219955444 193.620346069 194.269760132 195.109603882 196.139877319 197.410385132 198.870346069 200.429916382 208.85017395 207.830154419 206.85017395 206.000076294 205.299880981 204.750076294 204.390213013 204.210037231 204.1900177 204.239822388 204.370193481 204.569900513 204.879959106 205.330154419 206.000076294 206.790115356 207.469802856 217.699859619 217.049957275 216.500152588 215.989898682 215.449859619 214.889801025 214.449859619 214.319976807 214.480133057 214.739898682 215.000152588 215.310211182 215.610015869 215.710113525 215.489898682 215.199859619 215.179840088 219.640350342 219.680389404 219.760467529 219.810272217 219.810272217 219.770233154 219.720428467 219.680389404 219.690155029 219.709686279 219.680389404 219.610076904 219.570037842 219.629608154 219.709686279 219.879608154 220.230194092 229.419769287 228.70980835 227.85043335 227.10043335 226.660003662 226.60043335 226.70980835 226.770355225 226.70980835 226.730316162 227.020355225 227.560394287 228.270355225 229.10043335 229.919769287 230.480316162 230.579925537 297.589996338 297.869293213 298.029449463 298.039215088 297.980621338 297.859527588 297.609527588 297.349761963 297.289215088 297.439605713 297.699371338 297.890777588 297.679840088 296.580230713 294.539215088 292.070465088 289.720855713 291.970214844 292.269042969 292.710449219 293.069824219 293.089355469 292.739746094 292.310058594 292.079589844 292.099121094 292.190917969 292.269042969 292.329589844 292.220214844 291.399902344 289.440917969 286.589355469 283.700683594 286.929748535 287.210021973 287.660217285 288.320373535 288.820373535 288.74029541 288.179748535 287.710021973 287.639709473 287.750061035 287.799865723 287.860412598 287.979553223 287.679748535 286.370178223 284.25982666 282.16998291 280.84967041 281.089904785 281.360412598 281.40045166 281.250061035 281.290100098 281.65045166 282.040100098 282.09967041 281.879943848 281.639709473 281.440490723 281.09967041 280.530334473 279.879943848 279.25982666 278.440490723 274.439849854 274.760162354 274.819732666 274.609771729 274.420318604 274.569732666 274.989654541 275.359771729 275.489654541 275.409576416 275.220123291 274.890045166 274.409576416 273.819732666 273.130279541 272.290435791 271.189849854 265.76965332 266.290161133 266.870239258 267.349731445 267.719848633 268.139770508 268.670043945 269.080200195 269.099731445 268.710083008 268.049926758 267.299926758 266.469848633 265.599731445 264.700317383 263.670043945 262.349731445 254.970230103 255.34034729 255.710464478 256.180175781 256.720214844 257.199707031 257.560058594 257.819824219 257.949707031 257.880371094 257.539550781 256.949707031 256.149902344 255.210464478 254.130386353 252.880386353 251.310073853 239.210357666 239.559967041 239.970123291 240.449615479 240.869537354 241.229888916 241.580474854 241.909576416 242.080474854 242.080474854 241.979888916 241.790435791 241.359771729 240.619537354 239.640045166 238.519927979 237.059967041 229.330200195 229.659790039 229.980102539 230.449829102 230.960083008 231.440063477 231.850219727 232.219848633 232.480102539 232.509887695 232.33996582 232.049926758 231.670043945 231.130004883 230.359985352 229.389770508 228.17980957 217.309997559 217.749938965 218.219909668 218.739929199 219.289978027 219.860046387 220.33001709 220.559997559 220.529968262 220.400085449 220.289978027 220.160095215 219.910095215 219.590026855 219.269958496 218.900085449 218.440124512 204.680099487 204.8099823 205.089767456 205.490158081 205.950119019 206.330001831 206.479904175 206.370040894 206.169845581 206.019943237 205.959884644 205.919845581 205.930099487 206.070236206 206.450119019 207.120040894 208.100021362 197.69972229 196.560073853 195.619644165 194.710464478 193.739761353 192.779800415 192.02003479 191.69972229 191.810073853 192.130386353 192.470230103 192.85987854 193.529800415 194.52003479 195.779800415 197.279800415 199.09034729 203.340072632 201.630111694 199.819564819 197.990463257 196.290267944 194.920150757 193.950424194 193.359603882 193.109603882 193.219955444 193.649642944 194.319564819 195.160385132 196.200424194 197.490463257 199.029525757 200.649642944 208.859939575 207.810134888 206.819900513 205.960037231 205.270095825 204.759841919 204.429763794 204.270095825 204.230056763 204.259841919 204.359939575 204.52986145 204.830154419 205.310134888 206.02986145 206.899978638 207.660232544 217.850250244 217.199859619 216.589996338 216.009918213 215.420074463 214.860015869 214.460113525 214.350250244 214.509918213 214.739898682 214.940093994 215.199859619 215.529937744 215.690093994 215.500152588 215.1300354 215.009918213 219.650115967 219.699920654 219.789764404 219.879608154 219.940155029 219.919647217 219.850311279 219.779998779 219.770233154 219.779998779 219.739959717 219.640350342 219.560272217 219.579803467 219.669647217 219.850311279 220.199920654 229.429534912 228.789886475 227.910003662 227.070159912 226.570159912 226.509613037 226.679534912 226.789886475 226.749847412 226.700042725 226.900238037 227.4402771 228.249847412 229.1902771 230.009613037 230.469573975 230.520355225 297.429840088 297.810699463 297.879058838 297.800933838 297.759918213 297.709136963 297.480621338 297.209136963 297.140777588 297.339996338 297.689605713 298.019683838 297.920074463 296.859527588 294.699371338 291.990386963 289.410308838 291.800292969 292.210449219 292.640136719 292.960449219 292.979980469 292.710449219 292.339355469 292.110839844 292.069824219 292.130371094 292.239746094 292.429199219 292.450683594 291.640136719 289.569824219 286.540527344 283.470214844 286.809631348 287.139709473 287.66998291 288.34967041 288.799865723 288.700256348 288.210021973 287.790100098 287.679748535 287.66998291 287.59967041 287.639709473 287.870178223 287.809631348 286.750061035 284.729553223 282.50982666 280.879943848 281.030334473 281.280334473 281.339904785 281.219787598 281.269592285 281.620178223 282.00982666 282.08013916 281.90045166 281.74029541 281.589904785 281.219787598 280.559631348 279.820373535 279.160217285 278.360412598 274.580474854 274.880279541 274.880279541 274.569732666 274.319732666 274.409576416 274.779693604 275.149810791 275.330474854 275.319732666 275.199615479 274.949615479 274.540435791 273.949615479 273.189849854 272.279693604 271.189849854 265.880004883 266.370239258 266.920043945 267.399536133 267.830200195 268.370239258 269.040161133 269.51965332 269.50012207 268.939575195 268.120239258 267.299926758 266.509887695 265.670043945 264.759887695 263.710083008 262.389770508 254.819839478 255.130386353 255.529800415 256.079589844 256.699707031 257.199707031 257.539550781 257.779785156 257.920410156 257.890136719 257.619628906 257.069824219 256.279785156 255.310073853 254.220230103 252.970230103 251.399917603 238.989654541 239.350006104 239.809967041 240.309967041 240.720123291 241.080474854 241.470123291 241.859771729 242.069732666 242.059967041 241.939849854 241.720123291 241.319732666 240.600006104 239.649810791 238.550201416 237.159576416 229.190063477 229.449829102 229.799926758 230.330200195 230.909790039 231.380004883 231.759887695 232.109985352 232.359985352 232.380004883 232.190063477 231.900024414 231.529907227 230.969848633 230.210083008 229.270141602 228.139770508 217.289978027 217.709899902 218.160095215 218.680114746 219.249938965 219.850036621 220.320007324 220.50994873 220.449890137 220.299987793 220.180114746 220.029968262 219.749938965 219.400085449 219.019958496 218.610046387 218.150085449 204.839767456 204.979904175 205.200119019 205.530197144 205.959884644 206.339767456 206.479904175 206.379806519 206.169845581 206.030197144 205.950119019 205.890060425 205.879806519 206.010177612 206.370040894 206.999923706 207.97013855 197.880386353 196.739761353 195.77003479 194.810073853 193.829605103 192.84034729 192.060073853 191.710464478 191.829605103 192.170425415 192.52003479 192.920425415 193.560073853 194.53956604 195.810073853 197.369644165 199.249526978 203.359603882 201.700424194 199.939682007 198.149642944 196.469955444 195.080307007 194.080307007 193.450424194 193.189682007 193.290267944 193.719955444 194.399642944 195.250228882 196.290267944 197.590072632 199.139877319 200.809799194 208.819900513 207.770095825 206.739822388 205.85017395 205.149978638 204.669998169 204.379959106 204.230056763 204.169998169 204.1900177 204.290115356 204.480056763 204.790115356 205.270095825 206.02986145 206.9400177 207.770095825 217.929840088 217.299957275 216.690093994 216.119781494 215.610015869 215.110015869 214.739898682 214.580230713 214.679840088 214.839996338 214.989898682 215.199859619 215.480133057 215.619781494 215.409820557 214.96987915 214.799957275 219.699920654 219.730194092 219.799530029 219.890350342 219.949920654 219.949920654 219.900115967 219.839569092 219.820037842 219.820037842 219.770233154 219.650115967 219.539764404 219.549530029 219.680389404 219.890350342 220.260467529 229.3699646 228.810394287 227.969573975 227.110198975 226.560394287 226.4402771 226.579925537 226.6902771 226.669769287 226.629730225 226.829925537 227.410003662 228.289886475 229.219573975 229.919769287 230.289886475 230.329925537 297.199371338 297.570465088 297.599761963 297.539215088 297.619293213 297.650543213 297.379058838 297.050933838 297.039215088 297.349761963 297.759918213 298.109527588 298.070465088 297.060699463 294.830230713 291.959136963 289.269683838 291.589355469 292.030761719 292.450683594 292.780761719 292.880371094 292.690917969 292.349121094 292.089355469 292.050292969 292.130371094 292.269042969 292.489746094 292.530761719 291.780761719 289.749511719 286.710449219 283.530761719 286.620178223 287.019592285 287.660217285 288.389709473 288.780334473 288.629943848 288.160217285 287.780334473 287.65045166 287.620178223 287.59967041 287.690490723 287.929748535 287.929748535 287.089904785 285.299865723 283.110412598 280.929748535 280.950256348 281.139709473 281.250061035 281.190490723 281.24029541 281.530334473 281.83013916 281.90045166 281.83013916 281.799865723 281.719787598 281.320373535 280.59967041 279.799865723 279.110412598 278.299865723 274.680084229 274.949615479 274.850006104 274.510162354 274.269927979 274.380279541 274.739654541 275.090240479 275.250396729 275.220123291 275.080474854 274.880279541 274.580474854 274.050201416 273.269927979 272.319732666 271.250396729 265.990356445 266.460083008 266.979614258 267.439575195 267.889770508 268.469848633 269.210083008 269.76965332 269.75012207 269.130004883 268.240356445 267.41027832 266.649536133 265.830200195 264.880004883 263.799926758 262.50012207 254.640151978 254.94972229 255.409683228 256.039550781 256.720214844 257.229980469 257.569824219 257.789550781 257.949707031 257.939941406 257.699707031 257.199707031 256.449707031 255.479995728 254.380386353 253.10987854 251.53956604 238.790435791 239.140045166 239.619537354 240.140045166 240.600006104 240.989654541 241.420318604 241.830474854 242.080474854 242.050201416 241.890045166 241.659576416 241.269927979 240.580474854 239.640045166 238.569732666 237.260162354 229.00012207 229.17980957 229.560180664 230.199829102 230.850219727 231.310180664 231.639770508 231.949829102 232.199829102 232.239868164 232.060180664 231.759887695 231.380004883 230.830200195 230.069946289 229.170043945 228.100219727 217.209899902 217.58001709 217.999938965 218.519958496 219.150085449 219.779968262 220.249938965 220.440124512 220.380065918 220.239929199 220.100036621 219.890075684 219.570007324 219.190124512 218.789978027 218.350036621 217.870056152 204.950119019 205.160079956 205.359786987 205.600021362 205.939865112 206.280197144 206.450119019 206.379806519 206.209884644 206.0599823 205.939865112 205.850021362 205.830001831 205.97013855 206.3099823 206.870040894 207.769943237 198.220230103 197.03956604 195.94972229 194.920425415 193.920425415 192.989761353 192.229995728 191.850112915 191.899917603 192.210464478 192.579605103 192.979995728 193.579605103 194.52003479 195.800308228 197.420425415 199.369644165 203.340072632 201.729721069 200.009994507 198.250228882 196.590072632 195.179916382 194.149642944 193.519760132 193.269760132 193.359603882 193.759994507 194.429916382 195.290267944 196.359603882 197.660385132 199.189682007 200.870346069 208.799880981 207.739822388 206.669998169 205.750076294 205.049880981 204.580154419 204.299880981 204.149978638 204.060134888 204.060134888 204.169998169 204.390213013 204.699783325 205.179763794 205.919998169 206.859939575 207.770095825 217.860015869 217.250152588 216.679840088 216.190093994 215.770172119 215.3800354 215.029937744 214.830230713 214.869781494 215.029937744 215.190093994 215.330230713 215.520172119 215.569976807 215.319976807 214.8800354 214.699859619 219.739959717 219.779998779 219.820037842 219.869842529 219.890350342 219.879608154 219.860076904 219.810272217 219.770233154 219.730194092 219.669647217 219.570037842 219.470428467 219.470428467 219.610076904 219.869842529 220.289764404 229.390472412 228.810394287 228.020355225 227.20980835 226.640472412 226.450042725 226.469573975 226.560394287 226.6199646 226.719573975 226.990081787 227.5496521 228.379730225 229.219573975 229.85043335 230.169769287 230.240081787 297.109527588 297.310699463 297.220855713 297.240386963 297.490386963 297.570465088 297.250152588 296.910308838 297.000152588 297.390777588 297.779449463 298.060699463 298.089996338 297.269683838 295.209136963 292.369293213 289.609527588 291.509277344 291.819824219 292.130371094 292.460449219 292.679199219 292.599121094 292.269042969 291.999511719 291.999511719 292.120605469 292.249511719 292.419433594 292.509277344 291.940917969 290.159667969 287.269042969 284.040527344 286.429748535 286.809631348 287.519592285 288.299865723 288.660217285 288.49029541 288.040100098 287.660217285 287.500061035 287.530334473 287.679748535 287.879943848 288.059631348 287.99029541 287.370178223 286.030334473 284.110412598 280.91998291 280.870178223 281.00982666 281.16998291 281.210021973 281.269592285 281.450256348 281.59967041 281.620178223 281.660217285 281.790100098 281.780334473 281.389709473 280.660217285 279.889709473 279.200256348 278.40045166 274.760162354 274.949615479 274.729888916 274.350006104 274.199615479 274.409576416 274.819732666 275.149810791 275.269927979 275.159576416 274.949615479 274.779693604 274.580474854 274.130279541 273.350006104 272.380279541 271.340240479 266.059692383 266.549926758 267.059692383 267.509887695 267.939575195 268.50012207 269.210083008 269.799926758 269.830200195 269.229614258 268.349731445 267.57043457 266.849731445 266.01965332 265.030395508 263.939575195 262.670043945 254.470230103 254.78956604 255.319839478 256.020019531 256.739746094 257.300292969 257.670410156 257.920410156 258.069824219 258.039550781 257.789550781 257.340332031 256.640136719 255.689956665 254.560073853 253.28956604 251.749526978 238.649810791 238.960357666 239.439849854 239.979888916 240.479888916 240.930084229 241.380279541 241.790435791 242.010162354 241.989654541 241.819732666 241.590240479 241.210357666 240.540435791 239.619537354 238.590240479 237.359771729 228.799926758 228.909790039 229.330200195 230.040161133 230.730102539 231.17980957 231.469848633 231.770141602 232.040161133 232.120239258 231.949829102 231.630004883 231.230102539 230.690063477 229.960083008 229.080200195 228.049926758 217.070007324 217.380065918 217.789978027 218.340026855 219.00994873 219.67010498 220.130065918 220.33001709 220.320007324 220.199890137 220.019958496 219.749938965 219.390075684 218.989929199 218.590026855 218.140075684 217.640075684 204.97013855 205.280197144 205.499923706 205.700119019 205.950119019 206.240158081 206.39982605 206.370040894 206.240158081 206.080001831 205.930099487 205.830001831 205.820236206 205.97013855 206.269943237 206.740158081 207.530197144 198.579605103 197.369644165 196.19972229 195.09034729 194.09034729 193.229995728 192.52003479 192.119644165 192.10987854 192.369644165 192.710464478 193.100112915 193.659683228 194.529800415 195.78956604 197.409683228 199.380386353 203.349838257 201.779525757 200.069564819 198.300033569 196.599838257 195.170150757 194.130111694 193.519760132 193.269760132 193.340072632 193.710189819 194.340072632 195.219955444 196.319564819 197.630111694 199.139877319 200.809799194 208.799880981 207.759841919 206.710037231 205.759841919 205.049880981 204.589920044 204.319900513 204.160232544 204.040115356 204.02986145 204.129959106 204.339920044 204.609939575 205.02986145 205.730056763 206.660232544 207.649978638 217.759918213 217.139801025 216.569976807 216.100250244 215.739898682 215.420074463 215.100250244 214.909820557 214.949859619 215.179840088 215.360015869 215.46987915 215.549957275 215.560211182 215.319976807 214.889801025 214.690093994 219.779998779 219.860076904 219.919647217 219.949920654 219.940155029 219.930389404 219.909881592 219.839569092 219.749725342 219.659881592 219.600311279 219.529998779 219.419647217 219.329803467 219.409881592 219.699920654 220.220428467 229.4402771 228.7996521 227.990081787 227.20980835 226.669769287 226.410003662 226.360198975 226.450042725 226.640472412 226.8699646 227.150238037 227.6199646 228.379730225 229.270355225 230.009613037 230.390472412 230.450042725 297.170074463 297.129058838 296.920074463 297.009918213 297.349761963 297.439605713 297.089996338 296.789215088 297.000152588 297.439605713 297.740386963 297.990386963 298.170074463 297.650543213 295.839996338 293.039215088 290.150543213 291.550292969 291.669433594 291.800292969 292.120605469 292.450683594 292.470214844 292.159667969 291.919433594 291.960449219 292.120605469 292.229980469 292.390136719 292.569824219 292.259277344 290.769042969 288.009277344 284.669433594 286.309631348 286.610412598 287.339904785 288.129943848 288.479553223 288.320373535 287.950256348 287.589904785 287.370178223 287.410217285 287.710021973 288.019592285 288.129943848 288.040100098 287.729553223 286.960021973 285.41998291 280.860412598 280.799865723 280.979553223 281.200256348 281.290100098 281.339904785 281.379943848 281.370178223 281.33013916 281.460021973 281.729553223 281.809631348 281.450256348 280.790100098 280.089904785 279.410217285 278.610412598 274.830474854 274.920318604 274.569732666 274.149810791 274.059967041 274.359771729 274.819732666 275.170318604 275.279693604 275.119537354 274.869537354 274.720123291 274.619537354 274.250396729 273.470123291 272.460357666 271.439849854 266.07043457 266.580200195 267.120239258 267.620239258 268.059692383 268.549926758 269.170043945 269.710083008 269.780395508 269.290161133 268.490356445 267.729614258 267.009887695 266.16027832 265.16027832 264.120239258 262.920043945 254.319839478 254.68019104 255.249526978 255.999526978 256.770019531 257.369628906 257.819824219 258.130371094 258.249511719 258.170410156 257.899902344 257.460449219 256.810058594 255.899917603 254.77003479 253.510269165 252.050308228 238.529693604 238.819732666 239.279693604 239.840240479 240.369537354 240.859771729 241.319732666 241.689849854 241.890045166 241.880279541 241.710357666 241.470123291 241.100006104 240.479888916 239.600006104 238.609771729 237.470123291 228.600219727 228.690063477 229.159790039 229.909790039 230.580200195 231.029907227 231.319946289 231.630004883 231.92980957 232.020141602 231.859985352 231.520141602 231.120239258 230.580200195 229.870239258 228.989868164 227.989868164 216.910095215 217.190124512 217.640075684 218.229919434 218.930114746 219.58001709 220.029968262 220.229919434 220.239929199 220.160095215 219.959899902 219.650085449 219.239929199 218.840026855 218.430114746 217.969909668 217.440124512 204.910079956 205.300216675 205.570236206 205.780197144 206.019943237 206.269943237 206.39982605 206.359786987 206.22013855 206.0599823 205.919845581 205.830001831 205.850021362 205.999923706 206.240158081 206.620040894 207.330001831 198.850112915 197.659683228 196.44972229 195.27003479 194.249526978 193.399917603 192.739761353 192.329605103 192.300308228 192.529800415 192.85987854 193.249526978 193.78956604 194.59034729 195.77003479 197.319839478 199.260269165 203.399642944 201.859603882 200.149642944 198.330307007 196.590072632 195.120346069 194.099838257 193.519760132 193.290267944 193.330307007 193.649642944 194.250228882 195.090072632 196.170150757 197.460189819 198.969955444 200.649642944 208.810134888 207.77986145 206.719802856 205.770095825 205.049880981 204.609939575 204.370193481 204.219802856 204.10017395 204.069900513 204.169998169 204.330154419 204.52986145 204.879959106 205.520095825 206.4400177 207.429763794 217.819976807 217.199859619 216.610015869 216.069976807 215.679840088 215.389801025 215.119781494 214.940093994 215.000152588 215.250152588 215.440093994 215.489898682 215.529937744 215.560211182 215.369781494 214.920074463 214.639801025 219.810272217 219.930389404 220.049530029 220.110076904 220.119842529 220.079803467 220.039764404 219.949920654 219.829803467 219.720428467 219.690155029 219.629608154 219.449920654 219.220428467 219.180389404 219.499725342 220.150115967 229.429534912 228.759613037 227.900238037 227.089691162 226.5496521 226.289886475 226.219573975 226.329925537 226.60043335 226.8699646 227.060394287 227.410003662 228.249847412 229.410003662 230.419769287 230.85043335 230.719573975 297.099761963 296.939605713 296.730621338 296.859527588 297.199371338 297.269683838 296.970855713 296.800933838 297.060699463 297.480621338 297.769683838 298.089996338 298.420074463 298.060699463 296.310699463 293.420074463 290.369293213 291.479980469 291.479980469 291.519042969 291.860839844 292.269042969 292.360839844 292.130371094 291.940917969 292.009277344 292.169433594 292.269042969 292.479980469 292.810058594 292.690917969 291.310058594 288.540527344 285.179199219 286.219787598 286.50982666 287.280334473 288.070373535 288.360412598 288.219787598 287.969787598 287.690490723 287.410217285 287.370178223 287.66998291 288.040100098 288.15045166 288.15045166 288.229553223 288.019592285 286.820373535 280.700256348 280.780334473 281.049865723 281.33013916 281.41998291 281.389709473 281.309631348 281.160217285 281.070373535 281.269592285 281.66998291 281.84967041 281.549865723 280.960021973 280.309631348 279.639709473 278.820373535 274.809967041 274.830474854 274.399810791 273.949615479 273.920318604 274.269927979 274.729888916 275.090240479 275.220123291 275.069732666 274.830474854 274.750396729 274.750396729 274.470123291 273.680084229 272.609771729 271.559967041 266.040161133 266.57043457 267.139770508 267.719848633 268.200317383 268.639770508 269.120239258 269.57043457 269.700317383 269.32043457 268.630004883 267.870239258 267.110473633 266.229614258 265.259887695 264.280395508 263.17980957 254.279800415 254.68019104 255.260269165 256.020019531 256.810058594 257.460449219 257.960449219 258.300292969 258.439941406 258.319824219 258.010253906 257.579589844 256.979980469 256.109863281 254.999526978 253.779800415 252.399917603 238.390045166 238.680084229 239.180084229 239.729888916 240.279693604 240.800201416 241.239654541 241.580474854 241.769927979 241.760162354 241.609771729 241.350006104 240.970123291 240.409576416 239.609771729 238.649810791 237.569732666 228.409790039 228.549926758 229.080200195 229.799926758 230.460083008 230.900024414 231.25012207 231.58996582 231.870239258 231.940063477 231.770141602 231.449829102 231.029907227 230.50012207 229.779907227 228.900024414 227.900024414 216.749938965 217.08001709 217.570007324 218.219909668 218.92010498 219.549987793 219.969909668 220.160095215 220.190124512 220.130065918 219.940124512 219.590026855 219.140075684 218.699890137 218.289978027 217.820007324 217.25994873 204.839767456 205.249923706 205.5599823 205.820236206 206.100021362 206.330001831 206.419845581 206.350021362 206.180099487 206.030197144 205.89982605 205.850021362 205.870040894 206.010177612 206.229904175 206.570236206 207.189865112 199.050308228 197.890151978 196.640151978 195.390151978 194.300308228 193.43019104 192.77003479 192.399917603 192.35987854 192.59034729 192.939956665 193.350112915 193.880386353 194.649917603 195.729995728 197.189956665 199.050308228 203.509994507 201.969955444 200.229721069 198.380111694 196.590072632 195.109603882 194.120346069 193.580307007 193.359603882 193.420150757 193.719955444 194.259994507 195.019760132 196.000228882 197.219955444 198.719955444 200.410385132 208.739822388 207.6900177 206.620193481 205.669998169 204.949783325 204.52986145 204.319900513 204.1900177 204.080154419 204.069900513 204.160232544 204.290115356 204.449783325 204.759841919 205.35017395 206.1900177 207.120193481 218.080230713 217.520172119 216.900054932 216.279937744 215.830230713 215.549957275 215.299957275 215.110015869 215.1300354 215.330230713 215.460113525 215.46987915 215.520172119 215.619781494 215.46987915 214.96987915 214.529937744 219.779998779 219.890350342 220.039764404 220.150115967 220.180389404 220.129608154 220.070037842 219.980194092 219.869842529 219.799530029 219.779998779 219.739959717 219.489959717 219.150115967 219.049530029 219.430389404 220.169647217 229.339691162 228.719573975 227.85043335 227.009613037 226.450042725 226.20980835 226.150238037 226.249847412 226.490081787 226.700042725 226.820159912 227.179534912 228.179534912 229.640472412 230.820159912 231.150238037 230.770355225 296.689605713 296.589996338 296.509918213 296.679840088 296.980621338 297.099761963 296.990386963 296.970855713 297.170074463 297.480621338 297.830230713 298.320465088 298.720855713 298.269683838 296.400543213 293.500152588 290.609527588 291.099121094 291.120605469 291.200683594 291.569824219 292.030761719 292.229980469 292.140136719 292.060058594 292.120605469 292.210449219 292.310058594 292.620605469 293.069824219 293.009277344 291.710449219 289.120605469 286.079589844 286.08013916 286.460021973 287.309631348 288.09967041 288.320373535 288.15045166 288.019592285 287.879943848 287.589904785 287.41998291 287.660217285 288.040100098 288.210021973 288.339904785 288.75982666 289.00982666 288.08013916 280.519592285 280.780334473 281.179748535 281.479553223 281.50982666 281.40045166 281.24029541 281.019592285 280.910217285 281.160217285 281.65045166 281.91998291 281.690490723 281.129943848 280.49029541 279.809631348 278.99029541 274.600006104 274.600006104 274.170318604 273.790435791 273.840240479 274.220123291 274.680084229 275.019927979 275.140045166 274.989654541 274.779693604 274.769927979 274.920318604 274.769927979 274.019927979 272.880279541 271.760162354 265.979614258 266.469848633 267.059692383 267.700317383 268.259887695 268.670043945 269.030395508 269.380004883 269.530395508 269.290161133 268.67980957 267.920043945 267.130004883 266.26965332 265.349731445 264.450317383 263.420043945 254.350112915 254.77003479 255.34034729 256.090332031 256.880371094 257.550292969 258.069824219 258.420410156 258.560058594 258.449707031 258.140136719 257.729980469 257.170410156 256.350097656 255.279800415 254.079605103 252.749526978 238.180084229 238.529693604 239.080474854 239.670318604 240.229888916 240.760162354 241.210357666 241.519927979 241.689849854 241.699615479 241.540435791 241.250396729 240.869537354 240.340240479 239.609771729 238.699615479 237.670318604 228.219848633 228.460083008 229.029907227 229.719848633 230.33996582 230.850219727 231.259887695 231.58996582 231.790161133 231.810180664 231.650024414 231.350219727 230.949829102 230.420043945 229.699829102 228.819946289 227.83996582 216.630065918 217.00994873 217.559997559 218.229919434 218.940124512 219.539978027 219.930114746 220.120056152 220.150085449 220.090026855 219.910095215 219.539978027 219.070007324 218.590026855 218.150085449 217.680114746 217.090026855 204.859786987 205.229904175 205.550216675 205.850021362 206.140060425 206.350021362 206.410079956 206.339767456 206.180099487 206.039962769 205.919845581 205.859786987 205.859786987 205.979904175 206.200119019 206.550216675 207.080001831 199.249526978 198.09034729 196.779800415 195.44972229 194.310073853 193.420425415 192.779800415 192.409683228 192.369644165 192.60987854 192.999526978 193.439956665 193.989761353 194.689956665 195.649917603 196.999526978 198.779800415 203.620346069 202.069564819 200.290267944 198.370346069 196.540267944 195.069564819 194.099838257 193.580307007 193.410385132 193.479721069 193.790267944 194.290267944 194.960189819 195.830307007 196.979721069 198.429916382 200.109603882 208.580154419 207.520095825 206.489822388 205.549880981 204.85017395 204.429763794 204.239822388 204.129959106 204.02986145 204.009841919 204.10017395 204.210037231 204.35017395 204.640213013 205.169998169 205.890213013 206.6900177 218.250152588 217.759918213 217.179840088 216.529937744 216.04019165 215.759918213 215.509918213 215.270172119 215.21987915 215.3800354 215.509918213 215.520172119 215.610015869 215.779937744 215.670074463 215.1300354 214.589996338 219.690155029 219.739959717 219.879608154 220.039764404 220.110076904 220.060272217 219.989959717 219.940155029 219.850311279 219.749725342 219.699920654 219.640350342 219.409881592 219.089569092 219.020233154 219.430389404 220.150115967 229.259613037 228.730316162 227.900238037 227.03012085 226.480316162 226.270355225 226.200042725 226.1902771 226.339691162 226.5496521 226.78012085 227.270355225 228.360198975 229.85043335 230.980316162 231.169769287 230.730316162 296.140777588 296.140777588 296.199371338 296.390777588 296.640777588 296.900543213 297.109527588 297.209136963 297.230621338 297.349761963 297.810699463 298.529449463 298.939605713 298.339996338 296.560699463 294.179840088 292.060699463 290.550292969 290.610839844 290.759277344 291.179199219 291.690917969 292.030761719 292.140136719 292.169433594 292.190917969 292.190917969 292.300292969 292.700683594 293.229980469 293.280761719 292.290527344 290.390136719 288.269042969 285.84967041 286.299865723 287.250061035 288.089904785 288.269592285 288.070373535 288.000061035 287.950256348 287.66998291 287.469787598 287.679748535 288.09967041 288.299865723 288.519592285 289.179748535 289.790100098 289.229553223 280.440490723 280.820373535 281.290100098 281.570373535 281.519592285 281.34967041 281.179748535 280.979553223 280.889709473 281.129943848 281.629943848 281.950256348 281.769592285 281.229553223 280.59967041 279.969787598 279.250061035 274.220123291 274.199615479 273.850006104 273.640045166 273.840240479 274.290435791 274.720123291 275.000396729 275.069732666 274.890045166 274.649810791 274.699615479 275.000396729 275.040435791 274.390045166 273.229888916 272.019927979 265.880004883 266.309692383 266.83996582 267.50012207 268.130004883 268.57043457 268.880004883 269.17980957 269.349731445 269.170043945 268.620239258 267.91027832 267.16027832 266.380004883 265.51965332 264.620239258 263.599731445 254.409683228 254.869644165 255.44972229 256.210449219 256.999511719 257.659667969 258.140136719 258.489746094 258.640136719 258.569824219 258.289550781 257.899902344 257.369628906 256.590332031 255.569839478 254.399917603 253.09034729 237.930084229 238.369537354 239.000396729 239.640045166 240.229888916 240.779693604 241.239654541 241.550201416 241.689849854 241.680084229 241.510162354 241.189849854 240.779693604 240.279693604 239.600006104 238.750396729 237.790435791 228.049926758 228.389770508 228.989868164 229.630004883 230.239868164 230.799926758 231.259887695 231.549926758 231.650024414 231.600219727 231.480102539 231.230102539 230.83996582 230.310180664 229.620239258 228.779907227 227.870239258 216.529968262 216.969909668 217.559997559 218.239929199 218.930114746 219.519958496 219.890075684 220.059997559 220.08001709 220.019958496 219.840026855 219.489929199 219.00994873 218.489929199 218.039978027 217.570007324 217.00994873 204.959884644 205.289962769 205.589767456 205.859786987 206.120040894 206.289962769 206.359786987 206.320236206 206.240158081 206.120040894 205.990158081 205.89982605 205.870040894 205.950119019 206.189865112 206.510177612 206.930099487 199.569839478 198.329605103 196.909683228 195.52003479 194.380386353 193.529800415 192.899917603 192.499526978 192.439956665 192.689956665 193.130386353 193.600112915 194.100112915 194.689956665 195.52003479 196.739761353 198.460464478 203.719955444 202.130111694 200.300033569 198.340072632 196.469955444 194.969955444 193.990463257 193.500228882 193.340072632 193.399642944 193.700424194 194.179916382 194.809799194 195.630111694 196.729721069 198.120346069 199.710189819 208.460037231 207.460037231 206.480056763 205.569900513 204.870193481 204.449783325 204.270095825 204.160232544 204.060134888 204.020095825 204.080154419 204.179763794 204.290115356 204.509841919 204.919998169 205.489822388 206.160232544 218.139801025 217.690093994 217.139801025 216.520172119 216.080230713 215.810211182 215.500152588 215.159820557 215.089996338 215.330230713 215.549957275 215.600250244 215.699859619 215.920074463 215.909820557 215.460113525 214.989898682 219.669647217 219.699920654 219.829803467 220.020233154 220.100311279 220.060272217 220.039764404 220.029998779 219.930389404 219.720428467 219.570037842 219.499725342 219.339569092 219.079803467 218.959686279 219.260467529 219.820037842 229.240081787 228.719573975 227.879730225 227.009613037 226.499847412 226.339691162 226.240081787 226.10043335 226.150238037 226.480316162 226.9402771 227.560394287 228.560394287 229.879730225 230.929534912 231.289886475 231.200042725 295.679840088 295.730621338 295.890777588 296.060699463 296.259918213 296.699371338 297.189605713 297.369293213 297.189605713 297.179840088 297.779449463 298.699371338 299.099761963 298.539215088 297.339996338 296.099761963 295.209136963 290.009277344 290.060058594 290.280761719 290.769042969 291.380371094 291.880371094 292.149902344 292.239746094 292.210449219 292.149902344 292.310058594 292.810058594 293.419433594 293.669433594 293.329589844 292.589355469 291.729980469 285.59967041 286.059631348 287.070373535 287.99029541 288.229553223 288.059631348 287.950256348 287.870178223 287.59967041 287.450256348 287.769592285 288.24029541 288.440490723 288.66998291 289.460021973 290.410217285 290.370178223 280.50982666 280.940490723 281.410217285 281.620178223 281.49029541 281.269592285 281.129943848 281.019592285 280.979553223 281.179748535 281.589904785 281.870178223 281.710021973 281.219787598 280.679748535 280.210021973 279.719787598 273.800201416 273.779693604 273.540435791 273.519927979 273.890045166 274.390045166 274.779693604 275.010162354 275.029693604 274.800201416 274.519927979 274.580474854 274.989654541 275.210357666 274.699615479 273.580474854 272.309967041 265.700317383 266.07043457 266.509887695 267.139770508 267.82043457 268.360473633 268.740356445 269.059692383 269.240356445 269.059692383 268.530395508 267.880004883 267.259887695 266.620239258 265.830200195 264.889770508 263.790161133 254.350112915 254.85987854 255.499526978 256.329589844 257.149902344 257.779785156 258.210449219 258.510253906 258.689941406 258.670410156 258.420410156 258.029785156 257.489746094 256.749511719 255.78956604 254.659683228 253.380386353 237.729888916 238.260162354 238.989654541 239.659576416 240.250396729 240.800201416 241.279693604 241.580474854 241.710357666 241.699615479 241.500396729 241.149810791 240.699615479 240.199615479 239.580474854 238.809967041 237.949615479 227.92980957 228.359985352 228.960083008 229.569946289 230.150024414 230.739868164 231.210083008 231.440063477 231.460083008 231.400024414 231.299926758 231.080200195 230.699829102 230.17980957 229.560180664 228.830200195 228.009887695 216.459899902 216.959899902 217.58001709 218.269958496 218.910095215 219.459899902 219.820007324 219.989929199 219.999938965 219.930114746 219.749938965 219.430114746 218.979919434 218.469909668 217.979919434 217.539978027 217.00994873 205.129806519 205.410079956 205.669845581 205.89982605 206.080001831 206.200119019 206.289962769 206.350021362 206.339767456 206.240158081 206.089767456 205.97013855 205.930099487 206.019943237 206.22013855 206.47013855 206.72013855 199.94972229 198.619644165 197.069839478 195.630386353 194.510269165 193.670425415 192.999526978 192.53956604 192.470230103 192.77003479 193.279800415 193.779800415 194.210464478 194.659683228 195.35987854 196.470230103 198.100112915 203.769760132 202.149642944 200.300033569 198.349838257 196.460189819 194.920150757 193.929916382 193.439682007 193.269760132 193.300033569 193.509994507 193.939682007 194.569564819 195.399642944 196.460189819 197.729721069 199.149642944 208.429763794 207.509841919 206.569900513 205.649978638 204.899978638 204.460037231 204.290115356 204.210037231 204.109939575 204.069900513 204.140213013 204.219802856 204.290115356 204.399978638 204.669998169 205.080154419 205.660232544 217.869781494 217.409820557 216.909820557 216.389801025 216.029937744 215.770172119 215.369781494 214.949859619 214.8800354 215.230133057 215.569976807 215.6300354 215.690093994 215.929840088 216.089996338 215.8800354 215.589996338 219.779998779 219.850311279 219.999725342 220.169647217 220.220428467 220.180389404 220.199920654 220.260467529 220.150115967 219.850311279 219.610076904 219.560272217 219.489959717 219.190155029 218.839569092 218.810272217 219.159881592 229.259613037 228.660003662 227.759613037 226.860198975 226.410003662 226.35043335 226.240081787 225.969573975 225.9402771 226.360198975 226.969573975 227.570159912 228.360198975 229.589691162 230.950042725 231.950042725 232.490081787 295.300933838 295.369293213 295.609527588 295.800933838 296.050933838 296.589996338 297.230621338 297.410308838 297.160308838 297.189605713 297.939605713 298.890777588 299.230621338 298.879058838 298.500152588 298.529449463 298.730621338 289.530761719 289.530761719 289.800292969 290.440917969 291.239746094 291.890136719 292.229980469 292.280761719 292.220214844 292.220214844 292.489746094 293.060058594 293.690917969 294.169433594 294.499511719 294.839355469 294.999511719 285.440490723 285.889709473 286.910217285 287.879943848 288.24029541 288.139709473 287.99029541 287.780334473 287.479553223 287.460021973 287.929748535 288.479553223 288.660217285 288.839904785 289.679748535 290.889709473 291.33013916 280.65045166 281.070373535 281.519592285 281.700256348 281.500061035 281.219787598 281.089904785 281.059631348 281.070373535 281.219787598 281.50982666 281.700256348 281.559631348 281.160217285 280.729553223 280.469787598 280.25982666 273.479888916 273.470123291 273.350006104 273.510162354 274.000396729 274.500396729 274.809967041 274.960357666 274.970123291 274.750396729 274.500396729 274.559967041 274.989654541 275.300201416 274.920318604 273.899810791 272.640045166 265.399536133 265.719848633 266.08996582 266.649536133 267.380004883 268.049926758 268.599731445 269.030395508 269.210083008 269.009887695 268.50012207 267.920043945 267.450317383 266.969848633 266.290161133 265.309692383 264.130004883 254.140151978 254.69972229 255.470230103 256.390136719 257.270019531 257.880371094 258.239746094 258.499511719 258.670410156 258.680175781 258.470214844 258.060058594 257.510253906 256.810058594 255.920425415 254.85987854 253.619644165 237.600006104 238.229888916 239.019927979 239.720123291 240.290435791 240.840240479 241.309967041 241.609771729 241.720123291 241.689849854 241.489654541 241.119537354 240.640045166 240.140045166 239.559967041 238.869537354 238.109771729 227.850219727 228.380004883 228.980102539 229.549926758 230.109985352 230.699829102 231.130004883 231.319946289 231.299926758 231.270141602 231.190063477 230.969848633 230.560180664 230.069946289 229.529907227 228.909790039 228.190063477 216.430114746 216.989929199 217.650085449 218.320007324 218.930114746 219.430114746 219.769958496 219.940124512 219.969909668 219.880065918 219.699890137 219.430114746 219.039978027 218.549987793 218.039978027 217.570007324 217.090026855 205.339767456 205.550216675 205.769943237 205.97013855 206.089767456 206.189865112 206.3099823 206.439865112 206.459884644 206.339767456 206.169845581 206.070236206 206.080001831 206.169845581 206.320236206 206.459884644 206.5599823 200.35987854 198.93019104 197.279800415 195.77003479 194.600112915 193.689956665 192.93019104 192.420425415 192.369644165 192.77003479 193.350112915 193.85987854 194.220230103 194.59034729 195.220230103 196.279800415 197.779800415 203.759994507 202.109603882 200.279525757 198.359603882 196.490463257 194.939682007 193.950424194 193.490463257 193.330307007 193.300033569 193.420150757 193.779525757 194.389877319 195.189682007 196.160385132 197.259994507 198.490463257 208.449783325 207.560134888 206.589920044 205.620193481 204.810134888 204.339920044 204.179763794 204.129959106 204.080154419 204.069900513 204.149978638 204.250076294 204.27986145 204.310134888 204.460037231 204.790115356 205.310134888 217.750152588 217.310211182 216.869781494 216.429840088 216.139801025 215.869781494 215.400054932 214.889801025 214.819976807 215.239898682 215.610015869 215.619781494 215.610015869 215.889801025 216.230133057 216.21987915 216.020172119 219.900115967 220.010467529 220.169647217 220.289764404 220.249725342 220.159881592 220.220428467 220.369842529 220.289764404 219.970428467 219.749725342 219.799530029 219.779998779 219.310272217 218.610076904 218.249725342 218.520233154 229.259613037 228.650238037 227.70980835 226.789886475 226.410003662 226.4402771 226.339691162 225.990081787 225.860198975 226.259613037 226.810394287 227.219573975 227.8699646 229.310394287 231.35043335 233.150238037 234.110198975 294.859527588 294.939605713 295.269683838 295.609527588 296.009918213 296.619293213 297.209136963 297.379058838 297.259918213 297.509918213 298.300933838 299.060699463 299.220855713 299.050933838 299.240386963 299.939605713 300.529449463 289.069824219 288.979980469 289.280761719 290.120605469 291.190917969 292.009277344 292.310058594 292.280761719 292.239746094 292.390136719 292.769042969 293.310058594 293.899902344 294.489746094 295.169433594 295.940917969 296.419433594 285.339904785 285.889709473 286.90045166 287.839904785 288.250061035 288.229553223 288.049865723 287.769592285 287.479553223 287.559631348 288.139709473 288.700256348 288.839904785 289.00982666 289.84967041 291.09967041 291.700256348 280.66998291 281.120178223 281.620178223 281.839904785 281.639709473 281.290100098 281.08013916 281.040100098 281.070373535 281.160217285 281.379943848 281.549865723 281.469787598 281.120178223 280.750061035 280.629943848 280.639709473 273.220123291 273.250396729 273.290435791 273.619537354 274.180084229 274.619537354 274.819732666 274.909576416 274.930084229 274.809967041 274.630279541 274.699615479 275.100006104 275.399810791 275.130279541 274.260162354 273.100006104 265.040161133 265.32043457 265.580200195 266.07043457 266.809692383 267.639770508 268.389770508 268.969848633 269.189575195 268.979614258 268.490356445 268.009887695 267.66027832 267.330200195 266.76965332 265.880004883 264.710083008 253.84034729 254.479995728 255.369644165 256.390136719 257.300292969 257.880371094 258.199707031 258.420410156 258.579589844 258.590332031 258.369628906 257.960449219 257.430175781 256.789550781 255.989761353 255.010269165 253.829605103 237.460357666 238.189849854 239.029693604 239.739654541 240.309967041 240.859771729 241.330474854 241.609771729 241.699615479 241.659576416 241.449615479 241.080474854 240.590240479 240.080474854 239.529693604 238.880279541 238.189849854 227.779907227 228.400024414 229.020141602 229.569946289 230.120239258 230.67980957 231.08996582 231.239868164 231.239868164 231.230102539 231.150024414 230.900024414 230.469848633 230.00012207 229.520141602 228.949829102 228.279907227 216.42010498 217.019958496 217.719909668 218.400085449 218.989929199 219.430114746 219.75994873 219.940124512 219.989929199 219.910095215 219.739929199 219.499938965 219.160095215 218.690124512 218.160095215 217.640075684 217.17010498 205.580001831 205.72013855 205.89982605 206.089767456 206.189865112 206.280197144 206.419845581 206.5599823 206.550216675 206.390060425 206.200119019 206.140060425 206.209884644 206.330001831 206.430099487 206.499923706 206.550216675 200.779800415 199.28956604 197.59034729 195.999526978 194.689956665 193.649917603 192.810073853 192.319839478 192.329605103 192.779800415 193.380386353 193.85987854 194.159683228 194.499526978 195.140151978 196.18019104 197.529800415 203.700424194 202.019760132 200.160385132 198.259994507 196.429916382 194.910385132 193.929916382 193.490463257 193.349838257 193.319564819 193.410385132 193.759994507 194.330307007 195.029525757 195.809799194 196.700424194 197.790267944 208.419998169 207.509841919 206.52986145 205.540115356 204.719802856 204.230056763 204.069900513 204.040115356 204.000076294 204.020095825 204.10017395 204.199783325 204.219802856 204.230056763 204.370193481 204.6900177 205.1900177 217.869781494 217.440093994 217.009918213 216.560211182 216.230133057 215.920074463 215.409820557 214.909820557 214.860015869 215.279937744 215.639801025 215.650054932 215.659820557 216.020172119 216.460113525 216.460113525 216.110015869 219.850311279 219.959686279 220.140350342 220.209686279 220.100311279 219.980194092 220.100311279 220.299530029 220.270233154 219.970428467 219.810272217 219.919647217 219.879608154 219.249725342 218.320037842 217.879608154 218.329803467 229.28012085 228.759613037 227.860198975 226.969573975 226.629730225 226.669769287 226.53012085 226.10043335 225.9402771 226.289886475 226.749847412 227.009613037 227.660003662 229.45980835 232.1199646 234.320159912 235.03012085 294.420074463 294.420074463 294.779449463 295.339996338 296.000152588 296.689605713 297.199371338 297.369293213 297.459136963 297.910308838 298.589996338 299.019683838 299.009918213 298.970855713 299.269683838 299.769683838 299.929840088 288.649902344 288.429199219 288.720214844 289.729980469 291.079589844 292.060058594 292.360839844 292.290527344 292.329589844 292.589355469 292.950683594 293.380371094 293.909667969 294.550292969 295.200683594 295.720214844 295.829589844 285.210021973 285.979553223 287.000061035 287.809631348 288.139709473 288.139709473 288.019592285 287.809631348 287.610412598 287.74029541 288.25982666 288.74029541 288.889709473 289.120178223 289.90045166 290.889709473 291.269592285 280.589904785 281.09967041 281.700256348 282.040100098 281.889709473 281.469787598 281.110412598 280.950256348 280.929748535 281.019592285 281.250061035 281.49029541 281.500061035 281.160217285 280.75982666 280.65045166 280.750061035 272.890045166 273.010162354 273.239654541 273.739654541 274.340240479 274.720123291 274.830474854 274.890045166 274.970123291 274.930084229 274.830474854 274.930084229 275.260162354 275.519927979 275.350006104 274.710357666 273.729888916 264.67980957 264.860473633 265.030395508 265.479614258 266.26965332 267.229614258 268.149536133 268.830200195 269.110473633 268.939575195 268.51965332 268.120239258 267.83996582 267.599731445 267.189575195 266.469848633 265.41027832 253.560073853 254.260269165 255.210464478 256.270019531 257.189941406 257.760253906 258.090332031 258.310058594 258.439941406 258.399902344 258.159667969 257.779785156 257.300292969 256.739746094 256.050292969 255.159683228 254.069839478 237.229888916 238.040435791 238.930084229 239.659576416 240.279693604 240.859771729 241.319732666 241.569732666 241.619537354 241.550201416 241.359771729 241.010162354 240.519927979 239.989654541 239.439849854 238.809967041 238.149810791 227.650024414 228.350219727 229.020141602 229.58996582 230.150024414 230.699829102 231.069946289 231.210083008 231.230102539 231.230102539 231.150024414 230.880004883 230.42980957 229.949829102 229.460083008 228.900024414 228.230102539 216.459899902 217.070007324 217.769958496 218.459899902 219.039978027 219.459899902 219.75994873 219.959899902 220.049987793 219.999938965 219.83001709 219.590026855 219.269958496 218.83001709 218.289978027 217.749938965 217.25994873 205.919845581 205.97013855 206.100021362 206.249923706 206.350021362 206.410079956 206.530197144 206.64982605 206.620040894 206.430099487 206.240158081 206.209884644 206.320236206 206.439865112 206.510177612 206.570236206 206.680099487 201.210464478 199.710464478 197.999526978 196.310073853 194.850112915 193.69972229 192.899917603 192.510269165 192.569839478 192.970230103 193.460464478 193.850112915 194.119644165 194.460464478 195.130386353 196.140151978 197.34034729 203.649642944 201.880111694 199.929916382 198.019760132 196.250228882 194.769760132 193.790267944 193.330307007 193.170150757 193.149642944 193.319564819 193.729721069 194.300033569 194.849838257 195.410385132 196.139877319 197.179916382 208.27986145 207.390213013 206.460037231 205.549880981 204.790115356 204.330154419 204.160232544 204.129959106 204.080154419 204.069900513 204.109939575 204.160232544 204.169998169 204.199783325 204.379959106 204.730056763 205.219802856 218.04019165 217.580230713 217.060211182 216.489898682 216.009918213 215.610015869 215.150054932 214.759918213 214.79019165 215.210113525 215.580230713 215.690093994 215.860015869 216.330230713 216.730133057 216.569976807 215.920074463 219.669647217 219.820037842 220.039764404 220.119842529 220.029998779 219.959686279 220.150115967 220.390350342 220.339569092 220.020233154 219.829803467 219.890350342 219.749725342 219.060272217 218.169647217 217.919647217 218.690155029 229.270355225 228.810394287 227.990081787 227.179534912 226.860198975 226.820159912 226.539886475 226.03012085 225.890472412 226.329925537 226.839691162 227.150238037 227.929534912 229.9402771 232.6902771 234.629730225 234.589691162 294.170074463 293.980621338 294.259918213 295.000152588 295.959136963 296.789215088 297.259918213 297.420074463 297.640777588 298.119293213 298.589996338 298.779449463 298.849761963 299.039215088 299.199371338 298.980621338 298.369293213 288.319824219 288.019042969 288.290527344 289.399902344 290.940917969 292.079589844 292.450683594 292.450683594 292.579589844 292.829589844 293.019042969 293.280761719 293.849121094 294.610839844 295.130371094 295.130371094 294.599121094 285.059631348 286.139709473 287.219787598 287.839904785 287.99029541 287.979553223 287.979553223 287.90045166 287.809631348 287.91998291 288.269592285 288.59967041 288.799865723 289.160217285 289.820373535 290.389709473 290.280334473 280.639709473 281.210021973 281.83013916 282.24029541 282.15045166 281.690490723 281.190490723 280.870178223 280.750061035 280.83013916 281.129943848 281.50982666 281.59967041 281.25982666 280.790100098 280.639709473 280.750061035 272.540435791 272.769927979 273.170318604 273.790435791 274.399810791 274.720123291 274.819732666 274.930084229 275.059967041 275.069732666 275.000396729 275.090240479 275.369537354 275.609771729 275.559967041 275.159576416 274.430084229 264.330200195 264.370239258 264.50012207 265.040161133 265.979614258 267.07043457 268.059692383 268.759887695 269.040161133 268.939575195 268.599731445 268.25012207 267.969848633 267.740356445 267.42980957 266.899536133 266.009887695 253.28956604 253.989761353 254.960464478 256.020019531 256.920410156 257.539550781 257.949707031 258.199707031 258.289550781 258.159667969 257.869628906 257.520019531 257.130371094 256.680175781 256.109863281 255.329605103 254.319839478 236.920318604 237.760162354 238.699615479 239.519927979 240.220123291 240.830474854 241.279693604 241.470123291 241.460357666 241.380279541 241.210357666 240.880279541 240.399810791 239.869537354 239.300201416 238.670318604 238.029693604 227.449829102 228.219848633 228.940063477 229.569946289 230.17980957 230.75012207 231.120239258 231.230102539 231.230102539 231.210083008 231.130004883 230.850219727 230.420043945 229.920043945 229.389770508 228.779907227 228.120239258 216.529968262 217.130065918 217.820007324 218.499938965 219.070007324 219.489929199 219.75994873 219.959899902 220.08001709 220.070007324 219.910095215 219.660095215 219.340026855 218.940124512 218.440124512 217.910095215 217.42010498 206.39982605 206.359786987 206.39982605 206.479904175 206.490158081 206.490158081 206.550216675 206.640060425 206.660079956 206.539962769 206.39982605 206.379806519 206.47013855 206.5599823 206.600021362 206.680099487 206.870040894 201.670425415 200.159683228 198.420425415 196.630386353 195.03956604 193.869644165 193.18019104 192.899917603 192.94972229 193.19972229 193.550308228 193.890151978 194.170425415 194.52003479 195.130386353 196.050308228 197.140151978 203.559799194 201.710189819 199.689682007 197.790267944 196.109603882 194.689682007 193.700424194 193.160385132 192.929916382 192.920150757 193.170150757 193.670150757 194.219955444 194.620346069 195.019760132 195.679916382 196.790267944 208.02986145 207.1900177 206.35017395 205.549880981 204.870193481 204.460037231 204.290115356 204.259841919 204.230056763 204.199783325 204.179763794 204.160232544 204.160232544 204.239822388 204.4400177 204.77986145 205.219802856 218.119781494 217.600250244 217.009918213 216.310211182 215.690093994 215.21987915 214.839996338 214.600250244 214.699859619 215.100250244 215.460113525 215.690093994 216.000152588 216.480133057 216.799957275 216.509918213 215.710113525 219.579803467 219.820037842 220.070037842 220.169647217 220.129608154 220.169647217 220.440155029 220.699920654 220.610076904 220.239959717 219.980194092 219.940155029 219.720428467 219.070037842 218.400115967 218.440155029 219.379608154 229.129730225 228.6199646 227.85043335 227.160003662 226.8699646 226.719573975 226.270355225 225.700042725 225.610198975 226.169769287 226.820159912 227.28012085 228.150238037 230.0496521 232.390472412 233.6902771 233.009613037 294.019683838 293.740386963 293.949371338 294.800933838 296.009918213 297.009918213 297.459136963 297.550933838 297.750152588 298.129058838 298.439605713 298.619293213 298.980621338 299.519683838 299.560699463 298.709136963 297.509918213 288.040527344 287.780761719 288.120605469 289.339355469 290.999511719 292.229980469 292.679199219 292.749511719 292.909667969 293.079589844 293.120605469 293.310058594 293.989746094 294.899902344 295.319824219 294.899902344 293.929199219 285.059631348 286.460021973 287.620178223 288.08013916 288.08013916 288.040100098 288.08013916 288.08013916 288.00982666 288.049865723 288.269592285 288.530334473 288.799865723 289.200256348 289.66998291 289.799865723 289.299865723 281.000061035 281.58013916 282.089904785 282.379943848 282.280334473 281.790100098 281.219787598 280.799865723 280.620178223 280.690490723 281.070373535 281.549865723 281.690490723 281.33013916 280.84967041 280.74029541 280.870178223 272.350006104 272.710357666 273.250396729 273.899810791 274.409576416 274.630279541 274.769927979 275.000396729 275.220123291 275.229888916 275.140045166 275.210357666 275.470123291 275.680084229 275.699615479 275.500396729 274.989654541 263.950317383 263.880004883 264.110473633 264.899536133 266.08996582 267.290161133 268.240356445 268.83996582 269.07043457 268.969848633 268.689575195 268.349731445 268.040161133 267.759887695 267.479614258 267.080200195 266.349731445 252.970230103 253.619644165 254.579605103 255.630386353 256.539550781 257.220214844 257.749511719 258.069824219 258.130371094 257.890136719 257.539550781 257.210449219 256.890136719 256.539550781 256.069824219 255.43019104 254.529800415 236.580474854 237.460357666 238.439849854 239.350006104 240.159576416 240.819732666 241.220123291 241.340240479 241.279693604 241.189849854 241.029693604 240.720123291 240.260162354 239.729888916 239.159576416 238.540435791 237.909576416 227.219848633 228.049926758 228.830200195 229.540161133 230.219848633 230.819946289 231.190063477 231.270141602 231.219848633 231.170043945 231.080200195 230.83996582 230.42980957 229.909790039 229.330200195 228.719848633 228.080200195 216.67010498 217.25994873 217.900085449 218.549987793 219.110046387 219.519958496 219.789978027 219.969909668 220.08001709 220.100036621 219.979919434 219.729919434 219.410095215 219.039978027 218.620056152 218.130065918 217.650085449 206.990158081 206.850021362 206.780197144 206.72013855 206.620040894 206.510177612 206.510177612 206.609786987 206.709884644 206.72013855 206.669845581 206.629806519 206.669845581 206.729904175 206.760177612 206.820236206 207.010177612 202.170425415 200.59034729 198.749526978 196.829605103 195.149917603 193.989761353 193.390151978 193.159683228 193.119644165 193.229995728 193.53956604 193.94972229 194.310073853 194.630386353 195.10987854 195.890151978 196.880386353 203.330307007 201.500228882 199.500228882 197.670150757 196.080307007 194.740463257 193.750228882 193.170150757 192.880111694 192.840072632 193.109603882 193.630111694 194.109603882 194.389877319 194.710189819 195.420150757 196.630111694 207.739822388 206.919998169 206.10017395 205.330154419 204.6900177 204.27986145 204.129959106 204.140213013 204.179763794 204.1900177 204.199783325 204.1900177 204.210037231 204.310134888 204.489822388 204.730056763 205.069900513 218.159820557 217.650054932 217.1300354 216.460113525 215.810211182 215.310211182 214.96987915 214.79019165 214.850250244 215.1300354 215.429840088 215.650054932 215.909820557 216.259918213 216.46987915 216.21987915 215.600250244 219.680389404 219.940155029 220.119842529 220.129608154 220.089569092 220.209686279 220.549530029 220.820037842 220.749725342 220.430389404 220.190155029 220.119842529 219.930389404 219.449920654 219.029998779 219.180389404 219.999725342 228.929534912 228.339691162 227.640472412 227.079925537 226.820159912 226.6199646 226.1199646 225.539886475 225.450042725 225.990081787 226.650238037 227.140472412 227.910003662 229.419769287 231.150238037 231.910003662 231.1902771 293.670074463 293.560699463 293.879058838 294.900543213 296.289215088 297.369293213 297.759918213 297.750152588 297.859527588 298.170074463 298.420074463 298.689605713 299.269683838 299.949371338 299.910308838 298.839996338 297.539215088 287.579589844 287.519042969 288.079589844 289.530761719 291.329589844 292.569824219 292.940917969 292.960449219 293.089355469 293.220214844 293.239746094 293.499511719 294.259277344 295.130371094 295.370605469 294.720214844 293.640136719 285.309631348 286.979553223 288.190490723 288.570373535 288.469787598 288.34967041 288.320373535 288.210021973 288.089904785 288.120178223 288.370178223 288.679748535 288.979553223 289.250061035 289.410217285 289.219787598 288.58013916 281.629943848 282.15045166 282.379943848 282.41998291 282.200256348 281.710021973 281.139709473 280.750061035 280.570373535 280.660217285 281.08013916 281.589904785 281.729553223 281.360412598 280.960021973 280.969787598 281.160217285 272.430084229 272.939849854 273.550201416 274.140045166 274.489654541 274.609771729 274.769927979 275.119537354 275.409576416 275.420318604 275.319732666 275.399810791 275.630279541 275.790435791 275.779693604 275.659576416 275.290435791 263.559692383 263.50012207 263.939575195 265.030395508 266.42980957 267.639770508 268.469848633 268.939575195 269.08996582 268.969848633 268.710083008 268.380004883 268.059692383 267.75012207 267.439575195 267.059692383 266.420043945 252.560073853 253.140151978 254.100112915 255.18019104 256.119628906 256.880371094 257.489746094 257.880371094 257.909667969 257.609863281 257.199707031 256.869628906 256.579589844 256.270019531 255.890151978 255.369644165 254.60987854 236.269927979 237.159576416 238.210357666 239.210357666 240.080474854 240.739654541 241.109771729 241.189849854 241.109771729 241.010162354 240.850006104 240.550201416 240.119537354 239.619537354 239.090240479 238.510162354 237.880279541 227.020141602 227.920043945 228.770141602 229.529907227 230.270141602 230.900024414 231.259887695 231.310180664 231.219848633 231.139770508 231.060180664 230.83996582 230.460083008 229.92980957 229.350219727 228.770141602 228.190063477 216.820007324 217.440124512 218.070007324 218.660095215 219.199890137 219.620056152 219.900085449 220.039978027 220.120056152 220.150085449 220.08001709 219.860046387 219.539978027 219.199890137 218.820007324 218.370056152 217.900085449 207.629806519 207.379806519 207.160079956 206.979904175 206.789962769 206.629806519 206.570236206 206.660079956 206.830001831 206.919845581 206.910079956 206.839767456 206.870040894 206.930099487 206.959884644 206.979904175 207.109786987 202.659683228 200.939956665 198.960464478 196.939956665 195.210464478 194.060073853 193.470230103 193.210464478 193.079605103 193.149917603 193.499526978 194.02003479 194.44972229 194.729995728 195.069839478 195.739761353 196.670425415 202.899642944 201.170150757 199.279525757 197.519760132 195.969955444 194.649642944 193.700424194 193.139877319 192.889877319 192.880111694 193.139877319 193.590072632 193.969955444 194.160385132 194.479721069 195.290267944 196.580307007 207.509841919 206.669998169 205.830154419 205.049880981 204.419998169 204.009841919 203.859939575 203.890213013 203.980056763 204.060134888 204.120193481 204.1900177 204.270095825 204.379959106 204.489822388 204.580154419 204.770095825 218.150054932 217.750152588 217.389801025 216.839996338 216.199859619 215.650054932 215.259918213 215.029937744 215.04019165 215.270172119 215.560211182 215.710113525 215.759918213 215.810211182 215.869781494 215.810211182 215.560211182 219.829803467 219.970428467 219.949920654 219.829803467 219.760467529 219.949920654 220.320037842 220.619842529 220.610076904 220.360076904 220.190155029 220.169647217 220.089569092 219.850311279 219.619842529 219.739959717 220.239959717 228.85043335 228.3699646 227.7996521 227.28012085 226.980316162 226.719573975 226.2996521 225.820159912 225.719573975 226.110198975 226.6199646 227.020355225 227.6199646 228.679534912 229.829925537 230.35043335 230.03012085 293.050933838 293.279449463 293.939605713 295.209136963 296.699371338 297.750152588 298.029449463 297.920074463 297.980621338 298.320465088 298.619293213 298.859527588 299.250152588 299.640777588 299.449371338 298.509918213 297.509918213 287.019042969 287.110839844 287.999511719 289.829589844 291.839355469 293.009277344 293.190917969 293.040527344 293.050292969 293.179199219 293.300292969 293.610839844 294.220214844 294.739746094 294.610839844 293.890136719 292.999511719 285.690490723 287.540100098 288.780334473 289.08013916 288.91998291 288.700256348 288.479553223 288.219787598 288.030334473 288.129943848 288.50982666 288.910217285 289.09967041 289.049865723 288.839904785 288.500061035 287.969787598 282.219787598 282.65045166 282.58013916 282.370178223 282.019592285 281.50982666 281.00982666 280.700256348 280.59967041 280.719787598 281.129943848 281.65045166 281.799865723 281.460021973 281.129943848 281.25982666 281.50982666 272.760162354 273.319732666 273.930084229 274.439849854 274.649810791 274.689849854 274.869537354 275.250396729 275.550201416 275.559967041 275.500396729 275.640045166 275.869537354 275.949615479 275.840240479 275.670318604 275.350006104 263.32043457 263.33996582 263.960083008 265.25012207 266.710083008 267.830200195 268.509887695 268.880004883 269.009887695 268.889770508 268.639770508 268.360473633 268.080200195 267.759887695 267.389770508 266.969848633 266.349731445 252.149917603 252.649917603 253.640151978 254.810073853 255.819839478 256.600097656 257.239746094 257.670410156 257.699707031 257.369628906 256.939941406 256.579589844 256.279785156 255.939956665 255.579605103 255.149917603 254.529800415 235.970123291 236.880279541 237.970123291 239.029693604 239.920318604 240.569732666 240.909576416 241.010162354 240.970123291 240.869537354 240.689849854 240.390045166 240.000396729 239.569732666 239.109771729 238.569732666 237.930084229 226.909790039 227.850219727 228.739868164 229.529907227 230.270141602 230.900024414 231.25012207 231.290161133 231.199829102 231.120239258 231.040161133 230.850219727 230.50012207 230.009887695 229.469848633 228.949829102 228.400024414 216.979919434 217.640075684 218.25994873 218.809997559 219.320007324 219.769958496 220.070007324 220.180114746 220.209899902 220.249938965 220.219909668 220.039978027 219.709899902 219.360046387 218.999938965 218.590026855 218.110046387 208.22013855 207.870040894 207.530197144 207.260177612 207.0599823 206.910079956 206.859786987 206.890060425 206.999923706 207.070236206 207.010177612 206.930099487 206.959884644 207.100021362 207.169845581 207.14982605 207.169845581 203.029800415 201.18019104 199.119644165 197.09034729 195.369644165 194.19972229 193.560073853 193.249526978 193.149917603 193.27003479 193.649917603 194.149917603 194.510269165 194.69972229 194.999526978 195.640151978 196.579605103 202.359603882 200.759994507 198.960189819 197.189682007 195.550033569 194.179916382 193.250228882 192.790267944 192.670150757 192.750228882 193.050033569 193.460189819 193.750228882 193.899642944 194.269760132 195.170150757 196.490463257 207.429763794 206.60017395 205.799880981 205.109939575 204.569900513 204.210037231 204.040115356 204.020095825 204.040115356 204.069900513 204.120193481 204.199783325 204.310134888 204.419998169 204.460037231 204.419998169 204.500076294 217.940093994 217.600250244 217.279937744 216.710113525 216.000152588 215.360015869 214.900054932 214.670074463 214.79019165 215.230133057 215.730133057 215.940093994 215.799957275 215.549957275 215.449859619 215.500152588 215.529937744 219.869842529 219.860076904 219.730194092 219.610076904 219.659881592 219.949920654 220.369842529 220.650115967 220.610076904 220.329803467 220.049530029 219.949920654 219.919647217 219.869842529 219.789764404 219.839569092 220.079803467 228.969573975 228.749847412 228.270355225 227.60043335 227.0496521 226.679534912 226.339691162 226.009613037 225.9402771 226.249847412 226.730316162 227.219573975 227.829925537 228.640472412 229.3699646 229.759613037 229.7996521 292.560699463 292.980621338 293.949371338 295.500152588 297.080230713 298.070465088 298.269683838 298.140777588 298.209136963 298.550933838 298.839996338 298.849761963 298.720855713 298.560699463 298.209136963 297.589996338 297.019683838 286.579589844 286.710449219 287.940917969 290.229980469 292.499511719 293.630371094 293.620605469 293.290527344 293.169433594 293.220214844 293.319824219 293.509277344 293.720214844 293.649902344 293.159667969 292.519042969 291.979980469 286.15045166 288.110412598 289.299865723 289.559631348 289.34967041 289.019592285 288.629943848 288.25982666 288.070373535 288.219787598 288.620178223 288.950256348 288.889709473 288.450256348 287.950256348 287.639709473 287.370178223 282.710021973 283.00982666 282.729553223 282.339904785 281.90045166 281.370178223 280.91998291 280.719787598 280.660217285 280.769592285 281.160217285 281.729553223 281.99029541 281.74029541 281.450256348 281.589904785 281.809631348 273.199615479 273.680084229 274.189849854 274.609771729 274.779693604 274.819732666 275.000396729 275.319732666 275.529693604 275.519927979 275.550201416 275.790435791 276.059967041 276.069732666 275.850006104 275.600006104 275.319732666 263.32043457 263.420043945 264.130004883 265.439575195 266.799926758 267.76965332 268.360473633 268.719848633 268.880004883 268.809692383 268.58996582 268.370239258 268.139770508 267.830200195 267.389770508 266.899536133 266.280395508 251.850112915 252.319839478 253.369644165 254.630386353 255.69972229 256.499511719 257.130371094 257.550292969 257.600097656 257.279785156 256.840332031 256.449707031 256.090332031 255.710464478 255.28956604 254.869644165 254.319839478 235.710357666 236.600006104 237.729888916 238.819732666 239.689849854 240.309967041 240.680084229 240.850006104 240.869537354 240.769927979 240.550201416 240.250396729 239.930084229 239.600006104 239.210357666 238.689849854 238.019927979 226.870239258 227.819946289 228.699829102 229.480102539 230.17980957 230.779907227 231.120239258 231.190063477 231.150024414 231.100219727 231.029907227 230.83996582 230.509887695 230.100219727 229.650024414 229.190063477 228.630004883 217.140075684 217.820007324 218.440124512 218.949890137 219.430114746 219.880065918 220.190124512 220.289978027 220.279968262 220.309997559 220.320007324 220.180114746 219.860046387 219.50994873 219.160095215 218.75994873 218.279968262 208.749923706 208.330001831 207.910079956 207.580001831 207.390060425 207.289962769 207.240158081 207.200119019 207.169845581 207.129806519 207.010177612 206.910079956 206.97013855 207.169845581 207.3099823 207.280197144 207.260177612 203.140151978 201.27003479 199.229995728 197.27003479 195.619644165 194.420425415 193.69972229 193.380386353 193.380386353 193.619644165 193.960464478 194.249526978 194.390151978 194.499526978 194.85987854 195.600112915 196.59034729 201.819564819 200.330307007 198.590072632 196.750228882 195.019760132 193.599838257 192.710189819 192.330307007 192.279525757 192.450424194 192.800033569 193.229721069 193.529525757 193.719955444 194.149642944 195.069564819 196.319564819 207.399978638 206.620193481 205.980056763 205.520095825 205.149978638 204.85017395 204.640213013 204.509841919 204.399978638 204.27986145 204.210037231 204.219802856 204.290115356 204.359939575 204.370193481 204.299880981 204.339920044 217.529937744 217.069976807 216.580230713 215.839996338 215.000152588 214.330230713 213.920074463 213.860015869 214.259918213 215.069976807 215.889801025 216.250152588 216.029937744 215.610015869 215.3800354 215.420074463 215.480133057 219.869842529 219.879608154 219.890350342 220.020233154 220.310272217 220.680389404 221.029998779 221.209686279 221.060272217 220.619842529 220.079803467 219.720428467 219.600311279 219.600311279 219.610076904 219.619842529 219.749725342 229.150238037 229.009613037 228.410003662 227.469573975 226.6199646 226.140472412 225.829925537 225.579925537 225.520355225 225.879730225 226.570159912 227.400238037 228.310394287 229.140472412 229.719573975 229.990081787 230.1199646 292.449371338 292.849761963 294.019683838 295.789215088 297.429840088 298.390777588 298.619293213 298.550933838 298.589996338 298.830230713 298.970855713 298.720855713 298.150543213 297.560699463 297.170074463 296.879058838 296.599761963 286.360839844 286.640136719 288.300292969 290.999511719 293.409667969 294.440917969 294.319824219 293.950683594 293.769042969 293.669433594 293.550292969 293.409667969 293.120605469 292.540527344 291.880371094 291.470214844 291.280761719 286.83013916 288.75982666 289.870178223 290.129943848 289.90045166 289.479553223 289.00982666 288.629943848 288.460021973 288.540100098 288.75982666 288.83013916 288.479553223 287.74029541 287.120178223 286.960021973 286.929748535 283.250061035 283.389709473 282.960021973 282.450256348 281.889709473 281.290100098 280.879943848 280.750061035 280.729553223 280.769592285 281.129943848 281.799865723 282.269592285 282.16998291 281.879943848 281.929748535 282.070373535 273.729888916 274.029693604 274.369537354 274.699615479 274.859771729 274.939849854 275.109771729 275.340240479 275.409576416 275.350006104 275.460357666 275.809967041 276.100006104 276.059967041 275.790435791 275.529693604 275.300201416 263.58996582 263.689575195 264.370239258 265.559692383 266.780395508 267.639770508 268.200317383 268.610473633 268.830200195 268.799926758 268.630004883 268.450317383 268.229614258 267.870239258 267.360473633 266.790161133 266.210083008 251.77003479 252.239761353 253.34034729 254.649917603 255.760269165 256.569824219 257.180175781 257.590332031 257.649902344 257.350097656 256.890136719 256.479980469 256.090332031 255.649917603 255.140151978 254.640151978 254.069839478 235.519927979 236.409576416 237.569732666 238.659576416 239.519927979 240.130279541 240.540435791 240.779693604 240.830474854 240.710357666 240.460357666 240.180084229 239.930084229 239.680084229 239.340240479 238.819732666 238.090240479 226.83996582 227.779907227 228.659790039 229.409790039 230.049926758 230.58996582 230.940063477 231.080200195 231.08996582 231.060180664 230.969848633 230.790161133 230.509887695 230.190063477 229.830200195 229.409790039 228.819946289 217.289978027 217.949890137 218.570007324 219.039978027 219.449890137 219.860046387 220.140075684 220.239929199 220.229919434 220.269958496 220.320007324 220.209899902 219.92010498 219.590026855 219.289978027 218.910095215 218.449890137 209.209884644 208.800216675 208.3099823 207.910079956 207.689865112 207.589767456 207.510177612 207.39982605 207.289962769 207.189865112 207.050216675 206.950119019 207.019943237 207.240158081 207.39982605 207.410079956 207.39982605 202.989761353 201.18019104 199.210464478 197.329605103 195.720230103 194.460464478 193.619644165 193.279800415 193.399917603 193.749526978 194.03956604 194.130386353 194.119644165 194.249526978 194.729995728 195.569839478 196.579605103 201.359603882 199.950424194 198.240463257 196.420150757 194.740463257 193.469955444 192.710189819 192.349838257 192.250228882 192.349838257 192.670150757 193.120346069 193.490463257 193.779525757 194.240463257 195.069564819 196.149642944 207.199783325 206.4400177 205.949783325 205.660232544 205.390213013 205.069900513 204.819900513 204.649978638 204.509841919 204.330154419 204.179763794 204.140213013 204.179763794 204.210037231 204.1900177 204.149978638 204.210037231 217.259918213 216.619781494 215.929840088 215.080230713 214.299957275 213.810211182 213.6300354 213.779937744 214.360015869 215.310211182 216.199859619 216.529937744 216.239898682 215.730133057 215.480133057 215.480133057 215.460113525 219.879608154 220.140350342 220.470428467 220.860076904 221.220428467 221.430389404 221.499725342 221.489959717 221.299530029 220.820037842 220.180389404 219.669647217 219.470428467 219.499725342 219.529998779 219.480194092 219.529998779 229.20980835 228.759613037 227.910003662 226.860198975 226.079925537 225.730316162 225.509613037 225.1902771 225.009613037 225.329925537 226.140472412 227.20980835 228.320159912 229.289886475 229.950042725 230.28012085 230.4402771 292.369293213 292.910308838 294.390777588 296.310699463 297.900543213 298.750152588 299.009918213 299.000152588 298.990386963 299.060699463 299.080230713 298.759918213 298.060699463 297.369293213 297.050933838 296.959136963 296.709136963 286.220214844 287.089355469 289.349121094 292.280761719 294.440917969 295.130371094 294.870605469 294.579589844 294.479980469 294.349121094 294.079589844 293.659667969 292.989746094 292.099121094 291.419433594 291.269042969 291.269042969 287.769592285 289.50982666 290.540100098 290.820373535 290.620178223 290.08013916 289.519592285 289.15045166 289.040100098 289.040100098 289.070373535 288.929748535 288.389709473 287.500061035 286.839904785 286.75982666 286.84967041 283.84967041 283.809631348 283.24029541 282.58013916 281.879943848 281.190490723 280.809631348 280.780334473 280.790100098 280.74029541 281.019592285 281.780334473 282.460021973 282.530334473 282.250061035 282.179748535 282.269592285 274.340240479 274.470123291 274.670318604 274.899810791 275.040435791 275.109771729 275.239654541 275.350006104 275.300201416 275.220123291 275.380279541 275.779693604 276.050201416 275.960357666 275.680084229 275.460357666 275.290435791 263.979614258 264.080200195 264.67980957 265.729614258 266.790161133 267.58996582 268.149536133 268.580200195 268.809692383 268.809692383 268.689575195 268.530395508 268.26965332 267.809692383 267.210083008 266.610473633 266.059692383 251.880386353 252.409683228 253.499526978 254.78956604 255.869644165 256.689941406 257.279785156 257.670410156 257.749511719 257.479980469 257.039550781 256.609863281 256.220214844 255.739761353 255.140151978 254.499526978 253.84034729 235.489654541 236.399810791 237.569732666 238.670318604 239.529693604 240.130279541 240.550201416 240.809967041 240.840240479 240.680084229 240.420318604 240.180084229 240.010162354 239.809967041 239.470123291 238.920318604 238.130279541 226.83996582 227.759887695 228.659790039 229.389770508 229.969848633 230.460083008 230.819946289 231.009887695 231.060180664 231.009887695 230.889770508 230.719848633 230.489868164 230.25012207 229.969848633 229.580200195 228.949829102 217.440124512 218.08001709 218.680114746 219.130065918 219.459899902 219.789978027 220.029968262 220.140075684 220.140075684 220.190124512 220.249938965 220.160095215 219.910095215 219.630065918 219.370056152 219.049987793 218.610046387 209.589767456 209.200119019 208.689865112 208.200119019 207.859786987 207.680099487 207.550216675 207.430099487 207.339767456 207.280197144 207.200119019 207.140060425 207.169845581 207.320236206 207.47013855 207.530197144 207.580001831 202.649917603 200.899917603 198.94972229 197.09034729 195.489761353 194.159683228 193.19972229 192.77003479 192.880386353 193.279800415 193.619644165 193.749526978 193.84034729 194.140151978 194.729995728 195.560073853 196.510269165 200.910385132 199.519760132 197.870346069 196.179916382 194.790267944 193.870346069 193.330307007 192.990463257 192.750228882 192.689682007 192.880111694 193.229721069 193.609603882 193.990463257 194.469955444 195.170150757 196.059799194 206.750076294 205.949783325 205.469802856 205.160232544 204.750076294 204.290115356 204.000076294 203.949783325 203.969802856 203.929763794 203.899978638 203.929763794 204.000076294 204.009841919 203.969802856 203.949783325 204.02986145 217.440093994 216.779937744 216.110015869 215.440093994 215.009918213 214.900054932 214.980133057 215.179840088 215.600250244 216.230133057 216.730133057 216.730133057 216.250152588 215.739898682 215.54019165 215.580230713 215.520172119 219.869842529 220.329803467 220.810272217 221.159881592 221.220428467 220.980194092 220.650115967 220.480194092 220.400115967 220.209686279 219.860076904 219.579803467 219.549530029 219.669647217 219.709686279 219.589569092 219.499725342 229.10043335 228.28012085 227.360198975 226.6199646 226.3699646 226.480316162 226.4402771 226.03012085 225.629730225 225.700042725 226.240081787 226.969573975 227.810394287 228.70980835 229.560394287 230.169769287 230.509613037 291.939605713 293.209136963 295.279449463 297.259918213 298.470855713 298.900543213 298.949371338 298.900543213 298.869293213 298.970855713 299.170074463 299.070465088 298.509918213 297.830230713 297.490386963 297.369293213 296.980621338 286.290527344 288.179199219 291.060058594 293.780761719 295.190917969 295.169433594 294.640136719 294.399902344 294.519042969 294.659667969 294.640136719 294.319824219 293.489746094 292.329589844 291.550292969 291.440917969 291.450683594 288.750061035 290.15045166 291.019592285 291.320373535 291.049865723 290.339904785 289.620178223 289.25982666 289.25982666 289.410217285 289.540100098 289.469787598 288.910217285 287.910217285 287.089904785 286.90045166 286.91998291 284.190490723 283.969787598 283.269592285 282.49029541 281.679748535 280.969787598 280.66998291 280.769592285 280.809631348 280.66998291 280.83013916 281.570373535 282.379943848 282.610412598 282.360412598 282.25982666 282.34967041 274.850006104 274.949615479 275.100006104 275.260162354 275.309967041 275.300201416 275.340240479 275.359771729 275.260162354 275.199615479 275.399810791 275.779693604 276.000396729 275.830474854 275.540435791 275.369537354 275.250396729 264.41027832 264.559692383 265.110473633 266.009887695 266.889770508 267.57043457 268.080200195 268.479614258 268.719848633 268.759887695 268.67980957 268.540161133 268.219848633 267.66027832 266.969848633 266.360473633 265.860473633 252.10987854 252.720230103 253.760269165 254.920425415 255.93019104 256.739746094 257.329589844 257.689941406 257.779785156 257.569824219 257.189941406 256.770019531 256.369628906 255.869644165 255.18019104 254.390151978 253.619644165 235.619537354 236.569732666 237.750396729 238.840240479 239.659576416 240.239654541 240.640045166 240.840240479 240.840240479 240.659576416 240.439849854 240.250396729 240.109771729 239.920318604 239.580474854 238.989654541 238.130279541 226.889770508 227.799926758 228.719848633 229.460083008 230.009887695 230.460083008 230.819946289 231.029907227 231.049926758 230.92980957 230.779907227 230.630004883 230.469848633 230.290161133 230.060180664 229.670043945 229.009887695 217.620056152 218.229919434 218.840026855 219.279968262 219.570007324 219.809997559 220.029968262 220.150085449 220.17010498 220.190124512 220.180114746 220.08001709 219.860046387 219.640075684 219.430114746 219.140075684 218.739929199 209.800216675 209.430099487 208.910079956 208.370040894 207.939865112 207.64982605 207.47013855 207.379806519 207.370040894 207.410079956 207.430099487 207.39982605 207.370040894 207.419845581 207.550216675 207.669845581 207.789962769 202.159683228 200.43019104 198.470230103 196.600112915 195.010269165 193.720230103 192.710464478 192.149917603 192.09034729 192.420425415 192.850112915 193.239761353 193.659683228 194.220230103 194.880386353 195.600112915 196.399917603 200.399642944 198.969955444 197.359603882 195.859603882 194.819564819 194.240463257 193.910385132 193.590072632 193.300033569 193.130111694 193.160385132 193.370346069 193.679916382 194.069564819 194.580307007 195.179916382 195.939682007 206.319900513 205.469802856 204.890213013 204.390213013 203.739822388 203.109939575 202.839920044 202.960037231 203.219802856 203.399978638 203.560134888 203.770095825 203.929763794 203.960037231 203.870193481 203.77986145 203.810134888 217.960113525 217.420074463 216.96987915 216.679840088 216.690093994 216.940093994 217.1300354 217.179840088 217.210113525 217.29019165 217.250152588 216.850250244 216.210113525 215.690093994 215.549957275 215.659820557 215.659820557 219.699920654 220.089569092 220.339569092 220.329803467 219.970428467 219.350311279 218.779998779 218.560272217 218.690155029 218.879608154 218.999725342 219.150115967 219.470428467 219.810272217 219.909881592 219.730194092 219.489959717 228.9402771 228.150238037 227.60043335 227.450042725 227.78012085 228.230316162 228.28012085 227.85043335 227.400238037 227.320159912 227.419769287 227.450042725 227.539886475 228.060394287 228.969573975 229.900238037 230.490081787 291.759918213 294.129058838 296.779449463 298.490386963 298.900543213 298.570465088 298.170074463 297.929840088 297.939605713 298.390777588 299.129058838 299.519683838 299.089996338 298.240386963 297.650543213 297.349761963 296.820465088 287.310058594 290.069824219 293.060058594 294.999511719 295.310058594 294.499511719 293.640136719 293.360839844 293.659667969 294.280761719 294.940917969 295.079589844 294.220214844 292.729980469 291.610839844 291.319824219 291.200683594 289.50982666 290.530334473 291.190490723 291.34967041 290.879943848 289.929748535 289.019592285 288.620178223 288.83013916 289.360412598 289.929748535 290.16998291 289.660217285 288.460021973 287.33013916 286.860412598 286.750061035 283.969787598 283.610412598 282.91998291 282.16998291 281.379943848 280.719787598 280.530334473 280.719787598 280.75982666 280.530334473 280.549865723 281.200256348 282.040100098 282.379943848 282.24029541 282.16998291 282.290100098 275.109771729 275.229888916 275.409576416 275.540435791 275.519927979 275.380279541 275.319732666 275.290435791 275.210357666 275.189849854 275.420318604 275.769927979 275.890045166 275.680084229 275.380279541 275.239654541 275.159576416 264.849731445 265.149536133 265.700317383 266.41027832 267.030395508 267.50012207 267.899536133 268.26965332 268.51965332 268.620239258 268.610473633 268.469848633 268.099731445 267.450317383 266.719848633 266.139770508 265.66027832 252.399917603 253.079605103 254.029800415 254.999526978 255.909683228 256.720214844 257.300292969 257.630371094 257.739746094 257.630371094 257.319824219 256.930175781 256.520019531 255.970230103 255.19972229 254.27003479 253.399917603 235.909576416 236.880279541 238.019927979 239.029693604 239.800201416 240.340240479 240.699615479 240.850006104 240.800201416 240.649810791 240.470123291 240.340240479 240.210357666 239.989654541 239.619537354 239.000396729 238.090240479 227.080200195 227.969848633 228.889770508 229.620239258 230.139770508 230.560180664 230.909790039 231.08996582 231.049926758 230.859985352 230.710083008 230.609985352 230.50012207 230.330200195 230.100219727 229.690063477 229.00012207 217.92010498 218.50994873 219.090026855 219.50994873 219.789978027 220.019958496 220.249938965 220.370056152 220.360046387 220.279968262 220.190124512 220.049987793 219.870056152 219.660095215 219.469909668 219.199890137 218.820007324 209.820236206 209.419845581 208.930099487 208.410079956 207.97013855 207.629806519 207.419845581 207.350021362 207.410079956 207.530197144 207.609786987 207.589767456 207.519943237 207.510177612 207.640060425 207.830001831 208.019943237 201.53956604 199.829605103 197.880386353 196.02003479 194.52003479 193.380386353 192.479995728 191.869644165 191.630386353 191.78956604 192.229995728 192.84034729 193.569839478 194.34034729 195.050308228 195.68019104 196.390151978 199.910385132 198.359603882 196.729721069 195.370346069 194.529525757 194.099838257 193.809799194 193.519760132 193.300033569 193.210189819 193.200424194 193.269760132 193.469955444 193.880111694 194.420150757 195.029525757 195.750228882 206.199783325 205.370193481 204.750076294 204.109939575 203.319900513 202.629959106 202.410232544 202.629959106 202.969802856 203.230056763 203.489822388 203.819900513 204.069900513 204.10017395 203.9400177 203.759841919 203.6900177 218.279937744 217.850250244 217.589996338 217.589996338 217.8800354 218.250152588 218.409820557 218.270172119 218.009918213 217.759918213 217.429840088 216.909820557 216.259918213 215.759918213 215.610015869 215.71987915 215.79019165 219.379608154 219.369842529 219.220428467 218.890350342 218.430389404 217.900115967 217.510467529 217.419647217 217.600311279 217.869842529 218.159881592 218.560272217 219.119842529 219.629608154 219.820037842 219.680389404 219.379608154 228.929534912 228.70980835 228.770355225 228.969573975 229.28012085 229.45980835 229.259613037 228.839691162 228.679534912 228.910003662 228.990081787 228.53012085 227.980316162 228.039886475 228.860198975 229.890472412 230.570159912 293.099761963 296.129058838 298.689605713 299.550933838 298.929840088 297.879058838 297.080230713 296.619293213 296.689605713 297.589996338 298.980621338 299.800933838 299.349761963 298.170074463 297.259918213 296.839996338 296.330230713 289.899902344 292.700683594 294.950683594 295.630371094 294.899902344 293.679199219 292.739746094 292.339355469 292.599121094 293.579589844 294.890136719 295.499511719 294.630371094 292.780761719 291.290527344 290.800292969 290.610839844 290.250061035 290.91998291 291.25982666 291.09967041 290.33013916 289.190490723 288.190490723 287.820373535 288.16998291 289.019592285 289.979553223 290.460021973 289.910217285 288.469787598 287.049865723 286.379943848 286.200256348 283.41998291 283.049865723 282.49029541 281.889709473 281.24029541 280.690490723 280.519592285 280.660217285 280.629943848 280.34967041 280.280334473 280.820373535 281.629943848 282.070373535 282.070373535 282.049865723 282.16998291 275.210357666 275.260162354 275.420318604 275.559967041 275.489654541 275.269927979 275.140045166 275.090240479 275.050201416 275.090240479 275.340240479 275.630279541 275.689849854 275.449615479 275.189849854 275.069732666 274.970123291 265.259887695 265.740356445 266.299926758 266.790161133 267.139770508 267.41027832 267.740356445 268.099731445 268.370239258 268.479614258 268.50012207 268.349731445 267.920043945 267.240356445 266.509887695 265.939575195 265.490356445 252.729995728 253.460464478 254.260269165 255.03956604 255.880386353 256.699707031 257.300292969 257.600097656 257.689941406 257.649902344 257.449707031 257.079589844 256.619628906 256.020019531 255.159683228 254.130386353 253.170425415 236.390045166 237.350006104 238.369537354 239.229888916 239.909576416 240.460357666 240.800201416 240.899810791 240.840240479 240.710357666 240.580474854 240.449615479 240.300201416 240.040435791 239.619537354 238.960357666 237.979888916 227.469848633 228.319946289 229.190063477 229.870239258 230.359985352 230.75012207 231.049926758 231.17980957 231.080200195 230.850219727 230.710083008 230.650024414 230.580200195 230.409790039 230.109985352 229.67980957 228.960083008 218.340026855 218.890075684 219.410095215 219.820007324 220.100036621 220.33001709 220.549987793 220.660095215 220.590026855 220.410095215 220.219909668 220.070007324 219.910095215 219.729919434 219.519958496 219.25994873 218.910095215 209.64982605 209.209884644 208.749923706 208.339767456 207.979904175 207.64982605 207.419845581 207.350021362 207.419845581 207.5599823 207.660079956 207.660079956 207.600021362 207.600021362 207.740158081 207.990158081 208.240158081 200.77003479 199.10987854 197.260269165 195.499526978 194.100112915 193.140151978 192.470230103 191.970230103 191.68019104 191.68019104 192.02003479 192.619644165 193.409683228 194.260269165 195.060073853 195.760269165 196.499526978 199.450424194 197.769760132 196.149642944 194.899642944 194.099838257 193.620346069 193.219955444 192.929916382 192.840072632 192.899642944 192.960189819 192.979721069 193.149642944 193.580307007 194.179916382 194.830307007 195.599838257 206.370193481 205.629959106 205.020095825 204.390213013 203.660232544 203.060134888 202.879959106 203.049880981 203.290115356 203.4400177 203.640213013 203.969802856 204.239822388 204.259841919 204.080154419 203.859939575 203.719802856 218.119781494 217.699859619 217.46987915 217.520172119 217.819976807 218.139801025 218.259918213 218.110015869 217.860015869 217.610015869 217.319976807 216.909820557 216.409820557 215.960113525 215.730133057 215.71987915 215.79019165 218.999725342 218.589569092 218.159881592 217.850311279 217.709686279 217.690155029 217.749725342 217.839569092 217.879608154 217.879608154 217.940155029 218.230194092 218.779998779 219.329803467 219.579803467 219.520233154 219.260467529 229.270355225 229.730316162 230.150238037 230.150238037 229.770355225 229.140472412 228.400238037 227.929534912 228.200042725 229.0496521 229.60043335 229.28012085 228.6199646 228.520355225 229.1902771 230.10043335 230.629730225 296.390777588 298.920074463 300.359527588 299.949371338 298.519683838 297.269683838 296.509918213 296.009918213 296.050933838 297.119293213 298.810699463 299.769683838 299.189605713 297.750152588 296.689605713 296.330230713 295.990386963 293.569824219 295.440917969 296.249511719 295.610839844 294.339355469 293.319824219 292.649902344 292.179199219 292.200683594 293.159667969 294.659667969 295.380371094 294.399902344 292.370605469 290.780761719 290.290527344 290.169433594 291.290100098 291.66998291 291.59967041 290.940490723 289.879943848 288.74029541 287.910217285 287.610412598 287.90045166 288.700256348 289.639709473 290.040100098 289.320373535 287.750061035 286.320373535 285.700256348 285.589904785 283.16998291 282.809631348 282.40045166 281.960021973 281.410217285 280.910217285 280.66998291 280.65045166 280.530334473 280.24029541 280.16998291 280.620178223 281.360412598 281.870178223 282.000061035 282.019592285 282.030334473 275.430084229 275.269927979 275.300201416 275.430084229 275.369537354 275.140045166 274.949615479 274.869537354 274.880279541 274.979888916 275.210357666 275.420318604 275.409576416 275.180084229 274.989654541 274.920318604 274.779693604 265.58996582 266.200317383 266.740356445 267.059692383 267.210083008 267.399536133 267.719848633 268.080200195 268.309692383 268.370239258 268.33996582 268.149536133 267.689575195 266.969848633 266.25012207 265.729614258 265.32043457 253.130386353 253.869644165 254.529800415 255.149917603 255.920425415 256.749511719 257.329589844 257.590332031 257.670410156 257.680175781 257.529785156 257.180175781 256.680175781 256.010253906 255.069839478 253.960464478 252.960464478 237.080474854 237.979888916 238.800201416 239.489654541 240.100006104 240.640045166 241.010162354 241.130279541 241.059967041 240.909576416 240.769927979 240.619537354 240.439849854 240.130279541 239.640045166 238.859771729 237.809967041 228.109985352 228.870239258 229.609985352 230.210083008 230.650024414 231.00012207 231.25012207 231.330200195 231.199829102 230.969848633 230.810180664 230.770141602 230.710083008 230.509887695 230.170043945 229.659790039 228.889770508 218.850036621 219.33001709 219.769958496 220.130065918 220.380065918 220.590026855 220.75994873 220.840026855 220.729919434 220.489929199 220.25994873 220.100036621 219.999938965 219.840026855 219.640075684 219.390075684 219.059997559 209.370040894 208.870040894 208.479904175 208.200119019 207.910079956 207.609786987 207.359786987 207.260177612 207.320236206 207.450119019 207.580001831 207.64982605 207.660079956 207.700119019 207.850021362 208.140060425 208.419845581 199.880386353 198.34034729 196.68019104 195.050308228 193.689956665 192.819839478 192.350112915 192.069839478 191.880386353 191.829605103 192.02003479 192.489761353 193.18019104 194.010269165 194.909683228 195.810073853 196.729995728 198.969955444 197.250228882 195.740463257 194.609603882 193.859603882 193.279525757 192.779525757 192.490463257 192.490463257 192.620346069 192.710189819 192.759994507 192.969955444 193.469955444 194.109603882 194.779525757 195.580307007 206.489822388 205.799880981 205.230056763 204.679763794 204.10017395 203.640213013 203.460037231 203.500076294 203.560134888 203.60017395 203.750076294 204.02986145 204.259841919 204.270095825 204.120193481 203.9400177 203.819900513 217.679840088 217.250152588 216.989898682 216.96987915 217.159820557 217.420074463 217.610015869 217.650054932 217.589996338 217.449859619 217.199859619 216.8800354 216.500152588 216.100250244 215.79019165 215.659820557 215.670074463 218.659881592 218.089569092 217.730194092 217.669647217 217.900115967 218.320037842 218.680389404 218.839569092 218.720428467 218.430389404 218.190155029 218.299530029 218.730194092 219.230194092 219.499725342 219.470428467 219.260467529 230.129730225 230.759613037 230.9402771 230.329925537 229.230316162 227.999847412 226.879730225 226.2996521 226.759613037 228.009613037 229.03012085 229.140472412 228.759613037 228.770355225 229.390472412 230.129730225 230.499847412 300.179840088 301.289215088 301.089996338 299.509918213 297.859527588 297.080230713 296.800933838 296.429840088 296.339996338 297.179840088 298.650543213 299.379058838 298.689605713 297.289215088 296.339996338 296.109527588 295.900543213 296.729980469 297.290527344 296.700683594 295.200683594 293.929199219 293.440917969 293.210449219 292.749511719 292.509277344 293.179199219 294.360839844 294.769042969 293.640136719 291.720214844 290.349121094 290.019042969 289.999511719 292.549865723 292.59967041 292.030334473 290.870178223 289.65045166 288.769592285 288.290100098 288.110412598 288.16998291 288.58013916 289.110412598 289.15045166 288.25982666 286.790100098 285.639709473 285.25982666 285.229553223 283.429748535 283.08013916 282.700256348 282.250061035 281.710021973 281.200256348 280.879943848 280.729553223 280.559631348 280.34967041 280.33013916 280.700256348 281.320373535 281.820373535 282.019592285 282.00982666 281.860412598 275.840240479 275.489654541 275.369537354 275.449615479 275.399810791 275.140045166 274.899810791 274.800201416 274.819732666 274.930084229 275.119537354 275.229888916 275.130279541 274.930084229 274.819732666 274.800201416 274.609771729 265.849731445 266.479614258 266.950317383 267.17980957 267.259887695 267.460083008 267.82043457 268.120239258 268.229614258 268.170043945 268.080200195 267.870239258 267.380004883 266.630004883 265.91027832 265.420043945 265.07043457 253.619644165 254.350112915 254.899917603 255.380386353 256.050292969 256.810058594 257.340332031 257.550292969 257.619628906 257.670410156 257.550292969 257.210449219 256.680175781 255.94972229 254.93019104 253.749526978 252.739761353 237.960357666 238.720123291 239.340240479 239.819732666 240.340240479 240.899810791 241.309967041 241.439849854 241.359771729 241.199615479 241.019927979 240.840240479 240.640045166 240.290435791 239.659576416 238.720123291 237.559967041 228.92980957 229.560180664 230.139770508 230.630004883 231.029907227 231.310180664 231.50012207 231.540161133 231.409790039 231.17980957 230.989868164 230.900024414 230.83996582 230.659790039 230.279907227 229.659790039 228.799926758 219.390075684 219.769958496 220.120056152 220.410095215 220.600036621 220.719909668 220.820007324 220.870056152 220.779968262 220.539978027 220.309997559 220.150085449 220.059997559 219.949890137 219.789978027 219.559997559 219.249938965 209.039962769 208.539962769 208.189865112 207.979904175 207.760177612 207.459884644 207.180099487 207.0599823 207.120040894 207.260177612 207.430099487 207.580001831 207.64982605 207.740158081 207.950119019 208.269943237 208.600021362 198.93019104 197.52003479 196.100112915 194.60987854 193.27003479 192.390151978 192.010269165 191.920425415 191.84034729 191.810073853 191.94972229 192.35987854 192.989761353 193.800308228 194.810073853 195.909683228 196.999526978 198.450424194 196.819564819 195.500228882 194.529525757 193.840072632 193.259994507 192.790267944 192.559799194 192.559799194 192.630111694 192.630111694 192.700424194 193.019760132 193.599838257 194.250228882 194.899642944 195.710189819 206.379959106 205.640213013 205.040115356 204.580154419 204.169998169 203.810134888 203.580154419 203.500076294 203.480056763 203.520095825 203.699783325 203.980056763 204.179763794 204.1900177 204.069900513 203.960037231 203.890213013 217.299957275 216.96987915 216.759918213 216.699859619 216.799957275 217.04019165 217.350250244 217.6300354 217.759918213 217.639801025 217.299957275 216.8800354 216.46987915 216.100250244 215.779937744 215.600250244 215.569976807 218.419647217 217.989959717 217.879608154 218.039764404 218.379608154 218.760467529 219.049530029 219.140350342 218.959686279 218.610076904 218.360076904 218.440155029 218.860076904 219.360076904 219.650115967 219.619842529 219.369842529 231.310394287 231.469573975 230.929534912 229.719573975 228.450042725 227.360198975 226.390472412 225.789886475 226.10043335 227.240081787 228.310394287 228.610198975 228.450042725 228.579925537 229.1902771 229.839691162 230.179534912 302.339996338 302.070465088 300.679840088 298.640777588 297.300933838 297.150543213 297.369293213 297.179840088 296.959136963 297.420074463 298.339996338 298.679840088 297.990386963 296.900543213 296.209136963 295.970855713 295.670074463 298.040527344 297.720214844 296.450683594 294.769042969 293.780761719 293.659667969 293.630371094 293.229980469 292.970214844 293.399902344 294.069824219 293.950683594 292.720214844 291.140136719 290.149902344 289.880371094 289.769042969 293.370178223 293.030334473 292.00982666 290.58013916 289.40045166 288.90045166 288.809631348 288.729553223 288.58013916 288.58013916 288.639709473 288.320373535 287.34967041 286.120178223 285.33013916 285.15045166 285.070373535 283.769592285 283.370178223 282.879943848 282.33013916 281.790100098 281.34967041 281.08013916 280.90045166 280.750061035 280.629943848 280.679748535 280.950256348 281.410217285 281.860412598 282.089904785 282.000061035 281.65045166 276.220123291 275.819732666 275.640045166 275.670318604 275.550201416 275.239654541 274.949615479 274.819732666 274.830474854 274.930084229 275.059967041 275.080474854 274.920318604 274.720123291 274.670318604 274.689849854 274.460357666 266.139770508 266.719848633 267.099731445 267.25012207 267.32043457 267.530395508 267.849731445 268.07043457 268.049926758 267.920043945 267.790161133 267.599731445 267.110473633 266.32043457 265.559692383 265.07043457 264.75012207 254.140151978 254.869644165 255.369644165 255.760269165 256.270019531 256.829589844 257.220214844 257.390136719 257.489746094 257.590332031 257.520019531 257.199707031 256.630371094 255.829605103 254.720230103 253.499526978 252.489761353 238.850006104 239.479888916 239.880279541 240.180084229 240.609771729 241.140045166 241.540435791 241.670318604 241.600006104 241.409576416 241.220123291 241.050201416 240.850006104 240.439849854 239.659576416 238.510162354 237.250396729 229.830200195 230.310180664 230.719848633 231.08996582 231.409790039 231.650024414 231.770141602 231.790161133 231.670043945 231.420043945 231.159790039 230.989868164 230.92980957 230.799926758 230.409790039 229.67980957 228.67980957 219.900085449 220.190124512 220.449890137 220.67010498 220.769958496 220.789978027 220.820007324 220.870056152 220.820007324 220.650085449 220.400085449 220.199890137 220.08001709 220.019958496 219.940124512 219.75994873 219.42010498 208.709884644 208.240158081 207.89982605 207.709884644 207.510177612 207.209884644 206.950119019 206.850021362 206.919845581 207.080001831 207.280197144 207.450119019 207.589767456 207.72013855 207.999923706 208.39982605 208.8099823 197.94972229 196.659683228 195.44972229 194.140151978 192.890151978 192.050308228 191.739761353 191.69972229 191.60987854 191.52003479 191.689956665 192.189956665 192.93019104 193.78956604 194.84034729 196.060073853 197.27003479 198.019760132 196.559799194 195.410385132 194.540267944 193.870346069 193.340072632 192.990463257 192.849838257 192.830307007 192.759994507 192.649642944 192.729721069 193.149642944 193.779525757 194.420150757 195.059799194 195.910385132 206.129959106 205.319900513 204.719802856 204.35017395 204.060134888 203.739822388 203.469802856 203.310134888 203.27986145 203.379959106 203.649978638 203.969802856 204.169998169 204.1900177 204.10017395 204.009841919 203.960037231 217.100250244 216.929840088 216.850250244 216.819976807 216.860015869 217.04019165 217.400054932 217.819976807 218.069976807 217.96987915 217.520172119 216.960113525 216.460113525 216.080230713 215.819976807 215.659820557 215.600250244 218.449920654 218.230194092 218.329803467 218.539764404 218.720428467 218.810272217 218.829803467 218.749725342 218.560272217 218.329803467 218.230194092 218.419647217 218.909881592 219.459686279 219.799530029 219.799530029 219.489959717 232.160003662 231.629730225 230.360198975 228.879730225 227.919769287 227.429534912 226.929534912 226.490081787 226.640472412 227.490081787 228.289886475 228.450042725 228.259613037 228.3699646 228.900238037 229.499847412 229.879730225 302.060699463 301.269683838 299.730621338 298.009918213 297.140777588 297.259918213 297.550933838 297.420074463 297.199371338 297.420074463 297.849761963 297.849761963 297.289215088 296.640777588 296.179840088 295.750152588 295.170074463 297.710449219 297.169433594 295.979980469 294.649902344 293.890136719 293.739746094 293.569824219 293.229980469 293.159667969 293.550292969 293.759277344 293.169433594 291.979980469 290.849121094 290.149902344 289.739746094 289.329589844 293.229553223 292.589904785 291.40045166 290.019592285 289.110412598 288.90045166 289.00982666 288.960021973 288.729553223 288.570373535 288.379943848 287.860412598 286.879943848 285.870178223 285.269592285 285.08013916 284.820373535 283.620178223 283.139709473 282.549865723 282.000061035 281.59967041 281.379943848 281.269592285 281.139709473 281.00982666 280.950256348 281.030334473 281.219787598 281.549865723 281.969787598 282.219787598 282.030334473 281.41998291 276.290435791 276.010162354 275.890045166 275.850006104 275.630279541 275.250396729 274.970123291 274.850006104 274.850006104 274.899810791 274.949615479 274.899810791 274.710357666 274.519927979 274.510162354 274.550201416 274.290435791 266.559692383 267.080200195 267.349731445 267.399536133 267.389770508 267.51965332 267.759887695 267.920043945 267.870239258 267.729614258 267.58996582 267.380004883 266.889770508 266.080200195 265.26965332 264.719848633 264.389770508 254.649917603 255.380386353 255.85987854 256.170410156 256.489746094 256.819824219 257.020019531 257.149902344 257.300292969 257.470214844 257.460449219 257.159667969 256.569824219 255.659683228 254.470230103 253.220230103 252.239761353 239.670318604 240.170318604 240.390045166 240.529693604 240.850006104 241.290435791 241.619537354 241.720123291 241.640045166 241.500396729 241.330474854 241.170318604 240.970123291 240.500396729 239.550201416 238.229888916 236.869537354 230.690063477 231.049926758 231.290161133 231.540161133 231.770141602 231.92980957 232.009887695 232.00012207 231.900024414 231.630004883 231.299926758 231.069946289 231.00012207 230.900024414 230.469848633 229.609985352 228.480102539 220.42010498 220.600036621 220.75994873 220.890075684 220.92010498 220.870056152 220.850036621 220.890075684 220.890075684 220.769958496 220.529968262 220.279968262 220.120056152 220.08001709 220.08001709 219.930114746 219.549987793 208.410079956 207.950119019 207.609786987 207.39982605 207.209884644 206.97013855 206.769943237 206.72013855 206.820236206 206.959884644 207.129806519 207.3099823 207.459884644 207.64982605 208.030197144 208.570236206 209.120040894 196.989761353 195.779800415 194.749526978 193.659683228 192.60987854 191.960464478 191.77003479 191.720230103 191.510269165 191.279800415 191.439956665 192.079605103 192.970230103 193.93019104 194.989761353 196.220230103 197.479995728 197.830307007 196.519760132 195.469955444 194.609603882 193.889877319 193.389877319 193.120346069 193.029525757 192.960189819 192.800033569 192.679916382 192.809799194 193.279525757 193.929916382 194.550033569 195.219955444 196.139877319 205.960037231 205.149978638 204.589920044 204.299880981 204.069900513 203.770095825 203.469802856 203.290115356 203.250076294 203.379959106 203.660232544 204.009841919 204.270095825 204.330154419 204.259841919 204.149978638 204.069900513 216.96987915 216.900054932 216.929840088 216.960113525 216.980133057 217.069976807 217.360015869 217.770172119 218.089996338 218.089996338 217.699859619 217.110015869 216.549957275 216.150054932 215.920074463 215.810211182 215.730133057 218.850311279 218.709686279 218.789764404 218.879608154 218.919647217 218.879608154 218.760467529 218.560272217 218.299530029 218.089569092 218.070037842 218.339569092 218.850311279 219.430389404 219.839569092 219.879608154 219.560272217 232.0496521 231.200042725 229.679534912 228.28012085 227.6199646 227.469573975 227.249847412 227.009613037 227.28012085 228.079925537 228.700042725 228.669769287 228.35043335 228.3699646 228.820159912 229.3699646 229.770355225 300.529449463 299.949371338 298.970855713 297.939605713 297.379058838 297.320465088 297.320465088 297.140777588 297.050933838 297.230621338 297.369293213 297.170074463 296.800933838 296.539215088 296.259918213 295.609527588 294.720855713 296.940917969 296.489746094 295.679199219 294.759277344 294.120605469 293.720214844 293.290527344 292.979980469 293.159667969 293.530761719 293.390136719 292.509277344 291.470214844 290.800292969 290.280761719 289.620605469 288.880371094 292.389709473 291.66998291 290.65045166 289.639709473 289.040100098 288.91998291 288.929748535 288.809631348 288.610412598 288.479553223 288.250061035 287.639709473 286.679748535 285.780334473 285.210021973 284.84967041 284.370178223 282.960021973 282.479553223 281.929748535 281.530334473 281.40045166 281.469787598 281.530334473 281.389709473 281.210021973 281.179748535 281.280334473 281.440490723 281.74029541 282.16998291 282.410217285 282.089904785 281.229553223 276.050201416 275.989654541 275.970123291 275.830474854 275.489654541 275.119537354 274.930084229 274.890045166 274.869537354 274.819732666 274.790435791 274.720123291 274.519927979 274.350006104 274.340240479 274.359771729 274.069732666 267.040161133 267.479614258 267.649536133 267.559692383 267.439575195 267.460083008 267.630004883 267.809692383 267.830200195 267.700317383 267.50012207 267.189575195 266.649536133 265.860473633 265.049926758 264.450317383 264.07043457 255.149917603 255.850112915 256.300292969 256.520019531 256.649902344 256.749511719 256.819824219 256.930175781 257.119628906 257.310058594 257.340332031 257.079589844 256.479980469 255.489761353 254.220230103 252.960464478 251.960464478 240.420318604 240.800201416 240.899810791 240.930084229 241.109771729 241.409576416 241.619537354 241.649810791 241.600006104 241.489654541 241.369537354 241.229888916 240.989654541 240.420318604 239.340240479 237.909576416 236.519927979 231.42980957 231.690063477 231.819946289 231.92980957 232.049926758 232.139770508 232.170043945 232.150024414 232.040161133 231.790161133 231.440063477 231.170043945 231.069946289 230.949829102 230.440063477 229.449829102 228.230102539 220.850036621 220.930114746 220.999938965 221.029968262 221.019958496 220.949890137 220.910095215 220.910095215 220.92010498 220.840026855 220.640075684 220.380065918 220.190124512 220.160095215 220.190124512 220.049987793 219.620056152 208.129806519 207.660079956 207.300216675 207.080001831 206.910079956 206.760177612 206.669845581 206.700119019 206.789962769 206.879806519 207.010177612 207.169845581 207.339767456 207.609786987 208.089767456 208.780197144 209.439865112 196.149917603 195.02003479 194.140151978 193.229995728 192.399917603 191.979995728 191.960464478 191.939956665 191.630386353 191.300308228 191.420425415 192.100112915 193.060073853 194.060073853 195.140151978 196.369644165 197.68019104 197.870346069 196.630111694 195.590072632 194.710189819 194.000228882 193.500228882 193.240463257 193.090072632 192.920150757 192.759994507 192.740463257 192.990463257 193.509994507 194.120346069 194.729721069 195.460189819 196.460189819 205.899978638 205.140213013 204.649978638 204.339920044 204.080154419 203.770095825 203.500076294 203.359939575 203.330154419 203.419998169 203.640213013 204.000076294 204.339920044 204.509841919 204.489822388 204.359939575 204.270095825 216.960113525 216.819976807 216.869781494 216.989898682 217.069976807 217.150054932 217.330230713 217.6300354 217.940093994 218.029937744 217.779937744 217.270172119 216.679840088 216.239898682 216.009918213 215.940093994 215.850250244 219.520233154 219.249725342 219.060272217 218.949920654 218.959686279 219.049530029 219.049530029 218.810272217 218.419647217 218.119842529 218.100311279 218.390350342 218.879608154 219.430389404 219.810272217 219.900115967 219.629608154 231.009613037 230.379730225 229.28012085 228.240081787 227.610198975 227.20980835 226.7996521 226.679534912 227.249847412 228.219573975 228.820159912 228.700042725 228.3699646 228.400238037 228.8699646 229.390472412 229.759613037 299.369293213 299.089996338 298.619293213 298.070465088 297.660308838 297.390777588 297.129058838 296.910308838 296.900543213 297.050933838 297.070465088 296.849761963 296.650543213 296.619293213 296.400543213 295.660308838 294.619293213 296.530761719 296.110839844 295.460449219 294.739746094 294.169433594 293.669433594 293.140136719 292.870605469 293.079589844 293.329589844 292.940917969 291.979980469 291.190917969 290.839355469 290.419433594 289.579589844 288.669433594 291.549865723 290.950256348 290.25982666 289.660217285 289.269592285 289.049865723 288.809631348 288.540100098 288.389709473 288.339904785 288.09967041 287.450256348 286.549865723 285.74029541 285.129943848 284.570373535 283.950256348 282.309631348 281.960021973 281.589904785 281.370178223 281.440490723 281.679748535 281.75982666 281.559631348 281.309631348 281.309631348 281.469787598 281.629943848 281.889709473 282.320373535 282.540100098 282.09967041 281.00982666 275.769927979 275.909576416 275.920318604 275.680084229 275.250396729 274.949615479 274.920318604 274.989654541 274.939849854 274.809967041 274.710357666 274.609771729 274.449615479 274.269927979 274.199615479 274.140045166 273.809967041 267.370239258 267.740356445 267.759887695 267.559692383 267.370239258 267.360473633 267.549926758 267.809692383 267.899536133 267.740356445 267.380004883 266.920043945 266.33996582 265.620239258 264.860473633 264.25012207 263.809692383 255.659683228 256.279785156 256.630371094 256.720214844 256.710449219 256.670410156 256.689941406 256.779785156 256.960449219 257.119628906 257.140136719 256.909667969 256.319824219 255.300308228 253.989761353 252.710464478 251.710464478 241.069732666 241.369537354 241.399810791 241.350006104 241.409576416 241.559967041 241.630279541 241.600006104 241.550201416 241.500396729 241.399810791 241.229888916 240.930084229 240.269927979 239.100006104 237.619537354 236.229888916 231.980102539 232.190063477 232.239868164 232.239868164 232.25012207 232.270141602 232.239868164 232.199829102 232.120239258 231.900024414 231.569946289 231.290161133 231.139770508 230.920043945 230.310180664 229.239868164 228.00012207 221.110046387 221.110046387 221.08001709 221.059997559 221.029968262 220.989929199 220.949890137 220.890075684 220.850036621 220.820007324 220.690124512 220.469909668 220.269958496 220.199890137 220.209899902 220.059997559 219.590026855 207.850021362 207.379806519 207.019943237 206.8099823 206.680099487 206.600021362 206.609786987 206.709884644 206.800216675 206.850021362 206.919845581 207.080001831 207.289962769 207.620040894 208.189865112 208.979904175 209.72013855 195.510269165 194.479995728 193.710464478 192.93019104 192.229995728 191.93019104 192.010269165 192.050308228 191.800308228 191.529800415 191.649917603 192.279800415 193.18019104 194.170425415 195.279800415 196.569839478 197.94972229 197.929916382 196.689682007 195.649642944 194.819564819 194.200424194 193.769760132 193.460189819 193.179916382 192.910385132 192.769760132 192.889877319 193.279525757 193.819564819 194.389877319 195.019760132 195.819564819 196.880111694 205.839920044 205.149978638 204.660232544 204.270095825 203.890213013 203.52986145 203.319900513 203.290115356 203.310134888 203.370193481 203.560134888 203.919998169 204.35017395 204.629959106 204.6900177 204.60017395 204.500076294 217.230133057 216.909820557 216.889801025 217.069976807 217.279937744 217.449859619 217.589996338 217.79019165 217.960113525 217.989898682 217.770172119 217.299957275 216.710113525 216.21987915 215.980133057 215.949859619 215.900054932 220.020233154 219.619842529 219.079803467 218.709686279 218.709686279 218.999725342 219.169647217 218.949920654 218.489959717 218.190155029 218.260467529 218.629608154 219.089569092 219.539764404 219.850311279 219.930389404 219.730194092 229.770355225 229.589691162 229.240081787 228.730316162 228.0496521 227.179534912 226.410003662 226.2996521 227.020355225 228.009613037 228.45980835 228.270355225 228.020355225 228.230316162 228.820159912 229.390472412 229.740081787 299.060699463 298.759918213 298.349761963 297.959136963 297.670074463 297.459136963 297.220855713 297.000152588 296.900543213 296.929840088 296.970855713 296.910308838 296.859527588 296.800933838 296.470855713 295.670074463 294.660308838 296.329589844 295.800292969 295.069824219 294.390136719 293.950683594 293.599121094 293.169433594 292.899902344 292.960449219 292.999511719 292.530761719 291.720214844 291.169433594 290.960449219 290.470214844 289.489746094 288.550292969 291.09967041 290.620178223 290.15045166 289.780334473 289.469787598 289.110412598 288.679748535 288.34967041 288.24029541 288.210021973 287.929748535 287.309631348 286.570373535 285.889709473 285.210021973 284.450256348 283.700256348 281.979553223 281.860412598 281.66998291 281.570373535 281.65045166 281.83013916 281.83013916 281.570373535 281.34967041 281.41998291 281.629943848 281.769592285 281.940490723 282.269592285 282.410217285 281.889709473 280.690490723 275.619537354 275.850006104 275.850006104 275.500396729 275.059967041 274.869537354 274.979888916 275.100006104 275.029693604 274.869537354 274.729888916 274.619537354 274.460357666 274.260162354 274.100006104 273.920318604 273.519927979 267.490356445 267.700317383 267.58996582 267.330200195 267.17980957 267.259887695 267.540161133 267.849731445 267.960083008 267.729614258 267.229614258 266.630004883 266.030395508 265.389770508 264.700317383 264.08996582 263.599731445 256.199707031 256.680175781 256.869628906 256.810058594 256.670410156 256.579589844 256.600097656 256.699707031 256.829589844 256.909667969 256.890136719 256.649902344 256.069824219 255.050308228 253.749526978 252.479995728 251.460464478 241.580474854 241.819732666 241.800201416 241.680084229 241.630279541 241.630279541 241.590240479 241.540435791 241.500396729 241.479888916 241.390045166 241.189849854 240.809967041 240.069732666 238.880279541 237.399810791 236.010162354 232.350219727 232.509887695 232.509887695 232.420043945 232.350219727 232.279907227 232.210083008 232.159790039 232.08996582 231.940063477 231.67980957 231.389770508 231.150024414 230.819946289 230.109985352 229.029907227 227.799926758 221.160095215 221.120056152 221.049987793 220.989929199 220.979919434 220.999938965 220.959899902 220.860046387 220.789978027 220.749938965 220.690124512 220.519958496 220.289978027 220.160095215 220.110046387 219.940124512 219.440124512 207.609786987 207.160079956 206.830001831 206.660079956 206.570236206 206.539962769 206.600021362 206.72013855 206.8099823 206.830001831 206.890060425 207.050216675 207.3099823 207.680099487 208.289962769 209.109786987 209.89982605 195.050308228 194.119644165 193.44972229 192.739761353 192.10987854 191.819839478 191.880386353 191.94972229 191.84034729 191.749526978 191.94972229 192.53956604 193.319839478 194.27003479 195.470230103 196.869644165 198.319839478 197.960189819 196.719955444 195.679916382 194.889877319 194.349838257 193.979721069 193.649642944 193.290267944 192.979721069 192.889877319 193.120346069 193.580307007 194.120346069 194.679916382 195.340072632 196.210189819 197.309799194 205.679763794 205.049880981 204.560134888 204.080154419 203.60017395 203.239822388 203.109939575 203.149978638 203.219802856 203.299880981 203.500076294 203.899978638 204.399978638 204.770095825 204.910232544 204.85017395 204.759841919 217.730133057 217.270172119 217.150054932 217.29019165 217.520172119 217.750152588 217.96987915 218.1300354 218.159820557 217.989898682 217.670074463 217.210113525 216.650054932 216.150054932 215.900054932 215.889801025 215.889801025 220.010467529 219.600311279 218.930389404 218.379608154 218.310272217 218.619842529 218.829803467 218.659881592 218.310272217 218.190155029 218.459686279 218.930389404 219.369842529 219.690155029 219.869842529 219.930389404 219.829803467 229.179534912 229.160003662 229.35043335 229.320159912 228.730316162 227.669769287 226.770355225 226.629730225 227.20980835 227.839691162 227.929534912 227.640472412 227.5496521 227.990081787 228.719573975 229.339691162 229.6902771 298.980621338 298.560699463 298.060699463 297.689605713 297.550933838 297.519683838 297.420074463 297.170074463 296.910308838 296.859527588 297.039215088 297.259918213 297.279449463 297.000152588 296.369293213 295.459136963 294.500152588 295.829589844 295.319824219 294.599121094 293.979980469 293.690917969 293.540527344 293.249511719 292.919433594 292.780761719 292.710449219 292.380371094 291.849121094 291.489746094 291.190917969 290.460449219 289.300292969 288.339355469 290.809631348 290.40045166 290.000061035 289.679748535 289.379943848 288.99029541 288.559631348 288.269592285 288.200256348 288.15045166 287.870178223 287.40045166 286.90045166 286.339904785 285.50982666 284.469787598 283.540100098 281.799865723 281.889709473 281.870178223 281.780334473 281.75982666 281.809631348 281.729553223 281.500061035 281.370178223 281.530334473 281.769592285 281.83013916 281.820373535 281.960021973 281.99029541 281.450256348 280.280334473 275.519927979 275.769927979 275.720123291 275.350006104 274.970123291 274.880279541 275.019927979 275.119537354 275.050201416 274.909576416 274.769927979 274.630279541 274.430084229 274.199615479 273.970123291 273.699615479 273.210357666 267.490356445 267.530395508 267.280395508 267.01965332 266.979614258 267.200317383 267.530395508 267.82043457 267.880004883 267.599731445 267.049926758 266.439575195 265.870239258 265.25012207 264.57043457 263.920043945 263.399536133 256.640136719 256.999511719 257.020019531 256.810058594 256.590332031 256.479980469 256.529785156 256.649902344 256.749511719 256.749511719 256.659667969 256.380371094 255.78956604 254.77003479 253.499526978 252.249526978 251.19972229 241.850006104 242.029693604 241.979888916 241.809967041 241.659576416 241.559967041 241.470123291 241.420318604 241.409576416 241.399810791 241.330474854 241.109771729 240.680084229 239.909576416 238.710357666 237.250396729 235.830474854 232.529907227 232.630004883 232.58996582 232.480102539 232.359985352 232.239868164 232.120239258 232.049926758 232.009887695 231.920043945 231.699829102 231.409790039 231.100219727 230.670043945 229.920043945 228.859985352 227.650024414 221.049987793 221.019958496 220.949890137 220.880065918 220.890075684 220.959899902 220.959899902 220.880065918 220.779968262 220.729919434 220.660095215 220.479919434 220.25994873 220.090026855 219.979919434 219.739929199 219.239929199 207.419845581 207.019943237 206.760177612 206.629806519 206.570236206 206.539962769 206.600021362 206.72013855 206.800216675 206.830001831 206.89982605 207.070236206 207.339767456 207.749923706 208.359786987 209.189865112 209.979904175 194.710464478 193.829605103 193.220230103 192.600112915 192.060073853 191.829605103 191.880386353 191.939956665 191.880386353 191.909683228 192.189956665 192.720230103 193.43019104 194.390151978 195.689956665 197.220230103 198.729995728 198.050033569 196.880111694 195.840072632 195.009994507 194.399642944 193.960189819 193.599838257 193.279525757 193.059799194 193.069564819 193.359603882 193.809799194 194.340072632 194.910385132 195.630111694 196.559799194 197.679916382 205.469802856 204.870193481 204.399978638 203.9400177 203.520095825 203.239822388 203.149978638 203.169998169 203.1900177 203.270095825 203.52986145 203.989822388 204.549880981 204.980056763 205.169998169 205.149978638 205.060134888 218.21987915 217.759918213 217.560211182 217.529937744 217.569976807 217.710113525 218.000152588 218.259918213 218.239898682 217.940093994 217.520172119 217.100250244 216.6300354 216.150054932 215.860015869 215.860015869 215.889801025 219.480194092 219.249725342 218.739959717 218.239959717 218.119842529 218.310272217 218.459686279 218.360076904 218.209686279 218.310272217 218.720428467 219.190155029 219.539764404 219.730194092 219.820037842 219.890350342 219.919647217 229.53012085 229.240081787 229.400238037 229.499847412 229.0496521 228.150238037 227.410003662 227.270355225 227.53012085 227.660003662 227.450042725 227.200042725 227.35043335 227.969573975 228.730316162 229.329925537 229.669769287 298.640777588 298.390777588 298.039215088 297.769683838 297.640777588 297.589996338 297.480621338 297.220855713 296.949371338 296.980621338 297.369293213 297.759918213 297.720855713 297.119293213 296.170074463 295.129058838 294.209136963 295.019042969 294.829589844 294.380371094 293.909667969 293.669433594 293.540527344 293.280761719 292.890136719 292.669433594 292.620605469 292.499511719 292.269042969 291.979980469 291.489746094 290.479980469 289.130371094 288.079589844 290.41998291 290.110412598 289.769592285 289.479553223 289.210021973 288.860412598 288.479553223 288.250061035 288.200256348 288.15045166 287.969787598 287.719787598 287.440490723 286.879943848 285.809631348 284.460021973 283.370178223 281.440490723 281.660217285 281.809631348 281.780334473 281.700256348 281.679748535 281.620178223 281.469787598 281.41998291 281.620178223 281.839904785 281.799865723 281.629943848 281.570373535 281.49029541 280.969787598 279.91998291 275.350006104 275.569732666 275.510162354 275.220123291 274.949615479 274.920318604 275.019927979 275.069732666 275.010162354 274.909576416 274.769927979 274.540435791 274.269927979 274.019927979 273.769927979 273.420318604 272.880279541 267.479614258 267.380004883 267.049926758 266.82043457 266.880004883 267.17980957 267.509887695 267.700317383 267.67980957 267.389770508 266.920043945 266.399536133 265.83996582 265.189575195 264.439575195 263.75012207 263.189575195 256.899902344 257.159667969 257.079589844 256.800292969 256.529785156 256.409667969 256.470214844 256.630371094 256.720214844 256.689941406 256.510253906 256.159667969 255.52003479 254.499526978 253.27003479 252.03956604 250.960464478 241.930084229 242.029693604 241.960357666 241.760162354 241.550201416 241.399810791 241.300201416 241.269927979 241.290435791 241.290435791 241.220123291 241.010162354 240.569732666 239.769927979 238.569732666 237.130279541 235.649810791 232.569946289 232.600219727 232.529907227 232.420043945 232.299926758 232.170043945 232.020141602 231.92980957 231.900024414 231.850219727 231.670043945 231.370239258 231.020141602 230.529907227 229.770141602 228.719848633 227.50012207 220.940124512 220.930114746 220.850036621 220.769958496 220.789978027 220.870056152 220.910095215 220.870056152 220.799987793 220.719909668 220.600036621 220.410095215 220.199890137 220.039978027 219.890075684 219.58001709 219.029968262 207.300216675 206.939865112 206.740158081 206.669845581 206.629806519 206.580001831 206.580001831 206.669845581 206.780197144 206.839767456 206.930099487 207.109786987 207.390060425 207.800216675 208.419845581 209.229904175 210.030197144 194.53956604 193.670425415 193.050308228 192.499526978 192.119644165 192.069839478 192.210464478 192.27003479 192.170425415 192.159683228 192.369644165 192.829605103 193.510269165 194.510269165 195.880386353 197.489761353 199.079605103 198.200424194 197.160385132 196.160385132 195.219955444 194.420150757 193.790267944 193.380111694 193.149642944 193.099838257 193.240463257 193.569564819 194.009994507 194.519760132 195.139877319 195.950424194 196.910385132 198.050033569 205.270095825 204.629959106 204.160232544 203.810134888 203.589920044 203.469802856 203.410232544 203.310134888 203.219802856 203.259841919 203.549880981 204.089920044 204.710037231 205.1900177 205.419998169 205.429763794 205.35017395 218.429840088 218.1300354 217.960113525 217.730133057 217.449859619 217.3800354 217.690093994 218.060211182 218.100250244 217.770172119 217.3800354 217.060211182 216.690093994 216.230133057 215.889801025 215.850250244 215.900054932 218.789764404 218.739959717 218.520233154 218.279998779 218.249725342 218.369842529 218.440155029 218.400115967 218.419647217 218.640350342 218.980194092 219.310272217 219.539764404 219.690155029 219.789764404 219.890350342 220.020233154 230.509613037 229.7996521 229.520355225 229.310394287 228.7996521 228.089691162 227.560394287 227.419769287 227.390472412 227.230316162 227.009613037 227.03012085 227.45980835 228.129730225 228.839691162 229.3699646 229.669769287 298.179840088 298.330230713 298.369293213 298.259918213 297.970855713 297.629058838 297.390777588 297.240386963 297.240386963 297.480621338 297.929840088 298.170074463 297.859527588 297.029449463 295.980621338 294.949371338 294.060699463 294.300292969 294.489746094 294.429199219 294.149902344 293.839355469 293.560058594 293.220214844 292.839355469 292.659667969 292.700683594 292.729980469 292.599121094 292.300292969 291.690917969 290.569824219 289.149902344 288.030761719 289.960021973 289.860412598 289.66998291 289.49029541 289.24029541 288.860412598 288.450256348 288.179748535 288.09967041 288.110412598 288.089904785 288.049865723 287.870178223 287.250061035 285.99029541 284.450256348 283.250061035 280.950256348 281.24029541 281.519592285 281.620178223 281.58013916 281.58013916 281.589904785 281.50982666 281.479553223 281.65045166 281.809631348 281.719787598 281.440490723 281.229553223 281.040100098 280.559631348 279.620178223 275.149810791 275.330474854 275.300201416 275.090240479 274.949615479 274.970123291 275.040435791 275.040435791 275.010162354 274.930084229 274.729888916 274.390045166 274.029693604 273.760162354 273.489654541 273.080474854 272.510162354 267.439575195 267.299926758 266.990356445 266.799926758 266.920043945 267.219848633 267.490356445 267.58996582 267.469848633 267.200317383 266.809692383 266.360473633 265.809692383 265.110473633 264.309692383 263.57043457 263.009887695 256.979980469 257.170410156 257.060058594 256.760253906 256.489746094 256.369628906 256.449707031 256.609863281 256.720214844 256.670410156 256.430175781 255.999526978 255.28956604 254.28956604 253.100112915 251.880386353 250.760269165 241.909576416 241.960357666 241.869537354 241.649810791 241.420318604 241.250396729 241.170318604 241.149810791 241.170318604 241.180084229 241.109771729 240.909576416 240.460357666 239.649810791 238.449615479 236.989654541 235.439849854 232.540161133 232.489868164 232.380004883 232.279907227 232.199829102 232.060180664 231.909790039 231.810180664 231.819946289 231.770141602 231.600219727 231.319946289 230.960083008 230.449829102 229.659790039 228.569946289 227.299926758 220.850036621 220.840026855 220.739929199 220.650085449 220.650085449 220.699890137 220.739929199 220.749938965 220.719909668 220.650085449 220.479919434 220.299987793 220.140075684 220.019958496 219.83001709 219.440124512 218.840026855 207.180099487 206.850021362 206.709884644 206.700119019 206.680099487 206.600021362 206.550216675 206.600021362 206.72013855 206.850021362 206.990158081 207.169845581 207.410079956 207.820236206 208.459884644 209.269943237 210.070236206 194.710464478 193.829605103 193.140151978 192.560073853 192.279800415 192.409683228 192.729995728 192.850112915 192.69972229 192.52003479 192.560073853 192.909683228 193.59034729 194.640151978 196.069839478 197.69972229 199.350112915 198.170150757 197.250228882 196.349838257 195.420150757 194.500228882 193.759994507 193.300033569 193.109603882 193.139877319 193.359603882 193.740463257 194.210189819 194.759994507 195.439682007 196.300033569 197.309799194 198.450424194 205.169998169 204.419998169 203.879959106 203.60017395 203.560134888 203.609939575 203.569900513 203.410232544 203.239822388 203.250076294 203.569900513 204.129959106 204.770095825 205.290115356 205.569900513 205.620193481 205.580154419 218.259918213 218.190093994 218.150054932 217.889801025 217.460113525 217.239898682 217.460113525 217.839996338 217.900054932 217.589996338 217.270172119 217.069976807 216.799957275 216.299957275 215.900054932 215.839996338 215.929840088 218.310272217 218.220428467 218.190155029 218.249725342 218.409881592 218.560272217 218.610076904 218.619842529 218.730194092 218.940155029 219.140350342 219.299530029 219.480194092 219.680389404 219.839569092 219.989959717 220.159881592 231.570159912 230.749847412 230.03012085 229.320159912 228.520355225 227.749847412 227.249847412 227.0496521 226.900238037 226.70980835 226.6902771 227.020355225 227.60043335 228.240081787 228.839691162 229.3699646 229.70980835 297.910308838 298.320465088 298.679840088 298.670074463 298.189605713 297.589996338 297.300933838 297.410308838 297.769683838 298.170074463 298.410308838 298.240386963 297.599761963 296.699371338 295.800933838 294.929840088 294.099761963 293.919433594 294.269042969 294.470214844 294.329589844 293.940917969 293.519042969 293.110839844 292.800292969 292.700683594 292.800292969 292.839355469 292.669433594 292.319824219 291.700683594 290.659667969 289.329589844 288.200683594 289.620178223 289.74029541 289.710021973 289.59967041 289.339904785 288.870178223 288.339904785 287.979553223 287.879943848 287.99029541 288.129943848 288.219787598 288.059631348 287.379943848 286.08013916 284.58013916 283.389709473 280.66998291 280.950256348 281.309631348 281.469787598 281.469787598 281.49029541 281.540100098 281.50982666 281.49029541 281.610412598 281.729553223 281.620178223 281.269592285 280.929748535 280.65045166 280.15045166 279.290100098 275.040435791 275.170318604 275.140045166 275.010162354 274.939849854 275.000396729 275.069732666 275.090240479 275.069732666 274.989654541 274.699615479 274.250396729 273.830474854 273.519927979 273.199615479 272.710357666 272.119537354 267.33996582 267.229614258 266.979614258 266.849731445 266.979614258 267.26965332 267.50012207 267.540161133 267.380004883 267.099731445 266.719848633 266.25012207 265.670043945 264.960083008 264.170043945 263.450317383 262.870239258 256.989746094 257.119628906 256.970214844 256.689941406 256.439941406 256.350097656 256.420410156 256.590332031 256.699707031 256.630371094 256.340332031 255.850112915 255.140151978 254.149917603 252.979995728 251.760269165 250.600112915 241.880279541 241.890045166 241.760162354 241.540435791 241.309967041 241.130279541 241.059967041 241.069732666 241.109771729 241.109771729 241.029693604 240.819732666 240.369537354 239.550201416 238.330474854 236.819732666 235.199615479 232.42980957 232.330200195 232.170043945 232.080200195 232.020141602 231.920043945 231.759887695 231.670043945 231.690063477 231.670043945 231.509887695 231.25012207 230.92980957 230.389770508 229.549926758 228.400024414 227.049926758 220.749938965 220.690124512 220.570007324 220.469909668 220.459899902 220.469909668 220.479919434 220.489929199 220.489929199 220.440124512 220.299987793 220.150085449 220.059997559 219.959899902 219.729919434 219.289978027 218.650085449 207.039962769 206.729904175 206.640060425 206.689865112 206.700119019 206.620040894 206.530197144 206.570236206 206.700119019 206.879806519 207.0599823 207.209884644 207.419845581 207.820236206 208.47013855 209.3099823 210.120040894 195.189956665 194.350112915 193.579605103 192.880386353 192.529800415 192.689956665 193.079605103 193.300308228 193.170425415 192.890151978 192.749526978 192.989761353 193.68019104 194.800308228 196.260269165 197.890151978 199.569839478 197.830307007 196.920150757 196.149642944 195.389877319 194.590072632 193.929916382 193.500228882 193.290267944 193.250228882 193.429916382 193.859603882 194.420150757 195.040267944 195.750228882 196.639877319 197.689682007 198.840072632 205.27986145 204.419998169 203.759841919 203.449783325 203.4400177 203.520095825 203.500076294 203.370193481 203.250076294 203.319900513 203.640213013 204.160232544 204.790115356 205.330154419 205.649978638 205.750076294 205.759841919 217.830230713 217.8800354 218.000152588 217.940093994 217.650054932 217.480133057 217.6300354 217.869781494 217.819976807 217.480133057 217.190093994 217.060211182 216.799957275 216.29019165 215.830230713 215.79019165 215.940093994 218.140350342 217.820037842 217.749725342 217.940155029 218.260467529 218.510467529 218.610076904 218.699920654 218.860076904 219.049530029 219.159881592 219.260467529 219.480194092 219.770233154 219.959686279 220.079803467 220.249725342 232.259613037 231.730316162 230.910003662 229.879730225 228.740081787 227.730316162 227.060394287 226.740081787 226.539886475 226.419769287 226.5496521 226.999847412 227.589691162 228.150238037 228.730316162 229.35043335 229.789886475 297.750152588 298.089996338 298.500152588 298.539215088 298.109527588 297.599761963 297.459136963 297.759918213 298.230621338 298.560699463 298.519683838 297.990386963 297.160308838 296.339996338 295.629058838 294.900543213 294.080230713 293.649902344 293.950683594 294.249511719 294.229980469 293.919433594 293.519042969 293.130371094 292.819824219 292.729980469 292.829589844 292.870605469 292.659667969 292.249511719 291.630371094 290.679199219 289.460449219 288.349121094 289.389709473 289.549865723 289.570373535 289.49029541 289.229553223 288.75982666 288.190490723 287.799865723 287.729553223 287.90045166 288.15045166 288.280334473 288.120178223 287.41998291 286.24029541 284.90045166 283.769592285 280.750061035 280.950256348 281.229553223 281.320373535 281.24029541 281.200256348 281.290100098 281.370178223 281.41998291 281.530334473 281.639709473 281.49029541 281.08013916 280.620178223 280.219787598 279.690490723 278.860412598 275.059967041 275.140045166 275.090240479 274.960357666 274.909576416 274.979888916 275.080474854 275.140045166 275.140045166 275.029693604 274.680084229 274.180084229 273.720123291 273.359771729 272.949615479 272.380279541 271.739654541 267.229614258 267.130004883 266.960083008 266.870239258 267.00012207 267.280395508 267.530395508 267.57043457 267.420043945 267.110473633 266.689575195 266.16027832 265.51965332 264.790161133 264.030395508 263.360473633 262.759887695 257.010253906 257.060058594 256.880371094 256.569824219 256.359863281 256.310058594 256.409667969 256.560058594 256.630371094 256.520019531 256.210449219 255.720230103 254.999526978 254.029800415 252.869644165 251.630386353 250.44972229 241.840240479 241.809967041 241.659576416 241.409576416 241.159576416 240.960357666 240.890045166 240.939849854 241.029693604 241.069732666 240.970123291 240.729888916 240.269927979 239.449615479 238.210357666 236.640045166 234.960357666 232.279907227 232.139770508 231.940063477 231.830200195 231.790161133 231.67980957 231.529907227 231.449829102 231.489868164 231.50012207 231.380004883 231.170043945 230.880004883 230.330200195 229.409790039 228.17980957 226.779907227 220.58001709 220.469909668 220.33001709 220.239929199 220.229919434 220.209899902 220.17010498 220.17010498 220.190124512 220.160095215 220.059997559 219.979919434 219.930114746 219.83001709 219.549987793 219.08001709 218.430114746 206.89982605 206.620040894 206.580001831 206.669845581 206.709884644 206.64982605 206.589767456 206.600021362 206.729904175 206.939865112 207.109786987 207.22013855 207.379806519 207.749923706 208.450119019 209.339767456 210.180099487 195.670425415 194.920425415 194.140151978 193.390151978 192.94972229 192.970230103 193.27003479 193.470230103 193.390151978 193.119644165 192.920425415 193.079605103 193.779800415 194.970230103 196.489761353 198.10987854 199.78956604 197.420150757 196.429916382 195.719955444 195.090072632 194.509994507 194.069564819 193.790267944 193.580307007 193.439682007 193.540267944 194.000228882 194.649642944 195.330307007 196.040267944 196.920150757 197.990463257 199.200424194 205.569900513 204.719802856 204.020095825 203.620193481 203.469802856 203.419998169 203.359939575 203.290115356 203.299880981 203.4400177 203.739822388 204.210037231 204.810134888 205.390213013 205.770095825 205.899978638 205.9400177 217.400054932 217.339996338 217.500152588 217.679840088 217.759918213 217.819976807 217.96987915 218.060211182 217.869781494 217.460113525 217.150054932 217.029937744 216.779937744 216.250152588 215.750152588 215.670074463 215.850250244 218.279998779 217.730194092 217.480194092 217.589569092 217.900115967 218.199920654 218.400115967 218.579803467 218.850311279 219.079803467 219.190155029 219.310272217 219.579803467 219.890350342 220.029998779 220.089569092 220.220428467 232.240081787 232.129730225 231.520355225 230.53012085 229.310394287 228.129730225 227.270355225 226.770355225 226.499847412 226.360198975 226.509613037 226.9402771 227.490081787 228.039886475 228.679534912 229.429534912 229.990081787 297.519683838 297.679840088 298.000152588 298.140777588 298.019683838 297.900543213 297.959136963 298.160308838 298.379058838 298.500152588 298.320465088 297.769683838 296.959136963 296.199371338 295.519683838 294.750152588 293.839996338 293.300292969 293.509277344 293.839355469 293.979980469 293.940917969 293.759277344 293.399902344 292.950683594 292.720214844 292.800292969 292.899902344 292.739746094 292.300292969 291.620605469 290.630371094 289.419433594 288.319824219 289.049865723 289.110412598 289.089904785 289.08013916 288.99029541 288.66998291 288.200256348 287.83013916 287.74029541 287.889709473 288.15045166 288.320373535 288.190490723 287.570373535 286.479553223 285.24029541 284.09967041 280.99029541 281.08013916 281.190490723 281.110412598 280.870178223 280.769592285 280.929748535 281.160217285 281.339904785 281.49029541 281.549865723 281.34967041 280.879943848 280.339904785 279.84967041 279.25982666 278.429748535 275.189849854 275.229888916 275.130279541 274.970123291 274.890045166 274.949615479 275.069732666 275.149810791 275.159576416 275.019927979 274.670318604 274.159576416 273.670318604 273.260162354 272.769927979 272.140045166 271.470123291 267.189575195 267.110473633 266.950317383 266.860473633 266.960083008 267.240356445 267.51965332 267.620239258 267.509887695 267.210083008 266.759887695 266.16027832 265.439575195 264.66027832 263.91027832 263.229614258 262.58996582 256.999511719 256.989746094 256.729980469 256.420410156 256.229980469 256.239746094 256.380371094 256.529785156 256.539550781 256.380371094 256.069824219 255.600112915 254.899917603 253.920425415 252.729995728 251.479995728 250.28956604 241.750396729 241.680084229 241.489654541 241.210357666 240.920318604 240.689849854 240.630279541 240.739654541 240.920318604 241.000396729 240.899810791 240.649810791 240.189849854 239.359771729 238.059967041 236.430084229 234.710357666 232.08996582 231.949829102 231.710083008 231.569946289 231.529907227 231.420043945 231.259887695 231.199829102 231.25012207 231.279907227 231.199829102 231.049926758 230.799926758 230.230102539 229.239868164 227.92980957 226.50012207 220.390075684 220.229919434 220.070007324 219.979919434 219.949890137 219.900085449 219.83001709 219.820007324 219.870056152 219.860046387 219.83001709 219.809997559 219.799987793 219.680114746 219.370056152 218.880065918 218.229919434 206.850021362 206.620040894 206.609786987 206.700119019 206.740158081 206.72013855 206.669845581 206.689865112 206.820236206 206.990158081 207.129806519 207.180099487 207.280197144 207.64982605 208.410079956 209.359786987 210.22013855 195.850112915 195.159683228 194.529800415 193.960464478 193.569839478 193.479995728 193.560073853 193.60987854 193.529800415 193.329605103 193.140151978 193.249526978 193.899917603 195.130386353 196.69972229 198.319839478 199.970230103 197.359603882 196.300033569 195.490463257 194.809799194 194.259994507 193.979721069 193.899642944 193.779525757 193.620346069 193.689682007 194.170150757 194.899642944 195.620346069 196.319564819 197.179916382 198.269760132 199.529525757 205.85017395 205.120193481 204.509841919 204.089920044 203.799880981 203.52986145 203.319900513 203.239822388 203.330154419 203.509841919 203.790115356 204.210037231 204.810134888 205.449783325 205.919998169 206.129959106 206.210037231 217.21987915 216.8800354 216.889801025 217.170074463 217.520172119 217.819976807 218.060211182 218.139801025 217.929840088 217.520172119 217.190093994 217.029937744 216.779937744 216.250152588 215.690093994 215.500152588 215.619781494 218.659881592 218.089569092 217.730194092 217.650115967 217.770233154 217.959686279 218.180389404 218.470428467 218.839569092 219.129608154 219.289764404 219.430389404 219.690155029 219.959686279 220.049530029 220.029998779 220.129608154 231.400238037 231.480316162 231.150238037 230.499847412 229.589691162 228.5496521 227.610198975 226.9402771 226.509613037 226.310394287 226.429534912 226.860198975 227.4402771 228.060394287 228.7996521 229.629730225 230.219573975 297.320465088 297.459136963 297.730621338 297.970855713 298.220855713 298.470855713 298.580230713 298.490386963 298.349761963 298.300933838 298.209136963 297.810699463 297.070465088 296.240386963 295.390777588 294.509918213 293.580230713 292.890136719 293.089355469 293.419433594 293.729980469 293.999511719 294.089355469 293.729980469 293.089355469 292.690917969 292.759277344 292.940917969 292.849121094 292.370605469 291.569824219 290.479980469 289.249511719 288.179199219 288.49029541 288.460021973 288.479553223 288.679748535 288.860412598 288.75982666 288.370178223 287.960021973 287.769592285 287.820373535 288.049865723 288.320373535 288.33013916 287.780334473 286.710021973 285.440490723 284.229553223 281.16998291 281.200256348 281.179748535 280.960021973 280.629943848 280.500061035 280.719787598 281.08013916 281.360412598 281.500061035 281.500061035 281.24029541 280.729553223 280.179748535 279.65045166 279.019592285 278.179748535 275.390045166 275.409576416 275.279693604 275.080474854 274.949615479 274.970123291 275.069732666 275.149810791 275.159576416 275.029693604 274.689849854 274.170318604 273.640045166 273.159576416 272.640045166 272.000396729 271.309967041 267.280395508 267.189575195 267.00012207 266.849731445 266.91027832 267.170043945 267.439575195 267.58996582 267.530395508 267.299926758 266.870239258 266.240356445 265.439575195 264.580200195 263.790161133 263.049926758 262.349731445 256.899902344 256.850097656 256.569824219 256.249511719 256.079589844 256.130371094 256.319824219 256.460449219 256.439941406 256.270019531 255.960464478 255.499526978 254.78956604 253.78956604 252.579605103 251.329605103 250.140151978 241.580474854 241.489654541 241.290435791 240.979888916 240.649810791 240.399810791 240.340240479 240.510162354 240.769927979 240.890045166 240.809967041 240.559967041 240.109771729 239.269927979 237.920318604 236.220123291 234.449615479 231.909790039 231.759887695 231.50012207 231.33996582 231.259887695 231.150024414 231.00012207 230.960083008 231.009887695 231.040161133 231.00012207 230.940063477 230.730102539 230.150024414 229.060180664 227.670043945 226.190063477 220.219909668 220.049987793 219.850036621 219.739929199 219.660095215 219.549987793 219.469909668 219.499938965 219.570007324 219.600036621 219.610046387 219.67010498 219.709899902 219.570007324 219.219909668 218.699890137 218.039978027 206.89982605 206.740158081 206.769943237 206.839767456 206.850021362 206.820236206 206.780197144 206.800216675 206.910079956 207.050216675 207.140060425 207.140060425 207.180099487 207.550216675 208.339767456 209.339767456 210.229904175 195.800308228 195.140151978 194.739761353 194.489761353 194.35987854 194.279800415 194.140151978 193.960464478 193.779800415 193.60987854 193.470230103 193.53956604 194.10987854 195.28956604 196.85987854 198.499526978 200.140151978 197.750228882 196.660385132 195.689682007 194.759994507 194.050033569 193.769760132 193.809799194 193.840072632 193.769760132 193.849838257 194.340072632 195.109603882 195.880111694 196.630111694 197.519760132 198.639877319 199.929916382 205.919998169 205.310134888 204.859939575 204.520095825 204.179763794 203.77986145 203.449783325 203.290115356 203.359939575 203.520095825 203.750076294 204.140213013 204.739822388 205.4400177 206.02986145 206.379959106 206.549880981 217.409820557 216.839996338 216.560211182 216.690093994 217.04019165 217.420074463 217.759918213 217.960113525 217.909820557 217.569976807 217.230133057 217.029937744 216.799957275 216.310211182 215.690093994 215.319976807 215.270172119 219.169647217 218.789764404 218.499725342 218.279998779 218.129608154 218.079803467 218.199920654 218.499725342 218.879608154 219.169647217 219.320037842 219.470428467 219.730194092 219.999725342 220.089569092 220.060272217 220.110076904 230.0496521 229.980316162 229.759613037 229.520355225 229.150238037 228.509613037 227.700042725 226.95980835 226.400238037 226.160003662 226.2996521 226.810394287 227.469573975 228.1902771 228.969573975 229.789886475 230.360198975 297.379058838 297.650543213 297.879058838 298.119293213 298.490386963 298.849761963 298.900543213 298.640777588 298.369293213 298.320465088 298.300933838 297.929840088 297.109527588 296.070465088 295.089996338 294.259918213 293.509918213 292.509277344 292.749511719 293.050292969 293.419433594 293.870605469 294.130371094 293.790527344 293.079589844 292.659667969 292.749511719 292.970214844 292.839355469 292.269042969 291.390136719 290.249511719 289.069824219 288.130371094 287.83013916 287.809631348 287.979553223 288.440490723 288.870178223 288.870178223 288.429748535 287.91998291 287.639709473 287.620178223 287.870178223 288.299865723 288.519592285 288.070373535 286.91998291 285.530334473 284.25982666 281.299865723 281.34967041 281.299865723 281.059631348 280.719787598 280.58013916 280.790100098 281.16998291 281.440490723 281.530334473 281.450256348 281.15045166 280.65045166 280.120178223 279.589904785 278.969787598 278.129943848 275.600006104 275.670318604 275.519927979 275.269927979 275.069732666 275.029693604 275.100006104 275.180084229 275.199615479 275.080474854 274.729888916 274.170318604 273.569732666 273.040435791 272.519927979 271.909576416 271.180084229 267.389770508 267.309692383 267.059692383 266.870239258 266.880004883 267.080200195 267.32043457 267.450317383 267.439575195 267.280395508 266.91027832 266.290161133 265.450317383 264.549926758 263.689575195 262.91027832 262.120239258 256.699707031 256.680175781 256.420410156 256.100097656 255.920425415 255.979995728 256.189941406 256.359863281 256.350097656 256.180175781 255.880386353 255.399917603 254.670425415 253.640151978 252.439956665 251.189956665 249.979995728 241.380279541 241.290435791 241.050201416 240.720123291 240.369537354 240.140045166 240.119537354 240.330474854 240.590240479 240.739654541 240.680084229 240.449615479 240.019927979 239.170318604 237.779693604 236.010162354 234.239654541 231.719848633 231.569946289 231.270141602 231.060180664 230.960083008 230.880004883 230.779907227 230.759887695 230.799926758 230.819946289 230.819946289 230.830200195 230.690063477 230.080200195 228.900024414 227.420043945 225.900024414 220.08001709 219.890075684 219.699890137 219.549987793 219.390075684 219.209899902 219.130065918 219.190124512 219.309997559 219.380065918 219.430114746 219.559997559 219.640075684 219.479919434 219.090026855 218.519958496 217.820007324 207.010177612 206.930099487 207.010177612 207.089767456 207.0599823 206.979904175 206.919845581 206.939865112 207.039962769 207.169845581 207.22013855 207.140060425 207.129806519 207.47013855 208.269943237 209.300216675 210.189865112 195.880386353 195.249526978 194.989761353 195.029800415 195.149917603 195.130386353 194.850112915 194.43019104 194.09034729 193.909683228 193.819839478 193.899917603 194.390151978 195.489761353 197.010269165 198.659683228 200.329605103 198.210189819 197.160385132 196.090072632 194.939682007 194.050033569 193.679916382 193.740463257 193.870346069 193.859603882 193.960189819 194.420150757 195.189682007 196.059799194 196.929916382 197.929916382 199.090072632 200.380111694 205.750076294 205.1900177 204.85017395 204.609939575 204.339920044 203.969802856 203.640213013 203.460037231 203.460037231 203.560134888 203.750076294 204.109939575 204.679763794 205.390213013 206.049880981 206.540115356 206.859939575 217.860015869 217.199859619 216.690093994 216.54019165 216.659820557 216.929840088 217.29019165 217.650054932 217.770172119 217.569976807 217.230133057 216.989898682 216.779937744 216.350250244 215.71987915 215.210113525 214.980133057 219.549530029 219.449920654 219.369842529 219.159881592 218.820037842 218.549530029 218.510467529 218.709686279 218.980194092 219.159881592 219.260467529 219.409881592 219.709686279 220.039764404 220.199920654 220.199920654 220.190155029 228.910003662 228.490081787 228.160003662 228.089691162 228.129730225 227.929534912 227.379730225 226.719573975 226.200042725 226.039886475 226.270355225 226.810394287 227.490081787 228.230316162 229.009613037 229.820159912 230.3699646 297.679840088 297.959136963 298.089996338 298.220855713 298.509918213 298.789215088 298.779449463 298.589996338 298.470855713 298.500152588 298.390777588 297.839996338 296.839996338 295.650543213 294.629058838 294.009918213 293.589996338 292.190917969 292.440917969 292.669433594 292.989746094 293.479980469 293.759277344 293.479980469 292.919433594 292.690917969 292.909667969 293.079589844 292.839355469 292.179199219 291.220214844 290.060058594 288.970214844 288.190917969 287.24029541 287.25982666 287.559631348 288.229553223 288.769592285 288.74029541 288.210021973 287.690490723 287.460021973 287.469787598 287.780334473 288.40045166 288.839904785 288.469787598 287.229553223 285.700256348 284.389709473 281.410217285 281.540100098 281.549865723 281.370178223 281.049865723 280.870178223 281.000061035 281.269592285 281.440490723 281.460021973 281.33013916 281.040100098 280.570373535 280.049865723 279.559631348 278.960021973 278.139709473 275.760162354 275.899810791 275.729888916 275.409576416 275.149810791 275.069732666 275.119537354 275.220123291 275.269927979 275.149810791 274.769927979 274.159576416 273.489654541 272.899810791 272.369537354 271.769927979 271.000396729 267.389770508 267.330200195 267.07043457 266.870239258 266.870239258 267.040161133 267.200317383 267.299926758 267.299926758 267.17980957 266.849731445 266.229614258 265.420043945 264.51965332 263.649536133 262.809692383 261.920043945 256.470214844 256.489746094 256.279785156 255.970230103 255.749526978 255.78956604 256.020019531 256.229980469 256.270019531 256.130371094 255.810073853 255.300308228 254.510269165 253.489761353 252.310073853 251.069839478 249.800308228 241.180084229 241.059967041 240.779693604 240.399810791 240.100006104 239.949615479 239.979888916 240.170318604 240.420318604 240.550201416 240.529693604 240.330474854 239.899810791 239.029693604 237.619537354 235.850006104 234.090240479 231.489868164 231.319946289 230.989868164 230.730102539 230.639770508 230.609985352 230.580200195 230.569946289 230.600219727 230.609985352 230.659790039 230.730102539 230.620239258 229.980102539 228.75012207 227.230102539 225.690063477 219.910095215 219.739929199 219.570007324 219.430114746 219.209899902 218.969909668 218.880065918 218.979919434 219.120056152 219.180114746 219.289978027 219.469909668 219.570007324 219.390075684 218.930114746 218.33001709 217.610046387 207.109786987 207.100021362 207.269943237 207.39982605 207.379806519 207.229904175 207.120040894 207.129806519 207.249923706 207.350021362 207.330001831 207.169845581 207.100021362 207.430099487 208.229904175 209.240158081 210.129806519 196.249526978 195.640151978 195.439956665 195.53956604 195.729995728 195.729995728 195.380386353 194.810073853 194.319839478 194.09034729 194.060073853 194.210464478 194.69972229 195.720230103 197.19972229 198.85987854 200.569839478 198.349838257 197.340072632 196.259994507 195.130111694 194.219955444 193.800033569 193.790267944 193.870346069 193.880111694 194.000228882 194.429916382 195.200424194 196.149642944 197.170150757 198.290267944 199.479721069 200.800033569 205.620193481 205.02986145 204.6900177 204.480056763 204.27986145 204.020095825 203.790115356 203.649978638 203.629959106 203.679763794 203.85017395 204.169998169 204.699783325 205.379959106 206.069900513 206.660232544 207.129959106 218.21987915 217.619781494 217.009918213 216.659820557 216.569976807 216.710113525 217.020172119 217.409820557 217.619781494 217.500152588 217.190093994 216.929840088 216.730133057 216.330230713 215.739898682 215.199859619 214.8800354 219.579803467 219.669647217 219.820037842 219.760467529 219.449920654 219.119842529 219.010467529 219.079803467 219.169647217 219.180389404 219.220428467 219.390350342 219.730194092 220.089569092 220.310272217 220.339569092 220.279998779 228.5496521 227.829925537 227.219573975 227.009613037 227.1199646 227.129730225 226.7996521 226.2996521 225.990081787 226.020355225 226.339691162 226.820159912 227.400238037 228.10043335 228.950042725 229.789886475 230.3699646 297.810699463 297.990386963 298.009918213 298.080230713 298.330230713 298.539215088 298.550933838 298.519683838 298.599761963 298.609527588 298.259918213 297.529449463 296.519683838 295.369293213 294.369293213 293.839996338 293.650543213 291.890136719 292.140136719 292.349121094 292.649902344 293.110839844 293.360839844 293.130371094 292.790527344 292.849121094 293.210449219 293.370605469 293.060058594 292.380371094 291.360839844 290.099121094 288.979980469 288.290527344 286.790100098 286.820373535 287.16998291 287.90045166 288.50982666 288.460021973 287.940490723 287.530334473 287.460021973 287.559631348 287.910217285 288.639709473 289.250061035 288.969787598 287.65045166 285.969787598 284.589904785 281.40045166 281.58013916 281.679748535 281.559631348 281.280334473 281.070373535 281.09967041 281.24029541 281.280334473 281.229553223 281.139709473 280.910217285 280.479553223 279.929748535 279.429748535 278.879943848 278.110412598 275.800201416 276.029693604 275.840240479 275.470123291 275.159576416 275.059967041 275.130279541 275.279693604 275.359771729 275.239654541 274.830474854 274.180084229 273.439849854 272.790435791 272.210357666 271.550201416 270.750396729 267.240356445 267.200317383 266.950317383 266.809692383 266.870239258 267.040161133 267.16027832 267.219848633 267.229614258 267.120239258 266.759887695 266.139770508 265.33996582 264.479614258 263.58996582 262.670043945 261.700317383 256.239746094 256.310058594 256.149902344 255.84034729 255.600112915 255.619644165 255.869644165 256.149902344 256.260253906 256.140136719 255.800308228 255.220230103 254.399917603 253.390151978 252.229995728 250.939956665 249.579605103 240.970123291 240.809967041 240.460357666 240.059967041 239.819732666 239.800201416 239.899810791 240.069732666 240.250396729 240.380279541 240.380279541 240.210357666 239.760162354 238.869537354 237.470123291 235.739654541 234.010162354 231.219848633 231.020141602 230.659790039 230.389770508 230.33996582 230.380004883 230.420043945 230.420043945 230.42980957 230.449829102 230.540161133 230.650024414 230.520141602 229.83996582 228.58996582 227.08996582 225.58996582 219.690124512 219.549987793 219.459899902 219.360046387 219.140075684 218.860046387 218.75994873 218.840026855 218.949890137 219.039978027 219.180114746 219.410095215 219.499938965 219.269958496 218.779968262 218.180114746 217.489929199 207.209884644 207.269943237 207.530197144 207.72013855 207.700119019 207.490158081 207.350021362 207.359786987 207.490158081 207.5599823 207.450119019 207.209884644 207.100021362 207.419845581 208.22013855 209.22013855 210.109786987 196.689956665 196.149917603 195.94972229 195.94972229 196.02003479 195.970230103 195.640151978 195.050308228 194.479995728 194.189956665 194.19972229 194.439956665 194.979995728 195.960464478 197.399917603 199.079605103 200.84034729 198.279525757 197.229721069 196.170150757 195.149642944 194.370346069 193.939682007 193.800033569 193.759994507 193.759994507 193.939682007 194.410385132 195.210189819 196.219955444 197.359603882 198.559799194 199.800033569 201.139877319 205.710037231 205.089920044 204.6900177 204.419998169 204.199783325 204.009841919 203.870193481 203.790115356 203.750076294 203.759841919 203.890213013 204.219802856 204.770095825 205.449783325 206.149978638 206.799880981 207.359939575 218.29019165 217.759918213 217.179840088 216.779937744 216.670074463 216.779937744 217.049957275 217.350250244 217.500152588 217.3800354 217.139801025 216.909820557 216.679840088 216.270172119 215.699859619 215.199859619 214.889801025 219.360076904 219.489959717 219.779998779 219.869842529 219.690155029 219.449920654 219.379608154 219.409881592 219.369842529 219.279998779 219.279998779 219.480194092 219.810272217 220.129608154 220.339569092 220.409881592 220.339569092 228.839691162 228.020355225 227.160003662 226.669769287 226.579925537 226.53012085 226.240081787 225.910003662 225.829925537 226.070159912 226.410003662 226.749847412 227.20980835 227.9402771 228.890472412 229.810394287 230.419769287 297.609527588 297.689605713 297.679840088 297.879058838 298.310699463 298.580230713 298.589996338 298.599761963 298.709136963 298.599761963 298.060699463 297.320465088 296.539215088 295.580230713 294.480621338 293.750152588 293.490386963 291.659667969 291.970214844 292.200683594 292.540527344 293.030761719 293.269042969 293.079589844 292.890136719 293.099121094 293.519042969 293.669433594 293.460449219 292.940917969 291.950683594 290.519042969 289.200683594 288.440917969 286.519592285 286.570373535 286.889709473 287.65045166 288.320373535 288.34967041 287.910217285 287.620178223 287.65045166 287.769592285 288.089904785 288.870178223 289.639709473 289.479553223 288.110412598 286.280334473 284.750061035 281.160217285 281.370178223 281.50982666 281.460021973 281.219787598 281.049865723 281.059631348 281.089904785 281.00982666 280.91998291 280.910217285 280.799865723 280.40045166 279.809631348 279.24029541 278.729553223 278.019592285 275.720123291 276.019927979 275.859771729 275.489654541 275.180084229 275.069732666 275.149810791 275.319732666 275.439849854 275.350006104 274.939849854 274.250396729 273.439849854 272.680084229 272.019927979 271.330474854 270.519927979 267.009887695 266.969848633 266.740356445 266.689575195 266.870239258 267.08996582 267.200317383 267.259887695 267.280395508 267.149536133 266.740356445 266.07043457 265.280395508 264.41027832 263.450317383 262.41027832 261.360473633 256.029785156 256.130371094 255.999526978 255.710464478 255.510269165 255.560073853 255.84034729 256.140136719 256.300292969 256.210449219 255.850112915 255.210464478 254.350112915 253.34034729 252.189956665 250.84034729 249.369644165 240.750396729 240.540435791 240.130279541 239.739654541 239.609771729 239.710357666 239.869537354 240.000396729 240.119537354 240.229888916 240.269927979 240.100006104 239.619537354 238.710357666 237.350006104 235.680084229 233.949615479 230.940063477 230.719848633 230.359985352 230.130004883 230.139770508 230.25012207 230.299926758 230.299926758 230.290161133 230.33996582 230.460083008 230.560180664 230.380004883 229.670043945 228.469848633 227.040161133 225.580200195 219.479919434 219.400085449 219.390075684 219.33001709 219.110046387 218.820007324 218.699890137 218.749938965 218.820007324 218.910095215 219.100036621 219.350036621 219.430114746 219.190124512 218.699890137 218.140075684 217.459899902 207.370040894 207.510177612 207.8099823 208.030197144 207.959884644 207.729904175 207.5599823 207.570236206 207.689865112 207.709884644 207.519943237 207.209884644 207.089767456 207.430099487 208.240158081 209.22013855 210.109786987 196.939956665 196.479995728 196.279800415 196.159683228 196.069839478 195.979995728 195.749526978 195.27003479 194.710464478 194.369644165 194.390151978 194.69972229 195.27003479 196.19972229 197.569839478 199.260269165 201.09034729 198.309799194 197.130111694 196.019760132 195.059799194 194.370346069 193.929916382 193.660385132 193.509994507 193.529525757 193.809799194 194.370346069 195.210189819 196.279525757 197.509994507 198.779525757 200.080307007 201.439682007 205.890213013 205.299880981 204.879959106 204.540115356 204.239822388 204.020095825 203.919998169 203.870193481 203.790115356 203.730056763 203.819900513 204.179763794 204.77986145 205.500076294 206.259841919 206.949783325 207.549880981 218.170074463 217.659820557 217.119781494 216.79019165 216.750152588 216.920074463 217.170074463 217.339996338 217.369781494 217.239898682 217.069976807 216.900054932 216.639801025 216.179840088 215.610015869 215.159820557 214.850250244 219.209686279 219.310272217 219.579803467 219.709686279 219.610076904 219.470428467 219.480194092 219.510467529 219.449920654 219.339569092 219.379608154 219.610076904 219.890350342 220.150115967 220.350311279 220.470428467 220.470428467 229.089691162 228.329925537 227.4402771 226.810394287 226.5496521 226.3699646 226.03012085 225.740081787 225.789886475 226.129730225 226.429534912 226.660003662 227.079925537 227.8699646 228.910003662 229.839691162 230.419769287 297.279449463 297.369293213 297.379058838 297.769683838 298.459136963 298.849761963 298.779449463 298.709136963 298.810699463 298.670074463 298.060699463 297.359527588 296.759918213 295.900543213 294.629058838 293.539215088 293.109527588 291.599121094 291.929199219 292.149902344 292.560058594 293.149902344 293.470214844 293.310058594 293.140136719 293.329589844 293.669433594 293.829589844 293.839355469 293.669433594 292.839355469 291.269042969 289.700683594 288.759277344 286.41998291 286.549865723 286.870178223 287.620178223 288.370178223 288.49029541 288.089904785 287.799865723 287.809631348 287.90045166 288.200256348 289.019592285 289.940490723 289.91998291 288.559631348 286.620178223 284.90045166 280.799865723 281.019592285 281.219787598 281.229553223 281.049865723 280.940490723 280.950256348 280.910217285 280.710021973 280.589904785 280.679748535 280.729553223 280.40045166 279.74029541 279.089904785 278.549865723 277.889709473 275.569732666 275.909576416 275.840240479 275.550201416 275.260162354 275.119537354 275.170318604 275.340240479 275.489654541 275.420318604 275.040435791 274.330474854 273.420318604 272.540435791 271.800201416 271.119537354 270.369537354 266.790161133 266.729614258 266.530395508 266.580200195 266.870239258 267.149536133 267.290161133 267.370239258 267.41027832 267.259887695 266.790161133 266.08996582 265.259887695 264.330200195 263.25012207 262.080200195 260.969848633 255.850112915 255.960464478 255.85987854 255.630386353 255.489761353 255.60987854 255.909683228 256.199707031 256.350097656 256.270019531 255.909683228 255.239761353 254.350112915 253.34034729 252.159683228 250.760269165 249.210464478 240.519927979 240.269927979 239.859771729 239.540435791 239.500396729 239.670318604 239.850006104 239.939849854 240.019927979 240.130279541 240.170318604 239.989654541 239.479888916 238.580474854 237.269927979 235.649810791 233.880279541 230.659790039 230.449829102 230.139770508 229.989868164 230.049926758 230.170043945 230.210083008 230.17980957 230.17980957 230.259887695 230.400024414 230.469848633 230.239868164 229.520141602 228.380004883 227.040161133 225.58996582 219.33001709 219.360046387 219.430114746 219.360046387 219.08001709 218.779968262 218.660095215 218.690124512 218.729919434 218.809997559 219.00994873 219.269958496 219.360046387 219.110046387 218.67010498 218.120056152 217.449890137 207.629806519 207.830001831 208.129806519 208.300216675 208.180099487 207.919845581 207.749923706 207.749923706 207.820236206 207.769943237 207.539962769 207.22013855 207.120040894 207.47013855 208.260177612 209.22013855 210.080001831 197.079605103 196.659683228 196.460464478 196.229995728 195.989761353 195.85987854 195.739761353 195.439956665 194.970230103 194.630386353 194.649917603 195.010269165 195.579605103 196.420425415 197.710464478 199.390151978 201.28956604 198.559799194 197.229721069 195.969955444 194.969955444 194.279525757 193.819564819 193.469955444 193.259994507 193.309799194 193.660385132 194.259994507 195.099838257 196.240463257 197.580307007 199.000228882 200.370346069 201.759994507 205.929763794 205.410232544 205.02986145 204.669998169 204.319900513 204.089920044 203.989822388 203.949783325 203.859939575 203.750076294 203.790115356 204.120193481 204.699783325 205.460037231 206.270095825 207.020095825 207.679763794 218.179840088 217.639801025 217.100250244 216.750152588 216.739898682 216.929840088 217.150054932 217.230133057 217.179840088 217.069976807 216.989898682 216.8800354 216.619781494 216.139801025 215.560211182 215.089996338 214.71987915 219.299530029 219.379608154 219.549530029 219.600311279 219.470428467 219.390350342 219.419647217 219.480194092 219.409881592 219.329803467 219.400115967 219.640350342 219.930389404 220.159881592 220.390350342 220.600311279 220.680389404 228.890472412 228.1902771 227.400238037 226.890472412 226.679534912 226.469573975 226.070159912 225.759613037 225.810394287 226.140472412 226.419769287 226.6199646 227.070159912 227.919769287 228.929534912 229.759613037 230.270355225 297.140777588 297.199371338 297.170074463 297.619293213 298.449371338 298.890777588 298.750152588 298.640777588 298.869293213 298.910308838 298.310699463 297.429840088 296.679840088 295.779449463 294.449371338 293.209136963 292.689605713 291.630371094 291.870605469 292.009277344 292.489746094 293.229980469 293.679199219 293.579589844 293.409667969 293.530761719 293.769042969 293.960449219 294.239746094 294.429199219 293.890136719 292.329589844 290.560058594 289.339355469 286.410217285 286.639709473 286.940490723 287.679748535 288.49029541 288.66998291 288.25982666 287.889709473 287.879943848 288.00982666 288.34967041 289.24029541 290.269592285 290.370178223 289.089904785 287.09967041 285.25982666 280.589904785 280.84967041 281.129943848 281.15045166 280.960021973 280.83013916 280.820373535 280.700256348 280.450256348 280.339904785 280.549865723 280.74029541 280.460021973 279.74029541 278.99029541 278.410217285 277.74029541 275.340240479 275.729888916 275.790435791 275.630279541 275.359771729 275.140045166 275.109771729 275.260162354 275.420318604 275.399810791 275.050201416 274.330474854 273.359771729 272.359771729 271.569732666 270.930084229 270.239654541 266.599731445 266.549926758 266.41027832 266.51965332 266.870239258 267.219848633 267.399536133 267.51965332 267.559692383 267.389770508 266.880004883 266.139770508 265.26965332 264.280395508 263.120239258 261.860473633 260.710083008 255.729995728 255.84034729 255.760269165 255.619644165 255.569839478 255.749526978 256.050292969 256.279785156 256.380371094 256.310058594 255.939956665 255.27003479 254.35987854 253.329605103 252.119644165 250.68019104 249.10987854 240.269927979 240.010162354 239.659576416 239.439849854 239.470123291 239.659576416 239.809967041 239.890045166 239.960357666 240.069732666 240.080474854 239.869537354 239.350006104 238.489654541 237.239654541 235.619537354 233.809967041 230.400024414 230.230102539 230.00012207 229.909790039 229.980102539 230.060180664 230.069946289 230.040161133 230.069946289 230.17980957 230.310180664 230.350219727 230.08996582 229.389770508 228.319946289 227.029907227 225.560180664 219.279968262 219.449890137 219.570007324 219.440124512 219.090026855 218.75994873 218.640075684 218.660095215 218.699890137 218.749938965 218.92010498 219.17010498 219.239929199 219.019958496 218.58001709 218.039978027 217.33001709 207.919845581 208.160079956 208.419845581 208.499923706 208.370040894 208.140060425 207.979904175 207.919845581 207.89982605 207.8099823 207.570236206 207.289962769 207.209884644 207.550216675 208.289962769 209.180099487 209.999923706 197.310073853 196.869644165 196.600112915 196.220230103 195.810073853 195.600112915 195.560073853 195.399917603 195.050308228 194.77003479 194.850112915 195.260269165 195.850112915 196.649917603 197.829605103 199.489761353 201.439956665 198.800033569 197.349838257 195.969955444 194.889877319 194.179916382 193.719955444 193.370346069 193.170150757 193.210189819 193.529525757 194.069564819 194.880111694 196.059799194 197.540267944 199.120346069 200.620346069 202.069564819 205.830154419 205.339920044 205.02986145 204.710037231 204.379959106 204.129959106 204.060134888 204.049880981 204.000076294 203.890213013 203.890213013 204.129959106 204.629959106 205.330154419 206.160232544 206.969802856 207.719802856 218.389801025 217.850250244 217.270172119 216.839996338 216.710113525 216.810211182 216.980133057 217.060211182 217.029937744 216.980133057 216.940093994 216.839996338 216.589996338 216.139801025 215.600250244 215.080230713 214.580230713 219.449920654 219.529998779 219.619842529 219.579803467 219.440155029 219.360076904 219.419647217 219.489959717 219.440155029 219.360076904 219.419647217 219.640350342 219.909881592 220.180389404 220.480194092 220.770233154 220.919647217 228.490081787 227.730316162 227.070159912 226.740081787 226.669769287 226.509613037 226.089691162 225.740081787 225.759613037 226.079925537 226.3699646 226.650238037 227.169769287 227.999847412 228.900238037 229.610198975 230.079925537 297.089996338 297.070465088 296.959136963 297.379058838 298.209136963 298.629058838 298.459136963 298.420074463 298.890777588 299.199371338 298.619293213 297.439605713 296.359527588 295.429840088 294.300933838 293.189605713 292.629058838 291.579589844 291.710449219 291.810058594 292.349121094 293.229980469 293.790527344 293.769042969 293.620605469 293.720214844 293.970214844 294.269042969 294.790527344 295.360839844 295.120605469 293.679199219 291.759277344 290.220214844 286.370178223 286.59967041 286.870178223 287.610412598 288.500061035 288.75982666 288.360412598 288.000061035 288.030334473 288.25982666 288.700256348 289.639709473 290.719787598 290.91998291 289.74029541 287.790100098 285.91998291 280.559631348 280.910217285 281.290100098 281.290100098 280.979553223 280.719787598 280.610412598 280.440490723 280.190490723 280.16998291 280.500061035 280.780334473 280.549865723 279.809631348 278.99029541 278.320373535 277.58013916 275.059967041 275.500396729 275.689849854 275.630279541 275.369537354 275.090240479 275.010162354 275.119537354 275.269927979 275.250396729 274.960357666 274.300201416 273.319732666 272.260162354 271.409576416 270.779693604 270.090240479 266.450317383 266.509887695 266.439575195 266.580200195 266.939575195 267.290161133 267.51965332 267.670043945 267.719848633 267.51965332 266.969848633 266.170043945 265.259887695 264.240356445 263.07043457 261.82043457 260.689575195 255.649917603 255.77003479 255.710464478 255.630386353 255.68019104 255.920425415 256.180175781 256.359863281 256.420410156 256.340332031 255.979995728 255.279800415 254.350112915 253.28956604 252.050308228 250.59034729 249.050308228 240.000396729 239.790435791 239.540435791 239.420318604 239.460357666 239.619537354 239.769927979 239.880279541 239.989654541 240.080474854 240.010162354 239.750396729 239.220123291 238.399810791 237.189849854 235.569732666 233.750396729 230.170043945 230.049926758 229.900024414 229.83996582 229.870239258 229.900024414 229.909790039 229.940063477 230.009887695 230.120239258 230.210083008 230.210083008 229.940063477 229.270141602 228.239868164 226.969848633 225.469848633 219.309997559 219.610046387 219.75994873 219.58001709 219.160095215 218.809997559 218.690124512 218.709899902 218.729919434 218.75994873 218.890075684 219.070007324 219.120056152 218.92010498 218.479919434 217.890075684 217.130065918 208.209884644 208.430099487 208.629806519 208.669845581 208.580001831 208.430099487 208.269943237 208.109786987 207.97013855 207.839767456 207.669845581 207.430099487 207.370040894 207.680099487 208.359786987 209.169845581 209.930099487 197.659683228 197.100112915 196.649917603 196.09034729 195.529800415 195.239761353 195.19972229 195.119644165 194.869644165 194.689956665 194.85987854 195.399917603 196.069839478 196.890151978 198.02003479 199.619644165 201.550308228 198.849838257 197.349838257 195.929916382 194.819564819 194.109603882 193.649642944 193.319564819 193.139877319 193.170150757 193.439682007 193.899642944 194.649642944 195.819564819 197.389877319 199.090072632 200.710189819 202.240463257 205.770095825 205.270095825 204.969802856 204.6900177 204.379959106 204.140213013 204.069900513 204.089920044 204.080154419 204.009841919 204.020095825 204.1900177 204.580154419 205.179763794 205.969802856 206.85017395 207.679763794 218.600250244 218.089996338 217.509918213 217.000152588 216.710113525 216.690093994 216.830230713 216.949859619 217.000152588 216.980133057 216.909820557 216.759918213 216.489898682 216.110015869 215.679840088 215.170074463 214.560211182 219.440155029 219.510467529 219.570037842 219.529998779 219.430389404 219.400115967 219.489959717 219.589569092 219.579803467 219.510467529 219.529998779 219.690155029 219.949920654 220.239959717 220.539764404 220.839569092 221.029998779 228.35043335 227.499847412 226.890472412 226.650238037 226.610198975 226.4402771 226.009613037 225.640472412 225.640472412 225.950042725 226.2996521 226.669769287 227.219573975 228.009613037 228.85043335 229.560394287 230.070159912 296.839996338 296.810699463 296.759918213 297.170074463 297.929840088 298.369293213 298.310699463 298.349761963 298.910308838 299.310699463 298.810699463 297.619293213 296.570465088 295.890777588 295.129058838 294.160308838 293.310699463 291.370605469 291.519042969 291.720214844 292.360839844 293.280761719 293.880371094 293.909667969 293.800292969 293.909667969 294.220214844 294.679199219 295.499511719 296.419433594 296.530761719 295.249511719 293.200683594 291.329589844 286.250061035 286.410217285 286.690490723 287.500061035 288.479553223 288.839904785 288.540100098 288.250061035 288.320373535 288.589904785 289.08013916 290.089904785 291.280334473 291.589904785 290.469787598 288.559631348 286.690490723 280.519592285 281.00982666 281.469787598 281.440490723 280.99029541 280.58013916 280.360412598 280.16998291 279.979553223 280.059631348 280.460021973 280.790100098 280.59967041 279.950256348 279.15045166 278.360412598 277.479553223 274.850006104 275.340240479 275.600006104 275.590240479 275.330474854 275.040435791 274.930084229 275.029693604 275.109771729 275.069732666 274.830474854 274.319732666 273.430084229 272.350006104 271.420318604 270.710357666 269.970123291 266.349731445 266.57043457 266.620239258 266.76965332 267.07043457 267.389770508 267.630004883 267.809692383 267.880004883 267.649536133 267.040161133 266.170043945 265.200317383 264.16027832 263.040161133 261.889770508 260.799926758 255.52003479 255.659683228 255.670425415 255.68019104 255.800308228 256.060058594 256.329589844 256.479980469 256.520019531 256.420410156 256.050292969 255.310073853 254.329605103 253.229995728 251.970230103 250.510269165 248.999526978 239.779693604 239.649810791 239.510162354 239.439849854 239.470123291 239.590240479 239.750396729 239.930084229 240.090240479 240.149810791 240.010162354 239.670318604 239.109771729 238.279693604 237.090240479 235.479888916 233.680084229 229.989868164 229.940063477 229.859985352 229.799926758 229.770141602 229.770141602 229.810180664 229.920043945 230.029907227 230.120239258 230.150024414 230.109985352 229.819946289 229.139770508 228.109985352 226.830200195 225.359985352 219.400085449 219.779968262 219.940124512 219.719909668 219.299987793 218.959899902 218.840026855 218.83001709 218.83001709 218.850036621 218.930114746 219.039978027 219.049987793 218.850036621 218.400085449 217.749938965 216.930114746 208.47013855 208.640060425 208.760177612 208.800216675 208.8099823 208.749923706 208.570236206 208.289962769 208.0599823 207.910079956 207.780197144 207.600021362 207.550216675 207.839767456 208.490158081 209.249923706 209.930099487 197.899917603 197.119644165 196.44972229 195.739761353 195.10987854 194.77003479 194.720230103 194.670425415 194.510269165 194.439956665 194.729995728 195.409683228 196.249526978 197.159683228 198.279800415 199.779800415 201.619644165 198.819564819 197.300033569 195.889877319 194.790267944 194.050033569 193.569564819 193.219955444 193.029525757 193.069564819 193.340072632 193.790267944 194.500228882 195.639877319 197.170150757 198.910385132 200.620346069 202.269760132 205.85017395 205.339920044 205.009841919 204.699783325 204.370193481 204.120193481 204.040115356 204.049880981 204.040115356 204.009841919 204.02986145 204.199783325 204.52986145 205.049880981 205.799880981 206.699783325 207.569900513 218.610015869 218.119781494 217.549957275 217.009918213 216.679840088 216.6300354 216.779937744 216.920074463 216.96987915 216.940093994 216.839996338 216.610015869 216.310211182 215.989898682 215.679840088 215.279937744 214.679840088 219.329803467 219.369842529 219.419647217 219.440155029 219.430389404 219.430389404 219.510467529 219.619842529 219.669647217 219.669647217 219.680389404 219.820037842 220.079803467 220.350311279 220.579803467 220.770233154 220.949920654 228.509613037 227.679534912 227.079925537 226.78012085 226.629730225 226.379730225 225.990081787 225.650238037 225.610198975 225.860198975 226.230316162 226.640472412 227.169769287 227.910003662 228.85043335 229.749847412 230.390472412 296.400543213 296.519683838 296.660308838 297.060699463 297.730621338 298.279449463 298.480621338 298.599761963 298.929840088 299.199371338 298.949371338 298.339996338 297.939605713 297.769683838 297.259918213 296.089996338 294.670074463 291.169433594 291.479980469 291.870605469 292.530761719 293.360839844 293.940917969 294.060058594 293.979980469 294.019042969 294.300292969 294.940917969 296.110839844 297.429199219 297.849121094 296.739746094 294.620605469 292.509277344 286.120178223 286.309631348 286.710021973 287.610412598 288.610412598 289.00982666 288.799865723 288.559631348 288.589904785 288.780334473 289.280334473 290.429748535 291.839904785 292.309631348 291.200256348 289.190490723 287.269592285 280.309631348 280.950256348 281.500061035 281.450256348 280.950256348 280.469787598 280.210021973 280.00982666 279.860412598 279.969787598 280.34967041 280.660217285 280.570373535 280.089904785 279.429748535 278.570373535 277.469787598 274.890045166 275.380279541 275.609771729 275.559967041 275.290435791 275.019927979 274.949615479 275.010162354 275.000396729 274.899810791 274.729888916 274.380279541 273.649810791 272.609771729 271.609771729 270.790435791 269.939849854 266.290161133 266.670043945 266.830200195 266.990356445 267.25012207 267.509887695 267.740356445 267.92980957 268.009887695 267.780395508 267.16027832 266.240356445 265.17980957 264.080200195 262.990356445 261.92980957 260.889770508 255.279800415 255.499526978 255.630386353 255.739761353 255.93019104 256.220214844 256.499511719 256.670410156 256.699707031 256.579589844 256.159667969 255.380386353 254.350112915 253.210464478 251.93019104 250.470230103 248.94972229 239.640045166 239.630279541 239.559967041 239.510162354 239.510162354 239.590240479 239.790435791 240.040435791 240.229888916 240.279693604 240.109771729 239.689849854 239.050201416 238.159576416 236.939849854 235.359771729 233.609771729 229.92980957 229.960083008 229.92980957 229.870239258 229.790161133 229.75012207 229.830200195 229.989868164 230.139770508 230.190063477 230.190063477 230.100219727 229.759887695 229.009887695 227.920043945 226.659790039 225.239868164 219.570007324 219.949890137 220.070007324 219.83001709 219.459899902 219.17010498 219.039978027 218.999938965 218.979919434 218.979919434 218.999938965 219.059997559 219.019958496 218.799987793 218.320007324 217.630065918 216.769958496 208.749923706 208.820236206 208.870040894 208.89982605 208.959884644 208.959884644 208.760177612 208.419845581 208.140060425 207.999923706 207.890060425 207.72013855 207.680099487 207.990158081 208.660079956 209.410079956 210.019943237 197.880386353 196.869644165 196.02003479 195.239761353 194.600112915 194.249526978 194.149917603 194.10987854 194.029800415 194.09034729 194.510269165 195.319839478 196.329605103 197.399917603 198.53956604 199.920425415 201.630386353 198.880111694 197.330307007 195.939682007 194.840072632 194.069564819 193.540267944 193.139877319 192.929916382 192.969955444 193.240463257 193.689682007 194.370346069 195.429916382 196.899642944 198.630111694 200.439682007 202.200424194 205.980056763 205.4400177 205.060134888 204.719802856 204.379959106 204.129959106 204.040115356 204.040115356 204.009841919 203.980056763 204.020095825 204.1900177 204.489822388 204.969802856 205.669998169 206.520095825 207.370193481 218.500152588 217.989898682 217.409820557 216.8800354 216.600250244 216.600250244 216.750152588 216.830230713 216.810211182 216.759918213 216.690093994 216.509918213 216.190093994 215.8800354 215.619781494 215.360015869 214.8800354 219.320037842 219.320037842 219.379608154 219.470428467 219.529998779 219.520233154 219.499725342 219.560272217 219.669647217 219.730194092 219.760467529 219.900115967 220.190155029 220.459686279 220.579803467 220.629608154 220.739959717 228.579925537 227.879730225 227.35043335 226.950042725 226.640472412 226.339691162 226.060394287 225.7996521 225.700042725 225.85043335 226.200042725 226.629730225 227.110198975 227.810394287 228.879730225 230.10043335 230.919769287 296.140777588 296.470855713 296.740386963 296.980621338 297.429840088 298.109527588 298.699371338 298.949371338 298.970855713 298.970855713 299.119293213 299.519683838 300.089996338 300.359527588 299.660308838 297.949371338 295.910308838 291.159667969 291.710449219 292.190917969 292.679199219 293.280761719 293.880371094 294.210449219 294.229980469 294.120605469 294.249511719 294.999511719 296.509277344 298.159667969 298.790527344 297.720214844 295.530761719 293.339355469 286.08013916 286.460021973 287.08013916 288.019592285 288.870178223 289.190490723 289.019592285 288.790100098 288.74029541 288.839904785 289.389709473 290.780334473 292.450256348 293.030334473 291.809631348 289.559631348 287.49029541 280.070373535 280.809631348 281.40045166 281.34967041 280.870178223 280.440490723 280.200256348 279.99029541 279.820373535 279.870178223 280.129943848 280.379943848 280.389709473 280.190490723 279.74029541 278.860412598 277.500061035 275.130279541 275.569732666 275.710357666 275.580474854 275.290435791 275.040435791 274.970123291 274.989654541 274.909576416 274.769927979 274.640045166 274.409576416 273.809967041 272.840240479 271.819732666 270.949615479 270.029693604 266.26965332 266.719848633 266.950317383 267.139770508 267.360473633 267.580200195 267.780395508 267.960083008 268.040161133 267.860473633 267.299926758 266.399536133 265.280395508 264.110473633 262.979614258 261.960083008 260.939575195 254.999526978 255.369644165 255.659683228 255.890151978 256.130371094 256.439941406 256.739746094 256.909667969 256.920410156 256.749511719 256.289550781 255.479995728 254.420425415 253.249526978 251.970230103 250.510269165 248.979995728 239.649810791 239.699615479 239.680084229 239.630279541 239.609771729 239.689849854 239.899810791 240.170318604 240.369537354 240.420318604 240.260162354 239.830474854 239.100006104 238.100006104 236.830474854 235.279693604 233.569732666 230.020141602 230.139770508 230.130004883 230.029907227 229.900024414 229.830200195 229.909790039 230.080200195 230.219848633 230.279907227 230.270141602 230.159790039 229.739868164 228.889770508 227.739868164 226.489868164 225.150024414 219.799987793 220.130065918 220.140075684 219.900085449 219.590026855 219.380065918 219.269958496 219.209899902 219.180114746 219.17010498 219.140075684 219.100036621 218.989929199 218.709899902 218.17010498 217.440124512 216.590026855 208.990158081 208.950119019 208.930099487 208.930099487 208.979904175 208.950119019 208.740158081 208.419845581 208.180099487 208.0599823 207.930099487 207.749923706 207.72013855 208.080001831 208.780197144 209.519943237 210.089767456 197.779800415 196.600112915 195.619644165 194.78956604 194.170425415 193.77003479 193.560073853 193.470230103 193.479995728 193.670425415 194.18019104 195.050308228 196.210464478 197.460464478 198.69972229 200.02003479 201.600112915 198.939682007 197.380111694 196.000228882 194.899642944 194.130111694 193.590072632 193.210189819 192.990463257 192.979721069 193.170150757 193.540267944 194.130111694 195.099838257 196.529525757 198.300033569 200.210189819 202.080307007 206.000076294 205.4400177 205.020095825 204.669998169 204.339920044 204.109939575 204.060134888 204.089920044 204.089920044 204.060134888 204.109939575 204.259841919 204.520095825 204.919998169 205.520095825 206.27986145 207.080154419 218.500152588 217.940093994 217.319976807 216.79019165 216.560211182 216.6300354 216.759918213 216.71987915 216.580230713 216.549957275 216.619781494 216.580230713 216.299957275 215.920074463 215.619781494 215.400054932 215.069976807 219.419647217 219.369842529 219.419647217 219.600311279 219.730194092 219.680389404 219.570037842 219.570037842 219.690155029 219.749725342 219.739959717 219.810272217 220.089569092 220.390350342 220.499725342 220.449920654 220.499725342 228.429534912 227.879730225 227.429534912 226.9402771 226.469573975 226.1902771 226.060394287 225.929534912 225.78012085 225.839691162 226.240081787 226.770355225 227.249847412 227.8699646 228.990081787 230.4402771 231.4402771 296.209136963 296.609527588 296.849761963 296.849761963 297.029449463 297.789215088 298.740386963 299.189605713 298.990386963 298.789215088 299.320465088 300.619293213 301.920074463 302.199371338 300.929840088 298.570465088 296.209136963 291.390136719 292.089355469 292.540527344 292.739746094 293.079589844 293.720214844 294.339355469 294.509277344 294.290527344 294.269042969 295.120605469 296.860839844 298.649902344 299.200683594 297.940917969 295.589355469 293.429199219 286.190490723 286.799865723 287.58013916 288.450256348 289.08013916 289.25982666 289.129943848 288.969787598 288.889709473 289.00982666 289.719787598 291.320373535 293.09967041 293.620178223 292.160217285 289.620178223 287.34967041 280.00982666 280.799865723 281.33013916 281.24029541 280.809631348 280.460021973 280.24029541 280.019592285 279.790100098 279.75982666 279.910217285 280.08013916 280.190490723 280.219787598 279.99029541 279.120178223 277.559631348 275.350006104 275.699615479 275.779693604 275.630279541 275.330474854 275.059967041 274.930084229 274.920318604 274.850006104 274.720123291 274.600006104 274.369537354 273.790435791 272.880279541 271.939849854 271.119537354 270.180084229 266.290161133 266.670043945 266.91027832 267.130004883 267.370239258 267.549926758 267.700317383 267.830200195 267.899536133 267.790161133 267.370239258 266.58996582 265.509887695 264.290161133 263.120239258 262.059692383 261.009887695 254.850112915 255.390151978 255.84034729 256.149902344 256.409667969 256.710449219 256.989746094 257.159667969 257.140136719 256.939941406 256.460449219 255.619644165 254.53956604 253.350112915 252.069839478 250.619644165 249.09034729 239.710357666 239.819732666 239.819732666 239.790435791 239.800201416 239.909576416 240.109771729 240.340240479 240.500396729 240.550201416 240.420318604 240.019927979 239.239654541 238.140045166 236.809967041 235.290435791 233.630279541 230.25012207 230.400024414 230.370239258 230.230102539 230.060180664 229.969848633 230.029907227 230.170043945 230.290161133 230.370239258 230.380004883 230.25012207 229.759887695 228.830200195 227.620239258 226.380004883 225.100219727 220.059997559 220.299987793 220.219909668 219.940124512 219.690124512 219.549987793 219.479919434 219.440124512 219.440124512 219.430114746 219.320007324 219.17010498 218.959899902 218.58001709 217.949890137 217.17010498 216.390075684 209.100021362 208.979904175 208.89982605 208.859786987 208.820236206 208.740158081 208.530197144 208.289962769 208.109786987 208.030197144 207.890060425 207.709884644 207.709884644 208.089767456 208.800216675 209.539962769 210.089767456 197.800308228 196.489761353 195.390151978 194.53956604 193.899917603 193.439956665 193.10987854 192.960464478 192.999526978 193.239761353 193.739761353 194.59034729 195.84034729 197.28956604 198.69972229 200.03956604 201.560073853 198.830307007 197.279525757 195.910385132 194.830307007 194.099838257 193.620346069 193.309799194 193.120346069 193.059799194 193.130111694 193.349838257 193.819564819 194.700424194 196.109603882 197.929916382 199.939682007 201.910385132 205.9400177 205.319900513 204.870193481 204.540115356 204.270095825 204.10017395 204.060134888 204.120193481 204.169998169 204.169998169 204.230056763 204.370193481 204.580154419 204.899978638 205.370193481 206.009841919 206.750076294 218.619781494 218.049957275 217.420074463 216.869781494 216.6300354 216.690093994 216.770172119 216.639801025 216.449859619 216.46987915 216.71987915 216.839996338 216.600250244 216.119781494 215.670074463 215.389801025 215.119781494 219.390350342 219.270233154 219.310272217 219.560272217 219.789764404 219.789764404 219.669647217 219.680389404 219.820037842 219.829803467 219.650115967 219.570037842 219.770233154 220.140350342 220.339569092 220.329803467 220.329803467 228.329925537 227.900238037 227.480316162 226.8699646 226.249847412 225.980316162 225.990081787 225.9402771 225.740081787 225.78012085 226.329925537 227.110198975 227.669769287 228.179534912 229.169769287 230.640472412 231.730316162 296.330230713 296.619293213 296.789215088 296.750152588 296.869293213 297.619293213 298.699371338 299.240386963 298.980621338 298.730621338 299.490386963 301.230621338 302.740386963 302.689605713 300.750152588 297.869293213 295.470855713 291.659667969 292.440917969 292.839355469 292.849121094 292.970214844 293.620605469 294.429199219 294.739746094 294.489746094 294.479980469 295.499511719 297.409667969 299.099121094 299.290527344 297.589355469 294.970214844 292.769042969 286.440490723 287.160217285 287.950256348 288.66998291 289.160217285 289.33013916 289.290100098 289.190490723 289.129943848 289.339904785 290.250061035 291.960021973 293.639709473 293.91998291 292.200256348 289.429748535 286.99029541 280.09967041 280.889709473 281.33013916 281.190490723 280.790100098 280.479553223 280.280334473 280.030334473 279.799865723 279.729553223 279.799865723 279.90045166 280.059631348 280.269592285 280.190490723 279.34967041 277.66998291 275.319732666 275.619537354 275.750396729 275.689849854 275.409576416 275.080474854 274.880279541 274.850006104 274.840240479 274.760162354 274.609771729 274.290435791 273.659576416 272.809967041 271.989654541 271.260162354 270.319732666 266.33996582 266.580200195 266.740356445 266.990356445 267.259887695 267.450317383 267.540161133 267.599731445 267.620239258 267.540161133 267.290161133 266.710083008 265.740356445 264.540161133 263.349731445 262.26965332 261.16027832 254.960464478 255.619644165 256.130371094 256.439941406 256.670410156 256.960449219 257.239746094 257.390136719 257.359863281 257.140136719 256.649902344 255.819839478 254.729995728 253.510269165 252.220230103 250.819839478 249.310073853 239.800201416 239.930084229 239.960357666 240.000396729 240.069732666 240.220123291 240.420318604 240.580474854 240.649810791 240.659576416 240.559967041 240.199615479 239.409576416 238.260162354 236.920318604 235.449615479 233.830474854 230.50012207 230.650024414 230.569946289 230.380004883 230.219848633 230.170043945 230.219848633 230.319946289 230.42980957 230.489868164 230.50012207 230.33996582 229.799926758 228.830200195 227.609985352 226.380004883 225.139770508 220.299987793 220.479919434 220.289978027 219.969909668 219.739929199 219.660095215 219.620056152 219.620056152 219.680114746 219.690124512 219.539978027 219.289978027 218.979919434 218.519958496 217.789978027 216.949890137 216.229919434 209.070236206 208.890060425 208.780197144 208.700119019 208.609786987 208.459884644 208.260177612 208.0599823 207.950119019 207.89982605 207.800216675 207.669845581 207.72013855 208.100021362 208.760177612 209.490158081 210.070236206 197.829605103 196.390151978 195.18019104 194.310073853 193.710464478 193.249526978 192.909683228 192.720230103 192.749526978 192.939956665 193.300308228 194.03956604 195.310073853 196.970230103 198.59034729 200.02003479 201.52003479 198.609603882 197.080307007 195.740463257 194.679916382 193.950424194 193.500228882 193.240463257 193.099838257 193.050033569 193.080307007 193.250228882 193.630111694 194.439682007 195.759994507 197.540267944 199.580307007 201.630111694 205.899978638 205.199783325 204.739822388 204.460037231 204.270095825 204.129959106 204.10017395 204.160232544 204.199783325 204.219802856 204.259841919 204.370193481 204.540115356 204.799880981 205.210037231 205.759841919 206.469802856 218.6300354 218.1300354 217.54019165 216.989898682 216.679840088 216.650054932 216.650054932 216.509918213 216.3800354 216.500152588 216.830230713 217.029937744 216.810211182 216.270172119 215.690093994 215.270172119 214.96987915 219.230194092 219.029998779 219.049530029 219.369842529 219.680389404 219.760467529 219.720428467 219.799530029 219.970428467 219.930389404 219.589569092 219.320037842 219.440155029 219.879608154 220.249725342 220.379608154 220.360076904 228.509613037 228.150238037 227.70980835 226.969573975 226.219573975 225.929534912 225.980316162 225.919769287 225.640472412 225.70980835 226.469573975 227.509613037 228.169769287 228.560394287 229.339691162 230.629730225 231.70980835 296.140777588 296.230621338 296.490386963 296.759918213 297.099761963 297.800933838 298.709136963 299.179840088 298.980621338 298.820465088 299.650543213 301.439605713 302.869293213 302.539215088 300.179840088 296.990386963 294.519683838 291.759277344 292.530761719 292.970214844 293.019042969 293.089355469 293.659667969 294.450683594 294.800292969 294.620605469 294.749511719 295.970214844 298.009277344 299.569824219 299.380371094 297.269042969 294.310058594 291.950683594 286.90045166 287.58013916 288.24029541 288.839904785 289.280334473 289.530334473 289.559631348 289.429748535 289.299865723 289.58013916 290.65045166 292.41998291 293.929748535 293.960021973 292.09967041 289.250061035 286.660217285 280.16998291 280.91998291 281.290100098 281.16998291 280.84967041 280.570373535 280.33013916 280.059631348 279.860412598 279.799865723 279.820373535 279.860412598 280.049865723 280.370178223 280.40045166 279.589904785 277.870178223 275.080474854 275.430084229 275.699615479 275.769927979 275.519927979 275.100006104 274.819732666 274.779693604 274.840240479 274.809967041 274.630279541 274.220123291 273.550201416 272.779693604 272.069732666 271.399810791 270.420318604 266.389770508 266.479614258 266.599731445 266.860473633 267.16027832 267.33996582 267.420043945 267.41027832 267.349731445 267.26965332 267.120239258 266.719848633 265.899536133 264.76965332 263.580200195 262.490356445 261.330200195 255.27003479 255.960464478 256.409667969 256.659667969 256.869628906 257.140136719 257.420410156 257.569824219 257.550292969 257.319824219 256.850097656 256.060058594 254.960464478 253.720230103 252.43019104 251.069839478 249.600112915 239.890045166 240.059967041 240.149810791 240.260162354 240.380279541 240.550201416 240.739654541 240.859771729 240.840240479 240.760162354 240.649810791 240.309967041 239.540435791 238.399810791 237.090240479 235.680084229 234.119537354 230.730102539 230.859985352 230.719848633 230.520141602 230.420043945 230.42980957 230.50012207 230.580200195 230.650024414 230.67980957 230.630004883 230.409790039 229.850219727 228.889770508 227.690063477 226.469848633 225.25012207 220.539978027 220.640075684 220.380065918 220.019958496 219.799987793 219.719909668 219.67010498 219.709899902 219.83001709 219.870056152 219.719909668 219.430114746 219.100036621 218.610046387 217.809997559 216.910095215 216.209899902 208.939865112 208.72013855 208.609786987 208.530197144 208.419845581 208.240158081 208.030197144 207.839767456 207.760177612 207.749923706 207.740158081 207.72013855 207.820236206 208.180099487 208.780197144 209.47013855 210.089767456 197.619644165 196.069839478 194.78956604 193.93019104 193.409683228 193.03956604 192.749526978 192.60987854 192.619644165 192.729995728 192.920425415 193.529800415 194.810073853 196.619644165 198.43019104 199.960464478 201.470230103 198.460189819 197.000228882 195.700424194 194.639877319 193.859603882 193.340072632 193.029525757 192.920150757 192.939682007 193.059799194 193.269760132 193.660385132 194.380111694 195.529525757 197.149642944 199.109603882 201.229721069 205.879959106 205.129959106 204.669998169 204.469802856 204.339920044 204.250076294 204.219802856 204.27986145 204.299880981 204.250076294 204.1900177 204.230056763 204.359939575 204.589920044 204.989822388 205.560134888 206.259841919 218.489898682 218.020172119 217.500152588 216.960113525 216.600250244 216.460113525 216.389801025 216.279937744 216.21987915 216.400054932 216.71987915 216.900054932 216.71987915 216.239898682 215.6300354 215.080230713 214.690093994 219.169647217 218.930389404 218.970428467 219.320037842 219.669647217 219.749725342 219.749725342 219.909881592 220.100311279 220.029998779 219.619842529 219.260467529 219.339569092 219.829803467 220.360076904 220.629608154 220.610076904 228.730316162 228.400238037 227.890472412 227.070159912 226.2996521 226.009613037 226.020355225 225.860198975 225.520355225 225.629730225 226.5496521 227.719573975 228.429534912 228.740081787 229.35043335 230.4402771 231.390472412 295.789215088 295.750152588 296.129058838 296.800933838 297.390777588 297.970855713 298.609527588 299.050933838 299.060699463 299.080230713 299.910308838 301.589996338 302.980621338 302.679840088 300.300933838 297.000152588 294.300933838 291.579589844 292.259277344 292.800292969 293.040527344 293.190917969 293.669433594 294.409667969 294.810058594 294.710449219 294.909667969 296.239746094 298.390136719 299.970214844 299.710449219 297.479980469 294.380371094 291.790527344 287.610412598 288.280334473 288.790100098 289.219787598 289.58013916 289.790100098 289.799865723 289.59967041 289.379943848 289.65045166 290.820373535 292.65045166 294.120178223 294.059631348 292.24029541 289.41998291 286.710021973 280.120178223 280.799865723 281.15045166 281.160217285 280.979553223 280.729553223 280.429748535 280.129943848 279.929748535 279.879943848 279.860412598 279.879943848 280.120178223 280.519592285 280.589904785 279.799865723 278.120178223 274.859771729 275.250396729 275.649810791 275.800201416 275.529693604 275.050201416 274.720123291 274.670318604 274.750396729 274.729888916 274.540435791 274.130279541 273.529693604 272.880279541 272.260162354 271.580474854 270.540435791 266.380004883 266.420043945 266.57043457 266.870239258 267.149536133 267.330200195 267.389770508 267.360473633 267.229614258 267.099731445 267.00012207 266.719848633 266.040161133 264.979614258 263.809692383 262.700317383 261.50012207 255.630386353 256.239746094 256.579589844 256.770019531 256.979980469 257.249511719 257.510253906 257.659667969 257.649902344 257.449707031 257.020019531 256.270019531 255.210464478 253.970230103 252.68019104 251.35987854 249.960464478 240.050201416 240.269927979 240.420318604 240.559967041 240.680084229 240.830474854 241.019927979 241.130279541 241.069732666 240.909576416 240.720123291 240.359771729 239.630279541 238.550201416 237.290435791 235.939849854 234.449615479 230.920043945 231.029907227 230.900024414 230.719848633 230.650024414 230.710083008 230.799926758 230.870239258 230.889770508 230.870239258 230.75012207 230.469848633 229.900024414 228.989868164 227.819946289 226.600219727 225.409790039 220.739929199 220.769958496 220.469909668 220.130065918 219.92010498 219.799987793 219.709899902 219.739929199 219.880065918 219.949890137 219.799987793 219.519958496 219.219909668 218.75994873 217.949890137 216.999938965 216.279968262 208.800216675 208.519943237 208.390060425 208.3099823 208.209884644 208.070236206 207.859786987 207.680099487 207.600021362 207.640060425 207.729904175 207.830001831 207.979904175 208.300216675 208.839767456 209.519943237 210.14982605 197.19972229 195.630386353 194.409683228 193.60987854 193.100112915 192.739761353 192.460464478 192.35987854 192.409683228 192.460464478 192.579605103 193.140151978 194.439956665 196.329605103 198.229995728 199.84034729 201.369644165 198.460189819 197.040267944 195.750228882 194.679916382 193.870346069 193.319564819 192.990463257 192.859603882 192.899642944 193.080307007 193.359603882 193.769760132 194.380111694 195.340072632 196.740463257 198.590072632 200.750228882 205.790115356 205.069900513 204.660232544 204.480056763 204.390213013 204.339920044 204.379959106 204.489822388 204.509841919 204.390213013 204.199783325 204.080154419 204.109939575 204.310134888 204.730056763 205.330154419 206.069900513 218.360015869 217.860015869 217.310211182 216.779937744 216.440093994 216.279937744 216.179840088 216.069976807 216.029937744 216.190093994 216.449859619 216.600250244 216.500152588 216.170074463 215.619781494 214.980133057 214.500152588 219.260467529 219.060272217 219.190155029 219.579803467 219.869842529 219.909881592 219.890350342 220.049530029 220.230194092 220.140350342 219.749725342 219.419647217 219.510467529 220.010467529 220.589569092 220.940155029 220.909881592 228.730316162 228.339691162 227.730316162 226.900238037 226.219573975 225.990081787 225.9402771 225.669769287 225.310394287 225.509613037 226.480316162 227.650238037 228.339691162 228.629730225 229.1902771 230.160003662 230.969573975 295.730621338 295.640777588 296.029449463 296.779449463 297.379058838 297.789215088 298.349761963 298.980621338 299.310699463 299.490386963 300.230621338 301.789215088 303.250152588 303.179840088 301.070465088 297.849761963 294.929840088 291.169433594 291.720214844 292.370605469 292.810058594 293.060058594 293.560058594 294.380371094 294.929199219 294.899902344 294.999511719 296.220214844 298.429199219 300.229980469 300.269042969 298.300292969 295.319824219 292.540527344 288.519592285 289.339904785 289.75982666 289.929748535 289.950256348 289.929748535 289.889709473 289.750061035 289.559631348 289.790100098 290.929748535 292.799865723 294.34967041 294.440490723 292.790100098 290.120178223 287.339904785 280.09967041 280.65045166 280.969787598 281.110412598 281.110412598 280.910217285 280.519592285 280.15045166 279.950256348 279.889709473 279.84967041 279.889709473 280.190490723 280.639709473 280.710021973 279.929748535 278.360412598 274.720123291 275.109771729 275.540435791 275.680084229 275.390045166 274.899810791 274.580474854 274.529693604 274.580474854 274.550201416 274.390045166 274.059967041 273.580474854 273.040435791 272.460357666 271.729888916 270.659576416 266.32043457 266.450317383 266.700317383 267.01965332 267.229614258 267.33996582 267.399536133 267.389770508 267.25012207 267.080200195 266.969848633 266.790161133 266.229614258 265.25012207 264.080200195 262.920043945 261.670043945 255.920425415 256.380371094 256.600097656 256.789550781 257.020019531 257.279785156 257.510253906 257.659667969 257.670410156 257.510253906 257.109863281 256.409667969 255.420425415 254.220230103 252.960464478 251.68019104 250.300308228 240.290435791 240.580474854 240.750396729 240.869537354 240.939849854 241.040435791 241.220123291 241.350006104 241.290435791 241.080474854 240.809967041 240.409576416 239.729888916 238.710357666 237.489654541 236.189849854 234.769927979 231.109985352 231.25012207 231.150024414 230.989868164 230.92980957 230.969848633 231.020141602 231.060180664 231.080200195 231.029907227 230.870239258 230.540161133 229.969848633 229.109985352 227.969848633 226.739868164 225.569946289 220.900085449 220.850036621 220.570007324 220.279968262 220.100036621 219.959899902 219.809997559 219.779968262 219.900085449 219.969909668 219.83001709 219.559997559 219.289978027 218.870056152 218.090026855 217.110046387 216.33001709 208.609786987 208.249923706 208.050216675 207.950119019 207.879806519 207.789962769 207.64982605 207.490158081 207.430099487 207.519943237 207.680099487 207.859786987 208.050216675 208.370040894 208.89982605 209.5599823 210.189865112 196.84034729 195.439956665 194.420425415 193.689956665 193.09034729 192.569839478 192.220230103 192.130386353 192.210464478 192.249526978 192.35987854 192.920425415 194.239761353 196.10987854 198.02003479 199.640151978 201.19972229 198.399642944 196.899642944 195.559799194 194.490463257 193.779525757 193.349838257 193.099838257 192.950424194 192.950424194 193.109603882 193.380111694 193.759994507 194.279525757 195.099838257 196.349838257 198.099838257 200.250228882 205.649978638 205.060134888 204.739822388 204.569900513 204.419998169 204.339920044 204.410232544 204.60017395 204.699783325 204.569900513 204.310134888 204.069900513 203.969802856 204.060134888 204.410232544 205.009841919 205.790115356 218.389801025 217.739898682 217.060211182 216.509918213 216.270172119 216.239898682 216.199859619 216.060211182 215.949859619 216.020172119 216.21987915 216.3800354 216.409820557 216.210113525 215.739898682 215.080230713 214.54019165 219.260467529 219.159881592 219.400115967 219.810272217 220.020233154 220.010467529 220.029998779 220.239959717 220.409881592 220.289764404 219.930389404 219.659881592 219.730194092 220.150115967 220.709686279 221.089569092 221.060272217 228.679534912 228.160003662 227.419769287 226.650238037 226.150238037 225.969573975 225.810394287 225.429534912 225.089691162 225.339691162 226.310394287 227.419769287 228.079925537 228.419769287 229.009613037 229.95980835 230.730316162 295.949462891 296.000244141 296.289306641 297.060791016 297.879150391 298.470947266 299.150634766 299.910400391 300.220947266 299.949462891 300.230712891 302.260009766 305.349853516 307.250244141 306.490478516 303.920166016 301.410400391 291.179931641 291.699462891 292.039306641 292.640869141 293.390869141 294.109619141 294.709228516 295.060791016 295.039306641 295.010009766 295.840087891 298.150634766 301.289306641 303.539306641 303.609619141 301.679931641 299.109619141 286.670776367 288.000854492 289.239135742 290.250854492 290.600463867 290.319213867 290.039916992 290.170776367 290.420776367 290.559448242 291.170776367 292.940307617 295.450073242 297.170776367 297.000854492 295.250854492 293.000854492 280.589294434 281.329528809 281.819763184 281.970153809 281.819763184 281.509216309 281.120544434 280.720153809 280.380310059 280.319763184 280.579528809 281.050231934 281.649841309 282.329528809 282.800231934 282.550231934 281.390075684 276.379730225 276.259613037 275.770355225 275.2996521 275.0496521 274.8699646 274.629730225 274.410003662 274.379730225 274.480316162 274.429534912 274.150238037 273.749847412 273.469573975 273.2996521 273.009613037 272.310394287 267.699645996 268.029724121 268.329528809 268.559997559 268.600036621 268.489685059 268.359802246 268.269958496 268.180114746 268.069763184 268.050231934 268.050231934 267.829528809 267.180114746 266.170349121 265.010192871 263.689880371 256.239685059 256.689880371 256.850036621 256.809997559 256.819763184 256.989685059 257.239685059 257.399841309 257.470153809 257.500427246 257.460388184 257.199645996 256.680114746 255.909606934 254.880310059 253.579528809 252.090270996 240.750076294 241.179763794 241.489822388 241.759841919 241.839920044 241.679763794 241.509841919 241.520095825 241.629959106 241.640213013 241.52986145 241.290115356 240.870193481 240.230056763 239.35017395 238.27986145 237.020095825 231.859939575 231.969802856 231.949783325 231.870193481 231.770095825 231.699783325 231.679763794 231.710037231 231.710037231 231.640213013 231.52986145 231.399978638 231.120193481 230.549880981 229.6900177 228.6900177 227.649978638 221.139938354 221.099899292 220.949996948 220.670211792 220.320114136 219.999801636 219.800094604 219.749801636 219.800094604 219.920211792 220.110153198 220.289840698 220.369918823 220.269821167 219.990036011 219.550094604 218.900192261 208.45980835 207.610198975 207.059906006 206.749847412 206.610198975 206.539886475 206.450042725 206.289886475 206.150238037 206.1199646 206.180023193 206.309906006 206.499847412 206.860198975 207.450042725 208.260101318 209.169769287 196.11000061 194.970352173 194.19984436 193.529922485 192.819961548 192.239883423 191.989883423 192.010391235 192.069961548 191.970352173 191.749649048 191.68031311 192.069961548 193.100234985 194.650039673 196.390274048 198.100234985 198.579879761 197.199996948 196.009567261 195.190231323 194.850387573 194.810348511 194.799606323 194.730270386 194.690231323 194.749801636 194.850387573 194.930465698 195.049606323 195.289840698 195.730270386 196.530075073 197.879684448 206.18019104 205.879898071 205.750015259 205.640151978 205.43019104 205.209976196 205.149917603 205.259780884 205.350112915 205.310073853 205.209976196 205.149917603 205.140151978 205.120132446 205.169937134 205.390151978 205.85987854 218.179840088 217.71987915 217.100250244 216.610015869 216.440093994 216.489898682 216.46987915 216.239898682 215.980133057 215.949859619 216.1300354 216.369781494 216.54019165 216.589996338 216.480133057 216.239898682 216.020172119 220.219909668 220.090026855 220.179870605 220.34979248 220.429870605 220.429870605 220.520202637 220.770202637 221.00994873 220.969909668 220.719909668 220.529968262 220.59979248 220.840026855 221.130065918 221.409851074 221.730163574 230.119613647 229.619613647 229.079574585 228.539535522 228.060043335 227.670394897 227.350082397 226.949691772 226.590316772 226.65965271 227.270004272 228.06980896 228.670394897 229.199691772 230.000473022 231.06980896 231.970199585 295.310791016 295.549072266 296.150634766 297.099853516 297.929931641 298.619384766 299.490478516 300.359619141 300.470947266 299.830322266 299.820556641 301.670166016 304.709228516 306.679931641 306.140869141 303.830322266 301.429931641 291.260009766 291.990478516 292.539306641 293.119384766 293.760009766 294.379150391 294.990478516 295.349853516 295.240478516 295.000244141 295.650634766 297.840087891 300.929931641 303.299072266 303.660400391 301.980712891 299.320556641 287.700073242 289.000854492 290.100463867 290.860229492 290.899291992 290.409057617 290.170776367 290.420776367 290.659057617 290.639526367 291.119995117 292.889526367 295.450073242 297.190307617 297.100463867 295.580932617 293.590698242 280.909606934 281.370544434 281.599060059 281.700622559 281.679138184 281.499450684 281.169372559 280.770935059 280.460388184 280.440856934 280.739685059 281.249450684 281.940856934 282.720153809 283.270935059 283.020935059 281.790466309 276.020355225 275.900238037 275.579925537 275.2996521 275.1199646 274.919769287 274.640472412 274.410003662 274.410003662 274.499847412 274.480316162 274.28012085 273.999847412 273.78012085 273.669769287 273.4402771 272.7996521 267.609802246 267.920349121 268.210388184 268.449645996 268.519958496 268.460388184 268.359802246 268.290466309 268.210388184 268.109802246 268.100036621 268.140075684 267.949645996 267.279724121 266.220153809 265.059997559 263.809997559 256.250427246 256.699645996 256.880310059 256.880310059 256.880310059 257.010192871 257.189880371 257.319763184 257.420349121 257.460388184 257.399841309 257.119567871 256.619567871 255.920349121 254.970153809 253.710388184 252.239685059 240.899978638 241.250076294 241.469802856 241.679763794 241.719802856 241.580154419 241.469802856 241.509841919 241.609939575 241.620193481 241.520095825 241.310134888 240.949783325 240.339920044 239.500076294 238.469802856 237.219802856 231.949783325 232.040115356 232.02986145 231.929763794 231.790115356 231.649978638 231.609939575 231.649978638 231.710037231 231.719802856 231.660232544 231.520095825 231.219802856 230.649978638 229.819900513 228.839920044 227.790115356 221.220016479 221.179977417 220.999801636 220.690231323 220.329879761 220.030075073 219.860153198 219.789840698 219.800094604 219.880172729 220.039840698 220.260055542 220.429977417 220.400192261 220.119918823 219.619918823 218.929977417 208.229827881 207.479827881 207.039886475 206.840179443 206.760101318 206.680023193 206.53012085 206.360198975 206.260101318 206.240081787 206.240081787 206.249847412 206.360198975 206.689788818 207.320159912 208.180023193 209.160003662 196.029922485 194.900039673 194.050430298 193.19984436 192.419570923 191.959609985 191.93031311 192.069961548 192.03968811 191.760391235 191.499649048 191.550430298 192.069961548 193.119766235 194.640274048 196.419570923 198.19984436 198.379684448 197.039840698 195.909957886 195.140426636 194.789840698 194.699996948 194.659957886 194.610153198 194.619918823 194.719528198 194.829879761 194.909957886 195.020309448 195.259567261 195.610153198 196.169723511 197.240036011 206.319839478 206.120132446 206.060073853 205.950210571 205.660171509 205.319839478 205.169937134 205.229995728 205.310073853 205.299819946 205.240249634 205.220230103 205.160171509 205.040054321 205.000015259 205.229995728 205.750015259 217.900054932 217.279937744 216.589996338 216.150054932 216.100250244 216.259918213 216.29019165 216.069976807 215.819976807 215.850250244 216.159820557 216.509918213 216.679840088 216.6300354 216.46987915 216.299957275 216.199859619 220.34979248 220.320007324 220.340026855 220.380065918 220.409851074 220.449890137 220.59979248 220.909851074 221.179870605 221.179870605 220.880065918 220.570007324 220.489929199 220.690124512 221.040222168 221.429870605 221.779968262 230.250473022 229.72996521 229.270004272 228.840316772 228.329574585 227.869613647 227.46043396 227.000473022 226.529769897 226.470199585 227.079574585 228.029769897 228.80027771 229.359848022 230.079574585 231.100082397 232.060043335 294.330322266 294.990478516 296.170166016 297.500244141 298.449462891 299.129150391 299.920166016 300.570556641 300.340087891 299.449462891 299.379150391 301.199462891 304.080322266 305.869384766 305.420166016 303.480712891 301.449462891 292.070556641 293.119384766 293.779541016 294.240478516 294.539306641 294.820556641 295.199462891 295.429931641 295.170166016 294.830322266 295.470947266 297.640869141 300.629150391 302.900634766 303.330322266 301.830322266 299.199462891 289.110229492 290.129760742 290.850463867 291.250854492 291.030151367 290.510620117 290.369995117 290.639526367 290.670776367 290.420776367 290.860229492 292.799682617 295.450073242 297.170776367 297.110229492 295.850463867 294.270385742 281.009216309 281.229919434 281.309997559 281.470153809 281.620544434 281.569763184 281.270935059 280.839294434 280.479919434 280.419372559 280.720153809 281.329528809 282.159606934 283.050231934 283.620544434 283.339294434 282.040466309 275.669769287 275.579925537 275.429534912 275.2996521 275.150238037 274.890472412 274.560394287 274.379730225 274.45980835 274.60043335 274.610198975 274.419769287 274.1902771 274.060394287 274.03012085 273.890472412 273.270355225 267.500427246 267.800231934 268.069763184 268.300231934 268.399841309 268.369567871 268.319763184 268.319763184 268.290466309 268.220153809 268.189880371 268.199645996 267.989685059 267.300231934 266.260192871 265.130310059 263.979919434 256.260192871 256.710388184 256.920349121 256.970153809 256.970153809 257.050231934 257.180114746 257.290466309 257.359802246 257.409606934 257.319763184 257.029724121 256.559997559 255.939880371 255.050231934 253.819763184 252.380310059 240.980056763 241.250076294 241.410232544 241.540115356 241.549880981 241.4400177 241.379959106 241.4400177 241.520095825 241.509841919 241.419998169 241.27986145 240.969802856 240.429763794 239.649978638 238.629959106 237.379959106 232.000076294 232.129959106 232.140213013 232.009841919 231.810134888 231.629959106 231.540115356 231.569900513 231.660232544 231.750076294 231.77986145 231.669998169 231.359939575 230.799880981 230.009841919 229.040115356 227.969802856 221.300094604 221.280075073 221.110153198 220.800094604 220.460250854 220.190231323 220.010055542 219.929977417 219.909957886 219.920211792 220.019821167 220.220016479 220.449996948 220.519821167 220.280075073 219.749801636 219.019821167 208.070159912 207.400238037 207.03012085 206.900238037 206.860198975 206.749847412 206.550140381 206.389984131 206.3699646 206.419769287 206.410003662 206.340179443 206.349945068 206.610198975 207.200042725 208.079925537 209.150238037 195.819961548 194.640274048 193.650039673 192.659805298 191.869766235 191.569961548 191.730117798 191.890274048 191.640274048 191.169570923 190.940078735 191.220352173 191.959609985 193.079727173 194.640274048 196.499649048 198.34046936 198.299606323 197.119918823 196.159957886 195.469528198 195.060348511 194.829879761 194.669723511 194.600387573 194.709762573 194.919723511 195.039840698 194.999801636 194.999801636 195.169723511 195.430465698 195.789840698 196.589645386 206.43019104 206.250015259 206.200210571 206.089859009 205.839859009 205.540054321 205.390151978 205.370132446 205.310073853 205.160171509 205.080093384 205.120132446 205.10987854 205.000015259 204.93019104 205.160171509 205.720230103 217.509918213 216.819976807 216.139801025 215.730133057 215.699859619 215.900054932 216.029937744 215.96987915 215.889801025 216.04019165 216.389801025 216.71987915 216.779937744 216.610015869 216.389801025 216.259918213 216.239898682 220.779968262 220.84979248 220.829772949 220.750183105 220.699890137 220.699890137 220.790222168 221.020202637 221.250183105 221.239929199 220.909851074 220.489929199 220.320007324 220.520202637 221.000183105 221.529968262 221.960144043 230.06980896 229.56980896 229.199691772 228.810043335 228.270004272 227.750473022 227.340316772 226.899887085 226.40965271 226.31980896 226.97996521 228.079574585 229.020004272 229.590316772 230.14012146 230.970199585 231.869613647 294.369384766 295.359619141 296.810791016 298.289306641 299.209228516 299.640869141 300.019775391 300.240478516 299.830322266 299.160400391 299.560791016 301.670166016 304.390869141 305.810791016 305.220947266 303.439697266 301.599853516 294.070556641 295.109619141 295.549072266 295.679931641 295.560791016 295.410400391 295.449462891 295.459228516 295.099853516 294.779541016 295.570556641 297.869384766 300.769775391 302.799072266 303.039306641 301.500244141 298.849853516 290.969604492 291.450073242 291.580932617 291.549682617 291.180541992 290.709838867 290.639526367 290.809448242 290.610229492 290.260620117 290.930541992 293.159057617 295.869995117 297.369995117 297.139526367 295.959838867 294.610229492 280.999450684 281.050231934 281.110778809 281.380310059 281.679138184 281.690856934 281.360778809 280.880310059 280.460388184 280.329528809 280.649841309 281.409606934 282.419372559 283.380310059 283.890075684 283.520935059 282.120544434 275.28012085 275.259613037 275.219573975 275.150238037 275.03012085 274.749847412 274.4402771 274.320159912 274.469573975 274.650238037 274.6199646 274.410003662 274.219573975 274.219573975 274.339691162 274.289886475 273.610198975 267.420349121 267.739685059 267.989685059 268.189880371 268.290466309 268.290466309 268.269958496 268.319763184 268.359802246 268.340270996 268.300231934 268.229919434 267.960388184 267.290466309 266.309997559 265.279724121 264.220153809 256.250427246 256.689880371 256.930114746 256.989685059 257.010192871 257.069763184 257.159606934 257.250427246 257.309997559 257.340270996 257.239685059 256.970153809 256.550231934 255.970153809 255.090270996 253.869567871 252.489685059 241.020095825 241.259841919 241.390213013 241.489822388 241.460037231 241.35017395 241.27986145 241.310134888 241.339920044 241.319900513 241.290115356 241.199783325 240.969802856 240.480056763 239.739822388 238.739822388 237.480056763 232.060134888 232.239822388 232.270095825 232.109939575 231.870193481 231.6900177 231.580154419 231.549880981 231.60017395 231.699783325 231.790115356 231.739822388 231.469802856 230.949783325 230.210037231 229.250076294 228.140213013 221.360153198 221.349899292 221.199996948 220.920211792 220.610153198 220.349899292 220.170211792 220.070114136 220.050094604 220.030075073 220.039840698 220.179977417 220.440231323 220.610153198 220.460250854 219.940231323 219.179977417 207.970062256 207.300140381 206.900238037 206.769866943 206.740081787 206.599945068 206.389984131 206.260101318 206.340179443 206.479827881 206.519866943 206.450042725 206.419769287 206.599945068 207.1199646 207.999847412 209.139984131 195.61000061 194.440078735 193.43031311 192.409805298 191.600234985 191.310195923 191.43031311 191.44984436 191.02015686 190.480117798 190.419570923 190.970352173 191.869766235 193.029922485 194.600234985 196.53968811 198.459609985 198.259567261 197.289840698 196.530075073 195.990036011 195.619918823 195.350387573 195.100387573 194.999801636 195.140426636 195.390426636 195.409957886 195.159957886 194.949996948 195.009567261 195.219528198 195.469528198 196.100387573 206.299819946 205.970230103 205.799819946 205.669937134 205.490249634 205.350112915 205.350112915 205.370132446 205.189956665 204.890151978 204.740249634 204.830093384 204.959976196 204.93019104 204.890151978 205.120132446 205.669937134 217.389801025 216.839996338 216.310211182 215.96987915 215.909820557 216.049957275 216.270172119 216.429840088 216.560211182 216.730133057 216.940093994 217.049957275 216.920074463 216.6300354 216.350250244 216.21987915 216.230133057 221.199890137 221.279968262 221.219909668 221.090026855 220.980163574 220.869812012 220.75994873 220.770202637 220.820007324 220.739929199 220.42010498 220.090026855 220.049987793 220.400085449 221.000183105 221.630065918 222.110046387 229.72996521 229.239730835 228.869613647 228.449691772 227.899887085 227.40965271 227.090316772 226.81980896 226.579574585 226.699691772 227.449691772 228.539535522 229.359848022 229.760238647 230.119613647 230.750473022 231.520004272 296.420166016 297.260009766 298.250244141 299.289306641 299.820556641 299.779541016 299.629150391 299.490478516 299.170166016 299.109619141 300.299072266 302.859619141 305.439697266 306.439697266 305.549072266 303.679931641 301.699462891 296.650634766 297.119384766 296.970947266 296.709228516 296.310791016 295.879150391 295.650634766 295.510009766 295.179931641 295.039306641 296.090087891 298.599853516 301.510009766 303.299072266 303.199462891 301.349853516 298.480712891 292.959838867 292.780151367 292.289916992 291.899291992 291.430541992 291.010620117 290.930541992 290.969604492 290.690307617 290.569213867 291.690307617 294.229370117 296.799682617 297.879760742 297.260620117 295.909057617 294.489135742 281.069763184 281.009216309 281.050231934 281.360778809 281.690856934 281.690856934 281.360778809 280.909606934 280.530700684 280.419372559 280.809997559 281.729919434 282.849060059 283.770935059 284.120544434 283.620544434 282.110778809 274.789886475 274.860198975 274.890472412 274.890472412 274.85043335 274.660003662 274.400238037 274.320159912 274.450042725 274.5496521 274.429534912 274.200042725 274.140472412 274.35043335 274.660003662 274.640472412 273.85043335 267.359802246 267.710388184 267.909606934 268.059997559 268.149841309 268.170349121 268.170349121 268.229919434 268.319763184 268.340270996 268.300231934 268.189880371 267.880310059 267.250427246 266.390075684 265.479919434 264.460388184 256.210388184 256.640075684 256.869567871 256.939880371 256.949645996 257.019958496 257.119567871 257.180114746 257.239685059 257.269958496 257.199645996 256.970153809 256.569763184 255.989685059 255.100036621 253.909606934 252.600036621 241.089920044 241.35017395 241.480056763 241.569900513 241.509841919 241.35017395 241.219802856 241.1900177 241.1900177 241.199783325 241.210037231 241.160232544 240.9400177 240.489822388 239.770095825 238.759841919 237.520095825 232.109939575 232.330154419 232.359939575 232.179763794 231.960037231 231.810134888 231.710037231 231.629959106 231.60017395 231.679763794 231.770095825 231.750076294 231.520095825 231.049880981 230.339920044 229.410232544 228.27986145 221.360153198 221.349899292 221.210250854 220.949996948 220.679977417 220.440231323 220.249801636 220.150192261 220.139938354 220.119918823 220.090133667 220.159957886 220.409957886 220.690231323 220.639938354 220.170211792 219.400192261 207.860198975 207.139984131 206.639984131 206.439788818 206.400238037 206.300140381 206.1199646 206.059906006 206.200042725 206.389984131 206.470062256 206.479827881 206.510101318 206.680023193 207.130218506 207.990081787 209.169769287 195.52015686 194.480117798 193.650039673 192.749649048 191.909805298 191.43031311 191.310195923 191.100234985 190.59046936 190.169570923 190.310195923 191.010391235 191.890274048 192.919570923 194.440078735 196.43031311 198.440078735 198.100387573 197.240036011 196.610153198 196.199996948 195.980270386 195.799606323 195.600387573 195.480270386 195.589645386 195.789840698 195.719528198 195.289840698 194.919723511 194.919723511 195.129684448 195.329879761 195.850387573 205.990249634 205.450210571 205.10987854 204.870132446 204.68019104 204.649917603 204.850112915 205.029800415 204.910171509 204.589859009 204.410171509 204.549819946 204.750015259 204.77003479 204.77003479 205.009780884 205.549819946 217.690093994 217.400054932 217.110015869 216.889801025 216.810211182 216.920074463 217.199859619 217.509918213 217.690093994 217.699859619 217.6300354 217.440093994 217.110015869 216.710113525 216.409820557 216.259918213 216.239898682 221.079772949 220.989929199 220.840026855 220.699890137 220.570007324 220.380065918 220.119812012 219.940124512 219.829772949 219.67010498 219.449890137 219.42010498 219.75994873 220.360046387 221.049987793 221.67010498 222.17010498 229.89012146 229.430160522 228.989730835 228.510238647 227.989730835 227.539535522 227.289535522 227.239730835 227.380355835 227.869613647 228.689926147 229.449691772 229.770004272 229.81980896 230.020004272 230.560043335 231.180160522 299.840087891 299.959228516 299.939697266 300.140869141 300.119384766 299.650634766 299.109619141 298.789306641 298.730712891 299.269775391 301.070556641 303.890869141 306.310791016 306.970947266 305.810791016 303.769775391 301.510009766 298.609619141 298.140869141 297.349853516 296.849853516 296.400634766 295.890869141 295.609619141 295.560791016 295.439697266 295.570556641 296.869384766 299.590087891 302.570556641 304.209228516 303.750244141 301.449462891 298.220947266 294.459838867 293.680541992 292.770385742 292.170776367 291.670776367 291.260620117 291.149291992 291.139526367 291.010620117 291.280151367 292.830932617 295.489135742 297.760620117 298.350463867 297.389526367 295.809448242 294.129760742 281.229919434 281.069763184 281.030700684 281.280700684 281.540466309 281.550231934 281.309997559 281.009216309 280.770935059 280.759216309 281.220153809 282.200622559 283.309997559 284.110778809 284.270935059 283.640075684 282.089294434 274.2996521 274.499847412 274.610198975 274.6902771 274.749847412 274.669769287 274.469573975 274.35043335 274.379730225 274.3699646 274.169769287 273.990081787 274.129730225 274.579925537 275.03012085 274.999847412 274.0496521 267.319763184 267.649841309 267.779724121 267.850036621 267.930114746 268.000427246 268.029724121 268.090270996 268.170349121 268.210388184 268.170349121 268.040466309 267.760192871 267.210388184 266.489685059 265.689880371 264.699645996 256.149841309 256.579528809 256.819763184 256.859802246 256.869567871 256.930114746 257.029724121 257.109802246 257.180114746 257.239685059 257.170349121 256.949645996 256.569763184 256.000427246 255.119567871 253.949645996 252.699645996 241.219802856 241.489822388 241.649978638 241.719802856 241.629959106 241.419998169 241.230056763 241.149978638 241.160232544 241.179763794 241.1900177 241.109939575 240.879959106 240.449783325 239.739822388 238.739822388 237.509841919 232.140213013 232.379959106 232.390213013 232.210037231 232.020095825 231.929763794 231.879959106 231.790115356 231.710037231 231.730056763 231.790115356 231.759841919 231.549880981 231.109939575 230.4400177 229.520095825 228.379959106 221.300094604 221.269821167 221.139938354 220.909957886 220.710250854 220.490036011 220.300094604 220.170211792 220.170211792 220.170211792 220.119918823 220.170211792 220.429977417 220.769821167 220.829879761 220.409957886 219.639938354 207.740081787 207.010101318 206.450042725 206.169769287 206.1199646 206.059906006 205.979827881 205.979827881 206.1199646 206.28012085 206.380218506 206.470062256 206.579925537 206.789886475 207.229827881 208.079925537 209.300140381 195.480117798 194.650039673 194.050430298 193.36000061 192.52015686 191.800430298 191.36000061 190.959609985 190.489883423 190.239883423 190.52015686 191.190078735 191.890274048 192.730117798 194.140274048 196.159805298 198.230117798 197.810348511 196.909957886 196.219528198 195.810348511 195.699996948 195.699996948 195.619918823 195.520309448 195.610153198 195.780075073 195.709762573 195.299606323 194.919723511 194.959762573 195.209762573 195.369918823 195.820114136 205.839859009 205.209976196 204.779800415 204.470230103 204.200210571 204.129898071 204.35987854 204.649917603 204.669937134 204.450210571 204.330093384 204.459976196 204.629898071 204.60987854 204.589859009 204.830093384 205.379898071 218.020172119 217.929840088 217.819976807 217.71987915 217.670074463 217.819976807 218.170074463 218.500152588 218.569976807 218.360015869 218.020172119 217.639801025 217.21987915 216.779937744 216.440093994 216.29019165 216.250152588 220.369812012 219.989929199 219.699890137 219.529968262 219.42010498 219.270202637 219.060241699 218.92010498 218.810241699 218.679870605 218.630065918 218.949890137 219.650085449 220.469909668 221.150085449 221.699890137 222.210144043 230.939926147 230.560043335 230.090316772 229.590316772 229.100082397 228.619613647 228.260238647 228.170394897 228.500473022 229.220199585 229.939926147 230.199691772 229.949691772 229.689926147 229.899887085 230.470199585 230.96043396 302.760009766 301.959228516 301.000244141 300.510009766 300.150634766 299.539306641 298.959228516 298.699462891 298.820556641 299.609619141 301.529541016 304.320556641 306.580322266 307.029541016 305.750244141 303.609619141 301.150634766 299.260009766 297.959228516 296.849853516 296.349853516 295.970947266 295.549072266 295.480712891 295.760009766 295.980712891 296.320556641 297.689697266 300.439697266 303.400634766 304.900634766 304.140869141 301.490478516 298.000244141 295.110229492 293.899291992 292.819213867 292.190307617 291.719604492 291.389526367 291.350463867 291.420776367 291.479370117 292.010620117 293.700073242 296.229370117 298.180541992 298.539916992 297.500854492 295.819213867 293.850463867 281.309997559 281.059997559 280.919372559 281.079528809 281.339294434 281.440856934 281.349060059 281.210388184 281.079528809 281.110778809 281.589294434 282.520935059 283.530700684 284.169372559 284.220153809 283.569763184 282.050231934 273.969573975 274.2996521 274.490081787 274.6199646 274.749847412 274.730316162 274.499847412 274.28012085 274.230316162 274.179534912 274.020355225 273.950042725 274.259613037 274.890472412 275.390472412 275.270355225 274.169769287 267.300231934 267.569763184 267.590270996 267.590270996 267.680114746 267.809997559 267.899841309 267.970153809 268.040466309 268.050231934 268.000427246 267.880310059 267.630310059 267.199645996 266.600036621 265.880310059 264.880310059 256.100036621 256.579528809 256.819763184 256.859802246 256.840270996 256.890075684 256.989685059 257.090270996 257.189880371 257.220153809 257.140075684 256.890075684 256.529724121 256.000427246 255.170349121 254.040466309 252.790466309 241.35017395 241.580154419 241.730056763 241.810134888 241.719802856 241.489822388 241.27986145 241.199783325 241.219802856 241.239822388 241.199783325 241.069900513 240.830154419 240.419998169 239.730056763 238.710037231 237.500076294 232.149978638 232.370193481 232.370193481 232.210037231 232.060134888 232.02986145 232.009841919 231.919998169 231.830154419 231.819900513 231.839920044 231.799880981 231.60017395 231.199783325 230.560134888 229.649978638 228.520095825 221.210250854 221.190231323 221.070114136 220.900192261 220.760055542 220.599899292 220.380172729 220.210250854 220.170211792 220.190231323 220.159957886 220.210250854 220.470016479 220.860153198 220.999801636 220.639938354 219.889938354 207.689788818 207.019866943 206.470062256 206.189788818 206.1199646 206.110198975 206.099945068 206.130218506 206.220062256 206.320159912 206.400238037 206.519866943 206.680023193 206.900238037 207.340179443 208.229827881 209.490081787 195.400039673 194.62953186 194.159805298 193.61000061 192.800430298 191.940078735 191.27015686 190.779922485 190.400039673 190.300430298 190.650039673 191.260391235 191.84046936 192.560195923 193.869766235 195.84046936 197.93031311 197.499801636 196.560348511 195.730270386 195.169723511 195.030075073 195.150192261 195.209762573 195.169723511 195.249801636 195.440231323 195.459762573 195.150192261 194.879684448 194.969528198 195.249801636 195.419723511 195.850387573 206.060073853 205.479995728 205.140151978 204.879898071 204.580093384 204.370132446 204.450210571 204.669937134 204.709976196 204.540054321 204.459976196 204.560073853 204.649917603 204.540054321 204.450210571 204.68019104 205.240249634 217.960113525 217.869781494 217.770172119 217.710113525 217.739898682 218.000152588 218.429840088 218.759918213 218.699859619 218.330230713 217.909820557 217.560211182 217.199859619 216.770172119 216.409820557 216.250152588 216.230133057 219.650085449 219.049987793 218.619812012 218.429870605 218.360046387 218.310241699 218.290222168 218.360046387 218.440124512 218.440124512 218.520202637 218.969909668 219.790222168 220.619812012 221.250183105 221.75994873 222.329772949 232.30027771 232.039535522 231.64012146 231.199691772 230.699691772 230.06980896 229.399887085 228.989730835 229.130355835 229.72996521 230.260238647 230.199691772 229.720199585 229.47996521 229.850082397 230.500473022 230.850082397 303.869384766 302.420166016 301.029541016 300.330322266 300.000244141 299.599853516 299.279541016 299.230712891 299.400634766 300.029541016 301.689697266 304.279541016 306.490478516 306.920166016 305.570556641 303.349853516 300.869384766 298.959228516 297.349853516 296.269775391 295.830322266 295.519775391 295.299072266 295.629150391 296.349853516 296.820556641 297.109619141 298.240478516 300.709228516 303.439697266 304.740478516 303.769775391 301.010009766 297.619384766 295.129760742 293.719604492 292.610229492 291.989135742 291.639526367 291.539916992 291.700073242 291.909057617 292.020385742 292.500854492 294.010620117 296.280151367 298.100463867 298.520385742 297.619995117 295.920776367 293.700073242 281.200622559 280.870544434 280.679138184 280.839294434 281.220153809 281.499450684 281.540466309 281.429138184 281.290466309 281.319763184 281.749450684 282.589294434 283.489685059 284.040466309 284.030700684 283.380310059 281.929138184 273.910003662 274.329925537 274.539886475 274.640472412 274.730316162 274.660003662 274.360198975 274.060394287 273.990081787 274.03012085 273.990081787 274.0496521 274.4402771 275.089691162 275.5496521 275.339691162 274.169769287 267.329528809 267.529724121 267.460388184 267.420349121 267.519958496 267.689880371 267.800231934 267.890075684 267.949645996 267.930114746 267.840270996 267.699645996 267.519958496 267.189880371 266.680114746 266.000427246 264.970153809 256.149841309 256.670349121 256.920349121 256.930114746 256.869567871 256.909606934 257.019958496 257.149841309 257.250427246 257.269958496 257.119567871 256.819763184 256.460388184 256.010192871 255.260192871 254.149841309 252.840270996 241.359939575 241.540115356 241.679763794 241.77986145 241.719802856 241.500076294 241.310134888 241.259841919 241.290115356 241.290115356 241.199783325 241.049880981 240.830154419 240.4400177 239.739822388 238.710037231 237.509841919 232.149978638 232.310134888 232.299880981 232.199783325 232.120193481 232.10017395 232.080154419 232.000076294 231.899978638 231.870193481 231.890213013 231.859939575 231.6900177 231.319900513 230.710037231 229.819900513 228.699783325 221.139938354 221.130172729 221.039840698 220.929977417 220.849899292 220.720016479 220.490036011 220.280075073 220.229782104 220.249801636 220.220016479 220.269821167 220.530075073 220.920211792 221.099899292 220.820114136 220.139938354 207.729827881 207.160003662 206.70980835 206.450042725 206.349945068 206.320159912 206.300140381 206.329925537 206.380218506 206.430023193 206.490081787 206.599945068 206.740081787 206.919769287 207.3699646 208.320159912 209.660003662 195.27015686 194.400039673 193.86000061 193.319961548 192.550430298 191.650039673 190.909805298 190.400039673 190.119766235 190.140274048 190.569961548 191.209609985 191.86000061 192.600234985 193.850234985 195.68031311 197.68031311 197.310348511 196.459762573 195.560348511 194.850387573 194.610153198 194.749801636 194.879684448 194.900192261 194.980270386 195.180465698 195.209762573 194.940231323 194.690231323 194.780075073 195.070114136 195.310348511 195.829879761 206.410171509 205.939956665 205.740249634 205.620132446 205.370132446 205.069839478 204.950210571 204.990249634 204.919937134 204.709976196 204.600112915 204.689956665 204.729995728 204.589859009 204.459976196 204.620132446 205.129898071 217.560211182 217.360015869 217.199859619 217.119781494 217.199859619 217.580230713 218.139801025 218.489898682 218.3800354 217.960113525 217.610015869 217.420074463 217.190093994 216.79019165 216.400054932 216.230133057 216.210113525 219.469909668 218.799987793 218.329772949 218.159851074 218.119812012 218.09979248 218.159851074 218.400085449 218.650085449 218.770202637 218.889831543 219.250183105 219.92010498 220.59979248 221.17010498 221.75994873 222.449890137 233.020004272 232.869613647 232.600082397 232.22996521 231.699691772 230.939926147 230.000473022 229.220199585 228.97996521 229.289535522 229.699691772 229.739730835 229.520004272 229.55027771 230.090316772 230.670394897 230.789535522 303.429931641 301.849853516 300.529541016 299.910400391 299.750244141 299.699462891 299.689697266 299.789306641 299.859619141 300.160400391 301.439697266 303.849853516 306.160400391 306.730712891 305.310791016 302.980712891 300.519775391 298.510009766 297.080322266 296.160400391 295.640869141 295.299072266 295.359619141 296.090087891 297.019775391 297.400634766 297.369384766 298.090087891 300.160400391 302.539306641 303.560791016 302.470947266 299.900634766 296.959228516 294.989135742 293.600463867 292.489135742 291.830932617 291.629760742 291.809448242 292.190307617 292.409057617 292.369995117 292.610229492 293.840698242 295.930541992 297.809448242 298.450073242 297.670776367 295.869995117 293.420776367 280.929138184 280.569763184 280.399841309 280.669372559 281.229919434 281.669372559 281.739685059 281.559997559 281.349060059 281.399841309 281.829528809 282.630310059 283.460388184 283.960388184 283.909606934 283.200622559 281.720153809 273.999847412 274.469573975 274.629730225 274.640472412 274.629730225 274.499847412 274.179534912 273.860198975 273.820159912 273.95980835 274.0496521 274.150238037 274.499847412 275.060394287 275.4402771 275.1902771 274.0496521 267.399841309 267.540466309 267.449645996 267.409606934 267.510192871 267.619567871 267.689880371 267.760192871 267.840270996 267.829528809 267.699645996 267.510192871 267.340270996 267.090270996 266.640075684 265.979919434 264.920349121 256.290466309 256.809997559 257.019958496 256.989685059 256.909606934 256.939880371 257.059997559 257.199645996 257.309997559 257.309997559 257.100036621 256.750427246 256.399841309 256.029724121 255.350036621 254.220153809 252.819763184 241.230056763 241.370193481 241.540115356 241.679763794 241.669998169 241.480056763 241.339920044 241.310134888 241.35017395 241.339920044 241.239822388 241.10017395 240.890213013 240.500076294 239.770095825 238.719802856 237.509841919 232.140213013 232.219802856 232.199783325 232.169998169 232.179763794 232.179763794 232.140213013 232.02986145 231.929763794 231.890213013 231.910232544 231.910232544 231.77986145 231.4400177 230.839920044 229.960037231 228.870193481 221.070114136 221.059860229 220.999801636 220.940231323 220.889938354 220.780075073 220.570114136 220.380172729 220.340133667 220.360153198 220.340133667 220.329879761 220.550094604 220.909957886 221.130172729 220.929977417 220.349899292 207.840179443 207.360198975 206.95980835 206.700042725 206.53012085 206.410003662 206.329925537 206.320159912 206.349945068 206.400238037 206.499847412 206.6199646 206.729827881 206.860198975 207.309906006 208.340179443 209.78012085 195.19984436 194.159805298 193.489883423 192.919570923 192.18031311 191.329727173 190.61000061 190.159805298 189.970352173 190.09046936 190.560195923 191.279922485 192.03968811 192.86000061 194.03968811 195.68031311 197.550430298 197.219528198 196.579879761 195.759567261 194.969528198 194.610153198 194.709762573 194.909957886 194.990036011 195.060348511 195.159957886 195.100387573 194.749801636 194.430465698 194.440231323 194.740036011 195.089645386 195.789840698 206.589859009 206.089859009 205.939956665 205.939956665 205.759780884 205.43019104 205.189956665 205.100112915 204.939956665 204.689956665 204.589859009 204.720230103 204.810073853 204.700210571 204.540054321 204.620132446 205.02003479 217.21987915 216.96987915 216.779937744 216.690093994 216.830230713 217.339996338 218.009918213 218.409820557 218.259918213 217.799957275 217.500152588 217.429840088 217.279937744 216.900054932 216.489898682 216.279937744 216.270172119 219.730163574 219.110046387 218.699890137 218.549987793 218.469909668 218.340026855 218.299987793 218.489929199 218.799987793 218.980163574 219.060241699 219.279968262 219.730163574 220.290222168 220.889831543 221.619812012 222.469909668 232.90965271 232.779769897 232.619613647 232.289535522 231.770004272 231.020004272 230.119613647 229.250473022 228.760238647 228.859848022 229.310043335 229.699691772 229.899887085 230.149887085 230.600082397 230.930160522 230.81980896 302.519775391 301.289306641 300.230712891 299.670166016 299.629150391 299.730712891 299.779541016 299.779541016 299.699462891 299.760009766 300.750244141 303.019775391 305.449462891 306.230712891 304.840087891 302.369384766 299.929931641 298.170166016 297.150634766 296.299072266 295.619384766 295.269775391 295.539306641 296.349853516 297.039306641 297.000244141 296.650634766 297.189697266 299.049072266 301.170166016 301.990478516 300.910400391 298.670166016 296.289306641 294.739135742 293.610229492 292.520385742 291.830932617 291.750854492 292.090698242 292.450073242 292.479370117 292.260620117 292.360229492 293.440307617 295.440307617 297.399291992 298.219604492 297.479370117 295.520385742 292.909057617 280.669372559 280.309997559 280.220153809 280.589294434 281.270935059 281.770935059 281.790466309 281.499450684 281.300231934 281.440856934 281.960388184 282.739685059 283.530700684 284.020935059 283.929138184 283.099060059 281.509216309 274.10043335 274.60043335 274.719573975 274.6199646 274.53012085 274.429534912 274.179534912 273.890472412 273.839691162 273.990081787 274.129730225 274.219573975 274.480316162 274.910003662 275.200042725 274.950042725 273.890472412 267.470153809 267.569763184 267.510192871 267.510192871 267.569763184 267.579528809 267.529724121 267.579528809 267.720153809 267.760192871 267.590270996 267.319763184 267.090270996 266.869567871 266.489685059 265.840270996 264.809997559 256.449645996 256.909606934 257.040466309 256.970153809 256.899841309 256.949645996 257.050231934 257.180114746 257.290466309 257.279724121 257.059997559 256.680114746 256.359802246 256.029724121 255.390075684 254.239685059 252.739685059 241.020095825 241.1900177 241.4400177 241.649978638 241.669998169 241.52986145 241.390213013 241.390213013 241.429763794 241.419998169 241.35017395 241.219802856 240.989822388 240.52986145 239.750076294 238.679763794 237.480056763 232.120193481 232.129959106 232.10017395 232.129959106 232.199783325 232.250076294 232.199783325 232.069900513 231.960037231 231.929763794 231.969802856 232.000076294 231.879959106 231.52986145 230.910232544 230.049880981 228.969802856 221.010055542 220.970016479 220.940231323 220.889938354 220.840133667 220.740036011 220.590133667 220.470016479 220.470016479 220.490036011 220.429977417 220.389938354 220.539840698 220.880172729 221.110153198 220.990036011 220.490036011 207.979827881 207.510101318 207.110198975 206.769866943 206.510101318 206.289886475 206.169769287 206.150238037 206.189788818 206.269866943 206.400238037 206.570159912 206.680023193 206.829925537 207.309906006 208.389984131 209.900238037 195.190078735 194.11000061 193.369766235 192.800430298 192.150039673 191.390274048 190.749649048 190.419570923 190.36000061 190.510391235 190.900039673 191.510391235 192.249649048 193.100234985 194.230117798 195.730117798 197.499649048 197.199996948 196.740036011 196.030075073 195.209762573 194.759567261 194.789840698 195.009567261 195.119918823 195.140426636 195.140426636 194.990036011 194.610153198 194.249801636 194.199996948 194.490036011 194.940231323 195.780075073 206.500015259 205.899917603 205.720230103 205.750015259 205.589859009 205.229995728 204.939956665 204.830093384 204.720230103 204.549819946 204.529800415 204.709976196 204.870132446 204.790054321 204.600112915 204.569839478 204.850112915 217.179840088 216.980133057 216.810211182 216.739898682 216.949859619 217.520172119 218.239898682 218.6300354 218.420074463 217.900054932 217.560211182 217.500152588 217.389801025 217.029937744 216.610015869 216.420074463 216.400054932 219.909851074 219.380065918 219.040222168 218.940124512 218.790222168 218.469909668 218.210144043 218.25994873 218.529968262 218.750183105 218.84979248 219.020202637 219.389831543 219.940124512 220.610046387 221.460144043 222.400085449 232.680160522 232.47996521 232.289535522 231.920394897 231.439926147 230.930160522 230.359848022 229.72996521 229.22996521 229.199691772 229.699691772 230.329574585 230.71043396 230.89012146 231.079574585 231.170394897 230.930160522 301.660400391 301.010009766 300.199462891 299.730712891 299.760009766 299.810791016 299.609619141 299.390869141 299.289306641 299.410400391 300.240478516 302.199462891 304.539306641 305.560791016 304.400634766 301.920166016 299.420166016 297.539306641 296.939697266 296.150634766 295.439697266 295.240478516 295.599853516 296.119384766 296.250244141 295.890869141 295.650634766 296.400634766 298.269775391 300.269775391 301.029541016 300.109619141 298.160400391 296.140869141 293.969604492 293.270385742 292.350463867 291.770385742 291.819213867 292.159057617 292.299682617 292.129760742 291.920776367 292.139526367 293.180541992 294.959838867 296.809448242 297.719604492 297.069213867 295.090698242 292.459838867 280.409606934 280.140075684 280.149841309 280.579528809 281.270935059 281.729919434 281.659606934 281.319763184 281.179138184 281.440856934 281.989685059 282.700622559 283.429138184 283.929138184 283.860778809 282.999450684 281.349060059 274.1902771 274.740081787 274.85043335 274.640472412 274.509613037 274.490081787 274.3699646 274.110198975 273.95980835 274.020355225 274.160003662 274.270355225 274.490081787 274.7996521 274.980316162 274.700042725 273.719573975 267.519958496 267.609802246 267.579528809 267.609802246 267.640075684 267.540466309 267.430114746 267.479919434 267.699645996 267.790466309 267.579528809 267.199645996 266.890075684 266.659606934 266.329528809 265.729919434 264.699645996 256.550231934 256.909606934 256.970153809 256.909606934 256.880310059 256.939880371 257.040466309 257.130310059 257.229919434 257.229919434 257.019958496 256.659606934 256.319763184 256.000427246 255.380310059 254.199645996 252.649841309 240.839920044 241.120193481 241.469802856 241.730056763 241.750076294 241.620193481 241.509841919 241.500076294 241.540115356 241.52986145 241.460037231 241.330154419 241.040115356 240.509841919 239.669998169 238.60017395 237.429763794 232.089920044 232.080154419 232.040115356 232.089920044 232.199783325 232.250076294 232.199783325 232.10017395 232.009841919 232.000076294 232.049880981 232.10017395 231.980056763 231.60017395 230.960037231 230.089920044 229.009841919 220.960250854 220.900192261 220.869918823 220.820114136 220.760055542 220.670211792 220.579879761 220.539840698 220.550094604 220.550094604 220.460250854 220.409957886 220.539840698 220.840133667 221.079879761 221.010055542 220.570114136 208.090179443 207.570159912 207.110198975 206.70980835 206.389984131 206.160003662 206.070159912 206.099945068 206.150238037 206.220062256 206.360198975 206.559906006 206.720062256 206.919769287 207.450042725 208.550140381 210.050140381 195.150039673 194.140274048 193.459609985 192.94984436 192.37953186 191.730117798 191.220352173 191.060195923 191.11000061 191.220352173 191.36000061 191.659805298 192.220352173 193.079727173 194.230117798 195.69984436 197.44984436 197.320114136 196.890426636 196.169723511 195.289840698 194.730270386 194.699996948 194.900192261 194.990036011 194.930465698 194.839645386 194.699996948 194.449996948 194.180465698 194.140426636 194.390426636 194.890426636 195.799606323 206.259780884 205.620132446 205.479995728 205.560073853 205.410171509 204.979995728 204.660171509 204.589859009 204.589859009 204.529800415 204.569839478 204.77003479 204.919937134 204.830093384 204.569839478 204.450210571 204.640151978 217.339996338 217.179840088 217.009918213 216.949859619 217.159820557 217.710113525 218.339996338 218.650054932 218.389801025 217.869781494 217.54019165 217.46987915 217.389801025 217.060211182 216.699859619 216.560211182 216.580230713 219.75994873 219.299987793 219.079772949 219.040222168 218.84979248 218.400085449 218.00994873 217.969909668 218.199890137 218.460144043 218.630065918 218.860046387 219.279968262 219.860046387 220.549987793 221.409851074 222.360046387 232.920394897 232.56980896 232.199691772 231.72996521 231.30027771 231.079574585 230.96043396 230.670394897 230.21043396 230.000473022 230.270004272 230.80027771 231.109848022 231.149887085 231.180160522 231.250473022 231.05027771 300.549072266 300.420166016 299.900634766 299.699462891 299.959228516 299.990478516 299.590087891 299.359619141 299.689697266 300.209228516 300.869384766 302.150634766 304.029541016 305.209228516 304.510009766 302.170166016 299.490478516 296.250244141 296.010009766 295.470947266 295.099853516 295.240478516 295.590087891 295.709228516 295.560791016 295.470947266 295.849853516 296.920166016 298.619384766 300.310791016 301.119384766 300.480712891 298.730712891 296.679931641 292.369995117 292.139526367 291.600463867 291.379760742 291.690307617 292.010620117 292.010620117 291.940307617 292.180541992 292.739135742 293.590698242 294.780151367 296.200073242 297.139526367 296.799682617 295.000854492 292.389526367 280.229919434 280.050231934 280.120544434 280.559997559 281.229919434 281.640075684 281.540466309 281.200622559 281.069763184 281.329528809 281.819763184 282.399841309 283.009216309 283.479919434 283.509216309 282.790466309 281.280700684 274.400238037 274.999847412 275.089691162 274.770355225 274.539886475 274.560394287 274.53012085 274.249847412 273.95980835 273.910003662 274.060394287 274.249847412 274.490081787 274.749847412 274.820159912 274.490081787 273.560394287 267.600036621 267.670349121 267.630310059 267.640075684 267.640075684 267.529724121 267.430114746 267.550231934 267.790466309 267.890075684 267.630310059 267.180114746 266.800231934 266.559997559 266.269958496 265.699645996 264.689880371 256.590270996 256.859802246 256.909606934 256.880310059 256.899841309 256.979919434 257.069763184 257.140075684 257.229919434 257.260192871 257.069763184 256.710388184 256.340270996 255.979919434 255.329528809 254.170349121 252.609802246 240.759841919 241.149978638 241.569900513 241.819900513 241.830154419 241.699783325 241.589920044 241.569900513 241.60017395 241.589920044 241.520095825 241.35017395 241.020095825 240.460037231 239.60017395 238.52986145 237.339920044 232.049880981 232.049880981 232.02986145 232.069900513 232.140213013 232.169998169 232.120193481 232.060134888 232.020095825 232.040115356 232.109939575 232.140213013 232.020095825 231.649978638 231.009841919 230.129959106 229.009841919 220.929977417 220.860153198 220.840133667 220.789840698 220.710250854 220.619918823 220.579879761 220.570114136 220.579879761 220.530075073 220.449996948 220.420211792 220.550094604 220.820114136 221.039840698 220.979782104 220.590133667 208.099945068 207.550140381 207.050140381 206.639984131 206.329925537 206.180023193 206.189788818 206.269866943 206.340179443 206.360198975 206.439788818 206.610198975 206.809906006 207.070159912 207.650238037 208.740081787 210.180023193 195.079727173 194.18031311 193.569961548 193.100234985 192.560195923 191.999649048 191.61000061 191.560195923 191.690078735 191.709609985 191.560195923 191.52015686 191.919570923 192.819961548 194.09046936 195.619766235 197.37953186 197.520309448 196.959762573 196.150192261 195.199996948 194.600387573 194.530075073 194.680465698 194.690231323 194.490036011 194.329879761 194.299606323 194.259567261 194.150192261 194.089645386 194.310348511 194.869918823 195.860153198 206.009780884 205.459976196 205.450210571 205.640151978 205.540054321 205.129898071 204.819839478 204.77003479 204.799819946 204.759780884 204.740249634 204.850112915 204.93019104 204.790054321 204.490249634 204.290054321 204.450210571 217.520172119 217.310211182 217.069976807 216.989898682 217.159820557 217.569976807 218.020172119 218.199859619 217.989898682 217.619781494 217.429840088 217.440093994 217.3800354 217.089996338 216.770172119 216.670074463 216.739898682 219.489929199 219.070007324 218.949890137 218.980163574 218.810241699 218.400085449 218.029968262 217.969909668 218.199890137 218.480163574 218.699890137 218.980163574 219.409851074 219.960144043 220.619812012 221.429870605 222.360046387 233.340316772 232.90965271 232.380355835 231.81980896 231.449691772 231.46043396 231.680160522 231.630355835 231.090316772 230.449691772 230.220199585 230.420394897 230.670394897 230.81980896 230.989730835 231.189926147 231.06980896 299.060791016 299.170166016 298.949462891 299.220947266 299.900634766 300.109619141 299.840087891 300.119384766 301.289306641 302.379150391 302.689697266 302.959228516 304.039306641 305.260009766 305.070556641 302.959228516 299.990478516 294.549072266 294.619384766 294.529541016 294.740478516 295.269775391 295.609619141 295.650634766 295.869384766 296.670166016 297.810791016 298.820556641 299.699462891 300.730712891 301.539306641 301.310791016 299.689697266 297.330322266 290.280151367 290.420776367 290.379760742 290.719604492 291.360229492 291.770385742 291.930541992 292.389526367 293.379760742 294.330932617 294.770385742 295.069213867 295.819213867 296.739135742 296.770385742 295.229370117 292.549682617 280.270935059 280.130310059 280.149841309 280.530700684 281.149841309 281.559997559 281.509216309 281.220153809 281.069763184 281.229919434 281.620544434 282.110778809 282.579528809 282.960388184 283.009216309 282.489685059 281.239685059 274.8699646 275.400238037 275.400238037 274.950042725 274.570159912 274.520355225 274.490081787 274.179534912 273.810394287 273.719573975 273.890472412 274.150238037 274.410003662 274.650238037 274.679534912 274.310394287 273.45980835 267.729919434 267.779724121 267.699645996 267.649841309 267.600036621 267.529724121 267.510192871 267.630310059 267.819763184 267.850036621 267.579528809 267.119567871 266.750427246 266.529724121 266.260192871 265.710388184 264.710388184 256.630310059 256.859802246 256.930114746 256.939880371 256.970153809 257.050231934 257.140075684 257.229919434 257.340270996 257.369567871 257.210388184 256.829528809 256.399841309 255.949645996 255.260192871 254.149841309 252.649841309 240.819900513 241.259841919 241.640213013 241.830154419 241.810134888 241.699783325 241.620193481 241.60017395 241.60017395 241.580154419 241.489822388 241.310134888 240.980056763 240.429763794 239.609939575 238.500076294 237.259841919 231.989822388 232.060134888 232.069900513 232.089920044 232.080154419 232.02986145 231.960037231 231.9400177 231.960037231 232.009841919 232.069900513 232.069900513 231.949783325 231.629959106 231.040115356 230.160232544 228.989822388 220.900192261 220.869918823 220.849899292 220.789840698 220.650192261 220.559860229 220.539840698 220.550094604 220.539840698 220.490036011 220.440231323 220.449996948 220.570114136 220.780075073 220.920211792 220.869918823 220.539840698 207.999847412 207.439788818 206.95980835 206.610198975 206.380218506 206.309906006 206.3699646 206.479827881 206.53012085 206.519866943 206.550140381 206.680023193 206.8699646 207.180023193 207.800140381 208.860198975 210.240081787 195.12953186 194.249649048 193.61000061 193.11000061 192.600234985 192.079727173 191.749649048 191.749649048 191.87953186 191.819961548 191.499649048 191.310195923 191.68031311 192.659805298 194.02015686 195.560195923 197.300430298 197.629684448 196.869918823 195.940231323 194.990036011 194.430465698 194.390426636 194.520309448 194.409957886 194.079879761 193.879684448 193.959762573 194.140426636 194.119918823 193.990036011 194.150192261 194.810348511 195.949996948 205.890151978 205.419937134 205.490249634 205.720230103 205.700210571 205.450210571 205.279800415 205.310073853 205.290054321 205.100112915 204.890151978 204.850112915 204.850112915 204.709976196 204.410171509 204.18019104 204.310073853 217.569976807 217.29019165 217.020172119 216.949859619 217.100250244 217.360015869 217.600250244 217.690093994 217.589996338 217.449859619 217.449859619 217.529937744 217.460113525 217.159820557 216.830230713 216.739898682 216.869781494 219.460144043 219.020202637 218.840026855 218.810241699 218.679870605 218.400085449 218.150085449 218.130065918 218.320007324 218.579772949 218.810241699 219.070007324 219.42010498 219.900085449 220.540222168 221.369812012 222.340026855 233.260238647 232.97996521 232.609848022 232.15965271 231.859848022 231.96043396 232.31980896 232.380355835 231.699691772 230.590316772 229.789535522 229.720199585 230.130355835 230.609848022 231.000473022 231.170394897 230.970199585 297.810791016 297.840087891 297.810791016 298.470947266 299.449462891 299.900634766 300.090087891 301.170166016 303.170166016 304.590087891 304.459228516 303.760009766 304.039306641 305.129150391 305.269775391 303.349853516 300.199462891 293.109619141 293.390869141 293.760009766 294.459228516 295.199462891 295.529541016 295.810791016 296.820556641 298.629150391 300.179931641 300.599853516 300.349853516 300.539306641 301.299072266 301.429931641 299.949462891 297.310791016 288.479370117 288.789916992 289.219604492 290.030151367 290.899291992 291.430541992 291.909057617 293.020385742 294.680541992 295.850463867 295.899291992 295.469604492 295.629760742 296.420776367 296.649291992 295.250854492 292.469604492 280.700622559 280.460388184 280.290466309 280.479919434 280.979919434 281.390075684 281.450622559 281.270935059 281.089294434 281.149841309 281.550231934 282.120544434 282.589294434 282.759216309 282.659606934 282.200622559 281.200622559 275.520355225 275.85043335 275.700042725 275.129730225 274.629730225 274.45980835 274.3699646 274.10043335 273.810394287 273.740081787 273.860198975 274.0496521 274.28012085 274.520355225 274.579925537 274.270355225 273.509613037 267.840270996 267.909606934 267.829528809 267.699645996 267.559997559 267.489685059 267.500427246 267.590270996 267.670349121 267.619567871 267.359802246 267.010192871 266.699645996 266.500427246 266.220153809 265.689880371 264.710388184 256.750427246 256.979919434 257.059997559 257.069763184 257.050231934 257.079528809 257.180114746 257.300231934 257.409606934 257.439880371 257.290466309 256.930114746 256.439880371 255.880310059 255.159606934 254.100036621 252.710388184 240.969802856 241.399978638 241.669998169 241.750076294 241.699783325 241.640213013 241.60017395 241.589920044 241.60017395 241.580154419 241.480056763 241.270095825 240.949783325 240.4400177 239.620193481 238.500076294 237.179763794 231.960037231 232.089920044 232.129959106 232.089920044 231.989822388 231.879959106 231.810134888 231.810134888 231.870193481 231.919998169 231.949783325 231.910232544 231.77986145 231.500076294 230.969802856 230.120193481 228.9400177 220.880172729 220.869918823 220.829879761 220.710250854 220.530075073 220.420211792 220.420211792 220.470016479 220.490036011 220.460250854 220.449996948 220.499801636 220.590133667 220.690231323 220.749801636 220.690231323 220.420211792 207.809906006 207.249847412 206.829925537 206.570159912 206.450042725 206.410003662 206.430023193 206.490081787 206.519866943 206.519866943 206.550140381 206.660003662 206.860198975 207.220062256 207.880218506 208.910003662 210.229827881 195.390274048 194.43031311 193.68031311 193.140274048 192.669570923 192.209609985 191.890274048 191.819961548 191.900039673 191.819961548 191.53968811 191.409805298 191.810195923 192.779922485 194.069961548 195.529922485 197.239883423 197.570114136 196.600387573 195.549606323 194.619918823 194.140426636 194.140426636 194.259567261 194.110153198 193.759567261 193.579879761 193.820114136 194.150192261 194.180465698 193.959762573 194.049606323 194.780075073 196.060348511 205.970230103 205.540054321 205.500015259 205.589859009 205.580093384 205.52003479 205.600112915 205.759780884 205.709976196 205.379898071 205.02003479 204.839859009 204.779800415 204.640151978 204.370132446 204.129898071 204.189956665 217.460113525 217.150054932 216.909820557 216.920074463 217.119781494 217.330230713 217.46987915 217.54019165 217.54019165 217.529937744 217.580230713 217.650054932 217.520172119 217.179840088 216.850250244 216.799957275 216.989898682 219.810241699 219.210144043 218.779968262 218.560241699 218.409851074 218.250183105 218.090026855 218.070007324 218.199890137 218.409851074 218.650085449 218.880065918 219.17010498 219.619812012 220.320007324 221.239929199 222.239929199 232.359848022 232.560043335 232.71043396 232.600082397 232.369613647 232.420394897 232.80027771 232.930160522 232.239730835 230.930160522 229.899887085 229.789535522 230.420394897 231.119613647 231.399887085 231.250473022 230.850082397 297.510009766 297.340087891 297.349853516 298.039306641 298.929931641 299.449462891 300.060791016 301.679931641 303.959228516 305.340087891 304.970947266 303.890869141 303.720947266 304.490478516 304.599853516 302.830322266 299.820556641 292.420166016 292.779541016 293.400634766 294.250244141 294.900634766 295.170166016 295.750244141 297.320556641 299.529541016 301.010009766 300.920166016 300.010009766 299.720947266 300.330322266 300.570556641 299.220947266 296.580322266 287.580932617 287.920776367 288.569213867 289.530151367 290.369995117 290.879760742 291.500854492 292.860229492 294.670776367 295.879760742 295.940307617 295.430541992 295.379760742 295.909057617 296.010620117 294.680541992 292.080932617 281.390075684 280.979919434 280.559997559 280.509216309 280.790466309 281.110778809 281.249450684 281.179138184 280.989685059 280.970153809 281.419372559 282.229919434 282.849060059 282.899841309 282.530700684 281.999450684 281.130310059 276.1199646 276.179534912 275.910003662 275.339691162 274.789886475 274.499847412 274.3699646 274.240081787 274.150238037 274.140472412 274.1199646 274.070159912 274.169769287 274.429534912 274.570159912 274.339691162 273.660003662 267.869567871 268.050231934 268.019958496 267.840270996 267.600036621 267.439880371 267.409606934 267.420349121 267.409606934 267.350036621 267.210388184 266.979919434 266.720153809 266.460388184 266.149841309 265.619567871 264.649841309 256.859802246 257.130310059 257.250427246 257.220153809 257.119567871 257.079528809 257.149841309 257.279724121 257.369567871 257.369567871 257.250427246 256.920349121 256.409606934 255.790466309 255.010192871 254.010192871 252.729919434 241.1900177 241.569900513 241.699783325 241.660232544 241.580154419 241.569900513 241.589920044 241.609939575 241.629959106 241.620193481 241.500076294 241.259841919 240.929763794 240.429763794 239.640213013 238.489822388 237.149978638 231.989822388 232.149978638 232.149978638 232.040115356 231.879959106 231.739822388 231.679763794 231.710037231 231.770095825 231.819900513 231.819900513 231.750076294 231.589920044 231.310134888 230.819900513 230.009841919 228.870193481 220.869918823 220.860153198 220.789840698 220.599899292 220.360153198 220.220016479 220.249801636 220.369918823 220.429977417 220.440231323 220.449996948 220.519821167 220.570114136 220.579879761 220.550094604 220.470016479 220.249801636 207.639984131 207.079925537 206.720062256 206.559906006 206.510101318 206.45980835 206.410003662 206.380218506 206.380218506 206.400238037 206.470062256 206.599945068 206.840179443 207.269866943 207.979827881 208.999847412 210.220062256 195.650039673 194.550430298 193.739883423 193.249649048 192.900039673 192.510391235 192.150039673 191.980117798 191.980117798 191.970352173 191.84046936 191.86000061 192.27015686 193.079727173 194.159805298 195.52015686 197.239883423 197.530075073 196.419723511 195.270309448 194.289840698 193.759567261 193.699996948 193.799606323 193.690231323 193.409957886 193.360153198 193.730270386 194.190231323 194.299606323 194.079879761 194.100387573 194.780075073 196.020309448 206.240249634 205.790054321 205.560073853 205.399917603 205.279800415 205.310073853 205.569839478 205.830093384 205.819839478 205.529800415 205.18019104 204.959976196 204.819839478 204.640151978 204.370132446 204.10987854 204.069839478 217.29019165 216.940093994 216.71987915 216.79019165 217.060211182 217.330230713 217.54019165 217.659820557 217.690093994 217.659820557 217.6300354 217.580230713 217.389801025 217.060211182 216.799957275 216.819976807 217.119781494 220.449890137 219.679870605 218.960144043 218.520202637 218.310241699 218.190124512 218.049987793 217.949890137 217.969909668 218.139831543 218.380065918 218.610046387 218.92010498 219.429870605 220.219909668 221.179870605 222.090026855 231.05027771 231.739730835 232.439926147 232.649887085 232.420394897 232.329574585 232.609848022 232.829574585 232.39012146 231.40965271 230.699691772 230.810043335 231.47996521 231.949691772 231.81980896 231.30027771 230.89012146 298.039306641 297.789306641 297.810791016 298.260009766 298.740478516 299.080322266 299.820556641 301.390869141 303.310791016 304.480712891 304.420166016 303.789306641 303.549072266 303.789306641 303.549072266 301.990478516 299.580322266 292.539306641 292.859619141 293.420166016 294.060791016 294.429931641 294.660400391 295.349853516 296.859619141 298.709228516 299.920166016 300.000244141 299.470947266 299.240478516 299.500244141 299.459228516 298.240478516 296.019775391 287.619995117 287.899291992 288.459838867 289.200073242 289.770385742 290.129760742 290.700073242 291.780151367 293.170776367 294.289916992 294.830932617 294.969604492 295.069213867 295.209838867 294.989135742 293.879760742 291.909057617 281.880310059 281.390075684 280.880310059 280.700622559 280.739685059 280.860778809 280.999450684 281.030700684 280.809997559 280.599060059 280.950622559 281.919372559 282.770935059 282.870544434 282.409606934 281.839294434 281.079528809 276.4402771 276.270355225 275.999847412 275.570159912 275.070159912 274.700042725 274.53012085 274.539886475 274.660003662 274.70980835 274.499847412 274.1902771 274.1199646 274.379730225 274.570159912 274.339691162 273.669769287 267.819763184 268.130310059 268.229919434 268.050231934 267.720153809 267.460388184 267.329528809 267.279724121 267.269958496 267.290466309 267.279724121 267.149841309 266.850036621 266.479919434 266.090270996 265.569763184 264.630310059 256.880310059 257.239685059 257.409606934 257.359802246 257.199645996 257.100036621 257.140075684 257.220153809 257.260192871 257.239685059 257.130310059 256.869567871 256.390075684 255.720153809 254.920349121 253.930114746 252.699645996 241.419998169 241.750076294 241.750076294 241.60017395 241.500076294 241.520095825 241.569900513 241.609939575 241.649978638 241.649978638 241.52986145 241.259841919 240.899978638 240.410232544 239.629959106 238.509841919 237.199783325 232.109939575 232.230056763 232.149978638 231.949783325 231.759841919 231.640213013 231.609939575 231.629959106 231.6900177 231.730056763 231.730056763 231.649978638 231.469802856 231.160232544 230.649978638 229.870193481 228.790115356 220.869918823 220.829879761 220.720016479 220.510055542 220.240036011 220.070114136 220.119918823 220.280075073 220.369918823 220.389938354 220.400192261 220.460250854 220.510055542 220.479782104 220.380172729 220.260055542 220.050094604 207.579925537 207.03012085 206.720062256 206.610198975 206.579925537 206.53012085 206.45980835 206.389984131 206.349945068 206.360198975 206.419769287 206.579925537 206.889984131 207.419769287 208.180023193 209.150238037 210.240081787 195.600234985 194.400039673 193.62953186 193.300430298 193.140274048 192.850234985 192.43031311 192.12953186 192.079727173 192.140274048 192.19984436 192.350234985 192.720352173 193.329727173 194.230117798 195.53968811 197.34046936 197.810348511 196.650192261 195.419723511 194.320114136 193.629684448 193.390426636 193.379684448 193.320114136 193.159957886 193.150192261 193.490036011 193.990036011 194.240036011 194.169723511 194.159957886 194.650192261 195.650192261 206.439956665 205.990249634 205.640151978 205.319839478 205.080093384 205.080093384 205.290054321 205.509780884 205.560073853 205.470230103 205.35987854 205.209976196 204.979995728 204.68019104 204.35987854 204.089859009 204.009780884 217.29019165 216.909820557 216.610015869 216.589996338 216.830230713 217.190093994 217.529937744 217.730133057 217.770172119 217.679840088 217.549957275 217.409820557 217.190093994 216.909820557 216.730133057 216.839996338 217.230133057 221.040222168 220.290222168 219.540222168 219.049987793 218.840026855 218.690124512 218.469909668 218.239929199 218.130065918 218.17010498 218.310241699 218.520202637 218.889831543 219.520202637 220.360046387 221.219909668 221.92010498 230.020004272 230.810043335 231.579574585 231.739730835 231.380355835 231.130355835 231.289535522 231.55027771 231.520004272 231.310043335 231.39012146 231.880355835 232.329574585 232.289535522 231.760238647 231.239730835 231.170394897 298.599853516 298.490478516 298.599853516 298.810791016 298.890869141 299.010009766 299.619384766 300.720947266 301.980712891 303.049072266 303.820556641 304.119384766 303.929931641 303.459228516 302.799072266 301.740478516 300.269775391 293.129150391 293.330322266 293.640869141 293.869384766 293.980712891 294.250244141 294.959228516 295.980712891 297.049072266 298.080322266 299.000244141 299.570556641 299.609619141 299.279541016 298.750244141 297.840087891 296.420166016 288.219604492 288.379760742 288.600463867 288.869995117 289.129760742 289.500854492 290.010620117 290.619995117 291.319213867 292.299682617 293.510620117 294.500854492 294.830932617 294.559448242 294.080932617 293.459838867 292.479370117 281.829528809 281.470153809 281.140075684 281.009216309 280.909606934 280.829528809 280.919372559 281.040466309 280.800231934 280.309997559 280.300231934 281.110778809 282.079528809 282.399841309 282.089294434 281.649841309 281.020935059 276.3699646 276.129730225 276.009613037 275.820159912 275.429534912 274.990081787 274.740081787 274.78012085 275.009613037 275.079925537 274.749847412 274.28012085 274.129730225 274.3699646 274.490081787 274.150238037 273.3699646 267.720153809 268.140075684 268.359802246 268.250427246 267.909606934 267.559997559 267.359802246 267.269958496 267.279724121 267.390075684 267.489685059 267.380310059 267.000427246 266.510192871 266.069763184 265.569763184 264.659606934 256.829528809 257.250427246 257.470153809 257.439880371 257.279724121 257.170349121 257.170349121 257.210388184 257.210388184 257.180114746 257.100036621 256.890075684 256.449645996 255.790466309 254.960388184 253.949645996 252.670349121 241.609939575 241.890213013 241.799880981 241.580154419 241.449783325 241.469802856 241.52986145 241.560134888 241.589920044 241.60017395 241.469802856 241.219802856 240.870193481 240.390213013 239.640213013 238.569900513 237.310134888 232.239822388 232.310134888 232.140213013 231.870193481 231.669998169 231.589920044 231.589920044 231.609939575 231.649978638 231.679763794 231.679763794 231.60017395 231.399978638 231.060134888 230.520095825 229.730056763 228.719802856 220.829879761 220.769821167 220.650192261 220.460250854 220.220016479 220.059860229 220.079879761 220.229782104 220.320114136 220.309860229 220.320114136 220.389938354 220.440231323 220.400192261 220.249801636 220.070114136 219.869918823 207.599945068 207.079925537 206.789886475 206.689788818 206.639984131 206.610198975 206.579925537 206.53012085 206.490081787 206.450042725 206.470062256 206.630218506 206.990081787 207.610198975 208.419769287 209.340179443 210.309906006 195.19984436 193.980117798 193.36000061 193.27015686 193.310195923 193.079727173 192.61000061 192.220352173 192.100234985 192.190078735 192.36000061 192.59046936 192.940078735 193.44984436 194.27015686 195.619766235 197.499649048 198.299606323 197.209762573 195.949996948 194.759567261 193.879684448 193.440231323 193.310348511 193.270309448 193.150192261 193.020309448 193.100387573 193.419723511 193.770309448 193.940231323 194.030075073 194.320114136 195.030075073 206.279800415 205.870132446 205.569839478 205.290054321 205.060073853 204.959976196 204.979995728 205.009780884 205.060073853 205.220230103 205.410171509 205.410171509 205.120132446 204.700210571 204.379898071 204.149917603 204.060073853 217.639801025 217.259918213 216.869781494 216.659820557 216.759918213 217.069976807 217.449859619 217.699859619 217.759918213 217.690093994 217.569976807 217.400054932 217.139801025 216.869781494 216.730133057 216.860015869 217.230133057 221.139831543 220.630065918 220.17010498 219.929870605 219.799987793 219.590026855 219.25994873 218.949890137 218.710144043 218.549987793 218.460144043 218.590026855 219.029968262 219.739929199 220.549987793 221.250183105 221.779968262 229.869613647 230.250473022 230.46043396 230.149887085 229.55027771 229.22996521 229.289535522 229.500473022 229.789535522 230.40965271 231.380355835 232.199691772 232.329574585 231.829574585 231.30027771 231.220199585 231.56980896 298.590087891 298.720947266 299.010009766 299.150634766 299.060791016 299.129150391 299.549072266 300.070556641 300.670166016 301.779541016 303.379150391 304.459228516 304.199462891 303.129150391 302.379150391 302.129150391 301.640869141 293.699462891 293.799072266 293.799072266 293.629150391 293.549072266 293.990478516 294.750244141 295.260009766 295.590087891 296.539306641 298.310791016 299.820556641 299.959228516 299.039306641 298.269775391 298.019775391 297.599853516 288.819213867 288.850463867 288.659057617 288.430541992 288.510620117 289.069213867 289.750854492 290.069213867 290.219604492 290.969604492 292.549682617 294.039916992 294.440307617 293.920776367 293.510620117 293.569213867 293.469604492 281.399841309 281.270935059 281.239685059 281.249450684 281.120544434 280.909606934 280.989685059 281.270935059 281.149841309 280.460388184 279.989685059 280.370544434 281.239685059 281.720153809 281.649841309 281.380310059 280.890075684 276.0496521 275.879730225 276.020355225 276.10043335 275.820159912 275.320159912 274.9402771 274.890472412 275.079925537 275.150238037 274.85043335 274.429534912 274.289886475 274.469573975 274.450042725 273.890472412 272.9402771 267.670349121 268.090270996 268.380310059 268.359802246 268.069763184 267.720153809 267.479919434 267.359802246 267.319763184 267.439880371 267.569763184 267.479919434 267.059997559 266.510192871 266.050231934 265.569763184 264.670349121 256.790466309 257.229919434 257.460388184 257.449645996 257.319763184 257.210388184 257.199645996 257.210388184 257.220153809 257.220153809 257.170349121 256.979919434 256.559997559 255.920349121 255.079528809 254.029724121 252.689880371 241.719802856 241.969802856 241.859939575 241.60017395 241.449783325 241.449783325 241.480056763 241.480056763 241.480056763 241.460037231 241.35017395 241.129959106 240.830154419 240.390213013 239.669998169 238.629959106 237.379959106 232.330154419 232.35017395 232.120193481 231.839920044 231.649978638 231.60017395 231.640213013 231.669998169 231.710037231 231.719802856 231.679763794 231.549880981 231.319900513 230.969802856 230.419998169 229.620193481 228.620193481 220.720016479 220.650192261 220.559860229 220.440231323 220.249801636 220.090133667 220.090133667 220.190231323 220.260055542 220.240036011 220.240036011 220.309860229 220.389938354 220.340133667 220.170211792 219.940231323 219.720016479 207.590179443 207.1199646 206.840179443 206.689788818 206.610198975 206.599945068 206.630218506 206.660003662 206.630218506 206.570159912 206.559906006 206.700042725 207.099945068 207.760101318 208.599945068 209.490081787 210.3699646 194.78968811 193.62953186 193.190078735 193.279922485 193.419570923 193.239883423 192.760391235 192.34046936 192.169570923 192.209609985 192.369766235 192.61000061 192.959609985 193.470352173 194.319961548 195.690078735 197.560195923 198.579879761 197.539840698 196.320114136 195.129684448 194.199996948 193.650192261 193.449996948 193.409957886 193.310348511 193.009567261 192.740036011 192.749801636 193.100387573 193.490036011 193.730270386 193.949996948 194.509567261 205.939956665 205.529800415 205.339859009 205.200210571 205.069839478 204.959976196 204.819839478 204.649917603 204.629898071 204.899917603 205.290054321 205.399917603 205.120132446 204.720230103 204.459976196 204.299819946 204.200210571 218.119781494 217.839996338 217.440093994 217.110015869 217.029937744 217.210113525 217.46987915 217.650054932 217.699859619 217.730133057 217.730133057 217.589996338 217.259918213 216.909820557 216.750152588 216.819976807 217.080230713 220.590026855 220.329772949 220.270202637 220.369812012 220.400085449 220.179870605 219.840026855 219.549987793 219.290222168 218.949890137 218.650085449 218.659851074 219.130065918 219.869812012 220.59979248 221.199890137 221.770202637 230.680160522 230.47996521 229.89012146 228.970199585 228.21043396 227.939926147 227.939926147 227.939926147 228.279769897 229.359848022 230.89012146 231.850082397 231.720199585 231.090316772 230.899887085 231.350082397 231.80027771 298.179931641 298.470947266 298.900634766 299.080322266 299.029541016 299.170166016 299.439697266 299.439697266 299.480712891 300.510009766 302.449462891 303.779541016 303.330322266 302.080322266 301.740478516 302.439697266 302.660400391 293.799072266 293.900634766 293.740478516 293.320556641 293.150634766 293.699462891 294.470947266 294.629150391 294.449462891 295.230712891 297.269775391 299.049072266 299.070556641 297.949462891 297.500244141 298.199462891 298.640869141 288.940307617 288.879760742 288.420776367 287.909057617 287.940307617 288.719604492 289.610229492 289.860229492 289.700073242 290.159057617 291.629760742 293.090698242 293.440307617 293.020385742 293.010620117 293.709838867 294.049682617 281.140075684 281.169372559 281.229919434 281.270935059 281.130310059 280.890075684 280.989685059 281.450622559 281.589294434 280.999450684 280.280700684 280.259216309 280.819763184 281.249450684 281.259216309 281.050231934 280.569763184 275.719573975 275.749847412 276.1199646 276.400238037 276.219573975 275.700042725 275.20980835 275.009613037 275.079925537 275.169769287 275.0496521 274.810394287 274.740081787 274.820159912 274.610198975 273.85043335 272.740081787 267.680114746 268.029724121 268.309997559 268.350036621 268.149841309 267.859802246 267.609802246 267.420349121 267.309997559 267.359802246 267.479919434 267.409606934 267.029724121 266.479919434 266.000427246 265.479919434 264.579528809 256.840270996 257.250427246 257.439880371 257.420349121 257.300231934 257.199645996 257.170349121 257.180114746 257.220153809 257.250427246 257.199645996 257.000427246 256.579528809 255.960388184 255.119567871 254.059997559 252.710388184 241.799880981 242.02986145 241.919998169 241.649978638 241.500076294 241.460037231 241.469802856 241.4400177 241.410232544 241.359939575 241.259841919 241.060134888 240.790115356 240.359939575 239.640213013 238.60017395 237.330154419 232.330154419 232.35017395 232.109939575 231.830154419 231.669998169 231.640213013 231.710037231 231.790115356 231.830154419 231.819900513 231.699783325 231.489822388 231.210037231 230.839920044 230.290115356 229.500076294 228.489822388 220.570114136 220.519821167 220.460250854 220.409957886 220.269821167 220.130172729 220.099899292 220.170211792 220.220016479 220.199996948 220.190231323 220.269821167 220.360153198 220.340133667 220.150192261 219.889938354 219.650192261 207.470062256 207.050140381 206.789886475 206.6199646 206.519866943 206.510101318 206.570159912 206.630218506 206.630218506 206.610198975 206.630218506 206.800140381 207.180023193 207.840179443 208.689788818 209.559906006 210.430023193 194.720352173 193.669570923 193.319961548 193.419570923 193.52015686 193.329727173 192.94984436 192.579727173 192.409805298 192.369766235 192.409805298 192.61000061 192.970352173 193.510391235 194.36000061 195.659805298 197.409805298 198.350387573 197.289840698 196.129684448 195.049606323 194.209762573 193.640426636 193.409957886 193.409957886 193.400192261 193.110153198 192.650192261 192.449996948 192.699996948 193.169723511 193.509567261 193.780075073 194.419723511 205.850112915 205.43019104 205.27003479 205.189956665 205.120132446 205.029800415 204.870132446 204.629898071 204.52003479 204.729995728 205.100112915 205.229995728 205.000015259 204.700210571 204.549819946 204.450210571 204.299819946 218.270172119 218.119781494 217.819976807 217.509918213 217.360015869 217.409820557 217.509918213 217.54019165 217.560211182 217.679840088 217.799957275 217.679840088 217.29019165 216.900054932 216.739898682 216.770172119 216.8800354 219.779968262 219.610046387 219.779968262 220.110046387 220.239929199 220.090026855 219.869812012 219.770202637 219.610046387 219.250183105 218.840026855 218.820007324 219.279968262 219.949890137 220.570007324 221.179870605 221.980163574 231.760238647 231.30027771 230.220199585 228.920394897 228.109848022 227.930160522 227.869613647 227.600082397 227.699691772 228.760238647 230.310043335 231.199691772 231.010238647 230.579574585 230.829574585 231.510238647 231.600082397 297.789306641 298.140869141 298.609619141 298.840087891 298.920166016 299.150634766 299.269775391 298.859619141 298.439697266 299.150634766 300.849853516 301.920166016 301.359619141 300.390869141 300.760009766 302.199462891 302.730712891 293.310791016 293.510009766 293.439697266 293.049072266 292.879150391 293.379150391 294.000244141 293.910400391 293.439697266 293.910400391 295.599853516 297.070556641 297.039306641 296.289306641 296.599853516 298.070556641 298.929931641 288.430541992 288.420776367 288.000854492 287.500854492 287.539916992 288.330932617 289.209838867 289.409057617 289.129760742 289.319213867 290.350463867 291.430541992 291.780151367 291.789916992 292.369995117 293.430541992 293.760620117 281.380310059 281.399841309 281.270935059 281.159606934 281.009216309 280.770935059 280.819763184 281.309997559 281.710388184 281.450622559 280.860778809 280.659606934 280.929138184 281.140075684 280.999450684 280.679138184 280.159606934 275.589691162 275.810394287 276.320159912 276.660003662 276.53012085 276.0496521 275.5496521 275.249847412 275.219573975 275.360198975 275.45980835 275.4402771 275.390472412 275.329925537 274.969573975 274.110198975 272.910003662 267.750427246 268.019958496 268.250427246 268.309997559 268.149841309 267.899841309 267.649841309 267.430114746 267.279724121 267.279724121 267.369567871 267.340270996 267.010192871 266.479919434 265.939880371 265.329528809 264.390075684 256.960388184 257.329528809 257.460388184 257.420349121 257.300231934 257.199645996 257.140075684 257.130310059 257.170349121 257.189880371 257.119567871 256.899841309 256.489685059 255.869567871 255.040466309 253.970153809 252.659606934 241.839920044 242.049880981 241.9400177 241.699783325 241.520095825 241.449783325 241.449783325 241.429763794 241.410232544 241.35017395 241.219802856 241.020095825 240.730056763 240.259841919 239.509841919 238.449783325 237.1900177 232.299880981 232.319900513 232.10017395 231.819900513 231.660232544 231.649978638 231.750076294 231.859939575 231.919998169 231.890213013 231.730056763 231.4400177 231.089920044 230.669998169 230.120193481 229.35017395 228.35017395 220.449996948 220.429977417 220.409957886 220.369918823 220.269821167 220.139938354 220.099899292 220.159957886 220.199996948 220.190231323 220.179977417 220.240036011 220.349899292 220.349899292 220.199996948 219.929977417 219.619918823 207.300140381 206.900238037 206.669769287 206.539886475 206.470062256 206.479827881 206.519866943 206.539886475 206.539886475 206.570159912 206.689788818 206.889984131 207.260101318 207.8699646 208.689788818 209.570159912 210.410003662 195.050430298 194.079727173 193.659805298 193.59046936 193.529922485 193.329727173 193.050430298 192.84046936 192.730117798 192.650039673 192.600234985 192.720352173 193.060195923 193.61000061 194.400039673 195.560195923 197.159805298 197.900192261 196.770309448 195.650192261 194.709762573 193.990036011 193.459762573 193.159957886 193.159957886 193.280075073 193.199996948 192.879684448 192.680465698 192.839645386 193.209762573 193.549606323 193.919723511 194.730270386 206.220230103 205.810073853 205.580093384 205.399917603 205.229995728 205.149917603 205.060073853 204.85987854 204.709976196 204.759780884 204.959976196 205.000015259 204.819839478 204.649917603 204.589859009 204.470230103 204.229995728 217.940093994 217.819976807 217.639801025 217.460113525 217.3800354 217.420074463 217.449859619 217.3800354 217.330230713 217.46987915 217.619781494 217.509918213 217.150054932 216.839996338 216.770172119 216.810211182 216.839996338 219.469909668 219.219909668 219.360046387 219.690124512 219.829772949 219.750183105 219.710144043 219.799987793 219.810241699 219.540222168 219.210144043 219.219909668 219.630065918 220.150085449 220.619812012 221.290222168 222.320007324 232.15965271 231.779769897 230.699691772 229.430160522 228.670394897 228.47996521 228.31980896 227.859848022 227.670394897 228.39012146 229.609848022 230.340316772 230.310043335 230.279769897 230.850082397 231.439926147 231.079574585 297.629150391 298.010009766 298.449462891 298.679931641 298.859619141 299.170166016 299.209228516 298.619384766 297.990478516 298.320556641 299.449462891 300.019775391 299.429931641 298.900634766 299.779541016 301.510009766 302.119384766 292.519775391 292.869384766 293.060791016 292.920166016 292.840087891 293.179931641 293.539306641 293.310791016 292.769775391 292.939697266 294.049072266 295.049072266 295.170166016 295.119384766 296.090087891 297.799072266 298.609619141 287.549682617 287.690307617 287.569213867 287.340698242 287.430541992 288.010620117 288.619995117 288.739135742 288.489135742 288.520385742 289.080932617 289.729370117 290.159057617 290.690307617 291.739135742 292.840698242 292.950073242 281.970153809 281.890075684 281.479919434 281.190856934 281.040466309 280.809997559 280.690856934 280.979919434 281.450622559 281.540466309 281.239685059 281.059997559 281.149841309 281.159606934 280.839294434 280.390075684 279.839294434 275.6902771 276.03012085 276.5496521 276.810394287 276.650238037 276.249847412 275.85043335 275.539886475 275.4402771 275.629730225 275.900238037 276.020355225 275.950042725 275.759613037 275.329925537 274.45980835 273.249847412 267.859802246 268.119567871 268.290466309 268.290466309 268.100036621 267.829528809 267.600036621 267.420349121 267.319763184 267.319763184 267.390075684 267.350036621 267.059997559 266.540466309 265.909606934 265.189880371 264.210388184 257.029724121 257.409606934 257.519958496 257.470153809 257.359802246 257.260192871 257.180114746 257.140075684 257.119567871 257.090270996 257.010192871 256.790466309 256.390075684 255.769958496 254.899841309 253.829528809 252.590270996 241.819900513 241.989822388 241.890213013 241.669998169 241.469802856 241.370193481 241.370193481 241.410232544 241.429763794 241.379959106 241.219802856 240.960037231 240.620193481 240.089920044 239.310134888 238.270095825 237.060134888 232.259841919 232.27986145 232.080154419 231.819900513 231.640213013 231.620193481 231.719802856 231.819900513 231.859939575 231.830154419 231.6900177 231.419998169 231.02986145 230.549880981 229.960037231 229.199783325 228.219802856 220.369918823 220.380172729 220.360153198 220.320114136 220.240036011 220.150192261 220.119918823 220.179977417 220.229782104 220.220016479 220.199996948 220.229782104 220.309860229 220.340133667 220.249801636 219.960250854 219.550094604 207.150238037 206.769866943 206.570159912 206.510101318 206.539886475 206.579925537 206.570159912 206.499847412 206.470062256 206.559906006 206.729827881 206.970062256 207.309906006 207.8699646 208.660003662 209.499847412 210.289886475 195.499649048 194.529922485 193.959609985 193.62953186 193.409805298 193.190078735 193.02015686 192.94984436 192.919570923 192.87953186 192.84046936 192.94984436 193.27015686 193.800430298 194.53968811 195.579727173 197.050430298 197.669723511 196.499801636 195.430465698 194.600387573 193.969528198 193.430465698 193.049606323 192.980270386 193.140426636 193.240036011 193.159957886 193.089645386 193.230270386 193.469528198 193.730270386 194.190231323 195.140426636 206.700210571 206.330093384 206.009780884 205.649917603 205.319839478 205.160171509 205.10987854 205.029800415 204.910171509 204.85987854 204.899917603 204.850112915 204.700210571 204.600112915 204.549819946 204.35987854 204.040054321 217.54019165 217.3800354 217.239898682 217.159820557 217.199859619 217.330230713 217.389801025 217.299957275 217.210113525 217.270172119 217.350250244 217.250152588 216.980133057 216.819976807 216.8800354 216.980133057 217.020172119 219.900085449 219.579772949 219.579772949 219.739929199 219.790222168 219.719909668 219.750183105 219.909851074 220.000183105 219.840026855 219.659851074 219.75994873 220.090026855 220.440124512 220.799987793 221.489929199 222.579772949 231.46043396 231.250473022 230.47996521 229.47996521 228.810043335 228.579574585 228.329574585 227.850082397 227.55027771 227.90965271 228.699691772 229.289535522 229.520004272 229.899887085 230.609848022 231.05027771 230.590316772 297.599853516 298.070556641 298.459228516 298.619384766 298.820556641 299.170166016 299.279541016 298.840087891 298.340087891 298.490478516 299.049072266 299.090087891 298.420166016 298.099853516 299.029541016 300.609619141 301.340087891 291.939697266 292.379150391 292.769775391 292.869384766 292.910400391 293.129150391 293.320556641 293.119384766 292.750244141 292.799072266 293.410400391 294.049072266 294.420166016 294.929931641 296.099853516 297.500244141 298.049072266 286.819213867 287.090698242 287.280151367 287.350463867 287.510620117 287.869995117 288.229370117 288.319213867 288.219604492 288.219604492 288.440307617 288.780151367 289.280151367 290.159057617 291.369995117 292.289916992 292.250854492 282.450622559 282.329528809 281.800231934 281.450622559 281.349060059 281.120544434 280.780700684 280.780700684 281.159606934 281.419372559 281.300231934 281.120544434 281.130310059 281.059997559 280.739685059 280.290466309 279.839294434 275.900238037 276.28012085 276.6902771 276.7996521 276.560394287 276.240081787 275.980316162 275.740081787 275.60043335 275.770355225 276.129730225 276.339691162 276.240081787 275.95980835 275.509613037 274.679534912 273.499847412 268.019958496 268.329528809 268.430114746 268.319763184 268.029724121 267.720153809 267.519958496 267.430114746 267.409606934 267.449645996 267.479919434 267.399841309 267.109802246 266.609802246 265.939880371 265.119567871 264.100036621 257.029724121 257.460388184 257.590270996 257.540466309 257.430114746 257.350036621 257.269958496 257.189880371 257.109802246 257.029724121 256.939880371 256.760192871 256.390075684 255.750427246 254.840270996 253.750427246 252.550231934 241.719802856 241.859939575 241.770095825 241.580154419 241.370193481 241.250076294 241.239822388 241.319900513 241.399978638 241.370193481 241.179763794 240.890213013 240.500076294 239.9400177 239.149978638 238.140213013 236.980056763 232.199783325 232.239822388 232.080154419 231.830154419 231.660232544 231.629959106 231.679763794 231.710037231 231.6900177 231.660232544 231.589920044 231.399978638 231.02986145 230.489822388 229.85017395 229.080154419 228.120193481 220.260055542 220.289840698 220.269821167 220.229782104 220.179977417 220.130172729 220.130172729 220.199996948 220.280075073 220.289840698 220.260055542 220.240036011 220.269821167 220.300094604 220.199996948 219.900192261 219.400192261 207.070159912 206.689788818 206.53012085 206.539886475 206.650238037 206.720062256 206.660003662 206.539886475 206.490081787 206.579925537 206.78012085 207.019866943 207.349945068 207.880218506 208.590179443 209.360198975 210.070159912 195.77015686 194.800430298 194.079727173 193.59046936 193.279922485 193.069961548 192.94984436 192.900039673 192.919570923 192.970352173 193.029922485 193.19984436 193.550430298 194.09046936 194.819961548 195.819961548 197.230117798 197.789840698 196.650192261 195.629684448 194.820114136 194.190231323 193.640426636 193.199996948 193.009567261 193.070114136 193.180465698 193.230270386 193.310348511 193.469528198 193.650192261 193.879684448 194.390426636 195.409957886 206.879898071 206.509780884 206.140151978 205.68019104 205.250015259 205.02003479 204.970230103 204.950210571 204.899917603 204.890151978 204.910171509 204.850112915 204.720230103 204.60987854 204.509780884 204.229995728 203.870132446 217.509918213 217.310211182 217.170074463 217.110015869 217.199859619 217.389801025 217.500152588 217.429840088 217.29019165 217.250152588 217.230133057 217.100250244 216.920074463 216.8800354 216.989898682 217.139801025 217.279937744 220.529968262 220.239929199 220.130065918 220.119812012 220.049987793 219.92010498 219.900085449 220.000183105 220.060241699 219.989929199 219.969909668 220.150085449 220.440124512 220.690124512 221.000183105 221.67010498 222.659851074 230.289535522 230.14012146 229.670394897 229.000473022 228.46043396 228.180160522 227.939926147 227.590316772 227.369613647 227.520004272 227.930160522 228.350082397 228.779769897 229.399887085 230.119613647 230.510238647 230.380355835 297.640869141 298.260009766 298.570556641 298.560791016 298.670166016 299.010009766 299.240478516 299.140869141 299.010009766 299.160400391 299.310791016 298.949462891 298.209228516 297.820556641 298.359619141 299.510009766 300.429931641 291.849853516 292.299072266 292.640869141 292.760009766 292.859619141 293.070556641 293.250244141 293.230712891 293.109619141 293.170166016 293.470947266 293.920166016 294.480712891 295.240478516 296.189697266 297.000244141 297.359619141 286.580932617 286.860229492 287.139526367 287.330932617 287.530151367 287.819213867 288.110229492 288.280151367 288.319213867 288.330932617 288.379760742 288.590698242 289.139526367 290.129760742 291.239135742 291.920776367 291.879760742 282.579528809 282.559997559 282.110778809 281.800231934 281.720153809 281.429138184 280.960388184 280.819763184 281.149841309 281.419372559 281.239685059 280.940856934 280.839294434 280.819763184 280.649841309 280.399841309 280.140075684 276.060394287 276.400238037 276.719573975 276.70980835 276.400238037 276.129730225 275.999847412 275.839691162 275.669769287 275.770355225 276.140472412 276.410003662 276.35043335 276.0496521 275.60043335 274.7996521 273.610198975 268.159606934 268.540466309 268.609802246 268.390075684 268.010192871 267.680114746 267.510192871 267.470153809 267.500427246 267.540466309 267.529724121 267.409606934 267.119567871 266.649841309 265.989685059 265.149841309 264.100036621 257.010192871 257.489685059 257.630310059 257.559997559 257.439880371 257.350036621 257.300231934 257.210388184 257.109802246 257.010192871 256.909606934 256.760192871 256.420349121 255.779724121 254.859802246 253.760192871 252.550231934 241.60017395 241.719802856 241.660232544 241.500076294 241.319900513 241.179763794 241.140213013 241.230056763 241.330154419 241.319900513 241.129959106 240.810134888 240.390213013 239.830154419 239.060134888 238.080154419 236.929763794 232.109939575 232.1900177 232.080154419 231.890213013 231.730056763 231.679763794 231.679763794 231.629959106 231.540115356 231.489822388 231.480056763 231.359939575 231.020095825 230.480056763 229.799880981 229.009841919 228.020095825 220.099899292 220.139938354 220.119918823 220.110153198 220.090133667 220.090133667 220.119918823 220.210250854 220.320114136 220.380172729 220.360153198 220.289840698 220.249801636 220.220016479 220.099899292 219.769821167 219.220016479 206.999847412 206.650238037 206.499847412 206.550140381 206.689788818 206.749847412 206.689788818 206.590179443 206.559906006 206.639984131 206.820159912 207.059906006 207.410003662 207.910003662 208.550140381 209.220062256 209.860198975 195.829727173 194.850234985 194.079727173 193.560195923 193.279922485 193.119766235 192.980117798 192.86000061 192.869766235 192.970352173 193.12953186 193.37953186 193.77015686 194.36000061 195.140274048 196.169570923 197.550430298 198.009567261 196.900192261 195.869918823 194.999801636 194.320114136 193.759567261 193.360153198 193.140426636 193.089645386 193.089645386 193.129684448 193.259567261 193.490036011 193.699996948 193.980270386 194.539840698 195.520309448 206.759780884 206.350112915 205.959976196 205.540054321 205.140151978 204.899917603 204.830093384 204.799819946 204.790054321 204.850112915 204.939956665 204.950210571 204.850112915 204.720230103 204.52003479 204.18019104 203.830093384 217.830230713 217.6300354 217.460113525 217.360015869 217.400054932 217.549957275 217.650054932 217.580230713 217.449859619 217.350250244 217.250152588 217.080230713 216.909820557 216.869781494 216.980133057 217.159820557 217.440093994 220.750183105 220.529968262 220.389831543 220.290222168 220.139831543 219.980163574 219.909851074 219.940124512 219.960144043 219.949890137 220.049987793 220.320007324 220.619812012 220.840026855 221.159851074 221.790222168 222.59979248 229.649887085 229.449691772 229.119613647 228.65965271 228.260238647 227.989730835 227.770004272 227.56980896 227.47996521 227.529769897 227.649887085 227.859848022 228.310043335 228.970199585 229.630355835 230.090316772 230.39012146 297.720947266 298.449462891 298.660400391 298.490478516 298.470947266 298.760009766 299.019775391 299.119384766 299.250244141 299.449462891 299.410400391 298.980712891 298.340087891 297.859619141 297.789306641 298.269775391 299.199462891 292.060791016 292.470947266 292.609619141 292.590087891 292.699462891 292.959228516 293.189697266 293.250244141 293.269775391 293.340087891 293.539306641 293.980712891 294.699462891 295.500244141 296.080322266 296.349853516 296.570556641 286.680541992 286.879760742 287.059448242 287.180541992 287.379760742 287.719604492 288.069213867 288.260620117 288.280151367 288.260620117 288.340698242 288.649291992 289.319213867 290.299682617 291.209838867 291.680541992 291.659057617 282.509216309 282.640075684 282.370544434 282.079528809 281.890075684 281.499450684 281.030700684 280.970153809 281.370544434 281.589294434 281.239685059 280.690856934 280.419372559 280.450622559 280.520935059 280.559997559 280.509216309 276.079925537 276.410003662 276.700042725 276.640472412 276.28012085 276.03012085 275.990081787 275.910003662 275.730316162 275.770355225 276.150238037 276.490081787 276.45980835 276.150238037 275.679534912 274.900238037 273.70980835 268.220153809 268.659606934 268.699645996 268.430114746 268.059997559 267.760192871 267.609802246 267.550231934 267.559997559 267.579528809 267.550231934 267.420349121 267.130310059 266.699645996 266.059997559 265.220153809 264.159606934 257.010192871 257.500427246 257.630310059 257.529724121 257.380310059 257.269958496 257.239685059 257.170349121 257.069763184 256.970153809 256.869567871 256.699645996 256.340270996 255.710388184 254.829528809 253.769958496 252.550231934 241.540115356 241.669998169 241.629959106 241.509841919 241.35017395 241.199783325 241.120193481 241.149978638 241.259841919 241.259841919 241.069900513 240.730056763 240.299880981 239.759841919 239.020095825 238.020095825 236.839920044 231.980056763 232.10017395 232.080154419 231.9400177 231.799880981 231.719802856 231.6900177 231.60017395 231.489822388 231.429763794 231.410232544 231.27986145 230.949783325 230.449783325 229.810134888 228.960037231 227.899978638 219.929977417 219.999801636 219.999801636 220.010055542 220.039840698 220.070114136 220.110153198 220.199996948 220.329879761 220.420211792 220.429977417 220.360153198 220.269821167 220.159957886 219.990036011 219.630172729 219.110153198 206.889984131 206.559906006 206.45980835 206.559906006 206.689788818 206.720062256 206.669769287 206.639984131 206.660003662 206.740081787 206.8699646 207.130218506 207.510101318 207.999847412 208.559906006 209.139984131 209.749847412 195.779922485 194.819961548 194.050430298 193.569961548 193.350234985 193.249649048 193.079727173 192.890274048 192.829727173 192.93031311 193.140274048 193.43031311 193.86000061 194.480117798 195.319961548 196.400039673 197.760391235 198.070114136 196.940231323 195.890426636 194.949996948 194.199996948 193.650192261 193.329879761 193.199996948 193.140426636 193.089645386 193.079879761 193.209762573 193.440231323 193.690231323 194.039840698 194.629684448 195.520309448 206.700210571 206.220230103 205.839859009 205.490249634 205.18019104 204.970230103 204.850112915 204.77003479 204.729995728 204.790054321 204.93019104 205.009780884 204.970230103 204.850112915 204.60987854 204.240249634 203.93019104 218.009918213 217.830230713 217.650054932 217.500152588 217.489898682 217.580230713 217.639801025 217.600250244 217.500152588 217.429840088 217.310211182 217.100250244 216.900054932 216.830230713 216.920074463 217.150054932 217.549957275 220.520202637 220.34979248 220.250183105 220.159851074 220.000183105 219.869812012 219.860046387 219.909851074 219.92010498 219.909851074 220.070007324 220.380065918 220.699890137 220.929870605 221.250183105 221.840026855 222.540222168 229.81980896 229.55027771 229.170394897 228.779769897 228.46043396 228.180160522 227.89012146 227.689926147 227.689926147 227.739730835 227.720199585 227.770004272 228.149887085 228.789535522 229.420394897 229.930160522 230.47996521 297.720947266 298.470947266 298.609619141 298.410400391 298.459228516 298.720947266 298.859619141 298.890869141 299.039306641 299.240478516 299.240478516 299.029541016 298.760009766 298.310791016 297.619384766 297.250244141 297.789306641 292.150634766 292.529541016 292.539306641 292.459228516 292.629150391 292.959228516 293.140869141 293.109619141 293.080322266 293.170166016 293.449462891 294.060791016 294.970947266 295.789306641 296.060791016 295.920166016 295.949462891 286.760620117 286.899291992 286.969604492 287.010620117 287.219604492 287.649291992 288.020385742 288.080932617 287.909057617 287.850463867 288.119995117 288.739135742 289.590698242 290.530151367 291.270385742 291.580932617 291.510620117 282.489685059 282.729919434 282.589294434 282.259216309 281.849060059 281.360778809 280.989685059 281.120544434 281.599060059 281.739685059 281.220153809 280.479919434 280.040466309 280.050231934 280.300231934 280.620544434 280.749450684 276.009613037 276.35043335 276.6902771 276.660003662 276.259613037 275.980316162 275.999847412 276.009613037 275.860198975 275.8699646 276.240081787 276.589691162 276.560394287 276.200042725 275.70980835 274.980316162 273.879730225 268.180114746 268.649841309 268.680114746 268.430114746 268.130310059 267.899841309 267.750427246 267.640075684 267.550231934 267.559997559 267.569763184 267.470153809 267.180114746 266.739685059 266.119567871 265.279724121 264.229919434 257.029724121 257.479919434 257.590270996 257.489685059 257.319763184 257.199645996 257.149841309 257.130310059 257.050231934 256.949645996 256.829528809 256.600036621 256.170349121 255.540466309 254.710388184 253.710388184 252.510192871 241.540115356 241.699783325 241.679763794 241.580154419 241.429763794 241.259841919 241.109939575 241.080154419 241.160232544 241.179763794 241.000076294 240.660232544 240.230056763 239.699783325 238.949783325 237.929763794 236.6900177 231.85017395 232.020095825 232.049880981 231.949783325 231.799880981 231.6900177 231.620193481 231.580154419 231.540115356 231.509841919 231.410232544 231.1900177 230.830154419 230.390213013 229.790115356 228.919998169 227.77986145 219.809860229 219.909957886 219.940231323 219.990036011 220.050094604 220.110153198 220.150192261 220.210250854 220.309860229 220.400192261 220.420211792 220.380172729 220.300094604 220.150192261 219.920211792 219.579879761 219.090133667 206.70980835 206.430023193 206.419769287 206.579925537 206.700042725 206.700042725 206.669769287 206.700042725 206.760101318 206.820159912 206.939788818 207.220062256 207.639984131 208.099945068 208.590179443 209.139984131 209.749847412 195.77015686 194.779922485 193.999649048 193.529922485 193.34046936 193.260391235 193.119766235 192.940078735 192.84046936 192.87953186 193.060195923 193.350234985 193.800430298 194.459609985 195.34046936 196.43031311 197.760391235 198.060348511 196.890426636 195.829879761 194.879684448 194.079879761 193.520309448 193.249801636 193.190231323 193.209762573 193.180465698 193.190231323 193.280075073 193.459762573 193.680465698 194.020309448 194.610153198 195.400192261 206.850112915 206.350112915 205.950210571 205.600112915 205.319839478 205.129898071 204.970230103 204.810073853 204.709976196 204.729995728 204.839859009 204.950210571 204.979995728 204.919937134 204.709976196 204.379898071 204.140151978 217.909820557 217.699859619 217.500152588 217.369781494 217.360015869 217.460113525 217.529937744 217.54019165 217.529937744 217.500152588 217.400054932 217.170074463 216.940093994 216.869781494 217.000152588 217.310211182 217.759918213 220.320007324 220.179870605 220.150085449 220.070007324 219.929870605 219.860046387 219.940124512 220.040222168 220.040222168 219.989929199 220.09979248 220.409851074 220.710144043 220.909851074 221.210144043 221.75994873 222.449890137 230.189926147 229.869613647 229.359848022 228.899887085 228.590316772 228.270004272 227.829574585 227.55027771 227.600082397 227.750473022 227.760238647 227.80027771 228.170394897 228.840316772 229.47996521 230.010238647 230.55027771 297.570556641 298.230712891 298.379150391 298.369384766 298.640869141 298.970947266 298.980712891 298.830322266 298.900634766 299.140869141 299.250244141 299.310791016 299.359619141 298.959228516 297.859619141 296.769775391 296.830322266 291.949462891 292.330322266 292.379150391 292.429931641 292.740478516 293.099853516 293.179931641 293.019775391 292.910400391 293.080322266 293.560791016 294.369384766 295.429931641 296.289306641 296.480712891 296.129150391 295.890869141 286.619995117 286.750854492 286.830932617 286.920776367 287.229370117 287.709838867 288.030151367 287.899291992 287.569213867 287.539916992 288.090698242 288.969604492 289.930541992 290.819213867 291.510620117 291.760620117 291.559448242 282.550231934 282.860778809 282.800231934 282.390075684 281.809997559 281.259216309 281.030700684 281.280700684 281.690856934 281.700622559 281.130310059 280.349060059 279.819763184 279.729919434 280.040466309 280.569763184 280.849060059 275.9402771 276.339691162 276.740081787 276.740081787 276.2996521 275.950042725 275.999847412 276.10043335 275.999847412 276.009613037 276.320159912 276.610198975 276.490081787 276.070159912 275.589691162 274.980316162 274.020355225 268.100036621 268.569763184 268.609802246 268.390075684 268.149841309 267.979919434 267.819763184 267.640075684 267.510192871 267.519958496 267.590270996 267.519958496 267.229919434 266.769958496 266.140075684 265.300231934 264.250427246 257.019958496 257.420349121 257.550231934 257.489685059 257.329528809 257.180114746 257.130310059 257.109802246 257.059997559 256.970153809 256.800231934 256.519958496 256.050231934 255.409606934 254.600036621 253.619567871 252.409606934 241.569900513 241.759841919 241.719802856 241.609939575 241.480056763 241.290115356 241.10017395 241.020095825 241.060134888 241.080154419 240.919998169 240.60017395 240.1900177 239.660232544 238.879959106 237.810134888 236.540115356 231.770095825 231.969802856 232.02986145 231.9400177 231.77986145 231.620193481 231.540115356 231.540115356 231.60017395 231.620193481 231.480056763 231.149978638 230.739822388 230.310134888 229.739822388 228.839920044 227.629959106 219.729782104 219.889938354 219.940231323 219.990036011 220.070114136 220.150192261 220.190231323 220.229782104 220.269821167 220.300094604 220.340133667 220.340133667 220.309860229 220.170211792 219.920211792 219.599899292 219.130172729 206.519866943 206.320159912 206.389984131 206.610198975 206.760101318 206.740081787 206.720062256 206.760101318 206.829925537 206.8699646 206.999847412 207.309906006 207.729827881 208.150238037 208.610198975 209.169769287 209.829925537 195.78968811 194.739883423 193.93031311 193.43031311 193.220352173 193.140274048 193.03968811 192.919570923 192.86000061 192.86000061 192.980117798 193.249649048 193.720352173 194.409805298 195.300430298 196.369766235 197.62953186 198.110153198 196.909957886 195.879684448 194.959762573 194.159957886 193.579879761 193.289840698 193.219528198 193.240036011 193.249801636 193.289840698 193.369918823 193.469528198 193.619918823 193.930465698 194.449996948 195.190231323 207.040054321 206.540054321 206.100112915 205.700210571 205.379898071 205.149917603 204.970230103 204.799819946 204.669937134 204.660171509 204.729995728 204.839859009 204.93019104 204.939956665 204.819839478 204.560073853 204.399917603 217.770172119 217.54019165 217.319976807 217.21987915 217.279937744 217.440093994 217.569976807 217.619781494 217.6300354 217.619781494 217.500152588 217.250152588 217.009918213 216.96987915 217.190093994 217.600250244 218.080230713 220.389831543 220.270202637 220.250183105 220.17010498 220.029968262 219.980163574 220.09979248 220.219909668 220.17010498 220.049987793 220.09979248 220.369812012 220.630065918 220.790222168 221.020202637 221.529968262 222.279968262 230.220199585 229.859848022 229.260238647 228.739730835 228.430160522 228.060043335 227.529769897 227.189926147 227.289535522 227.579574585 227.720199585 227.829574585 228.260238647 228.970199585 229.649887085 230.189926147 230.65965271 297.369384766 297.939697266 298.129150391 298.320556641 298.810791016 299.209228516 299.170166016 298.970947266 299.109619141 299.420166016 299.570556641 299.590087891 299.609619141 299.230712891 298.129150391 296.939697266 296.840087891 291.679931641 292.039306641 292.220947266 292.439697266 292.849853516 293.220947266 293.240478516 293.060791016 293.029541016 293.320556641 293.910400391 294.769775391 295.849853516 296.810791016 297.170166016 296.929931641 296.549072266 286.409057617 286.500854492 286.670776367 286.909057617 287.309448242 287.799682617 288.059448242 287.879760742 287.569213867 287.680541992 288.369995117 289.289916992 290.190307617 291.100463867 291.920776367 292.270385742 291.969604492 282.610778809 282.970153809 282.950622559 282.499450684 281.829528809 281.309997559 281.200622559 281.429138184 281.640075684 281.509216309 281.020935059 280.390075684 279.849060059 279.640075684 279.909606934 280.530700684 280.880310059 275.980316162 276.400238037 276.820159912 276.820159912 276.35043335 275.95980835 276.009613037 276.160003662 276.089691162 276.060394287 276.2996521 276.499847412 276.2996521 275.829925537 275.360198975 274.860198975 274.0496521 268.059997559 268.529724121 268.559997559 268.359802246 268.130310059 267.960388184 267.800231934 267.600036621 267.470153809 267.500427246 267.590270996 267.529724121 267.250427246 266.779724121 266.149841309 265.290466309 264.210388184 256.949645996 257.319763184 257.500427246 257.500427246 257.340270996 257.170349121 257.090270996 257.079528809 257.050231934 256.970153809 256.809997559 256.529724121 256.050231934 255.399841309 254.590270996 253.559997559 252.319763184 241.540115356 241.750076294 241.710037231 241.60017395 241.469802856 241.310134888 241.120193481 241.000076294 240.989822388 240.980056763 240.85017395 240.580154419 240.199783325 239.660232544 238.85017395 237.730056763 236.429763794 231.719802856 231.949783325 232.009841919 231.960037231 231.810134888 231.640213013 231.52986145 231.52986145 231.629959106 231.6900177 231.560134888 231.1900177 230.739822388 230.270095825 229.649978638 228.730056763 227.509841919 219.670211792 219.889938354 219.960250854 219.999801636 220.059860229 220.130172729 220.199996948 220.229782104 220.229782104 220.210250854 220.229782104 220.289840698 220.289840698 220.150192261 219.920211792 219.619918823 219.159957886 206.389984131 206.240081787 206.3699646 206.6199646 206.789886475 206.800140381 206.78012085 206.809906006 206.860198975 206.910003662 207.050140381 207.360198975 207.740081787 208.110198975 208.570159912 209.200042725 209.8699646 195.78968811 194.68031311 193.84046936 193.319961548 193.09046936 192.999649048 192.94984436 192.900039673 192.86000061 192.86000061 192.94984436 193.220352173 193.709609985 194.409805298 195.279922485 196.329727173 197.510391235 198.249801636 197.049606323 196.009567261 195.079879761 194.280075073 193.719528198 193.400192261 193.259567261 193.209762573 193.209762573 193.270309448 193.369918823 193.469528198 193.600387573 193.860153198 194.310348511 194.999801636 207.100112915 206.580093384 206.100112915 205.649917603 205.310073853 205.069839478 204.879898071 204.729995728 204.640151978 204.640151978 204.709976196 204.799819946 204.910171509 205.000015259 204.950210571 204.77003479 204.700210571 217.850250244 217.580230713 217.350250244 217.259918213 217.350250244 217.560211182 217.730133057 217.779937744 217.759918213 217.690093994 217.509918213 217.21987915 216.960113525 216.929840088 217.239898682 217.779937744 218.339996338 220.50994873 220.369812012 220.320007324 220.230163574 220.070007324 220.00994873 220.110046387 220.210144043 220.139831543 220.00994873 220.060241699 220.320007324 220.579772949 220.710144043 220.869812012 221.310241699 222.040222168 229.970199585 229.65965271 229.090316772 228.590316772 228.30027771 227.930160522 227.399887085 227.060043335 227.199691772 227.539535522 227.739730835 227.899887085 228.340316772 229.039535522 229.72996521 230.31980896 230.810043335 297.310791016 297.859619141 298.080322266 298.299072266 298.769775391 299.150634766 299.140869141 299.060791016 299.349853516 299.740478516 299.769775391 299.500244141 299.269775391 299.019775391 298.449462891 297.869384766 298.090087891 291.570556641 291.920166016 292.160400391 292.429931641 292.799072266 293.109619141 293.179931641 293.150634766 293.260009766 293.590087891 294.109619141 294.830322266 295.869384766 297.049072266 297.890869141 298.070556641 297.799072266 286.299682617 286.340698242 286.539916992 286.869995117 287.309448242 287.750854492 288.000854492 287.930541992 287.799682617 288.020385742 288.639526367 289.399291992 290.219604492 291.340698242 292.530151367 293.119995117 292.770385742 282.569763184 283.020935059 283.050231934 282.559997559 281.839294434 281.370544434 281.339294434 281.520935059 281.550231934 281.329528809 280.999450684 280.599060059 280.120544434 279.809997559 280.030700684 280.620544434 280.909606934 276.110198975 276.53012085 276.900238037 276.879730225 276.410003662 276.039886475 276.079925537 276.20980835 276.129730225 276.060394287 276.219573975 276.35043335 276.140472412 275.640472412 275.140472412 274.6199646 273.860198975 268.069763184 268.529724121 268.569763184 268.340270996 268.079528809 267.899841309 267.739685059 267.559997559 267.470153809 267.510192871 267.569763184 267.510192871 267.260192871 266.850036621 266.210388184 265.269958496 264.100036621 256.880310059 257.260192871 257.479919434 257.500427246 257.319763184 257.100036621 257.010192871 257.000427246 257.000427246 256.930114746 256.800231934 256.550231934 256.119567871 255.489685059 254.640075684 253.540466309 252.229919434 241.460037231 241.6900177 241.679763794 241.580154419 241.469802856 241.35017395 241.179763794 241.040115356 240.969802856 240.919998169 240.810134888 240.589920044 240.259841919 239.710037231 238.85017395 237.719802856 236.410232544 231.660232544 231.919998169 232.02986145 232.020095825 231.910232544 231.759841919 231.609939575 231.549880981 231.609939575 231.669998169 231.60017395 231.290115356 230.830154419 230.27986145 229.60017395 228.660232544 227.449783325 219.579879761 219.869918823 219.970016479 219.990036011 220.019821167 220.059860229 220.130172729 220.190231323 220.190231323 220.139938354 220.159957886 220.240036011 220.249801636 220.110153198 219.880172729 219.619918823 219.159957886 206.309906006 206.200042725 206.329925537 206.599945068 206.789886475 206.840179443 206.849945068 206.8699646 206.900238037 206.950042725 207.099945068 207.360198975 207.660003662 207.990081787 208.479827881 209.169769287 209.849945068 195.730117798 194.560195923 193.730117798 193.249649048 193.029922485 192.93031311 192.87953186 192.850234985 192.84046936 192.850234985 192.959609985 193.239883423 193.739883423 194.409805298 195.260391235 196.27015686 197.390274048 198.419723511 197.169723511 196.049606323 195.039840698 194.230270386 193.709762573 193.430465698 193.270309448 193.159957886 193.150192261 193.230270386 193.360153198 193.509567261 193.669723511 193.919723511 194.280075073 194.919723511 207.069839478 206.52003479 206.02003479 205.600112915 205.279800415 205.049819946 204.85987854 204.729995728 204.669937134 204.700210571 204.77003479 204.850112915 204.950210571 205.069839478 205.080093384 204.970230103 204.950210571 218.000152588 217.71987915 217.480133057 217.350250244 217.400054932 217.580230713 217.770172119 217.839996338 217.779937744 217.6300354 217.409820557 217.100250244 216.799957275 216.710113525 217.020172119 217.690093994 218.420074463 220.460144043 220.25994873 220.17010498 220.110046387 220.000183105 219.940124512 220.000183105 220.079772949 220.060241699 220.000183105 220.09979248 220.380065918 220.659851074 220.779968262 220.869812012 221.190124512 221.820007324 229.869613647 229.680160522 229.22996521 228.750473022 228.420394897 228.039535522 227.539535522 227.22996521 227.329574585 227.590316772 227.739730835 227.90965271 228.340316772 228.97996521 229.670394897 230.380355835 230.989730835 297.359619141 298.000244141 298.199462891 298.279541016 298.590087891 298.929931641 299.000244141 299.019775391 299.340087891 299.709228516 299.660400391 299.260009766 299.039306641 299.230712891 299.560791016 299.869384766 300.390869141 291.599853516 291.980712891 292.220947266 292.400634766 292.629150391 292.890869141 293.080322266 293.199462891 293.349853516 293.590087891 293.959228516 294.599853516 295.720947266 297.279541016 298.699462891 299.420166016 299.379150391 286.340698242 286.309448242 286.479370117 286.840698242 287.229370117 287.600463867 287.850463867 287.940307617 287.959838867 288.180541992 288.639526367 289.239135742 290.190307617 291.739135742 293.440307617 294.260620117 293.860229492 282.509216309 283.030700684 283.120544434 282.620544434 281.839294434 281.360778809 281.370544434 281.540466309 281.479919434 281.249450684 281.069763184 280.829528809 280.409606934 280.110778809 280.329528809 280.870544434 281.030700684 276.240081787 276.629730225 276.919769287 276.8699646 276.480316162 276.169769287 276.1902771 276.249847412 276.140472412 276.0496521 276.169769287 276.270355225 276.03012085 275.509613037 274.879730225 274.179534912 273.400238037 268.059997559 268.529724121 268.569763184 268.329528809 268.040466309 267.819763184 267.670349121 267.529724121 267.479919434 267.519958496 267.540466309 267.479919434 267.309997559 266.979919434 266.319763184 265.229919434 263.930114746 256.850036621 257.279724121 257.510192871 257.500427246 257.279724121 257.029724121 256.920349121 256.920349121 256.909606934 256.869567871 256.769958496 256.559997559 256.149841309 255.529724121 254.659606934 253.529724121 252.180114746 241.35017395 241.640213013 241.679763794 241.60017395 241.489822388 241.379959106 241.230056763 241.080154419 240.969802856 240.890213013 240.810134888 240.660232544 240.339920044 239.759841919 238.879959106 237.770095825 236.469802856 231.549880981 231.879959106 232.040115356 232.069900513 232.000076294 231.859939575 231.699783325 231.580154419 231.560134888 231.60017395 231.60017395 231.390213013 230.949783325 230.339920044 229.609939575 228.6900177 227.489822388 219.490036011 219.840133667 219.990036011 220.030075073 219.990036011 219.990036011 220.039840698 220.130172729 220.150192261 220.110153198 220.139938354 220.220016479 220.210250854 220.050094604 219.820114136 219.599899292 219.119918823 206.289886475 206.180023193 206.309906006 206.570159912 206.800140381 206.900238037 206.939788818 206.970062256 206.999847412 207.03012085 207.139984131 207.329925537 207.550140381 207.860198975 208.389984131 209.099945068 209.740081787 195.650039673 194.419570923 193.600234985 193.159805298 192.970352173 192.87953186 192.800430298 192.760391235 192.77015686 192.819961548 192.94984436 193.230117798 193.68031311 194.310195923 195.12953186 196.119766235 197.230117798 198.539840698 197.249801636 196.039840698 194.930465698 194.100387573 193.640426636 193.419723511 193.270309448 193.169723511 193.190231323 193.299606323 193.419723511 193.560348511 193.749801636 193.980270386 194.259567261 194.839645386 207.129898071 206.52003479 206.02003479 205.620132446 205.350112915 205.129898071 204.919937134 204.759780884 204.700210571 204.750015259 204.819839478 204.890151978 205.009780884 205.169937134 205.229995728 205.149917603 205.149917603 218.020172119 217.730133057 217.489898682 217.339996338 217.319976807 217.480133057 217.699859619 217.799957275 217.739898682 217.580230713 217.369781494 217.089996338 216.750152588 216.549957275 216.770172119 217.480133057 218.369781494 220.360046387 220.09979248 220.000183105 220.000183105 219.969909668 219.940124512 219.969909668 220.029968262 220.090026855 220.09979248 220.210144043 220.469909668 220.750183105 220.880065918 220.940124512 221.139831543 221.630065918 229.970199585 229.880355835 229.520004272 229.000473022 228.539535522 228.090316772 227.619613647 227.31980896 227.31980896 227.449691772 227.579574585 227.810043335 228.30027771 228.939926147 229.649887085 230.510238647 231.270004272 297.369384766 298.099853516 298.250244141 298.230712891 298.480712891 298.879150391 299.039306641 299.039306641 299.179931641 299.459228516 299.570556641 299.500244141 299.730712891 300.570556641 301.720947266 302.660400391 303.140869141 291.599853516 292.039306641 292.250244141 292.349853516 292.519775391 292.820556641 293.109619141 293.260009766 293.310791016 293.429931641 293.799072266 294.580322266 295.949462891 297.849853516 299.720947266 300.849853516 301.029541016 286.379760742 286.340698242 286.489135742 286.850463867 287.219604492 287.549682617 287.809448242 287.950073242 288.010620117 288.159057617 288.510620117 289.159057617 290.399291992 292.420776367 294.510620117 295.479370117 295.030151367 282.429138184 282.989685059 283.179138184 282.739685059 281.950622559 281.409606934 281.390075684 281.540466309 281.479919434 281.280700684 281.120544434 280.909606934 280.540466309 280.349060059 280.679138184 281.190856934 281.239685059 276.289886475 276.640472412 276.839691162 276.78012085 276.480316162 276.249847412 276.240081787 276.230316162 276.129730225 276.089691162 276.1902771 276.200042725 275.879730225 275.289886475 274.480316162 273.5496521 272.70980835 268.000427246 268.510192871 268.569763184 268.319763184 268.000427246 267.760192871 267.590270996 267.479919434 267.460388184 267.500427246 267.519958496 267.470153809 267.380310059 267.119567871 266.399841309 265.170349121 263.760192871 256.840270996 257.319763184 257.550231934 257.510192871 257.250427246 257.000427246 256.899841309 256.880310059 256.869567871 256.840270996 256.760192871 256.550231934 256.119567871 255.479919434 254.630310059 253.510192871 252.159606934 241.250076294 241.620193481 241.710037231 241.640213013 241.500076294 241.35017395 241.210037231 241.060134888 240.949783325 240.879959106 240.839920044 240.730056763 240.410232544 239.790115356 238.919998169 237.870193481 236.569900513 231.419998169 231.819900513 232.040115356 232.089920044 232.000076294 231.85017395 231.699783325 231.569900513 231.509841919 231.52986145 231.569900513 231.4400177 231.040115356 230.429763794 229.719802856 228.830154419 227.609939575 219.409957886 219.789840698 220.010055542 220.059860229 220.010055542 219.949996948 219.970016479 220.059860229 220.079879761 220.059860229 220.099899292 220.199996948 220.179977417 220.010055542 219.809860229 219.570114136 219.070114136 206.309906006 206.220062256 206.349945068 206.599945068 206.849945068 206.990081787 207.059906006 207.090179443 207.1199646 207.1199646 207.169769287 207.28012085 207.450042725 207.769866943 208.320159912 208.999847412 209.579925537 195.61000061 194.310195923 193.44984436 193.010391235 192.829727173 192.739883423 192.669570923 192.650039673 192.669570923 192.739883423 192.86000061 193.079727173 193.480117798 194.050430298 194.850234985 195.850234985 196.999649048 198.669723511 197.339645386 196.079879761 194.949996948 194.119918823 193.669723511 193.449996948 193.310348511 193.259567261 193.329879761 193.430465698 193.469528198 193.520309448 193.659957886 193.850387573 194.079879761 194.659957886 207.250015259 206.60987854 206.069839478 205.649917603 205.35987854 205.140151978 204.919937134 204.740249634 204.660171509 204.709976196 204.799819946 204.890151978 205.060073853 205.299819946 205.439956665 205.370132446 205.310073853 217.929840088 217.659820557 217.480133057 217.350250244 217.339996338 217.480133057 217.71987915 217.839996338 217.779937744 217.639801025 217.509918213 217.310211182 216.96987915 216.650054932 216.710113525 217.350250244 218.270172119 220.389831543 220.110046387 220.020202637 220.060241699 220.070007324 220.029968262 220.00994873 220.079772949 220.159851074 220.179870605 220.239929199 220.400085449 220.639831543 220.790222168 220.84979248 221.020202637 221.480163574 230.020004272 229.949691772 229.579574585 229.000473022 228.420394897 227.939926147 227.520004272 227.21043396 227.100082397 227.15965271 227.369613647 227.770004272 228.39012146 229.079574585 229.859848022 230.80027771 231.619613647 297.299072266 298.000244141 298.109619141 298.119384766 298.500244141 299.039306641 299.279541016 299.150634766 299.060791016 299.289306641 299.709228516 300.189697266 300.929931641 302.209228516 303.789306641 304.990478516 305.330322266 291.529541016 291.980712891 292.160400391 292.269775391 292.529541016 292.910400391 293.240478516 293.320556641 293.260009766 293.390869141 293.929931641 294.949462891 296.490478516 298.500244141 300.529541016 301.929931641 302.340087891 286.369995117 286.369995117 286.510620117 286.899291992 287.309448242 287.649291992 287.899291992 288.020385742 288.020385742 288.139526367 288.539916992 289.340698242 290.799682617 292.989135742 295.180541992 296.270385742 295.969604492 282.270935059 282.829528809 283.140075684 282.880310059 282.159606934 281.569763184 281.460388184 281.579528809 281.559997559 281.360778809 281.149841309 280.860778809 280.499450684 280.460388184 280.909606934 281.409606934 281.429138184 276.230316162 276.570159912 276.70980835 276.6199646 276.379730225 276.20980835 276.169769287 276.140472412 276.10043335 276.150238037 276.219573975 276.070159912 275.640472412 274.980316162 274.0496521 272.929534912 272.079925537 267.899841309 268.439880371 268.519958496 268.279724121 267.970153809 267.720153809 267.529724121 267.439880371 267.449645996 267.510192871 267.510192871 267.460388184 267.409606934 267.180114746 266.420349121 265.090270996 263.649841309 256.779724121 257.309997559 257.529724121 257.460388184 257.229919434 257.019958496 256.930114746 256.880310059 256.850036621 256.840270996 256.790466309 256.559997559 256.100036621 255.439880371 254.609802246 253.529724121 252.199645996 241.179763794 241.609939575 241.750076294 241.660232544 241.469802856 241.27986145 241.129959106 241.009841919 240.910232544 240.879959106 240.890213013 240.810134888 240.489822388 239.859939575 239.009841919 237.980056763 236.679763794 231.310134888 231.770095825 232.049880981 232.089920044 231.949783325 231.759841919 231.620193481 231.52986145 231.480056763 231.480056763 231.52986145 231.4400177 231.10017395 230.540115356 229.879959106 229.009841919 227.739822388 219.349899292 219.760055542 220.019821167 220.099899292 220.030075073 219.929977417 219.909957886 219.949996948 219.960250854 219.949996948 220.030075073 220.159957886 220.179977417 220.039840698 219.840133667 219.579879761 219.039840698 206.389984131 206.320159912 206.450042725 206.689788818 206.930023193 207.079925537 207.169769287 207.20980835 207.220062256 207.220062256 207.220062256 207.260101318 207.400238037 207.729827881 208.260101318 208.889984131 209.439788818 195.619766235 194.239883423 193.28968811 192.78968811 192.61000061 192.560195923 192.550430298 192.569961548 192.619766235 192.669570923 192.739883423 192.900039673 193.220352173 193.739883423 194.489883423 195.489883423 196.709609985 198.749801636 197.409957886 196.159957886 195.060348511 194.270309448 193.810348511 193.520309448 193.339645386 193.310348511 193.430465698 193.499801636 193.419723511 193.360153198 193.469528198 193.640426636 193.850387573 194.440231323 207.339859009 206.669937134 206.060073853 205.580093384 205.229995728 205.000015259 204.810073853 204.660171509 204.600112915 204.640151978 204.750015259 204.899917603 205.140151978 205.479995728 205.68019104 205.589859009 205.439956665 217.940093994 217.710113525 217.619781494 217.549957275 217.54019165 217.690093994 217.909820557 218.009918213 217.900054932 217.759918213 217.679840088 217.560211182 217.250152588 216.8800354 216.799957275 217.270172119 218.069976807 220.50994873 220.250183105 220.130065918 220.119812012 220.09979248 220.020202637 219.989929199 220.060241699 220.150085449 220.150085449 220.110046387 220.199890137 220.389831543 220.540222168 220.639831543 220.900085449 221.460144043 229.920394897 229.80027771 229.420394897 228.840316772 228.30027771 227.89012146 227.520004272 227.189926147 227.000473022 227.06980896 227.380355835 227.930160522 228.630355835 229.369613647 230.170394897 231.090316772 231.81980896 297.269775391 297.820556641 297.929931641 298.070556641 298.549072266 299.099853516 299.299072266 299.119384766 298.980712891 299.260009766 299.890869141 300.580322266 301.369384766 302.519775391 304.049072266 305.470947266 306.119384766 291.480712891 291.859619141 292.049072266 292.250244141 292.580322266 292.990478516 293.260009766 293.279541016 293.230712891 293.470947266 294.150634766 295.199462891 296.609619141 298.429931641 300.439697266 302.080322266 302.910400391 286.360229492 286.369995117 286.500854492 286.909057617 287.389526367 287.750854492 287.959838867 288.030151367 288.010620117 288.149291992 288.649291992 289.520385742 290.909057617 292.879760742 294.940307617 296.209838867 296.379760742 282.020935059 282.499450684 282.909606934 282.899841309 282.349060059 281.729919434 281.520935059 281.620544434 281.649841309 281.479919434 281.210388184 280.829528809 280.489685059 280.520935059 280.979919434 281.409606934 281.460388184 276.160003662 276.53012085 276.610198975 276.450042725 276.230316162 276.079925537 276.03012085 275.990081787 276.03012085 276.169769287 276.1902771 275.919769287 275.45980835 274.8699646 273.950042725 272.719573975 271.829925537 267.819763184 268.359802246 268.449645996 268.250427246 267.960388184 267.710388184 267.519958496 267.449645996 267.500427246 267.559997559 267.489685059 267.369567871 267.319763184 267.119567871 266.359802246 265.019958496 263.600036621 256.689880371 257.269958496 257.489685059 257.399841309 257.210388184 257.040466309 256.939880371 256.859802246 256.829528809 256.869567871 256.850036621 256.609802246 256.130310059 255.479919434 254.670349121 253.609802246 252.269958496 241.109939575 241.580154419 241.730056763 241.649978638 241.449783325 241.239822388 241.080154419 240.969802856 240.910232544 240.910232544 240.949783325 240.899978638 240.589920044 239.980056763 239.149978638 238.129959106 236.799880981 231.219802856 231.739822388 232.060134888 232.109939575 231.929763794 231.679763794 231.509841919 231.429763794 231.399978638 231.410232544 231.460037231 231.419998169 231.160232544 230.6900177 230.080154419 229.199783325 227.870193481 219.349899292 219.769821167 220.050094604 220.139938354 220.070114136 219.920211792 219.849899292 219.809860229 219.769821167 219.760055542 219.900192261 220.119918823 220.210250854 220.119918823 219.929977417 219.650192261 219.099899292 206.519866943 206.45980835 206.570159912 206.78012085 206.979827881 207.130218506 207.240081787 207.320159912 207.360198975 207.329925537 207.269866943 207.269866943 207.3699646 207.680023193 208.200042725 208.789886475 209.340179443 195.59046936 194.12953186 193.119766235 192.569961548 192.400039673 192.409805298 192.489883423 192.550430298 192.600234985 192.62953186 192.669570923 192.819961548 193.100234985 193.53968811 194.190078735 195.159805298 196.43031311 198.799606323 197.409957886 196.159957886 195.110153198 194.350387573 193.879684448 193.539840698 193.320114136 193.299606323 193.440231323 193.459762573 193.350387573 193.299606323 193.459762573 193.650192261 193.829879761 194.390426636 207.350112915 206.660171509 206.02003479 205.479995728 205.080093384 204.850112915 204.720230103 204.60987854 204.580093384 204.629898071 204.750015259 204.919937134 205.209976196 205.569839478 205.790054321 205.700210571 205.540054321 218.080230713 217.909820557 217.850250244 217.779937744 217.750152588 217.869781494 218.049957275 218.089996338 217.949859619 217.799957275 217.71987915 217.610015869 217.310211182 216.940093994 216.810211182 217.1300354 217.750152588 220.549987793 220.299987793 220.130065918 220.060241699 220.000183105 219.900085449 219.889831543 220.000183105 220.09979248 220.079772949 220.040222168 220.119812012 220.290222168 220.440124512 220.590026855 220.969909668 221.679870605 229.840316772 229.65965271 229.31980896 228.829574585 228.40965271 228.090316772 227.739730835 227.350082397 227.100082397 227.189926147 227.56980896 228.109848022 228.760238647 229.47996521 230.270004272 231.039535522 231.579574585 297.269775391 297.730712891 297.920166016 298.199462891 298.590087891 298.910400391 298.990478516 298.910400391 298.920166016 299.230712891 299.769775391 300.240478516 300.560791016 301.070556641 302.189697266 303.890869141 305.470947266 291.420166016 291.769775391 292.039306641 292.359619141 292.670166016 292.910400391 293.070556641 293.119384766 293.179931641 293.449462891 294.039306641 294.859619141 295.939697266 297.429931641 299.310791016 301.209228516 302.560791016 286.350463867 286.360229492 286.489135742 286.930541992 287.399291992 287.700073242 287.869995117 287.909057617 287.909057617 288.090698242 288.590698242 289.369995117 290.479370117 292.059448242 293.899291992 295.399291992 296.190307617 281.759216309 282.110778809 282.569763184 282.759216309 282.380310059 281.780700684 281.520935059 281.620544434 281.739685059 281.649841309 281.380310059 280.970153809 280.630310059 280.630310059 280.919372559 281.149841309 281.259216309 276.1902771 276.629730225 276.629730225 276.35043335 276.070159912 275.950042725 275.910003662 275.879730225 275.950042725 276.110198975 276.089691162 275.810394287 275.480316162 275.140472412 274.339691162 273.0496521 272.020355225 267.769958496 268.269958496 268.369567871 268.199645996 267.949645996 267.720153809 267.529724121 267.479919434 267.550231934 267.569763184 267.409606934 267.210388184 267.140075684 266.979919434 266.290466309 265.000427246 263.609802246 256.630310059 257.239685059 257.460388184 257.369567871 257.180114746 257.029724121 256.930114746 256.850036621 256.840270996 256.909606934 256.920349121 256.689880371 256.229919434 255.609802246 254.800231934 253.720153809 252.340270996 241.020095825 241.509841919 241.6900177 241.640213013 241.449783325 241.250076294 241.080154419 240.969802856 240.929763794 240.949783325 240.989822388 240.960037231 240.699783325 240.149978638 239.359939575 238.319900513 236.929763794 231.1900177 231.759841919 232.120193481 232.1900177 231.980056763 231.660232544 231.419998169 231.27986145 231.230056763 231.270095825 231.359939575 231.399978638 231.239822388 230.870193481 230.299880981 229.419998169 228.069900513 219.429977417 219.880172729 220.159957886 220.240036011 220.119918823 219.920211792 219.760055542 219.630172729 219.530075073 219.550094604 219.769821167 220.059860229 220.229782104 220.220016479 220.090133667 219.820114136 219.280075073 206.660003662 206.599945068 206.669769287 206.820159912 206.990081787 207.180023193 207.349945068 207.490081787 207.539886475 207.479827881 207.3699646 207.289886475 207.329925537 207.590179443 208.070159912 208.669769287 209.289886475 195.440078735 193.940078735 192.93031311 192.400039673 192.279922485 192.36000061 192.459609985 192.529922485 192.569961548 192.619766235 192.720352173 192.909805298 193.190078735 193.53968811 194.079727173 194.959609985 196.19984436 198.839645386 197.400192261 196.089645386 195.020309448 194.289840698 193.839645386 193.520309448 193.320114136 193.299606323 193.419723511 193.430465698 193.350387573 193.449996948 193.740036011 193.980270386 194.100387573 194.579879761 207.390151978 206.68019104 206.049819946 205.500015259 205.089859009 204.850112915 204.729995728 204.640151978 204.60987854 204.660171509 204.77003479 204.939956665 205.189956665 205.500015259 205.689956665 205.640151978 205.549819946 218.179840088 218.04019165 217.949859619 217.79019165 217.710113525 217.810211182 218.000152588 218.020172119 217.889801025 217.750152588 217.659820557 217.460113525 217.100250244 216.750152588 216.679840088 216.940093994 217.400054932 220.529968262 220.270202637 220.070007324 219.969909668 219.92010498 219.880065918 219.900085449 220.020202637 220.130065918 220.119812012 220.119812012 220.270202637 220.489929199 220.639831543 220.810241699 221.290222168 222.110046387 229.859848022 229.65965271 229.369613647 228.97996521 228.609848022 228.289535522 227.869613647 227.40965271 227.15965271 227.279769897 227.619613647 228.020004272 228.520004272 229.21043396 230.000473022 230.600082397 230.949691772 297.119384766 297.599853516 298.010009766 298.439697266 298.660400391 298.679931641 298.709228516 298.830322266 298.959228516 299.140869141 299.410400391 299.580322266 299.439697266 299.230712891 299.709228516 301.449462891 304.000244141 291.230712891 291.660400391 292.119384766 292.539306641 292.730712891 292.769775391 292.849853516 293.000244141 293.129150391 293.279541016 293.599853516 294.160400391 294.990478516 296.199462891 297.840087891 299.799072266 301.549072266 286.250854492 286.319213867 286.539916992 287.020385742 287.430541992 287.600463867 287.700073242 287.770385742 287.809448242 287.940307617 288.350463867 288.989135742 289.879760742 291.149291992 292.719604492 294.319213867 295.549682617 281.559997559 281.790466309 282.229919434 282.540466309 282.300231934 281.759216309 281.499450684 281.640075684 281.829528809 281.819763184 281.589294434 281.220153809 280.890075684 280.800231934 280.839294434 280.839294434 280.919372559 276.35043335 276.829925537 276.730316162 276.2996521 275.950042725 275.8699646 275.8699646 275.85043335 275.890472412 276.020355225 275.980316162 275.770355225 275.660003662 275.579925537 274.919769287 273.579925537 272.410003662 267.739685059 268.189880371 268.279724121 268.149841309 267.909606934 267.659606934 267.460388184 267.409606934 267.489685059 267.489685059 267.279724121 267.050231934 266.989685059 266.869567871 266.269958496 265.079528809 263.720153809 256.600036621 257.239685059 257.489685059 257.390075684 257.170349121 257.010192871 256.909606934 256.869567871 256.890075684 256.970153809 256.989685059 256.779724121 256.359802246 255.760192871 254.949645996 253.829528809 252.430114746 240.9400177 241.429763794 241.649978638 241.629959106 241.469802856 241.270095825 241.069900513 240.949783325 240.910232544 240.929763794 240.980056763 240.969802856 240.770095825 240.310134888 239.580154419 238.540115356 237.129959106 231.219802856 231.830154419 232.210037231 232.270095825 232.040115356 231.649978638 231.310134888 231.10017395 231.020095825 231.089920044 231.239822388 231.359939575 231.319900513 231.069900513 230.569900513 229.699783325 228.390213013 219.570114136 220.030075073 220.309860229 220.360153198 220.190231323 219.920211792 219.659957886 219.440231323 219.320114136 219.389938354 219.650192261 219.970016479 220.199996948 220.289840698 220.260055542 220.039840698 219.550094604 206.78012085 206.700042725 206.720062256 206.809906006 206.990081787 207.249847412 207.519866943 207.720062256 207.749847412 207.650238037 207.470062256 207.320159912 207.300140381 207.479827881 207.919769287 208.53012085 209.200042725 195.230117798 193.720352173 192.77015686 192.34046936 192.27015686 192.350234985 192.409805298 192.440078735 192.480117798 192.600234985 192.78968811 193.060195923 193.350234985 193.659805298 194.11000061 194.909805298 196.100234985 198.919723511 197.419723511 196.039840698 194.930465698 194.209762573 193.810348511 193.549606323 193.369918823 193.350387573 193.390426636 193.390426636 193.390426636 193.640426636 194.070114136 194.350387573 194.430465698 194.850387573 207.459976196 206.759780884 206.149917603 205.629898071 205.229995728 204.950210571 204.77003479 204.649917603 204.60987854 204.669937134 204.799819946 204.939956665 205.120132446 205.339859009 205.490249634 205.490249634 205.569839478 218.179840088 218.029937744 217.839996338 217.569976807 217.449859619 217.619781494 217.850250244 217.920074463 217.819976807 217.739898682 217.6300354 217.319976807 216.850250244 216.520172119 216.54019165 216.810211182 217.179840088 220.579772949 220.310241699 220.119812012 220.049987793 220.040222168 220.020202637 220.029968262 220.09979248 220.17010498 220.17010498 220.219909668 220.460144043 220.750183105 220.929870605 221.130065918 221.650085449 222.460144043 229.869613647 229.670394897 229.430160522 229.039535522 228.619613647 228.22996521 227.779769897 227.310043335 227.100082397 227.22996521 227.500473022 227.72996521 228.109848022 228.789535522 229.600082397 230.149887085 230.39012146 296.769775391 297.340087891 298.010009766 298.570556641 298.699462891 298.629150391 298.779541016 299.039306641 299.060791016 298.920166016 299.010009766 299.230712891 299.090087891 298.449462891 298.170166016 299.480712891 302.410400391 290.900634766 291.500244141 292.179931641 292.670166016 292.730712891 292.670166016 292.810791016 293.060791016 293.129150391 293.039306641 293.140869141 293.650634766 294.510009766 295.560791016 296.810791016 298.470947266 300.349853516 286.020385742 286.260620117 286.659057617 287.209838867 287.500854492 287.530151367 287.590698242 287.739135742 287.789916992 287.809448242 288.059448242 288.670776367 289.559448242 290.649291992 291.920776367 293.319213867 294.629760742 281.450622559 281.579528809 281.989685059 282.370544434 282.239685059 281.770935059 281.520935059 281.659606934 281.839294434 281.849060059 281.679138184 281.380310059 281.089294434 280.919372559 280.819763184 280.659606934 280.700622559 276.520355225 277.009613037 276.820159912 276.270355225 275.879730225 275.820159912 275.8699646 275.85043335 275.879730225 275.95980835 275.919769287 275.759613037 275.78012085 275.85043335 275.289886475 273.969573975 272.749847412 267.699645996 268.100036621 268.220153809 268.100036621 267.840270996 267.529724121 267.300231934 267.239685059 267.329528809 267.369567871 267.210388184 267.029724121 267.000427246 266.920349121 266.380310059 265.269958496 263.960388184 256.559997559 257.229919434 257.500427246 257.399841309 257.149841309 256.970153809 256.890075684 256.880310059 256.939880371 257.019958496 257.029724121 256.840270996 256.449645996 255.869567871 255.050231934 253.939880371 252.559997559 240.910232544 241.419998169 241.649978638 241.649978638 241.500076294 241.259841919 241.009841919 240.870193481 240.839920044 240.870193481 240.929763794 240.9400177 240.790115356 240.419998169 239.770095825 238.770095825 237.419998169 231.290115356 231.910232544 232.27986145 232.319900513 232.060134888 231.629959106 231.219802856 230.949783325 230.859939575 230.949783325 231.149978638 231.330154419 231.390213013 231.250076294 230.830154419 230.02986145 228.799880981 219.710250854 220.170211792 220.409957886 220.420211792 220.210250854 219.880172729 219.550094604 219.289840698 219.159957886 219.260055542 219.530075073 219.829879761 220.090133667 220.280075073 220.380172729 220.260055542 219.829879761 206.860198975 206.760101318 206.740081787 206.809906006 207.019866943 207.349945068 207.700042725 207.919769287 207.939788818 207.789886475 207.599945068 207.419769287 207.320159912 207.419769287 207.78012085 208.3699646 209.070159912 195.050430298 193.560195923 192.69984436 192.369766235 192.329727173 192.34046936 192.319961548 192.329727173 192.43031311 192.61000061 192.84046936 193.100234985 193.390274048 193.69984436 194.150039673 194.919570923 196.029922485 198.930465698 197.390426636 195.999801636 194.869918823 194.180465698 193.820114136 193.600387573 193.419723511 193.350387573 193.360153198 193.350387573 193.390426636 193.680465698 194.159957886 194.480270386 194.619918823 195.079879761 207.549819946 206.870132446 206.299819946 205.810073853 205.379898071 205.02003479 204.77003479 204.620132446 204.589859009 204.68019104 204.839859009 204.970230103 205.120132446 205.259780884 205.379898071 205.439956665 205.640151978 218.139801025 217.949859619 217.659820557 217.330230713 217.250152588 217.520172119 217.799957275 217.850250244 217.759918213 217.71987915 217.610015869 217.239898682 216.71987915 216.429840088 216.529937744 216.810211182 217.100250244 220.719909668 220.469909668 220.279968262 220.210144043 220.199890137 220.130065918 220.060241699 220.090026855 220.139831543 220.150085449 220.210144043 220.480163574 220.820007324 221.070007324 221.290222168 221.75994873 222.449890137 229.770004272 229.609848022 229.380355835 228.970199585 228.520004272 228.130355835 227.739730835 227.359848022 227.149887085 227.270004272 227.470199585 227.600082397 227.89012146 228.579574585 229.449691772 230.060043335 230.369613647 296.429931641 297.109619141 297.929931641 298.539306641 298.650634766 298.689697266 299.010009766 299.240478516 298.959228516 298.519775391 298.629150391 299.179931641 299.330322266 298.590087891 297.740478516 298.390869141 301.060791016 290.640869141 291.369384766 292.170166016 292.640869141 292.650634766 292.640869141 292.920166016 293.179931641 293.090087891 292.820556641 292.900634766 293.580322266 294.599853516 295.529541016 296.340087891 297.529541016 299.289306641 285.819213867 286.229370117 286.770385742 287.319213867 287.500854492 287.459838867 287.569213867 287.809448242 287.840698242 287.739135742 287.909057617 288.580932617 289.549682617 290.520385742 291.430541992 292.459838867 293.659057617 281.409606934 281.489685059 281.870544434 282.270935059 282.200622559 281.790466309 281.550231934 281.620544434 281.720153809 281.700622559 281.589294434 281.349060059 281.059997559 280.880310059 280.780700684 280.649841309 280.669372559 276.6199646 277.060394287 276.820159912 276.230316162 275.829925537 275.78012085 275.85043335 275.829925537 275.839691162 275.919769287 275.8699646 275.719573975 275.740081787 275.829925537 275.339691162 274.150238037 273.009613037 267.649841309 268.050231934 268.199645996 268.069763184 267.750427246 267.390075684 267.140075684 267.100036621 267.220153809 267.300231934 267.269958496 267.199645996 267.210388184 267.119567871 266.600036621 265.569763184 264.300231934 256.470153809 257.159606934 257.449645996 257.359802246 257.090270996 256.890075684 256.840270996 256.840270996 256.909606934 257.010192871 257.040466309 256.890075684 256.510192871 255.939880371 255.140075684 254.090270996 252.769958496 240.9400177 241.469802856 241.719802856 241.739822388 241.549880981 241.230056763 240.919998169 240.750076294 240.730056763 240.799880981 240.890213013 240.919998169 240.819900513 240.509841919 239.919998169 238.989822388 237.730056763 231.379959106 231.989822388 232.319900513 232.310134888 232.020095825 231.589920044 231.160232544 230.870193481 230.759841919 230.85017395 231.060134888 231.290115356 231.419998169 231.399978638 231.10017395 230.370193481 229.210037231 219.809860229 220.229782104 220.429977417 220.389938354 220.170211792 219.829879761 219.470016479 219.179977417 219.050094604 219.130172729 219.349899292 219.630172729 219.909957886 220.199996948 220.429977417 220.400192261 220.050094604 206.950042725 206.840179443 206.78012085 206.840179443 207.059906006 207.430023193 207.809906006 208.039886475 208.039886475 207.910003662 207.740081787 207.579925537 207.450042725 207.450042725 207.689788818 208.220062256 208.900238037 194.940078735 193.489883423 192.690078735 192.409805298 192.36000061 192.310195923 192.27015686 192.329727173 192.550430298 192.760391235 192.900039673 193.02015686 193.230117798 193.569961548 194.09046936 194.850234985 195.890274048 198.780075073 197.230270386 195.850387573 194.780075073 194.140426636 193.820114136 193.579879761 193.379684448 193.289840698 193.310348511 193.320114136 193.360153198 193.619918823 194.060348511 194.430465698 194.709762573 195.299606323 207.600112915 206.970230103 206.439956665 205.950210571 205.479995728 205.060073853 204.759780884 204.589859009 204.600112915 204.720230103 204.890151978 205.029800415 205.149917603 205.279800415 205.390151978 205.459976196 205.689956665 218.119781494 217.869781494 217.509918213 217.190093994 217.199859619 217.520172119 217.79019165 217.770172119 217.6300354 217.619781494 217.549957275 217.179840088 216.690093994 216.460113525 216.6300354 216.900054932 217.089996338 220.810241699 220.579772949 220.400085449 220.310241699 220.219909668 220.060241699 219.949890137 220.00994873 220.130065918 220.159851074 220.199890137 220.42010498 220.770202637 221.020202637 221.190124512 221.520202637 222.049987793 229.71043396 229.560043335 229.329574585 228.930160522 228.529769897 228.250473022 227.96043396 227.600082397 227.340316772 227.380355835 227.560043335 227.689926147 227.939926147 228.600082397 229.560043335 230.380355835 230.949691772 296.320556641 297.090087891 297.939697266 298.470947266 298.560791016 298.709228516 299.070556641 299.099853516 298.560791016 298.099853516 298.369384766 299.080322266 299.279541016 298.629150391 297.849853516 298.240478516 300.359619141 290.570556641 291.359619141 292.150634766 292.549072266 292.580322266 292.689697266 293.010009766 293.150634766 292.900634766 292.660400391 292.910400391 293.689697266 294.689697266 295.549072266 296.230712891 297.160400391 298.660400391 285.789916992 286.299682617 286.850463867 287.299682617 287.399291992 287.389526367 287.619995117 287.869995117 287.830932617 287.670776367 287.860229492 288.590698242 289.559448242 290.420776367 291.139526367 291.979370117 293.059448242 281.499450684 281.530700684 281.829528809 282.190856934 282.149841309 281.780700684 281.540466309 281.509216309 281.530700684 281.520935059 281.489685059 281.270935059 280.880310059 280.630310059 280.620544434 280.649841309 280.679138184 276.629730225 276.980316162 276.759613037 276.230316162 275.839691162 275.749847412 275.78012085 275.759613037 275.78012085 275.839691162 275.789886475 275.629730225 275.6199646 275.660003662 275.270355225 274.28012085 273.259613037 267.569763184 268.010192871 268.180114746 268.019958496 267.649841309 267.279724121 267.069763184 267.069763184 267.189880371 267.290466309 267.319763184 267.359802246 267.420349121 267.340270996 266.840270996 265.890075684 264.619567871 256.380310059 257.059997559 257.390075684 257.290466309 257.019958496 256.800231934 256.729919434 256.750427246 256.840270996 256.960388184 257.029724121 256.930114746 256.590270996 256.040466309 255.279724121 254.279724121 253.029724121 240.989822388 241.52986145 241.810134888 241.839920044 241.609939575 241.230056763 240.859939575 240.640213013 240.620193481 240.719802856 240.859939575 240.949783325 240.899978638 240.640213013 240.10017395 239.219802856 238.02986145 231.449783325 232.040115356 232.310134888 232.259841919 231.969802856 231.549880981 231.129959106 230.799880981 230.640213013 230.6900177 230.910232544 231.169998169 231.410232544 231.52986145 231.370193481 230.730056763 229.60017395 219.920211792 220.280075073 220.429977417 220.349899292 220.110153198 219.789840698 219.440231323 219.119918823 218.929977417 218.949996948 219.119918823 219.369918823 219.690231323 220.079879761 220.409957886 220.470016479 220.210250854 207.090179443 206.950042725 206.8699646 206.889984131 207.110198975 207.470062256 207.8699646 208.090179443 208.1199646 208.03012085 207.919769287 207.78012085 207.610198975 207.510101318 207.630218506 208.050140381 208.70980835 194.850234985 193.419570923 192.640274048 192.369766235 192.329727173 192.28968811 192.300430298 192.480117798 192.78968811 192.999649048 192.999649048 192.93031311 193.03968811 193.400039673 193.940078735 194.68031311 195.640274048 198.520309448 196.990036011 195.669723511 194.690231323 194.100387573 193.780075073 193.530075073 193.310348511 193.219528198 193.270309448 193.339645386 193.409957886 193.619918823 193.999801636 194.409957886 194.810348511 195.469528198 207.620132446 207.040054321 206.52003479 206.029800415 205.540054321 205.089859009 204.779800415 204.640151978 204.660171509 204.77003479 204.910171509 205.02003479 205.140151978 205.27003479 205.379898071 205.450210571 205.620132446 218.069976807 217.779937744 217.440093994 217.170074463 217.21987915 217.520172119 217.71987915 217.6300354 217.509918213 217.549957275 217.509918213 217.170074463 216.710113525 216.569976807 216.79019165 217.04019165 217.170074463 220.779968262 220.570007324 220.42010498 220.320007324 220.17010498 219.960144043 219.900085449 220.070007324 220.270202637 220.310241699 220.279968262 220.440124512 220.779968262 220.969909668 220.960144043 221.020202637 221.369812012 229.789535522 229.609848022 229.31980896 228.920394897 228.579574585 228.369613647 228.109848022 227.689926147 227.340316772 227.329574585 227.56980896 227.750473022 228.010238647 228.670394897 229.789535522 230.97996521 231.899887085 296.279541016 297.189697266 298.080322266 298.560791016 298.650634766 298.810791016 298.990478516 298.730712891 298.189697266 298.099853516 298.590087891 298.929931641 298.720947266 298.359619141 298.470947266 299.340087891 300.859619141 290.549072266 291.400634766 292.189697266 292.539306641 292.619384766 292.789306641 293.019775391 292.939697266 292.650634766 292.650634766 293.080322266 293.699462891 294.449462891 295.439697266 296.549072266 297.650634766 298.730712891 285.909057617 286.440307617 286.909057617 287.229370117 287.340698242 287.450073242 287.729370117 287.879760742 287.709838867 287.559448242 287.850463867 288.590698242 289.479370117 290.360229492 291.280151367 292.319213867 293.360229492 281.800231934 281.710388184 281.839294434 282.079528809 282.020935059 281.720153809 281.509216309 281.450622559 281.429138184 281.479919434 281.540466309 281.290466309 280.729919434 280.309997559 280.349060059 280.569763184 280.610778809 276.640472412 276.919769287 276.749847412 276.310394287 275.900238037 275.740081787 275.719573975 275.700042725 275.70980835 275.740081787 275.650238037 275.509613037 275.480316162 275.509613037 275.179534912 274.339691162 273.3699646 267.479919434 267.960388184 268.119567871 267.909606934 267.510192871 267.199645996 267.069763184 267.090270996 267.149841309 267.180114746 267.199645996 267.300231934 267.449645996 267.449645996 267.040466309 266.130310059 264.819763184 256.350036621 257.050231934 257.380310059 257.290466309 256.970153809 256.710388184 256.630310059 256.670349121 256.779724121 256.930114746 257.040466309 256.979919434 256.689880371 256.180114746 255.470153809 254.519958496 253.300231934 241.000076294 241.549880981 241.870193481 241.890213013 241.649978638 241.250076294 240.839920044 240.569900513 240.509841919 240.620193481 240.810134888 240.980056763 240.989822388 240.799880981 240.319900513 239.489822388 238.35017395 231.509841919 232.069900513 232.299880981 232.219802856 231.929763794 231.549880981 231.120193481 230.719802856 230.460037231 230.449783325 230.669998169 231.009841919 231.330154419 231.609939575 231.609939575 231.089920044 230.020095825 220.090133667 220.409957886 220.479782104 220.340133667 220.090133667 219.800094604 219.449996948 219.099899292 218.849899292 218.780075073 218.909957886 219.150192261 219.499801636 219.940231323 220.329879761 220.490036011 220.369918823 207.240081787 207.059906006 206.939788818 206.930023193 207.1199646 207.479827881 207.880218506 208.150238037 208.229827881 208.189788818 208.099945068 207.95980835 207.749847412 207.539886475 207.53012085 207.860198975 208.510101318 194.68031311 193.230117798 192.459609985 192.249649048 192.28968811 192.34046936 192.409805298 192.619766235 192.919570923 193.060195923 192.94984436 192.78968811 192.890274048 193.260391235 193.78968811 194.459609985 195.369766235 198.320114136 196.829879761 195.600387573 194.680465698 194.119918823 193.799606323 193.549606323 193.339645386 193.240036011 193.289840698 193.390426636 193.499801636 193.709762573 194.060348511 194.459762573 194.860153198 195.430465698 207.600112915 207.009780884 206.479995728 205.979995728 205.500015259 205.089859009 204.799819946 204.68019104 204.68019104 204.759780884 204.85987854 204.939956665 205.029800415 205.140151978 205.259780884 205.330093384 205.479995728 218.020172119 217.759918213 217.520172119 217.29019165 217.299957275 217.509918213 217.639801025 217.610015869 217.610015869 217.730133057 217.670074463 217.250152588 216.779937744 216.679840088 216.96987915 217.270172119 217.420074463 220.679870605 220.500183105 220.400085449 220.329772949 220.190124512 220.020202637 220.00994873 220.210144043 220.380065918 220.340026855 220.279968262 220.489929199 220.84979248 220.960144043 220.690124512 220.429870605 220.590026855 229.90965271 229.670394897 229.289535522 228.829574585 228.46043396 228.220199585 227.90965271 227.46043396 227.15965271 227.239730835 227.55027771 227.750473022 227.949691772 228.630355835 230.020004272 231.699691772 233.000473022 296.080322266 297.189697266 298.230712891 298.779541016 298.959228516 299.109619141 299.029541016 298.519775391 298.170166016 298.629150391 299.299072266 299.099853516 298.400634766 298.650634766 300.209228516 301.920166016 302.709228516 290.449462891 291.449462891 292.299072266 292.660400391 292.779541016 292.959228516 293.029541016 292.769775391 292.590087891 292.939697266 293.459228516 293.699462891 294.140869141 295.560791016 297.609619141 299.129150391 299.549072266 286.059448242 286.619995117 287.039916992 287.299682617 287.450073242 287.690307617 287.930541992 287.869995117 287.549682617 287.459838867 287.879760742 288.600463867 289.420776367 290.569213867 292.110229492 293.690307617 294.659057617 282.229919434 281.919372559 281.809997559 281.890075684 281.819763184 281.610778809 281.489685059 281.470153809 281.460388184 281.559997559 281.679138184 281.409606934 280.690856934 280.089294434 280.120544434 280.479919434 280.569763184 276.719573975 276.950042725 276.839691162 276.429534912 275.95980835 275.6902771 275.629730225 275.6902771 275.730316162 275.679534912 275.539886475 275.390472412 275.3699646 275.329925537 274.950042725 274.10043335 273.089691162 267.470153809 267.939880371 268.029724121 267.739685059 267.369567871 267.140075684 267.090270996 267.100036621 267.079528809 267.010192871 266.970153809 267.090270996 267.350036621 267.489685059 267.180114746 266.290466309 264.920349121 256.359802246 257.100036621 257.449645996 257.319763184 256.939880371 256.640075684 256.550231934 256.619567871 256.750427246 256.909606934 257.010192871 256.960388184 256.750427246 256.350036621 255.720153809 254.800231934 253.569763184 240.949783325 241.540115356 241.879959106 241.910232544 241.669998169 241.270095825 240.839920044 240.520095825 240.399978638 240.489822388 240.719802856 240.929763794 241.02986145 240.949783325 240.580154419 239.85017395 238.750076294 231.640213013 232.160232544 232.319900513 232.199783325 231.9400177 231.580154419 231.129959106 230.660232544 230.310134888 230.250076294 230.480056763 230.839920044 231.219802856 231.60017395 231.770095825 231.449783325 230.509841919 220.320114136 220.590133667 220.570114136 220.349899292 220.059860229 219.780075073 219.479782104 219.130172729 218.849899292 218.729782104 218.820114136 219.050094604 219.380172729 219.789840698 220.210250854 220.470016479 220.490036011 207.349945068 207.110198975 206.950042725 206.930023193 207.070159912 207.410003662 207.820159912 208.150238037 208.28012085 208.289886475 208.220062256 208.070159912 207.840179443 207.570159912 207.45980835 207.669769287 208.260101318 194.350234985 192.940078735 192.239883423 192.150039673 192.369766235 192.53968811 192.600234985 192.650039673 192.720352173 192.690078735 192.550430298 192.499649048 192.69984436 193.100234985 193.59046936 194.239883423 195.169570923 198.230270386 196.820114136 195.669723511 194.789840698 194.199996948 193.860153198 193.650192261 193.490036011 193.369918823 193.350387573 193.419723511 193.570114136 193.799606323 194.110153198 194.419723511 194.690231323 195.060348511 207.500015259 206.839859009 206.279800415 205.799819946 205.399917603 205.069839478 204.790054321 204.629898071 204.580093384 204.649917603 204.77003479 204.870132446 204.93019104 205.009780884 205.129898071 205.27003479 205.500015259 218.080230713 217.920074463 217.770172119 217.560211182 217.480133057 217.549957275 217.659820557 217.770172119 217.960113525 218.139801025 218.000152588 217.440093994 216.850250244 216.71987915 217.069976807 217.489898682 217.819976807 220.619812012 220.42010498 220.34979248 220.329772949 220.250183105 220.119812012 220.09979248 220.179870605 220.150085449 219.980163574 219.960144043 220.340026855 220.84979248 220.949890137 220.480163574 219.949890137 219.949890137 229.920394897 229.64012146 229.21043396 228.699691772 228.250473022 227.930160522 227.619613647 227.340316772 227.289535522 227.56980896 227.869613647 227.899887085 227.920394897 228.579574585 230.220199585 232.340316772 233.96043396 295.859619141 297.140869141 298.320556641 299.010009766 299.299072266 299.439697266 299.179931641 298.510009766 298.299072266 299.140869141 299.929931641 299.539306641 298.900634766 300.039306641 302.900634766 305.080322266 304.929931641 290.390869141 291.609619141 292.549072266 292.920166016 293.000244141 293.129150391 293.119384766 292.869384766 292.900634766 293.490478516 293.980712891 293.910400391 294.269775391 296.269775391 299.220947266 301.019775391 300.650634766 286.270385742 286.899291992 287.330932617 287.559448242 287.729370117 287.969604492 288.110229492 287.869995117 287.469604492 287.469604492 287.979370117 288.649291992 289.500854492 291.049682617 293.319213867 295.420776367 296.190307617 282.550231934 281.999450684 281.649841309 281.589294434 281.540466309 281.450622559 281.440856934 281.460388184 281.450622559 281.559997559 281.700622559 281.440856934 280.659606934 279.970153809 279.999450684 280.489685059 280.729919434 276.810394287 277.009613037 276.9402771 276.539886475 275.95980835 275.570159912 275.539886475 275.70980835 275.820159912 275.730316162 275.520355225 275.360198975 275.28012085 275.089691162 274.499847412 273.520355225 272.450042725 267.699645996 268.109802246 268.019958496 267.619567871 267.250427246 267.100036621 267.090270996 267.090270996 267.059997559 266.979919434 266.920349121 267.019958496 267.329528809 267.569763184 267.319763184 266.439880371 265.010192871 256.399841309 257.170349121 257.510192871 257.359802246 256.930114746 256.559997559 256.449645996 256.550231934 256.720153809 256.850036621 256.880310059 256.840270996 256.720153809 256.470153809 255.970153809 255.100036621 253.859802246 240.9400177 241.540115356 241.870193481 241.919998169 241.699783325 241.299880981 240.859939575 240.489822388 240.330154419 240.410232544 240.620193481 240.85017395 240.989822388 241.02986145 240.85017395 240.270095825 239.250076294 231.839920044 232.299880981 232.370193481 232.199783325 231.9400177 231.620193481 231.199783325 230.699783325 230.310134888 230.239822388 230.469802856 230.790115356 231.140213013 231.52986145 231.839920044 231.739822388 231.000076294 220.579879761 220.769821167 220.659957886 220.349899292 220.010055542 219.749801636 219.490036011 219.199996948 218.929977417 218.820114136 218.909957886 219.090133667 219.349899292 219.679977417 220.070114136 220.409957886 220.570114136 207.380218506 207.099945068 206.919769287 206.8699646 206.95980835 207.20980835 207.570159912 207.900238037 208.090179443 208.169769287 208.180023193 208.099945068 207.900238037 207.639984131 207.45980835 207.53012085 207.990081787 193.959609985 192.640274048 192.079727173 192.18031311 192.600234985 192.919570923 192.940078735 192.720352173 192.43031311 192.18031311 192.029922485 192.100234985 192.37953186 192.77015686 193.249649048 193.94984436 194.999649048 198.159957886 196.810348511 195.740036011 194.869918823 194.219528198 193.850387573 193.699996948 193.640426636 193.549606323 193.480270386 193.509567261 193.650192261 193.860153198 194.089645386 194.259567261 194.360153198 194.570114136 207.350112915 206.660171509 206.080093384 205.669937134 205.350112915 205.069839478 204.790054321 204.52003479 204.399917603 204.479995728 204.669937134 204.830093384 204.910171509 204.970230103 205.10987854 205.350112915 205.77003479 218.250152588 218.150054932 218.000152588 217.770172119 217.600250244 217.619781494 217.759918213 217.980133057 218.279937744 218.46987915 218.239898682 217.569976807 216.909820557 216.699859619 217.009918213 217.529937744 218.089996338 220.579772949 220.320007324 220.250183105 220.25994873 220.219909668 220.110046387 220.000183105 219.880065918 219.630065918 219.369812012 219.440124512 220.020202637 220.719909668 220.909851074 220.440124512 219.829772949 219.690124512 229.850082397 229.619613647 229.21043396 228.680160522 228.180160522 227.840316772 227.64012146 227.65965271 227.949691772 228.369613647 228.539535522 228.289535522 228.05027771 228.590316772 230.279769897 232.560043335 234.399887085 295.970947266 297.330322266 298.539306641 299.170166016 299.390869141 299.470947266 299.179931641 298.470947266 298.209228516 298.959228516 299.810791016 299.769775391 299.869384766 301.820556641 305.060791016 306.859619141 305.830322266 290.699462891 292.080322266 293.029541016 293.260009766 293.179931641 293.240478516 293.299072266 293.170166016 293.299072266 293.900634766 294.330322266 294.260009766 294.849853516 297.269775391 300.529541016 302.140869141 301.099853516 286.739135742 287.399291992 287.830932617 287.979370117 288.010620117 288.119995117 288.159057617 287.889526367 287.559448242 287.629760742 288.149291992 288.750854492 289.659057617 291.489135742 294.119995117 296.330932617 296.809448242 282.599060059 281.880310059 281.370544434 281.259216309 281.259216309 281.270935059 281.339294434 281.380310059 281.360778809 281.419372559 281.520935059 281.259216309 280.520935059 279.860778809 279.890075684 280.479919434 280.970153809 276.749847412 276.9402771 276.950042725 276.570159912 275.950042725 275.45980835 275.419769287 275.6902771 275.890472412 275.810394287 275.589691162 275.410003662 275.28012085 274.890472412 274.060394287 272.9402771 271.890472412 268.189880371 268.489685059 268.149841309 267.579528809 267.199645996 267.090270996 267.079528809 267.100036621 267.159606934 267.159606934 267.119567871 267.199645996 267.479919434 267.729919434 267.500427246 266.600036621 265.180114746 256.449645996 257.199645996 257.519958496 257.350036621 256.899841309 256.500427246 256.369567871 256.460388184 256.630310059 256.699645996 256.659606934 256.619567871 256.619567871 256.540466309 256.170349121 255.380310059 254.220153809 240.989822388 241.580154419 241.890213013 241.929763794 241.739822388 241.370193481 240.910232544 240.52986145 240.359939575 240.449783325 240.649978638 240.819900513 240.960037231 241.080154419 241.069900513 240.669998169 239.790115356 232.089920044 232.460037231 232.4400177 232.219802856 231.949783325 231.669998169 231.27986145 230.819900513 230.449783325 230.390213013 230.60017395 230.870193481 231.120193481 231.449783325 231.819900513 231.910232544 231.410232544 220.769821167 220.889938354 220.720016479 220.349899292 219.990036011 219.720016479 219.499801636 219.260055542 219.019821167 218.920211792 218.999801636 219.159957886 219.349899292 219.599899292 219.949996948 220.309860229 220.570114136 207.360198975 207.079925537 206.910003662 206.820159912 206.789886475 206.910003662 207.1199646 207.380218506 207.610198975 207.789886475 207.950042725 208.010101318 207.919769287 207.70980835 207.499847412 207.45980835 207.760101318 193.600234985 192.440078735 192.02015686 192.260391235 192.850234985 193.369766235 193.480117798 193.169570923 192.650039673 192.19984436 191.970352173 191.970352173 192.100234985 192.319961548 192.739883423 193.569961548 194.749649048 197.990036011 196.680465698 195.669723511 194.850387573 194.190231323 193.780075073 193.669723511 193.690231323 193.690231323 193.650192261 193.680465698 193.789840698 193.930465698 194.049606323 194.129684448 194.150192261 194.310348511 207.279800415 206.600112915 206.060073853 205.689956665 205.43019104 205.18019104 204.839859009 204.479995728 204.27003479 204.330093384 204.580093384 204.810073853 204.93019104 204.979995728 205.129898071 205.450210571 206.069839478 218.369781494 218.190093994 217.949859619 217.659820557 217.520172119 217.610015869 217.819976807 218.069976807 218.299957275 218.400054932 218.159820557 217.589996338 216.989898682 216.710113525 216.839996338 217.310211182 218.020172119 220.500183105 220.239929199 220.17010498 220.199890137 220.159851074 220.020202637 219.840026855 219.610046387 219.299987793 219.070007324 219.230163574 219.840026855 220.560241699 220.869812012 220.59979248 220.130065918 219.949890137 229.89012146 229.71043396 229.31980896 228.779769897 228.279769897 227.96043396 227.880355835 228.079574585 228.510238647 228.89012146 228.90965271 228.529769897 228.250473022 228.649887085 230.039535522 232.05027771 233.880355835 296.429931641 297.820556641 298.939697266 299.359619141 299.269775391 299.160400391 298.939697266 298.340087891 297.879150391 298.179931641 298.910400391 299.500244141 300.480712891 302.660400391 305.109619141 305.820556641 304.369384766 291.480712891 292.879150391 293.740478516 293.730712891 293.369384766 293.269775391 293.379150391 293.349853516 293.369384766 293.709228516 294.099853516 294.410400391 295.439697266 297.859619141 300.560791016 301.519775391 300.220947266 287.590698242 288.180541992 288.520385742 288.489135742 288.260620117 288.129760742 288.100463867 287.959838867 287.760620117 287.850463867 288.260620117 288.840698242 289.809448242 291.600463867 293.979370117 295.760620117 295.920776367 282.440856934 281.669372559 281.149841309 281.040466309 281.099060059 281.179138184 281.300231934 281.390075684 281.390075684 281.390075684 281.380310059 281.059997559 280.360778809 279.729919434 279.700622559 280.259216309 280.909606934 276.509613037 276.719573975 276.820159912 276.5496521 275.950042725 275.429534912 275.339691162 275.60043335 275.839691162 275.810394287 275.640472412 275.490081787 275.320159912 274.829925537 273.919769287 272.789886475 271.789886475 268.760192871 268.930114746 268.340270996 267.600036621 267.189880371 267.100036621 267.090270996 267.149841309 267.290466309 267.409606934 267.409606934 267.420349121 267.640075684 267.869567871 267.649841309 266.790466309 265.420349121 256.529724121 257.229919434 257.500427246 257.329528809 256.890075684 256.489685059 256.309997559 256.380310059 256.519958496 256.529724121 256.449645996 256.430114746 256.529724121 256.579528809 256.319763184 255.619567871 254.559997559 241.140213013 241.679763794 241.9400177 241.989822388 241.839920044 241.489822388 241.000076294 240.589920044 240.4400177 240.569900513 240.790115356 240.9400177 241.040115356 241.179763794 241.270095825 241.009841919 240.259841919 232.310134888 232.589920044 232.509841919 232.27986145 232.020095825 231.739822388 231.370193481 230.929763794 230.580154419 230.520095825 230.710037231 230.949783325 231.149978638 231.419998169 231.790115356 231.989822388 231.6900177 220.929977417 221.010055542 220.820114136 220.449996948 220.059860229 219.760055542 219.519821167 219.260055542 219.019821167 218.900192261 218.970016479 219.130172729 219.320114136 219.559860229 219.869918823 220.229782104 220.530075073 207.349945068 207.099945068 206.939788818 206.800140381 206.650238037 206.559906006 206.590179443 206.740081787 206.999847412 207.320159912 207.610198975 207.800140381 207.800140381 207.680023193 207.499847412 207.430023193 207.610198975 193.319961548 192.329727173 191.999649048 192.260391235 192.93031311 193.690078735 194.119766235 194.03968811 193.600234985 193.060195923 192.669570923 192.369766235 192.11000061 191.94984436 192.230117798 193.140274048 194.43031311 197.780075073 196.490036011 195.579879761 194.850387573 194.219528198 193.780075073 193.650192261 193.690231323 193.759567261 193.789840698 193.869918823 193.949996948 193.999801636 194.039840698 194.129684448 194.230270386 194.419723511 207.35987854 206.720230103 206.209976196 205.819839478 205.549819946 205.279800415 204.919937134 204.529800415 204.299819946 204.330093384 204.560073853 204.790054321 204.919937134 204.979995728 205.089859009 205.399917603 206.10987854 218.259918213 217.960113525 217.619781494 217.339996338 217.350250244 217.600250244 217.869781494 217.980133057 218.000152588 217.96987915 217.810211182 217.500152588 217.139801025 216.839996338 216.71987915 216.960113525 217.659820557 220.460144043 220.239929199 220.219909668 220.230163574 220.159851074 219.989929199 219.829772949 219.710144043 219.579772949 219.480163574 219.59979248 219.989929199 220.469909668 220.770202637 220.790222168 220.659851074 220.529968262 230.06980896 229.859848022 229.420394897 228.869613647 228.399887085 228.090316772 227.930160522 227.97996521 228.199691772 228.40965271 228.420394897 228.31980896 228.369613647 228.789535522 229.649887085 230.970199585 232.489730835 296.920166016 298.289306641 299.349853516 299.619384766 299.230712891 298.879150391 298.699462891 298.289306641 297.670166016 297.420166016 297.859619141 298.869384766 300.340087891 302.019775391 302.949462891 302.429931641 301.129150391 292.570556641 293.820556641 294.519775391 294.320556641 293.670166016 293.310791016 293.320556641 293.240478516 292.980712891 292.910400391 293.260009766 294.070556641 295.529541016 297.539306641 299.170166016 299.349853516 298.179931641 288.789916992 289.180541992 289.319213867 289.069213867 288.549682617 288.170776367 288.059448242 288.030151367 287.940307617 287.930541992 288.209838867 288.819213867 289.830932617 291.369995117 293.030151367 294.059448242 293.969604492 282.229919434 281.569763184 281.120544434 281.020935059 281.110778809 281.249450684 281.440856934 281.589294434 281.649841309 281.630310059 281.499450684 281.099060059 280.409606934 279.770935059 279.559997559 279.839294434 280.360778809 276.1902771 276.419769287 276.610198975 276.45980835 275.950042725 275.45980835 275.329925537 275.520355225 275.700042725 275.719573975 275.629730225 275.539886475 275.3699646 274.919769287 274.129730225 273.129730225 272.150238037 269.079528809 269.140075684 268.420349121 267.619567871 267.210388184 267.140075684 267.140075684 267.210388184 267.399841309 267.540466309 267.479919434 267.439880371 267.619567871 267.890075684 267.760192871 266.989685059 265.699645996 256.670349121 257.300231934 257.500427246 257.329528809 256.920349121 256.510192871 256.290466309 256.300231934 256.409606934 256.399841309 256.300231934 256.309997559 256.500427246 256.630310059 256.420349121 255.809997559 254.859802246 241.35017395 241.799880981 241.989822388 242.060134888 241.960037231 241.620193481 241.10017395 240.640213013 240.500076294 240.669998169 240.9400177 241.10017395 241.1900177 241.330154419 241.429763794 241.250076294 240.620193481 232.449783325 232.660232544 232.589920044 232.399978638 232.160232544 231.859939575 231.469802856 231.009841919 230.649978638 230.549880981 230.719802856 230.969802856 231.169998169 231.419998169 231.770095825 232.020095825 231.890213013 221.079879761 221.139938354 220.970016479 220.619918823 220.199996948 219.840133667 219.550094604 219.260055542 218.979782104 218.829879761 218.880172729 219.059860229 219.300094604 219.559860229 219.860153198 220.179977417 220.510055542 207.360198975 207.130218506 206.970062256 206.749847412 206.479827881 206.240081787 206.139984131 206.240081787 206.550140381 206.95980835 207.340179443 207.539886475 207.590179443 207.53012085 207.450042725 207.410003662 207.570159912 193.159805298 192.279922485 191.940078735 192.11000061 192.779922485 193.760391235 194.600234985 194.94984436 194.739883423 194.239883423 193.68031311 193.060195923 192.329727173 191.77015686 191.890274048 192.850234985 194.140274048 197.579879761 196.350387573 195.560348511 194.980270386 194.419723511 193.969528198 193.770309448 193.740036011 193.780075073 193.850387573 193.969528198 194.039840698 194.009567261 194.030075073 194.209762573 194.449996948 194.699996948 207.500015259 206.890151978 206.330093384 205.879898071 205.529800415 205.229995728 204.93019104 204.660171509 204.500015259 204.509780884 204.660171509 204.810073853 204.910171509 204.959976196 205.000015259 205.189956665 205.819839478 218.04019165 217.690093994 217.350250244 217.179840088 217.350250244 217.71987915 217.940093994 217.860015869 217.670074463 217.529937744 217.449859619 217.3800354 217.270172119 217.009918213 216.710113525 216.679840088 217.230133057 220.500183105 220.329772949 220.290222168 220.270202637 220.119812012 219.969909668 219.949890137 220.060241699 220.179870605 220.219909668 220.250183105 220.299987793 220.42010498 220.610046387 220.860046387 221.049987793 221.049987793 230.22996521 229.96043396 229.449691772 228.920394897 228.510238647 228.170394897 227.760238647 227.420394897 227.270004272 227.289535522 227.46043396 227.840316772 228.46043396 229.05027771 229.430160522 229.939926147 230.939926147 297.420166016 298.580322266 299.580322266 299.939697266 299.519775391 298.929931641 298.629150391 298.310791016 297.660400391 297.070556641 297.199462891 298.240478516 299.670166016 300.480712891 299.990478516 298.650634766 297.859619141 293.910400391 294.820556641 295.269775391 294.959228516 294.109619141 293.410400391 293.179931641 293.019775391 292.549072266 292.109619141 292.330322266 293.420166016 295.019775391 296.470947266 297.090087891 296.740478516 295.959228516 290.139526367 290.229370117 290.129760742 289.700073242 288.979370117 288.350463867 288.119995117 288.100463867 288.010620117 287.860229492 287.989135742 288.610229492 289.659057617 290.869995117 291.819213867 292.170776367 291.899291992 282.089294434 281.630310059 281.259216309 281.120544434 281.210388184 281.419372559 281.669372559 281.839294434 281.909606934 281.909606934 281.770935059 281.380310059 280.780700684 280.169372559 279.759216309 279.559997559 279.579528809 275.980316162 276.249847412 276.45980835 276.320159912 275.8699646 275.469573975 275.360198975 275.480316162 275.6199646 275.650238037 275.6199646 275.539886475 275.379730225 275.060394287 274.53012085 273.70980835 272.650238037 268.939880371 269.019958496 268.350036621 267.609802246 267.260192871 267.210388184 267.250427246 267.340270996 267.479919434 267.529724121 267.390075684 267.300231934 267.489685059 267.809997559 267.800231934 267.210388184 265.989685059 256.819763184 257.369567871 257.529724121 257.359802246 256.970153809 256.529724121 256.250427246 256.220153809 256.290466309 256.279724121 256.189880371 256.229919434 256.470153809 256.659606934 256.519958496 255.989685059 255.130310059 241.609939575 241.9400177 242.049880981 242.129959106 242.10017395 241.770095825 241.1900177 240.679763794 240.500076294 240.6900177 240.989822388 241.199783325 241.310134888 241.449783325 241.549880981 241.429763794 240.919998169 232.500076294 232.669998169 232.660232544 232.549880981 232.339920044 232.020095825 231.60017395 231.140213013 230.739822388 230.589920044 230.719802856 230.969802856 231.210037231 231.4400177 231.739822388 232.000076294 232.020095825 221.249801636 221.300094604 221.139938354 220.789840698 220.329879761 219.920211792 219.590133667 219.300094604 219.039840698 218.900192261 218.949996948 219.130172729 219.369918823 219.619918823 219.880172729 220.170211792 220.510055542 207.400238037 207.150238037 206.919769287 206.6199646 206.269866943 205.970062256 205.820159912 205.930023193 206.289886475 206.769866943 207.150238037 207.329925537 207.380218506 207.380218506 207.389984131 207.430023193 207.590179443 193.060195923 192.249649048 191.86000061 191.909805298 192.52015686 193.600234985 194.739883423 195.37953186 195.329727173 194.829727173 194.190078735 193.43031311 192.489883423 191.749649048 191.78968811 192.749649048 193.959609985 197.430465698 196.310348511 195.629684448 195.169723511 194.719528198 194.320114136 194.049606323 193.919723511 193.829879761 193.869918823 193.999801636 194.079879761 194.020309448 194.020309448 194.289840698 194.650192261 194.930465698 207.589859009 206.939956665 206.330093384 205.790054321 205.370132446 205.080093384 204.879898071 204.740249634 204.68019104 204.720230103 204.779800415 204.839859009 204.910171509 204.970230103 204.979995728 205.02003479 205.500015259 217.929840088 217.659820557 217.400054932 217.319976807 217.560211182 217.900054932 218.009918213 217.830230713 217.600250244 217.480133057 217.429840088 217.389801025 217.319976807 217.089996338 216.710113525 216.520172119 216.909820557 220.579772949 220.360046387 220.239929199 220.110046387 219.949890137 219.880065918 220.000183105 220.250183105 220.469909668 220.570007324 220.540222168 220.440124512 220.380065918 220.500183105 220.820007324 221.159851074 221.239929199 230.239730835 229.949691772 229.489730835 229.060043335 228.739730835 228.310043335 227.64012146 227.000473022 226.689926147 226.720199585 226.989730835 227.609848022 228.55027771 229.30027771 229.439926147 229.40965271 229.949691772 298.439697266 299.010009766 299.750244141 300.260009766 300.029541016 299.269775391 298.619384766 298.160400391 297.580322266 296.990478516 296.970947266 297.840087891 298.929931641 299.090087891 297.869384766 296.310791016 295.910400391 295.629150391 295.920166016 296.000244141 295.590087891 294.599853516 293.580322266 293.109619141 292.959228516 292.560791016 291.980712891 291.959228516 292.879150391 294.269775391 295.220947266 295.310791016 294.869384766 294.449462891 291.530151367 291.250854492 290.840698242 290.280151367 289.459838867 288.649291992 288.229370117 288.170776367 288.039916992 287.799682617 287.789916992 288.340698242 289.289916992 290.209838867 290.739135742 290.770385742 290.450073242 281.999450684 281.749450684 281.429138184 281.229919434 281.300231934 281.579528809 281.819763184 281.899841309 281.880310059 281.880310059 281.860778809 281.659606934 281.290466309 280.860778809 280.349060059 279.710388184 279.089294434 275.929534912 276.289886475 276.450042725 276.200042725 275.730316162 275.419769287 275.400238037 275.539886475 275.629730225 275.669769287 275.669769287 275.560394287 275.3699646 275.160003662 274.890472412 274.28012085 273.079925537 268.519958496 268.680114746 268.229919434 267.649841309 267.350036621 267.309997559 267.380310059 267.489685059 267.579528809 267.519958496 267.300231934 267.199645996 267.380310059 267.699645996 267.800231934 267.399841309 266.319763184 256.930114746 257.449645996 257.590270996 257.430114746 257.040466309 256.550231934 256.199645996 256.119567871 256.199645996 256.189880371 256.100036621 256.159606934 256.439880371 256.680114746 256.619567871 256.199645996 255.420349121 241.859939575 242.10017395 242.160232544 242.239822388 242.239822388 241.919998169 241.319900513 240.759841919 240.549880981 240.699783325 240.969802856 241.179763794 241.35017395 241.509841919 241.620193481 241.549880981 241.169998169 232.520095825 232.660232544 232.699783325 232.669998169 232.469802856 232.149978638 231.759841919 231.339920044 230.969802856 230.77986145 230.879959106 231.10017395 231.310134888 231.480056763 231.710037231 231.960037231 232.10017395 221.460250854 221.470016479 221.300094604 220.929977417 220.429977417 219.979782104 219.639938354 219.389938354 219.220016479 219.179977417 219.260055542 219.420211792 219.590133667 219.760055542 219.929977417 220.150192261 220.510055542 207.439788818 207.130218506 206.820159912 206.450042725 206.050140381 205.740081787 205.599945068 205.720062256 206.079925537 206.559906006 206.939788818 207.1199646 207.20980835 207.300140381 207.380218506 207.45980835 207.6199646 192.909805298 192.169570923 191.77015686 191.730117798 192.27015686 193.36000061 194.560195923 195.249649048 195.18031311 194.619766235 194.010391235 193.34046936 192.52015686 191.829727173 191.87953186 192.78968811 193.890274048 197.329879761 196.310348511 195.699996948 195.310348511 194.959762573 194.659957886 194.419723511 194.209762573 193.999801636 193.959762573 194.089645386 194.199996948 194.129684448 194.100387573 194.369918823 194.780075073 195.070114136 207.589859009 206.910171509 206.27003479 205.720230103 205.290054321 204.979995728 204.790054321 204.689956665 204.68019104 204.709976196 204.750015259 204.779800415 204.850112915 204.970230103 205.029800415 205.049819946 205.410171509 218.009918213 217.810211182 217.580230713 217.500152588 217.679840088 217.929840088 217.989898682 217.909820557 217.900054932 217.949859619 217.850250244 217.600250244 217.330230713 217.029937744 216.6300354 216.389801025 216.650054932 220.59979248 220.290222168 220.060241699 219.869812012 219.75994873 219.779968262 219.960144043 220.139831543 220.190124512 220.190124512 220.210144043 220.290222168 220.389831543 220.579772949 220.880065918 221.150085449 221.17010498 230.15965271 229.939926147 229.609848022 229.31980896 229.020004272 228.46043396 227.65965271 227.06980896 227.039535522 227.289535522 227.47996521 227.80027771 228.510238647 229.220199585 229.399887085 229.310043335 229.699691772 300.369384766 300.000244141 300.060791016 300.510009766 300.480712891 299.619384766 298.529541016 297.779541016 297.310791016 297.000244141 297.080322266 297.740478516 298.529541016 298.480712891 297.260009766 295.840087891 295.449462891 297.640869141 297.189697266 296.709228516 296.080322266 294.970947266 293.750244141 293.119384766 293.119384766 293.019775391 292.539306641 292.269775391 292.750244141 293.689697266 294.310791016 294.310791016 294.029541016 293.779541016 292.850463867 292.119995117 291.409057617 290.750854492 289.879760742 288.940307617 288.399291992 288.280151367 288.200073242 287.969604492 287.869995117 288.219604492 288.879760742 289.520385742 289.920776367 289.979370117 289.700073242 281.890075684 281.800231934 281.520935059 281.270935059 281.339294434 281.669372559 281.849060059 281.720153809 281.520935059 281.520935059 281.669372559 281.749450684 281.679138184 281.499450684 281.069763184 280.220153809 279.120544434 275.919769287 276.419769287 276.579925537 276.219573975 275.669769287 275.410003662 275.499847412 275.650238037 275.700042725 275.719573975 275.730316162 275.610198975 275.379730225 275.230316162 275.179534912 274.740081787 273.450042725 268.109802246 268.430114746 268.220153809 267.790466309 267.489685059 267.390075684 267.449645996 267.579528809 267.619567871 267.489685059 267.269958496 267.180114746 267.329528809 267.540466309 267.659606934 267.470153809 266.609802246 256.970153809 257.519958496 257.720153809 257.590270996 257.180114746 256.630310059 256.199645996 256.090270996 256.170349121 256.180114746 256.100036621 256.140075684 256.420349121 256.699645996 256.729919434 256.409606934 255.729919434 242.080154419 242.290115356 242.310134888 242.379959106 242.379959106 242.060134888 241.480056763 240.949783325 240.719802856 240.810134888 241.009841919 241.210037231 241.379959106 241.540115356 241.649978638 241.640213013 241.390213013 232.569900513 232.679763794 232.750076294 232.750076294 232.560134888 232.239822388 231.899978638 231.549880981 231.230056763 231.080154419 231.169998169 231.379959106 231.509841919 231.589920044 231.719802856 231.929763794 232.120193481 221.670211792 221.639938354 221.429977417 221.050094604 220.539840698 220.059860229 219.699996948 219.479782104 219.400192261 219.479782104 219.630172729 219.760055542 219.840133667 219.909957886 219.999801636 220.159957886 220.490036011 207.470062256 207.150238037 206.78012085 206.349945068 205.919769287 205.6199646 205.479827881 205.539886475 205.820159912 206.189788818 206.519866943 206.749847412 206.95980835 207.189788818 207.360198975 207.450042725 207.599945068 192.68031311 192.02015686 191.62953186 191.569961548 192.02015686 193.010391235 194.159805298 194.819961548 194.730117798 194.190078735 193.68031311 193.239883423 192.640274048 192.03968811 192.03968811 192.810195923 193.779922485 197.270309448 196.310348511 195.730270386 195.390426636 195.129684448 194.940231323 194.770309448 194.530075073 194.259567261 194.159957886 194.280075073 194.400192261 194.320114136 194.240036011 194.449996948 194.850387573 195.199996948 207.569839478 206.899917603 206.319839478 205.810073853 205.370132446 205.02003479 204.740249634 204.549819946 204.459976196 204.490249634 204.560073853 204.629898071 204.720230103 204.899917603 205.069839478 205.189956665 205.549819946 218.139801025 217.860015869 217.560211182 217.420074463 217.54019165 217.779937744 217.929840088 218.080230713 218.360015869 218.580230713 218.420074463 217.889801025 217.350250244 216.929840088 216.54019165 216.230133057 216.350250244 220.549987793 220.219909668 219.969909668 219.810241699 219.750183105 219.829772949 219.929870605 219.880065918 219.639831543 219.469909668 219.610046387 220.040222168 220.489929199 220.820007324 221.060241699 221.159851074 221.020202637 230.15965271 229.989730835 229.760238647 229.489730835 229.100082397 228.430160522 227.670394897 227.40965271 227.869613647 228.420394897 228.40965271 228.109848022 228.239730835 228.779769897 229.149887085 229.30027771 229.80027771 302.640869141 301.330322266 300.480712891 300.570556641 300.619384766 299.810791016 298.500244141 297.549072266 297.230712891 297.260009766 297.459228516 297.929931641 298.490478516 298.539306641 297.699462891 296.459228516 295.699462891 299.490478516 298.390869141 297.289306641 296.340087891 295.160400391 293.869384766 293.189697266 293.289306641 293.470947266 293.209228516 292.840087891 292.949462891 293.459228516 293.879150391 293.949462891 293.779541016 293.400634766 293.860229492 292.770385742 291.809448242 291.039916992 290.139526367 289.170776367 288.569213867 288.469604492 288.459838867 288.299682617 288.180541992 288.299682617 288.610229492 288.969604492 289.340698242 289.539916992 289.250854492 281.759216309 281.739685059 281.489685059 281.229919434 281.349060059 281.710388184 281.819763184 281.499450684 281.159606934 281.169372559 281.450622559 281.720153809 281.849060059 281.839294434 281.540466309 280.739685059 279.509216309 275.7996521 276.490081787 276.730316162 276.35043335 275.789886475 275.5496521 275.660003662 275.770355225 275.730316162 275.70980835 275.749847412 275.669769287 275.419769287 275.289886475 275.35043335 275.079925537 273.810394287 267.909606934 268.359802246 268.340270996 268.029724121 267.670349121 267.470153809 267.479919434 267.579528809 267.569763184 267.390075684 267.220153809 267.199645996 267.290466309 267.340270996 267.390075684 267.359802246 266.779724121 257.000427246 257.630310059 257.890075684 257.809997559 257.399841309 256.790466309 256.269958496 256.109802246 256.210388184 256.269958496 256.210388184 256.239685059 256.479919434 256.760192871 256.829528809 256.600036621 256.019958496 242.259841919 242.480056763 242.509841919 242.560134888 242.520095825 242.199783325 241.660232544 241.179763794 240.980056763 241.020095825 241.179763794 241.35017395 241.500076294 241.620193481 241.699783325 241.710037231 241.540115356 232.679763794 232.750076294 232.839920044 232.85017395 232.640213013 232.310134888 231.980056763 231.669998169 231.410232544 231.330154419 231.469802856 231.669998169 231.770095825 231.770095825 231.810134888 231.949783325 232.129959106 221.869918823 221.800094604 221.570114136 221.170211792 220.679977417 220.190231323 219.800094604 219.550094604 219.499801636 219.639938354 219.840133667 219.949996948 219.979782104 220.010055542 220.079879761 220.199996948 220.470016479 207.499847412 207.200042725 206.840179443 206.360198975 205.930023193 205.650238037 205.519866943 205.479827881 205.539886475 205.720062256 205.950042725 206.220062256 206.579925537 206.950042725 207.20980835 207.360198975 207.53012085 192.37953186 191.800430298 191.440078735 191.329727173 191.640274048 192.44984436 193.510391235 194.239883423 194.34046936 194.010391235 193.669570923 193.400039673 192.919570923 192.319961548 192.140274048 192.709609985 193.569961548 197.249801636 196.299606323 195.730270386 195.430465698 195.270309448 195.180465698 195.079879761 194.879684448 194.610153198 194.469528198 194.539840698 194.619918823 194.480270386 194.310348511 194.449996948 194.879684448 195.350387573 207.60987854 206.979995728 206.450210571 205.970230103 205.500015259 205.060073853 204.669937134 204.370132446 204.220230103 204.279800415 204.450210571 204.580093384 204.689956665 204.830093384 205.029800415 205.259780884 205.700210571 218.150054932 217.750152588 217.369781494 217.210113525 217.400054932 217.730133057 218.009918213 218.259918213 218.619781494 218.8800354 218.6300354 217.980133057 217.350250244 216.920074463 216.54019165 216.1300354 216.049957275 220.480163574 220.250183105 220.070007324 219.960144043 219.900085449 219.889831543 219.869812012 219.659851074 219.299987793 219.090026855 219.340026855 219.960144043 220.579772949 220.969909668 221.139831543 221.150085449 220.940124512 230.340316772 230.100082397 229.840316772 229.47996521 228.989730835 228.329574585 227.739730835 227.760238647 228.46043396 229.079574585 228.859848022 228.149887085 227.930160522 228.39012146 228.939926147 229.279769897 229.850082397 304.220947266 302.410400391 300.849853516 300.449462891 300.470947266 299.900634766 298.750244141 297.890869141 297.709228516 297.900634766 298.060791016 298.260009766 298.599853516 298.789306641 298.330322266 297.220947266 295.980712891 300.709228516 299.260009766 297.679931641 296.420166016 295.230712891 294.060791016 293.400634766 293.429931641 293.629150391 293.480712891 293.199462891 293.189697266 293.459228516 293.730712891 293.810791016 293.590087891 292.840087891 294.420776367 293.159057617 292.069213867 291.209838867 290.270385742 289.340698242 288.789916992 288.700073242 288.680541992 288.539916992 288.440307617 288.479370117 288.559448242 288.670776367 288.950073242 289.159057617 288.770385742 281.649841309 281.630310059 281.390075684 281.149841309 281.300231934 281.669372559 281.739685059 281.399841309 281.050231934 281.099060059 281.419372559 281.720153809 281.880310059 281.919372559 281.720153809 281.059997559 279.909606934 275.579925537 276.410003662 276.78012085 276.490081787 275.980316162 275.759613037 275.839691162 275.85043335 275.70980835 275.629730225 275.719573975 275.719573975 275.499847412 275.329925537 275.400238037 275.20980835 274.070159912 267.800231934 268.340270996 268.449645996 268.239685059 267.869567871 267.600036621 267.550231934 267.600036621 267.510192871 267.300231934 267.180114746 267.239685059 267.290466309 267.210388184 267.149841309 267.189880371 266.840270996 257.050231934 257.760192871 258.100036621 258.029724121 257.619567871 256.970153809 256.399841309 256.180114746 256.250427246 256.350036621 256.359802246 256.420349121 256.630310059 256.850036621 256.899841309 256.720153809 256.239685059 242.359939575 242.669998169 242.730056763 242.759841919 242.669998169 242.339920044 241.819900513 241.379959106 241.199783325 241.239822388 241.399978638 241.569900513 241.679763794 241.730056763 241.759841919 241.739822388 241.609939575 232.790115356 232.870193481 232.989822388 233.000076294 232.770095825 232.399978638 232.049880981 231.750076294 231.520095825 231.469802856 231.660232544 231.879959106 231.960037231 231.929763794 231.949783325 232.040115356 232.169998169 222.059860229 221.940231323 221.670211792 221.269821167 220.800094604 220.340133667 219.949996948 219.670211792 219.570114136 219.699996948 219.880172729 219.979782104 219.999801636 220.050094604 220.159957886 220.269821167 220.470016479 207.53012085 207.300140381 206.919769287 206.400238037 205.970062256 205.760101318 205.660003662 205.519866943 205.380218506 205.329925537 205.430023193 205.70980835 206.1199646 206.579925537 206.950042725 207.20980835 207.45980835 192.079727173 191.52015686 191.190078735 191.03968811 191.150039673 191.68031311 192.560195923 193.409805298 193.850234985 193.850234985 193.69984436 193.510391235 193.100234985 192.459609985 192.119766235 192.489883423 193.28968811 197.219528198 196.249801636 195.699996948 195.459762573 195.409957886 195.400192261 195.400192261 195.289840698 195.100387573 194.940231323 194.900192261 194.839645386 194.579879761 194.320114136 194.390426636 194.829879761 195.430465698 207.649917603 207.060073853 206.540054321 206.029800415 205.470230103 204.939956665 204.490249634 204.169937134 204.049819946 204.209976196 204.500015259 204.720230103 204.799819946 204.850112915 204.990249634 205.240249634 205.740249634 218.100250244 217.690093994 217.330230713 217.239898682 217.560211182 218.020172119 218.279937744 218.389801025 218.560211182 218.619781494 218.330230713 217.750152588 217.279937744 217.020172119 216.679840088 216.179840088 215.860015869 220.409851074 220.299987793 220.210144043 220.090026855 219.909851074 219.730163574 219.59979248 219.460144043 219.310241699 219.290222168 219.579772949 220.09979248 220.570007324 220.820007324 220.949890137 221.00994873 220.92010498 230.619613647 230.220199585 229.829574585 229.369613647 228.949691772 228.539535522 228.170394897 228.14012146 228.539535522 228.850082397 228.529769897 227.930160522 227.880355835 228.500473022 229.119613647 229.399887085 229.770004272 304.720947266 303.019775391 301.199462891 300.369384766 300.269775391 299.970947266 299.269775391 298.689697266 298.580322266 298.660400391 298.580322266 298.449462891 298.560791016 298.810791016 298.609619141 297.629150391 296.099853516 301.220947266 299.799072266 297.959228516 296.439697266 295.289306641 294.349853516 293.799072266 293.679931641 293.650634766 293.470947266 293.289306641 293.330322266 293.470947266 293.580322266 293.580322266 293.240478516 292.189697266 294.569213867 293.399291992 292.289916992 291.309448242 290.330932617 289.479370117 289.059448242 288.950073242 288.809448242 288.590698242 288.510620117 288.590698242 288.600463867 288.559448242 288.680541992 288.760620117 288.159057617 281.610778809 281.530700684 281.280700684 281.069763184 281.210388184 281.520935059 281.579528809 281.329528809 281.130310059 281.220153809 281.499450684 281.759216309 281.940856934 282.020935059 281.839294434 281.229919434 280.140075684 275.45980835 276.289886475 276.660003662 276.45980835 276.070159912 275.890472412 275.929534912 275.879730225 275.679534912 275.60043335 275.70980835 275.789886475 275.610198975 275.379730225 275.329925537 275.110198975 274.10043335 267.630310059 268.189880371 268.430114746 268.350036621 268.059997559 267.779724121 267.689880371 267.680114746 267.540466309 267.329528809 267.260192871 267.380310059 267.430114746 267.260192871 267.090270996 267.119567871 266.859802246 257.090270996 257.869567871 258.220153809 258.180114746 257.779724121 257.140075684 256.550231934 256.250427246 256.269958496 256.380310059 256.460388184 256.569763184 256.769958496 256.939880371 256.949645996 256.790466309 256.369567871 242.419998169 242.830154419 242.949783325 242.960037231 242.819900513 242.449783325 241.949783325 241.509841919 241.319900513 241.379959106 241.569900513 241.739822388 241.830154419 241.839920044 241.819900513 241.77986145 241.679763794 232.879959106 232.980056763 233.140213013 233.160232544 232.910232544 232.509841919 232.140213013 231.85017395 231.660232544 231.629959106 231.810134888 232.020095825 232.089920044 232.069900513 232.080154419 232.160232544 232.250076294 222.210250854 222.079879761 221.749801636 221.309860229 220.849899292 220.440231323 220.130172729 219.889938354 219.780075073 219.840133667 219.949996948 219.999801636 219.999801636 220.090133667 220.229782104 220.360153198 220.519821167 207.550140381 207.349945068 206.950042725 206.380218506 205.939788818 205.800140381 205.769866943 205.599945068 205.329925537 205.139984131 205.150238037 205.400238037 205.789886475 206.249847412 206.689788818 207.079925537 207.430023193 191.819961548 191.209609985 190.93031311 190.810195923 190.779922485 190.959609985 191.510391235 192.329727173 192.999649048 193.260391235 193.239883423 193.119766235 192.819961548 192.310195923 191.980117798 192.249649048 193.060195923 197.169723511 196.180465698 195.619918823 195.440231323 195.469528198 195.600387573 195.740036011 195.810348511 195.740036011 195.570114136 195.400192261 195.150192261 194.759567261 194.400192261 194.369918823 194.770309448 195.449996948 207.640151978 207.02003479 206.470230103 205.910171509 205.299819946 204.720230103 204.240249634 203.950210571 203.899917603 204.149917603 204.549819946 204.850112915 204.950210571 204.919937134 204.970230103 205.18019104 205.669937134 218.119781494 217.8800354 217.639801025 217.619781494 217.960113525 218.400054932 218.549957275 218.449859619 218.339996338 218.230133057 217.940093994 217.500152588 217.230133057 217.150054932 216.900054932 216.319976807 215.839996338 220.320007324 220.250183105 220.190124512 220.020202637 219.699890137 219.369812012 219.219909668 219.290222168 219.480163574 219.730163574 219.989929199 220.239929199 220.400085449 220.469909668 220.590026855 220.790222168 220.909851074 230.869613647 230.310043335 229.770004272 229.310043335 229.090316772 229.020004272 228.850082397 228.560043335 228.350082397 228.170394897 227.90965271 227.779769897 228.21043396 229.05027771 229.64012146 229.699691772 229.699691772 304.660400391 303.429931641 301.650634766 300.510009766 300.199462891 300.099853516 299.789306641 299.470947266 299.320556641 299.179931641 298.820556641 298.410400391 298.349853516 298.590087891 298.519775391 297.679931641 296.170166016 301.310791016 300.160400391 298.199462891 296.439697266 295.289306641 294.619384766 294.260009766 294.039306641 293.789306641 293.500244141 293.379150391 293.420166016 293.400634766 293.289306641 293.199462891 292.879150391 291.750244141 294.530151367 293.600463867 292.469604492 291.350463867 290.309448242 289.600463867 289.319213867 289.209838867 288.959838867 288.639526367 288.549682617 288.659057617 288.649291992 288.510620117 288.459838867 288.319213867 287.549682617 281.599060059 281.479919434 281.229919434 281.050231934 281.149841309 281.360778809 281.399841309 281.290466309 281.249450684 281.349060059 281.509216309 281.739685059 282.030700684 282.229919434 282.069763184 281.390075684 280.229919434 275.610198975 276.259613037 276.469573975 276.259613037 275.969573975 275.8699646 275.919769287 275.879730225 275.70980835 275.650238037 275.789886475 275.910003662 275.789886475 275.509613037 275.259613037 274.900238037 273.950042725 267.439880371 268.000427246 268.329528809 268.380310059 268.170349121 267.899841309 267.769958496 267.739685059 267.630310059 267.470153809 267.439880371 267.609802246 267.670349121 267.460388184 267.210388184 267.149841309 266.909606934 257.130310059 257.909606934 258.269958496 258.239685059 257.890075684 257.300231934 256.720153809 256.380310059 256.319763184 256.409606934 256.519958496 256.659606934 256.859802246 257.019958496 257.019958496 256.850036621 256.489685059 242.460037231 242.9400177 243.109939575 243.109939575 242.9400177 242.549880981 242.040115356 241.629959106 241.4400177 241.500076294 241.6900177 241.859939575 241.919998169 241.890213013 241.859939575 241.830154419 241.77986145 232.890213013 233.02986145 233.230056763 233.270095825 233.000076294 232.589920044 232.239822388 232.040115356 231.910232544 231.899978638 232.02986145 232.179763794 232.219802856 232.199783325 232.219802856 232.27986145 232.35017395 222.320114136 222.190231323 221.829879761 221.329879761 220.860153198 220.530075073 220.320114136 220.170211792 220.079879761 220.099899292 220.139938354 220.150192261 220.139938354 220.190231323 220.320114136 220.440231323 220.570114136 207.550140381 207.349945068 206.939788818 206.340179443 205.910003662 205.800140381 205.789886475 205.630218506 205.320159912 205.090179443 205.110198975 205.320159912 205.639984131 206.03012085 206.479827881 206.979827881 207.430023193 191.560195923 190.829727173 190.600234985 190.640274048 190.600234985 190.499649048 190.659805298 191.249649048 191.940078735 192.300430298 192.319961548 192.249649048 192.190078735 191.999649048 191.86000061 192.140274048 192.94984436 197.150192261 196.150192261 195.560348511 195.369918823 195.449996948 195.699996948 196.039840698 196.299606323 196.350387573 196.180465698 195.900192261 195.539840698 195.060348511 194.600387573 194.449996948 194.789840698 195.459762573 207.569839478 206.879898071 206.310073853 205.779800415 205.200210571 204.600112915 204.100112915 203.790054321 203.750015259 204.000015259 204.43019104 204.790054321 204.93019104 204.939956665 204.979995728 205.149917603 205.589859009 218.279937744 218.230133057 218.069976807 218.009918213 218.230133057 218.54019165 218.600250244 218.429840088 218.259918213 218.150054932 217.900054932 217.529937744 217.310211182 217.230133057 217.000152588 216.429840088 215.889801025 220.199890137 220.09979248 220.029968262 219.869812012 219.549987793 219.219909668 219.090026855 219.25994873 219.610046387 219.949890137 220.130065918 220.17010498 220.159851074 220.199890137 220.360046387 220.639831543 220.900085449 231.06980896 230.369613647 229.750473022 229.279769897 229.149887085 229.260238647 229.180160522 228.71043396 228.100082397 227.680160522 227.609848022 227.930160522 228.65965271 229.510238647 230.000473022 229.96043396 229.72996521 304.609619141 303.769775391 302.049072266 300.709228516 300.240478516 300.199462891 300.080322266 299.840087891 299.619384766 299.349853516 298.879150391 298.420166016 298.269775391 298.410400391 298.299072266 297.519775391 296.179931641 301.119384766 300.269775391 298.299072266 296.359619141 295.150634766 294.650634766 294.480712891 294.289306641 293.970947266 293.679931641 293.590087891 293.560791016 293.320556641 293.000244141 292.820556641 292.560791016 291.539306641 294.379760742 293.719604492 292.549682617 291.260620117 290.190307617 289.629760742 289.469604492 289.389526367 289.139526367 288.840698242 288.739135742 288.770385742 288.680541992 288.469604492 288.280151367 287.959838867 287.020385742 281.540466309 281.440856934 281.249450684 281.130310059 281.190856934 281.300231934 281.319763184 281.319763184 281.399841309 281.460388184 281.489685059 281.700622559 282.140075684 282.499450684 282.339294434 281.550231934 280.259216309 275.929534912 276.310394287 276.270355225 276.020355225 275.839691162 275.839691162 275.929534912 275.929534912 275.820159912 275.770355225 275.890472412 276.039886475 275.999847412 275.719573975 275.310394287 274.770355225 273.7996521 267.409606934 267.949645996 268.329528809 268.439880371 268.239685059 267.930114746 267.720153809 267.680114746 267.640075684 267.579528809 267.609802246 267.779724121 267.850036621 267.649841309 267.380310059 267.260192871 266.970153809 257.210388184 257.939880371 258.279724121 258.290466309 258.000427246 257.470153809 256.930114746 256.559997559 256.449645996 256.489685059 256.579528809 256.720153809 256.909606934 257.079528809 257.079528809 256.930114746 256.609802246 242.509841919 243.000076294 243.179763794 243.169998169 242.969802856 242.580154419 242.120193481 241.759841919 241.609939575 241.679763794 241.85017395 241.969802856 241.980056763 241.9400177 241.929763794 241.9400177 241.919998169 232.870193481 233.049880981 233.27986145 233.330154419 233.069900513 232.649978638 232.379959106 232.270095825 232.230056763 232.230056763 232.310134888 232.419998169 232.419998169 232.370193481 232.370193481 232.410232544 232.449783325 222.349899292 222.249801636 221.900192261 221.389938354 220.929977417 220.639938354 220.519821167 220.420211792 220.329879761 220.320114136 220.360153198 220.400192261 220.389938354 220.380172729 220.429977417 220.499801636 220.610153198 207.510101318 207.320159912 206.950042725 206.410003662 206.010101318 205.889984131 205.820159912 205.610198975 205.309906006 205.1199646 205.160003662 205.329925537 205.579925537 205.880218506 206.309906006 206.849945068 207.380218506 191.279922485 190.409805298 190.209609985 190.400039673 190.44984436 190.220352173 190.079727173 190.409805298 191.03968811 191.440078735 191.459609985 191.459609985 191.61000061 191.779922485 191.869766235 192.169570923 192.93031311 197.209762573 196.199996948 195.530075073 195.270309448 195.339645386 195.699996948 196.190231323 196.579879761 196.669723511 196.469528198 196.159957886 195.799606323 195.310348511 194.810348511 194.579879761 194.839645386 195.520309448 207.490249634 206.790054321 206.27003479 205.839859009 205.350112915 204.77003479 204.220230103 203.830093384 203.729995728 203.919937134 204.299819946 204.629898071 204.810073853 204.890151978 204.970230103 205.149917603 205.560073853 218.449859619 218.46987915 218.279937744 218.100250244 218.170074463 218.360015869 218.429840088 218.350250244 218.339996338 218.350250244 218.150054932 217.750152588 217.400054932 217.210113525 216.929840088 216.409820557 215.909820557 220.070007324 219.960144043 219.889831543 219.820007324 219.679870605 219.500183105 219.409851074 219.489929199 219.719909668 219.909851074 219.989929199 219.989929199 220.049987793 220.210144043 220.409851074 220.619812012 220.829772949 231.289535522 230.539535522 229.869613647 229.30027771 229.000473022 228.939926147 228.810043335 228.380355835 227.869613647 227.590316772 227.739730835 228.239730835 228.899887085 229.510238647 229.89012146 229.970199585 229.840316772 304.539306641 303.730712891 301.939697266 300.580322266 300.189697266 300.250244141 300.140869141 299.820556641 299.560791016 299.340087891 299.019775391 298.670166016 298.500244141 298.480712891 298.179931641 297.289306641 295.959228516 300.599853516 299.980712891 298.070556641 296.099853516 294.910400391 294.490478516 294.379150391 294.230712891 293.990478516 293.840087891 293.840087891 293.750244141 293.390869141 292.910400391 292.599853516 292.230712891 291.230712891 294.049682617 293.569213867 292.360229492 291.010620117 290.039916992 289.590698242 289.459838867 289.369995117 289.219604492 289.090698242 289.030151367 288.920776367 288.700073242 288.440307617 288.190307617 287.690307617 286.610229492 281.409606934 281.360778809 281.290466309 281.259216309 281.329528809 281.370544434 281.399841309 281.530700684 281.690856934 281.669372559 281.569763184 281.739685059 282.259216309 282.690856934 282.520935059 281.649841309 280.259216309 276.219573975 276.329925537 276.110198975 275.879730225 275.820159912 275.919769287 276.03012085 276.060394287 275.969573975 275.879730225 275.9402771 276.110198975 276.160003662 275.929534912 275.45980835 274.789886475 273.78012085 267.630310059 268.140075684 268.489685059 268.579528809 268.350036621 267.949645996 267.670349121 267.569763184 267.569763184 267.579528809 267.659606934 267.829528809 267.909606934 267.760192871 267.519958496 267.369567871 267.050231934 257.329528809 257.989685059 258.329528809 258.369567871 258.130310059 257.640075684 257.109802246 256.750427246 256.619567871 256.630310059 256.680114746 256.769958496 256.939880371 257.109802246 257.140075684 256.989685059 256.720153809 242.589920044 243.020095825 243.169998169 243.160232544 242.960037231 242.60017395 242.1900177 241.919998169 241.819900513 241.899978638 242.02986145 242.10017395 242.060134888 242.000076294 242.020095825 242.049880981 242.049880981 232.870193481 233.120193481 233.370193481 233.419998169 233.149978638 232.770095825 232.52986145 232.469802856 232.449783325 232.460037231 232.549880981 232.640213013 232.640213013 232.569900513 232.540115356 232.540115356 232.560134888 222.300094604 222.220016479 221.920211792 221.479782104 221.099899292 220.849899292 220.720016479 220.579879761 220.440231323 220.400192261 220.499801636 220.619918823 220.659957886 220.610153198 220.559860229 220.539840698 220.639938354 207.430023193 207.269866943 207.010101318 206.630218506 206.300140381 206.099945068 205.910003662 205.639984131 205.349945068 205.189788818 205.20980835 205.329925537 205.490081787 205.720062256 206.110198975 206.680023193 207.260101318 191.140274048 190.140274048 189.850234985 190.010391235 190.100234985 189.810195923 189.529922485 189.77015686 190.43031311 190.940078735 191.029922485 191.050430298 191.319961548 191.69984436 191.94984436 192.239883423 192.909805298 197.249801636 196.209762573 195.459762573 195.089645386 195.150192261 195.600387573 196.199996948 196.619918823 196.640426636 196.379684448 196.079879761 195.799606323 195.379684448 194.879684448 194.619918823 194.860153198 195.570114136 207.540054321 206.879898071 206.450210571 206.120132446 205.709976196 205.140151978 204.52003479 204.080093384 203.950210571 204.089859009 204.370132446 204.600112915 204.750015259 204.850112915 204.959976196 205.140151978 205.529800415 218.440093994 218.369781494 218.110015869 217.8800354 217.929840088 218.150054932 218.29019165 218.339996338 218.440093994 218.500152588 218.270172119 217.799957275 217.360015869 217.080230713 216.779937744 216.330230713 215.909820557 219.980163574 219.900085449 219.860046387 219.860046387 219.889831543 219.909851074 219.869812012 219.840026855 219.84979248 219.889831543 219.92010498 219.969909668 220.139831543 220.409851074 220.619812012 220.67010498 220.710144043 231.630355835 230.859848022 230.15965271 229.470199585 228.850082397 228.420394897 228.14012146 227.880355835 227.670394897 227.649887085 227.930160522 228.380355835 228.829574585 229.189926147 229.529769897 229.81980896 229.97996521 304.209228516 303.080322266 301.160400391 300.000244141 299.980712891 300.240478516 300.060791016 299.599853516 299.349853516 299.359619141 299.289306641 299.060791016 298.879150391 298.750244141 298.240478516 297.109619141 295.590087891 299.830322266 299.279541016 297.510009766 295.720947266 294.689697266 294.369384766 294.250244141 294.070556641 293.900634766 293.879150391 293.980712891 293.929931641 293.570556641 293.060791016 292.580322266 291.910400391 290.670166016 293.520385742 293.119995117 291.940307617 290.690307617 289.899291992 289.569213867 289.379760742 289.209838867 289.149291992 289.229370117 289.250854492 289.030151367 288.700073242 288.450073242 288.170776367 287.510620117 286.229370117 281.229919434 281.300231934 281.360778809 281.419372559 281.479919434 281.499450684 281.550231934 281.780700684 282.020935059 281.979919434 281.819763184 281.940856934 282.440856934 282.819763184 282.599060059 281.690856934 280.259216309 276.360198975 276.310394287 276.0496521 275.910003662 275.950042725 276.079925537 276.179534912 276.200042725 276.10043335 275.969573975 275.969573975 276.129730225 276.259613037 276.10043335 275.640472412 274.919769287 273.890472412 267.989685059 268.430114746 268.720153809 268.769958496 268.510192871 268.079528809 267.710388184 267.540466309 267.510192871 267.540466309 267.640075684 267.819763184 267.930114746 267.869567871 267.680114746 267.489685059 267.130310059 257.500427246 258.100036621 258.420349121 258.489685059 258.229919434 257.729919434 257.189880371 256.829528809 256.710388184 256.739685059 256.760192871 256.829528809 256.960388184 257.130310059 257.180114746 257.040466309 256.800231934 242.669998169 243.040115356 243.169998169 243.169998169 242.980056763 242.640213013 242.27986145 242.040115356 241.969802856 242.040115356 242.149978638 242.1900177 242.140213013 242.080154419 242.109939575 242.149978638 242.160232544 232.919998169 233.239822388 233.509841919 233.549880981 233.27986145 232.919998169 232.6900177 232.60017395 232.549880981 232.549880981 232.669998169 232.819900513 232.839920044 232.750076294 232.669998169 232.640213013 232.640213013 222.190231323 222.110153198 221.880172729 221.559860229 221.280075073 221.079879761 220.920211792 220.690231323 220.479782104 220.420211792 220.570114136 220.800094604 220.889938354 220.800094604 220.659957886 220.590133667 220.650192261 207.320159912 207.200042725 207.079925537 206.860198975 206.599945068 206.309906006 205.999847412 205.700042725 205.450042725 205.320159912 205.249847412 205.289886475 205.400238037 205.579925537 205.930023193 206.479827881 207.110198975 191.239883423 190.169570923 189.659805298 189.600234985 189.550430298 189.220352173 188.909805298 189.169570923 189.94984436 190.62953186 190.84046936 190.87953186 191.12953186 191.560195923 191.900039673 192.220352173 192.850234985 197.129684448 196.049606323 195.249801636 194.820114136 194.900192261 195.440231323 196.150192261 196.560348511 196.490036011 196.169723511 195.900192261 195.680465698 195.320114136 194.850387573 194.610153198 194.839645386 195.549606323 207.720230103 207.18019104 206.799819946 206.490249634 206.060073853 205.43019104 204.779800415 204.339859009 204.240249634 204.390151978 204.600112915 204.740249634 204.799819946 204.850112915 204.939956665 205.10987854 205.479995728 218.179840088 217.989898682 217.71987915 217.589996338 217.759918213 218.119781494 218.369781494 218.480133057 218.549957275 218.489898682 218.159820557 217.659820557 217.250152588 216.989898682 216.710113525 216.310211182 215.940093994 219.969909668 219.940124512 219.900085449 219.889831543 219.960144043 220.029968262 220.00994873 219.960144043 219.940124512 220.00994873 220.09979248 220.179870605 220.329772949 220.560241699 220.690124512 220.659851074 220.560241699 231.949691772 231.180160522 230.489730835 229.71043396 228.899887085 228.260238647 227.90965271 227.739730835 227.64012146 227.64012146 227.840316772 228.21043396 228.630355835 229.010238647 229.39012146 229.779769897 230.090316772 303.760009766 302.189697266 300.199462891 299.390869141 299.779541016 300.209228516 299.929931641 299.349853516 299.189697266 299.429931641 299.539306641 299.320556641 299.080322266 298.890869141 298.340087891 297.080322266 295.320556641 299.150634766 298.500244141 296.799072266 295.250244141 294.560791016 294.449462891 294.340087891 294.109619141 293.929931641 293.959228516 294.039306641 293.970947266 293.650634766 293.199462891 292.609619141 291.640869141 290.099853516 292.959838867 292.569213867 291.450073242 290.360229492 289.809448242 289.619995117 289.389526367 289.129760742 289.119995117 289.319213867 289.360229492 289.049682617 288.680541992 288.450073242 288.139526367 287.309448242 285.819213867 281.179138184 281.370544434 281.530700684 281.620544434 281.630310059 281.569763184 281.630310059 281.919372559 282.190856934 282.190856934 282.059997559 282.220153809 282.669372559 282.940856934 282.669372559 281.790466309 280.349060059 276.450042725 276.35043335 276.160003662 276.110198975 276.169769287 276.230316162 276.289886475 276.310394287 276.200042725 276.03012085 276.009613037 276.169769287 276.339691162 276.230316162 275.789886475 275.10043335 274.079925537 268.290466309 268.670349121 268.880310059 268.909606934 268.670349121 268.260192871 267.850036621 267.579528809 267.460388184 267.460388184 267.579528809 267.790466309 267.989685059 268.010192871 267.869567871 267.659606934 267.229919434 257.680114746 258.239685059 258.540466309 258.550231934 258.269958496 257.739685059 257.189880371 256.829528809 256.729919434 256.769958496 256.809997559 256.850036621 256.970153809 257.149841309 257.199645996 257.069763184 256.869567871 242.759841919 243.069900513 243.199783325 243.230056763 243.069900513 242.719802856 242.359939575 242.109939575 242.020095825 242.060134888 242.169998169 242.219802856 242.169998169 242.120193481 242.149978638 242.199783325 242.219802856 233.02986145 233.410232544 233.669998169 233.669998169 233.390213013 233.040115356 232.810134888 232.6900177 232.589920044 232.580154419 232.750076294 232.949783325 232.980056763 232.839920044 232.719802856 232.679763794 232.6900177 222.099899292 221.999801636 221.820114136 221.610153198 221.409957886 221.220016479 221.019821167 220.769821167 220.550094604 220.519821167 220.710250854 220.979782104 221.079879761 220.949996948 220.740036011 220.630172729 220.670211792 207.249847412 207.150238037 207.1199646 206.999847412 206.749847412 206.380218506 206.019866943 205.760101318 205.6199646 205.479827881 205.360198975 205.309906006 205.400238037 205.570159912 205.8699646 206.3699646 207.010101318 191.499649048 190.369766235 189.61000061 189.27015686 189.069961548 188.720352173 188.440078735 188.69984436 189.470352173 190.220352173 190.510391235 190.569961548 190.810195923 191.239883423 191.68031311 192.11000061 192.78968811 196.940231323 195.850387573 195.049606323 194.619918823 194.709762573 195.310348511 196.079879761 196.499801636 196.419723511 196.100387573 195.850387573 195.629684448 195.270309448 194.820114136 194.600387573 194.820114136 195.490036011 207.919937134 207.459976196 207.080093384 206.709976196 206.200210571 205.509780884 204.839859009 204.450210571 204.399917603 204.569839478 204.750015259 204.85987854 204.870132446 204.890151978 204.919937134 205.040054321 205.399917603 217.850250244 217.639801025 217.429840088 217.400054932 217.699859619 218.170074463 218.54019165 218.71987915 218.739898682 218.54019165 218.100250244 217.600250244 217.270172119 217.069976807 216.799957275 216.389801025 215.989898682 220.070007324 220.060241699 220.029968262 219.969909668 219.92010498 219.84979248 219.770202637 219.750183105 219.869812012 220.110046387 220.320007324 220.400085449 220.429870605 220.480163574 220.570007324 220.560241699 220.480163574 232.020004272 231.260238647 230.510238647 229.71043396 229.000473022 228.529769897 228.30027771 228.100082397 227.810043335 227.56980896 227.600082397 227.970199585 228.560043335 229.15965271 229.600082397 229.920394897 230.149887085 303.459228516 301.549072266 299.650634766 299.150634766 299.769775391 300.170166016 299.760009766 299.179931641 299.189697266 299.599853516 299.730712891 299.379150391 299.000244141 298.779541016 298.320556641 297.150634766 295.330322266 298.769775391 297.830322266 296.080322266 294.750244141 294.410400391 294.590087891 294.599853516 294.369384766 294.189697266 294.160400391 294.090087891 293.849853516 293.480712891 293.070556641 292.480712891 291.420166016 289.779541016 292.559448242 292.090698242 291.000854492 290.049682617 289.700073242 289.670776367 289.520385742 289.280151367 289.280151367 289.469604492 289.440307617 289.049682617 288.639526367 288.379760742 287.979370117 287.010620117 285.430541992 281.309997559 281.589294434 281.800231934 281.870544434 281.749450684 281.569763184 281.589294434 281.870544434 282.159606934 282.200622559 282.200622559 282.460388184 282.880310059 283.099060059 282.839294434 282.020935059 280.579528809 276.570159912 276.520355225 276.450042725 276.429534912 276.400238037 276.35043335 276.339691162 276.35043335 276.259613037 276.070159912 276.039886475 276.240081787 276.419769287 276.339691162 275.9402771 275.329925537 274.339691162 268.519958496 268.829528809 269.010192871 269.000427246 268.769958496 268.369567871 267.920349121 267.559997559 267.350036621 267.329528809 267.470153809 267.739685059 268.000427246 268.109802246 268.029724121 267.809997559 267.319763184 257.829528809 258.369567871 258.619567871 258.559997559 258.220153809 257.699645996 257.180114746 256.850036621 256.750427246 256.790466309 256.829528809 256.869567871 257.010192871 257.189880371 257.239685059 257.109802246 256.949645996 242.810134888 243.109939575 243.270095825 243.319900513 243.149978638 242.799880981 242.429763794 242.149978638 242.020095825 242.02986145 242.160232544 242.230056763 242.1900177 242.120193481 242.149978638 242.219802856 242.27986145 233.140213013 233.549880981 233.77986145 233.719802856 233.419998169 233.080154419 232.870193481 232.750076294 232.649978638 232.679763794 232.879959106 233.089920044 233.089920044 232.890213013 232.730056763 232.679763794 232.699783325 222.030075073 221.949996948 221.829879761 221.670211792 221.479782104 221.249801636 221.030075073 220.809860229 220.679977417 220.710250854 220.940231323 221.190231323 221.240036011 221.050094604 220.809860229 220.679977417 220.699996948 207.240081787 207.169769287 207.139984131 207.03012085 206.749847412 206.340179443 205.979827881 205.820159912 205.78012085 205.669769287 205.510101318 205.430023193 205.519866943 205.689788818 205.919769287 206.360198975 206.970062256 191.650039673 190.419570923 189.52015686 189.050430298 188.819961548 188.569961548 188.350234985 188.529922485 189.119766235 189.709609985 189.970352173 190.060195923 190.329727173 190.829727173 191.37953186 191.959609985 192.739883423 196.869918823 195.850387573 195.089645386 194.640426636 194.699996948 195.259567261 195.980270386 196.390426636 196.350387573 196.110153198 195.879684448 195.619918823 195.209762573 194.780075073 194.610153198 194.820114136 195.430465698 208.000015259 207.490249634 207.049819946 206.620132446 206.069839478 205.419937134 204.810073853 204.490249634 204.470230103 204.629898071 204.799819946 204.899917603 204.93019104 204.93019104 204.919937134 204.990249634 205.330093384 217.750152588 217.619781494 217.480133057 217.440093994 217.699859619 218.170074463 218.619781494 218.920074463 219.000152588 218.759918213 218.270172119 217.750152588 217.429840088 217.230133057 216.909820557 216.460113525 216.029937744 220.230163574 220.210144043 220.230163574 220.17010498 219.960144043 219.659851074 219.449890137 219.469909668 219.699890137 220.049987793 220.329772949 220.449890137 220.369812012 220.329772949 220.389831543 220.469909668 220.469909668 231.760238647 231.05027771 230.14012146 229.279769897 228.850082397 228.859848022 228.90965271 228.619613647 228.05027771 227.579574585 227.529769897 227.920394897 228.649887085 229.40965271 229.899887085 230.090316772 230.149887085 303.019775391 301.099853516 299.519775391 299.260009766 299.830322266 300.049072266 299.570556641 299.140869141 299.349853516 299.840087891 299.869384766 299.359619141 298.820556641 298.500244141 298.080322266 297.099853516 295.459228516 298.379150391 297.140869141 295.359619141 294.260009766 294.260009766 294.679931641 294.799072266 294.619384766 294.459228516 294.369384766 294.140869141 293.689697266 293.179931641 292.699462891 292.109619141 291.160400391 289.670166016 292.200073242 291.610229492 290.580932617 289.750854492 289.520385742 289.649291992 289.649291992 289.530151367 289.559448242 289.670776367 289.500854492 289.030151367 288.569213867 288.229370117 287.680541992 286.610229492 285.080932617 281.499450684 281.829528809 282.050231934 282.030700684 281.790466309 281.509216309 281.489685059 281.759216309 282.050231934 282.149841309 282.270935059 282.630310059 283.069763184 283.259216309 283.050231934 282.349060059 280.909606934 276.700042725 276.759613037 276.789886475 276.759613037 276.610198975 276.419769287 276.35043335 276.360198975 276.259613037 276.079925537 276.039886475 276.270355225 276.490081787 276.429534912 276.110198975 275.579925537 274.650238037 268.739685059 269.029724121 269.130310059 269.040466309 268.760192871 268.350036621 267.880310059 267.460388184 267.229919434 267.220153809 267.390075684 267.670349121 267.930114746 268.090270996 268.090270996 267.909606934 267.420349121 257.989685059 258.489685059 258.659606934 258.500427246 258.130310059 257.649841309 257.220153809 256.930114746 256.829528809 256.850036621 256.899841309 256.939880371 257.079528809 257.260192871 257.300231934 257.170349121 257.029724121 242.839920044 243.140213013 243.319900513 243.390213013 243.210037231 242.85017395 242.480056763 242.219802856 242.089920044 242.109939575 242.230056763 242.319900513 242.250076294 242.140213013 242.149978638 242.239822388 242.330154419 233.210037231 233.629959106 233.830154419 233.719802856 233.419998169 233.089920044 232.910232544 232.819900513 232.759841919 232.810134888 233.049880981 233.250076294 233.179763794 232.929763794 232.730056763 232.679763794 232.699783325 221.940231323 221.909957886 221.880172729 221.760055542 221.519821167 221.220016479 220.979782104 220.840133667 220.820114136 220.929977417 221.170211792 221.369918823 221.349899292 221.119918823 220.860153198 220.740036011 220.729782104 207.289886475 207.200042725 207.139984131 206.999847412 206.700042725 206.300140381 205.990081787 205.910003662 205.930023193 205.849945068 205.669769287 205.590179443 205.689788818 205.840179443 206.019866943 206.389984131 206.990081787 191.459609985 190.150039673 189.27015686 188.850234985 188.739883423 188.619766235 188.529922485 188.61000061 188.919570923 189.220352173 189.36000061 189.510391235 189.87953186 190.480117798 191.140274048 191.829727173 192.69984436 197.020309448 196.100387573 195.360153198 194.869918823 194.820114136 195.249801636 195.810348511 196.159957886 196.169723511 196.039840698 195.860153198 195.530075073 195.070114136 194.680465698 194.579879761 194.799606323 195.369918823 207.890151978 207.27003479 206.740249634 206.310073853 205.850112915 205.330093384 204.879898071 204.649917603 204.649917603 204.77003479 204.890151978 204.979995728 205.029800415 205.000015259 204.939956665 204.979995728 205.290054321 217.96987915 217.949859619 217.830230713 217.679840088 217.779937744 218.150054932 218.619781494 219.009918213 219.150054932 218.940093994 218.449859619 217.920074463 217.560211182 217.270172119 216.909820557 216.460113525 216.04019165 220.320007324 220.250183105 220.360046387 220.369812012 220.060241699 219.590026855 219.299987793 219.340026855 219.59979248 219.929870605 220.210144043 220.34979248 220.340026855 220.270202637 220.310241699 220.42010498 220.440124512 231.470199585 230.81980896 229.720199585 228.739730835 228.609848022 229.130355835 229.39012146 228.920394897 228.100082397 227.630355835 227.689926147 228.109848022 228.739730835 229.449691772 229.97996521 230.170394897 230.189926147 301.879150391 300.379150391 299.359619141 299.349853516 299.779541016 299.810791016 299.400634766 299.209228516 299.590087891 300.019775391 299.929931641 299.359619141 298.740478516 298.279541016 297.750244141 296.849853516 295.449462891 297.490478516 296.209228516 294.689697266 293.990478516 294.279541016 294.799072266 294.900634766 294.709228516 294.580322266 294.470947266 294.150634766 293.599853516 293.000244141 292.400634766 291.730712891 290.820556641 289.519775391 291.580932617 290.950073242 290.110229492 289.489135742 289.409057617 289.649291992 289.780151367 289.750854492 289.770385742 289.760620117 289.479370117 288.950073242 288.479370117 288.039916992 287.340698242 286.200073242 284.760620117 281.630310059 281.929138184 282.099060059 282.020935059 281.710388184 281.399841309 281.390075684 281.700622559 282.020935059 282.179138184 282.390075684 282.790466309 283.210388184 283.399841309 283.270935059 282.649841309 281.229919434 276.740081787 276.900238037 276.999847412 276.95980835 276.730316162 276.450042725 276.339691162 276.329925537 276.240081787 276.0496521 276.03012085 276.270355225 276.520355225 276.509613037 276.270355225 275.829925537 274.929534912 268.939880371 269.199645996 269.199645996 268.989685059 268.640075684 268.239685059 267.809997559 267.420349121 267.210388184 267.239685059 267.420349121 267.659606934 267.859802246 268.010192871 268.069763184 267.960388184 267.510192871 258.140075684 258.590270996 258.659606934 258.430114746 258.029724121 257.609802246 257.269958496 257.040466309 256.960388184 256.989685059 257.029724121 257.079528809 257.199645996 257.359802246 257.390075684 257.250427246 257.109802246 242.870193481 243.149978638 243.359939575 243.429763794 243.259841919 242.910232544 242.569900513 242.35017395 242.239822388 242.270095825 242.410232544 242.480056763 242.370193481 242.210037231 242.199783325 242.27986145 242.379959106 233.219802856 233.629959106 233.810134888 233.719802856 233.429763794 233.160232544 233.000076294 232.929763794 232.890213013 232.960037231 233.179763794 233.35017395 233.250076294 232.969802856 232.770095825 232.719802856 232.710037231 221.809860229 221.849899292 221.889938354 221.800094604 221.530075073 221.199996948 220.979782104 220.900192261 220.949996948 221.099899292 221.309860229 221.449996948 221.389938354 221.130172729 220.889938354 220.789840698 220.789840698 207.309906006 207.169769287 207.059906006 206.8699646 206.610198975 206.269866943 206.03012085 205.999847412 206.050140381 205.970062256 205.78012085 205.689788818 205.800140381 205.919769287 206.070159912 206.419769287 207.03012085 191.069961548 189.78968811 189.060195923 188.749649048 188.690078735 188.650039673 188.62953186 188.669570923 188.779922485 188.84046936 188.900039673 189.12953186 189.619766235 190.279922485 190.970352173 191.69984436 192.61000061 197.219528198 196.339645386 195.579879761 195.030075073 194.909957886 195.199996948 195.619918823 195.869918823 195.930465698 195.900192261 195.740036011 195.369918823 194.869918823 194.530075073 194.480270386 194.719528198 195.280075073 207.750015259 207.009780884 206.450210571 206.060073853 205.700210571 205.330093384 205.02003479 204.890151978 204.899917603 204.979995728 205.069839478 205.149917603 205.160171509 205.080093384 204.959976196 204.959976196 205.259780884 218.279937744 218.279937744 218.110015869 217.889801025 217.909820557 218.239898682 218.690093994 219.029937744 219.119781494 218.900054932 218.429840088 217.920074463 217.509918213 217.170074463 216.810211182 216.429840088 216.060211182 220.239929199 220.110046387 220.270202637 220.310241699 219.949890137 219.429870605 219.210144043 219.400085449 219.710144043 219.940124512 220.139831543 220.329772949 220.42010498 220.369812012 220.320007324 220.34979248 220.310241699 231.439926147 230.89012146 229.630355835 228.619613647 228.720199585 229.520004272 229.72996521 228.899887085 227.859848022 227.539535522 227.869613647 228.289535522 228.680160522 229.22996521 229.869613647 230.239730835 230.350082397 300.060791016 299.359619141 299.070556641 299.310791016 299.629150391 299.590087891 299.359619141 299.410400391 299.799072266 300.049072266 299.830322266 299.299072266 298.769775391 298.250244141 297.560791016 296.599853516 295.310791016 296.060791016 295.160400391 294.230712891 294.029541016 294.549072266 295.019775391 295.010009766 294.769775391 294.629150391 294.480712891 294.119384766 293.590087891 293.010009766 292.359619141 291.570556641 290.590087891 289.320556641 290.610229492 290.180541992 289.690307617 289.399291992 289.489135742 289.780151367 289.930541992 289.909057617 289.869995117 289.750854492 289.369995117 288.819213867 288.330932617 287.860229492 287.090698242 285.930541992 284.559448242 281.659606934 281.890075684 282.009216309 281.929138184 281.630310059 281.339294434 281.360778809 281.710388184 282.069763184 282.280700684 282.509216309 282.909606934 283.319763184 283.520935059 283.460388184 282.929138184 281.530700684 276.679534912 276.910003662 277.03012085 276.990081787 276.730316162 276.429534912 276.28012085 276.270355225 276.200042725 276.070159912 276.079925537 276.310394287 276.560394287 276.60043335 276.429534912 276.060394287 275.179534912 269.079528809 269.290466309 269.140075684 268.769958496 268.390075684 268.069763184 267.779724121 267.489685059 267.340270996 267.420349121 267.609802246 267.760192871 267.880310059 267.970153809 268.069763184 268.019958496 267.609802246 258.309997559 258.659606934 258.640075684 258.359802246 257.979919434 257.609802246 257.309997559 257.119567871 257.079528809 257.140075684 257.210388184 257.250427246 257.340270996 257.489685059 257.500427246 257.329528809 257.159606934 242.919998169 243.1900177 243.399978638 243.489822388 243.330154419 243.000076294 242.699783325 242.509841919 242.399978638 242.419998169 242.549880981 242.629959106 242.500076294 242.299880981 242.250076294 242.330154419 242.419998169 233.219802856 233.569900513 233.739822388 233.6900177 233.480056763 233.259841919 233.129959106 233.060134888 233.020095825 233.069900513 233.250076294 233.399978638 233.27986145 233.000076294 232.810134888 232.759841919 232.739822388 221.659957886 221.729782104 221.820114136 221.749801636 221.490036011 221.179977417 221.010055542 220.999801636 221.070114136 221.199996948 221.360153198 221.460250854 221.360153198 221.099899292 220.889938354 220.809860229 220.849899292 207.269866943 207.039886475 206.849945068 206.669769287 206.470062256 206.229827881 206.050140381 206.050140381 206.110198975 206.039886475 205.829925537 205.729827881 205.820159912 205.939788818 206.059906006 206.419769287 207.059906006 190.850234985 189.760391235 189.220352173 188.93031311 188.730117798 188.579727173 188.53968811 188.600234985 188.62953186 188.600234985 188.659805298 188.970352173 189.550430298 190.220352173 190.890274048 191.600234985 192.510391235 197.289840698 196.350387573 195.509567261 194.940231323 194.829879761 195.089645386 195.440231323 195.650192261 195.740036011 195.740036011 195.589645386 195.180465698 194.690231323 194.400192261 194.390426636 194.629684448 195.180465698 207.750015259 207.02003479 206.459976196 206.060073853 205.729995728 205.390151978 205.149917603 205.049819946 205.049819946 205.10987854 205.189956665 205.259780884 205.250015259 205.120132446 204.939956665 204.919937134 205.229995728 218.339996338 218.230133057 218.000152588 217.799957275 217.900054932 218.310211182 218.759918213 219.009918213 218.989898682 218.71987915 218.29019165 217.819976807 217.400054932 217.029937744 216.739898682 216.46987915 216.150054932 220.049987793 219.909851074 220.060241699 220.040222168 219.630065918 219.159851074 219.139831543 219.540222168 219.92010498 220.060241699 220.17010498 220.380065918 220.520202637 220.460144043 220.310241699 220.219909668 220.130065918 231.649887085 231.130355835 229.90965271 228.989730835 229.239730835 230.029769897 229.96043396 228.720199585 227.510238647 227.340316772 227.89012146 228.329574585 228.539535522 229.039535522 229.81980896 230.399887085 230.56980896 298.500244141 298.679931641 298.990478516 299.359619141 299.609619141 299.580322266 299.529541016 299.720947266 300.019775391 300.019775391 299.640869141 299.179931641 298.820556641 298.359619141 297.609619141 296.609619141 295.320556641 294.629150391 294.330322266 294.049072266 294.260009766 294.830322266 295.179931641 295.099853516 294.900634766 294.769775391 294.539306641 294.070556641 293.539306641 293.049072266 292.470947266 291.679931641 290.660400391 289.340087891 289.639526367 289.559448242 289.459838867 289.459838867 289.680541992 290.000854492 290.139526367 290.080932617 289.979370117 289.780151367 289.309448242 288.690307617 288.180541992 287.729370117 287.020385742 285.920776367 284.590698242 281.649841309 281.849060059 281.979919434 281.940856934 281.700622559 281.440856934 281.440856934 281.759216309 282.120544434 282.329528809 282.540466309 282.909606934 283.309997559 283.579528809 283.599060059 283.140075684 281.770935059 276.6199646 276.890472412 276.980316162 276.900238037 276.640472412 276.35043335 276.219573975 276.20980835 276.1902771 276.129730225 276.200042725 276.4402771 276.669769287 276.730316162 276.610198975 276.259613037 275.379730225 269.159606934 269.290466309 268.970153809 268.449645996 268.050231934 267.869567871 267.750427246 267.569763184 267.489685059 267.600036621 267.819763184 267.939880371 267.960388184 268.000427246 268.100036621 268.100036621 267.710388184 258.430114746 258.699645996 258.619567871 258.319763184 257.979919434 257.659606934 257.380310059 257.199645996 257.180114746 257.290466309 257.390075684 257.399841309 257.470153809 257.600036621 257.609802246 257.420349121 257.199645996 243.000076294 243.239822388 243.4400177 243.549880981 243.419998169 243.120193481 242.839920044 242.660232544 242.520095825 242.489822388 242.609939575 242.710037231 242.589920044 242.370193481 242.290115356 242.35017395 242.429763794 233.239822388 233.509841919 233.649978638 233.649978638 233.520095825 233.359939575 233.250076294 233.179763794 233.129959106 233.160232544 233.290115356 233.399978638 233.27986145 233.000076294 232.810134888 232.770095825 232.759841919 221.590133667 221.670211792 221.749801636 221.679977417 221.409957886 221.139938354 221.019821167 221.059860229 221.150192261 221.249801636 221.360153198 221.429977417 221.329879761 221.070114136 220.869918823 220.829879761 220.900192261 207.180023193 206.880218506 206.639984131 206.450042725 206.309906006 206.130218506 206.010101318 206.03012085 206.110198975 206.059906006 205.860198975 205.740081787 205.809906006 205.930023193 206.079925537 206.430023193 207.070159912 191.029922485 190.19984436 189.749649048 189.350234985 188.890274048 188.53968811 188.440078735 188.480117798 188.510391235 188.499649048 188.61000061 188.999649048 189.61000061 190.260391235 190.869766235 191.550430298 192.43031311 197.249801636 196.230270386 195.310348511 194.730270386 194.659957886 194.940231323 195.280075073 195.490036011 195.589645386 195.610153198 195.409957886 194.990036011 194.539840698 194.299606323 194.310348511 194.520309448 195.049606323 207.879898071 207.240249634 206.729995728 206.290054321 205.870132446 205.470230103 205.200210571 205.080093384 205.060073853 205.100112915 205.18019104 205.279800415 205.27003479 205.10987854 204.899917603 204.870132446 205.189956665 218.1300354 217.839996338 217.560211182 217.409820557 217.580230713 218.060211182 218.549957275 218.79019165 218.770172119 218.529937744 218.190093994 217.770172119 217.339996338 216.960113525 216.710113525 216.54019165 216.259918213 219.980163574 219.900085449 220.00994873 219.909851074 219.469909668 219.090026855 219.199890137 219.699890137 220.070007324 220.150085449 220.199890137 220.400085449 220.549987793 220.449890137 220.230163574 220.110046387 220.00994873 231.750473022 231.149887085 230.06980896 229.359848022 229.65965271 230.250473022 229.869613647 228.46043396 227.279769897 227.239730835 227.880355835 228.279769897 228.470199585 229.000473022 229.90965271 230.56980896 230.720199585 298.010009766 298.769775391 299.310791016 299.650634766 299.810791016 299.830322266 299.890869141 300.109619141 300.279541016 300.080322266 299.570556641 299.119384766 298.830322266 298.459228516 297.799072266 296.900634766 295.679931641 293.750244141 293.939697266 294.039306641 294.379150391 294.840087891 295.080322266 295.060791016 295.029541016 294.990478516 294.650634766 294.019775391 293.439697266 293.010009766 292.549072266 291.900634766 291.029541016 289.789306641 289.059448242 289.319213867 289.459838867 289.559448242 289.809448242 290.129760742 290.270385742 290.219604492 290.110229492 289.889526367 289.350463867 288.659057617 288.090698242 287.680541992 287.100463867 286.170776367 284.899291992 281.659606934 281.919372559 282.099060059 282.120544434 281.919372559 281.649841309 281.589294434 281.819763184 282.110778809 282.280700684 282.450622559 282.780700684 283.190856934 283.499450684 283.589294434 283.190856934 281.899841309 276.660003662 276.910003662 276.929534912 276.770355225 276.53012085 276.28012085 276.179534912 276.200042725 276.200042725 276.200042725 276.310394287 276.560394287 276.7996521 276.879730225 276.78012085 276.419769287 275.520355225 269.239685059 269.309997559 268.859802246 268.210388184 267.790466309 267.689880371 267.670349121 267.579528809 267.540466309 267.699645996 267.970153809 268.119567871 268.100036621 268.090270996 268.149841309 268.159606934 267.790466309 258.519958496 258.720153809 258.600036621 258.329528809 258.040466309 257.769958496 257.479919434 257.279724121 257.269958496 257.399841309 257.510192871 257.510192871 257.559997559 257.680114746 257.699645996 257.510192871 257.229919434 243.060134888 243.259841919 243.460037231 243.569900513 243.449783325 243.179763794 242.9400177 242.750076294 242.60017395 242.540115356 242.629959106 242.730056763 242.649978638 242.419998169 242.299880981 242.330154419 242.419998169 233.299880981 233.509841919 233.609939575 233.629959106 233.549880981 233.410232544 233.310134888 233.270095825 233.219802856 233.230056763 233.310134888 233.399978638 233.290115356 233.000076294 232.770095825 232.719802856 232.739822388 221.619918823 221.729782104 221.800094604 221.679977417 221.400192261 221.110153198 220.999801636 221.050094604 221.159957886 221.249801636 221.360153198 221.420211792 221.320114136 221.059860229 220.849899292 220.820114136 220.929977417 207.1199646 206.789886475 206.53012085 206.3699646 206.240081787 206.079925537 205.950042725 205.979827881 206.079925537 206.070159912 205.880218506 205.749847412 205.800140381 205.95980835 206.139984131 206.490081787 207.070159912 191.52015686 190.819961548 190.27015686 189.659805298 189.02015686 188.600234985 188.480117798 188.489883423 188.470352173 188.470352173 188.650039673 189.100234985 189.690078735 190.300430298 190.919570923 191.600234985 192.44984436 197.329879761 196.270309448 195.320114136 194.699996948 194.570114136 194.789840698 195.100387573 195.320114136 195.440231323 195.430465698 195.199996948 194.770309448 194.390426636 194.199996948 194.209762573 194.400192261 194.940231323 208.009780884 207.439956665 206.93019104 206.450210571 205.979995728 205.560073853 205.279800415 205.140151978 205.100112915 205.120132446 205.209976196 205.310073853 205.299819946 205.120132446 204.890151978 204.819839478 205.120132446 217.920074463 217.560211182 217.230133057 217.029937744 217.119781494 217.480133057 217.960113525 218.299957275 218.420074463 218.339996338 218.100250244 217.71987915 217.279937744 216.8800354 216.670074463 216.569976807 216.310211182 220.130065918 220.139831543 220.230163574 220.090026855 219.699890137 219.429870605 219.570007324 219.949890137 220.150085449 220.139831543 220.199890137 220.42010498 220.560241699 220.440124512 220.199890137 220.079772949 220.00994873 231.40965271 230.71043396 229.829574585 229.350082397 229.539535522 229.80027771 229.30027771 228.130355835 227.30027771 227.399887085 227.920394897 228.220199585 228.40965271 229.029769897 229.97996521 230.619613647 230.72996521 298.420166016 299.260009766 299.709228516 299.939697266 300.090087891 300.170166016 300.260009766 300.410400391 300.470947266 300.209228516 299.699462891 299.220947266 298.890869141 298.500244141 297.939697266 297.230712891 296.199462891 293.480712891 293.890869141 294.090087891 294.340087891 294.640869141 294.799072266 294.910400391 295.090087891 295.129150391 294.750244141 294.070556641 293.449462891 293.010009766 292.590087891 292.090087891 291.480712891 290.470947266 288.959838867 289.399291992 289.539916992 289.580932617 289.780151367 290.080932617 290.250854492 290.250854492 290.180541992 289.969604492 289.469604492 288.739135742 288.139526367 287.739135742 287.280151367 286.520385742 285.409057617 281.729919434 282.069763184 282.300231934 282.319763184 282.120544434 281.829528809 281.710388184 281.860778809 282.069763184 282.200622559 282.329528809 282.620544434 282.999450684 283.300231934 283.380310059 283.009216309 281.860778809 276.749847412 276.9402771 276.860198975 276.650238037 276.410003662 276.249847412 276.20980835 276.230316162 276.20980835 276.200042725 276.320159912 276.589691162 276.879730225 277.009613037 276.919769287 276.509613037 275.589691162 269.359802246 269.390075684 268.880310059 268.170349121 267.710388184 267.609802246 267.619567871 267.550231934 267.550231934 267.760192871 268.090270996 268.279724121 268.260192871 268.210388184 268.220153809 268.189880371 267.800231934 258.540466309 258.720153809 258.609802246 258.390075684 258.170349121 257.909606934 257.609802246 257.350036621 257.300231934 257.460388184 257.579528809 257.600036621 257.619567871 257.750427246 257.769958496 257.569763184 257.239685059 243.080154419 243.27986145 243.449783325 243.540115356 243.419998169 243.160232544 242.949783325 242.819900513 242.699783325 242.629959106 242.699783325 242.77986145 242.6900177 242.460037231 242.299880981 242.299880981 242.370193481 233.449783325 233.629959106 233.699783325 233.710037231 233.629959106 233.480056763 233.359939575 233.310134888 233.299880981 233.27986145 233.330154419 233.399978638 233.310134888 233.02986145 232.759841919 232.660232544 232.699783325 221.710250854 221.849899292 221.929977417 221.789840698 221.479782104 221.150192261 220.990036011 221.010055542 221.110153198 221.229782104 221.349899292 221.409957886 221.320114136 221.059860229 220.829879761 220.800094604 220.940231323 207.090179443 206.800140381 206.579925537 206.430023193 206.289886475 206.099945068 205.930023193 205.930023193 206.059906006 206.070159912 205.900238037 205.760101318 205.809906006 205.990081787 206.20980835 206.550140381 207.079925537 192.050430298 191.220352173 190.400039673 189.59046936 188.940078735 188.62953186 188.569961548 188.52015686 188.409805298 188.409805298 188.650039673 189.119766235 189.69984436 190.329727173 190.999649048 191.720352173 192.52015686 197.560348511 196.549606323 195.600387573 194.919723511 194.659957886 194.730270386 194.940231323 195.159957886 195.299606323 195.270309448 195.009567261 194.589645386 194.249801636 194.079879761 194.079879761 194.259567261 194.829879761 207.990249634 207.410171509 206.879898071 206.410171509 205.979995728 205.640151978 205.419937134 205.310073853 205.250015259 205.259780884 205.339859009 205.419937134 205.390151978 205.169937134 204.890151978 204.790054321 205.049819946 217.929840088 217.619781494 217.319976807 217.020172119 216.850250244 216.949859619 217.299957275 217.730133057 218.029937744 218.089996338 217.920074463 217.589996338 217.150054932 216.770172119 216.580230713 216.529937744 216.330230713 220.389831543 220.429870605 220.469909668 220.34979248 220.110046387 219.980163574 220.090026855 220.239929199 220.230163574 220.150085449 220.250183105 220.520202637 220.650085449 220.50994873 220.25994873 220.119812012 220.000183105 230.770004272 230.05027771 229.420394897 229.079574585 229.05027771 228.96043396 228.470199585 227.789535522 227.470199585 227.649887085 227.949691772 228.06980896 228.289535522 228.970199585 229.920394897 230.579574585 230.739730835 298.900634766 299.510009766 299.799072266 300.029541016 300.250244141 300.390869141 300.429931641 300.470947266 300.459228516 300.250244141 299.879150391 299.449462891 299.039306641 298.549072266 298.000244141 297.420166016 296.560791016 293.549072266 293.970947266 294.170166016 294.359619141 294.539306641 294.660400391 294.830322266 295.060791016 295.119384766 294.779541016 294.199462891 293.679931641 293.230712891 292.730712891 292.230712891 291.789306641 291.010009766 289.100463867 289.500854492 289.600463867 289.569213867 289.700073242 289.959838867 290.149291992 290.170776367 290.159057617 290.030151367 289.619995117 288.959838867 288.340698242 287.909057617 287.510620117 286.879760742 285.899291992 281.839294434 282.200622559 282.399841309 282.399841309 282.169372559 281.880310059 281.749450684 281.860778809 282.050231934 282.149841309 282.249450684 282.499450684 282.839294434 283.069763184 283.059997559 282.669372559 281.659606934 276.820159912 276.950042725 276.7996521 276.53012085 276.2996521 276.20980835 276.240081787 276.270355225 276.200042725 276.129730225 276.240081787 276.5496521 276.900238037 277.079925537 276.999847412 276.539886475 275.570159912 269.359802246 269.390075684 268.909606934 268.250427246 267.800231934 267.680114746 267.659606934 267.600036621 267.609802246 267.840270996 268.180114746 268.399841309 268.430114746 268.380310059 268.340270996 268.210388184 267.760192871 258.500427246 258.699645996 258.649841309 258.500427246 258.319763184 258.069763184 257.720153809 257.380310059 257.290466309 257.449645996 257.630310059 257.670349121 257.699645996 257.800231934 257.800231934 257.569763184 257.180114746 243.060134888 243.290115356 243.460037231 243.520095825 243.359939575 243.109939575 242.929763794 242.859939575 242.799880981 242.77986145 242.819900513 242.859939575 242.750076294 242.489822388 242.299880981 242.250076294 242.299880981 233.640213013 233.819900513 233.890213013 233.890213013 233.790115356 233.589920044 233.419998169 233.359939575 233.35017395 233.330154419 233.330154419 233.399978638 233.339920044 233.10017395 232.790115356 232.640213013 232.660232544 221.749801636 221.949996948 222.039840698 221.909957886 221.590133667 221.249801636 221.030075073 220.999801636 221.090133667 221.199996948 221.329879761 221.389938354 221.300094604 221.050094604 220.800094604 220.760055542 220.929977417 207.079925537 206.849945068 206.680023193 206.539886475 206.3699646 206.139984131 205.939788818 205.919769287 206.03012085 206.050140381 205.900238037 205.749847412 205.800140381 206.010101318 206.269866943 206.6199646 207.1199646 192.409805298 191.300430298 190.18031311 189.230117798 188.68031311 188.529922485 188.550430298 188.459609985 188.310195923 188.34046936 188.650039673 189.140274048 189.720352173 190.369766235 191.119766235 191.87953186 192.650039673 197.789840698 196.829879761 195.900192261 195.180465698 194.799606323 194.730270386 194.869918823 195.079879761 195.230270386 195.199996948 194.930465698 194.530075073 194.169723511 193.969528198 193.940231323 194.129684448 194.749801636 207.919937134 207.27003479 206.709976196 206.27003479 205.939956665 205.709976196 205.540054321 205.43019104 205.379898071 205.390151978 205.450210571 205.490249634 205.419937134 205.189956665 204.899917603 204.759780884 204.970230103 218.060211182 217.850250244 217.610015869 217.270172119 216.920074463 216.770172119 216.960113525 217.3800354 217.750152588 217.850250244 217.690093994 217.400054932 217.04019165 216.71987915 216.54019165 216.489898682 216.330230713 220.590026855 220.560241699 220.520202637 220.42010498 220.310241699 220.320007324 220.42010498 220.42010498 220.279968262 220.219909668 220.400085449 220.659851074 220.75994873 220.610046387 220.34979248 220.119812012 219.900085449 230.220199585 229.630355835 229.21043396 228.930160522 228.65965271 228.260238647 227.829574585 227.579574585 227.609848022 227.770004272 227.840316772 227.880355835 228.170394897 228.880355835 229.80027771 230.55027771 230.89012146 299.010009766 299.420166016 299.699462891 300.019775391 300.289306641 300.410400391 300.379150391 300.320556641 300.250244141 300.140869141 299.929931641 299.619384766 299.199462891 298.670166016 298.109619141 297.529541016 296.709228516 293.750244141 294.109619141 294.379150391 294.570556641 294.670166016 294.720947266 294.869384766 295.049072266 295.060791016 294.769775391 294.349853516 293.980712891 293.560791016 292.980712891 292.410400391 291.970947266 291.310791016 289.219604492 289.500854492 289.619995117 289.649291992 289.719604492 289.909057617 290.069213867 290.139526367 290.170776367 290.119995117 289.819213867 289.229370117 288.619995117 288.149291992 287.729370117 287.170776367 286.309448242 281.940856934 282.249450684 282.370544434 282.309997559 282.099060059 281.849060059 281.749450684 281.880310059 282.059997559 282.130310059 282.179138184 282.390075684 282.720153809 282.909606934 282.809997559 282.360778809 281.429138184 276.890472412 276.999847412 276.810394287 276.499847412 276.240081787 276.169769287 276.230316162 276.259613037 276.179534912 276.089691162 276.1902771 276.480316162 276.860198975 277.10043335 277.020355225 276.53012085 275.509613037 269.210388184 269.229919434 268.850036621 268.340270996 267.989685059 267.869567871 267.809997559 267.720153809 267.699645996 267.869567871 268.170349121 268.409606934 268.529724121 268.550231934 268.449645996 268.199645996 267.630310059 258.420349121 258.659606934 258.710388184 258.630310059 258.460388184 258.199645996 257.790466309 257.399841309 257.269958496 257.439880371 257.659606934 257.750427246 257.779724121 257.819763184 257.779724121 257.510192871 257.079528809 243.069900513 243.35017395 243.520095825 243.52986145 243.35017395 243.089920044 242.929763794 242.899978638 242.890213013 242.899978638 242.9400177 242.949783325 242.810134888 242.52986145 242.299880981 242.210037231 242.210037231 233.85017395 234.049880981 234.109939575 234.109939575 233.980056763 233.710037231 233.469802856 233.399978638 233.410232544 233.370193481 233.339920044 233.379959106 233.370193481 233.149978638 232.830154419 232.629959106 232.640213013 221.749801636 221.970016479 222.030075073 221.900192261 221.639938354 221.340133667 221.130172729 221.050094604 221.090133667 221.190231323 221.300094604 221.349899292 221.260055542 221.019821167 220.769821167 220.729782104 220.929977417 207.050140381 206.8699646 206.729827881 206.599945068 206.419769287 206.180023193 205.979827881 205.950042725 206.010101318 205.999847412 205.849945068 205.729827881 205.800140381 206.019866943 206.309906006 206.669769287 207.169769287 192.499649048 191.169570923 189.890274048 188.900039673 188.419570923 188.36000061 188.400039673 188.329727173 188.239883423 188.36000061 188.730117798 189.249649048 189.829727173 190.52015686 191.28968811 192.050430298 192.78968811 197.829879761 196.879684448 195.980270386 195.259567261 194.860153198 194.759567261 194.879684448 195.060348511 195.190231323 195.129684448 194.869918823 194.490036011 194.119918823 193.869918823 193.810348511 194.009567261 194.659957886 207.919937134 207.220230103 206.629898071 206.220230103 205.959976196 205.759780884 205.589859009 205.459976196 205.410171509 205.43019104 205.479995728 205.470230103 205.379898071 205.149917603 204.879898071 204.729995728 204.910171509 218.100250244 217.900054932 217.710113525 217.440093994 217.100250244 216.860015869 216.940093994 217.279937744 217.589996338 217.6300354 217.449859619 217.21987915 217.000152588 216.759918213 216.560211182 216.480133057 216.330230713 220.650085449 220.529968262 220.449890137 220.34979248 220.299987793 220.369812012 220.480163574 220.460144043 220.340026855 220.320007324 220.500183105 220.699890137 220.739929199 220.610046387 220.389831543 220.09979248 219.770202637 230.06980896 229.609848022 229.270004272 228.939926147 228.510238647 227.970199585 227.590316772 227.55027771 227.670394897 227.71043396 227.670394897 227.80027771 228.22996521 228.920394897 229.72996521 230.55027771 231.119613647 298.980712891 299.400634766 299.810791016 300.140869141 300.289306641 300.310791016 300.260009766 300.179931641 300.080322266 299.990478516 299.859619141 299.619384766 299.240478516 298.769775391 298.279541016 297.720947266 296.830322266 293.990478516 294.340087891 294.679931641 294.840087891 294.810791016 294.769775391 294.910400391 295.099853516 295.070556641 294.760009766 294.390869141 294.070556641 293.679931641 293.140869141 292.599853516 292.179931641 291.549072266 289.289916992 289.469604492 289.709838867 289.840698242 289.860229492 289.920776367 290.039916992 290.170776367 290.280151367 290.270385742 289.989135742 289.430541992 288.799682617 288.309448242 287.930541992 287.430541992 286.649291992 281.960388184 282.149841309 282.210388184 282.159606934 281.999450684 281.809997559 281.749450684 281.909606934 282.120544434 282.130310059 282.089294434 282.249450684 282.589294434 282.829528809 282.720153809 282.220153809 281.290466309 276.990081787 277.129730225 276.95980835 276.60043335 276.270355225 276.150238037 276.1902771 276.230316162 276.169769287 276.110198975 276.179534912 276.429534912 276.770355225 277.0496521 277.009613037 276.509613037 275.45980835 269.040466309 269.050231934 268.769958496 268.439880371 268.239685059 268.140075684 268.019958496 267.840270996 267.729919434 267.790466309 268.000427246 268.269958496 268.519958496 268.640075684 268.540466309 268.140075684 267.449645996 258.350036621 258.640075684 258.769958496 258.739685059 258.569763184 258.260192871 257.829528809 257.439880371 257.300231934 257.449645996 257.689880371 257.800231934 257.809997559 257.800231934 257.720153809 257.420349121 256.970153809 243.140213013 243.449783325 243.589920044 243.540115356 243.35017395 243.109939575 242.960037231 242.919998169 242.9400177 242.960037231 243.02986145 243.040115356 242.890213013 242.580154419 242.299880981 242.160232544 242.120193481 234.02986145 234.210037231 234.239822388 234.230056763 234.089920044 233.77986145 233.500076294 233.419998169 233.429763794 233.390213013 233.339920044 233.370193481 233.359939575 233.169998169 232.85017395 232.640213013 232.629959106 221.729782104 221.929977417 221.940231323 221.800094604 221.599899292 221.400192261 221.229782104 221.119918823 221.110153198 221.170211792 221.280075073 221.320114136 221.240036011 221.010055542 220.760055542 220.720016479 220.949996948 206.990081787 206.860198975 206.749847412 206.6199646 206.439788818 206.229827881 206.079925537 206.03012085 206.03012085 205.95980835 205.809906006 205.729827881 205.820159912 206.070159912 206.380218506 206.749847412 207.229827881 192.310195923 190.94984436 189.69984436 188.77015686 188.300430298 188.209609985 188.239883423 188.239883423 188.28968811 188.499649048 188.900039673 189.419570923 190.010391235 190.730117798 191.499649048 192.209609985 192.900039673 197.740036011 196.770309448 195.879684448 195.190231323 194.829879761 194.749801636 194.850387573 194.980270386 195.039840698 194.959762573 194.730270386 194.379684448 194.020309448 193.749801636 193.680465698 193.930465698 194.589645386 207.979995728 207.290054321 206.709976196 206.299819946 206.029800415 205.819839478 205.60987854 205.470230103 205.43019104 205.470230103 205.500015259 205.470230103 205.350112915 205.149917603 204.879898071 204.720230103 204.879898071 218.04019165 217.779937744 217.569976807 217.369781494 217.139801025 216.929840088 216.909820557 217.1300354 217.360015869 217.350250244 217.190093994 217.049957275 216.949859619 216.79019165 216.580230713 216.449859619 216.299957275 220.619812012 220.460144043 220.42010498 220.360046387 220.310241699 220.369812012 220.480163574 220.489929199 220.409851074 220.409851074 220.520202637 220.619812012 220.619812012 220.549987793 220.409851074 220.139831543 219.739929199 230.239730835 229.81980896 229.340316772 228.899887085 228.420394897 227.90965271 227.590316772 227.579574585 227.649887085 227.600082397 227.600082397 227.90965271 228.470199585 229.060043335 229.689926147 230.489730835 231.22996521 299.090087891 299.660400391 300.160400391 300.359619141 300.299072266 300.220947266 300.230712891 300.189697266 300.049072266 299.900634766 299.760009766 299.510009766 299.119384766 298.720947266 298.390869141 297.920166016 297.029541016 294.209228516 294.599853516 294.959228516 295.019775391 294.799072266 294.699462891 294.910400391 295.189697266 295.170166016 294.810791016 294.349853516 293.949462891 293.539306641 293.099853516 292.720947266 292.400634766 291.840087891 289.389526367 289.549682617 289.899291992 290.059448242 289.979370117 289.909057617 290.020385742 290.250854492 290.399291992 290.379760742 290.069213867 289.489135742 288.850463867 288.369995117 288.059448242 287.690307617 286.989135742 281.819763184 281.899841309 281.950622559 281.989685059 281.929138184 281.770935059 281.739685059 281.960388184 282.229919434 282.229919434 282.079528809 282.149841309 282.499450684 282.809997559 282.770935059 282.259216309 281.300231934 277.039886475 277.270355225 277.129730225 276.719573975 276.339691162 276.160003662 276.160003662 276.1902771 276.150238037 276.110198975 276.160003662 276.339691162 276.629730225 276.919769287 276.950042725 276.469573975 275.400238037 269.050231934 269.050231934 268.809997559 268.609802246 268.529724121 268.430114746 268.189880371 267.880310059 267.649841309 267.619567871 267.760192871 268.069763184 268.420349121 268.640075684 268.540466309 268.040466309 267.229919434 258.359802246 258.689880371 258.859802246 258.829528809 258.609802246 258.250427246 257.850036621 257.489685059 257.359802246 257.500427246 257.720153809 257.809997559 257.769958496 257.729919434 257.609802246 257.300231934 256.840270996 243.270095825 243.560134888 243.629959106 243.52986145 243.330154419 243.149978638 243.020095825 242.969802856 242.949783325 242.980056763 243.069900513 243.109939575 242.960037231 242.620193481 242.270095825 242.080154419 242.009841919 234.10017395 234.230056763 234.230056763 234.219802856 234.089920044 233.77986145 233.500076294 233.410232544 233.4400177 233.399978638 233.339920044 233.35017395 233.330154419 233.140213013 232.839920044 232.649978638 232.649978638 221.720016479 221.889938354 221.860153198 221.699996948 221.570114136 221.449996948 221.300094604 221.159957886 221.110153198 221.179977417 221.289840698 221.349899292 221.269821167 221.030075073 220.800094604 220.780075073 221.010055542 206.900238037 206.820159912 206.769866943 206.650238037 206.479827881 206.320159912 206.20980835 206.139984131 206.070159912 205.939788818 205.800140381 205.760101318 205.919769287 206.200042725 206.499847412 206.849945068 207.289886475 191.919570923 190.62953186 189.53968811 188.739883423 188.279922485 188.11000061 188.140274048 188.239883423 188.400039673 188.650039673 189.010391235 189.480117798 190.11000061 190.890274048 191.669570923 192.329727173 192.989883423 197.669723511 196.690231323 195.789840698 195.110153198 194.749801636 194.669723511 194.730270386 194.789840698 194.799606323 194.719528198 194.539840698 194.240036011 193.879684448 193.600387573 193.560348511 193.860153198 194.539840698 207.979995728 207.330093384 206.779800415 206.379898071 206.10987854 205.879898071 205.689956665 205.569839478 205.560073853 205.60987854 205.620132446 205.549819946 205.410171509 205.189956665 204.919937134 204.729995728 204.85987854 218.060211182 217.71987915 217.440093994 217.239898682 217.04019165 216.799957275 216.679840088 216.79019165 216.980133057 217.020172119 216.900054932 216.819976807 216.810211182 216.730133057 216.549957275 216.389801025 216.230133057 220.540222168 220.42010498 220.460144043 220.469909668 220.429870605 220.469909668 220.590026855 220.639831543 220.560241699 220.500183105 220.529968262 220.570007324 220.549987793 220.540222168 220.469909668 220.239929199 219.840026855 230.449691772 229.97996521 229.310043335 228.739730835 228.279769897 227.850082397 227.55027771 227.500473022 227.55027771 227.55027771 227.649887085 228.079574585 228.65965271 229.130355835 229.590316772 230.329574585 231.149887085 299.269775391 299.929931641 300.420166016 300.480712891 300.289306641 300.230712891 300.320556641 300.260009766 300.010009766 299.799072266 299.689697266 299.439697266 299.000244141 298.590087891 298.330322266 297.959228516 297.140869141 294.299072266 294.750244141 295.119384766 295.070556641 294.750244141 294.670166016 294.959228516 295.250244141 295.199462891 294.830322266 294.340087891 293.849853516 293.379150391 292.980712891 292.720947266 292.510009766 292.039306641 289.520385742 289.719604492 290.119995117 290.260620117 290.059448242 289.909057617 290.049682617 290.309448242 290.440307617 290.360229492 290.049682617 289.510620117 288.879760742 288.389526367 288.119995117 287.860229492 287.260620117 281.530700684 281.559997559 281.640075684 281.809997559 281.870544434 281.729919434 281.710388184 282.030700684 282.419372559 282.470153809 282.259216309 282.210388184 282.499450684 282.839294434 282.839294434 282.360778809 281.399841309 276.9402771 277.240081787 277.10043335 276.700042725 276.329925537 276.160003662 276.150238037 276.150238037 276.10043335 276.0496521 276.070159912 276.20980835 276.45980835 276.759613037 276.820159912 276.360198975 275.2996521 269.239685059 269.210388184 268.960388184 268.800231934 268.739685059 268.579528809 268.220153809 267.800231934 267.529724121 267.470153809 267.600036621 267.920349121 268.309997559 268.590270996 268.470153809 267.880310059 267.000427246 258.500427246 258.819763184 258.960388184 258.859802246 258.569763184 258.199645996 257.819763184 257.540466309 257.460388184 257.590270996 257.769958496 257.809997559 257.729919434 257.630310059 257.470153809 257.159606934 256.670349121 243.399978638 243.629959106 243.629959106 243.469802856 243.299880981 243.169998169 243.10017395 243.02986145 242.989822388 243.000076294 243.10017395 243.160232544 243.000076294 242.609939575 242.199783325 241.960037231 241.870193481 234.060134888 234.140213013 234.109939575 234.109939575 234.000076294 233.750076294 233.500076294 233.410232544 233.419998169 233.399978638 233.330154419 233.339920044 233.310134888 233.120193481 232.85017395 232.6900177 232.6900177 221.710250854 221.889938354 221.829879761 221.670211792 221.579879761 221.490036011 221.329879761 221.150192261 221.099899292 221.199996948 221.340133667 221.389938354 221.300094604 221.070114136 220.860153198 220.840133667 221.059860229 206.820159912 206.820159912 206.800140381 206.680023193 206.519866943 206.380218506 206.300140381 206.220062256 206.099945068 205.939788818 205.820159912 205.849945068 206.050140381 206.360198975 206.650238037 206.950042725 207.349945068 191.480117798 190.249649048 189.319961548 188.68031311 188.279922485 188.11000061 188.150039673 188.319961548 188.510391235 188.709609985 188.970352173 189.400039673 190.069961548 190.919570923 191.739883423 192.419570923 193.09046936 197.699996948 196.680465698 195.770309448 195.060348511 194.659957886 194.530075073 194.549606323 194.589645386 194.600387573 194.549606323 194.430465698 194.159957886 193.780075073 193.480270386 193.459762573 193.810348511 194.520309448 207.919937134 207.299819946 206.790054321 206.410171509 206.140151978 205.939956665 205.790054321 205.709976196 205.700210571 205.720230103 205.709976196 205.629898071 205.479995728 205.250015259 204.950210571 204.740249634 204.830093384 218.179840088 217.830230713 217.46987915 217.190093994 216.909820557 216.580230713 216.350250244 216.400054932 216.6300354 216.750152588 216.699859619 216.6300354 216.650054932 216.6300354 216.520172119 216.350250244 216.170074463 220.500183105 220.389831543 220.489929199 220.549987793 220.529968262 220.59979248 220.75994873 220.829772949 220.710144043 220.579772949 220.570007324 220.619812012 220.630065918 220.610046387 220.540222168 220.299987793 219.940124512 230.520004272 230.020004272 229.250473022 228.64012146 228.220199585 227.789535522 227.420394897 227.31980896 227.449691772 227.579574585 227.72996521 228.100082397 228.619613647 229.06980896 229.520004272 230.220199585 231.029769897 299.310791016 299.959228516 300.410400391 300.439697266 300.320556641 300.369384766 300.449462891 300.240478516 299.830322266 299.629150391 299.650634766 299.490478516 299.019775391 298.510009766 298.170166016 297.779541016 297.029541016 294.230712891 294.750244141 295.150634766 295.099853516 294.849853516 294.849853516 295.119384766 295.260009766 295.080322266 294.740478516 294.369384766 293.929931641 293.410400391 292.949462891 292.650634766 292.420166016 292.000244141 289.600463867 289.879760742 290.289916992 290.369995117 290.139526367 290.000854492 290.159057617 290.369995117 290.399291992 290.250854492 289.989135742 289.580932617 289.010620117 288.479370117 288.149291992 287.889526367 287.350463867 281.259216309 281.239685059 281.360778809 281.659606934 281.819763184 281.720153809 281.720153809 282.130310059 282.620544434 282.729919434 282.509216309 282.409606934 282.610778809 282.870544434 282.870544434 282.450622559 281.530700684 276.650238037 276.950042725 276.810394287 276.469573975 276.20980835 276.140472412 276.150238037 276.10043335 275.999847412 275.919769287 275.950042725 276.089691162 276.35043335 276.6199646 276.679534912 276.1902771 275.140472412 269.380310059 269.329528809 269.029724121 268.850036621 268.729919434 268.489685059 268.050231934 267.630310059 267.409606934 267.399841309 267.540466309 267.809997559 268.189880371 268.460388184 268.340270996 267.729919434 266.790466309 258.720153809 258.979919434 259.040466309 258.859802246 258.519958496 258.130310059 257.800231934 257.590270996 257.540466309 257.659606934 257.819763184 257.829528809 257.710388184 257.540466309 257.350036621 257.010192871 256.500427246 243.480056763 243.6900177 243.620193481 243.429763794 243.270095825 243.179763794 243.149978638 243.10017395 243.02986145 243.040115356 243.129959106 243.199783325 243.020095825 242.580154419 242.10017395 241.819900513 241.719802856 233.960037231 234.02986145 234.009841919 234.000076294 233.929763794 233.719802856 233.509841919 233.429763794 233.4400177 233.399978638 233.370193481 233.370193481 233.330154419 233.140213013 232.890213013 232.770095825 232.739822388 221.699996948 221.900192261 221.849899292 221.690231323 221.590133667 221.499801636 221.320114136 221.150192261 221.110153198 221.249801636 221.380172729 221.400192261 221.289840698 221.090133667 220.909957886 220.889938354 221.090133667 206.789886475 206.840179443 206.829925537 206.689788818 206.510101318 206.380218506 206.300140381 206.20980835 206.090179443 205.950042725 205.8699646 205.939788818 206.180023193 206.490081787 206.78012085 207.050140381 207.430023193 191.140274048 189.900039673 189.100234985 188.61000061 188.329727173 188.220352173 188.260391235 188.43031311 188.59046936 188.730117798 188.919570923 189.310195923 189.999649048 190.869766235 191.749649048 192.52015686 193.239883423 197.690231323 196.690231323 195.759567261 195.020309448 194.570114136 194.390426636 194.379684448 194.440231323 194.480270386 194.469528198 194.369918823 194.119918823 193.730270386 193.400192261 193.369918823 193.749801636 194.509567261 207.870132446 207.279800415 206.810073853 206.450210571 206.189956665 205.990249634 205.85987854 205.77003479 205.740249634 205.720230103 205.700210571 205.629898071 205.500015259 205.259780884 204.959976196 204.729995728 204.810073853 218.250152588 217.909820557 217.489898682 217.110015869 216.770172119 216.400054932 216.1300354 216.170074463 216.449859619 216.650054932 216.639801025 216.560211182 216.580230713 216.619781494 216.549957275 216.3800354 216.1300354 220.529968262 220.389831543 220.469909668 220.540222168 220.549987793 220.67010498 220.889831543 220.960144043 220.799987793 220.59979248 220.590026855 220.690124512 220.739929199 220.679870605 220.529968262 220.279968262 219.940124512 230.470199585 230.010238647 229.279769897 228.699691772 228.310043335 227.80027771 227.289535522 227.15965271 227.420394897 227.699691772 227.81980896 228.020004272 228.46043396 228.989730835 229.579574585 230.30027771 231.039535522 299.230712891 299.849853516 300.299072266 300.410400391 300.429931641 300.539306641 300.519775391 300.119384766 299.619384766 299.480712891 299.619384766 299.539306641 299.080322266 298.519775391 298.070556641 297.539306641 296.779541016 294.140869141 294.689697266 295.119384766 295.119384766 294.990478516 295.080322266 295.260009766 295.179931641 294.840087891 294.549072266 294.359619141 294.039306641 293.519775391 292.990478516 292.580322266 292.250244141 291.820556641 289.569213867 289.930541992 290.330932617 290.409057617 290.209838867 290.129760742 290.270385742 290.399291992 290.309448242 290.110229492 289.930541992 289.680541992 289.200073242 288.619995117 288.170776367 287.830932617 287.289916992 281.099060059 281.050231934 281.169372559 281.550231934 281.809997559 281.770935059 281.800231934 282.220153809 282.710388184 282.819763184 282.620544434 282.540466309 282.690856934 282.870544434 282.849060059 282.499450684 281.649841309 276.259613037 276.509613037 276.379730225 276.140472412 276.03012085 276.079925537 276.129730225 276.0496521 275.890472412 275.810394287 275.839691162 276.020355225 276.270355225 276.520355225 276.509613037 276.020355225 274.980316162 269.319763184 269.250427246 268.939880371 268.689880371 268.519958496 268.210388184 267.790466309 267.449645996 267.340270996 267.380310059 267.500427246 267.699645996 268.019958496 268.290466309 268.199645996 267.600036621 266.630310059 258.899841309 259.090270996 259.050231934 258.819763184 258.449645996 258.079528809 257.800231934 257.630310059 257.579528809 257.699645996 257.850036621 257.859802246 257.710388184 257.479919434 257.229919434 256.859802246 256.329528809 243.52986145 243.719802856 243.640213013 243.4400177 243.270095825 243.199783325 243.169998169 243.129959106 243.080154419 243.089920044 243.179763794 243.239822388 243.049880981 242.560134888 242.009841919 241.679763794 241.549880981 233.890213013 234.009841919 234.000076294 233.989822388 233.899978638 233.710037231 233.520095825 233.460037231 233.460037231 233.4400177 233.419998169 233.429763794 233.370193481 233.169998169 232.9400177 232.85017395 232.790115356 221.710250854 221.920211792 221.849899292 221.690231323 221.559860229 221.449996948 221.289840698 221.150192261 221.159957886 221.280075073 221.389938354 221.349899292 221.229782104 221.070114136 220.940231323 220.949996948 221.099899292 206.769866943 206.860198975 206.829925537 206.650238037 206.45980835 206.349945068 206.269866943 206.189788818 206.079925537 205.970062256 205.919769287 206.010101318 206.269866943 206.610198975 206.900238037 207.160003662 207.53012085 190.970352173 189.720352173 188.980117798 188.62953186 188.459609985 188.37953186 188.400039673 188.499649048 188.619766235 188.749649048 188.959609985 189.369766235 190.02015686 190.869766235 191.749649048 192.600234985 193.419570923 197.629684448 196.629684448 195.719528198 194.990036011 194.520309448 194.320114136 194.310348511 194.360153198 194.379684448 194.350387573 194.249801636 194.009567261 193.650192261 193.339645386 193.320114136 193.709762573 194.520309448 207.919937134 207.350112915 206.890151978 206.529800415 206.229995728 206.009780884 205.870132446 205.77003479 205.709976196 205.68019104 205.669937134 205.620132446 205.479995728 205.240249634 204.939956665 204.720230103 204.819839478 218.179840088 217.860015869 217.400054932 216.96987915 216.6300354 216.279937744 216.04019165 216.069976807 216.350250244 216.580230713 216.600250244 216.529937744 216.560211182 216.6300354 216.600250244 216.420074463 216.110015869 220.59979248 220.469909668 220.520202637 220.570007324 220.579772949 220.730163574 220.960144043 221.020202637 220.820007324 220.59979248 220.590026855 220.710144043 220.75994873 220.679870605 220.50994873 220.250183105 219.92010498 230.380355835 229.949691772 229.279769897 228.770004272 228.380355835 227.81980896 227.239730835 227.109848022 227.470199585 227.829574585 227.899887085 227.970199585 228.350082397 229.000473022 229.71043396 230.449691772 231.100082397 299.220947266 299.859619141 300.320556641 300.500244141 300.539306641 300.580322266 300.429931641 300.000244141 299.580322266 299.519775391 299.609619141 299.439697266 298.980712891 298.490478516 298.029541016 297.420166016 296.599853516 294.119384766 294.689697266 295.049072266 295.049072266 294.990478516 295.119384766 295.230712891 295.039306641 294.660400391 294.400634766 294.260009766 293.970947266 293.470947266 292.949462891 292.529541016 292.160400391 291.699462891 289.469604492 289.869995117 290.250854492 290.360229492 290.229370117 290.149291992 290.280151367 290.369995117 290.239135742 290.010620117 289.840698242 289.659057617 289.289916992 288.729370117 288.209838867 287.770385742 287.190307617 281.089294434 280.970153809 281.079528809 281.499450684 281.829528809 281.860778809 281.950622559 282.309997559 282.669372559 282.690856934 282.499450684 282.470153809 282.630310059 282.749450684 282.759216309 282.540466309 281.790466309 275.919769287 276.10043335 275.999847412 275.8699646 275.879730225 276.020355225 276.10043335 276.009613037 275.839691162 275.730316162 275.789886475 275.969573975 276.179534912 276.360198975 276.329925537 275.860198975 274.8699646 269.130310059 269.059997559 268.750427246 268.479919434 268.239685059 267.909606934 267.550231934 267.350036621 267.350036621 267.409606934 267.470153809 267.590270996 267.859802246 268.140075684 268.100036621 267.540466309 266.519958496 258.979919434 259.100036621 258.979919434 258.710388184 258.350036621 258.029724121 257.800231934 257.640075684 257.609802246 257.699645996 257.829528809 257.850036621 257.670349121 257.390075684 257.100036621 256.720153809 256.159606934 243.540115356 243.739822388 243.669998169 243.469802856 243.310134888 243.219802856 243.169998169 243.120193481 243.109939575 243.149978638 243.270095825 243.319900513 243.10017395 242.580154419 241.969802856 241.549880981 241.359939575 233.890213013 234.060134888 234.080154419 234.020095825 233.870193481 233.679763794 233.520095825 233.460037231 233.480056763 233.489822388 233.500076294 233.500076294 233.390213013 233.149978638 232.9400177 232.85017395 232.770095825 221.679977417 221.920211792 221.860153198 221.659957886 221.490036011 221.369918823 221.269821167 221.190231323 221.229782104 221.320114136 221.349899292 221.269821167 221.150192261 221.050094604 220.999801636 221.010055542 221.130172729 206.749847412 206.829925537 206.760101318 206.559906006 206.380218506 206.309906006 206.260101318 206.200042725 206.099945068 206.019866943 205.95980835 206.039886475 206.300140381 206.680023193 207.03012085 207.300140381 207.660003662 190.909805298 189.669570923 188.999649048 188.730117798 188.619766235 188.52015686 188.459609985 188.499649048 188.600234985 188.77015686 189.060195923 189.510391235 190.150039673 190.93031311 191.77015686 192.640274048 193.569961548 197.600387573 196.610153198 195.719528198 195.030075073 194.570114136 194.350387573 194.289840698 194.280075073 194.259567261 194.190231323 194.060348511 193.860153198 193.560348511 193.299606323 193.289840698 193.699996948 194.549606323 208.000015259 207.43019104 206.959976196 206.549819946 206.220230103 206.000015259 205.85987854 205.779800415 205.729995728 205.720230103 205.720230103 205.669937134 205.500015259 205.220230103 204.919937134 204.740249634 204.830093384 218.1300354 217.810211182 217.339996338 216.900054932 216.560211182 216.239898682 215.96987915 215.949859619 216.170074463 216.400054932 216.46987915 216.460113525 216.509918213 216.589996338 216.569976807 216.400054932 216.100250244 220.690124512 220.590026855 220.639831543 220.659851074 220.679870605 220.820007324 221.020202637 221.060241699 220.869812012 220.67010498 220.650085449 220.730163574 220.750183105 220.699890137 220.570007324 220.329772949 219.989929199 230.310043335 229.840316772 229.180160522 228.680160522 228.310043335 227.779769897 227.239730835 227.14012146 227.500473022 227.850082397 227.90965271 227.96043396 228.380355835 229.05027771 229.739730835 230.420394897 231.060043335 299.269775391 299.970947266 300.429931641 300.590087891 300.560791016 300.449462891 300.209228516 299.890869141 299.699462891 299.679931641 299.580322266 299.209228516 298.720947266 298.349853516 297.970947266 297.340087891 296.510009766 294.119384766 294.679931641 294.970947266 294.939697266 294.879150391 294.970947266 295.049072266 294.890869141 294.619384766 294.369384766 294.129150391 293.740478516 293.250244141 292.820556641 292.470947266 292.109619141 291.660400391 289.340698242 289.760620117 290.129760742 290.270385742 290.200073242 290.100463867 290.139526367 290.239135742 290.170776367 289.950073242 289.709838867 289.520385742 289.239135742 288.770385742 288.239135742 287.729370117 287.090698242 281.130310059 280.999450684 281.079528809 281.509216309 281.860778809 281.929138184 282.050231934 282.380310059 282.620544434 282.509216309 282.309997559 282.329528809 282.479919434 282.579528809 282.620544434 282.530700684 281.899841309 275.679534912 275.820159912 275.740081787 275.700042725 275.789886475 275.95980835 276.070159912 276.009613037 275.85043335 275.749847412 275.789886475 275.910003662 276.039886475 276.140472412 276.110198975 275.719573975 274.829925537 268.979919434 268.909606934 268.630310059 268.329528809 268.050231934 267.710388184 267.449645996 267.380310059 267.430114746 267.479919434 267.470153809 267.540466309 267.769958496 268.040466309 268.050231934 267.510192871 266.470153809 258.939880371 259.010192871 258.869567871 258.579528809 258.239685059 257.960388184 257.779724121 257.670349121 257.619567871 257.670349121 257.769958496 257.769958496 257.590270996 257.279724121 256.949645996 256.559997559 255.989685059 243.509841919 243.719802856 243.669998169 243.500076294 243.35017395 243.259841919 243.179763794 243.120193481 243.129959106 243.230056763 243.370193481 243.390213013 243.149978638 242.609939575 241.949783325 241.449783325 241.169998169 233.890213013 234.10017395 234.120193481 234.020095825 233.830154419 233.620193481 233.480056763 233.4400177 233.480056763 233.540115356 233.569900513 233.540115356 233.370193481 233.080154419 232.85017395 232.759841919 232.669998169 221.599899292 221.869918823 221.829879761 221.619918823 221.400192261 221.289840698 221.260055542 221.249801636 221.269821167 221.309860229 221.300094604 221.229782104 221.139938354 221.070114136 221.050094604 221.079879761 221.179977417 206.650238037 206.70980835 206.6199646 206.419769287 206.289886475 206.260101318 206.249847412 206.20980835 206.139984131 206.059906006 205.979827881 206.03012085 206.289886475 206.720062256 207.139984131 207.45980835 207.820159912 190.919570923 189.739883423 189.119766235 188.86000061 188.720352173 188.59046936 188.489883423 188.489883423 188.579727173 188.779922485 189.119766235 189.619766235 190.27015686 191.010391235 191.810195923 192.68031311 193.650039673 197.659957886 196.680465698 195.820114136 195.150192261 194.669723511 194.390426636 194.240036011 194.190231323 194.150192261 194.079879761 193.949996948 193.770309448 193.520309448 193.310348511 193.339645386 193.740036011 194.610153198 208.049819946 207.450210571 206.93019104 206.479995728 206.129898071 205.919937134 205.839859009 205.799819946 205.779800415 205.790054321 205.799819946 205.720230103 205.509780884 205.200210571 204.910171509 204.740249634 204.830093384 218.199859619 217.900054932 217.449859619 217.009918213 216.6300354 216.230133057 215.8800354 215.770172119 215.940093994 216.179840088 216.339996338 216.400054932 216.460113525 216.509918213 216.500152588 216.369781494 216.119781494 220.750183105 220.699890137 220.730163574 220.719909668 220.739929199 220.860046387 221.040222168 221.070007324 220.940124512 220.790222168 220.75994873 220.770202637 220.750183105 220.730163574 220.679870605 220.489929199 220.09979248 230.21043396 229.689926147 229.039535522 228.529769897 228.180160522 227.750473022 227.31980896 227.21043396 227.46043396 227.720199585 227.810043335 227.97996521 228.439926147 229.05027771 229.600082397 230.199691772 230.920394897 299.260009766 299.980712891 300.420166016 300.599853516 300.539306641 300.289306641 299.949462891 299.709228516 299.670166016 299.689697266 299.490478516 299.029541016 298.560791016 298.220947266 297.810791016 297.150634766 296.359619141 294.010009766 294.580322266 294.869384766 294.900634766 294.849853516 294.840087891 294.810791016 294.709228516 294.549072266 294.330322266 293.990478516 293.539306641 293.080322266 292.720947266 292.369384766 291.959228516 291.500244141 289.190307617 289.639526367 290.010620117 290.219604492 290.190307617 290.030151367 289.979370117 290.069213867 290.080932617 289.860229492 289.559448242 289.350463867 289.149291992 288.770385742 288.229370117 287.610229492 286.920776367 281.229919434 281.099060059 281.210388184 281.620544434 281.929138184 281.970153809 282.079528809 282.399841309 282.599060059 282.429138184 282.229919434 282.259216309 282.380310059 282.419372559 282.429138184 282.390075684 281.839294434 275.5496521 275.640472412 275.589691162 275.570159912 275.679534912 275.85043335 275.999847412 275.999847412 275.890472412 275.7996521 275.820159912 275.879730225 275.919769287 275.9402771 275.919769287 275.610198975 274.810394287 268.970153809 268.869567871 268.590270996 268.269958496 267.939880371 267.640075684 267.460388184 267.449645996 267.510192871 267.540466309 267.519958496 267.579528809 267.769958496 267.979919434 267.970153809 267.470153809 266.439880371 258.809997559 258.880310059 258.729919434 258.449645996 258.130310059 257.920349121 257.790466309 257.710388184 257.649841309 257.649841309 257.720153809 257.699645996 257.500427246 257.180114746 256.819763184 256.380310059 255.779724121 243.390213013 243.629959106 243.60017395 243.469802856 243.370193481 243.27986145 243.1900177 243.129959106 243.160232544 243.270095825 243.399978638 243.390213013 243.129959106 242.60017395 241.9400177 241.35017395 240.960037231 233.790115356 234.040115356 234.060134888 233.919998169 233.719802856 233.549880981 233.449783325 233.429763794 233.489822388 233.560134888 233.609939575 233.549880981 233.330154419 233.020095825 232.770095825 232.649978638 232.52986145 221.420211792 221.729782104 221.749801636 221.539840698 221.309860229 221.210250854 221.229782104 221.269821167 221.269821167 221.249801636 221.260055542 221.220016479 221.159957886 221.099899292 221.090133667 221.139938354 221.249801636 206.490081787 206.510101318 206.419769287 206.28012085 206.200042725 206.20980835 206.220062256 206.200042725 206.150238037 206.079925537 205.999847412 206.010101318 206.260101318 206.720062256 207.20980835 207.599945068 207.970062256 191.010391235 189.909805298 189.300430298 188.999649048 188.810195923 188.659805298 188.579727173 188.59046936 188.68031311 188.850234985 189.169570923 189.69984436 190.37953186 191.119766235 191.890274048 192.749649048 193.760391235 197.789840698 196.810348511 195.949996948 195.259567261 194.749801636 194.369918823 194.140426636 194.060348511 194.060348511 194.049606323 193.949996948 193.759567261 193.520309448 193.339645386 193.390426636 193.829879761 194.699996948 208.069839478 207.419937134 206.870132446 206.410171509 206.069839478 205.890151978 205.830093384 205.810073853 205.779800415 205.779800415 205.77003479 205.700210571 205.479995728 205.18019104 204.879898071 204.720230103 204.810073853 218.330230713 218.049957275 217.619781494 217.159820557 216.679840088 216.159820557 215.739898682 215.600250244 215.770172119 216.069976807 216.299957275 216.420074463 216.480133057 216.489898682 216.449859619 216.369781494 216.199859619 220.820007324 220.770202637 220.739929199 220.699890137 220.719909668 220.84979248 221.020202637 221.070007324 220.960144043 220.84979248 220.810241699 220.799987793 220.770202637 220.770202637 220.750183105 220.590026855 220.179870605 230.05027771 229.56980896 229.000473022 228.529769897 228.180160522 227.810043335 227.449691772 227.289535522 227.39012146 227.56980896 227.72996521 228.000473022 228.47996521 229.000473022 229.470199585 230.020004272 230.80027771 299.170166016 299.830322266 300.250244141 300.519775391 300.560791016 300.260009766 299.789306641 299.470947266 299.400634766 299.410400391 299.289306641 299.000244141 298.629150391 298.199462891 297.590087891 296.810791016 296.070556641 293.799072266 294.379150391 294.730712891 294.929931641 294.959228516 294.820556641 294.599853516 294.429931641 294.330322266 294.160400391 293.830322266 293.439697266 293.060791016 292.660400391 292.189697266 291.660400391 291.189697266 289.030151367 289.520385742 289.909057617 290.200073242 290.250854492 290.049682617 289.860229492 289.879760742 289.909057617 289.709838867 289.389526367 289.200073242 289.080932617 288.750854492 288.119995117 287.379760742 286.649291992 281.390075684 281.290466309 281.429138184 281.839294434 282.079528809 282.020935059 282.079528809 282.399841309 282.589294434 282.419372559 282.229919434 282.270935059 282.370544434 282.309997559 282.220153809 282.089294434 281.520935059 275.539886475 275.560394287 275.490081787 275.480316162 275.53012085 275.679534912 275.860198975 275.950042725 275.919769287 275.85043335 275.860198975 275.879730225 275.839691162 275.820159912 275.78012085 275.520355225 274.749847412 268.989685059 268.869567871 268.559997559 268.220153809 267.890075684 267.640075684 267.529724121 267.529724121 267.559997559 267.559997559 267.579528809 267.659606934 267.790466309 267.899841309 267.840270996 267.380310059 266.420349121 258.609802246 258.699645996 258.559997559 258.319763184 258.069763184 257.899841309 257.809997559 257.750427246 257.689880371 257.670349121 257.689880371 257.649841309 257.439880371 257.100036621 256.710388184 256.229919434 255.569763184 243.179763794 243.469802856 243.489822388 243.410232544 243.339920044 243.290115356 243.199783325 243.129959106 243.160232544 243.270095825 243.35017395 243.290115356 243.02986145 242.549880981 241.910232544 241.270095825 240.759841919 233.60017395 233.879959106 233.910232544 233.759841919 233.580154419 233.480056763 233.429763794 233.429763794 233.489822388 233.580154419 233.629959106 233.560134888 233.310134888 233.009841919 232.759841919 232.60017395 232.410232544 221.210250854 221.550094604 221.639938354 221.440231323 221.210250854 221.130172729 221.199996948 221.249801636 221.220016479 221.190231323 221.210250854 221.229782104 221.190231323 221.119918823 221.110153198 221.190231323 221.329879761 206.309906006 206.289886475 206.229827881 206.169769287 206.150238037 206.180023193 206.169769287 206.150238037 206.110198975 206.070159912 205.999847412 206.010101318 206.220062256 206.669769287 207.20980835 207.689788818 208.1199646 191.19984436 190.150039673 189.510391235 189.140274048 188.900039673 188.760391235 188.730117798 188.78968811 188.87953186 189.02015686 189.319961548 189.84046936 190.52015686 191.260391235 192.010391235 192.87953186 193.940078735 197.940231323 196.940231323 196.039840698 195.320114136 194.759567261 194.320114136 194.030075073 193.909957886 193.940231323 193.990036011 193.940231323 193.740036011 193.499801636 193.360153198 193.459762573 193.930465698 194.810348511 208.100112915 207.450210571 206.899917603 206.439956665 206.100112915 205.910171509 205.839859009 205.790054321 205.759780884 205.740249634 205.720230103 205.660171509 205.479995728 205.189956665 204.890151978 204.720230103 204.799819946 218.360015869 218.049957275 217.619781494 217.1300354 216.580230713 216.009918213 215.580230713 215.489898682 215.679840088 215.980133057 216.259918213 216.440093994 216.509918213 216.500152588 216.460113525 216.409820557 216.270172119 220.900085449 220.820007324 220.750183105 220.67010498 220.699890137 220.84979248 221.020202637 221.070007324 220.949890137 220.829772949 220.779968262 220.799987793 220.810241699 220.810241699 220.770202637 220.610046387 220.239929199 229.90965271 229.520004272 229.06980896 228.670394897 228.310043335 227.939926147 227.56980896 227.359848022 227.369613647 227.539535522 227.760238647 228.05027771 228.46043396 228.970199585 229.47996521 230.05027771 230.779769897 299.049072266 299.640869141 300.049072266 300.439697266 300.580322266 300.289306641 299.740478516 299.299072266 299.090087891 299.029541016 299.019775391 298.990478516 298.760009766 298.189697266 297.349853516 296.480712891 295.789306641 293.590087891 294.129150391 294.539306641 294.879150391 295.010009766 294.789306641 294.420166016 294.189697266 294.070556641 293.900634766 293.619384766 293.340087891 293.039306641 292.570556641 291.939697266 291.340087891 290.890869141 288.850463867 289.379760742 289.780151367 290.139526367 290.289916992 290.059448242 289.750854492 289.670776367 289.680541992 289.500854492 289.200073242 289.069213867 289.000854492 288.659057617 287.940307617 287.119995117 286.399291992 281.599060059 281.489685059 281.620544434 282.040466309 282.229919434 282.089294434 282.099060059 282.390075684 282.569763184 282.409606934 282.220153809 282.259216309 282.339294434 282.249450684 282.030700684 281.690856934 280.970153809 275.629730225 275.560394287 275.45980835 275.390472412 275.360198975 275.469573975 275.6902771 275.860198975 275.890472412 275.85043335 275.85043335 275.85043335 275.789886475 275.719573975 275.650238037 275.360198975 274.60043335 268.970153809 268.819763184 268.510192871 268.180114746 267.899841309 267.710388184 267.630310059 267.619567871 267.609802246 267.600036621 267.649841309 267.739685059 267.779724121 267.760192871 267.630310059 267.229919434 266.390075684 258.380310059 258.479919434 258.369567871 258.199645996 258.029724121 257.909606934 257.850036621 257.779724121 257.710388184 257.670349121 257.680114746 257.630310059 257.420349121 257.059997559 256.619567871 256.090270996 255.359802246 242.919998169 243.27986145 243.370193481 243.330154419 243.310134888 243.270095825 243.199783325 243.129959106 243.149978638 243.239822388 243.290115356 243.179763794 242.899978638 242.469802856 241.870193481 241.1900177 240.560134888 233.370193481 233.710037231 233.739822388 233.609939575 233.480056763 233.4400177 233.419998169 233.410232544 233.449783325 233.540115356 233.609939575 233.52986145 233.310134888 233.040115356 232.799880981 232.589920044 232.299880981 220.999801636 221.360153198 221.479782104 221.320114136 221.099899292 221.050094604 221.159957886 221.229782104 221.190231323 221.150192261 221.179977417 221.199996948 221.170211792 221.099899292 221.119918823 221.249801636 221.400192261 206.150238037 206.090179443 206.070159912 206.090179443 206.139984131 206.180023193 206.150238037 206.090179443 206.070159912 206.050140381 205.999847412 206.010101318 206.200042725 206.6199646 207.169769287 207.729827881 208.260101318 191.459609985 190.419570923 189.720352173 189.27015686 188.970352173 188.84046936 188.84046936 188.940078735 189.060195923 189.220352173 189.52015686 190.050430298 190.709609985 191.400039673 192.12953186 193.02015686 194.150039673 198.110153198 197.079879761 196.150192261 195.390426636 194.799606323 194.329879761 193.990036011 193.810348511 193.799606323 193.860153198 193.839645386 193.669723511 193.469528198 193.390426636 193.570114136 194.060348511 194.930465698 208.18019104 207.529800415 206.990249634 206.52003479 206.160171509 205.93019104 205.830093384 205.790054321 205.790054321 205.790054321 205.779800415 205.700210571 205.529800415 205.259780884 204.950210571 204.759780884 204.850112915 218.29019165 217.920074463 217.46987915 216.989898682 216.429840088 215.869781494 215.480133057 215.400054932 215.560211182 215.830230713 216.1300354 216.360015869 216.480133057 216.480133057 216.460113525 216.429840088 216.29019165 220.969909668 220.869812012 220.790222168 220.719909668 220.730163574 220.880065918 221.070007324 221.139831543 221.00994873 220.810241699 220.730163574 220.799987793 220.880065918 220.869812012 220.770202637 220.59979248 220.320007324 229.829574585 229.500473022 229.14012146 228.750473022 228.39012146 227.989730835 227.609848022 227.350082397 227.350082397 227.579574585 227.850082397 228.05027771 228.350082397 228.880355835 229.560043335 230.199691772 230.770004272 298.939697266 299.490478516 299.910400391 300.320556641 300.480712891 300.189697266 299.679931641 299.269775391 298.990478516 298.820556641 298.810791016 298.879150391 298.679931641 298.019775391 297.119384766 296.320556641 295.689697266 293.410400391 293.910400391 294.299072266 294.699462891 294.859619141 294.629150391 294.250244141 294.049072266 293.929931641 293.709228516 293.410400391 293.179931641 292.879150391 292.340087891 291.650634766 291.109619141 290.769775391 288.639526367 289.200073242 289.590698242 290.000854492 290.209838867 289.969604492 289.600463867 289.469604492 289.450073242 289.280151367 289.010620117 288.909057617 288.850463867 288.469604492 287.729370117 286.940307617 286.270385742 281.790466309 281.589294434 281.679138184 282.099060059 282.290466309 282.169372559 282.159606934 282.440856934 282.579528809 282.380310059 282.149841309 282.159606934 282.270935059 282.169372559 281.880310059 281.319763184 280.370544434 275.749847412 275.610198975 275.450042725 275.329925537 275.219573975 275.270355225 275.520355225 275.770355225 275.860198975 275.829925537 275.7996521 275.759613037 275.679534912 275.579925537 275.45980835 275.110198975 274.320159912 268.890075684 268.729919434 268.420349121 268.140075684 267.930114746 267.800231934 267.750427246 267.720153809 267.689880371 267.680114746 267.750427246 267.809997559 267.760192871 267.600036621 267.380310059 267.010192871 266.300231934 258.170349121 258.260192871 258.180114746 258.079528809 257.989685059 257.920349121 257.850036621 257.779724121 257.710388184 257.680114746 257.680114746 257.609802246 257.380310059 256.979919434 256.489685059 255.909606934 255.149841309 242.6900177 243.120193481 243.259841919 243.259841919 243.250076294 243.250076294 243.179763794 243.129959106 243.160232544 243.239822388 243.250076294 243.109939575 242.819900513 242.399978638 241.819900513 241.10017395 240.35017395 233.160232544 233.560134888 233.629959106 233.520095825 233.4400177 233.429763794 233.410232544 233.370193481 233.379959106 233.469802856 233.540115356 233.469802856 233.27986145 233.049880981 232.839920044 232.580154419 232.179763794 220.820114136 221.159957886 221.309860229 221.210250854 221.030075073 221.010055542 221.130172729 221.229782104 221.220016479 221.179977417 221.159957886 221.139938354 221.090133667 221.070114136 221.170211792 221.340133667 221.470016479 206.019866943 205.919769287 205.930023193 206.010101318 206.1199646 206.160003662 206.139984131 206.070159912 206.03012085 205.999847412 205.990081787 205.999847412 206.180023193 206.599945068 207.169769287 207.789886475 208.410003662 191.730117798 190.659805298 189.900039673 189.369766235 189.029922485 188.87953186 188.87953186 188.989883423 189.140274048 189.350234985 189.709609985 190.239883423 190.869766235 191.52015686 192.220352173 193.140274048 194.36000061 198.350387573 197.310348511 196.339645386 195.520309448 194.879684448 194.390426636 194.009567261 193.780075073 193.719528198 193.749801636 193.749801636 193.650192261 193.530075073 193.539840698 193.759567261 194.259567261 195.100387573 208.259780884 207.600112915 207.040054321 206.549819946 206.149917603 205.890151978 205.790054321 205.790054321 205.850112915 205.890151978 205.879898071 205.779800415 205.589859009 205.330093384 205.02003479 204.830093384 204.93019104 218.250152588 217.819976807 217.369781494 216.909820557 216.389801025 215.850250244 215.480133057 215.360015869 215.440093994 215.670074463 215.980133057 216.29019165 216.449859619 216.460113525 216.449859619 216.449859619 216.299957275 220.949890137 220.889831543 220.84979248 220.779968262 220.750183105 220.860046387 221.090026855 221.219909668 221.110046387 220.869812012 220.739929199 220.829772949 220.960144043 220.940124512 220.779968262 220.619812012 220.440124512 229.850082397 229.47996521 229.079574585 228.699691772 228.359848022 228.010238647 227.619613647 227.279769897 227.270004272 227.560043335 227.869613647 228.000473022 228.180160522 228.72996521 229.56980896 230.270004272 230.720199585 298.730712891 299.330322266 299.799072266 300.179931641 300.230712891 299.900634766 299.529541016 299.289306641 299.060791016 298.799072266 298.699462891 298.699462891 298.439697266 297.750244141 296.920166016 296.269775391 295.699462891 293.179931641 293.709228516 294.090087891 294.459228516 294.590087891 294.349853516 294.060791016 293.949462891 293.869384766 293.590087891 293.250244141 293.010009766 292.679931641 292.060791016 291.359619141 290.920166016 290.679931641 288.350463867 288.920776367 289.340698242 289.789916992 290.020385742 289.780151367 289.399291992 289.280151367 289.280151367 289.110229492 288.879760742 288.809448242 288.719604492 288.280151367 287.510620117 286.789916992 286.209838867 281.890075684 281.579528809 281.640075684 282.059997559 282.280700684 282.200622559 282.239685059 282.520935059 282.640075684 282.399841309 282.120544434 282.069763184 282.130310059 282.069763184 281.780700684 281.079528809 279.890075684 275.820159912 275.640472412 275.480316162 275.310394287 275.160003662 275.200042725 275.450042725 275.740081787 275.839691162 275.7996521 275.719573975 275.610198975 275.499847412 275.400238037 275.219573975 274.78012085 273.929534912 268.790466309 268.630310059 268.329528809 268.100036621 267.939880371 267.850036621 267.809997559 267.809997559 267.800231934 267.800231934 267.840270996 267.840270996 267.710388184 267.430114746 267.090270996 266.699645996 266.040466309 258.000427246 258.079528809 258.029724121 257.979919434 257.939880371 257.869567871 257.800231934 257.750427246 257.710388184 257.689880371 257.689880371 257.609802246 257.329528809 256.859802246 256.279724121 255.640075684 254.869567871 242.520095825 242.969802856 243.149978638 243.169998169 243.169998169 243.1900177 243.160232544 243.129959106 243.149978638 243.230056763 243.239822388 243.089920044 242.77986145 242.35017395 241.759841919 240.989822388 240.140213013 232.980056763 233.429763794 233.540115356 233.449783325 233.410232544 233.4400177 233.410232544 233.319900513 233.299880981 233.379959106 233.4400177 233.379959106 233.219802856 233.049880981 232.85017395 232.52986145 232.040115356 220.619918823 220.960250854 221.139938354 221.110153198 220.990036011 220.979782104 221.099899292 221.199996948 221.240036011 221.220016479 221.150192261 221.050094604 220.970016479 221.039840698 221.229782104 221.440231323 221.519821167 205.880218506 205.769866943 205.789886475 205.880218506 206.019866943 206.110198975 206.1199646 206.070159912 206.010101318 205.95980835 205.950042725 205.999847412 206.200042725 206.610198975 207.20980835 207.900238037 208.610198975 192.010391235 190.890274048 190.069961548 189.480117798 189.12953186 188.970352173 188.970352173 189.060195923 189.209609985 189.440078735 189.829727173 190.390274048 191.010391235 191.650039673 192.37953186 193.319961548 194.59046936 198.650192261 197.600387573 196.600387573 195.709762573 194.990036011 194.430465698 194.020309448 193.780075073 193.699996948 193.730270386 193.749801636 193.730270386 193.690231323 193.759567261 194.020309448 194.499801636 195.310348511 208.330093384 207.649917603 207.049819946 206.529800415 206.10987854 205.85987854 205.750015259 205.77003479 205.85987854 205.919937134 205.899917603 205.790054321 205.589859009 205.350112915 205.080093384 204.910171509 205.02003479 218.270172119 217.819976807 217.360015869 216.929840088 216.429840088 215.909820557 215.520172119 215.350250244 215.389801025 215.600250244 215.980133057 216.350250244 216.509918213 216.489898682 216.449859619 216.460113525 216.339996338 220.92010498 220.880065918 220.860046387 220.779968262 220.719909668 220.799987793 221.029968262 221.219909668 221.199890137 220.969909668 220.810241699 220.860046387 220.969909668 220.949890137 220.799987793 220.659851074 220.520202637 229.880355835 229.430160522 228.970199585 228.609848022 228.350082397 228.06980896 227.680160522 227.289535522 227.180160522 227.439926147 227.779769897 227.939926147 228.109848022 228.630355835 229.470199585 230.199691772 230.630355835 298.439697266 299.150634766 299.720947266 300.080322266 300.019775391 299.640869141 299.340087891 299.199462891 299.019775391 298.750244141 298.650634766 298.619384766 298.289306641 297.549072266 296.750244141 296.140869141 295.560791016 292.890869141 293.490478516 293.910400391 294.279541016 294.359619141 294.109619141 293.859619141 293.799072266 293.709228516 293.429931641 293.140869141 292.959228516 292.609619141 291.879150391 291.080322266 290.599853516 290.349853516 287.989135742 288.569213867 289.059448242 289.580932617 289.799682617 289.569213867 289.200073242 289.100463867 289.119995117 288.969604492 288.799682617 288.809448242 288.700073242 288.139526367 287.270385742 286.549682617 286.039916992 281.909606934 281.569763184 281.640075684 282.040466309 282.249450684 282.200622559 282.290466309 282.569763184 282.659606934 282.440856934 282.169372559 282.040466309 281.979919434 281.880310059 281.630310059 280.960388184 279.649841309 275.820159912 275.660003662 275.53012085 275.360198975 275.200042725 275.240081787 275.499847412 275.759613037 275.829925537 275.759613037 275.640472412 275.490081787 275.329925537 275.20980835 274.990081787 274.4402771 273.499847412 268.670349121 268.510192871 268.239685059 268.040466309 267.909606934 267.819763184 267.809997559 267.859802246 267.899841309 267.890075684 267.859802246 267.790466309 267.590270996 267.220153809 266.760192871 266.260192871 265.559997559 257.840270996 257.939880371 257.930114746 257.920349121 257.890075684 257.800231934 257.729919434 257.720153809 257.729919434 257.729919434 257.710388184 257.590270996 257.269958496 256.699645996 256.000427246 255.269958496 254.470153809 242.370193481 242.799880981 242.969802856 243.02986145 243.069900513 243.120193481 243.120193481 243.109939575 243.140213013 243.199783325 243.199783325 243.060134888 242.750076294 242.27986145 241.649978638 240.830154419 239.890213013 232.85017395 233.299880981 233.399978638 233.35017395 233.370193481 233.449783325 233.410232544 233.290115356 233.230056763 233.290115356 233.339920044 233.27986145 233.160232544 233.040115356 232.859939575 232.480056763 231.899978638 220.420211792 220.760055542 220.979782104 221.010055542 220.960250854 220.949996948 221.019821167 221.099899292 221.190231323 221.210250854 221.130172729 220.949996948 220.869918823 220.999801636 221.280075073 221.519821167 221.559860229 205.729827881 205.630218506 205.650238037 205.749847412 205.880218506 206.03012085 206.110198975 206.099945068 206.039886475 205.970062256 205.939788818 206.010101318 206.249847412 206.680023193 207.300140381 208.050140381 208.840179443 192.300430298 191.159805298 190.279922485 189.659805298 189.279922485 189.150039673 189.169570923 189.230117798 189.34046936 189.550430298 189.93031311 190.499649048 191.169570923 191.869766235 192.650039673 193.62953186 194.890274048 198.959762573 197.900192261 196.869918823 195.909957886 195.079879761 194.430465698 193.990036011 193.749801636 193.690231323 193.740036011 193.799606323 193.820114136 193.829879761 193.949996948 194.249801636 194.749801636 195.549606323 208.390151978 207.68019104 207.060073853 206.529800415 206.129898071 205.879898071 205.77003479 205.759780884 205.830093384 205.879898071 205.870132446 205.77003479 205.600112915 205.390151978 205.160171509 205.009780884 205.140151978 218.270172119 217.799957275 217.339996338 216.900054932 216.400054932 215.8800354 215.489898682 215.319976807 215.369781494 215.639801025 216.069976807 216.46987915 216.600250244 216.520172119 216.460113525 216.46987915 216.369781494 220.92010498 220.869812012 220.820007324 220.750183105 220.710144043 220.790222168 220.989929199 221.179870605 221.199890137 221.049987793 220.889831543 220.860046387 220.909851074 220.900085449 220.820007324 220.730163574 220.590026855 229.859848022 229.39012146 228.939926147 228.609848022 228.369613647 228.130355835 227.779769897 227.380355835 227.170394897 227.31980896 227.670394897 227.949691772 228.199691772 228.670394897 229.359848022 230.029769897 230.55027771 298.250244141 299.019775391 299.640869141 299.980712891 299.900634766 299.539306641 299.230712891 299.000244141 298.730712891 298.529541016 298.570556641 298.650634766 298.289306641 297.459228516 296.560791016 295.840087891 295.170166016 292.660400391 293.289306641 293.730712891 294.099853516 294.189697266 293.929931641 293.679931641 293.599853516 293.490478516 293.220947266 293.039306641 292.970947266 292.650634766 291.820556641 290.840087891 290.160400391 289.799072266 287.629760742 288.229370117 288.799682617 289.379760742 289.619995117 289.379760742 289.059448242 288.979370117 288.940307617 288.789916992 288.719604492 288.860229492 288.770385742 288.080932617 287.030151367 286.190307617 285.700073242 281.919372559 281.669372559 281.790466309 282.120544434 282.229919434 282.169372559 282.280700684 282.520935059 282.589294434 282.409606934 282.229919434 282.069763184 281.829528809 281.599060059 281.399841309 280.839294434 279.579528809 275.810394287 275.719573975 275.640472412 275.469573975 275.320159912 275.379730225 275.610198975 275.770355225 275.78012085 275.70980835 275.589691162 275.379730225 275.169769287 275.020355225 274.78012085 274.169769287 273.140472412 268.519958496 268.380310059 268.170349121 268.000427246 267.880310059 267.809997559 267.829528809 267.920349121 267.979919434 267.930114746 267.809997559 267.670349121 267.430114746 266.989685059 266.399841309 265.729919434 264.949645996 257.659606934 257.800231934 257.840270996 257.869567871 257.829528809 257.739685059 257.670349121 257.710388184 257.769958496 257.760192871 257.689880371 257.529724121 257.149841309 256.489685059 255.670349121 254.829528809 253.979919434 242.219802856 242.60017395 242.77986145 242.870193481 242.960037231 243.040115356 243.069900513 243.060134888 243.10017395 243.149978638 243.140213013 242.969802856 242.649978638 242.160232544 241.480056763 240.609939575 239.580154419 232.719802856 233.140213013 233.239822388 233.239822388 233.319900513 233.410232544 233.379959106 233.250076294 233.1900177 233.210037231 233.230056763 233.179763794 233.120193481 233.040115356 232.85017395 232.419998169 231.750076294 220.249801636 220.590133667 220.820114136 220.909957886 220.900192261 220.880172729 220.889938354 220.970016479 221.099899292 221.170211792 221.090133667 220.889938354 220.800094604 220.970016479 221.300094604 221.559860229 221.590133667 205.599945068 205.510101318 205.53012085 205.6199646 205.769866943 205.95980835 206.110198975 206.160003662 206.110198975 206.019866943 205.979827881 206.059906006 206.320159912 206.800140381 207.450042725 208.240081787 209.079925537 192.579727173 191.43031311 190.499649048 189.829727173 189.44984436 189.350234985 189.369766235 189.419570923 189.470352173 189.650039673 190.03968811 190.62953186 191.36000061 192.150039673 192.989883423 193.989883423 195.239883423 199.240036011 198.150192261 197.110153198 196.110153198 195.190231323 194.469528198 193.980270386 193.730270386 193.680465698 193.749801636 193.829879761 193.860153198 193.919723511 194.100387573 194.459762573 195.009567261 195.839645386 208.450210571 207.720230103 207.089859009 206.560073853 206.169937134 205.93019104 205.819839478 205.779800415 205.810073853 205.85987854 205.870132446 205.790054321 205.660171509 205.479995728 205.290054321 205.169937134 205.299819946 218.210113525 217.730133057 217.270172119 216.830230713 216.330230713 215.810211182 215.440093994 215.279937744 215.350250244 215.6300354 216.069976807 216.46987915 216.6300354 216.549957275 216.449859619 216.440093994 216.339996338 220.980163574 220.889831543 220.810241699 220.750183105 220.779968262 220.900085449 221.049987793 221.150085449 221.159851074 221.070007324 220.949890137 220.880065918 220.869812012 220.880065918 220.889831543 220.860046387 220.699890137 229.840316772 229.39012146 228.989730835 228.689926147 228.380355835 228.060043335 227.760238647 227.470199585 227.279769897 227.310043335 227.590316772 227.970199585 228.359848022 228.770004272 229.250473022 229.829574585 230.46043396 298.269775391 298.959228516 299.480712891 299.779541016 299.769775391 299.539306641 299.209228516 298.810791016 298.400634766 298.240478516 298.439697266 298.609619141 298.240478516 297.359619141 296.379150391 295.549072266 294.769775391 292.609619141 293.129150391 293.500244141 293.859619141 294.000244141 293.810791016 293.590087891 293.500244141 293.359619141 293.099853516 292.959228516 292.939697266 292.650634766 291.789306641 290.709228516 289.859619141 289.340087891 287.399291992 287.969604492 288.590698242 289.200073242 289.479370117 289.289916992 289.020385742 288.920776367 288.809448242 288.610229492 288.610229492 288.850463867 288.799682617 288.039916992 286.850463867 285.889526367 285.369995117 281.999450684 281.849060059 281.999450684 282.210388184 282.179138184 282.079528809 282.220153809 282.440856934 282.450622559 282.309997559 282.239685059 282.089294434 281.710388184 281.300231934 281.069763184 280.640075684 279.530700684 275.810394287 275.839691162 275.789886475 275.589691162 275.429534912 275.509613037 275.6902771 275.759613037 275.70980835 275.669769287 275.53012085 275.240081787 274.919769287 274.759613037 274.570159912 273.969573975 272.879730225 268.329528809 268.290466309 268.149841309 268.010192871 267.899841309 267.840270996 267.880310059 268.000427246 268.040466309 267.920349121 267.739685059 267.559997559 267.279724121 266.790466309 266.069763184 265.260192871 264.380310059 257.470153809 257.670349121 257.760192871 257.819763184 257.790466309 257.699645996 257.649841309 257.710388184 257.769958496 257.739685059 257.640075684 257.430114746 256.989685059 256.239685059 255.309997559 254.380310059 253.449645996 242.049880981 242.390213013 242.580154419 242.739822388 242.879959106 242.960037231 242.989822388 243.000076294 243.049880981 243.089920044 243.060134888 242.870193481 242.509841919 241.980056763 241.270095825 240.339920044 239.230056763 232.580154419 232.960037231 233.080154419 233.140213013 233.250076294 233.35017395 233.319900513 233.199783325 233.140213013 233.149978638 233.129959106 233.089920044 233.049880981 233.009841919 232.799880981 232.310134888 231.560134888 220.110153198 220.440231323 220.670211792 220.789840698 220.829879761 220.820114136 220.800094604 220.860153198 221.010055542 221.119918823 221.050094604 220.840133667 220.760055542 220.960250854 221.320114136 221.579879761 221.610153198 205.510101318 205.410003662 205.410003662 205.510101318 205.680023193 205.930023193 206.139984131 206.229827881 206.180023193 206.059906006 205.999847412 206.090179443 206.410003662 206.930023193 207.6199646 208.439788818 209.309906006 192.78968811 191.640274048 190.669570923 189.959609985 189.579727173 189.499649048 189.52015686 189.499649048 189.52015686 189.720352173 190.150039673 190.800430298 191.569961548 192.390274048 193.28968811 194.329727173 195.59046936 199.490036011 198.369918823 197.310348511 196.320114136 195.379684448 194.619918823 194.089645386 193.789840698 193.719528198 193.780075073 193.879684448 193.959762573 194.049606323 194.280075073 194.699996948 195.329879761 196.209762573 208.490249634 207.729995728 207.089859009 206.549819946 206.149917603 205.899917603 205.799819946 205.779800415 205.810073853 205.85987854 205.890151978 205.830093384 205.720230103 205.580093384 205.419937134 205.319839478 205.470230103 218.170074463 217.670074463 217.239898682 216.839996338 216.369781494 215.860015869 215.460113525 215.29019165 215.339996338 215.569976807 215.960113525 216.360015869 216.580230713 216.580230713 216.500152588 216.449859619 216.310211182 221.020202637 220.909851074 220.799987793 220.75994873 220.860046387 221.020202637 221.110046387 221.110046387 221.090026855 221.060241699 221.00994873 220.929870605 220.869812012 220.900085449 221.000183105 221.00994873 220.820007324 229.850082397 229.430160522 229.090316772 228.760238647 228.31980896 227.869613647 227.609848022 227.500473022 227.40965271 227.380355835 227.55027771 227.96043396 228.420394897 228.810043335 229.15965271 229.65965271 230.350082397 298.390869141 298.939697266 299.269775391 299.470947266 299.549072266 299.459228516 299.160400391 298.679931641 298.209228516 298.099853516 298.340087891 298.480712891 298.060791016 297.179931641 296.269775391 295.459228516 294.629150391 292.689697266 293.029541016 293.279541016 293.619384766 293.789306641 293.670166016 293.529541016 293.470947266 293.340087891 293.060791016 292.879150391 292.830322266 292.529541016 291.740478516 290.709228516 289.820556641 289.179931641 287.340698242 287.850463867 288.409057617 289.030151367 289.350463867 289.239135742 289.020385742 288.899291992 288.729370117 288.510620117 288.520385742 288.780151367 288.760620117 288.000854492 286.789916992 285.770385742 285.209838867 282.130310059 282.079528809 282.210388184 282.249450684 282.059997559 281.950622559 282.149841309 282.380310059 282.339294434 282.200622559 282.210388184 282.120544434 281.649841309 281.059997559 280.710388184 280.360778809 279.419372559 275.85043335 275.990081787 275.9402771 275.679534912 275.490081787 275.570159912 275.70980835 275.70980835 275.669769287 275.660003662 275.499847412 275.0496521 274.589691162 274.410003662 274.320159912 273.7996521 272.719573975 268.180114746 268.239685059 268.149841309 268.019958496 267.890075684 267.850036621 267.920349121 268.029724121 268.050231934 267.899841309 267.670349121 267.470153809 267.159606934 266.600036621 265.800231934 264.890075684 263.949645996 257.359802246 257.579528809 257.680114746 257.760192871 257.739685059 257.670349121 257.640075684 257.710388184 257.750427246 257.699645996 257.579528809 257.329528809 256.809997559 255.970153809 254.930114746 253.909606934 252.920349121 241.910232544 242.230056763 242.449783325 242.649978638 242.819900513 242.899978638 242.910232544 242.910232544 242.969802856 243.040115356 243.000076294 242.77986145 242.370193481 241.790115356 241.020095825 240.020095825 238.819900513 232.390213013 232.750076294 232.929763794 233.069900513 233.210037231 233.270095825 233.230056763 233.140213013 233.109939575 233.10017395 233.049880981 232.989822388 232.960037231 232.899978638 232.660232544 232.109939575 231.290115356 219.970016479 220.280075073 220.510055542 220.650192261 220.729782104 220.749801636 220.740036011 220.800094604 220.970016479 221.079879761 220.990036011 220.780075073 220.710250854 220.929977417 221.309860229 221.599899292 221.619918823 205.419769287 205.309906006 205.309906006 205.400238037 205.599945068 205.900238037 206.150238037 206.269866943 206.20980835 206.070159912 205.979827881 206.110198975 206.479827881 207.070159912 207.800140381 208.639984131 209.519866943 192.919570923 191.749649048 190.760391235 190.03968811 189.69984436 189.640274048 189.62953186 189.550430298 189.53968811 189.760391235 190.279922485 190.999649048 191.800430298 192.62953186 193.53968811 194.619766235 195.94984436 199.719528198 198.549606323 197.499801636 196.520309448 195.600387573 194.839645386 194.270309448 193.919723511 193.799606323 193.860153198 194.009567261 194.129684448 194.270309448 194.530075073 194.990036011 195.699996948 196.629684448 208.509780884 207.729995728 207.089859009 206.529800415 206.100112915 205.850112915 205.759780884 205.750015259 205.790054321 205.819839478 205.830093384 205.790054321 205.689956665 205.589859009 205.479995728 205.450210571 205.649917603 218.170074463 217.670074463 217.270172119 216.929840088 216.500152588 215.980133057 215.569976807 215.369781494 215.3800354 215.54019165 215.869781494 216.279937744 216.580230713 216.670074463 216.610015869 216.500152588 216.319976807 221.020202637 220.929870605 220.799987793 220.750183105 220.840026855 220.989929199 221.070007324 221.049987793 221.049987793 221.060241699 221.029968262 220.929870605 220.860046387 220.909851074 221.040222168 221.070007324 220.84979248 229.89012146 229.470199585 229.14012146 228.789535522 228.260238647 227.720199585 227.470199585 227.470199585 227.500473022 227.489730835 227.609848022 227.97996521 228.430160522 228.80027771 229.119613647 229.609848022 230.310043335 298.420166016 298.879150391 299.080322266 299.220947266 299.310791016 299.250244141 298.959228516 298.470947266 298.090087891 298.070556641 298.320556641 298.369384766 297.890869141 297.070556641 296.269775391 295.519775391 294.679931641 292.730712891 292.970947266 293.170166016 293.500244141 293.650634766 293.519775391 293.379150391 293.349853516 293.260009766 293.010009766 292.820556641 292.740478516 292.459228516 291.740478516 290.789306641 289.890869141 289.119384766 287.340698242 287.770385742 288.280151367 288.889526367 289.250854492 289.190307617 288.959838867 288.809448242 288.649291992 288.500854492 288.530151367 288.750854492 288.690307617 287.979370117 286.819213867 285.750854492 285.100463867 282.280700684 282.309997559 282.390075684 282.290466309 281.979919434 281.849060059 282.079528809 282.329528809 282.270935059 282.130310059 282.169372559 282.130310059 281.640075684 280.919372559 280.429138184 280.069763184 279.259216309 275.910003662 276.1199646 276.03012085 275.70980835 275.490081787 275.570159912 275.6902771 275.679534912 275.679534912 275.719573975 275.490081787 274.879730225 274.270355225 274.070159912 274.060394287 273.650238037 272.6199646 268.109802246 268.229919434 268.140075684 267.949645996 267.800231934 267.769958496 267.859802246 267.979919434 267.979919434 267.819763184 267.600036621 267.359802246 267.010192871 266.380310059 265.519958496 264.569763184 263.619567871 257.340270996 257.559997559 257.649841309 257.699645996 257.680114746 257.640075684 257.630310059 257.689880371 257.729919434 257.670349121 257.529724121 257.239685059 256.640075684 255.689880371 254.569763184 253.460388184 252.380310059 241.830154419 242.120193481 242.35017395 242.580154419 242.759841919 242.830154419 242.819900513 242.819900513 242.879959106 242.949783325 242.9400177 242.719802856 242.270095825 241.609939575 240.770095825 239.6900177 238.390213013 232.1900177 232.540115356 232.819900513 233.02986145 233.169998169 233.1900177 233.140213013 233.10017395 233.10017395 233.089920044 233.000076294 232.899978638 232.830154419 232.719802856 232.419998169 231.830154419 230.949783325 219.829879761 220.130172729 220.369918823 220.530075073 220.630172729 220.659957886 220.679977417 220.749801636 220.909957886 221.010055542 220.900192261 220.679977417 220.619918823 220.869918823 221.289840698 221.579879761 221.579879761 205.300140381 205.200042725 205.220062256 205.320159912 205.53012085 205.840179443 206.139984131 206.289886475 206.229827881 206.050140381 205.950042725 206.090179443 206.519866943 207.160003662 207.930023193 208.789886475 209.70980835 192.970352173 191.779922485 190.800430298 190.150039673 189.87953186 189.850234985 189.810195923 189.68031311 189.62953186 189.869766235 190.440078735 191.209609985 192.03968811 192.890274048 193.84046936 194.980117798 196.36000061 199.900192261 198.719528198 197.650192261 196.659957886 195.780075073 195.030075073 194.440231323 194.039840698 193.879684448 193.949996948 194.140426636 194.329879761 194.520309448 194.810348511 195.289840698 196.039840698 197.049606323 208.540054321 207.759780884 207.120132446 206.569839478 206.129898071 205.870132446 205.77003479 205.740249634 205.720230103 205.720230103 205.709976196 205.68019104 205.620132446 205.580093384 205.560073853 205.60987854 205.85987854 218.139801025 217.6300354 217.250152588 216.940093994 216.529937744 216.029937744 215.610015869 215.420074463 215.440093994 215.600250244 215.900054932 216.299957275 216.610015869 216.730133057 216.679840088 216.569976807 216.389801025 221.00994873 220.960144043 220.860046387 220.75994873 220.779968262 220.880065918 220.969909668 221.029968262 221.070007324 221.070007324 220.989929199 220.84979248 220.790222168 220.869812012 221.020202637 221.020202637 220.799987793 229.920394897 229.46043396 229.100082397 228.750473022 228.250473022 227.72996521 227.449691772 227.420394897 227.470199585 227.560043335 227.750473022 228.109848022 228.489730835 228.81980896 229.15965271 229.670394897 230.340316772 298.379150391 298.799072266 299.000244141 299.150634766 299.199462891 299.039306641 298.650634766 298.189697266 297.939697266 298.029541016 298.310791016 298.359619141 297.900634766 297.099853516 296.240478516 295.429931641 294.560791016 292.689697266 292.910400391 293.160400391 293.490478516 293.590087891 293.369384766 293.150634766 293.099853516 293.039306641 292.859619141 292.769775391 292.779541016 292.560791016 291.840087891 290.810791016 289.779541016 288.869384766 287.299682617 287.670776367 288.170776367 288.799682617 289.200073242 289.129760742 288.819213867 288.590698242 288.489135742 288.479370117 288.610229492 288.809448242 288.709838867 288.010620117 286.830932617 285.639526367 284.830932617 282.380310059 282.479919434 282.559997559 282.399841309 282.009216309 281.790466309 281.970153809 282.210388184 282.169372559 282.040466309 282.079528809 282.069763184 281.610778809 280.839294434 280.249450684 279.829528809 279.110778809 275.980316162 276.200042725 276.060394287 275.6902771 275.469573975 275.5496521 275.660003662 275.6902771 275.749847412 275.789886475 275.480316162 274.740081787 274.039886475 273.7996521 273.820159912 273.450042725 272.490081787 268.059997559 268.180114746 268.050231934 267.819763184 267.659606934 267.659606934 267.769958496 267.890075684 267.899841309 267.760192871 267.529724121 267.250427246 266.819763184 266.140075684 265.229919434 264.260192871 263.309997559 257.390075684 257.609802246 257.640075684 257.630310059 257.600036621 257.569763184 257.590270996 257.670349121 257.699645996 257.649841309 257.500427246 257.170349121 256.500427246 255.479919434 254.279724121 253.059997559 251.850036621 241.810134888 242.060134888 242.270095825 242.480056763 242.649978638 242.730056763 242.739822388 242.710037231 242.750076294 242.839920044 242.85017395 242.660232544 242.1900177 241.469802856 240.540115356 239.370193481 237.949783325 232.020095825 232.359939575 232.710037231 232.980056763 233.10017395 233.10017395 233.060134888 233.069900513 233.10017395 233.080154419 232.960037231 232.810134888 232.679763794 232.500076294 232.149978638 231.520095825 230.580154419 219.690231323 219.999801636 220.249801636 220.440231323 220.550094604 220.590133667 220.599899292 220.670211792 220.829879761 220.909957886 220.800094604 220.579879761 220.530075073 220.769821167 221.190231323 221.510055542 221.510055542 205.1199646 205.090179443 205.160003662 205.269866943 205.470062256 205.789886475 206.130218506 206.309906006 206.249847412 206.059906006 205.950042725 206.090179443 206.539886475 207.200042725 208.010101318 208.910003662 209.860198975 192.980117798 191.779922485 190.86000061 190.300430298 190.100234985 190.069961548 189.999649048 189.850234985 189.779922485 190.010391235 190.579727173 191.37953186 192.27015686 193.190078735 194.209609985 195.400039673 196.850234985 200.039840698 198.860153198 197.799606323 196.820114136 195.949996948 195.199996948 194.579879761 194.140426636 193.959762573 194.020309448 194.249801636 194.480270386 194.719528198 195.049606323 195.570114136 196.360153198 197.430465698 208.580093384 207.790054321 207.18019104 206.649917603 206.240249634 205.970230103 205.830093384 205.750015259 205.68019104 205.640151978 205.629898071 205.629898071 205.629898071 205.649917603 205.689956665 205.819839478 206.120132446 218.060211182 217.549957275 217.150054932 216.830230713 216.440093994 215.949859619 215.560211182 215.400054932 215.449859619 215.6300354 215.920074463 216.279937744 216.569976807 216.679840088 216.659820557 216.600250244 216.489898682 221.020202637 220.980163574 220.909851074 220.820007324 220.770202637 220.820007324 220.960144043 221.09979248 221.17010498 221.09979248 220.929870605 220.75994873 220.730163574 220.869812012 221.000183105 220.969909668 220.739929199 229.90965271 229.46043396 229.05027771 228.649887085 228.21043396 227.80027771 227.489730835 227.340316772 227.340316772 227.520004272 227.880355835 228.270004272 228.579574585 228.840316772 229.180160522 229.71043396 230.350082397 298.390869141 298.750244141 298.959228516 299.170166016 299.189697266 298.910400391 298.429931641 298.010009766 297.820556641 297.920166016 298.199462891 298.330322266 298.010009766 297.160400391 296.060791016 295.049072266 294.160400391 292.629150391 292.849853516 293.119384766 293.459228516 293.510009766 293.240478516 293.000244141 292.939697266 292.879150391 292.720947266 292.709228516 292.869384766 292.750244141 291.970947266 290.740478516 289.480712891 288.429931641 287.219604492 287.559448242 288.049682617 288.719604492 289.159057617 289.090698242 288.709838867 288.399291992 288.319213867 288.450073242 288.690307617 288.930541992 288.830932617 288.100463867 286.799682617 285.389526367 284.369995117 282.380310059 282.559997559 282.640075684 282.509216309 282.099060059 281.780700684 281.839294434 282.030700684 281.999450684 281.899841309 281.929138184 281.919372559 281.489685059 280.739685059 280.110778809 279.690856934 279.030700684 276.089691162 276.259613037 276.039886475 275.6199646 275.419769287 275.509613037 275.650238037 275.700042725 275.7996521 275.7996521 275.419769287 274.629730225 273.910003662 273.629730225 273.5496521 273.169769287 272.2996521 268.010192871 268.079528809 267.920349121 267.680114746 267.559997559 267.600036621 267.720153809 267.840270996 267.859802246 267.739685059 267.489685059 267.159606934 266.649841309 265.920349121 264.979919434 263.970153809 262.979919434 257.409606934 257.609802246 257.600036621 257.550231934 257.489685059 257.449645996 257.510192871 257.619567871 257.680114746 257.619567871 257.449645996 257.090270996 256.380310059 255.340270996 254.079528809 252.750427246 251.380310059 241.77986145 242.020095825 242.1900177 242.359939575 242.520095825 242.60017395 242.620193481 242.620193481 242.649978638 242.719802856 242.750076294 242.580154419 242.120193481 241.35017395 240.330154419 239.060134888 237.540115356 231.890213013 232.239822388 232.609939575 232.879959106 232.989822388 232.980056763 232.980056763 233.040115356 233.10017395 233.060134888 232.910232544 232.730056763 232.549880981 232.310134888 231.890213013 231.230056763 230.219802856 219.570114136 219.889938354 220.159957886 220.349899292 220.479782104 220.530075073 220.530075073 220.599899292 220.720016479 220.809860229 220.729782104 220.530075073 220.449996948 220.630172729 221.030075073 221.369918823 221.380172729 204.950042725 205.010101318 205.130218506 205.240081787 205.430023193 205.760101318 206.139984131 206.340179443 206.28012085 206.079925537 205.95980835 206.099945068 206.53012085 207.189788818 208.019866943 208.979827881 210.010101318 192.919570923 191.77015686 190.959609985 190.510391235 190.319961548 190.230117798 190.119766235 189.970352173 189.93031311 190.12953186 190.650039673 191.459609985 192.419570923 193.44984436 194.550430298 195.810195923 197.300430298 200.159957886 199.020309448 197.980270386 197.020309448 196.169723511 195.419723511 194.759567261 194.280075073 194.079879761 194.140426636 194.360153198 194.619918823 194.909957886 195.299606323 195.869918823 196.690231323 197.829879761 208.589859009 207.819839478 207.200210571 206.700210571 206.290054321 206.009780884 205.850112915 205.729995728 205.640151978 205.60987854 205.629898071 205.669937134 205.709976196 205.750015259 205.839859009 206.029800415 206.390151978 218.060211182 217.54019165 217.1300354 216.770172119 216.3800354 215.920074463 215.549957275 215.400054932 215.429840088 215.589996338 215.860015869 216.210113525 216.500152588 216.619781494 216.619781494 216.619781494 216.589996338 220.989929199 220.940124512 220.889831543 220.820007324 220.779968262 220.829772949 220.989929199 221.17010498 221.230163574 221.09979248 220.880065918 220.739929199 220.770202637 220.909851074 221.029968262 220.989929199 220.770202637 229.880355835 229.520004272 229.05027771 228.55027771 228.100082397 227.760238647 227.47996521 227.239730835 227.180160522 227.430160522 227.90965271 228.329574585 228.56980896 228.789535522 229.149887085 229.65965271 230.260238647 298.490478516 298.709228516 298.869384766 299.090087891 299.109619141 298.830322266 298.400634766 298.070556641 297.869384766 297.820556641 297.980712891 298.170166016 297.990478516 297.119384766 295.799072266 294.590087891 293.720947266 292.640869141 292.810791016 293.010009766 293.299072266 293.359619141 293.150634766 293.000244141 292.990478516 292.890869141 292.660400391 292.609619141 292.849853516 292.830322266 292.070556641 290.689697266 289.250244141 288.070556641 287.110229492 287.430541992 287.930541992 288.610229492 289.090698242 289.069213867 288.709838867 288.369995117 288.280151367 288.409057617 288.709838867 289.010620117 288.950073242 288.219604492 286.789916992 285.149291992 283.930541992 282.370544434 282.559997559 282.630310059 282.509216309 282.120544434 281.770935059 281.729919434 281.860778809 281.860778809 281.759216309 281.770935059 281.739685059 281.329528809 280.610778809 279.989685059 279.589294434 279.009216309 276.240081787 276.310394287 275.980316162 275.539886475 275.35043335 275.45980835 275.60043335 275.719573975 275.839691162 275.789886475 275.329925537 274.539886475 273.860198975 273.490081787 273.249847412 272.820159912 272.0496521 267.949645996 267.989685059 267.809997559 267.609802246 267.550231934 267.619567871 267.739685059 267.840270996 267.859802246 267.739685059 267.470153809 267.090270996 266.550231934 265.809997559 264.840270996 263.750427246 262.689880371 257.369567871 257.540466309 257.519958496 257.430114746 257.350036621 257.309997559 257.399841309 257.559997559 257.659606934 257.600036621 257.399841309 256.989685059 256.279724121 255.250427246 253.979919434 252.559997559 251.010192871 241.730056763 241.960037231 242.120193481 242.250076294 242.359939575 242.4400177 242.489822388 242.520095825 242.549880981 242.620193481 242.649978638 242.489822388 242.02986145 241.239822388 240.169998169 238.830154419 237.179763794 231.77986145 232.120193481 232.469802856 232.719802856 232.819900513 232.839920044 232.879959106 232.969802856 233.040115356 233.000076294 232.839920044 232.640213013 232.429763794 232.140213013 231.679763794 230.949783325 229.859939575 219.440231323 219.749801636 220.019821167 220.240036011 220.389938354 220.460250854 220.490036011 220.530075073 220.639938354 220.729782104 220.679977417 220.510055542 220.380172729 220.470016479 220.809860229 221.139938354 221.159957886 204.840179443 204.939788818 205.079925537 205.189788818 205.380218506 205.740081787 206.139984131 206.340179443 206.269866943 206.070159912 205.95980835 206.090179443 206.479827881 207.130218506 207.979827881 208.999847412 210.1199646 192.850234985 191.78968811 191.12953186 190.800430298 190.579727173 190.37953186 190.19984436 190.069961548 190.03968811 190.230117798 190.720352173 191.510391235 192.510391235 193.600234985 194.760391235 196.09046936 197.669570923 200.289840698 199.190231323 198.180465698 197.249801636 196.430465698 195.669723511 194.969528198 194.449996948 194.240036011 194.320114136 194.539840698 194.810348511 195.150192261 195.610153198 196.230270386 197.079879761 198.259567261 208.600112915 207.819839478 207.18019104 206.660171509 206.229995728 205.939956665 205.779800415 205.68019104 205.60987854 205.589859009 205.620132446 205.68019104 205.720230103 205.799819946 205.93019104 206.189956665 206.620132446 218.139801025 217.670074463 217.239898682 216.860015869 216.440093994 216.009918213 215.659820557 215.46987915 215.420074463 215.529937744 215.799957275 216.170074463 216.500152588 216.659820557 216.679840088 216.679840088 216.659820557 220.929870605 220.829772949 220.779968262 220.739929199 220.75994873 220.840026855 221.000183105 221.139831543 221.159851074 221.029968262 220.860046387 220.770202637 220.810241699 220.92010498 221.00994873 221.000183105 220.840026855 229.850082397 229.55027771 229.090316772 228.500473022 227.989730835 227.680160522 227.449691772 227.22996521 227.149887085 227.420394897 227.880355835 228.250473022 228.489730835 228.770004272 229.180160522 229.649887085 230.15965271 298.590087891 298.689697266 298.769775391 298.959228516 298.990478516 298.740478516 298.429931641 298.199462891 297.970947266 297.769775391 297.779541016 297.959228516 297.849853516 297.019775391 295.640869141 294.369384766 293.500244141 292.660400391 292.730712891 292.869384766 293.109619141 293.199462891 293.060791016 293.000244141 293.070556641 292.970947266 292.660400391 292.519775391 292.720947266 292.789306641 292.119384766 290.740478516 289.199462891 287.920166016 286.989135742 287.299682617 287.809448242 288.469604492 288.959838867 289.030151367 288.770385742 288.459838867 288.309448242 288.399291992 288.690307617 288.989135742 288.989135742 288.280151367 286.819213867 285.049682617 283.659057617 282.450622559 282.589294434 282.579528809 282.419372559 282.069763184 281.739685059 281.690856934 281.800231934 281.780700684 281.659606934 281.640075684 281.599060059 281.200622559 280.489685059 279.860778809 279.479919434 278.960388184 276.419769287 276.3699646 275.919769287 275.469573975 275.2996521 275.379730225 275.539886475 275.70980835 275.8699646 275.78012085 275.270355225 274.499847412 273.839691162 273.379730225 272.980316162 272.499847412 271.85043335 267.930114746 267.960388184 267.769958496 267.590270996 267.569763184 267.670349121 267.769958496 267.840270996 267.819763184 267.689880371 267.420349121 267.019958496 266.500427246 265.750427246 264.769958496 263.630310059 262.470153809 257.279724121 257.430114746 257.409606934 257.319763184 257.220153809 257.189880371 257.300231934 257.500427246 257.630310059 257.590270996 257.380310059 256.939880371 256.220153809 255.210388184 253.960388184 252.470153809 250.800231934 241.609939575 241.85017395 242.02986145 242.140213013 242.1900177 242.250076294 242.319900513 242.399978638 242.489822388 242.569900513 242.560134888 242.379959106 241.929763794 241.160232544 240.069900513 238.660232544 236.9400177 231.660232544 231.969802856 232.27986145 232.509841919 232.629959106 232.699783325 232.759841919 232.85017395 232.919998169 232.899978638 232.759841919 232.569900513 232.339920044 232.009841919 231.480056763 230.679763794 229.520095825 219.269821167 219.579879761 219.849899292 220.079879761 220.249801636 220.369918823 220.440231323 220.499801636 220.570114136 220.650192261 220.619918823 220.470016479 220.309860229 220.320114136 220.539840698 220.829879761 220.849899292 204.789886475 204.900238037 205.010101318 205.090179443 205.300140381 205.70980835 206.130218506 206.320159912 206.240081787 206.03012085 205.919769287 206.050140381 206.410003662 207.03012085 207.900238037 208.979827881 210.150238037 192.850234985 191.900039673 191.37953186 191.11000061 190.869766235 190.59046936 190.350234985 190.220352173 190.19984436 190.369766235 190.810195923 191.59046936 192.600234985 193.69984436 194.900039673 196.310195923 197.999649048 200.430465698 199.360153198 198.360153198 197.459762573 196.650192261 195.869918823 195.140426636 194.579879761 194.379684448 194.490036011 194.740036011 195.030075073 195.400192261 195.909957886 196.589645386 197.469528198 198.680465698 208.60987854 207.830093384 207.189956665 206.629898071 206.18019104 205.890151978 205.729995728 205.640151978 205.589859009 205.549819946 205.560073853 205.589859009 205.660171509 205.790054321 206.000015259 206.339859009 206.830093384 218.21987915 217.79019165 217.360015869 216.929840088 216.489898682 216.04019165 215.710113525 215.489898682 215.409820557 215.489898682 215.779937744 216.210113525 216.589996338 216.759918213 216.759918213 216.71987915 216.670074463 220.889831543 220.799987793 220.730163574 220.690124512 220.719909668 220.820007324 220.969909668 221.060241699 221.040222168 220.940124512 220.84979248 220.799987793 220.799987793 220.840026855 220.909851074 220.949890137 220.880065918 229.760238647 229.489730835 229.060043335 228.489730835 227.989730835 227.680160522 227.470199585 227.289535522 227.270004272 227.500473022 227.869613647 228.180160522 228.439926147 228.840316772 229.31980896 229.750473022 230.14012146 298.529541016 298.629150391 298.750244141 298.959228516 298.959228516 298.670166016 298.340087891 298.099853516 297.879150391 297.699462891 297.709228516 297.890869141 297.750244141 296.920166016 295.590087891 294.330322266 293.379150391 292.560791016 292.640869141 292.789306641 293.060791016 293.160400391 293.000244141 292.890869141 292.959228516 292.910400391 292.660400391 292.510009766 292.670166016 292.740478516 292.140869141 290.810791016 289.220947266 287.779541016 286.850463867 287.149291992 287.690307617 288.340698242 288.809448242 288.909057617 288.719604492 288.440307617 288.309448242 288.389526367 288.659057617 288.950073242 288.930541992 288.219604492 286.770385742 284.969604492 283.469604492 282.599060059 282.700622559 282.579528809 282.360778809 282.009216309 281.739685059 281.739685059 281.819763184 281.739685059 281.569763184 281.540466309 281.509216309 281.140075684 280.409606934 279.739685059 279.319763184 278.819763184 276.589691162 276.410003662 275.890472412 275.450042725 275.289886475 275.35043335 275.469573975 275.679534912 275.879730225 275.78012085 275.249847412 274.509613037 273.879730225 273.35043335 272.839691162 272.339691162 271.740081787 268.000427246 268.019958496 267.800231934 267.600036621 267.590270996 267.689880371 267.779724121 267.819763184 267.790466309 267.630310059 267.340270996 266.939880371 266.420349121 265.699645996 264.699645996 263.529724121 262.300231934 257.210388184 257.329528809 257.340270996 257.260192871 257.149841309 257.130310059 257.250427246 257.449645996 257.600036621 257.590270996 257.390075684 256.949645996 256.220153809 255.210388184 253.970153809 252.470153809 250.699645996 241.449783325 241.719802856 241.899978638 242.000076294 242.02986145 242.080154419 242.169998169 242.310134888 242.449783325 242.520095825 242.480056763 242.270095825 241.819900513 241.080154419 240.009841919 238.589920044 236.810134888 231.509841919 231.790115356 232.080154419 232.310134888 232.489822388 232.580154419 232.640213013 232.699783325 232.759841919 232.770095825 232.679763794 232.500076294 232.259841919 231.899978638 231.330154419 230.449783325 229.199783325 219.070114136 219.369918823 219.670211792 219.920211792 220.119918823 220.269821167 220.369918823 220.449996948 220.530075073 220.590133667 220.559860229 220.409957886 220.229782104 220.159957886 220.280075073 220.479782104 220.460250854 204.769866943 204.860198975 204.919769287 204.990081787 205.229827881 205.660003662 206.090179443 206.28012085 206.189788818 205.990081787 205.889984131 205.979827881 206.309906006 206.910003662 207.78012085 208.849945068 210.050140381 192.970352173 192.11000061 191.640274048 191.37953186 191.100234985 190.77015686 190.52015686 190.419570923 190.400039673 190.52015686 190.919570923 191.68031311 192.690078735 193.800430298 195.03968811 196.529922485 198.350234985 200.579879761 199.539840698 198.539840698 197.640426636 196.810348511 196.020309448 195.249801636 194.669723511 194.469528198 194.610153198 194.900192261 195.209762573 195.589645386 196.140426636 196.860153198 197.799606323 199.070114136 208.620132446 207.870132446 207.229995728 206.669937134 206.200210571 205.899917603 205.729995728 205.649917603 205.580093384 205.529800415 205.509780884 205.540054321 205.640151978 205.850112915 206.129898071 206.52003479 207.060073853 218.230133057 217.819976807 217.369781494 216.889801025 216.409820557 215.960113525 215.6300354 215.429840088 215.369781494 215.489898682 215.810211182 216.250152588 216.619781494 216.770172119 216.739898682 216.659820557 216.589996338 220.909851074 220.880065918 220.810241699 220.730163574 220.730163574 220.840026855 220.969909668 221.029968262 220.969909668 220.889831543 220.840026855 220.810241699 220.770202637 220.75994873 220.829772949 220.929870605 220.92010498 229.64012146 229.279769897 228.899887085 228.489730835 228.100082397 227.779769897 227.520004272 227.340316772 227.359848022 227.56980896 227.880355835 228.149887085 228.470199585 228.949691772 229.47996521 229.869613647 230.170394897 298.349853516 298.529541016 298.799072266 299.060791016 299.019775391 298.650634766 298.199462891 297.830322266 297.599853516 297.570556641 297.779541016 297.980712891 297.709228516 296.789306641 295.470947266 294.189697266 293.090087891 292.369384766 292.490478516 292.750244141 293.099853516 293.179931641 292.949462891 292.740478516 292.740478516 292.769775391 292.670166016 292.619384766 292.720947266 292.699462891 292.060791016 290.709228516 289.039306641 287.470947266 286.680541992 287.000854492 287.580932617 288.260620117 288.700073242 288.760620117 288.549682617 288.280151367 288.190307617 288.360229492 288.670776367 288.909057617 288.789916992 288.039916992 286.600463867 284.799682617 283.250854492 282.710388184 282.780700684 282.649841309 282.390075684 282.059997559 281.839294434 281.849060059 281.890075684 281.720153809 281.489685059 281.450622559 281.479919434 281.149841309 280.409606934 279.679138184 279.169372559 278.620544434 276.70980835 276.419769287 275.8699646 275.45980835 275.329925537 275.329925537 275.400238037 275.629730225 275.85043335 275.759613037 275.219573975 274.560394287 273.95980835 273.410003662 272.829925537 272.2996521 271.6902771 268.119567871 268.109802246 267.850036621 267.619567871 267.590270996 267.680114746 267.779724121 267.809997559 267.769958496 267.600036621 267.290466309 266.869567871 266.319763184 265.600036621 264.630310059 263.439880371 262.149841309 257.170349121 257.300231934 257.319763184 257.250427246 257.159606934 257.130310059 257.250427246 257.420349121 257.550231934 257.550231934 257.380310059 256.960388184 256.229919434 255.239685059 254.029724121 252.540466309 250.720153809 241.299880981 241.560134888 241.730056763 241.819900513 241.879959106 241.980056763 242.109939575 242.270095825 242.429763794 242.500076294 242.419998169 242.169998169 241.730056763 241.020095825 239.980056763 238.580154419 236.799880981 231.370193481 231.629959106 231.890213013 232.160232544 232.379959106 232.500076294 232.520095825 232.52986145 232.589920044 232.629959106 232.569900513 232.410232544 232.169998169 231.799880981 231.179763794 230.239822388 228.960037231 218.900192261 219.199996948 219.530075073 219.820114136 220.039840698 220.179977417 220.300094604 220.400192261 220.510055542 220.570114136 220.510055542 220.349899292 220.119918823 219.999801636 220.019821167 220.110153198 220.050094604 204.729827881 204.800140381 204.840179443 204.919769287 205.180023193 205.599945068 206.010101318 206.200042725 206.139984131 205.970062256 205.849945068 205.910003662 206.220062256 206.789886475 207.610198975 208.630218506 209.829925537 193.18031311 192.36000061 191.850234985 191.510391235 191.169570923 190.850234985 190.650039673 190.579727173 190.569961548 190.640274048 190.980117798 191.720352173 192.730117798 193.87953186 195.169570923 196.77015686 198.669570923 200.719528198 199.709762573 198.719528198 197.789840698 196.949996948 196.150192261 195.350387573 194.759567261 194.549606323 194.719528198 195.039840698 195.369918823 195.770309448 196.320114136 197.079879761 198.060348511 199.400192261 208.629898071 207.890151978 207.27003479 206.709976196 206.229995728 205.890151978 205.700210571 205.60987854 205.560073853 205.509780884 205.490249634 205.540054321 205.689956665 205.939956665 206.27003479 206.689956665 207.259780884 218.210113525 217.79019165 217.330230713 216.830230713 216.310211182 215.860015869 215.54019165 215.389801025 215.3800354 215.520172119 215.839996338 216.250152588 216.569976807 216.699859619 216.659820557 216.589996338 216.529937744 220.909851074 220.960144043 220.929870605 220.810241699 220.750183105 220.84979248 220.989929199 221.029968262 220.960144043 220.889831543 220.84979248 220.820007324 220.779968262 220.790222168 220.880065918 221.00994873 221.000183105 229.560043335 229.06980896 228.71043396 228.470199585 228.22996521 227.899887085 227.560043335 227.340316772 227.350082397 227.539535522 227.81980896 228.119613647 228.500473022 228.989730835 229.47996521 229.859848022 230.170394897 298.150634766 298.400634766 298.750244141 299.019775391 298.970947266 298.640869141 298.179931641 297.730712891 297.449462891 297.519775391 297.869384766 298.060791016 297.629150391 296.570556641 295.209228516 293.879150391 292.629150391 292.170166016 292.330322266 292.650634766 293.019775391 293.099853516 292.890869141 292.679931641 292.660400391 292.709228516 292.699462891 292.699462891 292.750244141 292.580322266 291.830322266 290.439697266 288.720947266 287.099853516 286.520385742 286.830932617 287.469604492 288.180541992 288.619995117 288.629760742 288.360229492 288.100463867 288.080932617 288.319213867 288.659057617 288.830932617 288.619995117 287.809448242 286.360229492 284.590698242 283.020385742 282.679138184 282.739685059 282.649841309 282.460388184 282.190856934 281.989685059 281.999450684 281.979919434 281.749450684 281.470153809 281.429138184 281.470153809 281.190856934 280.489685059 279.739685059 279.149841309 278.479919434 276.770355225 276.419769287 275.85043335 275.480316162 275.360198975 275.310394287 275.339691162 275.560394287 275.820159912 275.70980835 275.1902771 274.579925537 274.0496521 273.520355225 272.900238037 272.2996521 271.6199646 268.189880371 268.149841309 267.859802246 267.619567871 267.559997559 267.630310059 267.729919434 267.790466309 267.779724121 267.640075684 267.309997559 266.850036621 266.269958496 265.540466309 264.579528809 263.399841309 262.019958496 257.140075684 257.290466309 257.329528809 257.279724121 257.199645996 257.189880371 257.300231934 257.439880371 257.529724121 257.519958496 257.350036621 256.939880371 256.239685059 255.279724121 254.109802246 252.649841309 250.809997559 241.1900177 241.4400177 241.580154419 241.669998169 241.799880981 241.969802856 242.129959106 242.290115356 242.419998169 242.469802856 242.379959106 242.129959106 241.669998169 240.969802856 239.949783325 238.620193481 236.899978638 231.239822388 231.489822388 231.730056763 232.009841919 232.27986145 232.410232544 232.410232544 232.399978638 232.449783325 232.520095825 232.469802856 232.310134888 232.069900513 231.669998169 231.020095825 230.069900513 228.819900513 218.749801636 219.050094604 219.409957886 219.749801636 219.979782104 220.110153198 220.220016479 220.349899292 220.499801636 220.570114136 220.479782104 220.269821167 220.010055542 219.829879761 219.780075073 219.760055542 219.659957886 204.669769287 204.740081787 204.789886475 204.900238037 205.139984131 205.539886475 205.919769287 206.099945068 206.059906006 205.930023193 205.820159912 205.860198975 206.139984131 206.669769287 207.419769287 208.349945068 209.499847412 193.400039673 192.619766235 192.050430298 191.61000061 191.190078735 190.86000061 190.720352173 190.69984436 190.69984436 190.749649048 191.03968811 191.720352173 192.730117798 193.919570923 195.27015686 196.900039673 198.86000061 200.850387573 199.860153198 198.860153198 197.900192261 197.049606323 196.240036011 195.449996948 194.850387573 194.650192261 194.829879761 195.169723511 195.530075073 195.949996948 196.530075073 197.299606323 198.310348511 199.680465698 208.60987854 207.899917603 207.279800415 206.709976196 206.189956665 205.799819946 205.589859009 205.509780884 205.500015259 205.490249634 205.490249634 205.540054321 205.68019104 205.950210571 206.310073853 206.779800415 207.399917603 218.210113525 217.79019165 217.339996338 216.839996338 216.319976807 215.860015869 215.560211182 215.429840088 215.440093994 215.569976807 215.869781494 216.250152588 216.560211182 216.679840088 216.659820557 216.610015869 216.560211182 220.84979248 220.929870605 220.929870605 220.810241699 220.730163574 220.799987793 220.929870605 220.980163574 220.92010498 220.860046387 220.840026855 220.829772949 220.799987793 220.840026855 220.949890137 221.070007324 221.049987793 229.590316772 229.000473022 228.619613647 228.46043396 228.279769897 227.970199585 227.619613647 227.399887085 227.359848022 227.46043396 227.71043396 228.06980896 228.510238647 228.970199585 229.40965271 229.80027771 230.15965271 298.010009766 298.269775391 298.580322266 298.750244141 298.699462891 298.570556641 298.349853516 297.939697266 297.560791016 297.570556641 297.890869141 297.990478516 297.449462891 296.340087891 294.990478516 293.599853516 292.269775391 292.019775391 292.189697266 292.500244141 292.779541016 292.859619141 292.779541016 292.730712891 292.740478516 292.720947266 292.670166016 292.650634766 292.640869141 292.390869141 291.590087891 290.179931641 288.470947266 286.879150391 286.430541992 286.709838867 287.340698242 288.049682617 288.489135742 288.539916992 288.299682617 288.049682617 288.030151367 288.260620117 288.549682617 288.680541992 288.459838867 287.690307617 286.260620117 284.459838867 282.899291992 282.550231934 282.589294434 282.569763184 282.489685059 282.300231934 282.140075684 282.110778809 282.050231934 281.800231934 281.540466309 281.489685059 281.489685059 281.239685059 280.649841309 279.970153809 279.290466309 278.470153809 276.759613037 276.400238037 275.839691162 275.469573975 275.329925537 275.259613037 275.270355225 275.53012085 275.789886475 275.669769287 275.160003662 274.610198975 274.150238037 273.629730225 272.95980835 272.289886475 271.539886475 268.170349121 268.109802246 267.819763184 267.579528809 267.500427246 267.529724121 267.619567871 267.729919434 267.779724121 267.689880371 267.390075684 266.890075684 266.260192871 265.519958496 264.609802246 263.439880371 262.010192871 257.059997559 257.229919434 257.309997559 257.279724121 257.220153809 257.250427246 257.369567871 257.519958496 257.579528809 257.510192871 257.309997559 256.920349121 256.250427246 255.329528809 254.220153809 252.800231934 250.970153809 241.129959106 241.399978638 241.509841919 241.609939575 241.810134888 242.049880981 242.210037231 242.310134888 242.390213013 242.410232544 242.339920044 242.120193481 241.669998169 240.949783325 239.960037231 238.699783325 237.069900513 231.120193481 231.35017395 231.569900513 231.85017395 232.149978638 232.310134888 232.299880981 232.290115356 232.379959106 232.469802856 232.410232544 232.230056763 231.949783325 231.540115356 230.879959106 229.949783325 228.739822388 218.650192261 218.929977417 219.289840698 219.650192261 219.900192261 220.019821167 220.130172729 220.289840698 220.470016479 220.550094604 220.440231323 220.190231323 219.889938354 219.679977417 219.550094604 219.449996948 219.320114136 204.610198975 204.669769287 204.740081787 204.860198975 205.110198975 205.490081787 205.829925537 206.019866943 205.999847412 205.880218506 205.769866943 205.800140381 206.039886475 206.53012085 207.189788818 208.039886475 209.169769287 193.59046936 192.87953186 192.319961548 191.829727173 191.350234985 190.980117798 190.84046936 190.84046936 190.86000061 190.900039673 191.18031311 191.810195923 192.77015686 193.940078735 195.300430298 196.93031311 198.87953186 200.959762573 199.949996948 198.900192261 197.930465698 197.070114136 196.240036011 195.449996948 194.869918823 194.690231323 194.890426636 195.249801636 195.640426636 196.100387573 196.719528198 197.509567261 198.539840698 199.930465698 208.640151978 207.93019104 207.310073853 206.709976196 206.149917603 205.720230103 205.490249634 205.43019104 205.450210571 205.479995728 205.490249634 205.509780884 205.60987854 205.85987854 206.259780884 206.790054321 207.450210571 218.230133057 217.799957275 217.350250244 216.860015869 216.330230713 215.8800354 215.600250244 215.480133057 215.46987915 215.600250244 215.8800354 216.270172119 216.600250244 216.750152588 216.750152588 216.710113525 216.639801025 220.75994873 220.829772949 220.860046387 220.75994873 220.67010498 220.719909668 220.829772949 220.869812012 220.840026855 220.820007324 220.820007324 220.810241699 220.790222168 220.799987793 220.889831543 221.000183105 221.040222168 229.619613647 229.060043335 228.649887085 228.46043396 228.260238647 227.970199585 227.72996521 227.600082397 227.500473022 227.46043396 227.619613647 228.029769897 228.55027771 229.029769897 229.46043396 229.869613647 230.22996521 297.920166016 298.220947266 298.459228516 298.459228516 298.379150391 298.439697266 298.459228516 298.140869141 297.699462891 297.609619141 297.840087891 297.869384766 297.310791016 296.260009766 294.939697266 293.490478516 292.080322266 291.879150391 292.099853516 292.379150391 292.549072266 292.599853516 292.670166016 292.769775391 292.799072266 292.679931641 292.549072266 292.539306641 292.539306641 292.279541016 291.470947266 290.080322266 288.390869141 286.789306641 286.389526367 286.649291992 287.209838867 287.860229492 288.340698242 288.469604492 288.319213867 288.090698242 288.020385742 288.149291992 288.350463867 288.489135742 288.389526367 287.729370117 286.319213867 284.459838867 282.879760742 282.479919434 282.470153809 282.509216309 282.509216309 282.360778809 282.200622559 282.120544434 282.040466309 281.819763184 281.620544434 281.559997559 281.530700684 281.309997559 280.870544434 280.280700684 279.530700684 278.559997559 276.730316162 276.400238037 275.85043335 275.450042725 275.259613037 275.1902771 275.249847412 275.539886475 275.789886475 275.640472412 275.150238037 274.650238037 274.259613037 273.740081787 273.03012085 272.28012085 271.469573975 268.119567871 268.029724121 267.769958496 267.550231934 267.439880371 267.430114746 267.500427246 267.640075684 267.760192871 267.739685059 267.479919434 266.979919434 266.300231934 265.540466309 264.680114746 263.569763184 262.100036621 256.890075684 257.109802246 257.229919434 257.239685059 257.220153809 257.260192871 257.430114746 257.619567871 257.680114746 257.569763184 257.329528809 256.920349121 256.290466309 255.430114746 254.340270996 252.970153809 251.170349121 241.080154419 241.370193481 241.480056763 241.609939575 241.859939575 242.120193481 242.259841919 242.319900513 242.330154419 242.330154419 242.27986145 242.10017395 241.6900177 240.980056763 240.009841919 238.830154419 237.310134888 231.000076294 231.219802856 231.419998169 231.699783325 232.02986145 232.199783325 232.199783325 232.210037231 232.339920044 232.4400177 232.370193481 232.149978638 231.85017395 231.429763794 230.770095825 229.879959106 228.739822388 218.599899292 218.849899292 219.170211792 219.510055542 219.760055542 219.909957886 220.030075073 220.190231323 220.369918823 220.470016479 220.360153198 220.090133667 219.780075073 219.530075073 219.340133667 219.159957886 219.010055542 204.590179443 204.630218506 204.689788818 204.800140381 205.059906006 205.430023193 205.800140381 205.999847412 205.990081787 205.860198975 205.729827881 205.740081787 205.950042725 206.3699646 206.950042725 207.720062256 208.800140381 193.77015686 193.150039673 192.68031311 192.209609985 191.720352173 191.300430298 191.079727173 191.010391235 191.02015686 191.119766235 191.409805298 191.999649048 192.890274048 193.999649048 195.319961548 196.900039673 198.800430298 201.079879761 200.009567261 198.919723511 197.909957886 197.020309448 196.169723511 195.369918823 194.810348511 194.659957886 194.850387573 195.209762573 195.619918823 196.140426636 196.820114136 197.650192261 198.690231323 200.079879761 208.68019104 207.979995728 207.330093384 206.720230103 206.140151978 205.700210571 205.470230103 205.410171509 205.439956665 205.479995728 205.500015259 205.490249634 205.549819946 205.77003479 206.189956665 206.77003479 207.479995728 218.21987915 217.770172119 217.310211182 216.810211182 216.279937744 215.819976807 215.560211182 215.460113525 215.46987915 215.580230713 215.869781494 216.259918213 216.589996338 216.750152588 216.759918213 216.730133057 216.679840088 220.719909668 220.770202637 220.810241699 220.739929199 220.67010498 220.699890137 220.779968262 220.820007324 220.829772949 220.840026855 220.869812012 220.840026855 220.770202637 220.719909668 220.750183105 220.880065918 220.989929199 229.579574585 229.100082397 228.720199585 228.46043396 228.189926147 227.939926147 227.81980896 227.779769897 227.64012146 227.470199585 227.56980896 228.000473022 228.590316772 229.130355835 229.619613647 230.06980896 230.39012146 297.779541016 298.189697266 298.449462891 298.359619141 298.230712891 298.310791016 298.349853516 298.029541016 297.599853516 297.560791016 297.820556641 297.830322266 297.279541016 296.260009766 294.920166016 293.349853516 291.840087891 291.709228516 292.029541016 292.320556641 292.459228516 292.500244141 292.609619141 292.740478516 292.709228516 292.560791016 292.470947266 292.549072266 292.599853516 292.320556641 291.470947266 290.049072266 288.289306641 286.590087891 286.360229492 286.629760742 287.100463867 287.700073242 288.219604492 288.450073242 288.360229492 288.119995117 287.979370117 288.030151367 288.200073242 288.409057617 288.450073242 287.869995117 286.420776367 284.489135742 282.899291992 282.470153809 282.460388184 282.520935059 282.559997559 282.409606934 282.200622559 282.050231934 281.940856934 281.770935059 281.630310059 281.599060059 281.559997559 281.399841309 281.069763184 280.559997559 279.770935059 278.669372559 276.650238037 276.400238037 275.860198975 275.429534912 275.20980835 275.129730225 275.249847412 275.570159912 275.7996521 275.6199646 275.140472412 274.719573975 274.390472412 273.879730225 273.129730225 272.339691162 271.469573975 268.059997559 267.960388184 267.729919434 267.529724121 267.409606934 267.359802246 267.430114746 267.569763184 267.720153809 267.750427246 267.550231934 267.069763184 266.359802246 265.559997559 264.739685059 263.729919434 262.300231934 256.680114746 256.920349121 257.090270996 257.149841309 257.170349121 257.239685059 257.449645996 257.680114746 257.769958496 257.630310059 257.359802246 256.960388184 256.380310059 255.569763184 254.500427246 253.170349121 251.430114746 241.000076294 241.299880981 241.4400177 241.609939575 241.870193481 242.140213013 242.27986145 242.299880981 242.299880981 242.259841919 242.210037231 242.060134888 241.6900177 241.020095825 240.089920044 238.989822388 237.569900513 230.919998169 231.120193481 231.319900513 231.620193481 231.9400177 232.120193481 232.120193481 232.129959106 232.270095825 232.390213013 232.310134888 232.069900513 231.750076294 231.330154419 230.719802856 229.870193481 228.770095825 218.590133667 218.829879761 219.099899292 219.389938354 219.630172729 219.800094604 219.949996948 220.090133667 220.240036011 220.320114136 220.240036011 219.990036011 219.679977417 219.409957886 219.150192261 218.920211792 218.729782104 204.550140381 204.599945068 204.650238037 204.740081787 204.990081787 205.400238037 205.800140381 206.03012085 205.999847412 205.860198975 205.700042725 205.689788818 205.849945068 206.200042725 206.700042725 207.400238037 208.430023193 193.999649048 193.440078735 193.03968811 192.640274048 192.159805298 191.69984436 191.369766235 191.209609985 191.190078735 191.34046936 191.690078735 192.27015686 193.069961548 194.09046936 195.34046936 196.87953186 198.749649048 201.219528198 200.100387573 198.959762573 197.909957886 196.969528198 196.079879761 195.289840698 194.770309448 194.640426636 194.799606323 195.110153198 195.520309448 196.089645386 196.820114136 197.699996948 198.770309448 200.169723511 208.689956665 207.970230103 207.290054321 206.660171509 206.100112915 205.68019104 205.450210571 205.390151978 205.399917603 205.459976196 205.509780884 205.509780884 205.540054321 205.729995728 206.149917603 206.740249634 207.459976196 218.190093994 217.750152588 217.29019165 216.810211182 216.279937744 215.830230713 215.589996338 215.520172119 215.529937744 215.6300354 215.8800354 216.21987915 216.500152588 216.619781494 216.659820557 216.659820557 216.650054932 220.699890137 220.730163574 220.75994873 220.710144043 220.659851074 220.679870605 220.75994873 220.829772949 220.869812012 220.909851074 220.929870605 220.889831543 220.790222168 220.719909668 220.730163574 220.84979248 221.040222168 229.500473022 229.109848022 228.760238647 228.449691772 228.149887085 227.899887085 227.81980896 227.770004272 227.579574585 227.399887085 227.500473022 227.970199585 228.560043335 229.14012146 229.71043396 230.21043396 230.449691772 297.599853516 298.039306641 298.359619141 298.349853516 298.220947266 298.209228516 298.080322266 297.689697266 297.369384766 297.500244141 297.859619141 297.869384766 297.289306641 296.220947266 294.760009766 293.039306641 291.410400391 291.549072266 291.879150391 292.199462891 292.379150391 292.490478516 292.599853516 292.670166016 292.599853516 292.490478516 292.519775391 292.689697266 292.740478516 292.369384766 291.429931641 289.910400391 288.070556641 286.269775391 286.299682617 286.549682617 286.969604492 287.569213867 288.170776367 288.489135742 288.369995117 288.080932617 287.909057617 287.969604492 288.190307617 288.450073242 288.549682617 288.000854492 286.500854492 284.539916992 282.959838867 282.450622559 282.509216309 282.610778809 282.640075684 282.460388184 282.190856934 281.999450684 281.839294434 281.679138184 281.579528809 281.599060059 281.610778809 281.499450684 281.259216309 280.800231934 279.979919434 278.800231934 276.5496521 276.329925537 275.839691162 275.410003662 275.1902771 275.129730225 275.28012085 275.60043335 275.820159912 275.6199646 275.160003662 274.820159912 274.539886475 274.0496521 273.2996521 272.490081787 271.579925537 267.970153809 267.880310059 267.689880371 267.500427246 267.369567871 267.340270996 267.420349121 267.569763184 267.680114746 267.710388184 267.569763184 267.149841309 266.439880371 265.609802246 264.819763184 263.899841309 262.559997559 256.460388184 256.710388184 256.930114746 257.069763184 257.130310059 257.229919434 257.449645996 257.699645996 257.800231934 257.670349121 257.390075684 257.019958496 256.489685059 255.720153809 254.689880371 253.409606934 251.769958496 240.870193481 241.169998169 241.35017395 241.540115356 241.819900513 242.10017395 242.27986145 242.359939575 242.359939575 242.290115356 242.169998169 242.020095825 241.6900177 241.060134888 240.179763794 239.160232544 237.839920044 230.870193481 231.080154419 231.27986145 231.580154419 231.910232544 232.040115356 232.02986145 232.040115356 232.1900177 232.319900513 232.239822388 231.969802856 231.640213013 231.239822388 230.679763794 229.879959106 228.830154419 218.570114136 218.809860229 219.050094604 219.300094604 219.530075073 219.729782104 219.889938354 220.010055542 220.119918823 220.190231323 220.119918823 219.889938354 219.579879761 219.269821167 218.979782104 218.699996948 218.470016479 204.499847412 204.559906006 204.610198975 204.689788818 204.930023193 205.360198975 205.789886475 206.019866943 205.999847412 205.829925537 205.669769287 205.6199646 205.740081787 206.03012085 206.45980835 207.079925537 208.019866943 194.279922485 193.730117798 193.36000061 192.989883423 192.550430298 192.069961548 191.669570923 191.43031311 191.400039673 191.600234985 191.999649048 192.550430298 193.239883423 194.159805298 195.350234985 196.86000061 198.709609985 201.379684448 200.249801636 199.070114136 197.949996948 196.940231323 196.020309448 195.249801636 194.789840698 194.669723511 194.799606323 195.039840698 195.430465698 196.030075073 196.780075073 197.690231323 198.799606323 200.249801636 208.669937134 207.899917603 207.189956665 206.540054321 205.979995728 205.560073853 205.339859009 205.279800415 205.299819946 205.390151978 205.470230103 205.500015259 205.52003479 205.669937134 206.040054321 206.620132446 207.339859009 218.199859619 217.759918213 217.330230713 216.889801025 216.420074463 216.020172119 215.799957275 215.730133057 215.750152588 215.839996338 216.009918213 216.250152588 216.449859619 216.569976807 216.619781494 216.650054932 216.650054932 220.650085449 220.650085449 220.659851074 220.610046387 220.570007324 220.610046387 220.719909668 220.810241699 220.869812012 220.900085449 220.900085449 220.869812012 220.829772949 220.790222168 220.820007324 220.940124512 221.119812012 229.539535522 229.170394897 228.80027771 228.47996521 228.15965271 227.90965271 227.750473022 227.590316772 227.39012146 227.289535522 227.500473022 227.96043396 228.47996521 229.05027771 229.699691772 230.239730835 230.420394897 297.410400391 297.760009766 298.070556641 298.150634766 298.160400391 298.140869141 297.929931641 297.500244141 297.269775391 297.510009766 297.890869141 297.859619141 297.269775391 296.160400391 294.570556641 292.720947266 291.019775391 291.439697266 291.650634766 291.929931641 292.189697266 292.400634766 292.549072266 292.590087891 292.560791016 292.539306641 292.619384766 292.760009766 292.730712891 292.310791016 291.310791016 289.709228516 287.799072266 286.010009766 286.190307617 286.379760742 286.770385742 287.420776367 288.119995117 288.489135742 288.330932617 287.989135742 287.850463867 287.989135742 288.219604492 288.469604492 288.539916992 288.020385742 286.610229492 284.739135742 283.209838867 282.390075684 282.540466309 282.720153809 282.729919434 282.499450684 282.210388184 282.020935059 281.870544434 281.679138184 281.569763184 281.620544434 281.690856934 281.640075684 281.450622559 281.020935059 280.200622559 279.020935059 276.429534912 276.240081787 275.78012085 275.400238037 275.20980835 275.150238037 275.289886475 275.629730225 275.829925537 275.650238037 275.230316162 274.919769287 274.700042725 274.249847412 273.539886475 272.719573975 271.759613037 267.819763184 267.760192871 267.600036621 267.420349121 267.300231934 267.300231934 267.439880371 267.590270996 267.659606934 267.640075684 267.529724121 267.199645996 266.550231934 265.710388184 264.930114746 264.090270996 262.840270996 256.260192871 256.510192871 256.769958496 256.970153809 257.109802246 257.250427246 257.470153809 257.699645996 257.809997559 257.699645996 257.449645996 257.100036621 256.600036621 255.840270996 254.869567871 253.689880371 252.149841309 240.719802856 241.009841919 241.199783325 241.419998169 241.730056763 242.02986145 242.270095825 242.429763794 242.460037231 242.35017395 242.179763794 241.989822388 241.679763794 241.10017395 240.259841919 239.299880981 238.080154419 230.77986145 231.009841919 231.219802856 231.509841919 231.810134888 231.960037231 231.949783325 231.969802856 232.120193481 232.250076294 232.179763794 231.899978638 231.540115356 231.140213013 230.629959106 229.910232544 228.919998169 218.460250854 218.710250854 218.960250854 219.199996948 219.449996948 219.690231323 219.860153198 219.970016479 220.059860229 220.110153198 220.030075073 219.789840698 219.460250854 219.139938354 218.829879761 218.519821167 218.249801636 204.430023193 204.510101318 204.590179443 204.680023193 204.919769287 205.329925537 205.740081787 205.939788818 205.900238037 205.749847412 205.610198975 205.559906006 205.650238037 205.889984131 206.260101318 206.789886475 207.6199646 194.62953186 194.069961548 193.690078735 193.319961548 192.87953186 192.400039673 191.980117798 191.69984436 191.650039673 191.890274048 192.310195923 192.810195923 193.409805298 194.220352173 195.350234985 196.819961548 198.640274048 201.539840698 200.400192261 199.180465698 197.980270386 196.879684448 195.919723511 195.190231323 194.780075073 194.680465698 194.770309448 194.969528198 195.350387573 195.949996948 196.719528198 197.629684448 198.770309448 200.270309448 208.669937134 207.85987854 207.129898071 206.459976196 205.879898071 205.459976196 205.229995728 205.18019104 205.229995728 205.330093384 205.410171509 205.43019104 205.419937134 205.529800415 205.85987854 206.43019104 207.169937134 218.199859619 217.739898682 217.319976807 216.940093994 216.549957275 216.199859619 216.009918213 215.960113525 215.96987915 216.04019165 216.170074463 216.350250244 216.529937744 216.670074463 216.770172119 216.79019165 216.710113525 220.59979248 220.579772949 220.570007324 220.50994873 220.480163574 220.549987793 220.67010498 220.750183105 220.799987793 220.820007324 220.799987793 220.790222168 220.799987793 220.829772949 220.880065918 220.980163574 221.139831543 229.699691772 229.329574585 228.899887085 228.510238647 228.189926147 227.949691772 227.720199585 227.470199585 227.270004272 227.289535522 227.600082397 228.029769897 228.470199585 229.029769897 229.750473022 230.30027771 230.420394897 297.299072266 297.529541016 297.750244141 297.849853516 297.959228516 298.060791016 297.910400391 297.549072266 297.359619141 297.539306641 297.820556641 297.799072266 297.320556641 296.250244141 294.580322266 292.599853516 290.849853516 291.369384766 291.449462891 291.650634766 291.939697266 292.240478516 292.439697266 292.539306641 292.580322266 292.619384766 292.629150391 292.629150391 292.590087891 292.260009766 291.289306641 289.599853516 287.590087891 285.840087891 286.059448242 286.200073242 286.539916992 287.239135742 288.020385742 288.389526367 288.209838867 287.879760742 287.809448242 287.989135742 288.170776367 288.319213867 288.389526367 288.010620117 286.840698242 285.170776367 283.659057617 282.319763184 282.579528809 282.819763184 282.800231934 282.509216309 282.239685059 282.120544434 281.989685059 281.759216309 281.610778809 281.669372559 281.800231934 281.790466309 281.630310059 281.259216309 280.499450684 279.329528809 276.310394287 276.140472412 275.740081787 275.419769287 275.259613037 275.179534912 275.28012085 275.610198975 275.85043335 275.70980835 275.310394287 275.03012085 274.860198975 274.480316162 273.829925537 273.020355225 271.990081787 267.609802246 267.600036621 267.489685059 267.309997559 267.199645996 267.250427246 267.479919434 267.670349121 267.680114746 267.579528809 267.479919434 267.229919434 266.659606934 265.850036621 265.090270996 264.279724121 263.109802246 256.090270996 256.350036621 256.640075684 256.899841309 257.090270996 257.260192871 257.489685059 257.729919434 257.850036621 257.760192871 257.540466309 257.210388184 256.699645996 255.939880371 255.019958496 253.960388184 252.529724121 240.549880981 240.810134888 241.009841919 241.27986145 241.609939575 241.949783325 242.239822388 242.429763794 242.480056763 242.359939575 242.169998169 242.000076294 241.699783325 241.149978638 240.339920044 239.419998169 238.290115356 230.620193481 230.870193481 231.10017395 231.359939575 231.649978638 231.839920044 231.919998169 231.969802856 232.089920044 232.199783325 232.140213013 231.85017395 231.469802856 231.049880981 230.569900513 229.910232544 229.009841919 218.260055542 218.510055542 218.780075073 219.059860229 219.360153198 219.630172729 219.840133667 219.949996948 220.030075073 220.059860229 219.970016479 219.699996948 219.349899292 219.010055542 218.690231323 218.369918823 218.090133667 204.410003662 204.45980835 204.550140381 204.689788818 204.95980835 205.349945068 205.689788818 205.840179443 205.809906006 205.689788818 205.579925537 205.519866943 205.579925537 205.78012085 206.090179443 206.539886475 207.300140381 195.029922485 194.510391235 194.12953186 193.709609985 193.209609985 192.690078735 192.239883423 191.94984436 191.87953186 192.100234985 192.499649048 192.980117798 193.550430298 194.310195923 195.369766235 196.77015686 198.52015686 201.690231323 200.539840698 199.259567261 197.990036011 196.799606323 195.789840698 195.070114136 194.699996948 194.600387573 194.669723511 194.860153198 195.240036011 195.820114136 196.560348511 197.469528198 198.669723511 200.230270386 208.720230103 207.919937134 207.18019104 206.490249634 205.890151978 205.450210571 205.250015259 205.229995728 205.290054321 205.35987854 205.379898071 205.350112915 205.310073853 205.390151978 205.700210571 206.259780884 207.040054321 218.139801025 217.6300354 217.190093994 216.839996338 216.500152588 216.210113525 216.04019165 215.989898682 216.020172119 216.089996338 216.21987915 216.389801025 216.589996338 216.810211182 216.960113525 216.929840088 216.739898682 220.659851074 220.619812012 220.590026855 220.549987793 220.540222168 220.59979248 220.690124512 220.75994873 220.779968262 220.790222168 220.779968262 220.75994873 220.770202637 220.810241699 220.840026855 220.909851074 221.040222168 229.840316772 229.500473022 229.020004272 228.55027771 228.180160522 227.939926147 227.71043396 227.470199585 227.310043335 227.39012146 227.699691772 228.100082397 228.529769897 229.14012146 229.89012146 230.430160522 230.510238647 297.230712891 297.490478516 297.619384766 297.660400391 297.779541016 297.949462891 297.920166016 297.619384766 297.390869141 297.449462891 297.689697266 297.830322266 297.560791016 296.560791016 294.730712891 292.539306641 290.689697266 291.260009766 291.349853516 291.529541016 291.840087891 292.150634766 292.349853516 292.459228516 292.590087891 292.629150391 292.549072266 292.470947266 292.539306641 292.449462891 291.510009766 289.570556641 287.310791016 285.519775391 285.930541992 286.069213867 286.440307617 287.139526367 287.899291992 288.239135742 288.049682617 287.780151367 287.780151367 287.930541992 288.030151367 288.110229492 288.229370117 288.049682617 287.149291992 285.659057617 284.159057617 282.309997559 282.659606934 282.940856934 282.870544434 282.509216309 282.249450684 282.210388184 282.110778809 281.829528809 281.649841309 281.729919434 281.899841309 281.940856934 281.829528809 281.540466309 280.860778809 279.700622559 276.160003662 276.0496521 275.730316162 275.480316162 275.320159912 275.200042725 275.240081787 275.570159912 275.8699646 275.759613037 275.379730225 275.129730225 275.020355225 274.740081787 274.150238037 273.35043335 272.28012085 267.439880371 267.489685059 267.399841309 267.239685059 267.130310059 267.250427246 267.559997559 267.809997559 267.790466309 267.600036621 267.449645996 267.250427246 266.790466309 266.050231934 265.279724121 264.489685059 263.369567871 255.939880371 256.220153809 256.529724121 256.829528809 257.050231934 257.250427246 257.500427246 257.769958496 257.899841309 257.840270996 257.630310059 257.309997559 256.769958496 256.010192871 255.140075684 254.180114746 252.859802246 240.319900513 240.569900513 240.799880981 241.129959106 241.520095825 241.879959106 242.169998169 242.35017395 242.390213013 242.290115356 242.149978638 242.020095825 241.739822388 241.179763794 240.399978638 239.540115356 238.489822388 230.390213013 230.679763794 230.919998169 231.169998169 231.469802856 231.739822388 231.910232544 232.000076294 232.089920044 232.149978638 232.089920044 231.830154419 231.410232544 230.960037231 230.500076294 229.910232544 229.089920044 218.030075073 218.280075073 218.570114136 218.909957886 219.249801636 219.579879761 219.800094604 219.940231323 220.019821167 220.059860229 219.949996948 219.659957886 219.269821167 218.920211792 218.599899292 218.260055542 217.960250854 204.450042725 204.450042725 204.519866943 204.689788818 204.999847412 205.389984131 205.680023193 205.800140381 205.789886475 205.70980835 205.599945068 205.519866943 205.550140381 205.720062256 205.979827881 206.360198975 207.039886475 195.470352173 195.010391235 194.650039673 194.140274048 193.510391235 192.900039673 192.419570923 192.09046936 191.980117798 192.119766235 192.499649048 192.999649048 193.619766235 194.400039673 195.419570923 196.720352173 198.390274048 201.869918823 200.650192261 199.329879761 197.999801636 196.770309448 195.709762573 194.980270386 194.600387573 194.509567261 194.579879761 194.759567261 195.119918823 195.659957886 196.360153198 197.270309448 198.499801636 200.089645386 208.759780884 207.970230103 207.229995728 206.540054321 205.93019104 205.509780884 205.339859009 205.350112915 205.399917603 205.399917603 205.35987854 205.299819946 205.250015259 205.330093384 205.620132446 206.149917603 206.939956665 218.069976807 217.54019165 217.080230713 216.699859619 216.3800354 216.100250244 215.949859619 215.929840088 215.980133057 216.060211182 216.170074463 216.319976807 216.54019165 216.79019165 216.960113525 216.920074463 216.690093994 220.779968262 220.730163574 220.679870605 220.639831543 220.639831543 220.710144043 220.779968262 220.820007324 220.84979248 220.869812012 220.869812012 220.820007324 220.790222168 220.779968262 220.810241699 220.869812012 220.949890137 229.850082397 229.590316772 229.130355835 228.609848022 228.180160522 227.90965271 227.689926147 227.500473022 227.399887085 227.470199585 227.72996521 228.090316772 228.579574585 229.250473022 229.97996521 230.46043396 230.55027771 297.099853516 297.510009766 297.650634766 297.609619141 297.679931641 297.869384766 297.840087891 297.539306641 297.269775391 297.330322266 297.660400391 298.010009766 297.879150391 296.810791016 294.730712891 292.310791016 290.330322266 291.099853516 291.299072266 291.529541016 291.869384766 292.170166016 292.310791016 292.410400391 292.560791016 292.629150391 292.510009766 292.449462891 292.689697266 292.760009766 291.730712891 289.459228516 286.900634766 284.980712891 285.760620117 286.000854492 286.450073242 287.149291992 287.840698242 288.119995117 287.969604492 287.750854492 287.750854492 287.869995117 287.930541992 288.030151367 288.200073242 288.119995117 287.379760742 286.049682617 284.639526367 282.300231934 282.720153809 283.040466309 282.919372559 282.489685059 282.239685059 282.239685059 282.140075684 281.849060059 281.700622559 281.829528809 282.020935059 282.069763184 282.020935059 281.839294434 281.239685059 280.099060059 275.990081787 275.95980835 275.719573975 275.520355225 275.3699646 275.20980835 275.219573975 275.5496521 275.8699646 275.789886475 275.419769287 275.200042725 275.169769287 274.990081787 274.490081787 273.700042725 272.60043335 267.340270996 267.430114746 267.359802246 267.220153809 267.140075684 267.300231934 267.670349121 267.960388184 267.930114746 267.670349121 267.470153809 267.309997559 266.949645996 266.300231934 265.529724121 264.720153809 263.609802246 255.809997559 256.109802246 256.449645996 256.760192871 257.000427246 257.220153809 257.510192871 257.809997559 257.939880371 257.869567871 257.670349121 257.359802246 256.829528809 256.069763184 255.239685059 254.359802246 253.130310059 240.009841919 240.270095825 240.549880981 240.960037231 241.429763794 241.839920044 242.109939575 242.250076294 242.27986145 242.230056763 242.149978638 242.040115356 241.750076294 241.1900177 240.4400177 239.629959106 238.660232544 230.129959106 230.460037231 230.739822388 231.020095825 231.330154419 231.660232544 231.890213013 232.009841919 232.040115356 232.069900513 232.009841919 231.77986145 231.359939575 230.890213013 230.429763794 229.919998169 229.179763794 217.840133667 218.099899292 218.409957886 218.780075073 219.179977417 219.539840698 219.789840698 219.920211792 220.010055542 220.059860229 219.949996948 219.650192261 219.249801636 218.880172729 218.530075073 218.170211792 217.849899292 204.53012085 204.479827881 204.510101318 204.700042725 205.050140381 205.430023193 205.700042725 205.809906006 205.840179443 205.789886475 205.669769287 205.550140381 205.559906006 205.70980835 205.930023193 206.220062256 206.829925537 195.940078735 195.53968811 195.150039673 194.510391235 193.720352173 193.02015686 192.510391235 192.169570923 191.980117798 192.050430298 192.37953186 192.919570923 193.600234985 194.419570923 195.43031311 196.68031311 198.27015686 202.100387573 200.799606323 199.409957886 198.060348511 196.799606323 195.719528198 194.949996948 194.549606323 194.459762573 194.549606323 194.730270386 195.060348511 195.530075073 196.190231323 197.089645386 198.320114136 199.879684448 208.720230103 207.93019104 207.189956665 206.490249634 205.890151978 205.52003479 205.399917603 205.419937134 205.43019104 205.379898071 205.319839478 205.27003479 205.240249634 205.279800415 205.509780884 206.009780884 206.779800415 218.069976807 217.580230713 217.150054932 216.759918213 216.3800354 216.069976807 215.909820557 215.900054932 215.96987915 216.060211182 216.150054932 216.270172119 216.460113525 216.699859619 216.860015869 216.830230713 216.670074463 220.810241699 220.75994873 220.690124512 220.619812012 220.630065918 220.719909668 220.820007324 220.860046387 220.869812012 220.909851074 220.929870605 220.889831543 220.829772949 220.810241699 220.840026855 220.909851074 220.980163574 229.789535522 229.609848022 229.22996521 228.720199585 228.250473022 227.90965271 227.670394897 227.520004272 227.470199585 227.55027771 227.750473022 228.100082397 228.619613647 229.279769897 229.899887085 230.310043335 230.500473022 296.949462891 297.410400391 297.549072266 297.510009766 297.629150391 297.840087891 297.750244141 297.379150391 297.119384766 297.279541016 297.760009766 298.189697266 298.049072266 296.820556641 294.580322266 292.070556641 290.019775391 290.949462891 291.209228516 291.470947266 291.830322266 292.170166016 292.310791016 292.390869141 292.560791016 292.660400391 292.549072266 292.529541016 292.830322266 292.890869141 291.730712891 289.250244141 286.560791016 284.599853516 285.559448242 285.920776367 286.469604492 287.180541992 287.809448242 288.090698242 287.989135742 287.780151367 287.709838867 287.799682617 287.950073242 288.129760742 288.289916992 288.139526367 287.450073242 286.399291992 285.289916992 282.229919434 282.669372559 283.030700684 282.899841309 282.470153809 282.220153809 282.220153809 282.110778809 281.839294434 281.759216309 281.970153809 282.149841309 282.159606934 282.169372559 282.140075684 281.659606934 280.569763184 275.820159912 275.85043335 275.650238037 275.490081787 275.3699646 275.219573975 275.240081787 275.579925537 275.900238037 275.7996521 275.450042725 275.270355225 275.310394287 275.240081787 274.810394287 274.0496521 272.95980835 267.260192871 267.359802246 267.309997559 267.199645996 267.180114746 267.380310059 267.760192871 268.040466309 268.000427246 267.720153809 267.489685059 267.369567871 267.130310059 266.590270996 265.859802246 265.010192871 263.869567871 255.670349121 255.979919434 256.350036621 256.680114746 256.939880371 257.180114746 257.510192871 257.829528809 257.949645996 257.840270996 257.619567871 257.340270996 256.869567871 256.159606934 255.350036621 254.510192871 253.340270996 239.669998169 239.9400177 240.299880981 240.790115356 241.35017395 241.810134888 242.069900513 242.210037231 242.250076294 242.239822388 242.1900177 242.040115356 241.710037231 241.129959106 240.419998169 239.6900177 238.77986145 229.85017395 230.210037231 230.560134888 230.899978638 231.250076294 231.580154419 231.819900513 231.9400177 231.980056763 232.000076294 231.949783325 231.739822388 231.319900513 230.819900513 230.359939575 229.890213013 229.219802856 217.679977417 217.940231323 218.260055542 218.670211792 219.119918823 219.510055542 219.749801636 219.880172729 219.970016479 220.050094604 219.970016479 219.679977417 219.260055542 218.860153198 218.470016479 218.090133667 217.760055542 204.630218506 204.539886475 204.550140381 204.729827881 205.090179443 205.470062256 205.729827881 205.840179443 205.889984131 205.860198975 205.720062256 205.590179443 205.610198975 205.78012085 205.950042725 206.139984131 206.660003662 196.43031311 196.03968811 195.569961548 194.78968811 193.86000061 193.100234985 192.61000061 192.260391235 192.050430298 192.03968811 192.319961548 192.84046936 193.529922485 194.350234985 195.350234985 196.579727173 198.169570923 202.339645386 200.940231323 199.490036011 198.119918823 196.839645386 195.719528198 194.919723511 194.520309448 194.430465698 194.530075073 194.719528198 195.009567261 195.449996948 196.079879761 196.980270386 198.150192261 199.610153198 208.660171509 207.879898071 207.129898071 206.419937134 205.85987854 205.529800415 205.439956665 205.439956665 205.399917603 205.330093384 205.279800415 205.259780884 205.200210571 205.169937134 205.310073853 205.750015259 206.52003479 218.119781494 217.690093994 217.270172119 216.839996338 216.409820557 216.069976807 215.900054932 215.909820557 215.980133057 216.060211182 216.150054932 216.29019165 216.480133057 216.699859619 216.830230713 216.850250244 216.79019165 220.730163574 220.690124512 220.619812012 220.529968262 220.540222168 220.67010498 220.820007324 220.860046387 220.84979248 220.84979248 220.869812012 220.860046387 220.810241699 220.820007324 220.889831543 220.980163574 221.029968262 229.770004272 229.56980896 229.250473022 228.81980896 228.369613647 227.970199585 227.670394897 227.529769897 227.56980896 227.699691772 227.899887085 228.239730835 228.739730835 229.30027771 229.789535522 230.180160522 230.489730835 296.849853516 297.179931641 297.250244141 297.279541016 297.570556641 297.859619141 297.740478516 297.299072266 297.080322266 297.330322266 297.849853516 298.220947266 297.990478516 296.779541016 294.670166016 292.269775391 290.160400391 290.910400391 291.099853516 291.289306641 291.670166016 292.099853516 292.320556641 292.410400391 292.580322266 292.699462891 292.619384766 292.570556641 292.810791016 292.799072266 291.619384766 289.209228516 286.629150391 284.720947266 285.409057617 285.819213867 286.420776367 287.129760742 287.770385742 288.119995117 288.100463867 287.850463867 287.649291992 287.690307617 287.950073242 288.250854492 288.350463867 288.119995117 287.610229492 287.020385742 286.399291992 282.089294434 282.540466309 282.919372559 282.819763184 282.409606934 282.200622559 282.179138184 282.030700684 281.800231934 281.849060059 282.130310059 282.249450684 282.169372559 282.229919434 282.380310059 282.089294434 281.110778809 275.700042725 275.740081787 275.5496521 275.429534912 275.35043335 275.240081787 275.289886475 275.6199646 275.900238037 275.7996521 275.469573975 275.339691162 275.450042725 275.4402771 275.089691162 274.390472412 273.329925537 267.100036621 267.220153809 267.180114746 267.140075684 267.199645996 267.439880371 267.779724121 268.029724121 267.979919434 267.710388184 267.510192871 267.420349121 267.260192871 266.859802246 266.220153809 265.380310059 264.199645996 255.519958496 255.840270996 256.210388184 256.579528809 256.850036621 257.130310059 257.489685059 257.840270996 257.939880371 257.760192871 257.540466309 257.309997559 256.920349121 256.269958496 255.479919434 254.640075684 253.500427246 239.35017395 239.660232544 240.080154419 240.649978638 241.259841919 241.750076294 242.049880981 242.199783325 242.270095825 242.27986145 242.199783325 241.980056763 241.580154419 241.009841919 240.370193481 239.699783325 238.85017395 229.540115356 229.919998169 230.359939575 230.799880981 231.179763794 231.500076294 231.730056763 231.870193481 231.949783325 232.000076294 231.960037231 231.719802856 231.27986145 230.759841919 230.270095825 229.830154419 229.219802856 217.490036011 217.760055542 218.119918823 218.550094604 219.050094604 219.470016479 219.710250854 219.840133667 219.929977417 220.039840698 220.010055542 219.729782104 219.309860229 218.860153198 218.440231323 218.019821167 217.690231323 204.720062256 204.650238037 204.639984131 204.809906006 205.169769287 205.519866943 205.749847412 205.860198975 205.919769287 205.889984131 205.729827881 205.590179443 205.660003662 205.8699646 205.999847412 206.099945068 206.519866943 196.94984436 196.529922485 195.940078735 195.029922485 193.999649048 193.209609985 192.709609985 192.369766235 192.140274048 192.12953186 192.400039673 192.890274048 193.489883423 194.239883423 195.209609985 196.459609985 198.050430298 202.539840698 201.060348511 199.570114136 198.150192261 196.820114136 195.680465698 194.890426636 194.490036011 194.409957886 194.490036011 194.659957886 194.919723511 195.339645386 195.969528198 196.850387573 197.949996948 199.299606323 208.660171509 207.910171509 207.169937134 206.490249634 205.939956665 205.640151978 205.540054321 205.500015259 205.439956665 205.370132446 205.330093384 205.279800415 205.149917603 205.029800415 205.100112915 205.52003479 206.27003479 218.1300354 217.690093994 217.21987915 216.730133057 216.259918213 215.920074463 215.799957275 215.810211182 215.869781494 215.929840088 216.060211182 216.29019165 216.549957275 216.779937744 216.909820557 216.96987915 216.96987915 220.690124512 220.699890137 220.639831543 220.549987793 220.560241699 220.730163574 220.889831543 220.92010498 220.860046387 220.820007324 220.829772949 220.829772949 220.779968262 220.770202637 220.860046387 220.969909668 221.020202637 229.789535522 229.520004272 229.170394897 228.789535522 228.399887085 227.989730835 227.65965271 227.55027771 227.65965271 227.869613647 228.06980896 228.380355835 228.859848022 229.369613647 229.810043335 230.239730835 230.649887085 296.810791016 296.980712891 296.980712891 297.119384766 297.549072266 297.900634766 297.750244141 297.289306641 297.109619141 297.400634766 297.890869141 298.189697266 298.000244141 297.019775391 295.170166016 292.810791016 290.519775391 290.900634766 291.000244141 291.119384766 291.549072266 292.099853516 292.400634766 292.470947266 292.590087891 292.709228516 292.660400391 292.590087891 292.779541016 292.789306641 291.730712891 289.480712891 287.000244141 285.099853516 285.379760742 285.789916992 286.399291992 287.119995117 287.770385742 288.180541992 288.219604492 287.940307617 287.629760742 287.610229492 287.920776367 288.260620117 288.350463867 288.229370117 288.119995117 288.110229492 287.909057617 281.950622559 282.419372559 282.819763184 282.739685059 282.380310059 282.159606934 282.099060059 281.899841309 281.729919434 281.909606934 282.270935059 282.300231934 282.110778809 282.190856934 282.509216309 282.419372559 281.610778809 275.579925537 275.629730225 275.469573975 275.3699646 275.329925537 275.249847412 275.2996521 275.60043335 275.8699646 275.749847412 275.450042725 275.390472412 275.570159912 275.640472412 275.360198975 274.730316162 273.740081787 266.840270996 266.979919434 266.989685059 267.019958496 267.180114746 267.449645996 267.779724121 268.000427246 267.960388184 267.739685059 267.550231934 267.460388184 267.329528809 267.050231934 266.569763184 265.800231934 264.590270996 255.340270996 255.640075684 256.019958496 256.420349121 256.739685059 257.059997559 257.460388184 257.800231934 257.880310059 257.689880371 257.479919434 257.319763184 257.000427246 256.380310059 255.579528809 254.729919434 253.630310059 239.10017395 239.449783325 239.919998169 240.540115356 241.169998169 241.6900177 242.000076294 242.160232544 242.230056763 242.210037231 242.080154419 241.799880981 241.370193481 240.85017395 240.270095825 239.660232544 238.85017395 229.239822388 229.640213013 230.160232544 230.710037231 231.140213013 231.429763794 231.649978638 231.85017395 231.989822388 232.049880981 231.980056763 231.719802856 231.250076294 230.6900177 230.179763794 229.730056763 229.160232544 217.280075073 217.590133667 217.979782104 218.470016479 218.990036011 219.429977417 219.690231323 219.820114136 219.940231323 220.079879761 220.079879761 219.829879761 219.400192261 218.920211792 218.449996948 217.999801636 217.670211792 204.860198975 204.800140381 204.800140381 204.950042725 205.269866943 205.579925537 205.78012085 205.880218506 205.930023193 205.889984131 205.720062256 205.599945068 205.700042725 205.939788818 206.070159912 206.139984131 206.490081787 197.489883423 196.989883423 196.28968811 195.27015686 194.18031311 193.329727173 192.760391235 192.37953186 192.159805298 192.220352173 192.53968811 192.999649048 193.52015686 194.169570923 195.09046936 196.34046936 197.900039673 202.690231323 201.190231323 199.659957886 198.180465698 196.789840698 195.659957886 194.900192261 194.520309448 194.419723511 194.459762573 194.589645386 194.820114136 195.199996948 195.810348511 196.650192261 197.690231323 198.969528198 208.720230103 208.009780884 207.290054321 206.620132446 206.080093384 205.759780884 205.620132446 205.560073853 205.509780884 205.470230103 205.419937134 205.319839478 205.149917603 205.009780884 205.060073853 205.43019104 206.10987854 218.089996338 217.589996338 217.04019165 216.500152588 216.020172119 215.750152588 215.679840088 215.690093994 215.710113525 215.750152588 215.929840088 216.239898682 216.560211182 216.799957275 216.929840088 217.000152588 217.029937744 220.770202637 220.820007324 220.799987793 220.719909668 220.719909668 220.880065918 221.029968262 221.040222168 220.92010498 220.880065918 220.92010498 220.909851074 220.829772949 220.75994873 220.840026855 220.969909668 221.040222168 229.81980896 229.489730835 229.079574585 228.680160522 228.310043335 227.930160522 227.609848022 227.529769897 227.689926147 227.899887085 228.060043335 228.329574585 228.80027771 229.369613647 229.899887085 230.380355835 230.80027771 296.689697266 296.840087891 296.920166016 297.160400391 297.609619141 297.900634766 297.740478516 297.320556641 297.179931641 297.490478516 297.990478516 298.340087891 298.289306641 297.490478516 295.670166016 293.070556641 290.470947266 290.779541016 290.890869141 291.060791016 291.590087891 292.220947266 292.519775391 292.529541016 292.599853516 292.720947266 292.699462891 292.679931641 292.929931641 293.049072266 292.099853516 289.859619141 287.250244141 285.310791016 285.409057617 285.819213867 286.479370117 287.219604492 287.840698242 288.239135742 288.309448242 288.049682617 287.700073242 287.629760742 287.899291992 288.219604492 288.360229492 288.569213867 289.039916992 289.500854492 289.369995117 281.860778809 282.360778809 282.749450684 282.700622559 282.370544434 282.159606934 282.040466309 281.770935059 281.610778809 281.909606934 282.360778809 282.370544434 282.069763184 282.099060059 282.479919434 282.530700684 281.880310059 275.390472412 275.480316162 275.379730225 275.35043335 275.339691162 275.259613037 275.28012085 275.5496521 275.770355225 275.650238037 275.379730225 275.379730225 275.640472412 275.7996521 275.610198975 275.0496521 274.1199646 266.529724121 266.710388184 266.769958496 266.890075684 267.119567871 267.439880371 267.769958496 267.979919434 267.989685059 267.829528809 267.649841309 267.500427246 267.350036621 267.149841309 266.850036621 266.210388184 265.019958496 255.130310059 255.430114746 255.829528809 256.260192871 256.619567871 256.970153809 257.380310059 257.720153809 257.800231934 257.640075684 257.479919434 257.369567871 257.100036621 256.500427246 255.699645996 254.840270996 253.729919434 238.870193481 239.270095825 239.77986145 240.429763794 241.089920044 241.620193481 241.9400177 242.069900513 242.080154419 242.009841919 241.839920044 241.560134888 241.149978638 240.679763794 240.160232544 239.580154419 238.799880981 228.980056763 229.410232544 229.989822388 230.629959106 231.10017395 231.410232544 231.640213013 231.85017395 232.009841919 232.060134888 231.960037231 231.669998169 231.179763794 230.609939575 230.089920044 229.609939575 229.069900513 217.130172729 217.479782104 217.929977417 218.429977417 218.970016479 219.429977417 219.710250854 219.869918823 220.019821167 220.179977417 220.190231323 219.929977417 219.499801636 219.010055542 218.510055542 218.039840698 217.670211792 205.050140381 204.990081787 204.990081787 205.110198975 205.360198975 205.6199646 205.800140381 205.910003662 205.95980835 205.900238037 205.729827881 205.6199646 205.749847412 205.999847412 206.139984131 206.20980835 206.570159912 197.989883423 197.37953186 196.550430298 195.470352173 194.369766235 193.470352173 192.800430298 192.329727173 192.12953186 192.27015686 192.669570923 193.140274048 193.600234985 194.169570923 195.02015686 196.19984436 197.690078735 202.810348511 201.329879761 199.780075073 198.209762573 196.780075073 195.659957886 194.969528198 194.619918823 194.499801636 194.499801636 194.600387573 194.789840698 195.110153198 195.650192261 196.409957886 197.409957886 198.640426636 208.720230103 208.02003479 207.310073853 206.649917603 206.120132446 205.750015259 205.580093384 205.529800415 205.509780884 205.490249634 205.419937134 205.299819946 205.149917603 205.060073853 205.129898071 205.410171509 205.959976196 218.100250244 217.569976807 217.000152588 216.460113525 216.020172119 215.779937744 215.710113525 215.690093994 215.650054932 215.679840088 215.889801025 216.210113525 216.520172119 216.730133057 216.860015869 216.949859619 216.980133057 220.829772949 220.869812012 220.869812012 220.810241699 220.810241699 220.940124512 221.060241699 221.049987793 220.960144043 220.940124512 221.029968262 221.029968262 220.889831543 220.779968262 220.869812012 221.079772949 221.219909668 229.840316772 229.539535522 229.079574585 228.619613647 228.239730835 227.880355835 227.579574585 227.520004272 227.680160522 227.829574585 227.90965271 228.119613647 228.65965271 229.31980896 229.880355835 230.340316772 230.670394897 296.359619141 296.629150391 296.910400391 297.250244141 297.609619141 297.810791016 297.720947266 297.439697266 297.330322266 297.629150391 298.209228516 298.709228516 298.730712891 297.840087891 295.769775391 292.879150391 290.279541016 290.510009766 290.679931641 291.000244141 291.660400391 292.320556641 292.590087891 292.570556641 292.650634766 292.779541016 292.769775391 292.799072266 293.150634766 293.359619141 292.459228516 290.160400391 287.480712891 285.709228516 285.360229492 285.799682617 286.549682617 287.379760742 287.959838867 288.239135742 288.289916992 288.110229492 287.840698242 287.760620117 287.940307617 288.180541992 288.440307617 289.049682617 290.059448242 290.770385742 290.440307617 281.759216309 282.319763184 282.720153809 282.669372559 282.380310059 282.190856934 282.030700684 281.690856934 281.489685059 281.829528809 282.380310059 282.460388184 282.110778809 282.009216309 282.300231934 282.370544434 281.880310059 275.10043335 275.249847412 275.240081787 275.2996521 275.339691162 275.270355225 275.270355225 275.499847412 275.6902771 275.5496521 275.28012085 275.329925537 275.6902771 275.929534912 275.789886475 275.270355225 274.410003662 266.220153809 266.420349121 266.550231934 266.739685059 267.040466309 267.409606934 267.750427246 267.979919434 268.040466309 267.939880371 267.779724121 267.600036621 267.390075684 267.220153809 267.050231934 266.550231934 265.409606934 254.909606934 255.229919434 255.649841309 256.109802246 256.510192871 256.869567871 257.279724121 257.630310059 257.729919434 257.619567871 257.489685059 257.420349121 257.180114746 256.619567871 255.850036621 254.979919434 253.859802246 238.649978638 239.069900513 239.60017395 240.27986145 241.000076294 241.589920044 241.899978638 241.969802856 241.899978638 241.759841919 241.580154419 241.319900513 240.960037231 240.520095825 240.040115356 239.460037231 238.710037231 228.77986145 229.230056763 229.85017395 230.540115356 231.080154419 231.429763794 231.660232544 231.85017395 231.969802856 231.989822388 231.859939575 231.569900513 231.080154419 230.540115356 230.009841919 229.52986145 229.000076294 217.059860229 217.460250854 217.949996948 218.460250854 218.990036011 219.460250854 219.780075073 219.970016479 220.130172729 220.269821167 220.249801636 219.990036011 219.559860229 219.090133667 218.590133667 218.099899292 217.699996948 205.28012085 205.240081787 205.220062256 205.289886475 205.450042725 205.639984131 205.789886475 205.919769287 205.979827881 205.919769287 205.740081787 205.639984131 205.78012085 206.03012085 206.20980835 206.340179443 206.720062256 198.44984436 197.669570923 196.720352173 195.61000061 194.53968811 193.619766235 192.87953186 192.369766235 192.18031311 192.37953186 192.829727173 193.319961548 193.739883423 194.249649048 194.999649048 196.069961548 197.43031311 202.940231323 201.480270386 199.890426636 198.240036011 196.749801636 195.629684448 194.980270386 194.680465698 194.549606323 194.539840698 194.619918823 194.789840698 195.060348511 195.509567261 196.209762573 197.140426636 198.299606323 208.649917603 207.899917603 207.18019104 206.549819946 206.029800415 205.669937134 205.490249634 205.439956665 205.459976196 205.450210571 205.35987854 205.240249634 205.129898071 205.100112915 205.129898071 205.279800415 205.709976196 218.170074463 217.710113525 217.210113525 216.699859619 216.270172119 215.96987915 215.819976807 215.699859619 215.6300354 215.699859619 215.949859619 216.259918213 216.520172119 216.699859619 216.830230713 216.929840088 216.940093994 220.75994873 220.75994873 220.770202637 220.739929199 220.750183105 220.880065918 220.989929199 220.989929199 220.92010498 220.940124512 221.040222168 221.029968262 220.84979248 220.730163574 220.900085449 221.239929199 221.469909668 229.869613647 229.609848022 229.119613647 228.630355835 228.22996521 227.880355835 227.609848022 227.55027771 227.689926147 227.789535522 227.81980896 228.05027771 228.64012146 229.340316772 229.840316772 230.15965271 230.420394897 295.929931641 296.260009766 296.750244141 297.170166016 297.459228516 297.699462891 297.820556641 297.709228516 297.539306641 297.760009766 298.420166016 299.090087891 299.080322266 297.959228516 295.789306641 293.209228516 291.320556641 290.199462891 290.400634766 290.849853516 291.609619141 292.269775391 292.529541016 292.609619141 292.769775391 292.910400391 292.849853516 292.859619141 293.250244141 293.529541016 292.750244141 290.740478516 288.519775391 287.400634766 285.129760742 285.590698242 286.489135742 287.440307617 288.020385742 288.190307617 288.219604492 288.119995117 287.940307617 287.869995117 288.000854492 288.180541992 288.510620117 289.399291992 290.760620117 291.659057617 291.209838867 281.690856934 282.319763184 282.700622559 282.649841309 282.360778809 282.190856934 282.040466309 281.659606934 281.370544434 281.649841309 282.290466309 282.499450684 282.169372559 281.909606934 282.020935059 282.099060059 281.790466309 274.820159912 275.009613037 275.079925537 275.230316162 275.329925537 275.289886475 275.289886475 275.499847412 275.669769287 275.480316162 275.20980835 275.2996521 275.740081787 276.039886475 275.879730225 275.339691162 274.539886475 265.890075684 266.109802246 266.309997559 266.569763184 266.939880371 267.369567871 267.750427246 267.989685059 268.079528809 268.029724121 267.930114746 267.739685059 267.519958496 267.350036621 267.189880371 266.760192871 265.699645996 254.680114746 255.019958496 255.460388184 255.939880371 256.350036621 256.739685059 257.180114746 257.569763184 257.720153809 257.630310059 257.510192871 257.430114746 257.199645996 256.699645996 255.979919434 255.140075684 254.000427246 238.4400177 238.839920044 239.379959106 240.10017395 240.899978638 241.560134888 241.890213013 241.910232544 241.759841919 241.589920044 241.419998169 241.169998169 240.810134888 240.370193481 239.879959106 239.330154419 238.620193481 228.60017395 229.080154419 229.750076294 230.480056763 231.069900513 231.449783325 231.669998169 231.799880981 231.839920044 231.830154419 231.739822388 231.460037231 230.989822388 230.460037231 229.949783325 229.489822388 228.960037231 217.050094604 217.499801636 218.010055542 218.519821167 219.039840698 219.510055542 219.840133667 220.030075073 220.150192261 220.249801636 220.210250854 219.949996948 219.550094604 219.130172729 218.670211792 218.179977417 217.760055542 205.550140381 205.510101318 205.490081787 205.490081787 205.550140381 205.639984131 205.78012085 205.919769287 206.010101318 205.939788818 205.769866943 205.680023193 205.820159912 206.079925537 206.269866943 206.439788818 206.829925537 198.93031311 197.959609985 196.87953186 195.749649048 194.69984436 193.779922485 192.999649048 192.470352173 192.310195923 192.550430298 193.02015686 193.499649048 193.919570923 194.350234985 194.999649048 195.93031311 197.159805298 203.039840698 201.589645386 199.959762573 198.219528198 196.669723511 195.539840698 194.909957886 194.619918823 194.509567261 194.480270386 194.560348511 194.709762573 194.959762573 195.379684448 196.030075073 196.860153198 197.890426636 208.540054321 207.759780884 207.060073853 206.459976196 205.979995728 205.629898071 205.470230103 205.439956665 205.470230103 205.450210571 205.350112915 205.229995728 205.149917603 205.089859009 205.029800415 205.080093384 205.470230103 218.21987915 217.850250244 217.420074463 216.949859619 216.46987915 216.069976807 215.770172119 215.549957275 215.460113525 215.600250244 215.920074463 216.250152588 216.509918213 216.699859619 216.8800354 217.009918213 216.980133057 220.619812012 220.630065918 220.659851074 220.679870605 220.730163574 220.869812012 221.000183105 221.020202637 220.960144043 220.960144043 221.020202637 220.969909668 220.779968262 220.679870605 220.860046387 221.250183105 221.500183105 229.899887085 229.579574585 229.05027771 228.55027771 228.170394897 227.869613647 227.64012146 227.579574585 227.680160522 227.770004272 227.840316772 228.130355835 228.750473022 229.430160522 229.869613647 230.149887085 230.470199585 295.599853516 295.890869141 296.480712891 296.980712891 297.279541016 297.640869141 298.019775391 298.019775391 297.699462891 297.750244141 298.500244141 299.330322266 299.279541016 298.129150391 296.439697266 295.019775391 294.510009766 289.949462891 290.129150391 290.679931641 291.529541016 292.209228516 292.510009766 292.699462891 292.970947266 293.080322266 292.920166016 292.900634766 293.330322266 293.709228516 293.240478516 291.980712891 290.879150391 290.830322266 284.879760742 285.319213867 286.330932617 287.420776367 288.010620117 288.159057617 288.180541992 288.139526367 287.969604492 287.889526367 288.049682617 288.260620117 288.580932617 289.489135742 291.000854492 292.149291992 291.959838867 281.759216309 282.409606934 282.729919434 282.630310059 282.300231934 282.099060059 281.979919434 281.649841309 281.290466309 281.450622559 282.059997559 282.409606934 282.140075684 281.749450684 281.729919434 281.890075684 281.870544434 274.660003662 274.8699646 274.980316162 275.1902771 275.360198975 275.339691162 275.35043335 275.53012085 275.650238037 275.45980835 275.200042725 275.339691162 275.820159912 276.10043335 275.860198975 275.249847412 274.509613037 265.550231934 265.800231934 266.059997559 266.409606934 266.869567871 267.359802246 267.779724121 268.019958496 268.090270996 268.069763184 268.029724121 267.939880371 267.769958496 267.559997559 267.329528809 266.850036621 265.850036621 254.380310059 254.769958496 255.239685059 255.729919434 256.159606934 256.579528809 257.079528809 257.540466309 257.739685059 257.670349121 257.500427246 257.350036621 257.119567871 256.670349121 256.050231934 255.239685059 254.090270996 238.230056763 238.629959106 239.1900177 239.949783325 240.810134888 241.500076294 241.839920044 241.839920044 241.679763794 241.509841919 241.339920044 241.080154419 240.699783325 240.219802856 239.739822388 239.219802856 238.569900513 228.429763794 228.980056763 229.6900177 230.449783325 231.069900513 231.469802856 231.669998169 231.710037231 231.6900177 231.679763794 231.629959106 231.390213013 230.910232544 230.359939575 229.890213013 229.449783325 228.9400177 217.079879761 217.570114136 218.090133667 218.610153198 219.130172729 219.579879761 219.860153198 219.979782104 220.039840698 220.110153198 220.070114136 219.860153198 219.530075073 219.170211792 218.760055542 218.289840698 217.849899292 205.840179443 205.820159912 205.769866943 205.70980835 205.660003662 205.680023193 205.800140381 205.970062256 206.079925537 206.03012085 205.849945068 205.769866943 205.889984131 206.139984131 206.320159912 206.490081787 206.820159912 199.489883423 198.36000061 197.150039673 195.980117798 194.900039673 193.919570923 193.079727173 192.52015686 192.369766235 192.619766235 193.100234985 193.619766235 194.060195923 194.480117798 195.029922485 195.84046936 196.970352173 203.049606323 201.600387573 199.930465698 198.159957886 196.570114136 195.449996948 194.820114136 194.549606323 194.430465698 194.409957886 194.449996948 194.560348511 194.789840698 195.219528198 195.829879761 196.560348511 197.440231323 208.470230103 207.689956665 207.009780884 206.439956665 205.979995728 205.640151978 205.490249634 205.490249634 205.52003479 205.500015259 205.419937134 205.319839478 205.220230103 205.089859009 204.959976196 205.02003479 205.490249634 218.190093994 217.860015869 217.46987915 217.009918213 216.500152588 216.020172119 215.610015869 215.299957275 215.190093994 215.350250244 215.699859619 216.080230713 216.400054932 216.670074463 216.900054932 217.000152588 216.929840088 220.610046387 220.659851074 220.739929199 220.75994873 220.810241699 220.940124512 221.079772949 221.139831543 221.110046387 221.079772949 221.090026855 221.020202637 220.840026855 220.719909668 220.810241699 221.070007324 221.219909668 229.90965271 229.439926147 228.840316772 228.359848022 228.06980896 227.859848022 227.649887085 227.55027771 227.579574585 227.670394897 227.80027771 228.119613647 228.720199585 229.380355835 229.939926147 230.46043396 231.079574585 295.340087891 295.590087891 296.289306641 296.890869141 297.230712891 297.660400391 298.189697266 298.209228516 297.760009766 297.730712891 298.599853516 299.549072266 299.480712891 298.529541016 297.750244141 297.810791016 298.609619141 289.679931641 289.869384766 290.560791016 291.549072266 292.299072266 292.609619141 292.830322266 293.099853516 293.150634766 292.970947266 293.039306641 293.599853516 294.080322266 294.000244141 293.660400391 293.820556641 294.709228516 284.700073242 285.149291992 286.229370117 287.399291992 288.039916992 288.209838867 288.280151367 288.219604492 287.969604492 287.869995117 288.139526367 288.500854492 288.760620117 289.440307617 290.879760742 292.309448242 292.670776367 281.979919434 282.559997559 282.809997559 282.649841309 282.239685059 281.929138184 281.829528809 281.620544434 281.270935059 281.300231934 281.819763184 282.220153809 281.999450684 281.530700684 281.450622559 281.809997559 282.130310059 274.640472412 274.839691162 274.95980835 275.20980835 275.429534912 275.4402771 275.410003662 275.5496521 275.650238037 275.480316162 275.270355225 275.45980835 275.9402771 276.150238037 275.7996521 275.110198975 274.379730225 265.269958496 265.519958496 265.829528809 266.260192871 266.800231934 267.359802246 267.790466309 268.029724121 268.079528809 268.069763184 268.100036621 268.119567871 268.050231934 267.840270996 267.500427246 266.899841309 265.909606934 253.970153809 254.430114746 254.970153809 255.500427246 255.970153809 256.460388184 257.019958496 257.540466309 257.779724121 257.689880371 257.449645996 257.210388184 256.939880371 256.559997559 256.019958496 255.250427246 254.109802246 237.989822388 238.419998169 239.02986145 239.839920044 240.719802856 241.399978638 241.739822388 241.739822388 241.609939575 241.460037231 241.270095825 240.980056763 240.569900513 240.089920044 239.620193481 239.129959106 238.540115356 228.27986145 228.919998169 229.699783325 230.489822388 231.109939575 231.509841919 231.660232544 231.629959106 231.560134888 231.549880981 231.52986145 231.299880981 230.819900513 230.259841919 229.799880981 229.390213013 228.890213013 217.159957886 217.690231323 218.229782104 218.760055542 219.260055542 219.659957886 219.849899292 219.880172729 219.869918823 219.920211792 219.940231323 219.800094604 219.539840698 219.210250854 218.840133667 218.400192261 217.970016479 206.160003662 206.110198975 206.03012085 205.900238037 205.760101318 205.729827881 205.849945068 206.079925537 206.229827881 206.180023193 205.999847412 205.900238037 206.019866943 206.229827881 206.380218506 206.490081787 206.760101318 200.159805298 198.87953186 197.569961548 196.34046936 195.159805298 194.03968811 193.11000061 192.510391235 192.329727173 192.53968811 193.029922485 193.61000061 194.12953186 194.550430298 195.050430298 195.800430298 196.86000061 202.949996948 201.499801636 199.799606323 198.009567261 196.440231323 195.339645386 194.749801636 194.509567261 194.430465698 194.409957886 194.400192261 194.449996948 194.659957886 195.070114136 195.629684448 196.249801636 197.030075073 208.399917603 207.660171509 207.009780884 206.450210571 205.959976196 205.60987854 205.470230103 205.459976196 205.490249634 205.479995728 205.450210571 205.399917603 205.27003479 205.120132446 205.02003479 205.209976196 205.819839478 218.139801025 217.799957275 217.400054932 216.940093994 216.440093994 215.960113525 215.529937744 215.179840088 215.029937744 215.150054932 215.500152588 215.900054932 216.279937744 216.589996338 216.799957275 216.839996338 216.71987915 220.710144043 220.790222168 220.880065918 220.869812012 220.84979248 220.929870605 221.070007324 221.179870605 221.210144043 221.179870605 221.139831543 221.09979248 221.000183105 220.900085449 220.820007324 220.820007324 220.770202637 229.939926147 229.380355835 228.72996521 228.289535522 228.119613647 227.97996521 227.760238647 227.539535522 227.46043396 227.529769897 227.689926147 227.989730835 228.470199585 229.130355835 229.96043396 230.930160522 231.920394897 294.970947266 295.240478516 296.070556641 296.849853516 297.289306641 297.730712891 298.230712891 298.260009766 297.849853516 297.910400391 298.879150391 299.810791016 299.679931641 298.959228516 298.890869141 299.910400391 301.179931641 289.289306641 289.519775391 290.379150391 291.580322266 292.449462891 292.779541016 292.939697266 293.119384766 293.150634766 293.039306641 293.289306641 293.970947266 294.539306641 294.670166016 294.900634766 295.820556641 297.010009766 284.559448242 285.090698242 286.219604492 287.430541992 288.080932617 288.280151367 288.399291992 288.330932617 288.010620117 287.879760742 288.309448242 288.840698242 289.049682617 289.409057617 290.600463867 292.180541992 292.969604492 282.249450684 282.710388184 282.870544434 282.720153809 282.229919434 281.800231934 281.669372559 281.579528809 281.319763184 281.259216309 281.669372559 282.050231934 281.819763184 281.280700684 281.190856934 281.720153809 282.319763184 274.6199646 274.789886475 274.929534912 275.230316162 275.509613037 275.539886475 275.480316162 275.560394287 275.650238037 275.520355225 275.390472412 275.610198975 276.0496521 276.200042725 275.78012085 275.0496521 274.320159912 265.029724121 265.309997559 265.680114746 266.199645996 266.790466309 267.340270996 267.760192871 267.989685059 268.050231934 268.050231934 268.119567871 268.250427246 268.300231934 268.130310059 267.710388184 267.010192871 265.970153809 253.479919434 254.029724121 254.659606934 255.279724121 255.840270996 256.420349121 257.029724121 257.540466309 257.779724121 257.670349121 257.369567871 257.059997559 256.760192871 256.430114746 255.949645996 255.210388184 254.119567871 237.679763794 238.179763794 238.879959106 239.750076294 240.640213013 241.290115356 241.60017395 241.620193481 241.52986145 241.379959106 241.169998169 240.85017395 240.429763794 239.969802856 239.520095825 239.040115356 238.489822388 228.179763794 228.899978638 229.739822388 230.52986145 231.140213013 231.509841919 231.649978638 231.589920044 231.480056763 231.460037231 231.429763794 231.219802856 230.730056763 230.179763794 229.719802856 229.299880981 228.799880981 217.320114136 217.860153198 218.409957886 218.940231323 219.409957886 219.729782104 219.829879761 219.769821167 219.720016479 219.780075073 219.860153198 219.800094604 219.579879761 219.269821167 218.900192261 218.490036011 218.090133667 206.559906006 206.450042725 206.28012085 206.079925537 205.889984131 205.840179443 205.970062256 206.220062256 206.400238037 206.360198975 206.200042725 206.099945068 206.180023193 206.349945068 206.450042725 206.519866943 206.740081787 200.800430298 199.409805298 198.02015686 196.69984436 195.37953186 194.140274048 193.150039673 192.550430298 192.350234985 192.480117798 192.919570923 193.53968811 194.11000061 194.53968811 194.999649048 195.720352173 196.749649048 202.759567261 201.280075073 199.539840698 197.740036011 196.199996948 195.150192261 194.589645386 194.400192261 194.369918823 194.379684448 194.379684448 194.430465698 194.619918823 194.980270386 195.459762573 196.009567261 196.780075073 208.319839478 207.620132446 207.02003479 206.459976196 205.950210571 205.580093384 205.43019104 205.419937134 205.419937134 205.399917603 205.399917603 205.379898071 205.259780884 205.10987854 205.140151978 205.509780884 206.220230103 218.139801025 217.750152588 217.319976807 216.850250244 216.360015869 215.8800354 215.420074463 215.069976807 214.929840088 215.069976807 215.429840088 215.869781494 216.270172119 216.560211182 216.670074463 216.619781494 216.480133057 220.750183105 220.84979248 220.909851074 220.84979248 220.750183105 220.779968262 220.949890137 221.139831543 221.219909668 221.17010498 221.070007324 221.020202637 221.029968262 220.989929199 220.840026855 220.619812012 220.369812012 230.010238647 229.47996521 228.869613647 228.489730835 228.359848022 228.22996521 227.920394897 227.560043335 227.399887085 227.510238647 227.760238647 228.000473022 228.310043335 228.939926147 230.000473022 231.31980896 232.510238647 294.529541016 294.750244141 295.689697266 296.699462891 297.310791016 297.750244141 298.199462891 298.299072266 298.099853516 298.299072266 299.189697266 299.910400391 299.679931641 299.129150391 299.349853516 300.359619141 301.099853516 288.869384766 289.099853516 290.070556641 291.480712891 292.519775391 292.879150391 293.010009766 293.160400391 293.189697266 293.129150391 293.429931641 294.150634766 294.750244141 294.959228516 295.349853516 296.289306641 297.109619141 284.369995117 285.049682617 286.250854492 287.459838867 288.100463867 288.289916992 288.420776367 288.409057617 288.090698242 287.940307617 288.420776367 289.069213867 289.299682617 289.450073242 290.360229492 291.830932617 292.659057617 282.540466309 282.809997559 282.880310059 282.780700684 282.309997559 281.780700684 281.599060059 281.589294434 281.399841309 281.270935059 281.569763184 281.929138184 281.690856934 281.059997559 280.909606934 281.509216309 282.220153809 274.53012085 274.6902771 274.839691162 275.169769287 275.509613037 275.579925537 275.53012085 275.570159912 275.640472412 275.570159912 275.490081787 275.70980835 276.1199646 276.259613037 275.879730225 275.179534912 274.419769287 264.819763184 265.170349121 265.659606934 266.269958496 266.880310059 267.350036621 267.689880371 267.899841309 268.000427246 268.029724121 268.119567871 268.300231934 268.439880371 268.350036621 267.920349121 267.149841309 266.059997559 253.059997559 253.659606934 254.380310059 255.119567871 255.829528809 256.500427246 257.130310059 257.600036621 257.769958496 257.640075684 257.300231934 256.960388184 256.649841309 256.340270996 255.909606934 255.210388184 254.170349121 237.330154419 237.919998169 238.719802856 239.649978638 240.52986145 241.160232544 241.449783325 241.500076294 241.4400177 241.310134888 241.049880981 240.710037231 240.299880981 239.879959106 239.419998169 238.929763794 238.359939575 228.080154419 228.879959106 229.730056763 230.509841919 231.109939575 231.480056763 231.629959106 231.560134888 231.429763794 231.379959106 231.35017395 231.149978638 230.719802856 230.160232544 229.649978638 229.179763794 228.669998169 217.490036011 218.050094604 218.590133667 219.099899292 219.519821167 219.769821167 219.809860229 219.710250854 219.650192261 219.720016479 219.829879761 219.800094604 219.599899292 219.280075073 218.920211792 218.530075073 218.150192261 207.03012085 206.829925537 206.579925537 206.289886475 206.059906006 206.010101318 206.139984131 206.3699646 206.519866943 206.490081787 206.349945068 206.28012085 206.360198975 206.499847412 206.599945068 206.650238037 206.840179443 201.28968811 199.78968811 198.329727173 196.890274048 195.440078735 194.119766235 193.18031311 192.690078735 192.499649048 192.569961548 192.919570923 193.499649048 194.060195923 194.43031311 194.819961548 195.52015686 196.550430298 202.490036011 200.959762573 199.169723511 197.360153198 195.869918823 194.869918823 194.339645386 194.140426636 194.150192261 194.219528198 194.289840698 194.409957886 194.600387573 194.930465698 195.339645386 195.900192261 196.759567261 208.229995728 207.569839478 207.02003479 206.500015259 205.990249634 205.629898071 205.509780884 205.509780884 205.470230103 205.419937134 205.399917603 205.35987854 205.220230103 205.089859009 205.200210571 205.660171509 206.379898071 218.100250244 217.659820557 217.190093994 216.690093994 216.159820557 215.619781494 215.110015869 214.759918213 214.699859619 214.949859619 215.400054932 215.920074463 216.350250244 216.589996338 216.619781494 216.529937744 216.460113525 220.719909668 220.840026855 220.889831543 220.799987793 220.699890137 220.739929199 220.960144043 221.219909668 221.320007324 221.179870605 220.929870605 220.820007324 220.880065918 220.92010498 220.779968262 220.480163574 220.110046387 230.06980896 229.600082397 229.05027771 228.71043396 228.56980896 228.369613647 227.930160522 227.449691772 227.270004272 227.520004272 227.939926147 228.21043396 228.430160522 229.020004272 230.180160522 231.590316772 232.649887085 294.179931641 294.299072266 295.230712891 296.439697266 297.289306641 297.820556641 298.240478516 298.429931641 298.390869141 298.609619141 299.209228516 299.619384766 299.459228516 299.250244141 299.560791016 300.000244141 299.709228516 288.510009766 288.740478516 289.769775391 291.330322266 292.510009766 292.949462891 293.140869141 293.359619141 293.439697266 293.330322266 293.459228516 294.090087891 294.760009766 295.140869141 295.510009766 296.080322266 296.209228516 284.180541992 285.000854492 286.280151367 287.539916992 288.159057617 288.280151367 288.399291992 288.450073242 288.239135742 288.080932617 288.450073242 289.090698242 289.399291992 289.569213867 290.280151367 291.430541992 291.920776367 282.919372559 282.979919434 282.909606934 282.849060059 282.419372559 281.829528809 281.579528809 281.579528809 281.409606934 281.229919434 281.470153809 281.839294434 281.620544434 280.919372559 280.649841309 281.190856934 281.829528809 274.450042725 274.629730225 274.789886475 275.110198975 275.4402771 275.539886475 275.509613037 275.5496521 275.610198975 275.570159912 275.53012085 275.749847412 276.129730225 276.320159912 276.070159912 275.469573975 274.6902771 264.649841309 265.140075684 265.769958496 266.500427246 267.100036621 267.460388184 267.659606934 267.840270996 267.979919434 268.040466309 268.109802246 268.269958496 268.460388184 268.449645996 268.040466309 267.250427246 266.130310059 252.790466309 253.409606934 254.199645996 255.040466309 255.880310059 256.659606934 257.309997559 257.699645996 257.819763184 257.649841309 257.309997559 256.930114746 256.609802246 256.300231934 255.890075684 255.239685059 254.269958496 237.049880981 237.719802856 238.580154419 239.540115356 240.410232544 241.009841919 241.299880981 241.379959106 241.35017395 241.230056763 240.969802856 240.60017395 240.210037231 239.799880981 239.339920044 238.790115356 238.199783325 227.989822388 228.799880981 229.669998169 230.4400177 231.040115356 231.419998169 231.580154419 231.52986145 231.390213013 231.310134888 231.27986145 231.140213013 230.759841919 230.210037231 229.629959106 229.069900513 228.52986145 217.650192261 218.190231323 218.720016479 219.220016479 219.599899292 219.789840698 219.789840698 219.690231323 219.650192261 219.710250854 219.789840698 219.760055542 219.570114136 219.280075073 218.920211792 218.550094604 218.159957886 207.550140381 207.249847412 206.8699646 206.499847412 206.269866943 206.229827881 206.349945068 206.510101318 206.599945068 206.559906006 206.45980835 206.430023193 206.53012085 206.680023193 206.78012085 206.849945068 207.03012085 201.529922485 199.94984436 198.400039673 196.84046936 195.230117798 193.850234985 192.999649048 192.650039673 192.560195923 192.619766235 192.94984436 193.489883423 193.989883423 194.249649048 194.53968811 195.209609985 196.310195923 202.150192261 200.570114136 198.770309448 197.030075073 195.659957886 194.749801636 194.240036011 194.009567261 193.959762573 194.020309448 194.150192261 194.329879761 194.560348511 194.850387573 195.270309448 195.900192261 196.909957886 208.120132446 207.479995728 206.979995728 206.490249634 206.000015259 205.649917603 205.569839478 205.600112915 205.589859009 205.529800415 205.490249634 205.419937134 205.259780884 205.120132446 205.209976196 205.629898071 206.250015259 218.009918213 217.509918213 217.020172119 216.54019165 216.009918213 215.400054932 214.850250244 214.500152588 214.509918213 214.839996338 215.339996338 215.869781494 216.299957275 216.549957275 216.610015869 216.600250244 216.639801025 220.730163574 220.889831543 220.940124512 220.829772949 220.739929199 220.84979248 221.130065918 221.42010498 221.500183105 221.290222168 220.949890137 220.75994873 220.799987793 220.84979248 220.699890137 220.369812012 219.960144043 230.000473022 229.539535522 229.039535522 228.72996521 228.55027771 228.250473022 227.71043396 227.15965271 227.000473022 227.359848022 227.880355835 228.220199585 228.489730835 229.180160522 230.420394897 231.750473022 232.539535522 293.959228516 294.039306641 294.959228516 296.330322266 297.420166016 298.019775391 298.379150391 298.549072266 298.580322266 298.679931641 298.959228516 299.189697266 299.310791016 299.650634766 300.160400391 300.090087891 298.959228516 288.179931641 288.519775391 289.660400391 291.330322266 292.619384766 293.119384766 293.349853516 293.660400391 293.810791016 293.590087891 293.500244141 294.010009766 294.879150391 295.570556641 295.990478516 296.150634766 295.679931641 284.119995117 285.090698242 286.459838867 287.780151367 288.409057617 288.440307617 288.440307617 288.530151367 288.450073242 288.299682617 288.520385742 289.049682617 289.469604492 289.780151367 290.360229492 291.069213867 291.080932617 283.470153809 283.309997559 283.040466309 282.899841309 282.479919434 281.829528809 281.530700684 281.530700684 281.360778809 281.120544434 281.329528809 281.749450684 281.599060059 280.880310059 280.509216309 280.899841309 281.390075684 274.560394287 274.78012085 274.919769287 275.150238037 275.379730225 275.469573975 275.469573975 275.509613037 275.5496521 275.509613037 275.520355225 275.730316162 276.110198975 276.35043335 276.249847412 275.789886475 274.990081787 264.600036621 265.220153809 266.010192871 266.809997559 267.369567871 267.600036621 267.710388184 267.859802246 268.019958496 268.079528809 268.090270996 268.210388184 268.420349121 268.430114746 268.040466309 267.250427246 266.140075684 252.649841309 253.309997559 254.159606934 255.079528809 256.000427246 256.840270996 257.479919434 257.850036621 257.909606934 257.720153809 257.380310059 257.000427246 256.640075684 256.279724121 255.859802246 255.229919434 254.340270996 236.879959106 237.609939575 238.509841919 239.469802856 240.330154419 240.910232544 241.199783325 241.290115356 241.290115356 241.199783325 240.9400177 240.549880981 240.140213013 239.750076294 239.270095825 238.6900177 238.069900513 227.919998169 228.750076294 229.620193481 230.419998169 231.009841919 231.390213013 231.52986145 231.469802856 231.319900513 231.239822388 231.230056763 231.140213013 230.830154419 230.290115356 229.620193481 228.969802856 228.390213013 217.760055542 218.289840698 218.820114136 219.289840698 219.659957886 219.809860229 219.780075073 219.690231323 219.670211792 219.720016479 219.760055542 219.710250854 219.539840698 219.289840698 218.970016479 218.579879761 218.150192261 207.999847412 207.610198975 207.110198975 206.669769287 206.439788818 206.430023193 206.550140381 206.650238037 206.660003662 206.599945068 206.550140381 206.559906006 206.669769287 206.829925537 206.970062256 207.079925537 207.240081787 201.53968811 199.909805298 198.279922485 196.579727173 194.84046936 193.37953186 192.550430298 192.28968811 192.300430298 192.470352173 192.86000061 193.419570923 193.850234985 194.02015686 194.239883423 194.919570923 196.100234985 201.770309448 200.150192261 198.419723511 196.839645386 195.650192261 194.890426636 194.440231323 194.169723511 194.030075073 194.030075073 194.119918823 194.289840698 194.490036011 194.759567261 195.219528198 195.980270386 197.119918823 207.950210571 207.279800415 206.77003479 206.27003479 205.779800415 205.439956665 205.35987854 205.459976196 205.52003479 205.509780884 205.509780884 205.490249634 205.370132446 205.240249634 205.27003479 205.549819946 206.029800415 217.940093994 217.460113525 217.029937744 216.650054932 216.210113525 215.650054932 215.100250244 214.750152588 214.730133057 215.000152588 215.3800354 215.770172119 216.139801025 216.420074463 216.600250244 216.71987915 216.889801025 220.869812012 220.989929199 220.949890137 220.770202637 220.679870605 220.820007324 221.110046387 221.400085449 221.480163574 221.310241699 221.040222168 220.909851074 220.929870605 220.889831543 220.67010498 220.320007324 219.900085449 229.850082397 229.380355835 228.97996521 228.699691772 228.470199585 228.090316772 227.510238647 226.97996521 226.81980896 227.130355835 227.56980896 227.869613647 228.239730835 229.14012146 230.520004272 231.760238647 232.359848022 293.599853516 293.910400391 294.949462891 296.470947266 297.709228516 298.330322266 298.529541016 298.599853516 298.629150391 298.699462891 298.869384766 299.099853516 299.490478516 300.220947266 300.859619141 300.570556641 299.099853516 287.699462891 288.310791016 289.660400391 291.500244141 292.879150391 293.379150391 293.519775391 293.830322266 294.029541016 293.799072266 293.619384766 294.109619141 295.129150391 296.029541016 296.420166016 296.260009766 295.429931641 284.250854492 285.399291992 286.830932617 288.190307617 288.819213867 288.719604492 288.539916992 288.590698242 288.629760742 288.559448242 288.700073242 289.159057617 289.639526367 289.989135742 290.369995117 290.629760742 290.260620117 283.979919434 283.690856934 283.179138184 282.870544434 282.370544434 281.700622559 281.399841309 281.440856934 281.309997559 281.059997559 281.220153809 281.659606934 281.579528809 280.899841309 280.479919434 280.770935059 281.099060059 274.860198975 275.140472412 275.240081787 275.289886475 275.3699646 275.419769287 275.4402771 275.469573975 275.469573975 275.450042725 275.490081787 275.719573975 276.060394287 276.320159912 276.329925537 275.950042725 275.150238037 264.779724121 265.470153809 266.279724121 267.040466309 267.519958496 267.710388184 267.800231934 267.989685059 268.159606934 268.149841309 268.090270996 268.159606934 268.350036621 268.350036621 267.960388184 267.189880371 266.109802246 252.630310059 253.369567871 254.309997559 255.290466309 256.210388184 257.010192871 257.619567871 257.949645996 257.979919434 257.769958496 257.449645996 257.069763184 256.680114746 256.260192871 255.769958496 255.149841309 254.340270996 236.819900513 237.609939575 238.549880981 239.520095825 240.35017395 240.919998169 241.169998169 241.259841919 241.299880981 241.239822388 241.000076294 240.580154419 240.140213013 239.730056763 239.250076294 238.660232544 237.980056763 227.960037231 228.770095825 229.640213013 230.429763794 231.020095825 231.370193481 231.489822388 231.399978638 231.270095825 231.179763794 231.199783325 231.149978638 230.879959106 230.359939575 229.660232544 228.9400177 228.27986145 217.889938354 218.389938354 218.889938354 219.369918823 219.710250854 219.849899292 219.789840698 219.710250854 219.699996948 219.749801636 219.769821167 219.710250854 219.570114136 219.380172729 219.079879761 218.659957886 218.130172729 208.320159912 207.829925537 207.260101318 206.769866943 206.550140381 206.550140381 206.650238037 206.689788818 206.660003662 206.599945068 206.559906006 206.590179443 206.720062256 206.919769287 207.099945068 207.240081787 207.400238037 201.310195923 199.619766235 197.940078735 196.169570923 194.400039673 192.94984436 192.119766235 191.890274048 191.980117798 192.279922485 192.779922485 193.34046936 193.690078735 193.77015686 193.970352173 194.709609985 195.980117798 201.360153198 199.759567261 198.129684448 196.719528198 195.680465698 195.009567261 194.619918823 194.390426636 194.240036011 194.180465698 194.219528198 194.310348511 194.430465698 194.650192261 195.159957886 196.060348511 197.280075073 207.720230103 206.990249634 206.439956665 205.959976196 205.470230103 205.129898071 205.060073853 205.18019104 205.279800415 205.339859009 205.390151978 205.450210571 205.439956665 205.379898071 205.379898071 205.560073853 205.919937134 218.000152588 217.580230713 217.230133057 216.940093994 216.589996338 216.119781494 215.619781494 215.279937744 215.230133057 215.389801025 215.619781494 215.839996338 216.110015869 216.409820557 216.670074463 216.869781494 217.029937744 220.989929199 220.989929199 220.75994873 220.480163574 220.389831543 220.560241699 220.860046387 221.09979248 221.17010498 221.09979248 220.989929199 220.989929199 221.00994873 220.880065918 220.610046387 220.290222168 219.940124512 229.750473022 229.439926147 229.189926147 228.949691772 228.590316772 228.090316772 227.539535522 227.090316772 226.96043396 227.130355835 227.380355835 227.579574585 228.039535522 229.100082397 230.520004272 231.64012146 232.14012146 293.019775391 293.730712891 294.990478516 296.670166016 298.019775391 298.580322266 298.619384766 298.580322266 298.650634766 298.869384766 299.150634766 299.420166016 299.760009766 300.310791016 300.720947266 300.310791016 298.949462891 287.129150391 287.980712891 289.570556641 291.660400391 293.220947266 293.709228516 293.679931641 293.830322266 294.019775391 293.900634766 293.779541016 294.250244141 295.179931641 295.859619141 295.939697266 295.500244141 294.549072266 284.520385742 285.869995117 287.309448242 288.619995117 289.209838867 289.010620117 288.639526367 288.569213867 288.670776367 288.709838867 288.899291992 289.350463867 289.789916992 289.969604492 289.969604492 289.850463867 289.330932617 284.239685059 283.880310059 283.220153809 282.780700684 282.210388184 281.530700684 281.259216309 281.360778809 281.280700684 281.040466309 281.169372559 281.599060059 281.569763184 280.960388184 280.569763184 280.770935059 280.960388184 275.249847412 275.5496521 275.570159912 275.45980835 275.379730225 275.3699646 275.400238037 275.429534912 275.400238037 275.390472412 275.490081787 275.719573975 275.999847412 276.219573975 276.240081787 275.919769287 275.140472412 265.180114746 265.819763184 266.510192871 267.119567871 267.510192871 267.720153809 267.920349121 268.199645996 268.359802246 268.269958496 268.119567871 268.149841309 268.319763184 268.290466309 267.890075684 267.130310059 266.109802246 252.710388184 253.559997559 254.600036621 255.619567871 256.470153809 257.170349121 257.680114746 257.960388184 257.960388184 257.760192871 257.460388184 257.130310059 256.739685059 256.250427246 255.670349121 255.029724121 254.260192871 236.870193481 237.710037231 238.699783325 239.669998169 240.489822388 241.020095825 241.259841919 241.339920044 241.379959106 241.339920044 241.10017395 240.660232544 240.179763794 239.739822388 239.270095825 238.669998169 237.949783325 228.069900513 228.839920044 229.669998169 230.429763794 231.000076294 231.330154419 231.4400177 231.370193481 231.259841919 231.1900177 231.199783325 231.149978638 230.910232544 230.429763794 229.770095825 229.000076294 228.250076294 218.019821167 218.479782104 218.949996948 219.400192261 219.749801636 219.880172729 219.840133667 219.749801636 219.760055542 219.840133667 219.860153198 219.800094604 219.670211792 219.519821167 219.249801636 218.780075073 218.150192261 208.499847412 207.950042725 207.360198975 206.880218506 206.630218506 206.599945068 206.639984131 206.630218506 206.559906006 206.490081787 206.450042725 206.490081787 206.650238037 206.900238037 207.139984131 207.329925537 207.519866943 200.87953186 199.11000061 197.37953186 195.669570923 194.060195923 192.779922485 192.050430298 191.86000061 192.02015686 192.390274048 192.890274048 193.329727173 193.529922485 193.53968811 193.779922485 194.600234985 195.93031311 200.969528198 199.419723511 197.909957886 196.549606323 195.480270386 194.770309448 194.400192261 194.240036011 194.159957886 194.150192261 194.209762573 194.289840698 194.360153198 194.549606323 195.110153198 196.079879761 197.339645386 207.52003479 206.750015259 206.209976196 205.839859009 205.500015259 205.229995728 205.140151978 205.189956665 205.250015259 205.27003479 205.299819946 205.379898071 205.450210571 205.470230103 205.490249634 205.60987854 205.919937134 218.049957275 217.679840088 217.310211182 216.929840088 216.500152588 216.009918213 215.549957275 215.279937744 215.330230713 215.589996338 215.889801025 216.150054932 216.3800354 216.650054932 216.869781494 217.020172119 217.049957275 220.980163574 220.810241699 220.500183105 220.239929199 220.279968262 220.570007324 220.869812012 221.040222168 221.029968262 220.909851074 220.820007324 220.790222168 220.750183105 220.59979248 220.42010498 220.290222168 220.119812012 229.81980896 229.750473022 229.630355835 229.289535522 228.699691772 228.029769897 227.47996521 227.14012146 227.079574585 227.239730835 227.46043396 227.750473022 228.369613647 229.46043396 230.65965271 231.47996521 231.869613647 292.629150391 293.519775391 294.910400391 296.730712891 298.189697266 298.760009766 298.730712891 298.660400391 298.779541016 299.070556641 299.449462891 299.689697266 299.689697266 299.599853516 299.470947266 298.970947266 297.929931641 286.769775391 287.670166016 289.410400391 291.789306641 293.650634766 294.209228516 294.039306641 294.000244141 294.109619141 294.039306641 293.949462891 294.260009766 294.760009766 294.879150391 294.490478516 293.840087891 292.990478516 285.000854492 286.510620117 287.909057617 289.100463867 289.600463867 289.319213867 288.830932617 288.649291992 288.680541992 288.750854492 288.979370117 289.409057617 289.700073242 289.539916992 289.149291992 288.799682617 288.360229492 284.280700684 283.880310059 283.190856934 282.720153809 282.140075684 281.450622559 281.179138184 281.300231934 281.259216309 281.020935059 281.110778809 281.530700684 281.569763184 281.089294434 280.749450684 280.860778809 280.860778809 275.629730225 275.900238037 275.820159912 275.560394287 275.3699646 275.339691162 275.3699646 275.360198975 275.2996521 275.320159912 275.45980835 275.700042725 275.919769287 276.039886475 276.039886475 275.759613037 275.009613037 265.680114746 266.199645996 266.680114746 267.100036621 267.430114746 267.710388184 268.059997559 268.439880371 268.590270996 268.430114746 268.199645996 268.189880371 268.309997559 268.250427246 267.829528809 267.130310059 266.140075684 252.960388184 253.869567871 254.949645996 255.939880371 256.710388184 257.279724121 257.699645996 257.920349121 257.890075684 257.680114746 257.420349121 257.149841309 256.800231934 256.279724121 255.619567871 254.920349121 254.170349121 237.040115356 237.9400177 238.969802856 239.949783325 240.699783325 241.179763794 241.399978638 241.469802856 241.489822388 241.4400177 241.219802856 240.770095825 240.250076294 239.790115356 239.319900513 238.699783325 237.929763794 228.210037231 228.899978638 229.669998169 230.379959106 230.929763794 231.259841919 231.410232544 231.399978638 231.310134888 231.250076294 231.239822388 231.169998169 230.960037231 230.549880981 229.9400177 229.169998169 228.310134888 218.150192261 218.559860229 218.999801636 219.429977417 219.769821167 219.929977417 219.900192261 219.820114136 219.820114136 219.929977417 219.990036011 219.929977417 219.809860229 219.670211792 219.420211792 218.929977417 218.190231323 208.550140381 208.010101318 207.470062256 207.010101318 206.720062256 206.599945068 206.559906006 206.490081787 206.389984131 206.300140381 206.260101318 206.320159912 206.510101318 206.820159912 207.130218506 207.380218506 207.610198975 200.36000061 198.510391235 196.730117798 195.140274048 193.78968811 192.78968811 192.27015686 192.190078735 192.400039673 192.760391235 193.12953186 193.350234985 193.37953186 193.37953186 193.730117798 194.600234985 195.919570923 200.610153198 199.169723511 197.730270386 196.339645386 195.140426636 194.320114136 193.940231323 193.820114136 193.810348511 193.879684448 194.020309448 194.169723511 194.270309448 194.480270386 195.070114136 196.089645386 197.339645386 207.399917603 206.600112915 206.149917603 205.970230103 205.85987854 205.709976196 205.60987854 205.569839478 205.52003479 205.43019104 205.350112915 205.379898071 205.470230103 205.52003479 205.549819946 205.640151978 205.93019104 217.96987915 217.569976807 217.04019165 216.400054932 215.730133057 215.119781494 214.679840088 214.569976807 214.869781494 215.46987915 216.069976807 216.500152588 216.759918213 216.949859619 217.080230713 217.110015869 217.020172119 220.880065918 220.730163574 220.540222168 220.500183105 220.730163574 221.110046387 221.409851074 221.489929199 221.360046387 221.079772949 220.779968262 220.520202637 220.320007324 220.179870605 220.210144043 220.369812012 220.409851074 229.989730835 230.000473022 229.80027771 229.220199585 228.40965271 227.65965271 227.109848022 226.789535522 226.739730835 226.970199585 227.380355835 228.000473022 228.920394897 230.020004272 230.90965271 231.310043335 231.560043335 292.679931641 293.429931641 294.810791016 296.760009766 298.330322266 298.959228516 298.990478516 298.939697266 298.980712891 299.099853516 299.359619141 299.529541016 299.269775391 298.670166016 298.099853516 297.609619141 296.879150391 286.699462891 287.570556641 289.480712891 292.170166016 294.269775391 294.900634766 294.660400391 294.500244141 294.519775391 294.390869141 294.179931641 294.199462891 294.209228516 293.769775391 293.029541016 292.379150391 291.709228516 285.780151367 287.379760742 288.729370117 289.770385742 290.159057617 289.809448242 289.280151367 289.020385742 288.930541992 288.869995117 289.000854492 289.340698242 289.409057617 288.930541992 288.280151367 287.920776367 287.700073242 284.349060059 283.899841309 283.229919434 282.780700684 282.190856934 281.479919434 281.149841309 281.200622559 281.149841309 280.919372559 281.020935059 281.470153809 281.649841309 281.319763184 280.999450684 280.960388184 280.720153809 275.999847412 276.20980835 276.0496521 275.679534912 275.410003662 275.339691162 275.35043335 275.2996521 275.230316162 275.259613037 275.4402771 275.660003662 275.789886475 275.839691162 275.7996521 275.53012085 274.829925537 266.130310059 266.510192871 266.829528809 267.119567871 267.420349121 267.760192871 268.189880371 268.600036621 268.750427246 268.579528809 268.319763184 268.260192871 268.290466309 268.170349121 267.760192871 267.130310059 266.199645996 253.399841309 254.250427246 255.260192871 256.149841309 256.829528809 257.319763184 257.689880371 257.880310059 257.840270996 257.630310059 257.390075684 257.170349121 256.869567871 256.329528809 255.600036621 254.840270996 254.069763184 237.379959106 238.330154419 239.35017395 240.250076294 240.899978638 241.310134888 241.500076294 241.540115356 241.52986145 241.469802856 241.259841919 240.85017395 240.339920044 239.85017395 239.35017395 238.719802856 237.910232544 228.319900513 228.980056763 229.710037231 230.390213013 230.899978638 231.230056763 231.399978638 231.419998169 231.35017395 231.27986145 231.259841919 231.179763794 230.989822388 230.660232544 230.129959106 229.370193481 228.4400177 218.249801636 218.670211792 219.110153198 219.510055542 219.840133667 219.999801636 219.979782104 219.869918823 219.849899292 219.970016479 220.050094604 220.010055542 219.889938354 219.789840698 219.579879761 219.070114136 218.300094604 208.550140381 208.010101318 207.499847412 207.059906006 206.760101318 206.590179443 206.510101318 206.410003662 206.300140381 206.220062256 206.169769287 206.220062256 206.419769287 206.760101318 207.1199646 207.400238037 207.689788818 199.890274048 197.989883423 196.209609985 194.690078735 193.550430298 192.800430298 192.409805298 192.390274048 192.61000061 192.890274048 193.11000061 193.190078735 193.19984436 193.329727173 193.819961548 194.709609985 195.94984436 200.180465698 198.900192261 197.579879761 196.209762573 194.980270386 194.169723511 193.820114136 193.719528198 193.690231323 193.730270386 193.879684448 194.070114136 194.230270386 194.490036011 195.110153198 196.110153198 197.320114136 207.250015259 206.43019104 206.040054321 206.009780884 206.029800415 205.939956665 205.819839478 205.750015259 205.669937134 205.529800415 205.399917603 205.410171509 205.490249634 205.560073853 205.569839478 205.640151978 205.919937134 217.799957275 217.350250244 216.699859619 215.909820557 215.139801025 214.54019165 214.199859619 214.250152588 214.739898682 215.520172119 216.29019165 216.779937744 216.980133057 217.029937744 217.060211182 217.060211182 216.960113525 220.820007324 220.880065918 220.949890137 221.09979248 221.340026855 221.590026855 221.739929199 221.750183105 221.579772949 221.250183105 220.829772949 220.42010498 220.110046387 220.00994873 220.219909668 220.610046387 220.779968262 230.119613647 229.920394897 229.439926147 228.71043396 227.97996521 227.420394897 226.939926147 226.520004272 226.30027771 226.46043396 226.97996521 227.829574585 228.970199585 230.119613647 230.850082397 231.060043335 231.270004272 292.760009766 293.420166016 294.949462891 297.060791016 298.640869141 299.189697266 299.230712891 299.240478516 299.160400391 298.990478516 299.010009766 299.170166016 298.939697266 298.240478516 297.609619141 297.269775391 296.750244141 286.679931641 287.830322266 290.099853516 292.990478516 295.000244141 295.449462891 295.109619141 294.949462891 294.970947266 294.779541016 294.490478516 294.340087891 294.049072266 293.320556641 292.470947266 291.929931641 291.470947266 286.809448242 288.369995117 289.690307617 290.639526367 290.860229492 290.389526367 289.830932617 289.559448242 289.379760742 289.200073242 289.209838867 289.440307617 289.330932617 288.619995117 287.869995117 287.600463867 287.539916992 284.470153809 283.950622559 283.290466309 282.819763184 282.179138184 281.409606934 281.009216309 281.030700684 280.979919434 280.780700684 280.899841309 281.419372559 281.770935059 281.610778809 281.280700684 281.020935059 280.520935059 276.3699646 276.53012085 276.289886475 275.8699646 275.539886475 275.410003662 275.3699646 275.289886475 275.219573975 275.270355225 275.429534912 275.589691162 275.679534912 275.669769287 275.579925537 275.289886475 274.60043335 266.540466309 266.859802246 267.059997559 267.279724121 267.550231934 267.859802246 268.220153809 268.579528809 268.729919434 268.630310059 268.420349121 268.319763184 268.269958496 268.050231934 267.640075684 267.079528809 266.210388184 253.909606934 254.680114746 255.519958496 256.279724121 256.869567871 257.329528809 257.689880371 257.869567871 257.859802246 257.670349121 257.420349121 257.210388184 256.909606934 256.359802246 255.600036621 254.769958496 253.960388184 237.799880981 238.770095825 239.750076294 240.520095825 241.02986145 241.330154419 241.489822388 241.509841919 241.460037231 241.390213013 241.239822388 240.910232544 240.4400177 239.919998169 239.370193481 238.699783325 237.870193481 228.419998169 229.10017395 229.879959106 230.560134888 231.009841919 231.290115356 231.419998169 231.410232544 231.310134888 231.230056763 231.199783325 231.140213013 230.980056763 230.6900177 230.250076294 229.52986145 228.560134888 218.409957886 218.880172729 219.340133667 219.710250854 219.970016479 220.079879761 220.019821167 219.889938354 219.829879761 219.920211792 220.010055542 219.999801636 219.900192261 219.829879761 219.670211792 219.199996948 218.440231323 208.499847412 207.919769287 207.400238037 206.970062256 206.700042725 206.570159912 206.519866943 206.45980835 206.400238037 206.340179443 206.300140381 206.329925537 206.499847412 206.820159912 207.169769287 207.470062256 207.789886475 199.440078735 197.579727173 195.850234985 194.400039673 193.329727173 192.619766235 192.239883423 192.159805298 192.28968811 192.489883423 192.62953186 192.749649048 192.959609985 193.37953186 194.029922485 194.919570923 196.010391235 199.669723511 198.530075073 197.360153198 196.150192261 195.110153198 194.520309448 194.310348511 194.219528198 194.089645386 193.999801636 194.049606323 194.159957886 194.289840698 194.570114136 195.199996948 196.159957886 197.299606323 207.000015259 206.140151978 205.720230103 205.629898071 205.560073853 205.379898071 205.259780884 205.250015259 205.290054321 205.250015259 205.209976196 205.299819946 205.490249634 205.600112915 205.600112915 205.620132446 205.890151978 217.799957275 217.3800354 216.810211182 216.190093994 215.670074463 215.330230713 215.199859619 215.310211182 215.710113525 216.29019165 216.79019165 217.020172119 216.980133057 216.8800354 216.8800354 216.949859619 216.929840088 220.810241699 221.00994873 221.210144043 221.290222168 221.230163574 221.090026855 220.969909668 220.900085449 220.84979248 220.719909668 220.529968262 220.329772949 220.190124512 220.199890137 220.489929199 220.92010498 221.09979248 230.180160522 229.65965271 229.000473022 228.420394897 228.130355835 228.020004272 227.739730835 227.21043396 226.770004272 226.699691772 226.970199585 227.539535522 228.439926147 229.520004272 230.340316772 230.720199585 231.130355835 292.359619141 293.490478516 295.539306641 297.820556641 299.090087891 299.189697266 299.029541016 299.109619141 299.090087891 298.840087891 298.840087891 299.109619141 299.029541016 298.410400391 297.849853516 297.640869141 297.199462891 286.750244141 288.539306641 291.330322266 294.129150391 295.560791016 295.410400391 294.830322266 294.720947266 294.900634766 294.859619141 294.760009766 294.760009766 294.470947266 293.580322266 292.650634766 292.150634766 291.740478516 287.760620117 289.190307617 290.510620117 291.360229492 291.319213867 290.610229492 289.959838867 289.739135742 289.649291992 289.539916992 289.659057617 289.920776367 289.729370117 288.879760742 288.000854492 287.719604492 287.639526367 284.339294434 283.809997559 283.190856934 282.640075684 281.899841309 281.110778809 280.720153809 280.780700684 280.800231934 280.659606934 280.790466309 281.339294434 281.800231934 281.780700684 281.450622559 281.009216309 280.290466309 276.660003662 276.759613037 276.469573975 276.039886475 275.6902771 275.509613037 275.400238037 275.310394287 275.270355225 275.320159912 275.4402771 275.539886475 275.579925537 275.560394287 275.400238037 274.999847412 274.289886475 267.019958496 267.300231934 267.420349121 267.559997559 267.760192871 267.960388184 268.189880371 268.449645996 268.609802246 268.579528809 268.449645996 268.359802246 268.260192871 267.979919434 267.529724121 266.949645996 266.109802246 254.399841309 255.090270996 255.779724121 256.420349121 256.939880371 257.359802246 257.689880371 257.890075684 257.909606934 257.750427246 257.510192871 257.260192871 256.920349121 256.350036621 255.559997559 254.710388184 253.850036621 238.149978638 239.140213013 240.040115356 240.669998169 241.040115356 241.259841919 241.379959106 241.390213013 241.319900513 241.259841919 241.169998169 240.949783325 240.540115356 240.009841919 239.379959106 238.649978638 237.790115356 228.549880981 229.310134888 230.169998169 230.85017395 231.219802856 231.390213013 231.4400177 231.35017395 231.210037231 231.129959106 231.120193481 231.069900513 230.910232544 230.669998169 230.270095825 229.589920044 228.629959106 218.659957886 219.150192261 219.619918823 219.940231323 220.099899292 220.139938354 220.039840698 219.889938354 219.800094604 219.860153198 219.949996948 219.949996948 219.889938354 219.840133667 219.710250854 219.289840698 218.559860229 208.439788818 207.78012085 207.200042725 206.78012085 206.570159912 206.539886475 206.570159912 206.590179443 206.579925537 206.570159912 206.559906006 206.570159912 206.680023193 206.950042725 207.28012085 207.610198975 207.950042725 198.890274048 197.159805298 195.53968811 194.159805298 193.11000061 192.36000061 191.909805298 191.730117798 191.760391235 191.86000061 191.970352173 192.209609985 192.69984436 193.419570923 194.230117798 195.09046936 196.09046936 199.219528198 198.089645386 196.999801636 195.999801636 195.280075073 194.959762573 194.900192261 194.820114136 194.629684448 194.459762573 194.400192261 194.369918823 194.379684448 194.610153198 195.230270386 196.180465698 197.310348511 206.729995728 205.870132446 205.370132446 205.089859009 204.790054321 204.459976196 204.319839478 204.450210571 204.649917603 204.759780884 204.85987854 205.10987854 205.450210571 205.640151978 205.629898071 205.640151978 205.890151978 218.009918213 217.71987915 217.3800354 217.100250244 217.000152588 217.049957275 217.1300354 217.199859619 217.299957275 217.400054932 217.409820557 217.239898682 216.96987915 216.770172119 216.779937744 216.920074463 216.980133057 220.699890137 220.820007324 220.840026855 220.619812012 220.17010498 219.690124512 219.369812012 219.270202637 219.329772949 219.460144043 219.67010498 219.949890137 220.199890137 220.440124512 220.730163574 221.060241699 221.199890137 230.170394897 229.619613647 229.149887085 228.96043396 229.119613647 229.340316772 229.170394897 228.649887085 228.250473022 228.14012146 228.079574585 227.949691772 228.119613647 228.840316772 229.770004272 230.520004272 231.21043396 292.049072266 294.090087891 296.789306641 298.929931641 299.420166016 298.720947266 298.189697266 298.310791016 298.519775391 298.580322266 298.900634766 299.429931641 299.400634766 298.640869141 297.939697266 297.720947266 297.279541016 287.629150391 290.060791016 293.039306641 295.250244141 295.660400391 294.750244141 293.920166016 293.879150391 294.220947266 294.490478516 294.879150391 295.320556641 295.150634766 294.060791016 292.820556641 292.160400391 291.679931641 288.549682617 289.789916992 291.039916992 291.659057617 291.260620117 290.239135742 289.469604492 289.299682617 289.399291992 289.590698242 290.059448242 290.569213867 290.420776367 289.399291992 288.280151367 287.780151367 287.549682617 283.749450684 283.370544434 282.860778809 282.290466309 281.520935059 280.770935059 280.470153809 280.610778809 280.690856934 280.579528809 280.669372559 281.149841309 281.649841309 281.749450684 281.460388184 280.909606934 280.079528809 276.749847412 276.749847412 276.419769287 276.009613037 275.70980835 275.509613037 275.360198975 275.249847412 275.249847412 275.310394287 275.379730225 275.4402771 275.509613037 275.480316162 275.249847412 274.740081787 273.929534912 267.510192871 267.779724121 267.809997559 267.850036621 267.949645996 268.069763184 268.199645996 268.380310059 268.540466309 268.540466309 268.449645996 268.369567871 268.250427246 267.939880371 267.420349121 266.769958496 265.890075684 254.819763184 255.500427246 256.109802246 256.619567871 257.050231934 257.420349121 257.689880371 257.869567871 257.909606934 257.800231934 257.590270996 257.300231934 256.930114746 256.340270996 255.529724121 254.649841309 253.739685059 238.429763794 239.399978638 240.219802856 240.719802856 240.980056763 241.149978638 241.270095825 241.270095825 241.1900177 241.149978638 241.109939575 240.969802856 240.620193481 240.089920044 239.399978638 238.589920044 237.669998169 228.759841919 229.580154419 230.460037231 231.069900513 231.339920044 231.419998169 231.399978638 231.290115356 231.149978638 231.080154419 231.089920044 231.02986145 230.859939575 230.609939575 230.230056763 229.560134888 228.609939575 218.960250854 219.409957886 219.829879761 220.079879761 220.170211792 220.159957886 220.070114136 219.949996948 219.869918823 219.900192261 219.970016479 219.960250854 219.889938354 219.840133667 219.710250854 219.309860229 218.630172729 208.389984131 207.650238037 207.039886475 206.639984131 206.490081787 206.510101318 206.590179443 206.630218506 206.639984131 206.669769287 206.700042725 206.720062256 206.820159912 207.059906006 207.410003662 207.789886475 208.160003662 198.18031311 196.61000061 195.159805298 193.87953186 192.869766235 192.159805298 191.730117798 191.550430298 191.53968811 191.550430298 191.61000061 191.869766235 192.470352173 193.36000061 194.27015686 195.140274048 196.150039673 198.930465698 197.659957886 196.560348511 195.709762573 195.199996948 195.030075073 194.980270386 194.879684448 194.719528198 194.640426636 194.610153198 194.509567261 194.390426636 194.539840698 195.169723511 196.159957886 197.339645386 206.660171509 205.870132446 205.330093384 204.919937134 204.450210571 204.02003479 203.890151978 204.089859009 204.35987854 204.500015259 204.649917603 205.000015259 205.439956665 205.700210571 205.700210571 205.689956665 205.93019104 218.199859619 218.020172119 217.830230713 217.79019165 217.960113525 218.210113525 218.3800354 218.400054932 218.279937744 218.049957275 217.739898682 217.389801025 217.060211182 216.8800354 216.900054932 217.049957275 217.089996338 220.400085449 220.210144043 219.929870605 219.500183105 218.969909668 218.520202637 218.290222168 218.239929199 218.270202637 218.409851074 218.770202637 219.34979248 219.949890137 220.389831543 220.679870605 220.929870605 221.079772949 230.199691772 230.020004272 230.000473022 230.100082397 230.289535522 230.270004272 229.89012146 229.439926147 229.430160522 229.750473022 229.72996521 229.109848022 228.539535522 228.760238647 229.649887085 230.649887085 231.489730835 293.279541016 295.959228516 298.670166016 299.990478516 299.400634766 297.949462891 297.129150391 297.230712891 297.599853516 298.049072266 298.929931641 299.849853516 299.769775391 298.629150391 297.570556641 297.230712891 296.820556641 290.070556641 292.549072266 294.970947266 296.019775391 295.369384766 293.990478516 293.170166016 293.129150391 293.420166016 293.890869141 294.820556641 295.789306641 295.709228516 294.299072266 292.629150391 291.699462891 291.170166016 289.559448242 290.559448242 291.500854492 291.680541992 290.850463867 289.600463867 288.789916992 288.649291992 288.840698242 289.299682617 290.139526367 290.950073242 290.860229492 289.680541992 288.280151367 287.500854492 287.090698242 283.099060059 282.950622559 282.620544434 282.089294434 281.360778809 280.729919434 280.520935059 280.659606934 280.720153809 280.559997559 280.540466309 280.899841309 281.370544434 281.559997559 281.349060059 280.839294434 279.989685059 276.60043335 276.45980835 276.10043335 275.7996521 275.610198975 275.429534912 275.230316162 275.089691162 275.089691162 275.179534912 275.240081787 275.320159912 275.400238037 275.410003662 275.129730225 274.53012085 273.660003662 267.769958496 268.029724121 268.019958496 268.000427246 268.059997559 268.159606934 268.290466309 268.449645996 268.559997559 268.519958496 268.390075684 268.300231934 268.199645996 267.880310059 267.290466309 266.519958496 265.579528809 255.229919434 255.909606934 256.420349121 256.809997559 257.140075684 257.409606934 257.619567871 257.760192871 257.829528809 257.779724121 257.609802246 257.340270996 256.939880371 256.329528809 255.510192871 254.590270996 253.609802246 238.77986145 239.679763794 240.390213013 240.790115356 240.989822388 241.120193481 241.219802856 241.230056763 241.149978638 241.10017395 241.060134888 240.949783325 240.649978638 240.140213013 239.419998169 238.520095825 237.540115356 229.089920044 229.890213013 230.649978638 231.140213013 231.319900513 231.359939575 231.359939575 231.290115356 231.1900177 231.140213013 231.129959106 231.049880981 230.85017395 230.589920044 230.1900177 229.500076294 228.520095825 219.220016479 219.570114136 219.889938354 220.090133667 220.179977417 220.199996948 220.159957886 220.090133667 220.030075073 220.050094604 220.079879761 220.050094604 219.949996948 219.860153198 219.690231323 219.289840698 218.639938354 208.329925537 207.610198975 207.010101318 206.639984131 206.510101318 206.519866943 206.539886475 206.53012085 206.519866943 206.570159912 206.639984131 206.720062256 206.840179443 207.099945068 207.499847412 207.939788818 208.3699646 197.489883423 196.069961548 194.77015686 193.600234985 192.659805298 192.03968811 191.730117798 191.659805298 191.690078735 191.669570923 191.61000061 191.749649048 192.300430298 193.190078735 194.169570923 195.11000061 196.249649048 198.719528198 197.299606323 196.150192261 195.390426636 194.969528198 194.770309448 194.629684448 194.449996948 194.369918823 194.440231323 194.539840698 194.480270386 194.320114136 194.440231323 195.089645386 196.159957886 197.419723511 206.819839478 206.089859009 205.580093384 205.169937134 204.700210571 204.279800415 204.149917603 204.330093384 204.529800415 204.60987854 204.720230103 205.060073853 205.52003479 205.790054321 205.790054321 205.77003479 206.000015259 218.1300354 217.960113525 217.770172119 217.730133057 217.8800354 218.1300354 218.330230713 218.389801025 218.259918213 217.980133057 217.670074463 217.409820557 217.210113525 217.089996338 217.100250244 217.170074463 217.1300354 220.020202637 219.50994873 219.079772949 218.730163574 218.489929199 218.42010498 218.489929199 218.529968262 218.449890137 218.340026855 218.480163574 218.989929199 219.650085449 220.179870605 220.500183105 220.710144043 220.92010498 230.470199585 230.779769897 231.06980896 231.060043335 230.720199585 230.039535522 229.170394897 228.680160522 229.100082397 230.039535522 230.500473022 229.989730835 229.199691772 229.14012146 229.920394897 230.949691772 231.770004272 296.590087891 298.959228516 300.570556641 300.439697266 298.879150391 297.269775391 296.619384766 296.670166016 296.859619141 297.459228516 298.820556641 300.140869141 300.060791016 298.570556641 297.179931641 296.750244141 296.439697266 293.679931641 295.449462891 296.549072266 296.209228516 294.840087891 293.590087891 293.099853516 293.029541016 293.000244141 293.429931641 294.720947266 296.049072266 295.980712891 294.269775391 292.299072266 291.250244141 290.779541016 291.069213867 291.750854492 292.100463867 291.639526367 290.440307617 289.219604492 288.559448242 288.420776367 288.489135742 288.940307617 289.920776367 290.850463867 290.770385742 289.489135742 287.920776367 286.969604492 286.479370117 282.960388184 282.940856934 282.700622559 282.210388184 281.559997559 281.050231934 280.870544434 280.919372559 280.860778809 280.620544434 280.509216309 280.710388184 281.099060059 281.349060059 281.249450684 280.819763184 280.040466309 276.329925537 276.0496521 275.719573975 275.579925537 275.560394287 275.419769287 275.140472412 274.919769287 274.900238037 275.009613037 275.10043335 275.169769287 275.289886475 275.2996521 275.020355225 274.390472412 273.509613037 267.630310059 267.930114746 267.970153809 267.970153809 268.050231934 268.189880371 268.350036621 268.519958496 268.609802246 268.500427246 268.290466309 268.159606934 268.050231934 267.729919434 267.100036621 266.250427246 265.260192871 255.649841309 256.290466309 256.670349121 256.899841309 257.119567871 257.329528809 257.500427246 257.619567871 257.699645996 257.710388184 257.609802246 257.369567871 256.960388184 256.340270996 255.489685059 254.500427246 253.449645996 239.27986145 240.10017395 240.660232544 240.9400177 241.060134888 241.179763794 241.27986145 241.27986145 241.210037231 241.120193481 241.060134888 240.910232544 240.629959106 240.160232544 239.429763794 238.489822388 237.429763794 229.569900513 230.250076294 230.839920044 231.169998169 231.259841919 231.310134888 231.370193481 231.370193481 231.290115356 231.230056763 231.179763794 231.080154419 230.879959106 230.620193481 230.1900177 229.4400177 228.390213013 219.429977417 219.670211792 219.920211792 220.119918823 220.240036011 220.289840698 220.289840698 220.240036011 220.199996948 220.190231323 220.190231323 220.130172729 220.019821167 219.889938354 219.670211792 219.229782104 218.599899292 208.260101318 207.599945068 207.059906006 206.729827881 206.559906006 206.499847412 206.439788818 206.380218506 206.3699646 206.430023193 206.539886475 206.650238037 206.820159912 207.090179443 207.519866943 208.019866943 208.510101318 196.980117798 195.69984436 194.52015686 193.43031311 192.53968811 191.959609985 191.709609985 191.720352173 191.810195923 191.78968811 191.669570923 191.69984436 192.140274048 192.999649048 194.03968811 195.150039673 196.44984436 198.440231323 196.959762573 195.860153198 195.180465698 194.820114136 194.579879761 194.339645386 194.119918823 194.060348511 194.190231323 194.350387573 194.339645386 194.240036011 194.419723511 195.110153198 196.230270386 197.560348511 206.979995728 206.250015259 205.759780884 205.419937134 205.060073853 204.709976196 204.549819946 204.629898071 204.740249634 204.790054321 204.890151978 205.200210571 205.60987854 205.850112915 205.850112915 205.839859009 206.069839478 217.810211182 217.6300354 217.400054932 217.29019165 217.350250244 217.549957275 217.799957275 217.980133057 217.96987915 217.770172119 217.529937744 217.389801025 217.279937744 217.199859619 217.170074463 217.190093994 217.089996338 219.650085449 219.060241699 218.730163574 218.630065918 218.719909668 218.940124512 219.219909668 219.369812012 219.250183105 218.960144043 218.810241699 219.040222168 219.560241699 220.09979248 220.449890137 220.659851074 220.869812012 231.180160522 231.65965271 231.789535522 231.30027771 230.350082397 229.149887085 227.949691772 227.340316772 227.80027771 229.010238647 229.89012146 229.850082397 229.350082397 229.359848022 230.119613647 231.130355835 231.89012146 300.449462891 301.609619141 301.480712891 299.900634766 297.970947266 296.959228516 296.949462891 297.010009766 296.830322266 297.240478516 298.799072266 300.340087891 300.269775391 298.650634766 297.119384766 296.650634766 296.429931641 296.820556641 297.529541016 297.179931641 295.750244141 294.230712891 293.570556641 293.570556641 293.410400391 293.029541016 293.330322266 294.720947266 296.070556641 295.840087891 294.000244141 292.049072266 291.109619141 290.750244141 292.700073242 292.940307617 292.569213867 291.450073242 290.090698242 289.180541992 288.869995117 288.750854492 288.590698242 288.809448242 289.649291992 290.469604492 290.280151367 288.979370117 287.459838867 286.500854492 286.010620117 283.309997559 283.239685059 282.919372559 282.380310059 281.809997559 281.419372559 281.249450684 281.179138184 281.020935059 280.770935059 280.589294434 280.700622559 280.999450684 281.249450684 281.220153809 280.870544434 280.179138184 276.10043335 275.770355225 275.520355225 275.539886475 275.629730225 275.520355225 275.1902771 274.890472412 274.820159912 274.919769287 275.0496521 275.1199646 275.200042725 275.179534912 274.890472412 274.28012085 273.4402771 267.269958496 267.649841309 267.819763184 267.899841309 268.010192871 268.130310059 268.279724121 268.460388184 268.529724121 268.430114746 268.189880371 267.989685059 267.829528809 267.500427246 266.869567871 266.000427246 264.979919434 256.010192871 256.579528809 256.840270996 256.949645996 257.069763184 257.229919434 257.359802246 257.470153809 257.569763184 257.630310059 257.569763184 257.369567871 256.979919434 256.329528809 255.430114746 254.359802246 253.220153809 239.85017395 240.560134888 240.980056763 241.129959106 241.160232544 241.250076294 241.370193481 241.399978638 241.339920044 241.219802856 241.109939575 240.9400177 240.649978638 240.179763794 239.4400177 238.449783325 237.339920044 230.129959106 230.669998169 231.080154419 231.259841919 231.310134888 231.359939575 231.449783325 231.480056763 231.410232544 231.310134888 231.219802856 231.10017395 230.9400177 230.6900177 230.230056763 229.390213013 228.270095825 219.650192261 219.849899292 220.079879761 220.269821167 220.369918823 220.409957886 220.389938354 220.329879761 220.269821167 220.229782104 220.210250854 220.159957886 220.059860229 219.920211792 219.650192261 219.170211792 218.530075073 208.180023193 207.579925537 207.099945068 206.769866943 206.579925537 206.450042725 206.360198975 206.320159912 206.340179443 206.419769287 206.539886475 206.669769287 206.829925537 207.099945068 207.519866943 208.039886475 208.570159912 196.600234985 195.440078735 194.37953186 193.36000061 192.480117798 191.869766235 191.600234985 191.560195923 191.61000061 191.600234985 191.510391235 191.550430298 191.999649048 192.87953186 194.02015686 195.27015686 196.720352173 198.049606323 196.659957886 195.680465698 195.110153198 194.780075073 194.549606323 194.369918823 194.199996948 194.110153198 194.140426636 194.209762573 194.209762573 194.230270386 194.520309448 195.249801636 196.350387573 197.699996948 207.009780884 206.18019104 205.649917603 205.35987854 205.10987854 204.819839478 204.620132446 204.600112915 204.68019104 204.779800415 204.950210571 205.290054321 205.660171509 205.870132446 205.879898071 205.890151978 206.129898071 217.480133057 217.339996338 217.170074463 217.069976807 217.119781494 217.350250244 217.699859619 218.009918213 218.080230713 217.8800354 217.610015869 217.420074463 217.279937744 217.159820557 217.110015869 217.139801025 217.069976807 219.449890137 218.989929199 218.880065918 218.969909668 219.110046387 219.25994873 219.449890137 219.59979248 219.560241699 219.329772949 219.130065918 219.230163574 219.659851074 220.199890137 220.579772949 220.779968262 220.92010498 232.21043396 232.359848022 231.899887085 230.859848022 229.689926147 228.590316772 227.579574585 226.949691772 227.130355835 228.060043335 228.939926147 229.180160522 229.039535522 229.22996521 230.029769897 231.060043335 231.869613647 302.510009766 302.369384766 300.890869141 298.619384766 297.029541016 296.959228516 297.629150391 297.730712891 297.260009766 297.490478516 298.959228516 300.390869141 300.199462891 298.570556641 297.099853516 296.609619141 296.400634766 298.109619141 297.970947266 296.750244141 294.929931641 293.720947266 293.650634766 293.959228516 293.740478516 293.230712891 293.539306641 294.830322266 295.830322266 295.260009766 293.439697266 291.769775391 291.060791016 290.760009766 293.489135742 293.289916992 292.350463867 290.869995117 289.629760742 289.190307617 289.280151367 289.209838867 288.920776367 288.950073242 289.539916992 290.030151367 289.619995117 288.389526367 287.090698242 286.250854492 285.729370117 283.530700684 283.290466309 282.809997559 282.239685059 281.800231934 281.569763184 281.450622559 281.309997559 281.130310059 280.929138184 280.809997559 280.870544434 281.120544434 281.339294434 281.300231934 280.950622559 280.300231934 276.020355225 275.759613037 275.60043335 275.640472412 275.719573975 275.629730225 275.310394287 274.999847412 274.879730225 274.969573975 275.079925537 275.150238037 275.169769287 275.070159912 274.749847412 274.179534912 273.400238037 267.079528809 267.540466309 267.809997559 267.939880371 268.000427246 268.040466309 268.119567871 268.250427246 268.359802246 268.309997559 268.109802246 267.869567871 267.619567871 267.269958496 266.649841309 265.809997559 264.809997559 256.189880371 256.739685059 256.970153809 257.040466309 257.090270996 257.170349121 257.260192871 257.340270996 257.470153809 257.550231934 257.529724121 257.340270996 256.949645996 256.290466309 255.329528809 254.189880371 252.989685059 240.27986145 240.910232544 241.230056763 241.27986145 241.250076294 241.299880981 241.429763794 241.509841919 241.469802856 241.35017395 241.219802856 241.049880981 240.739822388 240.219802856 239.429763794 238.399978638 237.239822388 230.640213013 231.10017395 231.379959106 231.489822388 231.489822388 231.520095825 231.580154419 231.609939575 231.52986145 231.399978638 231.299880981 231.1900177 231.049880981 230.790115356 230.270095825 229.35017395 228.179763794 219.990036011 220.179977417 220.369918823 220.499801636 220.519821167 220.470016479 220.409957886 220.349899292 220.280075073 220.229782104 220.179977417 220.139938354 220.090133667 219.960250854 219.670211792 219.139938354 218.460250854 208.1199646 207.559906006 207.079925537 206.749847412 206.550140381 206.430023193 206.349945068 206.349945068 206.400238037 206.470062256 206.559906006 206.689788818 206.849945068 207.110198975 207.519866943 208.059906006 208.6199646 196.169570923 195.060195923 194.11000061 193.18031311 192.369766235 191.810195923 191.499649048 191.369766235 191.319961548 191.260391235 191.220352173 191.37953186 191.909805298 192.850234985 194.029922485 195.369766235 196.909805298 197.770309448 196.520309448 195.659957886 195.100387573 194.740036011 194.549606323 194.480270386 194.430465698 194.339645386 194.219528198 194.159957886 194.150192261 194.280075073 194.680465698 195.409957886 196.459762573 197.780075073 206.899917603 206.009780884 205.439956665 205.160171509 204.979995728 204.759780884 204.540054321 204.450210571 204.52003479 204.700210571 204.959976196 205.319839478 205.68019104 205.890151978 205.919937134 205.959976196 206.200210571 217.299957275 217.230133057 217.170074463 217.170074463 217.259918213 217.480133057 217.869781494 218.259918213 218.389801025 218.179840088 217.819976807 217.500152588 217.250152588 217.069976807 217.049957275 217.159820557 217.170074463 219.500183105 219.230163574 219.270202637 219.369812012 219.360046387 219.25994873 219.190124512 219.210144043 219.210144043 219.130065918 219.060241699 219.219909668 219.699890137 220.290222168 220.699890137 220.869812012 220.949890137 232.949691772 232.579574585 231.489730835 230.14012146 229.149887085 228.560043335 228.039535522 227.590316772 227.600082397 228.15965271 228.779769897 228.949691772 228.850082397 229.06980896 229.880355835 230.970199585 231.880355835 302.019775391 301.199462891 299.470947266 297.529541016 296.629150391 297.119384766 297.949462891 297.990478516 297.510009766 297.769775391 299.049072266 300.049072266 299.590087891 298.080322266 296.859619141 296.379150391 296.039306641 297.769775391 297.230712891 295.869384766 294.320556641 293.539306641 293.720947266 293.990478516 293.720947266 293.400634766 293.859619141 294.879150391 295.250244141 294.269775391 292.609619141 291.390869141 290.879150391 290.500244141 293.039916992 292.549682617 291.440307617 290.059448242 289.159057617 289.110229492 289.399291992 289.379760742 289.100463867 289.129760742 289.500854492 289.580932617 288.869995117 287.739135742 286.750854492 286.069213867 285.479370117 283.110778809 282.780700684 282.290466309 281.839294434 281.630310059 281.599060059 281.550231934 281.390075684 281.200622559 281.079528809 281.050231934 281.159606934 281.409606934 281.630310059 281.520935059 281.059997559 280.360778809 276.089691162 275.969573975 275.829925537 275.740081787 275.679534912 275.570159912 275.360198975 275.1199646 274.990081787 275.03012085 275.169769287 275.249847412 275.240081787 275.070159912 274.719573975 274.160003662 273.379730225 267.279724121 267.729919434 267.960388184 268.019958496 268.000427246 267.970153809 267.989685059 268.100036621 268.210388184 268.210388184 268.050231934 267.779724121 267.470153809 267.050231934 266.449645996 265.670349121 264.680114746 256.210388184 256.809997559 257.109802246 257.189880371 257.180114746 257.170349121 257.180114746 257.229919434 257.359802246 257.460388184 257.449645996 257.250427246 256.850036621 256.189880371 255.220153809 254.050231934 252.809997559 240.500076294 241.129959106 241.4400177 241.4400177 241.339920044 241.339920044 241.469802856 241.569900513 241.540115356 241.4400177 241.339920044 241.1900177 240.870193481 240.290115356 239.419998169 238.319900513 237.120193481 231.009841919 231.4400177 231.710037231 231.77986145 231.710037231 231.660232544 231.669998169 231.6900177 231.649978638 231.549880981 231.460037231 231.370193481 231.210037231 230.910232544 230.310134888 229.330154419 228.109939575 220.400192261 220.559860229 220.670211792 220.679977417 220.579879761 220.449996948 220.369918823 220.340133667 220.309860229 220.260055542 220.190231323 220.170211792 220.139938354 220.050094604 219.740036011 219.139938354 218.400192261 208.110198975 207.539886475 207.059906006 206.740081787 206.559906006 206.450042725 206.389984131 206.380218506 206.400238037 206.439788818 206.499847412 206.610198975 206.789886475 207.070159912 207.510101318 208.079925537 208.669769287 195.619766235 194.499649048 193.600234985 192.779922485 192.12953186 191.720352173 191.52015686 191.409805298 191.279922485 191.150039673 191.100234985 191.310195923 191.87953186 192.810195923 193.989883423 195.350234985 196.94984436 197.780075073 196.640426636 195.789840698 195.159957886 194.709762573 194.469528198 194.449996948 194.469528198 194.400192261 194.240036011 194.119918823 194.169723511 194.400192261 194.850387573 195.549606323 196.530075073 197.810348511 206.799819946 205.970230103 205.399917603 205.10987854 204.959976196 204.790054321 204.600112915 204.500015259 204.540054321 204.700210571 204.970230103 205.330093384 205.689956665 205.93019104 206.029800415 206.10987854 206.330093384 217.239898682 217.210113525 217.21987915 217.259918213 217.319976807 217.449859619 217.770172119 218.179840088 218.400054932 218.29019165 217.960113525 217.569976807 217.210113525 216.989898682 217.009918213 217.21987915 217.299957275 219.84979248 219.650085449 219.650085449 219.650085449 219.529968262 219.329772949 219.159851074 219.020202637 218.900085449 218.790222168 218.820007324 219.130065918 219.699890137 220.320007324 220.719909668 220.84979248 220.889831543 232.840316772 232.180160522 230.89012146 229.609848022 228.859848022 228.55027771 228.289535522 228.06980896 228.239730835 228.810043335 229.270004272 229.239730835 228.96043396 229.06980896 229.859848022 231.000473022 231.97996521 300.400634766 299.560791016 298.400634766 297.320556641 296.970947266 297.359619141 297.750244141 297.570556641 297.269775391 297.699462891 298.730712891 299.230712891 298.560791016 297.369384766 296.590087891 296.209228516 295.670166016 297.119384766 296.400634766 295.289306641 294.220947266 293.750244141 293.799072266 293.769775391 293.470947266 293.420166016 294.000244141 294.599853516 294.310791016 293.070556641 291.769775391 291.049072266 290.689697266 290.140869141 291.979370117 291.430541992 290.559448242 289.580932617 289.030151367 289.069213867 289.270385742 289.200073242 289.030151367 289.139526367 289.319213867 288.989135742 288.030151367 287.000854492 286.340698242 285.840698242 285.190307617 282.309997559 282.099060059 281.800231934 281.589294434 281.640075684 281.770935059 281.739685059 281.509216309 281.290466309 281.220153809 281.270935059 281.489685059 281.839294434 282.069763184 281.880310059 281.229919434 280.380310059 276.20980835 276.249847412 276.060394287 275.740081787 275.499847412 275.419769287 275.360198975 275.219573975 275.079925537 275.10043335 275.259613037 275.410003662 275.419769287 275.249847412 274.860198975 274.270355225 273.4402771 267.619567871 267.960388184 268.029724121 267.960388184 267.899841309 267.920349121 267.989685059 268.090270996 268.170349121 268.149841309 267.970153809 267.689880371 267.350036621 266.890075684 266.279724121 265.519958496 264.559997559 256.210388184 256.859802246 257.199645996 257.269958496 257.210388184 257.149841309 257.100036621 257.149841309 257.269958496 257.369567871 257.350036621 257.119567871 256.710388184 256.059997559 255.119567871 253.949645996 252.720153809 240.640213013 241.339920044 241.719802856 241.699783325 241.509841919 241.429763794 241.500076294 241.580154419 241.549880981 241.449783325 241.399978638 241.290115356 240.960037231 240.319900513 239.379959106 238.250076294 237.040115356 231.270095825 231.759841919 232.049880981 232.10017395 231.949783325 231.77986145 231.710037231 231.719802856 231.710037231 231.649978638 231.620193481 231.549880981 231.379959106 231.000076294 230.319900513 229.299880981 228.040115356 220.769821167 220.849899292 220.860153198 220.769821167 220.579879761 220.409957886 220.349899292 220.369918823 220.360153198 220.300094604 220.240036011 220.220016479 220.240036011 220.150192261 219.820114136 219.179977417 218.360153198 208.099945068 207.519866943 207.039886475 206.749847412 206.610198975 206.519866943 206.450042725 206.389984131 206.349945068 206.329925537 206.3699646 206.479827881 206.680023193 206.990081787 207.479827881 208.090179443 208.689788818 195.12953186 193.959609985 193.060195923 192.300430298 191.77015686 191.569961548 191.579727173 191.579727173 191.459609985 191.27015686 191.190078735 191.37953186 191.909805298 192.77015686 193.87953186 195.239883423 196.87953186 197.969528198 196.839645386 195.969528198 195.289840698 194.789840698 194.509567261 194.400192261 194.350387573 194.270309448 194.150192261 194.129684448 194.259567261 194.560348511 195.030075073 195.690231323 196.619918823 197.869918823 206.77003479 206.060073853 205.540054321 205.220230103 205.009780884 204.85987854 204.729995728 204.660171509 204.660171509 204.750015259 204.970230103 205.319839478 205.709976196 206.02003479 206.189956665 206.299819946 206.52003479 217.259918213 217.199859619 217.199859619 217.250152588 217.250152588 217.259918213 217.46987915 217.860015869 218.190093994 218.21987915 217.96987915 217.560211182 217.139801025 216.869781494 216.929840088 217.190093994 217.319976807 220.360046387 220.070007324 219.860046387 219.690124512 219.59979248 219.579772949 219.529968262 219.320007324 218.989929199 218.75994873 218.820007324 219.219909668 219.840026855 220.389831543 220.710144043 220.799987793 220.860046387 231.880355835 231.359848022 230.449691772 229.590316772 228.939926147 228.39012146 227.880355835 227.72996521 228.21043396 229.020004272 229.489730835 229.30027771 228.920394897 229.039535522 229.89012146 231.060043335 232.020004272 299.400634766 298.709228516 298.150634766 297.750244141 297.599853516 297.590087891 297.429931641 297.070556641 296.929931641 297.410400391 298.129150391 298.250244141 297.609619141 296.890869141 296.599853516 296.330322266 295.609619141 296.970947266 296.049072266 295.109619141 294.400634766 294.039306641 293.849853516 293.549072266 293.220947266 293.310791016 293.769775391 293.910400391 293.199462891 292.039306641 291.230712891 290.929931641 290.599853516 289.910400391 291.270385742 290.830932617 290.289916992 289.690307617 289.260620117 289.139526367 289.080932617 288.909057617 288.789916992 288.899291992 288.889526367 288.280151367 287.229370117 286.350463867 285.899291992 285.520385742 284.879760742 281.780700684 281.809997559 281.749450684 281.739685059 281.870544434 282.030700684 281.929138184 281.630310059 281.390075684 281.370544434 281.520935059 281.829528809 282.259216309 282.509216309 282.229919434 281.419372559 280.399841309 276.240081787 276.360198975 276.1199646 275.679534912 275.360198975 275.329925537 275.390472412 275.310394287 275.169769287 275.169769287 275.3699646 275.60043335 275.660003662 275.499847412 275.10043335 274.450042725 273.5496521 267.739685059 267.939880371 267.840270996 267.699645996 267.699645996 267.859802246 268.050231934 268.180114746 268.210388184 268.109802246 267.899841309 267.609802246 267.269958496 266.800231934 266.159606934 265.380310059 264.449645996 256.309997559 256.920349121 257.180114746 257.189880371 257.100036621 257.050231934 257.050231934 257.119567871 257.220153809 257.300231934 257.229919434 256.979919434 256.559997559 255.939880371 255.040466309 253.920349121 252.710388184 240.859939575 241.649978638 242.049880981 242.000076294 241.730056763 241.549880981 241.549880981 241.580154419 241.520095825 241.4400177 241.390213013 241.290115356 240.960037231 240.290115356 239.35017395 238.239822388 237.009841919 231.540115356 232.120193481 232.449783325 232.449783325 232.1900177 231.890213013 231.730056763 231.699783325 231.679763794 231.669998169 231.669998169 231.660232544 231.489822388 231.049880981 230.299880981 229.239822388 227.980056763 220.960250854 220.979782104 220.949996948 220.809860229 220.579879761 220.409957886 220.360153198 220.369918823 220.340133667 220.280075073 220.240036011 220.260055542 220.300094604 220.220016479 219.869918823 219.179977417 218.320114136 208.070159912 207.470062256 207.019866943 206.760101318 206.639984131 206.570159912 206.490081787 206.400238037 206.340179443 206.289886475 206.320159912 206.430023193 206.610198975 206.919769287 207.410003662 208.039886475 208.630218506 194.850234985 193.659805298 192.69984436 191.909805298 191.419570923 191.329727173 191.470352173 191.59046936 191.52015686 191.37953186 191.319961548 191.470352173 191.93031311 192.69984436 193.77015686 195.159805298 196.850234985 198.110153198 196.949996948 196.060348511 195.419723511 194.999801636 194.740036011 194.520309448 194.320114136 194.159957886 194.089645386 194.180465698 194.400192261 194.740036011 195.209762573 195.869918823 196.789840698 198.020309448 206.759780884 206.160171509 205.660171509 205.229995728 204.899917603 204.720230103 204.669937134 204.669937134 204.669937134 204.720230103 204.910171509 205.279800415 205.740249634 206.10987854 206.330093384 206.479995728 206.709976196 217.429840088 217.279937744 217.230133057 217.279937744 217.29019165 217.270172119 217.440093994 217.799957275 218.1300354 218.179840088 217.909820557 217.460113525 216.980133057 216.710113525 216.779937744 217.069976807 217.239898682 220.730163574 220.320007324 219.84979248 219.480163574 219.42010498 219.630065918 219.790222168 219.59979248 219.199890137 218.940124512 219.090026855 219.590026855 220.17010498 220.590026855 220.75994873 220.820007324 220.929870605 230.779769897 230.600082397 230.369613647 230.05027771 229.449691772 228.470199585 227.529769897 227.270004272 227.89012146 228.739730835 229.06980896 228.760238647 228.470199585 228.829574585 229.840316772 230.989730835 231.89012146 299.310791016 298.609619141 298.199462891 298.000244141 297.879150391 297.689697266 297.379150391 297.019775391 296.900634766 297.209228516 297.609619141 297.590087891 297.160400391 296.830322266 296.740478516 296.410400391 295.549072266 296.970947266 295.849853516 294.949462891 294.390869141 294.070556641 293.789306641 293.400634766 293.099853516 293.129150391 293.310791016 293.109619141 292.349853516 291.510009766 291.090087891 290.890869141 290.429931641 289.660400391 291.219604492 290.830932617 290.459838867 289.989135742 289.500854492 289.170776367 288.909057617 288.690307617 288.569213867 288.580932617 288.379760742 287.709838867 286.770385742 286.039916992 285.610229492 285.170776367 284.539916992 281.759216309 281.970153809 282.030700684 281.999450684 282.040466309 282.069763184 281.929138184 281.640075684 281.479919434 281.569763184 281.800231934 282.130310059 282.530700684 282.749450684 282.390075684 281.479919434 280.360778809 276.070159912 276.200042725 275.999847412 275.610198975 275.360198975 275.390472412 275.469573975 275.390472412 275.240081787 275.259613037 275.499847412 275.749847412 275.829925537 275.679534912 275.28012085 274.579925537 273.60043335 267.550231934 267.659606934 267.510192871 267.399841309 267.519958496 267.819763184 268.109802246 268.250427246 268.239685059 268.090270996 267.859802246 267.590270996 267.260192871 266.800231934 266.130310059 265.309997559 264.369567871 256.479919434 256.949645996 257.040466309 256.949645996 256.890075684 256.949645996 257.050231934 257.140075684 257.210388184 257.239685059 257.149841309 256.890075684 256.460388184 255.850036621 254.989685059 253.920349121 252.720153809 241.140213013 241.919998169 242.290115356 242.199783325 241.879959106 241.620193481 241.569900513 241.580154419 241.520095825 241.429763794 241.390213013 241.27986145 240.910232544 240.219802856 239.299880981 238.239822388 237.009841919 231.870193481 232.520095825 232.819900513 232.739822388 232.379959106 232.000076294 231.770095825 231.669998169 231.609939575 231.589920044 231.629959106 231.669998169 231.509841919 231.040115356 230.239822388 229.169998169 227.919998169 220.990036011 221.039840698 221.010055542 220.860153198 220.630172729 220.440231323 220.349899292 220.320114136 220.269821167 220.190231323 220.179977417 220.240036011 220.300094604 220.210250854 219.829879761 219.130172729 218.260055542 207.95980835 207.389984131 206.990081787 206.769866943 206.639984131 206.559906006 206.490081787 206.439788818 206.400238037 206.380218506 206.410003662 206.479827881 206.6199646 206.8699646 207.329925537 207.939788818 208.510101318 194.730117798 193.510391235 192.499649048 191.659805298 191.140274048 191.050430298 191.230117798 191.37953186 191.390274048 191.329727173 191.350234985 191.529922485 191.94984436 192.659805298 193.709609985 195.150039673 196.890274048 198.129684448 196.980270386 196.089645386 195.509567261 195.190231323 194.980270386 194.709762573 194.400192261 194.180465698 194.140426636 194.280075073 194.530075073 194.879684448 195.379684448 196.060348511 196.999801636 198.209762573 206.720230103 206.149917603 205.629898071 205.10987854 204.669937134 204.450210571 204.450210571 204.529800415 204.569839478 204.629898071 204.839859009 205.250015259 205.759780884 206.189956665 206.439956665 206.60987854 206.839859009 217.739898682 217.500152588 217.3800354 217.429840088 217.480133057 217.549957275 217.739898682 218.069976807 218.279937744 218.159820557 217.750152588 217.250152588 216.830230713 216.610015869 216.699859619 216.980133057 217.190093994 220.750183105 220.299987793 219.690124512 219.179870605 219.070007324 219.340026855 219.579772949 219.480163574 219.17010498 219.079772949 219.42010498 220.00994873 220.50994873 220.739929199 220.799987793 220.880065918 221.060241699 230.270004272 230.260238647 230.47996521 230.56980896 230.05027771 228.899887085 227.80027771 227.470199585 227.96043396 228.489730835 228.439926147 228.010238647 227.930160522 228.64012146 229.810043335 230.880355835 231.64012146 299.299072266 298.580322266 298.080322266 297.840087891 297.730712891 297.660400391 297.529541016 297.310791016 297.129150391 297.189697266 297.410400391 297.459228516 297.250244141 296.980712891 296.670166016 296.039306641 295.099853516 296.449462891 295.400634766 294.590087891 294.140869141 293.910400391 293.670166016 293.349853516 293.070556641 292.970947266 292.900634766 292.590087891 292.029541016 291.529541016 291.199462891 290.750244141 289.959228516 289.150634766 291.309448242 290.909057617 290.500854492 290.000854492 289.459838867 289.039916992 288.770385742 288.590698242 288.450073242 288.319213867 288.039916992 287.500854492 286.789916992 286.119995117 285.479370117 284.789916992 284.119995117 281.860778809 282.130310059 282.200622559 282.069763184 281.950622559 281.870544434 281.739685059 281.579528809 281.589294434 281.819763184 282.110778809 282.360778809 282.610778809 282.700622559 282.300231934 281.370544434 280.210388184 275.78012085 275.860198975 275.759613037 275.560394287 275.45980835 275.509613037 275.520355225 275.390472412 275.259613037 275.339691162 275.579925537 275.789886475 275.860198975 275.740081787 275.35043335 274.60043335 273.5496521 267.250427246 267.350036621 267.260192871 267.269958496 267.489685059 267.819763184 268.109802246 268.239685059 268.239685059 268.100036621 267.880310059 267.609802246 267.300231934 266.859802246 266.189880371 265.359802246 264.399841309 256.559997559 256.880310059 256.859802246 256.729919434 256.720153809 256.899841309 257.079528809 257.189880371 257.199645996 257.180114746 257.069763184 256.809997559 256.369567871 255.779724121 254.960388184 253.920349121 252.720153809 241.339920044 242.009841919 242.290115356 242.169998169 241.85017395 241.629959106 241.580154419 241.580154419 241.540115356 241.489822388 241.449783325 241.290115356 240.85017395 240.129959106 239.239822388 238.210037231 236.980056763 232.179763794 232.810134888 233.02986145 232.859939575 232.469802856 232.10017395 231.859939575 231.719802856 231.609939575 231.549880981 231.580154419 231.640213013 231.489822388 230.989822388 230.149978638 229.089920044 227.870193481 220.949996948 221.079879761 221.090133667 220.929977417 220.659957886 220.440231323 220.320114136 220.269821167 220.190231323 220.119918823 220.110153198 220.190231323 220.249801636 220.159957886 219.760055542 219.070114136 218.210250854 207.800140381 207.289886475 206.970062256 206.769866943 206.6199646 206.510101318 206.450042725 206.430023193 206.450042725 206.470062256 206.499847412 206.550140381 206.639984131 206.860198975 207.28012085 207.840179443 208.389984131 194.61000061 193.350234985 192.300430298 191.44984436 190.959609985 190.900039673 191.09046936 191.239883423 191.279922485 191.279922485 191.390274048 191.61000061 191.999649048 192.669570923 193.720352173 195.19984436 196.959609985 198.219528198 197.159957886 196.270309448 195.629684448 195.259567261 194.999801636 194.730270386 194.430465698 194.249801636 194.240036011 194.379684448 194.629684448 194.990036011 195.520309448 196.249801636 197.190231323 198.390426636 206.640151978 206.02003479 205.509780884 204.979995728 204.560073853 204.350112915 204.370132446 204.459976196 204.500015259 204.569839478 204.810073853 205.259780884 205.819839478 206.27003479 206.549819946 206.720230103 206.919937134 218.080230713 217.810211182 217.600250244 217.549957275 217.580230713 217.670074463 217.929840088 218.239898682 218.330230713 218.04019165 217.54019165 217.069976807 216.770172119 216.659820557 216.750152588 217.000152588 217.239898682 220.429870605 220.070007324 219.529968262 219.029968262 218.880065918 219.049987793 219.230163574 219.190124512 219.079772949 219.210144043 219.679870605 220.25994873 220.67010498 220.779968262 220.779968262 220.889831543 221.130065918 230.55027771 230.380355835 230.56980896 230.689926147 230.250473022 229.239730835 228.310043335 228.029769897 228.279769897 228.39012146 228.020004272 227.560043335 227.72996521 228.65965271 229.880355835 230.81980896 231.449691772 298.849853516 298.400634766 297.990478516 297.789306641 297.709228516 297.689697266 297.640869141 297.470947266 297.269775391 297.279541016 297.539306641 297.740478516 297.590087891 297.080322266 296.349853516 295.400634766 294.429931641 295.480712891 294.830322266 294.299072266 294.000244141 293.830322266 293.629150391 293.340087891 293.049072266 292.849853516 292.689697266 292.459228516 292.150634766 291.810791016 291.299072266 290.439697266 289.340087891 288.519775391 291.010620117 290.619995117 290.209838867 289.729370117 289.270385742 288.899291992 288.690307617 288.539916992 288.369995117 288.159057617 287.909057617 287.569213867 287.069213867 286.340698242 285.379760742 284.369995117 283.610229492 281.630310059 281.890075684 282.030700684 281.940856934 281.790466309 281.710388184 281.649841309 281.630310059 281.780700684 282.089294434 282.370544434 282.470153809 282.540466309 282.499450684 282.089294434 281.179138184 280.020935059 275.499847412 275.539886475 275.539886475 275.53012085 275.5496521 275.570159912 275.499847412 275.329925537 275.259613037 275.390472412 275.60043335 275.730316162 275.770355225 275.700042725 275.35043335 274.579925537 273.45980835 267.090270996 267.210388184 267.220153809 267.329528809 267.559997559 267.819763184 268.019958496 268.140075684 268.189880371 268.109802246 267.909606934 267.640075684 267.329528809 266.920349121 266.309997559 265.479919434 264.479919434 256.500427246 256.779724121 256.739685059 256.640075684 256.680114746 256.899841309 257.109802246 257.199645996 257.170349121 257.119567871 257.000427246 256.739685059 256.290466309 255.680114746 254.880310059 253.869567871 252.689880371 241.370193481 241.910232544 242.10017395 242.009841919 241.790115356 241.640213013 241.589920044 241.569900513 241.549880981 241.549880981 241.52986145 241.330154419 240.819900513 240.060134888 239.149978638 238.129959106 236.879959106 232.359939575 232.890213013 232.989822388 232.77986145 232.4400177 232.120193481 231.929763794 231.810134888 231.719802856 231.640213013 231.649978638 231.660232544 231.460037231 230.899978638 230.049880981 229.009841919 227.810134888 220.949996948 221.139938354 221.119918823 220.909957886 220.599899292 220.369918823 220.269821167 220.260055542 220.210250854 220.130172729 220.079879761 220.130172729 220.199996948 220.099899292 219.710250854 219.019821167 218.190231323 207.6199646 207.169769287 206.919769287 206.769866943 206.6199646 206.45980835 206.360198975 206.340179443 206.3699646 206.419769287 206.450042725 206.510101318 206.6199646 206.849945068 207.249847412 207.769866943 208.309906006 194.59046936 193.239883423 192.150039673 191.329727173 190.909805298 190.93031311 191.190078735 191.400039673 191.440078735 191.44984436 191.53968811 191.749649048 192.100234985 192.730117798 193.779922485 195.27015686 197.029922485 198.459762573 197.549606323 196.669723511 195.879684448 195.270309448 194.850387573 194.560348511 194.360153198 194.270309448 194.310348511 194.469528198 194.719528198 195.089645386 195.669723511 196.419723511 197.379684448 198.539840698 206.509780884 205.819839478 205.319839478 204.919937134 204.629898071 204.509780884 204.529800415 204.549819946 204.529800415 204.580093384 204.830093384 205.299819946 205.85987854 206.350112915 206.669937134 206.85987854 207.029800415 218.279937744 218.049957275 217.799957275 217.619781494 217.489898682 217.500152588 217.739898682 218.069976807 218.159820557 217.860015869 217.369781494 217.000152588 216.819976807 216.779937744 216.839996338 217.049957275 217.310211182 219.980163574 219.739929199 219.400085449 219.079772949 218.980163574 219.090026855 219.199890137 219.199890137 219.219909668 219.440124512 219.889831543 220.369812012 220.67010498 220.75994873 220.770202637 220.889831543 221.150085449 231.30027771 230.850082397 230.670394897 230.489730835 229.970199585 229.14012146 228.40965271 228.15965271 228.220199585 228.119613647 227.72996521 227.470199585 227.810043335 228.789535522 229.949691772 230.81980896 231.40965271 298.279541016 298.269775391 298.240478516 298.209228516 298.090087891 297.849853516 297.619384766 297.410400391 297.340087891 297.529541016 297.920166016 298.119384766 297.779541016 296.990478516 296.000244141 294.970947266 294.070556641 294.609619141 294.439697266 294.269775391 294.150634766 293.959228516 293.660400391 293.279541016 292.929931641 292.699462891 292.609619141 292.529541016 292.320556641 291.929931641 291.199462891 290.099853516 288.890869141 288.090087891 290.350463867 290.119995117 289.840698242 289.530151367 289.190307617 288.869995117 288.600463867 288.379760742 288.200073242 288.039916992 287.899291992 287.700073242 287.239135742 286.369995117 285.149291992 283.969604492 283.149291992 281.089294434 281.360778809 281.669372559 281.780700684 281.749450684 281.739685059 281.759216309 281.809997559 281.989685059 282.290466309 282.489685059 282.499450684 282.419372559 282.319763184 281.929138184 281.040466309 279.839294434 275.360198975 275.35043335 275.400238037 275.480316162 275.560394287 275.560394287 275.469573975 275.35043335 275.329925537 275.4402771 275.560394287 275.629730225 275.660003662 275.660003662 275.3699646 274.60043335 273.450042725 267.130310059 267.250427246 267.300231934 267.420349121 267.600036621 267.760192871 267.890075684 268.029724121 268.119567871 268.109802246 267.939880371 267.670349121 267.350036621 266.970153809 266.409606934 265.590270996 264.559997559 256.369567871 256.710388184 256.769958496 256.729919434 256.760192871 256.909606934 257.079528809 257.159606934 257.130310059 257.059997559 256.930114746 256.640075684 256.170349121 255.540466309 254.779724121 253.800231934 252.600036621 241.299880981 241.730056763 241.890213013 241.870193481 241.77986145 241.699783325 241.649978638 241.589920044 241.560134888 241.580154419 241.580154419 241.359939575 240.790115356 239.989822388 239.069900513 238.020095825 236.750076294 232.319900513 232.730056763 232.77986145 232.589920044 232.330154419 232.109939575 231.980056763 231.899978638 231.859939575 231.810134888 231.77986145 231.699783325 231.410232544 230.810134888 229.9400177 228.929763794 227.759841919 220.949996948 221.090133667 221.019821167 220.769821167 220.470016479 220.269821167 220.240036011 220.280075073 220.280075073 220.170211792 220.079879761 220.090133667 220.170211792 220.070114136 219.659957886 218.999801636 218.190231323 207.450042725 207.019866943 206.809906006 206.689788818 206.579925537 206.430023193 206.289886475 206.20980835 206.229827881 206.28012085 206.329925537 206.430023193 206.590179443 206.8699646 207.260101318 207.760101318 208.28012085 194.829727173 193.440078735 192.319961548 191.489883423 191.050430298 191.079727173 191.409805298 191.69984436 191.779922485 191.739883423 191.749649048 191.900039673 192.220352173 192.850234985 193.900039673 195.37953186 197.119766235 198.659957886 197.860153198 197.039840698 196.159957886 195.360153198 194.789840698 194.459762573 194.299606323 194.259567261 194.320114136 194.509567261 194.799606323 195.219528198 195.820114136 196.610153198 197.570114136 198.709762573 206.399917603 205.629898071 205.10987854 204.819839478 204.700210571 204.700210571 204.720230103 204.669937134 204.589859009 204.629898071 204.890151978 205.339859009 205.890151978 206.399917603 206.779800415 207.02003479 207.189956665 218.230133057 218.1300354 217.929840088 217.699859619 217.449859619 217.330230713 217.46987915 217.779937744 217.940093994 217.739898682 217.339996338 217.04019165 216.900054932 216.819976807 216.830230713 217.029937744 217.350250244 219.59979248 219.369812012 219.150085449 219.049987793 219.110046387 219.270202637 219.42010498 219.489929199 219.560241699 219.750183105 220.049987793 220.380065918 220.659851074 220.810241699 220.84979248 220.929870605 221.139831543 232.090316772 231.56980896 231.039535522 230.47996521 229.750473022 228.880355835 228.14012146 227.779769897 227.699691772 227.64012146 227.47996521 227.470199585 227.880355835 228.770004272 229.829574585 230.770004272 231.46043396 297.900634766 298.160400391 298.459228516 298.640869141 298.470947266 298.010009766 297.590087891 297.439697266 297.599853516 297.990478516 298.349853516 298.269775391 297.580322266 296.599853516 295.670166016 294.849853516 294.070556641 294.019775391 294.179931641 294.289306641 294.289306641 294.080322266 293.670166016 293.179931641 292.769775391 292.590087891 292.599853516 292.590087891 292.340087891 291.760009766 290.890869141 289.789306641 288.689697266 287.920166016 289.619995117 289.649291992 289.590698242 289.450073242 289.209838867 288.850463867 288.430541992 288.090698242 287.920776367 287.909057617 287.930541992 287.780151367 287.229370117 286.190307617 284.850463867 283.659057617 282.860229492 280.579528809 280.880310059 281.349060059 281.649841309 281.739685059 281.800231934 281.890075684 281.960388184 282.099060059 282.329528809 282.479919434 282.429138184 282.300231934 282.169372559 281.819763184 280.940856934 279.669372559 275.329925537 275.289886475 275.289886475 275.35043335 275.45980835 275.539886475 275.520355225 275.469573975 275.4402771 275.490081787 275.509613037 275.509613037 275.570159912 275.629730225 275.410003662 274.669769287 273.53012085 267.250427246 267.380310059 267.420349121 267.489685059 267.590270996 267.680114746 267.800231934 267.960388184 268.079528809 268.090270996 267.960388184 267.699645996 267.390075684 267.010192871 266.449645996 265.609802246 264.540466309 256.279724121 256.710388184 256.890075684 256.890075684 256.840270996 256.880310059 257.010192871 257.100036621 257.090270996 257.029724121 256.869567871 256.559997559 256.059997559 255.420349121 254.649841309 253.699645996 252.489685059 241.199783325 241.560134888 241.719802856 241.770095825 241.770095825 241.750076294 241.699783325 241.620193481 241.569900513 241.580154419 241.569900513 241.310134888 240.730056763 239.899978638 238.980056763 237.910232544 236.620193481 232.10017395 232.410232544 232.469802856 232.379959106 232.230056763 232.069900513 231.960037231 231.9400177 231.960037231 231.960037231 231.890213013 231.730056763 231.370193481 230.730056763 229.859939575 228.859939575 227.679763794 220.840133667 220.869918823 220.749801636 220.539840698 220.320114136 220.179977417 220.190231323 220.269821167 220.280075073 220.170211792 220.050094604 220.070114136 220.150192261 220.039840698 219.619918823 218.970016479 218.199996948 207.380218506 206.8699646 206.630218506 206.550140381 206.499847412 206.400238037 206.249847412 206.150238037 206.139984131 206.189788818 206.249847412 206.3699646 206.599945068 206.930023193 207.309906006 207.769866943 208.28012085 195.37953186 194.02015686 192.93031311 192.010391235 191.369766235 191.220352173 191.489883423 191.850234985 191.999649048 191.959609985 191.909805298 192.029922485 192.36000061 192.999649048 194.060195923 195.53968811 197.279922485 198.640426636 197.810348511 197.049606323 196.240036011 195.480270386 194.900192261 194.570114136 194.379684448 194.289840698 194.329879761 194.530075073 194.879684448 195.360153198 195.990036011 196.799606323 197.770309448 198.900192261 206.399917603 205.549819946 204.970230103 204.68019104 204.640151978 204.720230103 204.750015259 204.689956665 204.629898071 204.700210571 204.970230103 205.390151978 205.910171509 206.439956665 206.879898071 207.18019104 207.35987854 217.980133057 217.96987915 217.900054932 217.770172119 217.610015869 217.460113525 217.500152588 217.710113525 217.860015869 217.730133057 217.409820557 217.100250244 216.8800354 216.730133057 216.710113525 216.949859619 217.360015869 219.389831543 219.020202637 218.799987793 218.779968262 218.969909668 219.270202637 219.540222168 219.710144043 219.840026855 219.960144043 220.119812012 220.380065918 220.67010498 220.880065918 220.940124512 220.969909668 221.139831543 232.649887085 232.31980896 231.699691772 230.899887085 229.939926147 228.89012146 227.989730835 227.439926147 227.270004272 227.279769897 227.329574585 227.449691772 227.829574585 228.579574585 229.630355835 230.689926147 231.500473022 297.590087891 297.779541016 298.160400391 298.439697266 298.330322266 297.970947266 297.709228516 297.760009766 298.060791016 298.439697266 298.549072266 298.070556641 297.049072266 296.000244141 295.269775391 294.670166016 293.949462891 293.420166016 293.709228516 293.980712891 294.080322266 293.939697266 293.609619141 293.160400391 292.750244141 292.580322266 292.670166016 292.689697266 292.310791016 291.519775391 290.529541016 289.490478516 288.519775391 287.760009766 288.899291992 289.139526367 289.219604492 289.219604492 289.080932617 288.739135742 288.229370117 287.819213867 287.709838867 287.840698242 287.979370117 287.840698242 287.200073242 286.039916992 284.659057617 283.469604492 282.680541992 280.349060059 280.649841309 281.149841309 281.450622559 281.530700684 281.640075684 281.829528809 281.979919434 282.099060059 282.259216309 282.370544434 282.300231934 282.140075684 281.979919434 281.630310059 280.780700684 279.479919434 275.320159912 275.249847412 275.160003662 275.169769287 275.310394287 275.480316162 275.579925537 275.570159912 275.520355225 275.490081787 275.450042725 275.419769287 275.45980835 275.539886475 275.379730225 274.700042725 273.60043335 267.350036621 267.529724121 267.590270996 267.609802246 267.630310059 267.680114746 267.800231934 267.939880371 268.010192871 268.010192871 267.920349121 267.710388184 267.399841309 266.979919434 266.390075684 265.519958496 264.399841309 256.250427246 256.720153809 256.970153809 256.979919434 256.880310059 256.850036621 256.949645996 257.069763184 257.090270996 257.010192871 256.840270996 256.519958496 255.989685059 255.319763184 254.540466309 253.559997559 252.309997559 241.049880981 241.370193481 241.509841919 241.589920044 241.660232544 241.699783325 241.699783325 241.640213013 241.589920044 241.580154419 241.509841919 241.230056763 240.640213013 239.819900513 238.890213013 237.790115356 236.460037231 231.750076294 232.040115356 232.149978638 232.169998169 232.109939575 232.000076294 231.919998169 231.919998169 232.000076294 232.009841919 231.919998169 231.699783325 231.330154419 230.710037231 229.830154419 228.790115356 227.569900513 220.550094604 220.499801636 220.389938354 220.269821167 220.150192261 220.070114136 220.099899292 220.179977417 220.199996948 220.099899292 220.019821167 220.070114136 220.159957886 220.010055542 219.570114136 218.940231323 218.190231323 207.439788818 206.829925537 206.470062256 206.3699646 206.380218506 206.3699646 206.249847412 206.160003662 206.139984131 206.189788818 206.240081787 206.360198975 206.6199646 206.979827881 207.389984131 207.829925537 208.340179443 195.980117798 194.77015686 193.760391235 192.760391235 191.86000061 191.37953186 191.44984436 191.800430298 192.02015686 192.050430298 192.03968811 192.190078735 192.550430298 193.19984436 194.249649048 195.720352173 197.480117798 198.499801636 197.499801636 196.709762573 196.030075073 195.430465698 195.009567261 194.730270386 194.520309448 194.350387573 194.339645386 194.560348511 194.959762573 195.480270386 196.129684448 196.959762573 197.980270386 199.150192261 206.569839478 205.720230103 205.080093384 204.709976196 204.60987854 204.649917603 204.669937134 204.629898071 204.629898071 204.759780884 205.049819946 205.450210571 205.93019104 206.459976196 206.959976196 207.319839478 207.560073853 217.670074463 217.610015869 217.600250244 217.670074463 217.750152588 217.759918213 217.770172119 217.850250244 217.900054932 217.770172119 217.449859619 217.100250244 216.799957275 216.600250244 216.600250244 216.900054932 217.369781494 219.369812012 218.869812012 218.549987793 218.480163574 218.659851074 219.029968262 219.409851074 219.699890137 219.889831543 220.00994873 220.130065918 220.360046387 220.67010498 220.900085449 220.940124512 220.92010498 221.090026855 232.699691772 232.64012146 232.15965271 231.380355835 230.369613647 229.220199585 228.15965271 227.489730835 227.250473022 227.250473022 227.31980896 227.420394897 227.750473022 228.47996521 229.560043335 230.689926147 231.500473022 297.170166016 297.220947266 297.500244141 297.779541016 297.869384766 297.890869141 298.000244141 298.199462891 298.390869141 298.529541016 298.410400391 297.750244141 296.640869141 295.560791016 294.879150391 294.310791016 293.519775391 292.650634766 292.990478516 293.340087891 293.549072266 293.609619141 293.539306641 293.279541016 292.900634766 292.679931641 292.740478516 292.779541016 292.359619141 291.429931641 290.279541016 289.199462891 288.230712891 287.410400391 288.069213867 288.399291992 288.559448242 288.680541992 288.750854492 288.590698242 288.190307617 287.799682617 287.690307617 287.850463867 288.020385742 287.920776367 287.309448242 286.129760742 284.680541992 283.389526367 282.479370117 280.360778809 280.669372559 281.069763184 281.239685059 281.239685059 281.370544434 281.690856934 281.940856934 282.059997559 282.159606934 282.249450684 282.169372559 281.950622559 281.720153809 281.360778809 280.550231934 279.290466309 275.360198975 275.270355225 275.110198975 275.070159912 275.1902771 275.410003662 275.570159912 275.570159912 275.509613037 275.45980835 275.410003662 275.339691162 275.339691162 275.390472412 275.240081787 274.6199646 273.560394287 267.340270996 267.649841309 267.769958496 267.760192871 267.710388184 267.729919434 267.819763184 267.899841309 267.899841309 267.859802246 267.800231934 267.649841309 267.340270996 266.850036621 266.199645996 265.300231934 264.159606934 256.199645996 256.670349121 256.930114746 256.970153809 256.880310059 256.850036621 256.949645996 257.079528809 257.090270996 256.989685059 256.819763184 256.500427246 255.949645996 255.239685059 254.399841309 253.369567871 252.059997559 240.839920044 241.109939575 241.239822388 241.330154419 241.4400177 241.560134888 241.629959106 241.640213013 241.609939575 241.569900513 241.460037231 241.149978638 240.560134888 239.750076294 238.799880981 237.649978638 236.250076294 231.379959106 231.679763794 231.859939575 231.949783325 231.960037231 231.899978638 231.85017395 231.890213013 231.989822388 231.989822388 231.859939575 231.640213013 231.290115356 230.710037231 229.830154419 228.719802856 227.399978638 220.159957886 220.090133667 220.039840698 220.010055542 219.960250854 219.920211792 219.940231323 220.030075073 220.070114136 220.010055542 219.979782104 220.079879761 220.170211792 219.999801636 219.530075073 218.909957886 218.199996948 207.610198975 206.910003662 206.439788818 206.249847412 206.28012085 206.309906006 206.229827881 206.169769287 206.189788818 206.249847412 206.28012085 206.360198975 206.6199646 207.019866943 207.470062256 207.939788818 208.45980835 196.459609985 195.400039673 194.53968811 193.569961548 192.510391235 191.760391235 191.600234985 191.829727173 192.050430298 192.12953186 192.220352173 192.459609985 192.850234985 193.459609985 194.440078735 195.900039673 197.69984436 198.570114136 197.329879761 196.379684448 195.680465698 195.159957886 194.850387573 194.690231323 194.539840698 194.400192261 194.379684448 194.600387573 195.020309448 195.549606323 196.240036011 197.110153198 198.180465698 199.409957886 206.819839478 206.069839478 205.439956665 205.000015259 204.77003479 204.689956665 204.640151978 204.600112915 204.640151978 204.810073853 205.089859009 205.450210571 205.93019104 206.490249634 207.049819946 207.479995728 207.779800415 217.460113525 217.210113525 217.100250244 217.270172119 217.589996338 217.819976807 217.920074463 217.960113525 217.929840088 217.79019165 217.500152588 217.150054932 216.799957275 216.560211182 216.560211182 216.8800354 217.330230713 219.610046387 219.09979248 218.699890137 218.489929199 218.540222168 218.840026855 219.239929199 219.590026855 219.840026855 219.980163574 220.130065918 220.369812012 220.679870605 220.880065918 220.889831543 220.860046387 221.070007324 232.079574585 232.119613647 231.869613647 231.369613647 230.55027771 229.47996521 228.40965271 227.680160522 227.369613647 227.30027771 227.289535522 227.369613647 227.720199585 228.520004272 229.670394897 230.779769897 231.470199585 296.920166016 297.019775391 297.230712891 297.459228516 297.679931641 298.000244141 298.330322266 298.480712891 298.420166016 298.310791016 298.170166016 297.670166016 296.660400391 295.549072266 294.699462891 294.000244141 293.119384766 291.959228516 292.349853516 292.720947266 293.010009766 293.269775391 293.480712891 293.410400391 293.019775391 292.679931641 292.670166016 292.769775391 292.429931641 291.439697266 290.140869141 288.910400391 287.890869141 287.039306641 287.180541992 287.479370117 287.709838867 288.039916992 288.399291992 288.520385742 288.270385742 287.930541992 287.750854492 287.819213867 287.959838867 287.969604492 287.510620117 286.409057617 284.850463867 283.330932617 282.260620117 280.589294434 280.950622559 281.249450684 281.280700684 281.179138184 281.309997559 281.669372559 281.940856934 281.989685059 282.030700684 282.089294434 282.030700684 281.780700684 281.470153809 281.099060059 280.380310059 279.200622559 275.450042725 275.429534912 275.310394287 275.219573975 275.259613037 275.390472412 275.499847412 275.53012085 275.520355225 275.499847412 275.4402771 275.289886475 275.1902771 275.169769287 275.03012085 274.450042725 273.3699646 267.199645996 267.649841309 267.869567871 267.859802246 267.750427246 267.710388184 267.779724121 267.809997559 267.739685059 267.670349121 267.630310059 267.500427246 267.170349121 266.640075684 265.939880371 265.019958496 263.859802246 256.090270996 256.529724121 256.800231934 256.909606934 256.890075684 256.899841309 257.010192871 257.109802246 257.079528809 256.960388184 256.779724121 256.449645996 255.880310059 255.109802246 254.210388184 253.109802246 251.750427246 240.589920044 240.879959106 241.020095825 241.109939575 241.230056763 241.399978638 241.549880981 241.620193481 241.609939575 241.540115356 241.399978638 241.069900513 240.500076294 239.710037231 238.710037231 237.469802856 235.989822388 231.069900513 231.419998169 231.620193481 231.730056763 231.77986145 231.77986145 231.790115356 231.870193481 231.949783325 231.929763794 231.770095825 231.549880981 231.250076294 230.710037231 229.810134888 228.629959106 227.210037231 219.800094604 219.760055542 219.760055542 219.780075073 219.760055542 219.720016479 219.760055542 219.880172729 219.949996948 219.920211792 219.929977417 220.070114136 220.170211792 219.990036011 219.519821167 218.929977417 218.199996948 207.769866943 207.019866943 206.45980835 206.189788818 206.169769287 206.189788818 206.150238037 206.130218506 206.220062256 206.320159912 206.340179443 206.380218506 206.6199646 207.070159912 207.579925537 208.099945068 208.650238037 196.890274048 195.890274048 195.169570923 194.329727173 193.319961548 192.489883423 192.169570923 192.19984436 192.27015686 192.28968811 192.43031311 192.760391235 193.18031311 193.730117798 194.650039673 196.09046936 197.94984436 198.949996948 197.520309448 196.360153198 195.449996948 194.829879761 194.520309448 194.440231323 194.419723511 194.379684448 194.409957886 194.619918823 195.020309448 195.570114136 196.299606323 197.259567261 198.400192261 199.680465698 206.970230103 206.350112915 205.819839478 205.370132446 205.080093384 204.890151978 204.779800415 204.709976196 204.720230103 204.850112915 205.089859009 205.43019104 205.919937134 206.509780884 207.120132446 207.640151978 208.040054321 217.489898682 217.009918213 216.690093994 216.739898682 217.089996338 217.480133057 217.730133057 217.839996338 217.860015869 217.779937744 217.600250244 217.279937744 216.900054932 216.619781494 216.560211182 216.819976807 217.210113525 220.020202637 219.659851074 219.299987793 218.969909668 218.829772949 218.969909668 219.290222168 219.619812012 219.84979248 219.989929199 220.150085449 220.409851074 220.719909668 220.900085449 220.880065918 220.860046387 221.119812012 230.930160522 230.880355835 230.810043335 230.689926147 230.279769897 229.439926147 228.439926147 227.64012146 227.270004272 227.170394897 227.170394897 227.260238647 227.680160522 228.56980896 229.779769897 230.840316772 231.39012146 297.090087891 297.369384766 297.629150391 297.799072266 297.990478516 298.289306641 298.570556641 298.580322266 298.330322266 298.160400391 298.119384766 297.820556641 296.869384766 295.580322266 294.500244141 293.750244141 292.980712891 291.599853516 292.000244141 292.379150391 292.699462891 293.049072266 293.379150391 293.379150391 292.980712891 292.560791016 292.539306641 292.699462891 292.439697266 291.429931641 289.970947266 288.599853516 287.570556641 286.810791016 286.430541992 286.670776367 287.010620117 287.580932617 288.190307617 288.450073242 288.280151367 287.950073242 287.750854492 287.739135742 287.850463867 287.969604492 287.729370117 286.729370117 285.059448242 283.319213867 282.080932617 281.050231934 281.470153809 281.710388184 281.649841309 281.479919434 281.530700684 281.780700684 281.919372559 281.839294434 281.809997559 281.899841309 281.899841309 281.659606934 281.329528809 280.989685059 280.370544434 279.239685059 275.560394287 275.759613037 275.759613037 275.629730225 275.490081787 275.4402771 275.490081787 275.5496521 275.6199646 275.640472412 275.520355225 275.240081787 274.999847412 274.919769287 274.78012085 274.20980835 273.10043335 266.960388184 267.519958496 267.840270996 267.850036621 267.699645996 267.619567871 267.649841309 267.670349121 267.579528809 267.489685059 267.449645996 267.319763184 266.970153809 266.399841309 265.659606934 264.720153809 263.550231934 255.909606934 256.340270996 256.649841309 256.840270996 256.930114746 256.989685059 257.090270996 257.149841309 257.100036621 256.960388184 256.760192871 256.380310059 255.750427246 254.939880371 253.989685059 252.840270996 251.430114746 240.379959106 240.730056763 240.910232544 241.009841919 241.120193481 241.27986145 241.449783325 241.540115356 241.549880981 241.469802856 241.310134888 241.000076294 240.460037231 239.660232544 238.609939575 237.310134888 235.739822388 230.870193481 231.259841919 231.480056763 231.569900513 231.629959106 231.679763794 231.730056763 231.819900513 231.899978638 231.85017395 231.669998169 231.460037231 231.199783325 230.6900177 229.790115356 228.540115356 227.009841919 219.470016479 219.490036011 219.539840698 219.579879761 219.570114136 219.550094604 219.639938354 219.789840698 219.860153198 219.840133667 219.869918823 220.039840698 220.150192261 219.979782104 219.550094604 218.970016479 218.179977417 207.820159912 207.050140381 206.439788818 206.1199646 206.039886475 206.019866943 205.999847412 206.039886475 206.229827881 206.400238037 206.450042725 206.470062256 206.669769287 207.1199646 207.680023193 208.269866943 208.8699646 197.419570923 196.37953186 195.690078735 194.989883423 194.150039673 193.419570923 193.02015686 192.829727173 192.619766235 192.459609985 192.560195923 192.94984436 193.43031311 193.980117798 194.869766235 196.310195923 198.260391235 199.379684448 197.890426636 196.560348511 195.469528198 194.690231323 194.289840698 194.209762573 194.259567261 194.329879761 194.430465698 194.610153198 194.969528198 195.539840698 196.350387573 197.409957886 198.629684448 199.980270386 206.919937134 206.399917603 205.959976196 205.580093384 205.290054321 205.100112915 204.990249634 204.93019104 204.899917603 204.959976196 205.120132446 205.439956665 205.919937134 206.52003479 207.160171509 207.759780884 208.290054321 217.710113525 217.139801025 216.619781494 216.420074463 216.610015869 216.980133057 217.330230713 217.560211182 217.710113525 217.770172119 217.690093994 217.409820557 216.989898682 216.6300354 216.54019165 216.739898682 217.049957275 220.380065918 220.239929199 220.000183105 219.679870605 219.42010498 219.409851074 219.630065918 219.880065918 220.00994873 220.060241699 220.17010498 220.440124512 220.75994873 220.940124512 220.929870605 220.940124512 221.210144043 229.850082397 229.56980896 229.560043335 229.720199585 229.670394897 229.090316772 228.149887085 227.31980896 226.939926147 226.939926147 227.060043335 227.21043396 227.609848022 228.510238647 229.760238647 230.81980896 231.310043335 297.390869141 297.779541016 298.099853516 298.320556641 298.439697266 298.560791016 298.660400391 298.599853516 298.400634766 298.260009766 298.199462891 297.799072266 296.679931641 295.150634766 293.929931641 293.310791016 292.859619141 291.439697266 291.789306641 292.170166016 292.549072266 292.939697266 293.240478516 293.220947266 292.859619141 292.539306641 292.580322266 292.760009766 292.480712891 291.369384766 289.740478516 288.230712891 287.260009766 286.670166016 285.969604492 286.129760742 286.559448242 287.330932617 288.059448242 288.309448242 288.090698242 287.830932617 287.709838867 287.719604492 287.840698242 288.059448242 287.989135742 287.069213867 285.299682617 283.389526367 282.039916992 281.649841309 282.050231934 282.210388184 282.079528809 281.839294434 281.770935059 281.849060059 281.809997559 281.630310059 281.579528809 281.739685059 281.809997559 281.599060059 281.280700684 280.999450684 280.479919434 279.380310059 275.669769287 276.150238037 276.2996521 276.110198975 275.759613037 275.53012085 275.509613037 275.650238037 275.810394287 275.829925537 275.60043335 275.179534912 274.7996521 274.629730225 274.469573975 273.919769287 272.789886475 266.739685059 267.390075684 267.779724121 267.819763184 267.630310059 267.500427246 267.500427246 267.510192871 267.420349121 267.300231934 267.250427246 267.140075684 266.809997559 266.210388184 265.420349121 264.430114746 263.229919434 255.699645996 256.159606934 256.529724121 256.819763184 256.979919434 257.069763184 257.149841309 257.199645996 257.159606934 257.040466309 256.809997559 256.369567871 255.659606934 254.800231934 253.800231934 252.609802246 251.159606934 240.250076294 240.660232544 240.890213013 240.960037231 241.020095825 241.149978638 241.319900513 241.429763794 241.449783325 241.379959106 241.210037231 240.910232544 240.379959106 239.580154419 238.520095825 237.160232544 235.540115356 230.719802856 231.149978638 231.370193481 231.449783325 231.520095825 231.60017395 231.679763794 231.750076294 231.799880981 231.739822388 231.580154419 231.390213013 231.140213013 230.660232544 229.759841919 228.460037231 226.85017395 219.150192261 219.210250854 219.320114136 219.409957886 219.440231323 219.479782104 219.579879761 219.710250854 219.760055542 219.740036011 219.800094604 219.990036011 220.119918823 219.990036011 219.599899292 219.019821167 218.170211792 207.729827881 206.979827881 206.389984131 206.050140381 205.939788818 205.900238037 205.880218506 205.979827881 206.229827881 206.479827881 206.570159912 206.579925537 206.760101318 207.189788818 207.78012085 208.419769287 209.090179443 197.989883423 196.86000061 196.069961548 195.409805298 194.739883423 194.150039673 193.760391235 193.419570923 192.989883423 192.61000061 192.61000061 193.02015686 193.600234985 194.19984436 195.100234985 196.569961548 198.600234985 199.579879761 198.100387573 196.749801636 195.610153198 194.770309448 194.289840698 194.140426636 194.190231323 194.299606323 194.419723511 194.610153198 194.930465698 195.509567261 196.390426636 197.539840698 198.860153198 200.310348511 206.799819946 206.290054321 205.890151978 205.549819946 205.310073853 205.169937134 205.129898071 205.120132446 205.100112915 205.100112915 205.189956665 205.470230103 205.939956665 206.52003479 207.140151978 207.810073853 208.490249634 217.929840088 217.449859619 216.869781494 216.480133057 216.440093994 216.690093994 217.04019165 217.339996338 217.580230713 217.710113525 217.699859619 217.420074463 216.949859619 216.54019165 216.460113525 216.670074463 216.949859619 220.440124512 220.449890137 220.400085449 220.179870605 219.949890137 219.900085449 220.070007324 220.239929199 220.250183105 220.159851074 220.190124512 220.429870605 220.75994873 220.940124512 220.929870605 220.969909668 221.290222168 229.430160522 228.939926147 228.770004272 228.920394897 228.96043396 228.539535522 227.689926147 226.899887085 226.619613647 226.81980896 227.119613647 227.310043335 227.619613647 228.439926147 229.680160522 230.770004272 231.250473022 297.369384766 297.670166016 298.070556641 298.439697266 298.640869141 298.670166016 298.660400391 298.640869141 298.549072266 298.379150391 298.099853516 297.420166016 296.119384766 294.490478516 293.230712891 292.720947266 292.529541016 291.230712891 291.510009766 291.949462891 292.449462891 292.879150391 293.109619141 293.049072266 292.840087891 292.720947266 292.840087891 292.949462891 292.549072266 291.320556641 289.529541016 287.879150391 286.910400391 286.449462891 285.709838867 285.770385742 286.229370117 287.119995117 287.909057617 288.110229492 287.879760742 287.709838867 287.729370117 287.799682617 287.940307617 288.270385742 288.360229492 287.520385742 285.659057617 283.549682617 282.039916992 282.089294434 282.380310059 282.440856934 282.270935059 281.989685059 281.849060059 281.829528809 281.720153809 281.520935059 281.499450684 281.700622559 281.780700684 281.569763184 281.270935059 281.059997559 280.630310059 279.509216309 275.810394287 276.520355225 276.740081787 276.429534912 275.910003662 275.560394287 275.5496521 275.740081787 275.9402771 275.950042725 275.669769287 275.150238037 274.640472412 274.360198975 274.150238037 273.610198975 272.509613037 266.649841309 267.359802246 267.819763184 267.869567871 267.649841309 267.439880371 267.369567871 267.340270996 267.210388184 267.059997559 266.989685059 266.930114746 266.670349121 266.100036621 265.250427246 264.170349121 262.930114746 255.519958496 256.029724121 256.479919434 256.829528809 257.040466309 257.119567871 257.159606934 257.210388184 257.220153809 257.159606934 256.909606934 256.420349121 255.659606934 254.739685059 253.689880371 252.439880371 250.930114746 240.149978638 240.609939575 240.830154419 240.870193481 240.890213013 240.980056763 241.160232544 241.299880981 241.35017395 241.299880981 241.140213013 240.810134888 240.259841919 239.469802856 238.410232544 237.049880981 235.390213013 230.560134888 231.009841919 231.219802856 231.310134888 231.399978638 231.509841919 231.589920044 231.649978638 231.6900177 231.629959106 231.500076294 231.319900513 231.080154419 230.609939575 229.750076294 228.429763794 226.759841919 218.809860229 218.920211792 219.090133667 219.249801636 219.360153198 219.460250854 219.559860229 219.639938354 219.650192261 219.630172729 219.740036011 219.949996948 220.090133667 219.999801636 219.659957886 219.079879761 218.179977417 207.599945068 206.919769287 206.410003662 206.110198975 206.019866943 205.970062256 205.950042725 206.059906006 206.320159912 206.559906006 206.650238037 206.669769287 206.829925537 207.240081787 207.849945068 208.559906006 209.300140381 198.409805298 197.12953186 196.19984436 195.480117798 194.86000061 194.36000061 194.03968811 193.709609985 193.220352173 192.77015686 192.720352173 193.140274048 193.78968811 194.459609985 195.350234985 196.819961548 198.900039673 199.530075073 198.070114136 196.780075073 195.709762573 194.919723511 194.419723511 194.180465698 194.150192261 194.259567261 194.430465698 194.640426636 194.959762573 195.520309448 196.419723511 197.629684448 199.070114136 200.640426636 206.759780884 206.229995728 205.799819946 205.459976196 205.220230103 205.120132446 205.140151978 205.189956665 205.200210571 205.169937134 205.229995728 205.500015259 205.950210571 206.509780884 207.120132446 207.850112915 208.660171509 218.029937744 217.659820557 217.150054932 216.710113525 216.569976807 216.739898682 217.060211182 217.330230713 217.520172119 217.659820557 217.659820557 217.350250244 216.819976807 216.400054932 216.360015869 216.6300354 216.900054932 220.270202637 220.290222168 220.340026855 220.290222168 220.17010498 220.17010498 220.34979248 220.50994873 220.460144043 220.270202637 220.219909668 220.449890137 220.750183105 220.880065918 220.869812012 220.969909668 221.329772949 229.689926147 229.079574585 228.65965271 228.510238647 228.40965271 228.010238647 227.279769897 226.590316772 226.449691772 226.81980896 227.239730835 227.439926147 227.680160522 228.449691772 229.670394897 230.739730835 231.15965271 297.039306641 297.220947266 297.640869141 298.220947266 298.650634766 298.750244141 298.699462891 298.660400391 298.580322266 298.330322266 297.830322266 297.029541016 295.820556641 294.340087891 293.080322266 292.449462891 292.189697266 290.959228516 291.209228516 291.709228516 292.349853516 292.840087891 293.019775391 292.959228516 292.879150391 292.939697266 293.070556641 293.049072266 292.560791016 291.330322266 289.510009766 287.720947266 286.629150391 286.160400391 285.510620117 285.469604492 285.920776367 286.889526367 287.770385742 288.030151367 287.840698242 287.739135742 287.789916992 287.830932617 288.000854492 288.520385742 288.889526367 288.200073242 286.239135742 283.860229492 282.020385742 282.140075684 282.339294434 282.360778809 282.190856934 281.940856934 281.819763184 281.809997559 281.720153809 281.540466309 281.530700684 281.710388184 281.759216309 281.520935059 281.229919434 281.099060059 280.739685059 279.589294434 276.039886475 276.839691162 276.999847412 276.560394287 275.9402771 275.570159912 275.589691162 275.810394287 276.009613037 276.009613037 275.749847412 275.20980835 274.60043335 274.140472412 273.839691162 273.360198975 272.339691162 266.680114746 267.449645996 267.920349121 267.960388184 267.699645996 267.430114746 267.300231934 267.199645996 267.010192871 266.779724121 266.689880371 266.680114746 266.540466309 266.029724121 265.159606934 264.019958496 262.720153809 255.409606934 255.979919434 256.489685059 256.880310059 257.100036621 257.140075684 257.130310059 257.180114746 257.239685059 257.220153809 257.010192871 256.510192871 255.720153809 254.750427246 253.609802246 252.300231934 250.729919434 240.040115356 240.500076294 240.719802856 240.739822388 240.719802856 240.810134888 240.989822388 241.169998169 241.270095825 241.230056763 241.069900513 240.699783325 240.140213013 239.339920044 238.290115356 236.9400177 235.270095825 230.379959106 230.77986145 230.969802856 231.069900513 231.210037231 231.370193481 231.469802856 231.520095825 231.549880981 231.52986145 231.410232544 231.219802856 230.980056763 230.52986145 229.699783325 228.410232544 226.730056763 218.530075073 218.699996948 218.920211792 219.139938354 219.309860229 219.440231323 219.530075073 219.570114136 219.550094604 219.550094604 219.670211792 219.889938354 220.019821167 219.970016479 219.679977417 219.130172729 218.240036011 207.539886475 207.010101318 206.6199646 206.410003662 206.329925537 206.300140381 206.28012085 206.349945068 206.510101318 206.669769287 206.720062256 206.720062256 206.8699646 207.28012085 207.919769287 208.689788818 209.519866943 198.53968811 197.119766235 196.03968811 195.220352173 194.550430298 194.060195923 193.800430298 193.600234985 193.260391235 192.900039673 192.87953186 193.350234985 194.060195923 194.760391235 195.640274048 197.03968811 199.12953186 199.459762573 197.980270386 196.730270386 195.749801636 195.039840698 194.539840698 194.230270386 194.129684448 194.209762573 194.419723511 194.659957886 194.969528198 195.499801636 196.390426636 197.659957886 199.209762573 200.949996948 206.830093384 206.27003479 205.819839478 205.450210571 205.200210571 205.089859009 205.100112915 205.169937134 205.189956665 205.169937134 205.209976196 205.470230103 205.919937134 206.470230103 207.100112915 207.890151978 208.799819946 218.009918213 217.699859619 217.259918213 216.889801025 216.779937744 216.960113525 217.21987915 217.400054932 217.509918213 217.619781494 217.6300354 217.330230713 216.759918213 216.310211182 216.279937744 216.549957275 216.810211182 220.090026855 220.040222168 220.119812012 220.150085449 220.110046387 220.17010498 220.380065918 220.590026855 220.549987793 220.360046387 220.320007324 220.529968262 220.799987793 220.869812012 220.84979248 221.020202637 221.42010498 230.05027771 229.46043396 228.859848022 228.439926147 228.15965271 227.760238647 227.109848022 226.510238647 226.40965271 226.80027771 227.239730835 227.439926147 227.720199585 228.539535522 229.720199585 230.649887085 230.970199585 296.859619141 296.970947266 297.330322266 298.019775391 298.689697266 298.920166016 298.789306641 298.619384766 298.519775391 298.279541016 297.779541016 297.029541016 296.019775391 294.730712891 293.449462891 292.539306641 292.010009766 290.859619141 291.049072266 291.529541016 292.220947266 292.799072266 293.000244141 292.929931641 292.920166016 293.039306641 293.099853516 292.959228516 292.500244141 291.470947266 289.779541016 287.869384766 286.510009766 285.849853516 285.330932617 285.270385742 285.700073242 286.729370117 287.750854492 288.110229492 287.959838867 287.809448242 287.780151367 287.729370117 287.969604492 288.760620117 289.520385742 289.100463867 287.119995117 284.409057617 282.090698242 281.899841309 282.110778809 282.200622559 282.089294434 281.880310059 281.780700684 281.790466309 281.700622559 281.499450684 281.460388184 281.610778809 281.669372559 281.429138184 281.179138184 281.110778809 280.809997559 279.630310059 276.339691162 277.079925537 277.1199646 276.570159912 275.919769287 275.589691162 275.660003662 275.8699646 276.009613037 276.03012085 275.839691162 275.329925537 274.610198975 273.95980835 273.570159912 273.179534912 272.28012085 266.750427246 267.479919434 267.899841309 267.949645996 267.720153809 267.449645996 267.279724121 267.159606934 266.930114746 266.649841309 266.489685059 266.479919434 266.399841309 265.989685059 265.149841309 264.010192871 262.659606934 255.430114746 256.050231934 256.569763184 256.960388184 257.130310059 257.149841309 257.109802246 257.140075684 257.220153809 257.239685059 257.059997559 256.579528809 255.800231934 254.769958496 253.569763184 252.189880371 250.600036621 239.929763794 240.379959106 240.609939575 240.640213013 240.620193481 240.679763794 240.870193481 241.040115356 241.160232544 241.160232544 240.969802856 240.609939575 240.040115356 239.250076294 238.199783325 236.859939575 235.199783325 230.179763794 230.520095825 230.6900177 230.810134888 230.989822388 231.179763794 231.299880981 231.35017395 231.399978638 231.410232544 231.310134888 231.109939575 230.839920044 230.419998169 229.629959106 228.379959106 226.719802856 218.389938354 218.610153198 218.869918823 219.110153198 219.289840698 219.440231323 219.530075073 219.559860229 219.530075073 219.519821167 219.610153198 219.780075073 219.900192261 219.880172729 219.659957886 219.159957886 218.300094604 207.6199646 207.269866943 207.019866943 206.849945068 206.769866943 206.760101318 206.760101318 206.769866943 206.800140381 206.829925537 206.809906006 206.78012085 206.900238037 207.300140381 207.95980835 208.78012085 209.700042725 198.489883423 196.980117798 195.77015686 194.850234985 194.09046936 193.53968811 193.300430298 193.209609985 193.069961548 192.890274048 192.980117798 193.499649048 194.279922485 195.03968811 195.909805298 197.239883423 199.310195923 199.469528198 197.980270386 196.719528198 195.780075073 195.119918823 194.650192261 194.329879761 194.169723511 194.199996948 194.379684448 194.619918823 194.909957886 195.390426636 196.259567261 197.600387573 199.289840698 201.190231323 206.850112915 206.279800415 205.830093384 205.479995728 205.229995728 205.089859009 205.080093384 205.160171509 205.209976196 205.189956665 205.220230103 205.450210571 205.879898071 206.410171509 207.049819946 207.879898071 208.879898071 218.009918213 217.670074463 217.279937744 216.960113525 216.909820557 217.100250244 217.310211182 217.3800354 217.420074463 217.560211182 217.6300354 217.369781494 216.819976807 216.350250244 216.279937744 216.46987915 216.619781494 220.119812012 219.989929199 220.029968262 220.070007324 220.040222168 220.079772949 220.310241699 220.560241699 220.590026855 220.440124512 220.42010498 220.639831543 220.900085449 220.949890137 220.929870605 221.130065918 221.579772949 230.05027771 229.520004272 228.930160522 228.449691772 228.14012146 227.770004272 227.180160522 226.590316772 226.420394897 226.72996521 227.109848022 227.340316772 227.739730835 228.630355835 229.750473022 230.500473022 230.689926147 297.000244141 297.060791016 297.240478516 297.910400391 298.730712891 299.080322266 298.869384766 298.609619141 298.599853516 298.539306641 298.090087891 297.199462891 296.019775391 294.689697266 293.349853516 292.299072266 291.660400391 290.879150391 290.990478516 291.369384766 292.090087891 292.789306641 293.070556641 293.010009766 292.990478516 293.119384766 293.160400391 293.000244141 292.650634766 291.879150391 290.369384766 288.359619141 286.619384766 285.619384766 285.200073242 285.170776367 285.619995117 286.719604492 287.840698242 288.250854492 288.069213867 287.860229492 287.770385742 287.729370117 288.059448242 289.080932617 290.180541992 290.080932617 288.229370117 285.319213867 282.510620117 281.640075684 281.950622559 282.179138184 282.120544434 281.890075684 281.720153809 281.669372559 281.509216309 281.239685059 281.159606934 281.360778809 281.509216309 281.370544434 281.179138184 281.140075684 280.870544434 279.700622559 276.570159912 277.219573975 277.150238037 276.5496521 275.910003662 275.629730225 275.719573975 275.900238037 275.990081787 275.999847412 275.879730225 275.429534912 274.650238037 273.829925537 273.320159912 272.999847412 272.240081787 266.800231934 267.409606934 267.760192871 267.840270996 267.699645996 267.489685059 267.350036621 267.239685059 267.050231934 266.750427246 266.489685059 266.380310059 266.269958496 265.909606934 265.159606934 264.079528809 262.710388184 255.540466309 256.199645996 256.699645996 257.029724121 257.180114746 257.180114746 257.149841309 257.159606934 257.220153809 257.220153809 257.069763184 256.619567871 255.850036621 254.809997559 253.559997559 252.149841309 250.569763184 239.830154419 240.270095825 240.52986145 240.589920044 240.569900513 240.609939575 240.739822388 240.899978638 241.02986145 241.049880981 240.899978638 240.540115356 239.980056763 239.199783325 238.149978638 236.819900513 235.199783325 230.009841919 230.310134888 230.480056763 230.629959106 230.819900513 230.989822388 231.089920044 231.160232544 231.250076294 231.310134888 231.239822388 231.020095825 230.730056763 230.290115356 229.520095825 228.310134888 226.719802856 218.380172729 218.659957886 218.929977417 219.150192261 219.329879761 219.470016479 219.579879761 219.619918823 219.610153198 219.579879761 219.610153198 219.690231323 219.780075073 219.789840698 219.630172729 219.150192261 218.309860229 207.840179443 207.630218506 207.419769287 207.229827881 207.130218506 207.130218506 207.150238037 207.1199646 207.059906006 206.999847412 206.910003662 206.8699646 206.95980835 207.320159912 207.95980835 208.809906006 209.800140381 198.409805298 196.84046936 195.550430298 194.550430298 193.720352173 193.100234985 192.810195923 192.749649048 192.730117798 192.69984436 192.869766235 193.440078735 194.300430298 195.19984436 196.140274048 197.44984436 199.459609985 199.490036011 197.999801636 196.759567261 195.829879761 195.209762573 194.789840698 194.490036011 194.299606323 194.270309448 194.379684448 194.560348511 194.799606323 195.240036011 196.100387573 197.469528198 199.289840698 201.350387573 206.77003479 206.189956665 205.759780884 205.450210571 205.220230103 205.069839478 205.069839478 205.160171509 205.240249634 205.250015259 205.279800415 205.479995728 205.85987854 206.339859009 206.939956665 207.77003479 208.819839478 218.089996338 217.730133057 217.330230713 217.029937744 216.96987915 217.110015869 217.239898682 217.250152588 217.270172119 217.440093994 217.569976807 217.369781494 216.869781494 216.440093994 216.330230713 216.440093994 216.489898682 220.25994873 220.119812012 220.119812012 220.110046387 220.029968262 220.049987793 220.299987793 220.610046387 220.67010498 220.520202637 220.469909668 220.690124512 220.949890137 221.00994873 221.000183105 221.219909668 221.67010498 229.760238647 229.270004272 228.789535522 228.430160522 228.189926147 227.869613647 227.260238647 226.630355835 226.40965271 226.689926147 227.06980896 227.340316772 227.789535522 228.699691772 229.750473022 230.380355835 230.520004272 297.070556641 297.060791016 297.109619141 297.750244141 298.689697266 299.109619141 298.869384766 298.640869141 298.830322266 299.000244141 298.429931641 297.039306641 295.310791016 293.689697266 292.390869141 291.500244141 291.010009766 290.789306641 290.840087891 291.170166016 291.980712891 292.879150391 293.269775391 293.189697266 293.140869141 293.330322266 293.480712891 293.420166016 293.230712891 292.720947266 291.429931641 289.369384766 287.250244141 285.769775391 285.090698242 285.110229492 285.619995117 286.819213867 288.039916992 288.450073242 288.200073242 287.969604492 287.979370117 288.059448242 288.440307617 289.489135742 290.750854492 290.979370117 289.459838867 286.619995117 283.500854492 281.470153809 281.899841309 282.239685059 282.210388184 281.870544434 281.579528809 281.419372559 281.149841309 280.819763184 280.749450684 281.050231934 281.360778809 281.360778809 281.239685059 281.200622559 280.929138184 279.800231934 276.640472412 277.240081787 277.140472412 276.520355225 275.879730225 275.610198975 275.700042725 275.85043335 275.879730225 275.8699646 275.810394287 275.490081787 274.749847412 273.829925537 273.179534912 272.810394287 272.10043335 266.819763184 267.309997559 267.600036621 267.739685059 267.710388184 267.550231934 267.420349121 267.359802246 267.250427246 266.979919434 266.649841309 266.390075684 266.159606934 265.790466309 265.119567871 264.109802246 262.750427246 255.670349121 256.340270996 256.790466309 257.069763184 257.199645996 257.250427246 257.279724121 257.290466309 257.309997559 257.269958496 257.079528809 256.640075684 255.899841309 254.880310059 253.619567871 252.199645996 250.649841309 239.739822388 240.199783325 240.500076294 240.589920044 240.569900513 240.569900513 240.660232544 240.790115356 240.929763794 240.980056763 240.859939575 240.520095825 239.969802856 239.199783325 238.140213013 236.810134888 235.270095825 229.910232544 230.219802856 230.4400177 230.609939575 230.770095825 230.890213013 230.919998169 230.989822388 231.140213013 231.259841919 231.230056763 231.009841919 230.679763794 230.210037231 229.449783325 228.27986145 226.759841919 218.470016479 218.789840698 219.059860229 219.280075073 219.440231323 219.559860229 219.659957886 219.720016479 219.729782104 219.690231323 219.659957886 219.679977417 219.729782104 219.749801636 219.599899292 219.139938354 218.320114136 208.200042725 207.990081787 207.70980835 207.439788818 207.309906006 207.329925537 207.360198975 207.300140381 207.189788818 207.090179443 207.019866943 206.990081787 207.050140381 207.329925537 207.919769287 208.78012085 209.809906006 198.300430298 196.669570923 195.350234985 194.300430298 193.44984436 192.829727173 192.489883423 192.409805298 192.400039673 192.409805298 192.619766235 193.19984436 194.140274048 195.230117798 196.34046936 197.68031311 199.600234985 199.409957886 197.940231323 196.730270386 195.839645386 195.270309448 194.900192261 194.640426636 194.440231323 194.360153198 194.409957886 194.560348511 194.770309448 195.169723511 195.969528198 197.339645386 199.209762573 201.390426636 206.68019104 206.10987854 205.700210571 205.399917603 205.18019104 205.029800415 205.009780884 205.120132446 205.229995728 205.250015259 205.279800415 205.490249634 205.850112915 206.279800415 206.790054321 207.560073853 208.60987854 218.170074463 217.810211182 217.420074463 217.089996338 216.989898682 217.080230713 217.170074463 217.159820557 217.170074463 217.299957275 217.389801025 217.179840088 216.739898682 216.400054932 216.369781494 216.46987915 216.480133057 220.299987793 220.179870605 220.190124512 220.150085449 220.029968262 220.029968262 220.340026855 220.699890137 220.779968262 220.590026855 220.489929199 220.699890137 220.969909668 221.049987793 221.029968262 221.210144043 221.630065918 229.64012146 229.130355835 228.699691772 228.420394897 228.22996521 227.880355835 227.239730835 226.590316772 226.399887085 226.739730835 227.180160522 227.46043396 227.850082397 228.689926147 229.71043396 230.40965271 230.619613647 296.750244141 296.730712891 296.820556641 297.549072266 298.580322266 299.060791016 298.849853516 298.709228516 299.049072266 299.269775391 298.510009766 296.769775391 294.789306641 293.199462891 292.119384766 291.400634766 290.890869141 290.519775391 290.609619141 291.019775391 292.010009766 293.070556641 293.529541016 293.400634766 293.310791016 293.580322266 293.879150391 294.019775391 294.109619141 294.019775391 293.160400391 291.299072266 288.959228516 286.900634766 284.920776367 285.000854492 285.619995117 286.969604492 288.280151367 288.700073242 288.420776367 288.239135742 288.389526367 288.580932617 288.909057617 289.860229492 291.180541992 291.760620117 290.739135742 288.239135742 285.049682617 281.280700684 281.780700684 282.210388184 282.190856934 281.790466309 281.390075684 281.149841309 280.829528809 280.470153809 280.419372559 280.790466309 281.220153809 281.349060059 281.290466309 281.229919434 280.950622559 279.890075684 276.610198975 277.219573975 277.1199646 276.499847412 275.820159912 275.520355225 275.589691162 275.700042725 275.700042725 275.650238037 275.650238037 275.509613037 274.9402771 274.03012085 273.1902771 272.60043335 271.85043335 266.890075684 267.279724121 267.550231934 267.760192871 267.809997559 267.649841309 267.460388184 267.390075684 267.369567871 267.210388184 266.890075684 266.529724121 266.189880371 265.739685059 265.050231934 264.050231934 262.699645996 255.729919434 256.380310059 256.800231934 257.040466309 257.189880371 257.319763184 257.430114746 257.479919434 257.470153809 257.380310059 257.149841309 256.689880371 255.970153809 254.960388184 253.699645996 252.279724121 250.750427246 239.660232544 240.160232544 240.509841919 240.629959106 240.620193481 240.60017395 240.660232544 240.790115356 240.929763794 240.989822388 240.870193481 240.549880981 240.000076294 239.1900177 238.129959106 236.839920044 235.390213013 229.890213013 230.250076294 230.540115356 230.730056763 230.859939575 230.890213013 230.859939575 230.910232544 231.069900513 231.250076294 231.239822388 231.02986145 230.669998169 230.160232544 229.410232544 228.299880981 226.859939575 218.639938354 218.979782104 219.269821167 219.479782104 219.599899292 219.670211792 219.710250854 219.760055542 219.780075073 219.769821167 219.720016479 219.710250854 219.749801636 219.760055542 219.610153198 219.150192261 218.340133667 208.6199646 208.28012085 207.860198975 207.510101318 207.360198975 207.389984131 207.419769287 207.349945068 207.229827881 207.139984131 207.1199646 207.130218506 207.160003662 207.389984131 207.910003662 208.740081787 209.78012085 198.079727173 196.43031311 195.09046936 194.029922485 193.19984436 192.59046936 192.249649048 192.119766235 192.11000061 192.159805298 192.369766235 192.93031311 193.919570923 195.169570923 196.480117798 197.869766235 199.68031311 199.270309448 197.829879761 196.640426636 195.780075073 195.249801636 194.909957886 194.669723511 194.480270386 194.409957886 194.480270386 194.629684448 194.839645386 195.169723511 195.879684448 197.159957886 199.030075073 201.270309448 206.689956665 206.149917603 205.77003479 205.470230103 205.209976196 205.040054321 204.990249634 205.080093384 205.169937134 205.160171509 205.189956665 205.410171509 205.799819946 206.220230103 206.669937134 207.310073853 208.299819946 218.119781494 217.799957275 217.389801025 217.049957275 216.920074463 217.029937744 217.170074463 217.190093994 217.170074463 217.190093994 217.150054932 216.8800354 216.480133057 216.230133057 216.270172119 216.449859619 216.509918213 220.270202637 220.17010498 220.159851074 220.09979248 219.969909668 220.000183105 220.320007324 220.710144043 220.810241699 220.639831543 220.570007324 220.779968262 221.060241699 221.150085449 221.09979248 221.179870605 221.50994873 229.80027771 229.250473022 228.80027771 228.489730835 228.250473022 227.850082397 227.199691772 226.579574585 226.439926147 226.810043335 227.270004272 227.520004272 227.81980896 228.560043335 229.609848022 230.510238647 230.939926147 296.260009766 296.390869141 296.670166016 297.480712891 298.490478516 298.980712891 298.879150391 298.849853516 299.170166016 299.260009766 298.529541016 297.240478516 296.080322266 295.279541016 294.570556641 293.689697266 292.570556641 290.269775391 290.500244141 291.070556641 292.160400391 293.269775391 293.699462891 293.549072266 293.459228516 293.730712891 294.070556641 294.390869141 294.939697266 295.619384766 295.619384766 294.330322266 292.070556641 289.510009766 284.729370117 284.920776367 285.680541992 287.170776367 288.539916992 288.969604492 288.700073242 288.580932617 288.789916992 288.979370117 289.239135742 290.159057617 291.639526367 292.619995117 292.129760742 290.080932617 287.020385742 280.940856934 281.489685059 282.030700684 282.069763184 281.659606934 281.239685059 280.970153809 280.669372559 280.300231934 280.200622559 280.540466309 281.009216309 281.239685059 281.249450684 281.200622559 280.890075684 279.909606934 276.60043335 277.219573975 277.110198975 276.450042725 275.740081787 275.410003662 275.45980835 275.539886475 275.45980835 275.35043335 275.390472412 275.419769287 275.079925537 274.28012085 273.310394287 272.429534912 271.5496521 267.019958496 267.329528809 267.590270996 267.859802246 267.939880371 267.739685059 267.479919434 267.380310059 267.439880371 267.409606934 267.189880371 266.840270996 266.430114746 265.869567871 265.059997559 263.960388184 262.590270996 255.729919434 256.380310059 256.769958496 257.000427246 257.170349121 257.350036621 257.519958496 257.619567871 257.630310059 257.540466309 257.279724121 256.800231934 256.059997559 255.059997559 253.790466309 252.329528809 250.809997559 239.620193481 240.199783325 240.60017395 240.759841919 240.759841919 240.730056763 240.77986145 240.890213013 241.020095825 241.060134888 240.949783325 240.60017395 240.02986145 239.210037231 238.149978638 236.899978638 235.500076294 229.980056763 230.419998169 230.739822388 230.919998169 231.000076294 230.960037231 230.890213013 230.910232544 231.049880981 231.219802856 231.230056763 231.020095825 230.649978638 230.109939575 229.359939575 228.330154419 226.969802856 218.940231323 219.280075073 219.539840698 219.720016479 219.780075073 219.769821167 219.740036011 219.749801636 219.760055542 219.760055542 219.729782104 219.720016479 219.749801636 219.760055542 219.619918823 219.179977417 218.400192261 208.95980835 208.45980835 207.919769287 207.53012085 207.389984131 207.410003662 207.419769287 207.349945068 207.240081787 207.189788818 207.200042725 207.220062256 207.260101318 207.45980835 207.939788818 208.720062256 209.720062256 197.779922485 196.150039673 194.810195923 193.749649048 192.909805298 192.310195923 191.94984436 191.800430298 191.810195923 191.909805298 192.140274048 192.669570923 193.640274048 194.999649048 196.470352173 197.93031311 199.640274048 199.180465698 197.740036011 196.560348511 195.709762573 195.169723511 194.860153198 194.640426636 194.490036011 194.459762573 194.549606323 194.709762573 194.879684448 195.169723511 195.770309448 196.940231323 198.719528198 200.980270386 206.750015259 206.259780884 205.899917603 205.60987854 205.339859009 205.10987854 205.040054321 205.100112915 205.149917603 205.10987854 205.10987854 205.339859009 205.750015259 206.160171509 206.540054321 207.100112915 207.959976196 218.04019165 217.710113525 217.270172119 216.889801025 216.770172119 216.940093994 217.150054932 217.21987915 217.159820557 217.080230713 216.96987915 216.71987915 216.360015869 216.110015869 216.110015869 216.270172119 216.420074463 220.290222168 220.179870605 220.150085449 220.090026855 219.989929199 220.020202637 220.310241699 220.650085449 220.779968262 220.699890137 220.679870605 220.900085449 221.17010498 221.279968262 221.219909668 221.230163574 221.449890137 229.930160522 229.399887085 228.930160522 228.55027771 228.250473022 227.859848022 227.279769897 226.71043396 226.520004272 226.789535522 227.189926147 227.449691772 227.72996521 228.399887085 229.47996521 230.560043335 231.239730835 296.049072266 296.379150391 296.799072266 297.549072266 298.379150391 298.849853516 298.959228516 299.099853516 299.299072266 299.170166016 298.789306641 298.769775391 299.379150391 299.949462891 299.590087891 298.140869141 296.029541016 290.209228516 290.629150391 291.289306641 292.349853516 293.349853516 293.779541016 293.720947266 293.689697266 293.869384766 294.070556641 294.480712891 295.619384766 297.320556641 298.429931641 297.939697266 295.970947266 293.189697266 284.649291992 285.030151367 285.959838867 287.479370117 288.809448242 289.209838867 288.969604492 288.869995117 289.039916992 289.159057617 289.479370117 290.619995117 292.450073242 293.789916992 293.639526367 291.940307617 289.119995117 280.489685059 281.130310059 281.790466309 281.940856934 281.550231934 281.110778809 280.849060059 280.569763184 280.200622559 280.030700684 280.280700684 280.729919434 281.050231934 281.190856934 281.159606934 280.809997559 279.849060059 276.640472412 277.240081787 277.060394287 276.339691162 275.650238037 275.3699646 275.379730225 275.390472412 275.20980835 275.03012085 275.009613037 275.079925537 274.910003662 274.289886475 273.339691162 272.320159912 271.2996521 267.119567871 267.380310059 267.619567871 267.920349121 268.029724121 267.840270996 267.559997559 267.470153809 267.559997559 267.630310059 267.529724121 267.250427246 266.829528809 266.180114746 265.220153809 263.970153809 262.519958496 255.750427246 256.390075684 256.790466309 257.000427246 257.149841309 257.329528809 257.519958496 257.670349121 257.739685059 257.699645996 257.460388184 256.970153809 256.210388184 255.189880371 253.909606934 252.420349121 250.859802246 239.629959106 240.290115356 240.739822388 240.9400177 240.960037231 240.949783325 240.969802856 241.049880981 241.140213013 241.160232544 241.040115356 240.679763794 240.080154419 239.259841919 238.230056763 237.000076294 235.640213013 230.179763794 230.669998169 230.969802856 231.10017395 231.109939575 231.02986145 230.960037231 230.960037231 231.060134888 231.179763794 231.1900177 230.989822388 230.60017395 230.020095825 229.270095825 228.310134888 227.069900513 219.380172729 219.679977417 219.860153198 219.949996948 219.940231323 219.869918823 219.809860229 219.789840698 219.769821167 219.740036011 219.690231323 219.679977417 219.720016479 219.740036011 219.599899292 219.179977417 218.420211792 209.189788818 208.499847412 207.889984131 207.499847412 207.349945068 207.329925537 207.320159912 207.249847412 207.189788818 207.180023193 207.200042725 207.220062256 207.28012085 207.490081787 207.970062256 208.700042725 209.630218506 197.499649048 195.900039673 194.61000061 193.550430298 192.720352173 192.11000061 191.720352173 191.550430298 191.550430298 191.68031311 191.87953186 192.319961548 193.230117798 194.619766235 196.209609985 197.749649048 199.419570923 199.129684448 197.709762573 196.530075073 195.669723511 195.140426636 194.839645386 194.669723511 194.570114136 194.560348511 194.640426636 194.730270386 194.839645386 195.079879761 195.640426636 196.699996948 198.379684448 200.560348511 206.709976196 206.27003479 205.950210571 205.669937134 205.379898071 205.149917603 205.060073853 205.10987854 205.169937134 205.140151978 205.160171509 205.370132446 205.720230103 206.049819946 206.370132446 206.830093384 207.629898071 218.060211182 217.710113525 217.21987915 216.79019165 216.670074463 216.839996338 217.089996338 217.150054932 217.080230713 217.020172119 217.000152588 216.889801025 216.619781494 216.279937744 216.04019165 216.020172119 216.190093994 220.42010498 220.25994873 220.199890137 220.159851074 220.119812012 220.159851074 220.360046387 220.619812012 220.750183105 220.739929199 220.730163574 220.880065918 221.070007324 221.199890137 221.270202637 221.360046387 221.529968262 229.810043335 229.329574585 228.899887085 228.529769897 228.21043396 227.869613647 227.430160522 226.90965271 226.600082397 226.689926147 227.05027771 227.439926147 227.859848022 228.489730835 229.430160522 230.489730835 231.31980896 296.119384766 296.570556641 296.980712891 297.549072266 298.189697266 298.670166016 299.060791016 299.439697266 299.500244141 299.160400391 299.160400391 300.480712891 302.849853516 304.609619141 304.379150391 302.349853516 299.590087891 290.250244141 290.849853516 291.549072266 292.449462891 293.320556641 293.799072266 293.959228516 294.080322266 294.160400391 294.140869141 294.609619141 296.320556641 298.920166016 300.879150391 300.980712891 299.279541016 296.619384766 284.700073242 285.379760742 286.440307617 287.869995117 289.049682617 289.399291992 289.229370117 289.149291992 289.250854492 289.350463867 289.860229492 291.399291992 293.619995117 295.180541992 295.100463867 293.520385742 291.020385742 280.110778809 280.860778809 281.649841309 281.890075684 281.499450684 281.009216309 280.729919434 280.479919434 280.130310059 279.919372559 280.079528809 280.520935059 280.940856934 281.200622559 281.220153809 280.809997559 279.790466309 276.719573975 277.249847412 276.929534912 276.169769287 275.560394287 275.35043335 275.329925537 275.219573975 274.980316162 274.749847412 274.629730225 274.570159912 274.379730225 273.929534912 273.1902771 272.249847412 271.1902771 267.180114746 267.409606934 267.630310059 267.909606934 268.040466309 267.920349121 267.729919434 267.680114746 267.779724121 267.869567871 267.809997559 267.590270996 267.180114746 266.489685059 265.449645996 264.109802246 262.579528809 255.829528809 256.489685059 256.880310059 257.050231934 257.149841309 257.300231934 257.479919434 257.659606934 257.779724121 257.800231934 257.619567871 257.149841309 256.409606934 255.399841309 254.109802246 252.590270996 250.979919434 239.699783325 240.410232544 240.890213013 241.120193481 241.169998169 241.140213013 241.140213013 241.179763794 241.250076294 241.259841919 241.129959106 240.770095825 240.179763794 239.370193481 238.370193481 237.179763794 235.810134888 230.469802856 230.969802856 231.199783325 231.230056763 231.160232544 231.080154419 231.020095825 231.040115356 231.109939575 231.1900177 231.1900177 231.020095825 230.609939575 229.969802856 229.179763794 228.259841919 227.120193481 219.869918823 220.110153198 220.190231323 220.159957886 220.090133667 220.010055542 219.960250854 219.940231323 219.900192261 219.820114136 219.720016479 219.690231323 219.729782104 219.729782104 219.590133667 219.170211792 218.420211792 209.269866943 208.45980835 207.809906006 207.400238037 207.200042725 207.099945068 207.039886475 206.999847412 206.999847412 207.019866943 207.059906006 207.090179443 207.180023193 207.439788818 207.939788818 208.650238037 209.499847412 197.279922485 195.69984436 194.459609985 193.470352173 192.709609985 192.169570923 191.78968811 191.569961548 191.52015686 191.550430298 191.61000061 191.87953186 192.650039673 194.02015686 195.709609985 197.350234985 199.029922485 199.060348511 197.690231323 196.530075073 195.650192261 195.100387573 194.829879761 194.699996948 194.659957886 194.680465698 194.719528198 194.749801636 194.799606323 195.020309448 195.560348511 196.549606323 198.079879761 200.100387573 206.60987854 206.160171509 205.839859009 205.580093384 205.310073853 205.089859009 205.000015259 205.060073853 205.140151978 205.18019104 205.240249634 205.439956665 205.689956665 205.899917603 206.10987854 206.509780884 207.27003479 218.179840088 217.830230713 217.310211182 216.860015869 216.670074463 216.79019165 216.960113525 217.000152588 216.960113525 217.009918213 217.170074463 217.270172119 217.1300354 216.690093994 216.159820557 215.850250244 215.900054932 220.489929199 220.270202637 220.17010498 220.179870605 220.219909668 220.290222168 220.429870605 220.630065918 220.770202637 220.750183105 220.650085449 220.579772949 220.619812012 220.829772949 221.139831543 221.460144043 221.719909668 229.649887085 229.239730835 228.880355835 228.500473022 228.149887085 227.869613647 227.539535522 227.06980896 226.649887085 226.619613647 227.05027771 227.720199585 228.369613647 228.96043396 229.609848022 230.399887085 231.199691772 296.099853516 296.510009766 296.879150391 297.420166016 298.029541016 298.590087891 299.160400391 299.660400391 299.650634766 299.140869141 299.330322266 301.379150391 304.640869141 306.840087891 306.470947266 304.179931641 301.519775391 290.289306641 291.029541016 291.709228516 292.480712891 293.250244141 293.810791016 294.160400391 294.400634766 294.449462891 294.349853516 294.970947266 297.090087891 300.170166016 302.429931641 302.599853516 300.970947266 298.599853516 284.830932617 285.770385742 286.920776367 288.229370117 289.239135742 289.580932617 289.489135742 289.459838867 289.520385742 289.639526367 290.350463867 292.219604492 294.700073242 296.319213867 296.139526367 294.549682617 292.330932617 279.880310059 280.749450684 281.649841309 281.929138184 281.540466309 280.989685059 280.690856934 280.450622559 280.140075684 279.929138184 280.059997559 280.489685059 280.979919434 281.339294434 281.399841309 280.950622559 279.849060059 276.789886475 277.200042725 276.740081787 275.969573975 275.450042725 275.2996521 275.200042725 274.999847412 274.78012085 274.60043335 274.410003662 274.1199646 273.78012085 273.419769287 272.95980835 272.249847412 271.219573975 267.250427246 267.489685059 267.689880371 267.920349121 268.050231934 267.989685059 267.909606934 267.909606934 267.989685059 268.019958496 267.930114746 267.710388184 267.309997559 266.640075684 265.630310059 264.319763184 262.769958496 255.960388184 256.630310059 256.989685059 257.109802246 257.159606934 257.279724121 257.470153809 257.640075684 257.769958496 257.809997559 257.680114746 257.300231934 256.609802246 255.649841309 254.380310059 252.840270996 251.199645996 239.830154419 240.52986145 241.000076294 241.250076294 241.319900513 241.290115356 241.259841919 241.290115356 241.35017395 241.35017395 241.219802856 240.879959106 240.310134888 239.52986145 238.580154419 237.419998169 236.02986145 230.799880981 231.270095825 231.410232544 231.35017395 231.230056763 231.149978638 231.129959106 231.169998169 231.230056763 231.27986145 231.270095825 231.129959106 230.730056763 230.02986145 229.169998169 228.239822388 227.169998169 220.320114136 220.479782104 220.460250854 220.349899292 220.229782104 220.150192261 220.130172729 220.130172729 220.090133667 219.990036011 219.880172729 219.829879761 219.829879761 219.800094604 219.619918823 219.199996948 218.429977417 209.249847412 208.360198975 207.680023193 207.229827881 206.950042725 206.769866943 206.669769287 206.639984131 206.669769287 206.740081787 206.820159912 206.900238037 207.050140381 207.340179443 207.8699646 208.559906006 209.380218506 196.999649048 195.409805298 194.239883423 193.419570923 192.84046936 192.419570923 192.11000061 191.87953186 191.720352173 191.579727173 191.43031311 191.470352173 192.079727173 193.400039673 195.140274048 196.869766235 198.59046936 198.969528198 197.659957886 196.509567261 195.610153198 195.020309448 194.730270386 194.619918823 194.610153198 194.690231323 194.770309448 194.810348511 194.869918823 195.089645386 195.600387573 196.490036011 197.839645386 199.680465698 206.52003479 206.040054321 205.729995728 205.500015259 205.27003479 205.080093384 204.979995728 205.000015259 205.060073853 205.120132446 205.229995728 205.410171509 205.60987854 205.729995728 205.850112915 206.189956665 206.890151978 218.239898682 217.909820557 217.409820557 216.940093994 216.690093994 216.699859619 216.779937744 216.810211182 216.830230713 216.960113525 217.230133057 217.460113525 217.420074463 216.980133057 216.319976807 215.779937744 215.650054932 220.429870605 220.139831543 220.029968262 220.110046387 220.230163574 220.299987793 220.42010498 220.619812012 220.799987793 220.779968262 220.520202637 220.219909668 220.139831543 220.400085449 220.940124512 221.50994873 221.909851074 229.720199585 229.380355835 229.05027771 228.619613647 228.189926147 227.880355835 227.579574585 227.14012146 226.689926147 226.649887085 227.199691772 228.14012146 228.989730835 229.539535522 229.930160522 230.420394897 231.060043335 295.840087891 296.160400391 296.560791016 297.269775391 298.070556641 298.670166016 299.209228516 299.670166016 299.629150391 299.140869141 299.369384766 301.529541016 304.820556641 306.849853516 306.199462891 303.890869141 301.720947266 290.410400391 291.209228516 291.830322266 292.500244141 293.230712891 293.799072266 294.209228516 294.480712891 294.519775391 294.539306641 295.390869141 297.760009766 300.959228516 303.090087891 302.959228516 301.160400391 299.039306641 284.989135742 286.110229492 287.309448242 288.539916992 289.450073242 289.770385742 289.719604492 289.709838867 289.750854492 289.879760742 290.680541992 292.670776367 295.239135742 296.860229492 296.590698242 294.950073242 292.889526367 279.800231934 280.770935059 281.720153809 282.040466309 281.679138184 281.140075684 280.800231934 280.540466309 280.210388184 280.009216309 280.140075684 280.569763184 281.099060059 281.540466309 281.669372559 281.210388184 280.079528809 276.839691162 277.110198975 276.539886475 275.749847412 275.310394287 275.160003662 274.990081787 274.749847412 274.6199646 274.589691162 274.410003662 273.95980835 273.429534912 273.079925537 272.820159912 272.320159912 271.35043335 267.380310059 267.659606934 267.859802246 268.059997559 268.130310059 268.090270996 268.050231934 268.069763184 268.100036621 268.050231934 267.930114746 267.710388184 267.309997559 266.680114746 265.760192871 264.550231934 263.050231934 256.079528809 256.720153809 257.019958496 257.069763184 257.100036621 257.250427246 257.470153809 257.630310059 257.699645996 257.720153809 257.649841309 257.340270996 256.739685059 255.829528809 254.609802246 253.109802246 251.470153809 240.009841919 240.649978638 241.10017395 241.390213013 241.480056763 241.4400177 241.370193481 241.370193481 241.4400177 241.449783325 241.319900513 240.989822388 240.460037231 239.730056763 238.799880981 237.660232544 236.299880981 231.149978638 231.52986145 231.60017395 231.500076294 231.379959106 231.310134888 231.319900513 231.359939575 231.399978638 231.390213013 231.379959106 231.270095825 230.919998169 230.210037231 229.290115356 228.310134888 227.270095825 220.659957886 220.740036011 220.670211792 220.519821167 220.360153198 220.240036011 220.190231323 220.199996948 220.179977417 220.130172729 220.059860229 220.050094604 220.019821167 219.929977417 219.710250854 219.289840698 218.550094604 209.180023193 208.229827881 207.53012085 207.050140381 206.729827881 206.53012085 206.410003662 206.349945068 206.360198975 206.450042725 206.590179443 206.740081787 206.939788818 207.249847412 207.769866943 208.479827881 209.28012085 196.62953186 195.050430298 193.999649048 193.36000061 192.94984436 192.640274048 192.36000061 192.140274048 191.94984436 191.69984436 191.400039673 191.260391235 191.739883423 192.999649048 194.730117798 196.510391235 198.249649048 198.919723511 197.659957886 196.499801636 195.560348511 194.930465698 194.610153198 194.480270386 194.480270386 194.600387573 194.770309448 194.909957886 195.020309448 195.209762573 195.640426636 196.390426636 197.579879761 199.289840698 206.459976196 205.979995728 205.689956665 205.52003479 205.379898071 205.229995728 205.129898071 205.100112915 205.080093384 205.049819946 205.100112915 205.279800415 205.470230103 205.580093384 205.660171509 205.939956665 206.549819946 218.159820557 217.869781494 217.400054932 216.920074463 216.600250244 216.509918213 216.549957275 216.580230713 216.6300354 216.779937744 217.020172119 217.210113525 217.230133057 216.940093994 216.3800354 215.799957275 215.529937744 220.329772949 220.020202637 219.949890137 220.110046387 220.250183105 220.290222168 220.380065918 220.59979248 220.840026855 220.810241699 220.480163574 220.110046387 219.989929199 220.290222168 220.889831543 221.529968262 222.040222168 229.939926147 229.619613647 229.239730835 228.72996521 228.199691772 227.850082397 227.560043335 227.130355835 226.699691772 226.689926147 227.359848022 228.380355835 229.270004272 229.789535522 230.14012146 230.539535522 231.06980896 295.699462891 295.929931641 296.320556641 297.209228516 298.160400391 298.750244141 299.160400391 299.570556641 299.629150391 299.289306641 299.629150391 301.730712891 304.820556641 306.570556641 305.689697266 303.310791016 301.359619141 290.730712891 291.459228516 291.939697266 292.539306641 293.250244141 293.830322266 294.220947266 294.449462891 294.510009766 294.660400391 295.689697266 298.179931641 301.340087891 303.320556641 302.970947266 300.959228516 298.830322266 285.319213867 286.510620117 287.719604492 288.920776367 289.739135742 289.959838867 289.869995117 289.850463867 289.899291992 290.049682617 290.819213867 292.770385742 295.330932617 296.969604492 296.709838867 294.989135742 292.879760742 279.890075684 280.890075684 281.809997559 282.149841309 281.849060059 281.360778809 280.970153809 280.640075684 280.280700684 280.079528809 280.239685059 280.669372559 281.210388184 281.720153809 281.970153809 281.579528809 280.450622559 276.829925537 276.950042725 276.310394287 275.560394287 275.150238037 274.980316162 274.770355225 274.539886475 274.499847412 274.60043335 274.490081787 273.999847412 273.410003662 273.039886475 272.85043335 272.45980835 271.570159912 267.550231934 267.890075684 268.119567871 268.300231934 268.329528809 268.239685059 268.180114746 268.170349121 268.140075684 268.059997559 267.930114746 267.750427246 267.399841309 266.779724121 265.899841309 264.769958496 263.329528809 256.159606934 256.739685059 256.970153809 256.960388184 256.989685059 257.170349121 257.430114746 257.579528809 257.619567871 257.619567871 257.559997559 257.309997559 256.760192871 255.899841309 254.739685059 253.309997559 251.720153809 240.239822388 240.830154419 241.250076294 241.549880981 241.669998169 241.580154419 241.460037231 241.449783325 241.52986145 241.520095825 241.399978638 241.10017395 240.620193481 239.919998169 239.009841919 237.890213013 236.560134888 231.460037231 231.739822388 231.759841919 231.660232544 231.560134888 231.520095825 231.52986145 231.560134888 231.540115356 231.489822388 231.4400177 231.339920044 231.040115356 230.390213013 229.449783325 228.4400177 227.399978638 220.889938354 220.920211792 220.829879761 220.650192261 220.409957886 220.210250854 220.099899292 220.070114136 220.099899292 220.139938354 220.179977417 220.220016479 220.190231323 220.059860229 219.809860229 219.409957886 218.710250854 209.010101318 208.059906006 207.360198975 206.889984131 206.599945068 206.430023193 206.329925537 206.229827881 206.180023193 206.240081787 206.419769287 206.630218506 206.849945068 207.160003662 207.680023193 208.400238037 209.229827881 196.300430298 194.819961548 193.909805298 193.390274048 192.989883423 192.619766235 192.310195923 192.119766235 191.999649048 191.819961548 191.499649048 191.319961548 191.720352173 192.900039673 194.59046936 196.369766235 198.079727173 198.890426636 197.619918823 196.440231323 195.509567261 194.930465698 194.650192261 194.530075073 194.499801636 194.600387573 194.789840698 194.969528198 195.089645386 195.240036011 195.549606323 196.169723511 197.249801636 198.900192261 206.35987854 205.899917603 205.660171509 205.549819946 205.470230103 205.379898071 205.330093384 205.299819946 205.220230103 205.089859009 205.029800415 205.129898071 205.299819946 205.439956665 205.540054321 205.759780884 206.27003479 218.110015869 217.830230713 217.350250244 216.830230713 216.489898682 216.369781494 216.369781494 216.360015869 216.369781494 216.449859619 216.589996338 216.730133057 216.79019165 216.699859619 216.369781494 215.900054932 215.569976807 220.310241699 220.020202637 220.049987793 220.270202637 220.409851074 220.389831543 220.409851074 220.630065918 220.880065918 220.84979248 220.549987793 220.250183105 220.230163574 220.540222168 221.020202637 221.529968262 222.00994873 230.020004272 229.680160522 229.21043396 228.619613647 228.06980896 227.71043396 227.420394897 227.020004272 226.649887085 226.720199585 227.380355835 228.310043335 229.06980896 229.609848022 230.130355835 230.72996521 231.279769897 295.890869141 296.000244141 296.299072266 297.150634766 298.070556641 298.640869141 299.070556641 299.590087891 299.840087891 299.670166016 300.099853516 302.189697266 305.230712891 306.970947266 306.049072266 303.500244141 301.289306641 291.080322266 291.640869141 291.980712891 292.539306641 293.289306641 293.939697266 294.390869141 294.650634766 294.699462891 294.830322266 295.849853516 298.299072266 301.439697266 303.490478516 303.220947266 301.160400391 298.810791016 285.879760742 287.139526367 288.369995117 289.520385742 290.159057617 290.159057617 289.940307617 289.959838867 290.110229492 290.270385742 290.979370117 292.840698242 295.360229492 297.049682617 296.819213867 295.030151367 292.780151367 280.169372559 281.110778809 281.880310059 282.149841309 281.919372559 281.499450684 281.099060059 280.690856934 280.309997559 280.169372559 280.370544434 280.809997559 281.370544434 281.979919434 282.339294434 282.030700684 280.909606934 276.669769287 276.650238037 276.039886475 275.379730225 275.039886475 274.8699646 274.640472412 274.419769287 274.419769287 274.539886475 274.490081787 274.079925537 273.5496521 273.200042725 273.020355225 272.679534912 271.879730225 267.680114746 268.040466309 268.309997559 268.510192871 268.529724121 268.399841309 268.290466309 268.229919434 268.170349121 268.059997559 267.989685059 267.909606934 267.609802246 266.979919434 266.059997559 264.930114746 263.540466309 256.210388184 256.710388184 256.880310059 256.840270996 256.859802246 257.069763184 257.340270996 257.500427246 257.529724121 257.540466309 257.500427246 257.260192871 256.729919434 255.909606934 254.809997559 253.449645996 251.909606934 240.500076294 241.020095825 241.399978638 241.710037231 241.810134888 241.679763794 241.520095825 241.500076294 241.580154419 241.60017395 241.469802856 241.210037231 240.770095825 240.089920044 239.1900177 238.10017395 236.799880981 231.710037231 231.890213013 231.870193481 231.790115356 231.710037231 231.660232544 231.660232544 231.679763794 231.660232544 231.549880981 231.460037231 231.35017395 231.089920044 230.489822388 229.589920044 228.569900513 227.52986145 221.039840698 221.030075073 220.920211792 220.690231323 220.380172729 220.090133667 219.909957886 219.869918823 219.920211792 220.039840698 220.179977417 220.300094604 220.300094604 220.159957886 219.900192261 219.490036011 218.849899292 208.749847412 207.829925537 207.180023193 206.769866943 206.550140381 206.450042725 206.360198975 206.229827881 206.1199646 206.130218506 206.269866943 206.470062256 206.700042725 207.03012085 207.579925537 208.329925537 209.189788818 196.140274048 194.84046936 194.050430298 193.510391235 192.980117798 192.459609985 192.100234985 191.989883423 191.999649048 191.919570923 191.68031311 191.529922485 191.909805298 192.999649048 194.61000061 196.36000061 198.03968811 198.789840698 197.449996948 196.259567261 195.390426636 194.949996948 194.789840698 194.730270386 194.669723511 194.680465698 194.799606323 194.940231323 195.039840698 195.150192261 195.390426636 195.909957886 196.890426636 198.440231323 206.209976196 205.810073853 205.629898071 205.540054321 205.43019104 205.330093384 205.310073853 205.370132446 205.35987854 205.220230103 205.089859009 205.080093384 205.18019104 205.27003479 205.370132446 205.589859009 206.029800415 218.179840088 217.850250244 217.310211182 216.79019165 216.489898682 216.429840088 216.400054932 216.279937744 216.159820557 216.150054932 216.259918213 216.400054932 216.520172119 216.549957275 216.400054932 216.069976807 215.770172119 220.270202637 220.060241699 220.159851074 220.389831543 220.500183105 220.469909668 220.489929199 220.699890137 220.909851074 220.880065918 220.619812012 220.429870605 220.520202637 220.810241699 221.139831543 221.480163574 221.860046387 230.010238647 229.590316772 229.039535522 228.449691772 227.930160522 227.56980896 227.289535522 226.920394897 226.609848022 226.71043396 227.350082397 228.149887085 228.760238647 229.279769897 230.020004272 230.920394897 231.64012146 \ No newline at end of file diff --git a/Test/ta_4D_r.asc b/Test/ta_4D_r.asc deleted file mode 100644 index 1d21a5c08d8eef31a124a057fbf5f67efdb1ecc7..0000000000000000000000000000000000000000 --- a/Test/ta_4D_r.asc +++ /dev/null @@ -1,23 +0,0 @@ -4 -17 -144 -3 -17 -pressure -hPa -1000.0 925.0 850.0 700.0 600.0 500.0 400.0 300.0 250.0 200.0 150.0 100.0 70.0 50.0 30.0 20.0 10.0 -1037.5 962.5 962.5 887.5 887.5 775.0 775.0 650.0 650.0 550.0 550.0 450.0 450.0 350.0 350.0 275.0 275.0 225.0 225.0 175.0 175.0 125.0 125.0 85.0 85.0 60.0 60.0 40.0 40.0 25.0 25.0 15.0 15.0 5.0 -longitude -degrees_east -0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 22.5 25.0 27.5 30.0 32.5 35.0 37.5 40.0 42.5 45.0 47.5 50.0 52.5 55.0 57.5 60.0 62.5 65.0 67.5 70.0 72.5 75.0 77.5 80.0 82.5 85.0 87.5 90.0 92.5 95.0 97.5 100.0 102.5 105.0 107.5 110.0 112.5 115.0 117.5 120.0 122.5 125.0 127.5 130.0 132.5 135.0 137.5 140.0 142.5 145.0 147.5 150.0 152.5 155.0 157.5 160.0 162.5 165.0 167.5 170.0 172.5 175.0 177.5 180.0 182.5 185.0 187.5 190.0 192.5 195.0 197.5 200.0 202.5 205.0 207.5 210.0 212.5 215.0 217.5 220.0 222.5 225.0 227.5 230.0 232.5 235.0 237.5 240.0 242.5 245.0 247.5 250.0 252.5 255.0 257.5 260.0 262.5 265.0 267.5 270.0 272.5 275.0 277.5 280.0 282.5 285.0 287.5 290.0 292.5 295.0 297.5 300.0 302.5 305.0 307.5 310.0 312.5 315.0 317.5 320.0 322.5 325.0 327.5 330.0 332.5 335.0 337.5 340.0 342.5 345.0 347.5 350.0 352.5 355.0 357.5 --1.25 1.25 1.25 3.75 3.75 6.25 6.25 8.75 8.75 11.25 11.25 13.75 13.75 16.25 16.25 18.75 18.75 21.25 21.25 23.75 23.75 26.25 26.25 28.75 28.75 31.25 31.25 33.75 33.75 36.25 36.25 38.75 38.75 41.25 41.25 43.75 43.75 46.25 46.25 48.75 48.75 51.25 51.25 53.75 53.75 56.25 56.25 58.75 58.75 61.25 61.25 63.75 63.75 66.25 66.25 68.75 68.75 71.25 71.25 73.75 73.75 76.25 76.25 78.75 78.75 81.25 81.25 83.75 83.75 86.25 86.25 88.75 88.75 91.25 91.25 93.75 93.75 96.25 96.25 98.75 98.75 101.25 101.25 103.75 103.75 106.25 106.25 108.75 108.75 111.25 111.25 113.75 113.75 116.25 116.25 118.75 118.75 121.25 121.25 123.75 123.75 126.25 126.25 128.75 128.75 131.25 131.25 133.75 133.75 136.25 136.25 138.75 138.75 141.25 141.25 143.75 143.75 146.25 146.25 148.75 148.75 151.25 151.25 153.75 153.75 156.25 156.25 158.75 158.75 161.25 161.25 163.75 163.75 166.25 166.25 168.75 168.75 171.25 171.25 173.75 173.75 176.25 176.25 178.75 178.75 181.25 181.25 183.75 183.75 186.25 186.25 188.75 188.75 191.25 191.25 193.75 193.75 196.25 196.25 198.75 198.75 201.25 201.25 203.75 203.75 206.25 206.25 208.75 208.75 211.25 211.25 213.75 213.75 216.25 216.25 218.75 218.75 221.25 221.25 223.75 223.75 226.25 226.25 228.75 228.75 231.25 231.25 233.75 233.75 236.25 236.25 238.75 238.75 241.25 241.25 243.75 243.75 246.25 246.25 248.75 248.75 251.25 251.25 253.75 253.75 256.25 256.25 258.75 258.75 261.25 261.25 263.75 263.75 266.25 266.25 268.75 268.75 271.25 271.25 273.75 273.75 276.25 276.25 278.75 278.75 281.25 281.25 283.75 283.75 286.25 286.25 288.75 288.75 291.25 291.25 293.75 293.75 296.25 296.25 298.75 298.75 301.25 301.25 303.75 303.75 306.25 306.25 308.75 308.75 311.25 311.25 313.75 313.75 316.25 316.25 318.75 318.75 321.25 321.25 323.75 323.75 326.25 326.25 328.75 328.75 331.25 331.25 333.75 333.75 336.25 336.25 338.75 338.75 341.25 341.25 343.75 343.75 346.25 346.25 348.75 348.75 351.25 351.25 353.75 353.75 356.25 356.25 358.75 -time -months since 1949-1-1 0:0 -0.0 1.0 2.0 -0. 1. 1. 2. 2. 3. -latitude -degrees_north --20.0 -17.5 -15.0 -12.5 -10.0 -7.5 -5.0 -2.5 0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 --21.25 -18.75 -18.75 -16.25 -16.25 -13.75 -13.75 -11.25 -11.25 -8.75 -8.75 -6.25 -6.25 -3.75 -3.75 -1.25 -1.25 1.25 1.25 3.75 3.75 6.25 6.25 8.75 8.75 11.25 11.25 13.75 13.75 16.25 16.25 18.75 18.75 21.25 -294.539123535 294.75982666 294.929748535 295.109436035 295.58013916 296.449279785 297.47076416 298.300842285 298.910217285 299.429748535 300.140686035 301.199279785 302.20904541 301.929748535 299.410217285 295.429748535 291.949279785 295.839996338 295.810699463 296.179840088 296.789215088 297.220855713 297.570465088 298.310699463 299.230621338 299.720855713 299.810699463 300.349761963 301.810699463 303.339996338 303.470855713 301.640777588 298.660308838 295.800933838 295.949462891 296.000244141 296.289306641 297.060791016 297.879150391 298.470947266 299.150634766 299.910400391 300.220947266 299.949462891 300.230712891 302.260009766 305.349853516 307.250244141 306.490478516 303.920166016 301.410400391 294.320373535 294.679748535 295.000061035 295.250061035 295.789123535 296.83013916 298.050842285 298.929748535 299.250061035 299.320373535 299.74029541 300.88092041 302.160217285 302.140686035 299.84967041 296.11920166 292.800842285 295.379058838 295.589996338 296.150543213 296.849761963 297.320465088 297.849761963 298.810699463 299.769683838 300.019683838 299.740386963 300.080230713 301.550933838 303.119293213 303.259918213 301.539215088 298.869293213 296.330230713 295.310791016 295.549072266 296.150634766 297.099853516 297.929931641 298.619384766 299.490478516 300.359619141 300.470947266 299.830322266 299.820556641 301.670166016 304.709228516 306.679931641 306.140869141 303.830322266 301.429931641 293.019592285 293.58013916 294.41998291 295.300842285 296.300842285 297.570373535 298.81060791 299.429748535 299.269592285 298.890686035 299.20904541 300.550842285 302.00982666 302.09967041 300.09967041 296.88092041 293.86920166 294.199371338 294.779449463 295.839996338 296.959136963 297.789215088 298.570465088 299.539215088 300.170074463 299.859527588 299.220855713 299.650543213 301.379058838 302.980621338 302.890777588 301.070465088 298.619293213 296.349761963 294.330322266 294.990478516 296.170166016 297.500244141 298.449462891 299.129150391 299.920166016 300.570556641 300.340087891 299.449462891 299.379150391 301.199462891 304.080322266 305.869384766 305.420166016 303.480712891 301.449462891 292.11920166 292.949279785 294.269592285 295.660217285 296.91998291 298.109436035 299.06060791 299.36920166 298.93951416 298.50982666 299.08013916 300.70904541 302.179748535 302.070373535 300.15045166 297.40045166 294.730529785 293.580230713 294.519683838 295.920074463 297.300933838 298.269683838 299.050933838 299.779449463 299.949371338 299.240386963 298.629058838 299.550933838 301.750152588 303.310699463 302.759918213 300.629058838 298.199371338 295.970855713 294.369384766 295.359619141 296.810791016 298.289306641 299.209228516 299.640869141 300.019775391 300.240478516 299.830322266 299.160400391 299.560791016 301.670166016 304.390869141 305.810791016 305.220947266 303.439697266 301.599853516 293.97076416 295.00982666 296.08013916 297.00982666 297.68951416 298.250061035 298.730529785 298.86920166 298.56060791 298.480529785 299.52935791 301.47076416 302.750061035 302.09967041 299.88092041 297.339904785 294.93951416 295.279449463 296.339996338 297.369293213 298.199371338 298.650543213 298.949371338 299.300933838 299.230621338 298.570465088 298.439605713 300.029449463 302.629058838 303.939605713 302.769683838 300.179840088 297.640777588 295.279449463 296.420166016 297.260009766 298.250244141 299.289306641 299.820556641 299.779541016 299.629150391 299.490478516 299.170166016 299.109619141 300.299072266 302.859619141 305.439697266 306.439697266 305.549072266 303.679931641 301.699462891 299.000061035 299.800842285 299.660217285 299.13092041 298.59967041 298.320373535 298.41998291 298.550842285 298.45904541 298.68951416 300.13092041 302.36920166 303.519592285 302.25982666 299.45904541 296.789123535 294.56060791 299.429840088 300.099761963 300.050933838 299.660308838 299.089996338 298.720855713 298.740386963 298.689605713 298.349761963 298.699371338 300.759918213 303.509918213 304.500152588 302.699371338 299.599761963 296.869293213 294.449371338 299.840087891 299.959228516 299.939697266 300.140869141 300.119384766 299.650634766 299.109619141 298.789306641 298.730712891 299.269775391 301.070556641 303.890869141 306.310791016 306.970947266 305.810791016 303.769775391 301.510009766 304.74029541 304.570373535 302.75982666 300.75982666 299.36920166 298.730529785 298.70904541 298.83013916 298.699279785 298.88092041 300.40045166 302.90045166 304.16998291 302.58013916 299.199279785 296.22076416 294.089904785 303.929840088 303.699371338 302.359527588 300.859527588 299.609527588 298.920074463 298.830230713 298.839996338 298.650543213 299.119293213 301.250152588 304.009918213 304.859527588 302.709136963 299.160308838 296.189605713 293.750152588 302.760009766 301.959228516 301.000244141 300.510009766 300.150634766 299.539306641 298.959228516 298.699462891 298.820556641 299.609619141 301.529541016 304.320556641 306.580322266 307.029541016 305.750244141 303.609619141 301.150634766 308.06060791 306.47076416 303.45904541 300.95904541 299.750061035 299.429748535 299.47076416 299.410217285 299.039123535 298.95904541 300.320373535 302.910217285 304.390686035 302.769592285 299.070373535 295.839904785 293.820373535 306.410308838 305.009918213 302.810699463 301.009918213 299.970855713 299.550933838 299.529449463 299.439605713 299.119293213 299.410308838 301.349761963 304.119293213 305.129058838 302.970855713 299.109527588 295.789215088 293.320465088 303.869384766 302.420166016 301.029541016 300.330322266 300.000244141 299.599853516 299.279541016 299.230712891 299.400634766 300.029541016 301.689697266 304.279541016 306.490478516 306.920166016 305.570556641 303.349853516 300.869384766 308.089904785 305.429748535 302.230529785 300.320373535 299.93951416 300.050842285 299.91998291 299.550842285 299.089904785 299.000061035 300.179748535 302.519592285 303.93951416 302.38092041 298.609436035 295.31060791 293.480529785 306.359527588 304.060699463 301.650543213 300.339996338 300.089996338 300.170074463 300.109527588 299.779449463 299.330230713 299.539215088 301.300933838 303.970855713 305.119293213 303.109527588 299.070465088 295.390777588 292.869293213 303.429931641 301.849853516 300.529541016 299.910400391 299.750244141 299.699462891 299.689697266 299.789306641 299.859619141 300.160400391 301.439697266 303.849853516 306.160400391 306.730712891 305.310791016 302.980712891 300.519775391 306.47076416 303.730529785 301.15045166 300.09967041 300.300842285 300.31060791 299.59967041 298.910217285 298.769592285 299.13092041 300.230529785 302.02935791 303.019592285 301.390686035 297.660217285 294.38092041 292.699279785 305.119293213 302.660308838 300.550933838 299.859527588 300.259918213 300.539215088 300.119293213 299.470855713 299.189605713 299.720855713 301.390777588 303.650543213 304.550933838 302.519683838 298.420074463 294.589996338 292.119293213 302.519775391 301.289306641 300.230712891 299.670166016 299.629150391 299.730712891 299.779541016 299.779541016 299.699462891 299.760009766 300.750244141 303.019775391 305.449462891 306.230712891 304.840087891 302.369384766 299.929931641 305.019592285 303.09967041 301.269592285 300.59967041 300.72076416 300.250061035 298.97076416 298.16998291 298.570373535 299.550842285 300.65045166 301.859436035 302.339904785 300.609436035 296.88092041 293.41998291 291.59967041 303.929840088 302.080230713 300.449371338 300.089996338 300.640777588 300.650543213 299.730621338 298.920074463 299.109527588 300.240386963 301.910308838 303.500152588 303.740386963 301.500152588 297.420074463 293.619293213 291.300933838 301.660400391 301.010009766 300.199462891 299.730712891 299.760009766 299.810791016 299.609619141 299.390869141 299.289306641 299.410400391 300.240478516 302.199462891 304.539306641 305.560791016 304.400634766 301.920166016 299.420166016 304.109436035 303.160217285 301.72076416 300.910217285 300.769592285 300.179748535 299.000061035 298.47076416 299.230529785 300.45904541 301.47076416 302.339904785 302.63092041 300.949279785 297.15045166 293.22076416 290.859436035 302.800933838 301.869293213 300.689605713 300.420074463 300.859527588 300.650543213 299.539215088 298.879058838 299.670074463 301.390777588 303.039215088 304.019683838 303.660308838 301.230621338 297.179840088 293.369293213 291.070465088 300.549072266 300.420166016 299.900634766 299.699462891 299.959228516 299.990478516 299.590087891 299.359619141 299.689697266 300.209228516 300.869384766 302.150634766 304.029541016 305.209228516 304.510009766 302.170166016 299.490478516 303.089904785 302.70904541 301.359436035 300.390686035 300.320373535 300.320373535 299.949279785 299.93951416 300.70904541 301.679748535 302.43951416 303.25982666 303.699279785 302.289123535 298.519592285 294.179748535 291.18951416 301.300933838 301.039215088 300.230621338 300.070465088 300.539215088 300.519683838 299.839996338 299.740386963 301.029449463 302.970855713 304.490386963 305.179840088 304.679840088 302.320465088 298.320465088 294.320465088 291.730621338 299.060791016 299.170166016 298.949462891 299.220947266 299.900634766 300.109619141 299.840087891 300.119384766 301.289306641 302.379150391 302.689697266 302.959228516 304.039306641 305.260009766 305.070556641 302.959228516 299.990478516 301.66998291 301.50982666 300.34967041 299.519592285 299.75982666 300.47076416 300.980529785 301.40045166 301.97076416 302.480529785 302.99029541 303.820373535 304.43951416 303.359436035 300.00982666 295.83013916 292.61920166 299.670074463 299.640777588 299.170074463 299.240386963 299.869293213 300.289215088 300.420074463 301.070465088 302.580230713 304.240386963 305.400543213 306.009918213 305.730621338 303.720855713 299.920074463 295.789215088 292.830230713 297.810791016 297.840087891 297.810791016 298.470947266 299.449462891 299.900634766 300.090087891 301.170166016 303.170166016 304.590087891 304.459228516 303.760009766 304.039306641 305.129150391 305.269775391 303.349853516 300.199462891 300.25982666 300.25982666 299.61920166 299.16998291 299.480529785 300.269592285 301.00982666 301.570373535 302.02935791 302.390686035 302.800842285 303.47076416 303.90045166 303.050842285 300.56060791 297.34967041 294.50982666 298.679840088 298.650543213 298.519683838 298.800933838 299.420074463 300.039215088 300.769683838 301.970855713 303.439605713 304.560699463 305.160308838 305.560699463 305.429840088 303.839996338 300.550933838 296.750152588 293.789215088 297.510009766 297.340087891 297.349853516 298.039306641 298.929931641 299.449462891 300.060791016 301.679931641 303.959228516 305.340087891 304.970947266 303.890869141 303.720947266 304.490478516 304.599853516 302.830322266 299.820556641 299.31060791 299.539123535 299.519592285 299.38092041 299.41998291 299.660217285 300.02935791 300.500061035 301.11920166 301.75982666 302.269592285 302.500061035 302.300842285 301.43951416 299.980529785 298.160217285 296.019592285 298.570465088 298.550933838 298.750152588 299.129058838 299.470855713 299.839996338 300.609527588 301.910308838 303.230621338 303.959136963 304.129058838 304.099761963 303.720855713 302.379058838 299.920074463 297.050933838 294.570465088 298.039306641 297.789306641 297.810791016 298.260009766 298.740478516 299.080322266 299.820556641 301.390869141 303.310791016 304.480712891 304.420166016 303.789306641 303.549072266 303.789306641 303.549072266 301.990478516 299.580322266 298.890686035 299.18951416 299.47076416 299.480529785 299.25982666 299.02935791 298.97076416 299.31060791 300.160217285 301.24029541 301.86920166 301.589904785 300.58013916 299.52935791 298.820373535 298.109436035 296.519592285 298.820465088 298.859527588 299.250152588 299.640777588 299.699371338 299.660308838 300.039215088 301.039215088 302.199371338 302.980621338 303.160308838 302.769683838 301.869293213 300.560699463 299.029449463 297.349761963 295.459136963 298.599853516 298.490478516 298.599853516 298.810791016 298.890869141 299.010009766 299.619384766 300.720947266 301.980712891 303.049072266 303.820556641 304.119384766 303.929931641 303.459228516 302.799072266 301.740478516 300.269775391 298.77935791 298.91998291 299.070373535 299.070373535 298.929748535 298.730529785 298.550842285 298.66998291 299.47076416 300.730529785 301.43951416 300.84967041 299.320373535 298.050842285 297.589904785 297.289123535 295.97076416 298.900543213 298.929840088 299.310699463 299.699371338 299.750152588 299.550933838 299.470855713 299.849761963 300.750152588 301.849761963 302.459136963 302.019683838 300.709136963 299.400543213 298.629058838 297.939605713 296.369293213 298.590087891 298.720947266 299.010009766 299.150634766 299.060791016 299.129150391 299.549072266 300.070556641 300.670166016 301.779541016 303.379150391 304.459228516 304.199462891 303.129150391 302.379150391 302.129150391 301.640869141 298.70904541 298.66998291 298.539123535 298.47076416 298.61920166 298.750061035 298.52935791 298.24029541 298.609436035 299.679748535 300.410217285 299.86920166 298.339904785 297.019592285 296.41998291 295.95904541 294.789123535 298.750152588 298.750152588 298.949371338 299.310699463 299.599761963 299.570465088 299.160308838 298.800933838 299.179840088 300.359527588 301.390777588 301.140777588 299.769683838 298.599761963 298.379058838 298.220855713 296.769683838 298.179931641 298.470947266 298.900634766 299.080322266 299.029541016 299.170166016 299.439697266 299.439697266 299.480712891 300.510009766 302.449462891 303.779541016 303.330322266 302.080322266 301.740478516 302.439697266 302.660400391 298.49029541 298.49029541 298.24029541 298.11920166 298.449279785 298.789123535 298.480529785 297.750061035 297.56060791 298.22076416 298.84967041 298.52935791 297.390686035 296.20904541 295.359436035 294.570373535 293.61920166 298.580230713 298.609527588 298.619293213 298.879058838 299.400543213 299.660308838 299.140777588 298.199371338 297.920074463 298.740386963 299.699371338 299.570465088 298.379058838 297.480621338 297.580230713 297.699371338 296.410308838 297.789306641 298.140869141 298.609619141 298.840087891 298.920166016 299.150634766 299.269775391 298.859619141 298.439697266 299.150634766 300.849853516 301.920166016 301.359619141 300.390869141 300.760009766 302.199462891 302.730712891 298.070373535 298.339904785 298.199279785 298.070373535 298.36920166 298.699279785 298.359436035 297.52935791 297.070373535 297.31060791 297.61920166 297.36920166 296.59967041 295.640686035 294.63092041 293.640686035 292.97076416 298.429840088 298.619293213 298.539215088 298.640777588 299.179840088 299.619293213 299.240386963 298.209136963 297.550933838 297.769683838 298.220855713 297.910308838 296.890777588 296.189605713 296.379058838 296.629058838 295.769683838 297.629150391 298.010009766 298.449462891 298.679931641 298.859619141 299.170166016 299.209228516 298.619384766 297.990478516 298.320556641 299.449462891 300.019775391 299.429931641 298.900634766 299.779541016 301.510009766 302.119384766 297.72076416 298.199279785 298.20904541 298.070373535 298.25982666 298.519592285 298.34967041 297.859436035 297.519592285 297.449279785 297.289123535 296.859436035 296.25982666 295.480529785 294.410217285 293.359436035 292.84967041 298.259918213 298.609527588 298.539215088 298.509918213 298.869293213 299.300933838 299.209136963 298.609527588 298.080230713 297.920074463 297.759918213 297.140777588 296.160308838 295.459136963 295.429840088 295.670074463 295.379058838 297.599853516 298.070556641 298.459228516 298.619384766 298.820556641 299.170166016 299.279541016 298.840087891 298.340087891 298.490478516 299.049072266 299.090087891 298.420166016 298.099853516 299.029541016 300.609619141 301.340087891 297.660217285 298.140686035 298.179748535 298.06060791 298.140686035 298.33013916 298.359436035 298.300842285 298.250061035 298.019592285 297.49029541 296.929748535 296.43951416 295.730529785 294.589904785 293.50982666 293.00982666 298.109527588 298.509918213 298.480621338 298.379058838 298.550933838 298.820465088 298.920074463 298.900543213 298.830230713 298.599761963 298.080230713 297.310699463 296.400543213 295.529449463 295.009918213 295.039215088 295.189605713 297.640869141 298.260009766 298.570556641 298.560791016 298.670166016 299.010009766 299.240478516 299.140869141 299.010009766 299.160400391 299.310791016 298.949462891 298.209228516 297.820556641 298.359619141 299.510009766 300.429931641 297.800842285 298.11920166 298.13092041 298.089904785 298.15045166 298.179748535 298.18951416 298.31060791 298.43951416 298.22076416 297.66998291 297.269592285 296.980529785 296.24029541 294.910217285 293.74029541 293.179748535 298.070465088 298.349761963 298.330230713 298.300933838 298.410308838 298.480621338 298.550933838 298.800933838 299.070465088 298.920074463 298.369293213 297.759918213 297.060699463 295.990386963 294.849761963 294.439605713 294.759918213 297.720947266 298.449462891 298.660400391 298.490478516 298.470947266 298.760009766 299.019775391 299.119384766 299.250244141 299.449462891 299.410400391 298.980712891 298.340087891 297.859619141 297.789306641 298.269775391 299.199462891 297.77935791 297.980529785 298.050842285 298.18951416 298.33013916 298.22076416 298.00982666 298.070373535 298.230529785 298.089904785 297.769592285 297.70904541 297.660217285 296.81060791 295.18951416 293.88092041 293.320373535 298.029449463 298.150543213 298.099761963 298.250152588 298.480621338 298.470855713 298.379058838 298.589996338 298.910308838 298.820465088 298.400543213 298.099761963 297.660308838 296.439605713 294.740386963 293.810699463 294.060699463 297.720947266 298.470947266 298.609619141 298.410400391 298.459228516 298.720947266 298.859619141 298.890869141 299.039306641 299.240478516 299.240478516 299.029541016 298.760009766 298.310791016 297.619384766 297.250244141 297.789306641 297.539123535 297.750061035 297.91998291 298.269592285 298.550842285 298.41998291 298.109436035 298.08013916 298.24029541 298.16998291 298.00982666 298.16998291 298.230529785 297.300842285 295.50982666 294.13092041 293.63092041 297.900543213 297.929840088 297.869293213 298.170074463 298.589996338 298.660308838 298.500152588 298.609527588 298.890777588 298.849761963 298.580230713 298.470855713 298.179840088 296.849761963 294.810699463 293.509918213 293.589996338 297.570556641 298.230712891 298.379150391 298.369384766 298.640869141 298.970947266 298.980712891 298.830322266 298.900634766 299.140869141 299.250244141 299.310791016 299.359619141 298.959228516 297.859619141 296.769775391 296.830322266 297.410217285 297.660217285 297.83013916 298.24029541 298.609436035 298.589904785 298.339904785 298.359436035 298.539123535 298.47076416 298.27935791 298.410217285 298.49029541 297.68951416 296.11920166 294.88092041 294.38092041 297.740386963 297.830230713 297.789215088 298.089996338 298.570465088 298.750152588 298.679840088 298.810699463 299.119293213 299.199371338 299.009918213 298.879058838 298.519683838 297.220855713 295.250152588 293.879058838 293.810699463 297.369384766 297.939697266 298.129150391 298.320556641 298.810791016 299.209228516 299.170166016 298.970947266 299.109619141 299.420166016 299.570556641 299.590087891 299.609619141 299.230712891 298.129150391 296.939697266 296.840087891 297.570373535 297.83013916 297.890686035 298.15045166 298.50982666 298.56060791 298.38092041 298.41998291 298.63092041 298.61920166 298.41998291 298.449279785 298.570373535 298.179748535 297.20904541 296.33013916 295.72076416 297.679840088 297.929840088 297.910308838 298.060699463 298.429840088 298.679840088 298.730621338 298.890777588 299.230621338 299.400543213 299.269683838 299.029449463 298.599761963 297.589996338 296.129058838 295.019683838 294.759918213 297.310791016 297.859619141 298.080322266 298.299072266 298.769775391 299.150634766 299.140869141 299.060791016 299.349853516 299.740478516 299.769775391 299.500244141 299.269775391 299.019775391 298.449462891 297.869384766 298.090087891 297.699279785 297.99029541 297.99029541 298.140686035 298.429748535 298.47076416 298.24029541 298.179748535 298.410217285 298.56060791 298.52935791 298.58013916 298.800842285 298.90045166 298.660217285 298.18951416 297.390686035 297.609527588 298.060699463 298.089996338 298.080230713 298.320465088 298.619293213 298.759918213 298.849761963 299.050933838 299.250152588 299.240386963 299.039215088 298.730621338 298.279449463 297.650543213 296.929840088 296.300933838 297.359619141 298.000244141 298.199462891 298.279541016 298.590087891 298.929931641 299.000244141 299.019775391 299.340087891 299.709228516 299.660400391 299.260009766 299.039306641 299.230712891 299.560791016 299.869384766 300.390869141 297.50982666 297.86920166 297.99029541 298.20904541 298.519592285 298.550842285 298.24029541 298.02935791 298.24029541 298.589904785 298.769592285 298.859436035 299.11920166 299.519592285 299.800842285 299.679748535 298.820373535 297.420074463 297.990386963 298.119293213 298.080230713 298.310699463 298.720855713 298.949371338 298.900543213 298.869293213 299.039215088 299.250152588 299.310699463 299.330230713 299.529449463 299.709136963 299.349761963 298.259918213 297.369384766 298.099853516 298.250244141 298.230712891 298.480712891 298.879150391 299.039306641 299.039306641 299.179931641 299.459228516 299.570556641 299.500244141 299.730712891 300.570556641 301.720947266 302.660400391 303.140869141 297.13092041 297.63092041 297.95904541 298.300842285 298.640686035 298.68951416 298.390686035 298.160217285 298.300842285 298.660217285 298.859436035 298.890686035 299.039123535 299.429748535 299.90045166 300.08013916 299.49029541 297.160308838 297.789215088 298.060699463 298.089996338 298.339996338 298.849761963 299.179840088 299.050933838 298.839996338 299.000152588 299.449371338 299.800933838 300.099761963 300.730621338 301.459136963 301.439605713 300.179840088 297.299072266 298.000244141 298.109619141 298.119384766 298.500244141 299.039306641 299.279541016 299.150634766 299.060791016 299.289306641 299.709228516 300.189697266 300.929931641 302.209228516 303.789306641 304.990478516 305.330322266 296.980529785 297.609436035 298.08013916 298.390686035 298.589904785 298.59967041 298.429748535 298.289123535 298.359436035 298.500061035 298.49029541 298.359436035 298.33013916 298.50982666 298.88092041 299.27935791 299.289123535 297.039215088 297.709136963 298.109527588 298.189605713 298.330230713 298.759918213 299.119293213 299.039215088 298.789215088 298.929840088 299.449371338 299.879058838 300.150543213 300.750152588 301.670074463 302.099761963 301.300933838 297.269775391 297.820556641 297.929931641 298.070556641 298.549072266 299.099853516 299.299072266 299.119384766 298.980712891 299.260009766 299.890869141 300.580322266 301.369384766 302.519775391 304.049072266 305.470947266 306.119384766 297.11920166 297.84967041 298.320373535 298.41998291 298.34967041 298.289123535 298.269592285 298.300842285 298.300842285 298.199279785 297.980529785 297.750061035 297.58013916 297.429748535 297.449279785 297.910217285 298.58013916 297.070465088 297.800933838 298.320465088 298.369293213 298.259918213 298.459136963 298.830230713 298.890777588 298.670074463 298.689605713 299.050933838 299.279449463 299.230621338 299.400543213 300.140777588 301.019683838 301.230621338 297.269775391 297.730712891 297.920166016 298.199462891 298.590087891 298.910400391 298.990478516 298.910400391 298.920166016 299.230712891 299.769775391 300.240478516 300.560791016 301.070556641 302.189697266 303.890869141 305.470947266 297.230529785 298.00982666 298.429748535 298.40045166 298.20904541 298.11920166 298.199279785 298.300842285 298.27935791 298.11920166 297.890686035 297.72076416 297.480529785 296.97076416 296.49029541 296.74029541 297.750061035 297.029449463 297.810699463 298.439605713 298.490386963 298.199371338 298.250152588 298.679840088 298.910308838 298.689605713 298.509918213 298.609527588 298.609527588 298.220855713 297.830230713 298.099761963 299.140777588 300.339996338 297.119384766 297.599853516 298.010009766 298.439697266 298.660400391 298.679931641 298.709228516 298.830322266 298.959228516 299.140869141 299.410400391 299.580322266 299.439697266 299.230712891 299.709228516 301.449462891 304.000244141 297.160217285 297.929748535 298.33013916 298.36920166 298.300842285 298.289123535 298.34967041 298.34967041 298.31060791 298.24029541 298.18951416 298.13092041 297.86920166 297.179748535 296.320373535 296.16998291 297.00982666 296.869293213 297.679840088 298.379058838 298.470855713 298.189605713 298.300933838 298.859527588 299.150543213 298.859527588 298.480621338 298.449371338 298.429840088 297.959136963 297.230621338 296.970855713 297.759918213 299.359527588 296.769775391 297.340087891 298.010009766 298.570556641 298.699462891 298.629150391 298.779541016 299.039306641 299.060791016 298.920166016 299.010009766 299.230712891 299.090087891 298.449462891 298.170166016 299.480712891 302.410400391 297.15045166 297.839904785 298.22076416 298.36920166 298.49029541 298.56060791 298.449279785 298.250061035 298.160217285 298.230529785 298.289123535 298.24029541 298.039123535 297.519592285 296.730529785 296.250061035 296.500061035 296.779449463 297.650543213 298.349761963 298.449371338 298.259918213 298.490386963 299.070465088 299.220855713 298.759918213 298.349761963 298.379058838 298.470855713 298.109527588 297.410308838 296.920074463 297.300933838 298.660308838 296.429931641 297.109619141 297.929931641 298.539306641 298.650634766 298.689697266 299.010009766 299.240478516 298.959228516 298.519775391 298.629150391 299.179931641 299.330322266 298.590087891 297.740478516 298.390869141 301.060791016 297.31060791 297.97076416 298.300842285 298.45904541 298.609436035 298.63092041 298.34967041 297.97076416 297.890686035 298.070373535 298.109436035 297.88092041 297.750061035 297.72076416 297.429748535 296.820373535 296.34967041 296.920074463 297.869293213 298.509918213 298.539215088 298.390777588 298.660308838 299.050933838 298.890777588 298.320465088 298.070465088 298.230621338 298.220855713 297.859527588 297.459136963 297.289215088 297.480621338 298.250152588 296.320556641 297.090087891 297.939697266 298.470947266 298.560791016 298.709228516 299.070556641 299.099853516 298.560791016 298.099853516 298.369384766 299.080322266 299.279541016 298.629150391 297.849853516 298.240478516 300.359619141 297.31060791 298.09967041 298.500061035 298.609436035 298.65045166 298.589904785 298.269592285 297.890686035 297.890686035 298.16998291 298.13092041 297.68951416 297.539123535 297.949279785 298.16998291 297.56060791 296.519592285 297.039215088 298.089996338 298.699371338 298.689605713 298.589996338 298.839996338 298.970855713 298.529449463 298.039215088 298.129058838 298.359527588 297.980621338 297.339996338 297.330230713 297.859527588 298.209136963 298.339996338 296.279541016 297.189697266 298.080322266 298.560791016 298.650634766 298.810791016 298.990478516 298.730712891 298.189697266 298.099853516 298.590087891 298.929931641 298.720947266 298.359619141 298.470947266 299.340087891 300.859619141 296.910217285 297.980529785 298.61920166 298.75982666 298.72076416 298.660217285 298.429748535 298.08013916 298.089904785 298.45904541 298.52935791 298.089904785 297.86920166 298.300842285 298.58013916 297.84967041 296.58013916 296.970855713 298.070465088 298.709136963 298.779449463 298.820465088 299.099761963 299.070465088 298.519683838 298.259918213 298.750152588 299.070465088 298.349761963 297.490386963 297.890777588 299.160308838 299.740386963 299.250152588 296.080322266 297.189697266 298.230712891 298.779541016 298.959228516 299.109619141 299.029541016 298.519775391 298.170166016 298.629150391 299.299072266 299.099853516 298.400634766 298.650634766 300.209228516 301.920166016 302.709228516 296.43951416 297.750061035 298.640686035 298.86920166 298.800842285 298.77935791 298.58013916 298.109436035 297.88092041 298.24029541 298.66998291 298.61920166 298.41998291 298.449279785 298.250061035 297.18951416 295.929748535 296.910308838 297.980621338 298.660308838 298.859527588 299.019683838 299.320465088 299.220855713 298.660308838 298.550933838 299.289215088 299.779449463 299.199371338 298.619293213 299.490386963 301.160308838 301.699371338 300.629058838 295.859619141 297.140869141 298.320556641 299.010009766 299.299072266 299.439697266 299.179931641 298.510009766 298.299072266 299.140869141 299.929931641 299.539306641 298.900634766 300.039306641 302.900634766 305.080322266 304.929931641 296.320373535 297.730529785 298.750061035 298.949279785 298.750061035 298.66998291 298.41998291 297.65045166 296.980529785 297.199279785 298.06060791 298.660217285 298.609436035 298.13092041 297.15045166 295.609436035 294.38092041 297.170074463 298.150543213 298.830230713 299.019683838 299.109527588 299.259918213 299.070465088 298.470855713 298.279449463 298.929840088 299.629058838 299.670074463 299.849761963 301.109527588 302.640777588 302.759918213 301.300933838 295.970947266 297.330322266 298.539306641 299.170166016 299.390869141 299.470947266 299.179931641 298.470947266 298.209228516 298.959228516 299.810791016 299.769775391 299.869384766 301.820556641 305.060791016 306.859619141 305.830322266 296.480529785 297.90045166 298.910217285 298.980529785 298.570373535 298.339904785 298.02935791 297.09967041 296.070373535 296.050842285 297.13092041 298.18951416 298.300842285 297.41998291 295.77935791 293.789123535 292.359436035 297.619293213 298.519683838 299.160308838 299.250152588 299.070465088 298.929840088 298.640777588 298.039215088 297.629058838 297.910308838 298.619293213 299.310699463 300.230621338 301.500152588 302.310699463 301.800933838 300.279449463 296.429931641 297.820556641 298.939697266 299.359619141 299.269775391 299.160400391 298.939697266 298.340087891 297.879150391 298.179931641 298.910400391 299.500244141 300.480712891 302.660400391 305.109619141 305.820556641 304.369384766 296.45904541 297.929748535 298.99029541 299.02935791 298.449279785 298.070373535 297.789123535 297.019592285 295.99029541 295.750061035 296.640686035 297.660217285 297.74029541 296.65045166 294.72076416 292.480529785 290.65045166 297.859527588 298.720855713 299.339996338 299.410308838 299.039215088 298.670074463 298.349761963 297.859527588 297.320465088 297.189605713 297.670074463 298.640777588 299.769683838 300.519683838 300.300933838 299.199371338 297.920074463 296.920166016 298.289306641 299.349853516 299.619384766 299.230712891 298.879150391 298.699462891 298.289306641 297.670166016 297.420166016 297.859619141 298.869384766 300.340087891 302.019775391 302.949462891 302.429931641 301.129150391 296.43951416 297.859436035 298.99029541 299.18951416 298.65045166 298.13092041 297.84967041 297.33013916 296.56060791 296.22076416 296.66998291 297.269592285 297.160217285 296.089904785 294.300842285 292.070373535 289.800842285 297.990386963 298.679840088 299.279449463 299.500152588 299.220855713 298.779449463 298.420074463 298.039215088 297.519683838 297.160308838 297.390777588 298.259918213 299.119293213 299.109527588 298.019683838 296.619293213 295.699371338 297.420166016 298.580322266 299.580322266 299.939697266 299.519775391 298.929931641 298.629150391 298.310791016 297.660400391 297.070556641 297.199462891 298.240478516 299.670166016 300.480712891 299.990478516 298.650634766 297.859619141 297.300842285 298.15045166 299.070373535 299.50982666 299.179748535 298.519592285 297.95904541 297.47076416 296.93951416 296.660217285 296.789123535 297.000061035 296.77935791 295.949279785 294.52935791 292.519592285 289.949279785 298.599761963 298.800933838 299.240386963 299.660308838 299.670074463 299.230621338 298.679840088 298.150543213 297.660308838 297.339996338 297.509918213 298.189605713 298.689605713 298.199371338 296.740386963 295.369293213 294.699371338 298.439697266 299.010009766 299.750244141 300.260009766 300.029541016 299.269775391 298.619384766 298.160400391 297.580322266 296.990478516 296.970947266 297.840087891 298.929931641 299.090087891 297.869384766 296.310791016 295.910400391 299.519592285 299.050842285 299.27935791 299.800842285 299.769592285 299.019592285 298.039123535 297.269592285 296.839904785 296.730529785 296.859436035 297.000061035 296.88092041 296.339904785 295.300842285 293.56060791 290.88092041 300.000152588 299.390777588 299.410308838 299.920074463 300.189605713 299.750152588 298.839996338 297.980621338 297.470855713 297.339996338 297.619293213 298.209136963 298.519683838 297.939605713 296.629058838 295.490386963 294.859527588 300.369384766 300.000244141 300.060791016 300.510009766 300.480712891 299.619384766 298.529541016 297.779541016 297.310791016 297.000244141 297.080322266 297.740478516 298.529541016 298.480712891 297.260009766 295.840087891 295.449462891 302.40045166 300.27935791 299.45904541 299.81060791 300.09967041 299.480529785 298.24029541 297.199279785 296.81060791 296.910217285 297.18951416 297.43951416 297.49029541 297.160217285 296.31060791 294.769592285 292.16998291 301.650543213 300.150543213 299.629058838 300.070465088 300.490386963 300.070465088 298.949371338 297.890777588 297.400543213 297.500152588 297.890777588 298.339996338 298.550933838 298.129058838 297.140777588 296.170074463 295.300933838 302.640869141 301.330322266 300.480712891 300.570556641 300.619384766 299.810791016 298.500244141 297.549072266 297.230712891 297.260009766 297.459228516 297.929931641 298.490478516 298.539306641 297.699462891 296.459228516 295.699462891 304.75982666 301.45904541 299.660217285 299.61920166 300.09967041 299.81060791 298.68951416 297.66998291 297.359436035 297.56060791 297.84967041 298.089904785 298.179748535 297.890686035 297.070373535 295.679748535 293.359436035 302.830230713 300.670074463 299.759918213 300.039215088 300.490386963 300.179840088 299.150543213 298.199371338 297.920074463 298.160308838 298.480621338 298.660308838 298.709136963 298.439605713 297.720855713 296.750152588 295.519683838 304.220947266 302.410400391 300.849853516 300.449462891 300.470947266 299.900634766 298.750244141 297.890869141 297.709228516 297.900634766 298.060791016 298.260009766 298.599853516 298.789306641 298.330322266 297.220947266 295.980712891 306.15045166 302.679748535 300.24029541 299.570373535 299.949279785 300.00982666 299.289123535 298.519592285 298.31060791 298.410217285 298.43951416 298.410217285 298.40045166 298.11920166 297.300842285 296.050842285 294.140686035 303.459136963 301.029449463 299.929840088 300.039215088 300.410308838 300.220855713 299.470855713 298.839996338 298.769683838 299.000152588 299.060699463 298.920074463 298.810699463 298.640777588 298.089996338 297.070465088 295.560699463 304.720947266 303.019775391 301.199462891 300.369384766 300.269775391 299.970947266 299.269775391 298.689697266 298.580322266 298.660400391 298.580322266 298.449462891 298.560791016 298.810791016 298.609619141 297.629150391 296.099853516 307.11920166 304.22076416 301.34967041 299.859436035 299.86920166 300.140686035 299.820373535 299.27935791 299.089904785 299.00982666 298.66998291 298.31060791 298.199279785 297.97076416 297.20904541 296.02935791 294.45904541 304.009918213 301.539215088 300.310699463 300.209136963 300.459136963 300.330230713 299.810699463 299.390777588 299.390777588 299.470855713 299.250152588 298.849761963 298.660308838 298.589996338 298.160308838 297.129058838 295.609527588 304.660400391 303.429931641 301.650634766 300.510009766 300.199462891 300.099853516 299.789306641 299.470947266 299.320556641 299.179931641 298.820556641 298.410400391 298.349853516 298.590087891 298.519775391 297.679931641 296.170166016 308.000061035 305.74029541 302.480529785 300.24029541 299.88092041 300.269592285 300.160217285 299.699279785 299.47076416 299.250061035 298.70904541 298.16998291 298.050842285 297.95904541 297.24029541 295.95904541 294.43951416 304.660308838 302.099761963 300.650543213 300.359527588 300.560699463 300.539215088 300.129058838 299.740386963 299.629058838 299.560699463 299.170074463 298.670074463 298.480621338 298.439605713 297.990386963 296.929840088 295.509918213 304.609619141 303.769775391 302.049072266 300.709228516 300.240478516 300.199462891 300.080322266 299.840087891 299.619384766 299.349853516 298.879150391 298.420166016 298.269775391 298.410400391 298.299072266 297.519775391 296.179931641 308.45904541 306.49029541 302.97076416 300.36920166 299.929748535 300.41998291 300.320373535 299.750061035 299.480529785 299.36920166 298.90045166 298.359436035 298.27935791 298.289123535 297.570373535 296.089904785 294.339904785 305.089996338 302.300933838 300.539215088 300.170074463 300.539215088 300.750152588 300.400543213 299.929840088 299.740386963 299.650543213 299.289215088 298.800933838 298.570465088 298.429840088 297.800933838 296.560699463 295.109527588 304.539306641 303.730712891 301.939697266 300.580322266 300.189697266 300.250244141 300.140869141 299.820556641 299.560791016 299.340087891 299.019775391 298.670166016 298.500244141 298.480712891 298.179931641 297.289306641 295.959228516 308.09967041 306.22076416 302.769592285 300.31060791 300.00982666 300.49029541 300.22076416 299.50982666 299.320373535 299.480529785 299.250061035 298.77935791 298.679748535 298.70904541 298.02935791 296.41998291 294.41998291 305.070465088 302.129058838 300.109527588 299.769683838 300.410308838 300.839996338 300.509918213 299.959136963 299.810699463 299.879058838 299.689605713 299.259918213 298.939605713 298.640777588 297.789215088 296.300933838 294.640777588 304.209228516 303.080322266 301.160400391 300.000244141 299.980712891 300.240478516 300.060791016 299.599853516 299.349853516 299.359619141 299.289306641 299.060791016 298.879150391 298.750244141 298.240478516 297.109619141 295.590087891 307.24029541 305.52935791 302.47076416 300.38092041 300.11920166 300.34967041 299.839904785 299.15045166 299.18951416 299.61920166 299.550842285 299.09967041 298.91998291 298.910217285 298.33013916 296.839904785 294.81060791 304.959136963 302.050933838 299.949371338 299.609527588 300.359527588 300.779449463 300.359527588 299.779449463 299.769683838 300.070465088 300.039215088 299.619293213 299.230621338 298.830230713 297.929840088 296.320465088 294.449371338 303.760009766 302.189697266 300.199462891 299.390869141 299.779541016 300.209228516 299.929931641 299.349853516 299.189697266 299.429931641 299.539306641 299.320556641 299.080322266 298.890869141 298.340087891 297.080322266 295.320556641 306.589904785 305.089904785 302.45904541 300.59967041 300.140686035 299.99029541 299.38092041 298.949279785 299.300842285 299.820373535 299.68951416 299.179748535 298.91998291 298.88092041 298.38092041 297.16998291 295.38092041 304.990386963 302.289215088 300.220855713 299.810699463 300.400543213 300.599761963 300.019683838 299.509918213 299.709136963 300.170074463 300.150543213 299.670074463 299.199371338 298.779449463 297.959136963 296.490386963 294.629058838 303.459228516 301.549072266 299.650634766 299.150634766 299.769775391 300.170166016 299.760009766 299.179931641 299.189697266 299.599853516 299.730712891 299.379150391 299.000244141 298.779541016 298.320556641 297.150634766 295.330322266 306.269592285 304.800842285 302.38092041 300.59967041 299.91998291 299.539123535 299.09967041 299.13092041 299.72076416 300.08013916 299.70904541 299.109436035 298.86920166 298.750061035 298.269592285 297.31060791 295.84967041 304.810699463 302.320465088 300.379058838 299.939605713 300.330230713 300.310699463 299.720855713 299.439605713 299.849761963 300.320465088 300.160308838 299.570465088 299.019683838 298.539215088 297.769683838 296.529449463 294.920074463 303.019775391 301.099853516 299.519775391 299.260009766 299.830322266 300.049072266 299.570556641 299.140869141 299.349853516 299.840087891 299.869384766 299.359619141 298.820556641 298.500244141 298.080322266 297.099853516 295.459228516 305.66998291 303.980529785 301.68951416 300.160217285 299.570373535 299.269592285 299.15045166 299.570373535 300.250061035 300.33013916 299.679748535 299.050842285 298.86920166 298.679748535 298.109436035 297.25982666 296.09967041 303.740386963 301.550933838 299.959136963 299.699371338 300.050933838 299.980621338 299.570465088 299.609527588 300.199371338 300.539215088 300.179840088 299.509918213 298.949371338 298.359527588 297.500152588 296.379058838 295.050933838 301.879150391 300.379150391 299.359619141 299.349853516 299.779541016 299.810791016 299.400634766 299.209228516 299.590087891 300.019775391 299.929931641 299.359619141 298.740478516 298.279541016 297.750244141 296.849853516 295.449462891 304.18951416 302.38092041 300.50982666 299.59967041 299.449279785 299.36920166 299.43951416 300.019592285 300.640686035 300.49029541 299.679748535 299.06060791 298.910217285 298.65045166 297.95904541 297.15045166 296.20904541 301.820465088 300.189605713 299.250152588 299.359527588 299.800933838 299.810699463 299.609527588 299.890777588 300.509918213 300.629058838 300.080230713 299.429840088 298.970855713 298.349761963 297.359527588 296.250152588 295.109527588 300.060791016 299.359619141 299.070556641 299.310791016 299.629150391 299.590087891 299.359619141 299.410400391 299.799072266 300.049072266 299.830322266 299.299072266 298.769775391 298.250244141 297.560791016 296.599853516 295.310791016 302.019592285 300.550842285 299.50982666 299.429748535 299.730529785 299.75982666 299.77935791 300.25982666 300.800842285 300.59967041 299.789123535 299.16998291 298.949279785 298.589904785 297.839904785 297.09967041 296.339904785 299.929840088 299.189605713 299.000152588 299.429840088 299.879058838 299.879058838 299.810699463 300.160308838 300.670074463 300.570465088 299.869293213 299.269683838 298.959136963 298.400543213 297.390777588 296.330230713 295.310699463 298.500244141 298.679931641 298.990478516 299.359619141 299.609619141 299.580322266 299.529541016 299.720947266 300.019775391 300.019775391 299.640869141 299.179931641 298.820556641 298.359619141 297.609619141 296.609619141 295.320556641 299.949279785 299.289123535 299.15045166 299.65045166 300.13092041 300.11920166 300.00982666 300.34967041 300.81060791 300.66998291 299.93951416 299.300842285 298.93951416 298.480529785 297.72076416 297.06060791 296.480529785 298.910308838 299.109527588 299.470855713 299.920074463 300.189605713 300.129058838 300.089996338 300.420074463 300.769683838 300.509918213 299.750152588 299.170074463 298.900543213 298.400543213 297.480621338 296.560699463 295.650543213 298.010009766 298.769775391 299.310791016 299.650634766 299.810791016 299.830322266 299.890869141 300.109619141 300.279541016 300.080322266 299.570556641 299.119384766 298.830322266 298.459228516 297.799072266 296.900634766 295.679931641 298.63092041 298.84967041 299.33013916 299.949279785 300.31060791 300.250061035 300.160217285 300.410217285 300.74029541 300.609436035 299.99029541 299.34967041 298.91998291 298.36920166 297.609436035 296.97076416 296.49029541 298.759918213 299.589996338 300.150543213 300.390777588 300.449371338 300.369293213 300.379058838 300.619293213 300.810699463 300.500152588 299.820465088 299.259918213 298.929840088 298.379058838 297.519683838 296.730621338 295.949371338 298.420166016 299.260009766 299.709228516 299.939697266 300.090087891 300.170166016 300.260009766 300.410400391 300.470947266 300.209228516 299.699462891 299.220947266 298.890869141 298.500244141 297.939697266 297.230712891 296.199462891 298.140686035 298.95904541 299.63092041 300.050842285 300.24029541 300.25982666 300.320373535 300.480529785 300.59967041 300.40045166 299.88092041 299.339904785 298.910217285 298.34967041 297.570373535 296.84967041 296.34967041 298.920074463 299.939605713 300.439605713 300.529449463 300.529449463 300.560699463 300.580230713 300.660308838 300.689605713 300.449371338 299.949371338 299.480621338 299.060699463 298.429840088 297.580230713 296.800933838 296.060699463 298.900634766 299.510009766 299.799072266 300.029541016 300.250244141 300.390869141 300.429931641 300.470947266 300.459228516 300.250244141 299.879150391 299.449462891 299.039306641 298.549072266 298.000244141 297.420166016 296.560791016 298.179748535 299.18951416 299.820373535 300.050842285 300.140686035 300.31060791 300.480529785 300.519592285 300.410217285 300.16998291 299.800842285 299.359436035 298.91998291 298.36920166 297.61920166 296.820373535 296.199279785 298.949371338 299.900543213 300.369293213 300.480621338 300.570465088 300.679840088 300.660308838 300.550933838 300.439605713 300.279449463 300.000152588 299.619293213 299.189605713 298.560699463 297.750152588 296.920074463 296.070465088 299.010009766 299.420166016 299.699462891 300.019775391 300.289306641 300.410400391 300.379150391 300.320556641 300.250244141 300.140869141 299.929931641 299.619384766 299.199462891 298.670166016 298.109619141 297.529541016 296.709228516 298.339904785 299.300842285 299.88092041 300.08013916 300.18951416 300.40045166 300.570373535 300.480529785 300.27935791 300.109436035 299.86920166 299.410217285 298.84967041 298.33013916 297.699279785 296.90045166 296.109436035 298.900543213 299.730621338 300.269683838 300.500152588 300.650543213 300.730621338 300.660308838 300.449371338 300.289215088 300.209136963 300.019683838 299.640777588 299.160308838 298.640777588 298.000152588 297.170074463 296.140777588 298.980712891 299.400634766 299.810791016 300.140869141 300.289306641 300.310791016 300.260009766 300.179931641 300.080322266 299.990478516 299.859619141 299.619384766 299.240478516 298.769775391 298.279541016 297.720947266 296.830322266 298.429748535 299.269592285 299.90045166 300.179748535 300.300842285 300.47076416 300.550842285 300.410217285 300.20904541 300.15045166 299.980529785 299.429748535 298.68951416 298.15045166 297.70904541 296.980529785 295.99029541 298.920074463 299.709136963 300.330230713 300.619293213 300.670074463 300.660308838 300.609527588 300.470855713 300.359527588 300.289215088 300.089996338 299.619293213 299.039215088 298.599761963 298.160308838 297.420074463 296.289215088 299.090087891 299.660400391 300.160400391 300.359619141 300.299072266 300.220947266 300.230712891 300.189697266 300.049072266 299.900634766 299.760009766 299.510009766 299.119384766 298.720947266 298.390869141 297.920166016 297.029541016 298.43951416 299.250061035 299.949279785 300.300842285 300.390686035 300.49029541 300.52935791 300.34967041 300.109436035 300.070373535 299.97076416 299.390686035 298.550842285 297.980529785 297.65045166 296.95904541 295.789123535 299.029449463 299.820465088 300.470855713 300.679840088 300.580230713 300.550933838 300.609527588 300.539215088 300.400543213 300.320465088 300.150543213 299.660308838 298.990386963 298.509918213 298.170074463 297.519683838 296.359527588 299.269775391 299.929931641 300.420166016 300.480712891 300.289306641 300.230712891 300.320556641 300.260009766 300.010009766 299.799072266 299.689697266 299.439697266 299.000244141 298.590087891 298.330322266 297.959228516 297.140869141 298.500061035 299.339904785 300.089904785 300.41998291 300.45904541 300.519592285 300.570373535 300.320373535 299.929748535 299.800842285 299.800842285 299.38092041 298.550842285 297.91998291 297.56060791 296.83013916 295.519592285 299.109527588 299.910308838 300.529449463 300.650543213 300.519683838 300.550933838 300.670074463 300.529449463 300.230621338 300.099761963 300.080230713 299.740386963 299.060699463 298.480621338 298.089996338 297.439605713 296.289215088 299.310791016 299.959228516 300.410400391 300.439697266 300.320556641 300.369384766 300.449462891 300.240478516 299.830322266 299.629150391 299.650634766 299.490478516 299.019775391 298.510009766 298.170166016 297.779541016 297.029541016 298.660217285 299.539123535 300.24029541 300.50982666 300.49029541 300.550842285 300.609436035 300.300842285 299.74029541 299.50982666 299.65045166 299.43951416 298.660217285 297.890686035 297.38092041 296.609436035 295.300842285 299.140777588 299.939605713 300.519683838 300.619293213 300.529449463 300.629058838 300.740386963 300.459136963 299.970855713 299.820465088 299.970855713 299.800933838 299.150543213 298.490386963 298.019683838 297.330230713 296.179840088 299.230712891 299.849853516 300.299072266 300.410400391 300.429931641 300.539306641 300.519775391 300.119384766 299.619384766 299.480712891 299.619384766 299.539306641 299.080322266 298.519775391 298.070556641 297.539306641 296.779541016 298.839904785 299.679748535 300.320373535 300.570373535 300.519592285 300.50982666 300.52935791 300.20904541 299.640686035 299.429748535 299.61920166 299.49029541 298.660217285 297.70904541 297.089904785 296.38092041 295.160217285 299.189605713 299.970855713 300.500152588 300.599761963 300.560699463 300.650543213 300.689605713 300.339996338 299.890777588 299.800933838 299.980621338 299.789215088 299.089996338 298.420074463 297.970855713 297.300933838 296.160308838 299.220947266 299.859619141 300.320556641 300.500244141 300.539306641 300.580322266 300.429931641 300.000244141 299.580322266 299.519775391 299.609619141 299.439697266 298.980712891 298.490478516 298.029541016 297.420166016 296.599853516 298.95904541 299.679748535 300.289123535 300.63092041 300.59967041 300.429748535 300.300842285 300.02935791 299.640686035 299.50982666 299.66998291 299.45904541 298.519592285 297.45904541 296.83013916 296.18951416 295.06060791 299.289215088 299.990386963 300.470855713 300.619293213 300.560699463 300.519683838 300.439605713 300.170074463 299.920074463 299.949371338 300.029449463 299.660308838 298.879058838 298.269683838 297.920074463 297.300933838 296.179840088 299.269775391 299.970947266 300.429931641 300.590087891 300.560791016 300.449462891 300.209228516 299.890869141 299.699462891 299.679931641 299.580322266 299.209228516 298.720947266 298.349853516 297.970947266 297.340087891 296.510009766 299.02935791 299.63092041 300.24029541 300.750061035 300.75982666 300.390686035 300.06060791 299.84967041 299.65045166 299.570373535 299.61920166 299.339904785 298.41998291 297.390686035 296.750061035 296.13092041 294.980529785 299.339996338 299.980621338 300.429840088 300.640777588 300.599761963 300.410308838 300.150543213 299.920074463 299.839996338 299.949371338 299.939605713 299.509918213 298.779449463 298.230621338 297.879058838 297.220855713 296.109527588 299.260009766 299.980712891 300.420166016 300.599853516 300.539306641 300.289306641 299.949462891 299.709228516 299.670166016 299.689697266 299.490478516 299.029541016 298.560791016 298.220947266 297.810791016 297.150634766 296.359619141 299.15045166 299.65045166 300.250061035 300.86920166 300.90045166 300.359436035 299.90045166 299.730529785 299.59967041 299.45904541 299.41998291 299.22076416 298.500061035 297.539123535 296.83013916 296.140686035 294.95904541 299.279449463 299.869293213 300.330230713 300.670074463 300.730621338 300.439605713 300.019683838 299.709136963 299.609527588 299.660308838 299.660308838 299.410308838 298.910308838 298.390777588 297.830230713 297.000152588 295.890777588 299.170166016 299.830322266 300.250244141 300.519775391 300.560791016 300.260009766 299.789306641 299.470947266 299.400634766 299.410400391 299.289306641 299.000244141 298.629150391 298.199462891 297.590087891 296.810791016 296.070556641 299.300842285 299.70904541 300.24029541 300.84967041 300.84967041 300.289123535 299.839904785 299.730529785 299.550842285 299.25982666 299.16998291 299.13092041 298.63092041 297.68951416 296.839904785 296.089904785 295.00982666 299.160308838 299.689605713 300.179840088 300.650543213 300.800933838 300.529449463 300.070465088 299.670074463 299.420074463 299.330230713 299.359527588 299.369293213 299.109527588 298.529449463 297.689605713 296.720855713 295.679840088 299.049072266 299.640869141 300.049072266 300.439697266 300.580322266 300.289306641 299.740478516 299.299072266 299.090087891 299.029541016 299.019775391 298.990478516 298.760009766 298.189697266 297.349853516 296.480712891 295.789306641 299.339904785 299.72076416 300.179748535 300.66998291 300.63092041 300.140686035 299.839904785 299.789123535 299.52935791 299.089904785 298.980529785 299.089904785 298.679748535 297.65045166 296.66998291 295.97076416 295.11920166 299.019683838 299.560699463 300.070465088 300.580230713 300.730621338 300.470855713 300.089996338 299.740386963 299.410308838 299.189605713 299.189605713 299.310699463 299.129058838 298.439605713 297.470855713 296.509918213 295.640777588 298.939697266 299.490478516 299.910400391 300.320556641 300.480712891 300.189697266 299.679931641 299.269775391 298.990478516 298.820556641 298.810791016 298.879150391 298.679931641 298.019775391 297.119384766 296.320556641 295.689697266 299.199279785 299.63092041 300.09967041 300.500061035 300.410217285 300.000061035 299.81060791 299.769592285 299.43951416 298.980529785 298.91998291 299.08013916 298.65045166 297.56060791 296.539123535 295.929748535 295.250061035 298.890777588 299.519683838 300.119293213 300.580230713 300.580230713 300.250152588 299.929840088 299.709136963 299.429840088 299.170074463 299.140777588 299.199371338 298.920074463 298.160308838 297.250152588 296.470855713 295.740386963 298.730712891 299.330322266 299.799072266 300.179931641 300.230712891 299.900634766 299.529541016 299.289306641 299.060791016 298.799072266 298.699462891 298.699462891 298.439697266 297.750244141 296.920166016 296.269775391 295.699462891 298.929748535 299.50982666 300.050842285 300.41998291 300.289123535 299.929748535 299.72076416 299.570373535 299.22076416 298.859436035 298.91998291 299.06060791 298.59967041 297.56060791 296.640686035 296.039123535 295.300842285 298.759918213 299.570465088 300.320465088 300.679840088 300.509918213 300.080230713 299.759918213 299.519683838 299.269683838 299.089996338 299.119293213 299.119293213 298.720855713 297.939605713 297.150543213 296.490386963 295.750152588 298.439697266 299.150634766 299.720947266 300.080322266 300.019775391 299.640869141 299.340087891 299.199462891 299.019775391 298.750244141 298.650634766 298.619384766 298.289306641 297.549072266 296.750244141 296.140869141 295.560791016 298.72076416 299.41998291 300.019592285 300.320373535 300.18951416 299.859436035 299.58013916 299.269592285 298.929748535 298.789123535 298.93951416 298.95904541 298.47076416 297.640686035 296.890686035 296.18951416 295.22076416 298.650543213 299.650543213 300.449371338 300.730621338 300.480621338 300.070465088 299.720855713 299.339996338 299.000152588 298.939605713 299.129058838 299.150543213 298.679840088 297.910308838 297.150543213 296.429840088 295.529449463 298.250244141 299.019775391 299.640869141 299.980712891 299.900634766 299.539306641 299.230712891 299.000244141 298.730712891 298.529541016 298.570556641 298.650634766 298.289306641 297.459228516 296.560791016 295.840087891 295.170166016 298.640686035 299.429748535 299.91998291 300.08013916 300.000061035 299.789123535 299.449279785 299.02935791 298.75982666 298.81060791 298.949279785 298.769592285 298.22076416 297.609436035 297.039123535 296.24029541 295.070373535 298.599761963 299.679840088 300.420074463 300.560699463 300.349761963 300.129058838 299.810699463 299.250152588 298.769683838 298.800933838 299.160308838 299.220855713 298.689605713 297.910308838 297.150543213 296.310699463 295.220855713 298.269775391 298.959228516 299.480712891 299.779541016 299.769775391 299.539306641 299.209228516 298.810791016 298.400634766 298.240478516 298.439697266 298.609619141 298.240478516 297.359619141 296.379150391 295.549072266 294.769775391 298.660217285 299.429748535 299.750061035 299.77935791 299.789123535 299.70904541 299.34967041 298.84967041 298.65045166 298.84967041 298.95904541 298.59967041 297.99029541 297.50982666 297.02935791 296.179748535 295.02935791 298.599761963 299.699371338 300.250152588 300.209136963 300.080230713 300.070465088 299.810699463 299.140777588 298.599761963 298.730621338 299.160308838 299.160308838 298.570465088 297.789215088 297.050933838 296.170074463 295.089996338 298.390869141 298.939697266 299.269775391 299.470947266 299.549072266 299.459228516 299.160400391 298.679931641 298.209228516 298.099853516 298.340087891 298.480712891 298.060791016 297.179931641 296.269775391 295.459228516 294.629150391 298.61920166 299.36920166 299.58013916 299.589904785 299.699279785 299.660217285 299.18951416 298.589904785 298.449279785 298.75982666 298.890686035 298.519592285 297.97076416 297.50982666 296.95904541 296.089904785 295.140686035 298.550933838 299.650543213 300.070465088 299.959136963 299.869293213 299.890777588 299.570465088 298.849761963 298.400543213 298.650543213 299.060699463 298.959136963 298.330230713 297.599761963 296.890777588 296.050933838 295.109527588 298.420166016 298.879150391 299.080322266 299.220947266 299.310791016 299.250244141 298.959228516 298.470947266 298.090087891 298.070556641 298.320556641 298.369384766 297.890869141 297.070556641 296.269775391 295.519775391 294.679931641 298.500061035 299.18951416 299.429748535 299.550842285 299.72076416 299.589904785 298.949279785 298.300842285 298.199279785 298.52935791 298.679748535 298.45904541 298.089904785 297.61920166 296.859436035 295.95904541 295.25982666 298.420074463 299.470855713 299.910308838 299.869293213 299.810699463 299.709136963 299.220855713 298.500152588 298.209136963 298.519683838 298.849761963 298.699371338 298.150543213 297.470855713 296.670074463 295.810699463 295.050933838 298.379150391 298.799072266 299.000244141 299.150634766 299.199462891 299.039306641 298.650634766 298.189697266 297.939697266 298.029541016 298.310791016 298.359619141 297.900634766 297.099853516 296.240478516 295.429931641 294.560791016 298.36920166 298.97076416 299.289123535 299.539123535 299.70904541 299.449279785 298.769592285 298.199279785 298.160217285 298.359436035 298.40045166 298.300842285 298.160217285 297.679748535 296.679748535 295.699279785 295.22076416 298.269683838 299.189605713 299.679840088 299.820465088 299.820465088 299.570465088 298.959136963 298.330230713 298.170074463 298.439605713 298.619293213 298.449371338 298.070465088 297.410308838 296.379058838 295.339996338 294.699371338 298.390869141 298.750244141 298.959228516 299.170166016 299.189697266 298.910400391 298.429931641 298.010009766 297.820556641 297.920166016 298.199462891 298.330322266 298.010009766 297.160400391 296.060791016 295.049072266 294.160400391 298.31060791 298.800842285 299.179748535 299.49029541 299.58013916 299.250061035 298.68951416 298.359436035 298.359436035 298.33013916 298.140686035 298.06060791 298.06060791 297.58013916 296.429748535 295.339904785 294.910217285 298.199371338 298.939605713 299.439605713 299.689605713 299.730621338 299.429840088 298.830230713 298.359527588 298.289215088 298.410308838 298.369293213 298.220855713 298.009918213 297.349761963 296.070465088 294.800933838 294.199371338 298.490478516 298.709228516 298.869384766 299.090087891 299.109619141 298.830322266 298.400634766 298.070556641 297.869384766 297.820556641 297.980712891 298.170166016 297.990478516 297.119384766 295.799072266 294.590087891 293.720947266 298.300842285 298.72076416 299.11920166 299.41998291 299.410217285 299.050842285 298.65045166 298.480529785 298.47076416 298.289123535 297.980529785 297.890686035 297.910217285 297.41998291 296.230529785 295.02935791 294.41998291 298.189605713 298.839996338 299.289215088 299.560699463 299.589996338 299.269683838 298.740386963 298.359527588 298.310699463 298.310699463 298.170074463 298.050933838 297.910308838 297.230621338 295.820465088 294.439605713 293.779449463 298.590087891 298.689697266 298.769775391 298.959228516 298.990478516 298.740478516 298.429931641 298.199462891 297.970947266 297.769775391 297.779541016 297.959228516 297.849853516 297.019775391 295.640869141 294.369384766 293.500244141 298.20904541 298.63092041 299.08013916 299.359436035 299.289123535 298.91998291 298.539123535 298.33013916 298.250061035 298.11920166 297.97076416 297.91998291 297.820373535 297.250061035 296.089904785 294.839904785 293.890686035 298.099761963 298.789215088 299.279449463 299.519683838 299.480621338 299.140777588 298.589996338 298.179840088 298.089996338 298.150543213 298.109527588 298.029449463 297.810699463 297.060699463 295.660308838 294.269683838 293.420074463 298.529541016 298.629150391 298.750244141 298.959228516 298.959228516 298.670166016 298.340087891 298.099853516 297.879150391 297.699462891 297.709228516 297.890869141 297.750244141 296.920166016 295.590087891 294.330322266 293.379150391 298.000061035 298.480529785 298.97076416 299.22076416 299.160217285 298.88092041 298.480529785 298.089904785 297.88092041 297.95904541 298.140686035 298.11920166 297.72076416 296.95904541 295.91998291 294.68951416 293.40045166 297.869293213 298.679840088 299.240386963 299.459136963 299.400543213 299.070465088 298.490386963 297.949371338 297.800933838 298.029449463 298.209136963 298.140777588 297.699371338 296.810699463 295.500152588 294.119293213 292.990386963 298.349853516 298.529541016 298.799072266 299.060791016 299.019775391 298.650634766 298.199462891 297.830322266 297.599853516 297.570556641 297.779541016 297.980712891 297.709228516 296.789306641 295.470947266 294.189697266 293.090087891 297.81060791 298.31060791 298.750061035 298.93951416 298.929748535 298.839904785 298.550842285 298.06060791 297.75982666 297.97076416 298.34967041 298.25982666 297.519592285 296.58013916 295.66998291 294.519592285 292.99029541 297.670074463 298.519683838 299.070465088 299.240386963 299.230621338 299.050933838 298.539215088 297.920074463 297.709136963 298.039215088 298.369293213 298.240386963 297.560699463 296.539215088 295.289215088 293.879058838 292.449371338 298.150634766 298.400634766 298.750244141 299.019775391 298.970947266 298.640869141 298.179931641 297.730712891 297.449462891 297.519775391 297.869384766 298.060791016 297.629150391 296.570556641 295.209228516 293.879150391 292.629150391 297.74029541 298.20904541 298.570373535 298.640686035 298.63092041 298.699279785 298.61920166 298.18951416 297.820373535 298.000061035 298.38092041 298.18951416 297.320373535 296.339904785 295.480529785 294.289123535 292.570373535 297.670074463 298.439605713 298.890777588 298.959136963 298.980621338 298.959136963 298.619293213 298.039215088 297.779449463 298.060699463 298.410308838 298.209136963 297.449371338 296.390777588 295.129058838 293.580230713 291.929840088 298.010009766 298.269775391 298.580322266 298.750244141 298.699462891 298.570556641 298.349853516 297.939697266 297.560791016 297.570556641 297.890869141 297.990478516 297.449462891 296.340087891 294.990478516 293.599853516 292.269775391 297.730529785 298.179748535 298.50982666 298.519592285 298.410217285 298.45904541 298.45904541 298.15045166 297.77935791 297.820373535 298.089904785 297.97076416 297.289123535 296.41998291 295.43951416 293.929748535 291.95904541 297.789215088 298.470855713 298.820465088 298.800933838 298.759918213 298.769683838 298.550933838 298.060699463 297.789215088 297.990386963 298.279449463 298.140777588 297.470855713 296.439605713 295.029449463 293.259918213 291.470855713 297.920166016 298.220947266 298.459228516 298.459228516 298.379150391 298.439697266 298.459228516 298.140869141 297.699462891 297.609619141 297.840087891 297.869384766 297.310791016 296.260009766 294.939697266 293.490478516 292.080322266 297.63092041 298.070373535 298.480529785 298.570373535 298.36920166 298.20904541 298.109436035 297.86920166 297.56060791 297.480529785 297.66998291 297.750061035 297.41998291 296.65045166 295.359436035 293.390686035 291.140686035 297.789215088 298.429840088 298.810699463 298.810699463 298.689605713 298.560699463 298.279449463 297.859527588 297.640777588 297.820465088 298.109527588 298.109527588 297.609527588 296.539215088 294.879058838 292.830230713 290.939605713 297.779541016 298.189697266 298.449462891 298.359619141 298.230712891 298.310791016 298.349853516 298.029541016 297.599853516 297.560791016 297.820556641 297.830322266 297.279541016 296.260009766 294.920166016 293.349853516 291.840087891 297.45904541 297.820373535 298.339904785 298.609436035 298.41998291 298.02935791 297.75982666 297.570373535 297.36920166 297.25982666 297.410217285 297.609436035 297.49029541 296.70904541 295.089904785 292.789123535 290.43951416 297.650543213 298.220855713 298.679840088 298.820465088 298.689605713 298.400543213 298.000152588 297.609527588 297.490386963 297.709136963 298.029449463 298.099761963 297.660308838 296.490386963 294.570465088 292.330230713 290.390777588 297.599853516 298.039306641 298.359619141 298.349853516 298.220947266 298.209228516 298.080322266 297.689697266 297.369384766 297.500244141 297.859619141 297.869384766 297.289306641 296.220947266 294.760009766 293.039306641 291.410400391 297.390686035 297.589904785 298.089904785 298.45904541 298.339904785 297.86920166 297.519592285 297.390686035 297.289123535 297.199279785 297.31060791 297.52935791 297.41998291 296.52935791 294.75982666 292.45904541 290.179748535 297.529449463 297.970855713 298.410308838 298.640777588 298.580230713 298.259918213 297.820465088 297.480621338 297.429840088 297.670074463 297.949371338 298.019683838 297.580230713 296.339996338 294.320465088 292.019683838 290.029449463 297.410400391 297.760009766 298.070556641 298.150634766 298.160400391 298.140869141 297.929931641 297.500244141 297.269775391 297.510009766 297.890869141 297.859619141 297.269775391 296.160400391 294.570556641 292.720947266 291.019775391 297.429748535 297.539123535 297.890686035 298.18951416 298.089904785 297.660217285 297.320373535 297.199279785 297.140686035 297.070373535 297.199279785 297.47076416 297.36920166 296.40045166 294.63092041 292.45904541 290.24029541 297.570465088 297.859527588 298.170074463 298.330230713 298.300933838 298.070465088 297.720855713 297.439605713 297.410308838 297.580230713 297.810699463 297.900543213 297.519683838 296.339996338 294.339996338 292.009918213 289.890777588 297.299072266 297.529541016 297.750244141 297.849853516 297.959228516 298.060791016 297.910400391 297.549072266 297.359619141 297.539306641 297.820556641 297.799072266 297.320556641 296.250244141 294.580322266 292.599853516 290.849853516 297.410217285 297.589904785 297.789123535 297.910217285 297.75982666 297.429748535 297.109436035 296.929748535 296.800842285 296.750061035 297.019592285 297.480529785 297.50982666 296.56060791 294.74029541 292.539123535 290.22076416 297.589996338 297.869293213 298.029449463 298.039215088 297.980621338 297.859527588 297.609527588 297.349761963 297.289215088 297.439605713 297.699371338 297.890777588 297.679840088 296.580230713 294.539215088 292.070465088 289.720855713 297.230712891 297.490478516 297.619384766 297.660400391 297.779541016 297.949462891 297.920166016 297.619384766 297.390869141 297.449462891 297.689697266 297.830322266 297.560791016 296.560791016 294.730712891 292.539306641 290.689697266 297.179748535 297.52935791 297.679748535 297.640686035 297.50982666 297.27935791 296.99029541 296.70904541 296.480529785 296.49029541 296.90045166 297.56060791 297.769592285 296.86920166 294.93951416 292.50982666 289.949279785 297.429840088 297.810699463 297.879058838 297.800933838 297.759918213 297.709136963 297.480621338 297.209136963 297.140777588 297.339996338 297.689605713 298.019683838 297.920074463 296.859527588 294.699371338 291.990386963 289.410308838 297.099853516 297.510009766 297.650634766 297.609619141 297.679931641 297.869384766 297.840087891 297.539306641 297.269775391 297.330322266 297.660400391 298.010009766 297.879150391 296.810791016 294.730712891 292.310791016 290.330322266 296.859436035 297.300842285 297.390686035 297.320373535 297.27935791 297.16998291 296.88092041 296.539123535 296.339904785 296.429748535 296.890686035 297.570373535 297.90045166 297.16998291 295.20904541 292.570373535 289.83013916 297.199371338 297.570465088 297.599761963 297.539215088 297.619293213 297.650543213 297.379058838 297.050933838 297.039215088 297.349761963 297.759918213 298.109527588 298.070465088 297.060699463 294.830230713 291.959136963 289.269683838 296.949462891 297.410400391 297.549072266 297.510009766 297.629150391 297.840087891 297.750244141 297.379150391 297.119384766 297.279541016 297.760009766 298.189697266 298.049072266 296.820556641 294.580322266 292.070556641 290.019775391 296.699279785 297.019592285 297.000061035 296.929748535 297.02935791 297.00982666 296.660217285 296.289123535 296.25982666 296.500061035 296.910217285 297.449279785 297.88092041 297.449279785 295.70904541 293.019592285 290.179748535 297.109527588 297.310699463 297.220855713 297.240386963 297.490386963 297.570465088 297.250152588 296.910308838 297.000152588 297.390777588 297.779449463 298.060699463 298.089996338 297.269683838 295.209136963 292.369293213 289.609527588 296.849853516 297.179931641 297.250244141 297.279541016 297.570556641 297.859619141 297.740478516 297.299072266 297.080322266 297.330322266 297.849853516 298.220947266 297.990478516 296.779541016 294.670166016 292.269775391 290.160400391 296.660217285 296.789123535 296.61920166 296.59967041 296.81060791 296.800842285 296.34967041 295.95904541 296.109436035 296.550842285 296.929748535 297.36920166 297.90045166 297.839904785 296.390686035 293.699279785 290.730529785 297.170074463 297.129058838 296.920074463 297.009918213 297.349761963 297.439605713 297.089996338 296.789215088 297.000152588 297.439605713 297.740386963 297.990386963 298.170074463 297.650543213 295.839996338 293.039215088 290.150543213 296.810791016 296.980712891 296.980712891 297.119384766 297.549072266 297.900634766 297.750244141 297.289306641 297.109619141 297.400634766 297.890869141 298.189697266 298.000244141 297.019775391 295.170166016 292.810791016 290.519775391 296.49029541 296.50982666 296.269592285 296.289123535 296.609436035 296.63092041 296.15045166 295.77935791 296.02935791 296.58013916 297.00982666 297.47076416 298.11920166 298.250061035 296.910217285 294.160217285 291.089904785 297.099761963 296.939605713 296.730621338 296.859527588 297.199371338 297.269683838 296.970855713 296.800933838 297.060699463 297.480621338 297.769683838 298.089996338 298.420074463 298.060699463 296.310699463 293.420074463 290.369293213 296.689697266 296.840087891 296.920166016 297.160400391 297.609619141 297.900634766 297.740478516 297.320556641 297.179931641 297.490478516 297.990478516 298.340087891 298.289306641 297.490478516 295.670166016 293.070556641 290.470947266 296.08013916 296.089904785 295.859436035 295.90045166 296.269592285 296.45904541 296.160217285 295.890686035 296.11920166 296.640686035 297.11920166 297.68951416 298.38092041 298.449279785 297.08013916 294.45904541 291.61920166 296.689605713 296.589996338 296.509918213 296.679840088 296.980621338 297.099761963 296.990386963 296.970855713 297.170074463 297.480621338 297.830230713 298.320465088 298.720855713 298.269683838 296.400543213 293.500152588 290.609527588 296.359619141 296.629150391 296.910400391 297.250244141 297.609619141 297.810791016 297.720947266 297.439697266 297.330322266 297.629150391 298.209228516 298.709228516 298.730712891 297.840087891 295.769775391 292.879150391 290.279541016 295.59967041 295.640686035 295.41998291 295.390686035 295.750061035 296.15045166 296.22076416 296.13092041 296.250061035 296.61920166 297.15045166 297.84967041 298.50982666 298.45904541 297.230529785 295.22076416 293.250061035 296.140777588 296.140777588 296.199371338 296.390777588 296.640777588 296.900543213 297.109527588 297.209136963 297.230621338 297.349761963 297.810699463 298.529449463 298.939605713 298.339996338 296.560699463 294.179840088 292.060699463 295.929931641 296.260009766 296.750244141 297.170166016 297.459228516 297.699462891 297.820556641 297.709228516 297.539306641 297.760009766 298.420166016 299.090087891 299.080322266 297.959228516 295.789306641 293.209228516 291.320556641 295.230529785 295.269592285 295.06060791 294.95904541 295.250061035 295.77935791 296.15045166 296.230529785 296.25982666 296.52935791 297.15045166 297.99029541 298.59967041 298.519592285 297.74029541 296.789123535 296.02935791 295.679840088 295.730621338 295.890777588 296.060699463 296.259918213 296.699371338 297.189605713 297.369293213 297.189605713 297.179840088 297.779449463 298.699371338 299.099761963 298.539215088 297.339996338 296.099761963 295.209136963 295.599853516 295.890869141 296.480712891 296.980712891 297.279541016 297.640869141 298.019775391 298.019775391 297.699462891 297.750244141 298.500244141 299.330322266 299.279541016 298.129150391 296.439697266 295.019775391 294.510009766 294.83013916 294.90045166 294.789123535 294.74029541 295.02935791 295.589904785 296.06060791 296.20904541 296.250061035 296.570373535 297.320373535 298.230529785 298.750061035 298.66998291 298.410217285 298.43951416 298.58013916 295.300933838 295.369293213 295.609527588 295.800933838 296.050933838 296.589996338 297.230621338 297.410308838 297.160308838 297.189605713 297.939605713 298.890777588 299.230621338 298.879058838 298.500152588 298.529449463 298.730621338 295.340087891 295.590087891 296.289306641 296.890869141 297.230712891 297.660400391 298.189697266 298.209228516 297.760009766 297.730712891 298.599853516 299.549072266 299.480712891 298.529541016 297.750244141 297.810791016 298.609619141 294.289123535 294.339904785 294.359436035 294.570373535 295.02935791 295.59967041 296.019592285 296.199279785 296.36920166 296.83013916 297.65045166 298.45904541 298.820373535 298.72076416 298.66998291 299.019592285 299.269592285 294.859527588 294.939605713 295.269683838 295.609527588 296.009918213 296.619293213 297.209136963 297.379058838 297.259918213 297.509918213 298.300933838 299.060699463 299.220855713 299.050933838 299.240386963 299.939605713 300.529449463 294.970947266 295.240478516 296.070556641 296.849853516 297.289306641 297.730712891 298.230712891 298.260009766 297.849853516 297.910400391 298.879150391 299.810791016 299.679931641 298.959228516 298.890869141 299.910400391 301.179931641 293.75982666 293.660217285 293.730529785 294.20904541 294.97076416 295.63092041 296.00982666 296.250061035 296.56060791 297.11920166 297.839904785 298.449279785 298.68951416 298.550842285 298.36920166 298.34967041 298.11920166 294.420074463 294.420074463 294.779449463 295.339996338 296.000152588 296.689605713 297.199371338 297.369293213 297.459136963 297.910308838 298.589996338 299.019683838 299.009918213 298.970855713 299.269683838 299.769683838 299.929840088 294.529541016 294.750244141 295.689697266 296.699462891 297.310791016 297.750244141 298.199462891 298.299072266 298.099853516 298.299072266 299.189697266 299.910400391 299.679931641 299.129150391 299.349853516 300.359619141 301.099853516 293.50982666 293.179748535 293.15045166 293.789123535 294.77935791 295.589904785 296.02935791 296.34967041 296.74029541 297.22076416 297.730529785 298.20904541 298.539123535 298.500061035 298.070373535 297.43951416 296.66998291 294.170074463 293.980621338 294.259918213 295.000152588 295.959136963 296.789215088 297.259918213 297.420074463 297.640777588 298.119293213 298.589996338 298.779449463 298.849761963 299.039215088 299.199371338 298.980621338 298.369293213 294.179931641 294.299072266 295.230712891 296.439697266 297.289306641 297.820556641 298.240478516 298.429931641 298.390869141 298.609619141 299.209228516 299.619384766 299.459228516 299.250244141 299.560791016 300.000244141 299.709228516 293.390686035 292.99029541 292.91998291 293.61920166 294.75982666 295.679748535 296.18951416 296.539123535 296.910217285 297.24029541 297.570373535 298.089904785 298.699279785 298.86920166 298.250061035 297.16998291 296.179748535 294.019683838 293.740386963 293.949371338 294.800933838 296.009918213 297.009918213 297.459136963 297.550933838 297.750152588 298.129058838 298.439605713 298.619293213 298.980621338 299.519683838 299.560699463 298.709136963 297.509918213 293.959228516 294.039306641 294.959228516 296.330322266 297.420166016 298.019775391 298.379150391 298.549072266 298.580322266 298.679931641 298.959228516 299.189697266 299.310791016 299.650634766 300.160400391 300.090087891 298.959228516 292.99029541 292.839904785 292.980529785 293.820373535 295.019592285 295.95904541 296.449279785 296.769592285 297.070373535 297.33013916 297.63092041 298.25982666 299.039123535 299.300842285 298.550842285 297.31060791 296.43951416 293.670074463 293.560699463 293.879058838 294.900543213 296.289215088 297.369293213 297.759918213 297.750152588 297.859527588 298.170074463 298.420074463 298.689605713 299.269683838 299.949371338 299.910308838 298.839996338 297.539215088 293.599853516 293.910400391 294.949462891 296.470947266 297.709228516 298.330322266 298.529541016 298.599853516 298.629150391 298.699462891 298.869384766 299.099853516 299.490478516 300.220947266 300.859619141 300.570556641 299.099853516 292.289123535 292.519592285 293.039123535 294.09967041 295.359436035 296.250061035 296.66998291 296.90045166 297.16998291 297.43951416 297.81060791 298.410217285 299.050842285 299.109436035 298.300842285 297.16998291 296.539123535 293.050933838 293.279449463 293.939605713 295.209136963 296.699371338 297.750152588 298.029449463 297.920074463 297.980621338 298.320465088 298.619293213 298.859527588 299.250152588 299.640777588 299.449371338 298.509918213 297.509918213 293.019775391 293.730712891 294.990478516 296.670166016 298.019775391 298.580322266 298.619384766 298.580322266 298.650634766 298.869384766 299.150634766 299.420166016 299.760009766 300.310791016 300.720947266 300.310791016 298.949462891 291.789123535 292.199279785 293.000061035 294.25982666 295.570373535 296.43951416 296.820373535 297.019592285 297.25982666 297.58013916 297.910217285 298.250061035 298.45904541 298.269592285 297.550842285 296.74029541 296.269592285 292.560699463 292.980621338 293.949371338 295.500152588 297.080230713 298.070465088 298.269683838 298.140777588 298.209136963 298.550933838 298.839996338 298.849761963 298.720855713 298.560699463 298.209136963 297.589996338 297.019683838 292.629150391 293.519775391 294.910400391 296.730712891 298.189697266 298.760009766 298.730712891 298.660400391 298.779541016 299.070556641 299.449462891 299.689697266 299.689697266 299.599853516 299.470947266 298.970947266 297.929931641 291.75982666 292.11920166 293.070373535 294.49029541 295.90045166 296.83013916 297.250061035 297.41998291 297.59967041 297.859436035 298.02935791 298.00982666 297.789123535 297.480529785 297.089904785 296.65045166 296.160217285 292.449371338 292.849761963 294.019683838 295.789215088 297.429840088 298.390777588 298.619293213 298.550933838 298.589996338 298.830230713 298.970855713 298.720855713 298.150543213 297.560699463 297.170074463 296.879058838 296.599761963 292.679931641 293.429931641 294.810791016 296.760009766 298.330322266 298.959228516 298.990478516 298.939697266 298.980712891 299.099853516 299.359619141 299.529541016 299.269775391 298.670166016 298.099853516 297.609619141 296.879150391 291.699279785 292.230529785 293.519592285 295.199279785 296.699279785 297.63092041 298.00982666 298.089904785 298.15045166 298.27935791 298.320373535 298.070373535 297.660217285 297.40045166 297.34967041 297.160217285 296.480529785 292.369293213 292.910308838 294.390777588 296.310699463 297.900543213 298.750152588 299.009918213 299.000152588 298.990386963 299.060699463 299.080230713 298.759918213 298.060699463 297.369293213 297.050933838 296.959136963 296.709136963 292.760009766 293.420166016 294.949462891 297.060791016 298.640869141 299.189697266 299.230712891 299.240478516 299.160400391 298.990478516 299.010009766 299.170166016 298.939697266 298.240478516 297.609619141 297.269775391 296.750244141 291.300842285 292.589904785 294.550842285 296.50982666 297.86920166 298.480529785 298.550842285 298.390686035 298.300842285 298.43951416 298.59967041 298.43951416 298.019592285 297.81060791 297.90045166 297.699279785 296.75982666 291.939605713 293.209136963 295.279449463 297.259918213 298.470855713 298.900543213 298.949371338 298.900543213 298.869293213 298.970855713 299.170074463 299.070465088 298.509918213 297.830230713 297.490386963 297.369293213 296.980621338 292.359619141 293.490478516 295.539306641 297.820556641 299.090087891 299.189697266 299.029541016 299.109619141 299.090087891 298.840087891 298.840087891 299.109619141 299.029541016 298.410400391 297.849853516 297.640869141 297.199462891 291.36920166 293.68951416 296.300842285 298.160217285 298.839904785 298.699279785 298.22076416 297.75982666 297.609436035 298.000061035 298.570373535 298.72076416 298.36920166 298.050842285 298.000061035 297.70904541 296.61920166 291.759918213 294.129058838 296.779449463 298.490386963 298.900543213 298.570465088 298.170074463 297.929840088 297.939605713 298.390777588 299.129058838 299.519683838 299.089996338 298.240386963 297.650543213 297.349761963 296.820465088 292.049072266 294.090087891 296.789306641 298.929931641 299.420166016 298.720947266 298.189697266 298.310791016 298.519775391 298.580322266 298.900634766 299.429931641 299.400634766 298.640869141 297.939697266 297.720947266 297.279541016 293.18951416 296.02935791 298.56060791 299.61920166 299.199279785 298.16998291 297.24029541 296.63092041 296.58013916 297.269592285 298.300842285 298.75982666 298.40045166 297.83013916 297.570373535 297.25982666 296.300842285 293.099761963 296.129058838 298.689605713 299.550933838 298.929840088 297.879058838 297.080230713 296.619293213 296.689605713 297.589996338 298.980621338 299.800933838 299.349761963 298.170074463 297.259918213 296.839996338 296.330230713 293.279541016 295.959228516 298.670166016 299.990478516 299.400634766 297.949462891 297.129150391 297.230712891 297.599853516 298.049072266 298.929931641 299.849853516 299.769775391 298.629150391 297.570556641 297.230712891 296.820556641 296.730529785 299.019592285 300.52935791 300.33013916 298.910217285 297.449279785 296.550842285 296.089904785 296.140686035 296.949279785 298.15045166 298.75982666 298.33013916 297.50982666 297.06060791 296.839904785 296.179748535 296.390777588 298.920074463 300.359527588 299.949371338 298.519683838 297.269683838 296.509918213 296.009918213 296.050933838 297.119293213 298.810699463 299.769683838 299.189605713 297.750152588 296.689605713 296.330230713 295.990386963 296.590087891 298.959228516 300.570556641 300.439697266 298.879150391 297.269775391 296.619384766 296.670166016 296.859619141 297.459228516 298.820556641 300.140869141 300.060791016 298.570556641 297.179931641 296.750244141 296.439697266 300.16998291 301.09967041 301.289123535 300.109436035 298.33013916 297.11920166 296.679748535 296.50982666 296.519592285 297.140686035 298.179748535 298.750061035 298.320373535 297.410217285 296.83013916 296.609436035 296.15045166 300.179840088 301.289215088 301.089996338 299.509918213 297.859527588 297.080230713 296.800933838 296.429840088 296.339996338 297.179840088 298.650543213 299.379058838 298.689605713 297.289215088 296.339996338 296.109527588 295.900543213 300.449462891 301.609619141 301.480712891 299.900634766 297.970947266 296.959228516 296.949462891 297.010009766 296.830322266 297.240478516 298.799072266 300.340087891 300.269775391 298.650634766 297.119384766 296.650634766 296.429931641 301.66998291 301.40045166 300.800842285 299.390686035 297.90045166 297.22076416 297.230529785 297.20904541 297.070373535 297.320373535 298.06060791 298.519592285 298.230529785 297.449279785 296.800842285 296.38092041 295.84967041 302.339996338 302.070465088 300.679840088 298.640777588 297.300933838 297.150543213 297.369293213 297.179840088 296.959136963 297.420074463 298.339996338 298.679840088 297.990386963 296.900543213 296.209136963 295.970855713 295.670074463 302.510009766 302.369384766 300.890869141 298.619384766 297.029541016 296.959228516 297.629150391 297.730712891 297.260009766 297.490478516 298.959228516 300.390869141 300.199462891 298.570556641 297.099853516 296.609619141 296.400634766 301.390686035 300.72076416 300.08013916 298.95904541 297.83013916 297.410217285 297.50982666 297.43951416 297.16998291 297.18951416 297.640686035 298.019592285 297.910217285 297.41998291 296.800842285 296.13092041 295.36920166 302.060699463 301.269683838 299.730621338 298.009918213 297.140777588 297.259918213 297.550933838 297.420074463 297.199371338 297.420074463 297.849761963 297.849761963 297.289215088 296.640777588 296.179840088 295.750152588 295.170074463 302.019775391 301.199462891 299.470947266 297.529541016 296.629150391 297.119384766 297.949462891 297.990478516 297.510009766 297.769775391 299.049072266 300.049072266 299.590087891 298.080322266 296.859619141 296.379150391 296.039306641 301.019592285 300.56060791 300.089904785 299.09967041 297.99029541 297.429748535 297.339904785 297.20904541 296.99029541 297.000061035 297.27935791 297.50982666 297.49029541 297.25982666 296.81060791 296.050842285 295.09967041 300.529449463 299.949371338 298.970855713 297.939605713 297.379058838 297.320465088 297.320465088 297.140777588 297.050933838 297.230621338 297.369293213 297.170074463 296.800933838 296.539215088 296.259918213 295.609527588 294.720855713 300.400634766 299.560791016 298.400634766 297.320556641 296.970947266 297.359619141 297.750244141 297.570556641 297.269775391 297.699462891 298.730712891 299.230712891 298.560791016 297.369384766 296.590087891 296.209228516 295.670166016 301.480529785 301.160217285 300.519592285 299.27935791 297.980529785 297.289123535 297.13092041 297.039123535 296.93951416 297.00982666 297.199279785 297.300842285 297.24029541 297.13092041 296.820373535 296.13092041 295.16998291 299.369293213 299.089996338 298.619293213 298.070465088 297.660308838 297.390777588 297.129058838 296.910308838 296.900543213 297.050933838 297.070465088 296.849761963 296.650543213 296.619293213 296.400543213 295.660308838 294.619293213 299.400634766 298.709228516 298.150634766 297.750244141 297.599853516 297.590087891 297.429931641 297.070556641 296.929931641 297.410400391 298.129150391 298.250244141 297.609619141 296.890869141 296.599853516 296.330322266 295.609619141 301.910217285 301.429748535 300.34967041 298.839904785 297.640686035 297.199279785 297.199279785 297.13092041 296.980529785 297.039123535 297.269592285 297.40045166 297.339904785 297.160217285 296.789123535 296.11920166 295.25982666 299.060699463 298.759918213 298.349761963 297.959136963 297.670074463 297.459136963 297.220855713 297.000152588 296.900543213 296.929840088 296.970855713 296.910308838 296.859527588 296.800933838 296.470855713 295.670074463 294.660308838 299.310791016 298.609619141 298.199462891 298.000244141 297.879150391 297.689697266 297.379150391 297.019775391 296.900634766 297.209228516 297.609619141 297.590087891 297.160400391 296.830322266 296.740478516 296.410400391 295.549072266 301.109436035 300.49029541 299.300842285 298.00982666 297.320373535 297.339904785 297.500061035 297.300842285 296.93951416 296.93951416 297.300842285 297.660217285 297.68951416 297.359436035 296.72076416 295.890686035 295.070373535 298.980621338 298.560699463 298.060699463 297.689605713 297.550933838 297.519683838 297.420074463 297.170074463 296.910308838 296.859527588 297.039215088 297.259918213 297.279449463 297.000152588 296.369293213 295.459136963 294.500152588 299.299072266 298.580322266 298.080322266 297.840087891 297.730712891 297.660400391 297.529541016 297.310791016 297.129150391 297.189697266 297.410400391 297.459228516 297.250244141 296.980712891 296.670166016 296.039306641 295.099853516 299.269592285 298.929748535 298.230529785 297.570373535 297.390686035 297.61920166 297.70904541 297.36920166 296.949279785 296.99029541 297.500061035 298.000061035 298.070373535 297.589904785 296.699279785 295.65045166 294.789123535 298.640777588 298.390777588 298.039215088 297.769683838 297.640777588 297.589996338 297.480621338 297.220855713 296.949371338 296.980621338 297.369293213 297.759918213 297.720855713 297.119293213 296.170074463 295.129058838 294.209136963 298.849853516 298.400634766 297.990478516 297.789306641 297.709228516 297.689697266 297.640869141 297.470947266 297.269775391 297.279541016 297.539306641 297.740478516 297.590087891 297.080322266 296.349853516 295.400634766 294.429931641 297.750061035 297.97076416 297.99029541 297.859436035 297.74029541 297.699279785 297.59967041 297.38092041 297.31060791 297.589904785 298.050842285 298.300842285 298.15045166 297.59967041 296.68951416 295.63092041 294.730529785 298.179840088 298.330230713 298.369293213 298.259918213 297.970855713 297.629058838 297.390777588 297.240386963 297.240386963 297.480621338 297.929840088 298.170074463 297.859527588 297.029449463 295.980621338 294.949371338 294.060699463 298.279541016 298.269775391 298.240478516 298.209228516 298.090087891 297.849853516 297.619384766 297.410400391 297.340087891 297.529541016 297.920166016 298.119384766 297.779541016 296.990478516 296.000244141 294.970947266 294.070556641 297.359436035 297.97076416 298.43951416 298.429748535 298.019592285 297.56060791 297.339904785 297.480529785 297.929748535 298.429748535 298.61920166 298.34967041 297.839904785 297.300842285 296.640686035 295.769592285 294.84967041 297.910308838 298.320465088 298.679840088 298.670074463 298.189605713 297.589996338 297.300933838 297.410308838 297.769683838 298.170074463 298.410308838 298.240386963 297.599761963 296.699371338 295.800933838 294.929840088 294.099761963 297.900634766 298.160400391 298.459228516 298.640869141 298.470947266 298.010009766 297.590087891 297.439697266 297.599853516 297.990478516 298.349853516 298.269775391 297.580322266 296.599853516 295.670166016 294.849853516 294.070556641 297.640686035 298.250061035 298.750061035 298.70904541 298.179748535 297.640686035 297.480529785 297.77935791 298.36920166 298.83013916 298.750061035 298.11920166 297.410217285 296.980529785 296.59967041 295.90045166 294.929748535 297.750152588 298.089996338 298.500152588 298.539215088 298.109527588 297.599761963 297.459136963 297.759918213 298.230621338 298.560699463 298.519683838 297.990386963 297.160308838 296.339996338 295.629058838 294.900543213 294.080230713 297.590087891 297.779541016 298.160400391 298.439697266 298.330322266 297.970947266 297.709228516 297.760009766 298.060791016 298.439697266 298.549072266 298.070556641 297.049072266 296.000244141 295.269775391 294.670166016 293.949462891 297.679748535 298.13092041 298.570373535 298.660217285 298.47076416 298.27935791 298.22076416 298.289123535 298.449279785 298.589904785 298.429748535 297.90045166 297.289123535 296.949279785 296.660217285 295.97076416 294.91998291 297.519683838 297.679840088 298.000152588 298.140777588 298.019683838 297.900543213 297.959136963 298.160308838 298.379058838 298.500152588 298.320465088 297.769683838 296.959136963 296.199371338 295.519683838 294.750152588 293.839996338 297.170166016 297.220947266 297.500244141 297.779541016 297.869384766 297.890869141 298.000244141 298.199462891 298.390869141 298.529541016 298.410400391 297.750244141 296.640869141 295.560791016 294.879150391 294.310791016 293.519775391 297.410217285 297.769592285 298.199279785 298.519592285 298.81060791 299.050842285 299.050842285 298.72076416 298.339904785 298.199279785 298.160217285 297.929748535 297.480529785 297.070373535 296.660217285 295.949279785 294.91998291 297.320465088 297.459136963 297.730621338 297.970855713 298.220855713 298.470855713 298.580230713 298.490386963 298.349761963 298.300933838 298.209136963 297.810699463 297.070465088 296.240386963 295.390777588 294.509918213 293.580230713 296.920166016 297.019775391 297.230712891 297.459228516 297.679931641 298.000244141 298.330322266 298.480712891 298.420166016 298.310791016 298.170166016 297.670166016 296.660400391 295.549072266 294.699462891 294.000244141 293.119384766 297.289123535 297.65045166 298.019592285 298.38092041 298.800842285 299.179748535 299.20904541 298.789123535 298.289123535 298.13092041 298.20904541 298.08013916 297.56060791 296.90045166 296.33013916 295.74029541 294.95904541 297.379058838 297.650543213 297.879058838 298.119293213 298.490386963 298.849761963 298.900543213 298.640777588 298.369293213 298.320465088 298.300933838 297.929840088 297.109527588 296.070465088 295.089996338 294.259918213 293.509918213 297.090087891 297.369384766 297.629150391 297.799072266 297.990478516 298.289306641 298.570556641 298.580322266 298.330322266 298.160400391 298.119384766 297.820556641 296.869384766 295.580322266 294.500244141 293.750244141 292.980712891 297.480529785 297.77935791 297.99029541 298.16998291 298.36920166 298.59967041 298.66998291 298.519592285 298.33013916 298.31060791 298.339904785 298.070373535 297.31060791 296.38092041 295.70904541 295.339904785 294.90045166 297.679840088 297.959136963 298.089996338 298.220855713 298.509918213 298.789215088 298.779449463 298.589996338 298.470855713 298.500152588 298.390777588 297.839996338 296.839996338 295.650543213 294.629058838 294.009918213 293.589996338 297.390869141 297.779541016 298.099853516 298.320556641 298.439697266 298.560791016 298.660400391 298.599853516 298.400634766 298.260009766 298.199462891 297.799072266 296.679931641 295.150634766 293.929931641 293.310791016 292.859619141 297.570373535 297.769592285 297.890686035 297.95904541 298.00982666 298.070373535 298.16998291 298.269592285 298.34967041 298.34967041 298.250061035 297.84967041 297.02935791 295.99029541 295.20904541 294.86920166 294.61920166 297.810699463 297.990386963 298.009918213 298.080230713 298.330230713 298.539215088 298.550933838 298.519683838 298.599761963 298.609527588 298.259918213 297.529449463 296.519683838 295.369293213 294.369293213 293.839996338 293.650543213 297.369384766 297.670166016 298.070556641 298.439697266 298.640869141 298.670166016 298.660400391 298.640869141 298.549072266 298.379150391 298.099853516 297.420166016 296.119384766 294.490478516 293.230712891 292.720947266 292.529541016 297.24029541 297.410217285 297.570373535 297.81060791 298.02935791 298.13092041 298.20904541 298.31060791 298.339904785 298.20904541 298.000061035 297.68951416 297.06060791 296.050842285 295.050842285 294.45904541 294.13092041 297.609527588 297.689605713 297.679840088 297.879058838 298.310699463 298.580230713 298.589996338 298.599761963 298.709136963 298.599761963 298.060699463 297.320465088 296.539215088 295.580230713 294.480621338 293.750152588 293.490386963 297.039306641 297.220947266 297.640869141 298.220947266 298.650634766 298.750244141 298.699462891 298.660400391 298.580322266 298.330322266 297.830322266 297.029541016 295.820556641 294.340087891 293.080322266 292.449462891 292.189697266 296.81060791 296.93951416 297.11920166 297.570373535 298.089904785 298.38092041 298.41998291 298.40045166 298.320373535 298.11920166 297.910217285 297.699279785 297.199279785 296.18951416 294.929748535 293.99029541 293.47076416 297.279449463 297.369293213 297.379058838 297.769683838 298.459136963 298.849761963 298.779449463 298.709136963 298.810699463 298.670074463 298.060699463 297.359527588 296.759918213 295.900543213 294.629058838 293.539215088 293.109527588 296.859619141 296.970947266 297.330322266 298.019775391 298.689697266 298.920166016 298.789306641 298.619384766 298.519775391 298.279541016 297.779541016 297.029541016 296.019775391 294.730712891 293.449462891 292.539306641 292.010009766 296.70904541 296.68951416 296.679748535 297.109436035 297.789123535 298.199279785 298.269592285 298.269592285 298.33013916 298.320373535 298.11920166 297.74029541 297.06060791 295.949279785 294.609436035 293.49029541 292.839904785 297.140777588 297.199371338 297.170074463 297.619293213 298.449371338 298.890777588 298.750152588 298.640777588 298.869293213 298.910308838 298.310699463 297.429840088 296.679840088 295.779449463 294.449371338 293.209136963 292.689605713 297.000244141 297.060791016 297.240478516 297.910400391 298.730712891 299.080322266 298.869384766 298.609619141 298.599853516 298.539306641 298.090087891 297.199462891 296.019775391 294.689697266 293.349853516 292.299072266 291.660400391 296.81060791 296.52935791 296.289123535 296.59967041 297.269592285 297.730529785 297.88092041 298.039123535 298.40045166 298.66998291 298.480529785 297.789123535 296.81060791 295.72076416 294.58013916 293.45904541 292.589904785 297.089996338 297.070465088 296.959136963 297.379058838 298.209136963 298.629058838 298.459136963 298.420074463 298.890777588 299.199371338 298.619293213 297.439605713 296.359527588 295.429840088 294.300933838 293.189605713 292.629058838 297.070556641 297.060791016 297.109619141 297.750244141 298.689697266 299.109619141 298.869384766 298.640869141 298.830322266 299.000244141 298.429931641 297.039306641 295.310791016 293.689697266 292.390869141 291.500244141 291.010009766 296.58013916 296.15045166 295.90045166 296.250061035 296.95904541 297.50982666 297.75982666 298.02935791 298.500061035 298.90045166 298.75982666 298.06060791 297.179748535 296.390686035 295.539123535 294.359436035 293.00982666 296.839996338 296.810699463 296.759918213 297.170074463 297.929840088 298.369293213 298.310699463 298.349761963 298.910308838 299.310699463 298.810699463 297.619293213 296.570465088 295.890777588 295.129058838 294.160308838 293.310699463 296.750244141 296.730712891 296.820556641 297.549072266 298.580322266 299.060791016 298.849853516 298.709228516 299.049072266 299.269775391 298.510009766 296.769775391 294.789306641 293.199462891 292.119384766 291.400634766 290.890869141 295.890686035 295.570373535 295.570373535 296.050842285 296.800842285 297.500061035 297.949279785 298.24029541 298.539123535 298.839904785 298.949279785 298.769592285 298.47076416 298.11920166 297.34967041 295.820373535 293.839904785 296.400543213 296.519683838 296.660308838 297.060699463 297.730621338 298.279449463 298.480621338 298.599761963 298.929840088 299.199371338 298.949371338 298.339996338 297.939605713 297.769683838 297.259918213 296.089996338 294.670074463 296.260009766 296.390869141 296.670166016 297.480712891 298.490478516 298.980712891 298.879150391 298.849853516 299.170166016 299.260009766 298.529541016 297.240478516 296.080322266 295.279541016 294.570556641 293.689697266 292.570556641 295.27935791 295.199279785 295.429748535 295.839904785 296.45904541 297.269592285 298.019592285 298.40045166 298.49029541 298.66998291 299.13092041 299.68951416 300.06060791 299.86920166 298.77935791 296.74029541 294.339904785 296.140777588 296.470855713 296.740386963 296.980621338 297.429840088 298.109527588 298.699371338 298.949371338 298.970855713 298.970855713 299.119293213 299.519683838 300.089996338 300.359527588 299.660308838 297.949371338 295.910308838 296.049072266 296.379150391 296.799072266 297.549072266 298.379150391 298.849853516 298.959228516 299.099853516 299.299072266 299.170166016 298.789306641 298.769775391 299.379150391 299.949462891 299.590087891 298.140869141 296.029541016 295.179748535 295.27935791 295.50982666 295.65045166 295.97076416 296.820373535 297.839904785 298.410217285 298.43951416 298.589904785 299.33013916 300.38092041 301.00982666 300.570373535 298.890686035 296.390686035 293.97076416 296.209136963 296.609527588 296.849761963 296.849761963 297.029449463 297.789215088 298.740386963 299.189605713 298.990386963 298.789215088 299.320465088 300.619293213 301.920074463 302.199371338 300.929840088 298.570465088 296.209136963 296.119384766 296.570556641 296.980712891 297.549072266 298.189697266 298.670166016 299.060791016 299.439697266 299.500244141 299.160400391 299.160400391 300.480712891 302.849853516 304.609619141 304.379150391 302.349853516 299.590087891 295.250061035 295.359436035 295.52935791 295.52935791 295.74029541 296.58013916 297.699279785 298.34967041 298.449279785 298.660217285 299.50982666 300.640686035 301.15045166 300.289123535 298.039123535 295.22076416 292.93951416 296.330230713 296.619293213 296.789215088 296.750152588 296.869293213 297.619293213 298.699371338 299.240386963 298.980621338 298.730621338 299.490386963 301.230621338 302.740386963 302.689605713 300.750152588 297.869293213 295.470855713 296.099853516 296.510009766 296.879150391 297.420166016 298.029541016 298.590087891 299.160400391 299.660400391 299.650634766 299.140869141 299.330322266 301.379150391 304.640869141 306.840087891 306.470947266 304.179931641 301.519775391 294.90045166 294.93951416 295.179748535 295.410217285 295.839904785 296.72076416 297.70904541 298.269592285 298.43951416 298.800842285 299.679748535 300.70904541 301.070373535 300.000061035 297.429748535 294.320373535 291.93951416 296.140777588 296.230621338 296.490386963 296.759918213 297.099761963 297.800933838 298.709136963 299.179840088 298.980621338 298.820465088 299.650543213 301.439605713 302.869293213 302.539215088 300.179840088 296.990386963 294.519683838 295.840087891 296.160400391 296.560791016 297.269775391 298.070556641 298.670166016 299.209228516 299.670166016 299.629150391 299.140869141 299.369384766 301.529541016 304.820556641 306.849853516 306.199462891 303.890869141 301.720947266 294.31060791 294.33013916 294.66998291 295.18951416 295.910217285 296.83013916 297.65045166 298.11920166 298.429748535 298.980529785 299.890686035 300.890686035 301.339904785 300.410217285 297.75982666 294.269592285 291.45904541 295.789215088 295.750152588 296.129058838 296.800933838 297.390777588 297.970855713 298.609527588 299.050933838 299.060699463 299.080230713 299.910308838 301.589996338 302.980621338 302.679840088 300.300933838 297.000152588 294.300933838 295.699462891 295.929931641 296.320556641 297.209228516 298.160400391 298.750244141 299.160400391 299.570556641 299.629150391 299.289306641 299.629150391 301.730712891 304.820556641 306.570556641 305.689697266 303.310791016 301.359619141 294.18951416 294.27935791 294.570373535 295.02935791 295.730529785 296.609436035 297.41998291 298.02935791 298.56060791 299.24029541 300.13092041 301.160217285 301.88092041 301.269592285 298.640686035 294.789123535 291.500061035 295.730621338 295.640777588 296.029449463 296.779449463 297.379058838 297.789215088 298.349761963 298.980621338 299.310699463 299.490386963 300.230621338 301.789215088 303.250152588 303.179840088 301.070465088 297.849761963 294.929840088 295.890869141 296.000244141 296.299072266 297.150634766 298.070556641 298.640869141 299.070556641 299.590087891 299.840087891 299.670166016 300.099853516 302.189697266 305.230712891 306.970947266 306.049072266 303.500244141 301.289306641 288.780456543 289.399597168 289.889831543 290.280456543 291.059753418 292.399597168 293.790222168 294.499206543 294.569519043 294.770690918 295.870300293 297.749206543 299.380065918 299.479675293 297.559753418 294.360534668 291.120300293 290.659667969 291.229980469 292.009277344 292.599121094 292.940917969 293.499511719 294.470214844 295.210449219 295.190917969 295.079589844 296.089355469 298.310058594 300.370605469 300.790527344 299.239746094 296.499511719 293.630371094 291.179931641 291.699462891 292.039306641 292.640869141 293.390869141 294.109619141 294.709228516 295.060791016 295.039306641 295.010009766 295.840087891 298.150634766 301.289306641 303.539306641 303.609619141 301.679931641 299.109619141 288.739440918 289.839050293 290.569519043 290.919128418 291.499206543 292.700378418 294.069519043 294.770690918 294.690612793 294.669128418 295.680847168 297.710144043 299.630065918 300.049987793 298.399597168 295.319519043 291.870300293 290.310058594 291.179199219 292.159667969 292.880371094 293.220214844 293.749511719 294.710449219 295.460449219 295.349121094 295.069824219 295.960449219 298.220214844 300.409667969 300.999511719 299.700683594 297.169433594 294.210449219 291.260009766 291.990478516 292.539306641 293.119384766 293.760009766 294.379150391 294.990478516 295.349853516 295.240478516 295.000244141 295.650634766 297.840087891 300.929931641 303.299072266 303.660400391 301.980712891 299.320556641 289.079284668 290.639831543 291.690612793 292.149597168 292.589050293 293.440612793 294.440612793 294.899597168 294.690612793 294.620300293 295.649597168 297.790222168 299.790222168 300.329284668 298.899597168 295.960144043 292.319519043 290.630371094 291.890136719 293.040527344 293.780761719 294.050292969 294.360839844 295.040527344 295.509277344 295.229980469 294.929199219 295.919433594 298.259277344 300.360839844 300.780761719 299.429199219 296.970214844 293.929199219 292.070556641 293.119384766 293.779541016 294.240478516 294.539306641 294.820556641 295.199462891 295.429931641 295.170166016 294.830322266 295.470947266 297.640869141 300.629150391 302.900634766 303.330322266 301.830322266 299.199462891 290.630065918 292.389831543 293.440612793 293.850769043 294.030456543 294.360534668 294.799987793 294.969909668 294.700378418 294.649597168 295.690612793 297.770690918 299.739440918 300.290222168 298.989440918 296.169128418 292.430847168 292.089355469 293.519042969 294.470214844 294.989746094 295.050292969 295.060058594 295.310058594 295.399902344 294.950683594 294.759277344 295.989746094 298.409667969 300.280761719 300.310058594 298.700683594 296.159667969 293.030761719 294.070556641 295.109619141 295.549072266 295.679931641 295.560791016 295.410400391 295.449462891 295.459228516 295.099853516 294.779541016 295.570556641 297.869384766 300.769775391 302.799072266 303.039306641 301.500244141 298.849853516 293.850769043 295.219909668 295.610534668 295.479675293 295.200378418 295.010925293 295.030456543 295.049987793 294.819519043 294.760925293 295.710144043 297.770690918 299.770690918 300.319519043 298.940612793 296.030456543 292.200378418 294.769042969 295.819824219 296.069824219 295.999511719 295.720214844 295.450683594 295.419433594 295.310058594 294.819824219 294.759277344 296.200683594 298.729980469 300.429199219 300.050292969 298.050292969 295.290527344 292.040527344 296.650634766 297.119384766 296.970947266 296.709228516 296.310791016 295.879150391 295.650634766 295.510009766 295.179931641 295.039306641 296.090087891 298.599853516 301.510009766 303.299072266 303.199462891 301.349853516 298.480712891 297.989440918 298.360534668 297.510925293 296.460144043 295.649597168 295.159362793 295.110534668 295.249206543 295.120300293 295.010925293 295.940612793 298.210144043 300.499206543 301.030456543 299.239440918 295.839050293 291.839050293 297.960449219 298.140136719 297.360839844 296.530761719 295.860839844 295.429199219 295.419433594 295.429199219 295.089355469 295.120605469 296.679199219 299.349121094 301.050292969 300.370605469 297.870605469 294.700683594 291.290527344 298.609619141 298.140869141 297.349853516 296.849853516 296.400634766 295.890869141 295.609619141 295.560791016 295.439697266 295.570556641 296.869384766 299.590087891 302.570556641 304.209228516 303.750244141 301.449462891 298.220947266 301.499206543 300.540222168 298.389831543 296.579284668 295.489440918 295.069519043 295.270690918 295.659362793 295.659362793 295.530456543 296.559753418 299.229675293 301.889831543 302.270690918 299.790222168 295.680847168 291.520690918 300.519042969 299.630371094 297.970214844 296.589355469 295.649902344 295.280761719 295.540527344 295.899902344 295.790527344 295.880371094 297.460449219 300.239746094 302.030761719 301.140136719 298.089355469 294.360839844 290.769042969 299.260009766 297.959228516 296.849853516 296.349853516 295.970947266 295.549072266 295.480712891 295.760009766 295.980712891 296.320556641 297.689697266 300.439697266 303.400634766 304.900634766 304.140869141 301.490478516 298.000244141 303.219909668 301.110534668 298.270690918 296.229675293 295.299987793 295.190612793 295.649597168 296.200378418 296.249206543 296.159362793 297.299987793 300.110534668 302.739440918 302.710144043 299.589050293 295.139831543 291.190612793 301.659667969 299.909667969 297.839355469 296.329589844 295.499511719 295.390136719 295.960449219 296.599121094 296.659667969 296.769042969 298.239746094 300.960449219 302.690917969 301.560058594 298.030761719 293.909667969 290.319824219 298.959228516 297.349853516 296.269775391 295.830322266 295.519775391 295.299072266 295.629150391 296.349853516 296.820556641 297.109619141 298.240478516 300.709228516 303.439697266 304.740478516 303.769775391 301.010009766 297.619384766 303.110534668 300.510925293 297.770690918 296.059753418 295.499206543 295.610534668 296.040222168 296.409362793 296.389831543 296.389831543 297.520690918 299.960144043 301.880065918 301.159362793 297.790222168 293.760925293 290.649597168 301.470214844 299.310058594 297.269042969 296.030761719 295.599121094 295.829589844 296.499511719 297.060058594 297.079589844 297.190917969 298.560058594 300.940917969 302.269042969 300.780761719 297.009277344 292.950683594 289.739746094 298.510009766 297.080322266 296.160400391 295.640869141 295.299072266 295.359619141 296.090087891 297.019775391 297.400634766 297.369384766 298.090087891 300.160400391 302.539306641 303.560791016 302.470947266 299.900634766 296.959228516 301.989440918 299.669128418 297.499206543 296.239440918 295.919128418 295.960144043 295.960144043 295.870300293 295.749206543 295.969909668 297.120300293 298.940612793 299.829284668 298.360534668 295.049987793 291.889831543 289.930847168 300.630371094 298.560058594 296.769042969 295.860839844 295.870605469 296.310058594 296.700683594 296.769042969 296.620605469 296.899902344 298.300292969 300.239746094 300.870605469 298.890136719 295.149902344 291.569824219 289.140136719 298.170166016 297.150634766 296.299072266 295.619384766 295.269775391 295.539306641 296.349853516 297.039306641 297.000244141 296.650634766 297.189697266 299.049072266 301.170166016 301.990478516 300.910400391 298.670166016 296.289306641 300.680847168 299.100769043 297.469909668 296.419128418 296.089050293 295.930847168 295.499206543 294.979675293 294.880065918 295.520690918 296.919128418 298.389831543 298.540222168 296.540222168 293.290222168 290.710144043 289.460144043 299.610839844 298.030761719 296.509277344 295.819824219 296.069824219 296.479980469 296.380371094 295.899902344 295.710449219 296.489746094 298.200683594 299.800292969 299.710449219 297.269042969 293.599121094 290.579589844 288.890136719 297.539306641 296.939697266 296.150634766 295.439697266 295.240478516 295.599853516 296.119384766 296.250244141 295.890869141 295.650634766 296.400634766 298.269775391 300.269775391 301.029541016 300.109619141 298.160400391 296.140869141 299.559753418 298.700378418 297.319519043 296.229675293 295.880065918 295.770690918 295.319519043 294.780456543 294.870300293 295.930847168 297.659362793 299.159362793 299.159362793 297.040222168 293.710144043 290.999206543 289.649597168 298.399902344 297.499511719 296.280761719 295.729980469 296.019042969 296.300292969 295.890136719 295.259277344 295.470214844 296.950683594 299.069824219 300.489746094 299.960449219 297.229980469 293.569824219 290.749511719 289.310058594 296.250244141 296.010009766 295.470947266 295.099853516 295.240478516 295.590087891 295.709228516 295.560791016 295.470947266 295.849853516 296.920166016 298.619384766 300.310791016 301.119384766 300.480712891 298.730712891 296.679931641 298.549987793 298.100769043 296.850769043 295.809753418 295.620300293 295.860534668 295.850769043 295.719909668 296.040222168 297.169128418 298.870300293 300.399597168 300.649597168 298.819519043 295.489440918 292.339050293 290.370300293 296.870605469 296.579589844 295.819824219 295.489746094 295.780761719 295.989746094 295.710449219 295.560058594 296.460449219 298.450683594 300.649902344 301.890136719 301.249511719 298.610839844 294.979980469 291.929199219 290.149902344 294.549072266 294.619384766 294.529541016 294.740478516 295.269775391 295.609619141 295.650634766 295.869384766 296.670166016 297.810791016 298.820556641 299.699462891 300.730712891 301.539306641 301.310791016 299.689697266 297.330322266 297.419128418 297.169128418 296.229675293 295.489440918 295.569519043 296.100769043 296.559753418 296.899597168 297.380065918 298.200378418 299.360534668 300.559753418 300.979675293 299.690612793 296.799987793 293.600769043 291.130065918 295.200683594 295.319824219 295.149902344 295.229980469 295.589355469 295.829589844 295.960449219 296.569824219 298.019042969 299.960449219 301.620605469 302.460449219 301.950683594 299.780761719 296.380371094 293.050292969 290.720214844 293.109619141 293.390869141 293.760009766 294.459228516 295.199462891 295.529541016 295.810791016 296.820556641 298.629150391 300.179931641 300.599853516 300.349853516 300.539306641 301.299072266 301.429931641 299.949462891 297.310791016 296.130065918 296.030456543 295.630065918 295.399597168 295.549987793 295.969909668 296.499206543 297.089050293 297.669128418 298.169128418 298.700378418 299.329284668 299.620300293 298.799987793 296.719909668 294.089050293 291.569519043 293.909667969 294.179199219 294.589355469 295.130371094 295.569824219 295.819824219 296.310058594 297.419433594 298.960449219 300.290527344 301.089355469 301.409667969 301.019042969 299.419433594 296.540527344 293.259277344 290.620605469 292.420166016 292.779541016 293.400634766 294.250244141 294.900634766 295.170166016 295.750244141 297.320556641 299.529541016 301.010009766 300.920166016 300.010009766 299.720947266 300.330322266 300.570556641 299.220947266 296.580322266 294.979675293 295.020690918 295.139831543 295.280456543 295.299987793 295.309753418 295.559753418 296.130065918 296.819519043 297.360534668 297.710144043 297.909362793 297.780456543 297.059753418 295.729675293 293.950378418 291.700378418 293.399902344 293.610839844 294.300292969 295.110839844 295.589355469 295.819824219 296.390136719 297.530761719 298.739746094 299.479980469 299.679199219 299.610839844 299.169433594 297.899902344 295.620605469 292.839355469 290.300292969 292.539306641 292.859619141 293.420166016 294.060791016 294.429931641 294.660400391 295.349853516 296.859619141 298.709228516 299.920166016 300.000244141 299.470947266 299.240478516 299.500244141 299.459228516 298.240478516 296.019775391 294.360534668 294.440612793 294.739440918 294.909362793 294.749206543 294.479675293 294.489440918 294.919128418 295.649597168 296.479675293 297.110534668 297.190612793 296.540222168 295.499206543 294.540222168 293.510925293 291.680847168 293.610839844 293.640136719 294.200683594 294.919433594 295.370605469 295.649902344 296.159667969 296.940917969 297.720214844 298.259277344 298.519042969 298.399902344 297.720214844 296.429199219 294.720214844 292.759277344 290.620605469 293.129150391 293.330322266 293.640869141 293.869384766 293.980712891 294.250244141 294.959228516 295.980712891 297.049072266 298.080322266 299.000244141 299.570556641 299.609619141 299.279541016 298.750244141 297.840087891 296.420166016 294.309753418 294.309753418 294.370300293 294.299987793 294.079284668 293.919128418 293.950378418 294.139831543 294.630065918 295.569519043 296.549987793 296.680847168 295.610534668 294.139831543 293.290222168 292.860534668 291.620300293 294.079589844 293.929199219 294.079589844 294.419433594 294.819824219 295.269042969 295.690917969 295.989746094 296.329589844 296.999511719 297.749511719 297.800292969 296.819824219 295.419433594 294.349121094 293.429199219 291.829589844 293.699462891 293.799072266 293.799072266 293.629150391 293.549072266 293.990478516 294.750244141 295.260009766 295.590087891 296.539306641 298.310791016 299.820556641 299.959228516 299.039306641 298.269775391 298.019775391 297.599853516 294.339050293 294.249206543 293.960144043 293.610534668 293.469909668 293.639831543 293.780456543 293.639831543 293.630065918 294.309753418 295.319519043 295.460144043 294.210144043 292.579284668 291.899597168 292.030456543 291.549987793 294.280761719 294.120605469 293.860839844 293.769042969 294.120605469 294.780761719 295.130371094 294.909667969 294.749511719 295.440917969 296.540527344 296.720214844 295.540527344 294.239746094 294.009277344 294.239746094 293.300292969 293.799072266 293.900634766 293.740478516 293.320556641 293.150634766 293.699462891 294.470947266 294.629150391 294.449462891 295.230712891 297.269775391 299.049072266 299.070556641 297.949462891 297.500244141 298.199462891 298.640869141 293.909362793 293.880065918 293.489440918 293.030456543 292.989440918 293.380065918 293.559753418 293.120300293 292.620300293 292.880065918 293.639831543 293.669128418 292.460144043 291.030456543 290.649597168 291.210144043 291.399597168 293.950683594 293.979980469 293.599121094 293.269042969 293.560058594 294.300292969 294.569824219 293.940917969 293.310058594 293.700683594 294.659667969 294.679199219 293.450683594 292.479980469 293.079589844 294.319824219 294.089355469 293.310791016 293.510009766 293.439697266 293.049072266 292.879150391 293.379150391 294.000244141 293.910400391 293.439697266 293.910400391 295.599853516 297.070556641 297.039306641 296.289306641 296.599853516 298.070556641 298.929931641 293.030456543 293.219909668 293.020690918 292.669128418 292.659362793 293.040222168 293.200378418 292.710144043 292.059753418 292.030456543 292.419128418 292.249206543 291.169128418 290.049987793 289.870300293 290.499206543 290.940612793 293.210449219 293.540527344 293.319824219 292.979980469 293.190917969 293.870605469 294.110839844 293.399902344 292.550292969 292.519042969 292.950683594 292.620605469 291.390136719 290.690917969 291.710449219 293.440917969 293.800292969 292.519775391 292.869384766 293.060791016 292.920166016 292.840087891 293.179931641 293.539306641 293.310791016 292.769775391 292.939697266 294.049072266 295.049072266 295.170166016 295.119384766 296.090087891 297.799072266 298.609619141 292.270690918 292.659362793 292.700378418 292.479675293 292.440612793 292.749206543 292.940612793 292.649597168 292.190612793 292.040222168 292.069519043 291.700378418 290.749206543 289.829284668 289.530456543 289.770690918 290.010925293 292.479980469 292.999511719 293.019042969 292.790527344 292.919433594 293.470214844 293.749511719 293.329589844 292.649902344 292.360839844 292.259277344 291.640136719 290.440917969 289.769042969 290.489746094 292.009277344 292.700683594 291.939697266 292.379150391 292.769775391 292.869384766 292.910400391 293.129150391 293.320556641 293.119384766 292.750244141 292.799072266 293.410400391 294.049072266 294.420166016 294.929931641 296.099853516 297.500244141 298.049072266 292.030456543 292.460144043 292.569519043 292.380065918 292.319519043 292.579284668 292.850769043 292.799987793 292.549987793 292.329284668 292.120300293 291.669128418 290.909362793 290.069519043 289.389831543 288.940612793 288.749206543 292.110839844 292.599121094 292.720214844 292.599121094 292.690917969 293.110839844 293.470214844 293.429199219 293.089355469 292.720214844 292.360839844 291.710449219 290.700683594 289.829589844 289.739746094 290.460449219 291.190917969 291.849853516 292.299072266 292.640869141 292.760009766 292.859619141 293.070556641 293.250244141 293.230712891 293.109619141 293.170166016 293.470947266 293.920166016 294.480712891 295.240478516 296.189697266 297.000244141 297.359619141 292.149597168 292.479675293 292.510925293 292.329284668 292.299987793 292.530456543 292.790222168 292.829284668 292.630065918 292.339050293 292.049987793 291.770690918 291.360534668 290.589050293 289.440612793 288.309753418 287.710144043 292.079589844 292.380371094 292.470214844 292.460449219 292.599121094 292.919433594 293.249511719 293.380371094 293.249511719 292.890136719 292.509277344 292.110839844 291.460449219 290.380371094 289.349121094 289.079589844 289.620605469 292.060791016 292.470947266 292.609619141 292.590087891 292.699462891 292.959228516 293.189697266 293.250244141 293.269775391 293.340087891 293.539306641 293.980712891 294.699462891 295.500244141 296.080322266 296.349853516 296.570556641 292.149597168 292.399597168 292.409362793 292.350769043 292.419128418 292.600769043 292.739440918 292.690612793 292.469909668 292.169128418 291.989440918 292.040222168 292.049987793 291.419128418 289.950378418 288.319519043 287.430847168 292.079589844 292.220214844 292.259277344 292.409667969 292.679199219 292.950683594 293.140136719 293.229980469 293.110839844 292.759277344 292.489746094 292.450683594 292.169433594 290.979980469 289.210449219 288.120605469 288.399902344 292.150634766 292.529541016 292.539306641 292.459228516 292.629150391 292.959228516 293.140869141 293.109619141 293.080322266 293.170166016 293.449462891 294.060791016 294.970947266 295.789306641 296.060791016 295.920166016 295.949462891 291.909362793 292.169128418 292.309753418 292.469909668 292.680847168 292.780456543 292.719909668 292.620300293 292.460144043 292.249206543 292.159362793 292.430847168 292.790222168 292.409362793 290.960144043 289.169128418 288.110534668 291.979980469 292.060058594 292.130371094 292.409667969 292.790527344 293.030761719 293.099121094 293.140136719 293.060058594 292.800292969 292.640136719 292.810058594 292.739746094 291.560058594 289.470214844 287.919433594 287.950683594 291.949462891 292.330322266 292.379150391 292.429931641 292.740478516 293.099853516 293.179931641 293.019775391 292.910400391 293.080322266 293.560791016 294.369384766 295.429931641 296.289306641 296.480712891 296.129150391 295.890869141 291.729675293 292.030456543 292.270690918 292.610534668 292.909362793 292.919128418 292.739440918 292.649597168 292.680847168 292.549987793 292.419128418 292.690612793 293.260925293 293.299987793 292.290222168 290.749206543 289.639831543 291.819824219 291.989746094 292.110839844 292.399902344 292.780761719 292.970214844 293.019042969 293.120605469 293.220214844 293.130371094 293.030761719 293.190917969 293.190917969 292.229980469 290.319824219 288.739746094 288.540527344 291.679931641 292.039306641 292.220947266 292.439697266 292.849853516 293.220947266 293.240478516 293.060791016 293.029541016 293.320556641 293.910400391 294.769775391 295.849853516 296.810791016 297.170166016 296.929931641 296.549072266 291.790222168 292.069519043 292.280456543 292.630065918 292.950378418 292.919128418 292.710144043 292.690612793 292.819519043 292.729675293 292.499206543 292.700378418 293.450378418 294.049987793 293.780456543 292.809753418 291.770690918 291.759277344 292.069824219 292.190917969 292.370605469 292.630371094 292.780761719 292.860839844 293.060058594 293.310058594 293.370605469 293.300292969 293.419433594 293.550292969 293.110839844 291.880371094 290.599121094 290.149902344 291.570556641 291.920166016 292.160400391 292.429931641 292.799072266 293.109619141 293.179931641 293.150634766 293.260009766 293.590087891 294.109619141 294.830322266 295.869384766 297.049072266 297.890869141 298.070556641 297.799072266 291.979675293 292.180847168 292.260925293 292.549987793 292.870300293 292.889831543 292.669128418 292.630065918 292.760925293 292.700378418 292.489440918 292.739440918 293.710144043 294.819519043 295.280456543 294.919128418 294.069519043 291.710449219 292.140136719 292.269042969 292.329589844 292.499511719 292.690917969 292.800292969 292.960449219 293.179199219 293.310058594 293.349121094 293.560058594 294.019042969 294.339355469 294.060058594 293.249511719 292.540527344 291.599853516 291.980712891 292.220947266 292.400634766 292.629150391 292.890869141 293.080322266 293.199462891 293.349853516 293.590087891 293.959228516 294.599853516 295.720947266 297.279541016 298.699462891 299.420166016 299.379150391 292.049987793 292.190612793 292.200378418 292.469909668 292.860534668 292.950378418 292.729675293 292.589050293 292.659362793 292.649597168 292.600769043 292.969909668 294.040222168 295.370300293 296.280456543 296.460144043 295.950378418 291.550292969 292.069824219 292.210449219 292.249511719 292.470214844 292.749511719 292.880371094 292.919433594 293.009277344 293.190917969 293.419433594 293.899902344 294.759277344 295.810058594 296.399902344 296.099121094 295.210449219 291.599853516 292.039306641 292.250244141 292.349853516 292.519775391 292.820556641 293.109619141 293.260009766 293.310791016 293.429931641 293.799072266 294.580322266 295.949462891 297.849853516 299.720947266 300.849853516 301.029541016 291.989440918 292.149597168 292.210144043 292.520690918 292.930847168 293.030456543 292.799987793 292.610534668 292.630065918 292.690612793 292.729675293 293.089050293 293.979675293 295.149597168 296.169128418 296.799987793 296.819519043 291.339355469 291.880371094 292.079589844 292.200683594 292.499511719 292.849121094 292.989746094 292.940917969 292.950683594 293.220214844 293.679199219 294.339355469 295.419433594 296.849121094 298.040527344 298.269042969 297.489746094 291.529541016 291.980712891 292.160400391 292.269775391 292.529541016 292.910400391 293.240478516 293.320556641 293.260009766 293.390869141 293.929931641 294.949462891 296.490478516 298.500244141 300.529541016 301.929931641 302.340087891 291.979675293 292.200378418 292.360534668 292.659362793 292.940612793 292.940612793 292.719909668 292.589050293 292.639831543 292.690612793 292.659362793 292.780456543 293.249206543 294.020690918 294.950378418 295.940612793 296.579284668 291.220214844 291.769042969 292.069824219 292.259277344 292.509277344 292.810058594 292.960449219 292.929199219 292.960449219 293.269042969 293.790527344 294.440917969 295.390136719 296.800292969 298.259277344 299.019042969 298.690917969 291.480712891 291.859619141 292.049072266 292.250244141 292.580322266 292.990478516 293.260009766 293.279541016 293.230712891 293.470947266 294.150634766 295.199462891 296.609619141 298.429931641 300.439697266 302.080322266 302.910400391 292.079284668 292.380065918 292.610534668 292.799987793 292.839050293 292.700378418 292.549987793 292.549987793 292.639831543 292.610534668 292.440612793 292.280456543 292.339050293 292.680847168 293.389831543 294.520690918 295.620300293 291.220214844 291.800292969 292.220214844 292.429199219 292.509277344 292.640136719 292.810058594 292.890136719 292.929199219 293.130371094 293.489746094 293.940917969 294.610839844 295.769042969 297.229980469 298.390136719 298.669433594 291.420166016 291.769775391 292.039306641 292.359619141 292.670166016 292.910400391 293.070556641 293.119384766 293.179931641 293.449462891 294.039306641 294.859619141 295.939697266 297.429931641 299.310791016 301.209228516 302.560791016 292.210144043 292.569519043 292.819519043 292.870300293 292.739440918 292.569519043 292.510925293 292.569519043 292.620300293 292.530456543 292.319519043 292.089050293 291.960144043 291.979675293 292.339050293 293.249206543 294.399597168 291.210449219 291.860839844 292.399902344 292.579589844 292.479980469 292.499511719 292.729980469 292.919433594 292.890136719 292.849121094 292.979980469 293.280761719 293.800292969 294.700683594 295.950683594 297.200683594 297.880371094 291.230712891 291.660400391 292.119384766 292.539306641 292.730712891 292.769775391 292.849853516 293.000244141 293.129150391 293.279541016 293.599853516 294.160400391 294.990478516 296.199462891 297.840087891 299.799072266 301.549072266 292.339050293 292.739440918 292.930847168 292.889831543 292.739440918 292.690612793 292.700378418 292.649597168 292.549987793 292.460144043 292.370300293 292.260925293 292.139831543 292.030456543 292.069519043 292.520690918 293.299987793 291.190917969 291.929199219 292.530761719 292.649902344 292.450683594 292.489746094 292.870605469 293.089355469 292.909667969 292.659667969 292.720214844 293.069824219 293.599121094 294.349121094 295.290527344 296.310058594 297.030761719 290.900634766 291.500244141 292.179931641 292.670166016 292.730712891 292.670166016 292.810791016 293.060791016 293.129150391 293.039306641 293.140869141 293.650634766 294.510009766 295.560791016 296.810791016 298.470947266 300.349853516 292.520690918 292.909362793 293.010925293 292.889831543 292.839050293 292.919128418 292.880065918 292.620300293 292.360534668 292.339050293 292.419128418 292.419128418 292.370300293 292.370300293 292.360534668 292.440612793 292.700378418 291.280761719 292.110839844 292.679199219 292.700683594 292.489746094 292.640136719 293.069824219 293.210449219 292.909667969 292.659667969 292.819824219 293.269042969 293.860839844 294.569824219 295.310058594 295.979980469 296.470214844 290.640869141 291.369384766 292.170166016 292.640869141 292.650634766 292.640869141 292.920166016 293.179931641 293.090087891 292.820556641 292.900634766 293.580322266 294.599853516 295.529541016 296.340087891 297.529541016 299.289306641 292.680847168 293.120300293 293.139831543 292.969909668 292.930847168 293.030456543 292.860534668 292.399597168 292.130065918 292.270690918 292.430847168 292.350769043 292.350769043 292.680847168 293.020690918 293.010925293 292.809753418 291.530761719 292.429199219 292.919433594 292.819824219 292.630371094 292.839355469 293.200683594 293.159667969 292.839355469 292.769042969 293.060058594 293.440917969 293.940917969 294.729980469 295.550292969 296.040527344 296.190917969 290.570556641 291.359619141 292.150634766 292.549072266 292.580322266 292.689697266 293.010009766 293.150634766 292.900634766 292.660400391 292.910400391 293.689697266 294.689697266 295.549072266 296.230712891 297.160400391 298.660400391 292.659362793 293.249206543 293.350769043 293.139831543 293.049987793 293.010925293 292.659362793 292.139831543 292.040222168 292.399597168 292.520690918 292.229675293 292.239440918 293.030456543 293.880065918 293.969909668 293.430847168 291.790527344 292.739746094 293.140136719 292.989746094 292.829589844 293.019042969 293.200683594 292.999511719 292.800292969 293.009277344 293.329589844 293.399902344 293.679199219 294.700683594 295.940917969 296.470214844 296.200683594 290.549072266 291.400634766 292.189697266 292.539306641 292.619384766 292.789306641 293.019775391 292.939697266 292.650634766 292.650634766 293.080322266 293.699462891 294.449462891 295.439697266 296.549072266 297.650634766 298.730712891 292.430847168 293.309753418 293.600769043 293.440612793 293.219909668 292.979675293 292.510925293 292.069519043 292.180847168 292.659362793 292.710144043 292.270690918 292.360534668 293.450378418 294.559753418 294.589050293 293.749206543 291.979980469 292.870605469 293.229980469 293.099121094 292.999511719 293.159667969 293.190917969 292.950683594 292.970214844 293.429199219 293.669433594 293.380371094 293.560058594 295.009277344 296.819824219 297.419433594 296.599121094 290.449462891 291.449462891 292.299072266 292.660400391 292.779541016 292.959228516 293.029541016 292.769775391 292.590087891 292.939697266 293.459228516 293.699462891 294.140869141 295.560791016 297.609619141 299.129150391 299.549072266 292.190612793 293.350769043 293.850769043 293.739440918 293.389831543 292.999206543 292.520690918 292.180847168 292.350769043 292.760925293 292.760925293 292.440612793 292.669128418 293.719909668 294.489440918 294.079284668 292.979675293 292.249511719 292.979980469 293.239746094 293.159667969 293.140136719 293.269042969 293.249511719 293.089355469 293.300292969 293.849121094 293.989746094 293.620605469 293.999511719 295.919433594 298.110839844 298.610839844 297.239746094 290.390869141 291.609619141 292.549072266 292.920166016 293.000244141 293.129150391 293.119384766 292.869384766 292.900634766 293.490478516 293.980712891 293.910400391 294.269775391 296.269775391 299.220947266 301.019775391 300.650634766 292.159362793 293.450378418 294.030456543 293.899597168 293.460144043 292.989440918 292.549987793 292.249206543 292.260925293 292.440612793 292.479675293 292.510925293 292.969909668 293.610534668 293.510925293 292.339050293 290.999206543 292.769042969 293.249511719 293.370605469 293.269042969 293.239746094 293.349121094 293.329589844 293.239746094 293.450683594 293.899902344 294.009277344 293.929199219 294.749511719 296.909667969 298.960449219 299.140136719 297.429199219 290.699462891 292.080322266 293.029541016 293.260009766 293.179931641 293.240478516 293.299072266 293.170166016 293.299072266 293.900634766 294.330322266 294.260009766 294.849853516 297.269775391 300.529541016 302.140869141 301.099853516 292.399597168 293.600769043 294.089050293 293.919128418 293.419128418 292.899597168 292.469909668 292.120300293 291.880065918 291.770690918 291.899597168 292.409362793 293.049987793 293.120300293 291.979675293 290.069519043 288.549987793 293.429199219 293.630371094 293.579589844 293.460449219 293.380371094 293.370605469 293.290527344 293.149902344 293.179199219 293.370605469 293.560058594 293.979980469 295.220214844 297.140136719 298.499511719 298.220214844 296.540527344 291.480712891 292.879150391 293.740478516 293.730712891 293.369384766 293.269775391 293.379150391 293.349853516 293.369384766 293.709228516 294.099853516 294.410400391 295.439697266 297.859619141 300.560791016 301.519775391 300.220947266 293.020690918 293.899597168 294.139831543 293.930847168 293.419128418 292.819519043 292.319519043 291.909362793 291.479675293 291.159362793 291.350769043 292.149597168 292.850769043 292.419128418 290.569519043 288.239440918 286.579284668 294.040527344 293.929199219 293.749511719 293.640136719 293.530761719 293.380371094 293.169433594 292.909667969 292.669433594 292.589355469 292.870605469 293.729980469 295.130371094 296.419433594 296.790527344 296.079589844 294.720214844 292.570556641 293.820556641 294.519775391 294.320556641 293.670166016 293.310791016 293.320556641 293.240478516 292.980712891 292.910400391 293.260009766 294.070556641 295.529541016 297.539306641 299.170166016 299.349853516 298.179931641 294.350769043 294.620300293 294.450378418 294.130065918 293.569519043 292.870300293 292.280456543 291.880065918 291.440612793 291.020690918 291.120300293 291.870300293 292.440612793 291.760925293 289.749206543 287.430847168 285.680847168 294.630371094 294.140136719 293.819824219 293.780761719 293.729980469 293.470214844 293.140136719 292.800292969 292.409667969 292.120605469 292.390136719 293.429199219 294.710449219 295.280761719 294.829589844 293.919433594 292.950683594 293.910400391 294.820556641 295.269775391 294.959228516 294.109619141 293.410400391 293.179931641 293.019775391 292.549072266 292.109619141 292.330322266 293.420166016 295.019775391 296.470947266 297.090087891 296.740478516 295.959228516 296.680847168 296.030456543 295.190612793 294.569519043 293.889831543 293.049987793 292.430847168 292.169128418 291.889831543 291.450378418 291.309753418 291.729675293 292.069519043 291.409362793 289.710144043 287.719909668 285.880065918 295.550292969 294.530761719 293.970214844 293.970214844 293.960449219 293.679199219 293.329589844 293.060058594 292.679199219 292.280761719 292.399902344 293.319824219 294.319824219 294.440917969 293.649902344 292.800292969 292.130371094 295.629150391 295.920166016 296.000244141 295.590087891 294.599853516 293.580322266 293.109619141 292.959228516 292.560791016 291.980712891 291.959228516 292.879150391 294.269775391 295.220947266 295.310791016 294.869384766 294.449462891 299.639831543 297.960144043 296.280456543 295.149597168 294.219909668 293.290222168 292.710144043 292.630065918 292.559753418 292.130065918 291.770690918 291.860534668 292.040222168 291.579284668 290.389831543 288.790222168 286.780456543 296.860839844 295.220214844 294.300292969 294.190917969 294.200683594 293.909667969 293.620605469 293.489746094 293.269042969 292.860839844 292.790527344 293.409667969 294.159667969 294.149902344 293.460449219 292.829589844 292.229980469 297.640869141 297.189697266 296.709228516 296.080322266 294.970947266 293.750244141 293.119384766 293.119384766 293.019775391 292.539306641 292.269775391 292.750244141 293.689697266 294.310791016 294.310791016 294.029541016 293.779541016 302.290222168 299.780456543 297.389831543 295.719909668 294.520690918 293.530456543 293.010925293 293.020690918 293.030456543 292.649597168 292.239440918 292.219909668 292.370300293 292.130065918 291.360534668 290.030456543 287.819519043 298.179199219 295.960449219 294.679199219 294.419433594 294.380371094 294.079589844 293.810058594 293.790527344 293.720214844 293.380371094 293.249511719 293.659667969 294.210449219 294.229980469 293.769042969 293.290527344 292.499511719 299.490478516 298.390869141 297.289306641 296.340087891 295.160400391 293.869384766 293.189697266 293.289306641 293.470947266 293.209228516 292.840087891 292.949462891 293.459228516 293.879150391 293.949462891 293.779541016 293.400634766 303.870300293 301.059753418 298.280456543 296.219909668 294.819519043 293.839050293 293.339050293 293.270690918 293.210144043 292.870300293 292.579284668 292.630065918 292.809753418 292.639831543 292.040222168 290.839050293 288.549987793 299.130371094 296.530761719 294.989746094 294.599121094 294.519042969 294.200683594 293.899902344 293.860839844 293.839355469 293.649902344 293.610839844 293.970214844 294.370605469 294.339355469 293.979980469 293.479980469 292.380371094 300.709228516 299.260009766 297.679931641 296.420166016 295.230712891 294.060791016 293.400634766 293.429931641 293.629150391 293.480712891 293.199462891 293.189697266 293.459228516 293.730712891 293.810791016 293.590087891 292.840087891 304.450378418 301.819519043 298.950378418 296.649597168 295.149597168 294.229675293 293.739440918 293.540222168 293.339050293 293.040222168 292.880065918 292.989440918 293.059753418 292.760925293 292.120300293 291.020690918 288.870300293 299.769042969 296.999511719 295.319824219 294.819824219 294.690917969 294.370605469 294.060058594 293.950683594 293.880371094 293.780761719 293.870605469 294.220214844 294.429199219 294.220214844 293.800292969 293.239746094 291.929199219 301.220947266 299.799072266 297.959228516 296.439697266 295.289306641 294.349853516 293.799072266 293.679931641 293.650634766 293.470947266 293.289306641 293.330322266 293.470947266 293.580322266 293.580322266 293.240478516 292.189697266 304.659362793 302.409362793 299.489440918 296.989440918 295.430847168 294.620300293 294.180847168 293.899597168 293.639831543 293.380065918 293.249206543 293.249206543 293.100769043 292.589050293 291.860534668 290.839050293 288.979675293 300.419433594 297.599121094 295.769042969 295.110839844 294.899902344 294.640136719 294.390136719 294.269042969 294.120605469 293.970214844 294.060058594 294.300292969 294.259277344 293.819824219 293.310058594 292.769042969 291.479980469 301.310791016 300.160400391 298.199462891 296.439697266 295.289306641 294.619384766 294.260009766 294.039306641 293.789306641 293.500244141 293.379150391 293.420166016 293.400634766 293.289306641 293.199462891 292.879150391 291.750244141 304.850769043 302.899597168 299.909362793 297.219909668 295.630065918 294.880065918 294.460144043 294.180847168 293.989440918 293.799987793 293.630065918 293.450378418 293.120300293 292.510925293 291.729675293 290.729675293 289.059753418 301.110839844 298.290527344 296.290527344 295.380371094 295.040527344 294.849121094 294.769042969 294.720214844 294.519042969 294.269042969 294.210449219 294.249511719 293.960449219 293.329589844 292.739746094 292.220214844 291.069824219 301.119384766 300.269775391 298.299072266 296.359619141 295.150634766 294.650634766 294.480712891 294.289306641 293.970947266 293.679931641 293.590087891 293.560791016 293.320556641 293.000244141 292.820556641 292.560791016 291.539306641 304.790222168 303.069519043 300.110534668 297.399597168 295.790222168 294.989440918 294.479675293 294.190612793 294.110534668 294.069519043 293.880065918 293.579284668 293.210144043 292.710144043 291.979675293 290.880065918 289.139831543 301.489746094 298.800292969 296.700683594 295.560058594 295.089355469 294.950683594 294.989746094 295.019042969 294.819824219 294.519042969 294.349121094 294.220214844 293.780761719 293.060058594 292.360839844 291.669433594 290.489746094 300.599853516 299.980712891 298.070556641 296.099853516 294.910400391 294.490478516 294.379150391 294.230712891 293.990478516 293.840087891 293.840087891 293.750244141 293.390869141 292.910400391 292.599853516 292.230712891 291.230712891 304.210144043 302.799987793 300.079284668 297.520690918 295.930847168 295.010925293 294.329284668 293.979675293 294.040222168 294.169128418 294.040222168 293.719909668 293.399597168 293.079284668 292.430847168 291.180847168 289.219909668 301.360839844 298.970214844 296.929199219 295.690917969 295.149902344 295.019042969 295.069824219 295.089355469 294.909667969 294.659667969 294.509277344 294.319824219 293.839355469 293.099121094 292.249511719 291.229980469 289.759277344 299.830322266 299.279541016 297.510009766 295.720947266 294.689697266 294.369384766 294.250244141 294.070556641 293.900634766 293.879150391 293.980712891 293.929931641 293.570556641 293.060791016 292.580322266 291.910400391 290.670166016 303.339050293 302.200378418 299.790222168 297.440612793 295.899597168 294.919128418 294.180847168 293.870300293 294.049987793 294.309753418 294.219909668 293.880065918 293.579284668 293.319519043 292.749206543 291.479675293 289.399597168 300.950683594 298.899902344 296.950683594 295.720214844 295.210449219 295.120605469 295.110839844 295.030761719 294.880371094 294.739746094 294.640136719 294.429199219 293.940917969 293.210449219 292.269042969 290.970214844 289.190917969 299.150634766 298.500244141 296.799072266 295.250244141 294.560791016 294.449462891 294.340087891 294.109619141 293.929931641 293.959228516 294.039306641 293.970947266 293.650634766 293.199462891 292.609619141 291.640869141 290.099853516 302.610534668 301.540222168 299.180847168 296.930847168 295.510925293 294.680847168 294.139831543 294.010925293 294.290222168 294.530456543 294.399597168 293.999206543 293.620300293 293.290222168 292.770690918 291.690612793 289.819519043 300.550292969 298.640136719 296.710449219 295.519042969 295.169433594 295.169433594 295.140136719 295.019042969 294.909667969 294.839355469 294.720214844 294.380371094 293.810058594 293.099121094 292.190917969 290.849121094 288.999511719 298.769775391 297.830322266 296.080322266 294.750244141 294.410400391 294.590087891 294.599853516 294.369384766 294.189697266 294.160400391 294.090087891 293.849853516 293.480712891 293.070556641 292.480712891 291.420166016 289.779541016 302.149597168 300.770690918 298.239440918 296.049987793 294.899597168 294.450378418 294.280456543 294.380065918 294.620300293 294.680847168 294.389831543 293.950378418 293.510925293 293.049987793 292.530456543 291.749206543 290.319519043 300.079589844 298.089355469 296.099121094 295.050292969 294.960449219 295.149902344 295.169433594 295.089355469 295.050292969 294.979980469 294.700683594 294.169433594 293.489746094 292.780761719 291.929199219 290.720214844 289.060058594 298.379150391 297.140869141 295.359619141 294.260009766 294.260009766 294.679931641 294.799072266 294.619384766 294.459228516 294.369384766 294.140869141 293.689697266 293.179931641 292.699462891 292.109619141 291.160400391 289.670166016 301.499206543 299.669128418 297.069519043 295.200378418 294.520690918 294.489440918 294.620300293 294.799987793 294.889831543 294.659362793 294.219909668 293.790222168 293.360534668 292.799987793 292.229675293 291.669128418 290.639831543 299.190917969 297.110839844 295.259277344 294.560058594 294.810058594 295.159667969 295.229980469 295.220214844 295.269042969 295.140136719 294.659667969 293.960449219 293.249511719 292.540527344 291.700683594 290.579589844 289.120605469 297.490478516 296.209228516 294.689697266 293.990478516 294.279541016 294.799072266 294.900634766 294.709228516 294.580322266 294.470947266 294.150634766 293.599853516 293.000244141 292.400634766 291.730712891 290.820556641 289.519775391 300.180847168 298.159362793 295.940612793 294.749206543 294.630065918 294.819519043 294.989440918 295.120300293 295.059753418 294.649597168 294.089050293 293.690612793 293.290222168 292.659362793 291.979675293 291.479675293 290.700378418 297.749511719 295.890136719 294.530761719 294.370605469 294.909667969 295.290527344 295.329589844 295.409667969 295.499511719 295.290527344 294.610839844 293.839355469 293.200683594 292.540527344 291.669433594 290.530761719 289.120605469 296.060791016 295.160400391 294.230712891 294.029541016 294.549072266 295.019775391 295.010009766 294.769775391 294.629150391 294.480712891 294.119384766 293.590087891 293.010009766 292.359619141 291.570556641 290.590087891 289.320556641 298.169128418 296.430847168 295.030456543 294.680847168 294.940612793 295.100769043 295.120300293 295.210144043 295.180847168 294.780456543 294.190612793 293.739440918 293.299987793 292.589050293 291.839050293 291.329284668 290.690612793 296.099121094 294.860839844 294.239746094 294.550292969 295.169433594 295.399902344 295.390136719 295.540527344 295.710449219 295.399902344 294.589355469 293.790527344 293.229980469 292.659667969 291.810058594 290.679199219 289.300292969 294.629150391 294.330322266 294.049072266 294.260009766 294.830322266 295.179931641 295.099853516 294.900634766 294.769775391 294.539306641 294.070556641 293.539306641 293.049072266 292.470947266 291.679931641 290.660400391 289.340087891 295.940612793 294.889831543 294.419128418 294.669128418 295.020690918 295.010925293 294.919128418 295.059753418 295.219909668 294.969909668 294.409362793 293.880065918 293.299987793 292.510925293 291.719909668 291.249206543 290.749206543 294.759277344 294.300292969 294.360839844 294.880371094 295.290527344 295.339355469 295.310058594 295.569824219 295.800292969 295.429199219 294.569824219 293.759277344 293.239746094 292.700683594 291.940917969 290.970214844 289.739746094 293.750244141 293.939697266 294.039306641 294.379150391 294.840087891 295.080322266 295.060791016 295.029541016 294.990478516 294.650634766 294.019775391 293.439697266 293.010009766 292.549072266 291.900634766 291.029541016 289.789306641 294.130065918 293.909362793 294.110534668 294.559753418 294.790222168 294.669128418 294.610534668 294.860534668 295.149597168 295.049987793 294.569519043 293.969909668 293.290222168 292.419128418 291.620300293 291.159362793 290.799987793 293.989746094 294.210449219 294.700683594 295.140136719 295.280761719 295.169433594 295.210449219 295.519042969 295.710449219 295.339355469 294.560058594 293.839355469 293.290527344 292.710449219 291.999511719 291.239746094 290.210449219 293.480712891 293.890869141 294.090087891 294.340087891 294.640869141 294.799072266 294.910400391 295.090087891 295.129150391 294.750244141 294.070556641 293.449462891 293.010009766 292.590087891 292.090087891 291.480712891 290.470947266 293.139831543 293.569519043 294.079284668 294.440612793 294.520690918 294.460144043 294.530456543 294.799987793 295.020690918 294.969909668 294.589050293 294.020690918 293.280456543 292.399597168 291.559753418 291.030456543 290.669128418 293.679199219 294.339355469 295.030761719 295.349121094 295.280761719 295.149902344 295.220214844 295.440917969 295.489746094 295.130371094 294.560058594 294.009277344 293.479980469 292.819824219 292.079589844 291.380371094 290.479980469 293.549072266 293.970947266 294.170166016 294.359619141 294.539306641 294.660400391 294.830322266 295.060791016 295.119384766 294.779541016 294.199462891 293.679931641 293.230712891 292.730712891 292.230712891 291.789306641 291.010009766 292.919128418 293.659362793 294.190612793 294.399597168 294.430847168 294.530456543 294.700378418 294.850769043 294.919128418 294.829284668 294.540222168 293.999206543 293.249206543 292.399597168 291.579284668 290.909362793 290.409362793 293.630371094 294.509277344 295.259277344 295.519042969 295.390136719 295.280761719 295.339355469 295.399902344 295.280761719 294.960449219 294.569824219 294.159667969 293.659667969 292.999511719 292.269042969 291.489746094 290.540527344 293.750244141 294.109619141 294.379150391 294.570556641 294.670166016 294.720947266 294.869384766 295.049072266 295.060791016 294.769775391 294.349853516 293.980712891 293.560791016 292.980712891 292.410400391 291.970947266 291.310791016 293.110534668 293.839050293 294.290222168 294.419128418 294.479675293 294.669128418 294.850769043 294.870300293 294.829284668 294.760925293 294.499206543 293.880065918 293.089050293 292.350769043 291.649597168 290.880065918 290.139831543 293.700683594 294.620605469 295.370605469 295.599121094 295.479980469 295.390136719 295.419433594 295.399902344 295.259277344 294.999511719 294.630371094 294.149902344 293.620605469 293.089355469 292.499511719 291.710449219 290.649902344 293.990478516 294.340087891 294.679931641 294.840087891 294.810791016 294.769775391 294.910400391 295.099853516 295.070556641 294.760009766 294.390869141 294.070556641 293.679931641 293.140869141 292.599853516 292.179931641 291.549072266 293.299987793 293.909362793 294.319519043 294.479675293 294.559753418 294.719909668 294.829284668 294.790222168 294.739440918 294.749206543 294.469909668 293.719909668 292.829284668 292.210144043 291.700378418 290.889831543 289.909362793 293.839355469 294.679199219 295.370605469 295.560058594 295.450683594 295.370605469 295.409667969 295.429199219 295.370605469 295.190917969 294.759277344 294.069824219 293.440917969 293.050292969 292.700683594 291.979980469 290.870605469 294.209228516 294.599853516 294.959228516 295.019775391 294.799072266 294.699462891 294.910400391 295.189697266 295.170166016 294.810791016 294.349853516 293.949462891 293.539306641 293.099853516 292.720947266 292.400634766 291.840087891 293.350769043 293.909362793 294.380065918 294.610534668 294.669128418 294.739440918 294.790222168 294.710144043 294.659362793 294.690612793 294.430847168 293.630065918 292.680847168 292.079284668 291.659362793 290.819519043 289.659362793 293.970214844 294.710449219 295.310058594 295.479980469 295.399902344 295.370605469 295.409667969 295.429199219 295.419433594 295.310058594 294.870605469 294.089355469 293.390136719 293.079589844 292.860839844 292.210449219 291.089355469 294.299072266 294.750244141 295.119384766 295.070556641 294.750244141 294.670166016 294.959228516 295.250244141 295.199462891 294.830322266 294.340087891 293.849853516 293.379150391 292.980712891 292.720947266 292.510009766 292.039306641 293.339050293 293.979675293 294.540222168 294.780456543 294.809753418 294.850769043 294.889831543 294.760925293 294.579284668 294.510925293 294.309753418 293.649597168 292.729675293 292.049987793 291.540222168 290.630065918 289.360534668 294.060058594 294.749511719 295.269042969 295.440917969 295.440917969 295.470214844 295.479980469 295.360839844 295.210449219 295.110839844 294.829589844 294.220214844 293.599121094 293.280761719 292.999511719 292.290527344 291.159667969 294.230712891 294.750244141 295.150634766 295.099853516 294.849853516 294.849853516 295.119384766 295.260009766 295.080322266 294.740478516 294.369384766 293.929931641 293.410400391 292.949462891 292.650634766 292.420166016 292.000244141 293.440612793 294.139831543 294.690612793 294.880065918 294.860534668 294.940612793 295.059753418 294.889831543 294.479675293 294.210144043 294.089050293 293.649597168 292.819519043 292.010925293 291.319519043 290.370300293 289.110534668 294.099121094 294.759277344 295.249511719 295.429199219 295.470214844 295.540527344 295.519042969 295.239746094 294.890136719 294.700683594 294.599121094 294.300292969 293.849121094 293.489746094 293.089355469 292.290527344 291.140136719 294.140869141 294.689697266 295.119384766 295.119384766 294.990478516 295.080322266 295.260009766 295.179931641 294.840087891 294.549072266 294.359619141 294.039306641 293.519775391 292.990478516 292.580322266 292.250244141 291.820556641 293.639831543 294.270690918 294.710144043 294.819519043 294.790222168 294.930847168 295.120300293 294.960144043 294.399597168 293.969909668 293.850769043 293.549987793 292.780456543 291.870300293 291.089050293 290.180847168 288.999206543 294.089355469 294.749511719 295.239746094 295.380371094 295.360839844 295.399902344 295.399902344 295.130371094 294.679199219 294.419433594 294.370605469 294.220214844 293.870605469 293.499511719 293.069824219 292.319824219 291.200683594 294.119384766 294.689697266 295.049072266 295.049072266 294.990478516 295.119384766 295.230712891 295.039306641 294.660400391 294.400634766 294.260009766 293.970947266 293.470947266 292.949462891 292.529541016 292.160400391 291.699462891 293.850769043 294.299987793 294.610534668 294.749206543 294.760925293 294.860534668 295.030456543 294.909362793 294.389831543 293.919128418 293.729675293 293.419128418 292.639831543 291.690612793 290.919128418 290.100769043 288.989440918 294.040527344 294.679199219 295.200683594 295.339355469 295.210449219 295.120605469 295.140136719 295.030761719 294.690917969 294.390136719 294.239746094 294.050292969 293.700683594 293.339355469 292.989746094 292.370605469 291.319824219 294.119384766 294.679931641 294.970947266 294.939697266 294.879150391 294.970947266 295.049072266 294.890869141 294.619384766 294.369384766 294.129150391 293.740478516 293.250244141 292.820556641 292.470947266 292.109619141 291.660400391 293.999206543 294.270690918 294.559753418 294.850769043 294.899597168 294.839050293 294.839050293 294.739440918 294.389831543 293.989440918 293.739440918 293.350769043 292.559753418 291.649597168 290.899597168 290.089050293 288.930847168 293.890136719 294.530761719 295.120605469 295.370605469 295.190917969 294.940917969 294.880371094 294.870605469 294.690917969 294.390136719 294.179199219 293.940917969 293.589355469 293.229980469 292.909667969 292.360839844 291.339355469 294.010009766 294.580322266 294.869384766 294.900634766 294.849853516 294.840087891 294.810791016 294.709228516 294.549072266 294.330322266 293.990478516 293.539306641 293.080322266 292.720947266 292.369384766 291.959228516 291.500244141 294.159362793 294.319519043 294.630065918 295.030456543 295.120300293 294.860534668 294.630065918 294.520690918 294.299987793 293.969909668 293.680847168 293.309753418 292.600769043 291.739440918 290.960144043 290.100769043 288.870300293 293.679199219 294.280761719 294.950683594 295.370605469 295.290527344 294.940917969 294.720214844 294.649902344 294.489746094 294.239746094 294.040527344 293.880371094 293.620605469 293.259277344 292.839355469 292.210449219 291.179199219 293.799072266 294.379150391 294.730712891 294.929931641 294.959228516 294.820556641 294.599853516 294.429931641 294.330322266 294.160400391 293.830322266 293.439697266 293.060791016 292.660400391 292.189697266 291.660400391 291.189697266 294.329284668 294.440612793 294.680847168 295.089050293 295.149597168 294.799987793 294.489440918 294.380065918 294.180847168 293.799987793 293.479675293 293.200378418 292.649597168 291.819519043 290.999206543 290.120300293 288.969909668 293.489746094 294.030761719 294.679199219 295.239746094 295.319824219 294.970214844 294.649902344 294.470214844 294.269042969 293.979980469 293.819824219 293.810058594 293.669433594 293.280761719 292.710449219 291.989746094 290.989746094 293.590087891 294.129150391 294.539306641 294.879150391 295.010009766 294.789306641 294.420166016 294.189697266 294.070556641 293.900634766 293.619384766 293.340087891 293.039306641 292.570556641 291.939697266 291.340087891 290.890869141 294.399597168 294.489440918 294.639831543 294.930847168 294.950378418 294.649597168 294.430847168 294.360534668 294.089050293 293.610534668 293.260925293 293.100769043 292.680847168 291.839050293 290.930847168 290.139831543 289.239440918 293.360839844 293.880371094 294.450683594 294.999511719 295.159667969 294.880371094 294.550292969 294.370605469 294.159667969 293.849121094 293.679199219 293.700683594 293.599121094 293.149902344 292.489746094 291.780761719 290.950683594 293.410400391 293.910400391 294.299072266 294.699462891 294.859619141 294.629150391 294.250244141 294.049072266 293.929931641 293.709228516 293.410400391 293.179931641 292.879150391 292.340087891 291.650634766 291.109619141 290.769775391 294.239440918 294.419128418 294.540222168 294.729675293 294.700378418 294.489440918 294.380065918 294.319519043 293.999206543 293.479675293 293.180847168 293.130065918 292.760925293 291.839050293 290.839050293 290.130065918 289.469909668 293.310058594 293.890136719 294.399902344 294.849121094 294.919433594 294.630371094 294.339355469 294.229980469 294.099121094 293.829589844 293.630371094 293.599121094 293.450683594 292.950683594 292.249511719 291.620605469 290.940917969 293.179931641 293.709228516 294.090087891 294.459228516 294.590087891 294.349853516 294.060791016 293.949462891 293.869384766 293.590087891 293.250244141 293.010009766 292.679931641 292.060791016 291.359619141 290.920166016 290.679931641 293.899597168 294.239440918 294.460144043 294.600769043 294.540222168 294.360534668 294.239440918 294.120300293 293.799987793 293.389831543 293.229675293 293.229675293 292.870300293 291.930847168 290.860534668 290.100769043 289.479675293 293.269042969 293.989746094 294.509277344 294.819824219 294.749511719 294.370605469 294.069824219 293.970214844 293.890136719 293.710449219 293.560058594 293.530761719 293.360839844 292.829589844 292.099121094 291.419433594 290.749511719 292.890869141 293.490478516 293.910400391 294.279541016 294.359619141 294.109619141 293.859619141 293.799072266 293.709228516 293.429931641 293.140869141 292.959228516 292.609619141 291.879150391 291.080322266 290.599853516 290.349853516 293.559753418 294.069519043 294.360534668 294.479675293 294.419128418 294.249206543 294.040222168 293.829284668 293.549987793 293.319519043 293.260925293 293.239440918 292.889831543 292.079284668 291.069519043 290.169128418 289.339050293 293.220214844 294.069824219 294.610839844 294.800292969 294.620605469 294.220214844 293.880371094 293.700683594 293.579589844 293.470214844 293.450683594 293.499511719 293.349121094 292.819824219 292.030761719 291.210449219 290.370605469 292.660400391 293.289306641 293.730712891 294.099853516 294.189697266 293.929931641 293.679931641 293.599853516 293.490478516 293.220947266 293.039306641 292.970947266 292.650634766 291.820556641 290.840087891 290.160400391 289.799072266 293.339050293 293.909362793 294.149597168 294.219909668 294.229675293 294.139831543 293.919128418 293.639831543 293.430847168 293.339050293 293.270690918 293.110534668 292.770690918 292.219909668 291.409362793 290.409362793 289.319519043 293.169433594 294.079589844 294.569824219 294.649902344 294.460449219 294.149902344 293.849121094 293.569824219 293.349121094 293.259277344 293.349121094 293.440917969 293.280761719 292.769042969 291.999511719 291.079589844 290.079589844 292.609619141 293.129150391 293.500244141 293.859619141 294.000244141 293.810791016 293.590087891 293.500244141 293.359619141 293.099853516 292.959228516 292.939697266 292.650634766 291.789306641 290.709228516 289.859619141 289.340087891 293.219909668 293.739440918 293.870300293 293.889831543 293.989440918 294.049987793 293.870300293 293.569519043 293.419128418 293.409362793 293.299987793 292.989440918 292.649597168 292.329284668 291.729675293 290.700378418 289.520690918 293.069824219 293.999511719 294.450683594 294.460449219 294.290527344 294.110839844 293.870605469 293.530761719 293.249511719 293.190917969 293.310058594 293.370605469 293.130371094 292.640136719 291.950683594 291.089355469 290.099121094 292.689697266 293.029541016 293.279541016 293.619384766 293.789306641 293.670166016 293.529541016 293.470947266 293.340087891 293.060791016 292.879150391 292.830322266 292.529541016 291.740478516 290.709228516 289.820556641 289.179931641 293.100769043 293.579284668 293.659362793 293.680847168 293.860534668 293.960144043 293.749206543 293.409362793 293.299987793 293.389831543 293.299987793 292.989440918 292.690612793 292.430847168 291.889831543 290.899597168 289.799987793 292.849121094 293.839355469 294.339355469 294.360839844 294.210449219 294.030761719 293.769042969 293.399902344 293.130371094 293.149902344 293.290527344 293.280761719 292.999511719 292.499511719 291.860839844 291.099121094 290.259277344 292.730712891 292.970947266 293.170166016 293.500244141 293.650634766 293.519775391 293.379150391 293.349853516 293.260009766 293.010009766 292.820556641 292.740478516 292.459228516 291.740478516 290.789306641 289.890869141 289.119384766 292.950378418 293.440612793 293.600769043 293.690612793 293.839050293 293.839050293 293.510925293 293.139831543 293.059753418 293.200378418 293.219909668 293.049987793 292.839050293 292.530456543 291.880065918 290.909362793 290.020690918 292.569824219 293.589355469 294.200683594 294.349121094 294.210449219 293.929199219 293.550292969 293.159667969 292.970214844 293.050292969 293.210449219 293.200683594 292.950683594 292.450683594 291.739746094 290.940917969 290.210449219 292.689697266 292.910400391 293.160400391 293.490478516 293.590087891 293.369384766 293.150634766 293.099853516 293.039306641 292.859619141 292.769775391 292.779541016 292.560791016 291.840087891 290.810791016 289.779541016 288.869384766 292.839050293 293.290222168 293.579284668 293.760925293 293.819519043 293.639831543 293.260925293 292.969909668 292.930847168 293.010925293 293.040222168 293.020690918 292.950378418 292.610534668 291.819519043 290.839050293 290.079284668 292.390136719 293.310058594 293.960449219 294.229980469 294.159667969 293.810058594 293.360839844 293.009277344 292.919433594 292.989746094 293.060058594 293.069824219 292.940917969 292.470214844 291.579589844 290.569824219 289.819824219 292.629150391 292.849853516 293.119384766 293.459228516 293.510009766 293.240478516 293.000244141 292.939697266 292.879150391 292.720947266 292.709228516 292.869384766 292.750244141 291.970947266 290.740478516 289.480712891 288.429931641 292.770690918 293.110534668 293.450378418 293.690612793 293.669128418 293.399597168 293.130065918 293.040222168 293.049987793 292.969909668 292.839050293 292.850769043 292.919128418 292.630065918 291.809753418 290.770690918 289.950378418 292.380371094 293.079589844 293.649902344 293.979980469 293.979980469 293.659667969 293.249511719 293.030761719 293.019042969 292.989746094 292.890136719 292.849121094 292.860839844 292.460449219 291.409667969 290.120605469 289.269042969 292.640869141 292.810791016 293.010009766 293.299072266 293.359619141 293.150634766 293.000244141 292.990478516 292.890869141 292.660400391 292.609619141 292.849853516 292.830322266 292.070556641 290.689697266 289.250244141 288.070556641 292.690612793 292.889831543 293.239440918 293.520690918 293.469909668 293.200378418 293.040222168 293.120300293 293.169128418 292.960144043 292.680847168 292.649597168 292.790222168 292.579284668 291.770690918 290.620300293 289.540222168 292.429199219 292.929199219 293.390136719 293.720214844 293.769042969 293.499511719 293.140136719 293.030761719 293.089355469 293.009277344 292.759277344 292.640136719 292.690917969 292.349121094 291.239746094 289.769042969 288.710449219 292.660400391 292.730712891 292.869384766 293.109619141 293.199462891 293.060791016 293.000244141 293.070556641 292.970947266 292.660400391 292.519775391 292.720947266 292.789306641 292.119384766 290.740478516 289.199462891 287.920166016 292.499206543 292.659362793 293.059753418 293.389831543 293.350769043 293.049987793 292.889831543 292.969909668 293.020690918 292.850769043 292.620300293 292.579284668 292.649597168 292.409362793 291.579284668 290.280456543 288.850769043 292.319824219 292.810058594 293.249511719 293.599121094 293.669433594 293.380371094 292.999511719 292.860839844 292.950683594 292.950683594 292.739746094 292.560058594 292.509277344 292.159667969 291.040527344 289.450683594 288.130371094 292.560791016 292.640869141 292.789306641 293.060791016 293.160400391 293.000244141 292.890869141 292.959228516 292.910400391 292.660400391 292.510009766 292.670166016 292.740478516 292.140869141 290.810791016 289.220947266 287.779541016 292.249206543 292.460144043 292.930847168 293.319519043 293.290222168 292.979675293 292.729675293 292.690612793 292.719909668 292.700378418 292.659362793 292.639831543 292.520690918 292.120300293 291.239440918 289.829284668 288.130065918 292.030761719 292.659667969 293.210449219 293.569824219 293.630371094 293.349121094 292.899902344 292.649902344 292.729980469 292.870605469 292.810058594 292.610839844 292.399902344 291.919433594 290.769042969 289.079589844 287.489746094 292.369384766 292.490478516 292.750244141 293.099853516 293.179931641 292.949462891 292.740478516 292.740478516 292.769775391 292.670166016 292.619384766 292.720947266 292.699462891 292.060791016 290.709228516 289.039306641 287.470947266 292.049987793 292.329284668 292.809753418 293.149597168 293.130065918 292.899597168 292.680847168 292.579284668 292.549987793 292.630065918 292.719909668 292.659362793 292.339050293 291.790222168 290.880065918 289.440612793 287.579284668 291.769042969 292.530761719 293.159667969 293.489746094 293.530761719 293.300292969 292.899902344 292.589355469 292.589355469 292.769042969 292.829589844 292.649902344 292.300292969 291.669433594 290.440917969 288.649902344 286.849121094 292.170166016 292.330322266 292.650634766 293.019775391 293.099853516 292.890869141 292.679931641 292.660400391 292.709228516 292.699462891 292.699462891 292.750244141 292.580322266 291.830322266 290.439697266 288.720947266 287.099853516 291.919128418 292.239440918 292.659362793 292.899597168 292.860534668 292.760925293 292.700378418 292.630065918 292.549987793 292.589050293 292.659362793 292.530456543 292.130065918 291.530456543 290.630065918 289.100769043 287.089050293 291.710449219 292.509277344 293.120605469 293.349121094 293.310058594 293.159667969 292.909667969 292.630371094 292.540527344 292.649902344 292.720214844 292.569824219 292.200683594 291.470214844 290.130371094 288.229980469 286.300292969 292.019775391 292.189697266 292.500244141 292.779541016 292.859619141 292.779541016 292.730712891 292.740478516 292.720947266 292.670166016 292.650634766 292.640869141 292.390869141 291.590087891 290.179931641 288.470947266 286.879150391 291.870300293 292.169128418 292.549987793 292.729675293 292.669128418 292.620300293 292.649597168 292.630065918 292.510925293 292.450378418 292.450378418 292.309753418 291.969909668 291.450378418 290.450378418 288.649597168 286.380065918 291.780761719 292.569824219 293.159667969 293.290527344 293.159667969 293.009277344 292.829589844 292.599121094 292.460449219 292.499511719 292.560058594 292.470214844 292.130371094 291.349121094 289.880371094 287.829589844 285.800292969 291.879150391 292.099853516 292.379150391 292.549072266 292.599853516 292.670166016 292.769775391 292.799072266 292.679931641 292.549072266 292.539306641 292.539306641 292.279541016 291.470947266 290.080322266 288.390869141 286.789306641 291.809753418 292.059753418 292.520690918 292.770690918 292.719909668 292.569519043 292.499206543 292.440612793 292.339050293 292.280456543 292.239440918 292.139831543 291.940612793 291.450378418 290.239440918 288.030456543 285.430847168 291.829589844 292.579589844 293.220214844 293.419433594 293.259277344 292.979980469 292.690917969 292.450683594 292.360839844 292.419433594 292.519042969 292.479980469 292.149902344 291.280761719 289.640136719 287.370605469 285.220214844 291.709228516 292.029541016 292.320556641 292.459228516 292.500244141 292.609619141 292.740478516 292.709228516 292.560791016 292.470947266 292.549072266 292.599853516 292.320556641 291.470947266 290.049072266 288.289306641 286.590087891 291.770690918 291.930847168 292.460144043 292.889831543 292.899597168 292.600769043 292.329284668 292.219909668 292.210144043 292.200378418 292.149597168 292.069519043 291.930847168 291.450378418 290.010925293 287.469909668 284.630065918 291.810058594 292.460449219 293.179199219 293.550292969 293.450683594 293.040527344 292.569824219 292.280761719 292.269042969 292.440917969 292.579589844 292.530761719 292.140136719 291.179199219 289.370605469 286.950683594 284.630371094 291.549072266 291.879150391 292.199462891 292.379150391 292.490478516 292.599853516 292.670166016 292.599853516 292.490478516 292.519775391 292.689697266 292.740478516 292.369384766 291.429931641 289.910400391 288.070556641 286.269775391 291.790222168 291.829284668 292.339050293 292.889831543 292.950378418 292.589050293 292.210144043 292.089050293 292.149597168 292.180847168 292.100769043 291.979675293 291.880065918 291.409362793 289.899597168 287.219909668 284.290222168 291.839355469 292.319824219 292.989746094 293.489746094 293.479980469 293.019042969 292.470214844 292.169433594 292.220214844 292.450683594 292.569824219 292.479980469 292.089355469 291.099121094 289.229980469 286.679199219 284.210449219 291.439697266 291.650634766 291.929931641 292.189697266 292.400634766 292.549072266 292.590087891 292.560791016 292.539306641 292.619384766 292.760009766 292.730712891 292.310791016 291.310791016 289.709228516 287.799072266 286.010009766 291.829284668 291.809753418 292.239440918 292.749206543 292.839050293 292.489440918 292.110534668 291.989440918 292.049987793 292.049987793 291.930847168 291.870300293 291.870300293 291.469909668 289.950378418 287.229675293 284.219909668 291.940917969 292.269042969 292.800292969 293.269042969 293.300292969 292.880371094 292.370605469 292.099121094 292.159667969 292.339355469 292.419433594 292.360839844 292.079589844 291.169433594 289.290527344 286.620605469 283.950683594 291.369384766 291.449462891 291.650634766 291.939697266 292.240478516 292.439697266 292.539306641 292.580322266 292.619384766 292.629150391 292.629150391 292.590087891 292.260009766 291.289306641 289.599853516 287.590087891 285.840087891 291.749206543 291.819519043 292.219909668 292.649597168 292.719909668 292.419128418 292.069519043 291.870300293 291.799987793 291.749206543 291.729675293 291.870300293 292.040222168 291.669128418 290.100769043 287.280456543 284.110534668 291.970214844 292.269042969 292.710449219 293.069824219 293.089355469 292.739746094 292.310058594 292.079589844 292.099121094 292.190917969 292.269042969 292.329589844 292.220214844 291.399902344 289.440917969 286.589355469 283.700683594 291.260009766 291.349853516 291.529541016 291.840087891 292.150634766 292.349853516 292.459228516 292.590087891 292.629150391 292.549072266 292.470947266 292.539306641 292.449462891 291.510009766 289.570556641 287.310791016 285.519775391 291.499206543 291.760925293 292.200378418 292.569519043 292.649597168 292.419128418 292.069519043 291.749206543 291.559753418 291.510925293 291.649597168 291.989440918 292.290222168 291.919128418 290.270690918 287.339050293 283.999206543 291.800292969 292.210449219 292.640136719 292.960449219 292.979980469 292.710449219 292.339355469 292.110839844 292.069824219 292.130371094 292.239746094 292.429199219 292.450683594 291.640136719 289.569824219 286.540527344 283.470214844 291.099853516 291.299072266 291.529541016 291.869384766 292.170166016 292.310791016 292.410400391 292.560791016 292.629150391 292.510009766 292.449462891 292.689697266 292.760009766 291.730712891 289.459228516 286.900634766 284.980712891 291.219909668 291.579284668 292.030456543 292.380065918 292.510925293 292.370300293 292.030456543 291.649597168 291.419128418 291.440612793 291.690612793 292.100769043 292.409362793 292.089050293 290.530456543 287.659362793 284.249206543 291.589355469 292.030761719 292.450683594 292.780761719 292.880371094 292.690917969 292.349121094 292.089355469 292.050292969 292.130371094 292.269042969 292.489746094 292.530761719 291.780761719 289.749511719 286.710449219 283.530761719 290.949462891 291.209228516 291.470947266 291.830322266 292.170166016 292.310791016 292.390869141 292.560791016 292.660400391 292.549072266 292.529541016 292.830322266 292.890869141 291.730712891 289.250244141 286.560791016 284.599853516 291.100769043 291.399597168 291.729675293 292.020690918 292.219909668 292.190612793 291.889831543 291.520690918 291.370300293 291.489440918 291.729675293 292.040222168 292.339050293 292.219909668 290.979675293 288.339050293 284.930847168 291.509277344 291.819824219 292.130371094 292.460449219 292.679199219 292.599121094 292.269042969 291.999511719 291.999511719 292.120605469 292.249511719 292.419433594 292.509277344 291.940917969 290.159667969 287.269042969 284.040527344 290.910400391 291.099853516 291.289306641 291.670166016 292.099853516 292.320556641 292.410400391 292.580322266 292.699462891 292.619384766 292.570556641 292.810791016 292.799072266 291.619384766 289.209228516 286.629150391 284.720947266 291.089050293 291.239440918 291.389831543 291.610534668 291.880065918 291.960144043 291.690612793 291.380065918 291.350769043 291.540222168 291.729675293 291.950378418 292.339050293 292.510925293 291.589050293 289.100769043 285.620300293 291.550292969 291.669433594 291.800292969 292.120605469 292.450683594 292.470214844 292.159667969 291.919433594 291.960449219 292.120605469 292.229980469 292.390136719 292.569824219 292.259277344 290.769042969 288.009277344 284.669433594 290.900634766 291.000244141 291.119384766 291.549072266 292.099853516 292.400634766 292.470947266 292.590087891 292.709228516 292.660400391 292.590087891 292.779541016 292.789306641 291.730712891 289.480712891 287.000244141 285.099853516 290.930847168 290.979675293 290.999206543 291.200378418 291.579284668 291.780456543 291.589050293 291.329284668 291.350769043 291.579284668 291.770690918 292.030456543 292.579284668 292.950378418 292.130065918 289.630065918 286.130065918 291.479980469 291.479980469 291.519042969 291.860839844 292.269042969 292.360839844 292.130371094 291.940917969 292.009277344 292.169433594 292.269042969 292.479980469 292.810058594 292.690917969 291.310058594 288.540527344 285.179199219 290.779541016 290.890869141 291.060791016 291.590087891 292.220947266 292.519775391 292.529541016 292.599853516 292.720947266 292.699462891 292.679931641 292.929931641 293.049072266 292.099853516 289.859619141 287.250244141 285.310791016 290.479675293 290.510925293 290.450378418 290.669128418 291.200378418 291.620300293 291.610534668 291.419128418 291.430847168 291.620300293 291.809753418 292.190612793 292.880065918 293.309753418 292.510925293 290.169128418 287.069519043 291.099121094 291.120605469 291.200683594 291.569824219 292.030761719 292.229980469 292.140136719 292.060058594 292.120605469 292.210449219 292.310058594 292.620605469 293.069824219 293.009277344 291.710449219 289.120605469 286.079589844 290.510009766 290.679931641 291.000244141 291.660400391 292.320556641 292.590087891 292.570556641 292.650634766 292.779541016 292.769775391 292.799072266 293.150634766 293.359619141 292.459228516 290.160400391 287.480712891 285.709228516 289.940612793 289.919128418 289.799987793 290.020690918 290.700378418 291.389831543 291.659362793 291.610534668 291.589050293 291.649597168 291.809753418 292.249206543 292.979675293 293.430847168 292.860534668 291.229675293 289.180847168 290.550292969 290.610839844 290.759277344 291.179199219 291.690917969 292.030761719 292.140136719 292.169433594 292.190917969 292.190917969 292.300292969 292.700683594 293.229980469 293.280761719 292.290527344 290.390136719 288.269042969 290.199462891 290.400634766 290.849853516 291.609619141 292.269775391 292.529541016 292.609619141 292.769775391 292.910400391 292.849853516 292.859619141 293.250244141 293.529541016 292.750244141 290.740478516 288.519775391 287.400634766 289.479675293 289.409362793 289.229675293 289.460144043 290.260925293 291.190612793 291.710144043 291.809753418 291.770690918 291.739440918 291.850769043 292.260925293 292.960144043 293.469909668 293.389831543 292.860534668 292.159362793 290.009277344 290.060058594 290.280761719 290.769042969 291.380371094 291.880371094 292.149902344 292.239746094 292.210449219 292.149902344 292.310058594 292.810058594 293.419433594 293.669433594 293.329589844 292.589355469 291.729980469 289.949462891 290.129150391 290.679931641 291.529541016 292.209228516 292.510009766 292.699462891 292.970947266 293.080322266 292.920166016 292.900634766 293.330322266 293.709228516 293.240478516 291.980712891 290.879150391 290.830322266 289.059753418 288.960144043 288.809753418 289.139831543 290.079284668 291.139831543 291.780456543 291.950378418 291.940612793 291.909362793 292.040222168 292.450378418 293.079284668 293.639831543 293.989440918 294.280456543 294.479675293 289.530761719 289.530761719 289.800292969 290.440917969 291.239746094 291.890136719 292.229980469 292.280761719 292.220214844 292.220214844 292.489746094 293.060058594 293.690917969 294.169433594 294.499511719 294.839355469 294.999511719 289.679931641 289.869384766 290.560791016 291.549072266 292.299072266 292.609619141 292.830322266 293.099853516 293.150634766 292.970947266 293.039306641 293.599853516 294.080322266 294.000244141 293.660400391 293.820556641 294.709228516 288.530456543 288.419128418 288.370300293 288.930847168 290.079284668 291.219909668 291.860534668 292.059753418 292.089050293 292.139831543 292.319519043 292.739440918 293.339050293 293.889831543 294.299987793 294.690612793 294.889831543 289.069824219 288.979980469 289.280761719 290.120605469 291.190917969 292.009277344 292.310058594 292.280761719 292.239746094 292.390136719 292.769042969 293.310058594 293.899902344 294.489746094 295.169433594 295.940917969 296.419433594 289.289306641 289.519775391 290.379150391 291.580322266 292.449462891 292.779541016 292.939697266 293.119384766 293.150634766 293.039306641 293.289306641 293.970947266 294.539306641 294.670166016 294.900634766 295.820556641 297.010009766 287.989440918 287.790222168 287.839050293 288.639831543 289.999206543 291.239440918 291.950378418 292.200378418 292.270690918 292.309753418 292.450378418 292.870300293 293.510925293 294.049987793 294.249206543 294.169128418 293.749206543 288.649902344 288.429199219 288.720214844 289.729980469 291.079589844 292.060058594 292.360839844 292.290527344 292.329589844 292.589355469 292.950683594 293.380371094 293.909667969 294.550292969 295.200683594 295.720214844 295.829589844 288.869384766 289.099853516 290.070556641 291.480712891 292.519775391 292.879150391 293.010009766 293.160400391 293.189697266 293.129150391 293.429931641 294.150634766 294.750244141 294.959228516 295.349853516 296.289306641 297.109619141 287.620300293 287.329284668 287.419128418 288.370300293 289.860534668 291.219909668 292.059753418 292.460144043 292.549987793 292.440612793 292.399597168 292.799987793 293.549987793 294.139831543 294.149597168 293.569519043 292.549987793 288.319824219 288.019042969 288.290527344 289.399902344 290.940917969 292.079589844 292.450683594 292.450683594 292.579589844 292.829589844 293.019042969 293.280761719 293.849121094 294.610839844 295.130371094 295.130371094 294.599121094 288.510009766 288.740478516 289.769775391 291.330322266 292.510009766 292.949462891 293.140869141 293.359619141 293.439697266 293.330322266 293.459228516 294.090087891 294.760009766 295.140869141 295.510009766 296.080322266 296.209228516 287.380065918 287.110534668 287.299987793 288.319519043 289.870300293 291.299987793 292.270690918 292.799987793 292.880065918 292.600769043 292.419128418 292.819519043 293.690612793 294.329284668 294.229675293 293.430847168 292.229675293 288.040527344 287.780761719 288.120605469 289.339355469 290.999511719 292.229980469 292.679199219 292.749511719 292.909667969 293.079589844 293.120605469 293.310058594 293.989746094 294.899902344 295.319824219 294.899902344 293.929199219 288.179931641 288.519775391 289.660400391 291.330322266 292.619384766 293.119384766 293.349853516 293.660400391 293.810791016 293.590087891 293.500244141 294.010009766 294.879150391 295.570556641 295.990478516 296.150634766 295.679931641 286.989440918 286.930847168 287.350769043 288.549987793 290.159362793 291.559753418 292.510925293 293.030456543 293.069519043 292.749206543 292.600769043 293.079284668 293.960144043 294.489440918 294.219909668 293.389831543 292.360534668 287.579589844 287.519042969 288.079589844 289.530761719 291.329589844 292.569824219 292.940917969 292.960449219 293.089355469 293.220214844 293.239746094 293.499511719 294.259277344 295.130371094 295.370605469 294.720214844 293.640136719 287.699462891 288.310791016 289.660400391 291.500244141 292.879150391 293.379150391 293.519775391 293.830322266 294.029541016 293.799072266 293.619384766 294.109619141 295.129150391 296.029541016 296.420166016 296.260009766 295.429931641 286.430847168 286.579284668 287.370300293 288.940612793 290.700378418 292.020690918 292.760925293 293.069519043 293.020690918 292.760925293 292.729675293 293.249206543 293.979675293 294.180847168 293.680847168 292.870300293 292.069519043 287.019042969 287.110839844 287.999511719 289.829589844 291.839355469 293.009277344 293.190917969 293.040527344 293.050292969 293.179199219 293.300292969 293.610839844 294.220214844 294.739746094 294.610839844 293.890136719 292.999511719 287.129150391 287.980712891 289.570556641 291.660400391 293.220947266 293.709228516 293.679931641 293.830322266 294.019775391 293.900634766 293.779541016 294.250244141 295.179931641 295.859619141 295.939697266 295.500244141 294.549072266 286.010925293 286.290222168 287.489440918 289.530456543 291.540222168 292.739440918 293.149597168 293.180847168 293.020690918 292.770690918 292.729675293 293.089050293 293.469909668 293.339050293 292.680847168 291.950378418 291.329284668 286.579589844 286.710449219 287.940917969 290.229980469 292.499511719 293.630371094 293.620605469 293.290527344 293.169433594 293.220214844 293.319824219 293.509277344 293.720214844 293.649902344 293.159667969 292.519042969 291.979980469 286.769775391 287.670166016 289.410400391 291.789306641 293.650634766 294.209228516 294.039306641 294.000244141 294.109619141 294.039306641 293.949462891 294.260009766 294.760009766 294.879150391 294.490478516 293.840087891 292.990478516 285.930847168 286.430847168 288.110534668 290.600769043 292.739440918 293.729675293 293.790222168 293.579284668 293.370300293 293.130065918 292.909362793 292.880065918 292.829284668 292.460144043 291.850769043 291.309753418 290.780456543 286.360839844 286.640136719 288.300292969 290.999511719 293.409667969 294.440917969 294.319824219 293.950683594 293.769042969 293.669433594 293.550292969 293.409667969 293.120605469 292.540527344 291.880371094 291.470214844 291.280761719 286.699462891 287.570556641 289.480712891 292.170166016 294.269775391 294.900634766 294.660400391 294.500244141 294.519775391 294.390869141 294.179931641 294.199462891 294.209228516 293.769775391 293.029541016 292.379150391 291.709228516 286.049987793 287.139831543 289.419128418 292.169128418 294.120300293 294.669128418 294.339050293 293.989440918 293.880065918 293.749206543 293.479675293 293.110534668 292.680847168 292.139831543 291.639831543 291.290222168 290.760925293 286.220214844 287.089355469 289.349121094 292.280761719 294.440917969 295.130371094 294.870605469 294.579589844 294.479980469 294.349121094 294.079589844 293.659667969 292.989746094 292.099121094 291.419433594 291.269042969 291.269042969 286.679931641 287.830322266 290.099853516 292.990478516 295.000244141 295.449462891 295.109619141 294.949462891 294.970947266 294.779541016 294.490478516 294.340087891 294.049072266 293.320556641 292.470947266 291.929931641 291.470947266 286.389831543 288.409362793 291.210144043 293.809753418 295.139831543 295.030456543 294.280456543 293.829284668 293.909362793 294.139831543 294.139831543 293.790222168 293.130065918 292.380065918 291.819519043 291.499206543 290.940612793 286.290527344 288.179199219 291.060058594 293.780761719 295.190917969 295.169433594 294.640136719 294.399902344 294.519042969 294.659667969 294.640136719 294.319824219 293.489746094 292.329589844 291.550292969 291.440917969 291.450683594 286.750244141 288.539306641 291.330322266 294.129150391 295.560791016 295.410400391 294.830322266 294.720947266 294.900634766 294.859619141 294.760009766 294.760009766 294.470947266 293.580322266 292.650634766 292.150634766 291.740478516 287.589050293 290.329284668 293.169128418 295.049987793 295.419128418 294.630065918 293.569519043 293.040222168 293.249206543 293.880065918 294.430847168 294.419128418 293.700378418 292.630065918 291.829284668 291.419128418 290.850769043 287.310058594 290.069824219 293.060058594 294.999511719 295.310058594 294.499511719 293.640136719 293.360839844 293.659667969 294.280761719 294.940917969 295.079589844 294.220214844 292.729980469 291.610839844 291.319824219 291.200683594 287.629150391 290.060791016 293.039306641 295.250244141 295.660400391 294.750244141 293.920166016 293.879150391 294.220947266 294.490478516 294.879150391 295.320556641 295.150634766 294.060791016 292.820556641 292.160400391 291.679931641 290.280456543 292.940612793 295.010925293 295.680847168 295.089050293 293.919128418 292.870300293 292.290222168 292.440612793 293.280456543 294.280456543 294.649597168 293.940612793 292.589050293 291.499206543 291.040222168 290.579284668 289.899902344 292.700683594 294.950683594 295.630371094 294.899902344 293.679199219 292.739746094 292.339355469 292.599121094 293.579589844 294.890136719 295.499511719 294.630371094 292.780761719 291.290527344 290.800292969 290.610839844 290.070556641 292.549072266 294.970947266 296.019775391 295.369384766 293.990478516 293.170166016 293.129150391 293.420166016 293.890869141 294.820556641 295.789306641 295.709228516 294.299072266 292.629150391 291.699462891 291.170166016 293.860534668 295.559753418 296.329284668 295.790222168 294.589050293 293.530456543 292.780456543 292.249206543 292.210144043 292.940612793 294.069519043 294.579284668 293.850769043 292.339050293 291.110534668 290.659362793 290.350769043 293.569824219 295.440917969 296.249511719 295.610839844 294.339355469 293.319824219 292.649902344 292.179199219 292.200683594 293.159667969 294.659667969 295.380371094 294.399902344 292.370605469 290.780761719 290.290527344 290.169433594 293.679931641 295.449462891 296.549072266 296.209228516 294.840087891 293.590087891 293.099853516 293.029541016 293.000244141 293.429931641 294.720947266 296.049072266 295.980712891 294.269775391 292.299072266 291.250244141 290.779541016 296.639831543 297.100769043 296.780456543 295.579284668 294.299987793 293.610534668 293.219909668 292.760925293 292.540222168 293.049987793 294.020690918 294.440612793 293.649597168 292.130065918 290.889831543 290.430847168 290.169128418 296.729980469 297.290527344 296.700683594 295.200683594 293.929199219 293.440917969 293.210449219 292.749511719 292.509277344 293.179199219 294.360839844 294.769042969 293.640136719 291.720214844 290.349121094 290.019042969 289.999511719 296.820556641 297.529541016 297.179931641 295.750244141 294.230712891 293.570556641 293.570556641 293.410400391 293.029541016 293.330322266 294.720947266 296.070556641 295.840087891 294.000244141 292.049072266 291.109619141 290.750244141 297.520690918 297.169128418 296.479675293 295.339050293 294.350769043 293.889831543 293.620300293 293.180847168 292.909362793 293.270690918 293.969909668 294.130065918 293.309753418 291.930847168 290.809753418 290.249206543 289.839050293 298.040527344 297.720214844 296.450683594 294.769042969 293.780761719 293.659667969 293.630371094 293.229980469 292.970214844 293.399902344 294.069824219 293.950683594 292.720214844 291.140136719 290.149902344 289.880371094 289.769042969 298.109619141 297.970947266 296.750244141 294.929931641 293.720947266 293.650634766 293.959228516 293.740478516 293.230712891 293.539306641 294.830322266 295.830322266 295.260009766 293.439697266 291.769775391 291.060791016 290.760009766 297.239440918 296.680847168 296.159362793 295.360534668 294.559753418 294.040222168 293.620300293 293.159362793 292.999206543 293.339050293 293.749206543 293.579284668 292.739440918 291.639831543 290.719909668 290.069519043 289.440612793 297.710449219 297.169433594 295.979980469 294.649902344 293.890136719 293.739746094 293.569824219 293.229980469 293.159667969 293.550292969 293.759277344 293.169433594 291.979980469 290.849121094 290.149902344 289.739746094 289.329589844 297.769775391 297.230712891 295.869384766 294.320556641 293.539306641 293.720947266 293.990478516 293.720947266 293.400634766 293.859619141 294.879150391 295.250244141 294.269775391 292.609619141 291.390869141 290.879150391 290.500244141 297.370300293 296.839050293 296.389831543 295.610534668 294.690612793 293.940612793 293.350769043 292.950378418 292.989440918 293.339050293 293.450378418 292.960144043 292.100769043 291.299987793 290.659362793 290.010925293 289.219909668 296.940917969 296.489746094 295.679199219 294.759277344 294.120605469 293.720214844 293.290527344 292.979980469 293.159667969 293.530761719 293.390136719 292.509277344 291.470214844 290.800292969 290.280761719 289.620605469 288.880371094 297.119384766 296.400634766 295.289306641 294.220947266 293.750244141 293.799072266 293.769775391 293.470947266 293.420166016 294.000244141 294.599853516 294.310791016 293.070556641 291.769775391 291.049072266 290.689697266 290.140869141 298.299987793 297.690612793 296.860534668 295.659362793 294.469909668 293.639831543 293.130065918 292.919128418 293.079284668 293.370300293 293.260925293 292.559753418 291.739440918 291.159362793 290.669128418 290.010925293 289.200378418 296.530761719 296.110839844 295.460449219 294.739746094 294.169433594 293.669433594 293.140136719 292.870605469 293.079589844 293.329589844 292.940917969 291.979980469 291.190917969 290.839355469 290.419433594 289.579589844 288.669433594 296.970947266 296.049072266 295.109619141 294.400634766 294.039306641 293.849853516 293.549072266 293.220947266 293.310791016 293.769775391 293.910400391 293.199462891 292.039306641 291.230712891 290.929931641 290.599853516 289.910400391 298.850769043 298.079284668 296.799987793 295.229675293 293.989440918 293.380065918 293.130065918 293.020690918 293.130065918 293.299987793 293.130065918 292.510925293 291.829284668 291.299987793 290.729675293 289.919128418 289.069519043 296.329589844 295.800292969 295.069824219 294.390136719 293.950683594 293.599121094 293.169433594 292.899902344 292.960449219 292.999511719 292.530761719 291.720214844 291.169433594 290.960449219 290.470214844 289.489746094 288.550292969 296.970947266 295.849853516 294.949462891 294.390869141 294.070556641 293.789306641 293.400634766 293.099853516 293.129150391 293.310791016 293.109619141 292.349853516 291.510009766 291.090087891 290.890869141 290.429931641 289.660400391 297.839050293 297.200378418 295.930847168 294.489440918 293.589050293 293.350769043 293.309753418 293.130065918 293.010925293 293.040222168 292.989440918 292.659362793 292.219909668 291.680847168 290.839050293 289.749206543 288.799987793 295.829589844 295.319824219 294.599121094 293.979980469 293.690917969 293.540527344 293.249511719 292.919433594 292.780761719 292.710449219 292.380371094 291.849121094 291.489746094 291.190917969 290.460449219 289.300292969 288.339355469 296.449462891 295.400634766 294.590087891 294.140869141 293.910400391 293.670166016 293.349853516 293.070556641 292.970947266 292.900634766 292.590087891 292.029541016 291.529541016 291.199462891 290.750244141 289.959228516 289.150634766 295.690612793 295.520690918 294.819519043 293.960144043 293.510925293 293.510925293 293.469909668 293.139831543 292.829284668 292.799987793 292.889831543 292.850769043 292.620300293 292.079284668 291.040222168 289.700378418 288.630065918 295.019042969 294.829589844 294.380371094 293.909667969 293.669433594 293.540527344 293.280761719 292.890136719 292.669433594 292.620605469 292.499511719 292.269042969 291.979980469 291.489746094 290.479980469 289.130371094 288.079589844 295.480712891 294.830322266 294.299072266 294.000244141 293.830322266 293.629150391 293.340087891 293.049072266 292.849853516 292.689697266 292.459228516 292.150634766 291.810791016 291.299072266 290.439697266 289.340087891 288.519775391 293.899597168 294.239440918 294.210144043 293.909362793 293.669128418 293.610534668 293.440612793 293.059753418 292.799987793 292.829284668 292.989440918 293.020690918 292.850769043 292.350769043 291.319519043 289.930847168 288.780456543 294.300292969 294.489746094 294.429199219 294.149902344 293.839355469 293.560058594 293.220214844 292.839355469 292.659667969 292.700683594 292.729980469 292.599121094 292.300292969 291.690917969 290.569824219 289.149902344 288.030761719 294.609619141 294.439697266 294.269775391 294.150634766 293.959228516 293.660400391 293.279541016 292.929931641 292.699462891 292.609619141 292.529541016 292.320556641 291.929931641 291.199462891 290.099853516 288.890869141 288.090087891 293.339050293 293.909362793 294.260925293 294.180847168 293.889831543 293.589050293 293.280456543 292.979675293 292.889831543 293.069519043 293.219909668 293.159362793 292.930847168 292.469909668 291.569519043 290.290222168 289.120300293 293.919433594 294.269042969 294.470214844 294.329589844 293.940917969 293.519042969 293.110839844 292.800292969 292.700683594 292.800292969 292.839355469 292.669433594 292.319824219 291.700683594 290.659667969 289.329589844 288.200683594 294.019775391 294.179931641 294.289306641 294.289306641 294.080322266 293.670166016 293.179931641 292.769775391 292.590087891 292.599853516 292.590087891 292.340087891 291.760009766 290.890869141 289.789306641 288.689697266 287.920166016 293.559753418 294.059753418 294.469909668 294.460144043 294.139831543 293.719909668 293.299987793 292.979675293 292.960144043 293.180847168 293.350769043 293.260925293 292.999206543 292.579284668 291.780456543 290.569519043 289.339050293 293.649902344 293.950683594 294.249511719 294.229980469 293.919433594 293.519042969 293.130371094 292.819824219 292.729980469 292.829589844 292.870605469 292.659667969 292.249511719 291.630371094 290.679199219 289.460449219 288.349121094 293.420166016 293.709228516 293.980712891 294.080322266 293.939697266 293.609619141 293.160400391 292.750244141 292.580322266 292.670166016 292.689697266 292.310791016 291.519775391 290.529541016 289.490478516 288.519775391 287.760009766 293.649597168 294.020690918 294.389831543 294.510925293 294.399597168 294.130065918 293.649597168 293.130065918 292.899597168 293.040222168 293.270690918 293.309753418 293.169128418 292.799987793 292.030456543 290.790222168 289.460144043 293.300292969 293.509277344 293.839355469 293.979980469 293.940917969 293.759277344 293.399902344 292.950683594 292.720214844 292.800292969 292.899902344 292.739746094 292.300292969 291.620605469 290.630371094 289.419433594 288.319824219 292.650634766 292.990478516 293.340087891 293.549072266 293.609619141 293.539306641 293.279541016 292.900634766 292.679931641 292.740478516 292.779541016 292.359619141 291.429931641 290.279541016 289.199462891 288.230712891 287.410400391 293.280456543 293.569519043 293.919128418 294.200378418 294.430847168 294.430847168 293.979675293 293.260925293 292.790222168 292.819519043 293.120300293 293.350769043 293.370300293 293.079284668 292.309753418 291.059753418 289.680847168 292.890136719 293.089355469 293.419433594 293.729980469 293.999511719 294.089355469 293.729980469 293.089355469 292.690917969 292.759277344 292.940917969 292.849121094 292.370605469 291.569824219 290.479980469 289.249511719 288.179199219 291.959228516 292.349853516 292.720947266 293.010009766 293.269775391 293.480712891 293.410400391 293.019775391 292.679931641 292.670166016 292.769775391 292.429931641 291.439697266 290.140869141 288.910400391 287.890869141 287.039306641 292.739440918 292.999206543 293.249206543 293.559753418 293.969909668 294.159362793 293.850769043 293.210144043 292.760925293 292.809753418 293.130065918 293.419128418 293.479675293 293.219909668 292.469909668 291.299987793 289.960144043 292.509277344 292.749511719 293.050292969 293.419433594 293.870605469 294.130371094 293.790527344 293.079589844 292.659667969 292.749511719 292.970214844 292.839355469 292.269042969 291.390136719 290.249511719 289.069824219 288.130371094 291.599853516 292.000244141 292.379150391 292.699462891 293.049072266 293.379150391 293.379150391 292.980712891 292.560791016 292.539306641 292.699462891 292.439697266 291.429931641 289.970947266 288.599853516 287.570556641 286.810791016 292.309753418 292.559753418 292.680847168 292.889831543 293.249206543 293.479675293 293.360534668 293.020690918 292.870300293 293.030456543 293.339050293 293.569519043 293.589050293 293.219909668 292.409362793 291.290222168 290.069519043 292.190917969 292.440917969 292.669433594 292.989746094 293.479980469 293.759277344 293.479980469 292.919433594 292.690917969 292.909667969 293.079589844 292.839355469 292.179199219 291.220214844 290.060058594 288.970214844 288.190917969 291.439697266 291.789306641 292.170166016 292.549072266 292.939697266 293.240478516 293.220947266 292.859619141 292.539306641 292.580322266 292.760009766 292.480712891 291.369384766 289.740478516 288.230712891 287.260009766 286.670166016 291.989440918 292.249206543 292.370300293 292.520690918 292.790222168 292.989440918 292.989440918 292.960144043 293.049987793 293.280456543 293.569519043 293.809753418 293.819519043 293.290222168 292.249206543 291.020690918 289.870300293 291.890136719 292.140136719 292.349121094 292.649902344 293.110839844 293.360839844 293.130371094 292.790527344 292.849121094 293.210449219 293.370605469 293.060058594 292.380371094 291.360839844 290.099121094 288.979980469 288.290527344 291.230712891 291.510009766 291.949462891 292.449462891 292.879150391 293.109619141 293.049072266 292.840087891 292.720947266 292.840087891 292.949462891 292.549072266 291.320556641 289.529541016 287.879150391 286.910400391 286.449462891 291.680847168 292.030456543 292.229675293 292.460144043 292.770690918 292.989440918 293.059753418 293.120300293 293.239440918 293.389831543 293.680847168 294.100769043 294.249206543 293.589050293 292.210144043 290.719909668 289.530456543 291.659667969 291.970214844 292.200683594 292.540527344 293.030761719 293.269042969 293.079589844 292.890136719 293.099121094 293.519042969 293.669433594 293.460449219 292.940917969 291.950683594 290.519042969 289.200683594 288.440917969 290.959228516 291.209228516 291.709228516 292.349853516 292.840087891 293.019775391 292.959228516 292.879150391 292.939697266 293.070556641 293.049072266 292.560791016 291.330322266 289.510009766 287.720947266 286.629150391 286.160400391 291.479675293 291.850769043 292.069519043 292.380065918 292.839050293 293.180847168 293.319519043 293.380065918 293.389831543 293.399597168 293.700378418 294.350769043 294.729675293 294.040222168 292.380065918 290.630065918 289.309753418 291.599121094 291.929199219 292.149902344 292.560058594 293.149902344 293.470214844 293.310058594 293.140136719 293.329589844 293.669433594 293.829589844 293.839355469 293.669433594 292.839355469 291.269042969 289.700683594 288.759277344 290.859619141 291.049072266 291.529541016 292.220947266 292.799072266 293.000244141 292.929931641 292.920166016 293.039306641 293.099853516 292.959228516 292.500244141 291.470947266 289.779541016 287.869384766 286.510009766 285.849853516 291.430847168 291.659362793 291.749206543 292.089050293 292.680847168 293.190612793 293.450378418 293.549987793 293.549987793 293.510925293 293.819519043 294.589050293 295.130065918 294.510925293 292.770690918 290.860534668 289.339050293 291.630371094 291.870605469 292.009277344 292.489746094 293.229980469 293.679199219 293.579589844 293.409667969 293.530761719 293.769042969 293.960449219 294.239746094 294.429199219 293.890136719 292.329589844 290.560058594 289.339355469 290.879150391 290.990478516 291.369384766 292.090087891 292.789306641 293.070556641 293.010009766 292.990478516 293.119384766 293.160400391 293.000244141 292.650634766 291.879150391 290.369384766 288.359619141 286.619384766 285.619384766 291.350769043 291.370300293 291.309753418 291.669128418 292.399597168 293.049987793 293.440612793 293.649597168 293.719909668 293.760925293 294.100769043 294.909362793 295.589050293 295.159362793 293.569519043 291.579284668 289.749206543 291.579589844 291.710449219 291.810058594 292.349121094 293.229980469 293.790527344 293.769042969 293.620605469 293.720214844 293.970214844 294.269042969 294.790527344 295.360839844 295.120605469 293.679199219 291.759277344 290.220214844 290.789306641 290.840087891 291.170166016 291.980712891 292.879150391 293.269775391 293.189697266 293.140869141 293.330322266 293.480712891 293.420166016 293.230712891 292.720947266 291.429931641 289.369384766 287.250244141 285.769775391 291.040222168 290.919128418 290.880065918 291.339050293 292.200378418 292.979675293 293.469909668 293.739440918 293.880065918 293.989440918 294.419128418 295.350769043 296.260925293 296.200378418 294.899597168 292.880065918 290.680847168 291.370605469 291.519042969 291.720214844 292.360839844 293.280761719 293.880371094 293.909667969 293.800292969 293.909667969 294.220214844 294.679199219 295.499511719 296.419433594 296.530761719 295.249511719 293.200683594 291.329589844 290.519775391 290.609619141 291.019775391 292.010009766 293.070556641 293.529541016 293.400634766 293.310791016 293.580322266 293.879150391 294.019775391 294.109619141 294.019775391 293.160400391 291.299072266 288.959228516 286.900634766 290.569519043 290.440612793 290.479675293 291.020690918 291.989440918 292.930847168 293.559753418 293.870300293 293.969909668 294.089050293 294.610534668 295.770690918 297.020690918 297.380065918 296.380065918 294.350769043 291.899597168 291.169433594 291.479980469 291.870605469 292.530761719 293.360839844 293.940917969 294.060058594 293.979980469 294.019042969 294.300292969 294.940917969 296.110839844 297.429199219 297.849121094 296.739746094 294.620605469 292.509277344 290.269775391 290.500244141 291.070556641 292.160400391 293.269775391 293.699462891 293.549072266 293.459228516 293.730712891 294.070556641 294.390869141 294.939697266 295.619384766 295.619384766 294.330322266 292.070556641 289.510009766 290.190612793 290.089050293 290.130065918 290.610534668 291.610534668 292.760925293 293.639831543 294.030456543 294.049987793 294.100769043 294.719909668 296.069519043 297.540222168 298.100769043 297.200378418 295.180847168 292.729675293 291.159667969 291.710449219 292.190917969 292.679199219 293.280761719 293.880371094 294.210449219 294.229980469 294.120605469 294.249511719 294.999511719 296.509277344 298.159667969 298.790527344 297.720214844 295.530761719 293.339355469 290.209228516 290.629150391 291.289306641 292.349853516 293.349853516 293.779541016 293.720947266 293.689697266 293.869384766 294.070556641 294.480712891 295.619384766 297.320556641 298.429931641 297.939697266 295.970947266 293.189697266 289.979675293 289.870300293 289.839050293 290.200378418 291.169128418 292.540222168 293.700378418 294.200378418 294.180847168 294.219909668 294.940612793 296.329284668 297.710144043 298.049987793 296.909362793 294.780456543 292.499206543 291.390136719 292.089355469 292.540527344 292.739746094 293.079589844 293.720214844 294.339355469 294.509277344 294.290527344 294.269042969 295.120605469 296.860839844 298.649902344 299.200683594 297.940917969 295.589355469 293.429199219 290.250244141 290.849853516 291.549072266 292.449462891 293.320556641 293.799072266 293.959228516 294.080322266 294.160400391 294.140869141 294.609619141 296.320556641 298.920166016 300.879150391 300.980712891 299.279541016 296.619384766 289.719909668 289.620300293 289.610534668 289.969909668 291.010925293 292.499206543 293.749206543 294.270690918 294.280456543 294.469909668 295.360534668 296.760925293 297.839050293 297.669128418 295.989440918 293.559753418 291.350769043 291.659667969 292.440917969 292.839355469 292.849121094 292.970214844 293.620605469 294.429199219 294.739746094 294.489746094 294.479980469 295.499511719 297.409667969 299.099121094 299.290527344 297.589355469 294.970214844 292.769042969 290.289306641 291.029541016 291.709228516 292.480712891 293.250244141 293.810791016 294.160400391 294.400634766 294.449462891 294.349853516 294.970947266 297.090087891 300.170166016 302.429931641 302.599853516 300.970947266 298.599853516 289.329284668 289.280456543 289.419128418 289.969909668 291.120300293 292.600769043 293.770690918 294.210144043 294.290222168 294.719909668 295.860534668 297.319519043 298.190612793 297.589050293 295.409362793 292.559753418 290.169128418 291.759277344 292.530761719 292.970214844 293.019042969 293.089355469 293.659667969 294.450683594 294.800292969 294.620605469 294.749511719 295.970214844 298.009277344 299.569824219 299.380371094 297.269042969 294.310058594 291.950683594 290.410400391 291.209228516 291.830322266 292.500244141 293.230712891 293.799072266 294.209228516 294.480712891 294.519775391 294.539306641 295.390869141 297.760009766 300.959228516 303.090087891 302.959228516 301.160400391 299.039306641 288.960144043 289.030456543 289.350769043 290.030456543 291.200378418 292.639831543 293.719909668 294.130065918 294.280456543 294.860534668 296.159362793 297.760925293 298.690612793 298.049987793 295.669128418 292.499206543 289.799987793 291.579589844 292.259277344 292.800292969 293.040527344 293.190917969 293.669433594 294.409667969 294.810058594 294.710449219 294.909667969 296.239746094 298.390136719 299.970214844 299.710449219 297.479980469 294.380371094 291.790527344 290.730712891 291.459228516 291.939697266 292.539306641 293.250244141 293.830322266 294.220947266 294.449462891 294.510009766 294.660400391 295.689697266 298.179931641 301.340087891 303.320556641 302.970947266 300.959228516 298.830322266 288.809753418 289.089050293 289.489440918 290.069519043 291.100769043 292.489440918 293.680847168 294.229675293 294.380065918 294.860534668 296.100769043 297.860534668 299.110534668 298.780456543 296.549987793 293.280456543 290.280456543 291.169433594 291.720214844 292.370605469 292.810058594 293.060058594 293.560058594 294.380371094 294.929199219 294.899902344 294.999511719 296.220214844 298.429199219 300.229980469 300.269042969 298.300292969 295.319824219 292.540527344 291.080322266 291.640869141 291.980712891 292.539306641 293.289306641 293.939697266 294.390869141 294.650634766 294.699462891 294.830322266 295.849853516 298.299072266 301.439697266 303.490478516 303.220947266 301.160400391 298.810791016 290.840240479 293.059967041 293.680084229 292.760162354 291.229888916 289.979888916 289.359771729 289.189849854 289.250396729 289.600006104 290.550201416 292.109771729 293.519927979 293.760162354 292.330474854 289.779693604 286.930084229 289.530334473 290.58013916 290.90045166 290.719787598 290.25982666 289.91998291 289.889709473 290.000061035 289.950256348 290.059631348 291.019592285 292.84967041 294.540100098 294.860412598 293.49029541 291.08013916 288.410217285 286.670776367 288.000854492 289.239135742 290.250854492 290.600463867 290.319213867 290.039916992 290.170776367 290.420776367 290.559448242 291.170776367 292.940307617 295.450073242 297.170776367 297.000854492 295.250854492 293.000854492 292.170318604 294.000396729 294.130279541 292.890045166 291.189849854 289.930084229 289.470123291 289.519927979 289.590240479 289.699615479 290.439849854 292.029693604 293.710357666 294.199615479 292.989654541 290.649810791 287.970123291 290.620178223 291.719787598 291.84967041 291.320373535 290.50982666 289.940490723 289.969787598 290.25982666 290.269592285 290.190490723 290.91998291 292.710021973 294.540100098 295.070373535 293.950256348 291.809631348 289.379943848 287.700073242 289.000854492 290.100463867 290.860229492 290.899291992 290.409057617 290.170776367 290.420776367 290.659057617 290.639526367 291.119995117 292.889526367 295.450073242 297.190307617 297.100463867 295.580932617 293.590698242 293.640045166 294.750396729 294.300201416 292.890045166 291.260162354 290.080474854 289.659576416 289.670318604 289.580474854 289.489654541 290.210357666 292.010162354 293.920318604 294.550201416 293.420318604 291.269927979 288.800201416 291.90045166 292.690490723 292.440490723 291.679748535 290.769592285 290.160217285 290.160217285 290.370178223 290.210021973 290.000061035 290.74029541 292.66998291 294.610412598 295.120178223 293.99029541 291.99029541 289.750061035 289.110229492 290.129760742 290.850463867 291.250854492 291.030151367 290.510620117 290.369995117 290.639526367 290.670776367 290.420776367 290.860229492 292.799682617 295.450073242 297.170776367 297.110229492 295.850463867 294.270385742 295.090240479 295.369537354 294.369537354 292.909576416 291.460357666 290.369537354 289.859771729 289.689849854 289.449615479 289.420318604 290.409576416 292.510162354 294.460357666 294.859771729 293.550201416 291.439849854 289.119537354 293.370178223 293.589904785 292.820373535 291.879943848 291.059631348 290.50982666 290.360412598 290.299865723 289.960021973 289.870178223 290.99029541 293.24029541 295.09967041 295.200256348 293.690490723 291.549865723 289.33013916 290.969604492 291.450073242 291.580932617 291.549682617 291.180541992 290.709838867 290.639526367 290.809448242 290.610229492 290.260620117 290.930541992 293.159057617 295.869995117 297.369995117 297.139526367 295.959838867 294.610229492 296.359771729 295.979888916 294.500396729 292.909576416 291.559967041 290.569732666 290.050201416 289.819732666 289.640045166 289.880279541 291.239654541 293.500396729 295.199615479 295.080474854 293.390045166 291.180084229 288.930084229 294.870178223 294.50982666 293.229553223 292.059631348 291.24029541 290.74029541 290.530334473 290.290100098 289.969787598 290.229553223 291.870178223 294.370178223 295.90045166 295.309631348 293.16998291 290.74029541 288.410217285 292.959838867 292.780151367 292.289916992 291.899291992 291.430541992 291.010620117 290.930541992 290.969604492 290.690307617 290.569213867 291.690307617 294.229370117 296.799682617 297.879760742 297.260620117 295.909057617 294.489135742 297.430084229 296.600006104 294.680084229 292.809967041 291.420318604 290.569732666 290.269927979 290.210357666 290.189849854 290.619537354 292.130279541 294.359771729 295.750396729 295.189849854 293.170318604 290.850006104 288.580474854 296.120178223 295.360412598 293.719787598 292.250061035 291.290100098 290.820373535 290.700256348 290.570373535 290.40045166 290.929748535 292.839904785 295.34967041 296.519592285 295.34967041 292.729553223 290.00982666 287.530334473 294.459838867 293.680541992 292.770385742 292.170776367 291.670776367 291.260620117 291.149291992 291.139526367 291.010620117 291.280151367 292.830932617 295.489135742 297.760620117 298.350463867 297.389526367 295.809448242 294.129760742 298.309967041 297.090240479 294.790435791 292.619537354 291.159576416 290.559967041 290.600006104 290.750396729 290.729888916 291.059967041 292.470123291 294.630279541 295.979888916 295.399810791 293.319732666 290.850006104 288.380279541 296.99029541 295.969787598 294.129943848 292.41998291 291.309631348 290.929748535 291.030334473 291.09967041 291.000061035 291.500061035 293.34967041 295.750061035 296.809631348 295.540100098 292.769592285 289.84967041 287.09967041 295.110229492 293.899291992 292.819213867 292.190307617 291.719604492 291.389526367 291.350463867 291.420776367 291.479370117 292.010620117 293.700073242 296.229370117 298.180541992 298.539916992 297.500854492 295.819213867 293.850463867 298.939849854 297.279693604 294.750396729 292.460357666 291.140045166 290.819732666 291.069732666 291.199615479 291.000396729 291.119537354 292.399810791 294.609771729 296.210357666 295.909576416 293.869537354 291.119537354 288.279693604 297.549865723 296.190490723 294.229553223 292.469787598 291.440490723 291.269592285 291.559631348 291.66998291 291.460021973 291.780334473 293.460021973 295.870178223 297.160217285 296.129943848 293.34967041 290.110412598 286.960021973 295.129760742 293.719604492 292.610229492 291.989135742 291.639526367 291.539916992 291.700073242 291.909057617 292.020385742 292.500854492 294.010620117 296.280151367 298.100463867 298.520385742 297.619995117 295.920776367 293.700073242 299.080474854 297.069732666 294.550201416 292.470123291 291.439849854 291.290435791 291.449615479 291.340240479 291.010162354 291.149810791 292.500396729 294.769927979 296.510162354 296.340240479 294.180084229 291.040435791 287.859771729 297.799865723 296.070373535 294.000061035 292.34967041 291.639709473 291.729553223 292.019592285 291.940490723 291.620178223 291.950256348 293.639709473 296.120178223 297.59967041 296.710021973 293.75982666 290.070373535 286.570373535 294.989135742 293.600463867 292.489135742 291.830932617 291.629760742 291.809448242 292.190307617 292.409057617 292.369995117 292.610229492 293.840698242 295.930541992 297.809448242 298.450073242 297.670776367 295.869995117 293.420776367 298.550201416 296.500396729 294.250396729 292.550201416 291.790435791 291.609771729 291.399810791 291.019927979 290.840240479 291.359771729 292.850006104 294.939849854 296.420318604 296.019927979 293.580474854 290.159576416 286.920318604 297.570373535 295.660217285 293.549865723 292.129943848 291.799865723 292.030334473 292.08013916 291.750061035 291.540100098 292.190490723 293.99029541 296.269592285 297.49029541 296.389709473 293.16998291 289.219787598 285.729553223 294.739135742 293.610229492 292.520385742 291.830932617 291.750854492 292.090698242 292.450073242 292.479370117 292.260620117 292.360229492 293.440307617 295.440307617 297.399291992 298.219604492 297.479370117 295.520385742 292.909057617 297.399810791 295.739654541 293.899810791 292.529693604 291.920318604 291.569732666 291.029693604 290.590240479 290.769927979 291.729888916 293.189849854 294.769927979 295.699615479 294.989654541 292.390045166 288.930084229 285.949615479 296.620178223 294.979553223 293.08013916 291.950256348 291.879943848 292.059631348 291.809631348 291.370178223 291.540100098 292.629943848 294.360412598 296.00982666 296.58013916 295.15045166 291.860412598 288.030334473 284.910217285 293.969604492 293.270385742 292.350463867 291.770385742 291.819213867 292.159057617 292.299682617 292.129760742 291.920776367 292.139526367 293.180541992 294.959838867 296.809448242 297.719604492 297.069213867 295.090698242 292.459838867 295.920318604 294.890045166 293.460357666 292.350006104 291.859771729 291.510162354 291.000396729 290.769927979 291.330474854 292.390045166 293.479888916 294.430084229 294.930084229 294.180084229 291.699615479 288.359771729 285.600006104 294.910217285 293.940490723 292.570373535 291.84967041 291.940490723 292.00982666 291.59967041 291.40045166 292.129943848 293.540100098 294.910217285 295.750061035 295.679748535 294.15045166 291.110412598 287.559631348 284.74029541 292.369995117 292.139526367 291.600463867 291.379760742 291.690307617 292.010620117 292.010620117 291.940307617 292.180541992 292.739135742 293.590698242 294.780151367 296.200073242 297.139526367 296.799682617 295.000854492 292.389526367 294.369537354 293.869537354 292.819732666 291.989654541 291.769927979 291.729888916 291.609771729 291.800201416 292.540435791 293.390045166 293.930084229 294.399810791 294.819732666 294.309967041 292.100006104 288.850006104 286.019927979 292.700256348 292.450256348 291.839904785 291.65045166 291.91998291 291.99029541 291.780334473 292.09967041 293.370178223 294.879943848 295.799865723 296.049865723 295.75982666 294.410217285 291.65045166 288.16998291 285.190490723 290.280151367 290.420776367 290.379760742 290.719604492 291.360229492 291.770385742 291.930541992 292.389526367 293.379760742 294.330932617 294.770385742 295.069213867 295.819213867 296.739135742 296.770385742 295.229370117 292.549682617 292.779693604 292.529693604 291.840240479 291.420318604 291.569732666 291.920318604 292.250396729 292.769927979 293.510162354 294.059967041 294.290435791 294.619537354 295.130279541 294.840240479 292.859771729 289.699615479 286.710357666 290.540100098 290.710021973 290.780334473 291.16998291 291.66998291 291.889709473 292.049865723 292.910217285 294.500061035 295.940490723 296.549865723 296.610412598 296.389709473 295.269592285 292.610412598 288.969787598 285.620178223 288.479370117 288.789916992 289.219604492 290.030151367 290.899291992 291.430541992 291.909057617 293.020385742 294.680541992 295.850463867 295.899291992 295.469604492 295.629760742 296.420776367 296.649291992 295.250854492 292.469604492 291.199615479 290.989654541 290.670318604 290.680084229 291.059967041 291.529693604 291.970123291 292.510162354 293.140045166 293.630279541 293.960357666 294.439849854 294.930084229 294.590240479 292.800201416 290.029693604 287.260162354 289.000061035 289.200256348 289.690490723 290.460021973 291.16998291 291.540100098 291.950256348 292.99029541 294.519592285 295.769592285 296.320373535 296.460021973 296.299865723 295.210021973 292.59967041 289.049865723 285.729553223 287.580932617 287.920776367 288.569213867 289.530151367 290.369995117 290.879760742 291.500854492 292.860229492 294.670776367 295.879760742 295.940307617 295.430541992 295.379760742 295.909057617 296.010620117 294.680541992 292.080932617 289.890045166 289.689849854 289.689849854 289.930084229 290.290435791 290.550201416 290.760162354 291.040435791 291.529693604 292.170318604 292.890045166 293.559967041 293.790435791 293.159576416 291.670318604 289.790435791 287.790435791 288.40045166 288.429748535 288.960021973 289.790100098 290.540100098 290.99029541 291.429748535 292.219787598 293.320373535 294.33013916 294.99029541 295.269592285 294.979553223 293.74029541 291.450256348 288.660217285 286.129943848 287.619995117 287.899291992 288.459838867 289.200073242 289.770385742 290.129760742 290.700073242 291.780151367 293.170776367 294.289916992 294.830932617 294.969604492 295.069213867 295.209838867 294.989135742 293.879760742 291.909057617 289.189849854 289.059967041 289.159576416 289.359771729 289.519927979 289.609771729 289.590240479 289.600006104 289.880279541 290.630279541 291.649810791 292.340240479 292.149810791 291.210357666 290.180084229 289.449615479 288.519927979 288.59967041 288.49029541 288.74029541 289.309631348 289.969787598 290.50982666 290.879943848 291.219787598 291.750061035 292.559631348 293.410217285 293.769592285 293.25982666 291.929748535 290.309631348 288.820373535 287.41998291 288.219604492 288.379760742 288.600463867 288.869995117 289.129760742 289.500854492 290.010620117 290.619995117 291.319213867 292.299682617 293.510620117 294.500854492 294.830932617 294.559448242 294.080932617 293.459838867 292.479370117 289.100006104 289.019927979 288.949615479 288.890045166 288.920318604 289.069732666 289.159576416 289.080474854 289.109771729 289.689849854 290.640045166 291.130279541 290.569732666 289.489654541 288.939849854 289.159576416 289.069732666 289.09967041 288.960021973 288.790100098 288.870178223 289.389709473 290.110412598 290.540100098 290.549865723 290.629943848 291.280334473 292.229553223 292.610412598 291.940490723 290.750061035 289.979553223 289.74029541 289.190490723 288.819213867 288.850463867 288.659057617 288.430541992 288.510620117 289.069213867 289.750854492 290.069213867 290.219604492 290.969604492 292.549682617 294.039916992 294.440307617 293.920776367 293.510620117 293.569213867 293.469604492 289.140045166 289.069732666 288.729888916 288.350006104 288.350006104 288.760162354 289.130279541 289.080474854 288.859771729 289.069732666 289.659576416 289.850006104 289.109771729 288.080474854 287.850006104 288.470123291 288.750396729 289.309631348 289.24029541 288.719787598 288.370178223 288.74029541 289.639709473 290.219787598 290.120178223 289.91998291 290.34967041 291.200256348 291.49029541 290.820373535 289.979553223 289.950256348 290.469787598 290.229553223 288.940307617 288.879760742 288.420776367 287.909057617 287.940307617 288.719604492 289.610229492 289.860229492 289.700073242 290.159057617 291.629760742 293.090698242 293.440307617 293.020385742 293.010620117 293.709838867 294.049682617 288.840240479 288.790435791 288.309967041 287.790435791 287.769927979 288.309967041 288.830474854 288.800201416 288.430084229 288.309967041 288.519927979 288.439849854 287.720123291 286.880279541 286.720123291 287.180084229 287.340240479 288.940490723 289.030334473 288.460021973 287.889709473 288.120178223 289.00982666 289.66998291 289.589904785 289.269592285 289.40045166 289.870178223 289.940490723 289.370178223 288.929748535 289.370178223 290.139709473 289.879943848 288.430541992 288.420776367 288.000854492 287.500854492 287.539916992 288.330932617 289.209838867 289.409057617 289.129760742 289.319213867 290.350463867 291.430541992 291.780151367 291.789916992 292.369995117 293.430541992 293.760620117 288.170318604 288.229888916 287.880279541 287.430084229 287.369537354 287.800201416 288.229888916 288.210357666 287.880279541 287.659576416 287.600006104 287.330474854 286.689849854 286.050201416 285.809967041 285.830474854 285.590240479 288.15045166 288.469787598 288.129943848 287.639709473 287.74029541 288.41998291 288.99029541 289.000061035 288.710021973 288.589904785 288.589904785 288.320373535 287.83013916 287.719787598 288.320373535 289.000061035 288.700256348 287.549682617 287.690307617 287.569213867 287.340698242 287.430541992 288.010620117 288.619995117 288.739135742 288.489135742 288.520385742 289.080932617 289.729370117 290.159057617 290.690307617 291.739135742 292.840698242 292.950073242 287.500396729 287.699615479 287.600006104 287.340240479 287.260162354 287.479888916 287.790435791 287.850006104 287.710357666 287.550201416 287.330474854 286.899810791 286.309967041 285.850006104 285.550201416 285.140045166 284.479888916 287.360412598 287.820373535 287.799865723 287.570373535 287.620178223 288.030334473 288.450256348 288.610412598 288.530334473 288.309631348 287.910217285 287.370178223 286.950256348 287.049865723 287.59967041 288.049865723 287.66998291 286.819213867 287.090698242 287.280151367 287.350463867 287.510620117 287.869995117 288.229370117 288.319213867 288.219604492 288.219604492 288.440307617 288.780151367 289.280151367 290.159057617 291.369995117 292.289916992 292.250854492 287.159576416 287.390045166 287.439849854 287.309967041 287.220123291 287.399810791 287.710357666 287.909576416 287.930084229 287.790435791 287.479888916 286.930084229 286.399810791 286.119537354 285.899810791 285.319732666 284.380279541 286.870178223 287.290100098 287.469787598 287.469787598 287.549865723 287.799865723 288.160217285 288.49029541 288.629943848 288.41998291 287.860412598 287.229553223 286.940490723 287.16998291 287.639709473 287.799865723 287.309631348 286.580932617 286.860229492 287.139526367 287.330932617 287.530151367 287.819213867 288.110229492 288.280151367 288.319213867 288.330932617 288.379760742 288.590698242 289.139526367 290.129760742 291.239135742 291.920776367 291.879760742 287.059967041 287.229888916 287.279693604 287.180084229 287.130279541 287.390045166 287.819732666 288.059967041 288.029693604 287.830474854 287.500396729 287.029693604 286.619537354 286.510162354 286.439849854 285.930084229 284.960357666 286.679748535 286.950256348 287.139709473 287.25982666 287.410217285 287.66998291 288.040100098 288.429748535 288.620178223 288.410217285 287.870178223 287.370178223 287.290100098 287.66998291 288.120178223 288.139709473 287.460021973 286.680541992 286.879760742 287.059448242 287.180541992 287.379760742 287.719604492 288.069213867 288.260620117 288.280151367 288.260620117 288.340698242 288.649291992 289.319213867 290.299682617 291.209838867 291.680541992 291.659057617 286.970123291 287.119537354 287.180084229 287.100006104 287.100006104 287.449615479 287.890045166 288.000396729 287.769927979 287.519927979 287.359771729 287.140045166 286.920318604 286.909576416 286.930084229 286.529693604 285.649810791 286.629943848 286.75982666 286.910217285 287.059631348 287.290100098 287.620178223 288.019592285 288.320373535 288.379943848 288.129943848 287.74029541 287.469787598 287.570373535 288.089904785 288.660217285 288.719787598 287.929748535 286.760620117 286.899291992 286.969604492 287.010620117 287.219604492 287.649291992 288.020385742 288.080932617 287.909057617 287.850463867 288.119995117 288.739135742 289.590698242 290.530151367 291.270385742 291.580932617 291.510620117 286.790435791 287.040435791 287.229888916 287.239654541 287.300201416 287.619537354 287.939849854 287.840240479 287.470123291 287.279693604 287.380279541 287.430084229 287.359771729 287.359771729 287.380279541 287.010162354 286.189849854 286.589904785 286.719787598 286.860412598 287.030334473 287.269592285 287.639709473 288.030334473 288.219787598 288.15045166 287.950256348 287.750061035 287.65045166 287.790100098 288.34967041 289.120178223 289.379943848 288.589904785 286.619995117 286.750854492 286.830932617 286.920776367 287.229370117 287.709838867 288.030151367 287.899291992 287.569213867 287.539916992 288.090698242 288.969604492 289.930541992 290.819213867 291.510620117 291.760620117 291.559448242 286.659576416 287.029693604 287.369537354 287.489654541 287.569732666 287.800201416 287.949615479 287.729888916 287.380279541 287.359771729 287.609771729 287.760162354 287.739654541 287.830474854 287.920318604 287.569732666 286.710357666 286.559631348 286.750061035 286.929748535 287.08013916 287.25982666 287.589904785 287.969787598 288.15045166 288.110412598 288.070373535 288.049865723 287.960021973 288.00982666 288.58013916 289.549865723 290.040100098 289.290100098 286.409057617 286.500854492 286.670776367 286.909057617 287.309448242 287.799682617 288.059448242 287.879760742 287.569213867 287.680541992 288.369995117 289.289916992 290.190307617 291.100463867 291.920776367 292.270385742 291.969604492 286.720123291 287.080474854 287.399810791 287.559967041 287.659576416 287.809967041 287.850006104 287.649810791 287.460357666 287.540435791 287.729888916 287.779693604 287.840240479 288.229888916 288.649810791 288.420318604 287.479888916 286.570373535 286.799865723 287.019592285 287.110412598 287.200256348 287.41998291 287.780334473 288.040100098 288.139709473 288.24029541 288.280334473 288.160217285 288.179748535 288.889709473 290.089904785 290.66998291 289.83013916 286.299682617 286.340698242 286.539916992 286.869995117 287.309448242 287.750854492 288.000854492 287.930541992 287.799682617 288.020385742 288.639526367 289.399291992 290.219604492 291.340698242 292.530151367 293.119995117 292.770385742 286.909576416 287.130279541 287.319732666 287.449615479 287.580474854 287.720123291 287.729888916 287.580474854 287.510162354 287.600006104 287.619537354 287.550201416 287.809967041 288.670318604 289.540435791 289.540435791 288.559967041 286.59967041 286.820373535 287.030334473 287.09967041 287.120178223 287.280334473 287.610412598 287.91998291 288.089904785 288.210021973 288.229553223 288.15045166 288.41998291 289.49029541 290.91998291 291.410217285 290.33013916 286.340698242 286.309448242 286.479370117 286.840698242 287.229370117 287.600463867 287.850463867 287.940307617 287.959838867 288.180541992 288.639526367 289.239135742 290.190307617 291.739135742 293.440307617 294.260620117 293.860229492 287.069732666 287.180084229 287.229888916 287.359771729 287.559967041 287.710357666 287.689849854 287.559967041 287.550201416 287.600006104 287.500396729 287.439849854 287.960357666 289.180084229 290.330474854 290.489654541 289.640045166 286.58013916 286.780334473 286.99029541 287.08013916 287.089904785 287.24029541 287.58013916 287.879943848 288.030334473 288.059631348 288.059631348 288.200256348 288.91998291 290.450256348 292.00982666 292.299865723 291.000061035 286.379760742 286.340698242 286.489135742 286.850463867 287.219604492 287.549682617 287.809448242 287.950073242 288.010620117 288.159057617 288.510620117 289.159057617 290.399291992 292.420776367 294.510620117 295.479370117 295.030151367 287.189849854 287.279693604 287.279693604 287.399810791 287.640045166 287.790435791 287.710357666 287.580474854 287.580474854 287.630279541 287.550201416 287.569732666 288.220123291 289.430084229 290.479888916 290.689849854 290.189849854 286.49029541 286.700256348 286.90045166 287.019592285 287.089904785 287.269592285 287.610412598 287.91998291 288.030334473 288.019592285 288.040100098 288.429748535 289.530334473 291.309631348 292.839904785 293.00982666 291.780334473 286.369995117 286.369995117 286.510620117 286.899291992 287.309448242 287.649291992 287.899291992 288.020385742 288.020385742 288.139526367 288.539916992 289.340698242 290.799682617 292.989135742 295.180541992 296.270385742 295.969604492 287.340240479 287.479888916 287.460357666 287.529693604 287.699615479 287.760162354 287.649810791 287.540435791 287.600006104 287.670318604 287.609771729 287.649810791 288.159576416 289.050201416 289.750396729 289.989654541 289.960357666 286.469787598 286.66998291 286.820373535 286.960021973 287.049865723 287.229553223 287.559631348 287.910217285 288.070373535 288.070373535 288.139709473 288.59967041 289.74029541 291.389709473 292.75982666 293.049865723 292.290100098 286.360229492 286.369995117 286.500854492 286.909057617 287.389526367 287.750854492 287.959838867 288.030151367 288.010620117 288.149291992 288.649291992 289.520385742 290.909057617 292.879760742 294.940307617 296.209838867 296.379760742 287.580474854 287.750396729 287.689849854 287.659576416 287.680084229 287.640045166 287.500396729 287.470123291 287.580474854 287.630279541 287.519927979 287.460357666 287.729888916 288.239654541 288.640045166 288.930084229 289.309967041 286.549865723 286.719787598 286.820373535 286.929748535 287.019592285 287.160217285 287.479553223 287.84967041 288.049865723 288.08013916 288.129943848 288.479553223 289.34967041 290.629943848 291.809631348 292.389709473 292.309631348 286.350463867 286.360229492 286.489135742 286.930541992 287.399291992 287.700073242 287.869995117 287.909057617 287.909057617 288.090698242 288.590698242 289.369995117 290.479370117 292.059448242 293.899291992 295.399291992 296.190307617 287.840240479 288.000396729 287.890045166 287.790435791 287.710357666 287.559967041 287.430084229 287.439849854 287.550201416 287.569732666 287.369537354 287.189849854 287.309967041 287.619537354 287.890045166 288.220123291 288.710357666 286.66998291 286.820373535 286.910217285 287.00982666 287.070373535 287.179748535 287.469787598 287.83013916 288.019592285 288.019592285 288.00982666 288.229553223 288.83013916 289.750061035 290.750061035 291.549865723 291.960021973 286.250854492 286.319213867 286.539916992 287.020385742 287.430541992 287.600463867 287.700073242 287.770385742 287.809448242 287.940307617 288.350463867 288.989135742 289.879760742 291.149291992 292.719604492 294.319213867 295.549682617 288.000396729 288.159576416 288.040435791 287.920318604 287.809967041 287.640045166 287.470123291 287.439849854 287.529693604 287.529693604 287.319732666 287.130279541 287.210357666 287.500396729 287.769927979 288.029693604 288.309967041 286.710021973 286.929748535 287.049865723 287.160217285 287.210021973 287.299865723 287.58013916 287.889709473 288.00982666 287.950256348 287.950256348 288.190490723 288.690490723 289.410217285 290.229553223 290.969787598 291.429748535 286.020385742 286.260620117 286.659057617 287.209838867 287.500854492 287.530151367 287.590698242 287.739135742 287.789916992 287.809448242 288.059448242 288.670776367 289.559448242 290.649291992 291.920776367 293.319213867 294.629760742 288.090240479 288.260162354 288.149810791 288.040435791 287.939849854 287.739654541 287.510162354 287.409576416 287.470123291 287.500396729 287.369537354 287.239654541 287.309967041 287.590240479 287.869537354 288.050201416 288.069732666 286.75982666 287.08013916 287.25982666 287.34967041 287.339904785 287.41998291 287.710021973 287.979553223 288.00982666 287.90045166 287.979553223 288.339904785 288.90045166 289.519592285 290.110412598 290.610412598 290.83013916 285.819213867 286.229370117 286.770385742 287.319213867 287.500854492 287.459838867 287.569213867 287.809448242 287.840698242 287.739135742 287.909057617 288.580932617 289.549682617 290.520385742 291.430541992 292.459838867 293.659057617 288.220123291 288.399810791 288.269927979 288.140045166 288.000396729 287.760162354 287.489654541 287.359771729 287.409576416 287.479888916 287.430084229 287.319732666 287.319732666 287.519927979 287.830474854 288.080474854 288.080474854 286.969787598 287.389709473 287.610412598 287.610412598 287.49029541 287.540100098 287.809631348 288.049865723 287.99029541 287.879943848 288.00982666 288.440490723 289.030334473 289.589904785 290.070373535 290.389709473 290.410217285 285.789916992 286.299682617 286.850463867 287.299682617 287.399291992 287.389526367 287.619995117 287.869995117 287.830932617 287.670776367 287.860229492 288.590698242 289.559448242 290.420776367 291.139526367 291.979370117 293.059448242 288.460357666 288.640045166 288.479888916 288.290435791 288.080474854 287.779693604 287.500396729 287.369537354 287.399810791 287.460357666 287.420318604 287.309967041 287.239654541 287.359771729 287.739654541 288.260162354 288.540435791 287.41998291 287.889709473 288.070373535 287.960021973 287.729553223 287.719787598 287.960021973 288.09967041 288.000061035 287.860412598 288.000061035 288.410217285 288.940490723 289.549865723 290.179748535 290.65045166 290.719787598 285.909057617 286.440307617 286.909057617 287.229370117 287.340698242 287.450073242 287.729370117 287.879760742 287.709838867 287.559448242 287.850463867 288.590698242 289.479370117 290.360229492 291.280151367 292.319213867 293.360229492 288.800201416 288.960357666 288.760162354 288.519927979 288.229888916 287.859771729 287.550201416 287.420318604 287.399810791 287.359771729 287.279693604 287.220123291 287.199615479 287.319732666 287.760162354 288.540435791 289.189849854 288.00982666 288.41998291 288.519592285 288.320373535 288.040100098 287.979553223 288.120178223 288.16998291 287.99029541 287.84967041 287.960021973 288.320373535 288.879943848 289.74029541 290.820373535 291.75982666 292.00982666 286.059448242 286.619995117 287.039916992 287.299682617 287.450073242 287.690307617 287.930541992 287.869995117 287.549682617 287.459838867 287.879760742 288.600463867 289.420776367 290.569213867 292.110229492 293.690307617 294.659057617 289.340240479 289.390045166 289.080474854 288.769927979 288.390045166 287.920318604 287.550201416 287.390045166 287.290435791 287.109771729 286.970123291 287.040435791 287.189849854 287.319732666 287.640045166 288.380279541 289.119537354 288.58013916 288.84967041 288.83013916 288.58013916 288.290100098 288.190490723 288.229553223 288.160217285 287.950256348 287.799865723 287.90045166 288.269592285 289.000061035 290.219787598 291.820373535 293.210021973 293.559631348 286.270385742 286.899291992 287.330932617 287.559448242 287.729370117 287.969604492 288.110229492 287.869995117 287.469604492 287.469604492 287.979370117 288.649291992 289.500854492 291.049682617 293.319213867 295.420776367 296.190307617 290.199615479 290.019927979 289.470123291 288.979888916 288.489654541 287.909576416 287.460357666 287.279693604 287.130279541 286.830474854 286.649810791 286.819732666 287.109771729 287.119537354 287.010162354 287.260162354 287.699615479 289.129943848 289.15045166 288.969787598 288.719787598 288.460021973 288.299865723 288.210021973 288.08013916 287.870178223 287.710021973 287.790100098 288.210021973 289.120178223 290.59967041 292.40045166 293.84967041 294.089904785 286.739135742 287.399291992 287.830932617 287.979370117 288.010620117 288.119995117 288.159057617 287.889526367 287.559448242 287.629760742 288.149291992 288.750854492 289.659057617 291.489135742 294.119995117 296.330932617 296.809448242 291.430084229 290.920318604 289.970123291 289.229888916 288.580474854 287.880279541 287.369537354 287.220123291 287.119537354 286.809967041 286.580474854 286.750396729 287.019927979 286.760162354 286.029693604 285.519927979 285.399810791 289.66998291 289.389709473 289.059631348 288.820373535 288.58013916 288.34967041 288.16998291 288.049865723 287.879943848 287.710021973 287.710021973 288.129943848 289.110412598 290.519592285 292.000061035 293.030334473 292.940490723 287.590698242 288.180541992 288.520385742 288.489135742 288.260620117 288.129760742 288.100463867 287.959838867 287.760620117 287.850463867 288.260620117 288.840698242 289.809448242 291.600463867 293.979370117 295.760620117 295.920776367 292.830474854 291.979888916 290.649810791 289.569732666 288.729888916 287.939849854 287.420318604 287.330474854 287.350006104 287.109771729 286.850006104 286.930084229 287.069732666 286.550201416 285.319732666 284.149810791 283.430084229 290.250061035 289.639709473 289.15045166 288.910217285 288.710021973 288.41998291 288.219787598 288.160217285 288.110412598 287.910217285 287.769592285 288.110412598 289.000061035 290.049865723 290.860412598 291.200256348 290.769592285 288.789916992 289.180541992 289.319213867 289.069213867 288.549682617 288.170776367 288.059448242 288.030151367 287.940307617 287.930541992 288.209838867 288.819213867 289.830932617 291.369995117 293.030151367 294.059448242 293.969604492 294.199615479 293.050201416 291.390045166 290.010162354 288.979888916 288.119537354 287.590240479 287.580474854 287.699615479 287.529693604 287.239654541 287.239654541 287.290435791 286.689849854 285.319732666 283.859771729 282.720123291 290.910217285 289.91998291 289.24029541 288.969787598 288.799865723 288.549865723 288.41998291 288.49029541 288.50982666 288.250061035 287.99029541 288.200256348 288.910217285 289.559631348 289.74029541 289.49029541 288.83013916 290.139526367 290.229370117 290.129760742 289.700073242 288.979370117 288.350463867 288.119995117 288.100463867 288.010620117 287.860229492 287.989135742 288.610229492 289.659057617 290.869995117 291.819213867 292.170776367 291.899291992 295.470123291 294.019927979 292.090240479 290.460357666 289.260162354 288.359771729 287.880279541 287.890045166 288.019927979 287.840240479 287.510162354 287.449615479 287.510162354 287.069732666 285.909576416 284.500396729 283.140045166 291.660217285 290.309631348 289.410217285 289.049865723 288.889709473 288.729553223 288.74029541 288.91998291 288.960021973 288.610412598 288.219787598 288.299865723 288.84967041 289.269592285 289.129943848 288.59967041 287.84967041 291.530151367 291.250854492 290.840698242 290.280151367 289.459838867 288.649291992 288.229370117 288.170776367 288.039916992 287.799682617 287.789916992 288.340698242 289.289916992 290.209838867 290.739135742 290.770385742 290.450073242 296.670318604 294.890045166 292.699615479 290.850006104 289.519927979 288.640045166 288.239654541 288.239654541 288.269927979 287.979888916 287.580474854 287.510162354 287.630279541 287.420318604 286.640045166 285.449615479 283.930084229 292.49029541 290.83013916 289.690490723 289.200256348 289.00982666 288.960021973 289.09967041 289.309631348 289.269592285 288.83013916 288.379943848 288.389709473 288.839904785 289.179748535 289.040100098 288.50982666 287.690490723 292.850463867 292.119995117 291.409057617 290.750854492 289.879760742 288.940307617 288.399291992 288.280151367 288.200073242 287.969604492 287.869995117 288.219604492 288.879760742 289.520385742 289.920776367 289.979370117 289.700073242 297.680084229 295.580474854 293.220123291 291.210357666 289.809967041 288.979888916 288.640045166 288.590240479 288.470123291 288.069732666 287.640045166 287.540435791 287.689849854 287.649810791 287.159576416 286.180084229 284.529693604 293.219787598 291.339904785 290.08013916 289.460021973 289.210021973 289.190490723 289.34967041 289.49029541 289.320373535 288.870178223 288.530334473 288.570373535 288.929748535 289.250061035 289.229553223 288.780334473 287.820373535 293.860229492 292.770385742 291.809448242 291.039916992 290.139526367 289.170776367 288.569213867 288.469604492 288.459838867 288.299682617 288.180541992 288.299682617 288.610229492 288.969604492 289.340698242 289.539916992 289.250854492 298.279693604 296.069732666 293.710357666 291.640045166 290.180084229 289.340240479 288.979888916 288.830474854 288.609771729 288.220123291 287.830474854 287.710357666 287.779693604 287.760162354 287.420318604 286.550201416 284.830474854 293.719787598 291.750061035 290.469787598 289.799865723 289.469787598 289.370178223 289.429748535 289.410217285 289.160217285 288.839904785 288.729553223 288.879943848 289.139709473 289.360412598 289.389709473 289.019592285 287.870178223 294.420776367 293.159057617 292.069213867 291.209838867 290.270385742 289.340698242 288.789916992 288.700073242 288.680541992 288.539916992 288.440307617 288.479370117 288.559448242 288.670776367 288.950073242 289.159057617 288.770385742 298.449615479 296.420318604 294.180084229 292.140045166 290.630279541 289.729888916 289.239654541 288.970123291 288.739654541 288.460357666 288.199615479 288.040435791 287.930084229 287.790435791 287.449615479 286.649810791 284.920318604 294.110412598 292.120178223 290.879943848 290.219787598 289.790100098 289.549865723 289.460021973 289.33013916 289.070373535 288.91998291 289.040100098 289.25982666 289.33013916 289.339904785 289.339904785 288.969787598 287.719787598 294.569213867 293.399291992 292.289916992 291.309448242 290.330932617 289.479370117 289.059448242 288.950073242 288.809448242 288.590698242 288.510620117 288.590698242 288.600463867 288.559448242 288.680541992 288.760620117 288.159057617 298.449615479 296.760162354 294.640045166 292.590240479 291.050201416 290.069732666 289.479888916 289.119537354 288.909576416 288.800201416 288.670318604 288.430084229 288.109771729 287.779693604 287.399810791 286.600006104 284.899810791 294.610412598 292.610412598 291.370178223 290.679748535 290.16998291 289.809631348 289.620178223 289.469787598 289.269592285 289.229553223 289.41998291 289.559631348 289.379943848 289.120178223 288.969787598 288.559631348 287.299865723 294.530151367 293.600463867 292.469604492 291.350463867 290.309448242 289.600463867 289.319213867 289.209838867 288.959838867 288.639526367 288.549682617 288.659057617 288.649291992 288.510620117 288.459838867 288.319213867 287.549682617 298.540435791 297.130279541 294.979888916 292.830474854 291.290435791 290.340240479 289.699615479 289.260162354 289.090240479 289.119537354 289.059967041 288.750396729 288.269927979 287.869537354 287.439849854 286.590240479 284.869537354 295.219787598 293.219787598 291.889709473 291.09967041 290.519592285 290.120178223 289.950256348 289.839904785 289.700256348 289.679748535 289.769592285 289.700256348 289.320373535 288.839904785 288.469787598 287.910217285 286.660217285 294.379760742 293.719604492 292.549682617 291.260620117 290.190307617 289.629760742 289.469604492 289.389526367 289.139526367 288.840698242 288.739135742 288.770385742 288.680541992 288.469604492 288.280151367 287.959838867 287.020385742 298.569732666 297.269927979 295.029693604 292.800201416 291.330474854 290.460357666 289.800201416 289.300201416 289.149810791 289.279693604 289.269927979 288.939849854 288.470123291 288.100006104 287.680084229 286.750396729 284.939849854 295.620178223 293.690490723 292.25982666 291.34967041 290.74029541 290.360412598 290.229553223 290.16998291 290.089904785 290.030334473 289.969787598 289.750061035 289.280334473 288.700256348 288.129943848 287.299865723 285.929748535 294.049682617 293.569213867 292.360229492 291.010620117 290.039916992 289.590698242 289.459838867 289.369995117 289.219604492 289.090698242 289.030151367 288.920776367 288.700073242 288.440307617 288.190307617 287.690307617 286.610229492 298.210357666 297.010162354 294.729888916 292.569732666 291.220123291 290.430084229 289.729888916 289.170318604 289.090240479 289.319732666 289.390045166 289.090240479 288.689849854 288.409576416 288.010162354 287.000396729 285.119537354 295.530334473 293.769592285 292.33013916 291.360412598 290.75982666 290.429748535 290.320373535 290.280334473 290.24029541 290.200256348 290.09967041 289.809631348 289.33013916 288.750061035 288.00982666 286.879943848 285.280334473 293.520385742 293.119995117 291.940307617 290.690307617 289.899291992 289.569213867 289.379760742 289.209838867 289.149291992 289.229370117 289.250854492 289.030151367 288.700073242 288.450073242 288.170776367 287.510620117 286.229370117 297.369537354 296.319732666 294.189849854 292.220123291 291.010162354 290.250396729 289.519927979 289.029693604 289.100006104 289.460357666 289.559967041 289.269927979 288.909576416 288.649810791 288.220123291 287.180084229 285.340240479 295.049865723 293.519592285 292.09967041 291.129943848 290.58013916 290.339904785 290.25982666 290.250061035 290.269592285 290.299865723 290.200256348 289.889709473 289.410217285 288.820373535 287.950256348 286.610412598 284.820373535 292.959838867 292.569213867 291.450073242 290.360229492 289.809448242 289.619995117 289.389526367 289.129760742 289.119995117 289.319213867 289.360229492 289.049682617 288.680541992 288.450073242 288.139526367 287.309448242 285.819213867 296.369537354 295.449615479 293.519927979 291.720123291 290.630279541 289.920318604 289.309967041 289.040435791 289.290435791 289.699615479 289.739654541 289.420318604 289.069732666 288.769927979 288.250396729 287.220123291 285.559967041 294.49029541 293.089904785 291.690490723 290.719787598 290.25982666 290.15045166 290.16998291 290.219787598 290.33013916 290.41998291 290.309631348 289.950256348 289.440490723 288.790100098 287.820373535 286.360412598 284.540100098 292.559448242 292.090698242 291.000854492 290.049682617 289.700073242 289.670776367 289.520385742 289.280151367 289.280151367 289.469604492 289.440307617 289.049682617 288.639526367 288.379760742 287.979370117 287.010620117 285.430541992 295.559967041 294.590240479 292.729888916 291.069732666 290.100006104 289.580474854 289.260162354 289.269927979 289.619537354 289.869537354 289.710357666 289.359771729 289.090240479 288.790435791 288.189849854 287.199615479 285.779693604 293.960021973 292.549865723 291.139709473 290.229553223 289.910217285 289.969787598 290.129943848 290.290100098 290.450256348 290.50982666 290.320373535 289.90045166 289.40045166 288.750061035 287.710021973 286.179748535 284.379943848 292.200073242 291.610229492 290.580932617 289.750854492 289.520385742 289.649291992 289.649291992 289.530151367 289.559448242 289.670776367 289.500854492 289.030151367 288.569213867 288.229370117 287.680541992 286.610229492 285.080932617 294.850006104 293.670318604 291.819732666 290.319732666 289.619537354 289.430084229 289.449615479 289.680084229 289.930084229 289.869537354 289.449615479 289.090240479 288.960357666 288.739654541 288.119537354 287.199615479 286.040435791 293.219787598 291.820373535 290.540100098 289.820373535 289.700256348 289.940490723 290.219787598 290.440490723 290.589904785 290.540100098 290.200256348 289.74029541 289.320373535 288.769592285 287.710021973 286.129943848 284.339904785 291.580932617 290.950073242 290.110229492 289.489135742 289.409057617 289.649291992 289.780151367 289.750854492 289.770385742 289.760620117 289.479370117 288.950073242 288.479370117 288.039916992 287.340698242 286.200073242 284.760620117 293.869537354 292.510162354 290.850006104 289.750396729 289.449615479 289.580474854 289.809967041 290.040435791 290.109771729 289.779693604 289.210357666 288.859771729 288.819732666 288.609771729 287.970123291 287.149810791 286.250396729 292.120178223 290.929748535 290.019592285 289.65045166 289.780334473 290.09967041 290.370178223 290.610412598 290.75982666 290.620178223 290.120178223 289.559631348 289.210021973 288.799865723 287.809631348 286.190490723 284.379943848 290.610229492 290.180541992 289.690307617 289.399291992 289.489135742 289.780151367 289.930541992 289.909057617 289.869995117 289.750854492 289.369995117 288.819213867 288.330932617 287.860229492 287.090698242 285.930541992 284.559448242 292.380279541 291.149810791 290.010162354 289.489654541 289.580474854 289.859771729 290.050201416 290.140045166 290.090240479 289.760162354 289.260162354 288.909576416 288.739654541 288.390045166 287.689849854 286.989654541 286.340240479 290.870178223 290.129943848 289.74029541 289.769592285 290.049865723 290.33013916 290.500061035 290.690490723 290.889709473 290.75982666 290.160217285 289.450256348 289.070373535 288.729553223 287.839904785 286.290100098 284.519592285 289.639526367 289.559448242 289.459838867 289.459838867 289.680541992 290.000854492 290.139526367 290.080932617 289.979370117 289.780151367 289.309448242 288.690307617 288.180541992 287.729370117 287.020385742 285.920776367 284.590698242 290.659576416 289.899810791 289.420318604 289.439849854 289.750396729 289.949615479 289.939849854 289.899810791 289.920318604 289.840240479 289.540435791 289.149810791 288.750396729 288.159576416 287.399810791 286.809967041 286.369537354 289.889709473 289.639709473 289.710021973 289.979553223 290.299865723 290.460021973 290.49029541 290.610412598 290.879943848 290.84967041 290.250061035 289.440490723 288.940490723 288.589904785 287.780334473 286.40045166 284.799865723 289.059448242 289.319213867 289.459838867 289.559448242 289.809448242 290.129760742 290.270385742 290.219604492 290.110229492 289.889526367 289.350463867 288.659057617 288.090698242 287.680541992 287.100463867 286.170776367 284.899291992 289.239654541 289.069732666 289.149810791 289.449615479 289.750396729 289.819732666 289.659576416 289.600006104 289.779693604 289.970123291 289.830474854 289.359771729 288.729888916 288.019927979 287.279693604 286.750396729 286.399810791 289.370178223 289.530334473 289.820373535 290.129943848 290.410217285 290.500061035 290.41998291 290.440490723 290.679748535 290.750061035 290.25982666 289.479553223 288.91998291 288.519592285 287.790100098 286.549865723 285.15045166 288.959838867 289.399291992 289.539916992 289.580932617 289.780151367 290.080932617 290.250854492 290.250854492 290.180541992 289.969604492 289.469604492 288.739135742 288.139526367 287.739135742 287.280151367 286.520385742 285.409057617 288.470123291 288.760162354 289.130279541 289.460357666 289.670318604 289.689849854 289.580474854 289.590240479 289.859771729 290.140045166 289.989654541 289.390045166 288.659576416 287.970123291 287.330474854 286.819732666 286.449615479 289.179748535 289.570373535 289.950256348 290.24029541 290.479553223 290.559631348 290.429748535 290.34967041 290.469787598 290.540100098 290.16998291 289.519592285 289.019592285 288.629943848 287.90045166 286.75982666 285.500061035 289.100463867 289.500854492 289.600463867 289.569213867 289.700073242 289.959838867 290.149291992 290.170776367 290.159057617 290.030151367 289.619995117 288.959838867 288.340698242 287.909057617 287.510620117 286.879760742 285.899291992 288.260162354 288.790435791 289.239654541 289.489654541 289.630279541 289.710357666 289.720123291 289.809967041 290.109771729 290.319732666 290.029693604 289.279693604 288.489654541 287.899810791 287.359771729 286.850006104 286.420318604 289.089904785 289.610412598 290.089904785 290.41998291 290.629943848 290.690490723 290.549865723 290.40045166 290.41998291 290.41998291 290.110412598 289.570373535 289.160217285 288.780334473 288.059631348 286.91998291 285.710021973 289.219604492 289.500854492 289.619995117 289.649291992 289.719604492 289.909057617 290.069213867 290.139526367 290.170776367 290.119995117 289.819213867 289.229370117 288.619995117 288.149291992 287.729370117 287.170776367 286.309448242 288.309967041 288.909576416 289.359771729 289.580474854 289.699615479 289.790435791 289.840240479 289.960357666 290.229888916 290.390045166 290.000396729 289.140045166 288.300201416 287.729888916 287.260162354 286.729888916 286.290435791 288.99029541 289.629943848 290.25982666 290.629943848 290.780334473 290.750061035 290.589904785 290.49029541 290.530334473 290.50982666 290.16998291 289.65045166 289.229553223 288.84967041 288.129943848 287.019592285 285.839904785 289.289916992 289.469604492 289.709838867 289.840698242 289.860229492 289.920776367 290.039916992 290.170776367 290.280151367 290.270385742 289.989135742 289.430541992 288.799682617 288.309448242 287.930541992 287.430541992 286.649291992 288.369537354 288.989654541 289.470123291 289.699615479 289.779693604 289.819732666 289.800201416 289.880279541 290.149810791 290.319732666 289.949615479 289.069732666 288.180084229 287.569732666 287.090240479 286.580474854 286.180084229 288.950256348 289.65045166 290.339904785 290.729553223 290.790100098 290.65045166 290.50982666 290.519592285 290.660217285 290.660217285 290.320373535 289.75982666 289.280334473 288.84967041 288.15045166 287.09967041 286.000061035 289.389526367 289.549682617 289.899291992 290.059448242 289.979370117 289.909057617 290.020385742 290.250854492 290.399291992 290.379760742 290.069213867 289.489135742 288.850463867 288.369995117 288.059448242 287.690307617 286.989135742 288.409576416 289.040435791 289.559967041 289.809967041 289.869537354 289.830474854 289.769927979 289.819732666 290.050201416 290.199615479 289.899810791 289.100006104 288.220123291 287.550201416 287.010162354 286.529693604 286.159576416 289.00982666 289.65045166 290.290100098 290.639709473 290.65045166 290.530334473 290.469787598 290.570373535 290.719787598 290.719787598 290.410217285 289.90045166 289.389709473 288.90045166 288.210021973 287.25982666 286.210021973 289.520385742 289.719604492 290.119995117 290.260620117 290.059448242 289.909057617 290.049682617 290.309448242 290.440307617 290.360229492 290.049682617 289.510620117 288.879760742 288.389526367 288.119995117 287.860229492 287.260620117 288.449615479 289.080474854 289.580474854 289.840240479 289.909576416 289.920318604 289.930084229 289.970123291 290.080474854 290.100006104 289.830474854 289.189849854 288.390045166 287.640045166 287.029693604 286.529693604 286.170318604 289.110412598 289.629943848 290.139709473 290.429748535 290.50982666 290.530334473 290.589904785 290.66998291 290.690490723 290.58013916 290.370178223 290.030334473 289.589904785 289.030334473 288.320373535 287.429748535 286.410217285 289.600463867 289.879760742 290.289916992 290.369995117 290.139526367 290.000854492 290.159057617 290.369995117 290.399291992 290.250854492 289.989135742 289.580932617 289.010620117 288.479370117 288.149291992 287.889526367 287.350463867 288.489654541 289.050201416 289.500396729 289.769927979 289.899810791 290.029693604 290.159576416 290.199615479 290.100006104 289.920318604 289.649810791 289.189849854 288.510162354 287.710357666 286.989654541 286.460357666 286.109771729 289.16998291 289.620178223 290.019592285 290.290100098 290.440490723 290.589904785 290.729553223 290.729553223 290.530334473 290.320373535 290.210021973 290.09967041 289.75982666 289.160217285 288.410217285 287.540100098 286.50982666 289.569213867 289.930541992 290.330932617 290.409057617 290.209838867 290.129760742 290.270385742 290.399291992 290.309448242 290.110229492 289.930541992 289.680541992 289.200073242 288.619995117 288.170776367 287.830932617 287.289916992 288.519927979 288.970123291 289.359771729 289.670318604 289.899810791 290.100006104 290.269927979 290.250396729 289.979888916 289.630279541 289.380279541 289.090240479 288.500396729 287.649810791 286.859771729 286.319732666 285.970123291 289.110412598 289.59967041 290.019592285 290.299865723 290.429748535 290.549865723 290.66998291 290.610412598 290.299865723 290.030334473 290.00982666 290.08013916 289.84967041 289.219787598 288.440490723 287.589904785 286.549865723 289.469604492 289.869995117 290.250854492 290.360229492 290.229370117 290.149291992 290.280151367 290.369995117 290.239135742 290.010620117 289.840698242 289.659057617 289.289916992 288.729370117 288.209838867 287.770385742 287.190307617 288.580474854 288.890045166 289.269927979 289.689849854 289.979888916 290.140045166 290.239654541 290.159576416 289.830474854 289.439849854 289.189849854 288.970123291 288.420318604 287.550201416 286.739654541 286.210357666 285.819732666 288.950256348 289.50982666 290.049865723 290.379943848 290.440490723 290.389709473 290.40045166 290.360412598 290.09967041 289.820373535 289.83013916 290.000061035 289.860412598 289.25982666 288.479553223 287.639709473 286.58013916 289.340698242 289.760620117 290.129760742 290.270385742 290.200073242 290.100463867 290.139526367 290.239135742 290.170776367 289.950073242 289.709838867 289.520385742 289.239135742 288.770385742 288.239135742 287.729370117 287.090698242 288.729888916 288.949615479 289.350006104 289.840240479 290.140045166 290.199615479 290.189849854 290.119537354 289.840240479 289.470123291 289.189849854 288.920318604 288.350006104 287.519927979 286.760162354 286.220123291 285.689849854 288.719787598 289.309631348 289.960021973 290.410217285 290.440490723 290.250061035 290.16998291 290.179748535 290.00982666 289.729553223 289.700256348 289.91998291 289.879943848 289.34967041 288.549865723 287.660217285 286.559631348 289.190307617 289.639526367 290.010620117 290.219604492 290.190307617 290.030151367 289.979370117 290.069213867 290.080932617 289.860229492 289.559448242 289.350463867 289.149291992 288.770385742 288.229370117 287.610229492 286.920776367 288.989654541 289.159576416 289.519927979 290.000396729 290.250396729 290.199615479 290.149810791 290.119537354 289.939849854 289.600006104 289.250396729 288.880279541 288.300201416 287.550201416 286.850006104 286.239654541 285.529693604 288.530334473 289.059631348 289.75982666 290.339904785 290.450256348 290.24029541 290.09967041 290.120178223 289.979553223 289.679748535 289.59967041 289.84967041 289.950256348 289.469787598 288.59967041 287.59967041 286.460021973 289.030151367 289.520385742 289.909057617 290.200073242 290.250854492 290.049682617 289.860229492 289.879760742 289.909057617 289.709838867 289.389526367 289.200073242 289.080932617 288.750854492 288.119995117 287.379760742 286.649291992 289.239654541 289.380279541 289.659576416 290.029693604 290.170318604 290.080474854 290.029693604 290.029693604 289.899810791 289.569732666 289.220123291 288.819732666 288.260162354 287.550201416 286.869537354 286.170318604 285.319732666 288.460021973 288.91998291 289.58013916 290.229553223 290.469787598 290.269592285 290.089904785 290.070373535 289.940490723 289.610412598 289.50982666 289.790100098 289.969787598 289.540100098 288.589904785 287.500061035 286.34967041 288.850463867 289.379760742 289.780151367 290.139526367 290.289916992 290.059448242 289.750854492 289.670776367 289.680541992 289.500854492 289.200073242 289.069213867 289.000854492 288.659057617 287.940307617 287.119995117 286.399291992 289.340240479 289.489654541 289.710357666 289.949615479 289.989654541 289.899810791 289.880279541 289.880279541 289.699615479 289.399810791 289.119537354 288.800201416 288.250396729 287.519927979 286.779693604 286.010162354 285.119537354 288.460021973 288.929748535 289.540100098 290.190490723 290.450256348 290.250061035 290.00982666 289.940490723 289.799865723 289.519592285 289.429748535 289.719787598 289.91998291 289.49029541 288.519592285 287.429748535 286.34967041 288.639526367 289.200073242 289.590698242 290.000854492 290.209838867 289.969604492 289.600463867 289.469604492 289.450073242 289.280151367 289.010620117 288.909057617 288.850463867 288.469604492 287.729370117 286.940307617 286.270385742 289.199615479 289.399810791 289.659576416 289.830474854 289.809967041 289.750396729 289.779693604 289.729888916 289.489654541 289.229888916 289.080474854 288.859771729 288.300201416 287.489654541 286.649810791 285.809967041 284.960357666 288.469787598 289.019592285 289.59967041 290.16998291 290.360412598 290.120178223 289.83013916 289.729553223 289.610412598 289.389709473 289.33013916 289.58013916 289.729553223 289.339904785 288.440490723 287.429748535 286.440490723 288.350463867 288.920776367 289.340698242 289.789916992 290.020385742 289.780151367 289.399291992 289.280151367 289.280151367 289.110229492 288.879760742 288.809448242 288.719604492 288.280151367 287.510620117 286.789916992 286.209838867 288.880279541 289.189849854 289.550201416 289.699615479 289.630279541 289.609771729 289.699615479 289.630279541 289.350006104 289.140045166 289.100006104 288.920318604 288.340240479 287.479888916 286.550201416 285.640045166 284.760162354 288.429748535 289.110412598 289.700256348 290.139709473 290.190490723 289.91998291 289.629943848 289.49029541 289.370178223 289.190490723 289.179748535 289.410217285 289.519592285 289.160217285 288.360412598 287.410217285 286.410217285 287.989135742 288.569213867 289.059448242 289.580932617 289.799682617 289.569213867 289.200073242 289.100463867 289.119995117 288.969604492 288.799682617 288.809448242 288.700073242 288.139526367 287.270385742 286.549682617 286.039916992 288.510162354 288.960357666 289.420318604 289.529693604 289.390045166 289.409576416 289.559967041 289.500396729 289.199615479 289.029693604 289.040435791 288.890045166 288.330474854 287.510162354 286.590240479 285.559967041 284.559967041 288.370178223 289.16998291 289.769592285 290.049865723 289.99029541 289.710021973 289.460021973 289.280334473 289.08013916 288.950256348 289.049865723 289.309631348 289.389709473 289.040100098 288.280334473 287.280334473 286.179748535 287.629760742 288.229370117 288.799682617 289.379760742 289.619995117 289.379760742 289.059448242 288.979370117 288.940307617 288.789916992 288.719604492 288.860229492 288.770385742 288.080932617 287.030151367 286.190307617 285.700073242 288.199615479 288.760162354 289.269927979 289.319732666 289.170318604 289.239654541 289.420318604 289.350006104 289.050201416 288.899810791 288.949615479 288.819732666 288.340240479 287.680084229 286.809967041 285.670318604 284.510162354 288.290100098 289.210021973 289.820373535 290.000061035 289.839904785 289.610412598 289.389709473 289.129943848 288.84967041 288.780334473 289.040100098 289.370178223 289.40045166 288.960021973 288.16998291 287.139709473 285.929748535 287.399291992 287.969604492 288.590698242 289.200073242 289.479370117 289.289916992 289.020385742 288.920776367 288.809448242 288.610229492 288.610229492 288.850463867 288.799682617 288.039916992 286.850463867 285.889526367 285.369995117 287.979888916 288.600006104 289.080474854 289.149810791 289.080474854 289.220123291 289.380279541 289.220123291 288.899810791 288.819732666 288.920318604 288.850006104 288.500396729 287.979888916 287.189849854 286.010162354 284.769927979 288.110412598 289.139709473 289.820373535 289.969787598 289.809631348 289.620178223 289.40045166 289.049865723 288.729553223 288.750061035 289.16998291 289.549865723 289.469787598 288.910217285 288.08013916 287.070373535 285.889709473 287.340698242 287.850463867 288.409057617 289.030151367 289.350463867 289.239135742 289.020385742 288.899291992 288.729370117 288.510620117 288.520385742 288.780151367 288.760620117 288.000854492 286.789916992 285.770385742 285.209838867 287.859771729 288.439849854 288.869537354 289.010162354 289.109771729 289.290435791 289.330474854 289.050201416 288.760162354 288.800201416 289.010162354 289.000396729 288.729888916 288.300201416 287.569732666 286.420318604 285.239654541 287.799865723 288.889709473 289.660217285 289.910217285 289.809631348 289.629943848 289.360412598 288.940490723 288.639709473 288.769592285 289.269592285 289.639709473 289.469787598 288.809631348 287.960021973 287.040100098 286.00982666 287.340698242 287.770385742 288.280151367 288.889526367 289.250854492 289.190307617 288.959838867 288.809448242 288.649291992 288.500854492 288.530151367 288.750854492 288.690307617 287.979370117 286.819213867 285.750854492 285.100463867 287.830474854 288.300201416 288.670318604 288.909576416 289.109771729 289.229888916 289.100006104 288.760162354 288.590240479 288.769927979 289.050201416 289.100006104 288.890045166 288.489654541 287.769927979 286.689849854 285.649810791 287.49029541 288.530334473 289.379943848 289.769592285 289.769592285 289.549865723 289.16998291 288.729553223 288.49029541 288.679748535 289.16998291 289.530334473 289.379943848 288.729553223 287.799865723 286.870178223 286.00982666 287.299682617 287.670776367 288.170776367 288.799682617 289.200073242 289.129760742 288.819213867 288.590698242 288.489135742 288.479370117 288.610229492 288.809448242 288.709838867 288.010620117 286.830932617 285.639526367 284.830932617 287.890045166 288.220123291 288.550201416 288.869537354 289.069732666 289.029693604 288.769927979 288.510162354 288.510162354 288.750396729 288.970123291 289.019927979 288.930084229 288.559967041 287.779693604 286.699615479 285.760162354 287.33013916 288.24029541 289.08013916 289.58013916 289.660217285 289.379943848 288.929748535 288.519592285 288.34967041 288.519592285 288.91998291 289.280334473 289.290100098 288.700256348 287.629943848 286.500061035 285.66998291 287.219604492 287.559448242 288.049682617 288.719604492 289.159057617 289.090698242 288.709838867 288.399291992 288.319213867 288.450073242 288.690307617 288.930541992 288.830932617 288.100463867 286.799682617 285.389526367 284.369995117 287.909576416 288.140045166 288.489654541 288.880279541 289.029693604 288.850006104 288.569732666 288.489654541 288.630279541 288.760162354 288.779693604 288.819732666 288.890045166 288.619537354 287.750396729 286.550201416 285.550201416 287.339904785 288.08013916 288.839904785 289.410217285 289.519592285 289.229553223 288.750061035 288.410217285 288.33013916 288.429748535 288.66998291 289.030334473 289.219787598 288.74029541 287.49029541 286.059631348 285.070373535 287.110229492 287.430541992 287.930541992 288.610229492 289.090698242 289.069213867 288.709838867 288.369995117 288.280151367 288.409057617 288.709838867 289.010620117 288.950073242 288.219604492 286.789916992 285.149291992 283.930541992 287.800201416 287.979888916 288.399810791 288.859771729 288.989654541 288.739654541 288.519927979 288.609771729 288.800201416 288.739654541 288.550201416 288.609771729 288.869537354 288.699615479 287.699615479 286.290435791 285.119537354 287.370178223 287.960021973 288.660217285 289.219787598 289.389709473 289.110412598 288.66998291 288.410217285 288.379943848 288.429748535 288.519592285 288.83013916 289.110412598 288.719787598 287.370178223 285.66998291 284.450256348 286.989135742 287.299682617 287.809448242 288.469604492 288.959838867 289.030151367 288.770385742 288.459838867 288.309448242 288.399291992 288.690307617 288.989135742 288.989135742 288.280151367 286.819213867 285.049682617 283.659057617 287.519927979 287.689849854 288.199615479 288.739654541 288.869537354 288.619537354 288.449615479 288.609771729 288.779693604 288.630279541 288.369537354 288.479888916 288.840240479 288.689849854 287.580474854 285.979888916 284.609771729 287.24029541 287.799865723 288.469787598 289.040100098 289.24029541 289.00982666 288.589904785 288.33013916 288.339904785 288.410217285 288.450256348 288.679748535 288.940490723 288.559631348 287.200256348 285.379943848 283.940490723 286.850463867 287.149291992 287.690307617 288.340698242 288.809448242 288.909057617 288.719604492 288.440307617 288.309448242 288.389526367 288.659057617 288.950073242 288.930541992 288.219604492 286.770385742 284.969604492 283.469604492 287.149810791 287.369537354 287.960357666 288.550201416 288.699615479 288.460357666 288.279693604 288.399810791 288.559967041 288.470123291 288.319732666 288.470123291 288.779693604 288.540435791 287.369537354 285.659576416 284.109771729 287.000061035 287.610412598 288.299865723 288.870178223 289.09967041 288.910217285 288.460021973 288.160217285 288.16998291 288.299865723 288.41998291 288.59967041 288.729553223 288.309631348 286.940490723 285.059631348 283.469787598 286.680541992 287.000854492 287.580932617 288.260620117 288.700073242 288.760620117 288.549682617 288.280151367 288.190307617 288.360229492 288.670776367 288.909057617 288.789916992 288.039916992 286.600463867 284.799682617 283.250854492 286.830474854 287.109771729 287.750396729 288.359771729 288.550201416 288.369537354 288.189849854 288.250396729 288.390045166 288.430084229 288.399810791 288.529693604 288.670318604 288.319732666 287.149810791 285.420318604 283.699615479 286.75982666 287.440490723 288.179748535 288.750061035 289.000061035 288.839904785 288.389709473 288.030334473 288.019592285 288.210021973 288.389709473 288.540100098 288.589904785 288.089904785 286.66998291 284.719787598 283.000061035 286.520385742 286.830932617 287.469604492 288.180541992 288.619995117 288.629760742 288.360229492 288.100463867 288.080932617 288.319213867 288.659057617 288.830932617 288.619995117 287.809448242 286.360229492 284.590698242 283.020385742 286.590240479 286.939849854 287.590240479 288.199615479 288.460357666 288.380279541 288.260162354 288.290435791 288.420318604 288.460357666 288.439849854 288.470123291 288.489654541 288.130279541 287.000396729 285.210357666 283.330474854 286.59967041 287.34967041 288.129943848 288.679748535 288.90045166 288.780334473 288.379943848 288.049865723 288.00982666 288.160217285 288.320373535 288.450256348 288.479553223 287.950256348 286.469787598 284.40045166 282.589904785 286.430541992 286.709838867 287.340698242 288.049682617 288.489135742 288.539916992 288.299682617 288.049682617 288.030151367 288.260620117 288.549682617 288.680541992 288.459838867 287.690307617 286.260620117 284.459838867 282.899291992 286.489654541 286.830474854 287.460357666 288.059967041 288.369537354 288.399810791 288.369537354 288.420318604 288.489654541 288.430084229 288.279693604 288.220123291 288.269927979 287.989654541 286.880279541 284.970123291 282.920318604 286.549865723 287.320373535 288.09967041 288.629943848 288.839904785 288.74029541 288.389709473 288.110412598 288.059631348 288.15045166 288.219787598 288.33013916 288.389709473 287.879943848 286.339904785 284.16998291 282.309631348 286.389526367 286.649291992 287.209838867 287.860229492 288.340698242 288.469604492 288.319213867 288.090698242 288.020385742 288.149291992 288.350463867 288.489135742 288.389526367 287.729370117 286.319213867 284.459838867 282.879760742 286.510162354 286.790435791 287.359771729 287.960357666 288.279693604 288.330474854 288.330474854 288.399810791 288.439849854 288.260162354 287.979888916 287.930084229 288.100006104 287.890045166 286.689849854 284.590240479 282.489654541 286.610412598 287.34967041 288.09967041 288.629943848 288.860412598 288.729553223 288.360412598 288.08013916 288.040100098 288.120178223 288.179748535 288.269592285 288.33013916 287.809631348 286.219787598 284.00982666 282.139709473 286.360229492 286.629760742 287.100463867 287.700073242 288.219604492 288.450073242 288.360229492 288.119995117 287.979370117 288.030151367 288.200073242 288.409057617 288.450073242 287.869995117 286.420776367 284.489135742 282.899291992 286.609771729 286.790435791 287.319732666 287.930084229 288.260162354 288.250396729 288.180084229 288.239654541 288.290435791 288.069732666 287.760162354 287.769927979 288.050201416 287.819732666 286.420318604 284.180084229 282.170318604 286.750061035 287.370178223 288.059631348 288.65045166 288.940490723 288.780334473 288.299865723 287.91998291 287.910217285 288.089904785 288.219787598 288.320373535 288.33013916 287.729553223 286.089904785 283.870178223 282.030334473 286.299682617 286.549682617 286.969604492 287.569213867 288.170776367 288.489135742 288.369995117 288.080932617 287.909057617 287.969604492 288.190307617 288.450073242 288.549682617 288.000854492 286.500854492 284.539916992 282.959838867 286.670318604 286.760162354 287.279693604 287.960357666 288.319732666 288.220123291 288.040435791 288.059967041 288.109771729 287.909576416 287.649810791 287.760162354 288.080474854 287.760162354 286.210357666 283.960357666 282.130279541 286.90045166 287.360412598 287.940490723 288.58013916 288.979553223 288.820373535 288.229553223 287.750061035 287.74029541 288.019592285 288.24029541 288.360412598 288.320373535 287.66998291 286.00982666 283.809631348 281.969787598 286.190307617 286.379760742 286.770385742 287.420776367 288.119995117 288.489135742 288.330932617 287.989135742 287.850463867 287.989135742 288.219604492 288.469604492 288.539916992 288.020385742 286.610229492 284.739135742 283.209838867 286.609771729 286.670318604 287.210357666 287.979888916 288.390045166 288.260162354 287.960357666 287.880279541 287.880279541 287.699615479 287.529693604 287.729888916 288.080474854 287.739654541 286.180084229 284.040435791 282.319732666 286.979553223 287.280334473 287.769592285 288.440490723 288.91998291 288.799865723 288.179748535 287.66998291 287.639709473 287.889709473 288.08013916 288.179748535 288.179748535 287.639709473 286.089904785 283.929748535 282.00982666 286.059448242 286.200073242 286.539916992 287.239135742 288.020385742 288.389526367 288.209838867 287.879760742 287.809448242 287.989135742 288.170776367 288.319213867 288.389526367 288.010620117 286.840698242 285.170776367 283.659057617 286.460357666 286.569732666 287.159576416 287.960357666 288.399810791 288.260162354 287.899810791 287.680084229 287.569732666 287.409576416 287.359771729 287.670318604 288.069732666 287.769927979 286.350006104 284.350006104 282.580474854 286.929748535 287.210021973 287.660217285 288.320373535 288.820373535 288.74029541 288.179748535 287.710021973 287.639709473 287.750061035 287.799865723 287.860412598 287.979553223 287.679748535 286.370178223 284.25982666 282.16998291 285.930541992 286.069213867 286.440307617 287.139526367 287.899291992 288.239135742 288.049682617 287.780151367 287.780151367 287.930541992 288.030151367 288.110229492 288.229370117 288.049682617 287.149291992 285.659057617 284.159057617 286.319732666 286.540435791 287.170318604 287.939849854 288.340240479 288.199615479 287.790435791 287.460357666 287.260162354 287.149810791 287.260162354 287.689849854 288.100006104 287.850006104 286.630279541 284.790435791 282.890045166 286.809631348 287.139709473 287.66998291 288.34967041 288.799865723 288.700256348 288.210021973 287.790100098 287.679748535 287.66998291 287.59967041 287.639709473 287.870178223 287.809631348 286.750061035 284.729553223 282.50982666 285.760620117 286.000854492 286.450073242 287.149291992 287.840698242 288.119995117 287.969604492 287.750854492 287.750854492 287.869995117 287.930541992 288.030151367 288.200073242 288.119995117 287.379760742 286.049682617 284.639526367 286.210357666 286.529693604 287.189849854 287.909576416 288.260162354 288.090240479 287.659576416 287.260162354 287.029693604 287.019927979 287.300201416 287.790435791 288.140045166 287.920318604 286.939849854 285.350006104 283.409576416 286.620178223 287.019592285 287.660217285 288.389709473 288.780334473 288.629943848 288.160217285 287.780334473 287.65045166 287.620178223 287.59967041 287.690490723 287.929748535 287.929748535 287.089904785 285.299865723 283.110412598 285.559448242 285.920776367 286.469604492 287.180541992 287.809448242 288.090698242 287.989135742 287.780151367 287.709838867 287.799682617 287.950073242 288.129760742 288.289916992 288.139526367 287.450073242 286.399291992 285.289916992 286.080474854 286.439849854 287.140045166 287.850006104 288.170318604 287.970123291 287.529693604 287.119537354 286.890045166 286.949615479 287.330474854 287.840240479 288.130279541 287.949615479 287.250396729 286.010162354 284.210357666 286.429748535 286.809631348 287.519592285 288.299865723 288.660217285 288.49029541 288.040100098 287.660217285 287.500061035 287.530334473 287.679748535 287.879943848 288.059631348 287.99029541 287.370178223 286.030334473 284.110412598 285.409057617 285.819213867 286.420776367 287.129760742 287.770385742 288.119995117 288.100463867 287.850463867 287.649291992 287.690307617 287.950073242 288.250854492 288.350463867 288.119995117 287.610229492 287.020385742 286.399291992 285.899810791 286.279693604 287.059967041 287.850006104 288.170318604 287.939849854 287.470123291 287.069732666 286.840240479 286.899810791 287.279693604 287.790435791 288.100006104 288.029693604 287.590240479 286.699615479 285.140045166 286.309631348 286.610412598 287.339904785 288.129943848 288.479553223 288.320373535 287.950256348 287.589904785 287.370178223 287.410217285 287.710021973 288.019592285 288.129943848 288.040100098 287.729553223 286.960021973 285.41998291 285.379760742 285.789916992 286.399291992 287.119995117 287.770385742 288.180541992 288.219604492 287.940307617 287.629760742 287.610229492 287.920776367 288.260620117 288.350463867 288.229370117 288.119995117 288.110229492 287.909057617 285.699615479 286.130279541 287.050201416 287.970123291 288.309967041 288.000396729 287.489654541 287.109771729 286.899810791 286.909576416 287.229888916 287.739654541 288.149810791 288.229888916 287.979888916 287.319732666 285.960357666 286.219787598 286.50982666 287.280334473 288.070373535 288.360412598 288.219787598 287.969787598 287.690490723 287.410217285 287.370178223 287.66998291 288.040100098 288.15045166 288.15045166 288.229553223 288.019592285 286.820373535 285.409057617 285.819213867 286.479370117 287.219604492 287.840698242 288.239135742 288.309448242 288.049682617 287.700073242 287.629760742 287.899291992 288.219604492 288.360229492 288.569213867 289.039916992 289.500854492 289.369995117 285.439849854 286.000396729 287.119537354 288.189849854 288.510162354 288.080474854 287.500396729 287.159576416 287.000396729 286.979888916 287.220123291 287.739654541 288.250396729 288.449615479 288.309967041 287.830474854 286.760162354 286.08013916 286.460021973 287.309631348 288.09967041 288.320373535 288.15045166 288.019592285 287.879943848 287.589904785 287.41998291 287.660217285 288.040100098 288.210021973 288.339904785 288.75982666 289.00982666 288.08013916 285.360229492 285.799682617 286.549682617 287.379760742 287.959838867 288.239135742 288.289916992 288.110229492 287.840698242 287.760620117 287.940307617 288.180541992 288.440307617 289.049682617 290.059448242 290.770385742 290.440307617 285.069732666 285.840240479 287.149810791 288.340240479 288.619537354 288.080474854 287.439849854 287.140045166 287.050201416 287.019927979 287.210357666 287.710357666 288.260162354 288.519927979 288.519927979 288.340240479 287.760162354 285.84967041 286.299865723 287.250061035 288.089904785 288.269592285 288.070373535 288.000061035 287.950256348 287.66998291 287.469787598 287.679748535 288.09967041 288.299865723 288.519592285 289.179748535 289.790100098 289.229553223 285.129760742 285.590698242 286.489135742 287.440307617 288.020385742 288.190307617 288.219604492 288.119995117 287.940307617 287.869995117 288.000854492 288.180541992 288.510620117 289.399291992 290.760620117 291.659057617 291.209838867 284.640045166 285.609771729 287.090240479 288.350006104 288.630279541 288.040435791 287.380279541 287.100006104 287.059967041 287.050201416 287.220123291 287.670318604 288.159576416 288.439849854 288.630279541 288.899810791 288.939849854 285.59967041 286.059631348 287.070373535 287.99029541 288.229553223 288.059631348 287.950256348 287.870178223 287.59967041 287.450256348 287.769592285 288.24029541 288.440490723 288.66998291 289.460021973 290.410217285 290.370178223 284.879760742 285.319213867 286.330932617 287.420776367 288.010620117 288.159057617 288.180541992 288.139526367 287.969604492 287.889526367 288.049682617 288.260620117 288.580932617 289.489135742 291.000854492 292.149291992 291.959838867 284.250396729 285.430084229 287.029693604 288.340240479 288.619537354 288.059967041 287.430084229 287.170318604 287.140045166 287.159576416 287.340240479 287.750396729 288.140045166 288.409576416 288.769927979 289.380279541 289.830474854 285.440490723 285.889709473 286.910217285 287.879943848 288.24029541 288.139709473 287.99029541 287.780334473 287.479553223 287.460021973 287.929748535 288.479553223 288.660217285 288.839904785 289.679748535 290.889709473 291.33013916 284.700073242 285.149291992 286.229370117 287.399291992 288.039916992 288.209838867 288.280151367 288.219604492 287.969604492 287.869995117 288.139526367 288.500854492 288.760620117 289.440307617 290.879760742 292.309448242 292.670776367 283.970123291 285.350006104 287.059967041 288.369537354 288.640045166 288.130279541 287.559967041 287.340240479 287.309967041 287.350006104 287.559967041 287.930084229 288.269927979 288.519927979 288.920318604 289.519927979 289.890045166 285.339904785 285.889709473 286.90045166 287.839904785 288.250061035 288.229553223 288.049865723 287.769592285 287.479553223 287.559631348 288.139709473 288.700256348 288.839904785 289.00982666 289.84967041 291.09967041 291.700256348 284.559448242 285.090698242 286.219604492 287.430541992 288.080932617 288.280151367 288.399291992 288.330932617 288.010620117 287.879760742 288.309448242 288.840698242 289.049682617 289.409057617 290.600463867 292.180541992 292.969604492 283.779693604 285.350006104 287.189849854 288.489654541 288.689849854 288.149810791 287.640045166 287.479888916 287.470123291 287.489654541 287.680084229 288.019927979 288.359771729 288.659576416 289.010162354 289.309967041 289.189849854 285.210021973 285.979553223 287.000061035 287.809631348 288.139709473 288.139709473 288.019592285 287.809631348 287.610412598 287.74029541 288.25982666 288.74029541 288.889709473 289.120178223 289.90045166 290.889709473 291.269592285 284.369995117 285.049682617 286.250854492 287.459838867 288.100463867 288.289916992 288.420776367 288.409057617 288.090698242 287.940307617 288.420776367 289.069213867 289.299682617 289.450073242 290.360229492 291.830932617 292.659057617 283.670318604 285.420318604 287.439849854 288.760162354 288.859771729 288.220123291 287.699615479 287.580474854 287.580474854 287.540435791 287.619537354 287.920318604 288.309967041 288.689849854 289.000396729 288.970123291 288.359771729 285.059631348 286.139709473 287.219787598 287.839904785 287.99029541 287.979553223 287.979553223 287.90045166 287.809631348 287.91998291 288.269592285 288.59967041 288.799865723 289.160217285 289.820373535 290.389709473 290.280334473 284.180541992 285.000854492 286.280151367 287.539916992 288.159057617 288.280151367 288.399291992 288.450073242 288.239135742 288.080932617 288.450073242 289.090698242 289.399291992 289.569213867 290.280151367 291.430541992 291.920776367 283.699615479 285.680084229 287.899810791 289.250396729 289.229888916 288.449615479 287.840240479 287.710357666 287.710357666 287.609771729 287.609771729 287.850006104 288.250396729 288.659576416 288.909576416 288.720123291 287.939849854 285.059631348 286.460021973 287.620178223 288.08013916 288.08013916 288.040100098 288.08013916 288.08013916 288.00982666 288.049865723 288.269592285 288.530334473 288.799865723 289.200256348 289.66998291 289.799865723 289.299865723 284.119995117 285.090698242 286.459838867 287.780151367 288.409057617 288.440307617 288.440307617 288.530151367 288.450073242 288.299682617 288.520385742 289.049682617 289.469604492 289.780151367 290.360229492 291.069213867 291.080932617 283.949615479 286.229888916 288.619537354 289.920318604 289.710357666 288.729888916 288.029693604 287.840240479 287.830474854 287.769927979 287.819732666 288.059967041 288.369537354 288.609771729 288.699615479 288.479888916 287.840240479 285.309631348 286.979553223 288.190490723 288.570373535 288.469787598 288.34967041 288.320373535 288.210021973 288.089904785 288.120178223 288.370178223 288.679748535 288.979553223 289.250061035 289.410217285 289.219787598 288.58013916 284.250854492 285.399291992 286.830932617 288.190307617 288.819213867 288.719604492 288.539916992 288.590698242 288.629760742 288.559448242 288.700073242 289.159057617 289.639526367 289.989135742 290.369995117 290.629760742 290.260620117 284.529693604 287.100006104 289.449615479 290.489654541 290.019927979 288.899810791 288.090240479 287.830474854 287.830474854 287.890045166 288.090240479 288.359771729 288.500396729 288.420318604 288.239654541 287.989654541 287.600006104 285.690490723 287.540100098 288.780334473 289.08013916 288.91998291 288.700256348 288.479553223 288.219787598 288.030334473 288.129943848 288.50982666 288.910217285 289.09967041 289.049865723 288.839904785 288.500061035 287.969787598 284.520385742 285.869995117 287.309448242 288.619995117 289.209838867 289.010620117 288.639526367 288.569213867 288.670776367 288.709838867 288.899291992 289.350463867 289.789916992 289.969604492 289.969604492 289.850463867 289.330932617 285.470123291 288.170318604 290.250396729 290.869537354 290.159576416 288.989654541 288.170318604 287.850006104 287.790435791 287.939849854 288.229888916 288.470123291 288.390045166 288.000396729 287.600006104 287.340240479 287.100006104 286.15045166 288.110412598 289.299865723 289.559631348 289.34967041 289.019592285 288.629943848 288.25982666 288.070373535 288.219787598 288.620178223 288.950256348 288.889709473 288.450256348 287.950256348 287.639709473 287.370178223 285.000854492 286.510620117 287.909057617 289.100463867 289.600463867 289.319213867 288.830932617 288.649291992 288.680541992 288.750854492 288.979370117 289.409057617 289.700073242 289.539916992 289.149291992 288.799682617 288.360229492 286.680084229 289.239654541 290.880279541 291.149810791 290.399810791 289.359771729 288.600006104 288.189849854 288.029693604 288.119537354 288.369537354 288.439849854 288.109771729 287.529693604 287.080474854 286.899810791 286.739654541 286.83013916 288.75982666 289.870178223 290.129943848 289.90045166 289.479553223 289.00982666 288.629943848 288.460021973 288.540100098 288.75982666 288.83013916 288.479553223 287.74029541 287.120178223 286.960021973 286.929748535 285.780151367 287.379760742 288.729370117 289.770385742 290.159057617 289.809448242 289.280151367 289.020385742 288.930541992 288.869995117 289.000854492 289.340698242 289.409057617 288.930541992 288.280151367 287.920776367 287.700073242 287.880279541 290.040435791 291.279693604 291.430084229 290.830474854 290.000396729 289.279693604 288.760162354 288.510162354 288.580474854 288.760162354 288.659576416 288.080474854 287.369537354 286.970123291 286.920318604 286.800201416 287.769592285 289.50982666 290.540100098 290.820373535 290.620178223 290.08013916 289.519592285 289.15045166 289.040100098 289.040100098 289.070373535 288.929748535 288.389709473 287.500061035 286.839904785 286.75982666 286.84967041 286.809448242 288.369995117 289.690307617 290.639526367 290.860229492 290.389526367 289.830932617 289.559448242 289.379760742 289.200073242 289.209838867 289.440307617 289.330932617 288.619995117 287.869995117 287.600463867 287.539916992 288.750396729 290.409576416 291.390045166 291.569732666 291.140045166 290.380279541 289.559967041 288.930084229 288.760162354 289.029693604 289.369537354 289.239654541 288.500396729 287.619537354 287.149810791 287.119537354 287.010162354 288.750061035 290.15045166 291.019592285 291.320373535 291.049865723 290.339904785 289.620178223 289.25982666 289.25982666 289.410217285 289.540100098 289.469787598 288.910217285 287.910217285 287.089904785 286.90045166 286.91998291 287.760620117 289.190307617 290.510620117 291.360229492 291.319213867 290.610229492 289.959838867 289.739135742 289.649291992 289.539916992 289.659057617 289.920776367 289.729370117 288.879760742 288.000854492 287.719604492 287.639526367 289.309967041 290.540435791 291.340240479 291.479888916 290.970123291 290.010162354 289.010162354 288.369537354 288.420318604 289.080474854 289.760162354 289.809967041 289.040435791 287.939849854 287.210357666 287.040435791 286.909576416 289.50982666 290.530334473 291.190490723 291.34967041 290.879943848 289.929748535 289.019592285 288.620178223 288.83013916 289.360412598 289.929748535 290.16998291 289.660217285 288.460021973 287.33013916 286.860412598 286.750061035 288.549682617 289.789916992 291.039916992 291.659057617 291.260620117 290.239135742 289.469604492 289.299682617 289.399291992 289.590698242 290.059448242 290.569213867 290.420776367 289.399291992 288.280151367 287.780151367 287.549682617 290.000396729 290.909576416 291.449615479 291.260162354 290.380279541 289.170318604 288.100006104 287.600006104 287.859771729 288.750396729 289.659576416 289.909576416 289.210357666 287.960357666 286.949615479 286.550201416 286.390045166 290.250061035 290.91998291 291.25982666 291.09967041 290.33013916 289.190490723 288.190490723 287.820373535 288.16998291 289.019592285 289.979553223 290.460021973 289.910217285 288.469787598 287.049865723 286.379943848 286.200256348 289.559448242 290.559448242 291.500854492 291.680541992 290.850463867 289.600463867 288.789916992 288.649291992 288.840698242 289.299682617 290.139526367 290.950073242 290.860229492 289.680541992 288.280151367 287.500854492 287.090698242 291.130279541 291.710357666 291.779693604 291.040435791 289.779693604 288.550201416 287.729888916 287.439849854 287.720123291 288.439849854 289.210357666 289.470123291 288.859771729 287.619537354 286.510162354 285.970123291 285.800201416 291.290100098 291.66998291 291.59967041 290.940490723 289.879943848 288.74029541 287.910217285 287.610412598 287.90045166 288.700256348 289.639709473 290.040100098 289.320373535 287.750061035 286.320373535 285.700256348 285.589904785 291.069213867 291.750854492 292.100463867 291.639526367 290.440307617 289.219604492 288.559448242 288.420776367 288.489135742 288.940307617 289.920776367 290.850463867 290.770385742 289.489135742 287.920776367 286.969604492 286.479370117 292.420318604 292.510162354 291.989654541 290.739654541 289.369537354 288.479888916 288.119537354 288.040435791 288.109771729 288.390045166 288.750396729 288.809967041 288.250396729 287.170318604 286.149810791 285.630279541 285.430084229 292.549865723 292.59967041 292.030334473 290.870178223 289.65045166 288.769592285 288.290100098 288.110412598 288.16998291 288.58013916 289.110412598 289.15045166 288.25982666 286.790100098 285.639709473 285.25982666 285.229553223 292.700073242 292.940307617 292.569213867 291.450073242 290.090698242 289.180541992 288.869995117 288.750854492 288.590698242 288.809448242 289.649291992 290.469604492 290.280151367 288.979370117 287.459838867 286.500854492 286.010620117 293.220123291 292.760162354 291.699615479 290.229888916 289.100006104 288.720123291 288.739654541 288.699615479 288.540435791 288.460357666 288.470123291 288.300201416 287.710357666 286.769927979 285.930084229 285.479888916 285.199615479 293.370178223 293.030334473 292.00982666 290.58013916 289.40045166 288.90045166 288.809631348 288.729553223 288.58013916 288.58013916 288.639709473 288.320373535 287.34967041 286.120178223 285.33013916 285.15045166 285.070373535 293.489135742 293.289916992 292.350463867 290.869995117 289.629760742 289.190307617 289.280151367 289.209838867 288.920776367 288.950073242 289.539916992 290.030151367 289.619995117 288.389526367 287.090698242 286.250854492 285.729370117 293.229888916 292.359771729 291.050201416 289.699615479 288.960357666 288.920318604 289.029693604 288.859771729 288.569732666 288.470123291 288.409576416 288.069732666 287.340240479 286.460357666 285.750396729 285.290435791 284.920318604 293.229553223 292.589904785 291.40045166 290.019592285 289.110412598 288.90045166 289.00982666 288.960021973 288.729553223 288.570373535 288.379943848 287.860412598 286.879943848 285.870178223 285.269592285 285.08013916 284.820373535 293.039916992 292.549682617 291.440307617 290.059448242 289.159057617 289.110229492 289.399291992 289.379760742 289.100463867 289.129760742 289.500854492 289.580932617 288.869995117 287.739135742 286.750854492 286.069213867 285.479370117 292.809967041 291.809967041 290.569732666 289.489654541 289.029693604 289.029693604 288.920318604 288.569732666 288.340240479 288.420318604 288.430084229 287.960357666 287.100006104 286.229888916 285.569732666 285.059967041 284.500396729 292.389709473 291.66998291 290.65045166 289.639709473 289.040100098 288.91998291 288.929748535 288.809631348 288.610412598 288.479553223 288.250061035 287.639709473 286.679748535 285.780334473 285.210021973 284.84967041 284.370178223 291.979370117 291.430541992 290.559448242 289.580932617 289.030151367 289.069213867 289.270385742 289.200073242 289.030151367 289.139526367 289.319213867 288.989135742 288.030151367 287.000854492 286.340698242 285.840698242 285.190307617 292.390045166 291.479888916 290.449615479 289.600006104 289.199615479 289.029693604 288.689849854 288.269927979 288.170318604 288.399810791 288.449615479 287.890045166 286.970123291 286.149810791 285.510162354 284.869537354 284.130279541 291.549865723 290.950256348 290.25982666 289.660217285 289.269592285 289.049865723 288.809631348 288.540100098 288.389709473 288.339904785 288.09967041 287.450256348 286.549865723 285.74029541 285.129943848 284.570373535 283.950256348 291.270385742 290.830932617 290.289916992 289.690307617 289.260620117 289.139526367 289.080932617 288.909057617 288.789916992 288.899291992 288.889526367 288.280151367 287.229370117 286.350463867 285.899291992 285.520385742 284.879760742 291.920318604 291.199615479 290.380279541 289.680084229 289.239654541 288.930084229 288.540435791 288.199615479 288.170318604 288.399810791 288.390045166 287.850006104 287.029693604 286.300201416 285.609771729 284.779693604 283.880279541 291.09967041 290.620178223 290.15045166 289.780334473 289.469787598 289.110412598 288.679748535 288.34967041 288.24029541 288.210021973 287.929748535 287.309631348 286.570373535 285.889709473 285.210021973 284.450256348 283.700256348 291.219604492 290.830932617 290.459838867 289.989135742 289.500854492 289.170776367 288.909057617 288.690307617 288.569213867 288.580932617 288.379760742 287.709838867 286.770385742 286.039916992 285.610229492 285.170776367 284.539916992 291.100006104 290.609771729 290.069732666 289.529693604 289.119537354 288.809967041 288.510162354 288.290435791 288.250396729 288.350006104 288.300201416 287.930084229 287.340240479 286.649810791 285.800201416 284.739654541 283.720123291 290.809631348 290.40045166 290.000061035 289.679748535 289.379943848 288.99029541 288.559631348 288.269592285 288.200256348 288.15045166 287.870178223 287.40045166 286.90045166 286.339904785 285.50982666 284.469787598 283.540100098 291.309448242 290.909057617 290.500854492 290.000854492 289.459838867 289.039916992 288.770385742 288.590698242 288.450073242 288.319213867 288.039916992 287.500854492 286.789916992 286.119995117 285.479370117 284.789916992 284.119995117 290.000396729 289.819732666 289.649810791 289.380279541 289.069732666 288.790435791 288.569732666 288.380279541 288.260162354 288.239654541 288.260162354 288.140045166 287.750396729 287.019927979 285.939849854 284.710357666 283.680084229 290.41998291 290.110412598 289.769592285 289.479553223 289.210021973 288.860412598 288.479553223 288.250061035 288.200256348 288.15045166 287.969787598 287.719787598 287.440490723 286.879943848 285.809631348 284.460021973 283.370178223 291.010620117 290.619995117 290.209838867 289.729370117 289.270385742 288.899291992 288.690307617 288.539916992 288.369995117 288.159057617 287.909057617 287.569213867 287.069213867 286.340698242 285.379760742 284.369995117 283.610229492 289.130279541 289.300201416 289.489654541 289.470123291 289.210357666 288.869537354 288.569732666 288.330474854 288.159576416 288.130279541 288.260162354 288.330474854 288.050201416 287.250396729 286.040435791 284.790435791 283.819732666 289.960021973 289.860412598 289.66998291 289.49029541 289.24029541 288.860412598 288.450256348 288.179748535 288.09967041 288.110412598 288.089904785 288.049865723 287.870178223 287.250061035 285.99029541 284.450256348 283.250061035 290.350463867 290.119995117 289.840698242 289.530151367 289.190307617 288.869995117 288.600463867 288.379760742 288.200073242 288.039916992 287.899291992 287.700073242 287.239135742 286.369995117 285.149291992 283.969604492 283.149291992 288.909576416 289.290435791 289.640045166 289.699615479 289.359771729 288.859771729 288.430084229 288.149810791 288.010162354 288.059967041 288.260162354 288.409576416 288.149810791 287.350006104 286.199615479 285.059967041 284.119537354 289.620178223 289.74029541 289.710021973 289.59967041 289.339904785 288.870178223 288.339904785 287.979553223 287.879943848 287.99029541 288.129943848 288.219787598 288.059631348 287.379943848 286.08013916 284.58013916 283.389709473 289.619995117 289.649291992 289.590698242 289.450073242 289.209838867 288.850463867 288.430541992 288.090698242 287.920776367 287.909057617 287.930541992 287.780151367 287.229370117 286.190307617 284.850463867 283.659057617 282.860229492 289.130279541 289.470123291 289.739654541 289.729888916 289.350006104 288.790435791 288.300201416 288.019927979 287.930084229 288.010162354 288.229888916 288.359771729 288.140045166 287.470123291 286.500396729 285.449615479 284.460357666 289.389709473 289.549865723 289.570373535 289.49029541 289.229553223 288.75982666 288.190490723 287.799865723 287.729553223 287.90045166 288.15045166 288.280334473 288.120178223 287.41998291 286.24029541 284.90045166 283.769592285 288.899291992 289.139526367 289.219604492 289.219604492 289.080932617 288.739135742 288.229370117 287.819213867 287.709838867 287.840698242 287.979370117 287.840698242 287.200073242 286.039916992 284.659057617 283.469604492 282.680541992 289.199615479 289.350006104 289.479888916 289.489654541 289.260162354 288.819732666 288.380279541 288.059967041 287.920318604 287.960357666 288.159576416 288.309967041 288.180084229 287.659576416 286.840240479 285.830474854 284.699615479 289.049865723 289.110412598 289.089904785 289.08013916 288.99029541 288.66998291 288.200256348 287.83013916 287.74029541 287.889709473 288.15045166 288.320373535 288.190490723 287.570373535 286.479553223 285.24029541 284.09967041 288.069213867 288.399291992 288.559448242 288.680541992 288.750854492 288.590698242 288.190307617 287.799682617 287.690307617 287.850463867 288.020385742 287.920776367 287.309448242 286.129760742 284.680541992 283.389526367 282.479370117 288.750396729 288.800201416 288.920318604 289.080474854 289.140045166 288.949615479 288.550201416 288.119537354 287.840240479 287.819732666 288.059967041 288.309967041 288.279693604 287.850006104 287.090240479 286.069732666 284.850006104 288.49029541 288.460021973 288.479553223 288.679748535 288.860412598 288.75982666 288.370178223 287.960021973 287.769592285 287.820373535 288.049865723 288.320373535 288.33013916 287.780334473 286.710021973 285.440490723 284.229553223 287.180541992 287.479370117 287.709838867 288.039916992 288.399291992 288.520385742 288.270385742 287.930541992 287.750854492 287.819213867 287.959838867 287.969604492 287.510620117 286.409057617 284.850463867 283.330932617 282.260620117 287.960357666 288.059967041 288.279693604 288.640045166 288.920318604 288.869537354 288.500396729 288.000396729 287.649810791 287.640045166 287.989654541 288.369537354 288.399810791 287.939849854 287.159576416 286.170318604 284.989654541 287.83013916 287.809631348 287.979553223 288.440490723 288.870178223 288.870178223 288.429748535 287.91998291 287.639709473 287.620178223 287.870178223 288.299865723 288.519592285 288.070373535 286.91998291 285.530334473 284.25982666 286.430541992 286.670776367 287.010620117 287.580932617 288.190307617 288.450073242 288.280151367 287.950073242 287.750854492 287.739135742 287.850463867 287.969604492 287.729370117 286.729370117 285.059448242 283.319213867 282.080932617 287.220123291 287.460357666 287.790435791 288.210357666 288.519927979 288.519927979 288.210357666 287.790435791 287.519927979 287.590240479 288.029693604 288.519927979 288.550201416 287.979888916 287.109771729 286.170318604 285.080474854 287.24029541 287.25982666 287.559631348 288.229553223 288.769592285 288.74029541 288.210021973 287.690490723 287.460021973 287.469787598 287.780334473 288.40045166 288.839904785 288.469787598 287.229553223 285.700256348 284.389709473 285.969604492 286.129760742 286.559448242 287.330932617 288.059448242 288.309448242 288.090698242 287.830932617 287.709838867 287.719604492 287.840698242 288.059448242 287.989135742 287.069213867 285.299682617 283.389526367 282.039916992 286.750396729 287.100006104 287.489654541 287.909576416 288.180084229 288.199615479 288.010162354 287.790435791 287.640045166 287.750396729 288.220123291 288.750396729 288.779693604 288.119537354 287.119537354 286.109771729 285.010162354 286.790100098 286.820373535 287.16998291 287.90045166 288.50982666 288.460021973 287.940490723 287.530334473 287.460021973 287.559631348 287.910217285 288.639709473 289.250061035 288.969787598 287.65045166 285.969787598 284.589904785 285.709838867 285.770385742 286.229370117 287.119995117 287.909057617 288.110229492 287.879760742 287.709838867 287.729370117 287.799682617 287.940307617 288.270385742 288.360229492 287.520385742 285.659057617 283.549682617 282.039916992 286.500396729 286.949615479 287.409576416 287.869537354 288.149810791 288.199615479 288.130279541 288.019927979 287.899810791 287.939849854 288.369537354 288.960357666 289.100006104 288.430084229 287.290435791 286.090240479 284.819732666 286.519592285 286.570373535 286.889709473 287.65045166 288.320373535 288.34967041 287.910217285 287.620178223 287.65045166 287.769592285 288.089904785 288.870178223 289.639709473 289.479553223 288.110412598 286.280334473 284.750061035 285.510620117 285.469604492 285.920776367 286.889526367 287.770385742 288.030151367 287.840698242 287.739135742 287.789916992 287.830932617 288.000854492 288.520385742 288.889526367 288.200073242 286.239135742 283.860229492 282.020385742 286.350006104 286.899810791 287.479888916 288.019927979 288.350006104 288.409576416 288.330474854 288.220123291 288.050201416 287.979888916 288.369537354 289.090240479 289.439849854 288.869537354 287.640045166 286.250396729 284.760162354 286.41998291 286.549865723 286.870178223 287.620178223 288.370178223 288.49029541 288.089904785 287.799865723 287.809631348 287.90045166 288.200256348 289.019592285 289.940490723 289.91998291 288.559631348 286.620178223 284.90045166 285.330932617 285.270385742 285.700073242 286.729370117 287.750854492 288.110229492 287.959838867 287.809448242 287.780151367 287.729370117 287.969604492 288.760620117 289.520385742 289.100463867 287.119995117 284.409057617 282.090698242 286.260162354 286.899810791 287.580474854 288.189849854 288.529693604 288.519927979 288.380279541 288.239654541 288.080474854 287.989654541 288.380279541 289.220123291 289.800201416 289.399810791 288.189849854 286.699615479 285.100006104 286.410217285 286.639709473 286.940490723 287.679748535 288.49029541 288.66998291 288.25982666 287.889709473 287.879943848 288.00982666 288.34967041 289.24029541 290.269592285 290.370178223 289.089904785 287.09967041 285.25982666 285.200073242 285.170776367 285.619995117 286.719604492 287.840698242 288.250854492 288.069213867 287.860229492 287.770385742 287.729370117 288.059448242 289.080932617 290.180541992 290.080932617 288.229370117 285.319213867 282.510620117 286.260162354 286.960357666 287.689849854 288.330474854 288.590240479 288.500396729 288.319732666 288.269927979 288.210357666 288.159576416 288.550201416 289.470123291 290.229888916 290.029693604 288.920318604 287.430084229 285.800201416 286.370178223 286.59967041 286.870178223 287.610412598 288.500061035 288.75982666 288.360412598 288.000061035 288.030334473 288.25982666 288.700256348 289.639709473 290.719787598 290.91998291 289.74029541 287.790100098 285.91998291 285.090698242 285.110229492 285.619995117 286.819213867 288.039916992 288.450073242 288.200073242 287.969604492 287.979370117 288.059448242 288.440307617 289.489135742 290.750854492 290.979370117 289.459838867 286.619995117 283.500854492 286.309967041 287.090240479 287.920318604 288.529693604 288.710357666 288.529693604 288.369537354 288.420318604 288.430084229 288.380279541 288.739654541 289.739654541 290.720123291 290.750396729 289.720123291 288.229888916 286.600006104 286.250061035 286.410217285 286.690490723 287.500061035 288.479553223 288.839904785 288.540100098 288.250061035 288.320373535 288.589904785 289.08013916 290.089904785 291.280334473 291.589904785 290.469787598 288.559631348 286.690490723 284.920776367 285.000854492 285.619995117 286.969604492 288.280151367 288.700073242 288.420776367 288.239135742 288.389526367 288.580932617 288.909057617 289.860229492 291.180541992 291.760620117 290.739135742 288.239135742 285.049682617 286.390045166 287.399810791 288.390045166 288.949615479 288.949615479 288.640045166 288.489654541 288.569732666 288.559967041 288.439849854 288.779693604 289.949615479 291.199615479 291.449615479 290.420318604 288.819732666 287.109771729 286.120178223 286.309631348 286.710021973 287.610412598 288.610412598 289.00982666 288.799865723 288.559631348 288.589904785 288.780334473 289.280334473 290.429748535 291.839904785 292.309631348 291.200256348 289.190490723 287.269592285 284.729370117 284.920776367 285.680541992 287.170776367 288.539916992 288.969604492 288.700073242 288.580932617 288.789916992 288.979370117 289.239135742 290.159057617 291.639526367 292.619995117 292.129760742 290.080932617 287.020385742 286.529693604 287.909576416 289.090240479 289.510162354 289.220123291 288.729888916 288.540435791 288.609771729 288.559967041 288.399810791 288.830474854 290.189849854 291.670318604 292.010162354 290.859771729 289.010162354 287.159576416 286.08013916 286.460021973 287.08013916 288.019592285 288.870178223 289.190490723 289.019592285 288.790100098 288.74029541 288.839904785 289.389709473 290.780334473 292.450256348 293.030334473 291.809631348 289.559631348 287.49029541 284.649291992 285.030151367 285.959838867 287.479370117 288.809448242 289.209838867 288.969604492 288.869995117 289.039916992 289.159057617 289.479370117 290.619995117 292.450073242 293.789916992 293.639526367 291.940307617 289.119995117 286.830474854 288.600006104 289.890045166 290.080474854 289.470123291 288.809967041 288.609771729 288.680084229 288.640045166 288.600006104 289.170318604 290.609771729 292.100006104 292.330474854 290.960357666 288.809967041 286.790435791 286.190490723 286.799865723 287.58013916 288.450256348 289.08013916 289.25982666 289.129943848 288.969787598 288.889709473 289.00982666 289.719787598 291.320373535 293.09967041 293.620178223 292.160217285 289.620178223 287.34967041 284.700073242 285.379760742 286.440307617 287.869995117 289.049682617 289.399291992 289.229370117 289.149291992 289.250854492 289.350463867 289.860229492 291.399291992 293.619995117 295.180541992 295.100463867 293.520385742 291.020385742 287.309967041 289.369537354 290.659576416 290.619537354 289.790435791 289.069732666 288.830474854 288.859771729 288.859771729 288.989654541 289.720123291 291.140045166 292.420318604 292.430084229 290.830474854 288.439849854 286.210357666 286.440490723 287.160217285 287.950256348 288.66998291 289.160217285 289.33013916 289.290100098 289.190490723 289.129943848 289.339904785 290.250061035 291.960021973 293.639709473 293.91998291 292.200256348 289.429748535 286.99029541 284.830932617 285.770385742 286.920776367 288.229370117 289.239135742 289.580932617 289.489135742 289.459838867 289.520385742 289.639526367 290.350463867 292.219604492 294.700073242 296.319213867 296.139526367 294.549682617 292.330932617 287.979888916 290.180084229 291.390045166 291.199615479 290.290435791 289.500396729 289.130279541 288.979888916 288.949615479 289.239654541 290.149810791 291.529693604 292.630279541 292.460357666 290.769927979 288.210357666 285.729888916 286.90045166 287.58013916 288.24029541 288.839904785 289.280334473 289.530334473 289.559631348 289.429748535 289.299865723 289.58013916 290.65045166 292.41998291 293.929748535 293.960021973 292.09967041 289.250061035 286.660217285 284.989135742 286.110229492 287.309448242 288.539916992 289.450073242 289.770385742 289.719604492 289.709838867 289.750854492 289.879760742 290.680541992 292.670776367 295.239135742 296.860229492 296.590698242 294.950073242 292.889526367 288.779693604 291.040435791 292.149810791 291.830474854 290.809967041 289.899810791 289.309967041 288.949615479 288.840240479 289.250396729 290.319732666 291.769927979 292.850006104 292.699615479 291.010162354 288.359771729 285.619537354 287.610412598 288.280334473 288.790100098 289.219787598 289.58013916 289.790100098 289.799865723 289.59967041 289.379943848 289.65045166 290.820373535 292.65045166 294.120178223 294.059631348 292.24029541 289.41998291 286.710021973 285.319213867 286.510620117 287.719604492 288.920776367 289.739135742 289.959838867 289.869995117 289.850463867 289.899291992 290.049682617 290.819213867 292.770385742 295.330932617 296.969604492 296.709838867 294.989135742 292.879760742 289.720123291 292.019927979 292.970123291 292.399810791 291.149810791 290.040435791 289.340240479 288.949615479 288.890045166 289.330474854 290.439849854 291.970123291 293.189849854 293.189849854 291.600006104 288.939849854 286.050201416 288.519592285 289.339904785 289.75982666 289.929748535 289.950256348 289.929748535 289.889709473 289.750061035 289.559631348 289.790100098 290.929748535 292.799865723 294.34967041 294.440490723 292.790100098 290.120178223 287.339904785 285.879760742 287.139526367 288.369995117 289.520385742 290.159057617 290.159057617 289.940307617 289.959838867 290.110229492 290.270385742 290.979370117 292.840698242 295.360229492 297.049682617 296.819213867 295.030151367 292.780151367 280.649780273 280.569702148 280.550170898 280.659545898 280.809936523 280.840209961 280.659545898 280.399780273 280.199584961 280.069702148 279.909545898 279.830444336 279.989624023 280.349975586 280.519897461 280.040405273 278.790405273 280.250061035 280.58013916 280.790100098 281.019592285 281.160217285 280.979553223 280.530334473 280.08013916 279.860412598 279.820373535 279.809631348 279.929748535 280.309631348 280.75982666 280.780334473 279.99029541 278.519592285 280.589294434 281.329528809 281.819763184 281.970153809 281.819763184 281.509216309 281.120544434 280.720153809 280.380310059 280.319763184 280.579528809 281.050231934 281.649841309 282.329528809 282.800231934 282.550231934 281.390075684 281.319702148 281.090209961 280.870483398 280.790405273 280.840209961 280.870483398 280.729858398 280.439819336 280.180053711 280.010131836 279.909545898 279.899780273 280.099975586 280.470092773 280.659545898 280.220092773 278.989624023 280.530334473 280.58013916 280.629943848 280.879943848 281.129943848 280.99029541 280.49029541 279.979553223 279.729553223 279.710021973 279.780334473 280.019592285 280.500061035 280.91998291 280.84967041 280.000061035 278.570373535 280.909606934 281.370544434 281.599060059 281.700622559 281.679138184 281.499450684 281.169372559 280.770935059 280.460388184 280.440856934 280.739685059 281.249450684 281.940856934 282.720153809 283.270935059 283.020935059 281.790466309 281.859741211 281.460327148 281.050170898 280.830444336 280.840209961 280.909545898 280.800170898 280.479858398 280.159545898 279.989624023 279.930053711 280.000366211 280.260131836 280.670288086 280.890014648 280.449584961 279.109741211 280.820373535 280.58013916 280.49029541 280.75982666 281.09967041 281.030334473 280.519592285 279.969787598 279.660217285 279.610412598 279.75982666 280.160217285 280.74029541 281.160217285 280.969787598 280.019592285 278.50982666 281.009216309 281.229919434 281.309997559 281.470153809 281.620544434 281.569763184 281.270935059 280.839294434 280.479919434 280.419372559 280.720153809 281.329528809 282.159606934 283.050231934 283.620544434 283.339294434 282.040466309 282.309936523 281.769897461 281.210327148 280.859741211 280.849975586 280.949584961 280.870483398 280.550170898 280.210327148 280.010131836 279.960327148 280.059936523 280.380249023 280.890014648 281.189819336 280.710327148 279.189819336 281.110412598 280.710021973 280.50982666 280.729553223 281.08013916 281.070373535 280.610412598 280.049865723 279.700256348 279.610412598 279.799865723 280.320373535 281.019592285 281.460021973 281.210021973 280.09967041 278.379943848 280.999450684 281.050231934 281.110778809 281.380310059 281.679138184 281.690856934 281.360778809 280.880310059 280.460388184 280.329528809 280.649841309 281.409606934 282.419372559 283.380310059 283.890075684 283.520935059 282.120544434 282.840209961 282.210327148 281.470092773 280.949584961 280.819702148 280.909545898 280.840209961 280.529663086 280.210327148 280.019897461 279.960327148 280.050170898 280.439819336 281.090209961 281.500366211 281.000366211 279.290405273 281.559631348 281.09967041 280.75982666 280.780334473 280.99029541 281.000061035 280.660217285 280.179748535 279.860412598 279.75982666 279.979553223 280.559631348 281.33013916 281.799865723 281.49029541 280.280334473 278.34967041 281.069763184 281.009216309 281.050231934 281.360778809 281.690856934 281.690856934 281.360778809 280.909606934 280.530700684 280.419372559 280.809997559 281.729919434 282.849060059 283.770935059 284.120544434 283.620544434 282.110778809 283.470092773 282.760131836 281.809936523 281.040405273 280.760131836 280.769897461 280.680053711 280.380249023 280.109741211 280.000366211 279.949584961 280.040405273 280.500366211 281.269897461 281.790405273 281.269897461 279.470092773 282.160217285 281.700256348 281.139709473 280.820373535 280.809631348 280.820373535 280.620178223 280.290100098 280.059631348 280.019592285 280.25982666 280.820373535 281.570373535 282.049865723 281.769592285 280.559631348 278.549865723 281.229919434 281.069763184 281.030700684 281.280700684 281.540466309 281.550231934 281.309997559 281.009216309 280.770935059 280.759216309 281.220153809 282.200622559 283.309997559 284.110778809 284.270935059 283.640075684 282.089294434 284.000366211 283.149780273 281.989624023 281.029663086 280.680053711 280.670288086 280.540405273 280.220092773 279.989624023 279.949584961 279.949584961 280.040405273 280.529663086 281.380249023 281.939819336 281.420288086 279.599975586 282.710021973 282.210021973 281.40045166 280.75982666 280.59967041 280.66998291 280.620178223 280.379943848 280.190490723 280.200256348 280.450256348 280.979553223 281.679748535 282.15045166 281.960021973 280.860412598 278.910217285 281.309997559 281.059997559 280.919372559 281.079528809 281.339294434 281.440856934 281.349060059 281.210388184 281.079528809 281.110778809 281.589294434 282.520935059 283.530700684 284.169372559 284.220153809 283.569763184 282.050231934 284.180053711 283.149780273 281.849975586 280.899780273 280.620483398 280.689819336 280.529663086 280.149780273 279.930053711 279.939819336 279.979858398 280.069702148 280.569702148 281.430053711 281.930053711 281.340209961 279.580444336 283.000061035 282.370178223 281.370178223 280.59967041 280.49029541 280.710021973 280.700256348 280.389709473 280.139709473 280.179748535 280.479553223 281.000061035 281.66998291 282.16998291 282.059631348 281.049865723 279.200256348 281.200622559 280.870544434 280.679138184 280.839294434 281.220153809 281.499450684 281.540466309 281.429138184 281.290466309 281.319763184 281.749450684 282.589294434 283.489685059 284.040466309 284.030700684 283.380310059 281.929138184 283.970092773 282.779663086 281.519897461 280.710327148 280.609741211 280.750366211 280.559936523 280.120483398 279.909545898 279.970092773 280.029663086 280.149780273 280.699584961 281.540405273 281.890014648 281.149780273 279.409545898 282.969787598 282.16998291 281.139709473 280.469787598 280.540100098 280.84967041 280.780334473 280.320373535 280.000061035 280.070373535 280.469787598 281.059631348 281.75982666 282.290100098 282.15045166 281.129943848 279.299865723 280.929138184 280.569763184 280.399841309 280.669372559 281.229919434 281.669372559 281.739685059 281.559997559 281.349060059 281.399841309 281.829528809 282.630310059 283.460388184 283.960388184 283.909606934 283.200622559 281.720153809 283.500366211 282.279663086 281.210327148 280.620483398 280.640014648 280.779663086 280.540405273 280.090209961 279.909545898 280.019897461 280.109741211 280.290405273 280.930053711 281.779663086 281.989624023 281.040405273 279.269897461 282.710021973 281.799865723 280.910217285 280.500061035 280.700256348 280.979553223 280.750061035 280.200256348 279.90045166 280.08013916 280.589904785 281.25982666 282.00982666 282.519592285 282.299865723 281.15045166 279.25982666 280.669372559 280.309997559 280.220153809 280.589294434 281.270935059 281.770935059 281.790466309 281.499450684 281.300231934 281.440856934 281.960388184 282.739685059 283.530700684 284.020935059 283.929138184 283.099060059 281.509216309 282.880249023 281.809936523 281.019897461 280.649780273 280.720092773 280.790405273 280.500366211 280.080444336 279.960327148 280.069702148 280.149780273 280.390014648 281.149780273 282.040405273 282.149780273 281.059936523 279.290405273 282.269592285 281.389709473 280.780334473 280.639709473 280.889709473 280.99029541 280.629943848 280.120178223 279.979553223 280.269592285 280.780334473 281.410217285 282.15045166 282.639709473 282.360412598 281.139709473 279.250061035 280.409606934 280.140075684 280.149841309 280.579528809 281.270935059 281.729919434 281.659606934 281.319763184 281.179138184 281.440856934 281.989685059 282.700622559 283.429138184 283.929138184 283.860778809 282.999450684 281.349060059 282.250366211 281.399780273 280.880249023 280.680053711 280.760131836 280.790405273 280.529663086 280.159545898 280.040405273 280.099975586 280.130249023 280.399780273 281.199584961 282.090209961 282.149780273 281.090209961 279.439819336 281.750061035 280.979553223 280.629943848 280.710021973 280.950256348 280.929748535 280.58013916 280.219787598 280.210021973 280.49029541 280.860412598 281.360412598 282.00982666 282.49029541 282.24029541 281.089904785 279.33013916 280.229919434 280.050231934 280.120544434 280.559997559 281.229919434 281.640075684 281.540466309 281.200622559 281.069763184 281.329528809 281.819763184 282.399841309 283.009216309 283.479919434 283.509216309 282.790466309 281.280700684 281.809936523 281.130249023 280.729858398 280.580444336 280.670288086 280.739624023 280.540405273 280.239624023 280.120483398 280.120483398 280.149780273 280.430053711 281.189819336 281.979858398 282.010131836 281.080444336 279.649780273 281.370178223 280.65045166 280.389709473 280.570373535 280.839904785 280.860412598 280.629943848 280.440490723 280.469787598 280.629943848 280.860412598 281.280334473 281.90045166 282.33013916 282.089904785 281.09967041 279.50982666 280.270935059 280.130310059 280.149841309 280.530700684 281.149841309 281.559997559 281.509216309 281.220153809 281.069763184 281.229919434 281.620544434 282.110778809 282.579528809 282.960388184 283.009216309 282.489685059 281.239685059 281.710327148 281.130249023 280.659545898 280.449584961 280.529663086 280.620483398 280.500366211 280.260131836 280.170288086 280.199584961 280.309936523 280.680053711 281.380249023 282.000366211 281.939819336 281.140014648 279.920288086 281.40045166 280.620178223 280.229553223 280.339904785 280.65045166 280.820373535 280.75982666 280.660217285 280.639709473 280.700256348 280.969787598 281.549865723 282.229553223 282.570373535 282.24029541 281.280334473 279.809631348 280.700622559 280.460388184 280.290466309 280.479919434 280.979919434 281.390075684 281.450622559 281.270935059 281.089294434 281.149841309 281.550231934 282.120544434 282.589294434 282.759216309 282.659606934 282.200622559 281.200622559 281.930053711 281.380249023 280.809936523 280.489624023 280.489624023 280.529663086 280.420288086 280.239624023 280.220092773 280.330444336 280.559936523 281.029663086 281.739624023 282.220092773 282.059936523 281.279663086 280.159545898 281.84967041 280.940490723 280.339904785 280.280334473 280.549865723 280.780334473 280.870178223 280.83013916 280.74029541 280.769592285 281.179748535 282.040100098 282.870178223 283.120178223 282.59967041 281.58013916 280.15045166 281.390075684 280.979919434 280.559997559 280.509216309 280.790466309 281.110778809 281.249450684 281.179138184 280.989685059 280.970153809 281.419372559 282.229919434 282.849060059 282.899841309 282.530700684 281.999450684 281.130310059 282.050170898 281.590209961 281.059936523 280.729858398 280.630249023 280.559936523 280.399780273 280.290405273 280.309936523 280.390014648 280.569702148 281.069702148 281.819702148 282.279663086 282.050170898 281.220092773 280.090209961 282.269592285 281.360412598 280.690490723 280.49029541 280.620178223 280.809631348 280.950256348 280.99029541 280.870178223 280.820373535 281.219787598 282.16998291 283.070373535 283.269592285 282.690490723 281.66998291 280.339904785 281.880310059 281.390075684 280.880310059 280.700622559 280.739685059 280.860778809 280.999450684 281.030700684 280.809997559 280.599060059 280.950622559 281.919372559 282.770935059 282.870544434 282.409606934 281.839294434 281.079528809 281.790405273 281.489624023 281.180053711 280.970092773 280.809936523 280.599975586 280.399780273 280.380249023 280.439819336 280.359741211 280.279663086 280.609741211 281.349975586 281.870483398 281.620483398 280.710327148 279.519897461 282.229553223 281.519592285 281.030334473 280.809631348 280.74029541 280.799865723 281.00982666 281.210021973 281.139709473 280.889709473 280.969787598 281.639709473 282.440490723 282.66998291 282.190490723 281.320373535 280.179748535 281.829528809 281.470153809 281.140075684 281.009216309 280.909606934 280.829528809 280.919372559 281.040466309 280.800231934 280.309997559 280.300231934 281.110778809 282.079528809 282.399841309 282.089294434 281.649841309 281.020935059 281.260131836 281.149780273 281.090209961 281.059936523 280.880249023 280.580444336 280.390014648 280.500366211 280.649780273 280.430053711 280.029663086 280.090209961 280.729858398 281.269897461 280.989624023 279.960327148 278.680053711 281.790100098 281.389709473 281.160217285 280.960021973 280.750061035 280.710021973 281.019592285 281.460021973 281.540100098 281.129943848 280.769592285 280.979553223 281.549865723 281.820373535 281.469787598 280.729553223 279.700256348 281.399841309 281.270935059 281.239685059 281.249450684 281.120544434 280.909606934 280.989685059 281.270935059 281.149841309 280.460388184 279.989685059 280.370544434 281.239685059 281.720153809 281.649841309 281.380310059 280.890075684 280.960327148 280.960327148 281.029663086 281.080444336 280.920288086 280.599975586 280.430053711 280.649780273 280.920288086 280.739624023 280.199584961 280.059936523 280.559936523 281.040405273 280.699584961 279.529663086 278.080444336 281.49029541 281.269592285 281.129943848 280.90045166 280.59967041 280.540100098 280.940490723 281.589904785 281.889709473 281.549865723 281.019592285 280.940490723 281.339904785 281.610412598 281.25982666 280.389709473 279.200256348 281.140075684 281.169372559 281.229919434 281.270935059 281.130310059 280.890075684 280.989685059 281.450622559 281.589294434 280.999450684 280.280700684 280.259216309 280.819763184 281.249450684 281.259216309 281.050231934 280.569763184 281.229858398 281.239624023 281.250366211 281.279663086 281.159545898 280.849975586 280.649780273 280.859741211 281.210327148 281.180053711 280.760131836 280.569702148 280.960327148 281.349975586 280.960327148 279.699584961 278.050170898 281.719787598 281.49029541 281.179748535 280.799865723 280.49029541 280.469787598 280.84967041 281.530334473 282.040100098 282.00982666 281.679748535 281.620178223 281.979553223 282.210021973 281.729553223 280.559631348 279.00982666 281.380310059 281.399841309 281.270935059 281.159606934 281.009216309 280.770935059 280.819763184 281.309997559 281.710388184 281.450622559 280.860778809 280.659606934 280.929138184 281.140075684 280.999450684 280.679138184 280.159606934 281.920288086 281.890014648 281.739624023 281.680053711 281.630249023 281.370483398 281.059936523 281.080444336 281.390014648 281.510131836 281.269897461 281.120483398 281.409545898 281.760131836 281.430053711 280.220092773 278.470092773 282.33013916 282.000061035 281.410217285 280.839904785 280.58013916 280.610412598 280.870178223 281.379943848 281.960021973 282.269592285 282.280334473 282.360412598 282.729553223 282.950256348 282.41998291 281.049865723 279.250061035 281.970153809 281.890075684 281.479919434 281.190856934 281.040466309 280.809997559 280.690856934 280.979919434 281.450622559 281.540466309 281.239685059 281.059997559 281.149841309 281.159606934 280.839294434 280.390075684 279.839294434 282.590209961 282.529663086 282.239624023 282.120483398 282.109741211 281.859741211 281.430053711 281.239624023 281.430053711 281.620483398 281.519897461 281.390014648 281.580444336 281.880249023 281.670288086 280.640014648 278.960327148 282.860412598 282.50982666 281.729553223 281.059631348 280.860412598 280.910217285 281.000061035 281.290100098 281.839904785 282.320373535 282.469787598 282.559631348 282.889709473 283.179748535 282.790100098 281.530334473 279.769592285 282.450622559 282.329528809 281.800231934 281.450622559 281.349060059 281.120544434 280.780700684 280.780700684 281.159606934 281.419372559 281.300231934 281.120544434 281.130310059 281.059997559 280.739685059 280.290466309 279.839294434 282.930053711 282.890014648 282.569702148 282.370483398 282.309936523 282.029663086 281.540405273 281.269897461 281.430053711 281.670288086 281.659545898 281.510131836 281.599975586 281.800170898 281.649780273 280.809936523 279.300170898 283.000061035 282.769592285 282.019592285 281.370178223 281.179748535 281.16998291 281.139709473 281.320373535 281.820373535 282.25982666 282.320373535 282.269592285 282.540100098 282.910217285 282.780334473 281.860412598 280.360412598 282.579528809 282.559997559 282.110778809 281.800231934 281.720153809 281.429138184 280.960388184 280.819763184 281.149841309 281.419372559 281.239685059 280.940856934 280.839294434 280.819763184 280.649841309 280.399841309 280.140075684 282.920288086 282.979858398 282.680053711 282.399780273 282.210327148 281.880249023 281.460327148 281.290405273 281.500366211 281.790405273 281.849975586 281.750366211 281.739624023 281.790405273 281.569702148 280.849975586 279.540405273 282.83013916 282.799865723 282.250061035 281.690490723 281.410217285 281.269592285 281.190490723 281.389709473 281.83013916 282.120178223 282.040100098 281.950256348 282.200256348 282.59967041 282.639709473 282.040100098 280.879943848 282.509216309 282.640075684 282.370544434 282.079528809 281.890075684 281.499450684 281.030700684 280.970153809 281.370544434 281.589294434 281.239685059 280.690856934 280.419372559 280.450622559 280.520935059 280.559997559 280.509216309 282.720092773 282.859741211 282.609741211 282.279663086 281.960327148 281.649780273 281.399780273 281.390014648 281.620483398 281.899780273 282.010131836 282.010131836 281.970092773 281.830444336 281.479858398 280.840209961 279.769897461 282.549865723 282.710021973 282.440490723 282.000061035 281.589904785 281.290100098 281.219787598 281.460021973 281.769592285 281.84967041 281.729553223 281.769592285 282.120178223 282.479553223 282.50982666 282.15045166 281.299865723 282.489685059 282.729919434 282.589294434 282.259216309 281.849060059 281.360778809 280.989685059 281.120544434 281.599060059 281.739685059 281.220153809 280.479919434 280.040466309 280.050231934 280.300231934 280.620544434 280.749450684 282.489624023 282.649780273 282.399780273 282.029663086 281.729858398 281.529663086 281.500366211 281.609741211 281.760131836 281.890014648 282.019897461 282.099975586 282.040405273 281.739624023 281.300170898 280.800170898 279.970092773 282.290100098 282.570373535 282.570373535 282.250061035 281.74029541 281.360412598 281.320373535 281.549865723 281.65045166 281.49029541 281.410217285 281.719787598 282.200256348 282.429748535 282.360412598 282.16998291 281.620178223 282.550231934 282.860778809 282.800231934 282.390075684 281.809997559 281.259216309 281.030700684 281.280700684 281.690856934 281.700622559 281.130310059 280.349060059 279.819763184 279.729919434 280.040466309 280.569763184 280.849060059 282.340209961 282.439819336 282.159545898 281.800170898 281.559936523 281.519897461 281.659545898 281.809936523 281.849975586 281.840209961 281.930053711 282.050170898 281.949584961 281.519897461 281.059936523 280.689819336 280.059936523 282.089904785 282.469787598 282.660217285 282.429748535 281.889709473 281.469787598 281.479553223 281.66998291 281.549865723 281.200256348 281.200256348 281.74029541 282.290100098 282.34967041 282.179748535 282.160217285 281.84967041 282.610778809 282.970153809 282.950622559 282.499450684 281.829528809 281.309997559 281.200622559 281.429138184 281.640075684 281.509216309 281.020935059 280.390075684 279.849060059 279.640075684 279.909606934 280.530700684 280.880310059 282.309936523 282.359741211 282.029663086 281.670288086 281.460327148 281.489624023 281.699584961 281.890014648 281.899780273 281.849975586 281.920288086 282.029663086 281.870483398 281.349975586 280.849975586 280.510131836 279.939819336 282.030334473 282.460021973 282.75982666 282.589904785 282.030334473 281.570373535 281.59967041 281.750061035 281.530334473 281.120178223 281.179748535 281.809631348 282.299865723 282.219787598 282.00982666 282.08013916 281.889709473 282.569763184 283.020935059 283.050231934 282.559997559 281.839294434 281.370544434 281.339294434 281.520935059 281.550231934 281.329528809 280.999450684 280.599060059 280.120544434 279.809997559 280.030700684 280.620544434 280.909606934 282.330444336 282.380249023 282.050170898 281.670288086 281.439819336 281.409545898 281.599975586 281.849975586 281.960327148 281.939819336 281.989624023 282.050170898 281.849975586 281.309936523 280.710327148 280.210327148 279.540405273 282.120178223 282.559631348 282.879943848 282.750061035 282.190490723 281.690490723 281.629943848 281.75982666 281.58013916 281.210021973 281.250061035 281.769592285 282.15045166 282.019592285 281.780334473 281.809631348 281.58013916 282.509216309 283.030700684 283.120544434 282.620544434 281.839294434 281.360778809 281.370544434 281.540466309 281.479919434 281.249450684 281.069763184 280.829528809 280.409606934 280.110778809 280.329528809 280.870544434 281.030700684 282.269897461 282.390014648 282.109741211 281.750366211 281.470092773 281.340209961 281.479858398 281.790405273 282.019897461 282.040405273 281.989624023 281.960327148 281.769897461 281.269897461 280.569702148 279.830444336 278.960327148 282.299865723 282.65045166 282.90045166 282.83013916 282.34967041 281.820373535 281.65045166 281.74029541 281.639709473 281.33013916 281.24029541 281.540100098 281.769592285 281.65045166 281.379943848 281.229553223 280.860412598 282.429138184 282.989685059 283.179138184 282.739685059 281.950622559 281.409606934 281.390075684 281.540466309 281.479919434 281.280700684 281.120544434 280.909606934 280.540466309 280.349060059 280.679138184 281.190856934 281.239685059 282.109741211 282.340209961 282.140014648 281.840209961 281.559936523 281.370483398 281.460327148 281.809936523 282.099975586 282.069702148 281.880249023 281.760131836 281.630249023 281.239624023 280.489624023 279.519897461 278.500366211 282.460021973 282.639709473 282.74029541 282.729553223 282.40045166 281.90045166 281.639709473 281.719787598 281.719787598 281.440490723 281.16998291 281.179748535 281.309631348 281.24029541 280.91998291 280.49029541 280.000061035 282.270935059 282.829528809 283.140075684 282.880310059 282.159606934 281.569763184 281.460388184 281.579528809 281.559997559 281.360778809 281.149841309 280.860778809 280.499450684 280.460388184 280.909606934 281.409606934 281.429138184 281.960327148 282.260131836 282.159545898 281.949584961 281.710327148 281.470092773 281.500366211 281.819702148 282.120483398 282.040405273 281.750366211 281.599975586 281.590209961 281.340209961 280.590209961 279.489624023 278.380249023 282.540100098 282.519592285 282.469787598 282.500061035 282.320373535 281.870178223 281.549865723 281.639709473 281.790100098 281.59967041 281.200256348 281.00982666 281.089904785 281.08013916 280.66998291 279.99029541 279.360412598 282.020935059 282.499450684 282.909606934 282.899841309 282.349060059 281.729919434 281.520935059 281.620544434 281.649841309 281.479919434 281.210388184 280.829528809 280.489685059 280.520935059 280.979919434 281.409606934 281.460388184 281.870483398 282.239624023 282.250366211 282.140014648 281.920288086 281.630249023 281.529663086 281.769897461 282.050170898 281.989624023 281.729858398 281.640014648 281.750366211 281.630249023 280.909545898 279.750366211 278.580444336 282.49029541 282.339904785 282.219787598 282.299865723 282.179748535 281.729553223 281.379943848 281.50982666 281.83013916 281.799865723 281.429748535 281.179748535 281.250061035 281.269592285 280.809631348 279.929748535 279.16998291 281.759216309 282.110778809 282.569763184 282.759216309 282.380310059 281.780700684 281.520935059 281.620544434 281.739685059 281.649841309 281.380310059 280.970153809 280.630310059 280.630310059 280.919372559 281.149841309 281.259216309 281.760131836 282.199584961 282.309936523 282.300170898 282.109741211 281.760131836 281.540405273 281.699584961 281.979858398 282.010131836 281.830444336 281.800170898 282.010131836 281.960327148 281.269897461 280.069702148 278.859741211 282.250061035 282.08013916 282.030334473 282.16998291 282.089904785 281.629943848 281.250061035 281.40045166 281.84967041 282.000061035 281.74029541 281.479553223 281.519592285 281.549865723 281.09967041 280.16998291 279.290100098 281.559997559 281.790466309 282.229919434 282.540466309 282.300231934 281.759216309 281.499450684 281.640075684 281.829528809 281.819763184 281.589294434 281.220153809 280.890075684 280.800231934 280.839294434 280.839294434 280.919372559 281.529663086 281.970092773 282.189819336 282.269897461 282.140014648 281.800170898 281.559936523 281.680053711 281.989624023 282.090209961 281.960327148 281.960327148 282.159545898 282.149780273 281.479858398 280.260131836 279.019897461 281.799865723 281.719787598 281.84967041 282.110412598 282.059631348 281.610412598 281.250061035 281.389709473 281.860412598 282.09967041 281.91998291 281.629943848 281.559631348 281.559631348 281.210021973 280.370178223 279.450256348 281.450622559 281.579528809 281.989685059 282.370544434 282.239685059 281.770935059 281.520935059 281.659606934 281.839294434 281.849060059 281.679138184 281.380310059 281.089294434 280.919372559 280.819763184 280.659606934 280.700622559 281.239624023 281.609741211 281.849975586 282.000366211 281.949584961 281.710327148 281.550170898 281.689819336 282.000366211 282.120483398 282.000366211 281.939819336 282.099975586 282.120483398 281.510131836 280.340209961 279.080444336 281.360412598 281.389709473 281.700256348 282.040100098 282.00982666 281.629943848 281.33013916 281.450256348 281.839904785 282.070373535 281.910217285 281.549865723 281.33013916 281.290100098 281.070373535 280.41998291 279.540100098 281.409606934 281.489685059 281.870544434 282.270935059 282.200622559 281.790466309 281.550231934 281.620544434 281.720153809 281.700622559 281.589294434 281.349060059 281.059997559 280.880310059 280.780700684 280.649841309 280.669372559 281.019897461 281.309936523 281.510131836 281.620483398 281.630249023 281.529663086 281.479858398 281.630249023 281.880249023 281.970092773 281.830444336 281.729858398 281.840209961 281.899780273 281.420288086 280.330444336 279.109741211 281.16998291 281.299865723 281.710021973 282.000061035 281.91998291 281.589904785 281.379943848 281.469787598 281.729553223 281.910217285 281.75982666 281.360412598 281.030334473 280.979553223 280.91998291 280.450256348 279.570373535 281.499450684 281.530700684 281.829528809 282.190856934 282.149841309 281.780700684 281.540466309 281.509216309 281.530700684 281.520935059 281.489685059 281.270935059 280.880310059 280.630310059 280.620544434 280.649841309 280.679138184 280.970092773 281.180053711 281.319702148 281.359741211 281.370483398 281.370483398 281.390014648 281.510131836 281.659545898 281.720092773 281.590209961 281.439819336 281.489624023 281.569702148 281.199584961 280.189819336 278.979858398 281.280334473 281.50982666 281.90045166 282.040100098 281.809631348 281.49029541 281.33013916 281.379943848 281.540100098 281.660217285 281.540100098 281.15045166 280.799865723 280.780334473 280.84967041 280.500061035 279.629943848 281.800231934 281.710388184 281.839294434 282.079528809 282.020935059 281.720153809 281.509216309 281.450622559 281.429138184 281.479919434 281.540466309 281.290466309 280.729919434 280.309997559 280.349060059 280.569763184 280.610778809 281.040405273 281.210327148 281.279663086 281.250366211 281.220092773 281.309936523 281.409545898 281.479858398 281.559936523 281.609741211 281.489624023 281.300170898 281.229858398 281.239624023 280.830444336 279.800170898 278.510131836 281.540100098 281.799865723 282.09967041 282.070373535 281.710021973 281.370178223 281.24029541 281.250061035 281.320373535 281.40045166 281.299865723 280.91998291 280.540100098 280.540100098 280.710021973 280.469787598 279.66998291 282.229919434 281.919372559 281.809997559 281.890075684 281.819763184 281.610778809 281.489685059 281.470153809 281.460388184 281.559997559 281.679138184 281.409606934 280.690856934 280.089294434 280.120544434 280.479919434 280.569763184 281.149780273 281.279663086 281.309936523 281.189819336 281.159545898 281.300170898 281.449584961 281.519897461 281.590209961 281.670288086 281.599975586 281.349975586 281.149780273 281.010131836 280.489624023 279.260131836 277.779663086 281.769592285 281.979553223 282.15045166 281.979553223 281.570373535 281.250061035 281.139709473 281.129943848 281.160217285 281.190490723 281.040100098 280.59967041 280.139709473 280.08013916 280.25982666 280.16998291 279.589904785 282.550231934 281.999450684 281.649841309 281.589294434 281.540466309 281.450622559 281.440856934 281.460388184 281.450622559 281.559997559 281.700622559 281.440856934 280.659606934 279.970153809 279.999450684 280.489685059 280.729919434 281.330444336 281.420288086 281.380249023 281.180053711 281.080444336 281.220092773 281.380249023 281.449584961 281.550170898 281.689819336 281.659545898 281.380249023 281.120483398 280.920288086 280.300170898 278.899780273 277.149780273 281.960021973 282.049865723 282.08013916 281.809631348 281.379943848 281.09967041 281.040100098 281.049865723 281.08013916 281.070373535 280.84967041 280.299865723 279.729553223 279.530334473 279.639709473 279.639709473 279.34967041 282.599060059 281.880310059 281.370544434 281.259216309 281.259216309 281.270935059 281.339294434 281.380310059 281.360778809 281.419372559 281.520935059 281.259216309 280.520935059 279.860778809 279.890075684 280.479919434 280.970153809 281.580444336 281.620483398 281.510131836 281.210327148 281.019897461 281.069702148 281.149780273 281.170288086 281.269897461 281.439819336 281.420288086 281.159545898 280.930053711 280.809936523 280.269897461 278.840209961 276.890014648 282.190490723 282.160217285 282.040100098 281.660217285 281.219787598 280.99029541 280.99029541 281.040100098 281.070373535 281.059631348 280.790100098 280.200256348 279.570373535 279.25982666 279.210021973 279.139709473 278.969787598 282.440856934 281.669372559 281.149841309 281.040466309 281.099060059 281.179138184 281.300231934 281.390075684 281.390075684 281.390075684 281.380310059 281.059997559 280.360778809 279.729919434 279.700622559 280.259216309 280.909606934 281.840209961 281.840209961 281.640014648 281.250366211 280.979858398 280.939819336 280.930053711 280.870483398 280.930053711 281.080444336 281.059936523 280.800170898 280.599975586 280.590209961 280.250366211 278.979858398 276.970092773 282.429748535 282.360412598 282.09967041 281.589904785 281.129943848 280.969787598 281.030334473 281.129943848 281.190490723 281.16998291 280.90045166 280.370178223 279.820373535 279.49029541 279.25982666 278.940490723 278.559631348 282.229919434 281.569763184 281.120544434 281.020935059 281.110778809 281.249450684 281.440856934 281.589294434 281.649841309 281.630310059 281.499450684 281.099060059 280.409606934 279.770935059 279.559997559 279.839294434 280.360778809 282.099975586 282.010131836 281.680053711 281.220092773 280.920288086 280.859741211 280.830444336 280.760131836 280.790405273 280.939819336 280.930053711 280.659545898 280.409545898 280.370483398 280.149780273 279.109741211 277.180053711 282.559631348 282.519592285 282.179748535 281.58013916 281.110412598 281.030334473 281.16998291 281.299865723 281.370178223 281.34967041 281.139709473 280.729553223 280.34967041 280.110412598 279.780334473 279.120178223 278.290100098 282.089294434 281.630310059 281.259216309 281.120544434 281.210388184 281.419372559 281.669372559 281.839294434 281.909606934 281.909606934 281.770935059 281.380310059 280.780700684 280.169372559 279.759216309 279.559997559 279.579528809 282.449584961 282.149780273 281.630249023 281.090209961 280.779663086 280.760131836 280.800170898 280.779663086 280.840209961 281.040405273 281.130249023 280.949584961 280.630249023 280.399780273 280.099975586 279.189819336 277.390014648 282.549865723 282.59967041 282.25982666 281.620178223 281.160217285 281.129943848 281.290100098 281.389709473 281.440490723 281.469787598 281.370178223 281.120178223 280.889709473 280.769592285 280.460021973 279.589904785 278.299865723 281.999450684 281.749450684 281.429138184 281.229919434 281.300231934 281.579528809 281.819763184 281.899841309 281.880310059 281.880310059 281.860778809 281.659606934 281.290466309 280.860778809 280.349060059 279.710388184 279.089294434 282.909545898 282.349975586 281.599975586 280.939819336 280.630249023 280.640014648 280.720092773 280.750366211 280.840209961 281.099975586 281.359741211 281.390014648 281.109741211 280.710327148 280.220092773 279.309936523 277.620483398 282.50982666 282.639709473 282.360412598 281.769592285 281.34967041 281.280334473 281.33013916 281.33013916 281.370178223 281.500061035 281.530334473 281.379943848 281.229553223 281.200256348 280.950256348 280.059631348 278.559631348 281.890075684 281.800231934 281.520935059 281.270935059 281.339294434 281.669372559 281.849060059 281.720153809 281.520935059 281.520935059 281.669372559 281.749450684 281.679138184 281.499450684 281.069763184 280.220153809 279.120544434 283.380249023 282.550170898 281.649780273 280.949584961 280.590209961 280.550170898 280.630249023 280.670288086 280.750366211 281.000366211 281.380249023 281.609741211 281.510131836 281.099975586 280.500366211 279.529663086 277.899780273 282.519592285 282.66998291 282.500061035 282.049865723 281.66998291 281.500061035 281.370178223 281.24029541 281.280334473 281.49029541 281.639709473 281.549865723 281.389709473 281.339904785 281.139709473 280.33013916 278.809631348 281.759216309 281.739685059 281.489685059 281.229919434 281.349060059 281.710388184 281.819763184 281.499450684 281.159606934 281.169372559 281.450622559 281.720153809 281.849060059 281.839294434 281.540466309 280.739685059 279.509216309 283.630249023 282.659545898 281.750366211 281.090209961 280.739624023 280.630249023 280.659545898 280.689819336 280.739624023 280.899780273 281.239624023 281.569702148 281.649780273 281.370483398 280.790405273 279.800170898 278.159545898 282.549865723 282.660217285 282.59967041 282.320373535 282.040100098 281.780334473 281.530334473 281.33013916 281.379943848 281.59967041 281.769592285 281.66998291 281.469787598 281.360412598 281.129943848 280.320373535 278.84967041 281.649841309 281.630310059 281.390075684 281.149841309 281.300231934 281.669372559 281.739685059 281.399841309 281.050231934 281.099060059 281.419372559 281.720153809 281.880310059 281.919372559 281.720153809 281.059997559 279.909606934 283.590209961 282.670288086 281.880249023 281.330444336 280.989624023 280.809936523 280.760131836 280.790405273 280.849975586 280.960327148 281.189819336 281.470092773 281.620483398 281.510131836 281.040405273 280.059936523 278.359741211 282.58013916 282.589904785 282.610412598 282.50982666 282.320373535 282.070373535 281.790100098 281.639709473 281.710021973 281.889709473 281.950256348 281.809631348 281.620178223 281.460021973 281.110412598 280.210021973 278.690490723 281.610778809 281.530700684 281.280700684 281.069763184 281.210388184 281.520935059 281.579528809 281.329528809 281.130310059 281.220153809 281.499450684 281.759216309 281.940856934 282.020935059 281.839294434 281.229919434 280.140075684 283.420288086 282.680053711 282.029663086 281.569702148 281.220092773 280.930053711 280.779663086 280.790405273 280.920288086 281.090209961 281.300170898 281.519897461 281.680053711 281.649780273 281.279663086 280.330444336 278.590209961 282.639709473 282.540100098 282.589904785 282.639709473 282.540100098 282.299865723 282.059631348 281.99029541 282.110412598 282.219787598 282.16998291 282.00982666 281.860412598 281.690490723 281.219787598 280.16998291 278.540100098 281.599060059 281.479919434 281.229919434 281.050231934 281.149841309 281.360778809 281.399841309 281.290466309 281.249450684 281.349060059 281.509216309 281.739685059 282.030700684 282.229919434 282.069763184 281.390075684 280.229919434 283.279663086 282.699584961 282.149780273 281.720092773 281.359741211 280.989624023 280.720092773 280.670288086 280.849975586 281.159545898 281.500366211 281.769897461 281.939819336 281.920288086 281.559936523 280.620483398 278.909545898 282.75982666 282.570373535 282.639709473 282.780334473 282.719787598 282.440490723 282.200256348 282.219787598 282.40045166 282.479553223 282.379943848 282.24029541 282.16998291 282.00982666 281.450256348 280.250061035 278.540100098 281.540466309 281.440856934 281.249450684 281.130310059 281.190856934 281.300231934 281.319763184 281.319763184 281.399841309 281.460388184 281.489685059 281.700622559 282.140075684 282.499450684 282.339294434 281.550231934 280.259216309 283.069702148 282.620483398 282.099975586 281.699584961 281.380249023 281.029663086 280.710327148 280.620483398 280.840209961 281.279663086 281.750366211 282.130249023 282.319702148 282.269897461 281.859741211 280.920288086 279.300170898 282.84967041 282.620178223 282.710021973 282.889709473 282.83013916 282.500061035 282.229553223 282.280334473 282.50982666 282.629943848 282.540100098 282.460021973 282.460021973 282.339904785 281.710021973 280.429748535 278.65045166 281.409606934 281.360778809 281.290466309 281.259216309 281.329528809 281.370544434 281.399841309 281.530700684 281.690856934 281.669372559 281.569763184 281.739685059 282.259216309 282.690856934 282.520935059 281.649841309 280.259216309 282.680053711 282.269897461 281.819702148 281.529663086 281.330444336 281.069702148 280.819702148 280.790405273 281.069702148 281.540405273 282.050170898 282.449584961 282.670288086 282.590209961 282.130249023 281.170288086 279.659545898 282.790100098 282.570373535 282.66998291 282.870178223 282.820373535 282.460021973 282.16998291 282.219787598 282.49029541 282.639709473 282.610412598 282.59967041 282.700256348 282.610412598 281.979553223 280.639709473 278.799865723 281.229919434 281.300231934 281.360778809 281.419372559 281.479919434 281.499450684 281.550231934 281.780700684 282.020935059 281.979919434 281.819763184 281.940856934 282.440856934 282.819763184 282.599060059 281.690856934 280.259216309 282.120483398 281.769897461 281.460327148 281.340209961 281.260131836 281.080444336 280.939819336 281.050170898 281.420288086 281.880249023 282.279663086 282.609741211 282.819702148 282.800170898 282.359741211 281.430053711 279.960327148 282.620178223 282.41998291 282.50982666 282.729553223 282.690490723 282.33013916 282.040100098 282.120178223 282.40045166 282.559631348 282.570373535 282.639709473 282.839904785 282.860412598 282.290100098 280.940490723 279.000061035 281.179138184 281.370544434 281.530700684 281.620544434 281.630310059 281.569763184 281.630310059 281.919372559 282.190856934 282.190856934 282.059997559 282.220153809 282.669372559 282.940856934 282.669372559 281.790466309 280.349060059 281.590209961 281.349975586 281.250366211 281.309936523 281.279663086 281.069702148 280.939819336 281.149780273 281.620483398 282.069702148 282.359741211 282.569702148 282.790405273 282.859741211 282.540405273 281.670288086 280.239624023 282.469787598 282.280334473 282.370178223 282.549865723 282.49029541 282.139709473 281.879943848 281.979553223 282.250061035 282.41998291 282.469787598 282.620178223 282.929748535 283.08013916 282.629943848 281.320373535 279.309631348 281.309997559 281.589294434 281.800231934 281.870544434 281.749450684 281.569763184 281.589294434 281.870544434 282.159606934 282.200622559 282.200622559 282.460388184 282.880310059 283.099060059 282.839294434 282.020935059 280.579528809 281.199584961 281.109741211 281.239624023 281.449584961 281.409545898 281.090209961 280.870483398 281.090209961 281.609741211 282.080444336 282.300170898 282.460327148 282.680053711 282.849975586 282.670288086 281.899780273 280.529663086 282.379943848 282.200256348 282.25982666 282.379943848 282.250061035 281.889709473 281.679748535 281.83013916 282.129943848 282.320373535 282.41998291 282.639709473 283.000061035 283.229553223 282.889709473 281.690490723 279.710021973 281.499450684 281.829528809 282.050231934 282.030700684 281.790466309 281.509216309 281.489685059 281.759216309 282.050231934 282.149841309 282.270935059 282.630310059 283.069763184 283.259216309 283.050231934 282.349060059 280.909606934 280.930053711 281.000366211 281.300170898 281.620483398 281.590209961 281.210327148 280.920288086 281.059936523 281.540405273 281.989624023 282.220092773 282.380249023 282.609741211 282.830444336 282.739624023 282.099975586 280.819702148 282.299865723 282.110412598 282.120178223 282.15045166 281.960021973 281.620178223 281.479553223 281.700256348 282.049865723 282.309631348 282.49029541 282.74029541 283.070373535 283.280334473 283.00982666 281.940490723 280.070373535 281.630310059 281.929138184 282.099060059 282.020935059 281.710388184 281.399841309 281.390075684 281.700622559 282.020935059 282.179138184 282.390075684 282.790466309 283.210388184 283.399841309 283.270935059 282.649841309 281.229919434 280.760131836 280.989624023 281.380249023 281.720092773 281.720092773 281.390014648 281.099975586 281.149780273 281.479858398 281.830444336 282.080444336 282.300170898 282.590209961 282.849975586 282.830444336 282.279663086 281.130249023 282.16998291 281.960021973 281.91998291 281.879943848 281.660217285 281.410217285 281.389709473 281.660217285 282.040100098 282.34967041 282.59967041 282.860412598 283.129943848 283.269592285 283.040100098 282.09967041 280.339904785 281.659606934 281.890075684 282.009216309 281.929138184 281.630310059 281.339294434 281.360778809 281.710388184 282.069763184 282.280700684 282.509216309 282.909606934 283.319763184 283.520935059 283.460388184 282.929138184 281.530700684 280.760131836 281.149780273 281.550170898 281.809936523 281.809936523 281.580444336 281.359741211 281.309936523 281.430053711 281.609741211 281.819702148 282.140014648 282.550170898 282.920288086 283.000366211 282.559936523 281.500366211 282.000061035 281.820373535 281.719787598 281.620178223 281.440490723 281.339904785 281.460021973 281.75982666 282.070373535 282.360412598 282.660217285 282.950256348 283.190490723 283.299865723 283.089904785 282.219787598 280.549865723 281.649841309 281.849060059 281.979919434 281.940856934 281.700622559 281.440856934 281.440856934 281.759216309 282.120544434 282.329528809 282.540466309 282.909606934 283.309997559 283.579528809 283.599060059 283.140075684 281.770935059 280.979858398 281.510131836 281.849975586 281.960327148 281.890014648 281.739624023 281.609741211 281.500366211 281.420288086 281.390014648 281.550170898 281.949584961 282.510131836 283.019897461 283.229858398 282.909545898 281.949584961 281.84967041 281.719787598 281.589904785 281.450256348 281.379943848 281.469787598 281.719787598 281.979553223 282.16998291 282.370178223 282.66998291 282.979553223 283.229553223 283.360412598 283.16998291 282.34967041 280.710021973 281.659606934 281.919372559 282.099060059 282.120544434 281.919372559 281.649841309 281.589294434 281.819763184 282.110778809 282.280700684 282.450622559 282.780700684 283.190856934 283.499450684 283.589294434 283.190856934 281.899841309 281.309936523 281.899780273 282.140014648 282.069702148 281.909545898 281.830444336 281.819702148 281.729858398 281.529663086 281.380249023 281.489624023 281.939819336 282.569702148 283.130249023 283.390014648 283.159545898 282.319702148 281.729553223 281.660217285 281.530334473 281.389709473 281.41998291 281.700256348 282.049865723 282.250061035 282.320373535 282.450256348 282.729553223 283.049865723 283.269592285 283.389709473 283.210021973 282.429748535 280.84967041 281.729919434 282.069763184 282.300231934 282.319763184 282.120544434 281.829528809 281.710388184 281.860778809 282.069763184 282.200622559 282.329528809 282.620544434 282.999450684 283.300231934 283.380310059 283.009216309 281.860778809 281.620483398 282.159545898 282.269897461 282.059936523 281.849975586 281.840209961 281.960327148 281.960327148 281.769897461 281.590209961 281.720092773 282.199584961 282.800170898 283.269897461 283.439819336 283.210327148 282.489624023 281.639709473 281.620178223 281.530334473 281.429748535 281.549865723 281.910217285 282.290100098 282.440490723 282.450256348 282.58013916 282.860412598 283.139709473 283.309631348 283.379943848 283.190490723 282.450256348 280.960021973 281.839294434 282.200622559 282.399841309 282.399841309 282.169372559 281.880310059 281.749450684 281.860778809 282.050231934 282.149841309 282.249450684 282.499450684 282.839294434 283.069763184 283.059997559 282.669372559 281.659606934 281.870483398 282.309936523 282.300170898 282.010131836 281.790405273 281.819702148 282.019897461 282.109741211 281.979858398 281.880249023 282.080444336 282.599975586 283.140014648 283.430053711 283.439819336 283.140014648 282.500366211 281.59967041 281.629943848 281.629943848 281.620178223 281.75982666 282.089904785 282.40045166 282.500061035 282.519592285 282.66998291 282.950256348 283.179748535 283.309631348 283.34967041 283.190490723 282.500061035 281.120178223 281.940856934 282.249450684 282.370544434 282.309997559 282.099060059 281.849060059 281.749450684 281.880310059 282.059997559 282.130310059 282.179138184 282.390075684 282.720153809 282.909606934 282.809997559 282.360778809 281.429138184 282.090209961 282.420288086 282.370483398 282.080444336 281.849975586 281.859741211 282.029663086 282.120483398 282.050170898 282.019897461 282.300170898 282.859741211 283.390014648 283.630249023 283.529663086 283.159545898 282.489624023 281.59967041 281.690490723 281.799865723 281.879943848 282.019592285 282.219787598 282.40045166 282.440490723 282.49029541 282.65045166 282.889709473 283.09967041 283.24029541 283.339904785 283.250061035 282.639709473 281.33013916 281.960388184 282.149841309 282.210388184 282.159606934 281.999450684 281.809997559 281.749450684 281.909606934 282.120544434 282.130310059 282.089294434 282.249450684 282.589294434 282.829528809 282.720153809 282.220153809 281.290466309 282.269897461 282.510131836 282.449584961 282.220092773 281.989624023 281.899780273 281.979858398 282.059936523 282.040405273 282.059936523 282.349975586 282.899780273 283.470092773 283.769897461 283.720092773 283.340209961 282.559936523 281.589904785 281.679748535 281.879943848 282.049865723 282.16998291 282.269592285 282.339904785 282.379943848 282.41998291 282.530334473 282.719787598 282.91998291 283.120178223 283.309631348 283.280334473 282.750061035 281.50982666 281.819763184 281.899841309 281.950622559 281.989685059 281.929138184 281.770935059 281.739685059 281.960388184 282.229919434 282.229919434 282.079528809 282.149841309 282.499450684 282.809997559 282.770935059 282.259216309 281.300231934 282.309936523 282.409545898 282.349975586 282.220092773 282.029663086 281.880249023 281.880249023 281.979858398 282.059936523 282.130249023 282.380249023 282.870483398 283.439819336 283.849975586 283.909545898 283.519897461 282.620483398 281.519592285 281.58013916 281.820373535 282.030334473 282.129943848 282.16998291 282.229553223 282.320373535 282.370178223 282.41998291 282.530334473 282.74029541 282.99029541 283.190490723 283.160217285 282.66998291 281.549865723 281.530700684 281.559997559 281.640075684 281.809997559 281.870544434 281.729919434 281.710388184 282.030700684 282.419372559 282.470153809 282.259216309 282.210388184 282.499450684 282.839294434 282.839294434 282.360778809 281.399841309 282.140014648 282.029663086 281.949584961 281.949584961 281.890014648 281.769897461 281.790405273 281.979858398 282.180053711 282.309936523 282.510131836 282.899780273 283.409545898 283.840209961 283.970092773 283.580444336 282.569702148 281.440490723 281.479553223 281.679748535 281.870178223 281.940490723 281.960021973 282.09967041 282.280334473 282.339904785 282.33013916 282.410217285 282.639709473 282.879943848 282.99029541 282.879943848 282.429748535 281.440490723 281.259216309 281.239685059 281.360778809 281.659606934 281.819763184 281.720153809 281.720153809 282.130310059 282.620544434 282.729919434 282.509216309 282.409606934 282.610778809 282.870544434 282.870544434 282.450622559 281.530700684 281.849975586 281.519897461 281.409545898 281.559936523 281.689819336 281.699584961 281.779663086 282.069702148 282.359741211 282.550170898 282.710327148 283.019897461 283.460327148 283.830444336 283.930053711 283.510131836 282.460327148 281.429748535 281.460021973 281.59967041 281.729553223 281.750061035 281.790100098 282.00982666 282.250061035 282.320373535 282.269592285 282.339904785 282.589904785 282.790100098 282.769592285 282.570373535 282.179748535 281.360412598 281.099060059 281.050231934 281.169372559 281.550231934 281.809997559 281.770935059 281.800231934 282.220153809 282.710388184 282.819763184 282.620544434 282.540466309 282.690856934 282.870544434 282.849060059 282.499450684 281.649841309 281.510131836 281.059936523 280.949584961 281.250366211 281.569702148 281.739624023 281.920288086 282.250366211 282.559936523 282.729858398 282.880249023 283.159545898 283.529663086 283.819702148 283.830444336 283.370483398 282.349975586 281.40045166 281.429748535 281.500061035 281.58013916 281.589904785 281.690490723 281.979553223 282.280334473 282.34967041 282.25982666 282.309631348 282.530334473 282.66998291 282.549865723 282.33013916 282.030334473 281.370178223 281.089294434 280.970153809 281.079528809 281.499450684 281.829528809 281.860778809 281.950622559 282.309997559 282.669372559 282.690856934 282.499450684 282.470153809 282.630310059 282.749450684 282.759216309 282.540466309 281.790466309 281.260131836 280.809936523 280.720092773 281.090209961 281.529663086 281.819702148 282.090209961 282.460327148 282.739624023 282.870483398 282.979858398 283.250366211 283.580444336 283.760131836 283.649780273 283.159545898 282.210327148 281.290100098 281.24029541 281.219787598 281.290100098 281.389709473 281.59967041 281.979553223 282.34967041 282.429748535 282.320373535 282.309631348 282.440490723 282.49029541 282.339904785 282.160217285 281.950256348 281.379943848 281.130310059 280.999450684 281.079528809 281.509216309 281.860778809 281.929138184 282.050231934 282.380310059 282.620544434 282.509216309 282.309997559 282.329528809 282.479919434 282.579528809 282.620544434 282.530700684 281.899841309 281.099975586 280.769897461 280.710327148 281.050170898 281.489624023 281.830444336 282.189819336 282.590209961 282.870483398 282.970092773 283.059936523 283.309936523 283.580444336 283.630249023 283.370483398 282.819702148 281.939819336 281.139709473 280.950256348 280.820373535 280.910217285 281.160217285 281.50982666 281.979553223 282.40045166 282.540100098 282.429748535 282.33013916 282.34967041 282.320373535 282.160217285 282.000061035 281.809631348 281.250061035 281.229919434 281.099060059 281.210388184 281.620544434 281.929138184 281.970153809 282.079528809 282.399841309 282.599060059 282.429138184 282.229919434 282.259216309 282.380310059 282.419372559 282.429138184 282.390075684 281.839294434 281.029663086 280.849975586 280.840209961 281.099975586 281.460327148 281.809936523 282.239624023 282.689819336 282.970092773 283.069702148 283.170288086 283.399780273 283.599975586 283.510131836 283.080444336 282.409545898 281.540405273 281.09967041 280.769592285 280.549865723 280.690490723 281.040100098 281.469787598 281.950256348 282.389709473 282.58013916 282.500061035 282.34967041 282.25982666 282.179748535 282.040100098 281.870178223 281.610412598 281.00982666 281.390075684 281.290466309 281.429138184 281.839294434 282.079528809 282.020935059 282.079528809 282.399841309 282.589294434 282.419372559 282.229919434 282.270935059 282.370544434 282.309997559 282.220153809 282.089294434 281.520935059 281.010131836 280.979858398 281.000366211 281.180053711 281.479858398 281.890014648 282.390014648 282.849975586 283.120483398 283.180053711 283.269897461 283.470092773 283.599975586 283.409545898 282.849975586 282.069702148 281.170288086 281.190490723 280.809631348 280.570373535 280.74029541 281.129943848 281.540100098 281.950256348 282.339904785 282.559631348 282.500061035 282.320373535 282.190490723 282.110412598 282.00982666 281.820373535 281.429748535 280.780334473 281.599060059 281.489685059 281.620544434 282.040466309 282.229919434 282.089294434 282.099060059 282.390075684 282.569763184 282.409606934 282.220153809 282.259216309 282.339294434 282.249450684 282.030700684 281.690856934 280.970153809 280.989624023 281.099975586 281.130249023 281.260131836 281.559936523 282.040405273 282.620483398 283.080444336 283.279663086 283.279663086 283.290405273 283.409545898 283.470092773 283.239624023 282.659545898 281.849975586 280.909545898 281.250061035 280.91998291 280.750061035 280.950256348 281.339904785 281.679748535 282.00982666 282.339904785 282.540100098 282.479553223 282.290100098 282.139709473 282.09967041 282.040100098 281.799865723 281.33013916 280.629943848 281.790466309 281.589294434 281.679138184 282.099060059 282.290466309 282.169372559 282.159606934 282.440856934 282.579528809 282.380310059 282.149841309 282.159606934 282.270935059 282.169372559 281.880310059 281.319763184 280.370544434 281.019897461 281.199584961 281.250366211 281.330444336 281.620483398 282.170288086 282.790405273 283.229858398 283.380249023 283.309936523 283.229858398 283.180053711 283.109741211 282.880249023 282.370483398 281.590209961 280.670288086 281.139709473 280.910217285 280.860412598 281.129943848 281.540100098 281.870178223 282.160217285 282.429748535 282.59967041 282.540100098 282.33013916 282.16998291 282.139709473 282.070373535 281.790100098 281.24029541 280.519592285 281.890075684 281.579528809 281.640075684 282.059997559 282.280700684 282.200622559 282.239685059 282.520935059 282.640075684 282.399841309 282.120544434 282.069763184 282.130310059 282.069763184 281.780700684 281.079528809 279.890075684 281.140014648 281.390014648 281.449584961 281.460327148 281.699584961 282.199584961 282.769897461 283.180053711 283.330444336 283.279663086 283.109741211 282.870483398 282.620483398 282.330444336 281.880249023 281.180053711 280.279663086 280.910217285 280.780334473 280.839904785 281.179748535 281.660217285 282.040100098 282.339904785 282.589904785 282.729553223 282.660217285 282.450256348 282.280334473 282.210021973 282.09967041 281.75982666 281.160217285 280.389709473 281.909606934 281.569763184 281.640075684 282.040466309 282.249450684 282.200622559 282.290466309 282.569763184 282.659606934 282.440856934 282.169372559 282.040466309 281.979919434 281.880310059 281.630310059 280.960388184 279.649841309 281.319702148 281.599975586 281.670288086 281.659545898 281.790405273 282.149780273 282.590209961 282.949584961 283.159545898 283.189819336 283.000366211 282.609741211 282.170288086 281.790405273 281.330444336 280.649780273 279.750366211 280.75982666 280.690490723 280.790100098 281.16998291 281.700256348 282.139709473 282.450256348 282.679748535 282.820373535 282.769592285 282.570373535 282.379943848 282.25982666 282.110412598 281.729553223 281.089904785 280.269592285 281.919372559 281.669372559 281.790466309 282.120544434 282.229919434 282.169372559 282.280700684 282.520935059 282.589294434 282.409606934 282.229919434 282.069763184 281.829528809 281.599060059 281.399841309 280.839294434 279.579528809 281.399780273 281.670288086 281.779663086 281.779663086 281.840209961 282.059936523 282.380249023 282.710327148 282.979858398 283.069702148 282.870483398 282.399780273 281.890014648 281.449584961 280.939819336 280.189819336 279.269897461 280.750061035 280.700256348 280.780334473 281.15045166 281.679748535 282.120178223 282.41998291 282.65045166 282.799865723 282.780334473 282.58013916 282.370178223 282.229553223 282.049865723 281.690490723 281.040100098 280.160217285 281.999450684 281.849060059 281.999450684 282.210388184 282.179138184 282.079528809 282.220153809 282.440856934 282.450622559 282.309997559 282.239685059 282.089294434 281.710388184 281.300231934 281.069763184 280.640075684 279.530700684 281.300170898 281.510131836 281.640014648 281.699584961 281.779663086 281.949584961 282.229858398 282.569702148 282.830444336 282.880249023 282.630249023 282.180053711 281.739624023 281.330444336 280.769897461 279.979858398 279.040405273 280.839904785 280.769592285 280.790100098 281.110412598 281.589904785 281.99029541 282.269592285 282.530334473 282.719787598 282.700256348 282.479553223 282.24029541 282.089904785 281.91998291 281.549865723 280.889709473 279.979553223 282.130310059 282.079528809 282.210388184 282.249450684 282.059997559 281.950622559 282.149841309 282.380310059 282.339294434 282.200622559 282.210388184 282.120544434 281.649841309 281.059997559 280.710388184 280.360778809 279.419372559 281.099975586 281.220092773 281.349975586 281.470092773 281.630249023 281.859741211 282.170288086 282.510131836 282.699584961 282.620483398 282.269897461 281.880249023 281.569702148 281.250366211 280.699584961 279.920288086 279.080444336 280.940490723 280.860412598 280.83013916 281.09967041 281.500061035 281.839904785 282.110412598 282.410217285 282.629943848 282.589904785 282.33013916 282.070373535 281.910217285 281.719787598 281.299865723 280.58013916 279.660217285 282.280700684 282.309997559 282.390075684 282.290466309 281.979919434 281.849060059 282.079528809 282.329528809 282.270935059 282.130310059 282.169372559 282.130310059 281.640075684 280.919372559 280.429138184 280.069763184 279.259216309 280.930053711 281.000366211 281.109741211 281.290405273 281.519897461 281.800170898 282.149780273 282.460327148 282.550170898 282.309936523 281.890014648 281.540405273 281.349975586 281.069702148 280.559936523 279.870483398 279.199584961 281.049865723 280.960021973 280.91998291 281.139709473 281.469787598 281.750061035 282.019592285 282.33013916 282.530334473 282.460021973 282.190490723 281.960021973 281.780334473 281.530334473 281.019592285 280.25982666 279.370178223 282.380310059 282.479919434 282.559997559 282.399841309 282.009216309 281.790466309 281.970153809 282.210388184 282.169372559 282.040466309 282.079528809 282.069763184 281.610778809 280.839294434 280.249450684 279.829528809 279.110778809 280.870483398 280.930053711 281.010131836 281.189819336 281.449584961 281.769897461 282.130249023 282.399780273 282.399780273 282.080444336 281.609741211 281.269897461 281.069702148 280.769897461 280.260131836 279.699584961 279.239624023 281.129943848 281.059631348 281.019592285 281.16998291 281.429748535 281.690490723 281.979553223 282.269592285 282.410217285 282.320373535 282.08013916 281.879943848 281.710021973 281.40045166 280.870178223 280.160217285 279.360412598 282.380310059 282.559997559 282.640075684 282.509216309 282.099060059 281.780700684 281.839294434 282.030700684 281.999450684 281.899841309 281.929138184 281.919372559 281.489685059 280.739685059 280.110778809 279.690856934 279.030700684 280.849975586 280.930053711 280.960327148 281.069702148 281.340209961 281.689819336 282.059936523 282.330444336 282.319702148 281.989624023 281.519897461 281.140014648 280.819702148 280.430053711 279.930053711 279.489624023 279.189819336 281.120178223 281.070373535 281.030334473 281.120178223 281.33013916 281.620178223 281.950256348 282.210021973 282.290100098 282.190490723 282.00982666 281.83013916 281.610412598 281.280334473 280.860412598 280.360412598 279.719787598 282.370544434 282.559997559 282.630310059 282.509216309 282.120544434 281.770935059 281.729919434 281.860778809 281.860778809 281.759216309 281.770935059 281.739685059 281.329528809 280.610778809 279.989685059 279.589294434 279.009216309 280.859741211 280.939819336 280.880249023 280.899780273 281.140014648 281.550170898 282.000366211 282.290405273 282.330444336 282.080444336 281.640014648 281.159545898 280.680053711 280.180053711 279.710327148 279.359741211 279.109741211 280.99029541 280.99029541 280.929748535 280.979553223 281.190490723 281.540100098 281.90045166 282.120178223 282.160217285 282.09967041 281.969787598 281.769592285 281.450256348 281.129943848 280.889709473 280.65045166 280.179748535 282.450622559 282.589294434 282.579528809 282.419372559 282.069763184 281.739685059 281.690856934 281.800231934 281.780700684 281.659606934 281.640075684 281.599060059 281.200622559 280.489685059 279.860778809 279.479919434 278.960388184 280.899780273 280.989624023 280.819702148 280.720092773 280.949584961 281.449584961 281.970092773 282.309936523 282.409545898 282.250366211 281.840209961 281.250366211 280.649780273 280.109741211 279.699584961 279.380249023 279.069702148 280.809631348 280.860412598 280.84967041 280.910217285 281.139709473 281.519592285 281.84967041 282.000061035 282.00982666 282.000061035 281.950256348 281.690490723 281.280334473 280.950256348 280.839904785 280.780334473 280.370178223 282.599060059 282.700622559 282.579528809 282.360778809 282.009216309 281.739685059 281.739685059 281.819763184 281.739685059 281.569763184 281.540466309 281.509216309 281.140075684 280.409606934 279.739685059 279.319763184 278.819763184 280.989624023 281.059936523 280.790405273 280.599975586 280.849975586 281.439819336 282.019897461 282.340209961 282.449584961 282.340209961 281.960327148 281.340209961 280.689819336 280.199584961 279.840209961 279.519897461 279.090209961 280.679748535 280.769592285 280.860412598 280.979553223 281.229553223 281.570373535 281.820373535 281.860412598 281.83013916 281.879943848 281.879943848 281.620178223 281.160217285 280.799865723 280.710021973 280.629943848 280.16998291 282.710388184 282.780700684 282.649841309 282.390075684 282.059997559 281.839294434 281.849060059 281.890075684 281.720153809 281.489685059 281.450622559 281.479919434 281.149841309 280.409606934 279.679138184 279.169372559 278.620544434 281.080444336 281.080444336 280.720092773 280.489624023 280.790405273 281.479858398 282.059936523 282.319702148 282.370483398 282.279663086 281.920288086 281.319702148 280.729858398 280.319702148 280.029663086 279.670288086 279.120483398 280.629943848 280.769592285 280.91998291 281.089904785 281.339904785 281.65045166 281.820373535 281.769592285 281.710021973 281.769592285 281.790100098 281.540100098 281.089904785 280.729553223 280.58013916 280.370178223 279.799865723 282.679138184 282.739685059 282.649841309 282.460388184 282.190856934 281.989685059 281.999450684 281.979919434 281.749450684 281.470153809 281.429138184 281.470153809 281.190856934 280.489685059 279.739685059 279.149841309 278.479919434 281.149780273 281.029663086 280.569702148 280.330444336 280.710327148 281.449584961 282.000366211 282.210327148 282.250366211 282.149780273 281.800170898 281.229858398 280.699584961 280.390014648 280.149780273 279.729858398 279.090209961 280.639709473 280.820373535 280.979553223 281.129943848 281.370178223 281.66998291 281.83013916 281.799865723 281.719787598 281.750061035 281.719787598 281.460021973 281.049865723 280.710021973 280.479553223 280.15045166 279.479553223 282.550231934 282.589294434 282.569763184 282.489685059 282.300231934 282.140075684 282.110778809 282.050231934 281.800231934 281.540466309 281.489685059 281.489685059 281.239685059 280.649841309 279.970153809 279.290466309 278.470153809 281.189819336 280.930053711 280.409545898 280.199584961 280.599975586 281.319702148 281.840209961 282.050170898 282.140014648 282.069702148 281.710327148 281.140014648 280.670288086 280.399780273 280.140014648 279.659545898 278.970092773 280.719787598 280.90045166 281.019592285 281.120178223 281.299865723 281.58013916 281.809631348 281.870178223 281.839904785 281.809631348 281.700256348 281.40045166 281.000061035 280.660217285 280.370178223 279.960021973 279.269592285 282.479919434 282.470153809 282.509216309 282.509216309 282.360778809 282.200622559 282.120544434 282.040466309 281.819763184 281.620544434 281.559997559 281.530700684 281.309997559 280.870544434 280.280700684 279.530700684 278.559997559 281.149780273 280.819702148 280.319702148 280.170288086 280.569702148 281.180053711 281.649780273 281.939819336 282.120483398 282.069702148 281.670288086 281.130249023 280.689819336 280.399780273 280.050170898 279.519897461 278.809936523 280.799865723 281.019592285 281.110412598 281.129943848 281.210021973 281.450256348 281.729553223 281.879943848 281.910217285 281.84967041 281.679748535 281.370178223 280.969787598 280.589904785 280.229553223 279.780334473 279.059631348 282.470153809 282.460388184 282.520935059 282.559997559 282.409606934 282.200622559 282.050231934 281.940856934 281.770935059 281.630310059 281.599060059 281.559997559 281.399841309 281.069763184 280.559997559 279.770935059 278.669372559 280.970092773 280.649780273 280.260131836 280.210327148 280.569702148 281.080444336 281.550170898 281.960327148 282.199584961 282.099975586 281.640014648 281.140014648 280.769897461 280.409545898 279.909545898 279.330444336 278.659545898 280.879943848 281.129943848 281.24029541 281.210021973 281.179748535 281.339904785 281.629943848 281.84967041 281.910217285 281.83013916 281.639709473 281.339904785 280.950256348 280.519592285 280.08013916 279.58013916 278.820373535 282.450622559 282.509216309 282.610778809 282.640075684 282.460388184 282.190856934 281.999450684 281.839294434 281.679138184 281.579528809 281.599060059 281.610778809 281.499450684 281.259216309 280.800231934 279.979919434 278.800231934 280.720092773 280.430053711 280.149780273 280.180053711 280.519897461 281.000366211 281.550170898 282.099975586 282.359741211 282.109741211 281.569702148 281.130249023 280.840209961 280.399780273 279.739624023 279.109741211 278.529663086 280.889709473 281.160217285 281.34967041 281.320373535 281.219787598 281.290100098 281.58013916 281.860412598 281.91998291 281.790100098 281.589904785 281.33013916 280.969787598 280.500061035 279.979553223 279.429748535 278.610412598 282.390075684 282.540466309 282.720153809 282.729919434 282.499450684 282.210388184 282.020935059 281.870544434 281.679138184 281.569763184 281.620544434 281.690856934 281.640075684 281.450622559 281.020935059 280.200622559 279.020935059 280.559936523 280.279663086 280.019897461 280.050170898 280.359741211 280.870483398 281.580444336 282.290405273 282.540405273 282.120483398 281.479858398 281.109741211 280.870483398 280.340209961 279.550170898 278.890014648 278.409545898 280.860412598 281.139709473 281.379943848 281.389709473 281.25982666 281.290100098 281.610412598 281.940490723 282.00982666 281.820373535 281.570373535 281.34967041 281.00982666 280.50982666 279.929748535 279.34967041 278.50982666 282.319763184 282.579528809 282.819763184 282.800231934 282.509216309 282.239685059 282.120544434 281.989685059 281.759216309 281.610778809 281.669372559 281.800231934 281.790466309 281.630310059 281.259216309 280.499450684 279.329528809 280.599975586 280.300170898 279.960327148 279.899780273 280.159545898 280.710327148 281.559936523 282.390014648 282.620483398 282.120483398 281.439819336 281.120483398 280.909545898 280.300170898 279.409545898 278.729858398 278.269897461 280.84967041 281.089904785 281.360412598 281.40045166 281.250061035 281.290100098 281.65045166 282.040100098 282.09967041 281.879943848 281.639709473 281.440490723 281.09967041 280.530334473 279.879943848 279.25982666 278.440490723 282.309997559 282.659606934 282.940856934 282.870544434 282.509216309 282.249450684 282.210388184 282.110778809 281.829528809 281.649841309 281.729919434 281.899841309 281.940856934 281.829528809 281.540466309 280.860778809 279.700622559 280.720092773 280.359741211 279.920288086 279.790405273 280.029663086 280.599975586 281.500366211 282.349975586 282.580444336 282.090209961 281.479858398 281.210327148 280.979858398 280.319702148 279.390014648 278.689819336 278.159545898 280.879943848 281.030334473 281.280334473 281.339904785 281.219787598 281.269592285 281.620178223 282.00982666 282.08013916 281.90045166 281.74029541 281.589904785 281.219787598 280.559631348 279.820373535 279.160217285 278.360412598 282.300231934 282.720153809 283.040466309 282.919372559 282.489685059 282.239685059 282.239685059 282.140075684 281.849060059 281.700622559 281.829528809 282.020935059 282.069763184 282.020935059 281.839294434 281.239685059 280.099060059 280.750366211 280.309936523 279.809936523 279.689819336 280.000366211 280.630249023 281.500366211 282.269897461 282.470092773 282.069702148 281.569702148 281.319702148 281.059936523 280.390014648 279.489624023 278.760131836 278.149780273 280.929748535 280.950256348 281.139709473 281.250061035 281.190490723 281.24029541 281.530334473 281.83013916 281.90045166 281.83013916 281.799865723 281.719787598 281.320373535 280.59967041 279.799865723 279.110412598 278.299865723 282.229919434 282.669372559 283.030700684 282.899841309 282.470153809 282.220153809 282.220153809 282.110778809 281.839294434 281.759216309 281.970153809 282.149841309 282.159606934 282.169372559 282.140075684 281.659606934 280.569763184 280.630249023 280.099975586 279.599975586 279.599975586 280.059936523 280.769897461 281.580444336 282.229858398 282.370483398 282.040405273 281.649780273 281.409545898 281.109741211 280.449584961 279.599975586 278.890014648 278.229858398 280.91998291 280.870178223 281.00982666 281.16998291 281.210021973 281.269592285 281.450256348 281.59967041 281.620178223 281.660217285 281.790100098 281.780334473 281.389709473 280.660217285 279.889709473 279.200256348 278.40045166 282.089294434 282.540466309 282.919372559 282.819763184 282.409606934 282.200622559 282.179138184 282.030700684 281.800231934 281.849060059 282.130310059 282.249450684 282.169372559 282.229919434 282.380310059 282.089294434 281.110778809 280.439819336 279.870483398 279.439819336 279.550170898 280.130249023 280.899780273 281.659545898 282.170288086 282.260131836 281.979858398 281.659545898 281.420288086 281.080444336 280.460327148 279.689819336 279.000366211 278.330444336 280.860412598 280.799865723 280.979553223 281.200256348 281.290100098 281.339904785 281.379943848 281.370178223 281.33013916 281.460021973 281.729553223 281.809631348 281.450256348 280.790100098 280.089904785 279.410217285 278.610412598 281.950622559 282.419372559 282.819763184 282.739685059 282.380310059 282.159606934 282.099060059 281.899841309 281.729919434 281.909606934 282.270935059 282.300231934 282.110778809 282.190856934 282.509216309 282.419372559 281.610778809 280.239624023 279.750366211 279.420288086 279.569702148 280.159545898 280.920288086 281.609741211 282.010131836 282.050170898 281.840209961 281.580444336 281.340209961 281.010131836 280.460327148 279.790405273 279.109741211 278.449584961 280.700256348 280.780334473 281.049865723 281.33013916 281.41998291 281.389709473 281.309631348 281.160217285 281.070373535 281.269592285 281.66998291 281.84967041 281.549865723 280.960021973 280.309631348 279.639709473 278.820373535 281.860778809 282.360778809 282.749450684 282.700622559 282.370544434 282.159606934 282.040466309 281.770935059 281.610778809 281.909606934 282.360778809 282.370544434 282.069763184 282.099060059 282.479919434 282.530700684 281.880310059 280.040405273 279.710327148 279.479858398 279.620483398 280.120483398 280.819702148 281.430053711 281.750366211 281.769897461 281.609741211 281.420288086 281.220092773 280.939819336 280.529663086 279.970092773 279.319702148 278.649780273 280.519592285 280.780334473 281.179748535 281.479553223 281.50982666 281.40045166 281.24029541 281.019592285 280.910217285 281.160217285 281.65045166 281.91998291 281.690490723 281.129943848 280.49029541 279.809631348 278.99029541 281.759216309 282.319763184 282.720153809 282.669372559 282.380310059 282.190856934 282.030700684 281.690856934 281.489685059 281.829528809 282.380310059 282.460388184 282.110778809 282.009216309 282.300231934 282.370544434 281.880310059 279.920288086 279.750366211 279.580444336 279.649780273 280.080444336 280.699584961 281.239624023 281.489624023 281.500366211 281.399780273 281.269897461 281.109741211 280.920288086 280.670288086 280.250366211 279.640014648 278.970092773 280.440490723 280.820373535 281.290100098 281.570373535 281.519592285 281.34967041 281.179748535 280.979553223 280.889709473 281.129943848 281.629943848 281.950256348 281.769592285 281.229553223 280.59967041 279.969787598 279.250061035 281.690856934 282.319763184 282.700622559 282.649841309 282.360778809 282.190856934 282.040466309 281.659606934 281.370544434 281.649841309 282.290466309 282.499450684 282.169372559 281.909606934 282.020935059 282.099060059 281.790466309 280.010131836 279.930053711 279.750366211 279.750366211 280.090209961 280.640014648 281.090209961 281.260131836 281.260131836 281.239624023 281.170288086 281.059936523 280.960327148 280.840209961 280.519897461 279.949584961 279.330444336 280.50982666 280.940490723 281.410217285 281.620178223 281.49029541 281.269592285 281.129943848 281.019592285 280.979553223 281.179748535 281.589904785 281.870178223 281.710021973 281.219787598 280.679748535 280.210021973 279.719787598 281.759216309 282.409606934 282.729919434 282.630310059 282.300231934 282.099060059 281.979919434 281.649841309 281.290466309 281.450622559 282.059997559 282.409606934 282.140075684 281.749450684 281.729919434 281.890075684 281.870544434 280.290405273 280.260131836 280.059936523 279.989624023 280.220092773 280.630249023 280.930053711 281.010131836 281.010131836 281.050170898 281.080444336 281.069702148 281.050170898 280.989624023 280.670288086 280.109741211 279.580444336 280.65045166 281.070373535 281.519592285 281.700256348 281.500061035 281.219787598 281.089904785 281.059631348 281.070373535 281.219787598 281.50982666 281.700256348 281.559631348 281.160217285 280.729553223 280.469787598 280.25982666 281.979919434 282.559997559 282.809997559 282.649841309 282.239685059 281.929138184 281.829528809 281.620544434 281.270935059 281.300231934 281.819763184 282.220153809 281.999450684 281.530700684 281.450622559 281.809997559 282.130310059 280.569702148 280.609741211 280.470092773 280.370483398 280.500366211 280.689819336 280.760131836 280.699584961 280.670288086 280.800170898 280.979858398 281.120483398 281.180053711 281.090209961 280.699584961 280.140014648 279.699584961 280.66998291 281.120178223 281.620178223 281.839904785 281.639709473 281.290100098 281.08013916 281.040100098 281.070373535 281.160217285 281.379943848 281.549865723 281.469787598 281.120178223 280.750061035 280.629943848 280.639709473 282.249450684 282.710388184 282.870544434 282.720153809 282.229919434 281.800231934 281.669372559 281.579528809 281.319763184 281.259216309 281.669372559 282.050231934 281.819763184 281.280700684 281.190856934 281.720153809 282.319763184 280.739624023 280.890014648 280.849975586 280.790405273 280.809936523 280.790405273 280.640014648 280.439819336 280.380249023 280.559936523 280.880249023 281.189819336 281.340209961 281.210327148 280.769897461 280.220092773 279.899780273 280.589904785 281.09967041 281.700256348 282.040100098 281.889709473 281.469787598 281.110412598 280.950256348 280.929748535 281.019592285 281.250061035 281.49029541 281.500061035 281.160217285 280.75982666 280.65045166 280.750061035 282.540466309 282.809997559 282.880310059 282.780700684 282.309997559 281.780700684 281.599060059 281.589294434 281.399841309 281.270935059 281.569763184 281.929138184 281.690856934 281.059997559 280.909606934 281.509216309 282.220153809 280.970092773 281.170288086 281.149780273 281.099975586 281.019897461 280.840209961 280.559936523 280.300170898 280.210327148 280.409545898 280.819702148 281.260131836 281.489624023 281.359741211 280.939819336 280.529663086 280.340209961 280.639709473 281.210021973 281.83013916 282.24029541 282.15045166 281.690490723 281.190490723 280.870178223 280.750061035 280.83013916 281.129943848 281.50982666 281.59967041 281.25982666 280.790100098 280.639709473 280.750061035 282.919372559 282.979919434 282.909606934 282.849060059 282.419372559 281.829528809 281.579528809 281.579528809 281.409606934 281.229919434 281.470153809 281.839294434 281.620544434 280.919372559 280.649841309 281.190856934 281.829528809 281.420288086 281.559936523 281.439819336 281.260131836 281.040405273 280.750366211 280.460327148 280.220092773 280.159545898 280.340209961 280.800170898 281.319702148 281.590209961 281.460327148 281.159545898 281.000366211 280.960327148 281.000061035 281.58013916 282.089904785 282.379943848 282.280334473 281.790100098 281.219787598 280.799865723 280.620178223 280.690490723 281.070373535 281.549865723 281.690490723 281.33013916 280.84967041 280.74029541 280.870178223 283.470153809 283.309997559 283.040466309 282.899841309 282.479919434 281.829528809 281.530700684 281.530700684 281.360778809 281.120544434 281.329528809 281.749450684 281.599060059 280.880310059 280.509216309 280.899841309 281.390075684 281.949584961 281.960327148 281.689819336 281.370483398 280.979858398 280.599975586 280.330444336 280.189819336 280.159545898 280.319702148 280.779663086 281.330444336 281.609741211 281.510131836 281.330444336 281.399780273 281.529663086 281.629943848 282.15045166 282.379943848 282.41998291 282.200256348 281.710021973 281.139709473 280.750061035 280.570373535 280.660217285 281.08013916 281.589904785 281.729553223 281.360412598 280.960021973 280.969787598 281.160217285 283.979919434 283.690856934 283.179138184 282.870544434 282.370544434 281.700622559 281.399841309 281.440856934 281.309997559 281.059997559 281.220153809 281.659606934 281.579528809 280.899841309 280.479919434 280.770935059 281.099060059 282.170288086 282.130249023 281.849975586 281.479858398 281.010131836 280.559936523 280.300170898 280.210327148 280.189819336 280.309936523 280.750366211 281.340209961 281.659545898 281.569702148 281.449584961 281.640014648 281.859741211 282.219787598 282.65045166 282.58013916 282.370178223 282.019592285 281.50982666 281.00982666 280.700256348 280.59967041 280.719787598 281.129943848 281.65045166 281.799865723 281.460021973 281.129943848 281.25982666 281.50982666 284.239685059 283.880310059 283.220153809 282.780700684 282.210388184 281.530700684 281.259216309 281.360778809 281.280700684 281.040466309 281.169372559 281.599060059 281.569763184 280.960388184 280.569763184 280.770935059 280.960388184 282.099975586 282.120483398 281.949584961 281.659545898 281.199584961 280.720092773 280.460327148 280.359741211 280.269897461 280.290405273 280.710327148 281.390014648 281.809936523 281.779663086 281.659545898 281.800170898 281.989624023 282.710021973 283.00982666 282.729553223 282.339904785 281.90045166 281.370178223 280.91998291 280.719787598 280.660217285 280.769592285 281.160217285 281.729553223 281.99029541 281.74029541 281.450256348 281.589904785 281.809631348 284.280700684 283.880310059 283.190856934 282.720153809 282.140075684 281.450622559 281.179138184 281.300231934 281.259216309 281.020935059 281.110778809 281.530700684 281.569763184 281.089294434 280.749450684 280.860778809 280.860778809 282.260131836 282.309936523 282.189819336 281.899780273 281.399780273 280.890014648 280.630249023 280.529663086 280.370483398 280.309936523 280.680053711 281.430053711 282.010131836 282.099975586 281.970092773 282.000366211 282.059936523 283.250061035 283.389709473 282.960021973 282.450256348 281.889709473 281.290100098 280.879943848 280.750061035 280.729553223 280.769592285 281.129943848 281.799865723 282.269592285 282.16998291 281.879943848 281.929748535 282.070373535 284.349060059 283.899841309 283.229919434 282.780700684 282.190856934 281.479919434 281.149841309 281.200622559 281.149841309 280.919372559 281.020935059 281.470153809 281.649841309 281.319763184 280.999450684 280.960388184 280.720153809 282.930053711 282.909545898 282.630249023 282.099975586 281.409545898 280.840209961 280.620483398 280.569702148 280.420288086 280.309936523 280.630249023 281.399780273 282.080444336 282.309936523 282.239624023 282.189819336 282.120483398 283.84967041 283.809631348 283.24029541 282.58013916 281.879943848 281.190490723 280.809631348 280.780334473 280.790100098 280.74029541 281.019592285 281.780334473 282.460021973 282.530334473 282.250061035 282.179748535 282.269592285 284.470153809 283.950622559 283.290466309 282.819763184 282.179138184 281.409606934 281.009216309 281.030700684 280.979919434 280.780700684 280.899841309 281.419372559 281.770935059 281.610778809 281.280700684 281.020935059 280.520935059 283.640014648 283.519897461 283.000366211 282.149780273 281.220092773 280.590209961 280.430053711 280.489624023 280.409545898 280.300170898 280.550170898 281.210327148 281.899780273 282.250366211 282.290405273 282.250366211 282.109741211 284.190490723 283.969787598 283.269592285 282.49029541 281.679748535 280.969787598 280.66998291 280.769592285 280.809631348 280.66998291 280.83013916 281.570373535 282.379943848 282.610412598 282.360412598 282.25982666 282.34967041 284.339294434 283.809997559 283.190856934 282.640075684 281.899841309 281.110778809 280.720153809 280.780700684 280.800231934 280.659606934 280.790466309 281.339294434 281.800231934 281.780700684 281.450622559 281.009216309 280.290466309 283.680053711 283.550170898 282.949584961 282.000366211 281.019897461 280.409545898 280.290405273 280.399780273 280.370483398 280.260131836 280.399780273 280.909545898 281.519897461 281.949584961 282.140014648 282.140014648 281.979858398 283.969787598 283.610412598 282.91998291 282.16998291 281.379943848 280.719787598 280.530334473 280.719787598 280.75982666 280.530334473 280.549865723 281.200256348 282.040100098 282.379943848 282.24029541 282.16998291 282.290100098 283.749450684 283.370544434 282.860778809 282.290466309 281.520935059 280.770935059 280.470153809 280.610778809 280.690856934 280.579528809 280.669372559 281.149841309 281.649841309 281.749450684 281.460388184 280.909606934 280.079528809 283.069702148 283.000366211 282.559936523 281.800170898 281.000366211 280.479858398 280.349975586 280.370483398 280.300170898 280.180053711 280.250366211 280.609741211 281.149780273 281.649780273 281.949584961 281.949584961 281.720092773 283.41998291 283.049865723 282.49029541 281.889709473 281.24029541 280.690490723 280.519592285 280.660217285 280.629943848 280.34967041 280.280334473 280.820373535 281.629943848 282.070373535 282.070373535 282.049865723 282.16998291 283.099060059 282.950622559 282.620544434 282.089294434 281.360778809 280.729919434 280.520935059 280.659606934 280.720153809 280.559997559 280.540466309 280.899841309 281.370544434 281.559997559 281.349060059 280.839294434 279.989685059 282.680053711 282.609741211 282.309936523 281.779663086 281.180053711 280.729858398 280.519897461 280.380249023 280.229858398 280.109741211 280.149780273 280.449584961 280.970092773 281.550170898 281.870483398 281.790405273 281.399780273 283.16998291 282.809631348 282.40045166 281.960021973 281.410217285 280.910217285 280.66998291 280.65045166 280.530334473 280.24029541 280.16998291 280.620178223 281.360412598 281.870178223 282.000061035 282.019592285 282.030334473 282.960388184 282.940856934 282.700622559 282.210388184 281.559997559 281.050231934 280.870544434 280.919372559 280.860778809 280.620544434 280.509216309 280.710388184 281.099060059 281.349060059 281.249450684 280.819763184 280.040466309 283.159545898 282.899780273 282.470092773 281.920288086 281.370483398 280.949584961 280.640014648 280.399780273 280.220092773 280.140014648 280.220092773 280.500366211 281.019897461 281.630249023 281.939819336 281.710327148 281.099975586 283.429748535 283.08013916 282.700256348 282.250061035 281.710021973 281.200256348 280.879943848 280.729553223 280.559631348 280.34967041 280.33013916 280.700256348 281.320373535 281.820373535 282.019592285 282.00982666 281.860412598 283.309997559 283.239685059 282.919372559 282.380310059 281.809997559 281.419372559 281.249450684 281.179138184 281.020935059 280.770935059 280.589294434 280.700622559 280.999450684 281.249450684 281.220153809 280.870544434 280.179138184 283.949584961 283.409545898 282.680053711 281.989624023 281.449584961 281.050170898 280.729858398 280.460327148 280.309936523 280.290405273 280.390014648 280.670288086 281.189819336 281.790405273 282.050170898 281.699584961 280.930053711 283.769592285 283.370178223 282.879943848 282.33013916 281.790100098 281.34967041 281.08013916 280.90045166 280.750061035 280.629943848 280.679748535 280.950256348 281.410217285 281.860412598 282.089904785 282.000061035 281.65045166 283.530700684 283.290466309 282.809997559 282.239685059 281.800231934 281.569763184 281.450622559 281.309997559 281.130310059 280.929138184 280.809997559 280.870544434 281.120544434 281.339294434 281.300231934 280.950622559 280.300231934 283.870483398 283.180053711 282.380249023 281.750366211 281.390014648 281.149780273 280.890014648 280.640014648 280.489624023 280.470092773 280.569702148 280.840209961 281.359741211 281.939819336 282.159545898 281.739624023 280.890014648 283.620178223 283.139709473 282.549865723 282.000061035 281.59967041 281.379943848 281.269592285 281.139709473 281.00982666 280.950256348 281.030334473 281.219787598 281.549865723 281.969787598 282.219787598 282.030334473 281.41998291 283.110778809 282.780700684 282.290466309 281.839294434 281.630310059 281.599060059 281.550231934 281.390075684 281.200622559 281.079528809 281.050231934 281.159606934 281.409606934 281.630310059 281.520935059 281.059997559 280.360778809 282.510131836 281.949584961 281.479858398 281.319702148 281.359741211 281.349975586 281.159545898 280.890014648 280.680053711 280.599975586 280.670288086 280.949584961 281.470092773 282.019897461 282.180053711 281.739624023 280.920288086 282.960021973 282.479553223 281.929748535 281.530334473 281.40045166 281.469787598 281.530334473 281.389709473 281.210021973 281.179748535 281.280334473 281.440490723 281.74029541 282.16998291 282.410217285 282.089904785 281.229553223 282.309997559 282.099060059 281.800231934 281.589294434 281.640075684 281.770935059 281.739685059 281.509216309 281.290466309 281.220153809 281.270935059 281.489685059 281.839294434 282.069763184 281.880310059 281.229919434 280.380310059 280.720092773 280.500366211 280.580444336 281.019897461 281.460327148 281.580444336 281.380249023 281.080444336 280.840209961 280.710327148 280.750366211 281.029663086 281.540405273 281.989624023 282.050170898 281.569702148 280.769897461 282.309631348 281.960021973 281.589904785 281.370178223 281.440490723 281.679748535 281.75982666 281.559631348 281.309631348 281.309631348 281.469787598 281.629943848 281.889709473 282.320373535 282.540100098 282.09967041 281.00982666 281.780700684 281.809997559 281.749450684 281.739685059 281.870544434 282.030700684 281.929138184 281.630310059 281.390075684 281.370544434 281.520935059 281.829528809 282.259216309 282.509216309 282.229919434 281.419372559 280.399841309 279.710327148 279.790405273 280.290405273 281.059936523 281.609741211 281.670288086 281.420288086 281.140014648 280.949584961 280.840209961 280.849975586 281.099975586 281.519897461 281.830444336 281.739624023 281.199584961 280.380249023 281.979553223 281.860412598 281.66998291 281.570373535 281.65045166 281.83013916 281.83013916 281.570373535 281.34967041 281.41998291 281.629943848 281.769592285 281.940490723 282.269592285 282.410217285 281.889709473 280.690490723 281.759216309 281.970153809 282.030700684 281.999450684 282.040466309 282.069763184 281.929138184 281.640075684 281.479919434 281.569763184 281.800231934 282.130310059 282.530700684 282.749450684 282.390075684 281.479919434 280.360778809 279.739624023 279.939819336 280.540405273 281.269897461 281.659545898 281.559936523 281.260131836 281.080444336 281.019897461 280.960327148 280.970092773 281.140014648 281.399780273 281.519897461 281.300170898 280.710327148 279.870483398 281.799865723 281.889709473 281.870178223 281.780334473 281.75982666 281.809631348 281.729553223 281.500061035 281.370178223 281.530334473 281.769592285 281.83013916 281.820373535 281.960021973 281.99029541 281.450256348 280.280334473 281.860778809 282.130310059 282.200622559 282.069763184 281.950622559 281.870544434 281.739685059 281.579528809 281.589294434 281.819763184 282.110778809 282.360778809 282.610778809 282.700622559 282.300231934 281.370544434 280.210388184 280.159545898 280.390014648 280.870483398 281.390014648 281.569702148 281.359741211 281.059936523 280.970092773 281.010131836 281.029663086 281.040405273 281.120483398 281.199584961 281.140014648 280.830444336 280.260131836 279.430053711 281.440490723 281.660217285 281.809631348 281.780334473 281.700256348 281.679748535 281.620178223 281.469787598 281.41998291 281.620178223 281.839904785 281.799865723 281.629943848 281.570373535 281.49029541 280.969787598 279.91998291 281.630310059 281.890075684 282.030700684 281.940856934 281.790466309 281.710388184 281.649841309 281.630310059 281.780700684 282.089294434 282.370544434 282.470153809 282.540466309 282.499450684 282.089294434 281.179138184 280.020935059 280.340209961 280.550170898 280.930053711 281.319702148 281.420288086 281.189819336 280.930053711 280.870483398 280.960327148 281.050170898 281.080444336 281.080444336 281.000366211 280.760131836 280.409545898 279.909545898 279.130249023 280.950256348 281.24029541 281.519592285 281.620178223 281.58013916 281.58013916 281.589904785 281.50982666 281.479553223 281.65045166 281.809631348 281.719787598 281.440490723 281.229553223 281.040100098 280.559631348 279.620178223 281.089294434 281.360778809 281.669372559 281.780700684 281.749450684 281.739685059 281.759216309 281.809997559 281.989685059 282.290466309 282.489685059 282.499450684 282.419372559 282.319763184 281.929138184 281.040466309 279.839294434 280.250366211 280.460327148 280.769897461 281.109741211 281.199584961 281.010131836 280.819702148 280.800170898 280.930053711 281.069702148 281.159545898 281.109741211 280.859741211 280.460327148 280.040405273 279.580444336 278.909545898 280.66998291 280.950256348 281.309631348 281.469787598 281.469787598 281.49029541 281.540100098 281.50982666 281.49029541 281.610412598 281.729553223 281.620178223 281.269592285 280.929748535 280.65045166 280.15045166 279.290100098 280.579528809 280.880310059 281.349060059 281.649841309 281.739685059 281.800231934 281.890075684 281.960388184 282.099060059 282.329528809 282.479919434 282.429138184 282.300231934 282.169372559 281.819763184 280.940856934 279.669372559 280.210327148 280.370483398 280.599975586 280.830444336 280.870483398 280.720092773 280.640014648 280.760131836 280.979858398 281.180053711 281.279663086 281.210327148 280.849975586 280.300170898 279.750366211 279.279663086 278.720092773 280.750061035 280.950256348 281.229553223 281.320373535 281.24029541 281.200256348 281.290100098 281.370178223 281.41998291 281.530334473 281.639709473 281.49029541 281.08013916 280.620178223 280.219787598 279.690490723 278.860412598 280.349060059 280.649841309 281.149841309 281.450622559 281.530700684 281.640075684 281.829528809 281.979919434 282.099060059 282.259216309 282.370544434 282.300231934 282.140075684 281.979919434 281.630310059 280.780700684 279.479919434 280.370483398 280.430053711 280.519897461 280.580444336 280.489624023 280.370483398 280.470092773 280.800170898 281.149780273 281.340209961 281.409545898 281.309936523 280.920288086 280.269897461 279.609741211 279.080444336 278.580444336 280.99029541 281.08013916 281.190490723 281.110412598 280.870178223 280.769592285 280.929748535 281.160217285 281.339904785 281.49029541 281.549865723 281.34967041 280.879943848 280.339904785 279.84967041 279.25982666 278.429748535 280.360778809 280.669372559 281.069763184 281.239685059 281.239685059 281.370544434 281.690856934 281.940856934 282.059997559 282.159606934 282.249450684 282.169372559 281.950622559 281.720153809 281.360778809 280.550231934 279.290466309 280.599975586 280.580444336 280.559936523 280.500366211 280.340209961 280.269897461 280.529663086 281.029663086 281.420288086 281.519897461 281.479858398 281.349975586 281.000366211 280.370483398 279.649780273 279.050170898 278.569702148 281.16998291 281.200256348 281.179748535 280.960021973 280.629943848 280.500061035 280.719787598 281.08013916 281.360412598 281.500061035 281.500061035 281.24029541 280.729553223 280.179748535 279.65045166 279.019592285 278.179748535 280.589294434 280.950622559 281.249450684 281.280700684 281.179138184 281.309997559 281.669372559 281.940856934 281.989685059 282.030700684 282.089294434 282.030700684 281.780700684 281.470153809 281.099060059 280.380310059 279.200622559 280.750366211 280.710327148 280.689819336 280.649780273 280.529663086 280.529663086 280.870483398 281.370483398 281.659545898 281.620483398 281.460327148 281.319702148 281.040405273 280.470092773 279.779663086 279.159545898 278.640014648 281.299865723 281.34967041 281.299865723 281.059631348 280.719787598 280.58013916 280.790100098 281.16998291 281.440490723 281.530334473 281.450256348 281.15045166 280.65045166 280.120178223 279.589904785 278.969787598 278.129943848 281.050231934 281.470153809 281.710388184 281.649841309 281.479919434 281.530700684 281.780700684 281.919372559 281.839294434 281.809997559 281.899841309 281.899841309 281.659606934 281.329528809 280.989685059 280.370544434 279.239685059 280.769897461 280.750366211 280.790405273 280.870483398 280.880249023 280.960327148 281.239624023 281.590209961 281.699584961 281.559936523 281.380249023 281.239624023 280.970092773 280.470092773 279.870483398 279.300170898 278.720092773 281.410217285 281.540100098 281.549865723 281.370178223 281.049865723 280.870178223 281.000061035 281.269592285 281.440490723 281.460021973 281.33013916 281.040100098 280.570373535 280.049865723 279.559631348 278.960021973 278.139709473 281.649841309 282.050231934 282.210388184 282.079528809 281.839294434 281.770935059 281.849060059 281.809997559 281.630310059 281.579528809 281.739685059 281.809997559 281.599060059 281.280700684 280.999450684 280.479919434 279.380310059 280.599975586 280.609741211 280.729858398 280.930053711 281.069702148 281.180053711 281.359741211 281.529663086 281.529663086 281.390014648 281.269897461 281.130249023 280.800170898 280.319702148 279.859741211 279.409545898 278.779663086 281.40045166 281.58013916 281.679748535 281.559631348 281.280334473 281.070373535 281.09967041 281.24029541 281.280334473 281.229553223 281.139709473 280.910217285 280.479553223 279.929748535 279.429748535 278.879943848 278.110412598 282.089294434 282.380310059 282.440856934 282.270935059 281.989685059 281.849060059 281.829528809 281.720153809 281.520935059 281.499450684 281.700622559 281.780700684 281.569763184 281.270935059 281.059997559 280.630310059 279.509216309 280.279663086 280.319702148 280.489624023 280.769897461 281.000366211 281.140014648 281.260131836 281.309936523 281.269897461 281.210327148 281.180053711 281.040405273 280.620483398 280.099975586 279.739624023 279.430053711 278.779663086 281.160217285 281.370178223 281.50982666 281.460021973 281.219787598 281.049865723 281.059631348 281.089904785 281.00982666 280.91998291 280.910217285 280.799865723 280.40045166 279.809631348 279.24029541 278.729553223 278.019592285 282.140075684 282.339294434 282.360778809 282.190856934 281.940856934 281.819763184 281.809997559 281.720153809 281.540466309 281.530700684 281.710388184 281.759216309 281.520935059 281.229919434 281.099060059 280.739685059 279.589294434 279.930053711 280.040405273 280.290405273 280.609741211 280.890014648 281.050170898 281.120483398 281.120483398 281.080444336 281.090209961 281.149780273 281.000366211 280.489624023 279.870483398 279.500366211 279.250366211 278.620483398 280.799865723 281.019592285 281.219787598 281.229553223 281.049865723 280.940490723 280.950256348 280.910217285 280.710021973 280.589904785 280.679748535 280.729553223 280.40045166 279.74029541 279.089904785 278.549865723 277.889709473 281.899841309 282.110778809 282.200622559 282.089294434 281.880310059 281.780700684 281.790466309 281.700622559 281.499450684 281.460388184 281.610778809 281.669372559 281.429138184 281.179138184 281.110778809 280.809997559 279.630310059 279.750366211 279.930053711 280.239624023 280.590209961 280.859741211 281.000366211 281.029663086 280.979858398 280.920288086 280.979858398 281.120483398 281.000366211 280.449584961 279.699584961 279.180053711 278.870483398 278.260131836 280.589904785 280.84967041 281.129943848 281.15045166 280.960021973 280.83013916 280.820373535 280.700256348 280.450256348 280.339904785 280.549865723 280.74029541 280.460021973 279.74029541 278.99029541 278.410217285 277.74029541 281.640075684 281.950622559 282.179138184 282.120544434 281.890075684 281.720153809 281.669372559 281.509216309 281.239685059 281.159606934 281.360778809 281.509216309 281.370544434 281.179138184 281.140075684 280.870544434 279.700622559 279.769897461 279.939819336 280.229858398 280.590209961 280.849975586 280.930053711 280.870483398 280.760131836 280.689819336 280.779663086 280.979858398 280.979858398 280.479858398 279.640014648 278.890014648 278.390014648 277.790405273 280.559631348 280.910217285 281.290100098 281.290100098 280.979553223 280.719787598 280.610412598 280.440490723 280.190490723 280.16998291 280.500061035 280.780334473 280.549865723 279.809631348 278.99029541 278.320373535 277.58013916 281.470153809 281.899841309 282.239685059 282.210388184 281.870544434 281.579528809 281.419372559 281.149841309 280.819763184 280.749450684 281.050231934 281.360778809 281.360778809 281.239685059 281.200622559 280.929138184 279.800231934 279.830444336 279.859741211 280.050170898 280.430053711 280.739624023 280.809936523 280.670288086 280.489624023 280.420288086 280.529663086 280.779663086 280.870483398 280.500366211 279.680053711 278.769897461 278.050170898 277.399780273 280.519592285 281.00982666 281.469787598 281.440490723 280.99029541 280.58013916 280.360412598 280.16998291 279.979553223 280.059631348 280.460021973 280.790100098 280.59967041 279.950256348 279.15045166 278.360412598 277.479553223 281.280700684 281.780700684 282.210388184 282.190856934 281.790466309 281.390075684 281.149841309 280.829528809 280.470153809 280.419372559 280.790466309 281.220153809 281.349060059 281.290466309 281.229919434 280.950622559 279.890075684 279.800170898 279.649780273 279.739624023 280.180053711 280.630249023 280.760131836 280.580444336 280.349975586 280.260131836 280.359741211 280.559936523 280.659545898 280.430053711 279.769897461 278.840209961 277.949584961 277.180053711 280.309631348 280.950256348 281.500061035 281.450256348 280.950256348 280.469787598 280.210021973 280.00982666 279.860412598 279.969787598 280.34967041 280.660217285 280.570373535 280.089904785 279.429748535 278.570373535 277.469787598 280.940856934 281.489685059 282.030700684 282.069763184 281.659606934 281.239685059 280.970153809 280.669372559 280.300231934 280.200622559 280.540466309 281.009216309 281.239685059 281.249450684 281.200622559 280.890075684 279.909606934 279.699584961 279.449584961 279.500366211 280.040405273 280.640014648 280.830444336 280.609741211 280.330444336 280.229858398 280.290405273 280.359741211 280.370483398 280.229858398 279.779663086 279.000366211 278.059936523 277.120483398 280.070373535 280.809631348 281.40045166 281.34967041 280.870178223 280.440490723 280.200256348 279.99029541 279.820373535 279.870178223 280.129943848 280.379943848 280.389709473 280.190490723 279.74029541 278.860412598 277.500061035 280.489685059 281.130310059 281.790466309 281.940856934 281.550231934 281.110778809 280.849060059 280.569763184 280.200622559 280.030700684 280.280700684 280.729919434 281.050231934 281.190856934 281.159606934 280.809997559 279.849060059 279.620483398 279.380249023 279.470092773 280.069702148 280.720092773 280.890014648 280.590209961 280.250366211 280.170288086 280.220092773 280.159545898 280.059936523 279.970092773 279.769897461 279.199584961 278.290405273 277.189819336 280.00982666 280.799865723 281.33013916 281.24029541 280.809631348 280.460021973 280.24029541 280.019592285 279.790100098 279.75982666 279.910217285 280.08013916 280.190490723 280.219787598 279.99029541 279.120178223 277.559631348 280.110778809 280.860778809 281.649841309 281.890075684 281.499450684 281.009216309 280.729919434 280.479919434 280.130310059 279.919372559 280.079528809 280.520935059 280.940856934 281.200622559 281.220153809 280.809997559 279.790466309 279.580444336 279.430053711 279.580444336 280.159545898 280.739624023 280.800170898 280.399780273 280.029663086 279.989624023 280.080444336 279.989624023 279.830444336 279.809936523 279.830444336 279.500366211 278.649780273 277.390014648 280.09967041 280.889709473 281.33013916 281.190490723 280.790100098 280.479553223 280.280334473 280.030334473 279.799865723 279.729553223 279.799865723 279.90045166 280.059631348 280.269592285 280.190490723 279.34967041 277.66998291 279.880310059 280.749450684 281.649841309 281.929138184 281.540466309 280.989685059 280.690856934 280.450622559 280.140075684 279.929138184 280.059997559 280.489685059 280.979919434 281.339294434 281.399841309 280.950622559 279.849060059 279.559936523 279.500366211 279.689819336 280.210327148 280.680053711 280.649780273 280.220092773 279.870483398 279.859741211 279.970092773 279.899780273 279.750366211 279.809936523 280.000366211 279.880249023 279.109741211 277.750366211 280.16998291 280.91998291 281.290100098 281.16998291 280.84967041 280.570373535 280.33013916 280.059631348 279.860412598 279.799865723 279.820373535 279.860412598 280.049865723 280.370178223 280.40045166 279.589904785 277.870178223 279.800231934 280.770935059 281.720153809 282.040466309 281.679138184 281.140075684 280.800231934 280.540466309 280.210388184 280.009216309 280.140075684 280.569763184 281.099060059 281.540466309 281.669372559 281.210388184 280.079528809 279.670288086 279.659545898 279.849975586 280.279663086 280.659545898 280.640014648 280.269897461 279.960327148 279.920288086 279.989624023 279.890014648 279.760131836 279.880249023 280.199584961 280.220092773 279.550170898 278.159545898 280.120178223 280.799865723 281.15045166 281.160217285 280.979553223 280.729553223 280.429748535 280.129943848 279.929748535 279.879943848 279.860412598 279.879943848 280.120178223 280.519592285 280.589904785 279.799865723 278.120178223 279.890075684 280.890075684 281.809997559 282.149841309 281.849060059 281.360778809 280.970153809 280.640075684 280.280700684 280.079528809 280.239685059 280.669372559 281.210388184 281.720153809 281.970153809 281.579528809 280.450622559 280.029663086 280.029663086 280.149780273 280.449584961 280.729858398 280.750366211 280.500366211 280.220092773 280.109741211 280.059936523 279.909545898 279.790405273 279.939819336 280.300170898 280.420288086 279.849975586 278.529663086 280.09967041 280.65045166 280.969787598 281.110412598 281.110412598 280.910217285 280.519592285 280.15045166 279.950256348 279.889709473 279.84967041 279.889709473 280.190490723 280.639709473 280.710021973 279.929748535 278.360412598 280.169372559 281.110778809 281.880310059 282.149841309 281.919372559 281.499450684 281.099060059 280.690856934 280.309997559 280.169372559 280.370544434 280.809997559 281.370544434 281.979919434 282.339294434 282.030700684 280.909606934 274.260070801 273.809875488 274.000305176 274.630187988 275.120422363 275.149719238 274.979797363 274.870422363 274.779602051 274.630187988 274.550109863 274.590148926 274.489562988 273.889953613 272.889953613 271.910461426 271.080383301 274.600006104 274.899810791 275.279693604 275.399810791 275.140045166 274.739654541 274.489654541 274.449615479 274.489654541 274.479888916 274.359771729 274.080474854 273.649810791 273.149810791 272.580474854 271.830474854 270.729888916 276.379730225 276.259613037 275.770355225 275.2996521 275.0496521 274.8699646 274.629730225 274.410003662 274.379730225 274.480316162 274.429534912 274.150238037 273.749847412 273.469573975 273.2996521 273.009613037 272.310394287 274.189758301 273.670227051 273.840148926 274.489562988 275.010070801 275.050109863 274.849914551 274.729797363 274.700500488 274.689758301 274.720031738 274.779602051 274.639953613 274.059875488 273.109680176 272.139953613 271.229797363 274.420318604 274.600006104 274.930084229 275.080474854 274.920318604 274.640045166 274.479888916 274.470123291 274.540435791 274.600006104 274.510162354 274.180084229 273.670318604 273.149810791 272.649810791 271.920318604 270.809967041 276.020355225 275.900238037 275.579925537 275.2996521 275.1199646 274.919769287 274.640472412 274.410003662 274.410003662 274.499847412 274.480316162 274.28012085 273.999847412 273.78012085 273.669769287 273.4402771 272.7996521 274.229797363 273.689758301 273.809875488 274.410461426 274.880187988 274.920227051 274.760070801 274.689758301 274.760070801 274.889953613 274.989562988 275.000305176 274.750305176 274.130187988 273.250305176 272.290344238 271.279602051 274.229888916 274.319732666 274.630279541 274.819732666 274.769927979 274.600006104 274.470123291 274.470123291 274.590240479 274.710357666 274.619537354 274.159576416 273.529693604 273.050201416 272.710357666 272.119537354 270.979888916 275.669769287 275.579925537 275.429534912 275.2996521 275.150238037 274.890472412 274.560394287 274.379730225 274.45980835 274.60043335 274.610198975 274.419769287 274.1902771 274.060394287 274.03012085 273.890472412 273.270355225 274.269836426 273.750305176 273.849914551 274.359680176 274.760070801 274.809875488 274.689758301 274.689758301 274.830383301 275.010070801 275.130187988 275.059875488 274.739562988 274.139953613 273.380187988 272.479797363 271.340148926 274.100006104 274.140045166 274.439849854 274.640045166 274.630279541 274.519927979 274.399810791 274.380279541 274.489654541 274.619537354 274.449615479 273.869537354 273.229888916 272.930084229 272.869537354 272.500396729 271.340240479 275.28012085 275.259613037 275.219573975 275.150238037 275.03012085 274.749847412 274.4402771 274.320159912 274.469573975 274.650238037 274.6199646 274.410003662 274.219573975 274.219573975 274.339691162 274.289886475 273.610198975 274.170227051 273.739562988 273.870422363 274.330383301 274.670227051 274.739562988 274.679992676 274.689758301 274.779602051 274.910461426 274.979797363 274.880187988 274.580383301 274.120422363 273.580383301 272.769836426 271.489562988 273.989654541 274.010162354 274.260162354 274.449615479 274.489654541 274.420318604 274.309967041 274.250396729 274.319732666 274.350006104 274.050201416 273.430084229 272.909576416 272.869537354 273.109771729 272.949615479 271.809967041 274.789886475 274.860198975 274.890472412 274.890472412 274.85043335 274.660003662 274.400238037 274.320159912 274.450042725 274.5496521 274.429534912 274.200042725 274.140472412 274.35043335 274.660003662 274.640472412 273.85043335 273.920227051 273.609680176 273.830383301 274.300109863 274.660461426 274.769836426 274.739562988 274.689758301 274.670227051 274.700500488 274.710266113 274.620422363 274.399719238 274.139953613 273.819641113 273.139953613 271.739562988 273.809967041 273.850006104 274.090240479 274.290435791 274.399810791 274.390045166 274.279693604 274.170318604 274.149810791 274.059967041 273.649810791 273.059967041 272.720123291 272.930084229 273.369537354 273.330474854 272.229888916 274.2996521 274.499847412 274.610198975 274.6902771 274.749847412 274.669769287 274.469573975 274.35043335 274.379730225 274.3699646 274.169769287 273.990081787 274.129730225 274.579925537 275.03012085 274.999847412 274.0496521 273.639953613 273.489562988 273.809875488 274.340148926 274.729797363 274.870422363 274.819641113 274.710266113 274.620422363 274.590148926 274.590148926 274.510070801 274.359680176 274.229797363 274.059875488 273.470031738 272.019836426 273.619537354 273.729888916 274.010162354 274.269927979 274.439849854 274.439849854 274.260162354 274.080474854 273.989654541 273.809967041 273.359771729 272.819732666 272.670318604 273.069732666 273.569732666 273.540435791 272.510162354 273.969573975 274.2996521 274.490081787 274.6199646 274.749847412 274.730316162 274.499847412 274.28012085 274.230316162 274.179534912 274.020355225 273.950042725 274.259613037 274.890472412 275.390472412 275.270355225 274.169769287 273.510070801 273.529602051 273.920227051 274.439758301 274.830383301 274.939758301 274.849914551 274.720031738 274.649719238 274.670227051 274.689758301 274.590148926 274.439758301 274.330383301 274.229797363 273.689758301 272.269836426 273.619537354 273.800201416 274.100006104 274.390045166 274.559967041 274.479888916 274.199615479 273.949615479 273.850006104 273.670318604 273.189849854 272.689849854 272.670318604 273.180084229 273.689849854 273.649810791 272.689849854 273.910003662 274.329925537 274.539886475 274.640472412 274.730316162 274.660003662 274.360198975 274.060394287 273.990081787 274.03012085 273.990081787 274.0496521 274.4402771 275.089691162 275.5496521 275.339691162 274.169769287 273.630187988 273.750305176 274.130187988 274.580383301 274.880187988 274.939758301 274.840148926 274.750305176 274.769836426 274.840148926 274.800109863 274.609680176 274.420227051 274.349914551 274.269836426 273.760070801 272.429992676 273.830474854 274.040435791 274.319732666 274.569732666 274.670318604 274.500396729 274.170318604 273.930084229 273.869537354 273.680084229 273.170318604 272.640045166 272.659576416 273.239654541 273.790435791 273.769927979 272.909576416 273.999847412 274.469573975 274.629730225 274.640472412 274.629730225 274.499847412 274.179534912 273.860198975 273.820159912 273.95980835 274.0496521 274.150238037 274.499847412 275.060394287 275.4402771 275.1902771 274.0496521 273.859680176 274.059875488 274.389953613 274.720031738 274.910461426 274.910461426 274.830383301 274.819641113 274.889953613 274.889953613 274.679992676 274.370422363 274.200500488 274.239562988 274.260070801 273.809875488 272.550109863 274.119537354 274.330474854 274.529693604 274.670318604 274.710357666 274.559967041 274.309967041 274.149810791 274.090240479 273.850006104 273.250396729 272.689849854 272.720123291 273.340240479 273.949615479 273.989654541 273.180084229 274.10043335 274.60043335 274.719573975 274.6199646 274.53012085 274.429534912 274.179534912 273.890472412 273.839691162 273.990081787 274.129730225 274.219573975 274.480316162 274.910003662 275.200042725 274.950042725 273.890472412 274.040344238 274.309875488 274.639953613 274.859680176 274.920227051 274.870422363 274.809875488 274.809875488 274.840148926 274.679992676 274.300109863 273.929992676 273.899719238 274.179992676 274.359680176 273.929992676 272.700500488 274.350006104 274.559967041 274.699615479 274.720123291 274.689849854 274.630279541 274.519927979 274.399810791 274.250396729 273.899810791 273.300201416 272.819732666 272.920318604 273.569732666 274.220123291 274.269927979 273.460357666 274.1902771 274.740081787 274.85043335 274.640472412 274.509613037 274.490081787 274.3699646 274.110198975 273.95980835 274.020355225 274.160003662 274.270355225 274.490081787 274.7996521 274.980316162 274.700042725 273.719573975 274.160461426 274.540344238 274.889953613 275.000305176 274.910461426 274.760070801 274.649719238 274.599914551 274.529602051 274.290344238 273.870422363 273.590148926 273.779602051 274.309875488 274.609680176 274.179992676 272.910461426 274.600006104 274.859771729 274.920318604 274.769927979 274.640045166 274.609771729 274.569732666 274.369537354 274.029693604 273.600006104 273.149810791 272.920318604 273.180084229 273.869537354 274.510162354 274.540435791 273.670318604 274.400238037 274.999847412 275.089691162 274.770355225 274.539886475 274.560394287 274.53012085 274.249847412 273.95980835 273.910003662 274.060394287 274.249847412 274.490081787 274.749847412 274.820159912 274.490081787 273.560394287 274.389953613 274.889953613 275.210266113 275.139953613 274.859680176 274.569641113 274.359680176 274.220031738 274.120422363 273.929992676 273.660461426 273.550109863 273.880187988 274.489562988 274.840148926 274.399719238 273.099914551 275.050201416 275.350006104 275.300201416 274.939849854 274.609771729 274.489654541 274.390045166 274.059967041 273.559967041 273.149810791 272.930084229 272.989654541 273.399810791 274.119537354 274.729888916 274.760162354 273.850006104 274.8699646 275.400238037 275.400238037 274.950042725 274.570159912 274.520355225 274.490081787 274.179534912 273.810394287 273.719573975 273.890472412 274.150238037 274.410003662 274.650238037 274.679534912 274.310394287 273.45980835 274.870422363 275.420227051 275.590148926 275.269836426 274.800109863 274.410461426 274.139953613 273.960266113 273.889953613 273.870422363 273.800109863 273.769836426 274.029602051 274.550109863 274.849914551 274.439758301 273.200500488 275.720123291 275.979888916 275.800201416 275.189849854 274.619537354 274.369537354 274.220123291 273.869537354 273.390045166 273.080474854 273.019927979 273.170318604 273.569732666 274.239654541 274.869537354 274.939849854 274.019927979 275.520355225 275.85043335 275.700042725 275.129730225 274.629730225 274.45980835 274.3699646 274.10043335 273.810394287 273.740081787 273.860198975 274.0496521 274.28012085 274.520355225 274.579925537 274.270355225 273.509613037 275.519836426 275.989562988 275.910461426 275.349914551 274.769836426 274.399719238 274.170227051 274.019836426 274.029602051 274.170227051 274.189758301 274.069641113 274.109680176 274.429992676 274.649719238 274.309875488 273.179992676 276.340240479 276.540435791 276.239654541 275.470123291 274.750396729 274.409576416 274.309967041 274.119537354 273.830474854 273.680084229 273.619537354 273.609771729 273.769927979 274.290435791 274.930084229 275.059967041 274.170318604 276.1199646 276.179534912 275.910003662 275.339691162 274.789886475 274.499847412 274.3699646 274.240081787 274.150238037 274.140472412 274.1199646 274.070159912 274.169769287 274.429534912 274.570159912 274.339691162 273.660003662 276.040344238 276.359680176 276.080383301 275.389953613 274.809875488 274.559875488 274.420227051 274.340148926 274.410461426 274.599914551 274.620422363 274.370422363 274.189758301 274.330383301 274.500305176 274.170227051 273.080383301 276.649810791 276.779693604 276.489654541 275.750396729 275.010162354 274.630279541 274.580474854 274.580474854 274.569732666 274.580474854 274.470123291 274.210357666 274.080474854 274.420318604 275.000396729 275.119537354 274.210357666 276.4402771 276.270355225 275.999847412 275.570159912 275.070159912 274.700042725 274.53012085 274.539886475 274.660003662 274.70980835 274.499847412 274.1902771 274.1199646 274.379730225 274.570159912 274.339691162 273.669769287 276.170227051 276.429992676 276.080383301 275.410461426 274.929992676 274.779602051 274.710266113 274.620422363 274.700500488 274.889953613 274.920227051 274.670227051 274.460266113 274.529602051 274.609680176 274.149719238 272.960266113 276.580474854 276.710357666 276.550201416 276.010162354 275.359771729 274.939849854 274.819732666 274.890045166 275.059967041 275.229888916 275.170318604 274.830474854 274.559967041 274.720123291 275.140045166 275.109771729 274.100006104 276.3699646 276.129730225 276.009613037 275.820159912 275.429534912 274.990081787 274.740081787 274.78012085 275.009613037 275.079925537 274.749847412 274.28012085 274.129730225 274.3699646 274.490081787 274.150238037 273.3699646 276.000305176 276.269836426 276.000305176 275.450500488 275.099914551 275.000305176 274.910461426 274.760070801 274.779602051 274.970031738 275.090148926 275.010070801 274.920227051 274.979797363 274.889953613 274.220031738 272.819641113 276.340240479 276.470123291 276.489654541 276.210357666 275.699615479 275.239654541 274.979888916 274.960357666 275.140045166 275.430084229 275.559967041 275.380279541 275.170318604 275.210357666 275.369537354 275.100006104 273.930084229 276.0496521 275.879730225 276.020355225 276.10043335 275.820159912 275.320159912 274.9402771 274.890472412 275.079925537 275.150238037 274.85043335 274.429534912 274.289886475 274.469573975 274.450042725 273.890472412 272.9402771 275.809875488 276.090148926 275.929992676 275.529602051 275.269836426 275.200500488 275.069641113 274.840148926 274.760070801 274.950500488 275.189758301 275.319641113 275.380187988 275.389953613 275.109680176 274.239562988 272.710266113 276.189849854 276.290435791 276.399810791 276.309967041 275.949615479 275.500396729 275.140045166 274.970123291 275.050201416 275.380279541 275.739654541 275.869537354 275.800201416 275.729888916 275.640045166 275.119537354 273.830474854 275.719573975 275.749847412 276.1199646 276.400238037 276.219573975 275.700042725 275.20980835 275.009613037 275.079925537 275.169769287 275.0496521 274.810394287 274.740081787 274.820159912 274.610198975 273.85043335 272.740081787 275.769836426 276.050109863 275.920227051 275.609680176 275.429992676 275.370422363 275.229797363 274.950500488 274.800109863 274.950500488 275.269836426 275.519836426 275.620422363 275.540344238 275.120422363 274.200500488 272.689758301 276.250396729 276.290435791 276.369537354 276.340240479 276.090240479 275.720123291 275.350006104 275.069732666 275.029693604 275.319732666 275.840240479 276.229888916 276.300201416 276.149810791 275.859771729 275.210357666 273.899810791 275.589691162 275.810394287 276.320159912 276.660003662 276.53012085 276.0496521 275.5496521 275.249847412 275.219573975 275.360198975 275.45980835 275.4402771 275.390472412 275.329925537 274.969573975 274.110198975 272.910003662 275.840148926 276.090148926 276.000305176 275.729797363 275.569641113 275.500305176 275.340148926 275.069641113 274.920227051 275.029602051 275.330383301 275.580383301 275.649719238 275.500305176 275.050109863 274.210266113 272.819641113 276.470123291 276.460357666 276.449615479 276.390045166 276.189849854 275.899810791 275.550201416 275.199615479 275.050201416 275.309967041 275.899810791 276.449615479 276.619537354 276.430084229 276.040435791 275.369537354 274.130279541 275.6902771 276.03012085 276.5496521 276.810394287 276.650238037 276.249847412 275.85043335 275.539886475 275.4402771 275.629730225 275.900238037 276.020355225 275.950042725 275.759613037 275.329925537 274.45980835 273.249847412 275.880187988 276.149719238 276.120422363 275.910461426 275.700500488 275.540344238 275.340148926 275.139953613 275.040344238 275.160461426 275.399719238 275.599914551 275.639953613 275.460266113 275.050109863 274.309875488 273.019836426 276.670318604 276.659576416 276.580474854 276.470123291 276.290435791 276.010162354 275.670318604 275.300201416 275.109771729 275.330474854 275.939849854 276.559967041 276.800201416 276.630279541 276.220123291 275.580474854 274.430084229 275.900238037 276.28012085 276.6902771 276.7996521 276.560394287 276.240081787 275.980316162 275.740081787 275.60043335 275.770355225 276.129730225 276.339691162 276.240081787 275.95980835 275.509613037 274.679534912 273.499847412 275.809875488 276.170227051 276.239562988 276.080383301 275.800109863 275.510070801 275.279602051 275.149719238 275.160461426 275.290344238 275.479797363 275.639953613 275.679992676 275.510070801 275.099914551 274.380187988 273.120422363 276.729888916 276.750396729 276.649810791 276.519927979 276.340240479 276.059967041 275.720123291 275.399810791 275.229888916 275.439849854 276.029693604 276.670318604 276.960357666 276.819732666 276.399810791 275.769927979 274.699615479 276.060394287 276.400238037 276.719573975 276.70980835 276.400238037 276.129730225 275.999847412 275.839691162 275.669769287 275.770355225 276.140472412 276.410003662 276.35043335 276.0496521 275.60043335 274.7996521 273.610198975 275.720031738 276.149719238 276.290344238 276.160461426 275.840148926 275.460266113 275.210266113 275.179992676 275.290344238 275.410461426 275.569641113 275.729797363 275.779602051 275.590148926 275.109680176 274.340148926 273.090148926 276.640045166 276.670318604 276.569732666 276.460357666 276.300201416 276.059967041 275.769927979 275.529693604 275.439849854 275.670318604 276.210357666 276.790435791 277.069732666 276.939849854 276.510162354 275.899810791 274.909576416 276.079925537 276.410003662 276.700042725 276.640472412 276.28012085 276.03012085 275.990081787 275.910003662 275.730316162 275.770355225 276.150238037 276.490081787 276.45980835 276.150238037 275.679534912 274.900238037 273.70980835 275.710266113 276.109680176 276.220031738 276.090148926 275.769836426 275.429992676 275.239562988 275.269836426 275.389953613 275.510070801 275.670227051 275.870422363 275.929992676 275.649719238 275.059875488 274.239562988 273.059875488 276.500396729 276.519927979 276.430084229 276.340240479 276.220123291 276.019927979 275.819732666 275.689849854 275.710357666 275.939849854 276.399810791 276.890045166 277.119537354 276.960357666 276.500396729 275.899810791 275.019927979 276.009613037 276.35043335 276.6902771 276.660003662 276.259613037 275.980316162 275.999847412 276.009613037 275.860198975 275.8699646 276.240081787 276.589691162 276.560394287 276.200042725 275.70980835 274.980316162 273.879730225 275.779602051 276.099914551 276.099914551 275.939758301 275.670227051 275.420227051 275.300109863 275.349914551 275.460266113 275.580383301 275.790344238 276.040344238 276.080383301 275.700500488 275.019836426 274.210266113 273.160461426 276.369537354 276.399810791 276.330474854 276.250396729 276.159576416 276.019927979 275.890045166 275.850006104 275.939849854 276.180084229 276.550201416 276.920318604 277.050201416 276.859771729 276.420318604 275.850006104 275.050201416 275.9402771 276.339691162 276.740081787 276.740081787 276.2996521 275.950042725 275.999847412 276.10043335 275.999847412 276.009613037 276.320159912 276.610198975 276.490081787 276.070159912 275.589691162 274.980316162 274.020355225 275.809875488 276.059875488 276.000305176 275.840148926 275.630187988 275.410461426 275.319641113 275.370422363 275.479797363 275.630187988 275.889953613 276.189758301 276.189758301 275.750305176 275.050109863 274.290344238 273.340148926 276.220123291 276.290435791 276.269927979 276.220123291 276.140045166 276.040435791 275.970123291 275.979888916 276.109771729 276.359771729 276.670318604 276.899810791 276.930084229 276.720123291 276.319732666 275.779693604 274.989654541 275.980316162 276.400238037 276.820159912 276.820159912 276.35043335 275.95980835 276.009613037 276.160003662 276.089691162 276.060394287 276.2996521 276.499847412 276.2996521 275.829925537 275.360198975 274.860198975 274.0496521 275.750305176 276.000305176 275.960266113 275.819641113 275.620422363 275.389953613 275.279602051 275.330383301 275.489562988 275.689758301 275.960266113 276.220031738 276.200500488 275.779602051 275.130187988 274.399719238 273.429992676 276.069732666 276.180084229 276.199615479 276.170318604 276.109771729 276.050201416 276.000396729 276.040435791 276.199615479 276.470123291 276.750396729 276.899810791 276.840240479 276.609771729 276.239654541 275.670318604 274.809967041 276.110198975 276.53012085 276.900238037 276.879730225 276.410003662 276.039886475 276.079925537 276.20980835 276.129730225 276.060394287 276.219573975 276.35043335 276.140472412 275.640472412 275.140472412 274.6199646 273.860198975 275.630187988 275.920227051 275.960266113 275.870422363 275.649719238 275.370422363 275.229797363 275.319641113 275.519836426 275.750305176 275.979797363 276.170227051 276.139953613 275.809875488 275.229797363 274.450500488 273.359680176 275.960357666 276.080474854 276.119537354 276.100006104 276.069732666 276.040435791 276.019927979 276.050201416 276.199615479 276.500396729 276.809967041 276.899810791 276.760162354 276.519927979 276.130279541 275.479888916 274.470123291 276.240081787 276.629730225 276.919769287 276.8699646 276.480316162 276.169769287 276.1902771 276.249847412 276.140472412 276.0496521 276.169769287 276.270355225 276.03012085 275.509613037 274.879730225 274.179534912 273.400238037 275.500305176 275.840148926 275.960266113 275.920227051 275.689758301 275.389953613 275.239562988 275.349914551 275.569641113 275.779602051 275.960266113 276.109680176 276.099914551 275.840148926 275.300109863 274.429992676 273.200500488 275.939849854 276.069732666 276.119537354 276.100006104 276.080474854 276.069732666 276.050201416 276.040435791 276.159576416 276.500396729 276.840240479 276.920318604 276.720123291 276.399810791 275.939849854 275.149810791 274.029693604 276.289886475 276.640472412 276.839691162 276.78012085 276.480316162 276.249847412 276.240081787 276.230316162 276.129730225 276.089691162 276.1902771 276.200042725 275.879730225 275.289886475 274.480316162 273.5496521 272.70980835 275.370422363 275.739562988 275.929992676 275.929992676 275.729797363 275.450500488 275.319641113 275.389953613 275.569641113 275.750305176 275.939758301 276.099914551 276.109680176 275.880187988 275.309875488 274.370422363 273.050109863 275.979888916 276.140045166 276.220123291 276.199615479 276.170318604 276.180084229 276.149810791 276.069732666 276.119537354 276.460357666 276.859771729 276.939849854 276.670318604 276.269927979 275.699615479 274.790435791 273.609771729 276.230316162 276.570159912 276.70980835 276.6199646 276.379730225 276.20980835 276.169769287 276.140472412 276.10043335 276.150238037 276.219573975 276.070159912 275.640472412 274.980316162 274.0496521 272.929534912 272.079925537 275.179992676 275.609680176 275.859680176 275.889953613 275.739562988 275.519836426 275.410461426 275.420227051 275.510070801 275.679992676 275.929992676 276.139953613 276.139953613 275.880187988 275.279602051 274.279602051 272.960266113 275.939849854 276.170318604 276.319732666 276.309967041 276.260162354 276.279693604 276.269927979 276.130279541 276.100006104 276.399810791 276.819732666 276.909576416 276.609771729 276.159576416 275.550201416 274.550201416 273.290435791 276.160003662 276.53012085 276.610198975 276.450042725 276.230316162 276.079925537 276.03012085 275.990081787 276.03012085 276.169769287 276.1902771 275.919769287 275.45980835 274.8699646 273.950042725 272.719573975 271.829925537 275.000305176 275.510070801 275.800109863 275.830383301 275.710266113 275.569641113 275.510070801 275.479797363 275.510070801 275.679992676 275.960266113 276.160461426 276.149719238 275.849914551 275.220031738 274.200500488 272.870422363 275.840240479 276.180084229 276.390045166 276.369537354 276.269927979 276.300201416 276.319732666 276.170318604 276.059967041 276.300201416 276.699615479 276.809967041 276.550201416 276.140045166 275.519927979 274.460357666 273.100006104 276.1902771 276.629730225 276.629730225 276.35043335 276.070159912 275.950042725 275.910003662 275.879730225 275.950042725 276.110198975 276.089691162 275.810394287 275.480316162 275.140472412 274.339691162 273.0496521 272.020355225 274.899719238 275.500305176 275.800109863 275.779602051 275.660461426 275.609680176 275.620422363 275.599914551 275.609680176 275.769836426 276.019836426 276.179992676 276.160461426 275.899719238 275.269836426 274.179992676 272.769836426 275.779693604 276.250396729 276.500396729 276.390045166 276.199615479 276.229888916 276.290435791 276.149810791 275.989654541 276.170318604 276.550201416 276.699615479 276.519927979 276.199615479 275.609771729 274.479888916 272.979888916 276.35043335 276.829925537 276.730316162 276.2996521 275.950042725 275.8699646 275.8699646 275.85043335 275.890472412 276.020355225 275.980316162 275.770355225 275.660003662 275.579925537 274.919769287 273.579925537 272.410003662 274.910461426 275.569641113 275.849914551 275.750305176 275.620422363 275.660461426 275.750305176 275.769836426 275.769836426 275.899719238 276.080383301 276.179992676 276.200500488 276.040344238 275.420227051 274.220031738 272.689758301 275.850006104 276.430084229 276.670318604 276.430084229 276.119537354 276.130279541 276.229888916 276.100006104 275.920318604 276.080474854 276.460357666 276.640045166 276.529693604 276.269927979 275.689849854 274.489654541 272.909576416 276.520355225 277.009613037 276.820159912 276.270355225 275.879730225 275.820159912 275.8699646 275.85043335 275.879730225 275.95980835 275.919769287 275.759613037 275.78012085 275.85043335 275.289886475 273.969573975 272.749847412 274.910461426 275.609680176 275.840148926 275.689758301 275.580383301 275.700500488 275.849914551 275.880187988 275.870422363 276.000305176 276.139953613 276.229797363 276.309875488 276.239562988 275.609680176 274.260070801 272.639953613 275.979888916 276.640045166 276.809967041 276.439849854 276.059967041 276.050201416 276.180084229 276.069732666 275.909576416 276.090240479 276.479888916 276.670318604 276.559967041 276.300201416 275.710357666 274.500396729 272.899810791 276.6199646 277.060394287 276.820159912 276.230316162 275.829925537 275.78012085 275.85043335 275.829925537 275.839691162 275.919769287 275.8699646 275.719573975 275.740081787 275.829925537 275.339691162 274.150238037 273.009613037 274.800109863 275.479797363 275.689758301 275.559875488 275.519836426 275.710266113 275.889953613 275.910461426 275.929992676 276.069641113 276.239562988 276.340148926 276.450500488 276.410461426 275.739562988 274.279602051 272.630187988 276.059967041 276.710357666 276.809967041 276.380279541 275.979888916 275.989654541 276.159576416 276.100006104 275.979888916 276.170318604 276.569732666 276.729888916 276.590240479 276.309967041 275.699615479 274.489654541 272.949615479 276.629730225 276.980316162 276.759613037 276.230316162 275.839691162 275.749847412 275.78012085 275.759613037 275.78012085 275.839691162 275.789886475 275.629730225 275.6199646 275.660003662 275.270355225 274.28012085 273.259613037 274.559875488 275.229797363 275.479797363 275.429992676 275.479797363 275.720031738 275.899719238 275.939758301 276.000305176 276.220031738 276.410461426 276.500305176 276.590148926 276.500305176 275.779602051 274.279602051 272.609680176 276.029693604 276.649810791 276.699615479 276.290435791 275.920318604 275.979888916 276.180084229 276.180084229 276.109771729 276.300201416 276.649810791 276.779693604 276.640045166 276.319732666 275.670318604 274.449615479 272.920318604 276.640472412 276.919769287 276.749847412 276.310394287 275.900238037 275.740081787 275.719573975 275.700042725 275.70980835 275.740081787 275.650238037 275.509613037 275.480316162 275.509613037 275.179534912 274.339691162 273.3699646 274.300109863 274.989562988 275.340148926 275.420227051 275.540344238 275.790344238 275.979797363 276.040344238 276.160461426 276.389953613 276.569641113 276.620422363 276.660461426 276.559875488 275.819641113 274.309875488 272.550109863 275.979888916 276.529693604 276.609771729 276.260162354 275.939849854 275.989654541 276.210357666 276.290435791 276.269927979 276.420318604 276.680084229 276.779693604 276.659576416 276.350006104 275.630279541 274.290435791 272.670318604 276.719573975 276.950042725 276.839691162 276.429534912 275.95980835 275.6902771 275.629730225 275.6902771 275.730316162 275.679534912 275.539886475 275.390472412 275.3699646 275.329925537 274.950042725 274.10043335 273.089691162 274.130187988 274.849914551 275.330383301 275.529602051 275.689758301 275.920227051 276.090148926 276.189758301 276.300109863 276.470031738 276.580383301 276.609680176 276.670227051 276.590148926 275.910461426 274.389953613 272.489562988 275.939849854 276.449615479 276.550201416 276.260162354 275.970123291 275.979888916 276.220123291 276.369537354 276.420318604 276.510162354 276.659576416 276.710357666 276.640045166 276.359771729 275.559967041 274.059967041 272.250396729 276.810394287 277.009613037 276.9402771 276.539886475 275.95980835 275.570159912 275.539886475 275.70980835 275.820159912 275.730316162 275.520355225 275.360198975 275.28012085 275.089691162 274.499847412 273.520355225 272.450042725 274.069641113 274.769836426 275.319641113 275.609680176 275.800109863 275.989562988 276.149719238 276.260070801 276.340148926 276.399719238 276.429992676 276.479797363 276.630187988 276.660461426 276.059875488 274.569641113 272.489562988 275.930084229 276.350006104 276.430084229 276.199615479 275.920318604 275.909576416 276.159576416 276.399810791 276.500396729 276.529693604 276.550201416 276.540435791 276.479888916 276.260162354 275.449615479 273.890045166 271.930084229 276.749847412 276.9402771 276.950042725 276.570159912 275.950042725 275.45980835 275.419769287 275.6902771 275.890472412 275.810394287 275.589691162 275.410003662 275.28012085 274.890472412 274.060394287 272.9402771 271.890472412 274.050109863 274.639953613 275.189758301 275.559875488 275.760070801 275.920227051 276.069641113 276.210266113 276.250305176 276.220031738 276.189758301 276.309875488 276.590148926 276.729797363 276.229797363 274.819641113 272.639953613 275.920318604 276.210357666 276.250396729 276.059967041 275.809967041 275.800201416 276.069732666 276.359771729 276.500396729 276.470123291 276.369537354 276.260162354 276.170318604 276.010162354 275.340240479 273.890045166 271.909576416 276.509613037 276.719573975 276.820159912 276.5496521 275.950042725 275.429534912 275.339691162 275.60043335 275.839691162 275.810394287 275.640472412 275.490081787 275.320159912 274.829925537 273.919769287 272.789886475 271.789886475 274.050109863 274.450500488 274.950500488 275.370422363 275.599914551 275.720031738 275.889953613 276.069641113 276.109680176 276.000305176 275.929992676 276.120422363 276.489562988 276.720031738 276.340148926 275.059875488 272.920227051 275.930084229 276.119537354 276.119537354 275.960357666 275.750396729 275.720123291 275.960357666 276.260162354 276.409576416 276.350006104 276.170318604 275.949615479 275.779693604 275.649810791 275.189849854 274.000396729 272.140045166 276.1902771 276.419769287 276.610198975 276.45980835 275.950042725 275.45980835 275.329925537 275.520355225 275.700042725 275.719573975 275.629730225 275.539886475 275.3699646 274.919769287 274.129730225 273.129730225 272.150238037 273.970031738 274.239562988 274.739562988 275.210266113 275.450500488 275.540344238 275.689758301 275.910461426 275.960266113 275.790344238 275.670227051 275.849914551 276.260070801 276.519836426 276.239562988 275.179992676 273.189758301 275.930084229 276.119537354 276.149810791 276.019927979 275.779693604 275.670318604 275.830474854 276.090240479 276.239654541 276.199615479 276.010162354 275.720123291 275.470123291 275.309967041 275.000396729 274.069732666 272.380279541 275.980316162 276.249847412 276.45980835 276.320159912 275.8699646 275.469573975 275.360198975 275.480316162 275.6199646 275.650238037 275.6199646 275.539886475 275.379730225 275.060394287 274.53012085 273.70980835 272.650238037 273.779602051 274.050109863 274.620422363 275.149719238 275.380187988 275.399719238 275.540344238 275.779602051 275.849914551 275.630187988 275.420227051 275.550109863 275.920227051 276.170227051 275.979797363 275.099914551 273.340148926 275.859771729 276.140045166 276.279693604 276.170318604 275.869537354 275.640045166 275.680084229 275.899810791 276.069732666 276.080474854 275.930084229 275.649810791 275.340240479 275.119537354 274.830474854 274.040435791 272.470123291 275.929534912 276.289886475 276.450042725 276.200042725 275.730316162 275.419769287 275.400238037 275.539886475 275.629730225 275.669769287 275.669769287 275.560394287 275.3699646 275.160003662 274.890472412 274.28012085 273.079925537 273.510070801 273.880187988 274.550109863 275.149719238 275.359680176 275.319641113 275.410461426 275.670227051 275.760070801 275.540344238 275.279602051 275.340148926 275.649719238 275.859680176 275.660461426 274.889953613 273.319641113 275.699615479 276.109771729 276.350006104 276.269927979 275.920318604 275.619537354 275.619537354 275.819732666 275.979888916 276.010162354 275.909576416 275.680084229 275.380279541 275.119537354 274.779693604 274.000396729 272.470123291 275.919769287 276.419769287 276.579925537 276.219573975 275.669769287 275.410003662 275.499847412 275.650238037 275.700042725 275.719573975 275.730316162 275.610198975 275.379730225 275.230316162 275.179534912 274.740081787 273.450042725 273.290344238 273.739562988 274.460266113 275.069641113 275.279602051 275.229797363 275.290344238 275.540344238 275.679992676 275.500305176 275.279602051 275.300109863 275.559875488 275.700500488 275.439758301 274.660461426 273.189758301 275.529693604 275.989654541 276.269927979 276.220123291 275.909576416 275.670318604 275.699615479 275.899810791 276.010162354 275.979888916 275.880279541 275.720123291 275.500396729 275.239654541 274.859771729 274.019927979 272.479888916 275.7996521 276.490081787 276.730316162 276.35043335 275.789886475 275.5496521 275.660003662 275.770355225 275.730316162 275.70980835 275.749847412 275.669769287 275.419769287 275.289886475 275.35043335 275.079925537 273.810394287 273.239562988 273.670227051 274.309875488 274.880187988 275.120422363 275.120422363 275.179992676 275.399719238 275.559875488 275.479797363 275.309875488 275.340148926 275.559875488 275.660461426 275.340148926 274.479797363 273.019836426 275.420318604 275.809967041 276.050201416 276.050201416 275.880279541 275.800201416 275.909576416 276.069732666 276.059967041 275.920318604 275.790435791 275.680084229 275.540435791 275.330474854 274.930084229 274.090240479 272.529693604 275.579925537 276.410003662 276.78012085 276.490081787 275.980316162 275.759613037 275.839691162 275.85043335 275.70980835 275.629730225 275.719573975 275.719573975 275.499847412 275.329925537 275.400238037 275.20980835 274.070159912 273.319641113 273.630187988 274.120422363 274.649719238 274.950500488 275.059875488 275.130187988 275.290344238 275.429992676 275.420227051 275.300109863 275.319641113 275.500305176 275.609680176 275.290344238 274.370422363 272.870422363 275.359771729 275.640045166 275.809967041 275.850006104 275.830474854 275.890045166 276.059967041 276.149810791 276.050201416 275.830474854 275.680084229 275.600006104 275.489654541 275.300201416 274.930084229 274.119537354 272.590240479 275.45980835 276.289886475 276.660003662 276.45980835 276.070159912 275.890472412 275.929534912 275.879730225 275.679534912 275.60043335 275.70980835 275.789886475 275.610198975 275.379730225 275.329925537 275.110198975 274.10043335 273.330383301 273.519836426 273.920227051 274.439758301 274.849914551 275.069641113 275.179992676 275.300109863 275.399719238 275.399719238 275.300109863 275.260070801 275.399719238 275.550109863 275.290344238 274.370422363 272.859680176 275.330474854 275.550201416 275.680084229 275.739654541 275.790435791 275.899810791 276.029693604 276.069732666 275.939849854 275.769927979 275.659576416 275.590240479 275.439849854 275.220123291 274.859771729 274.109771729 272.640045166 275.610198975 276.259613037 276.469573975 276.259613037 275.969573975 275.8699646 275.919769287 275.879730225 275.70980835 275.650238037 275.789886475 275.910003662 275.789886475 275.509613037 275.259613037 274.900238037 273.950042725 273.170227051 273.349914551 273.760070801 274.309875488 274.809875488 275.139953613 275.309875488 275.410461426 275.489562988 275.500305176 275.389953613 275.319641113 275.420227051 275.590148926 275.410461426 274.550109863 273.050109863 275.319732666 275.590240479 275.760162354 275.809967041 275.809967041 275.819732666 275.880279541 275.890045166 275.830474854 275.769927979 275.760162354 275.699615479 275.529693604 275.260162354 274.880279541 274.170318604 272.760162354 275.929534912 276.310394287 276.270355225 276.020355225 275.839691162 275.839691162 275.929534912 275.929534912 275.820159912 275.770355225 275.890472412 276.039886475 275.999847412 275.719573975 275.310394287 274.770355225 273.7996521 272.929992676 273.189758301 273.679992676 274.290344238 274.840148926 275.220031738 275.439758301 275.540344238 275.620422363 275.649719238 275.599914551 275.529602051 275.620422363 275.779602051 275.639953613 274.840148926 273.410461426 275.409576416 275.800201416 276.040435791 276.080474854 275.939849854 275.779693604 275.699615479 275.710357666 275.739654541 275.819732666 275.899810791 275.890045166 275.710357666 275.420318604 275.040435791 274.330474854 272.949615479 276.219573975 276.329925537 276.110198975 275.879730225 275.820159912 275.919769287 276.03012085 276.060394287 275.969573975 275.879730225 275.9402771 276.110198975 276.160003662 275.929534912 275.45980835 274.789886475 273.78012085 272.840148926 273.160461426 273.739562988 274.399719238 274.970031738 275.359680176 275.559875488 275.649719238 275.710266113 275.760070801 275.769836426 275.769836426 275.859680176 276.000305176 275.840148926 275.080383301 273.790344238 275.590240479 276.100006104 276.420318604 276.420318604 276.159576416 275.819732666 275.619537354 275.580474854 275.659576416 275.790435791 275.930084229 276.000396729 275.890045166 275.640045166 275.260162354 274.540435791 273.159576416 276.360198975 276.310394287 276.0496521 275.910003662 275.950042725 276.079925537 276.179534912 276.200042725 276.10043335 275.969573975 275.969573975 276.129730225 276.259613037 276.10043335 275.640472412 274.919769287 273.890472412 272.939758301 273.290344238 273.960266113 274.710266113 275.279602051 275.609680176 275.750305176 275.769836426 275.769836426 275.809875488 275.880187988 275.950500488 276.040344238 276.099914551 275.880187988 275.179992676 274.069641113 275.819732666 276.369537354 276.710357666 276.710357666 276.409576416 275.989654541 275.670318604 275.550201416 275.550201416 275.659576416 275.840240479 276.000396729 276.000396729 275.819732666 275.470123291 274.739654541 273.359771729 276.450042725 276.35043335 276.160003662 276.110198975 276.169769287 276.230316162 276.289886475 276.310394287 276.200042725 276.03012085 276.009613037 276.169769287 276.339691162 276.230316162 275.789886475 275.10043335 274.079925537 273.120422363 273.510070801 274.300109863 275.149719238 275.729797363 275.970031738 275.979797363 275.899719238 275.830383301 275.849914551 275.939758301 276.069641113 276.160461426 276.130187988 275.819641113 275.170227051 274.239562988 276.040435791 276.540435791 276.869537354 276.899810791 276.630279541 276.220123291 275.840240479 275.580474854 275.449615479 275.489654541 275.689849854 275.949615479 276.080474854 275.979888916 275.649810791 274.939849854 273.609771729 276.570159912 276.520355225 276.450042725 276.429534912 276.400238037 276.35043335 276.339691162 276.35043335 276.259613037 276.070159912 276.039886475 276.240081787 276.419769287 276.339691162 275.9402771 275.329925537 274.339691162 273.260070801 273.790344238 274.720031738 275.660461426 276.200500488 276.300109863 276.160461426 275.970031738 275.849914551 275.870422363 276.010070801 276.179992676 276.279602051 276.200500488 275.830383301 275.189758301 274.389953613 276.210357666 276.670318604 276.930084229 276.970123291 276.769927979 276.399810791 276.010162354 275.670318604 275.409576416 275.340240479 275.550201416 275.899810791 276.130279541 276.100006104 275.819732666 275.149810791 273.890045166 276.700042725 276.759613037 276.789886475 276.759613037 276.610198975 276.419769287 276.35043335 276.360198975 276.259613037 276.079925537 276.039886475 276.270355225 276.490081787 276.429534912 276.110198975 275.579925537 274.650238037 273.399719238 274.099914551 275.149719238 276.069641113 276.479797363 276.420227051 276.170227051 275.920227051 275.809875488 275.859680176 276.050109863 276.269836426 276.420227051 276.349914551 275.989562988 275.349914551 274.580383301 276.380279541 276.769927979 276.949615479 276.930084229 276.720123291 276.390045166 276.059967041 275.720123291 275.409576416 275.290435791 275.489654541 275.859771729 276.149810791 276.180084229 275.949615479 275.340240479 274.159576416 276.740081787 276.900238037 276.999847412 276.95980835 276.730316162 276.450042725 276.339691162 276.329925537 276.240081787 276.0496521 276.03012085 276.270355225 276.520355225 276.509613037 276.270355225 275.829925537 274.929534912 273.670227051 274.529602051 275.550109863 276.300109863 276.510070801 276.349914551 276.069641113 275.849914551 275.760070801 275.819641113 276.040344238 276.309875488 276.510070801 276.529602051 276.220031738 275.590148926 274.790344238 276.510162354 276.859771729 276.920318604 276.769927979 276.479888916 276.180084229 275.939849854 275.699615479 275.470123291 275.359771729 275.519927979 275.859771729 276.140045166 276.210357666 276.050201416 275.489654541 274.359771729 276.679534912 276.910003662 277.03012085 276.990081787 276.730316162 276.429534912 276.28012085 276.270355225 276.200042725 276.070159912 276.079925537 276.310394287 276.560394287 276.60043335 276.429534912 276.060394287 275.179534912 274.149719238 275.080383301 275.910461426 276.340148926 276.349914551 276.170227051 275.970031738 275.830383301 275.760070801 275.830383301 276.040344238 276.290344238 276.519836426 276.599914551 276.420227051 275.849914551 275.029602051 276.580474854 276.880279541 276.830474854 276.550201416 276.180084229 275.899810791 275.769927979 275.670318604 275.540435791 275.500396729 275.649810791 275.930084229 276.170318604 276.269927979 276.159576416 275.649810791 274.529693604 276.6199646 276.890472412 276.980316162 276.900238037 276.640472412 276.35043335 276.219573975 276.20980835 276.1902771 276.129730225 276.200042725 276.4402771 276.669769287 276.730316162 276.610198975 276.259613037 275.379730225 274.769836426 275.670227051 276.229797363 276.330383301 276.189758301 276.029602051 275.960266113 275.889953613 275.830383301 275.880187988 276.040344238 276.250305176 276.439758301 276.590148926 276.540344238 276.120422363 275.330383301 276.600006104 276.830474854 276.699615479 276.359771729 275.989654541 275.739654541 275.670318604 275.659576416 275.619537354 275.649810791 275.819732666 276.069732666 276.279693604 276.390045166 276.319732666 275.850006104 274.729888916 276.660003662 276.910003662 276.929534912 276.770355225 276.53012085 276.28012085 276.179534912 276.200042725 276.200042725 276.200042725 276.310394287 276.560394287 276.7996521 276.879730225 276.78012085 276.419769287 275.520355225 275.410461426 276.229797363 276.540344238 276.410461426 276.139953613 276.000305176 275.979797363 275.939758301 275.870422363 275.870422363 275.989562988 276.160461426 276.340148926 276.540344238 276.630187988 276.359680176 275.649719238 276.600006104 276.750396729 276.569732666 276.250396729 275.930084229 275.739654541 275.689849854 275.659576416 275.670318604 275.760162354 275.970123291 276.220123291 276.430084229 276.559967041 276.519927979 276.050201416 274.930084229 276.749847412 276.9402771 276.860198975 276.650238037 276.410003662 276.249847412 276.20980835 276.230316162 276.20980835 276.200042725 276.320159912 276.589691162 276.879730225 277.009613037 276.919769287 276.509613037 275.589691162 275.960266113 276.689758301 276.849914551 276.590148926 276.260070801 276.090148926 276.029602051 275.960266113 275.830383301 275.790344238 275.880187988 276.050109863 276.279602051 276.550109863 276.750305176 276.569641113 275.920227051 276.619537354 276.689849854 276.479888916 276.189849854 275.939849854 275.800201416 275.729888916 275.699615479 275.699615479 275.819732666 276.059967041 276.319732666 276.519927979 276.680084229 276.659576416 276.189849854 275.040435791 276.820159912 276.950042725 276.7996521 276.53012085 276.2996521 276.20980835 276.240081787 276.270355225 276.200042725 276.129730225 276.240081787 276.5496521 276.900238037 277.079925537 276.999847412 276.539886475 275.570159912 276.429992676 277.050109863 277.130187988 276.849914551 276.489562988 276.239562988 276.109680176 275.979797363 275.819641113 275.720031738 275.800109863 276.010070801 276.330383301 276.689758301 276.920227051 276.769836426 276.120422363 276.710357666 276.699615479 276.439849854 276.149810791 275.930084229 275.819732666 275.769927979 275.739654541 275.769927979 275.890045166 276.109771729 276.330474854 276.519927979 276.699615479 276.710357666 276.220123291 275.050201416 276.890472412 276.999847412 276.810394287 276.499847412 276.240081787 276.169769287 276.230316162 276.259613037 276.179534912 276.089691162 276.1902771 276.480316162 276.860198975 277.10043335 277.020355225 276.53012085 275.509613037 276.849914551 277.370422363 277.389953613 277.099914551 276.700500488 276.399719238 276.210266113 276.059875488 275.880187988 275.760070801 275.830383301 276.109680176 276.510070801 276.920227051 277.139953613 276.979797363 276.300109863 276.840240479 276.750396729 276.439849854 276.130279541 275.899810791 275.809967041 275.809967041 275.840240479 275.880279541 275.970123291 276.119537354 276.279693604 276.460357666 276.649810791 276.680084229 276.189849854 275.010162354 276.990081787 277.129730225 276.95980835 276.60043335 276.270355225 276.150238037 276.1902771 276.230316162 276.169769287 276.110198975 276.179534912 276.429534912 276.770355225 277.0496521 277.009613037 276.509613037 275.45980835 277.290344238 277.689758301 277.620422363 277.269836426 276.830383301 276.470031738 276.260070801 276.120422363 275.970031738 275.870422363 275.970031738 276.300109863 276.760070801 277.160461426 277.349914551 277.160461426 276.489562988 276.939849854 276.779693604 276.439849854 276.109771729 275.899810791 275.840240479 275.880279541 275.939849854 275.979888916 276.050201416 276.130279541 276.229888916 276.369537354 276.569732666 276.609771729 276.130279541 274.979888916 277.039886475 277.270355225 277.129730225 276.719573975 276.339691162 276.160003662 276.160003662 276.1902771 276.150238037 276.110198975 276.160003662 276.339691162 276.629730225 276.919769287 276.950042725 276.469573975 275.400238037 277.700500488 278.019836426 277.819641113 277.370422363 276.859680176 276.460266113 276.239562988 276.120422363 276.010070801 275.970031738 276.130187988 276.529602051 276.970031738 277.309875488 277.460266113 277.300109863 276.649719238 276.920318604 276.729888916 276.390045166 276.090240479 275.939849854 275.920318604 275.970123291 276.000396729 276.040435791 276.080474854 276.149810791 276.210357666 276.330474854 276.500396729 276.510162354 276.040435791 274.949615479 276.9402771 277.240081787 277.10043335 276.700042725 276.329925537 276.160003662 276.150238037 276.150238037 276.10043335 276.0496521 276.070159912 276.20980835 276.45980835 276.759613037 276.820159912 276.360198975 275.2996521 278.010070801 278.250305176 277.929992676 277.389953613 276.819641113 276.410461426 276.210266113 276.099914551 276.010070801 276.010070801 276.250305176 276.670227051 277.080383301 277.370422363 277.479797363 277.319641113 276.710266113 276.830474854 276.649810791 276.330474854 276.109771729 276.029693604 276.029693604 276.050201416 276.040435791 276.040435791 276.090240479 276.149810791 276.199615479 276.300201416 276.420318604 276.390045166 275.899810791 274.869537354 276.650238037 276.950042725 276.810394287 276.469573975 276.20980835 276.140472412 276.150238037 276.10043335 275.999847412 275.919769287 275.950042725 276.089691162 276.35043335 276.6199646 276.679534912 276.1902771 275.140472412 278.130187988 278.300109863 277.910461426 277.290344238 276.739562988 276.389953613 276.220031738 276.109680176 276.000305176 276.019836426 276.300109863 276.720031738 277.099914551 277.349914551 277.429992676 277.250305176 276.639953613 276.790435791 276.659576416 276.390045166 276.199615479 276.159576416 276.159576416 276.119537354 276.050201416 276.019927979 276.059967041 276.100006104 276.130279541 276.189849854 276.279693604 276.239654541 275.750396729 274.750396729 276.259613037 276.509613037 276.379730225 276.140472412 276.03012085 276.079925537 276.129730225 276.0496521 275.890472412 275.810394287 275.839691162 276.020355225 276.270355225 276.520355225 276.509613037 276.020355225 274.980316162 278.040344238 278.139953613 277.720031738 277.120422363 276.639953613 276.380187988 276.239562988 276.109680176 276.000305176 276.050109863 276.330383301 276.720031738 277.059875488 277.279602051 277.349914551 277.149719238 276.500305176 276.890045166 276.840240479 276.590240479 276.380279541 276.290435791 276.229888916 276.130279541 276.029693604 275.979888916 275.989654541 275.989654541 275.960357666 275.970123291 276.059967041 276.029693604 275.580474854 274.659576416 275.919769287 276.10043335 275.999847412 275.8699646 275.879730225 276.020355225 276.10043335 276.009613037 275.839691162 275.730316162 275.789886475 275.969573975 276.179534912 276.360198975 276.329925537 275.860198975 274.8699646 277.779602051 277.849914551 277.450500488 276.929992676 276.559875488 276.370422363 276.239562988 276.090148926 276.019836426 276.120422363 276.399719238 276.720031738 276.979797363 277.160461426 277.229797363 277.010070801 276.359680176 277.029693604 277.040435791 276.760162354 276.479888916 276.309967041 276.199615479 276.090240479 275.979888916 275.920318604 275.909576416 275.859771729 275.769927979 275.750396729 275.819732666 275.790435791 275.399810791 274.559967041 275.679534912 275.820159912 275.740081787 275.700042725 275.789886475 275.95980835 276.070159912 276.009613037 275.85043335 275.749847412 275.789886475 275.910003662 276.039886475 276.140472412 276.110198975 275.719573975 274.829925537 277.489562988 277.559875488 277.220031738 276.800109863 276.529602051 276.370422363 276.220031738 276.099914551 276.090148926 276.269836426 276.510070801 276.729797363 276.880187988 277.000305176 277.029602051 276.790344238 276.179992676 277.059967041 277.019927979 276.689849854 276.350006104 276.159576416 276.080474854 276.010162354 275.939849854 275.880279541 275.869537354 275.809967041 275.699615479 275.630279541 275.640045166 275.559967041 275.159576416 274.409576416 275.5496521 275.640472412 275.589691162 275.570159912 275.679534912 275.85043335 275.999847412 275.999847412 275.890472412 275.7996521 275.820159912 275.879730225 275.919769287 275.9402771 275.919769287 275.610198975 274.810394287 277.210266113 277.330383301 277.059875488 276.729797363 276.510070801 276.349914551 276.200500488 276.120422363 276.210266113 276.429992676 276.620422363 276.720031738 276.769836426 276.800109863 276.760070801 276.479797363 275.889953613 276.869537354 276.750396729 276.359771729 276.029693604 275.909576416 275.939849854 275.979888916 275.939849854 275.890045166 275.850006104 275.800201416 275.710357666 275.619537354 275.519927979 275.330474854 274.890045166 274.199615479 275.539886475 275.560394287 275.490081787 275.480316162 275.53012085 275.679534912 275.860198975 275.950042725 275.919769287 275.85043335 275.860198975 275.879730225 275.839691162 275.820159912 275.78012085 275.520355225 274.749847412 277.010070801 277.179992676 276.950500488 276.639953613 276.420227051 276.250305176 276.130187988 276.130187988 276.300109863 276.519836426 276.630187988 276.639953613 276.630187988 276.620422363 276.470031738 276.090148926 275.479797363 276.590240479 276.390045166 275.989654541 275.729888916 275.710357666 275.859771729 275.989654541 275.979888916 275.899810791 275.830474854 275.739654541 275.649810791 275.559967041 275.409576416 275.130279541 274.630279541 273.970123291 275.629730225 275.560394287 275.45980835 275.390472412 275.360198975 275.469573975 275.6902771 275.860198975 275.890472412 275.85043335 275.85043335 275.85043335 275.789886475 275.719573975 275.650238037 275.360198975 274.60043335 276.830383301 277.029602051 276.830383301 276.510070801 276.239562988 276.050109863 275.979797363 276.080383301 276.309875488 276.489562988 276.529602051 276.489562988 276.489562988 276.450500488 276.179992676 275.679992676 275.010070801 276.330474854 276.140045166 275.779693604 275.580474854 275.630279541 275.830474854 275.989654541 276.010162354 275.920318604 275.790435791 275.640045166 275.510162354 275.420318604 275.279693604 274.949615479 274.409576416 273.760162354 275.749847412 275.610198975 275.450042725 275.329925537 275.219573975 275.270355225 275.520355225 275.770355225 275.860198975 275.829925537 275.7996521 275.759613037 275.679534912 275.579925537 275.45980835 275.110198975 274.320159912 276.599914551 276.819641113 276.660461426 276.340148926 276.040344238 275.840148926 275.819641113 276.010070801 276.269836426 276.420227051 276.410461426 276.349914551 276.330383301 276.200500488 275.840148926 275.229797363 274.510070801 276.140045166 276.000396729 275.699615479 275.529693604 275.590240479 275.779693604 275.930084229 275.989654541 275.949615479 275.809967041 275.600006104 275.420318604 275.319732666 275.170318604 274.790435791 274.199615479 273.550201416 275.820159912 275.640472412 275.480316162 275.310394287 275.160003662 275.200042725 275.450042725 275.740081787 275.839691162 275.7996521 275.719573975 275.610198975 275.499847412 275.400238037 275.219573975 274.78012085 273.929534912 276.319641113 276.529602051 276.439758301 276.189758301 275.920227051 275.739562988 275.760070801 275.960266113 276.220031738 276.349914551 276.330383301 276.220031738 276.109680176 275.849914551 275.359680176 274.689758301 273.960266113 275.920318604 275.840240479 275.580474854 275.439849854 275.519927979 275.699615479 275.840240479 275.920318604 275.949615479 275.880279541 275.670318604 275.460357666 275.340240479 275.130279541 274.670318604 273.979888916 273.290435791 275.820159912 275.660003662 275.53012085 275.360198975 275.200042725 275.240081787 275.499847412 275.759613037 275.829925537 275.759613037 275.640472412 275.490081787 275.329925537 275.20980835 274.990081787 274.4402771 273.499847412 276.069641113 276.260070801 276.229797363 276.069641113 275.880187988 275.760070801 275.800109863 275.979797363 276.189758301 276.300109863 276.229797363 276.059875488 275.800109863 275.380187988 274.790344238 274.099914551 273.359680176 275.649810791 275.600006104 275.359771729 275.260162354 275.399810791 275.619537354 275.739654541 275.830474854 275.920318604 275.890045166 275.710357666 275.510162354 275.369537354 275.109771729 274.540435791 273.750396729 273.019927979 275.810394287 275.719573975 275.640472412 275.469573975 275.320159912 275.379730225 275.610198975 275.770355225 275.78012085 275.70980835 275.589691162 275.379730225 275.169769287 275.020355225 274.78012085 274.169769287 273.140472412 275.929992676 276.090148926 276.069641113 275.970031738 275.849914551 275.809875488 275.870422363 276.029602051 276.179992676 276.239562988 276.120422363 275.840148926 275.429992676 274.899719238 274.250305176 273.540344238 272.800109863 275.420318604 275.359771729 275.119537354 275.069732666 275.309967041 275.580474854 275.689849854 275.750396729 275.830474854 275.809967041 275.619537354 275.399810791 275.250396729 274.979888916 274.369537354 273.540435791 272.769927979 275.810394287 275.839691162 275.789886475 275.589691162 275.429534912 275.509613037 275.6902771 275.759613037 275.70980835 275.669769287 275.53012085 275.240081787 274.919769287 274.759613037 274.570159912 273.969573975 272.879730225 275.910461426 276.029602051 275.979797363 275.849914551 275.760070801 275.779602051 275.899719238 276.059875488 276.200500488 276.200500488 276.010070801 275.630187988 275.109680176 274.519836426 273.830383301 273.099914551 272.349914551 275.290435791 275.220123291 274.970123291 274.960357666 275.269927979 275.559967041 275.659576416 275.689849854 275.750396729 275.699615479 275.430084229 275.159576416 274.989654541 274.750396729 274.189849854 273.369537354 272.559967041 275.85043335 275.990081787 275.9402771 275.679534912 275.490081787 275.570159912 275.70980835 275.70980835 275.669769287 275.660003662 275.499847412 275.0496521 274.589691162 274.410003662 274.320159912 273.7996521 272.719573975 275.870422363 275.960266113 275.859680176 275.689758301 275.599914551 275.670227051 275.849914551 276.059875488 276.210266113 276.200500488 275.929992676 275.460266113 274.880187988 274.250305176 273.519836426 272.739562988 272.000305176 275.210357666 275.159576416 274.930084229 274.930084229 275.229888916 275.510162354 275.619537354 275.699615479 275.769927979 275.680084229 275.340240479 274.979888916 274.790435791 274.550201416 274.029693604 273.250396729 272.390045166 275.910003662 276.1199646 276.03012085 275.70980835 275.490081787 275.570159912 275.6902771 275.679534912 275.679534912 275.719573975 275.490081787 274.879730225 274.270355225 274.070159912 274.060394287 273.650238037 272.6199646 275.670227051 275.739562988 275.639953613 275.479797363 275.439758301 275.559875488 275.790344238 276.040344238 276.210266113 276.160461426 275.840148926 275.300109863 274.700500488 274.040344238 273.269836426 272.439758301 271.710266113 275.109771729 275.100006104 274.930084229 274.960357666 275.199615479 275.449615479 275.590240479 275.739654541 275.850006104 275.729888916 275.359771729 274.970123291 274.739654541 274.479888916 273.939849854 273.130279541 272.250396729 275.980316162 276.200042725 276.060394287 275.6902771 275.469573975 275.5496521 275.660003662 275.6902771 275.749847412 275.789886475 275.480316162 274.740081787 274.039886475 273.7996521 273.820159912 273.450042725 272.490081787 275.319641113 275.370422363 275.330383301 275.269836426 275.340148926 275.540344238 275.800109863 276.029602051 276.149719238 276.050109863 275.670227051 275.130187988 274.550109863 273.899719238 273.109680176 272.250305176 271.550109863 274.960357666 275.040435791 274.970123291 275.019927979 275.210357666 275.420318604 275.609771729 275.809967041 275.920318604 275.769927979 275.399810791 275.059967041 274.819732666 274.470123291 273.869537354 273.050201416 272.170318604 276.089691162 276.259613037 276.039886475 275.6199646 275.419769287 275.509613037 275.650238037 275.700042725 275.7996521 275.7996521 275.419769287 274.629730225 273.910003662 273.629730225 273.5496521 273.169769287 272.2996521 274.979797363 275.050109863 275.090148926 275.160461426 275.340148926 275.609680176 275.889953613 276.090148926 276.139953613 275.939758301 275.519836426 274.979797363 274.429992676 273.830383301 273.080383301 272.279602051 271.609680176 274.819732666 275.000396729 275.059967041 275.109771729 275.239654541 275.439849854 275.649810791 275.869537354 275.939849854 275.739654541 275.399810791 275.109771729 274.869537354 274.449615479 273.779693604 273.000396729 272.210357666 276.240081787 276.310394287 275.980316162 275.539886475 275.35043335 275.45980835 275.60043335 275.719573975 275.839691162 275.789886475 275.329925537 274.539886475 273.860198975 273.490081787 273.249847412 272.820159912 272.0496521 274.800109863 274.929992676 275.040344238 275.170227051 275.389953613 275.689758301 275.989562988 276.189758301 276.189758301 275.929992676 275.470031738 274.929992676 274.410461426 273.819641113 273.120422363 272.410461426 271.809875488 274.710357666 275.010162354 275.140045166 275.159576416 275.220123291 275.390045166 275.659576416 275.899810791 275.949615479 275.720123291 275.380279541 275.109771729 274.830474854 274.350006104 273.670318604 272.970123291 272.309967041 276.419769287 276.3699646 275.919769287 275.469573975 275.2996521 275.379730225 275.539886475 275.70980835 275.8699646 275.78012085 275.270355225 274.499847412 273.839691162 273.379730225 272.980316162 272.499847412 271.85043335 274.809875488 275.029602051 275.179992676 275.279602051 275.429992676 275.700500488 276.029602051 276.269836426 276.279602051 276.000305176 275.510070801 274.960266113 274.399719238 273.769836426 273.090148926 272.479797363 271.989562988 274.649810791 275.019927979 275.140045166 275.100006104 275.090240479 275.269927979 275.590240479 275.890045166 275.949615479 275.710357666 275.369537354 275.059967041 274.739654541 274.229888916 273.590240479 272.979888916 272.409576416 276.589691162 276.410003662 275.890472412 275.450042725 275.289886475 275.35043335 275.469573975 275.679534912 275.879730225 275.78012085 275.249847412 274.509613037 273.879730225 273.35043335 272.839691162 272.339691162 271.740081787 274.910461426 275.229797363 275.370422363 275.370422363 275.410461426 275.630187988 275.979797363 276.260070801 276.300109863 276.029602051 275.540344238 274.970031738 274.359680176 273.670227051 272.950500488 272.389953613 272.019836426 274.619537354 275.010162354 275.090240479 274.970123291 274.930084229 275.149810791 275.540435791 275.880279541 275.949615479 275.720123291 275.330474854 274.979888916 274.619537354 274.159576416 273.580474854 273.029693604 272.439849854 276.70980835 276.419769287 275.8699646 275.45980835 275.329925537 275.329925537 275.400238037 275.629730225 275.85043335 275.759613037 275.219573975 274.560394287 273.95980835 273.410003662 272.829925537 272.2996521 271.6902771 275.019836426 275.380187988 275.479797363 275.389953613 275.340148926 275.540344238 275.899719238 276.210266113 276.269836426 276.000305176 275.489562988 274.920227051 274.300109863 273.580383301 272.840148926 272.300109863 271.960266113 274.630279541 275.010162354 275.029693604 274.859771729 274.850006104 275.119537354 275.559967041 275.899810791 275.970123291 275.710357666 275.279693604 274.869537354 274.519927979 274.119537354 273.630279541 273.059967041 272.380279541 276.770355225 276.419769287 275.85043335 275.480316162 275.360198975 275.310394287 275.339691162 275.560394287 275.820159912 275.70980835 275.1902771 274.579925537 274.0496521 273.520355225 272.900238037 272.2996521 271.6199646 275.099914551 275.450500488 275.479797363 275.319641113 275.250305176 275.439758301 275.819641113 276.160461426 276.250305176 275.979797363 275.450500488 274.849914551 274.260070801 273.599914551 272.920227051 272.359680176 271.960266113 274.689849854 275.029693604 274.979888916 274.790435791 274.809967041 275.130279541 275.600006104 275.939849854 275.979888916 275.699615479 275.229888916 274.769927979 274.420318604 274.059967041 273.619537354 273.010162354 272.210357666 276.759613037 276.400238037 275.839691162 275.469573975 275.329925537 275.259613037 275.270355225 275.53012085 275.789886475 275.669769287 275.160003662 274.610198975 274.150238037 273.629730225 272.95980835 272.289886475 271.539886475 275.130187988 275.470031738 275.450500488 275.250305176 275.149719238 275.340148926 275.739562988 276.139953613 276.260070801 276.000305176 275.429992676 274.790344238 274.210266113 273.660461426 273.090148926 272.529602051 272.019836426 274.739654541 275.029693604 274.939849854 274.720123291 274.739654541 275.090240479 275.569732666 275.909576416 275.939849854 275.649810791 275.170318604 274.680084229 274.290435791 273.939849854 273.500396729 272.859771729 271.979888916 276.730316162 276.400238037 275.85043335 275.450042725 275.259613037 275.1902771 275.249847412 275.539886475 275.789886475 275.640472412 275.150238037 274.650238037 274.259613037 273.740081787 273.03012085 272.28012085 271.469573975 275.120422363 275.479797363 275.450500488 275.220031738 275.080383301 275.250305176 275.649719238 276.069641113 276.239562988 275.979797363 275.389953613 274.689758301 274.120422363 273.630187988 273.139953613 272.590148926 271.979797363 274.699615479 274.949615479 274.869537354 274.659576416 274.659576416 274.979888916 275.470123291 275.800201416 275.819732666 275.550201416 275.100006104 274.600006104 274.159576416 273.769927979 273.319732666 272.659576416 271.720123291 276.650238037 276.400238037 275.860198975 275.429534912 275.20980835 275.129730225 275.249847412 275.570159912 275.7996521 275.6199646 275.140472412 274.719573975 274.390472412 273.879730225 273.129730225 272.339691162 271.469573975 275.069641113 275.489562988 275.479797363 275.220031738 275.050109863 275.179992676 275.580383301 276.000305176 276.149719238 275.880187988 275.269836426 274.559875488 273.970031738 273.479797363 272.989562988 272.420227051 271.760070801 274.540435791 274.809967041 274.800201416 274.619537354 274.600006104 274.909576416 275.390045166 275.710357666 275.710357666 275.449615479 275.029693604 274.540435791 274.059967041 273.630279541 273.170318604 272.510162354 271.500396729 276.5496521 276.329925537 275.839691162 275.410003662 275.1902771 275.129730225 275.28012085 275.60043335 275.820159912 275.6199646 275.160003662 274.820159912 274.539886475 274.0496521 273.2996521 272.490081787 271.579925537 275.040344238 275.460266113 275.439758301 275.160461426 275.000305176 275.149719238 275.550109863 275.950500488 276.050109863 275.750305176 275.139953613 274.460266113 273.849914551 273.300109863 272.739562988 272.120422363 271.439758301 274.380279541 274.680084229 274.750396729 274.609771729 274.580474854 274.880279541 275.350006104 275.670318604 275.659576416 275.409576416 275.029693604 274.580474854 274.069732666 273.600006104 273.100006104 272.399810791 271.350006104 276.429534912 276.240081787 275.78012085 275.400238037 275.20980835 275.150238037 275.289886475 275.629730225 275.829925537 275.650238037 275.230316162 274.919769287 274.700042725 274.249847412 273.539886475 272.719573975 271.759613037 275.040344238 275.370422363 275.300109863 275.029602051 274.899719238 275.109680176 275.550109863 275.939758301 276.000305176 275.689758301 275.109680176 274.450500488 273.800109863 273.170227051 272.529602051 271.870422363 271.170227051 274.350006104 274.659576416 274.760162354 274.619537354 274.529693604 274.769927979 275.239654541 275.580474854 275.619537354 275.430084229 275.130279541 274.720123291 274.220123291 273.680084229 273.100006104 272.340240479 271.260162354 276.310394287 276.140472412 275.740081787 275.419769287 275.259613037 275.179534912 275.28012085 275.610198975 275.85043335 275.70980835 275.310394287 275.03012085 274.860198975 274.480316162 273.829925537 273.020355225 271.990081787 275.019836426 275.239562988 275.109680176 274.870422363 274.809875488 275.080383301 275.540344238 275.920227051 276.010070801 275.739562988 275.200500488 274.510070801 273.779602051 273.059875488 272.370422363 271.700500488 270.989562988 274.439849854 274.760162354 274.819732666 274.609771729 274.420318604 274.569732666 274.989654541 275.359771729 275.489654541 275.409576416 275.220123291 274.890045166 274.409576416 273.819732666 273.130279541 272.290435791 271.189849854 276.160003662 276.0496521 275.730316162 275.480316162 275.320159912 275.200042725 275.240081787 275.570159912 275.8699646 275.759613037 275.379730225 275.129730225 275.020355225 274.740081787 274.150238037 273.35043335 272.28012085 274.859680176 275.029602051 274.939758301 274.779602051 274.800109863 275.090148926 275.529602051 275.899719238 276.029602051 275.849914551 275.330383301 274.569641113 273.720031738 272.929992676 272.239562988 271.580383301 270.859680176 274.580474854 274.880279541 274.880279541 274.569732666 274.319732666 274.409576416 274.779693604 275.149810791 275.330474854 275.319732666 275.199615479 274.949615479 274.540435791 273.949615479 273.189849854 272.279693604 271.189849854 275.990081787 275.95980835 275.719573975 275.520355225 275.3699646 275.20980835 275.219573975 275.5496521 275.8699646 275.789886475 275.419769287 275.200042725 275.169769287 274.990081787 274.490081787 273.700042725 272.60043335 274.529602051 274.750305176 274.769836426 274.729797363 274.819641113 275.109680176 275.529602051 275.889953613 276.050109863 275.920227051 275.410461426 274.590148926 273.679992676 272.870422363 272.189758301 271.510070801 270.739562988 274.680084229 274.949615479 274.850006104 274.510162354 274.269927979 274.380279541 274.739654541 275.090240479 275.250396729 275.220123291 275.080474854 274.880279541 274.580474854 274.050201416 273.269927979 272.319732666 271.250396729 275.820159912 275.85043335 275.650238037 275.490081787 275.3699646 275.219573975 275.240081787 275.579925537 275.900238037 275.7996521 275.450042725 275.270355225 275.310394287 275.240081787 274.810394287 274.0496521 272.95980835 274.120422363 274.479797363 274.630187988 274.649719238 274.760070801 275.080383301 275.519836426 275.899719238 276.040344238 275.889953613 275.370422363 274.569641113 273.710266113 272.960266113 272.279602051 271.519836426 270.670227051 274.760162354 274.949615479 274.729888916 274.350006104 274.199615479 274.409576416 274.819732666 275.149810791 275.269927979 275.159576416 274.949615479 274.779693604 274.580474854 274.130279541 273.350006104 272.380279541 271.340240479 275.700042725 275.740081787 275.5496521 275.429534912 275.35043335 275.240081787 275.289886475 275.6199646 275.900238037 275.7996521 275.469573975 275.339691162 275.450042725 275.4402771 275.089691162 274.390472412 273.329925537 273.849914551 274.309875488 274.519836426 274.529602051 274.620422363 274.970031738 275.500305176 275.899719238 276.019836426 275.790344238 275.260070801 274.550109863 273.830383301 273.220031738 272.550109863 271.679992676 270.710266113 274.830474854 274.920318604 274.569732666 274.149810791 274.059967041 274.359771729 274.819732666 275.170318604 275.279693604 275.119537354 274.869537354 274.720123291 274.619537354 274.250396729 273.470123291 272.460357666 271.439849854 275.579925537 275.629730225 275.469573975 275.3699646 275.329925537 275.249847412 275.2996521 275.60043335 275.8699646 275.749847412 275.450042725 275.390472412 275.570159912 275.640472412 275.360198975 274.730316162 273.740081787 273.790344238 274.300109863 274.479797363 274.429992676 274.519836426 274.920227051 275.489562988 275.920227051 275.989562988 275.720031738 275.200500488 274.580383301 274.040344238 273.580383301 272.960266113 272.010070801 270.910461426 274.809967041 274.830474854 274.399810791 273.949615479 273.920318604 274.269927979 274.729888916 275.090240479 275.220123291 275.069732666 274.830474854 274.750396729 274.750396729 274.470123291 273.680084229 272.609771729 271.559967041 275.390472412 275.480316162 275.379730225 275.35043335 275.339691162 275.259613037 275.28012085 275.5496521 275.770355225 275.650238037 275.379730225 275.379730225 275.640472412 275.7996521 275.610198975 275.0496521 274.1199646 273.870422363 274.309875488 274.439758301 274.420227051 274.559875488 275.019836426 275.590148926 275.970031738 276.010070801 275.720031738 275.229797363 274.689758301 274.300109863 274.019836426 273.489562988 272.479797363 271.239562988 274.600006104 274.600006104 274.170318604 273.790435791 273.840240479 274.220123291 274.680084229 275.019927979 275.140045166 274.989654541 274.779693604 274.769927979 274.920318604 274.769927979 274.019927979 272.880279541 271.760162354 275.10043335 275.249847412 275.240081787 275.2996521 275.339691162 275.270355225 275.270355225 275.499847412 275.6902771 275.5496521 275.28012085 275.329925537 275.6902771 275.929534912 275.789886475 275.270355225 274.410003662 273.939758301 274.229797363 274.300109863 274.380187988 274.689758301 275.220031738 275.760070801 276.050109863 276.019836426 275.750305176 275.290344238 274.819641113 274.540344238 274.439758301 274.080383301 273.090148926 271.700500488 274.220123291 274.199615479 273.850006104 273.640045166 273.840240479 274.290435791 274.720123291 275.000396729 275.069732666 274.890045166 274.649810791 274.699615479 275.000396729 275.040435791 274.390045166 273.229888916 272.019927979 274.820159912 275.009613037 275.079925537 275.230316162 275.329925537 275.289886475 275.289886475 275.499847412 275.669769287 275.480316162 275.20980835 275.2996521 275.740081787 276.039886475 275.879730225 275.339691162 274.539886475 273.970031738 274.099914551 274.109680176 274.290344238 274.760070801 275.380187988 275.889953613 276.069641113 275.979797363 275.689758301 275.290344238 274.880187988 274.710266113 274.769836426 274.599914551 273.710266113 272.269836426 273.800201416 273.779693604 273.540435791 273.519927979 273.890045166 274.390045166 274.779693604 275.010162354 275.029693604 274.800201416 274.519927979 274.580474854 274.989654541 275.210357666 274.699615479 273.580474854 272.309967041 274.660003662 274.8699646 274.980316162 275.1902771 275.360198975 275.339691162 275.35043335 275.53012085 275.650238037 275.45980835 275.200042725 275.339691162 275.820159912 276.10043335 275.860198975 275.249847412 274.509613037 274.040344238 274.080383301 274.029602051 274.239562988 274.750305176 275.389953613 275.880187988 276.000305176 275.849914551 275.529602051 275.170227051 274.870422363 274.809875488 274.979797363 274.960266113 274.260070801 272.950500488 273.479888916 273.470123291 273.350006104 273.510162354 274.000396729 274.500396729 274.809967041 274.960357666 274.970123291 274.750396729 274.500396729 274.559967041 274.989654541 275.300201416 274.920318604 273.899810791 272.640045166 274.640472412 274.839691162 274.95980835 275.20980835 275.429534912 275.4402771 275.410003662 275.5496521 275.650238037 275.480316162 275.270355225 275.45980835 275.9402771 276.150238037 275.7996521 275.110198975 274.379730225 274.120422363 274.189758301 274.160461426 274.290344238 274.700500488 275.260070801 275.729797363 275.870422363 275.660461426 275.319641113 275.019836426 274.859680176 274.880187988 275.090148926 275.160461426 274.689758301 273.630187988 273.220123291 273.250396729 273.290435791 273.619537354 274.180084229 274.619537354 274.819732666 274.909576416 274.930084229 274.809967041 274.630279541 274.699615479 275.100006104 275.399810791 275.130279541 274.260162354 273.100006104 274.6199646 274.789886475 274.929534912 275.230316162 275.509613037 275.539886475 275.480316162 275.560394287 275.650238037 275.520355225 275.390472412 275.610198975 276.0496521 276.200042725 275.78012085 275.0496521 274.320159912 274.109680176 274.269836426 274.279602051 274.370422363 274.620422363 275.069641113 275.540344238 275.710266113 275.470031738 275.109680176 274.910461426 274.920227051 275.040344238 275.189758301 275.269836426 275.010070801 274.300109863 272.890045166 273.010162354 273.239654541 273.739654541 274.340240479 274.720123291 274.830474854 274.890045166 274.970123291 274.930084229 274.830474854 274.930084229 275.260162354 275.519927979 275.350006104 274.710357666 273.729888916 274.53012085 274.6902771 274.839691162 275.169769287 275.509613037 275.579925537 275.53012085 275.570159912 275.640472412 275.570159912 275.490081787 275.70980835 276.1199646 276.259613037 275.879730225 275.179534912 274.419769287 273.939758301 274.149719238 274.260070801 274.349914551 274.510070801 274.880187988 275.330383301 275.540344238 275.309875488 274.950500488 274.859680176 275.040344238 275.250305176 275.349914551 275.370422363 275.250305176 274.830383301 272.540435791 272.769927979 273.170318604 273.790435791 274.399810791 274.720123291 274.819732666 274.930084229 275.059967041 275.069732666 275.000396729 275.090240479 275.369537354 275.609771729 275.559967041 275.159576416 274.430084229 274.450042725 274.629730225 274.789886475 275.110198975 275.4402771 275.539886475 275.509613037 275.5496521 275.610198975 275.570159912 275.53012085 275.749847412 276.129730225 276.320159912 276.070159912 275.469573975 274.6902771 273.739562988 273.950500488 274.139953613 274.300109863 274.439758301 274.750305176 275.179992676 275.410461426 275.200500488 274.859680176 274.849914551 275.189758301 275.470031738 275.519836426 275.479797363 275.410461426 275.149719238 272.350006104 272.710357666 273.250396729 273.899810791 274.409576416 274.630279541 274.769927979 275.000396729 275.220123291 275.229888916 275.140045166 275.210357666 275.470123291 275.680084229 275.699615479 275.500396729 274.989654541 274.560394287 274.78012085 274.919769287 275.150238037 275.379730225 275.469573975 275.469573975 275.509613037 275.5496521 275.509613037 275.520355225 275.730316162 276.110198975 276.35043335 276.249847412 275.789886475 274.990081787 273.689758301 273.889953613 274.109680176 274.340148926 274.500305176 274.739562988 275.099914551 275.300109863 275.139953613 274.859680176 274.929992676 275.340148926 275.670227051 275.679992676 275.569641113 275.479797363 275.269836426 272.430084229 272.939849854 273.550201416 274.140045166 274.489654541 274.609771729 274.769927979 275.119537354 275.409576416 275.420318604 275.319732666 275.399810791 275.630279541 275.790435791 275.779693604 275.659576416 275.290435791 274.860198975 275.140472412 275.240081787 275.289886475 275.3699646 275.419769287 275.4402771 275.469573975 275.469573975 275.450042725 275.490081787 275.719573975 276.060394287 276.320159912 276.329925537 275.950042725 275.150238037 273.809875488 273.979797363 274.210266113 274.479797363 274.630187988 274.779602051 275.029602051 275.179992676 275.090148926 274.920227051 275.069641113 275.519836426 275.849914551 275.840148926 275.649719238 275.500305176 275.269836426 272.760162354 273.319732666 273.930084229 274.439849854 274.649810791 274.689849854 274.869537354 275.250396729 275.550201416 275.559967041 275.500396729 275.640045166 275.869537354 275.949615479 275.840240479 275.670318604 275.350006104 275.249847412 275.5496521 275.570159912 275.45980835 275.379730225 275.3699646 275.400238037 275.429534912 275.400238037 275.390472412 275.490081787 275.719573975 275.999847412 276.219573975 276.240081787 275.919769287 275.140472412 274.000305176 274.139953613 274.340148926 274.590148926 274.729797363 274.800109863 274.950500488 275.080383301 275.029602051 274.970031738 275.200500488 275.670227051 276.019836426 276.010070801 275.769836426 275.550109863 275.260070801 273.199615479 273.680084229 274.189849854 274.609771729 274.779693604 274.819732666 275.000396729 275.319732666 275.529693604 275.519927979 275.550201416 275.790435791 276.059967041 276.069732666 275.850006104 275.600006104 275.319732666 275.629730225 275.900238037 275.820159912 275.560394287 275.3699646 275.339691162 275.3699646 275.360198975 275.2996521 275.320159912 275.45980835 275.700042725 275.919769287 276.039886475 276.039886475 275.759613037 275.009613037 274.260070801 274.359680176 274.500305176 274.689758301 274.800109863 274.870422363 274.970031738 275.059875488 275.019836426 274.989562988 275.229797363 275.710266113 276.099914551 276.139953613 275.910461426 275.620422363 275.290344238 273.729888916 274.029693604 274.369537354 274.699615479 274.859771729 274.939849854 275.109771729 275.340240479 275.409576416 275.350006104 275.460357666 275.809967041 276.100006104 276.059967041 275.790435791 275.529693604 275.300201416 275.999847412 276.20980835 276.0496521 275.679534912 275.410003662 275.339691162 275.35043335 275.2996521 275.230316162 275.259613037 275.4402771 275.660003662 275.789886475 275.839691162 275.7996521 275.53012085 274.829925537 274.620422363 274.729797363 274.830383301 274.929992676 275.010070801 275.059875488 275.160461426 275.210266113 275.109680176 275.019836426 275.189758301 275.630187988 276.040344238 276.160461426 275.970031738 275.660461426 275.279602051 274.340240479 274.470123291 274.670318604 274.899810791 275.040435791 275.109771729 275.239654541 275.350006104 275.300201416 275.220123291 275.380279541 275.779693604 276.050201416 275.960357666 275.680084229 275.460357666 275.290435791 276.3699646 276.53012085 276.289886475 275.8699646 275.539886475 275.410003662 275.3699646 275.289886475 275.219573975 275.270355225 275.429534912 275.589691162 275.679534912 275.669769287 275.579925537 275.289886475 274.60043335 275.000305176 275.200500488 275.309875488 275.349914551 275.330383301 275.319641113 275.370422363 275.370422363 275.220031738 275.050109863 275.139953613 275.519836426 275.920227051 276.090148926 275.960266113 275.630187988 275.210266113 274.850006104 274.949615479 275.100006104 275.260162354 275.309967041 275.300201416 275.340240479 275.359771729 275.260162354 275.199615479 275.399810791 275.779693604 276.000396729 275.830474854 275.540435791 275.369537354 275.250396729 276.660003662 276.759613037 276.469573975 276.039886475 275.6902771 275.509613037 275.400238037 275.310394287 275.270355225 275.320159912 275.4402771 275.539886475 275.579925537 275.560394287 275.400238037 274.999847412 274.289886475 275.200500488 275.500305176 275.660461426 275.660461426 275.540344238 275.420227051 275.370422363 275.309875488 275.160461426 275.019836426 275.099914551 275.420227051 275.800109863 275.989562988 275.870422363 275.550109863 275.099914551 275.109771729 275.229888916 275.409576416 275.540435791 275.519927979 275.380279541 275.319732666 275.290435791 275.210357666 275.189849854 275.420318604 275.769927979 275.890045166 275.680084229 275.380279541 275.239654541 275.159576416 276.749847412 276.749847412 276.419769287 276.009613037 275.70980835 275.509613037 275.360198975 275.249847412 275.249847412 275.310394287 275.379730225 275.4402771 275.509613037 275.480316162 275.249847412 274.740081787 273.929534912 275.170227051 275.439758301 275.590148926 275.620422363 275.489562988 275.279602051 275.099914551 274.989562988 274.920227051 274.899719238 275.050109863 275.359680176 275.700500488 275.889953613 275.800109863 275.450500488 274.979797363 275.210357666 275.260162354 275.420318604 275.559967041 275.489654541 275.269927979 275.140045166 275.090240479 275.050201416 275.090240479 275.340240479 275.630279541 275.689849854 275.449615479 275.189849854 275.069732666 274.970123291 276.60043335 276.45980835 276.10043335 275.7996521 275.610198975 275.429534912 275.230316162 275.089691162 275.089691162 275.179534912 275.240081787 275.320159912 275.400238037 275.410003662 275.129730225 274.53012085 273.660003662 275.179992676 275.250305176 275.309875488 275.399719238 275.340148926 275.099914551 274.840148926 274.710266113 274.700500488 274.800109863 274.989562988 275.279602051 275.599914551 275.790344238 275.720031738 275.380187988 274.870422363 275.430084229 275.269927979 275.300201416 275.430084229 275.369537354 275.140045166 274.949615479 274.869537354 274.880279541 274.979888916 275.210357666 275.420318604 275.409576416 275.180084229 274.989654541 274.920318604 274.779693604 276.329925537 276.0496521 275.719573975 275.579925537 275.560394287 275.419769287 275.140472412 274.919769287 274.900238037 275.009613037 275.10043335 275.169769287 275.289886475 275.2996521 275.020355225 274.390472412 273.509613037 275.510070801 275.319641113 275.260070801 275.370422363 275.359680176 275.109680176 274.800109863 274.660461426 274.689758301 274.809875488 274.960266113 275.179992676 275.470031738 275.679992676 275.620422363 275.260070801 274.700500488 275.840240479 275.489654541 275.369537354 275.449615479 275.399810791 275.140045166 274.899810791 274.800201416 274.819732666 274.930084229 275.119537354 275.229888916 275.130279541 274.930084229 274.819732666 274.800201416 274.609771729 276.10043335 275.770355225 275.520355225 275.539886475 275.629730225 275.520355225 275.1902771 274.890472412 274.820159912 274.919769287 275.0496521 275.1199646 275.200042725 275.179534912 274.890472412 274.28012085 273.4402771 276.029602051 275.760070801 275.630187988 275.670227051 275.580383301 275.239562988 274.899719238 274.779602051 274.819641113 274.870422363 274.910461426 275.069641113 275.330383301 275.529602051 275.460266113 275.059875488 274.439758301 276.220123291 275.819732666 275.640045166 275.670318604 275.550201416 275.239654541 274.949615479 274.819732666 274.830474854 274.930084229 275.059967041 275.080474854 274.920318604 274.720123291 274.670318604 274.689849854 274.460357666 276.020355225 275.759613037 275.60043335 275.640472412 275.719573975 275.629730225 275.310394287 274.999847412 274.879730225 274.969573975 275.079925537 275.150238037 275.169769287 275.070159912 274.749847412 274.179534912 273.400238037 276.359680176 276.250305176 276.149719238 276.069641113 275.769836426 275.279602051 274.929992676 274.870422363 274.929992676 274.889953613 274.849914551 274.960266113 275.220031738 275.380187988 275.250305176 274.800109863 274.149719238 276.290435791 276.010162354 275.890045166 275.850006104 275.630279541 275.250396729 274.970123291 274.850006104 274.850006104 274.899810791 274.949615479 274.899810791 274.710357666 274.519927979 274.510162354 274.550201416 274.290435791 276.089691162 275.969573975 275.829925537 275.740081787 275.679534912 275.570159912 275.360198975 275.1199646 274.990081787 275.03012085 275.169769287 275.249847412 275.240081787 275.070159912 274.719573975 274.160003662 273.379730225 276.229797363 276.429992676 276.450500488 276.250305176 275.750305176 275.170227051 274.880187988 274.920227051 274.979797363 274.899719238 274.809875488 274.920227051 275.170227051 275.250305176 275.050109863 274.580383301 273.950500488 276.050201416 275.989654541 275.970123291 275.830474854 275.489654541 275.119537354 274.930084229 274.890045166 274.869537354 274.819732666 274.790435791 274.720123291 274.519927979 274.350006104 274.340240479 274.359771729 274.069732666 276.20980835 276.249847412 276.060394287 275.740081787 275.499847412 275.419769287 275.360198975 275.219573975 275.079925537 275.10043335 275.259613037 275.410003662 275.419769287 275.249847412 274.860198975 274.270355225 273.4402771 275.840148926 276.269836426 276.370422363 276.109680176 275.559875488 275.040344238 274.889953613 275.010070801 275.050109863 274.910461426 274.830383301 274.950500488 275.139953613 275.139953613 274.880187988 274.439758301 273.859680176 275.769927979 275.909576416 275.920318604 275.680084229 275.250396729 274.949615479 274.920318604 274.989654541 274.939849854 274.809967041 274.710357666 274.609771729 274.449615479 274.269927979 274.199615479 274.140045166 273.809967041 276.240081787 276.360198975 276.1199646 275.679534912 275.360198975 275.329925537 275.390472412 275.310394287 275.169769287 275.169769287 275.3699646 275.60043335 275.660003662 275.499847412 275.10043335 274.450042725 273.5496521 275.500305176 275.970031738 276.029602051 275.769836426 275.319641113 274.989562988 274.970031738 275.120422363 275.109680176 274.939758301 274.859680176 274.970031738 275.090148926 275.010070801 274.750305176 274.359680176 273.760070801 275.619537354 275.850006104 275.850006104 275.500396729 275.059967041 274.869537354 274.979888916 275.100006104 275.029693604 274.869537354 274.729888916 274.619537354 274.460357666 274.260162354 274.100006104 273.920318604 273.519927979 276.070159912 276.200042725 275.999847412 275.610198975 275.360198975 275.390472412 275.469573975 275.390472412 275.240081787 275.259613037 275.499847412 275.749847412 275.829925537 275.679534912 275.28012085 274.579925537 273.60043335 275.300109863 275.620422363 275.590148926 275.380187988 275.109680176 274.970031738 275.019836426 275.130187988 275.080383301 274.910461426 274.849914551 274.929992676 274.950500488 274.830383301 274.590148926 274.220031738 273.529602051 275.519927979 275.769927979 275.720123291 275.350006104 274.970123291 274.880279541 275.019927979 275.119537354 275.050201416 274.909576416 274.769927979 274.630279541 274.430084229 274.199615479 273.970123291 273.699615479 273.210357666 275.78012085 275.860198975 275.759613037 275.560394287 275.45980835 275.509613037 275.520355225 275.390472412 275.259613037 275.339691162 275.579925537 275.789886475 275.860198975 275.740081787 275.35043335 274.60043335 273.5496521 275.069641113 275.200500488 275.109680176 275.019836426 274.960266113 274.960266113 275.040344238 275.080383301 275.000305176 274.889953613 274.840148926 274.830383301 274.739562988 274.559875488 274.349914551 273.950500488 273.130187988 275.350006104 275.569732666 275.510162354 275.220123291 274.949615479 274.920318604 275.019927979 275.069732666 275.010162354 274.909576416 274.769927979 274.540435791 274.269927979 274.019927979 273.769927979 273.420318604 272.880279541 275.499847412 275.539886475 275.539886475 275.53012085 275.5496521 275.570159912 275.499847412 275.329925537 275.259613037 275.390472412 275.60043335 275.730316162 275.770355225 275.700042725 275.35043335 274.579925537 273.45980835 274.729797363 274.739562988 274.700500488 274.779602051 274.929992676 275.040344238 275.099914551 275.099914551 275.029602051 274.939758301 274.840148926 274.700500488 274.470031738 274.229797363 274.000305176 273.559875488 272.649719238 275.149810791 275.330474854 275.300201416 275.090240479 274.949615479 274.970123291 275.040435791 275.040435791 275.010162354 274.930084229 274.729888916 274.390045166 274.029693604 273.760162354 273.489654541 273.080474854 272.510162354 275.360198975 275.35043335 275.400238037 275.480316162 275.560394287 275.560394287 275.469573975 275.35043335 275.329925537 275.4402771 275.560394287 275.629730225 275.660003662 275.660003662 275.3699646 274.60043335 273.450042725 274.389953613 274.389953613 274.470031738 274.720031738 275.000305176 275.170227051 275.229797363 275.220031738 275.160461426 275.040344238 274.849914551 274.569641113 274.210266113 273.889953613 273.599914551 273.120422363 272.250305176 275.040435791 275.170318604 275.140045166 275.010162354 274.939849854 275.000396729 275.069732666 275.090240479 275.069732666 274.989654541 274.699615479 274.250396729 273.830474854 273.519927979 273.199615479 272.710357666 272.119537354 275.329925537 275.289886475 275.289886475 275.35043335 275.45980835 275.539886475 275.520355225 275.469573975 275.4402771 275.490081787 275.509613037 275.509613037 275.570159912 275.629730225 275.410003662 274.669769287 273.53012085 274.229797363 274.300109863 274.479797363 274.779602051 275.050109863 275.200500488 275.279602051 275.300109863 275.229797363 275.069641113 274.819641113 274.479797363 274.029602051 273.599914551 273.220031738 272.729797363 272.000305176 275.059967041 275.140045166 275.090240479 274.960357666 274.909576416 274.979888916 275.080474854 275.140045166 275.140045166 275.029693604 274.680084229 274.180084229 273.720123291 273.359771729 272.949615479 272.380279541 271.739654541 275.320159912 275.249847412 275.160003662 275.169769287 275.310394287 275.480316162 275.579925537 275.570159912 275.520355225 275.490081787 275.450042725 275.419769287 275.45980835 275.539886475 275.379730225 274.700042725 273.60043335 274.290344238 274.479797363 274.700500488 274.899719238 275.019836426 275.069641113 275.149719238 275.210266113 275.170227051 275.000305176 274.750305176 274.429992676 273.989562988 273.450500488 272.939758301 272.420227051 271.819641113 275.189849854 275.229888916 275.130279541 274.970123291 274.890045166 274.949615479 275.069732666 275.149810791 275.159576416 275.019927979 274.670318604 274.159576416 273.670318604 273.260162354 272.769927979 272.140045166 271.470123291 275.360198975 275.270355225 275.110198975 275.070159912 275.1902771 275.410003662 275.570159912 275.570159912 275.509613037 275.45980835 275.410003662 275.339691162 275.339691162 275.390472412 275.240081787 274.6199646 273.560394287 274.450500488 274.769836426 275.000305176 275.069641113 274.979797363 274.880187988 274.929992676 275.069641113 275.050109863 274.889953613 274.689758301 274.450500488 274.040344238 273.420227051 272.769836426 272.200500488 271.660461426 275.390045166 275.409576416 275.279693604 275.080474854 274.949615479 274.970123291 275.069732666 275.149810791 275.159576416 275.029693604 274.689849854 274.170318604 273.640045166 273.159576416 272.640045166 272.000396729 271.309967041 275.450042725 275.429534912 275.310394287 275.219573975 275.259613037 275.390472412 275.499847412 275.53012085 275.520355225 275.499847412 275.4402771 275.289886475 275.1902771 275.169769287 275.03012085 274.450042725 273.3699646 274.679992676 275.080383301 275.319641113 275.290344238 275.000305176 274.769836426 274.800109863 274.979797363 274.989562988 274.809875488 274.609680176 274.450500488 274.090148926 273.450500488 272.679992676 272.040344238 271.489562988 275.600006104 275.670318604 275.519927979 275.269927979 275.069732666 275.029693604 275.100006104 275.180084229 275.199615479 275.080474854 274.729888916 274.170318604 273.569732666 273.040435791 272.519927979 271.909576416 271.180084229 275.560394287 275.759613037 275.759613037 275.629730225 275.490081787 275.4402771 275.490081787 275.5496521 275.6199646 275.640472412 275.520355225 275.240081787 274.999847412 274.919769287 274.78012085 274.20980835 273.10043335 274.989562988 275.389953613 275.590148926 275.479797363 275.090148926 274.760070801 274.750305176 274.950500488 274.960266113 274.739562988 274.510070801 274.370422363 274.069641113 273.439758301 272.649719238 271.929992676 271.330383301 275.760162354 275.899810791 275.729888916 275.409576416 275.149810791 275.069732666 275.119537354 275.220123291 275.269927979 275.149810791 274.769927979 274.159576416 273.489654541 272.899810791 272.369537354 271.769927979 271.000396729 275.669769287 276.150238037 276.2996521 276.110198975 275.759613037 275.53012085 275.509613037 275.650238037 275.810394287 275.829925537 275.60043335 275.179534912 274.7996521 274.629730225 274.469573975 273.919769287 272.789886475 275.349914551 275.660461426 275.750305176 275.599914551 275.170227051 274.760070801 274.720031738 274.889953613 274.889953613 274.649719238 274.410461426 274.269836426 274.000305176 273.410461426 272.639953613 271.899719238 271.229797363 275.800201416 276.029693604 275.840240479 275.470123291 275.159576416 275.059967041 275.130279541 275.279693604 275.359771729 275.239654541 274.830474854 274.180084229 273.439849854 272.790435791 272.210357666 271.550201416 270.750396729 275.810394287 276.520355225 276.740081787 276.429534912 275.910003662 275.560394287 275.5496521 275.740081787 275.9402771 275.950042725 275.669769287 275.150238037 274.640472412 274.360198975 274.150238037 273.610198975 272.509613037 275.679992676 275.830383301 275.819641113 275.599914551 275.160461426 274.760070801 274.689758301 274.830383301 274.819641113 274.590148926 274.359680176 274.220031738 273.939758301 273.380187988 272.639953613 271.910461426 271.160461426 275.720123291 276.019927979 275.859771729 275.489654541 275.180084229 275.069732666 275.149810791 275.319732666 275.439849854 275.350006104 274.939849854 274.250396729 273.439849854 272.680084229 272.019927979 271.330474854 270.519927979 276.039886475 276.839691162 276.999847412 276.560394287 275.9402771 275.570159912 275.589691162 275.810394287 276.009613037 276.009613037 275.749847412 275.20980835 274.60043335 274.140472412 273.839691162 273.360198975 272.339691162 275.880187988 275.920227051 275.790344238 275.529602051 275.109680176 274.750305176 274.689758301 274.809875488 274.800109863 274.599914551 274.389953613 274.210266113 273.859680176 273.279602051 272.590148926 271.899719238 271.090148926 275.569732666 275.909576416 275.840240479 275.550201416 275.260162354 275.119537354 275.170318604 275.340240479 275.489654541 275.420318604 275.040435791 274.330474854 273.420318604 272.540435791 271.800201416 271.119537354 270.369537354 276.339691162 277.079925537 277.1199646 276.570159912 275.919769287 275.589691162 275.660003662 275.8699646 276.009613037 276.03012085 275.839691162 275.329925537 274.610198975 273.95980835 273.570159912 273.179534912 272.28012085 275.929992676 275.920227051 275.710266113 275.399719238 275.019836426 274.729797363 274.710266113 274.840148926 274.859680176 274.679992676 274.429992676 274.120422363 273.639953613 273.029602051 272.399719238 271.750305176 270.899719238 275.340240479 275.729888916 275.790435791 275.630279541 275.359771729 275.140045166 275.109771729 275.260162354 275.420318604 275.399810791 275.050201416 274.330474854 273.359771729 272.359771729 271.569732666 270.930084229 270.239654541 276.570159912 277.219573975 277.150238037 276.5496521 275.910003662 275.629730225 275.719573975 275.900238037 275.990081787 275.999847412 275.879730225 275.429534912 274.650238037 273.829925537 273.320159912 272.999847412 272.240081787 275.830383301 275.819641113 275.609680176 275.300109863 274.950500488 274.710266113 274.739562988 274.910461426 274.950500488 274.779602051 274.450500488 273.970031738 273.340148926 272.670227051 272.080383301 271.460266113 270.590148926 275.059967041 275.500396729 275.689849854 275.630279541 275.369537354 275.090240479 275.010162354 275.119537354 275.269927979 275.250396729 274.960357666 274.300201416 273.319732666 272.260162354 271.409576416 270.779693604 270.090240479 276.640472412 277.240081787 277.140472412 276.520355225 275.879730225 275.610198975 275.700042725 275.85043335 275.879730225 275.8699646 275.810394287 275.490081787 274.749847412 273.829925537 273.179534912 272.810394287 272.10043335 275.590148926 275.599914551 275.479797363 275.269836426 274.970031738 274.750305176 274.779602051 274.970031738 275.059875488 274.920227051 274.529602051 273.910461426 273.139953613 272.389953613 271.769836426 271.120422363 270.210266113 274.850006104 275.340240479 275.600006104 275.590240479 275.330474854 275.040435791 274.930084229 275.029693604 275.109771729 275.069732666 274.830474854 274.319732666 273.430084229 272.350006104 271.420318604 270.710357666 269.970123291 276.610198975 277.219573975 277.1199646 276.499847412 275.820159912 275.520355225 275.589691162 275.700042725 275.700042725 275.650238037 275.650238037 275.509613037 274.9402771 274.03012085 273.1902771 272.60043335 271.85043335 275.229797363 275.269836426 275.319641113 275.300109863 275.090148926 274.870422363 274.849914551 275.019836426 275.149719238 275.050109863 274.679992676 274.040344238 273.189758301 272.349914551 271.609680176 270.859680176 269.910461426 274.890045166 275.380279541 275.609771729 275.559967041 275.290435791 275.019927979 274.949615479 275.010162354 275.000396729 274.899810791 274.729888916 274.380279541 273.649810791 272.609771729 271.609771729 270.790435791 269.939849854 276.60043335 277.219573975 277.110198975 276.450042725 275.740081787 275.410003662 275.45980835 275.539886475 275.45980835 275.35043335 275.390472412 275.419769287 275.079925537 274.28012085 273.310394287 272.429534912 271.5496521 274.870422363 274.889953613 275.099914551 275.300109863 275.239562988 275.010070801 274.899719238 274.979797363 275.109680176 275.080383301 274.809875488 274.239562988 273.420227051 272.479797363 271.609680176 270.750305176 269.760070801 275.130279541 275.569732666 275.710357666 275.580474854 275.290435791 275.040435791 274.970123291 274.989654541 274.909576416 274.769927979 274.640045166 274.409576416 273.809967041 272.840240479 271.819732666 270.949615479 270.029693604 276.640472412 277.240081787 277.060394287 276.339691162 275.650238037 275.3699646 275.379730225 275.390472412 275.20980835 275.03012085 275.009613037 275.079925537 274.910003662 274.289886475 273.339691162 272.320159912 271.2996521 274.639953613 274.569641113 274.849914551 275.210266113 275.290344238 275.080383301 274.889953613 274.899719238 274.979797363 274.979797363 274.809875488 274.370422363 273.609680176 272.639953613 271.660461426 270.739562988 269.779602051 275.350006104 275.699615479 275.779693604 275.630279541 275.330474854 275.059967041 274.930084229 274.920318604 274.850006104 274.720123291 274.600006104 274.369537354 273.790435791 272.880279541 271.939849854 271.119537354 270.180084229 276.719573975 277.249847412 276.929534912 276.169769287 275.560394287 275.35043335 275.329925537 275.219573975 274.980316162 274.749847412 274.629730225 274.570159912 274.379730225 273.929534912 273.1902771 272.249847412 271.1902771 274.580383301 274.399719238 274.630187988 275.069641113 275.250305176 275.090148926 274.899719238 274.880187988 274.920227051 274.880187988 274.739562988 274.399719238 273.729797363 272.760070801 271.720031738 270.790344238 269.920227051 275.319732666 275.619537354 275.750396729 275.689849854 275.409576416 275.080474854 274.880279541 274.850006104 274.840240479 274.760162354 274.609771729 274.290435791 273.659576416 272.809967041 271.989654541 271.260162354 270.319732666 276.789886475 277.200042725 276.740081787 275.969573975 275.450042725 275.2996521 275.200042725 274.999847412 274.78012085 274.60043335 274.410003662 274.1199646 273.78012085 273.419769287 272.95980835 272.249847412 271.219573975 274.590148926 274.309875488 274.489562988 274.960266113 275.220031738 275.120422363 274.979797363 274.970031738 274.979797363 274.859680176 274.679992676 274.410461426 273.870422363 272.929992676 271.849914551 270.939758301 270.149719238 275.080474854 275.430084229 275.699615479 275.769927979 275.519927979 275.100006104 274.819732666 274.779693604 274.840240479 274.809967041 274.630279541 274.220123291 273.550201416 272.779693604 272.069732666 271.399810791 270.420318604 276.839691162 277.110198975 276.539886475 275.749847412 275.310394287 275.160003662 274.990081787 274.749847412 274.6199646 274.589691162 274.410003662 273.95980835 273.429534912 273.079925537 272.820159912 272.320159912 271.35043335 274.569641113 274.220031738 274.380187988 274.880187988 275.210266113 275.179992676 275.080383301 275.069641113 275.029602051 274.840148926 274.630187988 274.450500488 274.069641113 273.239562988 272.160461426 271.220031738 270.460266113 274.859771729 275.250396729 275.649810791 275.800201416 275.529693604 275.050201416 274.720123291 274.670318604 274.750396729 274.729888916 274.540435791 274.130279541 273.529693604 272.880279541 272.260162354 271.580474854 270.540435791 276.829925537 276.950042725 276.310394287 275.560394287 275.150238037 274.980316162 274.770355225 274.539886475 274.499847412 274.60043335 274.490081787 273.999847412 273.410003662 273.039886475 272.85043335 272.45980835 271.570159912 274.420227051 274.040344238 274.210266113 274.790344238 275.189758301 275.200500488 275.080383301 275.029602051 274.939758301 274.729797363 274.559875488 274.510070801 274.300109863 273.599914551 272.540344238 271.580383301 270.809875488 274.720123291 275.109771729 275.540435791 275.680084229 275.390045166 274.899810791 274.580474854 274.529693604 274.580474854 274.550201416 274.390045166 274.059967041 273.580474854 273.040435791 272.460357666 271.729888916 270.659576416 276.669769287 276.650238037 276.039886475 275.379730225 275.039886475 274.8699646 274.640472412 274.419769287 274.419769287 274.539886475 274.490081787 274.079925537 273.5496521 273.200042725 273.020355225 272.679534912 271.879730225 266.280426025 266.429840088 266.679840088 266.910308838 266.979644775 266.939605713 267.019683838 267.269683838 267.5597229 267.670074463 267.490386963 267.009918213 266.250152588 265.229644775 264.04019165 262.849761963 261.750152588 266.280395508 266.57043457 266.960083008 267.240356445 267.299926758 267.299926758 267.370239258 267.41027832 267.290161133 267.120239258 267.01965332 266.880004883 266.450317383 265.57043457 264.42980957 263.200317383 261.889770508 267.699645996 268.029724121 268.329528809 268.559997559 268.600036621 268.489685059 268.359802246 268.269958496 268.180114746 268.069763184 268.050231934 268.050231934 267.829528809 267.180114746 266.170349121 265.010192871 263.689880371 266.259918213 266.570465088 266.910308838 267.14956665 267.170074463 267.0597229 267.080230713 267.330230713 267.580230713 267.620269775 267.3800354 266.929840088 266.299957275 265.3800354 264.21987915 263.030426025 261.939605713 266.380004883 266.830200195 267.259887695 267.439575195 267.330200195 267.210083008 267.280395508 267.389770508 267.370239258 267.219848633 267.110473633 266.990356445 266.630004883 265.860473633 264.790161133 263.540161133 262.170043945 267.609802246 267.920349121 268.210388184 268.449645996 268.519958496 268.460388184 268.359802246 268.290466309 268.210388184 268.109802246 268.100036621 268.140075684 267.949645996 267.279724121 266.220153809 265.059997559 263.809997559 266.229644775 266.570465088 266.96987915 267.269683838 267.349761963 267.259918213 267.21987915 267.330230713 267.479644775 267.46987915 267.250152588 266.8800354 266.370269775 265.5597229 264.439605713 263.259918213 262.170074463 266.610473633 267.120239258 267.509887695 267.559692383 267.33996582 267.17980957 267.26965332 267.460083008 267.51965332 267.420043945 267.309692383 267.170043945 266.809692383 266.099731445 265.120239258 263.92980957 262.530395508 267.500427246 267.800231934 268.069763184 268.300231934 268.399841309 268.369567871 268.319763184 268.319763184 268.290466309 268.220153809 268.189880371 268.199645996 267.989685059 267.300231934 266.260192871 265.130310059 263.979919434 266.210113525 266.519683838 266.910308838 267.259918213 267.439605713 267.420074463 267.299957275 267.250152588 267.299957275 267.320465088 267.21987915 266.960113525 266.519683838 265.759918213 264.689605713 263.509918213 262.3800354 266.809692383 267.309692383 267.620239258 267.610473633 267.380004883 267.25012207 267.360473633 267.580200195 267.710083008 267.689575195 267.620239258 267.450317383 267.059692383 266.360473633 265.42980957 264.32043457 262.939575195 267.420349121 267.739685059 267.989685059 268.189880371 268.290466309 268.290466309 268.269958496 268.319763184 268.359802246 268.340270996 268.300231934 268.229919434 267.960388184 267.290466309 266.309997559 265.279724121 264.220153809 266.189605713 266.519683838 266.89956665 267.240386963 267.4503479 267.429840088 267.269683838 267.160308838 267.2003479 267.3097229 267.320465088 267.1300354 266.679840088 265.929840088 264.889801025 263.729644775 262.5597229 266.899536133 267.360473633 267.620239258 267.610473633 267.450317383 267.370239258 267.460083008 267.649536133 267.809692383 267.870239258 267.870239258 267.719848633 267.309692383 266.610473633 265.719848633 264.689575195 263.370239258 267.359802246 267.710388184 267.909606934 268.059997559 268.149841309 268.170349121 268.170349121 268.229919434 268.319763184 268.340270996 268.300231934 268.189880371 267.880310059 267.250427246 266.390075684 265.479919434 264.460388184 266.0597229 266.54019165 267.019683838 267.320465088 267.429840088 267.359527588 267.210113525 267.120269775 267.21987915 267.39956665 267.460113525 267.259918213 266.780426025 266.009918213 265.019683838 263.910308838 262.729644775 266.91027832 267.360473633 267.620239258 267.630004883 267.540161133 267.469848633 267.490356445 267.620239258 267.76965332 267.899536133 267.969848633 267.860473633 267.479614258 266.799926758 265.939575195 264.969848633 263.759887695 267.319763184 267.649841309 267.779724121 267.850036621 267.930114746 268.000427246 268.029724121 268.090270996 268.170349121 268.210388184 268.170349121 268.040466309 267.760192871 267.210388184 266.489685059 265.689880371 264.699645996 265.750152588 266.530426025 267.189605713 267.4503479 267.429840088 267.3097229 267.2003479 267.160308838 267.269683838 267.429840088 267.460113525 267.269683838 266.799957275 266.0597229 265.099761963 264.0597229 262.89956665 266.960083008 267.460083008 267.700317383 267.729614258 267.649536133 267.540161133 267.479614258 267.559692383 267.710083008 267.870239258 267.92980957 267.849731445 267.51965332 266.899536133 266.07043457 265.16027832 264.049926758 267.300231934 267.569763184 267.590270996 267.590270996 267.680114746 267.809997559 267.899841309 267.970153809 268.040466309 268.050231934 268.000427246 267.880310059 267.630310059 267.199645996 266.600036621 265.880310059 264.880310059 265.420074463 266.519683838 267.339996338 267.589996338 267.479644775 267.330230713 267.229644775 267.189605713 267.229644775 267.299957275 267.320465088 267.2003479 266.830230713 266.139801025 265.229644775 264.21987915 263.089996338 267.110473633 267.670043945 267.899536133 267.889770508 267.759887695 267.58996582 267.490356445 267.559692383 267.759887695 267.920043945 267.939575195 267.82043457 267.530395508 266.990356445 266.210083008 265.309692383 264.26965332 267.329528809 267.529724121 267.460388184 267.420349121 267.519958496 267.689880371 267.800231934 267.890075684 267.949645996 267.930114746 267.840270996 267.699645996 267.519958496 267.189880371 266.680114746 266.000427246 264.970153809 265.339996338 266.620269775 267.490386963 267.689605713 267.54019165 267.359527588 267.259918213 267.179840088 267.120269775 267.139801025 267.2003479 267.2003479 266.960113525 266.339996338 265.429840088 264.429840088 263.299957275 267.290161133 267.880004883 268.099731445 268.040161133 267.849731445 267.610473633 267.469848633 267.559692383 267.83996582 268.040161133 268.01965332 267.83996582 267.559692383 267.099731445 266.380004883 265.50012207 264.479614258 267.399841309 267.540466309 267.449645996 267.409606934 267.510192871 267.619567871 267.689880371 267.760192871 267.840270996 267.829528809 267.699645996 267.510192871 267.340270996 267.090270996 266.640075684 265.979919434 264.920349121 265.6300354 266.8800354 267.6300354 267.750152588 267.570465088 267.3800354 267.240386963 267.1300354 267.099761963 267.14956665 267.259918213 267.330230713 267.1300354 266.549957275 265.64956665 264.64956665 263.519683838 267.399536133 268.00012207 268.200317383 268.110473633 267.870239258 267.580200195 267.399536133 267.509887695 267.860473633 268.120239258 268.080200195 267.830200195 267.540161133 267.170043945 266.559692383 265.740356445 264.710083008 267.470153809 267.569763184 267.510192871 267.510192871 267.569763184 267.579528809 267.529724121 267.579528809 267.720153809 267.760192871 267.590270996 267.319763184 267.090270996 266.869567871 266.489685059 265.840270996 264.809997559 266.109527588 267.2003479 267.750152588 267.769683838 267.570465088 267.349761963 267.2003479 267.170074463 267.269683838 267.410308838 267.509918213 267.479644775 267.240386963 266.660308838 265.820465088 264.870269775 263.769683838 267.469848633 268.049926758 268.219848633 268.08996582 267.830200195 267.509887695 267.330200195 267.460083008 267.849731445 268.139770508 268.080200195 267.740356445 267.420043945 267.110473633 266.649536133 265.950317383 264.939575195 267.519958496 267.609802246 267.579528809 267.609802246 267.640075684 267.540466309 267.430114746 267.479919434 267.699645996 267.790466309 267.579528809 267.199645996 266.890075684 266.659606934 266.329528809 265.729919434 264.699645996 266.570465088 267.420074463 267.79019165 267.769683838 267.599761963 267.3800354 267.259918213 267.330230713 267.570465088 267.750152588 267.71987915 267.519683838 267.179840088 266.660308838 265.920074463 265.0597229 263.96987915 267.549926758 268.099731445 268.219848633 268.030395508 267.740356445 267.469848633 267.360473633 267.509887695 267.870239258 268.110473633 267.990356445 267.610473633 267.240356445 267.00012207 266.67980957 266.099731445 265.149536133 267.600036621 267.670349121 267.630310059 267.640075684 267.640075684 267.529724121 267.430114746 267.550231934 267.790466309 267.890075684 267.630310059 267.180114746 266.800231934 266.559997559 266.269958496 265.699645996 264.689880371 266.939605713 267.5597229 267.780426025 267.79019165 267.679840088 267.479644775 267.370269775 267.500152588 267.780426025 267.889801025 267.710113525 267.3800354 267.0597229 266.660308838 266.04019165 265.21987915 264.1300354 267.689575195 268.189575195 268.240356445 267.979614258 267.66027832 267.479614258 267.469848633 267.620239258 267.870239258 267.979614258 267.790161133 267.420043945 267.120239258 266.939575195 266.719848633 266.240356445 265.32043457 267.729919434 267.779724121 267.699645996 267.649841309 267.600036621 267.529724121 267.510192871 267.630310059 267.819763184 267.850036621 267.579528809 267.119567871 266.750427246 266.529724121 266.260192871 265.710388184 264.710388184 267.330230713 267.7003479 267.79019165 267.799957275 267.740386963 267.549957275 267.420074463 267.530426025 267.740386963 267.729644775 267.460113525 267.179840088 266.990386963 266.71987915 266.179840088 265.349761963 264.2003479 267.870239258 268.32043457 268.299926758 267.960083008 267.620239258 267.490356445 267.540161133 267.66027832 267.719848633 267.670043945 267.469848633 267.210083008 267.049926758 266.969848633 266.790161133 266.33996582 265.450317383 267.840270996 267.909606934 267.829528809 267.699645996 267.559997559 267.489685059 267.500427246 267.590270996 267.670349121 267.619567871 267.359802246 267.010192871 266.699645996 266.500427246 266.220153809 265.689880371 264.710388184 267.71987915 267.859527588 267.8097229 267.769683838 267.679840088 267.490386963 267.320465088 267.370269775 267.490386963 267.420074463 267.2003479 267.04019165 267.000152588 266.830230713 266.29019165 265.410308838 264.229644775 268.059692383 268.42980957 268.370239258 268.00012207 267.620239258 267.479614258 267.509887695 267.530395508 267.450317383 267.280395508 267.110473633 267.01965332 267.00012207 267.00012207 266.830200195 266.399536133 265.51965332 267.869567871 268.050231934 268.019958496 267.840270996 267.600036621 267.439880371 267.409606934 267.420349121 267.409606934 267.350036621 267.210388184 266.979919434 266.720153809 266.460388184 266.149841309 265.619567871 264.649841309 268.019683838 268.000152588 267.830230713 267.710113525 267.580230713 267.339996338 267.139801025 267.14956665 267.240386963 267.2003479 267.070465088 267.030426025 267.0597229 266.870269775 266.3097229 265.429840088 264.259918213 268.210083008 268.51965332 268.460083008 268.08996582 267.66027832 267.42980957 267.380004883 267.33996582 267.210083008 267.040161133 266.92980957 266.939575195 266.979614258 266.979614258 266.82043457 266.41027832 265.57043457 267.819763184 268.130310059 268.229919434 268.050231934 267.720153809 267.460388184 267.329528809 267.279724121 267.269958496 267.290466309 267.279724121 267.149841309 266.850036621 266.479919434 266.090270996 265.569763184 264.630310059 268.099761963 268.009918213 267.839996338 267.729644775 267.570465088 267.299957275 267.0597229 267.04019165 267.1300354 267.14956665 267.099761963 267.089996338 267.080230713 266.839996338 266.280426025 265.439605713 264.299957275 268.299926758 268.559692383 268.51965332 268.170043945 267.719848633 267.380004883 267.229614258 267.17980957 267.110473633 267.01965332 266.979614258 267.009887695 267.030395508 266.969848633 266.799926758 266.42980957 265.620239258 267.720153809 268.140075684 268.359802246 268.250427246 267.909606934 267.559997559 267.359802246 267.269958496 267.279724121 267.390075684 267.489685059 267.380310059 267.000427246 266.510192871 266.069763184 265.569763184 264.659606934 268.019683838 267.960113525 267.889801025 267.849761963 267.710113525 267.39956665 267.109527588 267.04019165 267.120269775 267.179840088 267.160308838 267.120269775 267.0597229 266.799957275 266.269683838 265.460113525 264.29019165 268.330200195 268.530395508 268.51965332 268.25012207 267.809692383 267.399536133 267.139770508 267.059692383 267.049926758 267.07043457 267.120239258 267.17980957 267.149536133 267.059692383 266.880004883 266.51965332 265.689575195 267.670349121 268.090270996 268.380310059 268.359802246 268.069763184 267.720153809 267.479919434 267.359802246 267.319763184 267.439880371 267.569763184 267.479919434 267.059997559 266.510192871 266.050231934 265.569763184 264.670349121 267.960113525 267.990386963 268.009918213 268.019683838 267.8800354 267.54019165 267.210113525 267.070465088 267.120269775 267.170074463 267.160308838 267.099761963 267.019683838 266.799957275 266.3097229 265.460113525 264.189605713 268.290161133 268.450317383 268.479614258 268.32043457 267.969848633 267.530395508 267.17980957 266.990356445 266.960083008 267.040161133 267.189575195 267.309692383 267.32043457 267.219848633 267.01965332 266.620239258 265.710083008 267.680114746 268.029724121 268.309997559 268.350036621 268.149841309 267.859802246 267.609802246 267.420349121 267.309997559 267.359802246 267.479919434 267.409606934 267.029724121 266.479919434 266.000427246 265.479919434 264.579528809 268.04019165 268.14956665 268.189605713 268.139801025 267.920074463 267.589996338 267.259918213 267.089996338 267.089996338 267.139801025 267.120269775 267.070465088 266.990386963 266.799957275 266.320465088 265.410308838 264.019683838 268.26965332 268.370239258 268.420043945 268.380004883 268.170043945 267.76965332 267.330200195 267.009887695 266.91027832 267.00012207 267.210083008 267.399536133 267.450317383 267.349731445 267.110473633 266.66027832 265.670043945 267.750427246 268.019958496 268.250427246 268.309997559 268.149841309 267.899841309 267.649841309 267.430114746 267.279724121 267.279724121 267.369567871 267.340270996 267.010192871 266.479919434 265.939880371 265.329528809 264.390075684 268.189605713 268.3800354 268.349761963 268.14956665 267.830230713 267.509918213 267.250152588 267.109527588 267.089996338 267.1300354 267.120269775 267.0597229 266.96987915 266.769683838 266.269683838 265.299957275 263.859527588 268.290161133 268.370239258 268.41027832 268.42980957 268.290161133 267.92980957 267.469848633 267.099731445 266.979614258 267.080200195 267.290161133 267.460083008 267.490356445 267.360473633 267.08996582 266.58996582 265.58996582 267.859802246 268.119567871 268.290466309 268.290466309 268.100036621 267.829528809 267.600036621 267.420349121 267.319763184 267.319763184 267.390075684 267.350036621 267.059997559 266.540466309 265.909606934 265.189880371 264.210388184 268.269683838 268.549957275 268.460113525 268.099761963 267.7003479 267.420074463 267.240386963 267.109527588 267.080230713 267.120269775 267.139801025 267.089996338 266.960113525 266.71987915 266.189605713 265.21987915 263.799957275 268.32043457 268.42980957 268.469848633 268.450317383 268.290161133 267.939575195 267.50012207 267.189575195 267.130004883 267.26965332 267.460083008 267.540161133 267.469848633 267.280395508 266.979614258 266.490356445 265.540161133 268.019958496 268.329528809 268.430114746 268.319763184 268.029724121 267.720153809 267.519958496 267.430114746 267.409606934 267.449645996 267.479919434 267.399841309 267.109802246 266.609802246 265.939880371 265.119567871 264.100036621 268.250152588 268.620269775 268.509918213 268.0597229 267.6300354 267.389801025 267.250152588 267.099761963 267.009918213 267.0597229 267.160308838 267.14956665 267.000152588 266.7003479 266.160308838 265.229644775 263.859527588 268.33996582 268.51965332 268.559692383 268.460083008 268.210083008 267.83996582 267.469848633 267.25012207 267.26965332 267.42980957 267.58996582 267.620239258 267.469848633 267.219848633 266.91027832 266.420043945 265.559692383 268.159606934 268.540466309 268.609802246 268.390075684 268.010192871 267.680114746 267.510192871 267.470153809 267.500427246 267.540466309 267.529724121 267.409606934 267.119567871 266.649841309 265.989685059 265.149841309 264.100036621 268.160308838 268.609527588 268.519683838 268.070465088 267.64956665 267.429840088 267.269683838 267.0597229 266.920074463 266.990386963 267.170074463 267.21987915 267.049957275 266.71987915 266.189605713 265.299957275 263.979644775 268.32043457 268.580200195 268.620239258 268.439575195 268.139770508 267.76965332 267.469848633 267.309692383 267.32043457 267.479614258 267.649536133 267.67980957 267.540161133 267.25012207 266.899536133 266.41027832 265.58996582 268.220153809 268.659606934 268.699645996 268.430114746 268.059997559 267.760192871 267.609802246 267.550231934 267.559997559 267.579528809 267.550231934 267.420349121 267.130310059 266.699645996 266.059997559 265.220153809 264.159606934 268.070465088 268.54019165 268.490386963 268.099761963 267.71987915 267.490386963 267.29019165 267.04019165 266.889801025 266.979644775 267.2003479 267.269683838 267.080230713 266.71987915 266.21987915 265.39956665 264.109527588 268.26965332 268.57043457 268.580200195 268.349731445 268.030395508 267.759887695 267.540161133 267.380004883 267.330200195 267.450317383 267.649536133 267.75012207 267.639770508 267.32043457 266.91027832 266.380004883 265.580200195 268.180114746 268.649841309 268.680114746 268.430114746 268.130310059 267.899841309 267.750427246 267.640075684 267.550231934 267.559997559 267.569763184 267.470153809 267.180114746 266.739685059 266.119567871 265.279724121 264.229919434 267.920074463 268.420074463 268.439605713 268.1300354 267.780426025 267.54019165 267.320465088 267.070465088 266.939605713 267.049957275 267.250152588 267.269683838 267.04019165 266.679840088 266.210113525 265.4503479 264.210113525 268.259887695 268.51965332 268.450317383 268.170043945 267.880004883 267.710083008 267.580200195 267.420043945 267.309692383 267.399536133 267.630004883 267.780395508 267.66027832 267.309692383 266.83996582 266.299926758 265.509887695 268.100036621 268.569763184 268.609802246 268.390075684 268.149841309 267.979919434 267.819763184 267.640075684 267.510192871 267.519958496 267.590270996 267.519958496 267.229919434 266.769958496 266.140075684 265.300231934 264.250427246 267.729644775 268.280426025 268.3800354 268.14956665 267.839996338 267.570465088 267.330230713 267.109527588 267.019683838 267.1300354 267.280426025 267.229644775 266.96987915 266.6300354 266.189605713 265.46987915 264.269683838 268.280395508 268.469848633 268.32043457 267.990356445 267.710083008 267.580200195 267.51965332 267.41027832 267.309692383 267.389770508 267.599731445 267.729614258 267.580200195 267.189575195 266.700317383 266.149536133 265.370239258 268.059997559 268.529724121 268.559997559 268.359802246 268.130310059 267.960388184 267.800231934 267.600036621 267.470153809 267.500427246 267.590270996 267.529724121 267.250427246 266.779724121 266.149841309 265.290466309 264.210388184 267.549957275 268.139801025 268.299957275 268.14956665 267.859527588 267.570465088 267.330230713 267.139801025 267.070465088 267.160308838 267.250152588 267.179840088 266.929840088 266.609527588 266.189605713 265.4503479 264.280426025 268.26965332 268.439575195 268.280395508 267.950317383 267.630004883 267.509887695 267.490356445 267.439575195 267.399536133 267.469848633 267.620239258 267.670043945 267.460083008 267.07043457 266.58996582 266.00012207 265.189575195 268.069763184 268.529724121 268.569763184 268.340270996 268.079528809 267.899841309 267.739685059 267.559997559 267.470153809 267.510192871 267.569763184 267.510192871 267.260192871 266.850036621 266.210388184 265.269958496 264.100036621 267.39956665 268.019683838 268.250152588 268.120269775 267.839996338 267.5597229 267.339996338 267.170074463 267.120269775 267.189605713 267.250152588 267.170074463 266.9503479 266.639801025 266.189605713 265.39956665 264.229644775 268.200317383 268.420043945 268.360473633 268.059692383 267.719848633 267.549926758 267.549926758 267.58996582 267.610473633 267.66027832 267.719848633 267.66027832 267.42980957 267.049926758 266.549926758 265.889770508 264.990356445 268.059997559 268.529724121 268.569763184 268.329528809 268.040466309 267.819763184 267.670349121 267.529724121 267.479919434 267.519958496 267.540466309 267.479919434 267.309997559 266.979919434 266.319763184 265.229919434 263.930114746 267.299957275 267.939605713 268.170074463 268.049957275 267.769683838 267.530426025 267.370269775 267.250152588 267.210113525 267.269683838 267.320465088 267.240386963 267.009918213 266.670074463 266.160308838 265.320465088 264.170074463 268.07043457 268.399536133 268.479614258 268.240356445 267.889770508 267.670043945 267.700317383 267.799926758 267.849731445 267.860473633 267.830200195 267.719848633 267.50012207 267.149536133 266.620239258 265.830200195 264.82043457 268.000427246 268.510192871 268.569763184 268.319763184 268.000427246 267.760192871 267.590270996 267.479919434 267.460388184 267.500427246 267.519958496 267.470153809 267.380310059 267.119567871 266.399841309 265.170349121 263.760192871 267.189605713 267.849761963 268.099761963 267.96987915 267.689605713 267.500152588 267.39956665 267.349761963 267.339996338 267.410308838 267.46987915 267.370269775 267.080230713 266.660308838 266.089996338 265.250152588 264.099761963 267.969848633 268.399536133 268.57043457 268.389770508 268.01965332 267.790161133 267.82043457 267.950317383 268.009887695 267.979614258 267.91027832 267.780395508 267.580200195 267.25012207 266.67980957 265.809692383 264.700317383 267.899841309 268.439880371 268.519958496 268.279724121 267.970153809 267.720153809 267.529724121 267.439880371 267.449645996 267.510192871 267.510192871 267.460388184 267.409606934 267.180114746 266.420349121 265.090270996 263.649841309 267.019683838 267.750152588 268.049957275 267.939605713 267.660308838 267.479644775 267.420074463 267.410308838 267.429840088 267.519683838 267.599761963 267.490386963 267.14956665 266.64956665 266.019683838 265.179840088 264.030426025 267.899536133 268.380004883 268.620239258 268.490356445 268.130004883 267.880004883 267.889770508 268.009887695 268.07043457 268.030395508 267.939575195 267.799926758 267.610473633 267.26965332 266.700317383 265.790161133 264.610473633 267.819763184 268.359802246 268.449645996 268.250427246 267.960388184 267.710388184 267.519958496 267.449645996 267.500427246 267.559997559 267.489685059 267.369567871 267.319763184 267.119567871 266.359802246 265.019958496 263.600036621 266.859527588 267.660308838 268.049957275 267.960113525 267.670074463 267.46987915 267.420074463 267.39956665 267.410308838 267.530426025 267.639801025 267.5597229 267.2003479 266.660308838 265.990386963 265.120269775 263.920074463 267.780395508 268.280395508 268.559692383 268.50012207 268.189575195 267.939575195 267.91027832 268.009887695 268.080200195 268.059692383 267.950317383 267.790161133 267.559692383 267.25012207 266.689575195 265.76965332 264.530395508 267.769958496 268.269958496 268.369567871 268.199645996 267.949645996 267.720153809 267.529724121 267.479919434 267.550231934 267.569763184 267.409606934 267.210388184 267.140075684 266.979919434 266.290466309 265.000427246 263.609802246 266.769683838 267.6300354 268.080230713 268.000152588 267.689605713 267.460113525 267.370269775 267.3097229 267.320465088 267.439605713 267.589996338 267.549957275 267.229644775 266.679840088 265.96987915 265.0597229 263.820465088 267.610473633 268.080200195 268.399536133 268.420043945 268.189575195 267.960083008 267.899536133 267.969848633 268.07043457 268.099731445 267.990356445 267.76965332 267.50012207 267.219848633 266.700317383 265.790161133 264.460083008 267.739685059 268.189880371 268.279724121 268.149841309 267.909606934 267.659606934 267.460388184 267.409606934 267.489685059 267.489685059 267.279724121 267.050231934 266.989685059 266.869567871 266.269958496 265.079528809 263.720153809 266.8097229 267.670074463 268.080230713 267.979644775 267.639801025 267.420074463 267.320465088 267.259918213 267.240386963 267.349761963 267.509918213 267.509918213 267.21987915 266.7003479 265.990386963 265.04019165 263.769683838 267.420043945 267.860473633 268.189575195 268.26965332 268.130004883 267.91027832 267.809692383 267.860473633 268.009887695 268.110473633 268.009887695 267.740356445 267.469848633 267.210083008 266.75012207 265.83996582 264.439575195 267.699645996 268.100036621 268.220153809 268.100036621 267.840270996 267.529724121 267.300231934 267.239685059 267.329528809 267.369567871 267.210388184 267.029724121 267.000427246 266.920349121 266.380310059 265.269958496 263.960388184 266.920074463 267.71987915 268.019683838 267.859527588 267.5597229 267.389801025 267.339996338 267.280426025 267.250152588 267.339996338 267.460113525 267.460113525 267.21987915 266.750152588 266.04019165 265.0597229 263.780426025 267.290161133 267.700317383 267.979614258 268.08996582 268.009887695 267.82043457 267.700317383 267.75012207 267.92980957 268.07043457 267.979614258 267.710083008 267.439575195 267.210083008 266.799926758 265.91027832 264.490356445 267.649841309 268.050231934 268.199645996 268.069763184 267.750427246 267.390075684 267.140075684 267.100036621 267.220153809 267.300231934 267.269958496 267.199645996 267.210388184 267.119567871 266.600036621 265.569763184 264.300231934 267.030426025 267.71987915 267.8800354 267.670074463 267.460113525 267.429840088 267.4503479 267.389801025 267.359527588 267.39956665 267.479644775 267.429840088 267.21987915 266.8097229 266.120269775 265.099761963 263.79019165 267.229614258 267.580200195 267.82043457 267.920043945 267.889770508 267.75012207 267.649536133 267.670043945 267.83996582 267.979614258 267.920043945 267.66027832 267.420043945 267.200317383 266.799926758 265.92980957 264.50012207 267.569763184 268.010192871 268.180114746 268.019958496 267.649841309 267.279724121 267.069763184 267.069763184 267.189880371 267.290466309 267.319763184 267.359802246 267.420349121 267.340270996 266.840270996 265.890075684 264.619567871 267.0597229 267.6300354 267.679840088 267.46987915 267.3800354 267.490386963 267.580230713 267.54019165 267.479644775 267.500152588 267.490386963 267.39956665 267.21987915 266.889801025 266.240386963 265.14956665 263.729644775 267.17980957 267.50012207 267.670043945 267.75012207 267.75012207 267.689575195 267.630004883 267.649536133 267.76965332 267.870239258 267.82043457 267.620239258 267.420043945 267.189575195 266.759887695 265.880004883 264.420043945 267.479919434 267.960388184 268.119567871 267.909606934 267.510192871 267.199645996 267.069763184 267.090270996 267.149841309 267.180114746 267.199645996 267.300231934 267.449645996 267.449645996 267.040466309 266.130310059 264.819763184 266.990386963 267.509918213 267.530426025 267.330230713 267.3097229 267.490386963 267.620269775 267.620269775 267.589996338 267.580230713 267.500152588 267.339996338 267.189605713 266.96987915 266.389801025 265.259918213 263.7003479 267.149536133 267.450317383 267.57043457 267.599731445 267.610473633 267.639770508 267.649536133 267.649536133 267.689575195 267.729614258 267.710083008 267.58996582 267.41027832 267.170043945 266.700317383 265.799926758 264.299926758 267.470153809 267.939880371 268.029724121 267.739685059 267.369567871 267.140075684 267.090270996 267.100036621 267.079528809 267.010192871 266.970153809 267.090270996 267.350036621 267.489685059 267.180114746 266.290466309 264.920349121 266.889801025 267.429840088 267.46987915 267.280426025 267.250152588 267.429840088 267.5597229 267.620269775 267.660308838 267.689605713 267.54019165 267.299957275 267.170074463 267.0597229 266.570465088 265.479644775 263.820465088 267.210083008 267.540161133 267.58996582 267.509887695 267.50012207 267.580200195 267.66027832 267.649536133 267.610473633 267.610473633 267.620239258 267.559692383 267.420043945 267.170043945 266.700317383 265.790161133 264.259887695 267.699645996 268.109802246 268.019958496 267.619567871 267.250427246 267.100036621 267.090270996 267.090270996 267.059997559 266.979919434 266.920349121 267.019958496 267.329528809 267.569763184 267.319763184 266.439880371 265.010192871 266.830230713 267.410308838 267.500152588 267.320465088 267.240386963 267.359527588 267.500152588 267.620269775 267.740386963 267.799957275 267.6300354 267.339996338 267.189605713 267.170074463 266.8097229 265.780426025 264.139801025 267.399536133 267.75012207 267.740356445 267.540161133 267.450317383 267.549926758 267.66027832 267.649536133 267.559692383 267.540161133 267.580200195 267.580200195 267.469848633 267.229614258 266.780395508 265.889770508 264.349731445 268.189880371 268.489685059 268.149841309 267.579528809 267.199645996 267.090270996 267.079528809 267.100036621 267.159606934 267.159606934 267.119567871 267.199645996 267.479919434 267.729919434 267.500427246 266.600036621 265.180114746 266.79019165 267.39956665 267.5597229 267.39956665 267.29019165 267.349761963 267.490386963 267.609527588 267.750152588 267.839996338 267.71987915 267.4503479 267.3097229 267.299957275 267.030426025 266.1300354 264.549957275 267.620239258 268.030395508 267.960083008 267.670043945 267.479614258 267.540161133 267.639770508 267.599731445 267.50012207 267.50012207 267.580200195 267.630004883 267.549926758 267.33996582 266.920043945 266.040161133 264.51965332 268.760192871 268.930114746 268.340270996 267.600036621 267.189880371 267.100036621 267.090270996 267.149841309 267.290466309 267.409606934 267.409606934 267.420349121 267.640075684 267.869567871 267.649841309 266.790466309 265.420349121 266.7003479 267.3097229 267.54019165 267.429840088 267.3097229 267.370269775 267.479644775 267.54019165 267.599761963 267.689605713 267.679840088 267.549957275 267.479644775 267.479644775 267.229644775 266.410308838 264.89956665 267.790161133 268.25012207 268.189575195 267.809692383 267.530395508 267.50012207 267.57043457 267.51965332 267.420043945 267.439575195 267.57043457 267.66027832 267.639770508 267.469848633 267.080200195 266.210083008 264.649536133 269.079528809 269.140075684 268.420349121 267.619567871 267.210388184 267.140075684 267.140075684 267.210388184 267.399841309 267.540466309 267.479919434 267.439880371 267.619567871 267.890075684 267.760192871 266.989685059 265.699645996 266.46987915 267.109527588 267.429840088 267.389801025 267.29019165 267.349761963 267.429840088 267.370269775 267.29019165 267.339996338 267.46987915 267.5597229 267.609527588 267.639801025 267.410308838 266.639801025 265.170074463 267.91027832 268.420043945 268.380004883 267.960083008 267.559692383 267.460083008 267.490356445 267.460083008 267.370239258 267.370239258 267.490356445 267.58996582 267.620239258 267.559692383 267.219848633 266.330200195 264.719848633 268.939880371 269.019958496 268.350036621 267.609802246 267.260192871 267.210388184 267.250427246 267.340270996 267.479919434 267.529724121 267.390075684 267.300231934 267.489685059 267.809997559 267.800231934 267.210388184 265.989685059 266.099761963 266.859527588 267.320465088 267.339996338 267.250152588 267.3097229 267.370269775 267.21987915 266.979644775 266.939605713 267.1300354 267.389801025 267.599761963 267.7003479 267.54019165 266.849761963 265.420074463 268.009887695 268.540161133 268.540161133 268.099731445 267.630004883 267.439575195 267.469848633 267.479614258 267.399536133 267.349731445 267.360473633 267.399536133 267.460083008 267.509887695 267.26965332 266.42980957 264.809692383 268.519958496 268.680114746 268.229919434 267.649841309 267.350036621 267.309997559 267.380310059 267.489685059 267.579528809 267.519958496 267.300231934 267.199645996 267.380310059 267.699645996 267.800231934 267.399841309 266.319763184 265.670074463 266.6300354 267.250152588 267.349761963 267.269683838 267.320465088 267.389801025 267.210113525 266.859527588 266.689605713 266.830230713 267.120269775 267.39956665 267.609527588 267.599761963 267.049957275 265.710113525 268.099731445 268.610473633 268.620239258 268.189575195 267.670043945 267.450317383 267.490356445 267.549926758 267.50012207 267.360473633 267.229614258 267.16027832 267.200317383 267.330200195 267.240356445 266.50012207 264.950317383 268.109802246 268.430114746 268.220153809 267.790466309 267.489685059 267.390075684 267.449645996 267.579528809 267.619567871 267.489685059 267.269958496 267.180114746 267.329528809 267.540466309 267.659606934 267.470153809 266.609802246 265.320465088 266.46987915 267.21987915 267.389801025 267.349761963 267.429840088 267.509918213 267.330230713 266.9503479 266.689605713 266.689605713 266.859527588 267.109527588 267.420074463 267.589996338 267.240386963 266.009918213 268.149536133 268.559692383 268.549926758 268.149536133 267.66027832 267.42980957 267.490356445 267.58996582 267.549926758 267.389770508 267.16027832 266.979614258 266.960083008 267.120239258 267.130004883 266.549926758 265.120239258 267.909606934 268.359802246 268.340270996 268.029724121 267.670349121 267.470153809 267.479919434 267.579528809 267.569763184 267.390075684 267.220153809 267.199645996 267.290466309 267.340270996 267.390075684 267.359802246 266.779724121 265.14956665 266.349761963 267.1300354 267.389801025 267.410308838 267.509918213 267.589996338 267.4503479 267.1300354 266.8800354 266.780426025 266.79019165 266.929840088 267.240386963 267.549957275 267.370269775 266.299957275 268.130004883 268.399536133 268.360473633 268.01965332 267.620239258 267.41027832 267.42980957 267.51965332 267.51965332 267.399536133 267.170043945 266.92980957 266.83996582 266.960083008 267.030395508 266.580200195 265.299926758 267.800231934 268.340270996 268.449645996 268.239685059 267.869567871 267.600036621 267.550231934 267.600036621 267.510192871 267.300231934 267.180114746 267.239685059 267.290466309 267.210388184 267.149841309 267.189880371 266.840270996 265.1300354 266.210113525 266.960113525 267.29019165 267.410308838 267.500152588 267.54019165 267.429840088 267.269683838 267.139801025 267.0597229 266.9503479 266.939605713 267.14956665 267.490386963 267.4503479 266.549957275 268.08996582 268.26965332 268.200317383 267.920043945 267.610473633 267.42980957 267.389770508 267.420043945 267.42980957 267.380004883 267.210083008 266.969848633 266.830200195 266.889770508 266.969848633 266.620239258 265.479614258 267.630310059 268.189880371 268.430114746 268.350036621 268.059997559 267.779724121 267.689880371 267.680114746 267.540466309 267.329528809 267.260192871 267.380310059 267.430114746 267.260192871 267.090270996 267.119567871 266.859802246 265.1300354 266.049957275 266.769683838 267.170074463 267.339996338 267.389801025 267.389801025 267.349761963 267.330230713 267.39956665 267.39956665 267.240386963 267.080230713 267.160308838 267.420074463 267.460113525 266.759918213 268.08996582 268.219848633 268.139770508 267.920043945 267.67980957 267.50012207 267.389770508 267.330200195 267.330200195 267.32043457 267.219848633 267.01965332 266.880004883 266.91027832 266.969848633 266.689575195 265.689575195 267.439880371 268.000427246 268.329528809 268.380310059 268.170349121 267.899841309 267.769958496 267.739685059 267.630310059 267.470153809 267.439880371 267.609802246 267.670349121 267.460388184 267.210388184 267.149841309 266.909606934 265.049957275 265.910308838 266.64956665 267.120269775 267.29019165 267.3097229 267.3097229 267.349761963 267.460113525 267.599761963 267.620269775 267.439605713 267.210113525 267.170074463 267.349761963 267.410308838 266.920074463 268.110473633 268.259887695 268.17980957 267.990356445 267.759887695 267.549926758 267.370239258 267.25012207 267.219848633 267.210083008 267.139770508 267.00012207 266.92980957 266.990356445 267.059692383 266.82043457 265.920043945 267.409606934 267.949645996 268.329528809 268.439880371 268.239685059 267.930114746 267.720153809 267.680114746 267.640075684 267.579528809 267.609802246 267.779724121 267.850036621 267.649841309 267.380310059 267.260192871 266.970153809 264.9503479 265.859527588 266.710113525 267.2003479 267.339996338 267.349761963 267.410308838 267.54019165 267.660308838 267.729644775 267.660308838 267.460113525 267.240386963 267.179840088 267.29019165 267.370269775 267.019683838 268.130004883 268.309692383 268.229614258 268.059692383 267.83996582 267.580200195 267.330200195 267.170043945 267.08996582 267.059692383 267.00012207 266.960083008 266.990356445 267.130004883 267.200317383 266.990356445 266.17980957 267.630310059 268.140075684 268.489685059 268.579528809 268.350036621 267.949645996 267.670349121 267.569763184 267.569763184 267.579528809 267.659606934 267.829528809 267.909606934 267.760192871 267.519958496 267.369567871 267.050231934 264.960113525 266.000152588 266.939605713 267.429840088 267.530426025 267.549957275 267.689605713 267.849761963 267.870269775 267.750152588 267.54019165 267.330230713 267.2003479 267.21987915 267.320465088 267.3800354 267.1300354 268.17980957 268.360473633 268.330200195 268.200317383 267.979614258 267.639770508 267.32043457 267.110473633 267.01965332 266.969848633 266.939575195 266.969848633 267.110473633 267.290161133 267.370239258 267.170043945 266.42980957 267.989685059 268.430114746 268.720153809 268.769958496 268.510192871 268.079528809 267.710388184 267.540466309 267.510192871 267.540466309 267.640075684 267.819763184 267.930114746 267.869567871 267.680114746 267.489685059 267.130310059 265.14956665 266.299957275 267.269683838 267.740386963 267.820465088 267.849761963 268.000152588 268.089996338 267.960113525 267.660308838 267.339996338 267.160308838 267.170074463 267.3097229 267.46987915 267.519683838 267.29019165 268.280395508 268.509887695 268.530395508 268.450317383 268.210083008 267.809692383 267.399536133 267.130004883 267.030395508 266.990356445 266.990356445 267.08996582 267.25012207 267.41027832 267.469848633 267.32043457 266.670043945 268.290466309 268.670349121 268.880310059 268.909606934 268.670349121 268.260192871 267.850036621 267.579528809 267.460388184 267.460388184 267.579528809 267.790466309 267.989685059 268.010192871 267.869567871 267.659606934 267.229919434 265.460113525 266.639801025 267.599761963 268.04019165 268.109527588 268.1300354 268.179840088 268.14956665 267.889801025 267.530426025 267.2003479 267.0597229 267.170074463 267.439605713 267.679840088 267.740386963 267.500152588 268.469848633 268.76965332 268.849731445 268.76965332 268.50012207 268.009887695 267.51965332 267.200317383 267.08996582 267.099731445 267.16027832 267.26965332 267.380004883 267.450317383 267.469848633 267.370239258 266.849731445 268.519958496 268.829528809 269.010192871 269.000427246 268.769958496 268.369567871 267.920349121 267.559997559 267.350036621 267.329528809 267.470153809 267.739685059 268.000427246 268.109802246 268.029724121 267.809997559 267.319763184 265.71987915 266.889801025 267.799957275 268.240386963 268.3097229 268.259918213 268.189605713 268.030426025 267.759918213 267.460113525 267.210113525 267.099761963 267.229644775 267.570465088 267.89956665 267.990386963 267.740386963 268.689575195 269.049926758 269.139770508 269.030395508 268.689575195 268.149536133 267.630004883 267.299926758 267.170043945 267.210083008 267.33996582 267.479614258 267.509887695 267.460083008 267.41027832 267.349731445 266.950317383 268.739685059 269.029724121 269.130310059 269.040466309 268.760192871 268.350036621 267.880310059 267.460388184 267.229919434 267.220153809 267.390075684 267.670349121 267.930114746 268.090270996 268.090270996 267.909606934 267.420349121 265.910308838 267.070465088 267.929840088 268.339996338 268.359527588 268.229644775 268.049957275 267.859527588 267.689605713 267.549957275 267.410308838 267.3097229 267.39956665 267.71987915 268.080230713 268.210113525 267.939605713 268.870239258 269.25012207 269.299926758 269.110473633 268.710083008 268.189575195 267.710083008 267.41027832 267.26965332 267.32043457 267.490356445 267.66027832 267.649536133 267.509887695 267.380004883 267.330200195 266.969848633 268.939880371 269.199645996 269.199645996 268.989685059 268.640075684 268.239685059 267.809997559 267.420349121 267.210388184 267.239685059 267.420349121 267.659606934 267.859802246 268.010192871 268.069763184 267.960388184 267.510192871 266.139801025 267.280426025 268.070465088 268.3800354 268.320465088 268.089996338 267.8800354 267.750152588 267.710113525 267.740386963 267.710113525 267.609527588 267.620269775 267.8800354 268.229644775 268.349761963 268.070465088 268.990356445 269.32043457 269.32043457 269.07043457 268.630004883 268.170043945 267.809692383 267.57043457 267.42980957 267.460083008 267.630004883 267.809692383 267.799926758 267.620239258 267.450317383 267.330200195 266.950317383 269.079528809 269.290466309 269.140075684 268.769958496 268.390075684 268.069763184 267.779724121 267.489685059 267.340270996 267.420349121 267.609802246 267.760192871 267.880310059 267.970153809 268.069763184 268.019958496 267.609802246 266.519683838 267.620269775 268.269683838 268.429840088 268.21987915 267.920074463 267.729644775 267.679840088 267.769683838 267.889801025 267.939605713 267.859527588 267.839996338 268.030426025 268.349761963 268.460113525 268.139801025 269.040161133 269.330200195 269.309692383 269.030395508 268.599731445 268.189575195 267.91027832 267.740356445 267.630004883 267.620239258 267.76965332 267.920043945 267.91027832 267.75012207 267.580200195 267.380004883 266.91027832 269.159606934 269.290466309 268.970153809 268.449645996 268.050231934 267.869567871 267.750427246 267.569763184 267.489685059 267.600036621 267.819763184 267.939880371 267.960388184 268.000427246 268.100036621 268.100036621 267.710388184 267.049957275 268.030426025 268.500152588 268.460113525 268.1300354 267.79019165 267.6300354 267.639801025 267.750152588 267.889801025 267.979644775 267.96987915 267.979644775 268.139801025 268.439605713 268.549957275 268.2003479 269.059692383 269.349731445 269.370239258 269.099731445 268.639770508 268.219848633 267.990356445 267.860473633 267.780395508 267.780395508 267.870239258 267.969848633 267.960083008 267.860473633 267.710083008 267.42980957 266.849731445 269.239685059 269.309997559 268.859802246 268.210388184 267.790466309 267.689880371 267.670349121 267.579528809 267.540466309 267.699645996 267.970153809 268.119567871 268.100036621 268.090270996 268.149841309 268.159606934 267.790466309 267.599761963 268.429840088 268.689605713 268.479644775 268.070465088 267.710113525 267.570465088 267.589996338 267.660308838 267.769683838 267.889801025 267.96987915 268.030426025 268.229644775 268.530426025 268.660308838 268.29019165 269.080200195 269.389770508 269.439575195 269.16027832 268.67980957 268.240356445 267.990356445 267.880004883 267.83996582 267.870239258 267.92980957 267.979614258 267.990356445 267.939575195 267.799926758 267.439575195 266.740356445 269.359802246 269.390075684 268.880310059 268.170349121 267.710388184 267.609802246 267.619567871 267.550231934 267.550231934 267.760192871 268.090270996 268.279724121 268.260192871 268.210388184 268.220153809 268.189880371 267.800231934 268.080230713 268.769683838 268.849761963 268.509918213 268.030426025 267.679840088 267.530426025 267.530426025 267.570465088 267.660308838 267.799957275 267.9503479 268.099761963 268.349761963 268.670074463 268.799957275 268.420074463 269.08996582 269.399536133 269.41027832 269.08996582 268.610473633 268.210083008 267.979614258 267.899536133 267.860473633 267.889770508 267.960083008 268.009887695 268.059692383 268.059692383 267.899536133 267.420043945 266.599731445 269.359802246 269.390075684 268.909606934 268.250427246 267.800231934 267.680114746 267.659606934 267.600036621 267.609802246 267.840270996 268.180114746 268.399841309 268.430114746 268.380310059 268.340270996 268.210388184 267.760192871 268.46987915 269.0597229 269.019683838 268.589996338 268.049957275 267.670074463 267.519683838 267.519683838 267.549957275 267.64956665 267.820465088 268.019683838 268.21987915 268.490386963 268.820465088 268.920074463 268.519683838 269.099731445 269.33996582 269.210083008 268.830200195 268.42980957 268.16027832 268.030395508 267.960083008 267.91027832 267.91027832 267.969848633 268.059692383 268.16027832 268.200317383 267.990356445 267.399536133 266.460083008 269.210388184 269.229919434 268.850036621 268.340270996 267.989685059 267.869567871 267.809997559 267.720153809 267.699645996 267.869567871 268.170349121 268.409606934 268.529724121 268.550231934 268.449645996 268.199645996 267.630310059 268.79019165 269.330230713 269.210113525 268.7003479 268.120269775 267.710113525 267.5597229 267.54019165 267.609527588 267.729644775 267.929840088 268.160308838 268.3800354 268.639801025 268.920074463 268.979644775 268.580230713 269.120239258 269.240356445 268.990356445 268.599731445 268.299926758 268.170043945 268.130004883 268.07043457 267.979614258 267.92980957 267.969848633 268.08996582 268.240356445 268.299926758 268.040161133 267.370239258 266.380004883 269.040466309 269.050231934 268.769958496 268.439880371 268.239685059 268.140075684 268.019958496 267.840270996 267.729919434 267.790466309 268.000427246 268.269958496 268.519958496 268.640075684 268.540466309 268.140075684 267.449645996 269.070465088 269.5597229 269.359527588 268.780426025 268.189605713 267.820465088 267.660308838 267.6300354 267.670074463 267.8097229 268.049957275 268.3097229 268.530426025 268.740386963 268.939605713 268.9503479 268.570465088 269.16027832 269.219848633 268.92980957 268.58996582 268.389770508 268.309692383 268.219848633 268.099731445 267.969848633 267.920043945 267.939575195 268.059692383 268.240356445 268.290161133 267.990356445 267.299926758 266.32043457 269.050231934 269.050231934 268.809997559 268.609802246 268.529724121 268.430114746 268.189880371 267.880310059 267.649841309 267.619567871 267.760192871 268.069763184 268.420349121 268.640075684 268.540466309 268.040466309 267.229919434 269.359527588 269.769683838 269.439605713 268.8097229 268.280426025 267.990386963 267.839996338 267.740386963 267.7003479 267.830230713 268.089996338 268.3800354 268.599761963 268.769683838 268.889801025 268.859527588 268.519683838 269.210083008 269.25012207 269.01965332 268.790161133 268.639770508 268.490356445 268.240356445 268.00012207 267.880004883 267.849731445 267.889770508 268.00012207 268.149536133 268.17980957 267.880004883 267.200317383 266.25012207 269.239685059 269.210388184 268.960388184 268.800231934 268.739685059 268.579528809 268.220153809 267.800231934 267.529724121 267.470153809 267.600036621 267.920349121 268.309997559 268.590270996 268.470153809 267.880310059 267.000427246 269.660308838 269.960113525 269.500152588 268.830230713 268.349761963 268.139801025 268.009918213 267.839996338 267.729644775 267.8097229 268.070465088 268.359527588 268.589996338 268.740386963 268.830230713 268.780426025 268.479644775 269.229614258 269.280395508 269.120239258 268.969848633 268.83996582 268.580200195 268.200317383 267.889770508 267.780395508 267.799926758 267.860473633 267.939575195 268.059692383 268.040161133 267.729614258 267.080200195 266.170043945 269.380310059 269.329528809 269.029724121 268.850036621 268.729919434 268.489685059 268.050231934 267.630310059 267.409606934 267.399841309 267.540466309 267.809997559 268.189880371 268.460388184 268.340270996 267.729919434 266.790466309 269.920074463 270.120269775 269.570465088 268.849761963 268.410308838 268.21987915 268.070465088 267.889801025 267.769683838 267.849761963 268.0597229 268.3097229 268.519683838 268.679840088 268.780426025 268.71987915 268.429840088 269.280395508 269.299926758 269.099731445 268.950317383 268.82043457 268.51965332 268.139770508 267.860473633 267.809692383 267.83996582 267.880004883 267.950317383 268.01965332 267.969848633 267.630004883 266.979614258 266.08996582 269.319763184 269.250427246 268.939880371 268.689880371 268.519958496 268.210388184 267.790466309 267.449645996 267.340270996 267.380310059 267.500427246 267.699645996 268.019958496 268.290466309 268.199645996 267.600036621 266.630310059 270.049957275 270.189605713 269.620269775 268.920074463 268.46987915 268.21987915 268.04019165 267.889801025 267.870269775 267.979644775 268.139801025 268.280426025 268.429840088 268.599761963 268.71987915 268.670074463 268.370269775 269.420043945 269.33996582 269.01965332 268.780395508 268.58996582 268.33996582 268.07043457 267.920043945 267.91027832 267.920043945 267.920043945 267.969848633 268.040161133 267.950317383 267.559692383 266.899536133 266.01965332 269.130310059 269.059997559 268.750427246 268.479919434 268.239685059 267.909606934 267.550231934 267.350036621 267.350036621 267.409606934 267.470153809 267.590270996 267.859802246 268.140075684 268.100036621 267.540466309 266.519958496 269.979644775 270.089996338 269.580230713 268.979644775 268.519683838 268.2003479 267.960113525 267.889801025 268.000152588 268.14956665 268.229644775 268.240386963 268.320465088 268.500152588 268.64956665 268.589996338 268.269683838 269.599731445 269.42980957 268.979614258 268.599731445 268.32043457 268.110473633 267.960083008 267.939575195 267.939575195 267.91027832 267.889770508 267.960083008 268.030395508 267.899536133 267.469848633 266.799926758 265.939575195 268.979919434 268.909606934 268.630310059 268.329528809 268.050231934 267.710388184 267.449645996 267.380310059 267.430114746 267.479919434 267.470153809 267.540466309 267.769958496 268.040466309 268.050231934 267.510192871 266.470153809 269.750152588 269.830230713 269.4503479 268.990386963 268.580230713 268.2003479 267.920074463 267.89956665 268.080230713 268.250152588 268.229644775 268.160308838 268.210113525 268.389801025 268.519683838 268.4503479 268.109527588 269.649536133 269.469848633 268.979614258 268.490356445 268.110473633 267.870239258 267.780395508 267.82043457 267.83996582 267.790161133 267.780395508 267.880004883 267.950317383 267.76965332 267.32043457 266.66027832 265.830200195 268.970153809 268.869567871 268.590270996 268.269958496 267.939880371 267.640075684 267.460388184 267.449645996 267.510192871 267.540466309 267.519958496 267.579528809 267.769958496 267.979919434 267.970153809 267.470153809 266.439880371 269.460113525 269.549957275 269.280426025 268.9503479 268.599761963 268.210113525 267.910308838 267.89956665 268.080230713 268.189605713 268.120269775 268.019683838 268.089996338 268.259918213 268.359527588 268.250152588 267.889801025 269.460083008 269.32043457 268.889770508 268.389770508 267.950317383 267.66027832 267.599731445 267.670043945 267.710083008 267.67980957 267.689575195 267.780395508 267.799926758 267.580200195 267.099731445 266.460083008 265.66027832 268.989685059 268.869567871 268.559997559 268.220153809 267.890075684 267.640075684 267.529724121 267.529724121 267.559997559 267.559997559 267.579528809 267.659606934 267.790466309 267.899841309 267.840270996 267.380310059 266.420349121 269.240386963 269.370269775 269.160308838 268.889801025 268.5597229 268.179840088 267.920074463 267.89956665 268.009918213 268.04019165 267.929840088 267.8800354 268.000152588 268.14956665 268.160308838 267.990386963 267.589996338 269.059692383 268.979614258 268.649536133 268.210083008 267.76965332 267.51965332 267.490356445 267.610473633 267.689575195 267.689575195 267.689575195 267.700317383 267.610473633 267.32043457 266.830200195 266.200317383 265.450317383 268.970153809 268.819763184 268.510192871 268.180114746 267.899841309 267.710388184 267.630310059 267.619567871 267.609802246 267.600036621 267.649841309 267.739685059 267.779724121 267.760192871 267.630310059 267.229919434 266.390075684 269.080230713 269.280426025 269.120269775 268.830230713 268.490386963 268.1300354 267.910308838 267.889801025 267.9503479 267.889801025 267.769683838 267.769683838 267.89956665 267.990386963 267.8800354 267.639801025 267.210113525 268.580200195 268.580200195 268.360473633 267.990356445 267.630004883 267.450317383 267.479614258 267.620239258 267.719848633 267.740356445 267.710083008 267.630004883 267.420043945 267.049926758 266.540161133 265.920043945 265.189575195 268.890075684 268.729919434 268.420349121 268.140075684 267.930114746 267.800231934 267.750427246 267.720153809 267.689880371 267.680114746 267.750427246 267.809997559 267.760192871 267.600036621 267.380310059 267.010192871 266.300231934 268.920074463 269.210113525 269.099761963 268.79019165 268.429840088 268.099761963 267.920074463 267.910308838 267.920074463 267.799957275 267.660308838 267.670074463 267.769683838 267.729644775 267.490386963 267.170074463 266.729644775 268.149536133 268.259887695 268.110473633 267.799926758 267.530395508 267.439575195 267.51965332 267.639770508 267.710083008 267.719848633 267.67980957 267.530395508 267.240356445 266.82043457 266.259887695 265.599731445 264.870239258 268.790466309 268.630310059 268.329528809 268.100036621 267.939880371 267.850036621 267.809997559 267.809997559 267.800231934 267.800231934 267.840270996 267.840270996 267.710388184 267.430114746 267.090270996 266.699645996 266.040466309 268.710113525 269.04019165 268.990386963 268.710113525 268.3800354 268.109527588 267.979644775 267.960113525 267.920074463 267.759918213 267.609527588 267.580230713 267.580230713 267.3800354 267.009918213 266.599761963 266.139801025 267.830200195 268.009887695 267.899536133 267.639770508 267.469848633 267.509887695 267.630004883 267.689575195 267.670043945 267.66027832 267.599731445 267.42980957 267.099731445 266.630004883 266.009887695 265.280395508 264.51965332 268.670349121 268.510192871 268.239685059 268.040466309 267.909606934 267.819763184 267.809997559 267.859802246 267.899841309 267.890075684 267.859802246 267.790466309 267.590270996 267.220153809 266.760192871 266.260192871 265.559997559 268.39956665 268.750152588 268.740386963 268.54019165 268.3097229 268.1300354 268.049957275 268.019683838 267.960113525 267.799957275 267.6300354 267.519683838 267.370269775 267.000152588 266.46987915 265.9503479 265.429840088 267.58996582 267.759887695 267.649536133 267.479614258 267.460083008 267.639770508 267.790161133 267.799926758 267.719848633 267.66027832 267.580200195 267.380004883 267.009887695 266.479614258 265.780395508 264.979614258 264.189575195 268.519958496 268.380310059 268.170349121 268.000427246 267.880310059 267.809997559 267.829528809 267.920349121 267.979919434 267.930114746 267.809997559 267.670349121 267.430114746 266.989685059 266.399841309 265.729919434 264.949645996 268.019683838 268.370269775 268.429840088 268.320465088 268.2003479 268.1300354 268.109527588 268.109527588 268.04019165 267.89956665 267.710113525 267.500152588 267.160308838 266.599761963 265.89956665 265.21987915 264.609527588 267.420043945 267.51965332 267.399536133 267.32043457 267.460083008 267.759887695 267.960083008 267.969848633 267.870239258 267.76965332 267.620239258 267.33996582 266.91027832 266.330200195 265.57043457 264.729614258 263.920043945 268.329528809 268.290466309 268.149841309 268.010192871 267.899841309 267.840270996 267.880310059 268.000427246 268.040466309 267.920349121 267.739685059 267.559997559 267.279724121 266.790466309 266.069763184 265.260192871 264.380310059 267.6300354 268.000152588 268.14956665 268.139801025 268.1300354 268.139801025 268.179840088 268.2003479 268.160308838 268.04019165 267.820465088 267.479644775 266.960113525 266.2003479 265.299957275 264.439605713 263.710113525 267.360473633 267.380004883 267.240356445 267.229614258 267.469848633 267.799926758 268.01965332 268.040161133 267.990356445 267.880004883 267.670043945 267.299926758 266.799926758 266.16027832 265.370239258 264.50012207 263.700317383 268.180114746 268.239685059 268.149841309 268.019958496 267.890075684 267.850036621 267.920349121 268.029724121 268.050231934 267.899841309 267.670349121 267.470153809 267.159606934 266.600036621 265.800231934 264.890075684 263.949645996 267.250152588 267.7003479 267.96987915 268.049957275 268.089996338 268.160308838 268.21987915 268.259918213 268.250152588 268.160308838 267.920074463 267.479644775 266.799957275 265.859527588 264.769683838 263.729644775 262.889801025 267.399536133 267.380004883 267.229614258 267.25012207 267.50012207 267.790161133 267.939575195 267.990356445 268.009887695 267.950317383 267.710083008 267.280395508 266.729614258 266.040161133 265.189575195 264.299926758 263.50012207 268.109802246 268.229919434 268.140075684 267.949645996 267.800231934 267.769958496 267.859802246 267.979919434 267.979919434 267.819763184 267.600036621 267.359802246 267.010192871 266.380310059 265.519958496 264.569763184 263.619567871 266.910308838 267.439605713 267.8097229 267.979644775 268.049957275 268.139801025 268.210113525 268.240386963 268.269683838 268.240386963 268.019683838 267.519683838 266.759918213 265.710113525 264.500152588 263.349761963 262.429840088 267.450317383 267.469848633 267.330200195 267.33996582 267.540161133 267.729614258 267.82043457 267.899536133 268.01965332 268.01965332 267.780395508 267.33996582 266.780395508 266.059692383 265.149536133 264.170043945 263.290161133 268.059997559 268.180114746 268.050231934 267.819763184 267.659606934 267.659606934 267.769958496 267.890075684 267.899841309 267.760192871 267.529724121 267.250427246 266.819763184 266.140075684 265.229919434 264.260192871 263.309997559 266.620269775 267.170074463 267.609527588 267.839996338 267.96987915 268.070465088 268.1300354 268.179840088 268.240386963 268.280426025 268.1300354 267.660308838 266.870269775 265.799957275 264.570465088 263.39956665 262.460113525 267.399536133 267.479614258 267.360473633 267.370239258 267.549926758 267.700317383 267.76965332 267.899536133 268.080200195 268.130004883 267.899536133 267.460083008 266.91027832 266.17980957 265.200317383 264.110473633 263.099731445 268.010192871 268.079528809 267.920349121 267.680114746 267.559997559 267.600036621 267.720153809 267.840270996 267.859802246 267.739685059 267.489685059 267.159606934 266.649841309 265.920349121 264.979919434 263.970153809 262.979919434 266.3800354 266.910308838 267.359527588 267.660308838 267.859527588 267.990386963 268.0597229 268.099761963 268.189605713 268.299957275 268.21987915 267.79019165 267.019683838 266.000152588 264.859527588 263.79019165 262.8800354 267.189575195 267.349731445 267.259887695 267.309692383 267.51965332 267.670043945 267.759887695 267.92980957 268.17980957 268.240356445 268.00012207 267.559692383 267.01965332 266.280395508 265.26965332 264.120239258 263.009887695 267.949645996 267.989685059 267.809997559 267.609802246 267.550231934 267.619567871 267.739685059 267.840270996 267.859802246 267.739685059 267.470153809 267.090270996 266.550231934 265.809997559 264.840270996 263.750427246 262.689880371 266.229644775 266.71987915 267.14956665 267.490386963 267.769683838 267.960113525 268.04019165 268.070465088 268.179840088 268.299957275 268.240386963 267.820465088 267.070465088 266.099761963 265.099761963 264.179840088 263.359527588 266.849731445 267.08996582 267.07043457 267.189575195 267.460083008 267.639770508 267.75012207 267.960083008 268.229614258 268.309692383 268.030395508 267.57043457 267.030395508 266.309692383 265.32043457 264.149536133 262.979614258 267.930114746 267.960388184 267.769958496 267.590270996 267.569763184 267.670349121 267.769958496 267.840270996 267.819763184 267.689880371 267.420349121 267.019958496 266.500427246 265.750427246 264.769958496 263.630310059 262.470153809 266.189605713 266.64956665 267.0597229 267.410308838 267.740386963 267.960113525 268.0597229 268.089996338 268.189605713 268.29019165 268.179840088 267.729644775 266.96987915 266.049957275 265.1300354 264.349761963 263.64956665 266.51965332 266.809692383 266.889770508 267.120239258 267.439575195 267.620239258 267.719848633 267.960083008 268.26965332 268.349731445 268.059692383 267.559692383 266.990356445 266.280395508 265.32043457 264.139770508 262.950317383 268.000427246 268.019958496 267.800231934 267.600036621 267.590270996 267.689880371 267.779724121 267.819763184 267.790466309 267.630310059 267.340270996 266.939880371 266.420349121 265.699645996 264.699645996 263.529724121 262.300231934 266.210113525 266.689605713 267.070465088 267.39956665 267.710113525 267.9503479 268.080230713 268.1300354 268.21987915 268.269683838 268.089996338 267.589996338 266.8097229 265.910308838 265.030426025 264.299957275 263.679840088 266.330200195 266.620239258 266.76965332 267.08996582 267.450317383 267.599731445 267.689575195 267.960083008 268.330200195 268.42980957 268.120239258 267.580200195 267.00012207 266.280395508 265.299926758 264.110473633 262.849731445 268.119567871 268.109802246 267.850036621 267.619567871 267.590270996 267.680114746 267.779724121 267.809997559 267.769958496 267.600036621 267.290466309 266.869567871 266.319763184 265.600036621 264.630310059 263.439880371 262.149841309 266.269683838 266.750152588 267.089996338 267.359527588 267.639801025 267.889801025 268.049957275 268.139801025 268.210113525 268.2003479 267.979644775 267.460113525 266.7003479 265.799957275 264.920074463 264.170074463 263.549957275 266.25012207 266.490356445 266.700317383 267.080200195 267.42980957 267.559692383 267.649536133 267.969848633 268.380004883 268.479614258 268.139770508 267.599731445 267.00012207 266.280395508 265.280395508 264.040161133 262.700317383 268.189880371 268.149841309 267.859802246 267.619567871 267.559997559 267.630310059 267.729919434 267.790466309 267.779724121 267.640075684 267.309997559 266.850036621 266.269958496 265.540466309 264.579528809 263.399841309 262.019958496 266.280426025 266.780426025 267.0597229 267.269683838 267.530426025 267.799957275 268.000152588 268.089996338 268.1300354 268.070465088 267.830230713 267.330230713 266.599761963 265.740386963 264.849761963 264.0597229 263.389801025 266.189575195 266.389770508 266.649536133 267.059692383 267.380004883 267.469848633 267.58996582 267.960083008 268.380004883 268.469848633 268.120239258 267.549926758 266.960083008 266.240356445 265.240356445 263.969848633 262.57043457 268.170349121 268.109802246 267.819763184 267.579528809 267.500427246 267.529724121 267.619567871 267.729919434 267.779724121 267.689880371 267.390075684 266.890075684 266.260192871 265.519958496 264.609802246 263.439880371 262.010192871 266.21987915 266.71987915 266.960113525 267.1300354 267.410308838 267.740386963 267.96987915 268.04019165 268.009918213 267.920074463 267.670074463 267.210113525 266.519683838 265.679840088 264.8097229 263.979644775 263.210113525 266.059692383 266.290161133 266.620239258 267.040161133 267.32043457 267.399536133 267.549926758 267.960083008 268.370239258 268.439575195 268.059692383 267.50012207 266.870239258 266.130004883 265.139770508 263.91027832 262.509887695 268.119567871 268.029724121 267.769958496 267.550231934 267.439880371 267.430114746 267.500427246 267.640075684 267.760192871 267.739685059 267.479919434 266.979919434 266.300231934 265.540466309 264.680114746 263.569763184 262.100036621 266.120269775 266.589996338 266.799957275 266.979644775 267.299957275 267.689605713 267.960113525 268.009918213 267.920074463 267.8097229 267.620269775 267.179840088 266.46987915 265.620269775 264.759918213 263.889801025 263.000152588 265.870239258 266.200317383 266.649536133 267.099731445 267.330200195 267.399536133 267.58996582 268.01965332 268.399536133 268.439575195 268.08996582 267.509887695 266.809692383 266.00012207 265.01965332 263.860473633 262.490356445 268.059997559 267.960388184 267.729919434 267.529724121 267.409606934 267.359802246 267.430114746 267.569763184 267.720153809 267.750427246 267.550231934 267.069763184 266.359802246 265.559997559 264.739685059 263.729919434 262.300231934 265.990386963 266.439605713 266.660308838 266.870269775 267.21987915 267.670074463 267.96987915 268.009918213 267.910308838 267.8097229 267.64956665 267.210113525 266.460113525 265.580230713 264.71987915 263.820465088 262.799957275 265.710083008 266.170043945 266.719848633 267.17980957 267.389770508 267.490356445 267.729614258 268.149536133 268.460083008 268.469848633 268.139770508 267.540161133 266.759887695 265.870239258 264.899536133 263.799926758 262.469848633 267.970153809 267.880310059 267.689880371 267.500427246 267.369567871 267.340270996 267.420349121 267.569763184 267.680114746 267.710388184 267.569763184 267.149841309 266.439880371 265.609802246 264.819763184 263.899841309 262.559997559 265.8800354 266.330230713 266.609527588 266.859527588 267.21987915 267.660308838 267.979644775 268.030426025 267.939605713 267.849761963 267.689605713 267.240386963 266.439605713 265.54019165 264.679840088 263.759918213 262.620269775 265.649536133 266.17980957 266.790161133 267.259887695 267.479614258 267.649536133 267.939575195 268.330200195 268.559692383 268.490356445 268.130004883 267.50012207 266.670043945 265.729614258 264.790161133 263.729614258 262.41027832 267.819763184 267.760192871 267.600036621 267.420349121 267.300231934 267.300231934 267.439880371 267.590270996 267.659606934 267.640075684 267.529724121 267.199645996 266.550231934 265.710388184 264.930114746 264.090270996 262.840270996 265.8097229 266.269683838 266.620269775 266.920074463 267.269683838 267.660308838 267.979644775 268.070465088 267.979644775 267.839996338 267.6300354 267.160308838 266.370269775 265.479644775 264.639801025 263.7003479 262.46987915 265.689575195 266.229614258 266.83996582 267.309692383 267.58996582 267.870239258 268.26965332 268.639770508 268.75012207 268.540161133 268.059692383 267.389770508 266.540161133 265.630004883 264.710083008 263.67980957 262.349731445 267.609802246 267.600036621 267.489685059 267.309997559 267.199645996 267.250427246 267.479919434 267.670349121 267.680114746 267.579528809 267.479919434 267.229919434 266.659606934 265.850036621 265.090270996 264.279724121 263.109802246 265.740386963 266.179840088 266.599761963 266.939605713 267.250152588 267.599761963 267.920074463 268.0597229 267.960113525 267.759918213 267.490386963 267.030426025 266.3097229 265.460113525 264.620269775 263.620269775 262.280426025 265.76965332 266.290161133 266.870239258 267.349731445 267.719848633 268.139770508 268.670043945 269.080200195 269.099731445 268.710083008 268.049926758 267.299926758 266.469848633 265.599731445 264.700317383 263.670043945 262.349731445 267.439880371 267.489685059 267.399841309 267.239685059 267.130310059 267.250427246 267.559997559 267.809997559 267.790466309 267.600036621 267.449645996 267.250427246 266.790466309 266.050231934 265.279724121 264.489685059 263.369567871 265.639801025 266.049957275 266.460113525 266.79019165 267.080230713 267.410308838 267.780426025 267.96987915 267.859527588 267.620269775 267.349761963 266.9503479 266.3097229 265.490386963 264.599761963 263.519683838 262.089996338 265.880004883 266.370239258 266.920043945 267.399536133 267.830200195 268.370239258 269.040161133 269.51965332 269.50012207 268.939575195 268.120239258 267.299926758 266.509887695 265.670043945 264.759887695 263.710083008 262.389770508 267.340270996 267.430114746 267.359802246 267.220153809 267.140075684 267.300231934 267.670349121 267.960388184 267.930114746 267.670349121 267.470153809 267.309997559 266.949645996 266.300231934 265.529724121 264.720153809 263.609802246 265.519683838 265.870269775 266.21987915 266.509918213 266.769683838 267.160308838 267.609527588 267.839996338 267.71987915 267.460113525 267.240386963 266.929840088 266.359527588 265.5597229 264.609527588 263.439605713 261.960113525 265.990356445 266.460083008 266.979614258 267.439575195 267.889770508 268.469848633 269.210083008 269.76965332 269.75012207 269.130004883 268.240356445 267.41027832 266.649536133 265.830200195 264.880004883 263.799926758 262.50012207 267.260192871 267.359802246 267.309997559 267.199645996 267.180114746 267.380310059 267.760192871 268.040466309 268.000427246 267.720153809 267.489685059 267.369567871 267.130310059 266.590270996 265.859802246 265.010192871 263.869567871 265.370269775 265.7003479 265.979644775 266.2003479 266.479644775 266.9503479 267.490386963 267.750152588 267.6300354 267.370269775 267.210113525 266.9503479 266.389801025 265.580230713 264.6300354 263.479644775 262.000152588 266.059692383 266.549926758 267.059692383 267.509887695 267.939575195 268.50012207 269.210083008 269.799926758 269.830200195 269.229614258 268.349731445 267.57043457 266.849731445 266.01965332 265.030395508 263.939575195 262.670043945 267.100036621 267.220153809 267.180114746 267.140075684 267.199645996 267.439880371 267.779724121 268.029724121 267.979919434 267.710388184 267.510192871 267.420349121 267.260192871 266.859802246 266.220153809 265.380310059 264.199645996 265.179840088 265.54019165 265.79019165 265.979644775 266.280426025 266.830230713 267.4503479 267.750152588 267.64956665 267.429840088 267.280426025 267.000152588 266.3800354 265.549957275 264.679840088 263.6300354 262.21987915 266.07043457 266.580200195 267.120239258 267.620239258 268.059692383 268.549926758 269.170043945 269.710083008 269.780395508 269.290161133 268.490356445 267.729614258 267.009887695 266.16027832 265.16027832 264.120239258 262.920043945 266.840270996 266.979919434 266.989685059 267.019958496 267.180114746 267.449645996 267.779724121 268.000427246 267.960388184 267.739685059 267.550231934 267.460388184 267.329528809 267.050231934 266.569763184 265.800231934 264.590270996 264.979644775 265.3800354 265.660308838 265.859527588 266.189605713 266.79019165 267.4503479 267.799957275 267.780426025 267.639801025 267.479644775 267.109527588 266.3800354 265.54019165 264.769683838 263.859527588 262.549957275 266.040161133 266.57043457 267.139770508 267.719848633 268.200317383 268.639770508 269.120239258 269.57043457 269.700317383 269.32043457 268.630004883 267.870239258 267.110473633 266.229614258 265.259887695 264.280395508 263.17980957 266.529724121 266.710388184 266.769958496 266.890075684 267.119567871 267.439880371 267.769958496 267.979919434 267.989685059 267.829528809 267.649841309 267.500427246 267.350036621 267.149841309 266.850036621 266.210388184 265.019958496 264.79019165 265.250152588 265.589996338 265.849761963 266.2003479 266.780426025 267.429840088 267.830230713 267.929840088 267.89956665 267.740386963 267.269683838 266.4503479 265.589996338 264.89956665 264.099761963 262.870269775 265.979614258 266.469848633 267.059692383 267.700317383 268.259887695 268.670043945 269.030395508 269.380004883 269.530395508 269.290161133 268.67980957 267.920043945 267.130004883 266.26965332 265.349731445 264.450317383 263.420043945 266.220153809 266.420349121 266.550231934 266.739685059 267.040466309 267.409606934 267.750427246 267.979919434 268.040466309 267.939880371 267.779724121 267.600036621 267.390075684 267.220153809 267.050231934 266.550231934 265.409606934 264.7003479 265.179840088 265.609527588 265.960113525 266.330230713 266.839996338 267.420074463 267.859527588 268.0597229 268.109527588 267.960113525 267.439605713 266.570465088 265.71987915 265.089996338 264.359527588 263.189605713 265.880004883 266.309692383 266.83996582 267.50012207 268.130004883 268.57043457 268.880004883 269.17980957 269.349731445 269.170043945 268.620239258 267.91027832 267.16027832 266.380004883 265.51965332 264.620239258 263.599731445 265.890075684 266.109802246 266.309997559 266.569763184 266.939880371 267.369567871 267.750427246 267.989685059 268.079528809 268.029724121 267.930114746 267.739685059 267.519958496 267.350036621 267.189880371 266.760192871 265.699645996 264.71987915 265.210113525 265.710113525 266.14956665 266.5597229 267.019683838 267.54019165 267.96987915 268.229644775 268.299957275 268.139801025 267.599761963 266.780426025 265.990386963 265.370269775 264.689605713 263.620269775 265.700317383 266.07043457 266.509887695 267.139770508 267.82043457 268.360473633 268.740356445 269.059692383 269.240356445 269.059692383 268.530395508 267.880004883 267.259887695 266.620239258 265.830200195 264.889770508 263.790161133 265.550231934 265.800231934 266.059997559 266.409606934 266.869567871 267.359802246 267.779724121 268.019958496 268.090270996 268.069763184 268.029724121 267.939880371 267.769958496 267.559997559 267.329528809 266.850036621 265.850036621 264.8097229 265.280426025 265.820465088 266.349761963 266.8097229 267.259918213 267.759918213 268.2003479 268.46987915 268.530426025 268.320465088 267.830230713 267.099761963 266.389801025 265.820465088 265.189605713 264.210113525 265.399536133 265.719848633 266.08996582 266.649536133 267.380004883 268.049926758 268.599731445 269.030395508 269.210083008 269.009887695 268.50012207 267.920043945 267.450317383 266.969848633 266.290161133 265.309692383 264.130004883 265.269958496 265.519958496 265.829528809 266.260192871 266.800231934 267.359802246 267.790466309 268.029724121 268.079528809 268.069763184 268.100036621 268.119567871 268.050231934 267.840270996 267.500427246 266.899841309 265.909606934 264.89956665 265.3097229 265.849761963 266.460113525 267.000152588 267.490386963 268.000152588 268.479644775 268.769683838 268.799957275 268.580230713 268.120269775 267.490386963 266.870269775 266.359527588 265.769683838 264.910308838 265.040161133 265.32043457 265.580200195 266.07043457 266.809692383 267.639770508 268.389770508 268.969848633 269.189575195 268.979614258 268.490356445 268.009887695 267.66027832 267.330200195 266.76965332 265.880004883 264.710083008 265.029724121 265.309997559 265.680114746 266.199645996 266.790466309 267.340270996 267.760192871 267.989685059 268.050231934 268.050231934 268.119567871 268.250427246 268.300231934 268.130310059 267.710388184 267.010192871 265.970153809 264.929840088 265.29019165 265.830230713 266.509918213 267.14956665 267.7003479 268.240386963 268.750152588 269.049957275 269.0597229 268.830230713 268.39956665 267.839996338 267.269683838 266.799957275 266.269683838 265.509918213 264.67980957 264.860473633 265.030395508 265.479614258 266.26965332 267.229614258 268.149536133 268.830200195 269.110473633 268.939575195 268.51965332 268.120239258 267.83996582 267.599731445 267.189575195 266.469848633 265.41027832 264.819763184 265.170349121 265.659606934 266.269958496 266.880310059 267.350036621 267.689880371 267.899841309 268.000427246 268.029724121 268.119567871 268.300231934 268.439880371 268.350036621 267.920349121 267.149841309 266.059997559 264.89956665 265.240386963 265.799957275 266.549957275 267.299957275 267.929840088 268.490386963 268.979644775 269.269683838 269.269683838 269.000152588 268.570465088 268.04019165 267.509918213 267.030426025 266.5597229 265.889801025 264.330200195 264.370239258 264.50012207 265.040161133 265.979614258 267.07043457 268.059692383 268.759887695 269.040161133 268.939575195 268.599731445 268.25012207 267.969848633 267.740356445 267.42980957 266.899536133 266.009887695 264.649841309 265.140075684 265.769958496 266.500427246 267.100036621 267.460388184 267.659606934 267.840270996 267.979919434 268.040466309 268.109802246 268.269958496 268.460388184 268.449645996 268.040466309 267.250427246 266.130310059 264.8097229 265.179840088 265.769683838 266.589996338 267.420074463 268.109527588 268.7003479 269.179840088 269.4503479 269.410308838 269.099761963 268.6300354 268.109527588 267.599761963 267.139801025 266.670074463 266.070465088 263.950317383 263.880004883 264.110473633 264.899536133 266.08996582 267.290161133 268.240356445 268.83996582 269.07043457 268.969848633 268.689575195 268.349731445 268.040161133 267.759887695 267.479614258 267.080200195 266.349731445 264.600036621 265.220153809 266.010192871 266.809997559 267.369567871 267.600036621 267.710388184 267.859802246 268.019958496 268.079528809 268.090270996 268.210388184 268.420349121 268.430114746 268.040466309 267.250427246 266.140075684 264.71987915 265.1300354 265.71987915 266.530426025 267.39956665 268.160308838 268.799957275 269.3097229 269.589996338 269.509918213 269.120269775 268.620269775 268.139801025 267.689605713 267.229644775 266.729644775 266.160308838 263.559692383 263.50012207 263.939575195 265.030395508 266.42980957 267.639770508 268.469848633 268.939575195 269.08996582 268.969848633 268.710083008 268.380004883 268.059692383 267.75012207 267.439575195 267.059692383 266.420043945 264.779724121 265.470153809 266.279724121 267.040466309 267.519958496 267.710388184 267.800231934 267.989685059 268.159606934 268.149841309 268.090270996 268.159606934 268.350036621 268.350036621 267.960388184 267.189880371 266.109802246 264.660308838 265.089996338 265.620269775 266.3800354 267.250152588 268.070465088 268.769683838 269.330230713 269.620269775 269.54019165 269.099761963 268.580230713 268.160308838 267.8097229 267.389801025 266.849761963 266.250152588 263.32043457 263.33996582 263.960083008 265.25012207 266.710083008 267.830200195 268.509887695 268.880004883 269.009887695 268.889770508 268.639770508 268.360473633 268.080200195 267.759887695 267.389770508 266.969848633 266.349731445 265.180114746 265.819763184 266.510192871 267.119567871 267.510192871 267.720153809 267.920349121 268.199645996 268.359802246 268.269958496 268.119567871 268.149841309 268.319763184 268.290466309 267.890075684 267.130310059 266.109802246 264.620269775 265.04019165 265.54019165 266.240386963 267.089996338 267.929840088 268.670074463 269.240386963 269.530426025 269.439605713 268.990386963 268.500152588 268.160308838 267.910308838 267.530426025 266.9503479 266.3097229 263.32043457 263.420043945 264.130004883 265.439575195 266.799926758 267.76965332 268.360473633 268.719848633 268.880004883 268.809692383 268.58996582 268.370239258 268.139770508 267.830200195 267.389770508 266.899536133 266.280395508 265.680114746 266.199645996 266.680114746 267.100036621 267.430114746 267.710388184 268.059997559 268.439880371 268.590270996 268.430114746 268.199645996 268.189880371 268.309997559 268.250427246 267.829528809 267.130310059 266.140075684 264.609527588 265.019683838 265.519683838 266.2003479 267.019683838 267.830230713 268.519683838 269.030426025 269.29019165 269.210113525 268.839996338 268.410308838 268.120269775 267.89956665 267.530426025 266.929840088 266.259918213 263.58996582 263.689575195 264.370239258 265.559692383 266.780395508 267.639770508 268.200317383 268.610473633 268.830200195 268.799926758 268.630004883 268.450317383 268.229614258 267.870239258 267.360473633 266.790161133 266.210083008 266.130310059 266.510192871 266.829528809 267.119567871 267.420349121 267.760192871 268.189880371 268.600036621 268.750427246 268.579528809 268.319763184 268.260192871 268.290466309 268.170349121 267.760192871 267.130310059 266.199645996 264.620269775 265.070465088 265.620269775 266.280426025 267.019683838 267.740386963 268.3097229 268.71987915 268.929840088 268.910308838 268.670074463 268.359527588 268.089996338 267.799957275 267.339996338 266.71987915 266.070465088 263.979614258 264.080200195 264.67980957 265.729614258 266.790161133 267.58996582 268.149536133 268.580200195 268.809692383 268.809692383 268.689575195 268.530395508 268.26965332 267.809692383 267.210083008 266.610473633 266.059692383 266.540466309 266.859802246 267.059997559 267.279724121 267.550231934 267.859802246 268.220153809 268.579528809 268.729919434 268.630310059 268.420349121 268.319763184 268.269958496 268.050231934 267.640075684 267.079528809 266.210388184 264.759918213 265.3097229 265.910308838 266.490386963 267.0597229 267.609527588 268.070465088 268.3800354 268.549957275 268.599761963 268.54019165 268.3800354 268.099761963 267.64956665 267.04019165 266.3800354 265.769683838 264.41027832 264.559692383 265.110473633 266.009887695 266.889770508 267.57043457 268.080200195 268.479614258 268.719848633 268.759887695 268.67980957 268.540161133 268.219848633 267.66027832 266.969848633 266.360473633 265.860473633 267.019958496 267.300231934 267.420349121 267.559997559 267.760192871 267.960388184 268.189880371 268.449645996 268.609802246 268.579528809 268.449645996 268.359802246 268.260192871 267.979919434 267.529724121 266.949645996 266.109802246 265.0597229 265.769683838 266.3800354 266.799957275 267.120269775 267.490386963 267.8800354 268.14956665 268.29019165 268.359527588 268.420074463 268.389801025 268.099761963 267.500152588 266.740386963 266.04019165 265.490386963 264.849731445 265.149536133 265.700317383 266.41027832 267.030395508 267.50012207 267.899536133 268.26965332 268.51965332 268.620239258 268.610473633 268.469848633 268.099731445 267.450317383 266.719848633 266.139770508 265.66027832 267.510192871 267.779724121 267.809997559 267.850036621 267.949645996 268.069763184 268.199645996 268.380310059 268.540466309 268.540466309 268.449645996 268.369567871 268.250427246 267.939880371 267.420349121 266.769958496 265.890075684 265.460113525 266.299957275 266.889801025 267.109527588 267.210113525 267.429840088 267.79019165 268.070465088 268.179840088 268.210113525 268.299957275 268.3097229 268.009918213 267.339996338 266.519683838 265.820465088 265.320465088 265.259887695 265.740356445 266.299926758 266.790161133 267.139770508 267.41027832 267.740356445 268.099731445 268.370239258 268.479614258 268.50012207 268.349731445 267.920043945 267.240356445 266.509887695 265.939575195 265.490356445 267.769958496 268.029724121 268.019958496 268.000427246 268.059997559 268.159606934 268.290466309 268.449645996 268.559997559 268.519958496 268.390075684 268.300231934 268.199645996 267.880310059 267.290466309 266.519958496 265.579528809 265.780426025 266.689605713 267.21987915 267.3097229 267.269683838 267.420074463 267.759918213 268.049957275 268.1300354 268.109527588 268.1300354 268.109527588 267.799957275 267.160308838 266.39956665 265.750152588 265.259918213 265.58996582 266.200317383 266.740356445 267.059692383 267.210083008 267.399536133 267.719848633 268.080200195 268.309692383 268.370239258 268.33996582 268.149536133 267.689575195 266.969848633 266.25012207 265.729614258 265.32043457 267.630310059 267.930114746 267.970153809 267.970153809 268.050231934 268.189880371 268.350036621 268.519958496 268.609802246 268.500427246 268.290466309 268.159606934 268.050231934 267.729919434 267.100036621 266.250427246 265.260192871 265.979644775 266.859527588 267.320465088 267.370269775 267.3097229 267.410308838 267.7003479 267.9503479 268.04019165 268.019683838 267.979644775 267.849761963 267.509918213 266.9503479 266.320465088 265.729644775 265.179840088 265.849731445 266.479614258 266.950317383 267.17980957 267.259887695 267.460083008 267.82043457 268.120239258 268.229614258 268.170043945 268.080200195 267.870239258 267.380004883 266.630004883 265.91027832 265.420043945 265.07043457 267.269958496 267.649841309 267.819763184 267.899841309 268.010192871 268.130310059 268.279724121 268.460388184 268.529724121 268.430114746 268.189880371 267.989685059 267.829528809 267.500427246 266.869567871 266.000427246 264.979919434 266.170074463 266.929840088 267.320465088 267.420074463 267.389801025 267.4503479 267.620269775 267.79019165 267.889801025 267.929840088 267.859527588 267.639801025 267.250152588 266.750152588 266.210113525 265.620269775 264.9503479 266.139770508 266.719848633 267.099731445 267.25012207 267.32043457 267.530395508 267.849731445 268.07043457 268.049926758 267.920043945 267.790161133 267.599731445 267.110473633 266.32043457 265.559692383 265.07043457 264.75012207 267.079528809 267.540466309 267.809997559 267.939880371 268.000427246 268.040466309 268.119567871 268.250427246 268.359802246 268.309997559 268.109802246 267.869567871 267.619567871 267.269958496 266.649841309 265.809997559 264.809997559 266.389801025 267.030426025 267.3800354 267.509918213 267.530426025 267.530426025 267.570465088 267.6300354 267.759918213 267.839996338 267.769683838 267.46987915 267.030426025 266.549957275 266.049957275 265.389801025 264.580230713 266.559692383 267.080200195 267.349731445 267.399536133 267.389770508 267.51965332 267.759887695 267.920043945 267.870239258 267.729614258 267.58996582 267.380004883 266.889770508 266.080200195 265.26965332 264.719848633 264.389770508 267.279724121 267.729919434 267.960388184 268.019958496 268.000427246 267.970153809 267.989685059 268.100036621 268.210388184 268.210388184 268.050231934 267.779724121 267.470153809 267.050231934 266.449645996 265.670349121 264.680114746 266.620269775 267.170074463 267.46987915 267.599761963 267.6300354 267.589996338 267.54019165 267.549957275 267.64956665 267.750152588 267.660308838 267.3097229 266.839996338 266.370269775 265.830230713 265.120269775 264.21987915 267.040161133 267.479614258 267.649536133 267.559692383 267.439575195 267.460083008 267.630004883 267.809692383 267.830200195 267.700317383 267.50012207 267.189575195 266.649536133 265.860473633 265.049926758 264.450317383 264.07043457 267.619567871 267.960388184 268.029724121 267.960388184 267.899841309 267.920349121 267.989685059 268.090270996 268.170349121 268.149841309 267.970153809 267.689880371 267.350036621 266.890075684 266.279724121 265.519958496 264.559997559 266.759918213 267.240386963 267.46987915 267.5597229 267.589996338 267.549957275 267.500152588 267.490386963 267.5597229 267.609527588 267.46987915 267.099761963 266.620269775 266.14956665 265.6300354 264.910308838 264.009918213 267.370239258 267.740356445 267.759887695 267.559692383 267.370239258 267.360473633 267.549926758 267.809692383 267.899536133 267.740356445 267.380004883 266.920043945 266.33996582 265.620239258 264.860473633 264.25012207 263.809692383 267.739685059 267.939880371 267.840270996 267.699645996 267.699645996 267.859802246 268.050231934 268.180114746 268.210388184 268.109802246 267.899841309 267.609802246 267.269958496 266.800231934 266.159606934 265.380310059 264.449645996 266.769683838 267.170074463 267.339996338 267.370269775 267.389801025 267.420074463 267.429840088 267.429840088 267.460113525 267.4503479 267.280426025 266.89956665 266.410308838 265.929840088 265.439605713 264.79019165 263.939605713 267.490356445 267.700317383 267.58996582 267.330200195 267.17980957 267.259887695 267.540161133 267.849731445 267.960083008 267.729614258 267.229614258 266.630004883 266.030395508 265.389770508 264.700317383 264.08996582 263.599731445 267.550231934 267.659606934 267.510192871 267.399841309 267.519958496 267.819763184 268.109802246 268.250427246 268.239685059 268.090270996 267.859802246 267.590270996 267.260192871 266.800231934 266.130310059 265.309997559 264.369567871 266.740386963 267.04019165 267.120269775 267.1300354 267.170074463 267.259918213 267.339996338 267.389801025 267.410308838 267.370269775 267.189605713 266.780426025 266.229644775 265.71987915 265.240386963 264.660308838 263.870269775 267.490356445 267.530395508 267.280395508 267.01965332 266.979614258 267.200317383 267.530395508 267.82043457 267.880004883 267.599731445 267.049926758 266.439575195 265.870239258 265.25012207 264.57043457 263.920043945 263.399536133 267.250427246 267.350036621 267.260192871 267.269958496 267.489685059 267.819763184 268.109802246 268.239685059 268.239685059 268.100036621 267.880310059 267.609802246 267.300231934 266.859802246 266.189880371 265.359802246 264.399841309 266.679840088 266.859527588 266.889801025 266.920074463 267.000152588 267.1300354 267.259918213 267.339996338 267.370269775 267.359527588 267.189605713 266.759918213 266.14956665 265.530426025 265.019683838 264.479644775 263.7003479 267.479614258 267.380004883 267.049926758 266.82043457 266.880004883 267.17980957 267.509887695 267.700317383 267.67980957 267.389770508 266.920043945 266.399536133 265.83996582 265.189575195 264.439575195 263.75012207 263.189575195 267.090270996 267.210388184 267.220153809 267.329528809 267.559997559 267.819763184 268.019958496 268.140075684 268.189880371 268.109802246 267.909606934 267.640075684 267.329528809 266.920349121 266.309997559 265.479919434 264.479919434 266.5597229 266.639801025 266.670074463 266.740386963 266.859527588 267.009918213 267.160308838 267.269683838 267.339996338 267.339996338 267.179840088 266.750152588 266.080230713 265.3800354 264.799957275 264.21987915 263.39956665 267.439575195 267.299926758 266.990356445 266.799926758 266.920043945 267.219848633 267.490356445 267.58996582 267.469848633 267.200317383 266.809692383 266.360473633 265.809692383 265.110473633 264.309692383 263.57043457 263.009887695 267.130310059 267.250427246 267.300231934 267.420349121 267.600036621 267.760192871 267.890075684 268.029724121 268.119567871 268.109802246 267.939880371 267.670349121 267.350036621 266.970153809 266.409606934 265.590270996 264.559997559 266.320465088 266.370269775 266.479644775 266.639801025 266.780426025 266.89956665 267.0597229 267.210113525 267.3097229 267.29019165 267.099761963 266.64956665 265.990386963 265.259918213 264.589996338 263.89956665 263.04019165 267.33996582 267.229614258 266.979614258 266.849731445 266.979614258 267.26965332 267.50012207 267.540161133 267.380004883 267.099731445 266.719848633 266.25012207 265.670043945 264.960083008 264.170043945 263.450317383 262.870239258 267.250427246 267.380310059 267.420349121 267.489685059 267.590270996 267.680114746 267.800231934 267.960388184 268.079528809 268.090270996 267.960388184 267.699645996 267.390075684 267.010192871 266.449645996 265.609802246 264.540466309 266.019683838 266.120269775 266.359527588 266.620269775 266.79019165 266.89956665 267.070465088 267.259918213 267.330230713 267.229644775 266.96987915 266.509918213 265.89956665 265.160308838 264.389801025 263.599761963 262.729644775 267.229614258 267.130004883 266.960083008 266.870239258 267.00012207 267.280395508 267.530395508 267.57043457 267.420043945 267.110473633 266.689575195 266.16027832 265.51965332 264.790161133 264.030395508 263.360473633 262.759887695 267.350036621 267.529724121 267.590270996 267.609802246 267.630310059 267.680114746 267.800231934 267.939880371 268.010192871 268.010192871 267.920349121 267.710388184 267.399841309 266.979919434 266.390075684 265.519958496 264.399841309 265.8097229 266.009918213 266.349761963 266.679840088 266.859527588 266.990386963 267.189605713 267.3800354 267.39956665 267.21987915 266.870269775 266.429840088 265.839996338 265.089996338 264.229644775 263.320465088 262.4503479 267.189575195 267.110473633 266.950317383 266.860473633 266.960083008 267.240356445 267.51965332 267.620239258 267.509887695 267.210083008 266.759887695 266.16027832 265.439575195 264.66027832 263.91027832 263.229614258 262.58996582 267.340270996 267.649841309 267.769958496 267.760192871 267.710388184 267.729919434 267.819763184 267.899841309 267.899841309 267.859802246 267.800231934 267.649841309 267.340270996 266.850036621 266.199645996 265.300231934 264.159606934 265.759918213 266.030426025 266.39956665 266.729644775 266.920074463 267.080230713 267.280426025 267.4503479 267.439605713 267.240386963 266.89956665 266.460113525 265.859527588 265.0597229 264.089996338 263.080230713 262.170074463 267.280395508 267.189575195 267.00012207 266.849731445 266.91027832 267.170043945 267.439575195 267.58996582 267.530395508 267.299926758 266.870239258 266.240356445 265.439575195 264.580200195 263.790161133 263.049926758 262.349731445 267.199645996 267.649841309 267.869567871 267.859802246 267.750427246 267.710388184 267.779724121 267.809997559 267.739685059 267.670349121 267.630310059 267.500427246 267.170349121 266.640075684 265.939880371 265.019958496 263.859802246 265.870269775 266.1300354 266.4503479 266.710113525 266.89956665 267.080230713 267.29019165 267.439605713 267.439605713 267.280426025 267.000152588 266.570465088 265.920074463 265.049957275 264.000152588 262.910308838 261.939605713 267.389770508 267.309692383 267.059692383 266.870239258 266.880004883 267.080200195 267.32043457 267.450317383 267.439575195 267.280395508 266.91027832 266.290161133 265.450317383 264.549926758 263.689575195 262.91027832 262.120239258 266.960388184 267.519958496 267.840270996 267.850036621 267.699645996 267.619567871 267.649841309 267.670349121 267.579528809 267.489685059 267.449645996 267.319763184 266.970153809 266.399841309 265.659606934 264.720153809 263.550231934 266.000152588 266.250152588 266.479644775 266.689605713 266.8800354 267.070465088 267.280426025 267.420074463 267.479644775 267.389801025 267.170074463 266.7003479 265.96987915 265.04019165 263.96987915 262.839996338 261.79019165 267.389770508 267.330200195 267.07043457 266.870239258 266.870239258 267.040161133 267.200317383 267.299926758 267.299926758 267.17980957 266.849731445 266.229614258 265.420043945 264.51965332 263.649536133 262.809692383 261.920043945 266.739685059 267.390075684 267.779724121 267.819763184 267.630310059 267.500427246 267.500427246 267.510192871 267.420349121 267.300231934 267.250427246 267.140075684 266.809997559 266.210388184 265.420349121 264.430114746 263.229919434 266.080230713 266.299957275 266.479644775 266.679840088 266.889801025 267.109527588 267.320465088 267.490386963 267.589996338 267.580230713 267.339996338 266.79019165 266.000152588 265.0597229 264.019683838 262.889801025 261.750152588 267.240356445 267.200317383 266.950317383 266.809692383 266.870239258 267.040161133 267.16027832 267.219848633 267.229614258 267.120239258 266.759887695 266.139770508 265.33996582 264.479614258 263.58996582 262.670043945 261.700317383 266.649841309 267.359802246 267.819763184 267.869567871 267.649841309 267.439880371 267.369567871 267.340270996 267.210388184 267.059997559 266.989685059 266.930114746 266.670349121 266.100036621 265.250427246 264.170349121 262.930114746 266.070465088 266.250152588 266.420074463 266.64956665 266.929840088 267.189605713 267.420074463 267.609527588 267.740386963 267.71987915 267.4503479 266.849761963 266.009918213 265.080230713 264.089996338 262.96987915 261.759918213 267.009887695 266.969848633 266.740356445 266.689575195 266.870239258 267.08996582 267.200317383 267.259887695 267.280395508 267.149536133 266.740356445 266.07043457 265.280395508 264.41027832 263.450317383 262.41027832 261.360473633 266.680114746 267.449645996 267.920349121 267.960388184 267.699645996 267.430114746 267.300231934 267.199645996 267.010192871 266.779724121 266.689880371 266.680114746 266.540466309 266.029724121 265.159606934 264.019958496 262.720153809 266.049957275 266.160308838 266.3097229 266.580230713 266.929840088 267.250152588 267.500152588 267.679840088 267.780426025 267.759918213 267.500152588 266.8800354 266.04019165 265.109527588 264.109527588 262.979644775 261.740386963 266.790161133 266.729614258 266.530395508 266.580200195 266.870239258 267.149536133 267.290161133 267.370239258 267.41027832 267.259887695 266.790161133 266.08996582 265.259887695 264.330200195 263.25012207 262.080200195 260.969848633 266.750427246 267.479919434 267.899841309 267.949645996 267.720153809 267.449645996 267.279724121 267.159606934 266.930114746 266.649841309 266.489685059 266.479919434 266.399841309 265.989685059 265.149841309 264.010192871 262.659606934 266.0597229 266.099761963 266.210113525 266.500152588 266.910308838 267.29019165 267.5597229 267.679840088 267.729644775 267.7003479 267.460113525 266.920074463 266.109527588 265.139801025 264.070465088 262.8800354 261.599761963 266.599731445 266.549926758 266.41027832 266.51965332 266.870239258 267.219848633 267.399536133 267.51965332 267.559692383 267.389770508 266.880004883 266.139770508 265.26965332 264.280395508 263.120239258 261.860473633 260.710083008 266.800231934 267.409606934 267.760192871 267.840270996 267.699645996 267.489685059 267.350036621 267.239685059 267.050231934 266.750427246 266.489685059 266.380310059 266.269958496 265.909606934 265.159606934 264.079528809 262.710388184 266.089996338 266.099761963 266.179840088 266.460113525 266.910308838 267.349761963 267.6300354 267.71987915 267.679840088 267.609527588 267.410308838 266.9503479 266.179840088 265.170074463 264.000152588 262.710113525 261.3800354 266.450317383 266.509887695 266.439575195 266.580200195 266.939575195 267.290161133 267.51965332 267.670043945 267.719848633 267.51965332 266.969848633 266.170043945 265.259887695 264.240356445 263.07043457 261.82043457 260.689575195 266.819763184 267.309997559 267.600036621 267.739685059 267.710388184 267.550231934 267.420349121 267.359802246 267.250427246 266.979919434 266.649841309 266.390075684 266.159606934 265.790466309 265.119567871 264.109802246 262.750427246 266.099761963 266.160308838 266.229644775 266.460113525 266.8800354 267.349761963 267.689605713 267.79019165 267.710113525 267.570465088 267.349761963 266.910308838 266.189605713 265.2003479 263.96987915 262.570465088 261.139801025 266.349731445 266.57043457 266.620239258 266.76965332 267.07043457 267.389770508 267.630004883 267.809692383 267.880004883 267.649536133 267.040161133 266.170043945 265.200317383 264.16027832 263.040161133 261.889770508 260.799926758 266.890075684 267.279724121 267.550231934 267.760192871 267.809997559 267.649841309 267.460388184 267.390075684 267.369567871 267.210388184 266.890075684 266.529724121 266.189880371 265.739685059 265.050231934 264.050231934 262.699645996 266.099761963 266.259918213 266.339996338 266.479644775 266.79019165 267.240386963 267.660308838 267.849761963 267.79019165 267.589996338 267.280426025 266.799957275 266.089996338 265.170074463 263.979644775 262.519683838 260.9503479 266.290161133 266.670043945 266.830200195 266.990356445 267.25012207 267.509887695 267.740356445 267.92980957 268.009887695 267.780395508 267.16027832 266.240356445 265.17980957 264.080200195 262.990356445 261.92980957 260.889770508 267.019958496 267.329528809 267.590270996 267.859802246 267.939880371 267.739685059 267.479919434 267.380310059 267.439880371 267.409606934 267.189880371 266.840270996 266.430114746 265.869567871 265.059997559 263.960388184 262.590270996 266.160308838 266.410308838 266.490386963 266.530426025 266.729644775 267.139801025 267.599761963 267.8800354 267.8800354 267.660308838 267.240386963 266.64956665 265.920074463 265.070465088 263.979644775 262.549957275 260.89956665 266.26965332 266.719848633 266.950317383 267.139770508 267.360473633 267.580200195 267.780395508 267.960083008 268.040161133 267.860473633 267.299926758 266.399536133 265.280395508 264.110473633 262.979614258 261.960083008 260.939575195 267.119567871 267.380310059 267.619567871 267.920349121 268.029724121 267.840270996 267.559997559 267.470153809 267.559997559 267.630310059 267.529724121 267.250427246 266.829528809 266.180114746 265.220153809 263.970153809 262.519958496 266.29019165 266.549957275 266.609527588 266.639801025 266.8097229 267.179840088 267.609527588 267.889801025 267.929840088 267.729644775 267.269683838 266.570465088 265.759918213 264.910308838 263.920074463 262.580230713 260.960113525 266.290161133 266.670043945 266.91027832 267.130004883 267.370239258 267.549926758 267.700317383 267.830200195 267.899536133 267.790161133 267.370239258 266.58996582 265.509887695 264.290161133 263.120239258 262.059692383 261.009887695 267.180114746 267.409606934 267.630310059 267.909606934 268.040466309 267.920349121 267.729919434 267.680114746 267.779724121 267.869567871 267.809997559 267.590270996 267.180114746 266.489685059 265.449645996 264.109802246 262.579528809 266.39956665 266.580230713 266.6300354 266.740386963 266.979644775 267.330230713 267.64956665 267.849761963 267.89956665 267.769683838 267.349761963 266.6300354 265.71987915 264.79019165 263.820465088 262.599761963 261.120269775 266.33996582 266.580200195 266.740356445 266.990356445 267.259887695 267.450317383 267.540161133 267.599731445 267.620239258 267.540161133 267.290161133 266.710083008 265.740356445 264.540161133 263.349731445 262.26965332 261.16027832 267.250427246 267.489685059 267.689880371 267.920349121 268.050231934 267.989685059 267.909606934 267.909606934 267.989685059 268.019958496 267.930114746 267.710388184 267.309997559 266.640075684 265.630310059 264.319763184 262.769958496 266.420074463 266.460113525 266.509918213 266.71987915 267.0597229 267.39956665 267.609527588 267.710113525 267.750152588 267.729644775 267.4503479 266.780426025 265.820465088 264.780426025 263.759918213 262.620269775 261.299957275 266.389770508 266.479614258 266.599731445 266.860473633 267.16027832 267.33996582 267.420043945 267.41027832 267.349731445 267.26965332 267.120239258 266.719848633 265.899536133 264.76965332 263.580200195 262.490356445 261.330200195 267.380310059 267.659606934 267.859802246 268.059997559 268.130310059 268.090270996 268.050231934 268.069763184 268.100036621 268.050231934 267.930114746 267.710388184 267.309997559 266.680114746 265.760192871 264.550231934 263.050231934 266.349761963 266.320465088 266.3800354 266.64956665 267.000152588 267.259918213 267.389801025 267.46987915 267.589996338 267.660308838 267.500152588 266.939605713 266.000152588 264.89956665 263.780426025 262.660308838 261.4503479 266.380004883 266.420043945 266.57043457 266.870239258 267.149536133 267.330200195 267.389770508 267.360473633 267.229614258 267.099731445 267.00012207 266.719848633 266.040161133 264.979614258 263.809692383 262.700317383 261.50012207 267.550231934 267.890075684 268.119567871 268.300231934 268.329528809 268.239685059 268.180114746 268.170349121 268.140075684 268.059997559 267.930114746 267.750427246 267.399841309 266.779724121 265.899841309 264.769958496 263.329528809 266.299957275 266.299957275 266.429840088 266.7003479 266.920074463 267.04019165 267.1300354 267.299957275 267.519683838 267.64956665 267.530426025 267.030426025 266.170074463 265.0597229 263.889801025 262.729644775 261.589996338 266.32043457 266.450317383 266.700317383 267.01965332 267.229614258 267.33996582 267.399536133 267.389770508 267.25012207 267.080200195 266.969848633 266.790161133 266.229614258 265.25012207 264.080200195 262.920043945 261.670043945 267.680114746 268.040466309 268.309997559 268.510192871 268.529724121 268.399841309 268.290466309 268.229919434 268.170349121 268.059997559 267.989685059 267.909606934 267.609802246 266.979919434 266.059997559 264.930114746 263.540466309 256.330078125 256.610351562 256.830078125 256.959960938 257.0 257.049804688 257.129882812 257.25 257.330078125 257.23046875 256.83984375 256.120117188 255.139648438 253.959960938 252.599609375 251.150390625 249.8203125 256.050292969 256.380371094 256.550292969 256.770019531 257.020019531 257.260253906 257.439941406 257.600097656 257.659667969 257.560058594 257.180175781 256.510253906 255.579605103 254.470230103 253.27003479 252.010269165 250.640151978 256.239685059 256.689880371 256.850036621 256.809997559 256.819763184 256.989685059 257.239685059 257.399841309 257.470153809 257.500427246 257.460388184 257.199645996 256.680114746 255.909606934 254.880310059 253.579528809 252.090270996 256.200195312 256.5 256.790039062 256.969726562 257.030273438 257.059570312 257.150390625 257.240234375 257.309570312 257.23046875 256.889648438 256.23046875 255.309570312 254.1796875 252.830078125 251.360351562 250.0 256.060058594 256.310058594 256.470214844 256.720214844 256.979980469 257.180175781 257.340332031 257.520019531 257.659667969 257.600097656 257.229980469 256.560058594 255.69972229 254.68019104 253.560073853 252.34034729 250.979995728 256.250427246 256.699645996 256.880310059 256.880310059 256.880310059 257.010192871 257.189880371 257.319763184 257.420349121 257.460388184 257.399841309 257.119567871 256.619567871 255.920349121 254.970153809 253.710388184 252.239685059 256.099609375 256.419921875 256.75 256.940429688 257.0 257.049804688 257.139648438 257.240234375 257.299804688 257.240234375 256.940429688 256.330078125 255.450195312 254.379882812 253.099609375 251.66015625 250.26953125 255.989761353 256.229980469 256.420410156 256.659667969 256.890136719 257.069824219 257.249511719 257.470214844 257.659667969 257.619628906 257.249511719 256.600097656 255.800308228 254.890151978 253.850112915 252.670425415 251.319839478 256.260192871 256.710388184 256.920349121 256.970153809 256.970153809 257.050231934 257.180114746 257.290466309 257.359802246 257.409606934 257.319763184 257.029724121 256.559997559 255.939880371 255.050231934 253.819763184 252.380310059 256.009765625 256.349609375 256.6796875 256.870117188 256.919921875 257.0 257.110351562 257.219726562 257.280273438 257.259765625 257.01953125 256.469726562 255.620117188 254.580078125 253.360351562 251.969726562 250.580078125 255.93019104 256.210449219 256.420410156 256.630371094 256.840332031 257.020019531 257.199707031 257.430175781 257.609863281 257.579589844 257.229980469 256.659667969 255.93019104 255.100112915 254.10987854 252.970230103 251.649917603 256.250427246 256.689880371 256.930114746 256.989685059 257.010192871 257.069763184 257.159606934 257.250427246 257.309997559 257.340270996 257.239685059 256.970153809 256.550231934 255.970153809 255.090270996 253.869567871 252.489685059 255.940429688 256.290039062 256.620117188 256.76953125 256.830078125 256.940429688 257.080078125 257.169921875 257.219726562 257.259765625 257.110351562 256.629882812 255.830078125 254.8203125 253.620117188 252.280273438 250.889648438 255.909683228 256.260253906 256.479980469 256.670410156 256.840332031 257.020019531 257.220214844 257.409667969 257.550292969 257.510253906 257.229980469 256.760253906 256.109863281 255.329605103 254.35987854 253.220230103 251.920425415 256.210388184 256.640075684 256.869567871 256.939880371 256.949645996 257.019958496 257.119567871 257.180114746 257.239685059 257.269958496 257.199645996 256.970153809 256.569763184 255.989685059 255.100036621 253.909606934 252.600036621 255.91015625 256.290039062 256.599609375 256.719726562 256.780273438 256.91015625 257.049804688 257.110351562 257.129882812 257.1796875 257.099609375 256.73046875 256.0 255.040039062 253.879882812 252.5703125 251.190429688 255.94972229 256.359863281 256.600097656 256.739746094 256.890136719 257.069824219 257.249511719 257.409667969 257.510253906 257.489746094 257.289550781 256.899902344 256.319824219 255.550308228 254.59034729 253.460464478 252.18019104 256.149841309 256.579528809 256.819763184 256.859802246 256.869567871 256.930114746 257.029724121 257.109802246 257.180114746 257.239685059 257.170349121 256.949645996 256.569763184 256.000427246 255.119567871 253.949645996 252.699645996 255.950195312 256.379882812 256.650390625 256.73046875 256.780273438 256.900390625 257.009765625 257.030273438 257.030273438 257.059570312 257.01953125 256.709960938 256.08984375 255.200195312 254.110351562 252.849609375 251.490234375 256.020019531 256.489746094 256.720214844 256.800292969 256.920410156 257.109863281 257.300292969 257.439941406 257.529785156 257.539550781 257.380371094 257.029785156 256.499511719 255.77003479 254.829605103 253.710464478 252.44972229 256.100036621 256.579528809 256.819763184 256.859802246 256.840270996 256.890075684 256.989685059 257.090270996 257.189880371 257.220153809 257.140075684 256.890075684 256.529724121 256.000427246 255.170349121 254.040466309 252.790466309 256.0703125 256.540039062 256.76953125 256.799804688 256.809570312 256.900390625 256.959960938 256.98046875 256.990234375 257.01953125 256.959960938 256.6796875 256.139648438 255.349609375 254.330078125 253.110351562 251.76953125 256.170410156 256.649902344 256.819824219 256.829589844 256.920410156 257.119628906 257.329589844 257.489746094 257.600097656 257.609863281 257.460449219 257.109863281 256.600097656 255.920425415 255.03956604 253.960464478 252.729995728 256.149841309 256.670349121 256.920349121 256.930114746 256.869567871 256.909606934 257.019958496 257.149841309 257.250427246 257.269958496 257.119567871 256.819763184 256.460388184 256.010192871 255.260192871 254.149841309 252.840270996 256.26953125 256.719726562 256.889648438 256.879882812 256.860351562 256.900390625 256.9296875 256.969726562 257.040039062 257.08984375 257.009765625 256.73046875 256.25 255.530273438 254.559570312 253.379882812 252.030273438 256.369628906 256.819824219 256.899902344 256.850097656 256.909667969 257.130371094 257.369628906 257.539550781 257.640136719 257.640136719 257.489746094 257.140136719 256.659667969 256.039550781 255.210464478 254.159683228 252.960464478 256.290466309 256.809997559 257.019958496 256.989685059 256.909606934 256.939880371 257.059997559 257.199645996 257.309997559 257.309997559 257.100036621 256.750427246 256.399841309 256.029724121 255.350036621 254.220153809 252.819763184 256.459960938 256.870117188 256.969726562 256.919921875 256.889648438 256.900390625 256.9296875 257.0 257.120117188 257.200195312 257.110351562 256.830078125 256.389648438 255.73046875 254.809570312 253.639648438 252.299804688 256.560058594 256.970214844 256.979980469 256.869628906 256.920410156 257.159667969 257.399902344 257.550292969 257.640136719 257.649902344 257.510253906 257.180175781 256.729980469 256.149902344 255.34034729 254.300308228 253.119644165 256.449645996 256.909606934 257.040466309 256.970153809 256.899841309 256.949645996 257.050231934 257.180114746 257.290466309 257.279724121 257.059997559 256.680114746 256.359802246 256.029724121 255.390075684 254.239685059 252.739685059 256.650390625 256.98046875 257.009765625 256.9296875 256.879882812 256.889648438 256.940429688 257.049804688 257.1796875 257.240234375 257.129882812 256.870117188 256.469726562 255.879882812 255.0 253.870117188 252.549804688 256.630371094 257.020019531 257.010253906 256.909667969 256.970214844 257.189941406 257.399902344 257.510253906 257.600097656 257.640136719 257.539550781 257.249511719 256.819824219 256.249511719 255.460464478 254.43019104 253.260269165 256.550231934 256.909606934 256.970153809 256.909606934 256.880310059 256.939880371 257.040466309 257.130310059 257.229919434 257.229919434 257.019958496 256.659606934 256.319763184 256.000427246 255.380310059 254.199645996 252.649841309 256.780273438 257.099609375 257.080078125 256.940429688 256.849609375 256.860351562 256.950195312 257.080078125 257.1796875 257.190429688 257.059570312 256.8203125 256.48046875 255.950195312 255.129882812 254.049804688 252.759765625 256.600097656 257.010253906 257.069824219 256.989746094 257.050292969 257.229980469 257.369628906 257.449707031 257.550292969 257.649902344 257.590332031 257.310058594 256.869628906 256.319824219 255.579605103 254.600112915 253.460464478 256.590270996 256.859802246 256.909606934 256.880310059 256.899841309 256.979919434 257.069763184 257.140075684 257.229919434 257.260192871 257.069763184 256.710388184 256.340270996 255.979919434 255.329528809 254.170349121 252.609802246 256.870117188 257.209960938 257.190429688 257.0 256.849609375 256.83984375 256.959960938 257.110351562 257.1796875 257.150390625 257.009765625 256.799804688 256.490234375 255.98046875 255.219726562 254.200195312 252.9296875 256.579589844 257.060058594 257.189941406 257.149902344 257.149902344 257.229980469 257.289550781 257.369628906 257.520019531 257.670410156 257.619628906 257.310058594 256.859863281 256.350097656 255.689956665 254.810073853 253.710464478 256.630310059 256.859802246 256.930114746 256.939880371 256.970153809 257.050231934 257.140075684 257.229919434 257.340270996 257.369567871 257.210388184 256.829528809 256.399841309 255.949645996 255.260192871 254.149841309 252.649841309 256.900390625 257.309570312 257.3203125 257.08984375 256.879882812 256.849609375 256.969726562 257.129882812 257.190429688 257.16015625 257.049804688 256.860351562 256.549804688 256.030273438 255.290039062 254.3203125 253.0703125 256.749511719 257.289550781 257.449707031 257.359863281 257.249511719 257.199707031 257.189941406 257.289550781 257.499511719 257.680175781 257.630371094 257.289550781 256.819824219 256.359863281 255.779800415 254.979995728 253.920425415 256.750427246 256.979919434 257.059997559 257.069763184 257.050231934 257.079528809 257.180114746 257.300231934 257.409606934 257.439880371 257.290466309 256.930114746 256.439880371 255.880310059 255.159606934 254.100036621 252.710388184 256.9296875 257.379882812 257.440429688 257.219726562 256.969726562 256.900390625 257.0 257.129882812 257.1796875 257.169921875 257.110351562 256.950195312 256.599609375 256.059570312 255.33984375 254.419921875 253.169921875 257.119628906 257.640136719 257.749511719 257.560058594 257.319824219 257.140136719 257.090332031 257.189941406 257.430175781 257.640136719 257.569824219 257.229980469 256.800292969 256.359863281 255.829605103 255.079605103 254.069839478 256.859802246 257.130310059 257.250427246 257.220153809 257.119567871 257.079528809 257.149841309 257.279724121 257.369567871 257.369567871 257.250427246 256.920349121 256.409606934 255.790466309 255.010192871 254.010192871 252.729919434 257.01953125 257.459960938 257.540039062 257.349609375 257.08984375 256.98046875 257.030273438 257.120117188 257.139648438 257.150390625 257.099609375 256.940429688 256.580078125 256.030273438 255.33984375 254.459960938 253.23046875 257.510253906 257.970214844 257.979980469 257.699707031 257.369628906 257.100097656 256.999511719 257.069824219 257.289550781 257.460449219 257.420410156 257.149902344 256.789550781 256.369628906 255.850112915 255.149917603 254.18019104 256.880310059 257.239685059 257.409606934 257.359802246 257.199645996 257.100036621 257.140075684 257.220153809 257.260192871 257.239685059 257.130310059 256.869567871 256.390075684 255.720153809 254.920349121 253.930114746 252.699645996 257.169921875 257.580078125 257.650390625 257.459960938 257.219726562 257.0703125 257.059570312 257.080078125 257.08984375 257.080078125 257.040039062 256.879882812 256.509765625 255.969726562 255.3203125 254.450195312 253.219726562 257.749511719 258.109863281 258.039550781 257.720214844 257.359863281 257.090332031 256.970214844 256.989746094 257.119628906 257.220214844 257.199707031 257.029785156 256.739746094 256.350097656 255.829605103 255.189956665 254.329605103 256.829528809 257.250427246 257.470153809 257.439880371 257.279724121 257.170349121 257.170349121 257.210388184 257.210388184 257.180114746 257.100036621 256.890075684 256.449645996 255.790466309 254.960388184 253.949645996 252.670349121 257.33984375 257.6796875 257.740234375 257.5703125 257.309570312 257.110351562 257.049804688 257.049804688 257.0703125 257.0703125 257.01953125 256.83984375 256.469726562 255.940429688 255.280273438 254.400390625 253.169921875 257.789550781 258.079589844 257.960449219 257.640136719 257.319824219 257.100097656 256.979980469 256.949707031 256.989746094 257.020019531 256.999511719 256.899902344 256.670410156 256.289550781 255.810073853 255.249526978 254.470230103 256.790466309 257.229919434 257.460388184 257.449645996 257.319763184 257.210388184 257.199645996 257.210388184 257.220153809 257.220153809 257.170349121 256.979919434 256.559997559 255.920349121 255.079528809 254.029724121 252.689880371 257.41015625 257.73046875 257.790039062 257.620117188 257.33984375 257.099609375 256.990234375 257.01953125 257.0703125 257.080078125 257.01953125 256.830078125 256.469726562 255.940429688 255.25 254.33984375 253.0703125 257.760253906 257.979980469 257.840332031 257.550292969 257.260253906 257.060058594 256.979980469 256.949707031 256.939941406 256.909667969 256.869628906 256.800292969 256.590332031 256.220214844 255.749526978 255.260269165 254.53956604 256.840270996 257.250427246 257.439880371 257.420349121 257.300231934 257.199645996 257.170349121 257.180114746 257.220153809 257.250427246 257.199645996 257.000427246 256.579528809 255.960388184 255.119567871 254.059997559 252.710388184 257.389648438 257.719726562 257.780273438 257.620117188 257.309570312 257.030273438 256.9296875 256.98046875 257.059570312 257.0703125 256.990234375 256.780273438 256.440429688 255.91015625 255.200195312 254.25 252.959960938 257.739746094 257.920410156 257.770019531 257.460449219 257.170410156 256.979980469 256.939941406 256.939941406 256.909667969 256.850097656 256.810058594 256.749511719 256.560058594 256.189941406 255.720230103 255.210464478 254.499526978 256.960388184 257.329528809 257.460388184 257.420349121 257.300231934 257.199645996 257.140075684 257.130310059 257.170349121 257.189880371 257.119567871 256.899841309 256.489685059 255.869567871 255.040466309 253.970153809 252.659606934 257.379882812 257.73046875 257.809570312 257.629882812 257.26953125 256.969726562 256.870117188 256.940429688 257.030273438 257.01953125 256.91015625 256.700195312 256.360351562 255.83984375 255.120117188 254.16015625 252.860351562 257.739746094 257.890136719 257.729980469 257.399902344 257.079589844 256.899902344 256.880371094 256.899902344 256.869628906 256.800292969 256.760253906 256.729980469 256.569824219 256.220214844 255.739761353 255.18019104 254.409683228 257.029724121 257.409606934 257.519958496 257.470153809 257.359802246 257.260192871 257.180114746 257.140075684 257.119567871 257.090270996 257.010192871 256.790466309 256.390075684 255.769958496 254.899841309 253.829528809 252.590270996 257.440429688 257.790039062 257.860351562 257.639648438 257.25 256.940429688 256.849609375 256.919921875 256.990234375 256.950195312 256.830078125 256.639648438 256.299804688 255.790039062 255.080078125 254.120117188 252.799804688 257.710449219 257.850097656 257.689941406 257.350097656 257.020019531 256.859863281 256.859863281 256.869628906 256.810058594 256.729980469 256.710449219 256.720214844 256.600097656 256.289550781 255.810073853 255.189956665 254.34034729 257.029724121 257.460388184 257.590270996 257.540466309 257.430114746 257.350036621 257.269958496 257.189880371 257.109802246 257.029724121 256.939880371 256.760192871 256.390075684 255.750427246 254.840270996 253.750427246 252.550231934 257.490234375 257.860351562 257.91015625 257.639648438 257.219726562 256.91015625 256.83984375 256.919921875 256.950195312 256.900390625 256.799804688 256.620117188 256.290039062 255.76953125 255.0703125 254.120117188 252.799804688 257.640136719 257.800292969 257.649902344 257.310058594 256.979980469 256.859863281 256.859863281 256.840332031 256.749511719 256.680175781 256.699707031 256.720214844 256.609863281 256.329589844 255.880386353 255.220230103 254.310073853 257.010192871 257.489685059 257.630310059 257.559997559 257.439880371 257.350036621 257.300231934 257.210388184 257.109802246 257.010192871 256.909606934 256.760192871 256.420349121 255.779724121 254.859802246 253.760192871 252.550231934 257.440429688 257.83984375 257.889648438 257.610351562 257.190429688 256.889648438 256.830078125 256.879882812 256.879882812 256.830078125 256.75 256.599609375 256.26953125 255.75 255.059570312 254.139648438 252.849609375 257.600097656 257.760253906 257.630371094 257.270019531 256.939941406 256.819824219 256.840332031 256.810058594 256.720214844 256.680175781 256.699707031 256.699707031 256.560058594 256.300292969 255.890151978 255.239761353 254.27003479 257.010192871 257.500427246 257.630310059 257.529724121 257.380310059 257.269958496 257.239685059 257.170349121 257.069763184 256.970153809 256.869567871 256.699645996 256.340270996 255.710388184 254.829528809 253.769958496 252.550231934 257.26953125 257.709960938 257.799804688 257.540039062 257.139648438 256.870117188 256.8203125 256.83984375 256.790039062 256.740234375 256.6796875 256.540039062 256.200195312 255.669921875 255.0 254.120117188 252.900390625 257.550292969 257.770019531 257.649902344 257.279785156 256.899902344 256.760253906 256.789550781 256.770019531 256.699707031 256.680175781 256.720214844 256.689941406 256.520019531 256.249511719 255.85987854 255.229995728 254.229995728 257.029724121 257.479919434 257.590270996 257.489685059 257.319763184 257.199645996 257.149841309 257.130310059 257.050231934 256.949645996 256.829528809 256.600036621 256.170349121 255.540466309 254.710388184 253.710388184 252.510192871 257.0 257.51953125 257.700195312 257.5 257.139648438 256.879882812 256.8203125 256.809570312 256.719726562 256.650390625 256.620117188 256.490234375 256.150390625 255.610351562 254.940429688 254.08984375 252.91015625 257.479980469 257.760253906 257.699707031 257.319824219 256.890136719 256.710449219 256.739746094 256.770019531 256.720214844 256.710449219 256.739746094 256.699707031 256.520019531 256.260253906 255.880386353 255.229995728 254.18019104 257.019958496 257.420349121 257.550231934 257.489685059 257.329528809 257.180114746 257.130310059 257.109802246 257.059997559 256.970153809 256.800231934 256.519958496 256.050231934 255.409606934 254.600036621 253.619567871 252.409606934 256.73046875 257.349609375 257.620117188 257.48046875 257.129882812 256.879882812 256.8203125 256.780273438 256.690429688 256.629882812 256.620117188 256.51953125 256.190429688 255.639648438 254.9296875 254.030273438 252.849609375 257.340332031 257.699707031 257.720214844 257.359863281 256.920410156 256.710449219 256.749511719 256.800292969 256.760253906 256.729980469 256.760253906 256.739746094 256.600097656 256.350097656 255.94972229 255.239761353 254.140151978 256.949645996 257.319763184 257.500427246 257.500427246 257.340270996 257.170349121 257.090270996 257.079528809 257.050231934 256.970153809 256.809997559 256.529724121 256.050231934 255.399841309 254.590270996 253.559997559 252.319763184 256.469726562 257.190429688 257.559570312 257.459960938 257.110351562 256.870117188 256.790039062 256.759765625 256.6796875 256.650390625 256.6796875 256.610351562 256.299804688 255.73046875 254.950195312 253.959960938 252.75 257.180175781 257.609863281 257.699707031 257.380371094 256.930175781 256.710449219 256.760253906 256.819824219 256.779785156 256.749511719 256.800292969 256.819824219 256.720214844 256.479980469 256.020019531 255.220230103 254.060073853 256.880310059 257.260192871 257.479919434 257.500427246 257.319763184 257.100036621 257.010192871 257.000427246 257.000427246 256.930114746 256.800231934 256.550231934 256.119567871 255.489685059 254.640075684 253.540466309 252.229919434 256.259765625 257.059570312 257.48046875 257.419921875 257.08984375 256.83984375 256.76953125 256.740234375 256.690429688 256.6796875 256.73046875 256.6796875 256.379882812 255.790039062 254.959960938 253.889648438 252.629882812 257.039550781 257.510253906 257.649902344 257.359863281 256.920410156 256.710449219 256.749511719 256.800292969 256.749511719 256.749511719 256.829589844 256.899902344 256.810058594 256.550292969 256.029785156 255.170425415 253.960464478 256.850036621 257.279724121 257.510192871 257.500427246 257.279724121 257.029724121 256.920349121 256.920349121 256.909606934 256.869567871 256.769958496 256.559997559 256.149841309 255.529724121 254.659606934 253.529724121 252.180114746 256.120117188 256.959960938 257.419921875 257.370117188 257.0703125 256.830078125 256.759765625 256.719726562 256.6796875 256.709960938 256.759765625 256.6796875 256.349609375 255.76953125 254.9296875 253.830078125 252.51953125 256.960449219 257.460449219 257.600097656 257.329589844 256.909667969 256.710449219 256.710449219 256.739746094 256.699707031 256.739746094 256.880371094 256.960449219 256.850097656 256.550292969 255.999526978 255.130386353 253.899917603 256.840270996 257.319763184 257.550231934 257.510192871 257.250427246 257.000427246 256.899841309 256.880310059 256.869567871 256.840270996 256.760192871 256.550231934 256.119567871 255.479919434 254.630310059 253.510192871 252.159606934 256.0703125 256.900390625 257.349609375 257.3203125 257.049804688 256.830078125 256.73046875 256.669921875 256.650390625 256.700195312 256.759765625 256.639648438 256.290039062 255.719726562 254.91015625 253.799804688 252.4296875 256.899902344 257.449707031 257.609863281 257.340332031 256.939941406 256.720214844 256.710449219 256.699707031 256.670410156 256.749511719 256.920410156 256.989746094 256.859863281 256.529785156 255.999526978 255.130386353 253.85987854 256.779724121 257.309997559 257.529724121 257.460388184 257.229919434 257.019958496 256.930114746 256.880310059 256.850036621 256.840270996 256.790466309 256.559997559 256.100036621 255.439880371 254.609802246 253.529724121 252.199645996 256.099609375 256.900390625 257.299804688 257.25 257.0 256.799804688 256.690429688 256.610351562 256.58984375 256.6796875 256.740234375 256.620117188 256.280273438 255.740234375 254.950195312 253.790039062 252.3203125 256.840332031 257.479980469 257.670410156 257.399902344 256.989746094 256.760253906 256.720214844 256.699707031 256.680175781 256.779785156 256.960449219 257.020019531 256.859863281 256.550292969 256.029785156 255.159683228 253.819839478 256.689880371 257.269958496 257.489685059 257.399841309 257.210388184 257.040466309 256.939880371 256.859802246 256.829528809 256.869567871 256.850036621 256.609802246 256.130310059 255.479919434 254.670349121 253.609802246 252.269958496 256.190429688 256.9296875 257.25 257.169921875 256.940429688 256.76953125 256.650390625 256.549804688 256.540039062 256.650390625 256.740234375 256.639648438 256.309570312 255.799804688 255.01953125 253.780273438 252.190429688 256.840332031 257.560058594 257.779785156 257.479980469 257.029785156 256.779785156 256.729980469 256.720214844 256.720214844 256.829589844 256.979980469 257.020019531 256.880371094 256.590332031 256.100097656 255.170425415 253.739761353 256.630310059 257.239685059 257.460388184 257.369567871 257.180114746 257.029724121 256.930114746 256.850036621 256.840270996 256.909606934 256.920349121 256.689880371 256.229919434 255.609802246 254.800231934 253.720153809 252.340270996 256.280273438 256.959960938 257.23046875 257.129882812 256.900390625 256.740234375 256.639648438 256.540039062 256.530273438 256.629882812 256.73046875 256.650390625 256.360351562 255.870117188 255.049804688 253.740234375 252.049804688 256.920410156 257.680175781 257.899902344 257.560058594 257.060058594 256.779785156 256.739746094 256.760253906 256.779785156 256.869628906 256.999511719 257.020019531 256.890136719 256.640136719 256.140136719 255.170425415 253.670425415 256.600036621 257.239685059 257.489685059 257.390075684 257.170349121 257.010192871 256.909606934 256.869567871 256.890075684 256.970153809 256.989685059 256.779724121 256.359802246 255.760192871 254.949645996 253.829528809 252.430114746 256.379882812 257.0 257.240234375 257.120117188 256.900390625 256.740234375 256.639648438 256.559570312 256.530273438 256.610351562 256.690429688 256.629882812 256.370117188 255.889648438 255.059570312 253.709960938 251.98046875 257.079589844 257.800292969 257.979980469 257.590332031 257.069824219 256.800292969 256.779785156 256.829589844 256.869628906 256.960449219 257.039550781 257.029785156 256.909667969 256.680175781 256.180175781 255.189956665 253.689956665 256.559997559 257.229919434 257.500427246 257.399841309 257.149841309 256.970153809 256.890075684 256.880310059 256.939880371 257.019958496 257.029724121 256.840270996 256.449645996 255.869567871 255.050231934 253.939880371 252.559997559 256.490234375 257.0703125 257.280273438 257.139648438 256.889648438 256.709960938 256.620117188 256.540039062 256.509765625 256.5703125 256.650390625 256.610351562 256.370117188 255.91015625 255.08984375 253.75 252.009765625 257.220214844 257.880371094 257.979980469 257.569824219 257.069824219 256.829589844 256.840332031 256.899902344 256.939941406 257.029785156 257.109863281 257.069824219 256.930175781 256.699707031 256.220214844 255.239761353 253.760269165 256.470153809 257.159606934 257.449645996 257.359802246 257.090270996 256.890075684 256.840270996 256.840270996 256.909606934 257.010192871 257.040466309 256.890075684 256.510192871 255.939880371 255.140075684 254.090270996 252.769958496 256.599609375 257.129882812 257.299804688 257.139648438 256.849609375 256.650390625 256.549804688 256.48046875 256.440429688 256.5 256.599609375 256.599609375 256.41015625 255.98046875 255.16015625 253.849609375 252.08984375 257.329589844 257.880371094 257.909667969 257.499511719 257.060058594 256.869628906 256.899902344 256.920410156 256.960449219 257.050292969 257.140136719 257.100097656 256.949707031 256.739746094 256.279785156 255.319839478 253.819839478 256.380310059 257.059997559 257.390075684 257.290466309 257.019958496 256.800231934 256.729919434 256.750427246 256.840270996 256.960388184 257.029724121 256.930114746 256.590270996 256.040466309 255.279724121 254.279724121 253.029724121 256.6796875 257.150390625 257.26953125 257.080078125 256.759765625 256.549804688 256.459960938 256.400390625 256.360351562 256.41015625 256.549804688 256.610351562 256.459960938 256.049804688 255.26953125 253.950195312 252.1796875 257.399902344 257.859863281 257.829589844 257.420410156 257.020019531 256.890136719 256.909667969 256.899902344 256.909667969 257.020019531 257.119628906 257.100097656 256.979980469 256.800292969 256.359863281 255.380386353 253.819839478 256.350036621 257.050231934 257.380310059 257.290466309 256.970153809 256.710388184 256.630310059 256.670349121 256.779724121 256.930114746 257.040466309 256.979919434 256.689880371 256.180114746 255.470153809 254.519958496 253.300231934 256.700195312 257.099609375 257.1796875 256.959960938 256.639648438 256.440429688 256.389648438 256.360351562 256.299804688 256.33984375 256.490234375 256.58984375 256.5 256.129882812 255.360351562 254.080078125 252.309570312 257.460449219 257.869628906 257.779785156 257.369628906 256.999511719 256.890136719 256.890136719 256.859863281 256.869628906 256.989746094 257.100097656 257.100097656 257.020019531 256.880371094 256.460449219 255.470230103 253.85987854 256.359802246 257.100036621 257.449645996 257.319763184 256.939880371 256.640075684 256.550231934 256.619567871 256.750427246 256.909606934 257.010192871 256.960388184 256.750427246 256.350036621 255.720153809 254.800231934 253.569763184 256.66015625 257.030273438 257.080078125 256.830078125 256.5 256.3203125 256.3203125 256.330078125 256.280273438 256.299804688 256.4296875 256.559570312 256.51953125 256.190429688 255.48046875 254.240234375 252.540039062 257.590332031 257.960449219 257.829589844 257.399902344 257.029785156 256.909667969 256.880371094 256.850097656 256.869628906 256.989746094 257.109863281 257.130371094 257.090332031 256.989746094 256.579589844 255.60987854 254.02003479 256.399841309 257.170349121 257.510192871 257.359802246 256.930114746 256.559997559 256.449645996 256.550231934 256.720153809 256.850036621 256.880310059 256.840270996 256.720153809 256.470153809 255.970153809 255.100036621 253.859802246 256.580078125 256.950195312 257.030273438 256.76953125 256.41015625 256.219726562 256.240234375 256.299804688 256.280273438 256.290039062 256.419921875 256.559570312 256.549804688 256.259765625 255.620117188 254.509765625 252.919921875 257.789550781 258.149902344 257.999511719 257.569824219 257.149902344 256.939941406 256.859863281 256.829589844 256.890136719 257.020019531 257.140136719 257.180175781 257.180175781 257.079589844 256.689941406 255.78956604 254.310073853 256.449645996 257.199645996 257.519958496 257.350036621 256.899841309 256.500427246 256.369567871 256.460388184 256.630310059 256.699645996 256.659606934 256.619567871 256.619567871 256.540466309 256.170349121 255.380310059 254.220153809 256.469726562 256.91015625 257.0703125 256.83984375 256.440429688 256.190429688 256.200195312 256.280273438 256.299804688 256.330078125 256.450195312 256.58984375 256.580078125 256.349609375 255.799804688 254.83984375 253.4296875 258.060058594 258.399902344 258.249511719 257.819824219 257.359863281 257.020019531 256.829589844 256.779785156 256.869628906 256.999511719 257.119628906 257.199707031 257.249511719 257.159667969 256.770019531 255.960464478 254.619644165 256.529724121 257.229919434 257.500427246 257.329528809 256.890075684 256.489685059 256.309997559 256.380310059 256.519958496 256.529724121 256.449645996 256.430114746 256.529724121 256.579528809 256.319763184 255.619567871 254.559997559 256.349609375 256.900390625 257.169921875 257.009765625 256.599609375 256.299804688 256.240234375 256.299804688 256.33984375 256.379882812 256.5 256.620117188 256.629882812 256.4296875 255.990234375 255.209960938 253.98046875 258.279785156 258.590332031 258.470214844 258.069824219 257.569824219 257.109863281 256.800292969 256.710449219 256.779785156 256.880371094 256.979980469 257.130371094 257.270019531 257.220214844 256.850097656 256.119628906 254.909683228 256.670349121 257.300231934 257.500427246 257.329528809 256.920349121 256.510192871 256.290466309 256.300231934 256.409606934 256.399841309 256.300231934 256.309997559 256.500427246 256.630310059 256.420349121 255.809997559 254.859802246 256.190429688 256.870117188 257.25 257.190429688 256.8203125 256.459960938 256.3203125 256.330078125 256.360351562 256.400390625 256.509765625 256.629882812 256.66015625 256.509765625 256.16015625 255.559570312 254.509765625 258.399902344 258.640136719 258.539550781 258.210449219 257.699707031 257.149902344 256.770019531 256.649902344 256.670410156 256.689941406 256.749511719 256.949707031 257.210449219 257.270019531 256.979980469 256.319824219 255.18019104 256.819763184 257.369567871 257.529724121 257.359802246 256.970153809 256.529724121 256.250427246 256.220153809 256.290466309 256.279724121 256.189880371 256.229919434 256.470153809 256.659606934 256.519958496 255.989685059 255.130310059 256.0 256.76953125 257.259765625 257.299804688 257.0 256.620117188 256.41015625 256.360351562 256.360351562 256.389648438 256.490234375 256.610351562 256.669921875 256.580078125 256.3203125 255.860351562 254.98046875 258.399902344 258.550292969 258.470214844 258.189941406 257.699707031 257.140136719 256.760253906 256.630371094 256.600097656 256.520019531 256.499511719 256.739746094 257.100097656 257.289550781 257.119628906 256.569824219 255.510269165 256.930114746 257.449645996 257.590270996 257.430114746 257.040466309 256.550231934 256.199645996 256.119567871 256.199645996 256.189880371 256.100036621 256.159606934 256.439880371 256.680114746 256.619567871 256.199645996 255.420349121 255.83984375 256.639648438 257.1796875 257.3203125 257.110351562 256.759765625 256.490234375 256.379882812 256.370117188 256.389648438 256.459960938 256.58984375 256.6796875 256.650390625 256.440429688 256.080078125 255.33984375 258.319824219 258.409667969 258.350097656 258.100097656 257.630371094 257.090332031 256.739746094 256.640136719 256.569824219 256.420410156 256.350097656 256.569824219 256.979980469 257.270019531 257.239746094 256.819824219 255.880386353 256.970153809 257.519958496 257.720153809 257.590270996 257.180114746 256.630310059 256.199645996 256.090270996 256.170349121 256.180114746 256.100036621 256.140075684 256.420349121 256.699645996 256.729919434 256.409606934 255.729919434 255.6796875 256.5 257.0703125 257.3203125 257.219726562 256.889648438 256.580078125 256.419921875 256.400390625 256.419921875 256.469726562 256.58984375 256.700195312 256.6796875 256.509765625 256.219726562 255.620117188 258.210449219 258.340332031 258.310058594 258.060058594 257.569824219 257.060058594 256.739746094 256.649902344 256.569824219 256.399902344 256.329589844 256.520019531 256.920410156 257.220214844 257.260253906 256.979980469 256.210449219 257.000427246 257.630310059 257.890075684 257.809997559 257.399841309 256.790466309 256.269958496 256.109802246 256.210388184 256.269958496 256.210388184 256.239685059 256.479919434 256.760192871 256.829528809 256.600036621 256.019958496 255.559570312 256.379882812 257.0 257.349609375 257.330078125 257.01953125 256.66015625 256.459960938 256.4296875 256.459960938 256.509765625 256.610351562 256.719726562 256.709960938 256.549804688 256.309570312 255.860351562 258.109863281 258.340332031 258.359863281 258.079589844 257.550292969 257.039550781 256.739746094 256.640136719 256.560058594 256.430175781 256.399902344 256.590332031 256.899902344 257.140136719 257.199707031 257.029785156 256.420410156 257.050231934 257.760192871 258.100036621 258.029724121 257.619567871 256.970153809 256.399841309 256.180114746 256.250427246 256.350036621 256.359802246 256.420349121 256.630310059 256.850036621 256.899841309 256.720153809 256.239685059 255.459960938 256.33984375 257.009765625 257.4296875 257.450195312 257.110351562 256.690429688 256.469726562 256.459960938 256.51953125 256.580078125 256.650390625 256.73046875 256.719726562 256.58984375 256.419921875 256.120117188 257.989746094 258.359863281 258.430175781 258.119628906 257.560058594 257.029785156 256.749511719 256.619628906 256.529785156 256.460449219 256.510253906 256.689941406 256.909667969 257.069824219 257.109863281 257.020019531 256.569824219 257.090270996 257.869567871 258.220153809 258.180114746 257.779724121 257.140075684 256.550231934 256.250427246 256.269958496 256.380310059 256.460388184 256.569763184 256.769958496 256.939880371 256.949645996 256.790466309 256.369567871 255.370117188 256.33984375 257.080078125 257.509765625 257.5 257.139648438 256.6796875 256.459960938 256.490234375 256.58984375 256.66015625 256.690429688 256.719726562 256.700195312 256.620117188 256.549804688 256.389648438 257.859863281 258.340332031 258.439941406 258.100097656 257.539550781 257.039550781 256.749511719 256.600097656 256.499511719 256.479980469 256.569824219 256.749511719 256.909667969 257.020019531 257.060058594 257.029785156 256.710449219 257.130310059 257.909606934 258.269958496 258.239685059 257.890075684 257.300231934 256.720153809 256.380310059 256.319763184 256.409606934 256.519958496 256.659606934 256.859802246 257.019958496 257.019958496 256.850036621 256.489685059 255.309570312 256.389648438 257.16015625 257.559570312 257.51953125 257.139648438 256.73046875 256.540039062 256.58984375 256.709960938 256.740234375 256.700195312 256.690429688 256.669921875 256.620117188 256.639648438 256.620117188 257.729980469 258.249511719 258.350097656 258.029785156 257.529785156 257.100097656 256.800292969 256.579589844 256.449707031 256.449707031 256.579589844 256.760253906 256.880371094 256.970214844 257.050292969 257.079589844 256.880371094 257.210388184 257.939880371 258.279724121 258.290466309 258.000427246 257.470153809 256.930114746 256.559997559 256.449645996 256.489685059 256.579528809 256.720153809 256.909606934 257.079528809 257.079528809 256.930114746 256.609802246 255.280273438 256.440429688 257.240234375 257.580078125 257.540039062 257.219726562 256.879882812 256.700195312 256.73046875 256.799804688 256.780273438 256.690429688 256.629882812 256.610351562 256.610351562 256.6796875 256.75 257.659667969 258.130371094 258.220214844 257.999511719 257.619628906 257.249511719 256.909667969 256.619628906 256.409667969 256.420410156 256.560058594 256.720214844 256.850097656 256.960449219 257.069824219 257.149902344 257.039550781 257.329528809 257.989685059 258.329528809 258.369567871 258.130310059 257.640075684 257.109802246 256.750427246 256.619567871 256.630310059 256.680114746 256.769958496 256.939880371 257.109802246 257.140075684 256.989685059 256.720153809 255.290039062 256.509765625 257.290039062 257.620117188 257.620117188 257.389648438 257.08984375 256.860351562 256.790039062 256.799804688 256.75 256.66015625 256.610351562 256.610351562 256.629882812 256.709960938 256.8203125 257.680175781 258.069824219 258.159667969 258.039550781 257.789550781 257.470214844 257.090332031 256.710449219 256.460449219 256.439941406 256.569824219 256.710449219 256.829589844 256.949707031 257.090332031 257.210449219 257.149902344 257.500427246 258.100036621 258.420349121 258.489685059 258.229919434 257.729919434 257.189880371 256.829528809 256.710388184 256.739685059 256.760192871 256.829528809 256.960388184 257.130310059 257.180114746 257.040466309 256.800231934 255.360351562 256.620117188 257.41015625 257.73046875 257.75 257.58984375 257.280273438 256.959960938 256.780273438 256.75 256.740234375 256.709960938 256.700195312 256.719726562 256.740234375 256.790039062 256.900390625 257.840332031 258.140136719 258.239746094 258.180175781 257.999511719 257.689941406 257.300292969 256.899902344 256.659667969 256.609863281 256.680175781 256.749511719 256.829589844 256.960449219 257.119628906 257.229980469 257.220214844 257.680114746 258.239685059 258.540466309 258.550231934 258.269958496 257.739685059 257.189880371 256.829528809 256.729919434 256.769958496 256.809997559 256.850036621 256.970153809 257.149841309 257.199645996 257.069763184 256.869567871 255.48046875 256.799804688 257.58984375 257.889648438 257.900390625 257.740234375 257.389648438 257.009765625 256.780273438 256.780273438 256.83984375 256.879882812 256.889648438 256.900390625 256.900390625 256.91015625 256.98046875 258.069824219 258.359863281 258.449707031 258.390136719 258.180175781 257.850097656 257.470214844 257.140136719 256.960449219 256.909667969 256.899902344 256.869628906 256.880371094 256.970214844 257.119628906 257.249511719 257.239746094 257.829528809 258.369567871 258.619567871 258.559997559 258.220153809 257.699645996 257.180114746 256.850036621 256.750427246 256.790466309 256.829528809 256.869567871 257.010192871 257.189880371 257.239685059 257.109802246 256.949645996 255.669921875 257.049804688 257.799804688 258.009765625 257.959960938 257.75 257.4296875 257.080078125 256.900390625 256.959960938 257.08984375 257.139648438 257.129882812 257.110351562 257.0703125 257.030273438 257.040039062 258.270019531 258.579589844 258.680175781 258.579589844 258.289550781 257.909667969 257.590332031 257.359863281 257.270019531 257.229980469 257.159667969 257.050292969 256.979980469 257.020019531 257.140136719 257.239746094 257.229980469 257.989685059 258.489685059 258.659606934 258.500427246 258.130310059 257.649841309 257.220153809 256.930114746 256.829528809 256.850036621 256.899841309 256.939880371 257.079528809 257.260192871 257.300231934 257.170349121 257.029724121 255.950195312 257.309570312 257.98046875 258.059570312 257.889648438 257.650390625 257.389648438 257.16015625 257.099609375 257.219726562 257.360351562 257.379882812 257.33984375 257.26953125 257.200195312 257.110351562 257.0703125 258.329589844 258.699707031 258.850097656 258.699707031 258.340332031 257.930175781 257.630371094 257.479980469 257.439941406 257.420410156 257.340332031 257.220214844 257.119628906 257.100097656 257.170410156 257.220214844 257.170410156 258.140075684 258.590270996 258.659606934 258.430114746 258.029724121 257.609802246 257.269958496 257.040466309 256.960388184 256.989685059 257.029724121 257.079528809 257.199645996 257.359802246 257.390075684 257.250427246 257.109802246 256.290039062 257.580078125 258.120117188 258.059570312 257.76953125 257.51953125 257.3203125 257.219726562 257.25 257.389648438 257.509765625 257.51953125 257.459960938 257.400390625 257.3203125 257.200195312 257.099609375 258.289550781 258.739746094 258.920410156 258.760253906 258.350097656 257.930175781 257.659667969 257.520019531 257.449707031 257.420410156 257.409667969 257.350097656 257.279785156 257.229980469 257.220214844 257.189941406 257.069824219 258.309997559 258.659606934 258.640075684 258.359802246 257.979919434 257.609802246 257.309997559 257.119567871 257.079528809 257.140075684 257.210388184 257.250427246 257.340270996 257.489685059 257.500427246 257.329528809 257.159606934 256.6796875 257.830078125 258.23046875 258.080078125 257.75 257.469726562 257.290039062 257.23046875 257.26953125 257.400390625 257.490234375 257.51953125 257.509765625 257.5 257.450195312 257.3203125 257.169921875 258.270019531 258.770019531 258.970214844 258.770019531 258.340332031 257.930175781 257.680175781 257.510253906 257.390136719 257.350097656 257.420410156 257.460449219 257.439941406 257.369628906 257.289550781 257.170410156 256.979980469 258.430114746 258.699645996 258.619567871 258.319763184 257.979919434 257.659606934 257.380310059 257.199645996 257.180114746 257.290466309 257.390075684 257.399841309 257.470153809 257.600036621 257.609802246 257.420349121 257.199645996 257.080078125 258.0703125 258.360351562 258.1796875 257.83984375 257.549804688 257.33984375 257.219726562 257.219726562 257.299804688 257.389648438 257.459960938 257.530273438 257.58984375 257.5703125 257.450195312 257.259765625 258.350097656 258.859863281 259.010253906 258.739746094 258.289550781 257.920410156 257.710449219 257.539550781 257.390136719 257.359863281 257.460449219 257.569824219 257.560058594 257.460449219 257.340332031 257.170410156 256.920410156 258.519958496 258.720153809 258.600036621 258.329528809 258.040466309 257.769958496 257.479919434 257.279724121 257.269958496 257.399841309 257.510192871 257.510192871 257.559997559 257.680114746 257.699645996 257.510192871 257.229919434 257.469726562 258.280273438 258.469726562 258.299804688 257.990234375 257.700195312 257.440429688 257.259765625 257.190429688 257.219726562 257.330078125 257.459960938 257.580078125 257.639648438 257.639648438 257.530273438 257.33984375 258.510253906 258.960449219 258.999511719 258.659667969 258.210449219 257.909667969 257.770019531 257.630371094 257.479980469 257.460449219 257.590332031 257.699707031 257.649902344 257.499511719 257.340332031 257.159667969 256.869628906 258.540466309 258.720153809 258.609802246 258.390075684 258.170349121 257.909606934 257.609802246 257.350036621 257.300231934 257.460388184 257.579528809 257.600036621 257.619567871 257.750427246 257.769958496 257.569763184 257.239685059 257.799804688 258.459960938 258.549804688 258.379882812 258.120117188 257.849609375 257.559570312 257.309570312 257.1796875 257.219726562 257.379882812 257.559570312 257.669921875 257.690429688 257.629882812 257.530273438 257.349609375 258.600097656 258.949707031 258.880371094 258.529785156 258.170410156 257.970214844 257.859863281 257.720214844 257.579589844 257.579589844 257.720214844 257.810058594 257.710449219 257.489746094 257.300292969 257.109863281 256.800292969 258.500427246 258.699645996 258.649841309 258.500427246 258.319763184 258.069763184 257.720153809 257.380310059 257.290466309 257.449645996 257.630310059 257.670349121 257.699645996 257.800231934 257.800231934 257.569763184 257.180114746 258.0703125 258.580078125 258.58984375 258.4296875 258.240234375 257.990234375 257.690429688 257.379882812 257.209960938 257.259765625 257.48046875 257.709960938 257.790039062 257.719726562 257.580078125 257.450195312 257.3203125 258.590332031 258.819824219 258.710449219 258.439941406 258.229980469 258.109863281 257.989746094 257.789550781 257.609863281 257.640136719 257.810058594 257.909667969 257.770019531 257.489746094 257.239746094 257.039550781 256.710449219 258.420349121 258.659606934 258.710388184 258.630310059 258.460388184 258.199645996 257.790466309 257.399841309 257.269958496 257.439880371 257.659606934 257.750427246 257.779724121 257.819763184 257.779724121 257.510192871 257.079528809 258.26953125 258.66015625 258.639648438 258.530273438 258.389648438 258.1796875 257.849609375 257.490234375 257.280273438 257.3203125 257.580078125 257.830078125 257.870117188 257.700195312 257.490234375 257.33984375 257.240234375 258.529785156 258.689941406 258.590332031 258.460449219 258.369628906 258.289550781 258.100097656 257.819824219 257.609863281 257.630371094 257.850097656 257.979980469 257.850097656 257.529785156 257.239746094 256.999511719 256.630371094 258.350036621 258.640075684 258.769958496 258.739685059 258.569763184 258.260192871 257.829528809 257.439880371 257.300231934 257.449645996 257.689880371 257.800231934 257.809997559 257.800231934 257.720153809 257.420349121 256.970153809 258.41015625 258.73046875 258.719726562 258.650390625 258.559570312 258.349609375 258.009765625 257.610351562 257.360351562 257.400390625 257.650390625 257.870117188 257.849609375 257.629882812 257.379882812 257.240234375 257.16015625 258.499511719 258.630371094 258.590332031 258.539550781 258.510253906 258.390136719 258.140136719 257.829589844 257.630371094 257.659667969 257.869628906 258.020019531 257.909667969 257.600097656 257.279785156 256.989746094 256.560058594 258.359802246 258.689880371 258.859802246 258.829528809 258.609802246 258.250427246 257.850036621 257.489685059 257.359802246 257.500427246 257.720153809 257.809997559 257.769958496 257.729919434 257.609802246 257.300231934 256.840270996 258.549804688 258.830078125 258.83984375 258.780273438 258.650390625 258.4296875 258.08984375 257.719726562 257.469726562 257.490234375 257.700195312 257.860351562 257.790039062 257.549804688 257.330078125 257.200195312 257.120117188 258.529785156 258.649902344 258.619628906 258.579589844 258.529785156 258.359863281 258.100097656 257.859863281 257.720214844 257.760253906 257.920410156 258.020019531 257.920410156 257.640136719 257.329589844 257.020019531 256.470214844 258.500427246 258.819763184 258.960388184 258.859802246 258.569763184 258.199645996 257.819763184 257.540466309 257.460388184 257.590270996 257.769958496 257.809997559 257.729919434 257.630310059 257.470153809 257.159606934 256.670349121 258.73046875 259.0 259.009765625 258.889648438 258.6796875 258.400390625 258.08984375 257.790039062 257.599609375 257.610351562 257.76953125 257.860351562 257.759765625 257.540039062 257.349609375 257.219726562 257.120117188 258.560058594 258.640136719 258.600097656 258.569824219 258.449707031 258.249511719 258.029785156 257.890136719 257.850097656 257.880371094 257.949707031 257.989746094 257.859863281 257.609863281 257.340332031 256.989746094 256.350097656 258.720153809 258.979919434 259.040466309 258.859802246 258.519958496 258.130310059 257.800231934 257.590270996 257.540466309 257.659606934 257.819763184 257.829528809 257.710388184 257.540466309 257.350036621 257.010192871 256.500427246 258.959960938 259.219726562 259.219726562 259.0 258.66015625 258.3203125 258.0703125 257.860351562 257.73046875 257.73046875 257.830078125 257.900390625 257.809570312 257.610351562 257.4296875 257.290039062 257.150390625 258.529785156 258.569824219 258.520019531 258.479980469 258.369628906 258.149902344 257.970214844 257.920410156 257.939941406 257.960449219 257.979980469 257.939941406 257.779785156 257.539550781 257.270019531 256.890136719 256.170410156 258.899841309 259.090270996 259.050231934 258.819763184 258.449645996 258.079528809 257.800231934 257.630310059 257.579528809 257.699645996 257.850036621 257.859802246 257.710388184 257.479919434 257.229919434 256.859802246 256.329528809 259.190429688 259.48046875 259.419921875 259.08984375 258.639648438 258.26953125 258.0703125 257.950195312 257.8203125 257.780273438 257.860351562 257.9296875 257.870117188 257.700195312 257.530273438 257.370117188 257.190429688 258.470214844 258.460449219 258.430175781 258.420410156 258.340332031 258.140136719 257.970214844 257.930175781 257.960449219 257.989746094 257.979980469 257.909667969 257.689941406 257.409667969 257.119628906 256.710449219 255.94972229 258.979919434 259.100036621 258.979919434 258.710388184 258.350036621 258.029724121 257.800231934 257.640075684 257.609802246 257.699645996 257.829528809 257.850036621 257.670349121 257.390075684 257.100036621 256.720153809 256.159606934 259.349609375 259.610351562 259.5 259.0703125 258.559570312 258.23046875 258.08984375 257.98046875 257.830078125 257.740234375 257.8203125 257.9296875 257.91015625 257.759765625 257.580078125 257.419921875 257.219726562 258.409667969 258.409667969 258.390136719 258.420410156 258.369628906 258.180175781 258.010253906 257.949707031 257.949707031 257.989746094 257.999511719 257.899902344 257.619628906 257.249511719 256.899902344 256.460449219 255.69972229 258.939880371 259.010192871 258.869567871 258.579528809 258.239685059 257.960388184 257.779724121 257.670349121 257.619567871 257.670349121 257.769958496 257.769958496 257.590270996 257.279724121 256.949645996 256.559997559 255.989685059 259.360351562 259.5703125 259.379882812 258.91015625 258.419921875 258.150390625 258.059570312 257.969726562 257.780273438 257.669921875 257.759765625 257.91015625 257.940429688 257.799804688 257.629882812 257.469726562 257.25 258.369628906 258.430175781 258.439941406 258.460449219 258.399902344 258.229980469 258.060058594 257.970214844 257.960449219 257.999511719 258.020019531 257.899902344 257.560058594 257.109863281 256.670410156 256.189941406 255.43019104 258.809997559 258.880310059 258.729919434 258.449645996 258.130310059 257.920349121 257.790466309 257.710388184 257.649841309 257.649841309 257.720153809 257.699645996 257.500427246 257.180114746 256.819763184 256.380310059 255.779724121 259.209960938 259.349609375 259.129882812 258.700195312 258.290039062 258.08984375 258.01953125 257.919921875 257.73046875 257.639648438 257.75 257.919921875 257.959960938 257.830078125 257.639648438 257.469726562 257.209960938 258.310058594 258.489746094 258.510253906 258.479980469 258.390136719 258.239746094 258.100097656 258.020019531 257.999511719 258.029785156 258.039550781 257.909667969 257.520019531 257.020019531 256.510253906 255.94972229 255.140151978 258.609802246 258.699645996 258.559997559 258.319763184 258.069763184 257.899841309 257.809997559 257.750427246 257.689880371 257.670349121 257.689880371 257.649841309 257.439880371 257.100036621 256.710388184 256.229919434 255.569763184 258.919921875 259.049804688 258.879882812 258.5703125 258.290039062 258.129882812 258.049804688 257.91015625 257.740234375 257.669921875 257.790039062 257.959960938 257.990234375 257.830078125 257.599609375 257.360351562 257.049804688 258.220214844 258.489746094 258.520019531 258.439941406 258.319824219 258.199707031 258.109863281 258.050292969 258.020019531 258.039550781 258.060058594 257.899902344 257.499511719 256.970214844 256.409667969 255.760269165 254.880386353 258.380310059 258.479919434 258.369567871 258.199645996 258.029724121 257.909606934 257.850036621 257.779724121 257.710388184 257.670349121 257.680114746 257.630310059 257.420349121 257.059997559 256.619567871 256.090270996 255.359802246 258.58984375 258.780273438 258.73046875 258.580078125 258.41015625 258.26953125 258.129882812 257.959960938 257.799804688 257.75 257.849609375 257.98046875 257.959960938 257.759765625 257.48046875 257.169921875 256.790039062 258.029785156 258.359863281 258.420410156 258.310058594 258.199707031 258.130371094 258.100097656 258.060058594 258.039550781 258.050292969 258.060058594 257.890136719 257.489746094 256.930175781 256.319824219 255.579605103 254.640151978 258.170349121 258.260192871 258.180114746 258.079528809 257.989685059 257.920349121 257.850036621 257.779724121 257.710388184 257.680114746 257.680114746 257.609802246 257.380310059 256.979919434 256.489685059 255.909606934 255.149841309 258.299804688 258.580078125 258.669921875 258.650390625 258.549804688 258.400390625 258.209960938 258.040039062 257.889648438 257.83984375 257.889648438 257.950195312 257.889648438 257.650390625 257.309570312 256.950195312 256.530273438 257.739746094 258.130371094 258.229980469 258.170410156 258.100097656 258.079589844 258.100097656 258.090332031 258.090332031 258.100097656 258.079589844 257.880371094 257.430175781 256.829589844 256.170410156 255.399917603 254.420425415 258.000427246 258.079528809 258.029724121 257.979919434 257.939880371 257.869567871 257.800231934 257.750427246 257.710388184 257.689880371 257.689880371 257.609802246 257.329528809 256.859802246 256.279724121 255.640075684 254.869567871 258.040039062 258.41015625 258.58984375 258.639648438 258.580078125 258.4296875 258.259765625 258.110351562 257.990234375 257.919921875 257.9296875 257.9296875 257.799804688 257.490234375 257.08984375 256.6796875 256.259765625 257.409667969 257.859863281 258.050292969 258.069824219 258.050292969 258.069824219 258.109863281 258.140136719 258.149902344 258.159667969 258.109863281 257.859863281 257.359863281 256.689941406 255.960464478 255.149917603 254.149917603 257.840270996 257.939880371 257.930114746 257.920349121 257.890075684 257.800231934 257.729919434 257.720153809 257.729919434 257.729919434 257.710388184 257.590270996 257.269958496 256.699645996 256.000427246 255.269958496 254.470153809 257.76953125 258.209960938 258.440429688 258.530273438 258.5 258.389648438 258.280273438 258.190429688 258.099609375 258.01953125 257.969726562 257.900390625 257.669921875 257.23046875 256.690429688 256.23046875 255.809570312 257.090332031 257.609863281 257.909667969 258.050292969 258.060058594 258.050292969 258.100097656 258.159667969 258.199707031 258.210449219 258.140136719 257.880371094 257.329589844 256.579589844 255.749526978 254.85987854 253.84034729 257.659606934 257.800231934 257.840270996 257.869567871 257.829528809 257.739685059 257.670349121 257.710388184 257.769958496 257.760192871 257.689880371 257.529724121 257.149841309 256.489685059 255.670349121 254.829528809 253.979919434 257.469726562 257.940429688 258.200195312 258.33984375 258.370117188 258.330078125 258.280273438 258.240234375 258.169921875 258.08984375 258.0 257.83984375 257.469726562 256.809570312 256.080078125 255.490234375 255.049804688 256.819824219 257.390136719 257.789550781 258.020019531 258.060058594 258.029785156 258.060058594 258.140136719 258.199707031 258.199707031 258.130371094 257.890136719 257.350097656 256.529785156 255.560073853 254.560073853 253.499526978 257.470153809 257.670349121 257.760192871 257.819763184 257.790466309 257.699645996 257.649841309 257.710388184 257.769958496 257.739685059 257.640075684 257.430114746 256.989685059 256.239685059 255.309997559 254.380310059 253.449645996 257.120117188 257.610351562 257.9296875 258.110351562 258.209960938 258.219726562 258.219726562 258.200195312 258.16015625 258.080078125 257.969726562 257.75 257.23046875 256.379882812 255.419921875 254.650390625 254.120117188 256.579589844 257.140136719 257.619628906 257.920410156 257.989746094 257.960449219 257.999511719 258.119628906 258.180175781 258.170410156 258.100097656 257.890136719 257.369628906 256.489746094 255.399917603 254.279800415 253.159683228 257.359802246 257.579528809 257.680114746 257.760192871 257.739685059 257.670349121 257.640075684 257.710388184 257.750427246 257.699645996 257.579528809 257.329528809 256.809997559 255.970153809 254.930114746 253.909606934 252.920349121 256.759765625 257.26953125 257.639648438 257.900390625 258.030273438 258.059570312 258.0703125 258.080078125 258.0703125 258.009765625 257.900390625 257.620117188 257.040039062 256.099609375 255.009765625 254.049804688 253.360351562 256.359863281 256.869628906 257.359863281 257.720214844 257.859863281 257.899902344 257.979980469 258.119628906 258.189941406 258.140136719 258.039550781 257.829589844 257.329589844 256.430175781 255.249526978 254.02003479 252.84034729 257.340270996 257.559997559 257.649841309 257.699645996 257.680114746 257.640075684 257.630310059 257.689880371 257.729919434 257.670349121 257.529724121 257.239685059 256.640075684 255.689880371 254.569763184 253.460388184 252.380310059 256.400390625 256.940429688 257.370117188 257.669921875 257.830078125 257.879882812 257.91015625 257.959960938 257.990234375 257.959960938 257.799804688 257.490234375 256.940429688 256.049804688 254.950195312 253.879882812 252.98046875 256.149902344 256.609863281 257.069824219 257.470214844 257.710449219 257.840332031 257.989746094 258.130371094 258.189941406 258.119628906 257.979980469 257.739746094 257.220214844 256.310058594 255.100112915 253.800308228 252.550308228 257.390075684 257.609802246 257.640075684 257.630310059 257.600036621 257.569763184 257.590270996 257.670349121 257.699645996 257.649841309 257.500427246 257.170349121 256.500427246 255.479919434 254.279724121 253.059997559 251.850036621 256.0703125 256.629882812 257.110351562 257.450195312 257.650390625 257.73046875 257.799804688 257.889648438 257.969726562 257.9296875 257.719726562 257.370117188 256.849609375 256.08984375 255.080078125 253.950195312 252.91015625 255.94972229 256.399902344 256.819824219 257.239746094 257.550292969 257.770019531 257.949707031 258.100097656 258.140136719 258.069824219 257.920410156 257.640136719 257.090332031 256.170410156 254.979995728 253.640151978 252.310073853 257.409606934 257.609802246 257.600036621 257.550231934 257.489685059 257.449645996 257.510192871 257.619567871 257.680114746 257.619567871 257.449645996 257.090270996 256.380310059 255.340270996 254.079528809 252.750427246 251.380310059 255.780273438 256.389648438 256.879882812 257.25 257.5 257.650390625 257.759765625 257.889648438 257.98046875 257.919921875 257.669921875 257.25 256.73046875 256.01953125 255.08984375 254.01953125 252.91015625 255.760269165 256.199707031 256.619628906 257.039550781 257.420410156 257.689941406 257.890136719 258.010253906 258.060058594 258.010253906 257.869628906 257.560058594 256.970214844 256.069824219 254.890151978 253.550308228 252.119644165 257.369567871 257.540466309 257.519958496 257.430114746 257.350036621 257.309997559 257.399841309 257.559997559 257.659606934 257.600036621 257.399841309 256.989685059 256.279724121 255.250427246 253.979919434 252.559997559 251.010192871 255.610351562 256.219726562 256.709960938 257.08984375 257.370117188 257.5703125 257.73046875 257.860351562 257.950195312 257.889648438 257.610351562 257.150390625 256.559570312 255.83984375 254.959960938 253.950195312 252.879882812 255.53956604 256.010253906 256.420410156 256.869628906 257.289550781 257.619628906 257.840332031 257.960449219 258.010253906 257.979980469 257.829589844 257.489746094 256.880371094 255.970230103 254.819839478 253.460464478 251.970230103 257.279724121 257.430114746 257.409606934 257.319763184 257.220153809 257.189880371 257.300231934 257.500427246 257.630310059 257.590270996 257.380310059 256.939880371 256.220153809 255.210388184 253.960388184 252.470153809 250.800231934 255.5703125 256.169921875 256.610351562 256.969726562 257.290039062 257.51953125 257.690429688 257.809570312 257.870117188 257.809570312 257.549804688 257.099609375 256.469726562 255.690429688 254.809570312 253.870117188 252.889648438 255.310073853 255.800308228 256.229980469 256.699707031 257.170410156 257.560058594 257.819824219 257.960449219 258.020019531 257.970214844 257.800292969 257.409667969 256.749511719 255.84034729 254.720230103 253.369644165 251.84034729 257.210388184 257.329528809 257.340270996 257.260192871 257.149841309 257.130310059 257.250427246 257.449645996 257.600036621 257.590270996 257.390075684 256.949645996 256.220153809 255.210388184 253.970153809 252.470153809 250.699645996 255.599609375 256.150390625 256.559570312 256.900390625 257.209960938 257.459960938 257.650390625 257.759765625 257.799804688 257.709960938 257.469726562 257.0703125 256.440429688 255.629882812 254.759765625 253.879882812 252.950195312 255.10987854 255.600112915 256.039550781 256.529785156 257.050292969 257.489746094 257.810058594 257.979980469 258.039550781 257.970214844 257.729980469 257.279785156 256.590332031 255.69972229 254.579605103 253.229995728 251.68019104 257.170349121 257.300231934 257.319763184 257.250427246 257.159606934 257.130310059 257.250427246 257.420349121 257.550231934 257.550231934 257.380310059 256.960388184 256.229919434 255.239685059 254.029724121 252.540466309 250.720153809 255.620117188 256.099609375 256.48046875 256.830078125 257.129882812 257.400390625 257.599609375 257.740234375 257.75 257.610351562 257.370117188 257.0 256.41015625 255.599609375 254.709960938 253.860351562 252.969726562 254.970230103 255.439956665 255.890151978 256.399902344 256.939941406 257.420410156 257.779785156 257.999511719 258.050292969 257.930175781 257.619628906 257.119628906 256.430175781 255.560073853 254.460464478 253.09034729 251.52003479 257.140075684 257.290466309 257.329528809 257.279724121 257.199645996 257.189880371 257.300231934 257.439880371 257.529724121 257.519958496 257.350036621 256.939880371 256.239685059 255.279724121 254.109802246 252.649841309 250.809997559 255.549804688 255.990234375 256.370117188 256.719726562 257.030273438 257.290039062 257.51953125 257.6796875 257.700195312 257.540039062 257.26953125 256.900390625 256.299804688 255.450195312 254.530273438 253.6796875 252.8203125 254.880386353 255.350112915 255.810073853 256.340332031 256.899902344 257.390136719 257.770019531 257.999511719 258.039550781 257.859863281 257.489746094 256.960449219 256.300292969 255.460464478 254.35987854 252.960464478 251.35987854 257.059997559 257.229919434 257.309997559 257.279724121 257.220153809 257.250427246 257.369567871 257.519958496 257.579528809 257.510192871 257.309997559 256.920349121 256.250427246 255.329528809 254.220153809 252.800231934 250.970153809 255.459960938 255.849609375 256.219726562 256.58984375 256.879882812 257.120117188 257.370117188 257.580078125 257.629882812 257.469726562 257.1796875 256.76953125 256.120117188 255.219726562 254.259765625 253.400390625 252.549804688 254.850112915 255.35987854 255.85987854 256.399902344 256.930175781 257.420410156 257.810058594 258.039550781 258.050292969 257.819824219 257.390136719 256.840332031 256.199707031 255.380386353 254.279800415 252.85987854 251.260269165 256.890075684 257.109802246 257.229919434 257.239685059 257.220153809 257.260192871 257.430114746 257.619567871 257.680114746 257.569763184 257.329528809 256.920349121 256.290466309 255.430114746 254.340270996 252.970153809 251.170349121 255.370117188 255.700195312 256.059570312 256.419921875 256.709960938 256.940429688 257.190429688 257.440429688 257.540039062 257.41015625 257.120117188 256.66015625 255.940429688 255.0 254.040039062 253.1796875 252.309570312 254.890151978 255.460464478 255.989761353 256.499511719 256.999511719 257.470214844 257.840332031 258.079589844 258.079589844 257.810058594 257.340332031 256.760253906 256.119628906 255.310073853 254.220230103 252.800308228 251.19972229 256.680114746 256.920349121 257.090270996 257.149841309 257.170349121 257.239685059 257.449645996 257.680114746 257.769958496 257.630310059 257.359802246 256.960388184 256.380310059 255.569763184 254.500427246 253.170349121 251.430114746 255.259765625 255.549804688 255.879882812 256.240234375 256.540039062 256.799804688 257.059570312 257.309570312 257.4296875 257.33984375 257.049804688 256.559570312 255.799804688 254.860351562 253.9296875 253.080078125 252.120117188 254.999526978 255.59034729 256.090332031 256.560058594 257.010253906 257.460449219 257.829589844 258.069824219 258.079589844 257.819824219 257.340332031 256.729980469 256.069824219 255.260269165 254.159683228 252.779800415 251.189956665 256.460388184 256.710388184 256.930114746 257.069763184 257.130310059 257.229919434 257.449645996 257.699645996 257.800231934 257.670349121 257.390075684 257.019958496 256.489685059 255.720153809 254.689880371 253.409606934 251.769958496 255.129882812 255.379882812 255.6796875 256.049804688 256.379882812 256.6796875 256.959960938 257.200195312 257.330078125 257.25 256.98046875 256.48046875 255.700195312 254.780273438 253.900390625 253.01953125 251.91015625 255.079605103 255.619644165 256.069824219 256.499511719 256.939941406 257.359863281 257.739746094 257.999511719 258.060058594 257.840332031 257.380371094 256.770019531 256.060058594 255.210464478 254.130386353 252.779800415 251.210464478 256.260192871 256.510192871 256.769958496 256.970153809 257.109802246 257.250427246 257.470153809 257.699645996 257.809997559 257.699645996 257.449645996 257.100036621 256.600036621 255.840270996 254.869567871 253.689880371 252.149841309 255.0 255.219726562 255.490234375 255.860351562 256.240234375 256.580078125 256.879882812 257.110351562 257.209960938 257.139648438 256.900390625 256.41015625 255.650390625 254.75 253.870117188 252.91015625 251.610351562 255.069839478 255.529800415 255.920425415 256.340332031 256.810058594 257.270019531 257.630371094 257.899902344 258.010253906 257.859863281 257.449707031 256.840332031 256.079589844 255.189956665 254.10987854 252.819839478 251.249526978 256.090270996 256.350036621 256.640075684 256.899841309 257.090270996 257.260192871 257.489685059 257.729919434 257.850036621 257.760192871 257.540466309 257.210388184 256.699645996 255.939880371 255.019958496 253.960388184 252.529724121 254.889648438 255.080078125 255.33984375 255.709960938 256.120117188 256.5 256.809570312 257.030273438 257.110351562 257.040039062 256.8203125 256.360351562 255.639648438 254.740234375 253.8203125 252.75 251.259765625 254.970230103 255.34034729 255.710464478 256.180175781 256.720214844 257.199707031 257.560058594 257.819824219 257.949707031 257.880371094 257.539550781 256.949707031 256.149902344 255.210464478 254.130386353 252.880386353 251.310073853 255.939880371 256.220153809 256.529724121 256.829528809 257.050231934 257.250427246 257.500427246 257.769958496 257.899841309 257.840270996 257.630310059 257.309997559 256.769958496 256.010192871 255.140075684 254.180114746 252.859802246 254.8203125 254.98046875 255.23046875 255.610351562 256.040039062 256.419921875 256.759765625 256.98046875 257.059570312 256.969726562 256.740234375 256.309570312 255.620117188 254.740234375 253.780273438 252.620117188 251.009765625 254.819839478 255.130386353 255.529800415 256.079589844 256.699707031 257.199707031 257.539550781 257.779785156 257.920410156 257.890136719 257.619628906 257.069824219 256.279785156 255.310073853 254.220230103 252.970230103 251.399917603 255.809997559 256.109802246 256.449645996 256.760192871 257.000427246 257.220153809 257.510192871 257.809997559 257.939880371 257.869567871 257.670349121 257.359802246 256.829528809 256.069763184 255.239685059 254.359802246 253.130310059 254.75 254.900390625 255.129882812 255.51953125 255.969726562 256.370117188 256.719726562 256.959960938 257.030273438 256.9296875 256.700195312 256.280273438 255.610351562 254.73046875 253.75 252.559570312 250.919921875 254.640151978 254.94972229 255.409683228 256.039550781 256.720214844 257.229980469 257.569824219 257.789550781 257.949707031 257.939941406 257.699707031 257.199707031 256.449707031 255.479995728 254.380386353 253.10987854 251.53956604 255.670349121 255.979919434 256.350036621 256.680114746 256.939880371 257.180114746 257.510192871 257.829528809 257.949645996 257.840270996 257.619567871 257.340270996 256.869567871 256.159606934 255.350036621 254.510192871 253.340270996 254.669921875 254.780273438 255.009765625 255.4296875 255.91015625 256.3203125 256.66015625 256.9296875 257.040039062 256.950195312 256.719726562 256.299804688 255.620117188 254.740234375 253.740234375 252.5703125 250.969726562 254.470230103 254.78956604 255.319839478 256.020019531 256.739746094 257.300292969 257.670410156 257.920410156 258.069824219 258.039550781 257.789550781 257.340332031 256.640136719 255.689956665 254.560073853 253.28956604 251.749526978 255.519958496 255.840270996 256.210388184 256.579528809 256.850036621 257.130310059 257.489685059 257.840270996 257.939880371 257.760192871 257.540466309 257.309997559 256.920349121 256.269958496 255.479919434 254.640075684 253.500427246 254.540039062 254.650390625 254.889648438 255.349609375 255.849609375 256.259765625 256.599609375 256.879882812 257.040039062 257.009765625 256.809570312 256.400390625 255.709960938 254.790039062 253.780273438 252.639648438 251.139648438 254.319839478 254.68019104 255.249526978 255.999526978 256.770019531 257.369628906 257.819824219 258.130371094 258.249511719 258.170410156 257.899902344 257.460449219 256.810058594 255.899917603 254.77003479 253.510269165 252.050308228 255.340270996 255.640075684 256.019958496 256.420349121 256.739685059 257.059997559 257.460388184 257.800231934 257.880310059 257.689880371 257.479919434 257.319763184 257.000427246 256.380310059 255.579528809 254.729919434 253.630310059 254.379882812 254.509765625 254.780273438 255.26953125 255.799804688 256.209960938 256.549804688 256.849609375 257.049804688 257.059570312 256.900390625 256.509765625 255.830078125 254.91015625 253.889648438 252.799804688 251.41015625 254.279800415 254.68019104 255.260269165 256.020019531 256.810058594 257.460449219 257.960449219 258.300292969 258.439941406 258.319824219 258.010253906 257.579589844 256.979980469 256.109863281 254.999526978 253.779800415 252.399917603 255.130310059 255.430114746 255.829528809 256.260192871 256.619567871 256.970153809 257.380310059 257.720153809 257.800231934 257.640075684 257.479919434 257.369567871 257.100036621 256.500427246 255.699645996 254.840270996 253.729919434 254.190429688 254.389648438 254.6796875 255.190429688 255.740234375 256.190429688 256.540039062 256.870117188 257.0703125 257.08984375 256.91015625 256.530273438 255.91015625 255.030273438 254.049804688 253.009765625 251.740234375 254.350112915 254.77003479 255.34034729 256.090332031 256.880371094 257.550292969 258.069824219 258.420410156 258.560058594 258.449707031 258.140136719 257.729980469 257.170410156 256.350097656 255.279800415 254.079605103 252.749526978 254.909606934 255.229919434 255.649841309 256.109802246 256.510192871 256.869567871 257.279724121 257.630310059 257.729919434 257.619567871 257.489685059 257.420349121 257.180114746 256.619567871 255.850036621 254.979919434 253.859802246 254.030273438 254.3203125 254.650390625 255.129882812 255.690429688 256.169921875 256.58984375 256.919921875 257.120117188 257.080078125 256.83984375 256.48046875 255.9296875 255.139648438 254.209960938 253.219726562 252.049804688 254.409683228 254.869644165 255.44972229 256.210449219 256.999511719 257.659667969 258.140136719 258.489746094 258.640136719 258.569824219 258.289550781 257.899902344 257.369628906 256.590332031 255.569839478 254.399917603 253.09034729 254.680114746 255.019958496 255.460388184 255.939880371 256.350036621 256.739685059 257.180114746 257.569763184 257.720153809 257.630310059 257.510192871 257.430114746 257.199645996 256.699645996 255.979919434 255.140075684 254.000427246 253.919921875 254.309570312 254.650390625 255.120117188 255.66015625 256.1796875 256.620117188 256.969726562 257.150390625 257.059570312 256.790039062 256.440429688 255.969726562 255.280273438 254.389648438 253.400390625 252.3203125 254.350112915 254.85987854 255.499526978 256.329589844 257.149902344 257.779785156 258.210449219 258.510253906 258.689941406 258.670410156 258.420410156 258.029785156 257.489746094 256.749511719 255.78956604 254.659683228 253.380386353 254.380310059 254.769958496 255.239685059 255.729919434 256.159606934 256.579528809 257.079528809 257.540466309 257.739685059 257.670349121 257.500427246 257.350036621 257.119567871 256.670349121 256.050231934 255.239685059 254.090270996 253.83984375 254.330078125 254.719726562 255.169921875 255.690429688 256.190429688 256.629882812 256.990234375 257.16015625 257.0703125 256.809570312 256.490234375 256.0703125 255.440429688 254.5703125 253.599609375 252.580078125 254.140151978 254.69972229 255.470230103 256.390136719 257.270019531 257.880371094 258.239746094 258.499511719 258.670410156 258.680175781 258.470214844 258.060058594 257.510253906 256.810058594 255.920425415 254.85987854 253.619644165 253.970153809 254.430114746 254.970153809 255.500427246 255.970153809 256.460388184 257.019958496 257.540466309 257.779724121 257.689880371 257.449645996 257.210388184 256.939880371 256.559997559 256.019958496 255.250427246 254.109802246 253.75 254.3203125 254.780273438 255.240234375 255.740234375 256.219726562 256.639648438 256.98046875 257.150390625 257.080078125 256.830078125 256.540039062 256.16015625 255.58984375 254.790039062 253.860351562 252.91015625 253.84034729 254.479995728 255.369644165 256.390136719 257.300292969 257.880371094 258.199707031 258.420410156 258.579589844 258.590332031 258.369628906 257.960449219 257.430175781 256.789550781 255.989761353 255.010269165 253.829605103 253.479919434 254.029724121 254.659606934 255.279724121 255.840270996 256.420349121 257.029724121 257.540466309 257.779724121 257.670349121 257.369567871 257.059997559 256.760192871 256.430114746 255.949645996 255.210388184 254.119567871 253.58984375 254.25 254.780273438 255.26953125 255.759765625 256.240234375 256.650390625 256.98046875 257.150390625 257.0703125 256.830078125 256.509765625 256.16015625 255.66015625 254.990234375 254.169921875 253.299804688 253.560073853 254.260269165 255.210464478 256.270019531 257.189941406 257.760253906 258.090332031 258.310058594 258.439941406 258.399902344 258.159667969 257.779785156 257.300292969 256.739746094 256.050292969 255.159683228 254.069839478 253.059997559 253.659606934 254.380310059 255.119567871 255.829528809 256.500427246 257.130310059 257.600036621 257.769958496 257.640075684 257.300231934 256.960388184 256.649841309 256.340270996 255.909606934 255.210388184 254.170349121 253.41015625 254.129882812 254.73046875 255.26953125 255.76953125 256.25 256.6796875 257.0 257.169921875 257.080078125 256.790039062 256.419921875 256.040039062 255.620117188 255.0703125 254.41015625 253.629882812 253.28956604 253.989761353 254.960464478 256.020019531 256.920410156 257.539550781 257.949707031 258.199707031 258.289550781 258.159667969 257.869628906 257.520019531 257.130371094 256.680175781 256.109863281 255.329605103 254.319839478 252.790466309 253.409606934 254.199645996 255.040466309 255.880310059 256.659606934 257.309997559 257.699645996 257.819763184 257.649841309 257.309997559 256.930114746 256.609802246 256.300231934 255.890075684 255.239685059 254.269958496 253.23046875 253.990234375 254.66015625 255.219726562 255.740234375 256.240234375 256.690429688 257.009765625 257.169921875 257.0703125 256.75 256.3203125 255.889648438 255.490234375 255.040039062 254.48046875 253.790039062 252.970230103 253.619644165 254.579605103 255.630386353 256.539550781 257.220214844 257.749511719 258.069824219 258.130371094 257.890136719 257.539550781 257.210449219 256.890136719 256.539550781 256.069824219 255.43019104 254.529800415 252.649841309 253.309997559 254.159606934 255.079528809 256.000427246 256.840270996 257.479919434 257.850036621 257.909606934 257.720153809 257.380310059 257.000427246 256.640075684 256.279724121 255.859802246 255.229919434 254.340270996 253.049804688 253.830078125 254.540039062 255.139648438 255.690429688 256.209960938 256.669921875 256.990234375 257.110351562 257.009765625 256.690429688 256.23046875 255.76953125 255.33984375 254.900390625 254.379882812 253.76953125 252.560073853 253.140151978 254.100112915 255.18019104 256.119628906 256.880371094 257.489746094 257.880371094 257.909667969 257.609863281 257.199707031 256.869628906 256.579589844 256.270019531 255.890151978 255.369644165 254.60987854 252.630310059 253.369567871 254.309997559 255.290466309 256.210388184 257.010192871 257.619567871 257.949645996 257.979919434 257.769958496 257.449645996 257.069763184 256.680114746 256.260192871 255.769958496 255.149841309 254.340270996 252.879882812 253.620117188 254.360351562 255.01953125 255.629882812 256.200195312 256.66015625 256.950195312 257.040039062 256.9296875 256.629882812 256.16015625 255.669921875 255.219726562 254.75 254.240234375 253.669921875 252.149917603 252.649917603 253.640151978 254.810073853 255.819839478 256.600097656 257.239746094 257.670410156 257.699707031 257.369628906 256.939941406 256.579589844 256.279785156 255.939956665 255.579605103 255.149917603 254.529800415 252.710388184 253.559997559 254.600036621 255.619567871 256.470153809 257.170349121 257.680114746 257.960388184 257.960388184 257.760192871 257.460388184 257.130310059 256.739685059 256.250427246 255.670349121 255.029724121 254.260192871 252.740234375 253.41015625 254.16015625 254.889648438 255.599609375 256.219726562 256.700195312 256.98046875 257.049804688 256.91015625 256.580078125 256.120117188 255.629882812 255.1796875 254.700195312 254.150390625 253.5703125 251.850112915 252.319839478 253.369644165 254.630386353 255.69972229 256.499511719 257.130371094 257.550292969 257.600097656 257.279785156 256.840332031 256.449707031 256.090332031 255.710464478 255.28956604 254.869644165 254.319839478 252.960388184 253.869567871 254.949645996 255.939880371 256.710388184 257.279724121 257.699645996 257.920349121 257.890075684 257.680114746 257.420349121 257.149841309 256.800231934 256.279724121 255.619567871 254.920349121 254.170349121 252.650390625 253.259765625 254.0 254.809570312 255.58984375 256.280273438 256.799804688 257.08984375 257.16015625 257.009765625 256.629882812 256.129882812 255.66015625 255.25 254.759765625 254.150390625 253.51953125 251.77003479 252.239761353 253.34034729 254.649917603 255.760269165 256.569824219 257.180175781 257.590332031 257.649902344 257.350097656 256.890136719 256.479980469 256.090332031 255.649917603 255.140151978 254.640151978 254.069839478 253.399841309 254.250427246 255.260192871 256.149841309 256.829528809 257.319763184 257.689880371 257.880310059 257.840270996 257.630310059 257.390075684 257.170349121 256.869567871 256.329528809 255.600036621 254.840270996 254.069763184 252.620117188 253.200195312 253.950195312 254.790039062 255.629882812 256.33984375 256.860351562 257.200195312 257.3203125 257.169921875 256.76953125 256.259765625 255.8203125 255.400390625 254.889648438 254.190429688 253.48046875 251.880386353 252.409683228 253.499526978 254.78956604 255.869644165 256.689941406 257.279785156 257.670410156 257.749511719 257.479980469 257.039550781 256.609863281 256.220214844 255.739761353 255.140151978 254.499526978 253.84034729 253.909606934 254.680114746 255.519958496 256.279724121 256.869567871 257.329528809 257.689880371 257.869567871 257.859802246 257.670349121 257.420349121 257.210388184 256.909606934 256.359802246 255.600036621 254.769958496 253.960388184 252.650390625 253.23046875 253.990234375 254.8203125 255.629882812 256.330078125 256.860351562 257.25 257.41015625 257.309570312 256.9296875 256.450195312 256.030273438 255.58984375 254.98046875 254.190429688 253.4296875 252.10987854 252.720230103 253.760269165 254.920425415 255.93019104 256.739746094 257.329589844 257.689941406 257.779785156 257.569824219 257.189941406 256.770019531 256.369628906 255.869644165 255.18019104 254.390151978 253.619644165 254.399841309 255.090270996 255.779724121 256.420349121 256.939880371 257.359802246 257.689880371 257.890075684 257.909606934 257.750427246 257.510192871 257.260192871 256.920349121 256.350036621 255.559997559 254.710388184 253.850036621 252.740234375 253.370117188 254.099609375 254.870117188 255.620117188 256.280273438 256.830078125 257.23046875 257.440429688 257.370117188 257.049804688 256.639648438 256.240234375 255.73046875 254.98046875 254.099609375 253.330078125 252.399917603 253.079605103 254.029800415 254.999526978 255.909683228 256.720214844 257.300292969 257.630371094 257.739746094 257.630371094 257.319824219 256.930175781 256.520019531 255.970230103 255.19972229 254.27003479 253.399917603 254.819763184 255.500427246 256.109802246 256.619567871 257.050231934 257.420349121 257.689880371 257.869567871 257.909606934 257.800231934 257.590270996 257.300231934 256.930114746 256.340270996 255.529724121 254.649841309 253.739685059 252.940429688 253.620117188 254.280273438 254.9296875 255.599609375 256.259765625 256.809570312 257.219726562 257.4296875 257.379882812 257.129882812 256.799804688 256.389648438 255.780273438 254.900390625 253.950195312 253.209960938 252.729995728 253.460464478 254.260269165 255.03956604 255.880386353 256.699707031 257.300292969 257.600097656 257.689941406 257.649902344 257.449707031 257.079589844 256.619628906 256.020019531 255.159683228 254.130386353 253.170425415 255.229919434 255.909606934 256.420349121 256.809997559 257.140075684 257.409606934 257.619567871 257.760192871 257.829528809 257.779724121 257.609802246 257.340270996 256.939880371 256.329528809 255.510192871 254.590270996 253.609802246 253.280273438 253.969726562 254.509765625 255.009765625 255.599609375 256.259765625 256.830078125 257.219726562 257.400390625 257.379882812 257.1796875 256.879882812 256.450195312 255.759765625 254.799804688 253.8203125 253.08984375 253.130386353 253.869644165 254.529800415 255.149917603 255.920425415 256.749511719 257.329589844 257.590332031 257.670410156 257.680175781 257.529785156 257.180175781 256.680175781 256.010253906 255.069839478 253.960464478 252.960464478 255.649841309 256.290466309 256.670349121 256.899841309 257.119567871 257.329528809 257.500427246 257.619567871 257.699645996 257.710388184 257.609802246 257.369567871 256.960388184 256.340270996 255.489685059 254.500427246 253.449645996 253.650390625 254.330078125 254.759765625 255.129882812 255.650390625 256.26953125 256.809570312 257.16015625 257.330078125 257.330078125 257.169921875 256.889648438 256.419921875 255.690429688 254.690429688 253.700195312 252.950195312 253.619644165 254.350112915 254.899917603 255.380386353 256.050292969 256.810058594 257.340332031 257.550292969 257.619628906 257.670410156 257.550292969 257.210449219 256.680175781 255.94972229 254.93019104 253.749526978 252.739761353 256.010192871 256.579528809 256.840270996 256.949645996 257.069763184 257.229919434 257.359802246 257.470153809 257.569763184 257.630310059 257.569763184 257.369567871 256.979919434 256.329528809 255.430114746 254.359802246 253.220153809 253.959960938 254.599609375 254.950195312 255.259765625 255.719726562 256.259765625 256.709960938 257.0 257.16015625 257.209960938 257.08984375 256.809570312 256.309570312 255.549804688 254.559570312 253.549804688 252.75 254.140151978 254.869644165 255.369644165 255.760269165 256.270019531 256.829589844 257.220214844 257.390136719 257.489746094 257.590332031 257.520019531 257.199707031 256.630371094 255.829605103 254.720230103 253.499526978 252.489761353 256.189880371 256.739685059 256.970153809 257.040466309 257.090270996 257.170349121 257.260192871 257.340270996 257.470153809 257.550231934 257.529724121 257.340270996 256.949645996 256.290466309 255.329528809 254.189880371 252.989685059 254.1796875 254.790039062 255.120117188 255.41015625 255.790039062 256.219726562 256.559570312 256.790039062 256.950195312 257.030273438 256.950195312 256.669921875 256.150390625 255.360351562 254.370117188 253.33984375 252.450195312 254.649917603 255.380386353 255.85987854 256.170410156 256.489746094 256.819824219 257.020019531 257.149902344 257.300292969 257.470214844 257.460449219 257.159667969 256.569824219 255.659683228 254.470230103 253.220230103 252.239761353 256.210388184 256.809997559 257.109802246 257.189880371 257.180114746 257.170349121 257.180114746 257.229919434 257.359802246 257.460388184 257.449645996 257.250427246 256.850036621 256.189880371 255.220153809 254.050231934 252.809997559 254.419921875 255.0 255.33984375 255.58984375 255.849609375 256.139648438 256.400390625 256.610351562 256.76953125 256.849609375 256.790039062 256.509765625 255.98046875 255.150390625 254.110351562 253.040039062 252.08984375 255.149917603 255.850112915 256.300292969 256.520019531 256.649902344 256.749511719 256.819824219 256.930175781 257.119628906 257.310058594 257.340332031 257.079589844 256.479980469 255.489761353 254.220230103 252.960464478 251.960464478 256.210388184 256.859802246 257.199645996 257.269958496 257.210388184 257.149841309 257.100036621 257.149841309 257.269958496 257.369567871 257.350036621 257.119567871 256.710388184 256.059997559 255.119567871 253.949645996 252.720153809 254.759765625 255.330078125 255.629882812 255.76953125 255.889648438 256.059570312 256.280273438 256.5 256.669921875 256.709960938 256.620117188 256.33984375 255.780273438 254.919921875 253.83984375 252.73046875 251.740234375 255.659683228 256.279785156 256.630371094 256.720214844 256.710449219 256.670410156 256.689941406 256.779785156 256.960449219 257.119628906 257.140136719 256.909667969 256.319824219 255.300308228 253.989761353 252.710464478 251.710464478 256.309997559 256.920349121 257.180114746 257.189880371 257.100036621 257.050231934 257.050231934 257.119567871 257.220153809 257.300231934 257.229919434 256.979919434 256.559997559 255.939880371 255.040466309 253.920349121 252.710388184 255.1796875 255.700195312 255.91015625 255.91015625 255.879882812 255.990234375 256.240234375 256.490234375 256.620117188 256.58984375 256.4296875 256.129882812 255.559570312 254.669921875 253.580078125 252.469726562 251.459960938 256.199707031 256.680175781 256.869628906 256.810058594 256.670410156 256.579589844 256.600097656 256.699707031 256.829589844 256.909667969 256.890136719 256.649902344 256.069824219 255.050308228 253.749526978 252.479995728 251.460464478 256.479919434 256.949645996 257.040466309 256.949645996 256.890075684 256.949645996 257.050231934 257.140075684 257.210388184 257.239685059 257.149841309 256.890075684 256.460388184 255.850036621 254.989685059 253.920349121 252.720153809 255.549804688 255.98046875 256.0703125 255.959960938 255.870117188 255.98046875 256.259765625 256.530273438 256.610351562 256.490234375 256.26953125 255.919921875 255.3203125 254.4296875 253.360351562 252.280273438 251.26953125 256.640136719 256.999511719 257.020019531 256.810058594 256.590332031 256.479980469 256.529785156 256.649902344 256.749511719 256.749511719 256.659667969 256.380371094 255.78956604 254.77003479 253.499526978 252.249526978 251.19972229 256.559997559 256.880310059 256.859802246 256.729919434 256.720153809 256.899841309 257.079528809 257.189880371 257.199645996 257.180114746 257.069763184 256.809997559 256.369567871 255.779724121 254.960388184 253.920349121 252.720153809 255.799804688 256.080078125 256.0703125 255.940429688 255.879882812 256.030273438 256.349609375 256.58984375 256.610351562 256.4296875 256.150390625 255.76953125 255.139648438 254.23046875 253.1796875 252.139648438 251.110351562 256.899902344 257.159667969 257.079589844 256.800292969 256.529785156 256.409667969 256.470214844 256.630371094 256.720214844 256.689941406 256.510253906 256.159667969 255.52003479 254.499526978 253.27003479 252.03956604 250.960464478 256.500427246 256.779724121 256.739685059 256.640075684 256.680114746 256.899841309 257.109802246 257.199645996 257.170349121 257.119567871 257.000427246 256.739685059 256.290466309 255.680114746 254.880310059 253.869567871 252.689880371 255.919921875 256.0703125 256.009765625 255.900390625 255.900390625 256.08984375 256.400390625 256.610351562 256.599609375 256.400390625 256.120117188 255.709960938 255.01953125 254.080078125 253.049804688 252.040039062 250.969726562 256.979980469 257.170410156 257.060058594 256.760253906 256.489746094 256.369628906 256.449707031 256.609863281 256.720214844 256.670410156 256.430175781 255.999526978 255.28956604 254.28956604 253.100112915 251.880386353 250.760269165 256.369567871 256.710388184 256.769958496 256.729919434 256.760192871 256.909606934 257.079528809 257.159606934 257.130310059 257.059997559 256.930114746 256.640075684 256.170349121 255.540466309 254.779724121 253.800231934 252.600036621 255.950195312 256.01953125 255.940429688 255.860351562 255.91015625 256.110351562 256.389648438 256.580078125 256.580078125 256.4296875 256.150390625 255.6796875 254.940429688 253.969726562 252.9296875 251.91015625 250.830078125 256.989746094 257.119628906 256.970214844 256.689941406 256.439941406 256.350097656 256.420410156 256.590332031 256.699707031 256.630371094 256.340332031 255.850112915 255.140151978 254.149917603 252.979995728 251.760269165 250.600112915 256.279724121 256.710388184 256.890075684 256.890075684 256.840270996 256.880310059 257.010192871 257.100036621 257.090270996 257.029724121 256.869567871 256.559997559 256.059997559 255.420349121 254.649841309 253.699645996 252.489685059 255.91015625 255.940429688 255.870117188 255.8203125 255.860351562 256.049804688 256.330078125 256.549804688 256.58984375 256.459960938 256.1796875 255.66015625 254.860351562 253.860351562 252.799804688 251.780273438 250.709960938 257.010253906 257.060058594 256.880371094 256.569824219 256.359863281 256.310058594 256.409667969 256.560058594 256.630371094 256.520019531 256.210449219 255.720230103 254.999526978 254.029800415 252.869644165 251.630386353 250.44972229 256.250427246 256.720153809 256.970153809 256.979919434 256.880310059 256.850036621 256.949645996 257.069763184 257.090270996 257.010192871 256.840270996 256.519958496 255.989685059 255.319763184 254.540466309 253.559997559 252.309997559 255.780273438 255.8203125 255.790039062 255.75 255.790039062 255.969726562 256.259765625 256.530273438 256.610351562 256.5 256.1796875 255.610351562 254.780273438 253.759765625 252.6796875 251.629882812 250.580078125 256.999511719 256.989746094 256.729980469 256.420410156 256.229980469 256.239746094 256.380371094 256.529785156 256.539550781 256.380371094 256.069824219 255.600112915 254.899917603 253.920425415 252.729995728 251.479995728 250.28956604 256.199645996 256.670349121 256.930114746 256.970153809 256.880310059 256.850036621 256.949645996 257.079528809 257.090270996 256.989685059 256.819763184 256.500427246 255.949645996 255.239685059 254.399841309 253.369567871 252.059997559 255.610351562 255.690429688 255.690429688 255.6796875 255.719726562 255.900390625 256.200195312 256.490234375 256.610351562 256.490234375 256.150390625 255.559570312 254.719726562 253.709960938 252.610351562 251.509765625 250.450195312 256.899902344 256.850097656 256.569824219 256.249511719 256.079589844 256.130371094 256.319824219 256.460449219 256.439941406 256.270019531 255.960464478 255.499526978 254.78956604 253.78956604 252.579605103 251.329605103 250.140151978 256.090270996 256.529724121 256.800231934 256.909606934 256.890075684 256.899841309 257.010192871 257.109802246 257.079528809 256.960388184 256.779724121 256.449645996 255.880310059 255.109802246 254.210388184 253.109802246 251.750427246 255.459960938 255.559570312 255.599609375 255.620117188 255.690429688 255.879882812 256.169921875 256.440429688 256.549804688 256.450195312 256.099609375 255.509765625 254.700195312 253.719726562 252.629882812 251.450195312 250.330078125 256.699707031 256.680175781 256.420410156 256.100097656 255.920425415 255.979995728 256.189941406 256.359863281 256.350097656 256.180175781 255.880386353 255.399917603 254.670425415 253.640151978 252.439956665 251.189956665 249.979995728 255.909606934 256.340270996 256.649841309 256.840270996 256.930114746 256.989685059 257.090270996 257.149841309 257.100036621 256.960388184 256.760192871 256.380310059 255.750427246 254.939880371 253.989685059 252.840270996 251.430114746 255.360351562 255.450195312 255.509765625 255.58984375 255.709960938 255.91015625 256.16015625 256.379882812 256.48046875 256.389648438 256.059570312 255.490234375 254.700195312 253.759765625 252.669921875 251.459960938 250.290039062 256.470214844 256.489746094 256.279785156 255.970230103 255.749526978 255.78956604 256.020019531 256.229980469 256.270019531 256.130371094 255.810073853 255.300308228 254.510269165 253.489761353 252.310073853 251.069839478 249.800308228 255.699645996 256.159606934 256.529724121 256.819763184 256.979919434 257.069763184 257.149841309 257.199645996 257.159606934 257.040466309 256.809997559 256.369567871 255.659606934 254.800231934 253.800231934 252.609802246 251.159606934 255.25 255.3203125 255.41015625 255.5703125 255.780273438 255.990234375 256.209960938 256.370117188 256.459960938 256.370117188 256.049804688 255.48046875 254.700195312 253.790039062 252.709960938 251.490234375 250.280273438 256.239746094 256.310058594 256.149902344 255.84034729 255.600112915 255.619644165 255.869644165 256.149902344 256.260253906 256.140136719 255.800308228 255.220230103 254.399917603 253.390151978 252.229995728 250.939956665 249.579605103 255.519958496 256.029724121 256.479919434 256.829528809 257.040466309 257.119567871 257.159606934 257.210388184 257.220153809 257.159606934 256.909606934 256.420349121 255.659606934 254.739685059 253.689880371 252.439880371 250.930114746 255.08984375 255.16015625 255.309570312 255.5703125 255.83984375 256.080078125 256.280273438 256.4296875 256.490234375 256.419921875 256.080078125 255.490234375 254.709960938 253.799804688 252.719726562 251.509765625 250.280273438 256.029785156 256.130371094 255.999526978 255.710464478 255.510269165 255.560073853 255.84034729 256.140136719 256.300292969 256.210449219 255.850112915 255.210464478 254.350112915 253.34034729 252.189956665 250.84034729 249.369644165 255.409606934 255.979919434 256.489685059 256.880310059 257.100036621 257.140075684 257.130310059 257.180114746 257.239685059 257.220153809 257.010192871 256.510192871 255.720153809 254.750427246 253.609802246 252.300231934 250.729919434 254.919921875 255.049804688 255.280273438 255.599609375 255.900390625 256.150390625 256.349609375 256.509765625 256.580078125 256.48046875 256.129882812 255.51953125 254.73046875 253.809570312 252.740234375 251.509765625 250.259765625 255.850112915 255.960464478 255.85987854 255.630386353 255.489761353 255.60987854 255.909683228 256.199707031 256.350097656 256.270019531 255.909683228 255.239761353 254.350112915 253.34034729 252.159683228 250.760269165 249.210464478 255.430114746 256.050231934 256.569763184 256.960388184 257.130310059 257.149841309 257.109802246 257.140075684 257.220153809 257.239685059 257.059997559 256.579528809 255.800231934 254.769958496 253.569763184 252.189880371 250.600036621 254.809570312 255.0703125 255.400390625 255.740234375 255.990234375 256.209960938 256.4296875 256.610351562 256.6796875 256.549804688 256.169921875 255.549804688 254.76953125 253.83984375 252.75 251.509765625 250.200195312 255.729995728 255.84034729 255.760269165 255.619644165 255.569839478 255.749526978 256.050292969 256.279785156 256.380371094 256.310058594 255.939956665 255.27003479 254.35987854 253.329605103 252.119644165 250.68019104 249.10987854 255.540466309 256.199645996 256.699645996 257.029724121 257.180114746 257.180114746 257.149841309 257.159606934 257.220153809 257.220153809 257.069763184 256.619567871 255.850036621 254.809997559 253.559997559 252.149841309 250.569763184 254.809570312 255.240234375 255.669921875 255.969726562 256.150390625 256.3203125 256.540039062 256.740234375 256.790039062 256.620117188 256.219726562 255.610351562 254.799804688 253.849609375 252.73046875 251.48046875 250.120117188 255.649917603 255.77003479 255.710464478 255.630386353 255.68019104 255.920425415 256.180175781 256.359863281 256.420410156 256.340332031 255.979995728 255.279800415 254.350112915 253.28956604 252.050308228 250.59034729 249.050308228 255.670349121 256.340270996 256.790466309 257.069763184 257.199645996 257.250427246 257.279724121 257.290466309 257.309997559 257.269958496 257.079528809 256.640075684 255.899841309 254.880310059 253.619567871 252.199645996 250.649841309 254.940429688 255.509765625 255.969726562 256.219726562 256.3203125 256.450195312 256.669921875 256.860351562 256.879882812 256.6796875 256.290039062 255.669921875 254.8203125 253.809570312 252.650390625 251.389648438 249.990234375 255.52003479 255.659683228 255.670425415 255.68019104 255.800308228 256.060058594 256.329589844 256.479980469 256.520019531 256.420410156 256.050292969 255.310073853 254.329605103 253.229995728 251.970230103 250.510269165 248.999526978 255.729919434 256.380310059 256.800231934 257.040466309 257.189880371 257.319763184 257.430114746 257.479919434 257.470153809 257.380310059 257.149841309 256.689880371 255.970153809 254.960388184 253.699645996 252.279724121 250.750427246 255.150390625 255.780273438 256.219726562 256.41015625 256.459960938 256.58984375 256.799804688 256.950195312 256.940429688 256.740234375 256.370117188 255.740234375 254.83984375 253.73046875 252.51953125 251.240234375 249.809570312 255.279800415 255.499526978 255.630386353 255.739761353 255.93019104 256.220214844 256.499511719 256.670410156 256.699707031 256.579589844 256.159667969 255.380386353 254.350112915 253.210464478 251.93019104 250.470230103 248.94972229 255.729919434 256.380310059 256.769958496 257.000427246 257.170349121 257.350036621 257.519958496 257.619567871 257.630310059 257.540466309 257.279724121 256.800231934 256.059997559 255.059997559 253.790466309 252.329528809 250.809997559 255.440429688 256.040039062 256.379882812 256.5 256.549804688 256.690429688 256.889648438 257.01953125 256.98046875 256.790039062 256.4296875 255.790039062 254.830078125 253.669921875 252.419921875 251.099609375 249.620117188 254.999526978 255.369644165 255.659683228 255.890151978 256.130371094 256.439941406 256.739746094 256.909667969 256.920410156 256.749511719 256.289550781 255.479995728 254.420425415 253.249526978 251.970230103 250.510269165 248.979995728 255.750427246 256.390075684 256.790466309 257.000427246 257.149841309 257.329528809 257.519958496 257.670349121 257.739685059 257.699645996 257.460388184 256.970153809 256.210388184 255.189880371 253.909606934 252.420349121 250.859802246 255.780273438 256.280273438 256.5 256.5703125 256.610351562 256.76953125 256.969726562 257.08984375 257.049804688 256.870117188 256.48046875 255.790039062 254.799804688 253.629882812 252.389648438 251.049804688 249.540039062 254.850112915 255.390151978 255.84034729 256.149902344 256.409667969 256.710449219 256.989746094 257.159667969 257.140136719 256.939941406 256.460449219 255.619644165 254.53956604 253.350112915 252.069839478 250.619644165 249.09034729 255.829528809 256.489685059 256.880310059 257.050231934 257.149841309 257.300231934 257.479919434 257.659606934 257.779724121 257.800231934 257.619567871 257.149841309 256.409606934 255.399841309 254.109802246 252.590270996 250.979919434 256.120117188 256.51953125 256.639648438 256.650390625 256.700195312 256.860351562 257.059570312 257.200195312 257.1796875 256.969726562 256.509765625 255.75 254.73046875 253.610351562 252.41015625 251.080078125 249.559570312 254.960464478 255.619644165 256.130371094 256.439941406 256.670410156 256.960449219 257.239746094 257.390136719 257.359863281 257.140136719 256.649902344 255.819839478 254.729995728 253.510269165 252.220230103 250.819839478 249.310073853 255.960388184 256.630310059 256.989685059 257.109802246 257.159606934 257.279724121 257.470153809 257.640075684 257.769958496 257.809997559 257.680114746 257.300231934 256.609802246 255.649841309 254.380310059 252.840270996 251.199645996 256.379882812 256.709960938 256.780273438 256.759765625 256.799804688 256.940429688 257.129882812 257.290039062 257.309570312 257.08984375 256.5703125 255.73046875 254.690429688 253.580078125 252.419921875 251.099609375 249.639648438 255.27003479 255.960464478 256.409667969 256.659667969 256.869628906 257.140136719 257.420410156 257.569824219 257.550292969 257.319824219 256.850097656 256.060058594 254.960464478 253.720230103 252.43019104 251.069839478 249.600112915 256.079528809 256.720153809 257.019958496 257.069763184 257.100036621 257.250427246 257.470153809 257.630310059 257.699645996 257.720153809 257.649841309 257.340270996 256.739685059 255.829528809 254.609802246 253.109802246 251.470153809 256.490234375 256.780273438 256.849609375 256.860351562 256.879882812 256.98046875 257.16015625 257.330078125 257.370117188 257.1796875 256.650390625 255.799804688 254.75 253.610351562 252.41015625 251.080078125 249.700195312 255.630386353 256.239746094 256.579589844 256.770019531 256.979980469 257.249511719 257.510253906 257.659667969 257.649902344 257.449707031 257.020019531 256.270019531 255.210464478 253.970230103 252.68019104 251.35987854 249.960464478 256.159606934 256.739685059 256.970153809 256.960388184 256.989685059 257.170349121 257.430114746 257.579528809 257.619567871 257.619567871 257.559997559 257.309997559 256.760192871 255.899841309 254.739685059 253.309997559 251.720153809 256.450195312 256.719726562 256.860351562 256.919921875 256.950195312 257.01953125 257.139648438 257.290039062 257.360351562 257.219726562 256.759765625 255.959960938 254.919921875 253.75 252.450195312 251.0703125 249.73046875 255.920425415 256.380371094 256.600097656 256.789550781 257.020019531 257.279785156 257.510253906 257.659667969 257.670410156 257.510253906 257.109863281 256.409667969 255.420425415 254.220230103 252.960464478 251.68019104 250.300308228 256.210388184 256.710388184 256.880310059 256.840270996 256.859802246 257.069763184 257.340270996 257.500427246 257.529724121 257.540466309 257.500427246 257.260192871 256.729919434 255.909606934 254.809997559 253.449645996 251.909606934 241.309997559 241.460388184 241.260192871 241.069763184 241.050231934 241.149841309 241.250427246 241.319763184 241.329528809 241.220153809 240.949645996 240.540466309 239.899841309 238.960388184 237.689880371 236.199645996 234.619567871 240.609771729 240.920318604 241.100006104 241.170318604 241.180084229 241.229888916 241.369537354 241.489654541 241.449615479 241.239654541 240.939849854 240.519927979 239.859771729 238.890045166 237.739654541 236.479888916 235.109771729 240.750076294 241.179763794 241.489822388 241.759841919 241.839920044 241.679763794 241.509841919 241.520095825 241.629959106 241.640213013 241.52986145 241.290115356 240.870193481 240.230056763 239.35017395 238.27986145 237.020095825 241.250427246 241.359802246 241.210388184 241.069763184 241.069763184 241.140075684 241.229919434 241.350036621 241.399841309 241.319763184 241.019958496 240.569763184 239.920349121 239.010192871 237.769958496 236.329528809 234.819763184 240.930084229 241.229888916 241.369537354 241.420318604 241.409576416 241.420318604 241.489654541 241.550201416 241.510162354 241.330474854 241.059967041 240.640045166 240.010162354 239.109771729 238.019927979 236.809967041 235.510162354 240.899978638 241.250076294 241.469802856 241.679763794 241.719802856 241.580154419 241.469802856 241.509841919 241.609939575 241.620193481 241.520095825 241.310134888 240.949783325 240.339920044 239.500076294 238.469802856 237.219802856 241.100036621 241.220153809 241.170349121 241.119567871 241.149841309 241.189880371 241.260192871 241.369567871 241.449645996 241.359802246 241.059997559 240.600036621 239.989685059 239.109802246 237.920349121 236.519958496 235.059997559 241.149810791 241.409576416 241.529693604 241.569732666 241.569732666 241.550201416 241.529693604 241.510162354 241.449615479 241.330474854 241.109771729 240.720123291 240.130279541 239.319732666 238.309967041 237.170318604 235.920318604 240.980056763 241.250076294 241.410232544 241.540115356 241.549880981 241.4400177 241.379959106 241.4400177 241.520095825 241.509841919 241.419998169 241.27986145 240.969802856 240.429763794 239.649978638 238.629959106 237.379959106 241.010192871 241.199645996 241.250427246 241.279724121 241.290466309 241.269958496 241.290466309 241.369567871 241.439880371 241.350036621 241.059997559 240.619567871 240.069763184 239.260192871 238.119567871 236.769958496 235.340270996 241.260162354 241.489654541 241.569732666 241.580474854 241.580474854 241.559967041 241.489654541 241.399810791 241.330474854 241.260162354 241.090240479 240.739654541 240.189849854 239.479888916 238.569732666 237.500396729 236.300201416 241.020095825 241.259841919 241.390213013 241.489822388 241.460037231 241.35017395 241.27986145 241.310134888 241.339920044 241.319900513 241.290115356 241.199783325 240.969802856 240.480056763 239.739822388 238.739822388 237.480056763 241.040466309 241.309997559 241.430114746 241.460388184 241.409606934 241.309997559 241.269958496 241.340270996 241.420349121 241.350036621 241.069763184 240.659606934 240.119567871 239.359802246 238.290466309 237.019958496 235.640075684 241.300201416 241.510162354 241.559967041 241.540435791 241.510162354 241.470123291 241.390045166 241.300201416 241.250396729 241.199615479 241.029693604 240.689849854 240.199615479 239.559967041 238.760162354 237.760162354 236.609771729 241.089920044 241.35017395 241.480056763 241.569900513 241.509841919 241.35017395 241.219802856 241.1900177 241.1900177 241.199783325 241.210037231 241.160232544 240.9400177 240.489822388 239.770095825 238.759841919 237.520095825 241.109802246 241.439880371 241.579528809 241.569763184 241.449645996 241.309997559 241.250427246 241.329528809 241.439880371 241.399841309 241.140075684 240.710388184 240.149841309 239.399841309 238.399841309 237.220153809 235.920349121 241.319732666 241.540435791 241.600006104 241.540435791 241.439849854 241.380279541 241.309967041 241.260162354 241.229888916 241.159576416 240.970123291 240.619537354 240.159576416 239.609771729 238.899810791 237.949615479 236.850006104 241.219802856 241.489822388 241.649978638 241.719802856 241.629959106 241.419998169 241.230056763 241.149978638 241.160232544 241.179763794 241.1900177 241.109939575 240.879959106 240.449783325 239.739822388 238.739822388 237.509841919 241.130310059 241.479919434 241.619567871 241.600036621 241.479919434 241.340270996 241.300231934 241.380310059 241.489685059 241.460388184 241.199645996 240.760192871 240.180114746 239.449645996 238.519958496 237.420349121 236.170349121 241.319732666 241.580474854 241.670318604 241.600006104 241.460357666 241.340240479 241.269927979 241.229888916 241.189849854 241.109771729 240.909576416 240.569732666 240.170318604 239.689849854 239.040435791 238.159576416 237.090240479 241.35017395 241.580154419 241.730056763 241.810134888 241.719802856 241.489822388 241.27986145 241.199783325 241.219802856 241.239822388 241.199783325 241.069900513 240.830154419 240.419998169 239.730056763 238.710037231 237.500076294 241.050231934 241.420349121 241.579528809 241.590270996 241.519958496 241.439880371 241.409606934 241.460388184 241.519958496 241.460388184 241.220153809 240.809997559 240.269958496 239.559997559 238.699645996 237.649841309 236.430114746 241.279693604 241.580474854 241.739654541 241.689849854 241.500396729 241.309967041 241.210357666 241.170318604 241.130279541 241.029693604 240.859771729 240.600006104 240.290435791 239.850006104 239.239654541 238.390045166 237.359771729 241.359939575 241.540115356 241.679763794 241.77986145 241.719802856 241.500076294 241.310134888 241.259841919 241.290115356 241.290115356 241.199783325 241.049880981 240.830154419 240.4400177 239.739822388 238.710037231 237.509841919 240.960388184 241.340270996 241.540466309 241.590270996 241.569763184 241.510192871 241.470153809 241.470153809 241.500427246 241.420349121 241.199645996 240.840270996 240.369567871 239.739685059 238.909606934 237.890075684 236.680114746 241.220123291 241.559967041 241.769927979 241.739654541 241.500396729 241.250396729 241.119537354 241.069732666 241.029693604 240.960357666 240.850006104 240.689849854 240.449615479 240.059967041 239.449615479 238.619537354 237.609771729 241.230056763 241.370193481 241.540115356 241.679763794 241.669998169 241.480056763 241.339920044 241.310134888 241.35017395 241.339920044 241.239822388 241.10017395 240.890213013 240.500076294 239.770095825 238.719802856 237.509841919 240.899841309 241.319763184 241.540466309 241.609802246 241.579528809 241.510192871 241.449645996 241.449645996 241.470153809 241.420349121 241.220153809 240.899841309 240.460388184 239.859802246 239.059997559 238.069763184 236.880310059 241.239654541 241.569732666 241.790435791 241.760162354 241.479888916 241.199615479 241.050201416 241.000396729 240.949615479 240.899810791 240.859771729 240.769927979 240.580474854 240.199615479 239.600006104 238.790435791 237.800201416 241.020095825 241.1900177 241.4400177 241.649978638 241.669998169 241.52986145 241.390213013 241.390213013 241.429763794 241.419998169 241.35017395 241.219802856 240.989822388 240.52986145 239.750076294 238.679763794 237.480056763 240.890075684 241.350036621 241.590270996 241.649841309 241.590270996 241.479919434 241.420349121 241.449645996 241.529724121 241.519958496 241.340270996 241.000427246 240.529724121 239.899841309 239.109802246 238.140075684 237.019958496 241.390045166 241.689849854 241.869537354 241.790435791 241.489654541 241.210357666 241.050201416 241.000396729 240.930084229 240.869537354 240.830474854 240.779693604 240.619537354 240.239654541 239.659576416 238.869537354 237.939849854 240.839920044 241.120193481 241.469802856 241.730056763 241.750076294 241.620193481 241.509841919 241.500076294 241.540115356 241.52986145 241.460037231 241.330154419 241.040115356 240.509841919 239.669998169 238.60017395 237.429763794 240.909606934 241.390075684 241.630310059 241.699645996 241.649841309 241.550231934 241.489685059 241.540466309 241.659606934 241.680114746 241.510192871 241.159606934 240.630310059 239.930114746 239.090270996 238.159606934 237.119567871 241.630279541 241.869537354 241.979888916 241.850006104 241.540435791 241.250396729 241.100006104 241.010162354 240.920318604 240.830474854 240.800201416 240.779693604 240.640045166 240.269927979 239.670318604 238.920318604 238.050201416 240.759841919 241.149978638 241.569900513 241.819900513 241.830154419 241.699783325 241.589920044 241.569900513 241.60017395 241.589920044 241.520095825 241.35017395 241.020095825 240.460037231 239.60017395 238.52986145 237.339920044 240.939880371 241.390075684 241.619567871 241.710388184 241.720153809 241.670349121 241.630310059 241.670349121 241.760192871 241.790466309 241.659606934 241.329528809 240.790466309 240.029724121 239.119567871 238.170349121 237.189880371 241.830474854 242.019927979 242.050201416 241.890045166 241.590240479 241.309967041 241.130279541 241.019927979 240.899810791 240.809967041 240.809967041 240.840240479 240.729888916 240.350006104 239.729888916 238.970123291 238.140045166 240.819900513 241.259841919 241.640213013 241.830154419 241.810134888 241.699783325 241.620193481 241.60017395 241.60017395 241.580154419 241.489822388 241.310134888 240.980056763 240.429763794 239.609939575 238.500076294 237.259841919 241.029724121 241.390075684 241.559997559 241.640075684 241.710388184 241.739685059 241.739685059 241.750427246 241.779724121 241.779724121 241.710388184 241.470153809 240.970153809 240.180114746 239.199645996 238.189880371 237.220153809 241.949615479 242.080474854 242.069732666 241.920318604 241.640045166 241.369537354 241.170318604 241.019927979 240.890045166 240.819732666 240.880279541 240.949615479 240.880279541 240.489654541 239.809967041 239.010162354 238.210357666 240.969802856 241.399978638 241.669998169 241.750076294 241.699783325 241.640213013 241.60017395 241.589920044 241.60017395 241.580154419 241.480056763 241.270095825 240.949783325 240.4400177 239.620193481 238.500076294 237.179763794 241.170349121 241.449645996 241.500427246 241.519958496 241.600036621 241.710388184 241.769958496 241.779724121 241.760192871 241.720153809 241.670349121 241.510192871 241.090270996 240.319763184 239.290466309 238.239685059 237.239685059 242.010162354 242.119537354 242.090240479 241.949615479 241.710357666 241.430084229 241.189849854 241.040435791 240.930084229 240.880279541 240.930084229 241.019927979 240.970123291 240.590240479 239.880279541 239.059967041 238.290435791 241.1900177 241.569900513 241.699783325 241.660232544 241.580154419 241.569900513 241.589920044 241.609939575 241.629959106 241.620193481 241.500076294 241.259841919 240.929763794 240.429763794 239.640213013 238.489822388 237.149978638 241.369567871 241.559997559 241.510192871 241.449645996 241.489685059 241.630310059 241.750427246 241.790466309 241.739685059 241.670349121 241.590270996 241.470153809 241.109802246 240.380310059 239.390075684 238.340270996 237.309997559 242.090240479 242.189849854 242.159576416 242.019927979 241.769927979 241.470123291 241.199615479 241.059967041 241.000396729 240.960357666 240.960357666 241.010162354 240.960357666 240.609771729 239.939849854 239.149810791 238.420318604 241.419998169 241.750076294 241.750076294 241.60017395 241.500076294 241.520095825 241.569900513 241.609939575 241.649978638 241.649978638 241.52986145 241.259841919 240.899978638 240.410232544 239.629959106 238.509841919 237.199783325 241.529724121 241.689880371 241.600036621 241.489685059 241.479919434 241.579528809 241.710388184 241.769958496 241.720153809 241.609802246 241.500427246 241.369567871 241.029724121 240.390075684 239.500427246 238.500427246 237.449645996 242.199615479 242.300201416 242.250396729 242.100006104 241.819732666 241.439849854 241.140045166 241.029693604 241.040435791 241.019927979 240.970123291 240.949615479 240.890045166 240.600006104 240.010162354 239.300201416 238.619537354 241.609939575 241.890213013 241.799880981 241.580154419 241.449783325 241.469802856 241.52986145 241.560134888 241.589920044 241.60017395 241.469802856 241.219802856 240.870193481 240.390213013 239.640213013 238.569900513 237.310134888 241.619567871 241.760192871 241.699645996 241.600036621 241.559997559 241.579528809 241.649841309 241.689880371 241.630310059 241.510192871 241.390075684 241.250427246 240.930114746 240.359802246 239.590270996 238.680114746 237.600036621 242.290435791 242.390045166 242.319732666 242.140045166 241.809967041 241.369537354 241.029693604 240.960357666 241.040435791 241.069732666 240.989654541 240.930084229 240.859771729 240.609771729 240.090240479 239.460357666 238.830474854 241.719802856 241.969802856 241.859939575 241.60017395 241.449783325 241.449783325 241.480056763 241.480056763 241.480056763 241.460037231 241.35017395 241.129959106 240.830154419 240.390213013 239.669998169 238.629959106 237.379959106 241.640075684 241.779724121 241.769958496 241.720153809 241.649841309 241.590270996 241.569763184 241.540466309 241.479919434 241.369567871 241.290466309 241.159606934 240.840270996 240.300231934 239.600036621 238.750427246 237.649841309 242.319732666 242.420318604 242.359771729 242.170318604 241.800201416 241.309967041 240.949615479 240.890045166 241.019927979 241.090240479 241.029693604 240.970123291 240.890045166 240.649810791 240.140045166 239.529693604 238.939849854 241.799880981 242.02986145 241.919998169 241.649978638 241.500076294 241.460037231 241.469802856 241.4400177 241.410232544 241.359939575 241.259841919 241.060134888 240.790115356 240.359939575 239.640213013 238.60017395 237.330154419 241.670349121 241.800231934 241.819763184 241.790466309 241.699645996 241.569763184 241.479919434 241.420349121 241.329528809 241.260192871 241.199645996 241.090270996 240.769958496 240.220153809 239.540466309 238.710388184 237.609802246 242.319732666 242.430084229 242.380279541 242.189849854 241.809967041 241.330474854 240.960357666 240.880279541 240.989654541 241.080474854 241.059967041 241.019927979 240.949615479 240.670318604 240.140045166 239.519927979 238.949615479 241.839920044 242.049880981 241.9400177 241.699783325 241.520095825 241.449783325 241.449783325 241.429763794 241.410232544 241.35017395 241.219802856 241.020095825 240.730056763 240.259841919 239.509841919 238.449783325 237.1900177 241.769958496 241.890075684 241.909606934 241.859802246 241.720153809 241.550231934 241.430114746 241.350036621 241.269958496 241.170349121 241.130310059 241.019958496 240.710388184 240.170349121 239.470153809 238.649841309 237.540466309 242.319732666 242.449615479 242.399810791 242.170318604 241.800201416 241.359771729 241.019927979 240.920318604 241.000396729 241.059967041 241.059967041 241.050201416 241.010162354 240.710357666 240.119537354 239.479888916 238.920318604 241.819900513 241.989822388 241.890213013 241.669998169 241.469802856 241.370193481 241.370193481 241.410232544 241.429763794 241.379959106 241.219802856 240.960037231 240.620193481 240.089920044 239.310134888 238.270095825 237.060134888 241.859802246 242.010192871 242.040466309 241.939880371 241.760192871 241.559997559 241.430114746 241.319763184 241.220153809 241.109802246 241.050231934 240.949645996 240.659606934 240.159606934 239.489685059 238.659606934 237.540466309 242.330474854 242.460357666 242.369537354 242.109771729 241.739654541 241.350006104 241.059967041 240.970123291 241.019927979 241.059967041 241.069732666 241.090240479 241.059967041 240.779693604 240.180084229 239.500396729 238.930084229 241.719802856 241.859939575 241.770095825 241.580154419 241.370193481 241.250076294 241.239822388 241.319900513 241.399978638 241.370193481 241.179763794 240.890213013 240.500076294 239.9400177 239.149978638 238.140213013 236.980056763 241.899841309 242.109802246 242.149841309 242.040466309 241.829528809 241.600036621 241.430114746 241.309997559 241.189880371 241.079528809 241.000427246 240.899841309 240.659606934 240.199645996 239.569763184 238.739685059 237.600036621 242.319732666 242.449615479 242.330474854 242.029693604 241.659576416 241.309967041 241.069732666 240.989654541 241.040435791 241.100006104 241.109771729 241.109771729 241.090240479 240.850006104 240.300201416 239.619537354 239.000396729 241.60017395 241.719802856 241.660232544 241.500076294 241.319900513 241.179763794 241.140213013 241.230056763 241.330154419 241.319900513 241.129959106 240.810134888 240.390213013 239.830154419 239.060134888 238.080154419 236.929763794 241.859802246 242.130310059 242.220153809 242.130310059 241.909606934 241.640075684 241.420349121 241.260192871 241.170349121 241.109802246 241.050231934 240.930114746 240.680114746 240.260192871 239.640075684 238.800231934 237.649841309 242.250396729 242.390045166 242.279693604 242.010162354 241.659576416 241.319732666 241.069732666 240.989654541 241.069732666 241.159576416 241.170318604 241.140045166 241.109771729 240.909576416 240.439849854 239.769927979 239.080474854 241.540115356 241.669998169 241.629959106 241.509841919 241.35017395 241.199783325 241.120193481 241.149978638 241.259841919 241.259841919 241.069900513 240.730056763 240.299880981 239.759841919 239.020095825 238.020095825 236.839920044 241.779724121 242.100036621 242.239685059 242.170349121 241.960388184 241.659606934 241.380310059 241.210388184 241.170349121 241.189880371 241.159606934 241.019958496 240.729919434 240.300231934 239.659606934 238.809997559 237.659606934 242.090240479 242.279693604 242.260162354 242.050201416 241.750396729 241.390045166 241.090240479 241.000396729 241.109771729 241.239654541 241.239654541 241.149810791 241.080474854 240.939849854 240.559967041 239.930084229 239.170318604 241.540115356 241.699783325 241.679763794 241.580154419 241.429763794 241.259841919 241.109939575 241.080154419 241.160232544 241.179763794 241.000076294 240.660232544 240.230056763 239.699783325 238.949783325 237.929763794 236.6900177 241.680114746 242.079528809 242.229919434 242.170349121 241.939880371 241.609802246 241.309997559 241.140075684 241.159606934 241.229919434 241.229919434 241.079528809 240.779724121 240.319763184 239.659606934 238.769958496 237.619567871 241.909576416 242.149810791 242.220123291 242.119537354 241.850006104 241.470123291 241.130279541 241.019927979 241.149810791 241.309967041 241.300201416 241.170318604 241.059967041 240.939849854 240.619537354 240.040435791 239.269927979 241.569900513 241.759841919 241.719802856 241.609939575 241.480056763 241.290115356 241.10017395 241.020095825 241.060134888 241.080154419 240.919998169 240.60017395 240.1900177 239.660232544 238.879959106 237.810134888 236.540115356 241.550231934 242.010192871 242.180114746 242.109802246 241.869567871 241.550231934 241.250427246 241.100036621 241.109802246 241.180114746 241.189880371 241.059997559 240.800231934 240.350036621 239.659606934 238.720153809 237.550231934 241.729888916 242.019927979 242.170318604 242.140045166 241.909576416 241.519927979 241.159576416 241.050201416 241.189849854 241.350006104 241.359771729 241.220123291 241.059967041 240.899810791 240.609771729 240.100006104 239.380279541 241.540115356 241.750076294 241.710037231 241.60017395 241.469802856 241.310134888 241.120193481 241.000076294 240.989822388 240.980056763 240.85017395 240.580154419 240.199783325 239.660232544 238.85017395 237.730056763 236.429763794 241.369567871 241.890075684 242.090270996 242.040466309 241.819763184 241.510192871 241.239685059 241.090270996 241.059997559 241.100036621 241.079528809 241.000427246 240.800231934 240.380310059 239.670349121 238.689880371 237.479919434 241.600006104 241.930084229 242.130279541 242.149810791 241.920318604 241.540435791 241.199615479 241.109771729 241.220123291 241.380279541 241.399810791 241.279693604 241.100006104 240.869537354 240.550201416 240.090240479 239.439849854 241.460037231 241.6900177 241.679763794 241.580154419 241.469802856 241.35017395 241.179763794 241.040115356 240.969802856 240.919998169 240.810134888 240.589920044 240.259841919 239.710037231 238.85017395 237.719802856 236.410232544 241.149841309 241.720153809 241.970153809 241.960388184 241.779724121 241.519958496 241.269958496 241.100036621 241.050231934 241.040466309 241.029724121 240.979919434 240.809997559 240.420349121 239.689880371 238.659606934 237.420349121 241.479888916 241.869537354 242.109771729 242.140045166 241.920318604 241.550201416 241.239654541 241.159576416 241.250396729 241.380279541 241.439849854 241.359771729 241.159576416 240.830474854 240.470123291 240.050201416 239.460357666 241.35017395 241.640213013 241.679763794 241.60017395 241.489822388 241.379959106 241.230056763 241.080154419 240.969802856 240.890213013 240.810134888 240.660232544 240.339920044 239.759841919 238.879959106 237.770095825 236.469802856 240.939880371 241.540466309 241.859802246 241.909606934 241.769958496 241.529724121 241.279724121 241.109802246 241.050231934 241.050231934 241.040466309 241.000427246 240.819763184 240.420349121 239.689880371 238.659606934 237.350036621 241.380279541 241.830474854 242.109771729 242.159576416 241.960357666 241.590240479 241.290435791 241.180084229 241.250396729 241.390045166 241.479888916 241.449615479 241.229888916 240.840240479 240.420318604 240.029693604 239.460357666 241.250076294 241.620193481 241.710037231 241.640213013 241.500076294 241.35017395 241.210037231 241.060134888 240.949783325 240.879959106 240.839920044 240.730056763 240.410232544 239.790115356 238.919998169 237.870193481 236.569900513 240.779724121 241.409606934 241.750427246 241.840270996 241.739685059 241.510192871 241.260192871 241.079528809 241.019958496 241.050231934 241.059997559 241.000427246 240.809997559 240.390075684 239.680114746 238.640075684 237.260192871 241.300201416 241.830474854 242.159576416 242.220123291 242.029693604 241.659576416 241.340240479 241.210357666 241.250396729 241.390045166 241.540435791 241.540435791 241.330474854 240.909576416 240.460357666 240.059967041 239.479888916 241.179763794 241.609939575 241.750076294 241.660232544 241.469802856 241.27986145 241.129959106 241.009841919 240.910232544 240.879959106 240.890213013 240.810134888 240.489822388 239.859939575 239.009841919 237.980056763 236.679763794 240.699645996 241.329528809 241.680114746 241.779724121 241.699645996 241.479919434 241.229919434 241.050231934 241.010192871 241.029724121 241.040466309 240.970153809 240.769958496 240.359802246 239.680114746 238.619567871 237.170349121 241.309967041 241.899810791 242.250396729 242.330474854 242.159576416 241.790435791 241.430084229 241.250396729 241.269927979 241.420318604 241.590240479 241.630279541 241.449615479 241.050201416 240.600006104 240.159576416 239.510162354 241.109939575 241.580154419 241.730056763 241.649978638 241.449783325 241.239822388 241.080154419 240.969802856 240.910232544 240.910232544 240.949783325 240.899978638 240.589920044 239.980056763 239.149978638 238.129959106 236.799880981 240.710388184 241.319763184 241.649841309 241.750427246 241.670349121 241.489685059 241.269958496 241.090270996 241.019958496 241.019958496 241.029724121 240.960388184 240.769958496 240.390075684 239.710388184 238.619567871 237.079528809 241.439849854 242.069732666 242.399810791 242.460357666 242.290435791 241.939849854 241.569732666 241.330474854 241.309967041 241.449615479 241.630279541 241.699615479 241.590240479 241.250396729 240.809967041 240.290435791 239.559967041 241.020095825 241.509841919 241.6900177 241.640213013 241.449783325 241.250076294 241.080154419 240.969802856 240.929763794 240.949783325 240.989822388 240.960037231 240.699783325 240.149978638 239.359939575 238.319900513 236.929763794 240.769958496 241.359802246 241.670349121 241.750427246 241.689880371 241.519958496 241.319763184 241.140075684 241.040466309 241.019958496 241.029724121 240.989685059 240.809997559 240.449645996 239.779724121 238.649841309 237.069763184 241.649810791 242.300201416 242.569732666 242.569732666 242.390045166 242.069732666 241.680084229 241.399810791 241.350006104 241.479888916 241.659576416 241.750396729 241.689849854 241.439849854 241.029693604 240.449615479 239.630279541 240.9400177 241.429763794 241.649978638 241.629959106 241.469802856 241.270095825 241.069900513 240.949783325 240.910232544 240.929763794 240.980056763 240.969802856 240.770095825 240.310134888 239.580154419 238.540115356 237.129959106 240.869567871 241.449645996 241.729919434 241.779724121 241.689880371 241.529724121 241.329528809 241.140075684 241.029724121 241.019958496 241.050231934 241.010192871 240.819763184 240.470153809 239.819763184 238.720153809 237.109802246 241.890045166 242.529693604 242.720123291 242.640045166 242.439849854 242.119537354 241.720123291 241.409576416 241.350006104 241.500396729 241.670318604 241.760162354 241.729888916 241.580474854 241.220123291 240.609771729 239.720123291 240.910232544 241.419998169 241.649978638 241.649978638 241.500076294 241.259841919 241.009841919 240.870193481 240.839920044 240.870193481 240.929763794 240.9400177 240.790115356 240.419998169 239.770095825 238.770095825 237.419998169 240.970153809 241.529724121 241.790466309 241.800231934 241.680114746 241.500427246 241.300231934 241.100036621 241.000427246 241.000427246 241.040466309 240.979919434 240.760192871 240.409606934 239.829528809 238.800231934 237.210388184 242.119537354 242.750396729 242.869537354 242.699615479 242.460357666 242.119537354 241.720123291 241.390045166 241.340240479 241.510162354 241.670318604 241.729888916 241.720123291 241.640045166 241.369537354 240.779693604 239.850006104 240.9400177 241.469802856 241.719802856 241.739822388 241.549880981 241.230056763 240.919998169 240.750076294 240.730056763 240.799880981 240.890213013 240.919998169 240.819900513 240.509841919 239.919998169 238.989822388 237.730056763 241.059997559 241.609802246 241.850036621 241.819763184 241.649841309 241.449645996 241.229919434 241.059997559 240.970153809 241.000427246 241.029724121 240.939880371 240.689880371 240.369567871 239.890075684 238.939880371 237.350036621 242.359771729 242.949615479 243.000396729 242.750396729 242.449615479 242.100006104 241.680084229 241.340240479 241.319732666 241.519927979 241.699615479 241.710357666 241.670318604 241.659576416 241.510162354 240.979888916 240.040435791 240.989822388 241.52986145 241.810134888 241.839920044 241.609939575 241.230056763 240.859939575 240.640213013 240.620193481 240.719802856 240.859939575 240.949783325 240.899978638 240.640213013 240.10017395 239.219802856 238.02986145 241.140075684 241.670349121 241.890075684 241.840270996 241.619567871 241.369567871 241.159606934 241.000427246 240.939880371 240.970153809 241.000427246 240.899841309 240.670349121 240.420349121 240.050231934 239.180114746 237.569763184 242.619537354 243.140045166 243.109771729 242.769927979 242.420318604 242.059967041 241.649810791 241.300201416 241.279693604 241.510162354 241.670318604 241.640045166 241.609771729 241.680084229 241.670318604 241.250396729 240.309967041 241.000076294 241.549880981 241.870193481 241.890213013 241.649978638 241.250076294 240.839920044 240.569900513 240.509841919 240.620193481 240.810134888 240.980056763 240.989822388 240.799880981 240.319900513 239.489822388 238.35017395 241.199645996 241.689880371 241.899841309 241.840270996 241.579528809 241.300231934 241.069763184 240.920349121 240.850036621 240.890075684 240.939880371 240.880310059 240.720153809 240.559997559 240.290466309 239.510192871 237.960388184 242.880279541 243.309967041 243.199615479 242.809967041 242.409576416 242.040435791 241.619537354 241.279693604 241.229888916 241.449615479 241.569732666 241.519927979 241.500396729 241.689849854 241.840240479 241.550201416 240.670318604 240.949783325 241.540115356 241.879959106 241.910232544 241.669998169 241.270095825 240.839920044 240.520095825 240.399978638 240.489822388 240.719802856 240.929763794 241.02986145 240.949783325 240.580154419 239.85017395 238.750076294 241.210388184 241.659606934 241.859802246 241.819763184 241.579528809 241.260192871 240.979919434 240.800231934 240.729919434 240.760192871 240.829528809 240.859802246 240.800231934 240.739685059 240.540466309 239.869567871 238.460388184 243.080474854 243.439849854 243.319732666 242.909576416 242.479888916 242.080474854 241.640045166 241.279693604 241.220123291 241.359771729 241.439849854 241.359771729 241.390045166 241.670318604 241.939849854 241.819732666 241.069732666 240.9400177 241.540115356 241.870193481 241.919998169 241.699783325 241.299880981 240.859939575 240.489822388 240.330154419 240.410232544 240.620193481 240.85017395 240.989822388 241.02986145 240.85017395 240.270095825 239.250076294 241.140075684 241.550231934 241.790466309 241.829528809 241.630310059 241.269958496 240.939880371 240.710388184 240.630310059 240.649841309 240.750427246 240.840270996 240.880310059 240.869567871 240.720153809 240.180114746 239.019958496 243.229888916 243.580474854 243.489654541 243.109771729 242.649810791 242.180084229 241.699615479 241.319732666 241.210357666 241.300201416 241.330474854 241.260162354 241.319732666 241.640045166 241.989654541 241.989654541 241.430084229 240.989822388 241.580154419 241.890213013 241.929763794 241.739822388 241.370193481 240.910232544 240.52986145 240.359939575 240.449783325 240.649978638 240.819900513 240.960037231 241.080154419 241.069900513 240.669998169 239.790115356 241.050231934 241.449645996 241.739685059 241.869567871 241.729919434 241.340270996 240.920349121 240.670349121 240.590270996 240.609802246 240.710388184 240.850036621 240.960388184 240.970153809 240.829528809 240.399841309 239.519958496 243.380279541 243.720123291 243.670318604 243.319732666 242.819732666 242.269927979 241.720123291 241.309967041 241.170318604 241.239654541 241.279693604 241.260162354 241.380279541 241.689849854 242.019927979 242.090240479 241.729888916 241.140213013 241.679763794 241.9400177 241.989822388 241.839920044 241.489822388 241.000076294 240.589920044 240.4400177 240.569900513 240.790115356 240.9400177 241.040115356 241.179763794 241.270095825 241.009841919 240.259841919 240.960388184 241.409606934 241.769958496 241.970153809 241.850036621 241.409606934 240.939880371 240.659606934 240.579528809 240.619567871 240.720153809 240.880310059 241.029724121 241.050231934 240.899841309 240.569763184 239.949645996 243.500396729 243.790435791 243.750396729 243.409576416 242.890045166 242.260162354 241.649810791 241.210357666 241.069732666 241.149810791 241.260162354 241.350006104 241.519927979 241.819732666 242.090240479 242.199615479 242.010162354 241.35017395 241.799880981 241.989822388 242.060134888 241.960037231 241.620193481 241.10017395 240.640213013 240.500076294 240.669998169 240.9400177 241.10017395 241.1900177 241.330154419 241.429763794 241.250076294 240.620193481 240.899841309 241.449645996 241.890075684 242.140075684 242.010192871 241.529724121 241.010192871 240.699645996 240.640075684 240.670349121 240.750427246 240.880310059 241.040466309 241.090270996 240.960388184 240.699645996 240.279724121 243.540435791 243.750396729 243.689849854 243.359771729 242.840240479 242.210357666 241.569732666 241.109771729 240.960357666 241.059967041 241.239654541 241.430084229 241.659576416 241.930084229 242.170318604 242.340240479 242.300201416 241.609939575 241.9400177 242.049880981 242.129959106 242.10017395 241.770095825 241.1900177 240.679763794 240.500076294 240.6900177 240.989822388 241.199783325 241.310134888 241.449783325 241.549880981 241.429763794 240.919998169 240.840270996 241.579528809 242.119567871 242.369567871 242.229919434 241.739685059 241.199645996 240.869567871 240.800231934 240.829528809 240.869567871 240.930114746 241.029724121 241.079528809 240.979919434 240.809997559 240.579528809 243.470123291 243.649810791 243.569732666 243.290435791 242.819732666 242.229888916 241.600006104 241.130279541 240.960357666 241.069732666 241.279693604 241.510162354 241.739654541 241.979888916 242.210357666 242.449615479 242.580474854 241.859939575 242.10017395 242.160232544 242.239822388 242.239822388 241.919998169 241.319900513 240.759841919 240.549880981 240.699783325 240.969802856 241.179763794 241.35017395 241.509841919 241.620193481 241.549880981 241.169998169 240.809997559 241.760192871 242.390075684 242.649841309 242.489685059 242.010192871 241.460388184 241.119567871 241.040466309 241.079528809 241.090270996 241.069763184 241.069763184 241.050231934 240.979919434 240.890075684 240.800231934 243.340240479 243.559967041 243.529693604 243.290435791 242.880279541 242.340240479 241.750396729 241.300201416 241.130279541 241.229888916 241.439849854 241.619537354 241.790435791 241.960357666 242.170318604 242.479888916 242.750396729 242.080154419 242.290115356 242.310134888 242.379959106 242.379959106 242.060134888 241.480056763 240.949783325 240.719802856 240.810134888 241.009841919 241.210037231 241.379959106 241.540115356 241.649978638 241.640213013 241.390213013 240.819763184 241.960388184 242.649841309 242.840270996 242.640075684 242.189880371 241.680114746 241.319763184 241.229919434 241.300231934 241.350036621 241.290466309 241.180114746 241.069763184 240.960388184 240.920349121 240.930114746 243.239654541 243.550201416 243.580474854 243.369537354 242.970123291 242.439849854 241.890045166 241.489654541 241.369537354 241.500396729 241.689849854 241.819732666 241.899810791 241.979888916 242.130279541 242.409576416 242.779693604 242.259841919 242.480056763 242.509841919 242.560134888 242.520095825 242.199783325 241.660232544 241.179763794 240.980056763 241.020095825 241.179763794 241.35017395 241.500076294 241.620193481 241.699783325 241.710037231 241.540115356 240.829528809 242.130310059 242.800231934 242.890075684 242.630310059 242.210388184 241.750427246 241.399841309 241.300231934 241.409606934 241.540466309 241.510192871 241.350036621 241.140075684 240.970153809 240.920349121 241.000427246 243.199615479 243.590240479 243.659576416 243.420318604 242.979888916 242.470123291 241.970123291 241.640045166 241.580474854 241.710357666 241.890045166 241.989654541 242.050201416 242.090240479 242.140045166 242.340240479 242.699615479 242.359939575 242.669998169 242.730056763 242.759841919 242.669998169 242.339920044 241.819900513 241.379959106 241.199783325 241.239822388 241.399978638 241.569900513 241.679763794 241.730056763 241.759841919 241.739822388 241.609939575 240.819763184 242.189880371 242.829528809 242.819763184 242.519958496 242.170349121 241.800231934 241.470153809 241.350036621 241.460388184 241.640075684 241.689880371 241.540466309 241.279724121 241.029724121 240.930114746 241.040466309 243.189849854 243.600006104 243.659576416 243.399810791 242.960357666 242.470123291 242.040435791 241.769927979 241.729888916 241.840240479 241.979888916 242.080474854 242.170318604 242.220123291 242.229888916 242.330474854 242.619537354 242.419998169 242.830154419 242.949783325 242.960037231 242.819900513 242.449783325 241.949783325 241.509841919 241.319900513 241.379959106 241.569900513 241.739822388 241.830154419 241.839920044 241.819900513 241.77986145 241.679763794 240.729919434 242.119567871 242.760192871 242.739685059 242.479919434 242.210388184 241.939880371 241.649841309 241.489685059 241.550231934 241.720153809 241.809997559 241.720153809 241.479919434 241.199645996 241.040466309 241.130310059 243.130279541 243.519927979 243.580474854 243.359771729 242.989654541 242.569732666 242.180084229 241.930084229 241.859771729 241.920318604 241.989654541 242.059967041 242.180084229 242.309967041 242.369537354 242.420318604 242.640045166 242.460037231 242.9400177 243.109939575 243.109939575 242.9400177 242.549880981 242.040115356 241.629959106 241.4400177 241.500076294 241.6900177 241.859939575 241.919998169 241.890213013 241.859939575 241.830154419 241.77986145 240.579528809 241.989685059 242.670349121 242.720153809 242.540466309 242.350036621 242.119567871 241.869567871 241.699645996 241.689880371 241.800231934 241.899841309 241.880310059 241.739685059 241.489685059 241.269958496 241.290466309 243.019927979 243.359771729 243.460357666 243.340240479 243.080474854 242.720123291 242.359771729 242.109771729 242.019927979 242.029693604 242.019927979 242.029693604 242.140045166 242.340240479 242.479888916 242.559967041 242.760162354 242.509841919 243.000076294 243.179763794 243.169998169 242.969802856 242.580154419 242.120193481 241.759841919 241.609939575 241.679763794 241.85017395 241.969802856 241.980056763 241.9400177 241.929763794 241.9400177 241.919998169 240.489685059 241.899841309 242.619567871 242.769958496 242.649841309 242.460388184 242.239685059 242.010192871 241.829528809 241.790466309 241.859802246 241.949645996 242.019958496 241.989685059 241.809997559 241.569763184 241.500427246 242.899810791 243.239654541 243.390045166 243.369537354 243.170318604 242.859771729 242.500396729 242.260162354 242.199615479 242.210357666 242.149810791 242.080474854 242.130279541 242.319732666 242.519927979 242.680084229 242.909576416 242.589920044 243.020095825 243.169998169 243.160232544 242.960037231 242.60017395 242.1900177 241.919998169 241.819900513 241.899978638 242.02986145 242.10017395 242.060134888 242.000076294 242.020095825 242.049880981 242.049880981 240.550231934 241.930114746 242.649841309 242.809997559 242.689880371 242.479919434 242.239685059 242.029724121 241.880310059 241.840270996 241.899841309 242.029724121 242.170349121 242.220153809 242.100036621 241.840270996 241.689880371 242.830474854 243.189849854 243.390045166 243.409576416 243.239654541 242.930084229 242.609771729 242.409576416 242.380279541 242.399810791 242.340240479 242.229888916 242.189849854 242.319732666 242.529693604 242.750396729 243.040435791 242.669998169 243.040115356 243.169998169 243.169998169 242.980056763 242.640213013 242.27986145 242.040115356 241.969802856 242.040115356 242.149978638 242.1900177 242.140213013 242.080154419 242.109939575 242.149978638 242.160232544 240.739685059 242.059997559 242.699645996 242.809997559 242.670349121 242.449645996 242.229919434 242.040466309 241.920349121 241.909606934 242.000427246 242.170349121 242.329528809 242.390075684 242.279724121 242.029724121 241.829528809 242.790435791 243.189849854 243.430084229 243.449615479 243.269927979 242.989654541 242.729888916 242.580474854 242.559967041 242.559967041 242.510162354 242.409576416 242.330474854 242.380279541 242.529693604 242.779693604 243.109771729 242.759841919 243.069900513 243.199783325 243.230056763 243.069900513 242.719802856 242.359939575 242.109939575 242.020095825 242.060134888 242.169998169 242.219802856 242.169998169 242.120193481 242.149978638 242.199783325 242.219802856 241.019958496 242.239685059 242.750427246 242.769958496 242.619567871 242.449645996 242.300231934 242.149841309 242.059997559 242.069763184 242.199645996 242.390075684 242.529724121 242.510192871 242.369567871 242.130310059 241.930114746 242.750396729 243.189849854 243.460357666 243.489654541 243.300201416 243.050201416 242.869537354 242.760162354 242.710357666 242.659576416 242.609771729 242.559967041 242.500396729 242.479888916 242.569732666 242.800201416 243.170318604 242.810134888 243.109939575 243.270095825 243.319900513 243.149978638 242.799880981 242.429763794 242.149978638 242.020095825 242.02986145 242.160232544 242.230056763 242.1900177 242.120193481 242.149978638 242.219802856 242.27986145 241.340270996 242.420349121 242.790466309 242.739685059 242.609802246 242.489685059 242.399841309 242.309997559 242.239685059 242.260192871 242.420349121 242.630310059 242.710388184 242.600036621 242.390075684 242.189880371 242.019958496 242.659576416 243.140045166 243.470123291 243.510162354 243.330474854 243.109771729 242.970123291 242.880279541 242.800201416 242.729888916 242.699615479 242.699615479 242.649810791 242.590240479 242.630279541 242.869537354 243.250396729 242.839920044 243.140213013 243.319900513 243.390213013 243.210037231 242.85017395 242.480056763 242.219802856 242.089920044 242.109939575 242.230056763 242.319900513 242.250076294 242.140213013 242.149978638 242.239822388 242.330154419 241.689880371 242.609802246 242.859802246 242.779724121 242.649841309 242.550231934 242.479919434 242.420349121 242.380310059 242.430114746 242.600036621 242.819763184 242.850036621 242.649841309 242.390075684 242.220153809 242.100036621 242.569732666 243.090240479 243.460357666 243.529693604 243.380279541 243.149810791 243.010162354 242.930084229 242.880279541 242.830474854 242.819732666 242.840240479 242.779693604 242.670318604 242.689849854 242.949615479 243.350006104 242.870193481 243.149978638 243.359939575 243.429763794 243.259841919 242.910232544 242.569900513 242.35017395 242.239822388 242.270095825 242.410232544 242.480056763 242.370193481 242.210037231 242.199783325 242.27986145 242.379959106 242.100036621 242.829528809 242.970153809 242.880310059 242.760192871 242.649841309 242.550231934 242.500427246 242.489685059 242.550231934 242.739685059 242.949645996 242.960388184 242.699645996 242.369567871 242.210388184 242.140075684 242.540435791 243.040435791 243.430084229 243.540435791 243.409576416 243.180084229 243.019927979 242.970123291 242.970123291 242.970123291 242.979888916 242.970123291 242.869537354 242.699615479 242.710357666 243.010162354 243.449615479 242.919998169 243.1900177 243.399978638 243.489822388 243.330154419 243.000076294 242.699783325 242.509841919 242.399978638 242.419998169 242.549880981 242.629959106 242.500076294 242.299880981 242.250076294 242.330154419 242.419998169 242.500427246 243.050231934 243.069763184 242.989685059 242.920349121 242.800231934 242.670349121 242.600036621 242.609802246 242.670349121 242.840270996 243.050231934 243.059997559 242.750427246 242.340270996 242.130310059 242.100036621 242.550201416 243.000396729 243.350006104 243.500396729 243.430084229 243.220123291 243.059967041 243.010162354 243.050201416 243.080474854 243.080474854 243.050201416 242.899810791 242.710357666 242.710357666 243.040435791 243.519927979 243.000076294 243.239822388 243.4400177 243.549880981 243.419998169 243.120193481 242.839920044 242.660232544 242.520095825 242.489822388 242.609939575 242.710037231 242.589920044 242.370193481 242.290115356 242.35017395 242.429763794 242.859802246 243.220153809 243.159606934 243.109802246 243.119567871 243.029724121 242.859802246 242.760192871 242.739685059 242.779724121 242.909606934 243.100036621 243.130310059 242.790466309 242.290466309 242.000427246 242.010192871 242.590240479 242.949615479 243.239654541 243.420318604 243.439849854 243.290435791 243.119537354 243.040435791 243.069732666 243.100006104 243.090240479 243.059967041 242.939849854 242.750396729 242.710357666 243.029693604 243.529693604 243.060134888 243.259841919 243.460037231 243.569900513 243.449783325 243.179763794 242.9400177 242.750076294 242.60017395 242.540115356 242.629959106 242.730056763 242.649978638 242.419998169 242.299880981 242.330154419 242.419998169 243.140075684 243.350036621 243.229919434 243.239685059 243.350036621 243.300231934 243.100036621 242.939880371 242.880310059 242.869567871 242.970153809 243.130310059 243.149841309 242.790466309 242.229919434 241.859802246 241.880310059 242.630279541 242.930084229 243.140045166 243.340240479 243.449615479 243.369537354 243.189849854 243.059967041 243.029693604 243.019927979 243.040435791 243.050201416 243.010162354 242.840240479 242.750396729 243.000396729 243.479888916 243.080154419 243.27986145 243.449783325 243.540115356 243.419998169 243.160232544 242.949783325 242.819900513 242.699783325 242.629959106 242.699783325 242.77986145 242.6900177 242.460037231 242.299880981 242.299880981 242.370193481 243.329528809 243.439880371 243.329528809 243.430114746 243.609802246 243.590270996 243.359802246 243.140075684 243.050231934 243.019958496 243.069763184 243.170349121 243.140075684 242.750427246 242.159606934 241.769958496 241.769958496 242.680084229 242.909576416 243.080474854 243.309967041 243.489654541 243.449615479 243.239654541 243.069732666 242.989654541 242.970123291 242.970123291 243.050201416 243.080474854 242.949615479 242.819732666 242.979888916 243.409576416 243.060134888 243.290115356 243.460037231 243.520095825 243.359939575 243.109939575 242.929763794 242.859939575 242.799880981 242.77986145 242.819900513 242.859939575 242.750076294 242.489822388 242.299880981 242.250076294 242.299880981 243.449645996 243.500427246 243.449645996 243.630310059 243.859802246 243.840270996 243.590270996 243.340270996 243.250427246 243.250427246 243.269958496 243.269958496 243.119567871 242.699645996 242.130310059 241.750427246 241.720153809 242.729888916 242.920318604 243.040435791 243.269927979 243.479888916 243.479888916 243.279693604 243.080474854 242.989654541 242.949615479 242.939849854 243.029693604 243.109771729 243.040435791 242.899810791 242.979888916 243.330474854 243.069900513 243.35017395 243.520095825 243.52986145 243.35017395 243.089920044 242.929763794 242.899978638 242.890213013 242.899978638 242.9400177 242.949783325 242.810134888 242.52986145 242.299880981 242.210037231 242.210037231 243.510192871 243.540466309 243.590270996 243.829528809 244.050231934 244.019958496 243.750427246 243.519958496 243.439880371 243.479919434 243.489685059 243.399841309 243.109802246 242.649841309 242.119567871 241.790466309 241.729919434 242.760162354 242.899810791 242.989654541 243.199615479 243.430084229 243.449615479 243.250396729 243.059967041 242.989654541 242.970123291 242.949615479 243.010162354 243.090240479 243.069732666 242.949615479 242.989654541 243.260162354 243.140213013 243.449783325 243.589920044 243.540115356 243.35017395 243.109939575 242.960037231 242.919998169 242.9400177 242.960037231 243.02986145 243.040115356 242.890213013 242.580154419 242.299880981 242.160232544 242.120193481 243.529724121 243.579528809 243.720153809 243.979919434 244.149841309 244.059997559 243.829528809 243.619567871 243.559997559 243.600036621 243.609802246 243.449645996 243.090270996 242.579528809 242.119567871 241.829528809 241.760192871 242.750396729 242.859771729 242.939849854 243.149810791 243.359771729 243.369537354 243.189849854 243.029693604 243.000396729 243.010162354 242.989654541 243.019927979 243.080474854 243.059967041 242.949615479 242.960357666 243.159576416 243.270095825 243.560134888 243.629959106 243.52986145 243.330154419 243.149978638 243.020095825 242.969802856 242.949783325 242.980056763 243.069900513 243.109939575 242.960037231 242.620193481 242.270095825 242.080154419 242.009841919 243.529724121 243.659606934 243.890075684 244.119567871 244.170349121 244.040466309 243.840270996 243.670349121 243.600036621 243.609802246 243.600036621 243.420349121 243.019958496 242.500427246 242.069763184 241.850036621 241.800231934 242.720123291 242.869537354 242.970123291 243.170318604 243.340240479 243.309967041 243.130279541 243.010162354 243.010162354 243.059967041 243.069732666 243.090240479 243.119537354 243.059967041 242.909576416 242.869537354 243.000396729 243.399978638 243.629959106 243.629959106 243.469802856 243.299880981 243.169998169 243.10017395 243.02986145 242.989822388 243.000076294 243.10017395 243.160232544 243.000076294 242.609939575 242.199783325 241.960037231 241.870193481 243.559997559 243.800231934 244.109802246 244.260192871 244.149841309 243.960388184 243.819763184 243.729919434 243.640075684 243.590270996 243.540466309 243.350036621 242.930114746 242.399841309 242.000427246 241.829528809 241.809997559 242.699615479 242.920318604 243.100006104 243.279693604 243.390045166 243.319732666 243.149810791 243.040435791 243.069732666 243.130279541 243.149810791 243.189849854 243.199615479 243.059967041 242.840240479 242.720123291 242.790435791 243.480056763 243.6900177 243.620193481 243.429763794 243.270095825 243.179763794 243.149978638 243.10017395 243.02986145 243.040115356 243.129959106 243.199783325 243.020095825 242.580154419 242.10017395 241.819900513 241.719802856 243.600036621 243.949645996 244.319763184 244.380310059 244.130310059 243.880310059 243.779724121 243.750427246 243.680114746 243.579528809 243.489685059 243.300231934 242.869567871 242.329528809 241.930114746 241.790466309 241.819763184 242.630279541 242.949615479 243.229888916 243.420318604 243.460357666 243.340240479 243.180084229 243.119537354 243.159576416 243.199615479 243.220123291 243.250396729 243.250396729 243.069732666 242.769927979 242.580474854 242.569732666 243.52986145 243.719802856 243.640213013 243.4400177 243.270095825 243.199783325 243.169998169 243.129959106 243.080154419 243.089920044 243.179763794 243.239822388 243.049880981 242.560134888 242.009841919 241.679763794 241.549880981 243.640075684 244.059997559 244.420349121 244.420349121 244.079528809 243.779724121 243.720153809 243.739685059 243.670349121 243.559997559 243.449645996 243.260192871 242.859802246 242.319763184 241.909606934 241.769958496 241.840270996 242.510162354 242.930084229 243.309967041 243.519927979 243.519927979 243.380279541 243.239654541 243.220123291 243.260162354 243.279693604 243.250396729 243.260162354 243.239654541 243.050201416 242.720123291 242.439849854 242.319732666 243.540115356 243.739822388 243.669998169 243.469802856 243.310134888 243.219802856 243.169998169 243.120193481 243.109939575 243.149978638 243.270095825 243.319900513 243.10017395 242.580154419 241.969802856 241.549880981 241.359939575 243.640075684 244.050231934 244.380310059 244.340270996 244.010192871 243.710388184 243.640075684 243.659606934 243.600036621 243.500427246 243.409606934 243.250427246 242.890075684 242.380310059 241.970153809 241.809997559 241.890075684 242.369537354 242.890045166 243.359771729 243.609771729 243.609771729 243.460357666 243.340240479 243.350006104 243.399810791 243.390045166 243.309967041 243.269927979 243.229888916 243.040435791 242.680084229 242.330474854 242.050201416 243.509841919 243.719802856 243.669998169 243.500076294 243.35017395 243.259841919 243.179763794 243.120193481 243.129959106 243.230056763 243.370193481 243.390213013 243.149978638 242.609939575 241.949783325 241.449783325 241.169998169 243.559997559 243.920349121 244.189880371 244.180114746 243.920349121 243.670349121 243.579528809 243.579528809 243.519958496 243.439880371 243.369567871 243.239685059 242.939880371 242.479919434 242.079528809 241.899841309 241.970153809 242.250396729 242.859771729 243.399810791 243.720123291 243.739654541 243.580474854 243.439849854 243.449615479 243.519927979 243.519927979 243.420318604 243.309967041 243.210357666 243.010162354 242.640045166 242.180084229 241.750396729 243.390213013 243.629959106 243.60017395 243.469802856 243.370193481 243.27986145 243.1900177 243.129959106 243.160232544 243.270095825 243.399978638 243.390213013 243.129959106 242.60017395 241.9400177 241.35017395 240.960037231 243.420349121 243.699645996 243.920349121 243.960388184 243.800231934 243.609802246 243.540466309 243.529724121 243.500427246 243.420349121 243.350036621 243.239685059 242.979919434 242.579528809 242.189880371 242.019958496 242.119567871 242.189849854 242.840240479 243.439849854 243.800201416 243.859771729 243.689849854 243.510162354 243.489654541 243.590240479 243.619537354 243.510162354 243.340240479 243.180084229 242.949615479 242.559967041 242.040435791 241.460357666 243.179763794 243.469802856 243.489822388 243.410232544 243.339920044 243.290115356 243.199783325 243.129959106 243.160232544 243.270095825 243.35017395 243.290115356 243.02986145 242.549880981 241.910232544 241.270095825 240.759841919 243.239685059 243.479919434 243.659606934 243.729919434 243.649841309 243.529724121 243.489685059 243.519958496 243.519958496 243.460388184 243.380310059 243.260192871 243.000427246 242.619567871 242.269958496 242.149841309 242.300231934 242.140045166 242.819732666 243.420318604 243.790435791 243.869537354 243.720123291 243.529693604 243.500396729 243.600006104 243.649810791 243.540435791 243.330474854 243.119537354 242.859771729 242.439849854 241.869537354 241.199615479 242.919998169 243.27986145 243.370193481 243.330154419 243.310134888 243.270095825 243.199783325 243.129959106 243.149978638 243.239822388 243.290115356 243.179763794 242.899978638 242.469802856 241.870193481 241.1900177 240.560134888 243.029724121 243.260192871 243.449645996 243.550231934 243.510192871 243.430114746 243.430114746 243.500427246 243.550231934 243.540466309 243.460388184 243.300231934 243.019958496 242.640075684 242.309997559 242.250427246 242.460388184 242.090240479 242.769927979 243.319732666 243.680084229 243.769927979 243.659576416 243.500396729 243.500396729 243.609771729 243.640045166 243.519927979 243.300201416 243.059967041 242.769927979 242.309967041 241.680084229 240.939849854 242.6900177 243.120193481 243.259841919 243.259841919 243.250076294 243.250076294 243.179763794 243.129959106 243.160232544 243.239822388 243.250076294 243.109939575 242.819900513 242.399978638 241.819900513 241.10017395 240.35017395 242.790466309 243.040466309 243.269958496 243.390075684 243.380310059 243.340270996 243.369567871 243.479919434 243.569763184 243.579528809 243.529724121 243.369567871 243.050231934 242.619567871 242.300231934 242.300231934 242.559997559 242.040435791 242.680084229 243.180084229 243.500396729 243.609771729 243.550201416 243.470123291 243.500396729 243.609771729 243.609771729 243.479888916 243.279693604 243.040435791 242.680084229 242.180084229 241.479888916 240.659576416 242.520095825 242.969802856 243.149978638 243.169998169 243.169998169 243.1900177 243.160232544 243.129959106 243.149978638 243.230056763 243.239822388 243.089920044 242.77986145 242.35017395 241.759841919 240.989822388 240.140213013 242.479919434 242.790466309 243.050231934 243.220153809 243.250427246 243.250427246 243.309997559 243.420349121 243.519958496 243.569763184 243.559997559 243.390075684 243.029724121 242.569763184 242.300231934 242.359802246 242.619567871 241.949615479 242.569732666 243.019927979 243.319732666 243.439849854 243.430084229 243.430084229 243.489654541 243.569732666 243.550201416 243.420318604 243.250396729 243.000396729 242.600006104 242.019927979 241.269927979 240.350006104 242.370193481 242.799880981 242.969802856 243.02986145 243.069900513 243.120193481 243.120193481 243.109939575 243.140213013 243.199783325 243.199783325 243.060134888 242.750076294 242.27986145 241.649978638 240.830154419 239.890213013 242.140075684 242.489685059 242.819763184 243.029724121 243.109802246 243.149841309 243.229919434 243.340270996 243.409606934 243.470153809 243.489685059 243.329528809 242.930114746 242.479919434 242.279724121 242.420349121 242.680114746 241.830474854 242.430084229 242.859771729 243.149810791 243.290435791 243.330474854 243.359771729 243.439849854 243.500396729 243.470123291 243.350006104 243.180084229 242.920318604 242.479888916 241.859771729 241.069732666 240.080474854 242.219802856 242.60017395 242.77986145 242.870193481 242.960037231 243.040115356 243.069900513 243.060134888 243.10017395 243.149978638 243.140213013 242.969802856 242.649978638 242.160232544 241.480056763 240.609939575 239.580154419 241.779724121 242.189880371 242.569763184 242.819763184 242.930114746 243.010192871 243.119567871 243.210388184 243.260192871 243.329528809 243.350036621 243.189880371 242.760192871 242.329528809 242.199645996 242.430114746 242.670349121 241.680084229 242.260162354 242.680084229 242.970123291 243.149810791 243.229888916 243.300201416 243.390045166 243.439849854 243.399810791 243.300201416 243.119537354 242.800201416 242.319732666 241.689849854 240.899810791 239.859771729 242.049880981 242.390213013 242.580154419 242.739822388 242.879959106 242.960037231 242.989822388 243.000076294 243.049880981 243.089920044 243.060134888 242.870193481 242.509841919 241.980056763 241.270095825 240.339920044 239.230056763 241.420349121 241.890075684 242.329528809 242.609802246 242.729919434 242.840270996 242.979919434 243.090270996 243.140075684 243.189880371 243.229919434 243.040466309 242.579528809 242.119567871 242.010192871 242.260192871 242.460388184 241.479888916 242.050201416 242.470123291 242.800201416 243.019927979 243.149810791 243.260162354 243.359771729 243.420318604 243.399810791 243.300201416 243.080474854 242.689849854 242.149810791 241.510162354 240.699615479 239.619537354 241.910232544 242.230056763 242.449783325 242.649978638 242.819900513 242.899978638 242.910232544 242.910232544 242.969802856 243.040115356 243.000076294 242.77986145 242.370193481 241.790115356 241.020095825 240.020095825 238.819900513 241.059997559 241.600036621 242.090270996 242.390075684 242.529724121 242.659606934 242.859802246 242.989685059 243.050231934 243.100036621 243.130310059 242.939880371 242.420349121 241.880310059 241.689880371 241.850036621 241.960388184 241.229888916 241.809967041 242.250396729 242.609771729 242.880279541 243.069732666 243.199615479 243.300201416 243.380279541 243.399810791 243.319732666 243.059967041 242.600006104 241.979888916 241.279693604 240.430084229 239.300201416 241.830154419 242.120193481 242.35017395 242.580154419 242.759841919 242.830154419 242.819900513 242.819900513 242.879959106 242.949783325 242.9400177 242.719802856 242.270095825 241.609939575 240.770095825 239.6900177 238.390213013 240.720153809 241.329528809 241.869567871 242.189880371 242.340270996 242.500427246 242.739685059 242.920349121 242.979919434 243.010192871 243.029724121 242.850036621 242.300231934 241.649841309 241.300231934 241.279724121 241.239685059 240.960357666 241.569732666 242.019927979 242.399810791 242.710357666 242.939849854 243.090240479 243.220123291 243.300201416 243.350006104 243.290435791 243.019927979 242.500396729 241.809967041 241.029693604 240.100006104 238.890045166 241.810134888 242.060134888 242.270095825 242.480056763 242.649978638 242.730056763 242.739822388 242.710037231 242.750076294 242.839920044 242.85017395 242.660232544 242.1900177 241.469802856 240.540115356 239.370193481 237.949783325 240.470153809 241.119567871 241.689880371 242.029724121 242.199645996 242.390075684 242.649841309 242.850036621 242.909606934 242.909606934 242.920349121 242.750427246 242.220153809 241.500427246 240.960388184 240.710388184 240.500427246 240.689849854 241.309967041 241.790435791 242.199615479 242.540435791 242.800201416 242.989654541 243.140045166 243.229888916 243.260162354 243.189849854 242.899810791 242.369537354 241.630279541 240.779693604 239.760162354 238.479888916 241.77986145 242.020095825 242.1900177 242.359939575 242.520095825 242.60017395 242.620193481 242.620193481 242.649978638 242.719802856 242.750076294 242.580154419 242.120193481 241.35017395 240.330154419 239.060134888 237.540115356 240.329528809 240.989685059 241.550231934 241.899841309 242.109802246 242.309997559 242.569763184 242.760192871 242.829528809 242.829528809 242.819763184 242.649841309 242.149841309 241.420349121 240.729919434 240.260192871 239.880310059 240.430084229 241.059967041 241.559967041 242.000396729 242.359771729 242.670318604 242.920318604 243.100006104 243.189849854 243.170318604 243.059967041 242.760162354 242.210357666 241.470123291 240.569732666 239.489654541 238.140045166 241.730056763 241.960037231 242.120193481 242.250076294 242.359939575 242.4400177 242.489822388 242.520095825 242.549880981 242.620193481 242.649978638 242.489822388 242.02986145 241.239822388 240.169998169 238.830154419 237.179763794 240.250427246 240.869567871 241.399841309 241.779724121 242.019958496 242.239685059 242.479919434 242.670349121 242.760192871 242.769958496 242.750427246 242.569763184 242.090270996 241.369567871 240.600036621 239.949645996 239.409606934 240.199615479 240.800201416 241.319732666 241.790435791 242.189849854 242.529693604 242.850006104 243.069732666 243.149810791 243.090240479 242.920318604 242.619537354 242.069732666 241.319732666 240.399810791 239.279693604 237.890045166 241.609939575 241.85017395 242.02986145 242.140213013 242.1900177 242.250076294 242.319900513 242.399978638 242.489822388 242.569900513 242.560134888 242.379959106 241.929763794 241.160232544 240.069900513 238.660232544 236.9400177 240.189880371 240.729919434 241.210388184 241.609802246 241.909606934 242.149841309 242.369567871 242.559997559 242.689880371 242.739685059 242.689880371 242.489685059 242.010192871 241.309997559 240.500427246 239.729919434 239.050231934 239.960357666 240.550201416 241.109771729 241.609771729 242.029693604 242.390045166 242.729888916 242.970123291 243.040435791 242.970123291 242.819732666 242.519927979 241.989654541 241.220123291 240.269927979 239.109771729 237.689849854 241.449783325 241.719802856 241.899978638 242.000076294 242.02986145 242.080154419 242.169998169 242.310134888 242.449783325 242.520095825 242.480056763 242.270095825 241.819900513 241.080154419 240.009841919 238.589920044 236.810134888 240.140075684 240.590270996 241.000427246 241.399841309 241.750427246 242.019958496 242.250427246 242.449645996 242.609802246 242.680114746 242.619567871 242.380310059 241.909606934 241.210388184 240.399841309 239.559997559 238.790466309 239.750396729 240.359771729 240.949615479 241.489654541 241.909576416 242.260162354 242.580474854 242.809967041 242.890045166 242.850006104 242.739654541 242.470123291 241.939849854 241.130279541 240.140045166 238.960357666 237.519927979 241.299880981 241.560134888 241.730056763 241.819900513 241.879959106 241.980056763 242.109939575 242.270095825 242.429763794 242.500076294 242.419998169 242.169998169 241.730056763 241.020095825 239.980056763 238.580154419 236.799880981 240.109802246 240.489685059 240.840270996 241.189880371 241.559997559 241.859802246 242.100036621 242.319763184 242.510192871 242.590270996 242.519958496 242.269958496 241.790466309 241.109802246 240.300231934 239.460388184 238.640075684 239.580474854 240.220123291 240.859771729 241.420318604 241.830474854 242.149810791 242.439849854 242.659576416 242.750396729 242.760162354 242.699615479 242.439849854 241.880279541 241.029693604 240.000396729 238.809967041 237.350006104 241.1900177 241.4400177 241.580154419 241.669998169 241.799880981 241.969802856 242.129959106 242.290115356 242.419998169 242.469802856 242.379959106 242.129959106 241.669998169 240.969802856 239.949783325 238.620193481 236.899978638 240.109802246 240.439880371 240.720153809 241.010192871 241.329528809 241.649841309 241.930114746 242.189880371 242.369567871 242.449645996 242.380310059 242.140075684 241.670349121 240.979919434 240.180114746 239.359802246 238.540466309 239.489654541 240.159576416 240.819732666 241.369537354 241.739654541 242.040435791 242.309967041 242.519927979 242.630279541 242.680084229 242.649810791 242.390045166 241.790435791 240.909576416 239.859771729 238.649810791 237.189849854 241.129959106 241.399978638 241.509841919 241.609939575 241.810134888 242.049880981 242.210037231 242.310134888 242.390213013 242.410232544 242.339920044 242.120193481 241.669998169 240.949783325 239.960037231 238.699783325 237.069900513 240.090270996 240.380310059 240.590270996 240.800231934 241.069763184 241.380310059 241.729919434 242.019958496 242.210388184 242.269958496 242.220153809 242.010192871 241.550231934 240.829528809 239.970153809 239.159606934 238.380310059 239.479888916 240.149810791 240.760162354 241.250396729 241.600006104 241.880279541 242.149810791 242.350006104 242.489654541 242.569732666 242.550201416 242.279693604 241.670318604 240.779693604 239.729888916 238.510162354 237.040435791 241.080154419 241.370193481 241.480056763 241.609939575 241.859939575 242.120193481 242.259841919 242.319900513 242.330154419 242.330154419 242.27986145 242.10017395 241.6900177 240.980056763 240.009841919 238.830154419 237.310134888 239.989685059 240.229919434 240.390075684 240.540466309 240.769958496 241.090270996 241.489685059 241.840270996 242.019958496 242.059997559 242.029724121 241.859802246 241.399841309 240.619567871 239.699645996 238.869567871 238.119567871 239.529693604 240.130279541 240.649810791 241.080474854 241.420318604 241.710357666 241.979888916 242.189849854 242.319732666 242.409576416 242.390045166 242.149810791 241.559967041 240.689849854 239.630279541 238.399810791 236.909576416 241.000076294 241.299880981 241.4400177 241.609939575 241.870193481 242.140213013 242.27986145 242.299880981 242.299880981 242.259841919 242.210037231 242.060134888 241.6900177 241.020095825 240.089920044 238.989822388 237.569900513 239.829528809 240.010192871 240.119567871 240.250427246 240.470153809 240.819763184 241.260192871 241.640075684 241.819763184 241.869567871 241.850036621 241.699645996 241.229919434 240.380310059 239.390075684 238.540466309 237.800231934 239.559967041 240.050201416 240.479888916 240.890045166 241.250396729 241.580474854 241.859771729 242.059967041 242.180084229 242.260162354 242.260162354 242.050201416 241.500396729 240.640045166 239.590240479 238.350006104 236.840240479 240.870193481 241.169998169 241.35017395 241.540115356 241.819900513 242.10017395 242.27986145 242.359939575 242.359939575 242.290115356 242.169998169 242.020095825 241.6900177 241.060134888 240.179763794 239.160232544 237.839920044 239.640075684 239.750427246 239.840270996 239.970153809 240.210388184 240.590270996 241.059997559 241.449645996 241.659606934 241.710388184 241.710388184 241.559997559 241.040466309 240.130310059 239.109802246 238.250427246 237.489685059 239.529693604 239.930084229 240.309967041 240.720123291 241.130279541 241.489654541 241.800201416 242.010162354 242.119537354 242.170318604 242.149810791 241.960357666 241.470123291 240.640045166 239.600006104 238.369537354 236.859771729 240.719802856 241.009841919 241.199783325 241.419998169 241.730056763 242.02986145 242.270095825 242.429763794 242.460037231 242.35017395 242.179763794 241.989822388 241.679763794 241.10017395 240.259841919 239.299880981 238.080154419 239.439880371 239.489685059 239.569763184 239.739685059 240.010192871 240.399841309 240.880310059 241.279724121 241.519958496 241.609802246 241.619567871 241.420349121 240.859802246 239.899841309 238.859802246 238.010192871 237.170349121 239.409576416 239.760162354 240.140045166 240.580474854 241.010162354 241.390045166 241.710357666 241.960357666 242.100006104 242.119537354 242.050201416 241.880279541 241.420318604 240.630279541 239.630279541 238.439849854 236.949615479 240.549880981 240.810134888 241.009841919 241.27986145 241.609939575 241.949783325 242.239822388 242.429763794 242.480056763 242.359939575 242.169998169 242.000076294 241.699783325 241.149978638 240.339920044 239.419998169 238.290115356 239.210388184 239.229919434 239.340270996 239.569763184 239.880310059 240.269958496 240.720153809 241.140075684 241.430114746 241.540466309 241.529724121 241.309997559 240.710388184 239.720153809 238.640075684 237.739685059 236.840270996 239.210357666 239.559967041 239.970123291 240.449615479 240.869537354 241.229888916 241.580474854 241.909576416 242.080474854 242.080474854 241.979888916 241.790435791 241.359771729 240.619537354 239.640045166 238.519927979 237.059967041 240.319900513 240.569900513 240.799880981 241.129959106 241.520095825 241.879959106 242.169998169 242.35017395 242.390213013 242.290115356 242.149978638 242.020095825 241.739822388 241.179763794 240.399978638 239.540115356 238.489822388 238.949645996 238.970153809 239.140075684 239.460388184 239.809997559 240.199645996 240.630310059 241.059997559 241.359802246 241.479919434 241.430114746 241.199645996 240.600036621 239.609802246 238.470153809 237.489685059 236.479919434 238.989654541 239.350006104 239.809967041 240.309967041 240.720123291 241.080474854 241.470123291 241.859771729 242.069732666 242.059967041 241.939849854 241.720123291 241.319732666 240.600006104 239.649810791 238.550201416 237.159576416 240.009841919 240.270095825 240.549880981 240.960037231 241.429763794 241.839920044 242.109939575 242.250076294 242.27986145 242.230056763 242.149978638 242.040115356 241.750076294 241.1900177 240.4400177 239.629959106 238.660232544 238.670349121 238.720153809 238.970153809 239.369567871 239.769958496 240.149841309 240.579528809 241.029724121 241.340270996 241.409606934 241.319763184 241.079528809 240.529724121 239.559997559 238.390075684 237.319763184 236.220153809 238.790435791 239.140045166 239.619537354 240.140045166 240.600006104 240.989654541 241.420318604 241.830474854 242.080474854 242.050201416 241.890045166 241.659576416 241.269927979 240.580474854 239.640045166 238.569732666 237.260162354 239.669998169 239.9400177 240.299880981 240.790115356 241.35017395 241.810134888 242.069900513 242.210037231 242.250076294 242.239822388 242.1900177 242.040115356 241.710037231 241.129959106 240.419998169 239.6900177 238.77986145 238.420349121 238.510192871 238.809997559 239.250427246 239.689880371 240.100036621 240.540466309 241.019958496 241.319763184 241.350036621 241.189880371 240.949645996 240.470153809 239.579528809 238.409606934 237.279724121 236.140075684 238.649810791 238.960357666 239.439849854 239.979888916 240.479888916 240.930084229 241.380279541 241.790435791 242.010162354 241.989654541 241.819732666 241.590240479 241.210357666 240.540435791 239.619537354 238.590240479 237.359771729 239.35017395 239.660232544 240.080154419 240.649978638 241.259841919 241.750076294 242.049880981 242.199783325 242.270095825 242.27986145 242.199783325 241.980056763 241.580154419 241.009841919 240.370193481 239.699783325 238.85017395 238.250427246 238.369567871 238.659606934 239.090270996 239.559997559 240.019958496 240.500427246 240.979919434 241.279724121 241.269958496 241.090270996 240.850036621 240.420349121 239.609802246 238.489685059 237.359802246 236.210388184 238.529693604 238.819732666 239.279693604 239.840240479 240.369537354 240.859771729 241.319732666 241.689849854 241.890045166 241.880279541 241.710357666 241.470123291 241.100006104 240.479888916 239.600006104 238.609771729 237.470123291 239.10017395 239.449783325 239.919998169 240.540115356 241.169998169 241.6900177 242.000076294 242.160232544 242.230056763 242.210037231 242.080154419 241.799880981 241.370193481 240.85017395 240.270095825 239.660232544 238.85017395 238.130310059 238.269958496 238.510192871 238.909606934 239.420349121 239.960388184 240.489685059 240.949645996 241.210388184 241.210388184 241.029724121 240.800231934 240.399841309 239.649841309 238.619567871 237.529724121 236.420349121 238.390045166 238.680084229 239.180084229 239.729888916 240.279693604 240.800201416 241.239654541 241.580474854 241.769927979 241.760162354 241.609771729 241.350006104 240.970123291 240.409576416 239.609771729 238.649810791 237.569732666 238.870193481 239.270095825 239.77986145 240.429763794 241.089920044 241.620193481 241.9400177 242.069900513 242.080154419 242.009841919 241.839920044 241.560134888 241.149978638 240.679763794 240.160232544 239.580154419 238.799880981 238.040466309 238.159606934 238.340270996 238.699645996 239.279724121 239.930114746 240.519958496 240.939880371 241.170349121 241.170349121 241.019958496 240.790466309 240.409606934 239.729919434 238.779724121 237.750427246 236.680114746 238.180084229 238.529693604 239.080474854 239.670318604 240.229888916 240.760162354 241.210357666 241.519927979 241.689849854 241.699615479 241.540435791 241.250396729 240.869537354 240.340240479 239.609771729 238.699615479 237.670318604 238.649978638 239.069900513 239.60017395 240.27986145 241.000076294 241.589920044 241.899978638 241.969802856 241.899978638 241.759841919 241.580154419 241.319900513 240.960037231 240.520095825 240.040115356 239.460037231 238.710037231 237.890075684 238.029724121 238.170349121 238.519958496 239.170349121 239.930114746 240.579528809 240.989685059 241.170349121 241.180114746 241.040466309 240.800231934 240.430114746 239.809997559 238.939880371 237.989685059 236.989685059 237.930084229 238.369537354 239.000396729 239.640045166 240.229888916 240.779693604 241.239654541 241.550201416 241.689849854 241.680084229 241.510162354 241.189849854 240.779693604 240.279693604 239.600006104 238.750396729 237.790435791 238.4400177 238.839920044 239.379959106 240.10017395 240.899978638 241.560134888 241.890213013 241.910232544 241.759841919 241.589920044 241.419998169 241.169998169 240.810134888 240.370193481 239.879959106 239.330154419 238.620193481 237.649841309 237.840270996 238.019958496 238.420349121 239.140075684 239.989685059 240.689880371 241.100036621 241.229919434 241.199645996 241.029724121 240.750427246 240.350036621 239.790466309 239.040466309 238.199645996 237.309997559 237.729888916 238.260162354 238.989654541 239.659576416 240.250396729 240.800201416 241.279693604 241.580474854 241.710357666 241.699615479 241.500396729 241.149810791 240.699615479 240.199615479 239.580474854 238.809967041 237.949615479 238.230056763 238.629959106 239.1900177 239.949783325 240.810134888 241.500076294 241.839920044 241.839920044 241.679763794 241.509841919 241.339920044 241.080154419 240.699783325 240.219802856 239.739822388 239.219802856 238.569900513 237.329528809 237.619567871 237.939880371 238.449645996 239.229919434 240.119567871 240.819763184 241.189880371 241.269958496 241.180114746 240.939880371 240.600036621 240.189880371 239.670349121 239.019958496 238.329528809 237.600036621 237.600006104 238.229888916 239.019927979 239.720123291 240.290435791 240.840240479 241.309967041 241.609771729 241.720123291 241.689849854 241.489654541 241.119537354 240.640045166 240.140045166 239.559967041 238.869537354 238.109771729 237.989822388 238.419998169 239.02986145 239.839920044 240.719802856 241.399978638 241.739822388 241.739822388 241.609939575 241.460037231 241.270095825 240.980056763 240.569900513 240.089920044 239.620193481 239.129959106 238.540115356 236.979919434 237.420349121 237.920349121 238.559997559 239.390075684 240.260192871 240.899841309 241.199645996 241.229919434 241.069763184 240.779724121 240.399841309 239.970153809 239.489685059 238.930114746 238.359802246 237.800231934 237.460357666 238.189849854 239.029693604 239.739654541 240.309967041 240.859771729 241.330474854 241.609771729 241.699615479 241.659576416 241.449615479 241.080474854 240.590240479 240.080474854 239.529693604 238.880279541 238.189849854 237.679763794 238.179763794 238.879959106 239.750076294 240.640213013 241.290115356 241.60017395 241.620193481 241.52986145 241.379959106 241.169998169 240.85017395 240.429763794 239.969802856 239.520095825 239.040115356 238.489822388 236.680114746 237.260192871 237.899841309 238.640075684 239.500427246 240.329528809 240.899841309 241.130310059 241.100036621 240.899841309 240.590270996 240.199645996 239.790466309 239.340270996 238.829528809 238.319763184 237.869567871 237.229888916 238.040435791 238.930084229 239.659576416 240.279693604 240.859771729 241.319732666 241.569732666 241.619537354 241.550201416 241.359771729 241.010162354 240.519927979 239.989654541 239.439849854 238.809967041 238.149810791 237.330154419 237.919998169 238.719802856 239.649978638 240.52986145 241.160232544 241.449783325 241.500076294 241.4400177 241.310134888 241.049880981 240.710037231 240.299880981 239.879959106 239.419998169 238.929763794 238.359939575 236.470153809 237.130310059 237.859802246 238.640075684 239.500427246 240.309997559 240.840270996 241.029724121 240.970153809 240.760192871 240.420349121 240.029724121 239.640075684 239.220153809 238.720153809 238.229919434 237.800231934 236.920318604 237.760162354 238.699615479 239.519927979 240.220123291 240.830474854 241.279693604 241.470123291 241.460357666 241.380279541 241.210357666 240.880279541 240.399810791 239.869537354 239.300201416 238.670318604 238.029693604 237.049880981 237.719802856 238.580154419 239.540115356 240.410232544 241.009841919 241.299880981 241.379959106 241.35017395 241.230056763 240.969802856 240.60017395 240.210037231 239.799880981 239.339920044 238.790115356 238.199783325 236.329528809 237.040466309 237.800231934 238.590270996 239.449645996 240.250427246 240.769958496 240.960388184 240.899841309 240.659606934 240.279724121 239.850036621 239.449645996 239.050231934 238.569763184 238.059997559 237.609802246 236.580474854 237.460357666 238.439849854 239.350006104 240.159576416 240.819732666 241.220123291 241.340240479 241.279693604 241.189849854 241.029693604 240.720123291 240.260162354 239.729888916 239.159576416 238.540435791 237.909576416 236.879959106 237.609939575 238.509841919 239.469802856 240.330154419 240.910232544 241.199783325 241.290115356 241.290115356 241.199783325 240.9400177 240.549880981 240.140213013 239.750076294 239.270095825 238.6900177 238.069900513 236.189880371 236.960388184 237.739685059 238.559997559 239.420349121 240.210388184 240.729919434 240.909606934 240.840270996 240.569763184 240.130310059 239.630310059 239.189880371 238.790466309 238.340270996 237.829528809 237.380310059 236.269927979 237.159576416 238.210357666 239.210357666 240.080474854 240.739654541 241.109771729 241.189849854 241.109771729 241.010162354 240.850006104 240.550201416 240.119537354 239.619537354 239.090240479 238.510162354 237.880279541 236.819900513 237.609939575 238.549880981 239.520095825 240.35017395 240.919998169 241.169998169 241.259841919 241.299880981 241.239822388 241.000076294 240.580154419 240.140213013 239.730056763 239.250076294 238.660232544 237.980056763 236.040466309 236.809997559 237.640075684 238.489685059 239.390075684 240.159606934 240.640075684 240.800231934 240.710388184 240.430114746 239.970153809 239.420349121 238.920349121 238.500427246 238.050231934 237.579528809 237.159606934 235.970123291 236.880279541 237.970123291 239.029693604 239.920318604 240.569732666 240.909576416 241.010162354 240.970123291 240.869537354 240.689849854 240.390045166 240.000396729 239.569732666 239.109771729 238.569732666 237.930084229 236.870193481 237.710037231 238.699783325 239.669998169 240.489822388 241.020095825 241.259841919 241.339920044 241.379959106 241.339920044 241.10017395 240.660232544 240.179763794 239.739822388 239.270095825 238.669998169 237.949783325 235.869567871 236.630310059 237.470153809 238.369567871 239.300231934 240.069763184 240.519958496 240.640075684 240.519958496 240.260192871 239.829528809 239.290466309 238.739685059 238.269958496 237.819763184 237.380310059 236.989685059 235.710357666 236.600006104 237.729888916 238.819732666 239.689849854 240.309967041 240.680084229 240.850006104 240.869537354 240.769927979 240.550201416 240.250396729 239.930084229 239.600006104 239.210357666 238.689849854 238.019927979 237.040115356 237.9400177 238.969802856 239.949783325 240.699783325 241.179763794 241.399978638 241.469802856 241.489822388 241.4400177 241.219802856 240.770095825 240.250076294 239.790115356 239.319900513 238.699783325 237.929763794 235.779724121 236.479919434 237.319763184 238.260192871 239.199645996 239.979919434 240.430114746 240.519958496 240.420349121 240.170349121 239.779724121 239.290466309 238.729919434 238.210388184 237.760192871 237.309997559 236.920349121 235.519927979 236.409576416 237.569732666 238.659576416 239.519927979 240.130279541 240.540435791 240.779693604 240.830474854 240.710357666 240.460357666 240.180084229 239.930084229 239.680084229 239.340240479 238.819732666 238.090240479 237.379959106 238.330154419 239.35017395 240.250076294 240.899978638 241.310134888 241.500076294 241.540115356 241.52986145 241.469802856 241.259841919 240.85017395 240.339920044 239.85017395 239.35017395 238.719802856 237.910232544 235.739685059 236.430114746 237.279724121 238.229919434 239.180114746 239.949645996 240.409606934 240.540466309 240.439880371 240.210388184 239.859802246 239.380310059 238.850036621 238.340270996 237.880310059 237.409606934 236.939880371 235.489654541 236.399810791 237.569732666 238.670318604 239.529693604 240.130279541 240.550201416 240.809967041 240.840240479 240.680084229 240.420318604 240.180084229 240.010162354 239.809967041 239.470123291 238.920318604 238.130279541 237.799880981 238.770095825 239.750076294 240.520095825 241.02986145 241.330154419 241.489822388 241.509841919 241.460037231 241.390213013 241.239822388 240.910232544 240.4400177 239.919998169 239.370193481 238.699783325 237.870193481 235.729919434 236.470153809 237.359802246 238.300231934 239.210388184 239.939880371 240.420349121 240.590270996 240.519958496 240.279724121 239.930114746 239.489685059 239.019958496 238.569763184 238.140075684 237.630310059 237.029724121 235.619537354 236.569732666 237.750396729 238.840240479 239.659576416 240.239654541 240.640045166 240.840240479 240.840240479 240.659576416 240.439849854 240.250396729 240.109771729 239.920318604 239.580474854 238.989654541 238.130279541 238.149978638 239.140213013 240.040115356 240.669998169 241.040115356 241.259841919 241.379959106 241.390213013 241.319900513 241.259841919 241.169998169 240.949783325 240.540115356 240.009841919 239.379959106 238.649978638 237.790115356 235.750427246 236.559997559 237.470153809 238.369567871 239.189880371 239.869567871 240.350036621 240.550231934 240.510192871 240.290466309 239.960388184 239.569763184 239.170349121 238.800231934 238.399841309 237.850036621 237.130310059 235.909576416 236.880279541 238.019927979 239.029693604 239.800201416 240.340240479 240.699615479 240.850006104 240.800201416 240.649810791 240.470123291 240.340240479 240.210357666 239.989654541 239.619537354 239.000396729 238.090240479 238.429763794 239.399978638 240.219802856 240.719802856 240.980056763 241.149978638 241.270095825 241.270095825 241.1900177 241.149978638 241.109939575 240.969802856 240.620193481 240.089920044 239.399978638 238.589920044 237.669998169 235.930114746 236.760192871 237.619567871 238.399841309 239.119567871 239.769958496 240.260192871 240.510192871 240.489685059 240.290466309 239.979919434 239.640075684 239.300231934 238.960388184 238.529724121 237.909606934 237.119567871 236.390045166 237.350006104 238.369537354 239.229888916 239.909576416 240.460357666 240.800201416 240.899810791 240.840240479 240.710357666 240.580474854 240.449615479 240.300201416 240.040435791 239.619537354 238.960357666 237.979888916 238.77986145 239.679763794 240.390213013 240.790115356 240.989822388 241.120193481 241.219802856 241.230056763 241.149978638 241.10017395 241.060134888 240.949783325 240.649978638 240.140213013 239.419998169 238.520095825 237.540115356 236.359802246 237.109802246 237.809997559 238.449645996 239.100036621 239.760192871 240.319763184 240.609802246 240.609802246 240.390075684 240.090270996 239.769958496 239.439880371 239.029724121 238.500427246 237.779724121 236.960388184 237.080474854 237.979888916 238.800201416 239.489654541 240.100006104 240.640045166 241.010162354 241.130279541 241.059967041 240.909576416 240.769927979 240.619537354 240.439849854 240.130279541 239.640045166 238.859771729 237.809967041 239.27986145 240.10017395 240.660232544 240.9400177 241.060134888 241.179763794 241.27986145 241.27986145 241.210037231 241.120193481 241.060134888 240.910232544 240.629959106 240.160232544 239.429763794 238.489822388 237.429763794 236.930114746 237.559997559 238.090270996 238.609802246 239.220153809 239.930114746 240.550231934 240.899841309 240.890075684 240.619567871 240.269958496 239.939880371 239.569763184 239.079528809 238.369567871 237.529724121 236.670349121 237.960357666 238.720123291 239.340240479 239.819732666 240.340240479 240.899810791 241.309967041 241.439849854 241.359771729 241.199615479 241.019927979 240.840240479 240.640045166 240.290435791 239.659576416 238.720123291 237.559967041 239.85017395 240.560134888 240.980056763 241.129959106 241.160232544 241.250076294 241.370193481 241.399978638 241.339920044 241.219802856 241.109939575 240.9400177 240.649978638 240.179763794 239.4400177 238.449783325 237.339920044 237.479919434 237.979919434 238.399841309 238.859802246 239.460388184 240.170349121 240.800231934 241.159606934 241.140075684 240.840270996 240.449645996 240.100036621 239.720153809 239.119567871 238.269958496 237.290466309 236.350036621 238.850006104 239.479888916 239.880279541 240.180084229 240.609771729 241.140045166 241.540435791 241.670318604 241.600006104 241.409576416 241.220123291 241.050201416 240.850006104 240.439849854 239.659576416 238.510162354 237.250396729 240.27986145 240.910232544 241.230056763 241.27986145 241.250076294 241.299880981 241.429763794 241.509841919 241.469802856 241.35017395 241.219802856 241.049880981 240.739822388 240.219802856 239.429763794 238.399978638 237.239822388 237.909606934 238.329528809 238.699645996 239.159606934 239.739685059 240.350036621 240.890075684 241.220153809 241.220153809 240.939880371 240.569763184 240.239685059 239.850036621 239.210388184 238.229919434 237.090270996 236.029724121 239.670318604 240.170318604 240.390045166 240.529693604 240.850006104 241.290435791 241.619537354 241.720123291 241.640045166 241.500396729 241.330474854 241.170318604 240.970123291 240.500396729 239.550201416 238.229888916 236.869537354 240.500076294 241.129959106 241.4400177 241.4400177 241.339920044 241.339920044 241.469802856 241.569900513 241.540115356 241.4400177 241.339920044 241.1900177 240.870193481 240.290115356 239.419998169 238.319900513 237.120193481 238.350036621 238.689880371 239.050231934 239.519958496 240.029724121 240.489685059 240.859802246 241.119567871 241.159606934 240.949645996 240.640075684 240.350036621 239.989685059 239.300231934 238.210388184 236.920349121 235.689880371 240.420318604 240.800201416 240.899810791 240.930084229 241.109771729 241.409576416 241.619537354 241.649810791 241.600006104 241.489654541 241.369537354 241.229888916 240.989654541 240.420318604 239.340240479 237.909576416 236.519927979 240.640213013 241.339920044 241.719802856 241.699783325 241.509841919 241.429763794 241.500076294 241.580154419 241.549880981 241.449783325 241.399978638 241.290115356 240.960037231 240.319900513 239.379959106 238.250076294 237.040115356 238.949645996 239.199645996 239.500427246 239.909606934 240.319763184 240.609802246 240.819763184 241.019958496 241.100036621 240.979919434 240.729919434 240.470153809 240.109802246 239.369567871 238.180114746 236.739685059 235.369567871 241.069732666 241.369537354 241.399810791 241.350006104 241.409576416 241.559967041 241.630279541 241.600006104 241.550201416 241.500396729 241.399810791 241.229888916 240.930084229 240.269927979 239.100006104 237.619537354 236.229888916 240.859939575 241.649978638 242.049880981 242.000076294 241.730056763 241.549880981 241.549880981 241.580154419 241.520095825 241.4400177 241.390213013 241.290115356 240.960037231 240.290115356 239.35017395 238.239822388 237.009841919 239.699645996 239.840270996 240.019958496 240.319763184 240.600036621 240.760192871 240.859802246 241.000427246 241.100036621 241.040466309 240.840270996 240.579528809 240.180114746 239.390075684 238.119567871 236.569763184 235.100036621 241.580474854 241.819732666 241.800201416 241.680084229 241.630279541 241.630279541 241.590240479 241.540435791 241.500396729 241.479888916 241.390045166 241.189849854 240.809967041 240.069732666 238.880279541 237.399810791 236.010162354 241.140213013 241.919998169 242.290115356 242.199783325 241.879959106 241.620193481 241.569900513 241.580154419 241.520095825 241.429763794 241.390213013 241.27986145 240.910232544 240.219802856 239.299880981 238.239822388 237.009841919 240.420349121 240.479919434 240.529724121 240.699645996 240.859802246 240.890075684 240.899841309 240.970153809 241.069763184 241.050231934 240.880310059 240.619567871 240.189880371 239.359802246 238.040466309 236.460388184 234.949645996 241.850006104 242.029693604 241.979888916 241.809967041 241.659576416 241.559967041 241.470123291 241.420318604 241.409576416 241.399810791 241.330474854 241.109771729 240.680084229 239.909576416 238.710357666 237.250396729 235.830474854 241.339920044 242.009841919 242.290115356 242.169998169 241.85017395 241.629959106 241.580154419 241.580154419 241.540115356 241.489822388 241.449783325 241.290115356 240.85017395 240.129959106 239.239822388 238.210037231 236.980056763 240.989685059 241.010192871 240.979919434 241.019958496 241.050231934 240.989685059 240.890075684 240.899841309 240.979919434 241.000427246 240.869567871 240.609802246 240.130310059 239.290466309 237.979919434 236.420349121 234.920349121 241.930084229 242.029693604 241.960357666 241.760162354 241.550201416 241.399810791 241.300201416 241.269927979 241.290435791 241.290435791 241.220123291 241.010162354 240.569732666 239.769927979 238.569732666 237.130279541 235.649810791 241.370193481 241.910232544 242.10017395 242.009841919 241.790115356 241.640213013 241.589920044 241.569900513 241.549880981 241.549880981 241.52986145 241.330154419 240.819900513 240.060134888 239.149978638 238.129959106 236.879959106 241.350036621 241.359802246 241.269958496 241.250427246 241.189880371 241.040466309 240.890075684 240.829528809 240.880310059 240.909606934 240.819763184 240.569763184 240.069763184 239.189880371 237.920349121 236.420349121 234.970153809 241.909576416 241.960357666 241.869537354 241.649810791 241.420318604 241.250396729 241.170318604 241.149810791 241.170318604 241.180084229 241.109771729 240.909576416 240.460357666 239.649810791 238.449615479 236.989654541 235.439849854 241.299880981 241.730056763 241.890213013 241.870193481 241.77986145 241.699783325 241.649978638 241.589920044 241.560134888 241.580154419 241.580154419 241.359939575 240.790115356 239.989822388 239.069900513 238.020095825 236.750076294 241.479919434 241.479919434 241.359802246 241.250427246 241.159606934 241.029724121 240.890075684 240.809997559 240.819763184 240.850036621 240.779724121 240.550231934 240.040466309 239.130310059 237.869567871 236.449645996 235.059997559 241.880279541 241.890045166 241.760162354 241.540435791 241.309967041 241.130279541 241.059967041 241.069732666 241.109771729 241.109771729 241.029693604 240.819732666 240.369537354 239.550201416 238.330474854 236.819732666 235.199615479 241.199783325 241.560134888 241.719802856 241.770095825 241.770095825 241.750076294 241.699783325 241.620193481 241.569900513 241.580154419 241.569900513 241.310134888 240.730056763 239.899978638 238.980056763 237.910232544 236.620193481 241.380310059 241.340270996 241.159606934 241.029724121 240.960388184 240.930114746 240.869567871 240.819763184 240.809997559 240.800231934 240.750427246 240.540466309 240.029724121 239.100036621 237.850036621 236.479919434 235.149841309 241.840240479 241.809967041 241.659576416 241.409576416 241.159576416 240.960357666 240.890045166 240.939849854 241.029693604 241.069732666 240.970123291 240.729888916 240.269927979 239.449615479 238.210357666 236.640045166 234.960357666 241.049880981 241.370193481 241.509841919 241.589920044 241.660232544 241.699783325 241.699783325 241.640213013 241.589920044 241.580154419 241.509841919 241.230056763 240.640213013 239.819900513 238.890213013 237.790115356 236.460037231 241.079528809 241.019958496 240.819763184 240.670349121 240.680114746 240.769958496 240.829528809 240.829528809 240.790466309 240.760192871 240.699645996 240.519958496 240.010192871 239.079528809 237.829528809 236.479919434 235.189880371 241.750396729 241.680084229 241.489654541 241.210357666 240.920318604 240.689849854 240.630279541 240.739654541 240.920318604 241.000396729 240.899810791 240.649810791 240.189849854 239.359771729 238.059967041 236.430084229 234.710357666 240.839920044 241.109939575 241.239822388 241.330154419 241.4400177 241.560134888 241.629959106 241.640213013 241.609939575 241.569900513 241.460037231 241.149978638 240.560134888 239.750076294 238.799880981 237.649978638 236.250076294 240.710388184 240.649841309 240.489685059 240.399841309 240.460388184 240.619567871 240.760192871 240.790466309 240.750427246 240.699645996 240.649841309 240.460388184 239.960388184 239.040466309 237.790466309 236.430114746 235.159606934 241.580474854 241.489654541 241.290435791 240.979888916 240.649810791 240.399810791 240.340240479 240.510162354 240.769927979 240.890045166 240.809967041 240.559967041 240.109771729 239.269927979 237.920318604 236.220123291 234.449615479 240.589920044 240.879959106 241.020095825 241.109939575 241.230056763 241.399978638 241.549880981 241.620193481 241.609939575 241.540115356 241.399978638 241.069900513 240.500076294 239.710037231 238.710037231 237.469802856 235.989822388 240.359802246 240.359802246 240.269958496 240.229919434 240.319763184 240.489685059 240.630310059 240.680114746 240.680114746 240.670349121 240.619567871 240.409606934 239.890075684 238.989685059 237.729919434 236.359802246 235.079528809 241.380279541 241.290435791 241.050201416 240.720123291 240.369537354 240.140045166 240.119537354 240.330474854 240.590240479 240.739654541 240.680084229 240.449615479 240.019927979 239.170318604 237.779693604 236.010162354 234.239654541 240.379959106 240.730056763 240.910232544 241.009841919 241.120193481 241.27986145 241.449783325 241.540115356 241.549880981 241.469802856 241.310134888 241.000076294 240.460037231 239.660232544 238.609939575 237.310134888 235.739822388 240.069763184 240.100036621 240.069763184 240.059997559 240.149841309 240.309997559 240.439880371 240.519958496 240.600036621 240.659606934 240.619567871 240.359802246 239.840270996 238.949645996 237.720153809 236.309997559 235.019958496 241.180084229 241.059967041 240.779693604 240.399810791 240.100006104 239.949615479 239.979888916 240.170318604 240.420318604 240.550201416 240.529693604 240.330474854 239.899810791 239.029693604 237.619537354 235.850006104 234.090240479 240.250076294 240.660232544 240.890213013 240.960037231 241.020095825 241.149978638 241.319900513 241.429763794 241.449783325 241.379959106 241.210037231 240.910232544 240.379959106 239.580154419 238.520095825 237.160232544 235.540115356 239.819763184 239.859802246 239.819763184 239.809997559 239.909606934 240.090270996 240.229919434 240.350036621 240.510192871 240.640075684 240.600036621 240.329528809 239.800231934 238.949645996 237.739685059 236.319763184 234.979919434 240.970123291 240.809967041 240.460357666 240.059967041 239.819732666 239.800201416 239.899810791 240.069732666 240.250396729 240.380279541 240.380279541 240.210357666 239.760162354 238.869537354 237.470123291 235.739654541 234.010162354 240.149978638 240.609939575 240.830154419 240.870193481 240.890213013 240.980056763 241.160232544 241.299880981 241.35017395 241.299880981 241.140213013 240.810134888 240.259841919 239.469802856 238.410232544 237.049880981 235.390213013 239.579528809 239.659606934 239.640075684 239.609802246 239.710388184 239.909606934 240.069763184 240.220153809 240.409606934 240.569763184 240.550231934 240.279724121 239.760192871 238.949645996 237.760192871 236.319763184 234.949645996 240.750396729 240.540435791 240.130279541 239.739654541 239.609771729 239.710357666 239.869537354 240.000396729 240.119537354 240.229888916 240.269927979 240.100006104 239.619537354 238.710357666 237.350006104 235.680084229 233.949615479 240.040115356 240.500076294 240.719802856 240.739822388 240.719802856 240.810134888 240.989822388 241.169998169 241.270095825 241.230056763 241.069900513 240.699783325 240.140213013 239.339920044 238.290115356 236.9400177 235.270095825 239.420349121 239.579528809 239.590270996 239.559997559 239.649841309 239.840270996 240.010192871 240.140075684 240.329528809 240.500427246 240.479919434 240.210388184 239.720153809 238.930114746 237.729919434 236.269958496 234.869567871 240.519927979 240.269927979 239.859771729 239.540435791 239.500396729 239.670318604 239.850006104 239.939849854 240.019927979 240.130279541 240.170318604 239.989654541 239.479888916 238.580474854 237.269927979 235.649810791 233.880279541 239.929763794 240.379959106 240.609939575 240.640213013 240.620193481 240.679763794 240.870193481 241.040115356 241.160232544 241.160232544 240.969802856 240.609939575 240.040115356 239.250076294 238.199783325 236.859939575 235.199783325 239.350036621 239.600036621 239.640075684 239.600036621 239.680114746 239.850036621 240.000427246 240.109802246 240.279724121 240.430114746 240.409606934 240.159606934 239.680114746 238.880310059 237.659606934 236.180114746 234.729919434 240.269927979 240.010162354 239.659576416 239.439849854 239.470123291 239.659576416 239.809967041 239.890045166 239.960357666 240.069732666 240.080474854 239.869537354 239.350006104 238.489654541 237.239654541 235.619537354 233.809967041 239.830154419 240.270095825 240.52986145 240.589920044 240.569900513 240.609939575 240.739822388 240.899978638 241.02986145 241.049880981 240.899978638 240.540115356 239.980056763 239.199783325 238.149978638 236.819900513 235.199783325 239.329528809 239.640075684 239.689880371 239.659606934 239.720153809 239.859802246 240.000427246 240.130310059 240.309997559 240.430114746 240.369567871 240.119567871 239.640075684 238.819763184 237.579528809 236.079528809 234.600036621 240.000396729 239.790435791 239.540435791 239.420318604 239.460357666 239.619537354 239.769927979 239.880279541 239.989654541 240.080474854 240.010162354 239.750396729 239.220123291 238.399810791 237.189849854 235.569732666 233.750396729 239.739822388 240.199783325 240.500076294 240.589920044 240.569900513 240.569900513 240.660232544 240.790115356 240.929763794 240.980056763 240.859939575 240.520095825 239.969802856 239.199783325 238.140213013 236.810134888 235.270095825 239.399841309 239.710388184 239.760192871 239.720153809 239.790466309 239.909606934 240.050231934 240.220153809 240.409606934 240.489685059 240.369567871 240.069763184 239.559997559 238.720153809 237.489685059 236.010192871 234.500427246 239.779693604 239.649810791 239.510162354 239.439849854 239.470123291 239.590240479 239.750396729 239.930084229 240.090240479 240.149810791 240.010162354 239.670318604 239.109771729 238.279693604 237.090240479 235.479888916 233.680084229 239.660232544 240.160232544 240.509841919 240.629959106 240.620193481 240.60017395 240.660232544 240.790115356 240.929763794 240.989822388 240.870193481 240.549880981 240.000076294 239.1900177 238.129959106 236.839920044 235.390213013 239.619567871 239.920349121 239.949645996 239.920349121 239.979919434 240.090270996 240.220153809 240.399841309 240.579528809 240.619567871 240.430114746 240.059997559 239.479919434 238.590270996 237.359802246 235.909606934 234.409606934 239.640045166 239.630279541 239.559967041 239.510162354 239.510162354 239.590240479 239.790435791 240.040435791 240.229888916 240.279693604 240.109771729 239.689849854 239.050201416 238.159576416 236.939849854 235.359771729 233.609771729 239.620193481 240.199783325 240.60017395 240.759841919 240.759841919 240.730056763 240.77986145 240.890213013 241.020095825 241.060134888 240.949783325 240.60017395 240.02986145 239.210037231 238.149978638 236.899978638 235.500076294 239.970153809 240.300231934 240.300231934 240.260192871 240.300231934 240.369567871 240.460388184 240.600036621 240.769958496 240.779724121 240.550231934 240.119567871 239.439880371 238.470153809 237.199645996 235.790466309 234.309997559 239.649810791 239.699615479 239.680084229 239.630279541 239.609771729 239.689849854 239.899810791 240.170318604 240.369537354 240.420318604 240.260162354 239.830474854 239.100006104 238.100006104 236.830474854 235.279693604 233.569732666 239.629959106 240.290115356 240.739822388 240.9400177 240.960037231 240.949783325 240.969802856 241.049880981 241.140213013 241.160232544 241.040115356 240.679763794 240.080154419 239.259841919 238.230056763 237.000076294 235.640213013 240.340270996 240.680114746 240.659606934 240.579528809 240.590270996 240.640075684 240.680114746 240.790466309 240.920349121 240.939880371 240.720153809 240.269958496 239.519958496 238.420349121 237.079528809 235.649841309 234.180114746 239.710357666 239.819732666 239.819732666 239.790435791 239.800201416 239.909576416 240.109771729 240.340240479 240.500396729 240.550201416 240.420318604 240.019927979 239.239654541 238.140045166 236.809967041 235.290435791 233.630279541 239.699783325 240.410232544 240.890213013 241.120193481 241.169998169 241.140213013 241.140213013 241.179763794 241.250076294 241.259841919 241.129959106 240.770095825 240.179763794 239.370193481 238.370193481 237.179763794 235.810134888 240.609802246 240.930114746 240.869567871 240.760192871 240.760192871 240.819763184 240.859802246 240.930114746 241.019958496 241.040466309 240.880310059 240.449645996 239.670349121 238.510192871 237.090270996 235.619567871 234.109802246 239.800201416 239.930084229 239.960357666 240.000396729 240.069732666 240.220123291 240.420318604 240.580474854 240.649810791 240.659576416 240.559967041 240.199615479 239.409576416 238.260162354 236.920318604 235.449615479 233.830474854 239.830154419 240.52986145 241.000076294 241.250076294 241.319900513 241.290115356 241.259841919 241.290115356 241.35017395 241.35017395 241.219802856 240.879959106 240.310134888 239.52986145 238.580154419 237.419998169 236.02986145 240.819763184 241.100036621 240.970153809 240.819763184 240.850036621 240.960388184 241.029724121 241.069763184 241.109802246 241.090270996 240.939880371 240.559997559 239.819763184 238.670349121 237.229919434 235.720153809 234.149841309 239.890045166 240.059967041 240.149810791 240.260162354 240.380279541 240.550201416 240.739654541 240.859771729 240.840240479 240.760162354 240.649810791 240.309967041 239.540435791 238.399810791 237.090240479 235.680084229 234.119537354 240.009841919 240.649978638 241.10017395 241.390213013 241.480056763 241.4400177 241.370193481 241.370193481 241.4400177 241.449783325 241.319900513 240.989822388 240.460037231 239.730056763 238.799880981 237.660232544 236.299880981 241.010192871 241.250427246 241.079528809 240.899841309 240.939880371 241.079528809 241.180114746 241.210388184 241.180114746 241.100036621 240.920349121 240.569763184 239.899841309 238.829528809 237.439880371 235.899841309 234.269958496 240.050201416 240.269927979 240.420318604 240.559967041 240.680084229 240.830474854 241.019927979 241.130279541 241.069732666 240.909576416 240.720123291 240.359771729 239.630279541 238.550201416 237.290435791 235.939849854 234.449615479 240.239822388 240.830154419 241.250076294 241.549880981 241.669998169 241.580154419 241.460037231 241.449783325 241.52986145 241.520095825 241.399978638 241.10017395 240.620193481 239.919998169 239.009841919 237.890213013 236.560134888 241.210388184 241.399841309 241.199645996 241.010192871 241.019958496 241.149841309 241.250427246 241.290466309 241.250427246 241.140075684 240.920349121 240.540466309 239.920349121 238.930114746 237.600036621 236.069763184 234.439880371 240.290435791 240.580474854 240.750396729 240.869537354 240.939849854 241.040435791 241.220123291 241.350006104 241.290435791 241.080474854 240.809967041 240.409576416 239.729888916 238.710357666 237.489654541 236.189849854 234.769927979 240.500076294 241.020095825 241.399978638 241.710037231 241.810134888 241.679763794 241.520095825 241.500076294 241.580154419 241.60017395 241.469802856 241.210037231 240.770095825 240.089920044 239.1900177 238.10017395 236.799880981 231.340057373 231.449920654 231.469940186 231.559783936 231.650115967 231.650115967 231.559783936 231.509979248 231.480194092 231.389862061 231.190155029 230.900115967 230.409881592 229.559783936 228.389862061 227.070037842 225.679901123 231.330200195 231.509887695 231.460083008 231.310180664 231.219848633 231.190063477 231.190063477 231.17980957 231.210083008 231.199829102 231.029907227 230.670043945 230.100219727 229.279907227 228.170043945 226.92980957 225.770141602 231.859939575 231.969802856 231.949783325 231.870193481 231.770095825 231.699783325 231.679763794 231.710037231 231.710037231 231.640213013 231.52986145 231.399978638 231.120193481 230.549880981 229.6900177 228.6900177 227.649978638 231.420135498 231.539764404 231.619842529 231.699920654 231.739959717 231.690155029 231.630096436 231.610076904 231.610076904 231.529998779 231.309783936 230.980194092 230.480194092 229.659881592 228.559783936 227.259979248 225.869842529 231.529907227 231.75012207 231.759887695 231.639770508 231.520141602 231.42980957 231.359985352 231.319946289 231.350219727 231.370239258 231.230102539 230.870239258 230.299926758 229.509887695 228.42980957 227.210083008 226.069946289 231.949783325 232.040115356 232.02986145 231.929763794 231.790115356 231.649978638 231.609939575 231.649978638 231.710037231 231.719802856 231.660232544 231.520095825 231.219802856 230.649978638 229.819900513 228.839920044 227.790115356 231.440155029 231.590057373 231.710174561 231.770233154 231.739959717 231.639862061 231.559783936 231.579803467 231.630096436 231.599822998 231.420135498 231.099822998 230.590057373 229.809783936 228.750213623 227.489959717 226.099822998 231.659790039 231.900024414 231.969848633 231.880004883 231.759887695 231.650024414 231.529907227 231.440063477 231.449829102 231.480102539 231.370239258 231.029907227 230.50012207 229.770141602 228.770141602 227.560180664 226.42980957 232.000076294 232.129959106 232.140213013 232.009841919 231.810134888 231.629959106 231.540115356 231.569900513 231.660232544 231.750076294 231.77986145 231.669998169 231.359939575 230.799880981 230.009841919 229.040115356 227.969802856 231.440155029 231.639862061 231.800018311 231.860076904 231.770233154 231.610076904 231.489959717 231.489959717 231.550018311 231.570037842 231.469940186 231.199920654 230.710174561 229.960174561 228.960174561 227.730194092 226.349822998 231.699829102 231.969848633 232.08996582 232.029907227 231.909790039 231.779907227 231.620239258 231.460083008 231.420043945 231.440063477 231.359985352 231.069946289 230.620239258 230.00012207 229.08996582 227.92980957 226.790161133 232.060134888 232.239822388 232.270095825 232.109939575 231.870193481 231.6900177 231.580154419 231.549880981 231.60017395 231.699783325 231.790115356 231.739822388 231.469802856 230.949783325 230.210037231 229.250076294 228.140213013 231.469940186 231.719940186 231.920135498 231.980194092 231.869842529 231.690155029 231.529998779 231.460174561 231.469940186 231.489959717 231.449920654 231.219940186 230.750213623 230.059783936 229.139862061 227.980194092 226.619842529 231.699829102 231.989868164 232.150024414 232.100219727 231.949829102 231.799926758 231.58996582 231.380004883 231.290161133 231.290161133 231.230102539 231.00012207 230.639770508 230.150024414 229.350219727 228.25012207 227.08996582 232.109939575 232.330154419 232.359939575 232.179763794 231.960037231 231.810134888 231.710037231 231.629959106 231.60017395 231.679763794 231.770095825 231.750076294 231.520095825 231.049880981 230.339920044 229.410232544 228.27986145 231.509979248 231.789764404 232.029998779 232.079803467 231.980194092 231.809783936 231.650115967 231.520233154 231.449920654 231.440155029 231.400115967 231.199920654 230.750213623 230.099822998 229.270233154 228.199920654 226.900115967 231.699829102 232.009887695 232.17980957 232.130004883 231.949829102 231.75012207 231.520141602 231.299926758 231.190063477 231.170043945 231.120239258 230.92980957 230.639770508 230.239868164 229.549926758 228.520141602 227.380004883 232.140213013 232.379959106 232.390213013 232.210037231 232.020095825 231.929763794 231.879959106 231.790115356 231.710037231 231.730056763 231.790115356 231.759841919 231.549880981 231.109939575 230.4400177 229.520095825 228.379959106 231.509979248 231.820037842 232.050018311 232.110076904 232.020233154 231.909881592 231.770233154 231.599822998 231.449920654 231.409881592 231.380096436 231.179901123 230.739959717 230.119842529 229.369842529 228.409881592 227.179901123 231.690063477 232.00012207 232.17980957 232.109985352 231.920043945 231.719848633 231.509887695 231.299926758 231.17980957 231.150024414 231.08996582 230.909790039 230.639770508 230.299926758 229.719848633 228.799926758 227.710083008 232.149978638 232.370193481 232.370193481 232.210037231 232.060134888 232.02986145 232.009841919 231.919998169 231.830154419 231.819900513 231.839920044 231.799880981 231.60017395 231.199783325 230.560134888 229.649978638 228.520095825 231.469940186 231.800018311 232.039764404 232.090057373 232.009979248 231.920135498 231.789764404 231.599822998 231.420135498 231.369842529 231.369842529 231.199920654 230.759979248 230.170135498 229.500213623 228.619842529 227.460174561 231.659790039 231.92980957 232.08996582 232.049926758 231.889770508 231.719848633 231.529907227 231.33996582 231.210083008 231.170043945 231.100219727 230.920043945 230.67980957 230.370239258 229.880004883 229.08996582 228.069946289 232.149978638 232.310134888 232.299880981 232.199783325 232.120193481 232.10017395 232.080154419 232.000076294 231.899978638 231.870193481 231.890213013 231.859939575 231.6900177 231.319900513 230.710037231 229.819900513 228.699783325 231.420135498 231.770233154 232.020233154 232.079803467 232.000213623 231.880096436 231.739959717 231.529998779 231.340057373 231.309783936 231.349822998 231.230194092 230.800018311 230.230194092 229.619842529 228.820037842 227.730194092 231.609985352 231.799926758 231.960083008 231.960083008 231.850219727 231.690063477 231.509887695 231.310180664 231.17980957 231.130004883 231.08996582 230.949829102 230.719848633 230.440063477 230.020141602 229.319946289 228.380004883 232.140213013 232.219802856 232.199783325 232.169998169 232.179763794 232.179763794 232.140213013 232.02986145 231.929763794 231.890213013 231.910232544 231.910232544 231.77986145 231.4400177 230.839920044 229.960037231 228.870193481 231.400115967 231.750213623 232.029998779 232.099822998 232.009979248 231.869842529 231.719940186 231.489959717 231.289764404 231.279998779 231.340057373 231.219940186 230.820037842 230.270233154 229.699920654 228.969940186 227.949920654 231.569946289 231.699829102 231.859985352 231.920043945 231.819946289 231.639770508 231.42980957 231.219848633 231.080200195 231.060180664 231.049926758 230.969848633 230.790161133 230.529907227 230.120239258 229.449829102 228.569946289 232.120193481 232.129959106 232.10017395 232.129959106 232.199783325 232.250076294 232.199783325 232.069900513 231.960037231 231.929763794 231.969802856 232.000076294 231.879959106 231.52986145 230.910232544 230.049880981 228.969802856 231.409881592 231.759979248 232.029998779 232.110076904 232.009979248 231.860076904 231.710174561 231.520233154 231.349822998 231.309783936 231.329803467 231.170135498 230.759979248 230.219940186 229.670135498 229.020233154 228.110076904 231.569946289 231.67980957 231.870239258 231.949829102 231.830200195 231.58996582 231.33996582 231.130004883 231.020141602 230.989868164 231.00012207 230.960083008 230.850219727 230.620239258 230.159790039 229.469848633 228.659790039 232.089920044 232.080154419 232.040115356 232.089920044 232.199783325 232.250076294 232.199783325 232.10017395 232.009841919 232.000076294 232.049880981 232.10017395 231.980056763 231.60017395 230.960037231 230.089920044 229.009841919 231.469940186 231.789764404 232.039764404 232.090057373 231.969940186 231.820037842 231.710174561 231.579803467 231.449920654 231.380096436 231.329803467 231.119842529 230.679901123 230.119842529 229.559783936 228.949920654 228.159881592 231.609985352 231.739868164 231.949829102 232.020141602 231.859985352 231.560180664 231.279907227 231.109985352 231.009887695 230.969848633 230.949829102 230.940063477 230.889770508 230.670043945 230.159790039 229.440063477 228.67980957 232.049880981 232.049880981 232.02986145 232.069900513 232.140213013 232.169998169 232.120193481 232.060134888 232.020095825 232.040115356 232.109939575 232.140213013 232.020095825 231.649978638 231.009841919 230.129959106 229.009841919 231.590057373 231.860076904 232.029998779 232.039764404 231.900115967 231.750213623 231.659881592 231.610076904 231.529998779 231.440155029 231.340057373 231.099822998 230.650115967 230.050018311 229.429901123 228.820037842 228.150115967 231.699829102 231.83996582 232.040161133 232.069946289 231.870239258 231.540161133 231.270141602 231.120239258 231.020141602 230.92980957 230.870239258 230.880004883 230.880004883 230.670043945 230.130004883 229.370239258 228.67980957 231.989822388 232.060134888 232.069900513 232.089920044 232.080154419 232.02986145 231.960037231 231.9400177 231.960037231 232.009841919 232.069900513 232.069900513 231.949783325 231.629959106 231.040115356 230.160232544 228.989822388 231.719940186 231.920135498 232.029998779 232.000213623 231.849822998 231.690155029 231.619842529 231.599822998 231.550018311 231.469940186 231.369842529 231.159881592 230.719940186 230.079803467 229.380096436 228.730194092 228.119842529 231.799926758 231.940063477 232.08996582 232.080200195 231.859985352 231.549926758 231.299926758 231.150024414 231.029907227 230.920043945 230.830200195 230.83996582 230.870239258 230.670043945 230.08996582 229.319946289 228.699829102 231.960037231 232.089920044 232.129959106 232.089920044 231.989822388 231.879959106 231.810134888 231.810134888 231.870193481 231.919998169 231.949783325 231.910232544 231.77986145 231.500076294 230.969802856 230.120193481 228.9400177 231.809783936 231.940155029 231.989959717 231.969940186 231.840057373 231.699920654 231.619842529 231.579803467 231.529998779 231.460174561 231.389862061 231.219940186 230.849822998 230.219940186 229.460174561 228.750213623 228.130096436 231.920043945 232.049926758 232.120239258 232.049926758 231.83996582 231.560180664 231.330200195 231.17980957 231.069946289 230.969848633 230.889770508 230.880004883 230.889770508 230.670043945 230.08996582 229.330200195 228.730102539 231.989822388 232.149978638 232.149978638 232.040115356 231.879959106 231.739822388 231.679763794 231.710037231 231.770095825 231.819900513 231.819900513 231.750076294 231.589920044 231.310134888 230.819900513 230.009841919 228.870193481 231.829803467 231.889862061 231.909881592 231.920135498 231.889862061 231.789764404 231.679901123 231.590057373 231.520233154 231.449920654 231.380096436 231.239959717 230.929901123 230.369842529 229.630096436 228.880096436 228.179901123 232.060180664 232.170043945 232.159790039 232.020141602 231.810180664 231.549926758 231.319946289 231.17980957 231.130004883 231.08996582 231.029907227 230.980102539 230.909790039 230.690063477 230.150024414 229.42980957 228.83996582 232.109939575 232.230056763 232.149978638 231.949783325 231.759841919 231.640213013 231.609939575 231.629959106 231.6900177 231.730056763 231.730056763 231.649978638 231.469802856 231.160232544 230.649978638 229.870193481 228.790115356 231.820037842 231.840057373 231.849822998 231.909881592 231.929901123 231.880096436 231.750213623 231.630096436 231.529998779 231.440155029 231.349822998 231.199920654 230.909881592 230.429901123 229.779998779 229.020233154 228.259979248 232.219848633 232.310180664 232.230102539 232.040161133 231.810180664 231.549926758 231.299926758 231.170043945 231.190063477 231.230102539 231.17980957 231.040161133 230.909790039 230.710083008 230.259887695 229.609985352 229.00012207 232.239822388 232.310134888 232.140213013 231.870193481 231.669998169 231.589920044 231.589920044 231.609939575 231.649978638 231.679763794 231.679763794 231.60017395 231.399978638 231.060134888 230.520095825 229.730056763 228.719802856 231.860076904 231.889862061 231.880096436 231.909881592 231.940155029 231.909881592 231.779998779 231.650115967 231.570037842 231.489959717 231.360076904 231.159881592 230.860076904 230.440155029 229.860076904 229.130096436 228.320037842 232.389770508 232.480102539 232.350219727 232.109985352 231.870239258 231.580200195 231.299926758 231.170043945 231.230102539 231.330200195 231.270141602 231.069946289 230.889770508 230.730102539 230.380004883 229.779907227 229.159790039 232.330154419 232.35017395 232.120193481 231.839920044 231.649978638 231.60017395 231.640213013 231.669998169 231.710037231 231.719802856 231.679763794 231.549880981 231.319900513 230.969802856 230.419998169 229.620193481 228.620193481 231.960174561 232.029998779 231.989959717 231.949920654 231.920135498 231.860076904 231.759979248 231.670135498 231.610076904 231.539764404 231.409881592 231.170135498 230.869842529 230.480194092 229.920135498 229.190155029 228.360076904 232.560180664 232.659790039 232.509887695 232.25012207 231.960083008 231.650024414 231.350219727 231.190063477 231.259887695 231.380004883 231.330200195 231.100219727 230.900024414 230.759887695 230.460083008 229.880004883 229.239868164 232.330154419 232.35017395 232.109939575 231.830154419 231.669998169 231.640213013 231.710037231 231.790115356 231.830154419 231.819900513 231.699783325 231.489822388 231.210037231 230.839920044 230.290115356 229.500076294 228.489822388 232.110076904 232.210174561 232.139862061 231.989959717 231.869842529 231.800018311 231.719940186 231.659881592 231.610076904 231.559783936 231.449920654 231.259979248 231.000213623 230.610076904 230.020233154 229.239959717 228.380096436 232.719848633 232.830200195 232.670043945 232.370239258 232.049926758 231.710083008 231.400024414 231.230102539 231.279907227 231.409790039 231.380004883 231.159790039 230.960083008 230.819946289 230.509887695 229.92980957 229.270141602 232.299880981 232.319900513 232.10017395 231.819900513 231.660232544 231.649978638 231.750076294 231.859939575 231.919998169 231.890213013 231.730056763 231.4400177 231.089920044 230.669998169 230.120193481 229.35017395 228.35017395 232.210174561 232.349822998 232.250213623 232.029998779 231.860076904 231.770233154 231.710174561 231.630096436 231.559783936 231.500213623 231.449920654 231.360076904 231.179901123 230.809783936 230.170135498 229.320037842 228.400115967 232.819946289 232.940063477 232.779907227 232.42980957 232.060180664 231.719848633 231.42980957 231.25012207 231.259887695 231.389770508 231.420043945 231.25012207 231.060180664 230.880004883 230.540161133 229.940063477 229.299926758 232.259841919 232.27986145 232.080154419 231.819900513 231.640213013 231.620193481 231.719802856 231.819900513 231.859939575 231.830154419 231.6900177 231.419998169 231.02986145 230.549880981 229.960037231 229.199783325 228.219802856 232.289764404 232.440155029 232.340057373 232.099822998 231.909881592 231.820037842 231.739959717 231.619842529 231.500213623 231.429901123 231.420135498 231.420135498 231.329803467 230.980194092 230.300018311 229.400115967 228.449920654 232.819946289 232.949829102 232.810180664 232.460083008 232.049926758 231.719848633 231.42980957 231.239868164 231.239868164 231.370239258 231.42980957 231.319946289 231.130004883 230.92980957 230.580200195 230.009887695 229.389770508 232.199783325 232.239822388 232.080154419 231.830154419 231.660232544 231.629959106 231.679763794 231.710037231 231.6900177 231.660232544 231.589920044 231.399978638 231.02986145 230.489822388 229.85017395 229.080154419 228.120193481 232.329803467 232.500213623 232.400115967 232.190155029 232.020233154 231.909881592 231.779998779 231.610076904 231.469940186 231.400115967 231.400115967 231.449920654 231.389862061 231.059783936 230.389862061 229.480194092 228.520233154 232.690063477 232.870239258 232.799926758 232.50012207 232.100219727 231.739868164 231.449829102 231.25012207 231.210083008 231.330200195 231.42980957 231.370239258 231.190063477 230.969848633 230.639770508 230.109985352 229.520141602 232.109939575 232.1900177 232.080154419 231.890213013 231.730056763 231.679763794 231.679763794 231.629959106 231.540115356 231.489822388 231.480056763 231.359939575 231.020095825 230.480056763 229.799880981 229.009841919 228.020095825 232.340057373 232.509979248 232.440155029 232.270233154 232.119842529 231.980194092 231.789764404 231.599822998 231.480194092 231.440155029 231.449920654 231.449920654 231.369842529 231.070037842 230.440155029 229.570037842 228.619842529 232.489868164 232.730102539 232.759887695 232.560180664 232.210083008 231.83996582 231.520141602 231.279907227 231.199829102 231.299926758 231.420043945 231.400024414 231.239868164 231.029907227 230.719848633 230.239868164 229.670043945 231.980056763 232.10017395 232.080154419 231.9400177 231.799880981 231.719802856 231.6900177 231.60017395 231.489822388 231.429763794 231.410232544 231.27986145 230.949783325 230.449783325 229.810134888 228.960037231 227.899978638 232.279998779 232.460174561 232.420135498 232.300018311 232.159881592 231.980194092 231.750213623 231.570037842 231.509979248 231.500213623 231.480194092 231.429901123 231.320037842 231.039764404 230.489959717 229.670135498 228.699920654 232.290161133 232.549926758 232.67980957 232.58996582 232.290161133 231.940063477 231.58996582 231.319946289 231.210083008 231.279907227 231.400024414 231.409790039 231.290161133 231.100219727 230.810180664 230.370239258 229.810180664 231.85017395 232.020095825 232.049880981 231.949783325 231.799880981 231.6900177 231.620193481 231.580154419 231.540115356 231.509841919 231.410232544 231.1900177 230.830154419 230.390213013 229.790115356 228.919998169 227.77986145 232.139862061 232.349822998 232.349822998 232.270233154 232.150115967 231.940155029 231.710174561 231.559783936 231.520233154 231.520233154 231.469940186 231.380096436 231.250213623 231.009979248 230.539764404 229.759979248 228.750213623 232.109985352 232.400024414 232.569946289 232.540161133 232.299926758 231.960083008 231.630004883 231.359985352 231.230102539 231.259887695 231.370239258 231.409790039 231.330200195 231.159790039 230.909790039 230.509887695 229.989868164 231.770095825 231.969802856 232.02986145 231.9400177 231.77986145 231.620193481 231.540115356 231.540115356 231.60017395 231.620193481 231.480056763 231.149978638 230.739822388 230.310134888 229.739822388 228.839920044 227.629959106 231.909881592 232.179901123 232.259979248 232.250213623 232.139862061 231.929901123 231.710174561 231.570037842 231.529998779 231.500213623 231.429901123 231.320037842 231.190155029 230.969940186 230.570037842 229.829803467 228.770233154 231.980102539 232.259887695 232.449829102 232.449829102 232.25012207 231.949829102 231.650024414 231.409790039 231.259887695 231.259887695 231.350219727 231.420043945 231.370239258 231.219848633 231.00012207 230.659790039 230.199829102 231.719802856 231.949783325 232.009841919 231.960037231 231.810134888 231.640213013 231.52986145 231.52986145 231.629959106 231.6900177 231.560134888 231.1900177 230.739822388 230.270095825 229.649978638 228.730056763 227.509841919 231.650115967 232.000213623 232.190155029 232.250213623 232.150115967 231.940155029 231.730194092 231.590057373 231.529998779 231.469940186 231.409881592 231.309783936 231.159881592 230.940155029 230.559783936 229.869842529 228.800018311 231.830200195 232.150024414 232.350219727 232.380004883 232.219848633 231.949829102 231.67980957 231.449829102 231.279907227 231.259887695 231.350219727 231.449829102 231.400024414 231.259887695 231.069946289 230.810180664 230.400024414 231.660232544 231.919998169 232.02986145 232.020095825 231.910232544 231.759841919 231.609939575 231.549880981 231.609939575 231.669998169 231.60017395 231.290115356 230.830154419 230.27986145 229.60017395 228.660232544 227.449783325 231.400115967 231.829803467 232.130096436 232.250213623 232.159881592 231.940155029 231.719940186 231.570037842 231.469940186 231.420135498 231.389862061 231.329803467 231.170135498 230.909881592 230.539764404 229.900115967 228.829803467 231.67980957 232.029907227 232.299926758 232.380004883 232.259887695 232.009887695 231.730102539 231.460083008 231.279907227 231.25012207 231.370239258 231.469848633 231.420043945 231.270141602 231.130004883 230.92980957 230.549926758 231.549880981 231.879959106 232.040115356 232.069900513 232.000076294 231.859939575 231.699783325 231.580154419 231.560134888 231.60017395 231.60017395 231.390213013 230.949783325 230.339920044 229.609939575 228.6900177 227.489822388 231.170135498 231.679901123 232.070037842 232.239959717 232.150115967 231.900115967 231.670135498 231.489959717 231.360076904 231.300018311 231.340057373 231.349822998 231.190155029 230.880096436 230.500213623 229.909881592 228.840057373 231.540161133 231.969848633 232.290161133 232.42980957 232.350219727 232.120239258 231.799926758 231.489868164 231.290161133 231.270141602 231.380004883 231.480102539 231.420043945 231.290161133 231.170043945 231.020141602 230.630004883 231.419998169 231.819900513 232.040115356 232.089920044 232.000076294 231.85017395 231.699783325 231.569900513 231.509841919 231.52986145 231.569900513 231.4400177 231.040115356 230.429763794 229.719802856 228.830154419 227.609939575 231.029998779 231.579803467 232.029998779 232.219940186 232.130096436 231.869842529 231.610076904 231.409881592 231.250213623 231.179901123 231.259979248 231.309783936 231.179901123 230.860076904 230.469940186 229.880096436 228.800018311 231.529907227 231.989868164 232.319946289 232.50012207 232.469848633 232.230102539 231.900024414 231.569946289 231.370239258 231.33996582 231.42980957 231.480102539 231.420043945 231.310180664 231.230102539 231.080200195 230.659790039 231.310134888 231.770095825 232.049880981 232.089920044 231.949783325 231.759841919 231.620193481 231.52986145 231.480056763 231.480056763 231.52986145 231.4400177 231.10017395 230.540115356 229.879959106 229.009841919 227.739822388 230.989959717 231.590057373 232.050018311 232.259979248 232.139862061 231.869842529 231.579803467 231.360076904 231.190155029 231.130096436 231.190155029 231.270233154 231.159881592 230.849822998 230.429901123 229.809783936 228.710174561 231.659790039 232.109985352 232.409790039 232.569946289 232.560180664 232.33996582 232.00012207 231.67980957 231.489868164 231.460083008 231.50012207 231.509887695 231.449829102 231.380004883 231.319946289 231.150024414 230.699829102 231.219802856 231.739822388 232.060134888 232.109939575 231.929763794 231.679763794 231.509841919 231.429763794 231.399978638 231.410232544 231.460037231 231.419998169 231.160232544 230.6900177 230.080154419 229.199783325 227.870193481 231.050018311 231.679901123 232.139862061 232.320037842 232.190155029 231.860076904 231.559783936 231.340057373 231.210174561 231.150115967 231.199920654 231.259979248 231.170135498 230.860076904 230.389862061 229.719940186 228.610076904 231.870239258 232.310180664 232.540161133 232.650024414 232.620239258 232.400024414 232.049926758 231.739868164 231.580200195 231.569946289 231.569946289 231.549926758 231.520141602 231.480102539 231.42980957 231.210083008 230.75012207 231.1900177 231.759841919 232.120193481 232.1900177 231.980056763 231.660232544 231.419998169 231.27986145 231.230056763 231.270095825 231.359939575 231.399978638 231.239822388 230.870193481 230.299880981 229.419998169 228.069900513 231.190155029 231.820037842 232.250213623 232.400115967 232.219940186 231.829803467 231.489959717 231.309783936 231.250213623 231.230194092 231.259979248 231.300018311 231.210174561 230.889862061 230.369842529 229.619842529 228.550018311 232.109985352 232.529907227 232.699829102 232.75012207 232.67980957 232.409790039 232.020141602 231.710083008 231.580200195 231.58996582 231.609985352 231.600219727 231.600219727 231.609985352 231.529907227 231.290161133 230.819946289 231.219802856 231.830154419 232.210037231 232.270095825 232.040115356 231.649978638 231.310134888 231.10017395 231.020095825 231.089920044 231.239822388 231.359939575 231.319900513 231.069900513 230.569900513 229.699783325 228.390213013 231.360076904 231.969940186 232.349822998 232.449920654 232.210174561 231.750213623 231.380096436 231.239959717 231.259979248 231.279998779 231.300018311 231.309783936 231.230194092 230.920135498 230.369842529 229.590057373 228.539764404 232.359985352 232.759887695 232.870239258 232.850219727 232.719848633 232.400024414 231.949829102 231.600219727 231.480102539 231.529907227 231.58996582 231.620239258 231.670043945 231.719848633 231.639770508 231.370239258 230.920043945 231.290115356 231.910232544 232.27986145 232.319900513 232.060134888 231.629959106 231.219802856 230.949783325 230.859939575 230.949783325 231.149978638 231.330154419 231.390213013 231.250076294 230.830154419 230.02986145 228.799880981 231.539764404 232.110076904 232.440155029 232.469940186 232.170135498 231.670135498 231.270233154 231.159881592 231.199920654 231.239959717 231.239959717 231.239959717 231.190155029 230.929901123 230.420135498 229.659881592 228.630096436 232.639770508 232.989868164 233.029907227 232.940063477 232.75012207 232.380004883 231.889770508 231.489868164 231.359985352 231.42980957 231.540161133 231.639770508 231.75012207 231.83996582 231.759887695 231.489868164 231.060180664 231.379959106 231.989822388 232.319900513 232.310134888 232.020095825 231.589920044 231.160232544 230.870193481 230.759841919 230.85017395 231.060134888 231.290115356 231.419998169 231.399978638 231.10017395 230.370193481 229.210037231 231.699920654 232.219940186 232.489959717 232.480194092 232.130096436 231.610076904 231.199920654 231.059783936 231.099822998 231.099822998 231.090057373 231.099822998 231.090057373 230.909881592 230.509979248 229.849822998 228.849822998 232.960083008 233.230102539 233.170043945 232.989868164 232.739868164 232.350219727 231.830200195 231.409790039 231.25012207 231.319946289 231.489868164 231.670043945 231.83996582 231.969848633 231.92980957 231.67980957 231.290161133 231.449783325 232.040115356 232.310134888 232.259841919 231.969802856 231.549880981 231.129959106 230.799880981 230.640213013 230.6900177 230.910232544 231.169998169 231.410232544 231.52986145 231.370193481 230.730056763 229.60017395 231.800018311 232.259979248 232.489959717 232.449920654 232.090057373 231.550018311 231.119842529 230.949920654 230.940155029 230.920135498 230.889862061 230.920135498 230.949920654 230.889862061 230.670135498 230.150115967 229.210174561 233.25012207 233.42980957 233.279907227 233.009887695 232.710083008 232.310180664 231.799926758 231.370239258 231.17980957 231.25012207 231.440063477 231.67980957 231.920043945 232.100219727 232.109985352 231.949829102 231.600219727 231.509841919 232.069900513 232.299880981 232.219802856 231.929763794 231.549880981 231.120193481 230.719802856 230.460037231 230.449783325 230.669998169 231.009841919 231.330154419 231.609939575 231.609939575 231.089920044 230.020095825 231.840057373 232.239959717 232.420135498 232.380096436 232.029998779 231.509979248 231.079803467 230.860076904 230.789764404 230.739959717 230.739959717 230.789764404 230.860076904 230.889862061 230.840057373 230.509979248 229.659881592 233.480102539 233.580200195 233.370239258 233.049926758 232.719848633 232.299926758 231.799926758 231.370239258 231.17980957 231.239868164 231.440063477 231.699829102 231.980102539 232.190063477 232.270141602 232.219848633 231.989868164 231.640213013 232.160232544 232.319900513 232.199783325 231.9400177 231.580154419 231.129959106 230.660232544 230.310134888 230.250076294 230.480056763 230.839920044 231.219802856 231.60017395 231.770095825 231.449783325 230.509841919 231.820037842 232.150115967 232.340057373 232.320037842 232.009979248 231.520233154 231.070037842 230.800018311 230.679901123 230.650115967 230.699920654 230.779998779 230.840057373 230.920135498 230.989959717 230.860076904 230.139862061 233.630004883 233.659790039 233.460083008 233.170043945 232.810180664 232.350219727 231.830200195 231.400024414 231.230102539 231.299926758 231.509887695 231.759887695 232.020141602 232.239868164 232.389770508 232.440063477 232.359985352 231.839920044 232.299880981 232.370193481 232.199783325 231.9400177 231.620193481 231.199783325 230.699783325 230.310134888 230.239822388 230.469802856 230.790115356 231.140213013 231.52986145 231.839920044 231.739822388 231.000076294 231.800018311 232.110076904 232.309783936 232.329803467 232.050018311 231.570037842 231.090057373 230.789764404 230.659881592 230.670135498 230.759979248 230.849822998 230.889862061 230.960174561 231.110076904 231.139862061 230.630096436 233.710083008 233.730102539 233.580200195 233.33996582 232.960083008 232.42980957 231.830200195 231.389770508 231.239868164 231.33996582 231.569946289 231.830200195 232.080200195 232.290161133 232.469848633 232.609985352 232.650024414 232.089920044 232.460037231 232.4400177 232.219802856 231.949783325 231.669998169 231.27986145 230.819900513 230.449783325 230.390213013 230.60017395 230.870193481 231.120193481 231.449783325 231.819900513 231.910232544 231.410232544 231.789764404 232.150115967 232.369842529 232.380096436 232.119842529 231.639862061 231.139862061 230.789764404 230.659881592 230.710174561 230.849822998 230.949920654 230.960174561 230.989959717 231.179901123 231.360076904 231.119842529 233.770141602 233.799926758 233.730102539 233.529907227 233.130004883 232.50012207 231.810180664 231.319946289 231.159790039 231.290161133 231.549926758 231.850219727 232.130004883 232.350219727 232.540161133 232.710083008 232.83996582 232.310134888 232.589920044 232.509841919 232.27986145 232.020095825 231.739822388 231.370193481 230.929763794 230.580154419 230.520095825 230.710037231 230.949783325 231.149978638 231.419998169 231.790115356 231.989822388 231.6900177 231.840057373 232.270233154 232.489959717 232.469940186 232.199920654 231.730194092 231.219940186 230.829803467 230.670135498 230.730194092 230.900115967 231.020233154 231.020233154 231.029998779 231.210174561 231.500213623 231.550018311 233.819946289 233.870239258 233.859985352 233.67980957 233.25012207 232.560180664 231.819946289 231.279907227 231.08996582 231.199829102 231.460083008 231.790161133 232.120239258 232.400024414 232.600219727 232.770141602 232.969848633 232.449783325 232.660232544 232.589920044 232.399978638 232.160232544 231.859939575 231.469802856 231.009841919 230.649978638 230.549880981 230.719802856 230.969802856 231.169998169 231.419998169 231.770095825 232.020095825 231.890213013 231.929901123 232.440155029 232.639862061 232.559783936 232.289764404 231.889862061 231.389862061 230.960174561 230.739959717 230.770233154 230.940155029 231.090057373 231.110076904 231.110076904 231.230194092 231.550018311 231.809783936 233.880004883 233.949829102 233.92980957 233.730102539 233.290161133 232.620239258 231.920043945 231.409790039 231.199829102 231.219848633 231.420043945 231.719848633 232.069946289 232.380004883 232.600219727 232.799926758 233.049926758 232.500076294 232.669998169 232.660232544 232.549880981 232.339920044 232.020095825 231.60017395 231.140213013 230.739822388 230.589920044 230.719802856 230.969802856 231.210037231 231.4400177 231.739822388 232.000076294 232.020095825 232.050018311 232.639862061 232.789764404 232.659881592 232.420135498 232.079803467 231.639862061 231.190155029 230.900115967 230.889862061 231.039764404 231.210174561 231.279998779 231.270233154 231.309783936 231.529998779 231.889862061 233.940063477 234.00012207 233.920043945 233.699829102 233.270141602 232.699829102 232.120239258 231.710083008 231.509887695 231.480102539 231.560180664 231.75012207 232.049926758 232.33996582 232.560180664 232.770141602 233.100219727 232.520095825 232.660232544 232.699783325 232.669998169 232.469802856 232.149978638 231.759841919 231.339920044 230.969802856 230.77986145 230.879959106 231.10017395 231.310134888 231.480056763 231.710037231 231.960037231 232.10017395 232.210174561 232.829803467 232.929901123 232.750213623 232.529998779 232.270233154 231.869842529 231.409881592 231.110076904 231.070037842 231.230194092 231.420135498 231.520233154 231.520233154 231.480194092 231.550018311 231.840057373 234.00012207 234.040161133 233.909790039 233.620239258 233.210083008 232.75012207 232.319946289 232.020141602 231.870239258 231.810180664 231.810180664 231.920043945 232.130004883 232.359985352 232.540161133 232.730102539 233.08996582 232.569900513 232.679763794 232.750076294 232.750076294 232.560134888 232.239822388 231.899978638 231.549880981 231.230056763 231.080154419 231.169998169 231.379959106 231.509841919 231.589920044 231.719802856 231.929763794 232.120193481 232.320037842 232.989959717 233.059783936 232.829803467 232.590057373 232.349822998 231.989959717 231.550018311 231.270233154 231.259979248 231.440155029 231.630096436 231.759979248 231.789764404 231.719940186 231.670135498 231.820037842 234.069946289 234.100219727 233.920043945 233.600219727 233.199829102 232.790161133 232.440063477 232.199829102 232.060180664 232.00012207 231.989868164 232.080200195 232.259887695 232.460083008 232.58996582 232.730102539 233.029907227 232.679763794 232.750076294 232.839920044 232.85017395 232.640213013 232.310134888 231.980056763 231.669998169 231.410232544 231.330154419 231.469802856 231.669998169 231.770095825 231.770095825 231.810134888 231.949783325 232.129959106 232.340057373 233.070037842 233.150115967 232.889862061 232.630096436 232.400115967 232.050018311 231.639862061 231.380096436 231.389862061 231.570037842 231.759979248 231.900115967 231.980194092 231.960174561 231.869842529 231.900115967 234.080200195 234.139770508 233.969848633 233.630004883 233.239868164 232.850219727 232.509887695 232.25012207 232.069946289 232.00012207 232.009887695 232.130004883 232.33996582 232.569946289 232.699829102 232.779907227 233.00012207 232.790115356 232.870193481 232.989822388 233.000076294 232.770095825 232.399978638 232.049880981 231.750076294 231.520095825 231.469802856 231.660232544 231.879959106 231.960037231 231.929763794 231.949783325 232.040115356 232.169998169 232.250213623 233.059783936 233.199920654 232.949920654 232.690155029 232.469940186 232.159881592 231.779998779 231.520233154 231.500213623 231.639862061 231.789764404 231.929901123 232.059783936 232.119842529 232.070037842 232.070037842 234.00012207 234.139770508 234.009887695 233.699829102 233.319946289 232.940063477 232.58996582 232.299926758 232.080200195 231.940063477 231.940063477 232.069946289 232.310180664 232.58996582 232.810180664 232.889770508 233.029907227 232.879959106 232.980056763 233.140213013 233.160232544 232.910232544 232.509841919 232.140213013 231.85017395 231.660232544 231.629959106 231.810134888 232.020095825 232.089920044 232.069900513 232.080154419 232.160232544 232.250076294 232.110076904 233.000213623 233.210174561 233.009979248 232.750213623 232.559783936 232.320037842 232.000213623 231.710174561 231.630096436 231.710174561 231.820037842 231.949920654 232.099822998 232.219940186 232.230194092 232.250213623 233.810180664 234.049926758 233.989868164 233.710083008 233.359985352 233.020141602 232.699829102 232.420043945 232.190063477 232.029907227 231.960083008 232.009887695 232.210083008 232.540161133 232.859985352 233.040161133 233.190063477 232.890213013 233.02986145 233.230056763 233.270095825 233.000076294 232.589920044 232.239822388 232.040115356 231.910232544 231.899978638 232.02986145 232.179763794 232.219802856 232.199783325 232.219802856 232.27986145 232.35017395 232.029998779 232.949920654 233.210174561 233.029998779 232.800018311 232.639862061 232.460174561 232.179901123 231.900115967 231.759979248 231.800018311 231.909881592 232.050018311 232.190155029 232.320037842 232.360076904 232.389862061 233.560180664 233.859985352 233.900024414 233.690063477 233.380004883 233.069946289 232.799926758 232.580200195 232.400024414 232.259887695 232.139770508 232.08996582 232.190063477 232.469848633 232.870239258 233.190063477 233.409790039 232.870193481 233.049880981 233.27986145 233.330154419 233.069900513 232.649978638 232.379959106 232.270095825 232.230056763 232.230056763 232.310134888 232.419998169 232.419998169 232.370193481 232.370193481 232.410232544 232.449783325 232.090057373 232.969940186 233.219940186 233.070037842 232.829803467 232.659881592 232.500213623 232.259979248 232.009979248 231.860076904 231.900115967 232.079803467 232.250213623 232.380096436 232.460174561 232.469940186 232.489959717 233.299926758 233.659790039 233.790161133 233.659790039 233.400024414 233.139770508 232.909790039 232.730102539 232.600219727 232.509887695 232.409790039 232.310180664 232.290161133 232.469848633 232.859985352 233.279907227 233.609985352 232.870193481 233.120193481 233.370193481 233.419998169 233.149978638 232.770095825 232.52986145 232.469802856 232.449783325 232.460037231 232.549880981 232.640213013 232.640213013 232.569900513 232.540115356 232.540115356 232.560134888 232.259979248 233.050018311 233.250213623 233.110076904 232.889862061 232.699920654 232.509979248 232.300018311 232.070037842 231.940155029 232.020233154 232.250213623 232.480194092 232.610076904 232.610076904 232.570037842 232.559783936 233.120239258 233.520141602 233.719848633 233.67980957 233.489868164 233.230102539 233.009887695 232.830200195 232.730102539 232.67980957 232.630004883 232.569946289 232.489868164 232.549926758 232.83996582 233.290161133 233.710083008 232.919998169 233.239822388 233.509841919 233.549880981 233.27986145 232.919998169 232.6900177 232.60017395 232.549880981 232.549880981 232.669998169 232.819900513 232.839920044 232.750076294 232.669998169 232.640213013 232.640213013 232.489959717 233.150115967 233.279998779 233.159881592 232.980194092 232.779998779 232.570037842 232.360076904 232.159881592 232.050018311 232.150115967 232.420135498 232.679901123 232.779998779 232.730194092 232.639862061 232.599822998 233.009887695 233.440063477 233.699829102 233.719848633 233.569946289 233.350219727 233.130004883 232.949829102 232.83996582 232.799926758 232.810180664 232.799926758 232.730102539 232.690063477 232.850219727 233.25012207 233.739868164 233.02986145 233.410232544 233.669998169 233.669998169 233.390213013 233.040115356 232.810134888 232.6900177 232.589920044 232.580154419 232.750076294 232.949783325 232.980056763 232.839920044 232.719802856 232.679763794 232.6900177 232.750213623 233.270233154 233.300018311 233.199920654 233.070037842 232.880096436 232.659881592 232.449920654 232.300018311 232.210174561 232.300018311 232.579803467 232.820037842 232.869842529 232.770233154 232.650115967 232.619842529 232.92980957 233.389770508 233.690063477 233.75012207 233.620239258 233.420043945 233.219848633 233.069946289 232.969848633 232.940063477 232.969848633 233.009887695 232.949829102 232.830200195 232.880004883 233.190063477 233.719848633 233.140213013 233.549880981 233.77986145 233.719802856 233.419998169 233.080154419 232.870193481 232.750076294 232.649978638 232.679763794 232.879959106 233.089920044 233.089920044 232.890213013 232.730056763 232.679763794 232.699783325 233.020233154 233.400115967 233.340057373 233.219940186 233.110076904 232.920135498 232.699920654 232.539764404 232.449920654 232.440155029 232.539764404 232.770233154 232.940155029 232.909881592 232.750213623 232.639862061 232.630096436 232.870239258 233.33996582 233.659790039 233.75012207 233.639770508 233.440063477 233.259887695 233.170043945 233.139770508 233.109985352 233.139770508 233.17980957 233.130004883 232.980102539 232.92980957 233.190063477 233.719848633 233.210037231 233.629959106 233.830154419 233.719802856 233.419998169 233.089920044 232.910232544 232.819900513 232.759841919 232.810134888 233.049880981 233.250076294 233.179763794 232.929763794 232.730056763 232.679763794 232.699783325 233.309783936 233.550018311 233.400115967 233.239959717 233.130096436 232.929901123 232.699920654 232.590057373 232.599822998 232.679901123 232.809783936 232.989959717 233.059783936 232.929901123 232.719940186 232.630096436 232.650115967 232.799926758 233.259887695 233.600219727 233.730102539 233.650024414 233.449829102 233.290161133 233.239868164 233.25012207 233.270141602 233.290161133 233.330200195 233.290161133 233.120239258 233.009887695 233.219848633 233.739868164 233.219802856 233.629959106 233.810134888 233.719802856 233.429763794 233.160232544 233.000076294 232.929763794 232.890213013 232.960037231 233.179763794 233.35017395 233.250076294 232.969802856 232.770095825 232.719802856 232.710037231 233.590057373 233.699920654 233.460174561 233.300018311 233.190155029 232.980194092 232.739959717 232.650115967 232.730194092 232.869842529 233.029998779 233.190155029 233.199920654 233.000213623 232.730194092 232.630096436 232.679901123 232.739868164 233.17980957 233.520141602 233.67980957 233.659790039 233.50012207 233.330200195 233.279907227 233.319946289 233.359985352 233.409790039 233.460083008 233.409790039 233.230102539 233.100219727 233.270141602 233.770141602 233.219802856 233.569900513 233.739822388 233.6900177 233.480056763 233.259841919 233.129959106 233.060134888 233.020095825 233.069900513 233.250076294 233.399978638 233.27986145 233.000076294 232.810134888 232.759841919 232.739822388 233.820037842 233.779998779 233.520233154 233.389862061 233.320037842 233.139862061 232.869842529 232.759979248 232.849822998 232.989959717 233.159881592 233.309783936 233.329803467 233.099822998 232.770233154 232.630096436 232.690155029 232.759887695 233.139770508 233.420043945 233.600219727 233.659790039 233.569946289 233.409790039 233.319946289 233.33996582 233.409790039 233.489868164 233.549926758 233.520141602 233.319946289 233.150024414 233.299926758 233.790161133 233.239822388 233.509841919 233.649978638 233.649978638 233.520095825 233.359939575 233.250076294 233.179763794 233.129959106 233.160232544 233.290115356 233.399978638 233.27986145 233.000076294 232.810134888 232.770095825 232.759841919 233.969940186 233.829803467 233.559783936 233.520233154 233.520233154 233.349822998 233.070037842 232.929901123 232.969940186 233.079803467 233.210174561 233.380096436 233.440155029 233.219940186 232.829803467 232.599822998 232.639862061 232.819946289 233.139770508 233.33996582 233.520141602 233.650024414 233.639770508 233.50012207 233.380004883 233.380004883 233.449829102 233.549926758 233.609985352 233.580200195 233.389770508 233.199829102 233.299926758 233.799926758 233.299880981 233.509841919 233.609939575 233.629959106 233.549880981 233.410232544 233.310134888 233.270095825 233.219802856 233.230056763 233.310134888 233.399978638 233.290115356 233.000076294 232.770095825 232.719802856 232.739822388 234.070037842 233.849822998 233.630096436 233.679901123 233.739959717 233.590057373 233.309783936 233.159881592 233.150115967 233.199920654 233.289764404 233.449920654 233.550018311 233.320037842 232.860076904 232.520233154 232.539764404 232.900024414 233.17980957 233.33996582 233.509887695 233.690063477 233.730102539 233.600219727 233.440063477 233.420043945 233.489868164 233.569946289 233.630004883 233.600219727 233.42980957 233.239868164 233.299926758 233.790161133 233.449783325 233.629959106 233.699783325 233.710037231 233.629959106 233.480056763 233.359939575 233.310134888 233.299880981 233.27986145 233.330154419 233.399978638 233.310134888 233.02986145 232.759841919 232.660232544 232.699783325 234.079803467 233.860076904 233.750213623 233.869842529 233.949920654 233.789764404 233.550018311 233.409881592 233.400115967 233.400115967 233.429901123 233.559783936 233.619842529 233.369842529 232.820037842 232.409881592 232.449920654 232.949829102 233.239868164 233.400024414 233.600219727 233.790161133 233.830200195 233.670043945 233.480102539 233.460083008 233.540161133 233.600219727 233.620239258 233.580200195 233.449829102 233.270141602 233.310180664 233.770141602 233.640213013 233.819900513 233.890213013 233.890213013 233.790115356 233.589920044 233.419998169 233.359939575 233.35017395 233.330154419 233.330154419 233.399978638 233.339920044 233.10017395 232.790115356 232.640213013 232.660232544 234.009979248 233.869842529 233.889862061 234.059783936 234.119842529 233.969940186 233.759979248 233.659881592 233.650115967 233.619842529 233.610076904 233.670135498 233.670135498 233.340057373 232.750213623 232.320037842 232.380096436 232.960083008 233.270141602 233.50012207 233.719848633 233.889770508 233.889770508 233.690063477 233.509887695 233.50012207 233.580200195 233.609985352 233.580200195 233.540161133 233.449829102 233.290161133 233.299926758 233.730102539 233.85017395 234.049880981 234.109939575 234.109939575 233.980056763 233.710037231 233.469802856 233.399978638 233.410232544 233.370193481 233.339920044 233.379959106 233.370193481 233.149978638 232.830154419 232.629959106 232.640213013 233.920135498 233.889862061 234.039764404 234.230194092 234.250213623 234.090057373 233.920135498 233.840057373 233.820037842 233.789764404 233.759979248 233.750213623 233.659881592 233.279998779 232.690155029 232.289764404 232.380096436 232.949829102 233.310180664 233.58996582 233.810180664 233.940063477 233.889770508 233.690063477 233.509887695 233.520141602 233.600219727 233.609985352 233.549926758 233.509887695 233.420043945 233.259887695 233.259887695 233.670043945 234.02986145 234.210037231 234.239822388 234.230056763 234.089920044 233.77986145 233.500076294 233.419998169 233.429763794 233.390213013 233.339920044 233.370193481 233.359939575 233.169998169 232.85017395 232.640213013 232.629959106 233.869842529 233.969940186 234.210174561 234.380096436 234.360076904 234.199920654 234.050018311 233.960174561 233.920135498 233.869842529 233.829803467 233.789764404 233.639862061 233.230194092 232.670135498 232.329803467 232.440155029 232.949829102 233.350219727 233.670043945 233.850219727 233.920043945 233.850219727 233.659790039 233.520141602 233.520141602 233.580200195 233.58996582 233.520141602 233.469848633 233.380004883 233.199829102 233.190063477 233.609985352 234.10017395 234.230056763 234.230056763 234.219802856 234.089920044 233.77986145 233.500076294 233.410232544 233.4400177 233.399978638 233.339920044 233.35017395 233.330154419 233.140213013 232.839920044 232.649978638 232.649978638 233.889862061 234.110076904 234.400115967 234.520233154 234.440155029 234.279998779 234.139862061 234.029998779 233.960174561 233.940155029 233.909881592 233.849822998 233.639862061 233.219940186 232.710174561 232.429901123 232.539764404 232.92980957 233.400024414 233.739868164 233.870239258 233.880004883 233.819946289 233.690063477 233.560180664 233.520141602 233.529907227 233.529907227 233.480102539 233.440063477 233.330200195 233.150024414 233.150024414 233.580200195 234.060134888 234.140213013 234.109939575 234.109939575 234.000076294 233.750076294 233.500076294 233.410232544 233.419998169 233.399978638 233.330154419 233.339920044 233.310134888 233.120193481 232.85017395 232.6900177 232.6900177 233.940155029 234.259979248 234.539764404 234.590057373 234.469940186 234.309783936 234.170135498 234.059783936 234.009979248 234.029998779 234.039764404 233.940155029 233.679901123 233.259979248 232.800018311 232.550018311 232.650115967 232.909790039 233.440063477 233.799926758 233.889770508 233.870239258 233.819946289 233.75012207 233.620239258 233.529907227 233.509887695 233.50012207 233.480102539 233.42980957 233.319946289 233.139770508 233.150024414 233.580200195 233.960037231 234.02986145 234.009841919 234.000076294 233.929763794 233.719802856 233.509841919 233.429763794 233.4400177 233.399978638 233.370193481 233.370193481 233.330154419 233.140213013 232.890213013 232.770095825 232.739822388 233.969940186 234.340057373 234.610076904 234.610076904 234.449920654 234.289764404 234.159881592 234.059783936 234.070037842 234.150115967 234.159881592 234.039764404 233.750213623 233.340057373 232.909881592 232.670135498 232.739959717 232.889770508 233.50012207 233.880004883 233.949829102 233.900024414 233.870239258 233.810180664 233.690063477 233.58996582 233.560180664 233.540161133 233.509887695 233.460083008 233.33996582 233.17980957 233.199829102 233.580200195 233.890213013 234.009841919 234.000076294 233.989822388 233.899978638 233.710037231 233.520095825 233.460037231 233.460037231 233.4400177 233.419998169 233.429763794 233.370193481 233.169998169 232.9400177 232.85017395 232.790115356 233.960174561 234.380096436 234.619842529 234.590057373 234.409881592 234.259979248 234.139862061 234.079803467 234.139862061 234.259979248 234.259979248 234.090057373 233.789764404 233.420135498 233.029998779 232.770233154 232.809783936 232.889770508 233.580200195 233.980102539 234.049926758 233.989868164 233.940063477 233.859985352 233.739868164 233.670043945 233.659790039 233.639770508 233.560180664 233.480102539 233.380004883 233.239868164 233.239868164 233.529907227 233.890213013 234.060134888 234.080154419 234.020095825 233.870193481 233.679763794 233.520095825 233.460037231 233.480056763 233.489822388 233.500076294 233.500076294 233.390213013 233.149978638 232.9400177 232.85017395 232.770095825 233.929901123 234.380096436 234.599822998 234.550018311 234.380096436 234.250213623 234.159881592 234.139862061 234.239959717 234.349822998 234.309783936 234.099822998 233.809783936 233.489959717 233.119842529 232.849822998 232.869842529 232.940063477 233.670043945 234.080200195 234.159790039 234.109985352 234.029907227 233.889770508 233.759887695 233.739868164 233.779907227 233.739868164 233.580200195 233.469848633 233.380004883 233.279907227 233.25012207 233.420043945 233.890213013 234.10017395 234.120193481 234.020095825 233.830154419 233.620193481 233.480056763 233.4400177 233.480056763 233.540115356 233.569900513 233.540115356 233.370193481 233.080154419 232.85017395 232.759841919 232.669998169 233.860076904 234.320037842 234.550018311 234.489959717 234.349822998 234.230194092 234.170135498 234.199920654 234.329803467 234.420135498 234.340057373 234.099822998 233.820037842 233.520233154 233.190155029 232.949920654 232.980194092 232.940063477 233.699829102 234.109985352 234.230102539 234.210083008 234.109985352 233.909790039 233.779907227 233.810180664 233.880004883 233.799926758 233.580200195 233.42980957 233.359985352 233.290161133 233.25012207 233.319946289 233.790115356 234.040115356 234.060134888 233.919998169 233.719802856 233.549880981 233.449783325 233.429763794 233.489822388 233.560134888 233.609939575 233.549880981 233.330154419 233.020095825 232.770095825 232.649978638 232.52986145 233.730194092 234.210174561 234.429901123 234.380096436 234.250213623 234.179901123 234.170135498 234.230194092 234.369842529 234.449920654 234.349822998 234.110076904 233.820037842 233.529998779 233.239959717 233.059783936 233.170135498 232.900024414 233.650024414 234.040161133 234.190063477 234.239868164 234.150024414 233.940063477 233.810180664 233.889770508 233.989868164 233.880004883 233.609985352 233.420043945 233.350219727 233.299926758 233.25012207 233.230102539 233.60017395 233.879959106 233.910232544 233.759841919 233.580154419 233.480056763 233.429763794 233.429763794 233.489822388 233.580154419 233.629959106 233.560134888 233.310134888 233.009841919 232.759841919 232.60017395 232.410232544 233.529998779 234.020233154 234.250213623 234.230194092 234.150115967 234.119842529 234.139862061 234.219940186 234.340057373 234.440155029 234.380096436 234.139862061 233.829803467 233.509979248 233.279998779 233.219940186 233.449920654 232.819946289 233.520141602 233.900024414 234.080200195 234.17980957 234.109985352 233.92980957 233.850219727 233.980102539 234.08996582 233.980102539 233.699829102 233.469848633 233.370239258 233.299926758 233.25012207 233.17980957 233.370193481 233.710037231 233.739822388 233.609939575 233.480056763 233.4400177 233.419998169 233.410232544 233.449783325 233.540115356 233.609939575 233.52986145 233.310134888 233.040115356 232.799880981 232.589920044 232.299880981 233.289764404 233.779998779 234.050018311 234.079803467 234.050018311 234.059783936 234.110076904 234.170135498 234.279998779 234.400115967 234.380096436 234.150115967 233.809783936 233.489959717 233.329803467 233.409881592 233.750213623 232.759887695 233.400024414 233.739868164 233.940063477 234.049926758 234.020141602 233.900024414 233.900024414 234.049926758 234.159790039 234.040161133 233.779907227 233.560180664 233.400024414 233.279907227 233.199829102 233.060180664 233.160232544 233.560134888 233.629959106 233.520095825 233.4400177 233.429763794 233.410232544 233.370193481 233.379959106 233.469802856 233.540115356 233.469802856 233.27986145 233.049880981 232.839920044 232.580154419 232.179763794 233.009979248 233.509979248 233.829803467 233.940155029 233.969940186 234.020233154 234.079803467 234.119842529 234.199920654 234.329803467 234.349822998 234.150115967 233.779998779 233.489959717 233.440155029 233.650115967 234.039764404 232.710083008 233.319946289 233.639770508 233.830200195 233.909790039 233.900024414 233.850219727 233.920043945 234.08996582 234.159790039 234.029907227 233.810180664 233.600219727 233.409790039 233.219848633 233.060180664 232.830200195 232.980056763 233.429763794 233.540115356 233.449783325 233.410232544 233.4400177 233.410232544 233.319900513 233.299880981 233.379959106 233.4400177 233.379959106 233.219802856 233.049880981 232.85017395 232.52986145 232.040115356 232.670135498 233.179901123 233.570037842 233.759979248 233.849822998 233.929901123 234.000213623 234.029998779 234.110076904 234.250213623 234.300018311 234.110076904 233.759979248 233.550018311 233.630096436 233.980194092 234.360076904 232.630004883 233.239868164 233.560180664 233.730102539 233.799926758 233.810180664 233.830200195 233.949829102 234.08996582 234.109985352 233.949829102 233.75012207 233.569946289 233.370239258 233.139770508 232.909790039 232.540161133 232.85017395 233.299880981 233.399978638 233.35017395 233.370193481 233.449783325 233.410232544 233.290115356 233.230056763 233.290115356 233.339920044 233.27986145 233.160232544 233.040115356 232.859939575 232.480056763 231.899978638 232.279998779 232.809783936 233.259979248 233.520233154 233.679901123 233.789764404 233.869842529 233.900115967 233.989959717 234.150115967 234.230194092 234.059783936 233.759979248 233.659881592 233.929901123 234.389862061 234.730194092 232.480102539 233.100219727 233.440063477 233.609985352 233.710083008 233.770141602 233.83996582 233.969848633 234.060180664 234.029907227 233.859985352 233.659790039 233.469848633 233.270141602 233.049926758 232.739868164 232.230102539 232.719802856 233.140213013 233.239822388 233.239822388 233.319900513 233.410232544 233.379959106 233.250076294 233.1900177 233.210037231 233.230056763 233.179763794 233.120193481 233.040115356 232.85017395 232.419998169 231.750076294 231.880096436 232.429901123 232.909881592 233.250213623 233.460174561 233.630096436 233.730194092 233.770233154 233.860076904 234.020233154 234.119842529 234.000213623 233.759979248 233.789764404 234.230194092 234.809783936 235.130096436 232.239868164 232.859985352 233.219848633 233.440063477 233.609985352 233.75012207 233.850219727 233.940063477 233.989868164 233.92980957 233.770141602 233.549926758 233.330200195 233.100219727 232.880004883 232.540161133 231.909790039 232.580154419 232.960037231 233.080154419 233.140213013 233.250076294 233.35017395 233.319900513 233.199783325 233.140213013 233.149978638 233.129959106 233.089920044 233.049880981 233.009841919 232.799880981 232.310134888 231.560134888 231.520233154 232.050018311 232.559783936 232.960174561 233.250213623 233.469940186 233.599822998 233.659881592 233.730194092 233.889862061 234.000213623 233.909881592 233.719940186 233.800018311 234.340057373 235.029998779 235.369842529 231.900024414 232.529907227 232.940063477 233.230102539 233.50012207 233.710083008 233.819946289 233.83996582 233.850219727 233.830200195 233.699829102 233.449829102 233.150024414 232.870239258 232.639770508 232.279907227 231.560180664 232.390213013 232.750076294 232.929763794 233.069900513 233.210037231 233.270095825 233.230056763 233.140213013 233.109939575 233.10017395 233.049880981 232.989822388 232.960037231 232.899978638 232.660232544 232.109939575 231.290115356 231.179901123 231.699920654 232.210174561 232.650115967 233.000213623 233.270233154 233.460174561 233.550018311 233.630096436 233.750213623 233.849822998 233.750213623 233.550018311 233.610076904 234.150115967 234.880096436 235.239959717 231.50012207 232.17980957 232.630004883 233.00012207 233.370239258 233.630004883 233.730102539 233.719848633 233.710083008 233.739868164 233.650024414 233.370239258 232.980102539 232.630004883 232.33996582 231.92980957 231.139770508 232.1900177 232.540115356 232.819900513 233.02986145 233.169998169 233.1900177 233.140213013 233.10017395 233.10017395 233.089920044 233.000076294 232.899978638 232.830154419 232.719802856 232.419998169 231.830154419 230.949783325 230.849822998 231.349822998 231.869842529 232.349822998 232.750213623 233.050018311 233.279998779 233.429901123 233.520233154 233.630096436 233.710174561 233.590057373 233.329803467 233.259979248 233.659881592 234.320037842 234.699920654 231.139770508 231.830200195 232.330200195 232.75012207 233.159790039 233.489868164 233.620239258 233.609985352 233.620239258 233.67980957 233.620239258 233.319946289 232.859985352 232.440063477 232.080200195 231.569946289 230.710083008 232.020095825 232.359939575 232.710037231 232.980056763 233.10017395 233.10017395 233.060134888 233.069900513 233.10017395 233.080154419 232.960037231 232.810134888 232.679763794 232.500076294 232.149978638 231.520095825 230.580154419 230.570037842 231.070037842 231.610076904 232.130096436 232.529998779 232.840057373 233.090057373 233.309783936 233.449920654 233.550018311 233.579803467 233.429901123 233.099822998 232.869842529 233.059783936 233.529998779 233.840057373 230.83996582 231.520141602 232.040161133 232.489868164 232.940063477 233.299926758 233.469848633 233.509887695 233.560180664 233.630004883 233.560180664 233.239868164 232.779907227 232.330200195 231.880004883 231.270141602 230.310180664 231.890213013 232.239822388 232.609939575 232.879959106 232.989822388 232.980056763 232.980056763 233.040115356 233.10017395 233.060134888 232.910232544 232.730056763 232.549880981 232.310134888 231.890213013 231.230056763 230.219802856 230.369842529 230.889862061 231.460174561 232.000213623 232.400115967 232.670135498 232.940155029 233.199920654 233.400115967 233.489959717 233.480194092 233.289764404 232.929901123 232.579803467 232.520233154 232.730194092 232.920135498 230.609985352 231.25012207 231.75012207 232.230102539 232.710083008 233.109985352 233.330200195 233.420043945 233.489868164 233.540161133 233.42980957 233.120239258 232.699829102 232.259887695 231.739868164 231.009887695 229.949829102 231.77986145 232.120193481 232.469802856 232.719802856 232.819900513 232.839920044 232.879959106 232.969802856 233.040115356 233.000076294 232.839920044 232.640213013 232.429763794 232.140213013 231.679763794 230.949783325 229.859939575 230.259979248 230.779998779 231.360076904 231.889862061 232.259979248 232.529998779 232.800018311 233.099822998 233.329803467 233.409881592 233.349822998 233.150115967 232.789764404 232.369842529 232.119842529 232.090057373 232.119842529 230.400024414 230.980102539 231.480102539 231.989868164 232.520141602 232.949829102 233.190063477 233.299926758 233.359985352 233.370239258 233.25012207 232.960083008 232.569946289 232.139770508 231.58996582 230.770141602 229.630004883 231.660232544 231.969802856 232.27986145 232.509841919 232.629959106 232.699783325 232.759841919 232.85017395 232.919998169 232.899978638 232.759841919 232.569900513 232.339920044 232.009841919 231.480056763 230.679763794 229.520095825 230.210174561 230.699920654 231.230194092 231.699920654 232.050018311 232.329803467 232.630096436 232.969940186 233.219940186 233.289764404 233.210174561 233.009979248 232.659881592 232.219940186 231.849822998 231.639862061 231.520233154 230.199829102 230.739868164 231.239868164 231.799926758 232.370239258 232.819946289 233.080200195 233.170043945 233.219848633 233.199829102 233.080200195 232.810180664 232.440063477 232.00012207 231.409790039 230.540161133 229.370239258 231.509841919 231.790115356 232.080154419 232.310134888 232.489822388 232.580154419 232.640213013 232.699783325 232.759841919 232.770095825 232.679763794 232.500076294 232.259841919 231.899978638 231.330154419 230.449783325 229.199783325 230.179901123 230.619842529 231.050018311 231.449920654 231.779998779 232.099822998 232.460174561 232.820037842 233.070037842 233.150115967 233.070037842 232.860076904 232.500213623 232.059783936 231.639862061 231.309783936 231.070037842 230.009887695 230.560180664 231.080200195 231.630004883 232.199829102 232.670043945 232.92980957 233.049926758 233.100219727 233.100219727 232.989868164 232.710083008 232.319946289 231.850219727 231.239868164 230.350219727 229.170043945 231.370193481 231.629959106 231.890213013 232.160232544 232.379959106 232.500076294 232.520095825 232.52986145 232.589920044 232.629959106 232.569900513 232.410232544 232.169998169 231.799880981 231.179763794 230.239822388 228.960037231 230.170135498 230.570037842 230.920135498 231.230194092 231.539764404 231.909881592 232.300018311 232.650115967 232.900115967 233.009979248 232.949920654 232.719940186 232.349822998 231.889862061 231.449920654 231.079803467 230.750213623 229.889770508 230.480102539 230.980102539 231.489868164 232.020141602 232.480102539 232.779907227 232.940063477 233.020141602 233.060180664 232.949829102 232.650024414 232.230102539 231.739868164 231.120239258 230.239868164 229.029907227 231.239822388 231.489822388 231.730056763 232.009841919 232.27986145 232.410232544 232.410232544 232.399978638 232.449783325 232.520095825 232.469802856 232.310134888 232.069900513 231.669998169 231.020095825 230.069900513 228.819900513 230.190155029 230.559783936 230.829803467 231.070037842 231.349822998 231.739959717 232.139862061 232.469940186 232.719940186 232.860076904 232.840057373 232.610076904 232.190155029 231.699920654 231.239959717 230.860076904 230.480194092 229.83996582 230.440063477 230.900024414 231.350219727 231.830200195 232.290161133 232.630004883 232.819946289 232.960083008 233.020141602 232.920043945 232.600219727 232.159790039 231.659790039 231.049926758 230.159790039 228.920043945 231.120193481 231.35017395 231.569900513 231.85017395 232.149978638 232.310134888 232.299880981 232.290115356 232.379959106 232.469802856 232.410232544 232.230056763 231.949783325 231.540115356 230.879959106 229.949783325 228.739822388 230.199920654 230.509979248 230.719940186 230.880096436 231.150115967 231.529998779 231.940155029 232.279998779 232.550018311 232.719940186 232.730194092 232.500213623 232.029998779 231.489959717 230.989959717 230.599822998 230.219940186 229.830200195 230.380004883 230.779907227 231.190063477 231.659790039 232.150024414 232.50012207 232.719848633 232.870239258 232.940063477 232.859985352 232.540161133 232.100219727 231.609985352 230.989868164 230.060180664 228.770141602 231.000076294 231.219802856 231.419998169 231.699783325 232.02986145 232.199783325 232.199783325 232.210037231 232.339920044 232.4400177 232.370193481 232.149978638 231.85017395 231.429763794 230.770095825 229.879959106 228.739822388 230.159881592 230.389862061 230.509979248 230.610076904 230.860076904 231.259979248 231.699920654 232.079803467 232.389862061 232.599822998 232.610076904 232.340057373 231.849822998 231.250213623 230.699920654 230.289764404 229.929901123 229.779907227 230.25012207 230.600219727 231.009887695 231.529907227 232.049926758 232.400024414 232.620239258 232.759887695 232.83996582 232.770141602 232.480102539 232.069946289 231.580200195 230.920043945 229.92980957 228.58996582 230.919998169 231.120193481 231.319900513 231.620193481 231.9400177 232.120193481 232.120193481 232.129959106 232.270095825 232.390213013 232.310134888 232.069900513 231.750076294 231.330154419 230.719802856 229.870193481 228.770095825 230.020233154 230.150115967 230.199920654 230.279998779 230.539764404 230.969940186 231.449920654 231.909881592 232.279998779 232.489959717 232.460174561 232.150115967 231.630096436 230.989959717 230.380096436 229.940155029 229.599822998 229.690063477 230.080200195 230.400024414 230.83996582 231.409790039 231.920043945 232.279907227 232.509887695 232.659790039 232.75012207 232.67980957 232.409790039 232.020141602 231.520141602 230.819946289 229.790161133 228.409790039 230.870193481 231.080154419 231.27986145 231.580154419 231.910232544 232.040115356 232.02986145 232.040115356 232.1900177 232.319900513 232.239822388 231.969802856 231.640213013 231.239822388 230.679763794 229.879959106 228.830154419 229.809783936 229.849822998 229.860076904 229.969940186 230.279998779 230.739959717 231.259979248 231.759979248 232.170135498 232.369842529 232.279998779 231.929901123 231.369842529 230.690155029 230.039764404 229.590057373 229.250213623 229.569946289 229.920043945 230.230102539 230.67980957 231.239868164 231.75012207 232.120239258 232.400024414 232.600219727 232.67980957 232.580200195 232.319946289 231.92980957 231.420043945 230.67980957 229.639770508 228.290161133 230.77986145 231.009841919 231.219802856 231.509841919 231.810134888 231.960037231 231.949783325 231.969802856 232.120193481 232.250076294 232.179763794 231.899978638 231.540115356 231.140213013 230.629959106 229.910232544 228.919998169 229.539764404 229.539764404 229.579803467 229.750213623 230.110076904 230.590057373 231.099822998 231.619842529 232.039764404 232.230194092 232.099822998 231.699920654 231.099822998 230.389862061 229.730194092 229.270233154 228.909881592 229.449829102 229.790161133 230.120239258 230.560180664 231.080200195 231.569946289 231.960083008 232.299926758 232.540161133 232.600219727 232.460083008 232.190063477 231.810180664 231.279907227 230.520141602 229.509887695 228.230102539 230.620193481 230.870193481 231.10017395 231.359939575 231.649978638 231.839920044 231.919998169 231.969802856 232.089920044 232.199783325 232.140213013 231.85017395 231.469802856 231.049880981 230.569900513 229.910232544 229.009841919 229.250213623 229.250213623 229.340057373 229.590057373 230.000213623 230.480194092 230.980194092 231.489959717 231.909881592 232.090057373 231.940155029 231.509979248 230.869842529 230.110076904 229.409881592 228.929901123 228.529998779 229.330200195 229.659790039 229.980102539 230.449829102 230.960083008 231.440063477 231.850219727 232.219848633 232.480102539 232.509887695 232.33996582 232.049926758 231.670043945 231.130004883 230.359985352 229.389770508 228.17980957 230.390213013 230.679763794 230.919998169 231.169998169 231.469802856 231.739822388 231.910232544 232.000076294 232.089920044 232.149978638 232.089920044 231.830154419 231.410232544 230.960037231 230.500076294 229.910232544 229.089920044 228.960174561 228.989959717 229.139862061 229.460174561 229.920135498 230.420135498 230.909881592 231.400115967 231.800018311 231.960174561 231.800018311 231.360076904 230.699920654 229.880096436 229.099822998 228.570037842 228.119842529 229.190063477 229.449829102 229.799926758 230.330200195 230.909790039 231.380004883 231.759887695 232.109985352 232.359985352 232.380004883 232.190063477 231.900024414 231.529907227 230.969848633 230.210083008 229.270141602 228.139770508 230.129959106 230.460037231 230.739822388 231.020095825 231.330154419 231.660232544 231.890213013 232.009841919 232.040115356 232.069900513 232.009841919 231.77986145 231.359939575 230.890213013 230.429763794 229.919998169 229.179763794 228.690155029 228.759979248 228.960174561 229.329803467 229.840057373 230.369842529 230.880096436 231.360076904 231.699920654 231.809783936 231.639862061 231.219940186 230.579803467 229.719940186 228.860076904 228.230194092 227.710174561 229.00012207 229.17980957 229.560180664 230.199829102 230.850219727 231.310180664 231.639770508 231.949829102 232.199829102 232.239868164 232.060180664 231.759887695 231.380004883 230.830200195 230.069946289 229.170043945 228.100219727 229.85017395 230.210037231 230.560134888 230.899978638 231.250076294 231.580154419 231.819900513 231.9400177 231.980056763 232.000076294 231.949783325 231.739822388 231.319900513 230.819900513 230.359939575 229.890213013 229.219802856 228.469940186 228.570037842 228.800018311 229.199920654 229.750213623 230.340057373 230.900115967 231.340057373 231.610076904 231.619842529 231.429901123 231.050018311 230.469940186 229.630096436 228.710174561 227.980194092 227.389862061 228.799926758 228.909790039 229.330200195 230.040161133 230.730102539 231.17980957 231.469848633 231.770141602 232.040161133 232.120239258 231.949829102 231.630004883 231.230102539 230.690063477 229.960083008 229.080200195 228.049926758 229.540115356 229.919998169 230.359939575 230.799880981 231.179763794 231.500076294 231.730056763 231.870193481 231.949783325 232.000076294 231.960037231 231.719802856 231.27986145 230.759841919 230.270095825 229.830154419 229.219802856 228.289764404 228.409881592 228.650115967 229.070037842 229.670135498 230.329803467 230.909881592 231.329803467 231.520233154 231.460174561 231.230194092 230.889862061 230.369842529 229.590057373 228.659881592 227.869842529 227.199920654 228.600219727 228.690063477 229.159790039 229.909790039 230.580200195 231.029907227 231.319946289 231.630004883 231.92980957 232.020141602 231.859985352 231.520141602 231.120239258 230.580200195 229.870239258 228.989868164 227.989868164 229.239822388 229.640213013 230.160232544 230.710037231 231.140213013 231.429763794 231.649978638 231.85017395 231.989822388 232.049880981 231.980056763 231.719802856 231.250076294 230.6900177 230.179763794 229.730056763 229.160232544 228.170135498 228.309783936 228.550018311 228.989959717 229.630096436 230.329803467 230.920135498 231.289764404 231.429901123 231.349822998 231.110076904 230.770233154 230.279998779 229.550018311 228.659881592 227.840057373 227.139862061 228.409790039 228.549926758 229.080200195 229.799926758 230.460083008 230.900024414 231.25012207 231.58996582 231.870239258 231.940063477 231.770141602 231.449829102 231.029907227 230.50012207 229.779907227 228.900024414 227.900024414 228.980056763 229.410232544 229.989822388 230.629959106 231.10017395 231.410232544 231.640213013 231.85017395 232.009841919 232.060134888 231.960037231 231.669998169 231.179763794 230.609939575 230.089920044 229.609939575 229.069900513 228.079803467 228.239959717 228.500213623 228.969940186 229.619842529 230.320037842 230.889862061 231.230194092 231.340057373 231.289764404 231.070037842 230.730194092 230.230194092 229.529998779 228.699920654 227.900115967 227.179901123 228.219848633 228.460083008 229.029907227 229.719848633 230.33996582 230.850219727 231.259887695 231.58996582 231.790161133 231.810180664 231.650024414 231.350219727 230.949829102 230.420043945 229.699829102 228.819946289 227.83996582 228.77986145 229.230056763 229.85017395 230.540115356 231.080154419 231.429763794 231.660232544 231.85017395 231.969802856 231.989822388 231.859939575 231.569900513 231.080154419 230.540115356 230.009841919 229.52986145 229.000076294 227.960174561 228.150115967 228.449920654 228.940155029 229.610076904 230.309783936 230.829803467 231.119842529 231.230194092 231.219940186 231.059783936 230.719940186 230.210174561 229.539764404 228.770233154 228.020233154 227.320037842 228.049926758 228.389770508 228.989868164 229.630004883 230.239868164 230.799926758 231.259887695 231.549926758 231.650024414 231.600219727 231.480102539 231.230102539 230.83996582 230.310180664 229.620239258 228.779907227 227.870239258 228.60017395 229.080154419 229.750076294 230.480056763 231.069900513 231.449783325 231.669998169 231.799880981 231.839920044 231.830154419 231.739822388 231.460037231 230.989822388 230.460037231 229.949783325 229.489822388 228.960037231 227.739959717 228.000213623 228.349822998 228.880096436 229.579803467 230.279998779 230.779998779 231.020233154 231.119842529 231.130096436 231.009979248 230.699920654 230.199920654 229.579803467 228.900115967 228.210174561 227.539764404 227.92980957 228.359985352 228.960083008 229.569946289 230.150024414 230.739868164 231.210083008 231.440063477 231.460083008 231.400024414 231.299926758 231.080200195 230.699829102 230.17980957 229.560180664 228.830200195 228.009887695 228.429763794 228.980056763 229.6900177 230.449783325 231.069900513 231.469802856 231.669998169 231.710037231 231.6900177 231.679763794 231.629959106 231.390213013 230.910232544 230.359939575 229.890213013 229.449783325 228.9400177 227.420135498 227.779998779 228.219940186 228.820037842 229.559783936 230.289764404 230.779998779 230.989959717 231.050018311 231.039764404 230.920135498 230.610076904 230.150115967 229.599822998 229.000213623 228.389862061 227.759979248 227.850219727 228.380004883 228.980102539 229.549926758 230.109985352 230.699829102 231.130004883 231.319946289 231.299926758 231.270141602 231.190063477 230.969848633 230.560180664 230.069946289 229.529907227 228.909790039 228.190063477 228.27986145 228.919998169 229.699783325 230.489822388 231.109939575 231.509841919 231.660232544 231.629959106 231.560134888 231.549880981 231.52986145 231.299880981 230.819900513 230.259841919 229.799880981 229.390213013 228.890213013 227.090057373 227.559783936 228.110076904 228.789764404 229.590057373 230.349822998 230.840057373 231.020233154 231.020233154 230.949920654 230.789764404 230.469940186 230.039764404 229.539764404 229.009979248 228.460174561 227.889862061 227.779907227 228.400024414 229.020141602 229.569946289 230.120239258 230.67980957 231.08996582 231.239868164 231.239868164 231.230102539 231.150024414 230.900024414 230.469848633 230.00012207 229.520141602 228.949829102 228.279907227 228.179763794 228.899978638 229.739822388 230.52986145 231.140213013 231.509841919 231.649978638 231.589920044 231.480056763 231.460037231 231.429763794 231.219802856 230.730056763 230.179763794 229.719802856 229.299880981 228.799880981 226.860076904 227.420135498 228.050018311 228.789764404 229.619842529 230.400115967 230.880096436 231.020233154 230.949920654 230.820037842 230.619842529 230.309783936 229.880096436 229.409881592 228.909881592 228.400115967 227.889862061 227.650024414 228.350219727 229.020141602 229.58996582 230.150024414 230.699829102 231.069946289 231.210083008 231.230102539 231.230102539 231.150024414 230.880004883 230.42980957 229.949829102 229.460083008 228.900024414 228.230102539 228.080154419 228.879959106 229.730056763 230.509841919 231.109939575 231.480056763 231.629959106 231.560134888 231.429763794 231.379959106 231.35017395 231.149978638 230.719802856 230.160232544 229.649978638 229.179763794 228.669998169 226.759979248 227.380096436 228.050018311 228.800018311 229.630096436 230.409881592 230.869842529 230.949920654 230.820037842 230.650115967 230.440155029 230.139862061 229.739959717 229.289764404 228.800018311 228.309783936 227.840057373 227.449829102 228.219848633 228.940063477 229.569946289 230.17980957 230.75012207 231.120239258 231.230102539 231.230102539 231.210083008 231.130004883 230.850219727 230.420043945 229.920043945 229.389770508 228.779907227 228.120239258 227.989822388 228.799880981 229.669998169 230.4400177 231.040115356 231.419998169 231.580154419 231.52986145 231.390213013 231.310134888 231.27986145 231.140213013 230.759841919 230.210037231 229.629959106 229.069900513 228.52986145 226.739959717 227.380096436 228.039764404 228.770233154 229.630096436 230.420135498 230.860076904 230.880096436 230.699920654 230.509979248 230.309783936 230.029998779 229.630096436 229.210174561 228.759979248 228.300018311 227.849822998 227.219848633 228.049926758 228.830200195 229.540161133 230.219848633 230.819946289 231.190063477 231.270141602 231.219848633 231.170043945 231.080200195 230.83996582 230.42980957 229.909790039 229.330200195 228.719848633 228.080200195 227.919998169 228.750076294 229.620193481 230.419998169 231.009841919 231.390213013 231.52986145 231.469802856 231.319900513 231.239822388 231.230056763 231.140213013 230.830154419 230.290115356 229.620193481 228.969802856 228.390213013 226.699920654 227.309783936 227.969940186 228.730194092 229.619842529 230.429901123 230.869842529 230.860076904 230.650115967 230.460174561 230.270233154 229.960174561 229.539764404 229.130096436 228.759979248 228.389862061 227.960174561 227.020141602 227.920043945 228.770141602 229.529907227 230.270141602 230.900024414 231.259887695 231.310180664 231.219848633 231.139770508 231.060180664 230.83996582 230.460083008 229.92980957 229.350219727 228.770141602 228.190063477 227.960037231 228.770095825 229.640213013 230.429763794 231.020095825 231.370193481 231.489822388 231.399978638 231.270095825 231.179763794 231.199783325 231.149978638 230.879959106 230.359939575 229.660232544 228.9400177 228.27986145 226.529998779 227.159881592 227.860076904 228.690155029 229.610076904 230.409881592 230.829803467 230.809783936 230.610076904 230.449920654 230.270233154 229.940155029 229.480194092 229.050018311 228.770233154 228.509979248 228.119842529 226.909790039 227.850219727 228.739868164 229.529907227 230.270141602 230.900024414 231.25012207 231.290161133 231.199829102 231.120239258 231.040161133 230.850219727 230.50012207 230.009887695 229.469848633 228.949829102 228.400024414 228.069900513 228.839920044 229.669998169 230.429763794 231.000076294 231.330154419 231.4400177 231.370193481 231.259841919 231.1900177 231.199783325 231.149978638 230.910232544 230.429763794 229.770095825 229.000076294 228.250076294 226.289764404 226.960174561 227.750213623 228.650115967 229.559783936 230.320037842 230.690155029 230.670135498 230.509979248 230.409881592 230.300018311 229.989959717 229.500213623 229.059783936 228.829803467 228.639862061 228.250213623 226.870239258 227.819946289 228.699829102 229.480102539 230.17980957 230.779907227 231.120239258 231.190063477 231.150024414 231.100219727 231.029907227 230.83996582 230.509887695 230.100219727 229.650024414 229.190063477 228.630004883 228.210037231 228.899978638 229.669998169 230.379959106 230.929763794 231.259841919 231.410232544 231.399978638 231.310134888 231.250076294 231.239822388 231.169998169 230.960037231 230.549880981 229.9400177 229.169998169 228.310134888 226.090057373 226.800018311 227.690155029 228.619842529 229.489959717 230.159881592 230.489959717 230.489959717 230.380096436 230.349822998 230.320037842 230.110076904 229.670135498 229.250213623 229.000213623 228.789764404 228.349822998 226.83996582 227.779907227 228.659790039 229.409790039 230.049926758 230.58996582 230.940063477 231.080200195 231.08996582 231.060180664 230.969848633 230.790161133 230.509887695 230.190063477 229.830200195 229.409790039 228.819946289 228.319900513 228.980056763 229.710037231 230.390213013 230.899978638 231.230056763 231.399978638 231.419998169 231.35017395 231.27986145 231.259841919 231.179763794 230.989822388 230.660232544 230.129959106 229.370193481 228.4400177 225.989959717 226.739959717 227.670135498 228.599822998 229.400115967 230.009979248 230.340057373 230.389862061 230.320037842 230.300018311 230.329803467 230.219940186 229.880096436 229.500213623 229.239959717 228.949920654 228.429901123 226.83996582 227.759887695 228.659790039 229.389770508 229.969848633 230.460083008 230.819946289 231.009887695 231.060180664 231.009887695 230.889770508 230.719848633 230.489868164 230.25012207 229.969848633 229.580200195 228.949829102 228.419998169 229.10017395 229.879959106 230.560134888 231.009841919 231.290115356 231.419998169 231.410232544 231.310134888 231.230056763 231.199783325 231.140213013 230.980056763 230.6900177 230.250076294 229.52986145 228.560134888 225.980194092 226.739959717 227.670135498 228.570037842 229.320037842 229.900115967 230.279998779 230.400115967 230.329803467 230.259979248 230.270233154 230.219940186 230.000213623 229.690155029 229.420135498 229.079803467 228.469940186 226.889770508 227.799926758 228.719848633 229.460083008 230.009887695 230.460083008 230.819946289 231.029907227 231.049926758 230.92980957 230.779907227 230.630004883 230.469848633 230.290161133 230.060180664 229.670043945 229.009887695 228.549880981 229.310134888 230.169998169 230.85017395 231.219802856 231.390213013 231.4400177 231.35017395 231.210037231 231.129959106 231.120193481 231.069900513 230.910232544 230.669998169 230.270095825 229.589920044 228.629959106 226.070037842 226.800018311 227.690155029 228.529998779 229.239959717 229.820037842 230.250213623 230.420135498 230.349822998 230.199920654 230.139862061 230.090057373 229.929901123 229.690155029 229.440155029 229.079803467 228.420135498 227.080200195 227.969848633 228.889770508 229.620239258 230.139770508 230.560180664 230.909790039 231.08996582 231.049926758 230.859985352 230.710083008 230.609985352 230.50012207 230.330200195 230.100219727 229.690063477 229.00012207 228.759841919 229.580154419 230.460037231 231.069900513 231.339920044 231.419998169 231.399978638 231.290115356 231.149978638 231.080154419 231.089920044 231.02986145 230.859939575 230.609939575 230.230056763 229.560134888 228.609939575 226.279998779 226.949920654 227.750213623 228.509979248 229.179901123 229.750213623 230.219940186 230.440155029 230.349822998 230.150115967 230.029998779 229.969940186 229.829803467 229.590057373 229.320037842 228.920135498 228.270233154 227.469848633 228.319946289 229.190063477 229.870239258 230.359985352 230.75012207 231.049926758 231.17980957 231.080200195 230.850219727 230.710083008 230.650024414 230.580200195 230.409790039 230.109985352 229.67980957 228.960083008 229.089920044 229.890213013 230.649978638 231.140213013 231.319900513 231.359939575 231.359939575 231.290115356 231.1900177 231.140213013 231.129959106 231.049880981 230.85017395 230.589920044 230.1900177 229.500076294 228.520095825 226.670135498 227.250213623 227.909881592 228.599822998 229.230194092 229.809783936 230.279998779 230.509979248 230.440155029 230.219940186 230.050018311 229.969940186 229.809783936 229.509979248 229.150115967 228.690155029 228.009979248 228.109985352 228.870239258 229.609985352 230.210083008 230.650024414 231.00012207 231.25012207 231.330200195 231.199829102 230.969848633 230.810180664 230.770141602 230.710083008 230.509887695 230.170043945 229.659790039 228.889770508 229.569900513 230.250076294 230.839920044 231.169998169 231.259841919 231.310134888 231.370193481 231.370193481 231.290115356 231.230056763 231.179763794 231.080154419 230.879959106 230.620193481 230.1900177 229.4400177 228.390213013 227.239959717 227.690155029 228.219940186 228.820037842 229.440155029 230.020233154 230.500213623 230.739959717 230.670135498 230.420135498 230.199920654 230.070037842 229.880096436 229.520233154 229.029998779 228.440155029 227.719940186 228.92980957 229.560180664 230.139770508 230.630004883 231.029907227 231.310180664 231.50012207 231.540161133 231.409790039 231.17980957 230.989868164 230.900024414 230.83996582 230.659790039 230.279907227 229.659790039 228.799926758 230.129959106 230.669998169 231.080154419 231.259841919 231.310134888 231.359939575 231.449783325 231.480056763 231.410232544 231.310134888 231.219802856 231.10017395 230.9400177 230.6900177 230.230056763 229.390213013 228.270095825 227.860076904 228.199920654 228.599822998 229.150115967 229.750213623 230.329803467 230.800018311 231.039764404 230.969940186 230.670135498 230.380096436 230.179901123 229.960174561 229.570037842 228.969940186 228.239959717 227.409881592 229.830200195 230.310180664 230.719848633 231.08996582 231.409790039 231.650024414 231.770141602 231.790161133 231.670043945 231.420043945 231.159790039 230.989868164 230.92980957 230.799926758 230.409790039 229.67980957 228.67980957 230.640213013 231.10017395 231.379959106 231.489822388 231.489822388 231.520095825 231.580154419 231.609939575 231.52986145 231.399978638 231.299880981 231.1900177 231.049880981 230.790115356 230.270095825 229.35017395 228.179763794 228.429901123 228.690155029 229.020233154 229.520233154 230.090057373 230.619842529 231.050018311 231.289764404 231.230194092 230.920135498 230.529998779 230.250213623 230.000213623 229.619842529 228.960174561 228.079803467 227.079803467 230.690063477 231.049926758 231.290161133 231.540161133 231.770141602 231.92980957 232.009887695 232.00012207 231.900024414 231.630004883 231.299926758 231.069946289 231.00012207 230.900024414 230.469848633 229.609985352 228.480102539 231.009841919 231.4400177 231.710037231 231.77986145 231.710037231 231.660232544 231.669998169 231.6900177 231.649978638 231.549880981 231.460037231 231.370193481 231.210037231 230.910232544 230.310134888 229.330154419 228.109939575 228.929901123 229.150115967 229.449920654 229.909881592 230.429901123 230.869842529 231.210174561 231.420135498 231.409881592 231.110076904 230.690155029 230.340057373 230.090057373 229.710174561 229.000213623 227.940155029 226.750213623 231.42980957 231.690063477 231.819946289 231.92980957 232.049926758 232.139770508 232.170043945 232.150024414 232.040161133 231.790161133 231.440063477 231.170043945 231.069946289 230.949829102 230.440063477 229.449829102 228.230102539 231.270095825 231.759841919 232.049880981 232.10017395 231.949783325 231.77986145 231.710037231 231.719802856 231.710037231 231.649978638 231.620193481 231.549880981 231.379959106 231.000076294 230.319900513 229.299880981 228.040115356 229.420135498 229.619842529 229.900115967 230.320037842 230.759979248 231.110076904 231.349822998 231.520233154 231.520233154 231.279998779 230.880096436 230.500213623 230.250213623 229.849822998 229.039764404 227.809783936 226.429901123 231.980102539 232.190063477 232.239868164 232.239868164 232.25012207 232.270141602 232.239868164 232.199829102 232.120239258 231.900024414 231.569946289 231.290161133 231.139770508 230.920043945 230.310180664 229.239868164 228.00012207 231.540115356 232.120193481 232.449783325 232.449783325 232.1900177 231.890213013 231.730056763 231.699783325 231.679763794 231.669998169 231.669998169 231.660232544 231.489822388 231.049880981 230.299880981 229.239822388 227.980056763 229.949920654 230.119842529 230.349822998 230.690155029 231.059783936 231.320037842 231.489959717 231.590057373 231.599822998 231.400115967 231.050018311 230.699920654 230.429901123 229.969940186 229.050018311 227.670135498 226.199920654 232.350219727 232.509887695 232.509887695 232.420043945 232.350219727 232.279907227 232.210083008 232.159790039 232.08996582 231.940063477 231.67980957 231.389770508 231.150024414 230.819946289 230.109985352 229.029907227 227.799926758 231.870193481 232.520095825 232.819900513 232.739822388 232.379959106 232.000076294 231.770095825 231.669998169 231.609939575 231.589920044 231.629959106 231.669998169 231.509841919 231.040115356 230.239822388 229.169998169 227.919998169 230.520233154 230.639862061 230.770233154 230.989959717 231.250213623 231.449920654 231.559783936 231.619842529 231.610076904 231.449920654 231.150115967 230.860076904 230.570037842 230.059783936 229.020233154 227.570037842 226.079803467 232.529907227 232.630004883 232.58996582 232.480102539 232.359985352 232.239868164 232.120239258 232.049926758 232.009887695 231.920043945 231.699829102 231.409790039 231.100219727 230.670043945 229.920043945 228.859985352 227.650024414 232.179763794 232.810134888 233.02986145 232.859939575 232.469802856 232.10017395 231.859939575 231.719802856 231.609939575 231.549880981 231.580154419 231.640213013 231.489822388 230.989822388 230.149978638 229.089920044 227.870193481 231.020233154 231.099822998 231.119842529 231.190155029 231.340057373 231.480194092 231.539764404 231.559783936 231.539764404 231.420135498 231.190155029 230.949920654 230.670135498 230.090057373 228.980194092 227.489959717 226.059783936 232.569946289 232.600219727 232.529907227 232.420043945 232.299926758 232.170043945 232.020141602 231.92980957 231.900024414 231.850219727 231.670043945 231.370239258 231.020141602 230.529907227 229.770141602 228.719848633 227.50012207 232.359939575 232.890213013 232.989822388 232.77986145 232.4400177 232.120193481 231.929763794 231.810134888 231.719802856 231.640213013 231.649978638 231.660232544 231.460037231 230.899978638 230.049880981 229.009841919 227.810134888 231.389862061 231.469940186 231.400115967 231.349822998 231.389862061 231.460174561 231.480194092 231.469940186 231.449920654 231.369842529 231.210174561 231.009979248 230.730194092 230.099822998 228.940155029 227.449920654 226.050018311 232.540161133 232.489868164 232.380004883 232.279907227 232.199829102 232.060180664 231.909790039 231.810180664 231.819946289 231.770141602 231.600219727 231.319946289 230.960083008 230.449829102 229.659790039 228.569946289 227.299926758 232.319900513 232.730056763 232.77986145 232.589920044 232.330154419 232.109939575 231.980056763 231.899978638 231.859939575 231.810134888 231.77986145 231.699783325 231.410232544 230.810134888 229.9400177 228.929763794 227.759841919 231.610076904 231.679901123 231.550018311 231.440155029 231.400115967 231.420135498 231.400115967 231.380096436 231.380096436 231.329803467 231.230194092 231.070037842 230.779998779 230.110076904 228.929901123 227.420135498 226.009979248 232.42980957 232.330200195 232.170043945 232.080200195 232.020141602 231.920043945 231.759887695 231.670043945 231.690063477 231.670043945 231.509887695 231.25012207 230.92980957 230.389770508 229.549926758 228.400024414 227.049926758 232.10017395 232.410232544 232.469802856 232.379959106 232.230056763 232.069900513 231.960037231 231.9400177 231.960037231 231.960037231 231.890213013 231.730056763 231.370193481 230.730056763 229.859939575 228.859939575 227.679763794 231.630096436 231.690155029 231.539764404 231.380096436 231.329803467 231.320037842 231.300018311 231.279998779 231.300018311 231.289764404 231.219940186 231.079803467 230.779998779 230.099822998 228.900115967 227.400115967 225.929901123 232.279907227 232.139770508 231.940063477 231.830200195 231.790161133 231.67980957 231.529907227 231.449829102 231.489868164 231.50012207 231.380004883 231.170043945 230.880004883 230.330200195 229.409790039 228.17980957 226.779907227 231.750076294 232.040115356 232.149978638 232.169998169 232.109939575 232.000076294 231.919998169 231.919998169 232.000076294 232.009841919 231.919998169 231.699783325 231.330154419 230.710037231 229.830154419 228.790115356 227.569900513 231.460174561 231.509979248 231.340057373 231.170135498 231.119842529 231.139862061 231.139862061 231.150115967 231.190155029 231.219940186 231.190155029 231.059783936 230.759979248 230.059783936 228.869842529 227.360076904 225.860076904 232.08996582 231.949829102 231.710083008 231.569946289 231.529907227 231.420043945 231.259887695 231.199829102 231.25012207 231.279907227 231.199829102 231.049926758 230.799926758 230.230102539 229.239868164 227.92980957 226.50012207 231.379959106 231.679763794 231.859939575 231.949783325 231.960037231 231.899978638 231.85017395 231.890213013 231.989822388 231.989822388 231.859939575 231.640213013 231.290115356 230.710037231 229.830154419 228.719802856 227.399978638 231.150115967 231.199920654 231.020233154 230.849822998 230.829803467 230.900115967 230.940155029 230.980194092 231.050018311 231.119842529 231.119842529 231.009979248 230.710174561 230.009979248 228.820037842 227.309783936 225.800018311 231.909790039 231.759887695 231.50012207 231.33996582 231.259887695 231.150024414 231.00012207 230.960083008 231.009887695 231.040161133 231.00012207 230.940063477 230.730102539 230.150024414 229.060180664 227.670043945 226.190063477 231.069900513 231.419998169 231.620193481 231.730056763 231.77986145 231.77986145 231.790115356 231.870193481 231.949783325 231.929763794 231.770095825 231.549880981 231.250076294 230.710037231 229.810134888 228.629959106 227.210037231 230.759979248 230.820037842 230.670135498 230.539764404 230.559783936 230.679901123 230.770233154 230.829803467 230.920135498 231.009979248 231.029998779 230.940155029 230.639862061 229.940155029 228.750213623 227.259979248 225.739959717 231.719848633 231.569946289 231.270141602 231.060180664 230.960083008 230.880004883 230.779907227 230.759887695 230.799926758 230.819946289 230.819946289 230.830200195 230.690063477 230.080200195 228.900024414 227.420043945 225.900024414 230.870193481 231.259841919 231.480056763 231.569900513 231.629959106 231.679763794 231.730056763 231.819900513 231.899978638 231.85017395 231.669998169 231.460037231 231.199783325 230.6900177 229.790115356 228.540115356 227.009841919 230.349822998 230.420135498 230.320037842 230.259979248 230.360076904 230.520233154 230.630096436 230.699920654 230.809783936 230.909881592 230.929901123 230.849822998 230.550018311 229.860076904 228.679901123 227.210174561 225.690155029 231.489868164 231.319946289 230.989868164 230.730102539 230.639770508 230.609985352 230.580200195 230.569946289 230.600219727 230.609985352 230.659790039 230.730102539 230.620239258 229.980102539 228.75012207 227.230102539 225.690063477 230.719802856 231.149978638 231.370193481 231.449783325 231.520095825 231.60017395 231.679763794 231.750076294 231.799880981 231.739822388 231.580154419 231.390213013 231.140213013 230.660232544 229.759841919 228.460037231 226.85017395 229.960174561 230.029998779 229.989959717 230.000213623 230.150115967 230.349822998 230.480194092 230.559783936 230.659881592 230.770233154 230.809783936 230.750213623 230.460174561 229.789764404 228.650115967 227.190155029 225.670135498 231.219848633 231.020141602 230.659790039 230.389770508 230.33996582 230.380004883 230.420043945 230.420043945 230.42980957 230.449829102 230.540161133 230.650024414 230.520141602 229.83996582 228.58996582 227.08996582 225.58996582 230.560134888 231.009841919 231.219802856 231.310134888 231.399978638 231.509841919 231.589920044 231.649978638 231.6900177 231.629959106 231.500076294 231.319900513 231.080154419 230.609939575 229.750076294 228.429763794 226.759841919 229.659881592 229.759979248 229.750213623 229.789764404 229.960174561 230.179901123 230.300018311 230.369842529 230.480194092 230.610076904 230.679901123 230.630096436 230.369842529 229.719940186 228.619842529 227.179901123 225.659881592 230.940063477 230.719848633 230.359985352 230.130004883 230.139770508 230.25012207 230.299926758 230.299926758 230.290161133 230.33996582 230.460083008 230.560180664 230.380004883 229.670043945 228.469848633 227.040161133 225.580200195 230.379959106 230.77986145 230.969802856 231.069900513 231.210037231 231.370193481 231.469802856 231.520095825 231.549880981 231.52986145 231.410232544 231.219802856 230.980056763 230.52986145 229.699783325 228.410232544 226.730056763 229.480194092 229.639862061 229.659881592 229.690155029 229.840057373 230.020233154 230.110076904 230.190155029 230.309783936 230.469940186 230.570037842 230.529998779 230.289764404 229.659881592 228.590057373 227.159881592 225.619842529 230.659790039 230.449829102 230.139770508 229.989868164 230.049926758 230.170043945 230.210083008 230.17980957 230.17980957 230.259887695 230.400024414 230.469848633 230.239868164 229.520141602 228.380004883 227.040161133 225.58996582 230.179763794 230.520095825 230.6900177 230.810134888 230.989822388 231.179763794 231.299880981 231.35017395 231.399978638 231.410232544 231.310134888 231.109939575 230.839920044 230.419998169 229.629959106 228.379959106 226.719802856 229.429901123 229.650115967 229.690155029 229.699920654 229.809783936 229.940155029 230.000213623 230.079803467 230.219940186 230.389862061 230.489959717 230.449920654 230.210174561 229.599822998 228.539764404 227.110076904 225.550018311 230.400024414 230.230102539 230.00012207 229.909790039 229.980102539 230.060180664 230.069946289 230.040161133 230.069946289 230.17980957 230.310180664 230.350219727 230.08996582 229.389770508 228.319946289 227.029907227 225.560180664 230.009841919 230.310134888 230.480056763 230.629959106 230.819900513 230.989822388 231.089920044 231.160232544 231.250076294 231.310134888 231.239822388 231.020095825 230.730056763 230.290115356 229.520095825 228.310134888 226.719802856 229.460174561 229.699920654 229.739959717 229.739959717 229.829803467 229.929901123 229.989959717 230.059783936 230.210174561 230.369842529 230.440155029 230.389862061 230.139862061 229.539764404 228.480194092 227.039764404 225.449920654 230.170043945 230.049926758 229.900024414 229.83996582 229.870239258 229.900024414 229.909790039 229.940063477 230.009887695 230.120239258 230.210083008 230.210083008 229.940063477 229.270141602 228.239868164 226.969848633 225.469848633 229.910232544 230.219802856 230.4400177 230.609939575 230.770095825 230.890213013 230.919998169 230.989822388 231.140213013 231.259841919 231.230056763 231.009841919 230.679763794 230.210037231 229.449783325 228.27986145 226.759841919 229.529998779 229.750213623 229.759979248 229.770233154 229.860076904 229.960174561 230.020233154 230.119842529 230.289764404 230.409881592 230.420135498 230.329803467 230.090057373 229.489959717 228.420135498 226.969940186 225.389862061 229.989868164 229.940063477 229.859985352 229.799926758 229.770141602 229.770141602 229.810180664 229.920043945 230.029907227 230.120239258 230.150024414 230.109985352 229.819946289 229.139770508 228.109985352 226.830200195 225.359985352 229.890213013 230.250076294 230.540115356 230.730056763 230.859939575 230.890213013 230.859939575 230.910232544 231.069900513 231.250076294 231.239822388 231.02986145 230.669998169 230.160232544 229.410232544 228.299880981 226.859939575 229.670135498 229.849822998 229.820037842 229.820037842 229.920135498 230.020233154 230.099822998 230.230194092 230.409881592 230.500213623 230.440155029 230.300018311 230.029998779 229.409881592 228.340057373 226.920135498 225.380096436 229.92980957 229.960083008 229.92980957 229.870239258 229.790161133 229.75012207 229.830200195 229.989868164 230.139770508 230.190063477 230.190063477 230.100219727 229.759887695 229.009887695 227.920043945 226.659790039 225.239868164 229.980056763 230.419998169 230.739822388 230.919998169 231.000076294 230.960037231 230.890213013 230.910232544 231.049880981 231.219802856 231.230056763 231.020095825 230.649978638 230.109939575 229.359939575 228.330154419 226.969802856 229.900115967 230.059783936 230.000213623 229.989959717 230.070037842 230.159881592 230.239959717 230.400115967 230.599822998 230.659881592 230.520233154 230.300018311 229.960174561 229.279998779 228.179901123 226.820037842 225.369842529 230.020141602 230.139770508 230.130004883 230.029907227 229.900024414 229.830200195 229.909790039 230.080200195 230.219848633 230.279907227 230.270141602 230.159790039 229.739868164 228.889770508 227.739868164 226.489868164 225.150024414 230.179763794 230.669998169 230.969802856 231.10017395 231.109939575 231.02986145 230.960037231 230.960037231 231.060134888 231.179763794 231.1900177 230.989822388 230.60017395 230.020095825 229.270095825 228.310134888 227.069900513 230.190155029 230.349822998 230.279998779 230.250213623 230.320037842 230.380096436 230.440155029 230.619842529 230.820037842 230.869842529 230.679901123 230.380096436 229.940155029 229.159881592 228.000213623 226.690155029 225.329803467 230.25012207 230.400024414 230.370239258 230.230102539 230.060180664 229.969848633 230.029907227 230.170043945 230.290161133 230.370239258 230.380004883 230.25012207 229.759887695 228.830200195 227.620239258 226.380004883 225.100219727 230.469802856 230.969802856 231.199783325 231.230056763 231.160232544 231.080154419 231.020095825 231.040115356 231.109939575 231.1900177 231.1900177 231.020095825 230.609939575 229.969802856 229.179763794 228.259841919 227.120193481 230.460174561 230.630096436 230.559783936 230.539764404 230.599822998 230.639862061 230.679901123 230.820037842 231.009979248 231.050018311 230.860076904 230.529998779 230.009979248 229.119842529 227.889862061 226.590057373 225.300018311 230.50012207 230.650024414 230.569946289 230.380004883 230.219848633 230.170043945 230.219848633 230.319946289 230.42980957 230.489868164 230.50012207 230.33996582 229.799926758 228.830200195 227.609985352 226.380004883 225.139770508 230.799880981 231.270095825 231.410232544 231.35017395 231.230056763 231.149978638 231.129959106 231.169998169 231.230056763 231.27986145 231.270095825 231.129959106 230.730056763 230.02986145 229.169998169 228.239822388 227.169998169 230.699920654 230.849822998 230.800018311 230.800018311 230.880096436 230.920135498 230.909881592 230.980194092 231.119842529 231.150115967 231.000213623 230.699920654 230.159881592 229.210174561 227.929901123 226.599822998 225.309783936 230.730102539 230.859985352 230.719848633 230.520141602 230.420043945 230.42980957 230.50012207 230.580200195 230.650024414 230.67980957 230.630004883 230.409790039 229.850219727 228.889770508 227.690063477 226.469848633 225.25012207 231.149978638 231.52986145 231.60017395 231.500076294 231.379959106 231.310134888 231.319900513 231.359939575 231.399978638 231.390213013 231.379959106 231.270095825 230.919998169 230.210037231 229.290115356 228.310134888 227.270095825 230.929901123 231.050018311 231.020233154 231.059783936 231.170135498 231.199920654 231.139862061 231.130096436 231.199920654 231.199920654 231.070037842 230.820037842 230.300018311 229.349822998 228.059783936 226.719940186 225.389862061 230.920043945 231.029907227 230.900024414 230.719848633 230.650024414 230.710083008 230.799926758 230.870239258 230.889770508 230.870239258 230.75012207 230.469848633 229.900024414 228.989868164 227.819946289 226.600219727 225.409790039 231.460037231 231.739822388 231.759841919 231.660232544 231.560134888 231.520095825 231.52986145 231.560134888 231.540115356 231.489822388 231.4400177 231.339920044 231.040115356 230.390213013 229.449783325 228.4400177 227.399978638 231.159881592 231.259979248 231.259979248 231.329803467 231.449920654 231.469940186 231.380096436 231.320037842 231.320037842 231.259979248 231.119842529 230.860076904 230.369842529 229.469940186 228.230194092 226.889862061 225.520233154 231.109985352 231.25012207 231.150024414 230.989868164 230.92980957 230.969848633 231.020141602 231.060180664 231.080200195 231.029907227 230.870239258 230.540161133 229.969848633 229.109985352 227.969848633 226.739868164 225.569946289 231.710037231 231.890213013 231.870193481 231.790115356 231.710037231 231.660232544 231.660232544 231.679763794 231.660232544 231.549880981 231.460037231 231.35017395 231.089920044 230.489822388 229.589920044 228.569900513 227.52986145 220.049789429 220.169906616 220.240219116 220.240219116 220.169906616 220.060043335 219.970199585 219.930160522 219.899887085 219.850082397 219.700180054 219.470199585 219.089828491 218.47996521 217.64012146 216.709945679 215.770004272 220.979919434 220.890075684 220.650085449 220.449890137 220.309997559 220.150085449 219.969909668 219.870056152 219.930114746 219.989929199 219.870056152 219.620056152 219.340026855 218.92010498 218.180114746 217.209899902 216.390075684 221.139938354 221.099899292 220.949996948 220.670211792 220.320114136 219.999801636 219.800094604 219.749801636 219.800094604 219.920211792 220.110153198 220.289840698 220.369918823 220.269821167 219.990036011 219.550094604 218.900192261 220.310043335 220.430160522 220.450180054 220.39012146 220.270004272 220.169906616 220.089828491 220.040023804 219.999984741 219.919906616 219.770004272 219.540023804 219.169906616 218.56980896 217.749984741 216.830062866 215.899887085 220.979919434 220.890075684 220.749938965 220.610046387 220.469909668 220.309997559 220.090026855 219.969909668 219.999938965 220.049987793 219.949890137 219.709899902 219.400085449 218.979919434 218.279968262 217.350036621 216.539978027 221.220016479 221.179977417 220.999801636 220.690231323 220.329879761 220.030075073 219.860153198 219.789840698 219.800094604 219.880172729 220.039840698 220.260055542 220.429977417 220.400192261 220.119918823 219.619918823 218.929977417 220.560043335 220.689926147 220.669906616 220.549789429 220.410140991 220.279769897 220.169906616 220.120101929 220.080062866 220.020004272 219.879867554 219.649887085 219.299789429 218.720199585 217.930160522 217.029769897 216.129867554 220.940124512 220.910095215 220.860046387 220.739929199 220.58001709 220.390075684 220.190124512 220.049987793 220.039978027 220.08001709 220.019958496 219.799987793 219.489929199 219.059997559 218.410095215 217.570007324 216.789978027 221.300094604 221.280075073 221.110153198 220.800094604 220.460250854 220.190231323 220.010055542 219.929977417 219.909957886 219.920211792 220.019821167 220.220016479 220.449996948 220.519821167 220.280075073 219.749801636 219.019821167 220.740219116 220.859848022 220.850082397 220.720199585 220.560043335 220.39012146 220.249984741 220.180160522 220.160140991 220.120101929 219.999984741 219.810043335 219.450180054 218.899887085 218.14012146 217.279769897 216.419906616 220.870056152 220.910095215 220.940124512 220.850036621 220.640075684 220.430114746 220.249938965 220.120056152 220.070007324 220.070007324 220.019958496 219.840026855 219.529968262 219.120056152 218.539978027 217.789978027 217.059997559 221.360153198 221.349899292 221.199996948 220.920211792 220.610153198 220.349899292 220.170211792 220.070114136 220.050094604 220.030075073 220.039840698 220.179977417 220.440231323 220.610153198 220.460250854 219.940231323 219.179977417 220.810043335 220.899887085 220.89012146 220.799789429 220.649887085 220.47996521 220.31980896 220.240219116 220.22996521 220.209945679 220.129867554 219.939926147 219.609848022 219.080062866 218.370101929 217.549789429 216.700180054 220.769958496 220.850036621 220.949890137 220.870056152 220.660095215 220.459899902 220.309997559 220.160095215 220.08001709 220.039978027 220.00994873 219.870056152 219.590026855 219.209899902 218.690124512 218.00994873 217.299987793 221.360153198 221.349899292 221.210250854 220.949996948 220.679977417 220.440231323 220.249801636 220.150192261 220.139938354 220.119918823 220.090133667 220.159957886 220.409957886 220.690231323 220.639938354 220.170211792 219.400192261 220.740219116 220.799789429 220.790023804 220.72996521 220.64012146 220.499984741 220.350082397 220.260238647 220.249984741 220.249984741 220.180160522 220.040023804 219.760238647 219.299789429 218.64012146 217.839828491 216.97996521 220.640075684 220.749938965 220.880065918 220.83001709 220.640075684 220.459899902 220.320007324 220.17010498 220.039978027 219.989929199 219.999938965 219.92010498 219.699890137 219.350036621 218.870056152 218.239929199 217.539978027 221.300094604 221.269821167 221.139938354 220.909957886 220.710250854 220.490036011 220.300094604 220.170211792 220.170211792 220.170211792 220.119918823 220.170211792 220.429977417 220.769821167 220.829879761 220.409957886 219.639938354 220.620101929 220.64012146 220.649887085 220.649887085 220.589828491 220.459945679 220.330062866 220.260238647 220.240219116 220.22996521 220.189926147 220.100082397 219.910140991 219.529769897 218.930160522 218.180160522 217.31980896 220.559997559 220.680114746 220.809997559 220.75994873 220.590026855 220.430114746 220.289978027 220.100036621 219.940124512 219.900085449 219.949890137 219.959899902 219.789978027 219.489929199 219.090026855 218.50994873 217.83001709 221.210250854 221.190231323 221.070114136 220.900192261 220.760055542 220.599899292 220.380172729 220.210250854 220.170211792 220.190231323 220.159957886 220.210250854 220.470016479 220.860153198 220.999801636 220.639938354 219.889938354 220.490219116 220.499984741 220.560043335 220.609848022 220.560043335 220.419906616 220.270004272 220.220199585 220.209945679 220.189926147 220.14012146 220.100082397 219.990219116 219.700180054 219.180160522 218.470199585 217.649887085 220.559997559 220.67010498 220.749938965 220.690124512 220.549987793 220.400085449 220.249938965 220.039978027 219.860046387 219.809997559 219.860046387 219.870056152 219.749938965 219.529968262 219.209899902 218.729919434 218.120056152 221.139938354 221.130172729 221.039840698 220.929977417 220.849899292 220.720016479 220.490036011 220.280075073 220.229782104 220.249801636 220.220016479 220.269821167 220.530075073 220.920211792 221.099899292 220.820114136 220.139938354 220.370101929 220.419906616 220.540023804 220.629867554 220.560043335 220.370101929 220.220199585 220.180160522 220.189926147 220.14012146 220.06980896 220.020004272 219.959945679 219.749984741 219.31980896 218.680160522 217.910140991 220.640075684 220.719909668 220.749938965 220.660095215 220.529968262 220.410095215 220.239929199 220.029968262 219.850036621 219.779968262 219.75994873 219.699890137 219.590026855 219.459899902 219.239929199 218.850036621 218.309997559 221.070114136 221.059860229 220.999801636 220.940231323 220.889938354 220.780075073 220.570114136 220.380172729 220.340133667 220.360153198 220.340133667 220.329879761 220.550094604 220.909957886 221.130172729 220.929977417 220.349899292 220.260238647 220.330062866 220.520004272 220.649887085 220.560043335 220.339828491 220.180160522 220.149887085 220.180160522 220.120101929 220.010238647 219.930160522 219.899887085 219.770004272 219.430160522 218.859848022 218.109848022 220.729919434 220.75994873 220.739929199 220.640075684 220.519958496 220.390075684 220.219909668 220.029968262 219.890075684 219.820007324 219.719909668 219.559997559 219.449890137 219.400085449 219.269958496 218.930114746 218.42010498 221.010055542 220.970016479 220.940231323 220.889938354 220.840133667 220.740036011 220.590133667 220.470016479 220.470016479 220.490036011 220.429977417 220.389938354 220.539840698 220.880172729 221.110153198 220.990036011 220.490036011 220.180160522 220.249984741 220.470199585 220.64012146 220.56980896 220.339828491 220.169906616 220.149887085 220.169906616 220.100082397 219.959945679 219.870101929 219.870101929 219.810043335 219.56980896 219.049789429 218.310043335 220.779968262 220.789978027 220.739929199 220.630065918 220.50994873 220.360046387 220.160095215 219.969909668 219.900085449 219.870056152 219.739929199 219.519958496 219.400085449 219.440124512 219.380065918 219.029968262 218.499938965 220.960250854 220.900192261 220.869918823 220.820114136 220.760055542 220.670211792 220.579879761 220.539840698 220.550094604 220.550094604 220.460250854 220.409957886 220.539840698 220.840133667 221.079879761 221.010055542 220.570114136 220.149887085 220.220199585 220.450180054 220.620101929 220.580062866 220.370101929 220.189926147 220.149887085 220.129867554 220.040023804 219.899887085 219.81980896 219.830062866 219.839828491 219.680160522 219.22996521 218.529769897 220.820007324 220.809997559 220.739929199 220.620056152 220.499938965 220.320007324 220.08001709 219.900085449 219.870056152 219.890075684 219.75994873 219.50994873 219.390075684 219.469909668 219.469909668 219.120056152 218.570007324 220.929977417 220.860153198 220.840133667 220.789840698 220.710250854 220.619918823 220.579879761 220.570114136 220.579879761 220.530075073 220.449996948 220.420211792 220.550094604 220.820114136 221.039840698 220.979782104 220.590133667 220.149887085 220.220199585 220.419906616 220.56980896 220.540023804 220.370101929 220.209945679 220.120101929 220.060043335 219.950180054 219.81980896 219.72996521 219.709945679 219.72996521 219.629867554 219.270004272 218.709945679 220.870056152 220.83001709 220.719909668 220.590026855 220.449890137 220.269958496 220.039978027 219.860046387 219.860046387 219.900085449 219.769958496 219.479919434 219.33001709 219.400085449 219.42010498 219.120056152 218.620056152 220.900192261 220.869918823 220.849899292 220.789840698 220.650192261 220.559860229 220.539840698 220.550094604 220.539840698 220.490036011 220.440231323 220.449996948 220.570114136 220.780075073 220.920211792 220.869918823 220.539840698 220.14012146 220.22996521 220.359848022 220.450180054 220.399887085 220.260238647 220.14012146 220.06980896 219.999984741 219.910140991 219.770004272 219.64012146 219.560043335 219.520004272 219.430160522 219.200180054 218.810043335 220.92010498 220.840026855 220.67010498 220.479919434 220.33001709 220.17010498 219.979919434 219.850036621 219.860046387 219.910095215 219.779968262 219.469909668 219.25994873 219.269958496 219.289978027 219.059997559 218.650085449 220.880172729 220.869918823 220.829879761 220.710250854 220.530075073 220.420211792 220.420211792 220.470016479 220.490036011 220.460250854 220.449996948 220.499801636 220.590133667 220.690231323 220.749801636 220.690231323 220.420211792 220.129867554 220.200180054 220.279769897 220.279769897 220.189926147 220.06980896 220.010238647 219.999984741 219.990219116 219.930160522 219.810043335 219.660140991 219.499984741 219.370101929 219.249984741 219.080062866 218.839828491 220.940124512 220.789978027 220.58001709 220.340026855 220.150085449 219.999938965 219.860046387 219.769958496 219.789978027 219.850036621 219.779968262 219.539978027 219.320007324 219.25994873 219.239929199 219.039978027 218.699890137 220.869918823 220.860153198 220.789840698 220.599899292 220.360153198 220.220016479 220.249801636 220.369918823 220.429977417 220.440231323 220.449996948 220.519821167 220.570114136 220.579879761 220.550094604 220.470016479 220.249801636 220.100082397 220.189926147 220.240219116 220.200180054 220.060043335 219.919906616 219.870101929 219.930160522 219.999984741 219.990219116 219.910140991 219.760238647 219.589828491 219.39012146 219.200180054 219.029769897 218.859848022 220.880065918 220.729919434 220.519958496 220.279968262 220.039978027 219.840026855 219.690124512 219.600036621 219.590026855 219.660095215 219.690124512 219.610046387 219.479919434 219.42010498 219.360046387 219.140075684 218.799987793 220.869918823 220.829879761 220.720016479 220.510055542 220.240036011 220.070114136 220.119918823 220.280075073 220.369918823 220.389938354 220.400192261 220.460250854 220.510055542 220.479782104 220.380172729 220.260055542 220.050094604 220.089828491 220.189926147 220.260238647 220.209945679 220.040023804 219.870101929 219.81980896 219.89012146 219.990219116 219.999984741 219.950180054 219.859848022 219.709945679 219.510238647 219.260238647 219.040023804 218.859848022 220.820007324 220.67010498 220.529968262 220.320007324 220.039978027 219.779968262 219.600036621 219.459899902 219.380065918 219.410095215 219.529968262 219.610046387 219.610046387 219.58001709 219.50994873 219.269958496 218.890075684 220.829879761 220.769821167 220.650192261 220.460250854 220.220016479 220.059860229 220.079879761 220.229782104 220.320114136 220.309860229 220.320114136 220.389938354 220.440231323 220.400192261 220.249801636 220.070114136 219.869918823 220.049789429 220.189926147 220.290023804 220.260238647 220.080062866 219.89012146 219.81980896 219.870101929 219.950180054 219.959945679 219.930160522 219.879867554 219.799789429 219.609848022 219.330062866 219.049789429 218.859848022 220.769958496 220.650085449 220.559997559 220.380065918 220.090026855 219.809997559 219.610046387 219.440124512 219.289978027 219.269958496 219.380065918 219.529968262 219.610046387 219.640075684 219.600036621 219.360046387 218.930114746 220.720016479 220.650192261 220.559860229 220.440231323 220.249801636 220.090133667 220.090133667 220.190231323 220.260055542 220.240036011 220.240036011 220.309860229 220.389938354 220.340133667 220.170211792 219.940231323 219.720016479 220.049789429 220.189926147 220.290023804 220.240219116 220.06980896 219.899887085 219.81980896 219.850082397 219.89012146 219.899887085 219.879867554 219.870101929 219.830062866 219.669906616 219.39012146 219.089828491 218.879867554 220.769958496 220.680114746 220.590026855 220.390075684 220.08001709 219.820007324 219.660095215 219.519958496 219.350036621 219.279968262 219.360046387 219.479919434 219.559997559 219.610046387 219.630065918 219.430114746 218.999938965 220.570114136 220.519821167 220.460250854 220.409957886 220.269821167 220.130172729 220.099899292 220.170211792 220.220016479 220.199996948 220.190231323 220.269821167 220.360153198 220.340133667 220.150192261 219.889938354 219.650192261 220.120101929 220.260238647 220.290023804 220.180160522 219.999984741 219.859848022 219.790023804 219.799789429 219.830062866 219.850082397 219.859848022 219.879867554 219.859848022 219.740219116 219.47996521 219.189926147 218.959945679 220.820007324 220.749938965 220.610046387 220.33001709 219.999938965 219.75994873 219.67010498 219.58001709 219.440124512 219.360046387 219.410095215 219.489929199 219.529968262 219.58001709 219.67010498 219.570007324 219.160095215 220.449996948 220.429977417 220.409957886 220.369918823 220.269821167 220.139938354 220.099899292 220.159957886 220.199996948 220.190231323 220.179977417 220.240036011 220.349899292 220.349899292 220.199996948 219.929977417 219.619918823 220.279769897 220.410140991 220.359848022 220.160140991 219.959945679 219.839828491 219.779769897 219.749984741 219.749984741 219.779769897 219.830062866 219.879867554 219.879867554 219.790023804 219.56980896 219.279769897 219.029769897 220.870056152 220.820007324 220.630065918 220.299987793 219.940124512 219.729919434 219.67010498 219.58001709 219.449890137 219.410095215 219.469909668 219.529968262 219.519958496 219.58001709 219.739929199 219.729919434 219.350036621 220.369918823 220.380172729 220.360153198 220.320114136 220.240036011 220.150192261 220.119918823 220.179977417 220.229782104 220.220016479 220.199996948 220.229782104 220.309860229 220.340133667 220.249801636 219.960250854 219.550094604 220.419906616 220.56980896 220.470199585 220.209945679 219.999984741 219.879867554 219.779769897 219.700180054 219.680160522 219.72996521 219.799789429 219.830062866 219.850082397 219.779769897 219.580062866 219.290023804 219.029769897 220.83001709 220.83001709 220.660095215 220.340026855 219.999938965 219.789978027 219.690124512 219.58001709 219.440124512 219.410095215 219.499938965 219.529968262 219.50994873 219.58001709 219.789978027 219.83001709 219.469909668 220.260055542 220.289840698 220.269821167 220.229782104 220.179977417 220.130172729 220.130172729 220.199996948 220.280075073 220.289840698 220.260055542 220.240036011 220.269821167 220.300094604 220.199996948 219.900192261 219.400192261 220.470199585 220.64012146 220.529769897 220.270004272 220.060043335 219.919906616 219.799789429 219.689926147 219.660140991 219.709945679 219.760238647 219.770004272 219.760238647 219.700180054 219.520004272 219.220199585 218.950180054 220.680114746 220.739929199 220.630065918 220.380065918 220.100036621 219.880065918 219.739929199 219.590026855 219.449890137 219.430114746 219.499938965 219.529968262 219.519958496 219.610046387 219.820007324 219.860046387 219.519958496 220.099899292 220.139938354 220.119918823 220.110153198 220.090133667 220.090133667 220.119918823 220.210250854 220.320114136 220.380172729 220.360153198 220.289840698 220.249801636 220.220016479 220.099899292 219.769821167 219.220016479 220.39012146 220.600082397 220.520004272 220.290023804 220.06980896 219.930160522 219.799789429 219.709945679 219.689926147 219.720199585 219.720199585 219.689926147 219.680160522 219.649887085 219.490219116 219.189926147 218.879867554 220.489929199 220.559997559 220.519958496 220.370056152 220.150085449 219.930114746 219.749938965 219.590026855 219.469909668 219.440124512 219.489929199 219.529968262 219.559997559 219.690124512 219.880065918 219.870056152 219.549987793 219.929977417 219.999801636 219.999801636 220.010055542 220.039840698 220.070114136 220.110153198 220.199996948 220.329879761 220.420211792 220.429977417 220.360153198 220.269821167 220.159957886 219.990036011 219.630172729 219.110153198 220.220199585 220.459945679 220.430160522 220.240219116 220.049789429 219.910140991 219.790023804 219.72996521 219.720199585 219.720199585 219.680160522 219.620101929 219.64012146 219.669906616 219.549789429 219.240219116 218.899887085 220.309997559 220.360046387 220.370056152 220.309997559 220.160095215 219.940124512 219.719909668 219.559997559 219.449890137 219.42010498 219.449890137 219.529968262 219.630065918 219.799987793 219.930114746 219.890075684 219.610046387 219.809860229 219.909957886 219.940231323 219.990036011 220.050094604 220.110153198 220.150192261 220.210250854 220.309860229 220.400192261 220.420211792 220.380172729 220.300094604 220.150192261 219.920211792 219.579879761 219.090133667 219.999984741 220.260238647 220.31980896 220.200180054 220.040023804 219.910140991 219.799789429 219.760238647 219.749984741 219.709945679 219.620101929 219.589828491 219.64012146 219.720199585 219.64012146 219.350082397 218.970199585 220.130065918 220.180114746 220.219909668 220.239929199 220.160095215 219.940124512 219.699890137 219.50994873 219.400085449 219.350036621 219.380065918 219.50994873 219.699890137 219.870056152 219.940124512 219.880065918 219.690124512 219.729782104 219.889938354 219.940231323 219.990036011 220.070114136 220.150192261 220.190231323 220.229782104 220.269821167 220.300094604 220.340133667 220.340133667 220.309860229 220.170211792 219.920211792 219.599899292 219.130172729 219.720199585 220.020004272 220.180160522 220.169906616 220.049789429 219.930160522 219.850082397 219.799789429 219.749984741 219.669906616 219.620101929 219.620101929 219.689926147 219.749984741 219.680160522 219.439926147 219.029769897 219.949890137 220.00994873 220.100036621 220.199890137 220.17010498 219.949890137 219.67010498 219.459899902 219.33001709 219.289978027 219.340026855 219.529968262 219.779968262 219.92010498 219.940124512 219.860046387 219.779968262 219.670211792 219.889938354 219.960250854 219.999801636 220.059860229 220.130172729 220.199996948 220.229782104 220.229782104 220.210250854 220.229782104 220.289840698 220.289840698 220.150192261 219.920211792 219.619918823 219.159957886 219.450180054 219.779769897 220.060043335 220.149887085 220.06980896 219.959945679 219.89012146 219.81980896 219.72996521 219.660140991 219.660140991 219.720199585 219.760238647 219.740219116 219.660140991 219.450180054 219.029769897 219.779968262 219.890075684 220.059997559 220.209899902 220.199890137 219.959899902 219.630065918 219.400085449 219.279968262 219.249938965 219.350036621 219.570007324 219.850036621 220.00994873 219.999938965 219.92010498 219.860046387 219.579879761 219.869918823 219.970016479 219.990036011 220.019821167 220.059860229 220.130172729 220.190231323 220.190231323 220.139938354 220.159957886 220.240036011 220.249801636 220.110153198 219.880172729 219.619918823 219.159957886 219.249984741 219.600082397 219.950180054 220.120101929 220.06980896 219.939926147 219.870101929 219.790023804 219.689926147 219.629867554 219.700180054 219.81980896 219.839828491 219.740219116 219.600082397 219.410140991 218.950180054 219.719909668 219.890075684 220.130065918 220.309997559 220.269958496 219.979919434 219.620056152 219.360046387 219.239929199 219.229919434 219.350036621 219.600036621 219.890075684 220.08001709 220.120056152 220.059997559 219.969909668 219.490036011 219.840133667 219.990036011 220.030075073 219.990036011 219.990036011 220.039840698 220.130172729 220.150192261 220.110153198 220.139938354 220.220016479 220.210250854 220.050094604 219.820114136 219.599899292 219.119918823 219.169906616 219.520004272 219.899887085 220.109848022 220.060043335 219.930160522 219.830062866 219.749984741 219.629867554 219.589828491 219.709945679 219.870101929 219.89012146 219.740219116 219.560043335 219.31980896 218.790023804 219.799987793 220.039978027 220.299987793 220.449890137 220.370056152 220.049987793 219.67010498 219.400085449 219.269958496 219.249938965 219.340026855 219.549987793 219.850036621 220.090026855 220.209899902 220.180114746 220.029968262 219.409957886 219.789840698 220.010055542 220.059860229 220.010055542 219.949996948 219.970016479 220.059860229 220.079879761 220.059860229 220.099899292 220.199996948 220.179977417 220.010055542 219.809860229 219.570114136 219.070114136 219.160140991 219.510238647 219.910140991 220.129867554 220.06980896 219.930160522 219.830062866 219.749984741 219.64012146 219.589828491 219.709945679 219.870101929 219.919906616 219.790023804 219.580062866 219.240219116 218.580062866 220.019958496 220.269958496 220.469909668 220.559997559 220.440124512 220.130065918 219.75994873 219.489929199 219.340026855 219.289978027 219.340026855 219.519958496 219.779968262 220.039978027 220.209899902 220.209899902 220.029968262 219.349899292 219.760055542 220.019821167 220.099899292 220.030075073 219.929977417 219.909957886 219.949996948 219.960250854 219.949996948 220.030075073 220.159957886 220.179977417 220.039840698 219.840133667 219.579879761 219.039840698 219.200180054 219.540023804 219.939926147 220.169906616 220.120101929 219.959945679 219.850082397 219.779769897 219.689926147 219.64012146 219.709945679 219.850082397 219.939926147 219.89012146 219.669906616 219.220199585 218.419906616 220.289978027 220.489929199 220.58001709 220.58001709 220.440124512 220.150085449 219.809997559 219.519958496 219.350036621 219.309997559 219.380065918 219.549987793 219.779968262 220.019958496 220.199890137 220.209899902 220.029968262 219.349899292 219.769821167 220.050094604 220.139938354 220.070114136 219.920211792 219.849899292 219.809860229 219.769821167 219.760055542 219.900192261 220.119918823 220.210250854 220.119918823 219.929977417 219.650192261 219.099899292 219.270004272 219.64012146 220.029769897 220.240219116 220.180160522 219.990219116 219.850082397 219.779769897 219.72996521 219.700180054 219.72996521 219.81980896 219.939926147 219.990219116 219.81980896 219.299789429 218.419906616 220.600036621 220.699890137 220.67010498 220.58001709 220.42010498 220.140075684 219.779968262 219.459899902 219.279968262 219.269958496 219.390075684 219.600036621 219.840026855 220.08001709 220.25994873 220.269958496 220.110046387 219.429977417 219.880172729 220.159957886 220.240036011 220.119918823 219.920211792 219.760055542 219.630172729 219.530075073 219.550094604 219.769821167 220.059860229 220.229782104 220.220016479 220.090133667 219.820114136 219.280075073 219.450180054 219.830062866 220.180160522 220.31980896 220.22996521 219.990219116 219.790023804 219.700180054 219.689926147 219.720199585 219.720199585 219.760238647 219.879867554 220.029769897 219.959945679 219.47996521 218.589828491 220.900085449 220.890075684 220.769958496 220.640075684 220.469909668 220.160095215 219.749938965 219.390075684 219.180114746 219.17010498 219.33001709 219.58001709 219.860046387 220.130065918 220.340026855 220.400085449 220.309997559 219.570114136 220.030075073 220.309860229 220.360153198 220.190231323 219.920211792 219.659957886 219.440231323 219.320114136 219.389938354 219.650192261 219.970016479 220.199996948 220.289840698 220.260055542 220.039840698 219.550094604 219.700180054 220.089828491 220.350082397 220.399887085 220.240219116 219.970199585 219.709945679 219.580062866 219.609848022 219.700180054 219.72996521 219.740219116 219.830062866 220.020004272 220.049789429 219.660140991 218.859848022 221.150085449 221.059997559 220.890075684 220.749938965 220.549987793 220.199890137 219.75994873 219.370056152 219.140075684 219.090026855 219.219909668 219.479919434 219.799987793 220.120056152 220.380065918 220.50994873 220.519958496 219.710250854 220.170211792 220.409957886 220.420211792 220.210250854 219.880172729 219.550094604 219.289840698 219.159957886 219.260055542 219.530075073 219.829879761 220.090133667 220.280075073 220.380172729 220.260055542 219.829879761 219.959945679 220.31980896 220.470199585 220.430160522 220.22996521 219.959945679 219.669906616 219.490219116 219.520004272 219.669906616 219.790023804 219.81980896 219.89012146 220.049789429 220.109848022 219.810043335 219.100082397 221.340026855 221.17010498 220.969909668 220.809997559 220.590026855 220.209899902 219.769958496 219.400085449 219.150085449 219.049987793 219.140075684 219.400085449 219.75994873 220.110046387 220.390075684 220.58001709 220.680114746 219.809860229 220.229782104 220.429977417 220.389938354 220.170211792 219.829879761 219.470016479 219.179977417 219.050094604 219.130172729 219.349899292 219.630172729 219.909957886 220.199996948 220.429977417 220.400192261 220.050094604 220.14012146 220.450180054 220.520004272 220.410140991 220.209945679 219.959945679 219.669906616 219.430160522 219.399887085 219.589828491 219.839828491 219.97996521 220.06980896 220.180160522 220.209945679 219.959945679 219.339828491 221.479919434 221.229919434 221.00994873 220.850036621 220.590026855 220.17010498 219.739929199 219.400085449 219.160095215 219.019958496 219.090026855 219.400085449 219.809997559 220.17010498 220.430114746 220.640075684 220.809997559 219.920211792 220.280075073 220.429977417 220.349899292 220.110153198 219.789840698 219.440231323 219.119918823 218.929977417 218.949996948 219.119918823 219.369918823 219.690231323 220.079879761 220.409957886 220.470016479 220.210250854 220.240219116 220.490219116 220.520004272 220.39012146 220.200180054 219.97996521 219.680160522 219.359848022 219.240219116 219.419906616 219.749984741 220.040023804 220.220199585 220.330062866 220.370101929 220.160140991 219.629867554 221.600036621 221.320007324 221.120056152 220.969909668 220.660095215 220.17010498 219.699890137 219.360046387 219.100036621 218.940124512 219.029968262 219.410095215 219.900085449 220.289978027 220.539978027 220.769958496 220.999938965 220.090133667 220.409957886 220.479782104 220.340133667 220.090133667 219.800094604 219.449996948 219.099899292 218.849899292 218.780075073 218.909957886 219.150192261 219.499801636 219.940231323 220.329879761 220.490036011 220.369918823 220.299789429 220.499984741 220.499984741 220.359848022 220.189926147 219.959945679 219.669906616 219.299789429 219.100082397 219.209945679 219.560043335 219.939926147 220.220199585 220.410140991 220.510238647 220.399887085 219.999984741 221.699890137 221.449890137 221.309997559 221.190124512 220.840026855 220.25994873 219.719909668 219.340026855 219.059997559 218.900085449 218.999938965 219.42010498 219.930114746 220.340026855 220.640075684 220.940124512 221.25994873 220.320114136 220.590133667 220.570114136 220.349899292 220.059860229 219.780075073 219.479782104 219.130172729 218.849899292 218.729782104 218.820114136 219.050094604 219.380172729 219.789840698 220.210250854 220.470016479 220.490036011 220.359848022 220.520004272 220.499984741 220.350082397 220.160140991 219.919906616 219.620101929 219.279769897 219.060043335 219.089828491 219.379867554 219.760238647 220.089828491 220.350082397 220.549789429 220.600082397 220.370101929 221.799987793 221.570007324 221.499938965 221.410095215 221.039978027 220.390075684 219.75994873 219.340026855 219.08001709 218.959899902 219.090026855 219.459899902 219.910095215 220.299987793 220.690124512 221.110046387 221.529968262 220.579879761 220.769821167 220.659957886 220.349899292 220.010055542 219.749801636 219.490036011 219.199996948 218.929977417 218.820114136 218.909957886 219.090133667 219.349899292 219.679977417 220.070114136 220.409957886 220.570114136 220.419906616 220.56980896 220.540023804 220.379867554 220.149887085 219.89012146 219.609848022 219.31980896 219.120101929 219.100082397 219.279769897 219.580062866 219.910140991 220.22996521 220.510238647 220.700180054 220.660140991 221.890075684 221.690124512 221.630065918 221.539978027 221.140075684 220.459899902 219.789978027 219.350036621 219.130065918 219.100036621 219.249938965 219.559997559 219.900085449 220.25994873 220.699890137 221.199890137 221.680114746 220.769821167 220.889938354 220.720016479 220.349899292 219.990036011 219.720016479 219.499801636 219.260055542 219.019821167 218.920211792 218.999801636 219.159957886 219.349899292 219.599899292 219.949996948 220.309860229 220.570114136 220.490219116 220.64012146 220.64012146 220.47996521 220.209945679 219.910140991 219.620101929 219.359848022 219.200180054 219.14012146 219.220199585 219.439926147 219.760238647 220.109848022 220.439926147 220.709945679 220.830062866 222.00994873 221.820007324 221.729919434 221.58001709 221.17010498 220.519958496 219.850036621 219.390075684 219.180114746 219.199890137 219.400085449 219.680114746 219.959899902 220.269958496 220.709899902 221.229919434 221.719909668 220.929977417 221.010055542 220.820114136 220.449996948 220.059860229 219.760055542 219.519821167 219.260055542 219.019821167 218.900192261 218.970016479 219.130172729 219.320114136 219.559860229 219.869918823 220.229782104 220.530075073 220.580062866 220.770004272 220.779769897 220.620101929 220.339828491 219.990219116 219.669906616 219.419906616 219.240219116 219.149887085 219.160140991 219.330062866 219.660140991 220.049789429 220.399887085 220.669906616 220.879867554 222.160095215 221.989929199 221.840026855 221.600036621 221.180114746 220.610046387 220.029968262 219.570007324 219.289978027 219.269958496 219.479919434 219.75994873 220.029968262 220.320007324 220.729919434 221.199890137 221.67010498 221.079879761 221.139938354 220.970016479 220.619918823 220.199996948 219.840133667 219.550094604 219.260055542 218.979782104 218.829879761 218.880172729 219.059860229 219.300094604 219.559860229 219.860153198 220.179977417 220.510055542 220.689926147 220.919906616 220.939926147 220.749984741 220.450180054 220.080062866 219.72996521 219.450180054 219.279769897 219.169906616 219.160140991 219.299789429 219.64012146 220.060043335 220.399887085 220.629867554 220.850082397 222.309997559 222.190124512 221.979919434 221.640075684 221.180114746 220.729919434 220.309997559 219.890075684 219.539978027 219.42010498 219.549987793 219.789978027 220.070007324 220.370056152 220.739929199 221.140075684 221.590026855 221.249801636 221.300094604 221.139938354 220.789840698 220.329879761 219.920211792 219.590133667 219.300094604 219.039840698 218.900192261 218.949996948 219.130172729 219.369918823 219.619918823 219.880172729 220.170211792 220.510055542 220.81980896 221.060043335 221.049789429 220.850082397 220.520004272 220.14012146 219.749984741 219.490219116 219.339828491 219.270004272 219.270004272 219.399887085 219.720199585 220.14012146 220.439926147 220.600082397 220.779769897 222.469909668 222.400085449 222.150085449 221.699890137 221.190124512 220.799987793 220.499938965 220.209899902 219.880065918 219.680114746 219.699890137 219.880065918 220.110046387 220.400085449 220.729919434 221.08001709 221.50994873 221.460250854 221.470016479 221.300094604 220.929977417 220.429977417 219.979782104 219.639938354 219.389938354 219.220016479 219.179977417 219.260055542 219.420211792 219.590133667 219.760055542 219.929977417 220.150192261 220.510055542 220.930160522 221.160140991 221.109848022 220.899887085 220.580062866 220.180160522 219.790023804 219.499984741 219.39012146 219.410140991 219.459945679 219.580062866 219.859848022 220.240219116 220.510238647 220.609848022 220.720199585 222.630065918 222.570007324 222.320007324 221.820007324 221.229919434 220.799987793 220.549987793 220.350036621 220.110046387 219.92010498 219.890075684 220.00994873 220.199890137 220.469909668 220.769958496 221.070007324 221.449890137 221.670211792 221.639938354 221.429977417 221.050094604 220.539840698 220.059860229 219.699996948 219.479782104 219.400192261 219.479782104 219.630172729 219.760055542 219.840133667 219.909957886 219.999801636 220.159957886 220.490036011 220.990219116 221.189926147 221.120101929 220.950180054 220.680160522 220.299789429 219.859848022 219.540023804 219.439926147 219.510238647 219.609848022 219.740219116 219.97996521 220.330062866 220.600082397 220.680160522 220.740219116 222.729919434 222.699890137 222.489929199 221.989929199 221.360046387 220.820007324 220.50994873 220.320007324 220.130065918 219.999938965 219.989929199 220.08001709 220.269958496 220.539978027 220.860046387 221.130065918 221.430114746 221.869918823 221.800094604 221.570114136 221.170211792 220.679977417 220.190231323 219.800094604 219.550094604 219.499801636 219.639938354 219.840133667 219.949996948 219.979782104 220.010055542 220.079879761 220.199996948 220.470016479 221.010238647 221.169906616 221.109848022 220.990219116 220.799789429 220.450180054 219.999984741 219.629867554 219.499984741 219.56980896 219.680160522 219.810043335 220.029769897 220.370101929 220.680160522 220.799789429 220.81980896 222.769958496 222.729919434 222.559997559 222.130065918 221.50994873 220.92010498 220.50994873 220.269958496 220.08001709 219.969909668 219.949890137 220.059997559 220.269958496 220.58001709 220.930114746 221.229919434 221.479919434 222.059860229 221.940231323 221.670211792 221.269821167 220.800094604 220.340133667 219.949996948 219.670211792 219.570114136 219.699996948 219.880172729 219.979782104 219.999801636 220.050094604 220.159957886 220.269821167 220.470016479 221.049789429 221.189926147 221.109848022 221.010238647 220.859848022 220.56980896 220.160140991 219.799789429 219.64012146 219.649887085 219.72996521 219.850082397 220.049789429 220.399887085 220.749984741 220.930160522 220.959945679 222.749938965 222.690124512 222.519958496 222.140075684 221.590026855 221.00994873 220.590026855 220.320007324 220.130065918 219.979919434 219.940124512 220.00994873 220.219909668 220.559997559 220.979919434 221.33001709 221.600036621 222.210250854 222.079879761 221.749801636 221.309860229 220.849899292 220.440231323 220.130172729 219.889938354 219.780075073 219.840133667 219.949996948 219.999801636 219.999801636 220.090133667 220.229782104 220.360153198 220.519821167 221.160140991 221.299789429 221.169906616 221.020004272 220.870101929 220.620101929 220.279769897 219.970199585 219.799789429 219.770004272 219.81980896 219.939926147 220.129867554 220.450180054 220.810043335 221.029769897 221.100082397 222.709899902 222.650085449 222.449890137 222.100036621 221.600036621 221.08001709 220.690124512 220.469909668 220.320007324 220.160095215 220.070007324 220.090026855 220.25994873 220.559997559 220.979919434 221.400085449 221.739929199 222.320114136 222.190231323 221.829879761 221.329879761 220.860153198 220.530075073 220.320114136 220.170211792 220.079879761 220.099899292 220.139938354 220.150192261 220.139938354 220.190231323 220.320114136 220.440231323 220.570114136 221.359848022 221.499984741 221.310043335 221.080062866 220.89012146 220.669906616 220.379867554 220.120101929 219.950180054 219.89012146 219.959945679 220.109848022 220.310043335 220.56980896 220.859848022 221.089828491 221.200180054 222.699890137 222.67010498 222.469909668 222.130065918 221.67010498 221.17010498 220.809997559 220.630065918 220.519958496 220.410095215 220.299987793 220.309997559 220.42010498 220.640075684 220.999938965 221.430114746 221.860046387 222.349899292 222.249801636 221.900192261 221.389938354 220.929977417 220.639938354 220.519821167 220.420211792 220.329879761 220.320114136 220.360153198 220.400192261 220.389938354 220.380172729 220.429977417 220.499801636 220.610153198 221.600082397 221.720199585 221.470199585 221.200180054 220.999984741 220.799789429 220.520004272 220.249984741 220.049789429 219.990219116 220.100082397 220.330062866 220.560043335 220.740219116 220.950180054 221.14012146 221.279769897 222.610046387 222.640075684 222.519958496 222.269958496 221.860046387 221.360046387 220.940124512 220.719909668 220.640075684 220.58001709 220.539978027 220.559997559 220.650085449 220.789978027 221.049987793 221.449890137 221.930114746 222.300094604 222.220016479 221.920211792 221.479782104 221.099899292 220.849899292 220.720016479 220.579879761 220.440231323 220.400192261 220.499801636 220.619918823 220.659957886 220.610153198 220.559860229 220.539840698 220.639938354 221.799789429 221.870101929 221.589828491 221.31980896 221.149887085 220.970199585 220.689926147 220.370101929 220.14012146 220.100082397 220.270004272 220.549789429 220.790023804 220.919906616 221.029769897 221.189926147 221.339828491 222.370056152 222.469909668 222.469909668 222.360046387 222.049987793 221.559997559 221.090026855 220.809997559 220.729919434 220.699890137 220.719909668 220.769958496 220.860046387 220.949890137 221.130065918 221.479919434 221.959899902 222.190231323 222.110153198 221.880172729 221.559860229 221.280075073 221.079879761 220.920211792 220.690231323 220.479782104 220.420211792 220.570114136 220.800094604 220.889938354 220.800094604 220.659957886 220.590133667 220.650192261 221.950180054 221.930160522 221.629867554 221.39012146 221.270004272 221.080062866 220.779769897 220.439926147 220.22996521 220.220199585 220.430160522 220.72996521 220.939926147 221.010238647 221.06980896 221.220199585 221.399887085 222.019958496 222.190124512 222.299987793 222.299987793 222.070007324 221.640075684 221.180114746 220.910095215 220.840026855 220.840026855 220.870056152 220.930114746 221.00994873 221.08001709 221.219909668 221.529968262 221.999938965 222.099899292 221.999801636 221.820114136 221.610153198 221.409957886 221.220016479 221.019821167 220.769821167 220.550094604 220.519821167 220.710250854 220.979782104 221.079879761 220.949996948 220.740036011 220.630172729 220.670211792 222.060043335 221.970199585 221.660140991 221.439926147 221.310043335 221.080062866 220.740219116 220.430160522 220.299789429 220.370101929 220.609848022 220.870101929 221.020004272 221.020004272 221.049789429 221.209945679 221.439926147 221.709899902 221.930114746 222.100036621 222.140075684 221.959899902 221.58001709 221.209899902 221.019958496 220.989929199 221.029968262 221.049987793 221.08001709 221.130065918 221.160095215 221.299987793 221.610046387 222.059997559 222.030075073 221.949996948 221.829879761 221.670211792 221.479782104 221.249801636 221.030075073 220.809860229 220.679977417 220.710250854 220.940231323 221.190231323 221.240036011 221.050094604 220.809860229 220.679977417 220.699996948 222.149887085 222.029769897 221.72996521 221.499984741 221.310043335 220.999984741 220.620101929 220.379867554 220.359848022 220.529769897 220.779769897 220.999984741 221.089828491 221.040023804 221.029769897 221.209945679 221.470199585 221.499938965 221.769958496 221.969909668 222.00994873 221.820007324 221.489929199 221.209899902 221.090026855 221.110046387 221.17010498 221.219909668 221.239929199 221.229919434 221.239929199 221.360046387 221.67010498 222.120056152 221.940231323 221.909957886 221.880172729 221.760055542 221.519821167 221.220016479 220.979782104 220.840133667 220.820114136 220.929977417 221.170211792 221.369918823 221.349899292 221.119918823 220.860153198 220.740036011 220.729782104 222.240219116 222.06980896 221.790023804 221.549789429 221.299789429 220.919906616 220.549789429 220.370101929 220.439926147 220.669906616 220.930160522 221.129867554 221.189926147 221.109848022 221.06980896 221.22996521 221.520004272 221.33001709 221.620056152 221.870056152 221.92010498 221.75994873 221.479919434 221.229919434 221.130065918 221.130065918 221.209899902 221.309997559 221.360046387 221.340026855 221.299987793 221.400085449 221.699890137 222.150085449 221.809860229 221.849899292 221.889938354 221.800094604 221.530075073 221.199996948 220.979782104 220.900192261 220.949996948 221.099899292 221.309860229 221.449996948 221.389938354 221.130172729 220.889938354 220.789840698 220.789840698 222.290023804 222.06980896 221.779769897 221.540023804 221.260238647 220.89012146 220.560043335 220.419906616 220.510238647 220.749984741 221.010238647 221.209945679 221.270004272 221.200180054 221.129867554 221.270004272 221.560043335 221.150085449 221.449890137 221.709899902 221.809997559 221.709899902 221.489929199 221.279968262 221.140075684 221.120056152 221.199890137 221.340026855 221.449890137 221.440124512 221.360046387 221.42010498 221.709899902 222.17010498 221.659957886 221.729782104 221.820114136 221.749801636 221.490036011 221.179977417 221.010055542 220.999801636 221.070114136 221.199996948 221.360153198 221.460250854 221.360153198 221.099899292 220.889938354 220.809860229 220.849899292 222.310043335 222.049789429 221.749984741 221.510238647 221.240219116 220.919906616 220.620101929 220.499984741 220.560043335 220.749984741 220.97996521 221.180160522 221.290023804 221.249984741 221.169906616 221.270004272 221.560043335 221.019958496 221.279968262 221.529968262 221.650085449 221.620056152 221.489929199 221.299987793 221.160095215 221.120056152 221.199890137 221.380065918 221.519958496 221.519958496 221.42010498 221.440124512 221.699890137 222.17010498 221.590133667 221.670211792 221.749801636 221.679977417 221.409957886 221.139938354 221.019821167 221.059860229 221.150192261 221.249801636 221.360153198 221.429977417 221.329879761 221.070114136 220.869918823 220.829879761 220.900192261 222.310043335 222.020004272 221.760238647 221.549789429 221.310043335 221.020004272 220.749984741 220.600082397 220.620101929 220.760238647 220.939926147 221.120101929 221.249984741 221.240219116 221.180160522 221.249984741 221.529769897 220.989929199 221.229919434 221.410095215 221.50994873 221.519958496 221.430114746 221.289978027 221.17010498 221.150085449 221.269958496 221.440124512 221.559997559 221.549987793 221.459899902 221.459899902 221.699890137 222.180114746 221.619918823 221.729782104 221.800094604 221.679977417 221.400192261 221.110153198 220.999801636 221.050094604 221.159957886 221.249801636 221.360153198 221.420211792 221.320114136 221.059860229 220.849899292 220.820114136 220.929977417 222.290023804 222.040023804 221.859848022 221.700180054 221.490219116 221.220199585 220.939926147 220.760238647 220.760238647 220.870101929 221.010238647 221.129867554 221.22996521 221.260238647 221.22996521 221.279769897 221.520004272 221.039978027 221.249938965 221.380065918 221.449890137 221.459899902 221.380065918 221.25994873 221.17010498 221.199890137 221.350036621 221.499938965 221.570007324 221.539978027 221.469909668 221.499938965 221.709899902 222.180114746 221.710250854 221.849899292 221.929977417 221.789840698 221.479782104 221.150192261 220.990036011 221.010055542 221.110153198 221.229782104 221.349899292 221.409957886 221.320114136 221.059860229 220.829879761 220.800094604 220.940231323 222.220199585 222.089828491 222.010238647 221.910140991 221.709945679 221.450180054 221.169906616 220.97996521 220.970199585 221.089828491 221.189926147 221.260238647 221.299789429 221.339828491 221.359848022 221.410140991 221.609848022 221.039978027 221.249938965 221.380065918 221.459899902 221.469909668 221.390075684 221.249938965 221.160095215 221.239929199 221.400085449 221.529968262 221.539978027 221.499938965 221.469909668 221.539978027 221.739929199 222.180114746 221.749801636 221.949996948 222.039840698 221.909957886 221.590133667 221.249801636 221.030075073 220.999801636 221.090133667 221.199996948 221.329879761 221.389938354 221.300094604 221.050094604 220.800094604 220.760055542 220.929977417 222.160140991 222.14012146 222.160140991 222.080062866 221.89012146 221.64012146 221.39012146 221.200180054 221.189926147 221.310043335 221.410140991 221.419906616 221.430160522 221.490219116 221.560043335 221.64012146 221.790023804 220.969909668 221.190124512 221.380065918 221.499938965 221.549987793 221.449890137 221.269958496 221.17010498 221.249938965 221.440124512 221.539978027 221.50994873 221.440124512 221.459899902 221.570007324 221.799987793 222.209899902 221.749801636 221.970016479 222.030075073 221.900192261 221.639938354 221.340133667 221.130172729 221.050094604 221.090133667 221.190231323 221.300094604 221.349899292 221.260055542 221.019821167 220.769821167 220.729782104 220.929977417 222.109848022 222.200180054 222.279769897 222.189926147 221.97996521 221.760238647 221.540023804 221.379867554 221.350082397 221.450180054 221.529769897 221.520004272 221.529769897 221.629867554 221.760238647 221.870101929 221.990219116 220.910095215 221.190124512 221.440124512 221.620056152 221.660095215 221.529968262 221.33001709 221.180114746 221.269958496 221.469909668 221.559997559 221.489929199 221.400085449 221.440124512 221.610046387 221.860046387 222.249938965 221.729782104 221.929977417 221.940231323 221.800094604 221.599899292 221.400192261 221.229782104 221.119918823 221.110153198 221.170211792 221.280075073 221.320114136 221.240036011 221.010055542 220.760055542 220.720016479 220.949996948 222.06980896 222.270004272 222.399887085 222.279769897 222.040023804 221.839828491 221.660140991 221.499984741 221.459945679 221.520004272 221.560043335 221.560043335 221.589828491 221.740219116 221.899887085 222.020004272 222.149887085 220.910095215 221.279968262 221.58001709 221.749938965 221.75994873 221.610046387 221.390075684 221.239929199 221.309997559 221.479919434 221.559997559 221.469909668 221.360046387 221.42010498 221.620056152 221.910095215 222.289978027 221.720016479 221.889938354 221.860153198 221.699996948 221.570114136 221.449996948 221.300094604 221.159957886 221.110153198 221.179977417 221.289840698 221.349899292 221.269821167 221.030075073 220.800094604 220.780075073 221.010055542 222.049789429 222.339828491 222.490219116 222.359848022 222.109848022 221.930160522 221.770004272 221.629867554 221.560043335 221.56980896 221.580062866 221.580062866 221.649887085 221.81980896 221.999984741 222.120101929 222.249984741 220.930114746 221.390075684 221.699890137 221.83001709 221.789978027 221.640075684 221.449890137 221.33001709 221.360046387 221.489929199 221.539978027 221.449890137 221.350036621 221.410095215 221.650085449 221.959899902 222.350036621 221.710250854 221.889938354 221.829879761 221.670211792 221.579879761 221.490036011 221.329879761 221.150192261 221.099899292 221.199996948 221.340133667 221.389938354 221.300094604 221.070114136 220.860153198 220.840133667 221.059860229 222.049789429 222.39012146 222.560043335 222.430160522 222.200180054 222.020004272 221.879867554 221.740219116 221.660140991 221.64012146 221.620101929 221.620101929 221.709945679 221.89012146 222.060043335 222.189926147 222.350082397 220.910095215 221.400085449 221.699890137 221.769958496 221.719909668 221.620056152 221.50994873 221.42010498 221.430114746 221.50994873 221.529968262 221.459899902 221.380065918 221.440124512 221.67010498 222.00994873 222.410095215 221.699996948 221.900192261 221.849899292 221.690231323 221.590133667 221.499801636 221.320114136 221.150192261 221.110153198 221.249801636 221.380172729 221.400192261 221.289840698 221.090133667 220.909957886 220.889938354 221.090133667 222.06980896 222.410140991 222.56980896 222.459945679 222.249984741 222.080062866 221.930160522 221.81980896 221.760238647 221.740219116 221.709945679 221.680160522 221.760238647 221.939926147 222.120101929 222.290023804 222.490219116 220.890075684 221.340026855 221.58001709 221.620056152 221.600036621 221.590026855 221.559997559 221.50994873 221.489929199 221.539978027 221.549987793 221.499938965 221.440124512 221.50994873 221.729919434 222.049987793 222.479919434 221.710250854 221.920211792 221.849899292 221.690231323 221.559860229 221.449996948 221.289840698 221.150192261 221.159957886 221.280075073 221.389938354 221.349899292 221.229782104 221.070114136 220.940231323 220.949996948 221.099899292 222.089828491 222.39012146 222.510238647 222.419906616 222.22996521 222.06980896 221.930160522 221.850082397 221.850082397 221.870101929 221.81980896 221.760238647 221.799789429 221.970199585 222.189926147 222.410140991 222.680160522 220.890075684 221.289978027 221.479919434 221.529968262 221.570007324 221.610046387 221.610046387 221.570007324 221.549987793 221.600036621 221.620056152 221.58001709 221.529968262 221.58001709 221.769958496 222.090026855 222.519958496 221.679977417 221.920211792 221.860153198 221.659957886 221.490036011 221.369918823 221.269821167 221.190231323 221.229782104 221.320114136 221.349899292 221.269821167 221.150192261 221.050094604 220.999801636 221.010055542 221.130172729 222.049789429 222.31980896 222.419906616 222.31980896 222.160140991 222.010238647 221.899887085 221.879867554 221.950180054 221.999984741 221.959945679 221.850082397 221.850082397 222.010238647 222.260238647 222.549789429 222.879867554 220.92010498 221.309997559 221.489929199 221.570007324 221.640075684 221.690124512 221.67010498 221.610046387 221.620056152 221.680114746 221.719909668 221.67010498 221.620056152 221.650085449 221.820007324 222.120056152 222.529968262 221.599899292 221.869918823 221.829879761 221.619918823 221.400192261 221.289840698 221.260055542 221.249801636 221.269821167 221.309860229 221.300094604 221.229782104 221.139938354 221.070114136 221.050094604 221.079879761 221.179977417 221.959945679 222.220199585 222.299789429 222.220199585 222.080062866 221.970199585 221.899887085 221.919906616 222.029769897 222.100082397 222.040023804 221.919906616 221.899887085 222.06980896 222.359848022 222.700180054 223.06980896 220.940124512 221.350036621 221.549987793 221.650085449 221.749938965 221.789978027 221.739929199 221.67010498 221.699890137 221.75994873 221.779968262 221.719909668 221.67010498 221.699890137 221.870056152 222.150085449 222.539978027 221.420211792 221.729782104 221.749801636 221.539840698 221.309860229 221.210250854 221.229782104 221.269821167 221.269821167 221.249801636 221.260055542 221.220016479 221.159957886 221.099899292 221.090133667 221.139938354 221.249801636 221.850082397 222.109848022 222.189926147 222.120101929 222.010238647 221.939926147 221.930160522 221.959945679 222.029769897 222.080062866 222.020004272 221.939926147 221.970199585 222.189926147 222.529769897 222.89012146 223.249984741 220.900085449 221.33001709 221.570007324 221.709899902 221.809997559 221.850036621 221.799987793 221.769958496 221.789978027 221.83001709 221.789978027 221.709899902 221.660095215 221.729919434 221.900085449 222.190124512 222.559997559 221.210250854 221.550094604 221.639938354 221.440231323 221.210250854 221.130172729 221.199996948 221.249801636 221.220016479 221.190231323 221.210250854 221.229782104 221.190231323 221.119918823 221.110153198 221.190231323 221.329879761 221.72996521 221.990219116 222.080062866 222.049789429 221.970199585 221.930160522 221.939926147 221.950180054 221.970199585 221.990219116 221.939926147 221.910140991 222.040023804 222.350082397 222.749984741 223.120101929 223.470199585 220.789978027 221.249938965 221.50994873 221.67010498 221.799987793 221.860046387 221.860046387 221.860046387 221.870056152 221.850036621 221.769958496 221.660095215 221.620056152 221.699890137 221.900085449 222.199890137 222.559997559 220.999801636 221.360153198 221.479782104 221.320114136 221.099899292 221.050094604 221.159957886 221.229782104 221.190231323 221.150192261 221.179977417 221.199996948 221.170211792 221.099899292 221.119918823 221.249801636 221.400192261 221.549789429 221.830062866 221.959945679 221.959945679 221.930160522 221.919906616 221.919906616 221.899887085 221.89012146 221.89012146 221.870101929 221.89012146 222.100082397 222.520004272 222.97996521 223.359848022 223.689926147 220.67010498 221.130065918 221.400085449 221.58001709 221.719909668 221.820007324 221.880065918 221.910095215 221.900085449 221.840026855 221.739929199 221.630065918 221.570007324 221.640075684 221.850036621 222.180114746 222.539978027 220.820114136 221.159957886 221.309860229 221.210250854 221.030075073 221.010055542 221.130172729 221.229782104 221.220016479 221.179977417 221.159957886 221.139938354 221.090133667 221.070114136 221.170211792 221.340133667 221.470016479 221.31980896 221.620101929 221.810043335 221.879867554 221.899887085 221.899887085 221.870101929 221.81980896 221.810043335 221.839828491 221.850082397 221.879867554 222.120101929 222.620101929 223.160140991 223.56980896 223.89012146 220.50994873 220.989929199 221.289978027 221.489929199 221.650085449 221.779968262 221.860046387 221.870056152 221.860046387 221.83001709 221.75994873 221.660095215 221.559997559 221.590026855 221.789978027 222.140075684 222.50994873 220.619918823 220.960250854 221.139938354 221.110153198 220.990036011 220.979782104 221.099899292 221.199996948 221.240036011 221.220016479 221.150192261 221.050094604 220.970016479 221.039840698 221.229782104 221.440231323 221.519821167 221.049789429 221.379867554 221.64012146 221.799789429 221.870101929 221.870101929 221.799789429 221.740219116 221.760238647 221.839828491 221.839828491 221.850082397 222.100082397 222.649887085 223.279769897 223.740219116 224.06980896 220.320007324 220.840026855 221.180114746 221.400085449 221.58001709 221.739929199 221.809997559 221.820007324 221.809997559 221.83001709 221.809997559 221.690124512 221.539978027 221.519958496 221.739929199 222.110046387 222.459899902 220.420211792 220.760055542 220.979782104 221.010055542 220.960250854 220.949996948 221.019821167 221.099899292 221.190231323 221.210250854 221.130172729 220.949996948 220.869918823 220.999801636 221.280075073 221.519821167 221.559860229 220.740219116 221.100082397 221.450180054 221.680160522 221.799789429 221.799789429 221.720199585 221.649887085 221.700180054 221.810043335 221.799789429 221.790023804 222.049789429 222.689926147 223.410140991 223.930160522 224.279769897 220.110046387 220.67010498 221.059997559 221.309997559 221.499938965 221.660095215 221.739929199 221.739929199 221.769958496 221.83001709 221.83001709 221.680114746 221.469909668 221.449890137 221.690124512 222.08001709 222.390075684 220.249801636 220.590133667 220.820114136 220.909957886 220.900192261 220.880172729 220.889938354 220.970016479 221.099899292 221.170211792 221.090133667 220.889938354 220.800094604 220.970016479 221.300094604 221.559860229 221.590133667 220.399887085 220.790023804 221.180160522 221.47996521 221.660140991 221.680160522 221.609848022 221.580062866 221.64012146 221.749984741 221.740219116 221.72996521 222.060043335 222.779769897 223.600082397 224.189926147 224.549789429 219.870056152 220.479919434 220.890075684 221.150085449 221.370056152 221.549987793 221.660095215 221.67010498 221.719909668 221.799987793 221.799987793 221.600036621 221.360046387 221.340026855 221.610046387 221.989929199 222.269958496 220.110153198 220.440231323 220.670211792 220.789840698 220.829879761 220.820114136 220.800094604 220.860153198 221.010055542 221.119918823 221.050094604 220.840133667 220.760055542 220.960250854 221.320114136 221.579879761 221.610153198 220.040023804 220.430160522 220.850082397 221.189926147 221.419906616 221.499984741 221.47996521 221.47996521 221.560043335 221.660140991 221.660140991 221.700180054 222.06980896 222.870101929 223.760238647 224.39012146 224.770004272 219.559997559 220.199890137 220.650085449 220.949890137 221.199890137 221.430114746 221.559997559 221.590026855 221.630065918 221.719909668 221.699890137 221.479919434 221.219909668 221.219909668 221.499938965 221.850036621 222.059997559 219.970016479 220.280075073 220.510055542 220.650192261 220.729782104 220.749801636 220.740036011 220.800094604 220.970016479 221.079879761 220.990036011 220.780075073 220.710250854 220.929977417 221.309860229 221.599899292 221.619918823 219.660140991 220.049789429 220.470199585 220.850082397 221.14012146 221.299789429 221.350082397 221.379867554 221.47996521 221.580062866 221.589828491 221.64012146 222.029769897 222.81980896 223.72996521 224.410140991 224.810043335 219.190124512 219.840026855 220.33001709 220.699890137 221.039978027 221.320007324 221.479919434 221.519958496 221.549987793 221.600036621 221.549987793 221.340026855 221.130065918 221.160095215 221.410095215 221.680114746 221.799987793 219.829879761 220.130172729 220.369918823 220.530075073 220.630172729 220.659957886 220.679977417 220.749801636 220.909957886 221.010055542 220.900192261 220.679977417 220.619918823 220.869918823 221.289840698 221.579879761 221.579879761 219.310043335 219.680160522 220.100082397 220.520004272 220.879867554 221.100082397 221.220199585 221.279769897 221.399887085 221.499984741 221.520004272 221.549789429 221.870101929 222.589828491 223.459945679 224.14012146 224.549789429 218.809997559 219.440124512 219.979919434 220.449890137 220.870056152 221.219909668 221.400085449 221.459899902 221.489929199 221.50994873 221.42010498 221.219909668 221.08001709 221.150085449 221.360046387 221.529968262 221.519958496 219.690231323 219.999801636 220.249801636 220.440231323 220.550094604 220.590133667 220.599899292 220.670211792 220.829879761 220.909957886 220.800094604 220.579879761 220.530075073 220.769821167 221.190231323 221.510055542 221.510055542 218.999984741 219.350082397 219.770004272 220.22996521 220.629867554 220.919906616 221.080062866 221.189926147 221.299789429 221.399887085 221.410140991 221.399887085 221.629867554 222.220199585 222.999984741 223.649887085 224.049789429 218.489929199 219.08001709 219.67010498 220.219909668 220.709899902 221.08001709 221.299987793 221.400085449 221.459899902 221.440124512 221.320007324 221.120056152 221.039978027 221.140075684 221.33001709 221.390075684 221.249938965 219.570114136 219.889938354 220.159957886 220.349899292 220.479782104 220.530075073 220.530075073 220.599899292 220.720016479 220.809860229 220.729782104 220.530075073 220.449996948 220.630172729 221.030075073 221.369918823 221.380172729 218.72996521 219.06980896 219.499984741 219.970199585 220.399887085 220.720199585 220.950180054 221.089828491 221.209945679 221.290023804 221.279769897 221.240219116 221.370101929 221.830062866 222.499984741 223.080062866 223.419906616 218.25994873 218.83001709 219.42010498 220.00994873 220.529968262 220.890075684 221.140075684 221.33001709 221.440124512 221.410095215 221.239929199 221.039978027 220.989929199 221.100036621 221.239929199 221.209899902 220.959899902 219.440231323 219.749801636 220.019821167 220.240036011 220.389938354 220.460250854 220.490036011 220.530075073 220.639938354 220.729782104 220.679977417 220.510055542 220.380172729 220.470016479 220.809860229 221.139938354 221.159957886 218.510238647 218.879867554 219.330062866 219.779769897 220.169906616 220.499984741 220.779769897 220.970199585 221.100082397 221.149887085 221.129867554 221.06980896 221.14012146 221.47996521 222.020004272 222.510238647 222.799789429 218.110046387 218.650085449 219.239929199 219.840026855 220.350036621 220.709899902 220.979919434 221.219909668 221.380065918 221.360046387 221.17010498 220.959899902 220.92010498 221.00994873 221.070007324 220.949890137 220.630065918 219.269821167 219.579879761 219.849899292 220.079879761 220.249801636 220.369918823 220.440231323 220.499801636 220.570114136 220.650192261 220.619918823 220.470016479 220.309860229 220.320114136 220.539840698 220.829879761 220.849899292 218.399887085 218.799789429 219.249984741 219.64012146 219.959945679 220.270004272 220.580062866 220.81980896 220.959945679 221.010238647 220.970199585 220.899887085 220.919906616 221.149887085 221.560043335 221.970199585 222.240219116 217.979919434 218.50994873 219.08001709 219.690124512 220.209899902 220.590026855 220.880065918 221.130065918 221.309997559 221.289978027 221.110046387 220.92010498 220.860046387 220.890075684 220.870056152 220.67010498 220.289978027 219.070114136 219.369918823 219.670211792 219.920211792 220.119918823 220.269821167 220.369918823 220.449996948 220.530075073 220.590133667 220.559860229 220.409957886 220.229782104 220.159957886 220.280075073 220.479782104 220.460250854 218.359848022 218.779769897 219.200180054 219.520004272 219.779769897 220.06980896 220.379867554 220.649887085 220.799789429 220.859848022 220.839828491 220.740219116 220.700180054 220.830062866 221.149887085 221.499984741 221.740219116 217.870056152 218.370056152 218.92010498 219.539978027 220.110046387 220.529968262 220.83001709 221.070007324 221.229919434 221.219909668 221.049987793 220.880065918 220.779968262 220.769958496 220.690124512 220.449890137 219.999938965 218.900192261 219.199996948 219.530075073 219.820114136 220.039840698 220.179977417 220.300094604 220.400192261 220.510055542 220.570114136 220.510055542 220.349899292 220.119918823 219.999801636 220.019821167 220.110153198 220.050094604 218.350082397 218.720199585 219.080062866 219.359848022 219.609848022 219.899887085 220.209945679 220.47996521 220.649887085 220.72996521 220.720199585 220.600082397 220.490219116 220.529769897 220.779769897 221.100082397 221.299789429 217.799987793 218.269958496 218.779968262 219.400085449 220.00994873 220.489929199 220.820007324 221.049987793 221.180114746 221.160095215 221.00994873 220.840026855 220.719909668 220.650085449 220.549987793 220.289978027 219.820007324 218.749801636 219.050094604 219.409957886 219.749801636 219.979782104 220.110153198 220.220016479 220.349899292 220.499801636 220.570114136 220.479782104 220.269821167 220.010055542 219.829879761 219.780075073 219.760055542 219.659957886 218.310043335 218.609848022 218.899887085 219.160140991 219.459945679 219.799789429 220.129867554 220.370101929 220.540023804 220.629867554 220.620101929 220.470199585 220.299789429 220.279769897 220.490219116 220.770004272 220.930160522 217.779968262 218.219909668 218.680114746 219.279968262 219.900085449 220.42010498 220.779968262 221.00994873 221.130065918 221.110046387 220.969909668 220.769958496 220.610046387 220.519958496 220.440124512 220.190124512 219.67010498 218.650192261 218.929977417 219.289840698 219.650192261 219.900192261 220.019821167 220.130172729 220.289840698 220.470016479 220.550094604 220.440231323 220.190231323 219.889938354 219.679977417 219.550094604 219.449996948 219.320114136 218.22996521 218.459945679 218.680160522 218.959945679 219.31980896 219.740219116 220.100082397 220.339828491 220.470199585 220.540023804 220.510238647 220.339828491 220.149887085 220.100082397 220.249984741 220.47996521 220.580062866 217.769958496 218.17010498 218.600036621 219.180114746 219.779968262 220.299987793 220.680114746 220.940124512 221.070007324 221.070007324 220.930114746 220.709899902 220.50994873 220.390075684 220.309997559 220.070007324 219.519958496 218.599899292 218.849899292 219.170211792 219.510055542 219.760055542 219.909957886 220.030075073 220.190231323 220.369918823 220.470016479 220.360153198 220.090133667 219.780075073 219.530075073 219.340133667 219.159957886 219.010055542 218.149887085 218.31980896 218.490219116 218.749984741 219.160140991 219.649887085 220.060043335 220.31980896 220.439926147 220.459945679 220.379867554 220.209945679 220.010238647 219.930160522 220.020004272 220.180160522 220.22996521 217.690124512 218.08001709 218.519958496 219.070007324 219.650085449 220.150085449 220.559997559 220.840026855 220.979919434 220.989929199 220.860046387 220.640075684 220.410095215 220.269958496 220.150085449 219.900085449 219.340026855 218.590133667 218.829879761 219.099899292 219.389938354 219.630172729 219.800094604 219.949996948 220.090133667 220.240036011 220.320114136 220.240036011 219.990036011 219.679977417 219.409957886 219.150192261 218.920211792 218.729782104 218.010238647 218.160140991 218.290023804 218.529769897 218.950180054 219.490219116 219.999984741 220.310043335 220.419906616 220.379867554 220.249984741 220.060043335 219.870101929 219.770004272 219.770004272 219.839828491 219.859848022 217.559997559 217.930114746 218.390075684 218.940124512 219.499938965 220.00994873 220.449890137 220.749938965 220.880065918 220.880065918 220.769958496 220.559997559 220.309997559 220.120056152 219.959899902 219.680114746 219.140075684 218.570114136 218.809860229 219.050094604 219.300094604 219.530075073 219.729782104 219.889938354 220.010055542 220.119918823 220.190231323 220.119918823 219.889938354 219.579879761 219.269821167 218.979782104 218.699996948 218.470016479 217.810043335 217.950180054 218.060043335 218.279769897 218.700180054 219.310043335 219.89012146 220.270004272 220.39012146 220.310043335 220.109848022 219.89012146 219.700180054 219.560043335 219.499984741 219.499984741 219.520004272 217.42010498 217.799987793 218.279968262 218.820007324 219.370056152 219.900085449 220.370056152 220.67010498 220.769958496 220.709899902 220.610046387 220.430114746 220.199890137 219.949890137 219.729919434 219.440124512 218.930114746 218.460250854 218.710250854 218.960250854 219.199996948 219.449996948 219.690231323 219.860153198 219.970016479 220.059860229 220.110153198 220.030075073 219.789840698 219.460250854 219.139938354 218.829879761 218.519821167 218.249801636 217.529769897 217.669906616 217.799789429 218.040023804 218.499984741 219.14012146 219.770004272 220.200180054 220.339828491 220.220199585 219.959945679 219.700180054 219.47996521 219.330062866 219.220199585 219.200180054 219.22996521 217.33001709 217.749938965 218.229919434 218.75994873 219.309997559 219.860046387 220.340026855 220.610046387 220.630065918 220.539978027 220.440124512 220.289978027 220.059997559 219.779968262 219.50994873 219.180114746 218.709899902 218.260055542 218.510055542 218.780075073 219.059860229 219.360153198 219.630172729 219.840133667 219.949996948 220.030075073 220.059860229 219.970016479 219.699996948 219.349899292 219.010055542 218.690231323 218.369918823 218.090133667 217.22996521 217.379867554 217.560043335 217.859848022 218.370101929 219.029769897 219.649887085 220.06980896 220.200180054 220.089828491 219.81980896 219.510238647 219.249984741 219.049789429 218.939926147 218.919906616 218.970199585 217.309997559 217.749938965 218.219909668 218.739929199 219.289978027 219.860046387 220.33001709 220.559997559 220.529968262 220.400085449 220.289978027 220.160095215 219.910095215 219.590026855 219.269958496 218.900085449 218.440124512 218.030075073 218.280075073 218.570114136 218.909957886 219.249801636 219.579879761 219.800094604 219.940231323 220.019821167 220.059860229 219.949996948 219.659957886 219.269821167 218.920211792 218.599899292 218.260055542 217.960250854 216.950180054 217.129867554 217.359848022 217.72996521 218.299789429 218.970199585 219.529769897 219.89012146 220.040023804 219.959945679 219.700180054 219.350082397 219.020004272 218.770004272 218.629867554 218.609848022 218.689926147 217.289978027 217.709899902 218.160095215 218.680114746 219.249938965 219.850036621 220.320007324 220.50994873 220.449890137 220.299987793 220.180114746 220.029968262 219.749938965 219.400085449 219.019958496 218.610046387 218.150085449 217.840133667 218.099899292 218.409957886 218.780075073 219.179977417 219.539840698 219.789840698 219.920211792 220.010055542 220.059860229 219.949996948 219.650192261 219.249801636 218.880172729 218.530075073 218.170211792 217.849899292 216.72996521 216.939926147 217.209945679 217.649887085 218.270004272 218.910140991 219.410140991 219.720199585 219.870101929 219.839828491 219.600082397 219.22996521 218.839828491 218.520004272 218.31980896 218.260238647 218.330062866 217.209899902 217.58001709 217.999938965 218.519958496 219.150085449 219.779968262 220.249938965 220.440124512 220.380065918 220.239929199 220.100036621 219.890075684 219.570007324 219.190124512 218.789978027 218.350036621 217.870056152 217.679977417 217.940231323 218.260055542 218.670211792 219.119918823 219.510055542 219.749801636 219.880172729 219.970016479 220.050094604 219.970016479 219.679977417 219.260055542 218.860153198 218.470016479 218.090133667 217.760055542 216.56980896 216.799789429 217.109848022 217.600082397 218.249984741 218.899887085 219.350082397 219.629867554 219.760238647 219.72996521 219.499984741 219.100082397 218.669906616 218.299789429 218.020004272 217.899887085 217.950180054 217.070007324 217.380065918 217.789978027 218.340026855 219.00994873 219.67010498 220.130065918 220.33001709 220.320007324 220.199890137 220.019958496 219.749938965 219.390075684 218.989929199 218.590026855 218.140075684 217.640075684 217.490036011 217.760055542 218.119918823 218.550094604 219.050094604 219.470016479 219.710250854 219.840133667 219.929977417 220.039840698 220.010055542 219.729782104 219.309860229 218.860153198 218.440231323 218.019821167 217.690231323 216.439926147 216.689926147 217.049789429 217.600082397 218.290023804 218.930160522 219.379867554 219.620101929 219.709945679 219.64012146 219.370101929 218.950180054 218.510238647 218.100082397 217.770004272 217.580062866 217.589828491 216.910095215 217.190124512 217.640075684 218.229919434 218.930114746 219.58001709 220.029968262 220.229919434 220.239929199 220.160095215 219.959899902 219.650085449 219.239929199 218.840026855 218.430114746 217.969909668 217.440124512 217.280075073 217.590133667 217.979782104 218.470016479 218.990036011 219.429977417 219.690231323 219.820114136 219.940231323 220.079879761 220.079879761 219.829879761 219.400192261 218.920211792 218.449996948 217.999801636 217.670211792 216.330062866 216.600082397 217.020004272 217.64012146 218.370101929 219.020004272 219.450180054 219.660140991 219.700180054 219.560043335 219.249984741 218.830062866 218.39012146 217.950180054 217.56980896 217.330062866 217.279769897 216.749938965 217.08001709 217.570007324 218.219909668 218.92010498 219.549987793 219.969909668 220.160095215 220.190124512 220.130065918 219.940124512 219.590026855 219.140075684 218.699890137 218.289978027 217.820007324 217.25994873 217.130172729 217.479782104 217.929977417 218.429977417 218.970016479 219.429977417 219.710250854 219.869918823 220.019821167 220.179977417 220.190231323 219.929977417 219.499801636 219.010055542 218.510055542 218.039840698 217.670211792 216.22996521 216.540023804 217.029769897 217.720199585 218.47996521 219.129867554 219.520004272 219.669906616 219.660140991 219.490219116 219.169906616 218.770004272 218.310043335 217.830062866 217.399887085 217.120101929 217.020004272 216.630065918 217.00994873 217.559997559 218.229919434 218.940124512 219.539978027 219.930114746 220.120056152 220.150085449 220.090026855 219.910095215 219.539978027 219.070007324 218.590026855 218.150085449 217.680114746 217.090026855 217.059860229 217.460250854 217.949996948 218.460250854 218.990036011 219.460250854 219.780075073 219.970016479 220.130172729 220.269821167 220.249801636 219.990036011 219.559860229 219.090133667 218.590133667 218.099899292 217.699996948 216.160140991 216.529769897 217.100082397 217.850082397 218.620101929 219.220199585 219.529769897 219.620101929 219.56980896 219.419906616 219.149887085 218.760238647 218.290023804 217.760238647 217.270004272 216.950180054 216.799789429 216.529968262 216.969909668 217.559997559 218.239929199 218.930114746 219.519958496 219.890075684 220.059997559 220.08001709 220.019958496 219.840026855 219.489929199 219.00994873 218.489929199 218.039978027 217.570007324 217.00994873 217.050094604 217.499801636 218.010055542 218.519821167 219.039840698 219.510055542 219.840133667 220.030075073 220.150192261 220.249801636 220.210250854 219.949996948 219.550094604 219.130172729 218.670211792 218.179977417 217.760055542 216.120101929 216.549789429 217.189926147 217.990219116 218.740219116 219.260238647 219.47996521 219.510238647 219.450180054 219.339828491 219.129867554 218.779769897 218.290023804 217.740219116 217.22996521 216.859848022 216.660140991 216.459899902 216.959899902 217.58001709 218.269958496 218.910095215 219.459899902 219.820007324 219.989929199 219.999938965 219.930114746 219.749938965 219.430114746 218.979919434 218.469909668 217.979919434 217.539978027 217.00994873 217.079879761 217.570114136 218.090133667 218.610153198 219.130172729 219.579879761 219.860153198 219.979782104 220.039840698 220.110153198 220.070114136 219.860153198 219.530075073 219.170211792 218.760055542 218.289840698 217.849899292 216.089828491 216.580062866 217.260238647 218.06980896 218.790023804 219.220199585 219.370101929 219.39012146 219.370101929 219.31980896 219.120101929 218.779769897 218.31980896 217.790023804 217.299789429 216.910140991 216.649887085 216.430114746 216.989929199 217.650085449 218.320007324 218.930114746 219.430114746 219.769958496 219.940124512 219.969909668 219.880065918 219.699890137 219.430114746 219.039978027 218.549987793 218.039978027 217.570007324 217.090026855 217.159957886 217.690231323 218.229782104 218.760055542 219.260055542 219.659957886 219.849899292 219.880172729 219.869918823 219.920211792 219.940231323 219.800094604 219.539840698 219.210250854 218.840133667 218.400192261 217.970016479 216.060043335 216.56980896 217.279769897 218.080062866 218.749984741 219.129867554 219.279769897 219.350082397 219.379867554 219.330062866 219.120101929 218.770004272 218.339828491 217.870101929 217.430160522 217.040023804 216.720199585 216.42010498 217.019958496 217.719909668 218.400085449 218.989929199 219.430114746 219.75994873 219.940124512 219.989929199 219.910095215 219.739929199 219.499938965 219.160095215 218.690124512 218.160095215 217.640075684 217.17010498 217.320114136 217.860153198 218.409957886 218.940231323 219.409957886 219.729782104 219.829879761 219.769821167 219.720016479 219.780075073 219.860153198 219.800094604 219.579879761 219.269821167 218.900192261 218.490036011 218.090133667 216.049789429 216.580062866 217.290023804 218.060043335 218.680160522 219.049789429 219.240219116 219.370101929 219.430160522 219.350082397 219.100082397 218.72996521 218.339828491 217.919906616 217.520004272 217.14012146 216.790023804 216.459899902 217.070007324 217.769958496 218.459899902 219.039978027 219.459899902 219.75994873 219.959899902 220.049987793 219.999938965 219.83001709 219.590026855 219.269958496 218.83001709 218.289978027 217.749938965 217.25994873 217.490036011 218.050094604 218.590133667 219.099899292 219.519821167 219.769821167 219.809860229 219.710250854 219.650192261 219.720016479 219.829879761 219.800094604 219.599899292 219.280075073 218.920211792 218.530075073 218.150192261 216.100082397 216.64012146 217.299789429 218.029769897 218.64012146 219.020004272 219.240219116 219.379867554 219.419906616 219.290023804 219.020004272 218.689926147 218.339828491 217.959945679 217.560043335 217.180160522 216.81980896 216.529968262 217.130065918 217.820007324 218.499938965 219.070007324 219.489929199 219.75994873 219.959899902 220.08001709 220.070007324 219.910095215 219.660095215 219.340026855 218.940124512 218.440124512 217.910095215 217.42010498 217.650192261 218.190231323 218.720016479 219.220016479 219.599899292 219.789840698 219.789840698 219.690231323 219.650192261 219.710250854 219.789840698 219.760055542 219.570114136 219.280075073 218.920211792 218.550094604 218.159957886 216.200180054 216.709945679 217.31980896 217.999984741 218.600082397 218.999984741 219.249984741 219.359848022 219.330062866 219.160140991 218.930160522 218.680160522 218.399887085 218.029769897 217.620101929 217.22996521 216.859848022 216.67010498 217.25994873 217.900085449 218.549987793 219.110046387 219.519958496 219.789978027 219.969909668 220.08001709 220.100036621 219.979919434 219.729919434 219.410095215 219.039978027 218.620056152 218.130065918 217.650085449 217.760055542 218.289840698 218.820114136 219.289840698 219.659957886 219.809860229 219.780075073 219.690231323 219.670211792 219.720016479 219.760055542 219.710250854 219.539840698 219.289840698 218.970016479 218.579879761 218.150192261 216.279769897 216.749984741 217.310043335 217.939926147 218.549789429 218.999984741 219.260238647 219.330062866 219.249984741 219.089828491 218.939926147 218.799789429 218.560043335 218.189926147 217.790023804 217.410140991 216.999984741 216.820007324 217.440124512 218.070007324 218.660095215 219.199890137 219.620056152 219.900085449 220.039978027 220.120056152 220.150085449 220.08001709 219.860046387 219.539978027 219.199890137 218.820007324 218.370056152 217.900085449 217.889938354 218.389938354 218.889938354 219.369918823 219.710250854 219.849899292 219.789840698 219.710250854 219.699996948 219.749801636 219.769821167 219.710250854 219.570114136 219.380172729 219.079879761 218.659957886 218.130172729 216.290023804 216.72996521 217.260238647 217.870101929 218.499984741 219.010238647 219.290023804 219.339828491 219.249984741 219.149887085 219.089828491 219.020004272 218.779769897 218.419906616 218.049789429 217.709945679 217.249984741 216.979919434 217.640075684 218.25994873 218.809997559 219.320007324 219.769958496 220.070007324 220.180114746 220.209899902 220.249938965 220.219909668 220.039978027 219.709899902 219.360046387 218.999938965 218.590026855 218.110046387 218.019821167 218.479782104 218.949996948 219.400192261 219.749801636 219.880172729 219.840133667 219.749801636 219.760055542 219.840133667 219.860153198 219.800094604 219.670211792 219.519821167 219.249801636 218.780075073 218.150192261 216.240219116 216.689926147 217.220199585 217.850082397 218.499984741 218.999984741 219.290023804 219.330062866 219.270004272 219.260238647 219.299789429 219.249984741 219.010238647 218.629867554 218.310043335 217.999984741 217.529769897 217.140075684 217.820007324 218.440124512 218.949890137 219.430114746 219.880065918 220.190124512 220.289978027 220.279968262 220.309997559 220.320007324 220.180114746 219.860046387 219.50994873 219.160095215 218.75994873 218.279968262 218.150192261 218.559860229 218.999801636 219.429977417 219.769821167 219.929977417 219.900192261 219.820114136 219.820114136 219.929977417 219.990036011 219.929977417 219.809860229 219.670211792 219.420211792 218.929977417 218.190231323 216.149887085 216.64012146 217.220199585 217.870101929 218.499984741 218.970199585 219.209945679 219.22996521 219.209945679 219.270004272 219.39012146 219.399887085 219.160140991 218.799789429 218.490219116 218.189926147 217.700180054 217.289978027 217.949890137 218.570007324 219.039978027 219.449890137 219.860046387 220.140075684 220.239929199 220.229919434 220.269958496 220.320007324 220.209899902 219.92010498 219.590026855 219.289978027 218.910095215 218.449890137 218.249801636 218.670211792 219.110153198 219.510055542 219.840133667 219.999801636 219.979782104 219.869918823 219.849899292 219.970016479 220.050094604 220.010055542 219.889938354 219.789840698 219.579879761 219.070114136 218.300094604 216.060043335 216.600082397 217.220199585 217.879867554 218.470199585 218.89012146 219.080062866 219.100082397 219.109848022 219.209945679 219.370101929 219.410140991 219.209945679 218.870101929 218.560043335 218.249984741 217.749984741 217.440124512 218.08001709 218.680114746 219.130065918 219.459899902 219.789978027 220.029968262 220.140075684 220.140075684 220.190124512 220.249938965 220.160095215 219.910095215 219.630065918 219.370056152 219.049987793 218.610046387 218.409957886 218.880172729 219.340133667 219.710250854 219.970016479 220.079879761 220.019821167 219.889938354 219.829879761 219.920211792 220.010055542 219.999801636 219.900192261 219.829879761 219.670211792 219.199996948 218.440231323 216.010238647 216.580062866 217.209945679 217.839828491 218.399887085 218.799789429 219.020004272 219.109848022 219.14012146 219.200180054 219.31980896 219.330062866 219.189926147 218.89012146 218.549789429 218.180160522 217.680160522 217.620056152 218.229919434 218.840026855 219.279968262 219.570007324 219.809997559 220.029968262 220.150085449 220.17010498 220.190124512 220.180114746 220.08001709 219.860046387 219.640075684 219.430114746 219.140075684 218.739929199 218.659957886 219.150192261 219.619918823 219.940231323 220.099899292 220.139938354 220.039840698 219.889938354 219.800094604 219.860153198 219.949996948 219.949996948 219.889938354 219.840133667 219.710250854 219.289840698 218.559860229 216.06980896 216.600082397 217.200180054 217.799789429 218.350082397 218.790023804 219.109848022 219.310043335 219.370101929 219.330062866 219.279769897 219.209945679 219.06980896 218.810043335 218.459945679 218.029769897 217.510238647 217.92010498 218.50994873 219.090026855 219.50994873 219.789978027 220.019958496 220.249938965 220.370056152 220.360046387 220.279968262 220.190124512 220.049987793 219.870056152 219.660095215 219.469909668 219.199890137 218.820007324 218.960250854 219.409957886 219.829879761 220.079879761 220.170211792 220.159957886 220.070114136 219.949996948 219.869918823 219.900192261 219.970016479 219.960250854 219.889938354 219.840133667 219.710250854 219.309860229 218.630172729 216.279769897 216.749984741 217.279769897 217.870101929 218.399887085 218.850082397 219.240219116 219.529769897 219.620101929 219.47996521 219.249984741 219.060043335 218.899887085 218.660140991 218.290023804 217.830062866 217.310043335 218.340026855 218.890075684 219.410095215 219.820007324 220.100036621 220.33001709 220.549987793 220.660095215 220.590026855 220.410095215 220.219909668 220.070007324 219.910095215 219.729919434 219.519958496 219.25994873 218.910095215 219.220016479 219.570114136 219.889938354 220.090133667 220.179977417 220.199996948 220.159957886 220.090133667 220.030075073 220.050094604 220.079879761 220.050094604 219.949996948 219.860153198 219.690231323 219.289840698 218.639938354 216.620101929 217.010238647 217.499984741 218.060043335 218.560043335 218.959945679 219.31980896 219.620101929 219.709945679 219.540023804 219.220199585 218.959945679 218.749984741 218.47996521 218.100082397 217.620101929 217.109848022 218.850036621 219.33001709 219.769958496 220.130065918 220.380065918 220.590026855 220.75994873 220.840026855 220.729919434 220.489929199 220.25994873 220.100036621 219.999938965 219.840026855 219.640075684 219.390075684 219.059997559 219.429977417 219.670211792 219.920211792 220.119918823 220.240036011 220.289840698 220.289840698 220.240036011 220.199996948 220.190231323 220.190231323 220.130172729 220.019821167 219.889938354 219.670211792 219.229782104 218.599899292 217.029769897 217.370101929 217.799789429 218.310043335 218.760238647 219.089828491 219.379867554 219.629867554 219.709945679 219.540023804 219.240219116 218.939926147 218.680160522 218.370101929 217.950180054 217.459945679 216.97996521 219.390075684 219.769958496 220.120056152 220.410095215 220.600036621 220.719909668 220.820007324 220.870056152 220.779968262 220.539978027 220.309997559 220.150085449 220.059997559 219.949890137 219.789978027 219.559997559 219.249938965 219.650192261 219.849899292 220.079879761 220.269821167 220.369918823 220.409957886 220.389938354 220.329879761 220.269821167 220.229782104 220.210250854 220.159957886 220.059860229 219.920211792 219.650192261 219.170211792 218.530075073 217.470199585 217.760238647 218.129867554 218.580062866 218.990219116 219.290023804 219.540023804 219.740219116 219.799789429 219.649887085 219.350082397 219.029769897 218.709945679 218.339828491 217.870101929 217.39012146 216.919906616 219.900085449 220.190124512 220.449890137 220.67010498 220.769958496 220.789978027 220.820007324 220.870056152 220.820007324 220.650085449 220.400085449 220.199890137 220.08001709 220.019958496 219.940124512 219.75994873 219.42010498 219.990036011 220.179977417 220.369918823 220.499801636 220.519821167 220.470016479 220.409957886 220.349899292 220.280075073 220.229782104 220.179977417 220.139938354 220.090133667 219.960250854 219.670211792 219.139938354 218.460250854 217.930160522 218.180160522 218.470199585 218.830062866 219.209945679 219.540023804 219.810043335 219.97996521 220.020004272 219.879867554 219.560043335 219.180160522 218.790023804 218.370101929 217.899887085 217.410140991 216.919906616 220.42010498 220.600036621 220.75994873 220.890075684 220.92010498 220.870056152 220.850036621 220.890075684 220.890075684 220.769958496 220.529968262 220.279968262 220.120056152 220.08001709 220.08001709 219.930114746 219.549987793 220.400192261 220.559860229 220.670211792 220.679977417 220.579879761 220.449996948 220.369918823 220.340133667 220.309860229 220.260055542 220.190231323 220.170211792 220.139938354 220.050094604 219.740036011 219.139938354 218.400192261 218.410140991 218.629867554 218.830062866 219.089828491 219.430160522 219.779769897 220.060043335 220.220199585 220.240219116 220.109848022 219.799789429 219.359848022 218.899887085 218.450180054 217.990219116 217.470199585 216.919906616 220.850036621 220.930114746 220.999938965 221.029968262 221.019958496 220.949890137 220.910095215 220.910095215 220.92010498 220.840026855 220.640075684 220.380065918 220.190124512 220.160095215 220.190124512 220.049987793 219.620056152 220.769821167 220.849899292 220.860153198 220.769821167 220.579879761 220.409957886 220.349899292 220.369918823 220.360153198 220.300094604 220.240036011 220.220016479 220.240036011 220.150192261 219.820114136 219.179977417 218.360153198 218.870101929 219.06980896 219.220199585 219.39012146 219.660140991 219.959945679 220.189926147 220.310043335 220.339828491 220.249984741 219.999984741 219.560043335 219.049789429 218.56980896 218.080062866 217.529769897 216.899887085 221.110046387 221.110046387 221.08001709 221.059997559 221.029968262 220.989929199 220.949890137 220.890075684 220.850036621 220.820007324 220.690124512 220.469909668 220.269958496 220.199890137 220.209899902 220.059997559 219.590026855 220.960250854 220.979782104 220.949996948 220.809860229 220.579879761 220.409957886 220.360153198 220.369918823 220.340133667 220.280075073 220.240036011 220.260055542 220.300094604 220.220016479 219.869918823 219.179977417 218.320114136 219.249984741 219.459945679 219.600082397 219.709945679 219.879867554 220.089828491 220.249984741 220.299789429 220.330062866 220.299789429 220.14012146 219.749984741 219.22996521 218.700180054 218.14012146 217.510238647 216.850082397 221.160095215 221.120056152 221.049987793 220.989929199 220.979919434 220.999938965 220.959899902 220.860046387 220.789978027 220.749938965 220.690124512 220.519958496 220.289978027 220.160095215 220.110046387 219.940124512 219.440124512 220.990036011 221.039840698 221.010055542 220.860153198 220.630172729 220.440231323 220.349899292 220.320114136 220.269821167 220.190231323 220.179977417 220.240036011 220.300094604 220.210250854 219.829879761 219.130172729 218.260055542 219.529769897 219.770004272 219.910140991 219.959945679 220.040023804 220.180160522 220.279769897 220.290023804 220.290023804 220.299789429 220.180160522 219.879867554 219.399887085 218.81980896 218.149887085 217.450180054 216.799789429 221.049987793 221.019958496 220.949890137 220.880065918 220.890075684 220.959899902 220.959899902 220.880065918 220.779968262 220.729919434 220.660095215 220.479919434 220.25994873 220.090026855 219.979919434 219.739929199 219.239929199 220.949996948 221.079879761 221.090133667 220.929977417 220.659957886 220.440231323 220.320114136 220.269821167 220.190231323 220.119918823 220.110153198 220.190231323 220.249801636 220.159957886 219.760055542 219.070114136 218.210250854 219.760238647 220.010238647 220.129867554 220.089828491 220.089828491 220.209945679 220.310043335 220.299789429 220.260238647 220.209945679 220.120101929 219.910140991 219.520004272 218.950180054 218.200180054 217.399887085 216.749984741 220.940124512 220.930114746 220.850036621 220.769958496 220.789978027 220.870056152 220.910095215 220.870056152 220.799987793 220.719909668 220.600036621 220.410095215 220.199890137 220.039978027 219.890075684 219.58001709 219.029968262 220.949996948 221.139938354 221.119918823 220.909957886 220.599899292 220.369918823 220.269821167 220.260055542 220.210250854 220.130172729 220.079879761 220.130172729 220.199996948 220.099899292 219.710250854 219.019821167 218.190231323 219.970199585 220.200180054 220.249984741 220.120101929 220.049789429 220.149887085 220.279769897 220.299789429 220.200180054 220.080062866 219.97996521 219.839828491 219.589828491 219.080062866 218.290023804 217.399887085 216.689926147 220.850036621 220.840026855 220.739929199 220.650085449 220.650085449 220.699890137 220.739929199 220.749938965 220.719909668 220.650085449 220.479919434 220.299987793 220.140075684 220.019958496 219.83001709 219.440124512 218.840026855 220.949996948 221.090133667 221.019821167 220.769821167 220.470016479 220.269821167 220.240036011 220.280075073 220.280075073 220.170211792 220.079879761 220.090133667 220.170211792 220.070114136 219.659957886 218.999801636 218.190231323 220.109848022 220.31980896 220.299789429 220.109848022 219.959945679 220.020004272 220.14012146 220.169906616 220.080062866 219.939926147 219.81980896 219.760238647 219.609848022 219.200180054 218.399887085 217.410140991 216.580062866 220.749938965 220.690124512 220.570007324 220.469909668 220.459899902 220.469909668 220.479919434 220.489929199 220.489929199 220.440124512 220.299987793 220.150085449 220.059997559 219.959899902 219.729919434 219.289978027 218.650085449 220.840133667 220.869918823 220.749801636 220.539840698 220.320114136 220.179977417 220.190231323 220.269821167 220.280075073 220.170211792 220.050094604 220.070114136 220.150192261 220.039840698 219.619918823 218.970016479 218.199996948 220.120101929 220.310043335 220.270004272 220.040023804 219.859848022 219.850082397 219.930160522 219.959945679 219.899887085 219.779769897 219.689926147 219.649887085 219.589828491 219.240219116 218.459945679 217.410140991 216.419906616 220.58001709 220.469909668 220.33001709 220.239929199 220.229919434 220.209899902 220.17010498 220.17010498 220.190124512 220.160095215 220.059997559 219.979919434 219.930114746 219.83001709 219.549987793 219.08001709 218.430114746 220.550094604 220.499801636 220.389938354 220.269821167 220.150192261 220.070114136 220.099899292 220.179977417 220.199996948 220.099899292 220.019821167 220.070114136 220.159957886 220.010055542 219.570114136 218.940231323 218.190231323 219.959945679 220.120101929 220.06980896 219.879867554 219.700180054 219.649887085 219.660140991 219.669906616 219.649887085 219.589828491 219.540023804 219.540023804 219.510238647 219.220199585 218.470199585 217.370101929 216.22996521 220.390075684 220.229919434 220.070007324 219.979919434 219.949890137 219.900085449 219.83001709 219.820007324 219.870056152 219.860046387 219.83001709 219.809997559 219.799987793 219.680114746 219.370056152 218.880065918 218.229919434 220.159957886 220.090133667 220.039840698 220.010055542 219.960250854 219.920211792 219.940231323 220.030075073 220.070114136 220.010055542 219.979782104 220.079879761 220.170211792 219.999801636 219.530075073 218.909957886 218.199996948 219.649887085 219.770004272 219.72996521 219.580062866 219.450180054 219.379867554 219.359848022 219.370101929 219.370101929 219.370101929 219.359848022 219.399887085 219.419906616 219.180160522 218.459945679 217.31980896 216.06980896 220.219909668 220.049987793 219.850036621 219.739929199 219.660095215 219.549987793 219.469909668 219.499938965 219.570007324 219.600036621 219.610046387 219.67010498 219.709899902 219.570007324 219.219909668 218.699890137 218.039978027 219.800094604 219.760055542 219.760055542 219.780075073 219.760055542 219.720016479 219.760055542 219.880172729 219.949996948 219.920211792 219.929977417 220.070114136 220.170211792 219.990036011 219.519821167 218.929977417 218.199996948 219.260238647 219.31980896 219.279769897 219.200180054 219.149887085 219.109848022 219.06980896 219.080062866 219.120101929 219.149887085 219.169906616 219.249984741 219.330062866 219.120101929 218.419906616 217.270004272 215.930160522 220.08001709 219.890075684 219.699890137 219.549987793 219.390075684 219.209899902 219.130065918 219.190124512 219.309997559 219.380065918 219.430114746 219.559997559 219.640075684 219.479919434 219.090026855 218.519958496 217.820007324 219.470016479 219.490036011 219.539840698 219.579879761 219.570114136 219.550094604 219.639938354 219.789840698 219.860153198 219.840133667 219.869918823 220.039840698 220.150192261 219.979782104 219.550094604 218.970016479 218.179977417 218.830062866 218.859848022 218.839828491 218.850082397 218.859848022 218.859848022 218.830062866 218.859848022 218.930160522 218.97996521 219.020004272 219.120101929 219.209945679 219.029769897 218.350082397 217.209945679 215.839828491 219.910095215 219.739929199 219.570007324 219.430114746 219.209899902 218.969909668 218.880065918 218.979919434 219.120056152 219.180114746 219.289978027 219.469909668 219.570007324 219.390075684 218.930114746 218.33001709 217.610046387 219.150192261 219.210250854 219.320114136 219.409957886 219.440231323 219.479782104 219.579879761 219.710250854 219.760055542 219.740036011 219.800094604 219.990036011 220.119918823 219.990036011 219.599899292 219.019821167 218.170211792 218.439926147 218.459945679 218.499984741 218.56980896 218.64012146 218.64012146 218.629867554 218.680160522 218.790023804 218.870101929 218.910140991 218.990219116 219.06980896 218.899887085 218.270004272 217.169906616 215.790023804 219.690124512 219.549987793 219.459899902 219.360046387 219.140075684 218.860046387 218.75994873 218.840026855 218.949890137 219.039978027 219.180114746 219.410095215 219.499938965 219.269958496 218.779968262 218.180114746 217.489929199 218.809860229 218.920211792 219.090133667 219.249801636 219.360153198 219.460250854 219.559860229 219.639938354 219.650192261 219.630172729 219.740036011 219.949996948 220.090133667 219.999801636 219.659957886 219.079879761 218.179977417 218.169906616 218.220199585 218.290023804 218.39012146 218.450180054 218.450180054 218.450180054 218.540023804 218.689926147 218.799789429 218.850082397 218.899887085 218.939926147 218.770004272 218.189926147 217.149887085 215.799789429 219.479919434 219.400085449 219.390075684 219.33001709 219.110046387 218.820007324 218.699890137 218.749938965 218.820007324 218.910095215 219.100036621 219.350036621 219.430114746 219.190124512 218.699890137 218.140075684 217.459899902 218.530075073 218.699996948 218.920211792 219.139938354 219.309860229 219.440231323 219.530075073 219.570114136 219.550094604 219.550094604 219.670211792 219.889938354 220.019821167 219.970016479 219.679977417 219.130172729 218.240036011 218.080062866 218.160140991 218.220199585 218.279769897 218.299789429 218.31980896 218.370101929 218.490219116 218.649887085 218.770004272 218.839828491 218.879867554 218.879867554 218.669906616 218.100082397 217.120101929 215.81980896 219.33001709 219.360046387 219.430114746 219.360046387 219.08001709 218.779968262 218.660095215 218.690124512 218.729919434 218.809997559 219.00994873 219.269958496 219.360046387 219.110046387 218.67010498 218.120056152 217.449890137 218.389938354 218.610153198 218.869918823 219.110153198 219.289840698 219.440231323 219.530075073 219.559860229 219.530075073 219.519821167 219.610153198 219.780075073 219.900192261 219.880172729 219.659957886 219.159957886 218.300094604 218.169906616 218.260238647 218.270004272 218.249984741 218.260238647 218.330062866 218.439926147 218.56980896 218.689926147 218.790023804 218.870101929 218.919906616 218.859848022 218.589828491 217.990219116 217.040023804 215.799789429 219.279968262 219.449890137 219.570007324 219.440124512 219.090026855 218.75994873 218.640075684 218.660095215 218.699890137 218.749938965 218.92010498 219.17010498 219.239929199 219.019958496 218.58001709 218.039978027 217.33001709 218.380172729 218.659957886 218.929977417 219.150192261 219.329879761 219.470016479 219.579879761 219.619918823 219.610153198 219.579879761 219.610153198 219.690231323 219.780075073 219.789840698 219.630172729 219.150192261 218.309860229 218.39012146 218.450180054 218.399887085 218.31980896 218.339828491 218.47996521 218.649887085 218.740219116 218.779769897 218.830062866 218.910140991 218.970199585 218.879867554 218.540023804 217.899887085 216.939926147 215.749984741 219.309997559 219.610046387 219.75994873 219.58001709 219.160095215 218.809997559 218.690124512 218.709899902 218.729919434 218.75994873 218.890075684 219.070007324 219.120056152 218.92010498 218.479919434 217.890075684 217.130065918 218.470016479 218.789840698 219.059860229 219.280075073 219.440231323 219.559860229 219.659957886 219.720016479 219.729782104 219.690231323 219.659957886 219.679977417 219.729782104 219.749801636 219.599899292 219.139938354 218.320114136 218.649887085 218.669906616 218.549789429 218.459945679 218.510238647 218.700180054 218.879867554 218.919906616 218.89012146 218.879867554 218.959945679 219.029769897 218.919906616 218.540023804 217.859848022 216.89012146 215.740219116 219.400085449 219.779968262 219.940124512 219.719909668 219.299987793 218.959899902 218.840026855 218.83001709 218.83001709 218.850036621 218.930114746 219.039978027 219.049987793 218.850036621 218.400085449 217.749938965 216.930114746 218.639938354 218.979782104 219.269821167 219.479782104 219.599899292 219.670211792 219.710250854 219.760055542 219.780075073 219.769821167 219.720016479 219.710250854 219.749801636 219.760055542 219.610153198 219.150192261 218.340133667 218.879867554 218.850082397 218.720199585 218.64012146 218.720199585 218.899887085 219.060043335 219.06980896 219.010238647 218.97996521 219.020004272 219.049789429 218.939926147 218.560043335 217.879867554 216.899887085 215.740219116 219.570007324 219.949890137 220.070007324 219.83001709 219.459899902 219.17010498 219.039978027 218.999938965 218.979919434 218.979919434 218.999938965 219.059997559 219.019958496 218.799987793 218.320007324 217.630065918 216.769958496 218.940231323 219.280075073 219.539840698 219.720016479 219.780075073 219.769821167 219.740036011 219.749801636 219.760055542 219.760055542 219.729782104 219.720016479 219.749801636 219.760055542 219.619918823 219.179977417 218.400192261 219.049789429 218.97996521 218.850082397 218.810043335 218.89012146 219.040023804 219.180160522 219.209945679 219.180160522 219.120101929 219.089828491 219.029769897 218.870101929 218.510238647 217.830062866 216.839828491 215.689926147 219.799987793 220.130065918 220.140075684 219.900085449 219.590026855 219.380065918 219.269958496 219.209899902 219.180114746 219.17010498 219.140075684 219.100036621 218.989929199 218.709899902 218.17010498 217.440124512 216.590026855 219.380172729 219.679977417 219.860153198 219.949996948 219.940231323 219.869918823 219.809860229 219.789840698 219.769821167 219.740036011 219.690231323 219.679977417 219.720016479 219.740036011 219.599899292 219.179977417 218.420211792 219.149887085 219.06980896 218.990219116 218.970199585 219.040023804 219.160140991 219.279769897 219.359848022 219.370101929 219.290023804 219.149887085 218.970199585 218.72996521 218.339828491 217.649887085 216.669906616 215.549789429 220.059997559 220.299987793 220.219909668 219.940124512 219.690124512 219.549987793 219.479919434 219.440124512 219.440124512 219.430114746 219.320007324 219.17010498 218.959899902 218.58001709 217.949890137 217.17010498 216.390075684 219.869918823 220.110153198 220.190231323 220.159957886 220.090133667 220.010055542 219.960250854 219.940231323 219.900192261 219.820114136 219.720016479 219.690231323 219.729782104 219.729782104 219.590133667 219.170211792 218.420211792 219.22996521 219.180160522 219.149887085 219.180160522 219.220199585 219.290023804 219.370101929 219.470199585 219.520004272 219.450180054 219.22996521 218.939926147 218.629867554 218.169906616 217.450180054 216.490219116 215.430160522 220.299987793 220.479919434 220.289978027 219.969909668 219.739929199 219.660095215 219.620056152 219.620056152 219.680114746 219.690124512 219.539978027 219.289978027 218.979919434 218.519958496 217.789978027 216.949890137 216.229919434 220.320114136 220.479782104 220.460250854 220.349899292 220.229782104 220.150192261 220.130172729 220.130172729 220.090133667 219.990036011 219.880172729 219.829879761 219.829879761 219.800094604 219.619918823 219.199996948 218.429977417 219.350082397 219.350082397 219.39012146 219.459945679 219.470199585 219.470199585 219.490219116 219.560043335 219.629867554 219.56980896 219.350082397 219.040023804 218.669906616 218.129867554 217.359848022 216.419906616 215.439926147 220.539978027 220.640075684 220.380065918 220.019958496 219.799987793 219.719909668 219.67010498 219.709899902 219.83001709 219.870056152 219.719909668 219.430114746 219.100036621 218.610046387 217.809997559 216.910095215 216.209899902 220.659957886 220.740036011 220.670211792 220.519821167 220.360153198 220.240036011 220.190231323 220.199996948 220.179977417 220.130172729 220.059860229 220.050094604 220.019821167 219.929977417 219.710250854 219.289840698 218.550094604 219.540023804 219.600082397 219.700180054 219.779769897 219.760238647 219.689926147 219.629867554 219.649887085 219.700180054 219.669906616 219.499984741 219.209945679 218.830062866 218.240219116 217.430160522 216.490219116 215.549789429 220.739929199 220.769958496 220.469909668 220.130065918 219.92010498 219.799987793 219.709899902 219.739929199 219.880065918 219.949890137 219.799987793 219.519958496 219.219909668 218.75994873 217.949890137 216.999938965 216.279968262 220.889938354 220.920211792 220.829879761 220.650192261 220.409957886 220.210250854 220.099899292 220.070114136 220.099899292 220.139938354 220.179977417 220.220016479 220.190231323 220.059860229 219.809860229 219.409957886 218.710250854 219.779769897 219.89012146 219.999984741 220.060043335 220.010238647 219.910140991 219.810043335 219.779769897 219.799789429 219.770004272 219.629867554 219.379867554 218.990219116 218.379867554 217.529769897 216.600082397 215.669906616 220.900085449 220.850036621 220.570007324 220.279968262 220.100036621 219.959899902 219.809997559 219.779968262 219.900085449 219.969909668 219.83001709 219.559997559 219.289978027 218.870056152 218.090026855 217.110046387 216.33001709 221.039840698 221.030075073 220.920211792 220.690231323 220.380172729 220.090133667 219.909957886 219.869918823 219.920211792 220.039840698 220.179977417 220.300094604 220.300094604 220.159957886 219.900192261 219.490036011 218.849899292 207.77003479 207.390151978 207.160171509 207.000015259 206.959976196 207.000015259 207.060073853 207.100112915 207.10987854 207.149917603 207.18019104 207.189956665 207.259780884 207.549819946 208.080093384 208.669937134 209.120132446 208.379806519 207.919845581 207.609786987 207.450119019 207.410079956 207.390060425 207.3099823 207.209884644 207.200119019 207.320236206 207.530197144 207.740158081 207.97013855 208.330001831 208.870040894 209.539962769 210.160079956 208.45980835 207.610198975 207.059906006 206.749847412 206.610198975 206.539886475 206.450042725 206.289886475 206.150238037 206.1199646 206.180023193 206.309906006 206.499847412 206.860198975 207.450042725 208.260101318 209.169769287 207.589859009 207.200210571 206.939956665 206.850112915 206.879898071 206.959976196 206.959976196 206.919937134 206.910171509 206.970230103 207.029800415 207.069839478 207.209976196 207.589859009 208.18019104 208.77003479 209.18019104 208.109786987 207.580001831 207.189865112 207.010177612 206.999923706 207.030197144 206.990158081 206.930099487 206.97013855 207.109786987 207.320236206 207.550216675 207.820236206 208.22013855 208.769943237 209.439865112 210.050216675 208.229827881 207.479827881 207.039886475 206.840179443 206.760101318 206.680023193 206.53012085 206.360198975 206.260101318 206.240081787 206.240081787 206.249847412 206.360198975 206.689788818 207.320159912 208.180023193 209.160003662 207.52003479 207.10987854 206.85987854 206.810073853 206.899917603 206.970230103 206.919937134 206.830093384 206.810073853 206.870132446 206.93019104 206.979995728 207.169937134 207.60987854 208.240249634 208.85987854 209.299819946 207.879806519 207.320236206 206.930099487 206.789962769 206.850021362 206.89982605 206.850021362 206.8099823 206.859786987 207.010177612 207.200119019 207.430099487 207.709884644 208.109786987 208.64982605 209.289962769 209.910079956 208.070159912 207.400238037 207.03012085 206.900238037 206.860198975 206.749847412 206.550140381 206.389984131 206.3699646 206.419769287 206.410003662 206.340179443 206.349945068 206.610198975 207.200042725 208.079925537 209.150238037 207.529800415 207.120132446 206.85987854 206.810073853 206.899917603 206.950210571 206.890151978 206.799819946 206.799819946 206.850112915 206.879898071 206.93019104 207.129898071 207.589859009 208.240249634 208.910171509 209.450210571 207.729904175 207.180099487 206.8099823 206.760177612 206.879806519 206.930099487 206.870040894 206.8099823 206.890060425 207.050216675 207.200119019 207.390060425 207.669845581 208.050216675 208.539962769 209.129806519 209.769943237 207.970062256 207.300140381 206.900238037 206.769866943 206.740081787 206.599945068 206.389984131 206.260101318 206.340179443 206.479827881 206.519866943 206.450042725 206.419769287 206.599945068 207.1199646 207.999847412 209.139984131 207.540054321 207.100112915 206.799819946 206.68019104 206.720230103 206.759780884 206.740249634 206.709976196 206.750015259 206.790054321 206.810073853 206.85987854 207.089859009 207.560073853 208.200210571 208.919937134 209.589859009 207.609786987 207.030197144 206.669845581 206.660079956 206.830001831 206.890060425 206.820236206 206.8099823 206.919845581 207.070236206 207.180099487 207.339767456 207.629806519 208.010177612 208.430099487 208.97013855 209.620040894 207.860198975 207.139984131 206.639984131 206.439788818 206.400238037 206.300140381 206.1199646 206.059906006 206.200042725 206.389984131 206.470062256 206.479827881 206.510101318 206.680023193 207.130218506 207.990081787 209.169769287 207.479995728 207.02003479 206.649917603 206.450210571 206.410171509 206.439956665 206.479995728 206.540054321 206.60987854 206.660171509 206.689956665 206.799819946 207.080093384 207.560073853 208.189956665 208.910171509 209.669937134 207.459884644 206.820236206 206.410079956 206.390060425 206.570236206 206.660079956 206.620040894 206.660079956 206.8099823 206.950119019 207.050216675 207.209884644 207.519943237 207.910079956 208.3099823 208.8099823 209.47013855 207.740081787 207.010101318 206.450042725 206.169769287 206.1199646 206.059906006 205.979827881 205.979827881 206.1199646 206.28012085 206.380218506 206.470062256 206.579925537 206.789886475 207.229827881 208.079925537 209.300140381 207.450210571 206.970230103 206.549819946 206.279800415 206.200210571 206.229995728 206.310073853 206.399917603 206.500015259 206.549819946 206.600112915 206.750015259 207.089859009 207.580093384 208.18019104 208.899917603 209.709976196 207.269943237 206.589767456 206.140060425 206.100021362 206.289962769 206.390060425 206.39982605 206.479904175 206.629806519 206.760177612 206.870040894 207.0599823 207.390060425 207.769943237 208.14982605 208.620040894 209.280197144 207.689788818 207.019866943 206.470062256 206.189788818 206.1199646 206.110198975 206.099945068 206.130218506 206.220062256 206.320159912 206.400238037 206.519866943 206.680023193 206.900238037 207.340179443 208.229827881 209.490081787 207.509780884 207.009780884 206.569839478 206.310073853 206.240249634 206.27003479 206.350112915 206.43019104 206.500015259 206.540054321 206.589859009 206.750015259 207.060073853 207.509780884 208.089859009 208.839859009 209.700210571 207.080001831 206.430099487 206.019943237 205.999923706 206.189865112 206.3099823 206.330001831 206.390060425 206.519943237 206.640060425 206.780197144 206.990158081 207.289962769 207.600021362 207.950119019 208.439865112 209.120040894 207.729827881 207.160003662 206.70980835 206.450042725 206.349945068 206.320159912 206.300140381 206.329925537 206.380218506 206.430023193 206.490081787 206.599945068 206.740081787 206.919769287 207.3699646 208.320159912 209.660003662 207.580093384 207.060073853 206.629898071 206.410171509 206.390151978 206.439956665 206.470230103 206.509780884 206.529800415 206.560073853 206.620132446 206.729995728 206.959976196 207.339859009 207.939956665 208.759780884 209.700210571 206.939865112 206.379806519 206.050216675 206.070236206 206.249923706 206.350021362 206.359786987 206.390060425 206.47013855 206.609786987 206.780197144 206.990158081 207.209884644 207.430099487 207.760177612 208.300216675 209.019943237 207.840179443 207.360198975 206.95980835 206.700042725 206.53012085 206.410003662 206.329925537 206.320159912 206.349945068 206.400238037 206.499847412 206.6199646 206.729827881 206.860198975 207.309906006 208.340179443 209.78012085 207.549819946 206.970230103 206.560073853 206.419937134 206.439956665 206.500015259 206.52003479 206.500015259 206.500015259 206.549819946 206.60987854 206.709976196 206.879898071 207.240249634 207.870132446 208.750015259 209.720230103 206.890060425 206.410079956 206.14982605 206.160079956 206.280197144 206.330001831 206.339767456 206.370040894 206.439865112 206.580001831 206.780197144 206.979904175 207.129806519 207.289962769 207.660079956 208.260177612 208.999923706 207.979827881 207.510101318 207.110198975 206.769866943 206.510101318 206.289886475 206.169769287 206.150238037 206.189788818 206.269866943 206.400238037 206.570159912 206.680023193 206.829925537 207.309906006 208.389984131 209.900238037 207.379898071 206.779800415 206.410171509 206.330093384 206.379898071 206.43019104 206.439956665 206.419937134 206.450210571 206.52003479 206.620132446 206.750015259 206.950210571 207.339859009 208.009780884 208.879898071 209.779800415 206.919845581 206.510177612 206.260177612 206.189865112 206.180099487 206.189865112 206.240158081 206.330001831 206.419845581 206.550216675 206.740158081 206.939865112 207.070236206 207.229904175 207.64982605 208.320236206 209.039962769 208.090179443 207.570159912 207.110198975 206.70980835 206.389984131 206.160003662 206.070159912 206.099945068 206.150238037 206.220062256 206.360198975 206.559906006 206.720062256 206.919769287 207.450042725 208.550140381 210.050140381 207.18019104 206.620132446 206.339859009 206.299819946 206.339859009 206.370132446 206.379898071 206.410171509 206.459976196 206.540054321 206.669937134 206.85987854 207.140151978 207.569839478 208.240249634 209.040054321 209.830093384 207.019943237 206.620040894 206.339767456 206.189865112 206.070236206 206.0599823 206.169845581 206.339767456 206.459884644 206.5599823 206.729904175 206.939865112 207.070236206 207.240158081 207.700119019 208.39982605 209.0599823 208.099945068 207.550140381 207.050140381 206.639984131 206.329925537 206.180023193 206.189788818 206.269866943 206.340179443 206.360198975 206.439788818 206.610198975 206.809906006 207.070159912 207.650238037 208.740081787 210.180023193 207.049819946 206.569839478 206.379898071 206.370132446 206.390151978 206.379898071 206.390151978 206.439956665 206.509780884 206.589859009 206.709976196 206.919937134 207.229995728 207.700210571 208.339859009 209.089859009 209.830093384 207.080001831 206.700119019 206.430099487 206.229904175 206.0599823 206.019943237 206.169845581 206.379806519 206.519943237 206.600021362 206.760177612 206.97013855 207.109786987 207.280197144 207.72013855 208.390060425 209.010177612 207.999847412 207.439788818 206.95980835 206.610198975 206.380218506 206.309906006 206.3699646 206.479827881 206.53012085 206.519866943 206.550140381 206.680023193 206.8699646 207.180023193 207.800140381 208.860198975 210.240081787 206.970230103 206.549819946 206.43019104 206.470230103 206.470230103 206.419937134 206.410171509 206.450210571 206.500015259 206.549819946 206.640151978 206.839859009 207.169937134 207.660171509 208.299819946 209.040054321 209.799819946 207.039962769 206.680099487 206.47013855 206.320236206 206.129806519 206.050216675 206.169845581 206.370040894 206.499923706 206.570236206 206.729904175 206.950119019 207.100021362 207.260177612 207.669845581 208.330001831 208.939865112 207.809906006 207.249847412 206.829925537 206.570159912 206.450042725 206.410003662 206.430023193 206.490081787 206.519866943 206.519866943 206.550140381 206.660003662 206.860198975 207.220062256 207.880218506 208.910003662 210.229827881 206.870132446 206.459976196 206.390151978 206.479995728 206.52003479 206.450210571 206.399917603 206.399917603 206.419937134 206.439956665 206.509780884 206.709976196 207.069839478 207.589859009 208.250015259 209.000015259 209.790054321 206.959884644 206.600021362 206.47013855 206.390060425 206.22013855 206.089767456 206.140060425 206.3099823 206.419845581 206.47013855 206.609786987 206.820236206 206.990158081 207.189865112 207.589767456 208.249923706 208.879806519 207.639984131 207.079925537 206.720062256 206.559906006 206.510101318 206.45980835 206.410003662 206.380218506 206.380218506 206.400238037 206.470062256 206.599945068 206.840179443 207.269866943 207.979827881 208.999847412 210.220062256 206.720230103 206.330093384 206.299819946 206.439956665 206.529800415 206.490249634 206.43019104 206.399917603 206.370132446 206.350112915 206.410171509 206.649917603 207.080093384 207.649917603 208.299819946 209.009780884 209.790054321 206.910079956 206.550216675 206.450119019 206.39982605 206.249923706 206.109786987 206.140060425 206.300216675 206.410079956 206.419845581 206.479904175 206.64982605 206.839767456 207.080001831 207.519943237 208.160079956 208.800216675 207.579925537 207.03012085 206.720062256 206.610198975 206.579925537 206.53012085 206.45980835 206.389984131 206.349945068 206.360198975 206.419769287 206.579925537 206.889984131 207.419769287 208.180023193 209.150238037 210.240081787 206.60987854 206.259780884 206.259780884 206.410171509 206.509780884 206.509780884 206.490249634 206.470230103 206.43019104 206.370132446 206.399917603 206.649917603 207.129898071 207.729995728 208.35987854 209.000015259 209.729995728 206.97013855 206.570236206 206.39982605 206.330001831 206.200119019 206.100021362 206.189865112 206.39982605 206.519943237 206.479904175 206.450119019 206.550216675 206.749923706 207.010177612 207.450119019 208.050216675 208.669845581 207.599945068 207.079925537 206.789886475 206.689788818 206.639984131 206.610198975 206.579925537 206.53012085 206.490081787 206.450042725 206.470062256 206.630218506 206.990081787 207.610198975 208.419769287 209.340179443 210.309906006 206.589859009 206.290054321 206.27003479 206.35987854 206.43019104 206.470230103 206.509780884 206.560073853 206.540054321 206.470230103 206.450210571 206.669937134 207.120132446 207.720230103 208.299819946 208.899917603 209.629898071 207.050216675 206.600021362 206.320236206 206.180099487 206.0599823 206.030197144 206.200119019 206.47013855 206.600021362 206.550216675 206.47013855 206.550216675 206.740158081 206.999923706 207.379806519 207.89982605 208.510177612 207.590179443 207.1199646 206.840179443 206.689788818 206.610198975 206.599945068 206.630218506 206.660003662 206.630218506 206.570159912 206.559906006 206.700042725 207.099945068 207.760101318 208.599945068 209.490081787 210.3699646 206.60987854 206.350112915 206.290054321 206.290054321 206.290054321 206.339859009 206.459976196 206.580093384 206.600112915 206.540054321 206.52003479 206.689956665 207.060073853 207.580093384 208.149917603 208.790054321 209.600112915 207.070236206 206.580001831 206.229904175 206.010177612 205.890060425 205.930099487 206.140060425 206.39982605 206.519943237 206.47013855 206.450119019 206.550216675 206.749923706 206.999923706 207.330001831 207.800216675 208.39982605 207.470062256 207.050140381 206.789886475 206.6199646 206.519866943 206.510101318 206.570159912 206.630218506 206.630218506 206.610198975 206.630218506 206.800140381 207.180023193 207.840179443 208.689788818 209.559906006 210.430023193 206.600112915 206.339859009 206.250015259 206.189956665 206.169937134 206.240249634 206.379898071 206.52003479 206.580093384 206.580093384 206.600112915 206.729995728 207.009780884 207.439956665 208.02003479 208.740249634 209.640151978 207.010177612 206.530197144 206.14982605 205.910079956 205.8099823 205.859786987 206.039962769 206.22013855 206.269943237 206.249923706 206.3099823 206.490158081 206.729904175 206.990158081 207.3099823 207.780197144 208.379806519 207.300140381 206.900238037 206.669769287 206.539886475 206.470062256 206.479827881 206.519866943 206.539886475 206.539886475 206.570159912 206.689788818 206.889984131 207.260101318 207.8699646 208.689788818 209.570159912 210.410003662 206.52003479 206.27003479 206.18019104 206.140151978 206.140151978 206.220230103 206.350112915 206.450210571 206.509780884 206.569839478 206.649917603 206.77003479 206.979995728 207.35987854 207.939956665 208.720230103 209.629898071 206.879806519 206.450119019 206.109786987 205.890060425 205.820236206 205.870040894 205.999923706 206.080001831 206.0599823 206.039962769 206.14982605 206.390060425 206.669845581 206.950119019 207.320236206 207.820236206 208.410079956 207.150238037 206.769866943 206.570159912 206.510101318 206.539886475 206.579925537 206.570159912 206.499847412 206.470062256 206.559906006 206.729827881 206.970062256 207.309906006 207.8699646 208.660003662 209.499847412 210.289886475 206.390151978 206.149917603 206.100112915 206.10987854 206.149917603 206.240249634 206.330093384 206.390151978 206.439956665 206.529800415 206.629898071 206.750015259 206.93019104 207.279800415 207.870132446 208.620132446 209.470230103 206.729904175 206.320236206 206.030197144 205.870040894 205.850021362 205.910079956 205.999923706 206.030197144 205.979904175 205.939865112 206.050216675 206.289962769 206.570236206 206.870040894 207.289962769 207.820236206 208.379806519 207.070159912 206.689788818 206.53012085 206.539886475 206.650238037 206.720062256 206.660003662 206.539886475 206.490081787 206.579925537 206.78012085 207.019866943 207.349945068 207.880218506 208.590179443 209.360198975 210.070159912 206.250015259 206.029800415 206.000015259 206.049819946 206.10987854 206.189956665 206.27003479 206.330093384 206.410171509 206.490249634 206.569839478 206.660171509 206.850112915 207.220230103 207.77003479 208.450210571 209.200210571 206.580001831 206.169845581 205.910079956 205.800216675 205.8099823 205.890060425 205.97013855 205.999923706 205.97013855 205.930099487 205.999923706 206.209884644 206.479904175 206.789962769 207.209884644 207.740158081 208.269943237 206.999847412 206.650238037 206.499847412 206.550140381 206.689788818 206.749847412 206.689788818 206.590179443 206.559906006 206.639984131 206.820159912 207.059906006 207.410003662 207.910003662 208.550140381 209.220062256 209.860198975 206.10987854 205.919937134 205.919937134 205.979995728 206.049819946 206.100112915 206.18019104 206.290054321 206.390151978 206.459976196 206.479995728 206.549819946 206.77003479 207.169937134 207.669937134 208.250015259 208.93019104 206.47013855 206.039962769 205.800216675 205.740158081 205.780197144 205.839767456 205.910079956 205.959884644 205.959884644 205.930099487 205.990158081 206.169845581 206.419845581 206.72013855 207.120040894 207.629806519 208.140060425 206.889984131 206.559906006 206.45980835 206.559906006 206.689788818 206.720062256 206.669769287 206.639984131 206.660003662 206.740081787 206.8699646 207.130218506 207.510101318 207.999847412 208.559906006 209.139984131 209.749847412 205.979995728 205.819839478 205.850112915 205.959976196 206.02003479 206.060073853 206.120132446 206.240249634 206.35987854 206.410171509 206.43019104 206.509780884 206.759780884 207.149917603 207.589859009 208.069839478 208.709976196 206.450119019 205.990158081 205.769943237 205.749923706 205.800216675 205.830001831 205.870040894 205.89982605 205.919845581 205.930099487 205.999923706 206.160079956 206.390060425 206.669845581 207.050216675 207.510177612 208.030197144 206.70980835 206.430023193 206.419769287 206.579925537 206.700042725 206.700042725 206.669769287 206.700042725 206.760101318 206.820159912 206.939788818 207.220062256 207.639984131 208.099945068 208.590179443 209.139984131 209.749847412 205.910171509 205.759780884 205.830093384 205.959976196 206.060073853 206.089859009 206.100112915 206.18019104 206.279800415 206.350112915 206.390151978 206.509780884 206.77003479 207.10987854 207.470230103 207.890151978 208.540054321 206.490158081 206.050216675 205.859786987 205.830001831 205.859786987 205.850021362 205.839767456 205.859786987 205.890060425 205.939865112 206.019943237 206.180099487 206.379806519 206.640060425 206.979904175 207.419845581 207.939865112 206.519866943 206.320159912 206.389984131 206.610198975 206.760101318 206.740081787 206.720062256 206.760101318 206.829925537 206.8699646 206.999847412 207.309906006 207.729827881 208.150238037 208.610198975 209.169769287 209.829925537 205.93019104 205.750015259 205.799819946 205.950210571 206.069839478 206.10987854 206.100112915 206.129898071 206.209976196 206.299819946 206.379898071 206.529800415 206.750015259 207.029800415 207.330093384 207.750015259 208.399917603 206.600021362 206.169845581 205.959884644 205.89982605 205.890060425 205.850021362 205.8099823 205.8099823 205.859786987 205.939865112 206.039962769 206.180099487 206.370040894 206.620040894 206.950119019 207.359786987 207.859786987 206.389984131 206.240081787 206.3699646 206.6199646 206.789886475 206.800140381 206.78012085 206.809906006 206.860198975 206.910003662 207.050140381 207.360198975 207.740081787 208.110198975 208.570159912 209.200042725 209.8699646 206.049819946 205.790054321 205.77003479 205.879898071 206.02003479 206.080093384 206.100112915 206.120132446 206.200210571 206.290054321 206.390151978 206.509780884 206.689956665 206.919937134 207.229995728 207.660171509 208.319839478 206.760177612 206.339767456 206.0599823 205.930099487 205.859786987 205.8099823 205.760177612 205.760177612 205.820236206 205.919845581 206.019943237 206.14982605 206.339767456 206.620040894 206.990158081 207.390060425 207.839767456 206.309906006 206.200042725 206.329925537 206.599945068 206.789886475 206.840179443 206.849945068 206.8699646 206.900238037 206.950042725 207.099945068 207.360198975 207.660003662 207.990081787 208.479827881 209.169769287 209.849945068 206.229995728 205.890151978 205.77003479 205.810073853 205.93019104 206.040054321 206.120132446 206.18019104 206.259780884 206.330093384 206.390151978 206.470230103 206.620132446 206.850112915 207.18019104 207.629898071 208.240249634 206.97013855 206.519943237 206.169845581 205.950119019 205.830001831 205.769943237 205.72013855 205.72013855 205.780197144 205.870040894 205.97013855 206.089767456 206.3099823 206.660079956 207.089767456 207.499923706 207.89982605 206.289886475 206.180023193 206.309906006 206.570159912 206.800140381 206.900238037 206.939788818 206.970062256 206.999847412 207.03012085 207.139984131 207.329925537 207.550140381 207.860198975 208.389984131 209.099945068 209.740081787 206.43019104 206.02003479 205.830093384 205.819839478 205.919937134 206.040054321 206.149917603 206.259780884 206.350112915 206.390151978 206.390151978 206.43019104 206.569839478 206.819839478 207.160171509 207.580093384 208.100112915 207.22013855 206.709884644 206.280197144 205.990158081 205.830001831 205.740158081 205.689865112 205.700119019 205.749923706 205.820236206 205.89982605 206.030197144 206.289962769 206.700119019 207.189865112 207.600021362 207.97013855 206.309906006 206.220062256 206.349945068 206.599945068 206.849945068 206.990081787 207.059906006 207.090179443 207.1199646 207.1199646 207.169769287 207.28012085 207.450042725 207.769866943 208.320159912 208.999847412 209.579925537 206.629898071 206.189956665 205.959976196 205.919937134 205.979995728 206.069839478 206.18019104 206.310073853 206.419937134 206.450210571 206.410171509 206.43019104 206.580093384 206.839859009 207.160171509 207.52003479 207.93019104 207.439865112 206.870040894 206.390060425 206.050216675 205.830001831 205.700119019 205.629806519 205.629806519 205.680099487 205.760177612 205.839767456 205.990158081 206.289962769 206.72013855 207.209884644 207.629806519 207.990158081 206.389984131 206.320159912 206.450042725 206.689788818 206.930023193 207.079925537 207.169769287 207.20980835 207.220062256 207.220062256 207.220062256 207.260101318 207.400238037 207.729827881 208.260101318 208.889984131 209.439788818 206.850112915 206.410171509 206.149917603 206.069839478 206.080093384 206.129898071 206.209976196 206.339859009 206.450210571 206.490249634 206.459976196 206.470230103 206.60987854 206.85987854 207.18019104 207.52003479 207.879898071 207.64982605 206.999923706 206.510177612 206.140060425 205.870040894 205.640060425 205.519943237 205.499923706 205.550216675 205.629806519 205.769943237 205.979904175 206.300216675 206.72013855 207.169845581 207.580001831 208.010177612 206.519866943 206.45980835 206.570159912 206.78012085 206.979827881 207.130218506 207.240081787 207.320159912 207.360198975 207.329925537 207.269866943 207.269866943 207.3699646 207.680023193 208.200042725 208.789886475 209.340179443 207.100112915 206.640151978 206.339859009 206.200210571 206.169937134 206.200210571 206.279800415 206.35987854 206.450210571 206.490249634 206.479995728 206.490249634 206.60987854 206.870132446 207.220230103 207.620132446 208.000015259 207.820236206 207.140060425 206.64982605 206.300216675 205.959884644 205.620040894 205.39982605 205.339767456 205.370040894 205.450119019 205.640060425 205.939865112 206.320236206 206.729904175 207.120040894 207.550216675 208.0599823 206.660003662 206.599945068 206.669769287 206.820159912 206.990081787 207.180023193 207.349945068 207.490081787 207.539886475 207.479827881 207.3699646 207.289886475 207.329925537 207.590179443 208.070159912 208.669769287 209.289886475 207.339859009 206.850112915 206.470230103 206.279800415 206.259780884 206.319839478 206.390151978 206.43019104 206.450210571 206.450210571 206.439956665 206.470230103 206.580093384 206.850112915 207.259780884 207.729995728 208.169937134 207.959884644 207.269943237 206.820236206 206.490158081 206.089767456 205.640060425 205.330001831 205.22013855 205.229904175 205.289962769 205.490158081 205.870040894 206.330001831 206.740158081 207.120040894 207.589767456 208.200119019 206.78012085 206.700042725 206.720062256 206.809906006 206.990081787 207.249847412 207.519866943 207.720062256 207.749847412 207.650238037 207.470062256 207.320159912 207.300140381 207.479827881 207.919769287 208.53012085 209.200042725 207.500015259 206.979995728 206.549819946 206.310073853 206.310073853 206.439956665 206.529800415 206.509780884 206.43019104 206.379898071 206.379898071 206.450210571 206.580093384 206.839859009 207.259780884 207.790054321 208.259780884 208.0599823 207.359786987 206.939865112 206.609786987 206.160079956 205.629806519 205.249923706 205.129806519 205.140060425 205.200119019 205.410079956 205.820236206 206.320236206 206.740158081 207.140060425 207.660079956 208.350021362 206.860198975 206.760101318 206.740081787 206.809906006 207.019866943 207.349945068 207.700042725 207.919769287 207.939788818 207.789886475 207.599945068 207.419769287 207.320159912 207.419769287 207.78012085 208.3699646 209.070159912 207.569839478 207.029800415 206.569839478 206.319839478 206.350112915 206.529800415 206.660171509 206.600112915 206.459976196 206.370132446 206.379898071 206.479995728 206.620132446 206.870132446 207.259780884 207.759780884 208.250015259 208.089767456 207.410079956 206.999923706 206.660079956 206.160079956 205.5599823 205.14982605 205.039962769 205.120040894 205.22013855 205.439865112 205.820236206 206.269943237 206.700119019 207.120040894 207.680099487 208.439865112 206.950042725 206.840179443 206.78012085 206.840179443 207.059906006 207.430023193 207.809906006 208.039886475 208.039886475 207.910003662 207.740081787 207.579925537 207.450042725 207.450042725 207.689788818 208.220062256 208.900238037 207.580093384 207.049819946 206.60987854 206.35987854 206.390151978 206.580093384 206.729995728 206.689956665 206.549819946 206.450210571 206.439956665 206.52003479 206.660171509 206.890151978 207.240249634 207.700210571 208.220230103 208.089767456 207.439865112 207.050216675 206.680099487 206.120040894 205.47013855 205.039962769 204.959884644 205.109786987 205.289962769 205.530197144 205.859786987 206.240158081 206.609786987 207.050216675 207.660079956 208.459884644 207.090179443 206.950042725 206.8699646 206.889984131 207.110198975 207.470062256 207.8699646 208.090179443 208.1199646 208.03012085 207.919769287 207.78012085 207.610198975 207.510101318 207.630218506 208.050140381 208.70980835 207.560073853 207.080093384 206.68019104 206.439956665 206.410171509 206.580093384 206.729995728 206.77003479 206.689956665 206.60987854 206.560073853 206.560073853 206.649917603 206.85987854 207.18019104 207.629898071 208.229995728 208.0599823 207.47013855 207.080001831 206.669845581 206.100021362 205.450119019 205.010177612 204.919845581 205.089767456 205.330001831 205.600021362 205.879806519 206.180099487 206.499923706 206.959884644 207.620040894 208.459884644 207.240081787 207.059906006 206.939788818 206.930023193 207.1199646 207.479827881 207.880218506 208.150238037 208.229827881 208.189788818 208.099945068 207.95980835 207.749847412 207.539886475 207.53012085 207.860198975 208.510101318 207.560073853 207.129898071 206.77003479 206.500015259 206.410171509 206.509780884 206.689956665 206.799819946 206.830093384 206.799819946 206.709976196 206.620132446 206.629898071 206.810073853 207.100112915 207.529800415 208.200210571 207.999923706 207.47013855 207.0599823 206.609786987 206.019943237 205.450119019 205.050216675 204.930099487 205.039962769 205.269943237 205.570236206 205.850021362 206.109786987 206.430099487 206.89982605 207.570236206 208.430099487 207.349945068 207.110198975 206.950042725 206.930023193 207.070159912 207.410003662 207.820159912 208.150238037 208.28012085 208.289886475 208.220062256 208.070159912 207.840179443 207.570159912 207.45980835 207.669769287 208.260101318 207.569839478 207.18019104 206.830093384 206.52003479 206.35987854 206.410171509 206.580093384 206.750015259 206.85987854 206.899917603 206.819839478 206.700210571 206.68019104 206.819839478 207.040054321 207.390151978 208.029800415 207.919845581 207.419845581 206.950119019 206.419845581 205.870040894 205.430099487 205.14982605 204.990158081 204.97013855 205.120040894 205.430099487 205.769943237 206.0599823 206.390060425 206.870040894 207.510177612 208.320236206 207.380218506 207.099945068 206.919769287 206.8699646 206.95980835 207.20980835 207.570159912 207.900238037 208.090179443 208.169769287 208.180023193 208.099945068 207.900238037 207.639984131 207.45980835 207.53012085 207.990081787 207.600112915 207.220230103 206.839859009 206.490249634 206.290054321 206.310073853 206.439956665 206.580093384 206.700210571 206.779800415 206.779800415 206.720230103 206.759780884 206.899917603 207.049819946 207.259780884 207.77003479 207.830001831 207.339767456 206.789962769 206.180099487 205.680099487 205.410079956 205.269943237 205.089767456 204.919845581 204.950119019 205.240158081 205.629806519 205.999923706 206.379806519 206.859786987 207.439865112 208.14982605 207.360198975 207.079925537 206.910003662 206.820159912 206.789886475 206.910003662 207.1199646 207.380218506 207.610198975 207.789886475 207.950042725 208.010101318 207.919769287 207.70980835 207.499847412 207.45980835 207.760101318 207.649917603 207.259780884 206.839859009 206.450210571 206.229995728 206.209976196 206.299819946 206.35987854 206.43019104 206.500015259 206.549819946 206.60987854 206.740249634 206.939956665 207.089859009 207.209976196 207.580093384 207.740158081 207.249923706 206.64982605 205.999923706 205.5599823 205.439865112 205.430099487 205.269943237 204.97013855 204.859786987 205.080001831 205.510177612 205.939865112 206.350021362 206.830001831 207.359786987 207.990158081 207.349945068 207.099945068 206.939788818 206.800140381 206.650238037 206.559906006 206.590179443 206.740081787 206.999847412 207.320159912 207.610198975 207.800140381 207.800140381 207.680023193 207.499847412 207.430023193 207.610198975 207.700210571 207.259780884 206.819839478 206.399917603 206.160171509 206.100112915 206.129898071 206.140151978 206.160171509 206.240249634 206.330093384 206.43019104 206.620132446 206.890151978 207.10987854 207.250015259 207.529800415 207.640060425 207.160079956 206.570236206 205.950119019 205.550216675 205.519943237 205.600021362 205.47013855 205.129806519 204.919845581 205.080001831 205.47013855 205.89982605 206.3099823 206.760177612 207.289962769 207.919845581 207.360198975 207.130218506 206.970062256 206.749847412 206.479827881 206.240081787 206.139984131 206.240081787 206.550140381 206.95980835 207.340179443 207.539886475 207.590179443 207.53012085 207.450042725 207.410003662 207.570159912 207.700210571 207.220230103 206.759780884 206.339859009 206.060073853 205.93019104 205.919937134 205.939956665 206.000015259 206.129898071 206.259780884 206.35987854 206.529800415 206.799819946 207.100112915 207.319839478 207.600112915 207.550216675 207.089767456 206.5599823 205.990158081 205.609786987 205.5599823 205.669845581 205.609786987 205.350021362 205.160079956 205.240158081 205.550216675 205.910079956 206.269943237 206.689865112 207.229904175 207.910079956 207.400238037 207.150238037 206.919769287 206.6199646 206.269866943 205.970062256 205.820159912 205.930023193 206.289886475 206.769866943 207.150238037 207.329925537 207.380218506 207.380218506 207.389984131 207.430023193 207.590179443 207.660171509 207.10987854 206.68019104 206.279800415 205.950210571 205.740249634 205.669937134 205.720230103 205.870132446 206.089859009 206.27003479 206.379898071 206.490249634 206.729995728 207.060073853 207.370132446 207.669937134 207.530197144 207.109786987 206.64982605 206.109786987 205.680099487 205.530197144 205.570236206 205.589767456 205.47013855 205.370040894 205.439865112 205.669845581 205.959884644 206.260177612 206.640060425 207.160079956 207.870040894 207.439788818 207.130218506 206.820159912 206.450042725 206.050140381 205.740081787 205.599945068 205.720062256 206.079925537 206.559906006 206.939788818 207.1199646 207.20980835 207.300140381 207.380218506 207.45980835 207.6199646 207.580093384 206.979995728 206.589859009 206.27003479 205.910171509 205.60987854 205.470230103 205.490249634 205.649917603 205.879898071 206.080093384 206.209976196 206.330093384 206.580093384 206.959976196 207.35987854 207.709976196 207.629806519 207.280197144 206.859786987 206.320236206 205.800216675 205.479904175 205.410079956 205.430099487 205.419845581 205.410079956 205.490158081 205.669845581 205.930099487 206.229904175 206.600021362 207.089767456 207.780197144 207.470062256 207.150238037 206.78012085 206.349945068 205.919769287 205.6199646 205.479827881 205.539886475 205.820159912 206.189788818 206.519866943 206.749847412 206.95980835 207.189788818 207.360198975 207.450042725 207.599945068 207.509780884 206.85987854 206.549819946 206.299819946 205.970230103 205.620132446 205.390151978 205.310073853 205.339859009 205.43019104 205.580093384 205.740249634 205.970230103 206.310073853 206.779800415 207.279800415 207.700210571 207.8099823 207.530197144 207.120040894 206.539962769 205.919845581 205.499923706 205.320236206 205.269943237 205.249923706 205.260177612 205.320236206 205.499923706 205.789962769 206.129806519 206.539962769 207.039962769 207.709884644 207.499847412 207.200042725 206.840179443 206.360198975 205.930023193 205.650238037 205.519866943 205.479827881 205.539886475 205.720062256 205.950042725 206.220062256 206.579925537 206.950042725 207.20980835 207.360198975 207.53012085 207.470230103 206.810073853 206.549819946 206.350112915 206.02003479 205.649917603 205.379898071 205.200210571 205.060073853 204.979995728 205.009780884 205.200210571 205.549819946 206.02003479 206.580093384 207.149917603 207.669937134 207.959884644 207.72013855 207.280197144 206.660079956 206.039962769 205.600021362 205.379806519 205.260177612 205.140060425 205.080001831 205.120040894 205.280197144 205.580001831 205.990158081 206.47013855 207.019943237 207.700119019 207.53012085 207.300140381 206.919769287 206.400238037 205.970062256 205.760101318 205.660003662 205.519866943 205.380218506 205.329925537 205.430023193 205.70980835 206.1199646 206.579925537 206.950042725 207.20980835 207.45980835 207.509780884 206.879898071 206.60987854 206.370132446 205.979995728 205.580093384 205.319839478 205.129898071 204.93019104 204.759780884 204.720230103 204.919937134 205.310073853 205.839859009 206.43019104 207.040054321 207.60987854 207.990158081 207.760177612 207.3099823 206.680099487 206.089767456 205.740158081 205.570236206 205.39982605 205.209884644 205.0599823 205.050216675 205.180099487 205.47013855 205.890060425 206.39982605 206.999923706 207.729904175 207.550140381 207.349945068 206.950042725 206.380218506 205.939788818 205.800140381 205.769866943 205.599945068 205.329925537 205.139984131 205.150238037 205.400238037 205.789886475 206.249847412 206.689788818 207.079925537 207.430023193 207.640151978 207.029800415 206.709976196 206.350112915 205.850112915 205.399917603 205.149917603 205.02003479 204.899917603 204.779800415 204.77003479 204.939956665 205.299819946 205.779800415 206.330093384 206.919937134 207.52003479 207.89982605 207.689865112 207.289962769 206.709884644 206.180099487 205.879806519 205.729904175 205.589767456 205.370040894 205.189865112 205.14982605 205.260177612 205.510177612 205.870040894 206.350021362 206.959884644 207.729904175 207.550140381 207.349945068 206.939788818 206.340179443 205.910003662 205.800140381 205.789886475 205.630218506 205.320159912 205.090179443 205.110198975 205.320159912 205.639984131 206.03012085 206.479827881 206.979827881 207.430023193 207.799819946 207.169937134 206.77003479 206.319839478 205.750015259 205.27003479 205.009780884 204.919937134 204.899917603 204.899917603 204.939956665 205.060073853 205.310073853 205.709976196 206.209976196 206.779800415 207.399917603 207.749923706 207.589767456 207.320236206 206.859786987 206.359786987 206.019943237 205.850021362 205.72013855 205.530197144 205.370040894 205.300216675 205.390060425 205.620040894 205.930099487 206.330001831 206.879806519 207.64982605 207.510101318 207.320159912 206.950042725 206.410003662 206.010101318 205.889984131 205.820159912 205.610198975 205.309906006 205.1199646 205.160003662 205.329925537 205.579925537 205.880218506 206.309906006 206.849945068 207.380218506 207.919937134 207.220230103 206.759780884 206.299819946 205.759780884 205.279800415 205.009780884 204.919937134 204.959976196 205.040054321 205.089859009 205.120132446 205.240249634 205.560073853 206.049819946 206.620132446 207.279800415 207.609786987 207.479904175 207.379806519 207.080001831 206.609786987 206.169845581 205.910079956 205.800216675 205.689865112 205.530197144 205.39982605 205.450119019 205.689865112 206.010177612 206.350021362 206.830001831 207.5599823 207.430023193 207.269866943 207.010101318 206.630218506 206.300140381 206.099945068 205.910003662 205.639984131 205.349945068 205.189788818 205.20980835 205.329925537 205.490081787 205.720062256 206.110198975 206.680023193 207.260101318 207.939956665 207.189956665 206.709976196 206.310073853 205.850112915 205.419937134 205.120132446 205.02003479 205.089859009 205.209976196 205.240249634 205.189956665 205.200210571 205.450210571 205.899917603 206.490249634 207.149917603 207.479904175 207.379806519 207.410079956 207.269943237 206.859786987 206.350021362 206.010177612 205.910079956 205.839767456 205.669845581 205.479904175 205.459884644 205.700119019 206.0599823 206.410079956 206.839767456 207.519943237 207.320159912 207.200042725 207.079925537 206.860198975 206.599945068 206.309906006 205.999847412 205.700042725 205.450042725 205.320159912 205.249847412 205.289886475 205.400238037 205.579925537 205.930023193 206.479827881 207.110198975 207.939956665 207.169937134 206.729995728 206.370132446 205.970230103 205.540054321 205.229995728 205.120132446 205.229995728 205.410171509 205.470230103 205.379898071 205.319839478 205.479995728 205.870132446 206.399917603 207.040054321 207.430099487 207.289962769 207.390060425 207.370040894 207.030197144 206.519943237 206.14982605 206.039962769 206.010177612 205.830001831 205.580001831 205.510177612 205.740158081 206.100021362 206.47013855 206.890060425 207.550216675 207.249847412 207.150238037 207.1199646 206.999847412 206.749847412 206.380218506 206.019866943 205.760101318 205.6199646 205.479827881 205.360198975 205.309906006 205.400238037 205.570159912 205.8699646 206.3699646 207.010101318 207.93019104 207.240249634 206.839859009 206.479995728 206.040054321 205.580093384 205.259780884 205.160171509 205.310073853 205.560073853 205.709976196 205.669937134 205.589859009 205.669937134 205.950210571 206.379898071 206.959976196 207.459884644 207.300216675 207.370040894 207.39982605 207.140060425 206.660079956 206.289962769 206.160079956 206.120040894 205.97013855 205.740158081 205.660079956 205.839767456 206.180099487 206.530197144 206.97013855 207.609786987 207.240081787 207.169769287 207.139984131 207.03012085 206.749847412 206.340179443 205.979827881 205.820159912 205.78012085 205.669769287 205.510101318 205.430023193 205.519866943 205.689788818 205.919769287 206.360198975 206.970062256 207.93019104 207.319839478 206.939956665 206.540054321 206.049819946 205.589859009 205.290054321 205.209976196 205.35987854 205.649917603 205.870132446 205.919937134 205.85987854 205.879898071 206.040054321 206.370132446 206.919937134 207.539962769 207.359786987 207.370040894 207.370040894 207.14982605 206.740158081 206.370040894 206.200119019 206.14982605 206.050216675 205.89982605 205.870040894 206.019943237 206.269943237 206.589767456 207.039962769 207.680099487 207.289886475 207.200042725 207.139984131 206.999847412 206.700042725 206.300140381 205.990081787 205.910003662 205.930023193 205.849945068 205.669769287 205.590179443 205.689788818 205.840179443 206.019866943 206.389984131 206.990081787 207.879898071 207.299819946 206.910171509 206.450210571 205.970230103 205.60987854 205.399917603 205.330093384 205.43019104 205.669937134 205.919937134 206.040054321 206.02003479 206.02003479 206.129898071 206.410171509 206.910171509 207.589767456 207.390060425 207.339767456 207.289962769 207.0599823 206.689865112 206.379806519 206.22013855 206.160079956 206.089767456 206.019943237 206.050216675 206.169845581 206.359786987 206.669845581 207.129806519 207.780197144 207.309906006 207.169769287 207.059906006 206.8699646 206.610198975 206.269866943 206.03012085 205.999847412 206.050140381 205.970062256 205.78012085 205.689788818 205.800140381 205.919769287 206.070159912 206.419769287 207.03012085 207.77003479 207.189956665 206.750015259 206.279800415 205.870132446 205.640151978 205.549819946 205.490249634 205.500015259 205.660171509 205.890151978 206.02003479 206.080093384 206.120132446 206.240249634 206.479995728 206.93019104 207.5599823 207.350021362 207.240158081 207.140060425 206.89982605 206.589767456 206.359786987 206.249923706 206.209884644 206.140060425 206.089767456 206.120040894 206.240158081 206.430099487 206.760177612 207.269943237 207.89982605 207.269866943 207.039886475 206.849945068 206.669769287 206.470062256 206.229827881 206.050140381 206.050140381 206.110198975 206.039886475 205.829925537 205.729827881 205.820159912 205.939788818 206.059906006 206.419769287 207.059906006 207.640151978 207.080093384 206.60987854 206.140151978 205.799819946 205.68019104 205.649917603 205.569839478 205.540054321 205.640151978 205.830093384 205.959976196 206.069839478 206.220230103 206.410171509 206.620132446 206.979995728 207.479904175 207.249923706 207.120040894 206.979904175 206.760177612 206.499923706 206.339767456 206.3099823 206.269943237 206.180099487 206.100021362 206.129806519 206.260177612 206.490158081 206.870040894 207.39982605 208.030197144 207.180023193 206.880218506 206.639984131 206.450042725 206.309906006 206.130218506 206.010101318 206.03012085 206.110198975 206.059906006 205.860198975 205.740081787 205.809906006 205.930023193 206.079925537 206.430023193 207.070159912 207.540054321 207.049819946 206.60987854 206.169937134 205.870132446 205.77003479 205.700210571 205.580093384 205.540054321 205.640151978 205.799819946 205.910171509 206.049819946 206.319839478 206.629898071 206.85987854 207.100112915 207.419845581 207.180099487 207.050216675 206.930099487 206.700119019 206.47013855 206.350021362 206.350021362 206.330001831 206.209884644 206.109786987 206.129806519 206.289962769 206.5599823 206.97013855 207.519943237 208.129806519 207.1199646 206.789886475 206.53012085 206.3699646 206.240081787 206.079925537 205.950042725 205.979827881 206.079925537 206.070159912 205.880218506 205.749847412 205.800140381 205.95980835 206.139984131 206.490081787 207.070159912 207.470230103 207.089859009 206.729995728 206.370132446 206.10987854 205.970230103 205.799819946 205.620132446 205.589859009 205.729995728 205.85987854 205.910171509 206.060073853 206.419937134 206.839859009 207.10987854 207.290054321 207.370040894 207.140060425 207.030197144 206.930099487 206.729904175 206.499923706 206.359786987 206.350021362 206.339767456 206.240158081 206.160079956 206.200119019 206.379806519 206.64982605 207.070236206 207.609786987 208.200119019 207.090179443 206.800140381 206.579925537 206.430023193 206.289886475 206.099945068 205.930023193 205.930023193 206.059906006 206.070159912 205.900238037 205.760101318 205.809906006 205.990081787 206.20980835 206.550140381 207.079925537 207.43019104 207.149917603 206.890151978 206.620132446 206.43019104 206.240249634 205.970230103 205.720230103 205.700210571 205.879898071 206.000015259 206.000015259 206.129898071 206.509780884 207.000015259 207.319839478 207.490249634 207.350021362 207.120040894 206.999923706 206.930099487 206.760177612 206.519943237 206.370040894 206.350021362 206.339767456 206.280197144 206.249923706 206.320236206 206.499923706 206.760177612 207.160079956 207.689865112 208.269943237 207.079925537 206.849945068 206.680023193 206.539886475 206.3699646 206.139984131 205.939788818 205.919769287 206.03012085 206.050140381 205.900238037 205.749847412 205.800140381 206.010101318 206.269866943 206.6199646 207.1199646 207.439956665 207.240249634 207.029800415 206.85987854 206.740249634 206.52003479 206.160171509 205.839859009 205.810073853 205.990249634 206.120132446 206.120132446 206.229995728 206.600112915 207.089859009 207.450210571 207.68019104 207.300216675 207.070236206 206.959884644 206.910079956 206.760177612 206.550216675 206.39982605 206.359786987 206.359786987 206.330001831 206.320236206 206.430099487 206.609786987 206.859786987 207.249923706 207.769943237 208.359786987 207.050140381 206.8699646 206.729827881 206.599945068 206.419769287 206.180023193 205.979827881 205.950042725 206.010101318 205.999847412 205.849945068 205.729827881 205.800140381 206.019866943 206.309906006 206.669769287 207.169769287 207.479995728 207.339859009 207.18019104 207.049819946 206.959976196 206.729995728 206.310073853 205.93019104 205.850112915 206.009780884 206.140151978 206.189956665 206.350112915 206.700210571 207.149917603 207.52003479 207.799819946 207.22013855 207.030197144 206.930099487 206.890060425 206.780197144 206.600021362 206.450119019 206.39982605 206.379806519 206.359786987 206.370040894 206.479904175 206.669845581 206.939865112 207.350021362 207.870040894 208.439865112 206.990081787 206.860198975 206.749847412 206.6199646 206.439788818 206.229827881 206.079925537 206.03012085 206.03012085 205.95980835 205.809906006 205.729827881 205.820159912 206.070159912 206.380218506 206.749847412 207.229827881 207.529800415 207.439956665 207.299819946 207.189956665 207.069839478 206.799819946 206.370132446 205.979995728 205.879898071 205.979995728 206.100112915 206.229995728 206.459976196 206.839859009 207.240249634 207.569839478 207.890151978 207.120040894 206.97013855 206.910079956 206.890060425 206.8099823 206.660079956 206.510177612 206.450119019 206.419845581 206.379806519 206.379806519 206.499923706 206.709884644 207.019943237 207.439865112 207.959884644 208.510177612 206.900238037 206.820159912 206.769866943 206.650238037 206.479827881 206.320159912 206.20980835 206.139984131 206.070159912 205.939788818 205.800140381 205.760101318 205.919769287 206.200042725 206.499847412 206.849945068 207.289886475 207.580093384 207.529800415 207.410171509 207.259780884 207.080093384 206.77003479 206.35987854 206.040054321 205.950210571 206.000015259 206.100112915 206.259780884 206.589859009 207.009780884 207.35987854 207.649917603 207.979995728 207.019943237 206.89982605 206.870040894 206.870040894 206.8099823 206.669845581 206.539962769 206.47013855 206.419845581 206.379806519 206.39982605 206.539962769 206.749923706 207.089767456 207.519943237 208.030197144 208.570236206 206.820159912 206.820159912 206.800140381 206.680023193 206.519866943 206.380218506 206.300140381 206.220062256 206.099945068 205.939788818 205.820159912 205.849945068 206.050140381 206.360198975 206.650238037 206.950042725 207.349945068 207.60987854 207.589859009 207.459976196 207.259780884 207.029800415 206.700210571 206.330093384 206.10987854 206.049819946 206.089859009 206.149917603 206.339859009 206.720230103 207.160171509 207.500015259 207.759780884 208.089859009 206.930099487 206.830001831 206.800216675 206.789962769 206.740158081 206.640060425 206.530197144 206.439865112 206.390060425 206.370040894 206.419845581 206.5599823 206.800216675 207.129806519 207.570236206 208.089767456 208.64982605 206.789886475 206.840179443 206.829925537 206.689788818 206.510101318 206.380218506 206.300140381 206.20980835 206.090179443 205.950042725 205.8699646 205.939788818 206.180023193 206.490081787 206.78012085 207.050140381 207.430023193 207.620132446 207.600112915 207.470230103 207.259780884 206.990249634 206.640151978 206.310073853 206.140151978 206.149917603 206.189956665 206.259780884 206.450210571 206.85987854 207.310073853 207.629898071 207.870132446 208.189956665 206.879806519 206.769943237 206.729904175 206.700119019 206.660079956 206.589767456 206.499923706 206.430099487 206.370040894 206.339767456 206.410079956 206.589767456 206.820236206 207.14982605 207.589767456 208.140060425 208.769943237 206.769866943 206.860198975 206.829925537 206.650238037 206.45980835 206.349945068 206.269866943 206.189788818 206.079925537 205.970062256 205.919769287 206.010101318 206.269866943 206.610198975 206.900238037 207.160003662 207.53012085 207.580093384 207.529800415 207.399917603 207.209976196 206.959976196 206.629898071 206.310073853 206.169937134 206.200210571 206.27003479 206.370132446 206.589859009 206.979995728 207.43019104 207.750015259 207.990249634 208.319839478 206.839767456 206.740158081 206.709884644 206.680099487 206.620040894 206.539962769 206.479904175 206.430099487 206.370040894 206.350021362 206.419845581 206.600021362 206.859786987 207.189865112 207.629806519 208.200119019 208.879806519 206.749847412 206.829925537 206.760101318 206.559906006 206.380218506 206.309906006 206.260101318 206.200042725 206.099945068 206.019866943 205.95980835 206.039886475 206.300140381 206.680023193 207.03012085 207.300140381 207.660003662 207.470230103 207.399917603 207.279800415 207.120132446 206.910171509 206.60987854 206.330093384 206.189956665 206.240249634 206.35987854 206.479995728 206.709976196 207.089859009 207.529800415 207.879898071 208.149917603 208.490249634 206.789962769 206.749923706 206.749923706 206.72013855 206.620040894 206.530197144 206.479904175 206.450119019 206.419845581 206.39982605 206.47013855 206.660079956 206.919845581 207.240158081 207.680099487 208.269943237 208.990158081 206.650238037 206.70980835 206.6199646 206.419769287 206.289886475 206.260101318 206.249847412 206.20980835 206.139984131 206.059906006 205.979827881 206.03012085 206.289886475 206.720062256 207.139984131 207.45980835 207.820159912 207.330093384 207.240249634 207.129898071 207.000015259 206.819839478 206.580093384 206.350112915 206.229995728 206.279800415 206.43019104 206.600112915 206.819839478 207.160171509 207.589859009 207.990249634 208.339859009 208.709976196 206.729904175 206.740158081 206.789962769 206.760177612 206.629806519 206.490158081 206.450119019 206.47013855 206.47013855 206.459884644 206.530197144 206.72013855 206.990158081 207.3099823 207.729904175 208.330001831 209.089767456 206.490081787 206.510101318 206.419769287 206.28012085 206.200042725 206.20980835 206.220062256 206.200042725 206.150238037 206.079925537 205.999847412 206.010101318 206.260101318 206.720062256 207.20980835 207.599945068 207.970062256 207.200210571 207.100112915 207.000015259 206.870132446 206.729995728 206.560073853 206.35987854 206.259780884 206.319839478 206.490249634 206.689956665 206.910171509 207.220230103 207.629898071 208.080093384 208.52003479 208.950210571 206.680099487 206.700119019 206.760177612 206.740158081 206.600021362 206.450119019 206.39982605 206.439865112 206.490158081 206.490158081 206.570236206 206.749923706 207.019943237 207.339767456 207.769943237 208.379806519 209.180099487 206.309906006 206.289886475 206.229827881 206.169769287 206.150238037 206.180023193 206.169769287 206.150238037 206.110198975 206.070159912 205.999847412 206.010101318 206.220062256 206.669769287 207.20980835 207.689788818 208.1199646 207.060073853 206.970230103 206.870132446 206.77003479 206.669937134 206.549819946 206.399917603 206.299819946 206.339859009 206.529800415 206.750015259 206.979995728 207.27003479 207.689956665 208.189956665 208.709976196 209.209976196 206.629806519 206.620040894 206.669845581 206.64982605 206.539962769 206.410079956 206.379806519 206.419845581 206.459884644 206.479904175 206.539962769 206.72013855 206.990158081 207.330001831 207.789962769 208.430099487 209.269943237 206.150238037 206.090179443 206.070159912 206.090179443 206.139984131 206.180023193 206.150238037 206.090179443 206.070159912 206.050140381 205.999847412 206.010101318 206.200042725 206.6199646 207.169769287 207.729827881 208.260101318 206.939956665 206.850112915 206.779800415 206.700210571 206.629898071 206.569839478 206.459976196 206.350112915 206.390151978 206.560073853 206.799819946 207.029800415 207.339859009 207.799819946 208.379898071 208.959976196 209.52003479 206.539962769 206.479904175 206.499923706 206.499923706 206.459884644 206.39982605 206.379806519 206.410079956 206.430099487 206.450119019 206.499923706 206.669845581 206.930099487 207.280197144 207.780197144 208.47013855 209.350021362 206.019866943 205.919769287 205.930023193 206.010101318 206.1199646 206.160003662 206.139984131 206.070159912 206.03012085 205.999847412 205.990081787 205.999847412 206.180023193 206.599945068 207.169769287 207.789886475 208.410003662 206.879898071 206.779800415 206.709976196 206.640151978 206.60987854 206.569839478 206.500015259 206.419937134 206.470230103 206.620132446 206.839859009 207.069839478 207.43019104 207.990249634 208.649917603 209.310073853 209.899917603 206.370040894 206.280197144 206.289962769 206.330001831 206.350021362 206.359786987 206.379806519 206.39982605 206.410079956 206.419845581 206.479904175 206.609786987 206.850021362 207.22013855 207.769943237 208.519943237 209.450119019 205.880218506 205.769866943 205.789886475 205.880218506 206.019866943 206.110198975 206.1199646 206.070159912 206.010101318 205.95980835 205.950042725 205.999847412 206.200042725 206.610198975 207.20980835 207.900238037 208.610198975 206.879898071 206.77003479 206.669937134 206.589859009 206.569839478 206.569839478 206.52003479 206.479995728 206.549819946 206.709976196 206.879898071 207.10987854 207.560073853 208.240249634 209.02003479 209.720230103 210.310073853 206.109786987 206.050216675 206.080001831 206.160079956 206.22013855 206.269943237 206.330001831 206.359786987 206.379806519 206.410079956 206.47013855 206.570236206 206.780197144 207.160079956 207.760177612 208.580001831 209.5599823 205.729827881 205.630218506 205.650238037 205.749847412 205.880218506 206.03012085 206.110198975 206.099945068 206.039886475 205.970062256 205.939788818 206.010101318 206.249847412 206.680023193 207.300140381 208.050140381 208.840179443 206.890151978 206.729995728 206.600112915 206.529800415 206.529800415 206.549819946 206.529800415 206.529800415 206.640151978 206.790054321 206.939956665 207.189956665 207.709976196 208.52003479 209.390151978 210.120132446 210.729995728 205.830001831 205.8099823 205.89982605 205.990158081 206.0599823 206.14982605 206.249923706 206.320236206 206.359786987 206.390060425 206.450119019 206.539962769 206.72013855 207.109786987 207.760177612 208.640060425 209.680099487 205.599945068 205.510101318 205.53012085 205.6199646 205.769866943 205.95980835 206.110198975 206.160003662 206.110198975 206.019866943 205.979827881 206.059906006 206.320159912 206.800140381 207.450042725 208.240081787 209.079925537 206.850112915 206.60987854 206.450210571 206.410171509 206.479995728 206.529800415 206.529800415 206.560073853 206.709976196 206.85987854 207.000015259 207.27003479 207.879898071 208.779800415 209.689956665 210.450210571 211.089859009 205.5599823 205.600021362 205.740158081 205.850021362 205.930099487 206.050216675 206.200119019 206.3099823 206.359786987 206.379806519 206.419845581 206.510177612 206.700119019 207.120040894 207.800216675 208.72013855 209.769943237 205.510101318 205.410003662 205.410003662 205.510101318 205.680023193 205.930023193 206.139984131 206.229827881 206.180023193 206.059906006 205.999847412 206.090179443 206.410003662 206.930023193 207.6199646 208.439788818 209.309906006 206.77003479 206.439956665 206.240249634 206.259780884 206.390151978 206.500015259 206.529800415 206.600112915 206.759780884 206.910171509 207.029800415 207.319839478 207.990249634 208.939956665 209.879898071 210.660171509 211.350112915 205.359786987 205.430099487 205.600021362 205.72013855 205.8099823 205.979904175 206.200119019 206.359786987 206.410079956 206.390060425 206.390060425 206.479904175 206.72013855 207.180099487 207.890060425 208.800216675 209.8099823 205.419769287 205.309906006 205.309906006 205.400238037 205.599945068 205.900238037 206.150238037 206.269866943 206.20980835 206.070159912 205.979827881 206.110198975 206.479827881 207.070159912 207.800140381 208.639984131 209.519866943 206.709976196 206.290054321 206.080093384 206.10987854 206.299819946 206.459976196 206.540054321 206.649917603 206.819839478 206.919937134 207.000015259 207.290054321 207.979995728 208.959976196 209.919937134 210.729995728 211.479995728 205.22013855 205.300216675 205.47013855 205.600021362 205.709884644 205.910079956 206.189865112 206.419845581 206.459884644 206.39982605 206.379806519 206.479904175 206.749923706 207.260177612 207.990158081 208.859786987 209.8099823 205.300140381 205.200042725 205.220062256 205.320159912 205.53012085 205.840179443 206.139984131 206.289886475 206.229827881 206.050140381 205.950042725 206.090179443 206.519866943 207.160003662 207.930023193 208.789886475 209.70980835 206.689956665 206.220230103 205.979995728 206.009780884 206.200210571 206.379898071 206.529800415 206.689956665 206.850112915 206.910171509 206.93019104 207.200210571 207.890151978 208.870132446 209.850112915 210.700210571 211.479995728 205.140060425 205.169845581 205.350021362 205.490158081 205.620040894 205.850021362 206.180099487 206.419845581 206.490158081 206.410079956 206.370040894 206.47013855 206.769943237 207.300216675 208.030197144 208.879806519 209.789962769 205.1199646 205.090179443 205.160003662 205.269866943 205.470062256 205.789886475 206.130218506 206.309906006 206.249847412 206.059906006 205.950042725 206.090179443 206.539886475 207.200042725 208.010101318 208.910003662 209.860198975 206.589859009 206.120132446 205.870132446 205.890151978 206.069839478 206.279800415 206.500015259 206.720230103 206.85987854 206.85987854 206.850112915 207.089859009 207.77003479 208.720230103 209.689956665 210.560073853 211.370132446 205.0599823 205.0599823 205.22013855 205.39982605 205.570236206 205.820236206 206.140060425 206.39982605 206.47013855 206.39982605 206.359786987 206.47013855 206.760177612 207.260177612 207.97013855 208.820236206 209.729904175 204.950042725 205.010101318 205.130218506 205.240081787 205.430023193 205.760101318 206.139984131 206.340179443 206.28012085 206.079925537 205.95980835 206.099945068 206.53012085 207.189788818 208.019866943 208.979827881 210.010101318 206.339859009 205.890151978 205.700210571 205.729995728 205.919937134 206.189956665 206.479995728 206.720230103 206.830093384 206.790054321 206.759780884 207.009780884 207.629898071 208.52003479 209.470230103 210.35987854 211.18019104 204.959884644 204.910079956 205.080001831 205.300216675 205.530197144 205.820236206 206.14982605 206.390060425 206.439865112 206.379806519 206.350021362 206.459884644 206.72013855 207.169845581 207.820236206 208.669845581 209.609786987 204.840179443 204.939788818 205.079925537 205.189788818 205.380218506 205.740081787 206.139984131 206.340179443 206.269866943 206.070159912 205.95980835 206.090179443 206.479827881 207.130218506 207.979827881 208.999847412 210.1199646 205.93019104 205.580093384 205.490249634 205.600112915 205.839859009 206.160171509 206.490249634 206.709976196 206.750015259 206.68019104 206.660171509 206.890151978 207.459976196 208.27003479 209.200210571 210.120132446 210.959976196 204.839767456 204.780197144 204.950119019 205.22013855 205.510177612 205.839767456 206.169845581 206.390060425 206.419845581 206.350021362 206.320236206 206.430099487 206.669845581 207.070236206 207.669845581 208.490158081 209.450119019 204.789886475 204.900238037 205.010101318 205.090179443 205.300140381 205.70980835 206.130218506 206.320159912 206.240081787 206.03012085 205.919769287 206.050140381 206.410003662 207.03012085 207.900238037 208.979827881 210.150238037 205.509780884 205.279800415 205.319839478 205.540054321 205.830093384 206.18019104 206.509780884 206.689956665 206.669937134 206.549819946 206.529800415 206.740249634 207.240249634 208.000015259 208.919937134 209.85987854 210.700210571 204.749923706 204.700119019 204.890060425 205.169845581 205.490158081 205.850021362 206.180099487 206.390060425 206.39982605 206.300216675 206.260177612 206.359786987 206.609786987 206.979904175 207.5599823 208.339767456 209.260177612 204.769866943 204.860198975 204.919769287 204.990081787 205.229827881 205.660003662 206.090179443 206.28012085 206.189788818 205.990081787 205.889984131 205.979827881 206.309906006 206.910003662 207.78012085 208.849945068 210.050140381 205.140151978 205.040054321 205.220230103 205.509780884 205.850112915 206.209976196 206.509780884 206.649917603 206.580093384 206.439956665 206.390151978 206.560073853 207.02003479 207.750015259 208.660171509 209.580093384 210.379898071 204.700119019 204.680099487 204.879806519 205.169845581 205.499923706 205.850021362 206.180099487 206.370040894 206.359786987 206.260177612 206.189865112 206.280197144 206.519943237 206.910079956 207.479904175 208.229904175 209.100021362 204.729827881 204.800140381 204.840179443 204.919769287 205.180023193 205.599945068 206.010101318 206.200042725 206.139984131 205.970062256 205.849945068 205.910003662 206.220062256 206.789886475 207.610198975 208.630218506 209.829925537 204.839859009 204.839859009 205.100112915 205.459976196 205.839859009 206.200210571 206.470230103 206.580093384 206.509780884 206.350112915 206.27003479 206.410171509 206.839859009 207.540054321 208.410171509 209.259780884 209.990249634 204.680099487 204.680099487 204.890060425 205.200119019 205.550216675 205.89982605 206.189865112 206.339767456 206.3099823 206.209884644 206.140060425 206.209884644 206.430099487 206.820236206 207.390060425 208.129806519 208.950119019 204.669769287 204.740081787 204.789886475 204.900238037 205.139984131 205.539886475 205.919769287 206.099945068 206.059906006 205.930023193 205.820159912 205.860198975 206.139984131 206.669769287 207.419769287 208.349945068 209.499847412 204.600112915 204.660171509 204.979995728 205.390151978 205.830093384 206.189956665 206.439956665 206.52003479 206.439956665 206.290054321 206.189956665 206.299819946 206.709976196 207.379898071 208.169937134 208.939956665 209.620132446 204.629806519 204.629806519 204.859786987 205.22013855 205.620040894 205.97013855 206.209884644 206.320236206 206.280197144 206.189865112 206.129806519 206.169845581 206.330001831 206.689865112 207.269943237 208.010177612 208.8099823 204.610198975 204.669769287 204.740081787 204.860198975 205.110198975 205.490081787 205.829925537 206.019866943 205.999847412 205.880218506 205.769866943 205.800140381 206.039886475 206.53012085 207.189788818 208.039886475 209.169769287 204.450210571 204.540054321 204.879898071 205.35987854 205.850112915 206.229995728 206.450210571 206.500015259 206.390151978 206.220230103 206.10987854 206.209976196 206.600112915 207.220230103 207.950210571 208.649917603 209.319839478 204.550216675 204.550216675 204.820236206 205.240158081 205.680099487 206.030197144 206.260177612 206.320236206 206.269943237 206.189865112 206.129806519 206.140060425 206.260177612 206.5599823 207.120040894 207.870040894 208.689865112 204.590179443 204.630218506 204.689788818 204.800140381 205.059906006 205.430023193 205.800140381 205.999847412 205.990081787 205.860198975 205.729827881 205.740081787 205.950042725 206.3699646 206.950042725 207.720062256 208.800140381 204.35987854 204.500015259 204.85987854 205.370132446 205.890151978 206.290054321 206.479995728 206.479995728 206.330093384 206.140151978 206.040054321 206.140151978 206.500015259 207.069839478 207.750015259 208.450210571 209.140151978 204.459884644 204.499923706 204.820236206 205.260177612 205.72013855 206.080001831 206.300216675 206.359786987 206.3099823 206.209884644 206.129806519 206.109786987 206.189865112 206.450119019 206.979904175 207.729904175 208.580001831 204.550140381 204.599945068 204.650238037 204.740081787 204.990081787 205.400238037 205.800140381 206.03012085 205.999847412 205.860198975 205.700042725 205.689788818 205.849945068 206.200042725 206.700042725 207.400238037 208.430023193 204.310073853 204.509780884 204.879898071 205.379898071 205.910171509 206.319839478 206.509780884 206.459976196 206.27003479 206.060073853 205.939956665 206.040054321 206.390151978 206.93019104 207.580093384 208.279800415 209.000015259 204.430099487 204.519943237 204.859786987 205.3099823 205.760177612 206.120040894 206.330001831 206.390060425 206.320236206 206.200119019 206.100021362 206.0599823 206.109786987 206.339767456 206.839767456 207.580001831 208.47013855 204.499847412 204.559906006 204.610198975 204.689788818 204.930023193 205.360198975 205.789886475 206.019866943 205.999847412 205.829925537 205.669769287 205.6199646 205.740081787 206.03012085 206.45980835 207.079925537 208.019866943 204.27003479 204.509780884 204.899917603 205.399917603 205.919937134 206.330093384 206.500015259 206.419937134 206.200210571 205.970230103 205.850112915 205.950210571 206.279800415 206.790054321 207.419937134 208.10987854 208.85987854 204.450119019 204.580001831 204.939865112 205.379806519 205.830001831 206.180099487 206.379806519 206.390060425 206.280197144 206.14982605 206.050216675 205.999923706 206.030197144 206.22013855 206.689865112 207.419845581 208.359786987 204.430023193 204.510101318 204.590179443 204.680023193 204.919769287 205.329925537 205.740081787 205.939788818 205.900238037 205.749847412 205.610198975 205.559906006 205.650238037 205.889984131 206.260101318 206.789886475 207.6199646 204.240249634 204.52003479 204.910171509 205.390151978 205.919937134 206.330093384 206.470230103 206.35987854 206.120132446 205.890151978 205.779800415 205.870132446 206.169937134 206.649917603 207.240249634 207.93019104 208.729995728 204.539962769 204.680099487 205.010177612 205.439865112 205.89982605 206.269943237 206.430099487 206.379806519 206.22013855 206.080001831 205.999923706 205.959884644 205.979904175 206.129806519 206.550216675 207.260177612 208.229904175 204.410003662 204.45980835 204.550140381 204.689788818 204.95980835 205.349945068 205.689788818 205.840179443 205.809906006 205.689788818 205.579925537 205.519866943 205.579925537 205.78012085 206.090179443 206.539886475 207.300140381 204.220230103 204.500015259 204.879898071 205.35987854 205.890151978 206.290054321 206.399917603 206.259780884 206.02003479 205.810073853 205.729995728 205.799819946 206.060073853 206.500015259 207.069839478 207.77003479 208.649917603 204.680099487 204.8099823 205.089767456 205.490158081 205.950119019 206.330001831 206.479904175 206.370040894 206.169845581 206.019943237 205.959884644 205.919845581 205.930099487 206.070236206 206.450119019 207.120040894 208.100021362 204.450042725 204.450042725 204.519866943 204.689788818 204.999847412 205.389984131 205.680023193 205.800140381 205.789886475 205.70980835 205.599945068 205.519866943 205.550140381 205.720062256 205.979827881 206.360198975 207.039886475 204.169937134 204.450210571 204.819839478 205.290054321 205.810073853 206.18019104 206.259780884 206.120132446 205.899917603 205.740249634 205.689956665 205.740249634 205.959976196 206.370132446 206.939956665 207.660171509 208.620132446 204.839767456 204.979904175 205.200119019 205.530197144 205.959884644 206.339767456 206.479904175 206.379806519 206.169845581 206.030197144 205.950119019 205.890060425 205.879806519 206.010177612 206.370040894 206.999923706 207.97013855 204.53012085 204.479827881 204.510101318 204.700042725 205.050140381 205.430023193 205.700042725 205.809906006 205.840179443 205.789886475 205.669769287 205.550140381 205.559906006 205.70980835 205.930023193 206.220062256 206.829925537 204.10987854 204.399917603 204.779800415 205.250015259 205.729995728 206.060073853 206.120132446 205.990249634 205.819839478 205.700210571 205.640151978 205.669937134 205.879898071 206.290054321 206.819839478 207.540054321 208.549819946 204.950119019 205.160079956 205.359786987 205.600021362 205.939865112 206.280197144 206.450119019 206.379806519 206.209884644 206.0599823 205.939865112 205.850021362 205.830001831 205.97013855 206.3099823 206.870040894 207.769943237 204.630218506 204.539886475 204.550140381 204.729827881 205.090179443 205.470062256 205.729827881 205.840179443 205.889984131 205.860198975 205.720062256 205.590179443 205.610198975 205.78012085 205.950042725 206.139984131 206.660003662 204.069839478 204.370132446 204.799819946 205.27003479 205.729995728 205.990249634 206.040054321 205.939956665 205.810073853 205.68019104 205.60987854 205.620132446 205.810073853 206.18019104 206.689956665 207.370132446 208.35987854 204.97013855 205.280197144 205.499923706 205.700119019 205.950119019 206.240158081 206.39982605 206.370040894 206.240158081 206.080001831 205.930099487 205.830001831 205.820236206 205.97013855 206.269943237 206.740158081 207.530197144 204.720062256 204.650238037 204.639984131 204.809906006 205.169769287 205.519866943 205.749847412 205.860198975 205.919769287 205.889984131 205.729827881 205.590179443 205.660003662 205.8699646 205.999847412 206.099945068 206.519866943 204.060073853 204.410171509 204.879898071 205.379898071 205.779800415 205.990249634 206.029800415 205.959976196 205.839859009 205.720230103 205.620132446 205.600112915 205.750015259 206.080093384 206.529800415 207.149917603 208.080093384 204.910079956 205.300216675 205.570236206 205.780197144 206.019943237 206.269943237 206.39982605 206.359786987 206.22013855 206.0599823 205.919845581 205.830001831 205.850021362 205.999923706 206.240158081 206.620040894 207.330001831 204.860198975 204.800140381 204.800140381 204.950042725 205.269866943 205.579925537 205.78012085 205.880218506 205.930023193 205.889984131 205.720062256 205.599945068 205.700042725 205.939788818 206.070159912 206.139984131 206.490081787 204.080093384 204.450210571 204.979995728 205.490249634 205.850112915 206.009780884 206.040054321 205.990249634 205.910171509 205.779800415 205.649917603 205.60987854 205.700210571 205.939956665 206.339859009 206.899917603 207.77003479 204.839767456 205.249923706 205.5599823 205.820236206 206.100021362 206.330001831 206.419845581 206.350021362 206.180099487 206.030197144 205.89982605 205.850021362 205.870040894 206.010177612 206.229904175 206.570236206 207.189865112 205.050140381 204.990081787 204.990081787 205.110198975 205.360198975 205.6199646 205.800140381 205.910003662 205.95980835 205.900238037 205.729827881 205.6199646 205.749847412 205.999847412 206.139984131 206.20980835 206.570159912 204.149917603 204.540054321 205.089859009 205.600112915 205.910171509 206.029800415 206.049819946 206.040054321 205.979995728 205.870132446 205.729995728 205.640151978 205.660171509 205.819839478 206.160171509 206.700210571 207.459976196 204.859786987 205.229904175 205.550216675 205.850021362 206.140060425 206.350021362 206.410079956 206.339767456 206.180099487 206.039962769 205.919845581 205.859786987 205.859786987 205.979904175 206.200119019 206.550216675 207.080001831 205.28012085 205.240081787 205.220062256 205.289886475 205.450042725 205.639984131 205.789886475 205.919769287 205.979827881 205.919769287 205.740081787 205.639984131 205.78012085 206.03012085 206.20980835 206.340179443 206.720062256 204.339859009 204.729995728 205.27003479 205.740249634 206.009780884 206.089859009 206.100112915 206.089859009 206.049819946 205.950210571 205.810073853 205.68019104 205.640151978 205.750015259 206.049819946 206.509780884 207.120132446 204.959884644 205.289962769 205.589767456 205.859786987 206.120040894 206.289962769 206.359786987 206.320236206 206.240158081 206.120040894 205.990158081 205.89982605 205.870040894 205.950119019 206.189865112 206.510177612 206.930099487 205.550140381 205.510101318 205.490081787 205.490081787 205.550140381 205.639984131 205.78012085 205.919769287 206.010101318 205.939788818 205.769866943 205.680023193 205.820159912 206.079925537 206.269866943 206.439788818 206.829925537 204.68019104 205.029800415 205.490249634 205.890151978 206.100112915 206.140151978 206.140151978 206.129898071 206.100112915 206.000015259 205.870132446 205.740249634 205.68019104 205.759780884 205.990249634 206.310073853 206.709976196 205.129806519 205.410079956 205.669845581 205.89982605 206.080001831 206.200119019 206.289962769 206.350021362 206.339767456 206.240158081 206.089767456 205.97013855 205.930099487 206.019943237 206.22013855 206.47013855 206.72013855 205.840179443 205.820159912 205.769866943 205.70980835 205.660003662 205.680023193 205.800140381 205.970062256 206.079925537 206.03012085 205.849945068 205.769866943 205.889984131 206.139984131 206.320159912 206.490081787 206.820159912 205.10987854 205.350112915 205.669937134 205.959976196 206.100112915 206.140151978 206.140151978 206.149917603 206.129898071 206.049819946 205.939956665 205.839859009 205.790054321 205.830093384 205.950210571 206.100112915 206.290054321 205.339767456 205.550216675 205.769943237 205.97013855 206.089767456 206.189865112 206.3099823 206.439865112 206.459884644 206.339767456 206.169845581 206.070236206 206.080001831 206.169845581 206.320236206 206.459884644 206.5599823 206.160003662 206.110198975 206.03012085 205.900238037 205.760101318 205.729827881 205.849945068 206.079925537 206.229827881 206.180023193 205.999847412 205.900238037 206.019866943 206.229827881 206.380218506 206.490081787 206.760101318 205.52003479 205.589859009 205.750015259 205.93019104 206.040054321 206.089859009 206.120132446 206.169937134 206.200210571 206.149917603 206.060073853 205.979995728 205.959976196 205.950210571 205.950210571 205.950210571 206.02003479 205.580001831 205.72013855 205.89982605 206.089767456 206.189865112 206.280197144 206.419845581 206.5599823 206.550216675 206.390060425 206.200119019 206.140060425 206.209884644 206.330001831 206.430099487 206.499923706 206.550216675 206.559906006 206.450042725 206.28012085 206.079925537 205.889984131 205.840179443 205.970062256 206.220062256 206.400238037 206.360198975 206.200042725 206.099945068 206.180023193 206.349945068 206.450042725 206.519866943 206.740081787 205.890151978 205.799819946 205.810073853 205.899917603 206.009780884 206.089859009 206.169937134 206.250015259 206.319839478 206.319839478 206.250015259 206.18019104 206.140151978 206.10987854 206.040054321 205.950210571 206.000015259 205.919845581 205.97013855 206.100021362 206.249923706 206.350021362 206.410079956 206.530197144 206.64982605 206.620040894 206.430099487 206.240158081 206.209884644 206.320236206 206.439865112 206.510177612 206.570236206 206.680099487 207.03012085 206.829925537 206.579925537 206.289886475 206.059906006 206.010101318 206.139984131 206.3699646 206.519866943 206.490081787 206.349945068 206.28012085 206.360198975 206.499847412 206.599945068 206.650238037 206.840179443 206.259780884 206.060073853 205.970230103 206.000015259 206.100112915 206.160171509 206.220230103 206.319839478 206.43019104 206.470230103 206.450210571 206.399917603 206.390151978 206.35987854 206.250015259 206.149917603 206.200210571 206.39982605 206.359786987 206.39982605 206.479904175 206.490158081 206.490158081 206.550216675 206.640060425 206.660079956 206.539962769 206.39982605 206.379806519 206.47013855 206.5599823 206.600021362 206.680099487 206.870040894 207.550140381 207.249847412 206.8699646 206.499847412 206.269866943 206.229827881 206.349945068 206.510101318 206.599945068 206.559906006 206.45980835 206.430023193 206.53012085 206.680023193 206.78012085 206.849945068 207.03012085 206.620132446 206.35987854 206.18019104 206.149917603 206.18019104 206.209976196 206.229995728 206.319839478 206.459976196 206.580093384 206.60987854 206.620132446 206.660171509 206.689956665 206.620132446 206.500015259 206.500015259 206.990158081 206.850021362 206.780197144 206.72013855 206.620040894 206.510177612 206.510177612 206.609786987 206.709884644 206.72013855 206.669845581 206.629806519 206.669845581 206.729904175 206.760177612 206.820236206 207.010177612 207.999847412 207.610198975 207.110198975 206.669769287 206.439788818 206.430023193 206.550140381 206.650238037 206.660003662 206.599945068 206.550140381 206.559906006 206.669769287 206.829925537 206.970062256 207.079925537 207.240081787 206.939956665 206.620132446 206.35987854 206.240249634 206.200210571 206.189956665 206.209976196 206.330093384 206.509780884 206.669937134 206.750015259 206.819839478 206.93019104 207.029800415 207.009780884 206.879898071 206.759780884 207.629806519 207.379806519 207.160079956 206.979904175 206.789962769 206.629806519 206.570236206 206.660079956 206.830001831 206.919845581 206.910079956 206.839767456 206.870040894 206.930099487 206.959884644 206.979904175 207.109786987 208.320159912 207.829925537 207.260101318 206.769866943 206.550140381 206.550140381 206.650238037 206.689788818 206.660003662 206.599945068 206.559906006 206.590179443 206.720062256 206.919769287 207.099945068 207.240081787 207.400238037 207.189956665 206.830093384 206.500015259 206.299819946 206.240249634 206.259780884 206.350112915 206.52003479 206.689956665 206.810073853 206.870132446 206.939956665 207.100112915 207.250015259 207.27003479 207.129898071 206.93019104 208.22013855 207.870040894 207.530197144 207.260177612 207.0599823 206.910079956 206.859786987 206.890060425 206.999923706 207.070236206 207.010177612 206.930099487 206.959884644 207.100021362 207.169845581 207.14982605 207.169845581 208.499847412 207.950042725 207.360198975 206.880218506 206.630218506 206.599945068 206.639984131 206.630218506 206.559906006 206.490081787 206.450042725 206.490081787 206.650238037 206.900238037 207.139984131 207.329925537 207.519866943 207.399917603 207.049819946 206.709976196 206.479995728 206.410171509 206.459976196 206.600112915 206.790054321 206.93019104 206.950210571 206.919937134 206.959976196 207.10987854 207.279800415 207.330093384 207.229995728 207.049819946 208.749923706 208.330001831 207.910079956 207.580001831 207.390060425 207.289962769 207.240158081 207.200119019 207.169845581 207.129806519 207.010177612 206.910079956 206.97013855 207.169845581 207.3099823 207.280197144 207.260177612 208.550140381 208.010101318 207.470062256 207.010101318 206.720062256 206.599945068 206.559906006 206.490081787 206.389984131 206.300140381 206.260101318 206.320159912 206.510101318 206.820159912 207.130218506 207.380218506 207.610198975 207.580093384 207.299819946 206.979995728 206.729995728 206.60987854 206.620132446 206.729995728 206.890151978 207.000015259 206.979995728 206.899917603 206.890151978 207.000015259 207.149917603 207.209976196 207.189956665 207.140151978 209.209884644 208.800216675 208.3099823 207.910079956 207.689865112 207.589767456 207.510177612 207.39982605 207.289962769 207.189865112 207.050216675 206.950119019 207.019943237 207.240158081 207.39982605 207.410079956 207.39982605 208.550140381 208.010101318 207.499847412 207.059906006 206.760101318 206.590179443 206.510101318 206.410003662 206.300140381 206.220062256 206.169769287 206.220062256 206.419769287 206.760101318 207.1199646 207.400238037 207.689788818 207.689956665 207.450210571 207.160171509 206.899917603 206.709976196 206.589859009 206.600112915 206.709976196 206.850112915 206.890151978 206.839859009 206.839859009 206.899917603 206.979995728 207.040054321 207.100112915 207.229995728 209.589767456 209.200119019 208.689865112 208.200119019 207.859786987 207.680099487 207.550216675 207.430099487 207.339767456 207.280197144 207.200119019 207.140060425 207.169845581 207.320236206 207.47013855 207.530197144 207.580001831 208.499847412 207.919769287 207.400238037 206.970062256 206.700042725 206.570159912 206.519866943 206.45980835 206.400238037 206.340179443 206.300140381 206.329925537 206.499847412 206.820159912 207.169769287 207.470062256 207.789886475 207.68019104 207.419937134 207.140151978 206.899917603 206.689956665 206.490249634 206.399917603 206.500015259 206.720230103 206.85987854 206.870132446 206.839859009 206.839859009 206.870132446 206.910171509 207.060073853 207.290054321 209.800216675 209.430099487 208.910079956 208.370040894 207.939865112 207.64982605 207.47013855 207.379806519 207.370040894 207.410079956 207.430099487 207.39982605 207.370040894 207.419845581 207.550216675 207.669845581 207.789962769 208.439788818 207.78012085 207.200042725 206.78012085 206.570159912 206.539886475 206.570159912 206.590179443 206.579925537 206.570159912 206.559906006 206.570159912 206.680023193 206.950042725 207.28012085 207.610198975 207.950042725 207.540054321 207.259780884 207.000015259 206.85987854 206.740249634 206.569839478 206.470230103 206.589859009 206.830093384 206.990249634 206.970230103 206.879898071 206.819839478 206.810073853 206.890151978 207.089859009 207.370132446 209.820236206 209.419845581 208.930099487 208.410079956 207.97013855 207.629806519 207.419845581 207.350021362 207.410079956 207.530197144 207.609786987 207.589767456 207.519943237 207.510177612 207.640060425 207.830001831 208.019943237 208.389984131 207.650238037 207.039886475 206.639984131 206.490081787 206.510101318 206.590179443 206.630218506 206.639984131 206.669769287 206.700042725 206.720062256 206.820159912 207.059906006 207.410003662 207.789886475 208.160003662 207.350112915 207.049819946 206.879898071 206.870132446 206.899917603 206.839859009 206.779800415 206.870132446 207.060073853 207.149917603 207.040054321 206.879898071 206.790054321 206.819839478 206.959976196 207.220230103 207.500015259 209.64982605 209.209884644 208.749923706 208.339767456 207.979904175 207.64982605 207.419845581 207.350021362 207.419845581 207.5599823 207.660079956 207.660079956 207.600021362 207.600021362 207.740158081 207.990158081 208.240158081 208.329925537 207.610198975 207.010101318 206.639984131 206.510101318 206.519866943 206.539886475 206.53012085 206.519866943 206.570159912 206.639984131 206.720062256 206.840179443 207.099945068 207.499847412 207.939788818 208.3699646 207.149917603 206.910171509 206.810073853 206.890151978 207.000015259 207.000015259 206.959976196 207.000015259 207.100112915 207.10987854 206.970230103 206.819839478 206.790054321 206.879898071 207.100112915 207.419937134 207.689956665 209.370040894 208.870040894 208.479904175 208.200119019 207.910079956 207.609786987 207.359786987 207.260177612 207.320236206 207.450119019 207.580001831 207.64982605 207.660079956 207.700119019 207.850021362 208.140060425 208.419845581 208.260101318 207.599945068 207.059906006 206.729827881 206.559906006 206.499847412 206.439788818 206.380218506 206.3699646 206.430023193 206.539886475 206.650238037 206.820159912 207.090179443 207.519866943 208.019866943 208.510101318 206.979995728 206.790054321 206.720230103 206.810073853 206.910171509 206.899917603 206.830093384 206.819839478 206.879898071 206.890151978 206.819839478 206.77003479 206.819839478 206.990249634 207.250015259 207.60987854 207.910171509 209.039962769 208.539962769 208.189865112 207.979904175 207.760177612 207.459884644 207.180099487 207.0599823 207.120040894 207.260177612 207.430099487 207.580001831 207.64982605 207.740158081 207.950119019 208.269943237 208.600021362 208.180023193 207.579925537 207.099945068 206.769866943 206.579925537 206.450042725 206.360198975 206.320159912 206.340179443 206.419769287 206.539886475 206.669769287 206.829925537 207.099945068 207.519866943 208.039886475 208.570159912 206.850112915 206.669937134 206.60987854 206.660171509 206.700210571 206.660171509 206.569839478 206.540054321 206.600112915 206.669937134 206.729995728 206.790054321 206.899917603 207.080093384 207.379898071 207.77003479 208.140151978 208.709884644 208.240158081 207.89982605 207.709884644 207.510177612 207.209884644 206.950119019 206.850021362 206.919845581 207.080001831 207.280197144 207.450119019 207.589767456 207.72013855 207.999923706 208.39982605 208.8099823 208.1199646 207.559906006 207.079925537 206.749847412 206.550140381 206.430023193 206.349945068 206.349945068 206.400238037 206.470062256 206.559906006 206.689788818 206.849945068 207.110198975 207.519866943 208.059906006 208.6199646 206.819839478 206.589859009 206.509780884 206.529800415 206.569839478 206.529800415 206.450210571 206.410171509 206.470230103 206.569839478 206.689956665 206.810073853 206.959976196 207.149917603 207.479995728 207.939956665 208.390151978 208.410079956 207.950119019 207.609786987 207.39982605 207.209884644 206.97013855 206.769943237 206.72013855 206.820236206 206.959884644 207.129806519 207.3099823 207.459884644 207.64982605 208.030197144 208.570236206 209.120040894 208.110198975 207.539886475 207.059906006 206.740081787 206.559906006 206.450042725 206.389984131 206.380218506 206.400238037 206.439788818 206.499847412 206.610198975 206.789886475 207.070159912 207.510101318 208.079925537 208.669769287 206.85987854 206.569839478 206.439956665 206.439956665 206.500015259 206.52003479 206.470230103 206.43019104 206.450210571 206.540054321 206.660171509 206.779800415 206.939956665 207.18019104 207.569839478 208.10987854 208.640151978 208.129806519 207.660079956 207.300216675 207.080001831 206.910079956 206.760177612 206.669845581 206.700119019 206.789962769 206.879806519 207.010177612 207.169845581 207.339767456 207.609786987 208.089767456 208.780197144 209.439865112 208.099945068 207.519866943 207.039886475 206.749847412 206.610198975 206.519866943 206.450042725 206.389984131 206.349945068 206.329925537 206.3699646 206.479827881 206.680023193 206.990081787 207.479827881 208.090179443 208.689788818 206.890151978 206.529800415 206.35987854 206.330093384 206.399917603 206.459976196 206.450210571 206.43019104 206.439956665 206.509780884 206.589859009 206.709976196 206.899917603 207.18019104 207.649917603 208.250015259 208.839859009 207.850021362 207.379806519 207.019943237 206.8099823 206.680099487 206.600021362 206.609786987 206.709884644 206.800216675 206.850021362 206.919845581 207.080001831 207.289962769 207.620040894 208.189865112 208.979904175 209.72013855 208.070159912 207.470062256 207.019866943 206.760101318 206.639984131 206.570159912 206.490081787 206.400238037 206.340179443 206.289886475 206.320159912 206.430023193 206.610198975 206.919769287 207.410003662 208.039886475 208.630218506 206.819839478 206.470230103 206.279800415 206.209976196 206.27003479 206.339859009 206.379898071 206.390151978 206.439956665 206.490249634 206.549819946 206.649917603 206.830093384 207.160171509 207.660171509 208.310073853 208.939956665 207.609786987 207.160079956 206.830001831 206.660079956 206.570236206 206.539962769 206.600021362 206.72013855 206.8099823 206.830001831 206.890060425 207.050216675 207.3099823 207.680099487 208.289962769 209.109786987 209.89982605 207.95980835 207.389984131 206.990081787 206.769866943 206.639984131 206.559906006 206.490081787 206.439788818 206.400238037 206.380218506 206.410003662 206.479827881 206.6199646 206.8699646 207.329925537 207.939788818 208.510101318 206.689956665 206.390151978 206.220230103 206.160171509 206.200210571 206.27003479 206.330093384 206.390151978 206.479995728 206.540054321 206.549819946 206.589859009 206.77003479 207.120132446 207.640151978 208.290054321 208.979995728 207.419845581 207.019943237 206.760177612 206.629806519 206.570236206 206.539962769 206.600021362 206.72013855 206.800216675 206.830001831 206.89982605 207.070236206 207.339767456 207.749923706 208.359786987 209.189865112 209.979904175 207.800140381 207.289886475 206.970062256 206.769866943 206.6199646 206.510101318 206.450042725 206.430023193 206.450042725 206.470062256 206.499847412 206.550140381 206.639984131 206.860198975 207.28012085 207.840179443 208.389984131 206.540054321 206.299819946 206.189956665 206.169937134 206.220230103 206.290054321 206.339859009 206.410171509 206.529800415 206.600112915 206.560073853 206.529800415 206.700210571 207.089859009 207.640151978 208.290054321 209.009780884 207.300216675 206.939865112 206.740158081 206.669845581 206.629806519 206.580001831 206.580001831 206.669845581 206.780197144 206.839767456 206.930099487 207.109786987 207.390060425 207.800216675 208.419845581 209.229904175 210.030197144 207.6199646 207.169769287 206.919769287 206.769866943 206.6199646 206.45980835 206.360198975 206.340179443 206.3699646 206.419769287 206.450042725 206.510101318 206.6199646 206.849945068 207.249847412 207.769866943 208.309906006 206.43019104 206.209976196 206.149917603 206.18019104 206.259780884 206.319839478 206.310073853 206.370132446 206.52003479 206.620132446 206.560073853 206.490249634 206.640151978 207.069839478 207.660171509 208.319839478 209.049819946 207.180099487 206.850021362 206.709884644 206.700119019 206.680099487 206.600021362 206.550216675 206.600021362 206.72013855 206.850021362 206.990158081 207.169845581 207.410079956 207.820236206 208.459884644 209.269943237 210.070236206 207.450042725 207.019866943 206.809906006 206.689788818 206.579925537 206.430023193 206.289886475 206.20980835 206.229827881 206.28012085 206.329925537 206.430023193 206.590179443 206.8699646 207.260101318 207.760101318 208.28012085 206.339859009 206.10987854 206.080093384 206.160171509 206.259780884 206.27003479 206.220230103 206.250015259 206.450210571 206.620132446 206.580093384 206.470230103 206.589859009 207.049819946 207.68019104 208.339859009 209.009780884 207.039962769 206.729904175 206.640060425 206.689865112 206.700119019 206.620040894 206.530197144 206.570236206 206.700119019 206.879806519 207.0599823 207.209884644 207.419845581 207.820236206 208.47013855 209.3099823 210.120040894 207.380218506 206.8699646 206.630218506 206.550140381 206.499847412 206.400238037 206.249847412 206.150238037 206.139984131 206.189788818 206.249847412 206.3699646 206.599945068 206.930023193 207.309906006 207.769866943 208.28012085 206.290054321 206.049819946 206.040054321 206.149917603 206.240249634 206.220230103 206.129898071 206.169937134 206.399917603 206.629898071 206.620132446 206.490249634 206.549819946 206.979995728 207.60987854 208.250015259 208.85987854 206.89982605 206.620040894 206.580001831 206.669845581 206.709884644 206.64982605 206.589767456 206.600021362 206.729904175 206.939865112 207.109786987 207.22013855 207.379806519 207.749923706 208.450119019 209.339767456 210.180099487 207.439788818 206.829925537 206.470062256 206.3699646 206.380218506 206.3699646 206.249847412 206.160003662 206.139984131 206.189788818 206.240081787 206.360198975 206.6199646 206.979827881 207.389984131 207.829925537 208.340179443 206.310073853 206.089859009 206.10987854 206.189956665 206.240249634 206.189956665 206.100112915 206.160171509 206.399917603 206.640151978 206.649917603 206.490249634 206.500015259 206.870132446 207.470230103 208.080093384 208.620132446 206.850021362 206.620040894 206.609786987 206.700119019 206.740158081 206.72013855 206.669845581 206.689865112 206.820236206 206.990158081 207.129806519 207.180099487 207.280197144 207.64982605 208.410079956 209.359786987 210.22013855 207.610198975 206.910003662 206.439788818 206.249847412 206.28012085 206.309906006 206.229827881 206.169769287 206.189788818 206.249847412 206.28012085 206.360198975 206.6199646 207.019866943 207.470062256 207.939788818 208.45980835 206.439956665 206.279800415 206.299819946 206.310073853 206.259780884 206.160171509 206.080093384 206.149917603 206.399917603 206.60987854 206.60987854 206.470230103 206.459976196 206.759780884 207.310073853 207.899917603 208.379898071 206.89982605 206.740158081 206.769943237 206.839767456 206.850021362 206.820236206 206.780197144 206.800216675 206.910079956 207.050216675 207.140060425 207.140060425 207.180099487 207.550216675 208.339767456 209.339767456 210.229904175 207.769866943 207.019866943 206.45980835 206.189788818 206.169769287 206.189788818 206.150238037 206.130218506 206.220062256 206.320159912 206.340179443 206.380218506 206.6199646 207.070159912 207.579925537 208.099945068 208.650238037 206.660171509 206.569839478 206.560073853 206.479995728 206.299819946 206.120132446 206.049819946 206.149917603 206.379898071 206.560073853 206.569839478 206.450210571 206.43019104 206.68019104 207.169937134 207.729995728 208.169937134 207.010177612 206.930099487 207.010177612 207.089767456 207.0599823 206.979904175 206.919845581 206.939865112 207.039962769 207.169845581 207.22013855 207.140060425 207.129806519 207.47013855 208.269943237 209.300216675 210.189865112 207.820159912 207.050140381 206.439788818 206.1199646 206.039886475 206.019866943 205.999847412 206.039886475 206.229827881 206.400238037 206.450042725 206.470062256 206.669769287 207.1199646 207.680023193 208.269866943 208.8699646 206.950210571 206.910171509 206.890151978 206.720230103 206.399917603 206.140151978 206.060073853 206.169937134 206.399917603 206.560073853 206.569839478 206.439956665 206.390151978 206.589859009 207.040054321 207.580093384 207.979995728 207.109786987 207.100021362 207.269943237 207.39982605 207.379806519 207.229904175 207.120040894 207.129806519 207.249923706 207.350021362 207.330001831 207.169845581 207.100021362 207.430099487 208.229904175 209.240158081 210.129806519 207.729827881 206.979827881 206.389984131 206.050140381 205.939788818 205.900238037 205.880218506 205.979827881 206.229827881 206.479827881 206.570159912 206.579925537 206.760101318 207.189788818 207.78012085 208.419769287 209.090179443 207.27003479 207.299819946 207.279800415 207.040054321 206.640151978 206.299819946 206.18019104 206.290054321 206.509780884 206.660171509 206.629898071 206.450210571 206.339859009 206.479995728 206.919937134 207.450210571 207.839859009 207.209884644 207.269943237 207.530197144 207.72013855 207.700119019 207.490158081 207.350021362 207.359786987 207.490158081 207.5599823 207.450119019 207.209884644 207.100021362 207.419845581 208.22013855 209.22013855 210.109786987 207.599945068 206.919769287 206.410003662 206.110198975 206.019866943 205.970062256 205.950042725 206.059906006 206.320159912 206.559906006 206.650238037 206.669769287 206.829925537 207.240081787 207.849945068 208.559906006 209.300140381 207.629898071 207.700210571 207.689956665 207.410171509 206.970230103 206.600112915 206.450210571 206.549819946 206.729995728 206.839859009 206.740249634 206.500015259 206.310073853 206.43019104 206.85987854 207.399917603 207.779800415 207.370040894 207.510177612 207.8099823 208.030197144 207.959884644 207.729904175 207.5599823 207.570236206 207.689865112 207.709884644 207.519943237 207.209884644 207.089767456 207.430099487 208.240158081 209.22013855 210.109786987 207.539886475 207.010101318 206.6199646 206.410003662 206.329925537 206.300140381 206.28012085 206.349945068 206.510101318 206.669769287 206.720062256 206.720062256 206.8699646 207.28012085 207.919769287 208.689788818 209.519866943 208.040054321 208.089859009 208.009780884 207.700210571 207.279800415 206.959976196 206.830093384 206.890151978 207.02003479 207.069839478 206.919937134 206.589859009 206.350112915 206.450210571 206.890151978 207.419937134 207.790054321 207.629806519 207.830001831 208.129806519 208.300216675 208.180099487 207.919845581 207.749923706 207.749923706 207.820236206 207.769943237 207.539962769 207.22013855 207.120040894 207.47013855 208.260177612 209.22013855 210.080001831 207.6199646 207.269866943 207.019866943 206.849945068 206.769866943 206.760101318 206.760101318 206.769866943 206.800140381 206.829925537 206.809906006 206.78012085 206.900238037 207.300140381 207.95980835 208.78012085 209.700042725 208.439956665 208.35987854 208.160171509 207.819839478 207.490249634 207.27003479 207.189956665 207.209976196 207.279800415 207.279800415 207.100112915 206.740249634 206.459976196 206.540054321 206.979995728 207.490249634 207.850112915 207.919845581 208.160079956 208.419845581 208.499923706 208.370040894 208.140060425 207.979904175 207.919845581 207.89982605 207.8099823 207.570236206 207.289962769 207.209884644 207.550216675 208.289962769 209.180099487 209.999923706 207.840179443 207.630218506 207.419769287 207.229827881 207.130218506 207.130218506 207.150238037 207.1199646 207.059906006 206.999847412 206.910003662 206.8699646 206.95980835 207.320159912 207.95980835 208.809906006 209.800140381 208.77003479 208.509780884 208.169937134 207.819839478 207.560073853 207.459976196 207.419937134 207.410171509 207.419937134 207.410171509 207.240249634 206.899917603 206.620132446 206.68019104 207.089859009 207.569839478 207.970230103 208.209884644 208.430099487 208.629806519 208.669845581 208.580001831 208.430099487 208.269943237 208.109786987 207.97013855 207.839767456 207.669845581 207.430099487 207.370040894 207.680099487 208.359786987 209.169845581 209.930099487 208.200042725 207.990081787 207.70980835 207.439788818 207.309906006 207.329925537 207.360198975 207.300140381 207.189788818 207.090179443 207.019866943 206.990081787 207.050140381 207.329925537 207.919769287 208.78012085 209.809906006 208.950210571 208.560073853 208.129898071 207.779800415 207.589859009 207.529800415 207.490249634 207.439956665 207.399917603 207.410171509 207.319839478 207.060073853 206.810073853 206.85987854 207.240249634 207.720230103 208.140151978 208.47013855 208.640060425 208.760177612 208.800216675 208.8099823 208.749923706 208.570236206 208.289962769 208.0599823 207.910079956 207.780197144 207.600021362 207.550216675 207.839767456 208.490158081 209.249923706 209.930099487 208.6199646 208.28012085 207.860198975 207.510101318 207.360198975 207.389984131 207.419769287 207.349945068 207.229827881 207.139984131 207.1199646 207.130218506 207.160003662 207.389984131 207.910003662 208.740081787 209.78012085 209.02003479 208.540054321 208.100112915 207.790054321 207.600112915 207.529800415 207.479995728 207.390151978 207.339859009 207.35987854 207.350112915 207.18019104 206.990249634 207.069839478 207.459976196 207.93019104 208.339859009 208.749923706 208.820236206 208.870040894 208.89982605 208.959884644 208.959884644 208.760177612 208.419845581 208.140060425 207.999923706 207.890060425 207.72013855 207.680099487 207.990158081 208.660079956 209.410079956 210.019943237 208.95980835 208.45980835 207.919769287 207.53012085 207.389984131 207.410003662 207.419769287 207.349945068 207.240081787 207.189788818 207.200042725 207.220062256 207.260101318 207.45980835 207.939788818 208.720062256 209.720062256 208.950210571 208.450210571 208.069839478 207.779800415 207.580093384 207.500015259 207.459976196 207.390151978 207.330093384 207.319839478 207.299819946 207.200210571 207.100112915 207.240249634 207.649917603 208.129898071 208.490249634 208.990158081 208.950119019 208.930099487 208.930099487 208.979904175 208.950119019 208.740158081 208.419845581 208.180099487 208.0599823 207.930099487 207.749923706 207.72013855 208.080001831 208.780197144 209.519943237 210.089767456 209.189788818 208.499847412 207.889984131 207.499847412 207.349945068 207.329925537 207.320159912 207.249847412 207.189788818 207.180023193 207.200042725 207.220062256 207.28012085 207.490081787 207.970062256 208.700042725 209.630218506 208.759780884 208.290054321 207.970230103 207.720230103 207.500015259 207.43019104 207.459976196 207.459976196 207.379898071 207.279800415 207.189956665 207.100112915 207.089859009 207.310073853 207.759780884 208.240249634 208.569839478 209.100021362 208.979904175 208.89982605 208.859786987 208.820236206 208.740158081 208.530197144 208.289962769 208.109786987 208.030197144 207.890060425 207.709884644 207.709884644 208.089767456 208.800216675 209.539962769 210.089767456 209.269866943 208.45980835 207.809906006 207.400238037 207.200042725 207.099945068 207.039886475 206.999847412 206.999847412 207.019866943 207.059906006 207.090179443 207.180023193 207.439788818 207.939788818 208.650238037 209.499847412 208.500015259 208.080093384 207.819839478 207.569839478 207.370132446 207.330093384 207.439956665 207.509780884 207.410171509 207.220230103 207.060073853 206.970230103 207.02003479 207.299819946 207.790054321 208.290054321 208.629898071 209.070236206 208.890060425 208.780197144 208.700119019 208.609786987 208.459884644 208.260177612 208.0599823 207.950119019 207.89982605 207.800216675 207.669845581 207.72013855 208.100021362 208.760177612 209.490158081 210.070236206 209.249847412 208.360198975 207.680023193 207.229827881 206.950042725 206.769866943 206.669769287 206.639984131 206.669769287 206.740081787 206.820159912 206.900238037 207.050140381 207.340179443 207.8699646 208.559906006 209.380218506 208.279800415 207.910171509 207.689956665 207.459976196 207.240249634 207.220230103 207.390151978 207.490249634 207.399917603 207.189956665 207.029800415 206.959976196 207.029800415 207.319839478 207.819839478 208.35987854 208.759780884 208.939865112 208.72013855 208.609786987 208.530197144 208.419845581 208.240158081 208.030197144 207.839767456 207.760177612 207.749923706 207.740158081 207.72013855 207.820236206 208.180099487 208.780197144 209.47013855 210.089767456 209.180023193 208.229827881 207.53012085 207.050140381 206.729827881 206.53012085 206.410003662 206.349945068 206.360198975 206.450042725 206.590179443 206.740081787 206.939788818 207.249847412 207.769866943 208.479827881 209.28012085 208.120132446 207.779800415 207.569839478 207.350112915 207.160171509 207.149917603 207.310073853 207.419937134 207.370132446 207.240249634 207.129898071 207.089859009 207.129898071 207.390151978 207.899917603 208.470230103 208.93019104 208.800216675 208.519943237 208.390060425 208.3099823 208.209884644 208.070236206 207.859786987 207.680099487 207.600021362 207.640060425 207.729904175 207.830001831 207.979904175 208.300216675 208.839767456 209.519943237 210.14982605 209.010101318 208.059906006 207.360198975 206.889984131 206.599945068 206.430023193 206.329925537 206.229827881 206.180023193 206.240081787 206.419769287 206.630218506 206.849945068 207.160003662 207.680023193 208.400238037 209.229827881 207.970230103 207.60987854 207.390151978 207.200210571 207.069839478 207.089859009 207.200210571 207.279800415 207.279800415 207.250015259 207.229995728 207.209976196 207.240249634 207.490249634 207.990249634 208.569839478 209.060073853 208.609786987 208.249923706 208.050216675 207.950119019 207.879806519 207.789962769 207.64982605 207.490158081 207.430099487 207.519943237 207.680099487 207.859786987 208.050216675 208.370040894 208.89982605 209.5599823 210.189865112 208.749847412 207.829925537 207.180023193 206.769866943 206.550140381 206.450042725 206.360198975 206.229827881 206.1199646 206.130218506 206.269866943 206.470062256 206.700042725 207.03012085 207.579925537 208.329925537 209.189788818 196.39956665 195.339996338 194.549957275 194.030426025 193.589996338 193.070465088 192.599761963 192.330230713 192.3097229 192.420074463 192.64956665 193.120269775 193.960113525 195.120269775 196.490386963 198.04019165 199.830230713 196.640151978 195.53956604 194.78956604 194.130386353 193.399917603 192.739761353 192.369644165 192.310073853 192.369644165 192.319839478 192.329605103 192.850112915 194.119644165 195.939956665 197.78956604 199.43019104 201.02003479 196.11000061 194.970352173 194.19984436 193.529922485 192.819961548 192.239883423 191.989883423 192.010391235 192.069961548 191.970352173 191.749649048 191.68031311 192.069961548 193.100234985 194.650039673 196.390274048 198.100234985 196.29019165 195.359527588 194.6300354 194.009918213 193.389801025 192.859527588 192.580230713 192.54019165 192.54019165 192.500152588 192.620269775 193.109527588 194.000152588 195.120269775 196.389801025 197.8800354 199.7003479 196.44972229 195.560073853 194.960464478 194.300308228 193.53956604 192.94972229 192.760269165 192.819839478 192.760269165 192.479995728 192.310073853 192.760269165 193.979995728 195.749526978 197.600112915 199.279800415 200.850112915 196.029922485 194.900039673 194.050430298 193.19984436 192.419570923 191.959609985 191.93031311 192.069961548 192.03968811 191.760391235 191.499649048 191.550430298 192.069961548 193.119766235 194.640274048 196.419570923 198.19984436 195.889801025 194.920074463 194.139801025 193.439605713 192.799957275 192.439605713 192.479644775 192.620269775 192.500152588 192.189605713 192.179840088 192.79019165 193.870269775 195.109527588 196.389801025 197.859527588 199.64956665 196.069839478 195.210464478 194.550308228 193.78956604 193.03956604 192.68019104 192.77003479 192.939956665 192.729995728 192.229995728 191.979995728 192.439956665 193.69972229 195.499526978 197.439956665 199.220230103 200.749526978 195.819961548 194.640274048 193.650039673 192.659805298 191.869766235 191.569961548 191.730117798 191.890274048 191.640274048 191.169570923 190.940078735 191.220352173 191.959609985 193.079727173 194.640274048 196.499649048 198.34046936 195.349761963 194.29019165 193.410308838 192.620269775 192.030426025 191.8800354 192.120269775 192.269683838 191.939605713 191.39956665 191.359527588 192.179840088 193.580230713 195.070465088 196.490386963 197.960113525 199.639801025 195.689956665 194.760269165 193.920425415 193.010269165 192.229995728 191.979995728 192.189956665 192.319839478 191.970230103 191.439956665 191.34034729 192.010269165 193.35987854 195.189956665 197.27003479 199.220230103 200.729995728 195.61000061 194.440078735 193.43031311 192.409805298 191.600234985 191.310195923 191.43031311 191.44984436 191.02015686 190.480117798 190.419570923 190.970352173 191.869766235 193.029922485 194.600234985 196.53968811 198.459609985 195.080230713 194.049957275 193.160308838 192.359527588 191.769683838 191.620269775 191.8097229 191.820465088 191.299957275 190.670074463 190.679840088 191.670074463 193.299957275 195.009918213 196.599761963 198.109527588 199.64956665 195.53956604 194.659683228 193.800308228 192.819839478 191.970230103 191.640151978 191.69972229 191.600112915 191.119644165 190.69972229 190.899917603 191.78956604 193.140151978 194.890151978 197.03956604 199.159683228 200.710464478 195.52015686 194.480117798 193.650039673 192.749649048 191.909805298 191.43031311 191.310195923 191.100234985 190.59046936 190.169570923 190.310195923 191.010391235 191.890274048 192.919570923 194.440078735 196.43031311 198.440078735 195.2003479 194.339996338 193.570465088 192.830230713 192.229644775 191.960113525 191.929840088 191.759918213 191.170074463 190.570465088 190.599761963 191.5597229 193.139801025 194.920074463 196.639801025 198.210113525 199.6300354 195.59034729 194.909683228 194.229995728 193.399917603 192.579605103 192.119644165 191.920425415 191.569839478 190.979995728 190.649917603 191.029800415 191.960464478 193.130386353 194.649917603 196.710464478 198.93019104 200.550308228 195.480117798 194.650039673 194.050430298 193.36000061 192.52015686 191.800430298 191.36000061 190.959609985 190.489883423 190.239883423 190.52015686 191.190078735 191.890274048 192.730117798 194.140274048 196.159805298 198.230117798 195.420074463 194.660308838 193.96987915 193.339996338 192.79019165 192.439605713 192.259918213 192.009918213 191.500152588 190.96987915 190.939605713 191.660308838 193.009918213 194.710113525 196.530426025 198.2003479 199.570465088 195.569839478 195.029800415 194.59034729 193.999526978 193.350112915 192.890151978 192.59034729 192.119644165 191.470230103 191.140151978 191.479995728 192.27003479 193.18019104 194.399917603 196.279800415 198.479995728 200.18019104 195.400039673 194.62953186 194.159805298 193.61000061 192.800430298 191.940078735 191.27015686 190.779922485 190.400039673 190.300430298 190.650039673 191.260391235 191.84046936 192.560195923 193.869766235 195.84046936 197.93031311 195.460113525 194.54019165 193.759918213 193.179840088 192.759918213 192.46987915 192.29019165 192.080230713 191.7003479 191.299957275 191.229644775 191.740386963 192.849761963 194.439605713 196.299957275 198.049957275 199.439605713 195.380386353 194.760269165 194.369644165 193.960464478 193.479995728 193.119644165 192.890151978 192.510269165 191.909683228 191.53956604 191.749526978 192.420425415 193.189956665 194.220230103 195.85987854 197.909683228 199.630386353 195.27015686 194.400039673 193.86000061 193.319961548 192.550430298 191.650039673 190.909805298 190.400039673 190.119766235 190.140274048 190.569961548 191.209609985 191.86000061 192.600234985 193.850234985 195.68031311 197.68031311 195.39956665 194.139801025 193.170074463 192.580230713 192.269683838 192.0597229 191.910308838 191.769683838 191.549957275 191.330230713 191.339996338 191.79019165 192.740386963 194.210113525 196.009918213 197.759918213 199.189605713 195.18019104 194.319839478 193.85987854 193.510269165 193.100112915 192.77003479 192.619644165 192.420425415 192.010269165 191.68019104 191.85987854 192.489761353 193.249526978 194.159683228 195.529800415 197.329605103 199.029800415 195.19984436 194.159805298 193.489883423 192.919570923 192.18031311 191.329727173 190.61000061 190.159805298 189.970352173 190.09046936 190.560195923 191.279922485 192.03968811 192.86000061 194.03968811 195.68031311 197.550430298 195.39956665 193.920074463 192.820465088 192.240386963 191.9503479 191.729644775 191.549957275 191.429840088 191.370269775 191.370269775 191.530426025 191.96987915 192.780426025 194.030426025 195.64956665 197.339996338 198.830230713 195.069839478 194.060073853 193.59034729 193.279800415 192.85987854 192.499526978 192.369644165 192.34034729 192.189956665 192.02003479 192.18019104 192.739761353 193.420425415 194.18019104 195.279800415 196.810073853 198.460464478 195.190078735 194.11000061 193.369766235 192.800430298 192.150039673 191.390274048 190.749649048 190.419570923 190.36000061 190.510391235 190.900039673 191.510391235 192.249649048 193.100234985 194.230117798 195.730117798 197.499649048 195.370269775 193.89956665 192.8800354 192.349761963 192.0597229 191.759918213 191.519683838 191.439605713 191.519683838 191.670074463 191.8800354 192.210113525 192.799957275 193.79019165 195.2003479 196.830230713 198.460113525 194.94972229 194.010269165 193.640151978 193.439956665 193.069839478 192.659683228 192.52003479 192.649917603 192.729995728 192.69972229 192.77003479 193.100112915 193.569839478 194.140151978 195.02003479 196.350112915 197.94972229 195.150039673 194.140274048 193.459609985 192.94984436 192.37953186 191.730117798 191.220352173 191.060195923 191.11000061 191.220352173 191.36000061 191.659805298 192.220352173 193.079727173 194.230117798 195.69984436 197.44984436 195.120269775 193.799957275 192.96987915 192.54019165 192.240386963 191.929840088 191.710113525 191.729644775 191.889801025 192.04019165 192.1300354 192.259918213 192.6300354 193.429840088 194.710113525 196.349761963 198.080230713 194.84034729 194.02003479 193.739761353 193.60987854 193.300308228 192.93019104 192.850112915 193.060073853 193.28956604 193.310073853 193.229995728 193.239761353 193.460464478 193.93019104 194.729995728 195.939956665 197.479995728 195.079727173 194.18031311 193.569961548 193.100234985 192.560195923 191.999649048 191.61000061 191.560195923 191.690078735 191.709609985 191.560195923 191.52015686 191.919570923 192.819961548 194.09046936 195.619766235 197.37953186 194.750152588 193.609527588 192.910308838 192.509918213 192.21987915 191.960113525 191.870269775 191.990386963 192.170074463 192.189605713 192.080230713 192.070465088 192.3800354 193.139801025 194.370269775 195.960113525 197.750152588 194.960464478 194.19972229 193.810073853 193.53956604 193.249526978 192.999526978 192.970230103 193.210464478 193.44972229 193.470230103 193.279800415 193.10987854 193.229995728 193.720230103 194.550308228 195.68019104 197.100112915 195.12953186 194.249649048 193.61000061 193.11000061 192.600234985 192.079727173 191.749649048 191.749649048 191.87953186 191.819961548 191.499649048 191.310195923 191.68031311 192.659805298 194.02015686 195.560195923 197.300430298 194.639801025 193.639801025 192.960113525 192.500152588 192.14956665 191.939605713 191.9503479 192.1300354 192.259918213 192.170074463 191.9503479 191.939605713 192.330230713 193.1300354 194.250152588 195.689605713 197.460113525 195.43019104 194.630386353 193.960464478 193.460464478 193.119644165 192.970230103 193.010269165 193.19972229 193.369644165 193.369644165 193.189956665 193.050308228 193.19972229 193.720230103 194.529800415 195.560073853 196.829605103 195.390274048 194.43031311 193.68031311 193.140274048 192.669570923 192.209609985 191.890274048 191.819961548 191.900039673 191.819961548 191.53968811 191.409805298 191.810195923 192.779922485 194.069961548 195.529922485 197.239883423 194.830230713 193.920074463 193.229644775 192.670074463 192.259918213 192.030426025 192.019683838 192.160308838 192.269683838 192.179840088 192.030426025 192.109527588 192.570465088 193.320465088 194.250152588 195.509918213 197.210113525 195.880386353 194.989761353 194.140151978 193.489761353 193.189956665 193.18019104 193.260269165 193.34034729 193.380386353 193.380386353 193.300308228 193.260269165 193.420425415 193.890151978 194.600112915 195.489761353 196.670425415 195.650039673 194.550430298 193.739883423 193.249649048 192.900039673 192.510391235 192.150039673 191.980117798 191.980117798 191.970352173 191.84046936 191.86000061 192.27015686 193.079727173 194.159805298 195.52015686 197.239883423 194.859527588 194.000152588 193.349761963 192.830230713 192.439605713 192.179840088 192.070465088 192.120269775 192.240386963 192.280426025 192.269683838 192.410308838 192.839996338 193.46987915 194.250152588 195.39956665 197.099761963 195.760269165 194.880386353 194.069839478 193.529800415 193.409683228 193.560073853 193.670425415 193.619644165 193.53956604 193.510269165 193.499526978 193.52003479 193.659683228 194.010269165 194.59034729 195.409683228 196.579605103 195.600234985 194.400039673 193.62953186 193.300430298 193.140274048 192.850234985 192.43031311 192.12953186 192.079727173 192.140274048 192.19984436 192.350234985 192.720352173 193.329727173 194.230117798 195.53968811 197.34046936 194.410308838 193.54019165 193.009918213 192.71987915 192.509918213 192.29019165 192.089996338 192.030426025 192.189605713 192.359527588 192.460113525 192.589996338 192.920074463 193.479644775 194.250152588 195.410308838 197.139801025 195.079605103 194.310073853 193.760269165 193.529800415 193.649917603 193.899917603 193.999526978 193.869644165 193.68019104 193.600112915 193.59034729 193.60987854 193.69972229 193.960464478 194.479995728 195.300308228 196.52003479 195.19984436 193.980117798 193.36000061 193.27015686 193.310195923 193.079727173 192.61000061 192.220352173 192.100234985 192.190078735 192.36000061 192.59046936 192.940078735 193.44984436 194.27015686 195.619766235 197.499649048 193.769683838 192.849761963 192.479644775 192.490386963 192.570465088 192.479644775 192.21987915 192.0597229 192.170074463 192.39956665 192.519683838 192.620269775 192.89956665 193.479644775 194.3097229 195.509918213 197.179840088 194.479995728 193.850112915 193.619644165 193.670425415 193.909683228 194.18019104 194.239761353 194.079605103 193.85987854 193.710464478 193.619644165 193.569839478 193.630386353 193.880386353 194.390151978 195.210464478 196.420425415 194.78968811 193.62953186 193.190078735 193.279922485 193.419570923 193.239883423 192.760391235 192.34046936 192.169570923 192.209609985 192.369766235 192.61000061 192.959609985 193.470352173 194.319961548 195.690078735 197.560195923 193.519683838 192.599761963 192.339996338 192.530426025 192.79019165 192.8097229 192.54019165 192.299957275 192.299957275 192.46987915 192.580230713 192.670074463 192.960113525 193.570465088 194.429840088 195.54019165 197.070465088 194.439956665 193.920425415 193.84034729 194.010269165 194.249526978 194.439956665 194.479995728 194.380386353 194.220230103 194.050308228 193.850112915 193.68019104 193.659683228 193.85987854 194.329605103 195.079605103 196.19972229 194.720352173 193.669570923 193.319961548 193.419570923 193.52015686 193.329727173 192.94984436 192.579727173 192.409805298 192.369766235 192.409805298 192.61000061 192.970352173 193.510391235 194.36000061 195.659805298 197.409805298 193.839996338 192.960113525 192.679840088 192.839996338 193.099761963 193.14956665 192.920074463 192.639801025 192.54019165 192.620269775 192.710113525 192.839996338 193.139801025 193.710113525 194.479644775 195.439605713 196.8097229 194.819839478 194.279800415 194.159683228 194.300308228 194.479995728 194.619644165 194.689956665 194.710464478 194.69972229 194.560073853 194.279800415 193.94972229 193.779800415 193.880386353 194.260269165 194.880386353 195.920425415 195.050430298 194.079727173 193.659805298 193.59046936 193.529922485 193.329727173 193.050430298 192.84046936 192.730117798 192.650039673 192.600234985 192.720352173 193.060195923 193.61000061 194.400039673 195.560195923 197.159805298 194.320465088 193.46987915 193.089996338 193.070465088 193.21987915 193.299957275 193.160308838 192.920074463 192.759918213 192.769683838 192.870269775 193.04019165 193.339996338 193.8097229 194.439605713 195.299957275 196.6300354 195.140151978 194.439956665 194.19972229 194.279800415 194.470230103 194.649917603 194.77003479 194.899917603 195.02003479 194.970230103 194.670425415 194.229995728 193.920425415 193.899917603 194.170425415 194.720230103 195.69972229 195.499649048 194.529922485 193.959609985 193.62953186 193.409805298 193.190078735 193.02015686 192.94984436 192.919570923 192.87953186 192.84046936 192.94984436 193.27015686 193.800430298 194.53968811 195.579727173 197.050430298 194.500152588 193.64956665 193.2003479 193.070465088 193.14956665 193.269683838 193.250152588 193.070465088 192.910308838 192.889801025 193.019683838 193.21987915 193.490386963 193.859527588 194.410308838 195.299957275 196.710113525 195.210464478 194.369644165 194.029800415 194.130386353 194.399917603 194.630386353 194.78956604 194.960464478 195.140151978 195.170425415 194.899917603 194.44972229 194.079605103 193.979995728 194.189956665 194.710464478 195.68019104 195.77015686 194.800430298 194.079727173 193.59046936 193.279922485 193.069961548 192.94984436 192.900039673 192.919570923 192.970352173 193.029922485 193.19984436 193.550430298 194.09046936 194.819961548 195.819961548 197.230117798 194.3800354 193.549957275 193.1300354 193.019683838 193.109527588 193.259918213 193.29019165 193.179840088 193.030426025 193.000152588 193.139801025 193.370269775 193.609527588 193.929840088 194.490386963 195.46987915 196.960113525 195.249526978 194.380386353 194.029800415 194.130386353 194.460464478 194.710464478 194.850112915 195.010269165 195.189956665 195.229995728 194.989761353 194.579605103 194.229995728 194.119644165 194.34034729 194.85987854 195.779800415 195.829727173 194.850234985 194.079727173 193.560195923 193.279922485 193.119766235 192.980117798 192.86000061 192.869766235 192.970352173 193.12953186 193.37953186 193.77015686 194.36000061 195.140274048 196.169570923 197.550430298 194.280426025 193.46987915 193.1300354 193.089996338 193.2003479 193.320465088 193.359527588 193.280426025 193.160308838 193.109527588 193.240386963 193.460113525 193.7003479 194.000152588 194.570465088 195.609527588 197.14956665 195.439956665 194.640151978 194.279800415 194.319839478 194.529800415 194.749526978 194.93019104 195.100112915 195.239761353 195.229995728 194.960464478 194.579605103 194.279800415 194.229995728 194.460464478 194.970230103 195.850112915 195.779922485 194.819961548 194.050430298 193.569961548 193.350234985 193.249649048 193.079727173 192.890274048 192.829727173 192.93031311 193.140274048 193.43031311 193.86000061 194.480117798 195.319961548 196.400039673 197.760391235 194.410308838 193.589996338 193.250152588 193.189605713 193.240386963 193.3097229 193.359527588 193.339996338 193.269683838 193.2003479 193.259918213 193.4503479 193.689605713 193.979644775 194.549957275 195.609527588 197.109527588 195.710464478 194.970230103 194.529800415 194.369644165 194.43019104 194.630386353 194.899917603 195.170425415 195.279800415 195.159683228 194.819839478 194.439956665 194.19972229 194.19972229 194.460464478 194.979995728 195.800308228 195.77015686 194.779922485 193.999649048 193.529922485 193.34046936 193.260391235 193.119766235 192.940078735 192.84046936 192.87953186 193.060195923 193.350234985 193.800430298 194.459609985 195.34046936 196.43031311 197.760391235 194.7003479 193.8097229 193.339996338 193.160308838 193.120269775 193.179840088 193.280426025 193.370269775 193.339996338 193.250152588 193.229644775 193.359527588 193.589996338 193.8800354 194.439605713 195.479644775 196.960113525 195.920425415 195.159683228 194.60987854 194.27003479 194.220230103 194.479995728 194.899917603 195.249526978 195.310073853 195.060073853 194.640151978 194.27003479 194.060073853 194.09034729 194.399917603 194.960464478 195.739761353 195.78968811 194.739883423 193.93031311 193.43031311 193.220352173 193.140274048 193.03968811 192.919570923 192.86000061 192.86000061 192.980117798 193.249649048 193.720352173 194.409805298 195.300430298 196.369766235 197.62953186 195.019683838 194.009918213 193.359527588 193.04019165 192.96987915 193.0597229 193.250152588 193.389801025 193.370269775 193.250152588 193.189605713 193.299957275 193.500152588 193.780426025 194.339996338 195.370269775 196.799957275 196.069839478 195.249526978 194.619644165 194.19972229 194.170425415 194.53956604 195.050308228 195.390151978 195.369644165 195.03956604 194.60987854 194.239761353 194.02003479 194.02003479 194.34034729 194.939956665 195.729995728 195.78968811 194.68031311 193.84046936 193.319961548 193.09046936 192.999649048 192.94984436 192.900039673 192.86000061 192.86000061 192.94984436 193.220352173 193.709609985 194.409805298 195.279922485 196.329727173 197.510391235 195.320465088 194.240386963 193.460113525 193.049957275 192.979644775 193.109527588 193.280426025 193.359527588 193.3097229 193.21987915 193.210113525 193.320465088 193.479644775 193.71987915 194.269683838 195.299957275 196.660308838 196.249526978 195.380386353 194.69972229 194.28956604 194.310073853 194.720230103 195.229995728 195.489761353 195.409683228 195.100112915 194.720230103 194.35987854 194.03956604 193.93019104 194.210464478 194.869644165 195.69972229 195.730117798 194.560195923 193.730117798 193.249649048 193.029922485 192.93031311 192.87953186 192.850234985 192.84046936 192.850234985 192.959609985 193.239883423 193.739883423 194.409805298 195.260391235 196.27015686 197.390274048 195.670074463 194.549957275 193.679840088 193.21987915 193.1300354 193.229644775 193.29019165 193.259918213 193.2003479 193.189605713 193.269683838 193.370269775 193.4503479 193.620269775 194.14956665 195.160308838 196.460113525 196.460464478 195.53956604 194.800308228 194.369644165 194.380386353 194.739761353 195.170425415 195.380386353 195.319839478 195.119644165 194.84034729 194.439956665 193.999526978 193.749526978 193.939956665 194.640151978 195.569839478 195.650039673 194.419570923 193.600234985 193.159805298 192.970352173 192.87953186 192.800430298 192.760391235 192.77015686 192.819961548 192.94984436 193.230117798 193.68031311 194.310195923 195.12953186 196.119766235 197.230117798 196.049957275 194.8800354 193.910308838 193.359527588 193.210113525 193.240386963 193.21987915 193.139801025 193.109527588 193.189605713 193.299957275 193.339996338 193.299957275 193.3800354 193.8800354 194.89956665 196.2003479 196.619644165 195.630386353 194.84034729 194.34034729 194.27003479 194.53956604 194.890151978 195.119644165 195.170425415 195.09034729 194.869644165 194.420425415 193.899917603 193.550308228 193.68019104 194.34034729 195.34034729 195.61000061 194.310195923 193.44984436 193.010391235 192.829727173 192.739883423 192.669570923 192.650039673 192.669570923 192.739883423 192.86000061 193.079727173 193.480117798 194.050430298 194.850234985 195.850234985 196.999649048 196.3800354 195.089996338 193.979644775 193.280426025 193.070465088 193.089996338 193.109527588 193.089996338 193.1300354 193.229644775 193.280426025 193.210113525 193.080230713 193.099761963 193.530426025 194.519683838 195.889801025 196.659683228 195.600112915 194.760269165 194.239761353 194.140151978 194.380386353 194.720230103 194.999526978 195.119644165 195.09034729 194.829605103 194.35987854 193.829605103 193.499526978 193.569839478 194.140151978 195.100112915 195.619766235 194.239883423 193.28968811 192.78968811 192.61000061 192.560195923 192.550430298 192.569961548 192.619766235 192.669570923 192.739883423 192.900039673 193.220352173 193.739883423 194.489883423 195.489883423 196.709609985 196.5597229 195.109527588 193.849761963 193.049957275 192.799957275 192.870269775 192.990386963 193.099761963 193.2003479 193.259918213 193.229644775 193.120269775 192.979644775 192.9503479 193.280426025 194.170074463 195.620269775 196.569839478 195.420425415 194.59034729 194.130386353 194.10987854 194.409683228 194.810073853 195.119644165 195.249526978 195.149917603 194.800308228 194.279800415 193.78956604 193.53956604 193.619644165 194.079605103 194.960464478 195.59046936 194.12953186 193.119766235 192.569961548 192.400039673 192.409805298 192.489883423 192.550430298 192.600234985 192.62953186 192.669570923 192.819961548 193.100234985 193.53968811 194.190078735 195.159805298 196.43031311 196.549957275 194.960113525 193.620269775 192.820465088 192.580230713 192.679840088 192.870269775 193.049957275 193.2003479 193.250152588 193.189605713 193.120269775 193.0597229 193.030426025 193.21987915 193.979644775 195.460113525 196.329605103 195.09034729 194.27003479 193.920425415 194.060073853 194.489761353 194.970230103 195.310073853 195.439956665 195.279800415 194.829605103 194.220230103 193.729995728 193.529800415 193.649917603 194.079605103 194.890151978 195.440078735 193.940078735 192.93031311 192.400039673 192.279922485 192.36000061 192.459609985 192.529922485 192.569961548 192.619766235 192.720352173 192.909805298 193.190078735 193.53968811 194.079727173 194.959609985 196.19984436 196.3800354 194.71987915 193.439605713 192.71987915 192.509918213 192.5597229 192.7003479 192.89956665 193.099761963 193.179840088 193.160308838 193.160308838 193.189605713 193.189605713 193.330230713 194.000152588 195.460113525 195.989761353 194.670425415 193.85987854 193.600112915 193.850112915 194.409683228 194.999526978 195.420425415 195.59034729 195.43019104 194.920425415 194.220230103 193.640151978 193.420425415 193.60987854 194.100112915 194.890151978 195.230117798 193.720352173 192.77015686 192.34046936 192.27015686 192.350234985 192.409805298 192.440078735 192.480117798 192.600234985 192.78968811 193.060195923 193.350234985 193.659805298 194.11000061 194.909805298 196.100234985 196.070465088 194.460113525 193.339996338 192.769683838 192.54019165 192.460113525 192.509918213 192.729644775 193.019683838 193.170074463 193.14956665 193.120269775 193.170074463 193.240386963 193.4503479 194.160308838 195.5597229 195.649917603 194.329605103 193.52003479 193.279800415 193.579605103 194.229995728 194.93019104 195.44972229 195.670425415 195.53956604 195.029800415 194.260269165 193.59034729 193.34034729 193.59034729 194.170425415 194.970230103 195.050430298 193.560195923 192.69984436 192.369766235 192.329727173 192.34046936 192.319961548 192.329727173 192.43031311 192.61000061 192.84046936 193.100234985 193.390274048 193.69984436 194.150039673 194.919570923 196.029922485 195.71987915 194.21987915 193.3097229 192.839996338 192.549957275 192.359527588 192.370269775 192.679840088 193.099761963 193.29019165 193.189605713 193.019683838 192.990386963 193.109527588 193.460113525 194.259918213 195.620269775 195.369644165 194.10987854 193.350112915 193.09034729 193.369644165 194.079605103 194.880386353 195.470230103 195.68019104 195.52003479 195.02003479 194.279800415 193.59034729 193.319839478 193.60987854 194.279800415 195.09034729 194.940078735 193.489883423 192.690078735 192.409805298 192.36000061 192.310195923 192.27015686 192.329727173 192.550430298 192.760391235 192.900039673 193.02015686 193.230117798 193.569961548 194.09046936 194.850234985 195.890274048 195.410308838 194.04019165 193.259918213 192.830230713 192.509918213 192.299957275 192.3800354 192.780426025 193.269683838 193.460113525 193.29019165 193.000152588 192.859527588 192.96987915 193.359527588 194.189605713 195.519683838 195.149917603 193.970230103 193.220230103 192.920425415 193.18019104 193.94972229 194.85987854 195.470230103 195.600112915 195.350112915 194.850112915 194.210464478 193.600112915 193.28956604 193.529800415 194.229995728 195.159683228 194.850234985 193.419570923 192.640274048 192.369766235 192.329727173 192.28968811 192.300430298 192.480117798 192.78968811 192.999649048 192.999649048 192.93031311 193.03968811 193.400039673 193.940078735 194.68031311 195.640274048 195.160308838 193.89956665 193.179840088 192.759918213 192.490386963 192.3800354 192.530426025 192.920074463 193.3097229 193.439605713 193.269683838 193.049957275 192.929840088 192.929840088 193.189605713 193.939605713 195.229644775 194.899917603 193.760269165 193.010269165 192.68019104 192.920425415 193.739761353 194.760269165 195.420425415 195.489761353 195.140151978 194.649917603 194.159683228 193.640151978 193.229995728 193.260269165 193.93019104 195.060073853 194.68031311 193.230117798 192.459609985 192.249649048 192.28968811 192.34046936 192.409805298 192.619766235 192.919570923 193.060195923 192.94984436 192.78968811 192.890274048 193.260391235 193.78968811 194.459609985 195.369766235 194.9503479 193.750152588 193.070465088 192.710113525 192.5597229 192.589996338 192.750152588 192.960113525 193.089996338 193.070465088 193.019683838 193.009918213 193.019683838 192.96987915 193.030426025 193.609527588 194.910308838 194.600112915 193.479995728 192.729995728 192.369644165 192.600112915 193.439956665 194.52003479 195.27003479 195.34034729 194.970230103 194.550308228 194.19972229 193.739761353 193.170425415 192.920425415 193.470230103 194.78956604 194.350234985 192.940078735 192.239883423 192.150039673 192.369766235 192.53968811 192.600234985 192.650039673 192.720352173 192.690078735 192.550430298 192.499649048 192.69984436 193.100234985 193.59046936 194.239883423 195.169570923 194.759918213 193.599761963 192.9503479 192.679840088 192.679840088 192.830230713 192.939605713 192.910308838 192.740386963 192.589996338 192.620269775 192.830230713 192.979644775 192.89956665 192.830230713 193.3097229 194.599761963 194.310073853 193.210464478 192.489761353 192.149917603 192.319839478 193.079605103 194.130386353 194.939956665 195.119644165 194.819839478 194.479995728 194.249526978 193.850112915 193.159683228 192.640151978 193.010269165 194.43019104 193.959609985 192.640274048 192.079727173 192.18031311 192.600234985 192.919570923 192.940078735 192.720352173 192.43031311 192.18031311 192.029922485 192.100234985 192.37953186 192.77015686 193.249649048 193.94984436 194.999649048 194.549957275 193.420074463 192.830230713 192.64956665 192.740386963 192.960113525 193.0597229 192.9503479 192.679840088 192.490386963 192.530426025 192.729644775 192.830230713 192.689605713 192.599761963 193.049957275 194.250152588 194.03956604 193.010269165 192.35987854 192.029800415 192.10987854 192.670425415 193.600112915 194.460464478 194.829605103 194.69972229 194.399917603 194.18019104 193.810073853 193.100112915 192.460464478 192.689956665 194.029800415 193.600234985 192.440078735 192.02015686 192.260391235 192.850234985 193.369766235 193.480117798 193.169570923 192.650039673 192.19984436 191.970352173 191.970352173 192.100234985 192.319961548 192.739883423 193.569961548 194.749649048 194.370269775 193.240386963 192.689605713 192.54019165 192.689605713 192.939605713 193.139801025 193.189605713 193.109527588 193.019683838 192.990386963 192.939605713 192.759918213 192.46987915 192.389801025 192.849761963 193.870269775 193.850112915 192.909683228 192.319839478 191.979995728 191.920425415 192.239761353 192.989761353 193.93019104 194.59034729 194.689956665 194.399917603 194.029800415 193.569839478 192.899917603 192.329605103 192.510269165 193.68019104 193.319961548 192.329727173 191.999649048 192.260391235 192.93031311 193.690078735 194.119766235 194.03968811 193.600234985 193.060195923 192.669570923 192.369766235 192.11000061 191.94984436 192.230117798 193.140274048 194.43031311 194.229644775 193.080230713 192.519683838 192.3800354 192.530426025 192.849761963 193.229644775 193.54019165 193.71987915 193.750152588 193.6300354 193.299957275 192.799957275 192.320465088 192.259918213 192.750152588 193.5597229 193.78956604 192.939956665 192.369644165 191.970230103 191.739761353 191.819839478 192.390151978 193.380386353 194.319839478 194.69972229 194.460464478 193.880386353 193.249526978 192.619644165 192.229995728 192.479995728 193.499526978 193.159805298 192.279922485 191.940078735 192.11000061 192.779922485 193.760391235 194.600234985 194.94984436 194.739883423 194.239883423 193.68031311 193.060195923 192.329727173 191.77015686 191.890274048 192.850234985 194.140274048 194.21987915 193.019683838 192.389801025 192.2003479 192.339996338 192.750152588 193.299957275 193.780426025 194.04019165 194.070465088 193.870269775 193.420074463 192.769683838 192.229644775 192.21987915 192.750152588 193.439605713 193.850112915 193.119644165 192.529800415 192.02003479 191.619644165 191.479995728 191.78956604 192.630386353 193.68019104 194.319839478 194.239761353 193.649917603 192.94972229 192.420425415 192.229995728 192.59034729 193.52003479 193.060195923 192.249649048 191.86000061 191.909805298 192.52015686 193.600234985 194.739883423 195.37953186 195.329727173 194.829727173 194.190078735 193.43031311 192.489883423 191.749649048 191.78968811 192.749649048 193.959609985 194.330230713 193.0597229 192.320465088 192.019683838 192.139801025 192.639801025 193.299957275 193.79019165 193.910308838 193.79019165 193.570465088 193.210113525 192.670074463 192.189605713 192.210113525 192.780426025 193.460113525 193.899917603 193.249526978 192.600112915 191.979995728 191.479995728 191.159683228 191.130386353 191.560073853 192.380386353 193.149917603 193.390151978 193.130386353 192.649917603 192.319839478 192.34034729 192.800308228 193.640151978 192.909805298 192.169570923 191.77015686 191.730117798 192.27015686 193.36000061 194.560195923 195.249649048 195.18031311 194.619766235 194.010391235 193.34046936 192.52015686 191.829727173 191.87953186 192.78968811 193.890274048 194.46987915 193.2003479 192.349761963 191.870269775 191.8800354 192.420074463 193.170074463 193.660308838 193.670074463 193.439605713 193.259918213 193.089996338 192.740386963 192.299957275 192.229644775 192.71987915 193.420074463 193.670425415 193.029800415 192.329605103 191.670425415 191.210464478 190.829605103 190.489761353 190.390151978 190.77003479 191.510269165 192.170425415 192.420425415 192.350112915 192.279800415 192.470230103 192.970230103 193.739761353 192.68031311 192.02015686 191.62953186 191.569961548 192.02015686 193.010391235 194.159805298 194.819961548 194.730117798 194.190078735 193.68031311 193.239883423 192.640274048 192.03968811 192.03968811 192.810195923 193.779922485 194.580230713 193.349761963 192.39956665 191.710113525 191.549957275 192.030426025 192.839996338 193.439605713 193.54019165 193.39956665 193.349761963 193.330230713 193.049957275 192.5597229 192.299957275 192.570465088 193.2003479 193.149917603 192.399917603 191.670425415 191.100112915 190.779800415 190.489761353 189.999526978 189.510269165 189.52003479 190.19972229 191.159683228 191.85987854 192.119644165 192.220230103 192.460464478 192.989761353 193.739761353 192.37953186 191.800430298 191.440078735 191.329727173 191.640274048 192.44984436 193.510391235 194.239883423 194.34046936 194.010391235 193.669570923 193.400039673 192.919570923 192.319961548 192.140274048 192.709609985 193.569961548 194.6300354 193.389801025 192.339996338 191.519683838 191.210113525 191.5597229 192.320465088 192.979644775 193.330230713 193.4503479 193.570465088 193.609527588 193.320465088 192.759918213 192.339996338 192.410308838 192.920074463 192.510269165 191.579605103 190.869644165 190.44972229 190.28956604 190.079605103 189.560073853 188.970230103 188.890151978 189.579605103 190.69972229 191.59034729 191.960464478 192.03956604 192.27003479 192.850112915 193.670425415 192.079727173 191.52015686 191.190078735 191.03968811 191.150039673 191.68031311 192.560195923 193.409805298 193.850234985 193.850234985 193.69984436 193.510391235 193.100234985 192.459609985 192.119766235 192.489883423 193.28968811 194.6300354 193.210113525 192.0597229 191.259918213 190.960113525 191.179840088 191.7003479 192.280426025 192.729644775 193.099761963 193.370269775 193.429840088 193.160308838 192.670074463 192.299957275 192.320465088 192.759918213 192.050308228 190.899917603 190.210464478 189.920425415 189.800308228 189.529800415 188.979995728 188.470230103 188.53956604 189.369644165 190.529800415 191.409683228 191.749526978 191.78956604 192.02003479 192.649917603 193.600112915 191.819961548 191.209609985 190.93031311 190.810195923 190.779922485 190.959609985 191.510391235 192.329727173 192.999649048 193.260391235 193.239883423 193.119766235 192.819961548 192.310195923 191.980117798 192.249649048 193.060195923 194.5597229 192.8097229 191.570465088 190.939605713 190.849761963 191.030426025 191.250152588 191.509918213 191.870269775 192.3097229 192.6300354 192.689605713 192.509918213 192.269683838 192.160308838 192.299957275 192.750152588 191.829605103 190.470230103 189.749526978 189.489761353 189.310073853 188.869644165 188.27003479 187.890151978 188.159683228 189.09034729 190.229995728 191.069839478 191.44972229 191.59034729 191.890151978 192.579605103 193.569839478 191.560195923 190.829727173 190.600234985 190.640274048 190.600234985 190.499649048 190.659805298 191.249649048 191.940078735 192.300430298 192.319961548 192.249649048 192.190078735 191.999649048 191.86000061 192.140274048 192.94984436 194.389801025 192.320465088 191.049957275 190.670074463 190.839996338 191.019683838 190.979644775 190.920074463 191.089996338 191.460113525 191.750152588 191.799957275 191.740386963 191.780426025 191.960113525 192.269683838 192.780426025 191.819839478 190.28956604 189.43019104 189.079605103 188.829605103 188.34034729 187.739761353 187.470230103 187.850112915 188.739761353 189.78956604 190.60987854 191.149917603 191.529800415 191.970230103 192.630386353 193.550308228 191.279922485 190.409805298 190.209609985 190.400039673 190.44984436 190.220352173 190.079727173 190.409805298 191.03968811 191.440078735 191.459609985 191.459609985 191.61000061 191.779922485 191.869766235 192.169570923 192.93031311 194.179840088 191.979644775 190.769683838 190.530426025 190.769683838 190.889801025 190.7003479 190.490386963 190.5597229 190.849761963 191.0597229 191.070465088 191.109527588 191.349761963 191.750152588 192.189605713 192.729644775 192.010269165 190.34034729 189.249526978 188.739761353 188.479995728 188.10987854 187.60987854 187.390151978 187.729995728 188.510269165 189.390151978 190.189956665 190.880386353 191.499526978 192.069839478 192.710464478 193.53956604 191.140274048 190.140274048 189.850234985 190.010391235 190.100234985 189.810195923 189.529922485 189.77015686 190.43031311 190.940078735 191.029922485 191.050430298 191.319961548 191.69984436 191.94984436 192.239883423 192.909805298 194.030426025 191.929840088 190.79019165 190.490386963 190.530426025 190.46987915 190.250152588 190.0597229 190.1300354 190.330230713 190.460113525 190.46987915 190.589996338 190.990386963 191.54019165 192.080230713 192.660308838 192.390151978 190.649917603 189.300308228 188.59034729 188.350112915 188.10987854 187.68019104 187.420425415 187.649917603 188.310073853 189.09034729 189.829605103 190.550308228 191.279800415 191.960464478 192.649917603 193.470230103 191.239883423 190.169570923 189.659805298 189.600234985 189.550430298 189.220352173 188.909805298 189.169570923 189.94984436 190.62953186 190.84046936 190.87953186 191.12953186 191.560195923 191.900039673 192.220352173 192.850234985 194.009918213 192.0597229 190.920074463 190.39956665 190.14956665 189.929840088 189.71987915 189.620269775 189.660308838 189.729644775 189.759918213 189.8097229 190.080230713 190.639801025 191.330230713 191.960113525 192.599761963 192.84034729 191.079605103 189.52003479 188.640151978 188.35987854 188.119644165 187.630386353 187.229995728 187.380386353 188.010269165 188.779800415 189.460464478 190.10987854 190.829605103 191.600112915 192.439956665 193.390151978 191.499649048 190.369766235 189.61000061 189.27015686 189.069961548 188.720352173 188.440078735 188.69984436 189.470352173 190.220352173 190.510391235 190.569961548 190.810195923 191.239883423 191.68031311 192.11000061 192.78968811 194.000152588 192.089996338 190.889801025 190.189605713 189.780426025 189.530426025 189.429840088 189.359527588 189.240386963 189.080230713 188.990386963 189.1300354 189.599761963 190.330230713 191.14956665 191.8800354 192.580230713 193.09034729 191.300308228 189.670425415 188.729995728 188.390151978 188.060073853 187.460464478 186.979995728 187.10987854 187.77003479 188.52003479 189.149917603 189.729995728 190.399917603 191.249526978 192.239761353 193.350112915 191.650039673 190.419570923 189.52015686 189.050430298 188.819961548 188.569961548 188.350234985 188.529922485 189.119766235 189.709609985 189.970352173 190.060195923 190.329727173 190.829727173 191.37953186 191.959609985 192.739883423 193.79019165 191.8097229 190.599761963 189.920074463 189.570465088 189.460113525 189.429840088 189.3097229 188.96987915 188.54019165 188.330230713 188.5597229 189.2003479 190.099761963 191.019683838 191.820465088 192.549957275 193.02003479 191.210464478 189.649917603 188.77003479 188.390151978 188.010269165 187.43019104 187.079605103 187.27003479 187.869644165 188.479995728 188.999526978 189.550308228 190.249526978 191.119644165 192.18019104 193.35987854 191.459609985 190.150039673 189.27015686 188.850234985 188.739883423 188.619766235 188.529922485 188.61000061 188.919570923 189.220352173 189.36000061 189.510391235 189.87953186 190.480117798 191.140274048 191.829727173 192.69984436 193.320465088 191.349761963 190.280426025 189.8097229 189.609527588 189.549957275 189.500152588 189.269683838 188.769683838 188.179840088 187.889801025 188.14956665 188.910308838 189.920074463 190.920074463 191.780426025 192.54019165 192.78956604 191.029800415 189.649917603 188.880386353 188.489761353 188.100112915 187.739761353 187.659683228 187.939956665 188.300308228 188.600112915 188.970230103 189.569839478 190.350112915 191.210464478 192.220230103 193.35987854 191.069961548 189.78968811 189.060195923 188.749649048 188.690078735 188.650039673 188.62953186 188.669570923 188.779922485 188.84046936 188.900039673 189.12953186 189.619766235 190.279922485 190.970352173 191.69984436 192.61000061 192.750152588 190.990386963 190.21987915 189.960113525 189.780426025 189.5597229 189.339996338 189.049957275 188.570465088 188.009918213 187.710113525 187.960113525 188.740386963 189.79019165 190.849761963 191.769683838 192.570465088 192.720230103 191.09034729 189.920425415 189.229995728 188.760269165 188.35987854 188.189956665 188.369644165 188.659683228 188.729995728 188.69972229 188.970230103 189.640151978 190.489761353 191.300308228 192.220230103 193.319839478 190.850234985 189.760391235 189.220352173 188.93031311 188.730117798 188.579727173 188.53968811 188.600234985 188.62953186 188.600234985 188.659805298 188.970352173 189.550430298 190.220352173 190.890274048 191.600234985 192.510391235 192.339996338 190.89956665 190.420074463 190.240386963 189.870269775 189.349761963 188.929840088 188.670074463 188.3800354 187.990386963 187.780426025 188.000152588 188.7003479 189.7003479 190.780426025 191.769683838 192.6300354 192.93019104 191.460464478 190.44972229 189.760269165 189.159683228 188.689956665 188.579605103 188.84034729 189.02003479 188.869644165 188.689956665 188.960464478 189.69972229 190.53956604 191.300308228 192.159683228 193.27003479 191.029922485 190.19984436 189.749649048 189.350234985 188.890274048 188.53968811 188.440078735 188.480117798 188.510391235 188.499649048 188.61000061 188.999649048 189.61000061 190.260391235 190.869766235 191.550430298 192.43031311 192.189605713 190.979644775 190.570465088 190.259918213 189.64956665 188.89956665 188.39956665 188.229644775 188.14956665 188.009918213 187.920074463 188.160308838 188.79019165 189.7003479 190.7003479 191.71987915 192.689605713 193.239761353 191.85987854 190.880386353 190.159683228 189.510269165 188.989761353 188.819839478 188.960464478 189.010269165 188.78956604 188.659683228 189.02003479 189.77003479 190.53956604 191.249526978 192.140151978 193.28956604 191.52015686 190.819961548 190.27015686 189.659805298 189.02015686 188.600234985 188.480117798 188.489883423 188.470352173 188.470352173 188.650039673 189.100234985 189.690078735 190.300430298 190.919570923 191.600234985 192.44984436 192.189605713 191.009918213 190.420074463 189.870269775 189.139801025 188.370269775 187.929840088 187.820465088 187.849761963 187.849761963 187.929840088 188.269683838 188.89956665 189.710113525 190.639801025 191.639801025 192.689605713 193.44972229 192.03956604 190.989761353 190.249526978 189.649917603 189.159683228 188.939956665 188.909683228 188.84034729 188.670425415 188.670425415 189.100112915 189.78956604 190.499526978 191.239761353 192.220230103 193.420425415 192.050430298 191.220352173 190.400039673 189.59046936 188.940078735 188.62953186 188.569961548 188.52015686 188.409805298 188.409805298 188.650039673 189.119766235 189.69984436 190.329727173 190.999649048 191.720352173 192.52015686 192.139801025 190.859527588 190.000152588 189.259918213 188.54019165 187.9503479 187.620269775 187.509918213 187.490386963 187.54019165 187.769683838 188.250152588 188.939605713 189.750152588 190.609527588 191.589996338 192.679840088 193.499526978 192.029800415 190.890151978 190.119644165 189.600112915 189.19972229 188.960464478 188.850112915 188.749526978 188.630386353 188.720230103 189.119644165 189.720230103 190.409683228 191.27003479 192.369644165 193.579605103 192.409805298 191.300430298 190.18031311 189.230117798 188.68031311 188.529922485 188.550430298 188.459609985 188.310195923 188.34046936 188.650039673 189.140274048 189.720352173 190.369766235 191.119766235 191.87953186 192.650039673 191.979644775 190.609527588 189.580230713 188.759918213 188.160308838 187.759918213 187.549957275 187.429840088 187.339996338 187.3800354 187.64956665 188.21987915 188.979644775 189.799957275 190.679840088 191.660308838 192.729644775 193.44972229 191.999526978 190.829605103 190.029800415 189.510269165 189.170425415 188.960464478 188.850112915 188.77003479 188.710464478 188.779800415 189.079605103 189.60987854 190.34034729 191.310073853 192.489761353 193.69972229 192.499649048 191.169570923 189.890274048 188.900039673 188.419570923 188.36000061 188.400039673 188.329727173 188.239883423 188.36000061 188.730117798 189.249649048 189.829727173 190.52015686 191.28968811 192.050430298 192.78968811 191.71987915 190.330230713 189.269683838 188.500152588 188.009918213 187.759918213 187.660308838 187.589996338 187.54019165 187.5597229 187.799957275 188.330230713 189.0597229 189.920074463 190.849761963 191.820465088 192.849761963 193.34034729 191.960464478 190.829605103 190.010269165 189.489761353 189.149917603 188.960464478 188.899917603 188.890151978 188.85987854 188.890151978 189.119644165 189.60987854 190.369644165 191.390151978 192.550308228 193.729995728 192.310195923 190.94984436 189.69984436 188.77015686 188.300430298 188.209609985 188.239883423 188.239883423 188.28968811 188.499649048 188.900039673 189.419570923 190.010391235 190.730117798 191.499649048 192.209609985 192.900039673 191.420074463 190.0597229 189.049957275 188.330230713 187.929840088 187.769683838 187.79019165 187.870269775 187.910308838 187.920074463 188.080230713 188.500152588 189.189605713 190.0597229 191.04019165 192.04019165 192.990386963 193.159683228 191.819839478 190.739761353 189.960464478 189.439956665 189.119644165 188.970230103 188.960464478 188.979995728 188.979995728 189.02003479 189.249526978 189.760269165 190.53956604 191.510269165 192.619644165 193.77003479 191.919570923 190.62953186 189.53968811 188.739883423 188.279922485 188.11000061 188.140274048 188.239883423 188.400039673 188.650039673 189.010391235 189.480117798 190.11000061 190.890274048 191.669570923 192.329727173 192.989883423 191.14956665 189.799957275 188.8097229 188.170074463 187.8097229 187.71987915 187.859527588 188.080230713 188.189605713 188.170074463 188.240386963 188.580230713 189.250152588 190.170074463 191.210113525 192.229644775 193.160308838 192.94972229 191.569839478 190.52003479 189.800308228 189.350112915 189.079605103 188.970230103 188.979995728 189.010269165 189.029800415 189.119644165 189.420425415 189.979995728 190.739761353 191.659683228 192.729995728 193.899917603 191.480117798 190.249649048 189.319961548 188.68031311 188.279922485 188.11000061 188.150039673 188.319961548 188.510391235 188.709609985 188.970352173 189.400039673 190.069961548 190.919570923 191.739883423 192.419570923 193.09046936 190.939605713 189.580230713 188.639801025 188.04019165 187.740386963 187.710113525 187.9503479 188.229644775 188.330230713 188.229644775 188.21987915 188.570465088 189.269683838 190.229644775 191.3097229 192.39956665 193.3800354 192.78956604 191.380386353 190.329605103 189.649917603 189.27003479 189.060073853 188.979995728 189.010269165 189.029800415 189.050308228 189.19972229 189.569839478 190.159683228 190.909683228 191.810073853 192.880386353 194.100112915 191.140274048 189.900039673 189.100234985 188.61000061 188.329727173 188.220352173 188.260391235 188.43031311 188.59046936 188.730117798 188.919570923 189.310195923 189.999649048 190.869766235 191.749649048 192.52015686 193.239883423 190.830230713 189.519683838 188.620269775 188.070465088 187.799957275 187.839996338 188.1300354 188.429840088 188.4503479 188.240386963 188.189605713 188.5597229 189.3097229 190.280426025 191.370269775 192.54019165 193.609527588 192.729995728 191.310073853 190.279800415 189.640151978 189.279800415 189.09034729 189.02003479 189.03956604 189.069839478 189.119644165 189.28956604 189.710464478 190.319839478 191.050308228 191.939956665 193.060073853 194.300308228 190.970352173 189.720352173 188.980117798 188.62953186 188.459609985 188.37953186 188.400039673 188.499649048 188.619766235 188.749649048 188.959609985 189.369766235 190.02015686 190.869766235 191.749649048 192.600234985 193.419570923 190.8097229 189.589996338 188.759918213 188.240386963 188.000152588 188.070465088 188.39956665 188.670074463 188.620269775 188.330230713 188.250152588 188.64956665 189.39956665 190.320465088 191.389801025 192.599761963 193.759918213 192.689956665 191.310073853 190.28956604 189.670425415 189.329605103 189.119644165 189.03956604 189.060073853 189.100112915 189.149917603 189.34034729 189.78956604 190.44972229 191.210464478 192.09034729 193.19972229 194.460464478 190.909805298 189.669570923 188.999649048 188.730117798 188.619766235 188.52015686 188.459609985 188.499649048 188.600234985 188.77015686 189.060195923 189.510391235 190.150039673 190.93031311 191.77015686 192.640274048 193.569961548 190.859527588 189.729644775 188.939605713 188.4503479 188.21987915 188.320465088 188.6300354 188.8800354 188.769683838 188.460113525 188.370269775 188.759918213 189.500152588 190.3800354 191.410308838 192.609527588 193.8097229 192.619644165 191.220230103 190.19972229 189.60987854 189.300308228 189.119644165 189.02003479 189.010269165 189.02003479 189.060073853 189.260269165 189.760269165 190.510269165 191.35987854 192.279800415 193.350112915 194.600112915 190.919570923 189.739883423 189.119766235 188.86000061 188.720352173 188.59046936 188.489883423 188.489883423 188.579727173 188.779922485 189.119766235 189.619766235 190.27015686 191.010391235 191.810195923 192.68031311 193.650039673 190.960113525 189.849761963 189.089996338 188.639801025 188.4503479 188.549957275 188.839996338 189.030426025 188.8800354 188.549957275 188.460113525 188.8800354 189.620269775 190.46987915 191.460113525 192.620269775 193.820465088 192.569839478 191.09034729 190.02003479 189.460464478 189.229995728 189.119644165 189.010269165 188.939956665 188.909683228 188.920425415 189.119644165 189.659683228 190.52003479 191.489761353 192.479995728 193.550308228 194.78956604 191.010391235 189.909805298 189.300430298 188.999649048 188.810195923 188.659805298 188.579727173 188.59046936 188.68031311 188.850234985 189.169570923 189.69984436 190.37953186 191.119766235 191.890274048 192.749649048 193.760391235 191.109527588 189.990386963 189.250152588 188.820465088 188.689605713 188.799957275 189.04019165 189.170074463 188.990386963 188.670074463 188.599761963 189.009918213 189.750152588 190.609527588 191.580230713 192.7003479 193.8800354 192.600112915 191.03956604 189.93019104 189.390151978 189.249526978 189.18019104 189.050308228 188.939956665 188.880386353 188.899917603 189.09034729 189.630386353 190.53956604 191.60987854 192.689956665 193.819839478 195.079605103 191.19984436 190.150039673 189.510391235 189.140274048 188.900039673 188.760391235 188.730117798 188.78968811 188.87953186 189.02015686 189.319961548 189.84046936 190.52015686 191.260391235 192.010391235 192.87953186 193.940078735 191.3097229 190.170074463 189.410308838 189.000152588 188.8800354 188.990386963 189.210113525 189.299957275 189.120269775 188.830230713 188.79019165 189.189605713 189.910308838 190.769683838 191.740386963 192.849761963 194.009918213 192.69972229 191.149917603 190.010269165 189.460464478 189.34034729 189.279800415 189.10987854 188.94972229 188.920425415 189.010269165 189.229995728 189.739761353 190.60987854 191.739761353 192.920425415 194.100112915 195.390151978 191.459609985 190.419570923 189.720352173 189.27015686 188.970352173 188.84046936 188.84046936 188.940078735 189.060195923 189.220352173 189.52015686 190.050430298 190.709609985 191.400039673 192.12953186 193.02015686 194.150039673 191.549957275 190.359527588 189.54019165 189.109527588 188.979644775 189.099761963 189.299957275 189.39956665 189.240386963 188.990386963 188.979644775 189.370269775 190.089996338 190.979644775 191.979644775 193.070465088 194.189605713 192.84034729 191.329605103 190.18019104 189.600112915 189.439956665 189.34034729 189.119644165 188.920425415 188.93019104 189.10987854 189.390151978 189.890151978 190.739761353 191.890151978 193.149917603 194.390151978 195.689956665 191.730117798 190.659805298 189.900039673 189.369766235 189.029922485 188.87953186 188.87953186 188.989883423 189.140274048 189.350234985 189.709609985 190.239883423 190.869766235 191.52015686 192.220352173 193.140274048 194.36000061 191.759918213 190.500152588 189.620269775 189.120269775 188.979644775 189.120269775 189.389801025 189.509918213 189.349761963 189.089996338 189.070465088 189.500152588 190.269683838 191.240386963 192.299957275 193.389801025 194.46987915 192.989761353 191.52003479 190.369644165 189.739761353 189.529800415 189.380386353 189.130386353 188.899917603 188.920425415 189.130386353 189.470230103 189.999526978 190.890151978 192.09034729 193.399917603 194.659683228 195.960464478 192.010391235 190.890274048 190.069961548 189.480117798 189.12953186 188.970352173 188.970352173 189.060195923 189.209609985 189.440078735 189.829727173 190.390274048 191.010391235 191.650039673 192.37953186 193.319961548 194.59046936 191.960113525 190.620269775 189.64956665 189.089996338 188.960113525 189.189605713 189.54019165 189.679840088 189.46987915 189.14956665 189.120269775 189.599761963 190.479644775 191.5597229 192.7003479 193.799957275 194.820465088 193.170425415 191.689956665 190.53956604 189.890151978 189.640151978 189.479995728 189.220230103 188.989761353 188.989761353 189.189956665 189.53956604 190.100112915 191.050308228 192.319839478 193.670425415 194.93019104 196.229995728 192.300430298 191.159805298 190.279922485 189.659805298 189.279922485 189.150039673 189.169570923 189.230117798 189.34046936 189.550430298 189.93031311 190.499649048 191.169570923 191.869766235 192.650039673 193.62953186 194.890274048 192.210113525 190.8097229 189.759918213 189.1300354 189.009918213 189.320465088 189.740386963 189.870269775 189.589996338 189.21987915 189.2003479 189.740386963 190.7003479 191.870269775 193.0597229 194.179840088 195.2003479 193.350112915 191.84034729 190.720230103 190.079605103 189.800308228 189.630386353 189.380386353 189.170425415 189.149917603 189.329605103 189.670425415 190.260269165 191.220230103 192.510269165 193.890151978 195.170425415 196.489761353 192.579727173 191.43031311 190.499649048 189.829727173 189.44984436 189.350234985 189.369766235 189.419570923 189.470352173 189.650039673 190.03968811 190.62953186 191.36000061 192.150039673 192.989883423 193.989883423 195.239883423 192.6300354 191.210113525 190.070465088 189.349761963 189.179840088 189.509918213 189.929840088 190.009918213 189.670074463 189.29019165 189.339996338 189.9503479 190.9503479 192.120269775 193.3097229 194.439605713 195.519683838 193.53956604 191.999526978 190.909683228 190.28956604 189.999526978 189.779800415 189.52003479 189.310073853 189.310073853 189.510269165 189.85987854 190.43019104 191.380386353 192.659683228 194.03956604 195.35987854 196.749526978 192.78968811 191.640274048 190.669570923 189.959609985 189.579727173 189.499649048 189.52015686 189.499649048 189.52015686 189.720352173 190.150039673 190.800430298 191.569961548 192.390274048 193.28968811 194.329727173 195.59046936 193.210113525 191.8097229 190.609527588 189.780426025 189.519683838 189.769683838 190.109527588 190.099761963 189.71987915 189.389801025 189.530426025 190.2003479 191.210113525 192.339996338 193.490386963 194.6300354 195.759918213 193.779800415 192.229995728 191.159683228 190.53956604 190.229995728 189.960464478 189.640151978 189.409683228 189.409683228 189.649917603 190.03956604 190.60987854 191.52003479 192.779800415 194.159683228 195.529800415 196.979995728 192.919570923 191.749649048 190.760391235 190.03968811 189.69984436 189.640274048 189.62953186 189.550430298 189.53968811 189.760391235 190.279922485 190.999649048 191.800430298 192.62953186 193.53968811 194.619766235 195.94984436 193.849761963 192.479644775 191.250152588 190.349761963 190.009918213 190.14956665 190.349761963 190.210113525 189.79019165 189.509918213 189.750152588 190.46987915 191.46987915 192.570465088 193.7003479 194.830230713 195.96987915 194.140151978 192.569839478 191.479995728 190.850112915 190.510269165 190.210464478 189.850112915 189.550308228 189.52003479 189.779800415 190.189956665 190.779800415 191.649917603 192.880386353 194.300308228 195.729995728 197.220230103 192.970352173 191.779922485 190.800430298 190.150039673 189.87953186 189.850234985 189.810195923 189.68031311 189.62953186 189.869766235 190.440078735 191.209609985 192.03968811 192.890274048 193.84046936 194.980117798 196.36000061 194.410308838 193.070465088 191.859527588 190.929840088 190.530426025 190.570465088 190.620269775 190.359527588 189.89956665 189.670074463 189.9503479 190.7003479 191.7003479 192.799957275 193.929840088 195.0597229 196.210113525 194.60987854 193.02003479 191.890151978 191.210464478 190.850112915 190.53956604 190.140151978 189.779800415 189.670425415 189.909683228 190.34034729 190.920425415 191.760269165 192.970230103 194.420425415 195.93019104 197.479995728 192.980117798 191.779922485 190.86000061 190.300430298 190.100234985 190.069961548 189.999649048 189.850234985 189.779922485 190.010391235 190.579727173 191.37953186 192.27015686 193.190078735 194.209609985 195.400039673 196.850234985 194.830230713 193.500152588 192.299957275 191.389801025 190.960113525 190.8800354 190.780426025 190.420074463 189.96987915 189.8097229 190.120269775 190.839996338 191.830230713 192.960113525 194.139801025 195.29019165 196.4503479 195.060073853 193.489761353 192.329605103 191.600112915 191.18019104 190.850112915 190.409683228 189.970230103 189.810073853 190.02003479 190.44972229 191.029800415 191.829605103 192.999526978 194.470230103 196.050308228 197.670425415 192.919570923 191.77015686 190.959609985 190.510391235 190.319961548 190.230117798 190.119766235 189.970352173 189.93031311 190.12953186 190.650039673 191.459609985 192.419570923 193.44984436 194.550430298 195.810195923 197.300430298 195.139801025 193.799957275 192.589996338 191.710113525 191.250152588 191.0597229 190.799957275 190.370269775 189.979644775 189.920074463 190.269683838 190.960113525 191.929840088 193.089996338 194.3097229 195.479644775 196.64956665 195.470230103 193.939956665 192.77003479 191.979995728 191.499526978 191.09034729 190.579605103 190.09034729 189.899917603 190.10987854 190.569839478 191.149917603 191.920425415 193.029800415 194.470230103 196.079605103 197.779800415 192.850234985 191.78968811 191.12953186 190.800430298 190.579727173 190.37953186 190.19984436 190.069961548 190.03968811 190.230117798 190.720352173 191.510391235 192.510391235 193.600234985 194.760391235 196.09046936 197.669570923 195.389801025 194.000152588 192.780426025 191.929840088 191.460113525 191.170074463 190.769683838 190.299957275 190.000152588 190.049957275 190.4503479 191.109527588 192.0597229 193.229644775 194.479644775 195.660308838 196.8097229 195.920425415 194.420425415 193.229995728 192.369644165 191.78956604 191.28956604 190.739761353 190.229995728 190.029800415 190.260269165 190.749526978 191.34034729 192.09034729 193.130386353 194.499526978 196.100112915 197.850112915 192.850234985 191.900039673 191.37953186 191.11000061 190.869766235 190.59046936 190.350234985 190.220352173 190.19984436 190.369766235 190.810195923 191.59046936 192.600234985 193.69984436 194.900039673 196.310195923 197.999649048 195.549957275 194.139801025 192.910308838 192.089996338 191.64956665 191.3097229 190.830230713 190.339996338 190.109527588 190.240386963 190.639801025 191.259918213 192.189605713 193.3800354 194.6300354 195.799957275 196.910308838 196.460464478 194.94972229 193.689956665 192.720230103 192.029800415 191.479995728 190.920425415 190.439956665 190.27003479 190.489761353 190.970230103 191.569839478 192.310073853 193.310073853 194.600112915 196.149917603 197.920425415 192.970352173 192.11000061 191.640274048 191.37953186 191.100234985 190.77015686 190.52015686 190.419570923 190.400039673 190.52015686 190.919570923 191.68031311 192.690078735 193.800430298 195.03968811 196.529922485 198.350234985 195.609527588 194.210113525 193.019683838 192.250152588 191.849761963 191.490386963 190.96987915 190.46987915 190.280426025 190.439605713 190.8097229 191.389801025 192.269683838 193.439605713 194.679840088 195.839996338 196.960113525 196.989761353 195.44972229 194.079605103 192.979995728 192.210464478 191.619644165 191.079605103 190.659683228 190.510269165 190.710464478 191.159683228 191.739761353 192.489761353 193.470230103 194.720230103 196.239761353 198.02003479 193.18031311 192.36000061 191.850234985 191.510391235 191.169570923 190.850234985 190.650039673 190.579727173 190.569961548 190.640274048 190.980117798 191.720352173 192.730117798 193.87953186 195.169570923 196.77015686 198.669570923 195.580230713 194.280426025 193.160308838 192.4503479 192.0597229 191.670074463 191.109527588 190.620269775 190.46987915 190.639801025 190.979644775 191.500152588 192.320465088 193.420074463 194.620269775 195.79019165 196.939605713 197.350112915 195.78956604 194.35987854 193.189956665 192.350112915 191.739761353 191.220230103 190.810073853 190.670425415 190.85987854 191.27003479 191.84034729 192.59034729 193.569839478 194.78956604 196.310073853 198.119644165 193.400039673 192.619766235 192.050430298 191.61000061 191.190078735 190.86000061 190.720352173 190.69984436 190.69984436 190.749649048 191.03968811 191.720352173 192.730117798 193.919570923 195.27015686 196.900039673 198.86000061 195.54019165 194.389801025 193.410308838 192.750152588 192.330230713 191.870269775 191.29019165 190.8097229 190.64956665 190.820465088 191.14956665 191.6300354 192.3800354 193.39956665 194.549957275 195.729644775 196.939605713 197.499526978 195.970230103 194.550308228 193.390151978 192.560073853 191.93019104 191.369644165 190.93019104 190.779800415 190.960464478 191.380386353 191.970230103 192.720230103 193.68019104 194.869644165 196.380386353 198.220230103 193.59046936 192.87953186 192.319961548 191.829727173 191.350234985 190.980117798 190.84046936 190.84046936 190.86000061 190.900039673 191.18031311 191.810195923 192.77015686 193.940078735 195.300430298 196.93031311 198.87953186 195.549957275 194.5597229 193.729644775 193.120269775 192.64956665 192.139801025 191.530426025 191.009918213 190.839996338 190.96987915 191.29019165 191.780426025 192.509918213 193.490386963 194.599761963 195.79019165 197.049957275 197.579605103 196.079605103 194.739761353 193.640151978 192.829605103 192.18019104 191.560073853 191.079605103 190.899917603 191.09034729 191.53956604 192.149917603 192.93019104 193.880386353 195.03956604 196.510269165 198.329605103 193.77015686 193.150039673 192.68031311 192.209609985 191.720352173 191.300430298 191.079727173 191.010391235 191.02015686 191.119766235 191.409805298 191.999649048 192.890274048 193.999649048 195.319961548 196.900039673 198.800430298 195.599761963 194.769683838 194.049957275 193.479644775 192.960113525 192.39956665 191.750152588 191.229644775 191.009918213 191.099761963 191.39956665 191.889801025 192.64956665 193.6300354 194.759918213 195.990386963 197.269683838 197.68019104 196.210464478 194.920425415 193.869644165 193.060073853 192.380386353 191.720230103 191.210464478 191.029800415 191.229995728 191.69972229 192.34034729 193.140151978 194.100112915 195.249526978 196.69972229 198.489761353 193.999649048 193.440078735 193.03968811 192.640274048 192.159805298 191.69984436 191.369766235 191.209609985 191.190078735 191.34046936 191.690078735 192.27015686 193.069961548 194.09046936 195.34046936 196.87953186 198.749649048 195.660308838 194.960113525 194.339996338 193.769683838 193.2003479 192.5597229 191.920074463 191.410308838 191.179840088 191.21987915 191.500152588 192.000152588 192.780426025 193.79019165 194.960113525 196.21987915 197.54019165 197.779800415 196.34034729 195.100112915 194.060073853 193.229995728 192.479995728 191.810073853 191.329605103 191.210464478 191.420425415 191.850112915 192.460464478 193.279800415 194.279800415 195.44972229 196.890151978 198.659683228 194.279922485 193.730117798 193.36000061 192.989883423 192.550430298 192.069961548 191.669570923 191.43031311 191.400039673 191.600234985 191.999649048 192.550430298 193.239883423 194.159805298 195.350234985 196.86000061 198.709609985 195.759918213 195.170074463 194.620269775 194.04019165 193.389801025 192.689605713 192.030426025 191.5597229 191.359527588 191.39956665 191.670074463 192.170074463 192.939605713 193.9503479 195.1300354 196.420074463 197.8097229 197.78956604 196.43019104 195.279800415 194.279800415 193.390151978 192.569839478 191.880386353 191.489761353 191.439956665 191.68019104 192.03956604 192.579605103 193.369644165 194.380386353 195.59034729 197.029800415 198.800308228 194.62953186 194.069961548 193.690078735 193.319961548 192.87953186 192.400039673 191.980117798 191.69984436 191.650039673 191.890274048 192.310195923 192.810195923 193.409805298 194.220352173 195.350234985 196.819961548 198.640274048 195.9503479 195.420074463 194.939605713 194.349761963 193.620269775 192.849761963 192.170074463 191.729644775 191.5597229 191.6300354 191.920074463 192.429840088 193.189605713 194.160308838 195.3097229 196.620269775 198.089996338 197.710464478 196.479995728 195.470230103 194.529800415 193.59034729 192.68019104 191.970230103 191.630386353 191.689956665 191.960464478 192.28956604 192.739761353 193.460464478 194.470230103 195.69972229 197.149917603 198.93019104 195.029922485 194.510391235 194.12953186 193.709609985 193.209609985 192.690078735 192.239883423 191.94984436 191.87953186 192.100234985 192.499649048 192.980117798 193.550430298 194.310195923 195.369766235 196.77015686 198.52015686 196.269683838 195.799957275 195.320465088 194.679840088 193.8800354 193.0597229 192.370269775 191.9503479 191.79019165 191.870269775 192.160308838 192.7003479 193.460113525 194.410308838 195.530426025 196.849761963 198.410308838 197.69972229 196.560073853 195.619644165 194.710464478 193.739761353 192.779800415 192.02003479 191.69972229 191.810073853 192.130386353 192.470230103 192.85987854 193.529800415 194.52003479 195.779800415 197.279800415 199.09034729 195.470352173 195.010391235 194.650039673 194.140274048 193.510391235 192.900039673 192.419570923 192.09046936 191.980117798 192.119766235 192.499649048 192.999649048 193.619766235 194.400039673 195.419570923 196.720352173 198.390274048 196.759918213 196.280426025 195.740386963 195.000152588 194.120269775 193.280426025 192.609527588 192.2003479 192.049957275 192.109527588 192.39956665 192.929840088 193.689605713 194.639801025 195.759918213 197.109527588 198.740386963 197.880386353 196.739761353 195.77003479 194.810073853 193.829605103 192.84034729 192.060073853 191.710464478 191.829605103 192.170425415 192.52003479 192.920425415 193.560073853 194.53956604 195.810073853 197.369644165 199.249526978 195.940078735 195.53968811 195.150039673 194.510391235 193.720352173 193.02015686 192.510391235 192.169570923 191.980117798 192.050430298 192.37953186 192.919570923 193.600234985 194.419570923 195.43031311 196.68031311 198.27015686 197.349761963 196.859527588 196.189605713 195.299957275 194.339996338 193.479644775 192.839996338 192.460113525 192.330230713 192.410308838 192.689605713 193.179840088 193.8800354 194.8097229 195.9503479 197.330230713 199.009918213 198.220230103 197.03956604 195.94972229 194.920425415 193.920425415 192.989761353 192.229995728 191.850112915 191.899917603 192.210464478 192.579605103 192.979995728 193.579605103 194.52003479 195.800308228 197.420425415 199.369644165 196.43031311 196.03968811 195.569961548 194.78968811 193.86000061 193.100234985 192.61000061 192.260391235 192.050430298 192.03968811 192.319961548 192.84046936 193.529922485 194.350234985 195.350234985 196.579727173 198.169570923 197.9503479 197.420074463 196.64956665 195.639801025 194.580230713 193.679840088 193.04019165 192.689605713 192.609527588 192.759918213 193.04019165 193.460113525 194.080230713 194.9503479 196.070465088 197.4503479 199.120269775 198.579605103 197.369644165 196.19972229 195.09034729 194.09034729 193.229995728 192.52003479 192.119644165 192.10987854 192.369644165 192.710464478 193.100112915 193.659683228 194.529800415 195.78956604 197.409683228 199.380386353 196.94984436 196.529922485 195.940078735 195.029922485 193.999649048 193.209609985 192.709609985 192.369766235 192.140274048 192.12953186 192.400039673 192.890274048 193.489883423 194.239883423 195.209609985 196.459609985 198.050430298 198.46987915 197.89956665 197.0597229 195.979644775 194.859527588 193.89956665 193.2003479 192.830230713 192.79019165 193.009918213 193.349761963 193.740386963 194.280426025 195.070465088 196.139801025 197.460113525 199.080230713 198.850112915 197.659683228 196.44972229 195.27003479 194.249526978 193.399917603 192.739761353 192.329605103 192.300308228 192.529800415 192.85987854 193.249526978 193.78956604 194.59034729 195.77003479 197.319839478 199.260269165 197.489883423 196.989883423 196.28968811 195.27015686 194.18031311 193.329727173 192.760391235 192.37953186 192.159805298 192.220352173 192.53968811 192.999649048 193.52015686 194.169570923 195.09046936 196.34046936 197.900039673 198.889801025 198.250152588 197.339996338 196.21987915 195.080230713 194.109527588 193.359527588 192.920074463 192.859527588 193.120269775 193.509918213 193.929840088 194.4503479 195.179840088 196.160308838 197.39956665 198.939605713 199.050308228 197.890151978 196.640151978 195.390151978 194.300308228 193.43019104 192.77003479 192.399917603 192.35987854 192.59034729 192.939956665 193.350112915 193.880386353 194.649917603 195.729995728 197.189956665 199.050308228 197.989883423 197.37953186 196.550430298 195.470352173 194.369766235 193.470352173 192.800430298 192.329727173 192.12953186 192.27015686 192.669570923 193.140274048 193.600234985 194.169570923 195.02015686 196.19984436 197.690078735 199.250152588 198.490386963 197.500152588 196.349761963 195.21987915 194.250152588 193.500152588 193.030426025 192.920074463 193.14956665 193.570465088 194.049957275 194.599761963 195.259918213 196.139801025 197.299957275 198.759918213 199.249526978 198.09034729 196.779800415 195.44972229 194.310073853 193.420425415 192.779800415 192.409683228 192.369644165 192.60987854 192.999526978 193.439956665 193.989761353 194.689956665 195.649917603 196.999526978 198.779800415 198.44984436 197.669570923 196.720352173 195.61000061 194.53968811 193.619766235 192.87953186 192.369766235 192.18031311 192.37953186 192.829727173 193.319961548 193.739883423 194.249649048 194.999649048 196.069961548 197.43031311 199.599761963 198.71987915 197.6300354 196.420074463 195.280426025 194.349761963 193.6300354 193.160308838 193.019683838 193.21987915 193.660308838 194.2003479 194.740386963 195.330230713 196.080230713 197.139801025 198.5597229 199.569839478 198.329605103 196.909683228 195.52003479 194.380386353 193.529800415 192.899917603 192.499526978 192.439956665 192.689956665 193.130386353 193.600112915 194.100112915 194.689956665 195.52003479 196.739761353 198.460464478 198.93031311 197.959609985 196.87953186 195.749649048 194.69984436 193.779922485 192.999649048 192.470352173 192.310195923 192.550430298 193.02015686 193.499649048 193.919570923 194.350234985 194.999649048 195.93031311 197.159805298 199.96987915 199.000152588 197.820465088 196.54019165 195.349761963 194.39956665 193.7003479 193.269683838 193.1300354 193.330230713 193.780426025 194.330230713 194.859527588 195.359527588 195.979644775 196.9503479 198.269683838 199.94972229 198.619644165 197.069839478 195.630386353 194.510269165 193.670425415 192.999526978 192.53956604 192.470230103 192.77003479 193.279800415 193.779800415 194.210464478 194.659683228 195.35987854 196.470230103 198.100112915 199.489883423 198.36000061 197.150039673 195.980117798 194.900039673 193.919570923 193.079727173 192.52015686 192.369766235 192.619766235 193.100234985 193.619766235 194.060195923 194.480117798 195.029922485 195.84046936 196.970352173 200.349761963 199.3097229 198.070465088 196.71987915 195.439605713 194.410308838 193.679840088 193.269683838 193.179840088 193.39956665 193.849761963 194.39956665 194.910308838 195.339996338 195.8800354 196.729644775 197.910308838 200.35987854 198.93019104 197.279800415 195.77003479 194.600112915 193.689956665 192.93019104 192.420425415 192.369644165 192.77003479 193.350112915 193.85987854 194.220230103 194.59034729 195.220230103 196.279800415 197.779800415 200.159805298 198.87953186 197.569961548 196.34046936 195.159805298 194.03968811 193.11000061 192.510391235 192.329727173 192.53968811 193.029922485 193.61000061 194.12953186 194.550430298 195.050430298 195.800430298 196.86000061 200.64956665 199.519683838 198.269683838 196.8800354 195.509918213 194.370269775 193.620269775 193.259918213 193.250152588 193.479644775 193.89956665 194.420074463 194.910308838 195.339996338 195.8097229 196.54019165 197.490386963 200.779800415 199.28956604 197.59034729 195.999526978 194.689956665 193.649917603 192.810073853 192.319839478 192.329605103 192.779800415 193.380386353 193.85987854 194.159683228 194.499526978 195.140151978 196.18019104 197.529800415 200.800430298 199.409805298 198.02015686 196.69984436 195.37953186 194.140274048 193.150039673 192.550430298 192.350234985 192.480117798 192.919570923 193.53968811 194.11000061 194.53968811 194.999649048 195.720352173 196.749649048 200.830230713 199.599761963 198.299957275 196.89956665 195.479644775 194.299957275 193.5597229 193.320465088 193.39956665 193.64956665 194.030426025 194.500152588 194.990386963 195.389801025 195.8097229 196.389801025 197.120269775 201.210464478 199.710464478 197.999526978 196.310073853 194.850112915 193.69972229 192.899917603 192.510269165 192.569839478 192.970230103 193.460464478 193.850112915 194.119644165 194.460464478 195.130386353 196.140151978 197.34034729 201.28968811 199.78968811 198.329727173 196.890274048 195.440078735 194.119766235 193.18031311 192.690078735 192.499649048 192.569961548 192.919570923 193.499649048 194.060195923 194.43031311 194.819961548 195.52015686 196.550430298 200.910308838 199.54019165 198.229644775 196.830230713 195.410308838 194.229644775 193.5597229 193.429840088 193.609527588 193.89956665 194.269683838 194.729644775 195.189605713 195.54019165 195.859527588 196.29019165 196.839996338 201.670425415 200.159683228 198.420425415 196.630386353 195.03956604 193.869644165 193.18019104 192.899917603 192.94972229 193.19972229 193.550308228 193.890151978 194.170425415 194.52003479 195.130386353 196.050308228 197.140151978 201.529922485 199.94984436 198.400039673 196.84046936 195.230117798 193.850234985 192.999649048 192.650039673 192.560195923 192.619766235 192.94984436 193.489883423 193.989883423 194.249649048 194.53968811 195.209609985 196.310195923 201.009918213 199.530426025 198.170074463 196.79019165 195.389801025 194.21987915 193.570465088 193.479644775 193.71987915 194.070465088 194.479644775 194.96987915 195.39956665 195.670074463 195.870269775 196.2003479 196.679840088 202.170425415 200.59034729 198.749526978 196.829605103 195.149917603 193.989761353 193.390151978 193.159683228 193.119644165 193.229995728 193.53956604 193.94972229 194.310073853 194.630386353 195.10987854 195.890151978 196.880386353 201.53968811 199.909805298 198.279922485 196.579727173 194.84046936 193.37953186 192.550430298 192.28968811 192.300430298 192.470352173 192.86000061 193.419570923 193.850234985 194.02015686 194.239883423 194.919570923 196.100234985 201.189605713 199.6300354 198.21987915 196.839996338 195.4503479 194.269683838 193.580230713 193.439605713 193.670074463 194.049957275 194.54019165 195.0597229 195.439605713 195.6300354 195.780426025 196.120269775 196.64956665 202.659683228 200.939956665 198.960464478 196.939956665 195.210464478 194.060073853 193.470230103 193.210464478 193.079605103 193.149917603 193.499526978 194.02003479 194.44972229 194.729995728 195.069839478 195.739761353 196.670425415 201.310195923 199.619766235 197.940078735 196.169570923 194.400039673 192.94984436 192.119766235 191.890274048 191.980117798 192.279922485 192.779922485 193.34046936 193.690078735 193.77015686 193.970352173 194.709609985 195.980117798 201.39956665 199.780426025 198.320465088 196.89956665 195.509918213 194.330230713 193.599761963 193.410308838 193.599761963 194.009918213 194.490386963 194.9503479 195.240386963 195.39956665 195.599761963 196.0597229 196.679840088 203.029800415 201.18019104 199.119644165 197.09034729 195.369644165 194.19972229 193.560073853 193.249526978 193.149917603 193.27003479 193.649917603 194.149917603 194.510269165 194.69972229 194.999526978 195.640151978 196.579605103 200.87953186 199.11000061 197.37953186 195.669570923 194.060195923 192.779922485 192.050430298 191.86000061 192.02015686 192.390274048 192.890274048 193.329727173 193.529922485 193.53968811 193.779922485 194.600234985 195.93031311 201.519683838 199.889801025 198.370269775 196.889801025 195.490386963 194.349761963 193.679840088 193.490386963 193.689605713 194.070465088 194.46987915 194.769683838 194.929840088 195.080230713 195.429840088 196.049957275 196.759918213 203.140151978 201.27003479 199.229995728 197.27003479 195.619644165 194.420425415 193.69972229 193.380386353 193.380386353 193.619644165 193.960464478 194.249526978 194.390151978 194.499526978 194.85987854 195.600112915 196.59034729 200.36000061 198.510391235 196.730117798 195.140274048 193.78968811 192.78968811 192.27015686 192.190078735 192.400039673 192.760391235 193.12953186 193.350234985 193.37953186 193.37953186 193.730117798 194.600234985 195.919570923 201.5597229 199.939605713 198.330230713 196.79019165 195.410308838 194.339996338 193.740386963 193.599761963 193.799957275 194.160308838 194.460113525 194.609527588 194.670074463 194.859527588 195.359527588 196.099761963 196.830230713 202.989761353 201.18019104 199.210464478 197.329605103 195.720230103 194.460464478 193.619644165 193.279800415 193.399917603 193.749526978 194.03956604 194.130386353 194.119644165 194.249526978 194.729995728 195.569839478 196.579605103 199.890274048 197.989883423 196.209609985 194.690078735 193.550430298 192.800430298 192.409805298 192.390274048 192.61000061 192.890274048 193.11000061 193.190078735 193.19984436 193.329727173 193.819961548 194.709609985 195.94984436 201.620269775 199.96987915 198.29019165 196.689605713 195.330230713 194.320465088 193.710113525 193.500152588 193.620269775 193.9503479 194.250152588 194.39956665 194.509918213 194.8097229 195.420074463 196.2003479 196.8800354 202.649917603 200.899917603 198.94972229 197.09034729 195.489761353 194.159683228 193.19972229 192.77003479 192.880386353 193.279800415 193.619644165 193.749526978 193.84034729 194.140151978 194.729995728 195.560073853 196.510269165 199.440078735 197.579727173 195.850234985 194.400039673 193.329727173 192.619766235 192.239883423 192.159805298 192.28968811 192.489883423 192.62953186 192.749649048 192.959609985 193.37953186 194.029922485 194.919570923 196.010391235 201.710113525 200.000152588 198.240386963 196.6300354 195.320465088 194.3097229 193.580230713 193.14956665 193.089996338 193.359527588 193.740386963 194.0597229 194.3800354 194.849761963 195.530426025 196.259918213 196.8800354 202.159683228 200.43019104 198.470230103 196.600112915 195.010269165 193.720230103 192.710464478 192.149917603 192.09034729 192.420425415 192.850112915 193.239761353 193.659683228 194.220230103 194.880386353 195.600112915 196.399917603 198.890274048 197.159805298 195.53968811 194.159805298 193.11000061 192.36000061 191.909805298 191.730117798 191.760391235 191.86000061 191.970352173 192.209609985 192.69984436 193.419570923 194.230117798 195.09046936 196.09046936 201.64956665 199.8800354 198.120269775 196.570465088 195.330230713 194.330230713 193.46987915 192.820465088 192.549957275 192.71987915 193.160308838 193.64956665 194.2003479 194.859527588 195.580230713 196.240386963 196.820465088 201.53956604 199.829605103 197.880386353 196.02003479 194.52003479 193.380386353 192.479995728 191.869644165 191.630386353 191.78956604 192.229995728 192.84034729 193.569839478 194.34034729 195.050308228 195.68019104 196.390151978 198.18031311 196.61000061 195.159805298 193.87953186 192.869766235 192.159805298 191.730117798 191.550430298 191.53968811 191.550430298 191.61000061 191.869766235 192.470352173 193.36000061 194.27015686 195.140274048 196.150039673 201.240386963 199.500152588 197.859527588 196.4503479 195.3097229 194.349761963 193.46987915 192.769683838 192.420074463 192.490386963 192.839996338 193.339996338 193.990386963 194.769683838 195.54019165 196.179840088 196.759918213 200.77003479 199.10987854 197.260269165 195.499526978 194.100112915 193.140151978 192.470230103 191.970230103 191.68019104 191.68019104 192.02003479 192.619644165 193.409683228 194.260269165 195.060073853 195.760269165 196.499526978 197.489883423 196.069961548 194.77015686 193.600234985 192.659805298 192.03968811 191.730117798 191.659805298 191.690078735 191.669570923 191.61000061 191.749649048 192.300430298 193.190078735 194.169570923 195.11000061 196.249649048 200.490386963 198.910308838 197.509918213 196.280426025 195.210113525 194.280426025 193.519683838 192.960113525 192.689605713 192.679840088 192.849761963 193.21987915 193.820465088 194.660308838 195.46987915 196.139801025 196.780426025 199.880386353 198.34034729 196.68019104 195.050308228 193.689956665 192.819839478 192.350112915 192.069839478 191.880386353 191.829605103 192.02003479 192.489761353 193.18019104 194.010269165 194.909683228 195.810073853 196.729995728 196.980117798 195.69984436 194.52015686 193.43031311 192.53968811 191.959609985 191.709609985 191.720352173 191.810195923 191.78968811 191.669570923 191.69984436 192.140274048 192.999649048 194.03968811 195.150039673 196.44984436 199.609527588 198.259918213 197.139801025 196.0597229 195.000152588 194.089996338 193.439605713 193.0597229 192.910308838 192.870269775 192.929840088 193.170074463 193.740386963 194.580230713 195.4503479 196.189605713 196.910308838 198.93019104 197.52003479 196.100112915 194.60987854 193.27003479 192.390151978 192.010269165 191.920425415 191.84034729 191.810073853 191.94972229 192.35987854 192.989761353 193.800308228 194.810073853 195.909683228 196.999526978 196.600234985 195.440078735 194.37953186 193.36000061 192.480117798 191.869766235 191.600234985 191.560195923 191.61000061 191.600234985 191.510391235 191.550430298 191.999649048 192.87953186 194.02015686 195.27015686 196.720352173 198.830230713 197.670074463 196.740386963 195.769683838 194.71987915 193.8097229 193.21987915 192.929840088 192.799957275 192.759918213 192.820465088 193.080230713 193.670074463 194.54019165 195.46987915 196.320465088 197.160308838 197.94972229 196.659683228 195.44972229 194.140151978 192.890151978 192.050308228 191.739761353 191.69972229 191.60987854 191.52003479 191.689956665 192.189956665 192.93019104 193.78956604 194.84034729 196.060073853 197.27003479 196.169570923 195.060195923 194.11000061 193.18031311 192.369766235 191.810195923 191.499649048 191.369766235 191.319961548 191.260391235 191.220352173 191.37953186 191.909805298 192.850234985 194.029922485 195.369766235 196.909805298 198.240386963 197.170074463 196.3097229 195.410308838 194.429840088 193.599761963 193.049957275 192.729644775 192.530426025 192.460113525 192.570465088 192.960113525 193.639801025 194.509918213 195.46987915 196.460113525 197.46987915 196.989761353 195.779800415 194.749526978 193.659683228 192.60987854 191.960464478 191.77003479 191.720230103 191.510269165 191.279800415 191.439956665 192.079605103 192.970230103 193.93019104 194.989761353 196.220230103 197.479995728 195.619766235 194.499649048 193.600234985 192.779922485 192.12953186 191.720352173 191.52015686 191.409805298 191.279922485 191.150039673 191.100234985 191.310195923 191.87953186 192.810195923 193.989883423 195.350234985 196.94984436 197.849761963 196.769683838 195.89956665 195.019683838 194.160308838 193.479644775 193.030426025 192.679840088 192.389801025 192.250152588 192.439605713 192.929840088 193.639801025 194.490386963 195.479644775 196.599761963 197.8097229 196.149917603 195.02003479 194.140151978 193.229995728 192.399917603 191.979995728 191.960464478 191.939956665 191.630386353 191.300308228 191.420425415 192.100112915 193.060073853 194.060073853 195.140151978 196.369644165 197.68019104 195.12953186 193.959609985 193.060195923 192.300430298 191.77015686 191.569961548 191.579727173 191.579727173 191.459609985 191.27015686 191.190078735 191.37953186 191.909805298 192.77015686 193.87953186 195.239883423 196.87953186 197.609527588 196.509918213 195.549957275 194.639801025 193.870269775 193.339996338 193.009918213 192.7003479 192.370269775 192.240386963 192.46987915 193.019683838 193.710113525 194.519683838 195.519683838 196.780426025 198.170074463 195.510269165 194.479995728 193.710464478 192.93019104 192.229995728 191.93019104 192.010269165 192.050308228 191.800308228 191.529800415 191.649917603 192.279800415 193.18019104 194.170425415 195.279800415 196.569839478 197.94972229 194.850234985 193.659805298 192.69984436 191.909805298 191.419570923 191.329727173 191.470352173 191.59046936 191.52015686 191.37953186 191.319961548 191.470352173 191.93031311 192.69984436 193.77015686 195.159805298 196.850234985 197.439605713 196.280426025 195.229644775 194.259918213 193.509918213 193.080230713 192.830230713 192.570465088 192.29019165 192.229644775 192.54019165 193.1300354 193.799957275 194.580230713 195.639801025 197.019683838 198.530426025 195.050308228 194.119644165 193.44972229 192.739761353 192.10987854 191.819839478 191.880386353 191.94972229 191.84034729 191.749526978 191.94972229 192.53956604 193.319839478 194.27003479 195.470230103 196.869644165 198.319839478 194.730117798 193.510391235 192.499649048 191.659805298 191.140274048 191.050430298 191.230117798 191.37953186 191.390274048 191.329727173 191.350234985 191.529922485 191.94984436 192.659805298 193.709609985 195.150039673 196.890274048 197.160308838 195.929840088 194.820465088 193.839996338 193.14956665 192.799957275 192.620269775 192.39956665 192.160308838 192.189605713 192.609527588 193.240386963 193.889801025 194.64956665 195.769683838 197.269683838 198.870269775 194.710464478 193.829605103 193.220230103 192.600112915 192.060073853 191.829605103 191.880386353 191.939956665 191.880386353 191.909683228 192.189956665 192.720230103 193.43019104 194.390151978 195.689956665 197.220230103 198.729995728 194.61000061 193.350234985 192.300430298 191.44984436 190.959609985 190.900039673 191.09046936 191.239883423 191.279922485 191.279922485 191.390274048 191.61000061 191.999649048 192.669570923 193.720352173 195.19984436 196.959609985 196.670074463 195.3800354 194.29019165 193.4503479 192.929840088 192.740386963 192.660308838 192.46987915 192.229644775 192.259918213 192.729644775 193.39956665 194.000152588 194.689605713 195.849761963 197.4503479 199.139801025 194.53956604 193.670425415 193.050308228 192.499526978 192.119644165 192.069839478 192.210464478 192.27003479 192.170425415 192.159683228 192.369644165 192.829605103 193.510269165 194.510269165 195.880386353 197.489761353 199.079605103 194.59046936 193.239883423 192.150039673 191.329727173 190.909805298 190.93031311 191.190078735 191.400039673 191.440078735 191.44984436 191.53968811 191.749649048 192.100234985 192.730117798 193.779922485 195.27015686 197.029922485 196.170074463 194.859527588 193.8800354 193.210113525 192.89956665 192.920074463 192.990386963 192.839996338 192.54019165 192.500152588 192.920074463 193.549957275 194.089996338 194.729644775 195.849761963 197.509918213 199.320465088 194.710464478 193.829605103 193.140151978 192.560073853 192.279800415 192.409683228 192.729995728 192.850112915 192.69972229 192.52003479 192.560073853 192.909683228 193.59034729 194.640151978 196.069839478 197.69972229 199.350112915 194.829727173 193.440078735 192.319961548 191.489883423 191.050430298 191.079727173 191.409805298 191.69984436 191.779922485 191.739883423 191.749649048 191.900039673 192.220352173 192.850234985 193.900039673 195.37953186 197.119766235 195.960113525 194.740386963 193.859527588 193.269683838 193.019683838 193.120269775 193.320465088 193.229644775 192.889801025 192.71987915 193.019683838 193.589996338 194.1300354 194.740386963 195.839996338 197.519683838 199.3800354 195.189956665 194.350112915 193.579605103 192.880386353 192.529800415 192.689956665 193.079605103 193.300308228 193.170425415 192.890151978 192.749526978 192.989761353 193.68019104 194.800308228 196.260269165 197.890151978 199.569839478 195.37953186 194.02015686 192.93031311 192.010391235 191.369766235 191.220352173 191.489883423 191.850234985 191.999649048 191.959609985 191.909805298 192.029922485 192.36000061 192.999649048 194.060195923 195.53968811 197.279922485 196.210113525 195.139801025 194.320465088 193.670074463 193.280426025 193.280426025 193.46987915 193.4503479 193.089996338 192.799957275 192.9503479 193.479644775 194.089996338 194.780426025 195.889801025 197.530426025 199.3800354 195.670425415 194.920425415 194.140151978 193.390151978 192.94972229 192.970230103 193.27003479 193.470230103 193.390151978 193.119644165 192.920425415 193.079605103 193.779800415 194.970230103 196.489761353 198.10987854 199.78956604 195.980117798 194.77015686 193.760391235 192.760391235 191.86000061 191.37953186 191.44984436 191.800430298 192.02015686 192.050430298 192.03968811 192.190078735 192.550430298 193.19984436 194.249649048 195.720352173 197.480117798 196.750152588 195.8097229 195.019683838 194.269683838 193.710113525 193.519683838 193.620269775 193.589996338 193.250152588 192.889801025 192.910308838 193.370269775 194.049957275 194.849761963 195.96987915 197.54019165 199.339996338 195.850112915 195.159683228 194.529800415 193.960464478 193.569839478 193.479995728 193.560073853 193.60987854 193.529800415 193.329605103 193.140151978 193.249526978 193.899917603 195.130386353 196.69972229 198.319839478 199.970230103 196.459609985 195.400039673 194.53968811 193.569961548 192.510391235 191.760391235 191.600234985 191.829727173 192.050430298 192.12953186 192.220352173 192.459609985 192.850234985 193.459609985 194.440078735 195.900039673 197.69984436 197.299957275 196.389801025 195.620269775 194.89956665 194.299957275 193.990386963 193.929840088 193.830230713 193.500152588 193.120269775 193.049957275 193.420074463 194.070465088 194.910308838 196.049957275 197.549957275 199.299957275 195.800308228 195.140151978 194.739761353 194.489761353 194.35987854 194.279800415 194.140151978 193.960464478 193.779800415 193.60987854 193.470230103 193.53956604 194.10987854 195.28956604 196.85987854 198.499526978 200.140151978 196.890274048 195.890274048 195.169570923 194.329727173 193.319961548 192.489883423 192.169570923 192.19984436 192.27015686 192.28968811 192.43031311 192.760391235 193.18031311 193.730117798 194.650039673 196.09046936 197.94984436 197.729644775 196.740386963 195.990386963 195.410308838 194.96987915 194.6300354 194.3800354 194.099761963 193.71987915 193.389801025 193.3097229 193.599761963 194.160308838 194.9503479 196.070465088 197.549957275 199.259918213 195.880386353 195.249526978 194.989761353 195.029800415 195.149917603 195.130386353 194.850112915 194.43019104 194.09034729 193.909683228 193.819839478 193.899917603 194.390151978 195.489761353 197.010269165 198.659683228 200.329605103 197.419570923 196.37953186 195.690078735 194.989883423 194.150039673 193.419570923 193.02015686 192.829727173 192.619766235 192.459609985 192.560195923 192.94984436 193.43031311 193.980117798 194.869766235 196.310195923 198.260391235 198.099761963 196.990386963 196.210113525 195.780426025 195.519683838 195.21987915 194.799957275 194.299957275 193.830230713 193.54019165 193.519683838 193.780426025 194.269683838 195.000152588 196.099761963 197.570465088 199.280426025 196.249526978 195.640151978 195.439956665 195.53956604 195.729995728 195.729995728 195.380386353 194.810073853 194.319839478 194.09034729 194.060073853 194.210464478 194.69972229 195.720230103 197.19972229 198.85987854 200.569839478 197.989883423 196.86000061 196.069961548 195.409805298 194.739883423 194.150039673 193.760391235 193.419570923 192.989883423 192.61000061 192.61000061 193.02015686 193.600234985 194.19984436 195.100234985 196.569961548 198.600234985 198.420074463 197.2003479 196.359527588 196.000152588 195.859527588 195.609527588 195.120269775 194.479644775 193.920074463 193.6300354 193.660308838 193.9503479 194.410308838 195.1300354 196.2003479 197.660308838 199.339996338 196.689956665 196.149917603 195.94972229 195.94972229 196.02003479 195.970230103 195.640151978 195.050308228 194.479995728 194.189956665 194.19972229 194.439956665 194.979995728 195.960464478 197.399917603 199.079605103 200.84034729 198.409805298 197.12953186 196.19984436 195.480117798 194.86000061 194.36000061 194.03968811 193.709609985 193.220352173 192.77015686 192.720352173 193.140274048 193.78968811 194.459609985 195.350234985 196.819961548 198.900039673 198.5597229 197.320465088 196.4503479 196.070465088 195.960113525 195.769683838 195.320465088 194.689605713 194.109527588 193.799957275 193.830230713 194.139801025 194.6300354 195.349761963 196.39956665 197.8097229 199.439605713 196.939956665 196.479995728 196.279800415 196.159683228 196.069839478 195.979995728 195.749526978 195.27003479 194.710464478 194.369644165 194.390151978 194.69972229 195.27003479 196.19972229 197.569839478 199.260269165 201.09034729 198.53968811 197.119766235 196.03968811 195.220352173 194.550430298 194.060195923 193.800430298 193.600234985 193.260391235 192.900039673 192.87953186 193.350234985 194.060195923 194.760391235 195.640274048 197.03968811 199.12953186 198.479644775 197.3097229 196.46987915 196.04019165 195.849761963 195.660308838 195.320465088 194.820465088 194.299957275 193.990386963 194.000152588 194.320465088 194.849761963 195.589996338 196.6300354 197.990386963 199.580230713 197.079605103 196.659683228 196.460464478 196.229995728 195.989761353 195.85987854 195.739761353 195.439956665 194.970230103 194.630386353 194.649917603 195.010269165 195.579605103 196.420425415 197.710464478 199.390151978 201.28956604 198.489883423 196.980117798 195.77015686 194.850234985 194.09046936 193.53968811 193.300430298 193.209609985 193.069961548 192.890274048 192.980117798 193.499649048 194.279922485 195.03968811 195.909805298 197.239883423 199.310195923 198.3097229 197.269683838 196.490386963 195.979644775 195.639801025 195.370269775 195.089996338 194.71987915 194.320465088 194.04019165 194.049957275 194.410308838 195.000152588 195.780426025 196.8097229 198.170074463 199.759918213 197.310073853 196.869644165 196.600112915 196.220230103 195.810073853 195.600112915 195.560073853 195.399917603 195.050308228 194.77003479 194.850112915 195.260269165 195.850112915 196.649917603 197.829605103 199.489761353 201.439956665 198.409805298 196.84046936 195.550430298 194.550430298 193.720352173 193.100234985 192.810195923 192.749649048 192.730117798 192.69984436 192.869766235 193.440078735 194.300430298 195.19984436 196.140274048 197.44984436 199.459609985 198.2003479 197.269683838 196.549957275 195.9503479 195.439605713 195.070465088 194.799957275 194.519683838 194.2003479 193.9503479 193.979644775 194.359527588 195.019683838 195.8800354 196.96987915 198.339996338 199.96987915 197.659683228 197.100112915 196.649917603 196.09034729 195.529800415 195.239761353 195.19972229 195.119644165 194.869644165 194.689956665 194.85987854 195.399917603 196.069839478 196.890151978 198.02003479 199.619644165 201.550308228 198.300430298 196.669570923 195.350234985 194.300430298 193.44984436 192.829727173 192.489883423 192.409805298 192.400039673 192.409805298 192.619766235 193.19984436 194.140274048 195.230117798 196.34046936 197.68031311 199.600234985 198.109527588 197.240386963 196.519683838 195.849761963 195.250152588 194.839996338 194.580230713 194.370269775 194.109527588 193.8800354 193.8800354 194.240386963 194.960113525 195.929840088 197.089996338 198.500152588 200.14956665 197.899917603 197.119644165 196.44972229 195.739761353 195.10987854 194.77003479 194.720230103 194.670425415 194.510269165 194.439956665 194.729995728 195.409683228 196.249526978 197.159683228 198.279800415 199.779800415 201.619644165 198.079727173 196.43031311 195.09046936 194.029922485 193.19984436 192.59046936 192.249649048 192.119766235 192.11000061 192.159805298 192.369766235 192.93031311 193.919570923 195.169570923 196.480117798 197.869766235 199.68031311 197.9503479 197.070465088 196.29019165 195.570465088 194.960113525 194.5597229 194.330230713 194.160308838 193.96987915 193.799957275 193.799957275 194.120269775 194.849761963 195.89956665 197.160308838 198.599761963 200.269683838 197.880386353 196.869644165 196.02003479 195.239761353 194.600112915 194.249526978 194.149917603 194.10987854 194.029800415 194.09034729 194.510269165 195.319839478 196.329605103 197.399917603 198.53956604 199.920425415 201.630386353 197.779922485 196.150039673 194.810195923 193.749649048 192.909805298 192.310195923 191.94984436 191.800430298 191.810195923 191.909805298 192.140274048 192.669570923 193.640274048 194.999649048 196.470352173 197.93031311 199.640274048 197.710113525 196.799957275 195.9503479 195.2003479 194.580230713 194.14956665 193.870269775 193.710113525 193.6300354 193.620269775 193.679840088 193.979644775 194.689605713 195.799957275 197.139801025 198.6300354 200.320465088 197.779800415 196.600112915 195.619644165 194.78956604 194.170425415 193.77003479 193.560073853 193.470230103 193.479995728 193.670425415 194.18019104 195.050308228 196.210464478 197.460464478 198.69972229 200.02003479 201.600112915 197.499649048 195.900039673 194.61000061 193.550430298 192.720352173 192.11000061 191.720352173 191.550430298 191.550430298 191.68031311 191.87953186 192.319961548 193.230117798 194.619766235 196.209609985 197.749649048 199.419570923 197.509918213 196.549957275 195.660308838 194.89956665 194.3097229 193.799957275 193.370269775 193.120269775 193.139801025 193.299957275 193.509918213 193.839996338 194.530426025 195.660308838 197.0597229 198.599761963 200.330230713 197.800308228 196.489761353 195.390151978 194.53956604 193.899917603 193.439956665 193.10987854 192.960464478 192.999526978 193.239761353 193.739761353 194.59034729 195.84034729 197.28956604 198.69972229 200.03956604 201.560073853 197.279922485 195.69984436 194.459609985 193.470352173 192.709609985 192.169570923 191.78968811 191.569961548 191.52015686 191.550430298 191.61000061 191.87953186 192.650039673 194.02015686 195.709609985 197.350234985 199.029922485 197.349761963 196.3097229 195.3800354 194.7003479 194.210113525 193.7003479 193.139801025 192.750152588 192.750152588 193.030426025 193.339996338 193.679840088 194.370269775 195.509918213 196.960113525 198.549957275 200.299957275 197.829605103 196.390151978 195.18019104 194.310073853 193.710464478 193.249526978 192.909683228 192.720230103 192.749526978 192.939956665 193.300308228 194.03956604 195.310073853 196.970230103 198.59034729 200.02003479 201.52003479 196.999649048 195.409805298 194.239883423 193.419570923 192.84046936 192.419570923 192.11000061 191.87953186 191.720352173 191.579727173 191.43031311 191.470352173 192.079727173 193.400039673 195.140274048 196.869766235 198.59046936 197.080230713 195.920074463 194.960113525 194.410308838 194.1300354 193.740386963 193.139801025 192.639801025 192.5597229 192.8097229 193.1300354 193.490386963 194.189605713 195.3800354 196.870269775 198.500152588 200.259918213 197.619644165 196.069839478 194.78956604 193.93019104 193.409683228 193.03956604 192.749526978 192.60987854 192.619644165 192.729995728 192.920425415 193.529800415 194.810073853 196.619644165 198.43019104 199.960464478 201.470230103 196.62953186 195.050430298 193.999649048 193.36000061 192.94984436 192.640274048 192.36000061 192.140274048 191.94984436 191.69984436 191.400039673 191.260391235 191.739883423 192.999649048 194.730117798 196.510391235 198.249649048 196.710113525 195.460113525 194.500152588 194.049957275 193.910308838 193.620269775 193.049957275 192.54019165 192.389801025 192.570465088 192.859527588 193.259918213 194.019683838 195.250152588 196.769683838 198.410308838 200.160308838 197.19972229 195.630386353 194.409683228 193.60987854 193.100112915 192.739761353 192.460464478 192.35987854 192.409683228 192.460464478 192.579605103 193.140151978 194.439956665 196.329605103 198.229995728 199.84034729 201.369644165 196.300430298 194.819961548 193.909805298 193.390274048 192.989883423 192.619766235 192.310195923 192.119766235 191.999649048 191.819961548 191.499649048 191.319961548 191.720352173 192.900039673 194.59046936 196.369766235 198.079727173 196.46987915 195.250152588 194.339996338 193.89956665 193.679840088 193.330230713 192.780426025 192.349761963 192.240386963 192.39956665 192.660308838 193.109527588 193.929840088 195.14956665 196.6300354 198.240386963 200.000152588 196.84034729 195.439956665 194.420425415 193.689956665 193.09034729 192.569839478 192.220230103 192.130386353 192.210464478 192.249526978 192.35987854 192.920425415 194.239761353 196.10987854 198.02003479 199.640151978 201.19972229 196.140274048 194.84046936 194.050430298 193.510391235 192.980117798 192.459609985 192.100234985 191.989883423 191.999649048 191.919570923 191.68031311 191.529922485 191.909805298 192.999649048 194.61000061 196.36000061 198.03968811 196.109573364 194.880081177 193.710159302 192.689651489 192.030471802 191.700393677 191.490432739 191.269729614 191.170120239 191.309768677 191.679885864 192.300003052 193.280471802 194.719924927 196.410354614 198.130081177 199.880081177 198.139877319 196.519760132 195.069564819 193.990463257 193.399642944 193.149642944 193.019760132 192.920150757 192.889877319 193.029525757 193.309799194 193.639877319 194.090072632 194.830307007 195.990463257 197.639877319 199.710189819 198.579879761 197.199996948 196.009567261 195.190231323 194.850387573 194.810348511 194.799606323 194.730270386 194.690231323 194.749801636 194.850387573 194.930465698 195.049606323 195.289840698 195.730270386 196.530075073 197.879684448 195.840042114 194.509963989 193.269729614 192.309768677 191.759963989 191.530471802 191.359573364 191.120315552 191.040237427 191.250198364 191.670120239 192.179885864 192.969924927 194.269729614 195.939651489 197.660354614 199.370315552 197.899642944 196.269760132 194.800033569 193.719955444 193.149642944 192.910385132 192.759994507 192.639877319 192.689682007 192.939682007 193.279525757 193.580307007 193.939682007 194.550033569 195.599838257 197.109603882 199.050033569 198.379684448 197.039840698 195.909957886 195.140426636 194.789840698 194.699996948 194.659957886 194.610153198 194.619918823 194.719528198 194.829879761 194.909957886 195.020309448 195.259567261 195.610153198 196.169723511 197.240036011 195.929885864 194.689651489 193.569534302 192.649612427 192.059768677 191.670120239 191.319534302 191.040237427 191.069534302 191.460159302 191.929885864 192.259963989 192.740432739 193.759963989 195.309768677 196.990432739 198.670120239 197.929916382 196.519760132 195.250228882 194.269760132 193.630111694 193.189682007 192.819564819 192.580307007 192.679916382 193.080307007 193.479721069 193.670150757 193.809799194 194.229721069 195.090072632 196.420150757 198.219955444 198.299606323 197.119918823 196.159957886 195.469528198 195.060348511 194.829879761 194.669723511 194.600387573 194.709762573 194.919723511 195.039840698 194.999801636 194.999801636 195.169723511 195.430465698 195.789840698 196.589645386 196.300003052 195.280471802 194.399612427 193.620315552 192.960159302 192.319534302 191.700393677 191.300003052 191.380081177 191.880081177 192.300003052 192.399612427 192.540237427 193.250198364 194.599807739 196.179885864 197.870315552 198.139877319 197.009994507 196.069564819 195.279525757 194.639877319 194.050033569 193.450424194 193.059799194 193.109603882 193.509994507 193.809799194 193.790267944 193.670150757 193.859603882 194.519760132 195.639877319 197.300033569 198.259567261 197.289840698 196.530075073 195.990036011 195.619918823 195.350387573 195.100387573 194.999801636 195.140426636 195.390426636 195.409957886 195.159957886 194.949996948 195.009567261 195.219528198 195.469528198 196.100387573 196.479690552 195.500198364 194.790237427 194.189651489 193.569534302 192.859573364 192.139846802 191.689651489 191.740432739 192.170120239 192.479690552 192.420120239 192.380081177 192.889846802 194.030471802 195.450393677 197.099807739 198.120346069 197.109603882 196.319564819 195.700424194 195.189682007 194.670150757 194.080307007 193.660385132 193.649642944 193.910385132 194.009994507 193.779525757 193.540267944 193.649642944 194.149642944 195.019760132 196.490463257 198.100387573 197.240036011 196.610153198 196.199996948 195.980270386 195.799606323 195.600387573 195.480270386 195.589645386 195.789840698 195.719528198 195.289840698 194.919723511 194.919723511 195.129684448 195.329879761 195.850387573 196.130081177 195.009963989 194.240432739 193.660354614 193.090042114 192.530471802 192.030471802 191.729690552 191.809768677 192.120315552 192.349807739 192.319534302 192.319534302 192.800003052 193.729690552 194.920120239 196.460159302 197.750228882 196.590072632 195.660385132 194.990463257 194.590072632 194.330307007 194.009994507 193.769760132 193.779525757 193.950424194 193.939682007 193.670150757 193.509994507 193.710189819 194.130111694 194.729721069 195.920150757 197.810348511 196.909957886 196.219528198 195.810348511 195.699996948 195.699996948 195.619918823 195.520309448 195.610153198 195.780075073 195.709762573 195.299606323 194.919723511 194.959762573 195.209762573 195.369918823 195.820114136 195.540237427 194.300003052 193.380081177 192.609573364 191.969924927 191.559768677 191.399612427 191.420120239 191.620315552 191.920120239 192.149612427 192.219924927 192.349807739 192.800003052 193.540237427 194.500198364 195.939651489 197.330307007 196.040267944 194.840072632 193.910385132 193.469955444 193.389877319 193.370346069 193.370346069 193.529525757 193.769760132 193.779525757 193.590072632 193.569564819 193.880111694 194.269760132 194.639877319 195.569564819 197.499801636 196.560348511 195.730270386 195.169723511 195.030075073 195.150192261 195.209762573 195.169723511 195.249801636 195.440231323 195.459762573 195.150192261 194.879684448 194.969528198 195.249801636 195.419723511 195.850387573 195.139846802 194.130081177 193.200393677 192.200393677 191.319534302 190.899612427 190.960159302 191.240432739 191.569534302 191.880081177 192.090042114 192.170120239 192.269729614 192.590042114 193.149612427 193.979690552 195.420120239 197.219955444 196.080307007 194.750228882 193.550033569 192.929916382 192.870346069 192.969955444 193.109603882 193.389877319 193.710189819 193.759994507 193.559799194 193.519760132 193.840072632 194.210189819 194.490463257 195.290267944 197.310348511 196.459762573 195.560348511 194.850387573 194.610153198 194.749801636 194.879684448 194.900192261 194.980270386 195.180465698 195.209762573 194.940231323 194.690231323 194.780075073 195.070114136 195.310348511 195.829879761 195.059768677 194.550003052 193.849807739 192.710159302 191.580276489 191.040237427 191.120315552 191.460159302 191.790237427 192.030471802 192.120315552 192.040237427 191.950393677 192.109573364 192.569534302 193.420120239 194.960159302 197.439682007 196.660385132 195.389877319 194.019760132 193.229721069 193.080307007 193.149642944 193.259994507 193.519760132 193.819564819 193.809799194 193.460189819 193.259994507 193.479721069 193.880111694 194.229721069 195.069564819 197.219528198 196.579879761 195.759567261 194.969528198 194.610153198 194.709762573 194.909957886 194.990036011 195.060348511 195.159957886 195.100387573 194.749801636 194.430465698 194.440231323 194.740036011 195.089645386 195.789840698 195.189651489 195.090042114 194.540237427 193.330276489 192.090042114 191.490432739 191.530471802 191.769729614 191.960159302 192.059768677 192.030471802 191.840042114 191.630081177 191.700393677 192.160354614 193.080276489 194.689651489 197.759994507 197.240463257 196.000228882 194.540267944 193.649642944 193.450424194 193.460189819 193.460189819 193.569564819 193.750228882 193.670150757 193.269760132 192.960189819 193.120346069 193.540267944 194.040267944 194.950424194 197.199996948 196.740036011 196.030075073 195.209762573 194.759567261 194.789840698 195.009567261 195.119918823 195.140426636 195.140426636 194.990036011 194.610153198 194.249801636 194.199996948 194.490036011 194.940231323 195.780075073 195.509963989 195.399612427 194.750198364 193.469924927 192.259963989 191.710159302 191.689651489 191.750198364 191.750198364 191.759963989 191.769729614 191.649612427 191.530471802 191.670120239 192.179885864 193.109573364 194.649612427 198.019760132 197.439682007 196.109603882 194.599838257 193.710189819 193.509994507 193.469955444 193.330307007 193.240463257 193.300033569 193.290267944 193.069564819 192.899642944 193.040267944 193.469955444 194.019760132 194.969955444 197.320114136 196.890426636 196.169723511 195.289840698 194.730270386 194.699996948 194.900192261 194.990036011 194.930465698 194.839645386 194.699996948 194.449996948 194.180465698 194.140426636 194.390426636 194.890426636 195.799606323 196.080276489 195.609573364 194.649612427 193.300003052 192.219924927 191.729690552 191.580276489 191.420120239 191.240432739 191.280471802 191.460159302 191.599807739 191.679885864 191.889846802 192.410354614 193.290237427 194.729690552 198.130111694 197.279525757 195.870346069 194.439682007 193.639877319 193.439682007 193.319564819 193.000228882 192.700424194 192.679916382 192.849838257 192.979721069 193.040267944 193.189682007 193.500228882 194.029525757 195.009994507 197.520309448 196.959762573 196.150192261 195.199996948 194.600387573 194.530075073 194.680465698 194.690231323 194.490036011 194.329879761 194.299606323 194.259567261 194.150192261 194.089645386 194.310348511 194.869918823 195.860153198 196.639846802 195.729690552 194.490432739 193.200393677 192.280471802 191.800003052 191.450393677 191.019729614 190.719924927 190.840042114 191.250198364 191.639846802 191.849807739 192.040237427 192.490432739 193.370315552 194.790237427 197.979721069 196.870346069 195.529525757 194.370346069 193.740463257 193.519760132 193.269760132 192.769760132 192.309799194 192.229721069 192.559799194 192.979721069 193.210189819 193.259994507 193.389877319 193.920150757 195.029525757 197.629684448 196.869918823 195.940231323 194.990036011 194.430465698 194.390426636 194.520309448 194.409957886 194.079879761 193.879684448 193.959762573 194.140426636 194.119918823 193.990036011 194.150192261 194.810348511 195.949996948 196.809768677 195.559768677 194.229690552 193.120315552 192.389846802 191.899612427 191.349807739 190.740432739 190.410354614 190.609573364 191.200393677 191.719924927 191.950393677 192.050003052 192.420120239 193.319534302 194.800003052 197.590072632 196.319564819 195.170150757 194.319564819 193.849838257 193.569564819 193.210189819 192.660385132 192.179916382 192.099838257 192.500228882 193.040267944 193.279525757 193.179916382 193.170150757 193.719955444 194.990463257 197.570114136 196.600387573 195.549606323 194.619918823 194.140426636 194.140426636 194.259567261 194.110153198 193.759567261 193.579879761 193.820114136 194.150192261 194.180465698 193.959762573 194.049606323 194.780075073 196.060348511 196.670120239 195.229690552 193.889846802 192.929885864 192.349807739 191.870315552 191.269729614 190.670120239 190.380081177 190.609573364 191.219924927 191.790237427 192.030471802 192.090042114 192.410354614 193.309768677 194.769729614 197.340072632 195.990463257 194.920150757 194.210189819 193.759994507 193.399642944 193.019760132 192.599838257 192.269760132 192.259994507 192.630111694 193.120346069 193.309799194 193.139877319 193.069564819 193.630111694 194.920150757 197.530075073 196.419723511 195.270309448 194.289840698 193.759567261 193.699996948 193.799606323 193.690231323 193.409957886 193.360153198 193.730270386 194.190231323 194.299606323 194.079879761 194.100387573 194.780075073 196.020309448 196.769729614 195.259963989 193.870315552 192.920120239 192.330276489 191.859573364 191.370315552 190.920120239 190.679885864 190.780471802 191.219924927 191.719924927 192.050003052 192.200393677 192.519729614 193.330276489 194.620315552 197.639877319 196.250228882 195.099838257 194.300033569 193.719955444 193.259994507 192.920150757 192.710189819 192.580307007 192.590072632 192.809799194 193.149642944 193.309799194 193.200424194 193.149642944 193.620346069 194.729721069 197.810348511 196.650192261 195.419723511 194.320114136 193.629684448 193.390426636 193.379684448 193.320114136 193.159957886 193.150192261 193.490036011 193.990036011 194.240036011 194.169723511 194.159957886 194.650192261 195.650192261 197.340042114 195.880081177 194.420120239 193.300003052 192.559768677 192.050003052 191.689651489 191.420120239 191.189651489 191.030471802 191.099807739 191.420120239 191.819534302 192.139846802 192.509963989 193.200393677 194.259963989 198.290267944 196.929916382 195.679916382 194.719955444 194.000228882 193.450424194 193.139877319 193.059799194 193.029525757 192.929916382 192.889877319 193.000228882 193.130111694 193.160385132 193.189682007 193.540267944 194.380111694 198.299606323 197.209762573 195.949996948 194.759567261 193.879684448 193.440231323 193.310348511 193.270309448 193.150192261 193.020309448 193.100387573 193.419723511 193.770309448 193.940231323 194.030075073 194.320114136 195.030075073 197.870315552 196.509963989 195.030471802 193.780471802 192.870315552 192.269729614 191.969924927 191.830276489 191.609573364 191.229690552 190.939651489 191.009963989 191.389846802 191.830276489 192.269729614 192.870315552 193.849807739 198.620346069 197.340072632 196.080307007 195.090072632 194.340072632 193.769760132 193.450424194 193.380111694 193.359603882 193.149642944 192.859603882 192.710189819 192.800033569 192.939682007 193.050033569 193.290267944 193.960189819 198.579879761 197.539840698 196.320114136 195.129684448 194.199996948 193.650192261 193.449996948 193.409957886 193.310348511 193.009567261 192.740036011 192.749801636 193.100387573 193.490036011 193.730270386 193.949996948 194.509567261 197.700393677 196.420120239 195.019729614 193.809768677 192.870315552 192.210159302 191.899612427 191.849807739 191.750198364 191.380081177 190.950393677 190.849807739 191.130081177 191.569534302 192.009963989 192.620315552 193.660354614 198.219955444 197.019760132 195.870346069 195.000228882 194.359603882 193.830307007 193.479721069 193.389877319 193.399642944 193.210189819 192.830307007 192.569564819 192.590072632 192.750228882 192.880111694 193.090072632 193.740463257 198.350387573 197.289840698 196.129684448 195.049606323 194.209762573 193.640426636 193.409957886 193.409957886 193.400192261 193.110153198 192.650192261 192.449996948 192.699996948 193.169723511 193.509567261 193.780075073 194.419723511 196.950393677 195.679885864 194.439651489 193.420120239 192.609573364 191.969924927 191.630081177 191.620315552 191.689651489 191.540237427 191.229690552 191.099807739 191.309768677 191.660354614 192.040237427 192.660354614 193.840042114 197.529525757 196.399642944 195.399642944 194.670150757 194.139877319 193.660385132 193.279525757 193.189682007 193.290267944 193.250228882 193.000228882 192.759994507 192.750228882 192.859603882 192.920150757 193.069564819 193.779525757 197.900192261 196.770309448 195.650192261 194.709762573 193.990036011 193.459762573 193.159957886 193.159957886 193.280075073 193.199996948 192.879684448 192.680465698 192.839645386 193.209762573 193.549606323 193.919723511 194.730270386 196.370315552 195.099807739 193.990432739 193.160354614 192.509963989 191.920120239 191.540237427 191.490432739 191.630081177 191.670120239 191.559768677 191.550003052 191.740432739 192.000198364 192.300003052 192.939651489 194.229690552 197.279525757 196.229721069 195.309799194 194.620346069 194.109603882 193.630111694 193.229721069 193.120346069 193.229721069 193.309799194 193.219955444 193.120346069 193.149642944 193.179916382 193.109603882 193.200424194 193.920150757 197.669723511 196.499801636 195.430465698 194.600387573 193.969528198 193.430465698 193.049606323 192.980270386 193.140426636 193.240036011 193.159957886 193.089645386 193.230270386 193.469528198 193.730270386 194.190231323 195.140426636 196.410354614 195.160354614 194.090042114 193.300003052 192.670120239 192.090042114 191.670120239 191.540237427 191.620315552 191.679885864 191.689651489 191.790237427 192.040237427 192.280471802 192.569534302 193.200393677 194.530471802 197.569564819 196.609603882 195.689682007 194.929916382 194.330307007 193.800033569 193.389877319 193.219955444 193.259994507 193.319564819 193.279525757 193.319564819 193.420150757 193.410385132 193.259994507 193.290267944 193.969955444 197.789840698 196.650192261 195.629684448 194.820114136 194.190231323 193.640426636 193.199996948 193.009567261 193.070114136 193.180465698 193.230270386 193.310348511 193.469528198 193.650192261 193.879684448 194.390426636 195.409957886 196.819534302 195.559768677 194.420120239 193.509963989 192.769729614 192.170120239 191.759963989 191.590042114 191.580276489 191.569534302 191.609573364 191.780471802 192.069534302 192.349807739 192.660354614 193.340042114 194.609573364 197.889877319 196.979721069 196.019760132 195.149642944 194.460189819 193.889877319 193.479721069 193.290267944 193.250228882 193.200424194 193.179916382 193.290267944 193.460189819 193.460189819 193.279525757 193.300033569 193.939682007 198.009567261 196.900192261 195.869918823 194.999801636 194.320114136 193.759567261 193.360153198 193.140426636 193.089645386 193.089645386 193.129684448 193.259567261 193.490036011 193.699996948 193.980270386 194.539840698 195.520309448 197.050003052 195.759963989 194.519729614 193.469924927 192.620315552 192.009963989 191.660354614 191.530471802 191.509963989 191.500198364 191.540237427 191.750198364 192.030471802 192.309768677 192.670120239 193.370315552 194.550003052 197.889877319 196.939682007 195.969955444 195.080307007 194.349838257 193.769760132 193.399642944 193.250228882 193.210189819 193.149642944 193.120346069 193.250228882 193.429916382 193.410385132 193.259994507 193.330307007 193.899642944 198.070114136 196.940231323 195.890426636 194.949996948 194.199996948 193.650192261 193.329879761 193.199996948 193.140426636 193.089645386 193.079879761 193.209762573 193.440231323 193.690231323 194.039840698 194.629684448 195.520309448 197.019729614 195.679885864 194.439651489 193.359573364 192.479690552 191.849807739 191.550003052 191.469924927 191.500198364 191.540237427 191.620315552 191.819534302 192.030471802 192.259963989 192.630081177 193.349807739 194.410354614 197.719955444 196.710189819 195.779525757 194.969955444 194.279525757 193.700424194 193.319564819 193.219955444 193.240463257 193.229721069 193.229721069 193.330307007 193.439682007 193.359603882 193.229721069 193.349838257 193.849838257 198.060348511 196.890426636 195.829879761 194.879684448 194.079879761 193.520309448 193.249801636 193.190231323 193.209762573 193.180465698 193.190231323 193.280075073 193.459762573 193.680465698 194.020309448 194.610153198 195.400192261 196.990432739 195.620315552 194.450393677 193.439651489 192.580276489 191.929885864 191.599807739 191.519729614 191.530471802 191.569534302 191.689651489 191.870315552 192.030471802 192.189651489 192.559768677 193.259963989 194.250198364 197.679916382 196.620346069 195.750228882 195.050033569 194.399642944 193.790267944 193.380111694 193.250228882 193.279525757 193.309799194 193.340072632 193.410385132 193.439682007 193.309799194 193.179916382 193.319564819 193.719955444 198.110153198 196.909957886 195.879684448 194.959762573 194.159957886 193.579879761 193.289840698 193.219528198 193.240036011 193.249801636 193.289840698 193.369918823 193.469528198 193.619918823 193.930465698 194.449996948 195.190231323 197.080276489 195.700393677 194.580276489 193.620315552 192.750198364 192.080276489 191.719924927 191.590042114 191.530471802 191.550003052 191.660354614 191.840042114 191.990432739 192.130081177 192.479690552 193.160354614 194.109573364 197.779525757 196.670150757 195.819564819 195.149642944 194.500228882 193.880111694 193.429916382 193.250228882 193.240463257 193.250228882 193.300033569 193.399642944 193.410385132 193.259994507 193.130111694 193.240463257 193.540267944 198.249801636 197.049606323 196.009567261 195.079879761 194.280075073 193.719528198 193.400192261 193.259567261 193.209762573 193.209762573 193.270309448 193.369918823 193.469528198 193.600387573 193.860153198 194.310348511 194.999801636 197.179885864 195.759963989 194.620315552 193.630081177 192.740432739 192.090042114 191.769729614 191.630081177 191.530471802 191.490432739 191.620315552 191.840042114 192.009963989 192.160354614 192.479690552 193.080276489 194.000198364 197.819564819 196.670150757 195.759994507 195.050033569 194.399642944 193.830307007 193.420150757 193.219955444 193.160385132 193.160385132 193.250228882 193.389877319 193.439682007 193.319564819 193.160385132 193.170150757 193.380111694 198.419723511 197.169723511 196.049606323 195.039840698 194.230270386 193.709762573 193.430465698 193.270309448 193.159957886 193.150192261 193.230270386 193.360153198 193.509567261 193.669723511 193.919723511 194.280075073 194.919723511 197.179885864 195.710159302 194.509963989 193.460159302 192.590042114 192.019729614 191.780471802 191.689651489 191.590042114 191.559768677 191.689651489 191.910354614 192.080276489 192.210159302 192.460159302 192.969924927 193.889846802 197.759994507 196.580307007 195.639877319 194.910385132 194.300033569 193.819564819 193.500228882 193.319564819 193.229721069 193.229721069 193.330307007 193.479721069 193.509994507 193.370346069 193.170150757 193.090072632 193.219955444 198.539840698 197.249801636 196.039840698 194.930465698 194.100387573 193.640426636 193.419723511 193.270309448 193.169723511 193.190231323 193.299606323 193.419723511 193.560348511 193.749801636 193.980270386 194.259567261 194.839645386 197.139846802 195.620315552 194.399612427 193.359573364 192.550003052 192.050003052 191.840042114 191.759963989 191.679885864 191.660354614 191.769729614 191.920120239 192.030471802 192.120315552 192.319534302 192.780471802 193.710159302 197.740463257 196.559799194 195.639877319 194.929916382 194.399642944 194.000228882 193.719955444 193.540267944 193.450424194 193.439682007 193.490463257 193.509994507 193.439682007 193.269760132 193.040267944 192.889877319 193.029525757 198.669723511 197.339645386 196.079879761 194.949996948 194.119918823 193.669723511 193.449996948 193.310348511 193.259567261 193.329879761 193.430465698 193.469528198 193.520309448 193.659957886 193.850387573 194.079879761 194.659957886 197.080276489 195.550003052 194.349807739 193.399612427 192.649612427 192.179885864 191.920120239 191.769729614 191.679885864 191.679885864 191.759963989 191.809768677 191.840042114 191.929885864 192.139846802 192.590042114 193.580276489 197.790267944 196.630111694 195.740463257 195.069564819 194.559799194 194.179916382 193.880111694 193.679916382 193.590072632 193.590072632 193.559799194 193.429916382 193.240463257 193.050033569 192.840072632 192.649642944 192.809799194 198.749801636 197.409957886 196.159957886 195.060348511 194.270309448 193.810348511 193.520309448 193.339645386 193.310348511 193.430465698 193.499801636 193.419723511 193.360153198 193.469528198 193.640426636 193.850387573 194.440231323 196.990432739 195.469924927 194.309768677 193.420120239 192.750198364 192.259963989 191.920120239 191.689651489 191.609573364 191.649612427 191.700393677 191.679885864 191.719924927 191.899612427 192.179885864 192.639846802 193.670120239 197.849838257 196.670150757 195.769760132 195.090072632 194.569564819 194.170150757 193.840072632 193.639877319 193.590072632 193.630111694 193.559799194 193.359603882 193.160385132 193.029525757 192.840072632 192.580307007 192.710189819 198.799606323 197.409957886 196.159957886 195.110153198 194.350387573 193.879684448 193.539840698 193.320114136 193.299606323 193.440231323 193.459762573 193.350387573 193.299606323 193.459762573 193.650192261 193.829879761 194.390426636 196.849807739 195.370315552 194.240432739 193.380081177 192.740432739 192.259963989 191.910354614 191.660354614 191.599807739 191.679885864 191.729690552 191.729690552 191.830276489 192.139846802 192.509963989 192.969924927 193.969924927 197.849838257 196.679916382 195.740463257 194.990463257 194.460189819 194.069564819 193.750228882 193.559799194 193.569564819 193.660385132 193.620346069 193.460189819 193.349838257 193.330307007 193.130111694 192.769760132 192.830307007 198.839645386 197.400192261 196.089645386 195.020309448 194.289840698 193.839645386 193.520309448 193.320114136 193.299606323 193.419723511 193.430465698 193.350387573 193.449996948 193.740036011 193.980270386 194.100387573 194.579879761 196.740432739 195.309768677 194.200393677 193.330276489 192.710159302 192.300003052 191.990432739 191.750198364 191.689651489 191.759963989 191.809768677 191.849807739 192.030471802 192.450393677 192.880081177 193.340042114 194.319534302 197.849838257 196.689682007 195.719955444 194.950424194 194.439682007 194.099838257 193.819564819 193.620346069 193.620346069 193.719955444 193.719955444 193.609603882 193.620346069 193.689682007 193.479721069 193.069564819 193.099838257 198.919723511 197.419723511 196.039840698 194.930465698 194.209762573 193.810348511 193.549606323 193.369918823 193.350387573 193.390426636 193.390426636 193.390426636 193.640426636 194.070114136 194.350387573 194.430465698 194.850387573 196.689651489 195.300003052 194.170120239 193.290237427 192.700393677 192.370315552 192.120315552 191.880081177 191.769729614 191.800003052 191.830276489 191.859573364 192.069534302 192.519729614 193.009963989 193.559768677 194.599807739 197.819564819 196.660385132 195.689682007 194.969955444 194.540267944 194.300033569 194.019760132 193.779525757 193.710189819 193.769760132 193.740463257 193.639877319 193.679916382 193.800033569 193.649642944 193.300033569 193.439682007 198.930465698 197.390426636 195.999801636 194.869918823 194.180465698 193.820114136 193.600387573 193.419723511 193.350387573 193.360153198 193.350387573 193.390426636 193.680465698 194.159957886 194.480270386 194.619918823 195.079879761 196.620315552 195.250198364 194.099807739 193.210159302 192.660354614 192.380081177 192.160354614 191.910354614 191.759963989 191.759963989 191.790237427 191.800003052 191.969924927 192.399612427 192.979690552 193.660354614 194.790237427 197.670150757 196.479721069 195.559799194 194.939682007 194.620346069 194.439682007 194.160385132 193.880111694 193.769760132 193.809799194 193.740463257 193.599838257 193.599838257 193.729721069 193.670150757 193.479721069 193.779525757 198.780075073 197.230270386 195.850387573 194.780075073 194.140426636 193.820114136 193.579879761 193.379684448 193.289840698 193.310348511 193.320114136 193.360153198 193.619918823 194.060348511 194.430465698 194.709762573 195.299606323 196.500198364 195.099807739 193.939651489 193.069534302 192.569534302 192.319534302 192.109573364 191.870315552 191.729690552 191.729690552 191.790237427 191.790237427 191.910354614 192.330276489 192.960159302 193.750198364 194.870315552 197.410385132 196.219955444 195.370346069 194.880111694 194.660385132 194.500228882 194.219955444 193.929916382 193.840072632 193.889877319 193.809799194 193.609603882 193.569564819 193.719955444 193.759994507 193.670150757 194.040267944 198.520309448 196.990036011 195.669723511 194.690231323 194.100387573 193.780075073 193.530075073 193.310348511 193.219528198 193.270309448 193.339645386 193.409957886 193.619918823 193.999801636 194.409957886 194.810348511 195.469528198 196.370315552 194.960159302 193.830276489 193.019729614 192.530471802 192.280471802 192.080276489 191.880081177 191.769729614 191.790237427 191.830276489 191.830276489 191.950393677 192.359573364 192.990432739 193.719924927 194.649612427 197.189682007 196.040267944 195.309799194 194.939682007 194.779525757 194.599838257 194.300033569 194.029525757 193.979721069 194.009994507 193.880111694 193.660385132 193.649642944 193.840072632 193.889877319 193.779525757 194.059799194 198.320114136 196.829879761 195.600387573 194.680465698 194.119918823 193.799606323 193.549606323 193.339645386 193.240036011 193.289840698 193.390426636 193.499801636 193.709762573 194.060348511 194.459762573 194.860153198 195.430465698 196.280471802 194.899612427 193.830276489 193.059768677 192.550003052 192.280471802 192.109573364 191.969924927 191.889846802 191.870315552 191.889846802 191.889846802 192.000198364 192.370315552 192.910354614 193.439651489 194.009963989 197.099838257 196.050033569 195.429916382 195.149642944 194.990463257 194.769760132 194.460189819 194.219955444 194.160385132 194.120346069 193.920150757 193.660385132 193.670150757 193.880111694 193.920150757 193.710189819 193.809799194 198.230270386 196.820114136 195.669723511 194.789840698 194.199996948 193.860153198 193.650192261 193.490036011 193.369918823 193.350387573 193.419723511 193.570114136 193.799606323 194.110153198 194.419723511 194.690231323 195.060348511 196.240432739 194.889846802 193.859573364 193.099807739 192.559768677 192.250198364 192.139846802 192.099807739 192.050003052 192.000198364 191.969924927 191.950393677 192.019729614 192.280471802 192.670120239 192.969924927 193.229690552 197.069564819 196.099838257 195.580307007 195.340072632 195.160385132 194.910385132 194.630111694 194.439682007 194.380111694 194.279525757 194.009994507 193.689682007 193.620346069 193.769760132 193.779525757 193.529525757 193.509994507 198.159957886 196.810348511 195.740036011 194.869918823 194.219528198 193.850387573 193.699996948 193.640426636 193.549606323 193.480270386 193.509567261 193.650192261 193.860153198 194.089645386 194.259567261 194.360153198 194.570114136 196.240432739 194.880081177 193.859573364 193.099807739 192.519729614 192.210159302 192.149612427 192.210159302 192.210159302 192.160354614 192.120315552 192.080276489 192.050003052 192.139846802 192.389846802 192.599807739 192.769729614 196.990463257 196.099838257 195.639877319 195.429916382 195.240463257 195.000228882 194.759994507 194.639877319 194.609603882 194.529525757 194.269760132 193.899642944 193.660385132 193.649642944 193.639877319 193.479721069 193.479721069 197.990036011 196.680465698 195.669723511 194.850387573 194.190231323 193.780075073 193.669723511 193.690231323 193.690231323 193.650192261 193.680465698 193.789840698 193.930465698 194.049606323 194.129684448 194.150192261 194.310348511 196.280471802 194.920120239 193.910354614 193.149612427 192.550003052 192.210159302 192.179885864 192.290237427 192.319534302 192.290237427 192.300003052 192.250198364 192.099807739 192.019729614 192.200393677 192.500198364 192.790237427 196.859603882 196.040267944 195.649642944 195.490463257 195.340072632 195.120346069 194.910385132 194.790267944 194.769760132 194.759994507 194.590072632 194.219955444 193.800033569 193.559799194 193.569564819 193.630111694 193.759994507 197.780075073 196.490036011 195.579879761 194.850387573 194.219528198 193.780075073 193.650192261 193.690231323 193.759567261 193.789840698 193.869918823 193.949996948 193.999801636 194.039840698 194.129684448 194.230270386 194.419723511 196.370315552 195.050003052 194.059768677 193.319534302 192.700393677 192.340042114 192.290237427 192.370315552 192.380081177 192.340042114 192.380081177 192.340042114 192.120315552 191.920120239 192.080276489 192.550003052 193.069534302 196.719955444 195.950424194 195.630111694 195.529525757 195.450424194 195.309799194 195.139877319 194.960189819 194.859603882 194.840072632 194.779525757 194.479721069 193.920150757 193.500228882 193.519760132 193.809799194 194.120346069 197.579879761 196.350387573 195.560348511 194.980270386 194.419723511 193.969528198 193.770309448 193.740036011 193.780075073 193.850387573 193.969528198 194.039840698 194.009567261 194.030075073 194.209762573 194.449996948 194.699996948 196.460159302 195.179885864 194.240432739 193.509963989 192.910354614 192.540237427 192.450393677 192.479690552 192.420120239 192.330276489 192.370315552 192.359573364 192.120315552 191.870315552 192.030471802 192.599807739 193.300003052 196.540267944 195.790267944 195.460189819 195.429916382 195.479721069 195.529525757 195.509994507 195.359603882 195.130111694 194.979721069 194.910385132 194.630111694 194.019760132 193.469955444 193.460189819 193.899642944 194.349838257 197.430465698 196.310348511 195.629684448 195.169723511 194.719528198 194.320114136 194.049606323 193.919723511 193.829879761 193.869918823 193.999801636 194.079879761 194.020309448 194.020309448 194.289840698 194.650192261 194.930465698 196.469924927 195.210159302 194.280471802 193.590042114 193.050003052 192.710159302 192.620315552 192.620315552 192.500198364 192.380081177 192.399612427 192.410354614 192.210159302 191.969924927 192.069534302 192.620315552 193.399612427 196.359603882 195.550033569 195.170150757 195.149642944 195.359603882 195.710189819 196.040267944 196.130111694 195.880111694 195.540267944 195.259994507 194.889877319 194.219955444 193.559799194 193.439682007 193.899642944 194.460189819 197.329879761 196.310348511 195.699996948 195.310348511 194.959762573 194.659957886 194.419723511 194.209762573 193.999801636 193.959762573 194.089645386 194.199996948 194.129684448 194.100387573 194.369918823 194.780075073 195.070114136 196.420120239 195.130081177 194.189651489 193.550003052 193.109573364 192.849807739 192.780471802 192.759963989 192.649612427 192.519729614 192.540237427 192.550003052 192.359573364 192.109573364 192.160354614 192.670120239 193.469924927 196.250228882 195.389877319 194.950424194 194.929916382 195.240463257 195.870346069 196.620346069 197.090072632 196.990463257 196.469955444 195.889877319 195.319564819 194.559799194 193.809799194 193.550033569 193.910385132 194.500228882 197.270309448 196.310348511 195.730270386 195.390426636 195.129684448 194.940231323 194.770309448 194.530075073 194.259567261 194.159957886 194.280075073 194.400192261 194.320114136 194.240036011 194.449996948 194.850387573 195.199996948 196.389846802 195.019729614 194.059768677 193.469924927 193.130081177 192.960159302 192.939651489 192.939651489 192.870315552 192.780471802 192.769729614 192.710159302 192.450393677 192.160354614 192.179885864 192.679885864 193.530471802 196.309799194 195.490463257 195.040267944 194.960189819 195.240463257 195.929916382 196.939682007 197.769760132 197.899642944 197.309799194 196.469955444 195.679916382 194.849838257 194.059799194 193.670150757 193.889877319 194.479721069 197.249801636 196.299606323 195.730270386 195.430465698 195.270309448 195.180465698 195.079879761 194.879684448 194.610153198 194.469528198 194.539840698 194.619918823 194.480270386 194.310348511 194.449996948 194.879684448 195.350387573 196.410354614 194.969924927 193.960159302 193.399612427 193.139846802 193.080276489 193.130081177 193.210159302 193.229690552 193.179885864 193.099807739 192.889846802 192.490432739 192.090042114 192.059768677 192.569534302 193.509963989 196.469955444 195.759994507 195.309799194 195.130111694 195.250228882 195.819564819 196.840072632 197.849838257 198.179916382 197.660385132 196.740463257 195.830307007 194.990463257 194.210189819 193.750228882 193.819564819 194.380111694 197.219528198 196.249801636 195.699996948 195.459762573 195.409957886 195.400192261 195.400192261 195.289840698 195.100387573 194.940231323 194.900192261 194.839645386 194.579879761 194.320114136 194.390426636 194.829879761 195.430465698 196.450393677 194.990432739 193.960159302 193.370315552 193.149612427 193.189651489 193.410354614 193.649612427 193.750198364 193.700393677 193.519729614 193.160354614 192.609573364 192.090042114 191.969924927 192.429885864 193.389846802 196.569564819 195.969955444 195.490463257 195.170150757 195.139877319 195.569564819 196.509994507 197.500228882 197.920150757 197.550033569 196.719955444 195.870346069 195.069564819 194.309799194 193.790267944 193.750228882 194.219955444 197.169723511 196.180465698 195.619918823 195.440231323 195.469528198 195.600387573 195.740036011 195.810348511 195.740036011 195.570114136 195.400192261 195.150192261 194.759567261 194.400192261 194.369918823 194.770309448 195.449996948 196.530471802 195.130081177 194.080276489 193.420120239 193.179885864 193.319534302 193.729690552 194.120315552 194.269729614 194.149612427 193.880081177 193.479690552 192.910354614 192.330276489 192.080276489 192.389846802 193.280471802 196.519760132 195.969955444 195.410385132 195.009994507 194.969955444 195.410385132 196.250228882 197.120346069 197.500228882 197.240463257 196.580307007 195.859603882 195.120346069 194.370346069 193.819564819 193.719955444 194.130111694 197.150192261 196.150192261 195.560348511 195.369918823 195.449996948 195.699996948 196.039840698 196.299606323 196.350387573 196.180465698 195.900192261 195.539840698 195.060348511 194.600387573 194.449996948 194.789840698 195.459762573 196.649612427 195.340042114 194.269729614 193.540237427 193.250198364 193.450393677 193.960159302 194.399612427 194.500198364 194.280471802 194.000198364 193.710159302 193.290237427 192.759963989 192.380081177 192.479690552 193.210159302 196.380111694 195.800033569 195.149642944 194.740463257 194.819564819 195.389877319 196.200424194 196.859603882 197.059799194 196.819564819 196.330307007 195.759994507 195.050033569 194.309799194 193.779525757 193.689682007 194.109603882 197.209762573 196.199996948 195.530075073 195.270309448 195.339645386 195.699996948 196.190231323 196.579879761 196.669723511 196.469528198 196.159957886 195.799606323 195.310348511 194.810348511 194.579879761 194.839645386 195.520309448 196.740432739 195.420120239 194.309768677 193.540237427 193.259963989 193.490432739 194.000198364 194.399612427 194.399612427 194.139846802 193.899612427 193.790237427 193.559768677 193.109573364 192.630081177 192.540237427 193.120315552 196.139877319 195.490463257 194.790267944 194.429916382 194.639877319 195.319564819 196.090072632 196.550033569 196.590072632 196.340072632 195.990463257 195.509994507 194.849838257 194.139877319 193.670150757 193.649642944 194.099838257 197.249801636 196.209762573 195.459762573 195.089645386 195.150192261 195.600387573 196.199996948 196.619918823 196.640426636 196.379684448 196.079879761 195.799606323 195.379684448 194.879684448 194.619918823 194.860153198 195.570114136 196.670120239 195.210159302 194.040237427 193.309768677 193.120315552 193.399612427 193.870315552 194.210159302 194.210159302 193.990432739 193.819534302 193.769729614 193.620315552 193.200393677 192.679885864 192.500198364 192.960159302 195.849838257 195.109603882 194.439682007 194.109603882 194.319564819 194.960189819 195.689682007 196.109603882 196.139877319 195.960189819 195.700424194 195.300033569 194.679916382 194.009994507 193.590072632 193.599838257 194.050033569 197.129684448 196.049606323 195.249801636 194.820114136 194.900192261 195.440231323 196.150192261 196.560348511 196.490036011 196.169723511 195.900192261 195.680465698 195.320114136 194.850387573 194.610153198 194.839645386 195.549606323 196.410354614 194.780471802 193.599807739 193.009963989 192.950393677 193.250198364 193.670120239 194.009963989 194.109573364 193.990432739 193.830276489 193.689651489 193.439651489 193.009963989 192.550003052 192.389846802 192.800003052 195.639877319 194.849838257 194.229721069 193.870346069 193.920150757 194.410385132 195.080307007 195.590072632 195.790267944 195.750228882 195.569564819 195.189682007 194.599838257 193.979721069 193.599838257 193.599838257 193.990463257 196.940231323 195.850387573 195.049606323 194.619918823 194.709762573 195.310348511 196.079879761 196.499801636 196.419723511 196.100387573 195.850387573 195.629684448 195.270309448 194.820114136 194.600387573 194.820114136 195.490036011 196.139846802 194.429885864 193.340042114 192.899612427 192.899612427 193.130081177 193.460159302 193.819534302 194.040237427 194.019729614 193.790237427 193.450393677 193.050003052 192.630081177 192.300003052 192.280471802 192.700393677 195.649642944 194.880111694 194.300033569 193.859603882 193.679916382 193.939682007 194.509994507 195.109603882 195.469955444 195.540267944 195.380111694 195.000228882 194.439682007 193.889877319 193.580307007 193.569564819 193.939682007 196.869918823 195.850387573 195.089645386 194.640426636 194.699996948 195.259567261 195.980270386 196.390426636 196.350387573 196.110153198 195.879684448 195.619918823 195.209762573 194.780075073 194.610153198 194.820114136 195.430465698 195.979690552 194.370315552 193.410354614 193.009963989 192.920120239 192.979690552 193.219924927 193.590042114 193.899612427 193.929885864 193.599807739 193.080276489 192.559768677 192.179885864 192.019729614 192.160354614 192.649612427 195.889877319 195.139877319 194.559799194 194.029525757 193.679916382 193.710189819 194.130111694 194.670150757 195.019760132 195.080307007 194.910385132 194.540267944 194.040267944 193.599838257 193.370346069 193.439682007 193.870346069 197.020309448 196.100387573 195.360153198 194.869918823 194.820114136 195.249801636 195.810348511 196.159957886 196.169723511 196.039840698 195.860153198 195.530075073 195.070114136 194.680465698 194.579879761 194.799606323 195.369918823 195.939651489 194.450393677 193.530471802 193.050003052 192.800003052 192.750198364 192.960159302 193.389846802 193.750198364 193.769729614 193.359573364 192.750198364 192.170120239 191.809768677 191.729690552 191.960159302 192.509963989 196.139877319 195.340072632 194.660385132 194.059799194 193.649642944 193.599838257 193.870346069 194.219955444 194.429916382 194.429916382 194.269760132 193.929916382 193.529525757 193.179916382 193.059799194 193.229721069 193.759994507 197.219528198 196.339645386 195.579879761 195.030075073 194.909957886 195.199996948 195.619918823 195.869918823 195.930465698 195.900192261 195.740036011 195.369918823 194.869918823 194.530075073 194.480270386 194.719528198 195.280075073 195.830276489 194.370315552 193.410354614 192.800003052 192.469924927 192.460159302 192.800003052 193.330276489 193.700393677 193.670120239 193.200393677 192.530471802 191.929885864 191.559768677 191.469924927 191.710159302 192.280471802 196.219955444 195.259994507 194.410385132 193.740463257 193.370346069 193.370346069 193.559799194 193.759994507 193.859603882 193.859603882 193.750228882 193.490463257 193.139877319 192.880111694 192.819564819 193.050033569 193.639877319 197.289840698 196.350387573 195.509567261 194.940231323 194.829879761 195.089645386 195.440231323 195.650192261 195.740036011 195.740036011 195.589645386 195.180465698 194.690231323 194.400192261 194.390426636 194.629684448 195.180465698 195.590042114 194.080276489 193.050003052 192.399612427 192.160354614 192.319534302 192.819534302 193.399612427 193.710159302 193.569534302 193.050003052 192.380081177 191.790237427 191.410354614 191.300003052 191.519729614 192.080276489 196.210189819 195.080307007 194.040267944 193.279525757 192.960189819 193.000228882 193.170150757 193.319564819 193.439682007 193.519760132 193.479721069 193.250228882 192.950424194 192.719955444 192.700424194 192.939682007 193.519760132 197.249801636 196.230270386 195.310348511 194.730270386 194.659957886 194.940231323 195.280075073 195.490036011 195.589645386 195.610153198 195.409957886 194.990036011 194.539840698 194.299606323 194.310348511 194.520309448 195.049606323 195.290237427 193.790237427 192.790237427 192.229690552 192.099807739 192.399612427 192.950393677 193.460159302 193.639846802 193.399612427 192.840042114 192.179885864 191.620315552 191.280471802 191.210159302 191.429885864 191.969924927 196.300033569 195.099838257 193.950424194 193.109603882 192.729721069 192.710189819 192.830307007 192.990463257 193.179916382 193.340072632 193.300033569 193.069564819 192.769760132 192.590072632 192.609603882 192.840072632 193.420150757 197.329879761 196.270309448 195.320114136 194.699996948 194.570114136 194.789840698 195.100387573 195.320114136 195.440231323 195.430465698 195.199996948 194.770309448 194.390426636 194.199996948 194.209762573 194.400192261 194.940231323 195.050003052 193.630081177 192.750198364 192.300003052 192.219924927 192.500198364 192.960159302 193.349807739 193.429885864 193.149612427 192.590042114 191.960159302 191.450393677 191.179885864 191.179885864 191.420120239 191.920120239 196.529525757 195.359603882 194.229721069 193.319564819 192.819564819 192.660385132 192.670150757 192.819564819 193.040267944 193.189682007 193.109603882 192.840072632 192.569564819 192.439682007 192.490463257 192.740463257 193.330307007 197.560348511 196.549606323 195.600387573 194.919723511 194.659957886 194.730270386 194.940231323 195.159957886 195.299606323 195.270309448 195.009567261 194.589645386 194.249801636 194.079879761 194.079879761 194.259567261 194.829879761 194.840042114 193.559768677 192.780471802 192.330276489 192.179885864 192.330276489 192.700393677 193.030471802 193.099807739 192.840042114 192.340042114 191.759963989 191.300003052 191.080276489 191.120315552 191.370315552 191.819534302 196.729721069 195.609603882 194.529525757 193.620346069 193.029525757 192.740463257 192.670150757 192.750228882 192.939682007 193.019760132 192.910385132 192.639877319 192.420150757 192.340072632 192.380111694 192.630111694 193.259994507 197.789840698 196.829879761 195.900192261 195.180465698 194.799606323 194.730270386 194.869918823 195.079879761 195.230270386 195.199996948 194.930465698 194.530075073 194.169723511 193.969528198 193.940231323 194.129684448 194.749801636 194.630081177 193.410354614 192.639846802 192.099807739 191.790237427 191.840042114 192.179885864 192.519729614 192.630081177 192.410354614 191.969924927 191.469924927 191.090042114 190.939651489 191.009963989 191.250198364 191.679885864 196.790267944 195.649642944 194.599838257 193.719955444 193.099838257 192.769760132 192.639877319 192.689682007 192.790267944 192.809799194 192.679916382 192.519760132 192.380111694 192.309799194 192.330307007 192.559799194 193.219955444 197.829879761 196.879684448 195.980270386 195.259567261 194.860153198 194.759567261 194.879684448 195.060348511 195.190231323 195.129684448 194.869918823 194.490036011 194.119918823 193.869918823 193.810348511 194.009567261 194.659957886 194.399612427 193.200393677 192.359573364 191.689651489 191.269729614 191.259963989 191.590042114 191.939651489 192.040237427 191.819534302 191.429885864 191.050003052 190.790237427 190.719924927 190.849807739 191.120315552 191.569534302 196.759994507 195.580307007 194.519760132 193.620346069 192.979721069 192.630111694 192.509994507 192.519760132 192.550033569 192.529525757 192.460189819 192.380111694 192.330307007 192.279525757 192.279525757 192.529525757 193.210189819 197.740036011 196.770309448 195.879684448 195.190231323 194.829879761 194.749801636 194.850387573 194.980270386 195.039840698 194.959762573 194.730270386 194.379684448 194.020309448 193.749801636 193.680465698 193.930465698 194.589645386 194.179885864 192.979690552 192.099807739 191.380081177 190.899612427 190.849807739 191.120315552 191.399612427 191.439651489 191.210159302 190.920120239 190.660354614 190.509963989 190.500198364 190.679885864 191.019729614 191.540237427 196.769760132 195.580307007 194.479721069 193.529525757 192.819564819 192.420150757 192.300033569 192.300033569 192.309799194 192.290267944 192.269760132 192.259994507 192.219955444 192.170150757 192.219955444 192.529525757 193.229721069 197.669723511 196.690231323 195.789840698 195.110153198 194.749801636 194.669723511 194.730270386 194.789840698 194.799606323 194.719528198 194.539840698 194.240036011 193.879684448 193.600387573 193.560348511 193.860153198 194.539840698 194.000198364 192.790237427 191.910354614 191.189651489 190.719924927 190.609573364 190.780471802 190.969924927 190.969924927 190.819534302 190.630081177 190.490432739 190.370315552 190.340042114 190.490432739 190.880081177 191.469924927 196.819564819 195.670150757 194.559799194 193.519760132 192.719955444 192.269760132 192.120346069 192.139877319 192.179916382 192.189682007 192.200424194 192.170150757 192.099838257 192.059799194 192.170150757 192.559799194 193.290267944 197.699996948 196.680465698 195.770309448 195.060348511 194.659957886 194.530075073 194.549606323 194.589645386 194.600387573 194.549606323 194.430465698 194.159957886 193.780075073 193.480270386 193.459762573 193.810348511 194.520309448 193.840042114 192.609573364 191.710159302 191.040237427 190.590042114 190.420120239 190.460159302 190.580276489 190.609573364 190.569534302 190.519729614 190.439651489 190.319534302 190.189651489 190.259963989 190.660354614 191.349807739 196.830307007 195.719955444 194.599838257 193.519760132 192.670150757 192.189682007 192.040267944 192.069564819 192.109603882 192.149642944 192.149642944 192.120346069 192.019760132 191.990463257 192.170150757 192.620346069 193.370346069 197.690231323 196.690231323 195.759567261 195.020309448 194.570114136 194.390426636 194.379684448 194.440231323 194.480270386 194.469528198 194.369918823 194.119918823 193.730270386 193.400192261 193.369918823 193.749801636 194.509567261 193.729690552 192.439651489 191.490432739 190.849807739 190.429885864 190.200393677 190.139846802 190.189651489 190.250198364 190.290237427 190.300003052 190.280471802 190.170120239 190.030471802 190.069534302 190.460159302 191.200393677 196.800033569 195.660385132 194.540267944 193.479721069 192.660385132 192.189682007 192.029525757 192.019760132 192.029525757 192.040267944 192.050033569 192.019760132 191.969955444 191.979721069 192.189682007 192.660385132 193.429916382 197.629684448 196.629684448 195.719528198 194.990036011 194.520309448 194.320114136 194.310348511 194.360153198 194.379684448 194.350387573 194.249801636 194.009567261 193.650192261 193.339645386 193.320114136 193.709762573 194.520309448 193.700393677 192.330276489 191.340042114 190.710159302 190.309768677 190.009963989 189.819534302 189.780471802 189.849807739 189.899612427 189.920120239 189.929885864 189.929885864 189.910354614 190.000198364 190.399612427 191.160354614 196.800033569 195.639877319 194.490463257 193.450424194 192.670150757 192.240463257 192.059799194 191.979721069 191.939682007 191.920150757 191.920150757 191.920150757 191.910385132 191.969955444 192.219955444 192.689682007 193.460189819 197.600387573 196.610153198 195.719528198 195.030075073 194.570114136 194.350387573 194.289840698 194.280075073 194.259567261 194.190231323 194.060348511 193.860153198 193.560348511 193.299606323 193.289840698 193.699996948 194.549606323 193.710159302 192.319534302 191.300003052 190.649612427 190.219924927 189.830276489 189.530471802 189.450393677 189.519729614 189.559768677 189.550003052 189.590042114 189.719924927 189.870315552 190.069534302 190.490432739 191.240432739 196.889877319 195.679916382 194.509994507 193.479721069 192.719955444 192.279525757 192.059799194 191.960189819 191.920150757 191.910385132 191.899642944 191.870346069 191.859603882 191.969955444 192.240463257 192.729721069 193.519760132 197.659957886 196.680465698 195.820114136 195.150192261 194.669723511 194.390426636 194.240036011 194.190231323 194.150192261 194.079879761 193.949996948 193.770309448 193.520309448 193.310348511 193.339645386 193.740036011 194.610153198 193.729690552 192.330276489 191.300003052 190.630081177 190.130081177 189.649612427 189.269729614 189.179885864 189.290237427 189.380081177 189.359573364 189.380081177 189.590042114 189.880081177 190.189651489 190.630081177 191.359573364 197.000228882 195.790267944 194.590072632 193.519760132 192.729721069 192.259994507 192.019760132 191.939682007 191.950424194 191.979721069 191.960189819 191.889877319 191.859603882 191.990463257 192.300033569 192.809799194 193.630111694 197.789840698 196.810348511 195.949996948 195.259567261 194.749801636 194.369918823 194.140426636 194.060348511 194.060348511 194.049606323 193.949996948 193.759567261 193.520309448 193.339645386 193.390426636 193.829879761 194.699996948 193.729690552 192.330276489 191.280471802 190.580276489 190.030471802 189.479690552 189.069534302 188.979690552 189.130081177 189.250198364 189.229690552 189.250198364 189.490432739 189.849807739 190.250198364 190.729690552 191.429885864 197.099838257 195.880111694 194.630111694 193.529525757 192.710189819 192.210189819 191.969955444 191.899642944 191.929916382 191.979721069 191.950424194 191.870346069 191.849838257 192.009994507 192.380111694 192.939682007 193.809799194 197.940231323 196.940231323 196.039840698 195.320114136 194.759567261 194.320114136 194.030075073 193.909957886 193.940231323 193.990036011 193.940231323 193.740036011 193.499801636 193.360153198 193.459762573 193.930465698 194.810348511 193.780471802 192.389846802 191.309768677 190.559768677 189.979690552 189.429885864 189.000198364 188.880081177 188.990432739 189.109573364 189.099807739 189.149612427 189.399612427 189.809768677 190.280471802 190.809768677 191.519729614 197.279525757 195.990463257 194.700424194 193.569564819 192.729721069 192.229721069 191.960189819 191.859603882 191.840072632 191.859603882 191.840072632 191.809799194 191.849838257 192.069564819 192.500228882 193.099838257 194.000228882 198.110153198 197.079879761 196.150192261 195.390426636 194.799606323 194.329879761 193.990036011 193.810348511 193.799606323 193.860153198 193.839645386 193.669723511 193.469528198 193.390426636 193.570114136 194.060348511 194.930465698 193.939651489 192.559768677 191.460159302 190.660354614 190.030471802 189.490432739 189.050003052 188.859573364 188.889846802 188.979690552 189.030471802 189.130081177 189.399612427 189.819534302 190.330276489 190.899612427 191.639846802 197.580307007 196.219955444 194.859603882 193.679916382 192.830307007 192.309799194 192.040267944 191.880111694 191.800033569 191.759994507 191.769760132 191.800033569 191.929916382 192.200424194 192.639877319 193.269760132 194.200424194 198.350387573 197.310348511 196.339645386 195.520309448 194.879684448 194.390426636 194.009567261 193.780075073 193.719528198 193.749801636 193.749801636 193.650192261 193.530075073 193.539840698 193.759567261 194.259567261 195.100387573 194.219924927 192.889846802 191.769729614 190.880081177 190.170120239 189.569534302 189.090042114 188.840042114 188.819534302 188.929885864 189.069534302 189.229690552 189.479690552 189.859573364 190.359573364 190.979690552 191.769729614 197.979721069 196.529525757 195.109603882 193.859603882 192.950424194 192.389877319 192.099838257 191.939682007 191.830307007 191.779525757 191.809799194 191.889877319 192.059799194 192.349838257 192.819564819 193.479721069 194.450424194 198.650192261 197.600387573 196.600387573 195.709762573 194.990036011 194.430465698 194.020309448 193.780075073 193.699996948 193.730270386 193.749801636 193.730270386 193.690231323 193.759567261 194.020309448 194.499801636 195.310348511 194.620315552 193.309768677 192.179885864 191.200393677 190.359573364 189.639846802 189.099807739 188.809768677 188.800003052 188.960159302 189.170120239 189.359573364 189.559768677 189.859573364 190.330276489 191.000198364 191.870315552 198.410385132 196.889877319 195.399642944 194.069564819 193.059799194 192.420150757 192.109603882 191.960189819 191.870346069 191.830307007 191.889877319 192.000228882 192.170150757 192.490463257 193.000228882 193.729721069 194.729721069 198.959762573 197.900192261 196.869918823 195.909957886 195.079879761 194.430465698 193.990036011 193.749801636 193.690231323 193.740036011 193.799606323 193.820114136 193.829879761 193.949996948 194.249801636 194.749801636 195.549606323 195.109573364 193.790237427 192.609573364 191.540237427 190.599807739 189.759963989 189.139846802 188.830276489 188.819534302 189.009963989 189.269729614 189.460159302 189.599807739 189.840042114 190.319534302 191.040237427 191.969924927 198.859603882 197.250228882 195.689682007 194.300033569 193.200424194 192.500228882 192.130111694 191.950424194 191.859603882 191.840072632 191.920150757 192.059799194 192.279525757 192.630111694 193.200424194 194.009994507 195.059799194 199.240036011 198.150192261 197.110153198 196.110153198 195.190231323 194.469528198 193.980270386 193.730270386 193.680465698 193.749801636 193.829879761 193.860153198 193.919723511 194.100387573 194.459762573 195.009567261 195.839645386 195.679885864 194.290237427 193.030471802 191.910354614 190.899612427 190.000198364 189.319534302 188.979690552 188.960159302 189.139846802 189.370315552 189.550003052 189.689651489 189.939651489 190.420120239 191.170120239 192.139846802 199.359603882 197.630111694 195.979721069 194.540267944 193.410385132 192.670150757 192.240463257 192.009994507 191.870346069 191.840072632 191.950424194 192.149642944 192.420150757 192.819564819 193.429916382 194.290267944 195.380111694 199.490036011 198.369918823 197.310348511 196.320114136 195.379684448 194.619918823 194.089645386 193.789840698 193.719528198 193.780075073 193.879684448 193.959762573 194.049606323 194.280075073 194.699996948 195.329879761 196.209762573 196.269729614 194.780471802 193.429885864 192.259963989 191.219924927 190.290237427 189.590042114 189.229690552 189.189651489 189.340042114 189.540237427 189.719924927 189.889846802 190.149612427 190.649612427 191.399612427 192.349807739 199.880111694 198.040267944 196.279525757 194.779525757 193.639877319 192.870346069 192.399642944 192.090072632 191.929916382 191.889877319 192.019760132 192.279525757 192.609603882 193.029525757 193.649642944 194.529525757 195.679916382 199.719528198 198.549606323 197.499801636 196.520309448 195.600387573 194.839645386 194.270309448 193.919723511 193.799606323 193.860153198 194.009567261 194.129684448 194.270309448 194.530075073 194.990036011 195.699996948 196.629684448 196.849807739 195.269729614 193.830276489 192.609573364 191.519729614 190.550003052 189.809768677 189.469924927 189.450393677 189.580276489 189.750198364 189.929885864 190.130081177 190.389846802 190.880081177 191.609573364 192.559768677 200.370346069 198.439682007 196.590072632 195.019760132 193.840072632 193.019760132 192.479721069 192.160385132 191.990463257 191.960189819 192.090072632 192.370346069 192.740463257 193.189682007 193.809799194 194.729721069 195.960189819 199.900192261 198.719528198 197.650192261 196.659957886 195.780075073 195.030075073 194.440231323 194.039840698 193.879684448 193.949996948 194.140426636 194.329879761 194.520309448 194.810348511 195.289840698 196.039840698 197.049606323 197.410354614 195.800003052 194.290237427 192.990432739 191.809768677 190.759963989 190.000198364 189.670120239 189.689651489 189.819534302 189.979690552 190.149612427 190.349807739 190.620315552 191.080276489 191.800003052 192.750198364 200.800033569 198.830307007 196.950424194 195.330307007 194.050033569 193.120346069 192.509994507 192.189682007 192.059799194 192.040267944 192.130111694 192.389877319 192.779525757 193.290267944 193.960189819 194.939682007 196.250228882 200.039840698 198.860153198 197.799606323 196.820114136 195.949996948 195.199996948 194.579879761 194.140426636 193.959762573 194.020309448 194.249801636 194.480270386 194.719528198 195.049606323 195.570114136 196.360153198 197.430465698 197.950393677 196.330276489 194.759963989 193.389846802 192.120315552 191.000198364 190.210159302 189.899612427 189.929885864 190.059768677 190.200393677 190.380081177 190.599807739 190.880081177 191.319534302 192.009963989 192.969924927 201.219955444 199.259994507 197.370346069 195.700424194 194.330307007 193.269760132 192.590072632 192.259994507 192.170150757 192.160385132 192.210189819 192.420150757 192.859603882 193.439682007 194.200424194 195.219955444 196.569564819 200.159957886 199.020309448 197.980270386 197.020309448 196.169723511 195.419723511 194.759567261 194.280075073 194.079879761 194.140426636 194.360153198 194.619918823 194.909957886 195.299606323 195.869918823 196.690231323 197.829879761 198.429885864 196.790237427 195.200393677 193.759963989 192.439651489 191.269729614 190.469924927 190.149612427 190.179885864 190.290237427 190.429885864 190.630081177 190.910354614 191.210159302 191.639846802 192.290237427 193.219924927 201.639877319 199.689682007 197.790267944 196.090072632 194.639877319 193.490463257 192.729721069 192.389877319 192.309799194 192.309799194 192.349838257 192.559799194 193.040267944 193.710189819 194.529525757 195.569564819 196.910385132 200.289840698 199.190231323 198.180465698 197.249801636 196.430465698 195.669723511 194.969528198 194.449996948 194.240036011 194.320114136 194.539840698 194.810348511 195.150192261 195.610153198 196.230270386 197.079879761 198.259567261 198.809768677 197.179885864 195.569534302 194.090042114 192.710159302 191.509963989 190.700393677 190.380081177 190.380081177 190.490432739 190.649612427 190.899612427 191.219924927 191.550003052 191.969924927 192.580276489 193.469924927 202.029525757 200.080307007 198.160385132 196.399642944 194.899642944 193.700424194 192.880111694 192.479721069 192.399642944 192.429916382 192.519760132 192.779525757 193.279525757 193.990463257 194.849838257 195.910385132 197.229721069 200.430465698 199.360153198 198.360153198 197.459762573 196.650192261 195.869918823 195.140426636 194.579879761 194.379684448 194.490036011 194.740036011 195.030075073 195.400192261 195.909957886 196.589645386 197.469528198 198.680465698 199.090042114 197.500198364 195.920120239 194.399612427 192.960159302 191.729690552 190.920120239 190.580276489 190.559768677 190.660354614 190.849807739 191.130081177 191.479690552 191.849807739 192.269729614 192.899612427 193.750198364 202.340072632 200.399642944 198.460189819 196.649642944 195.099838257 193.870346069 193.009994507 192.559799194 192.450424194 192.519760132 192.679916382 192.979721069 193.479721069 194.200424194 195.109603882 196.229721069 197.580307007 200.579879761 199.539840698 198.539840698 197.640426636 196.810348511 196.020309448 195.249801636 194.669723511 194.469528198 194.610153198 194.900192261 195.209762573 195.589645386 196.140426636 196.860153198 197.799606323 199.070114136 199.280471802 197.800003052 196.259963989 194.700393677 193.210159302 191.979690552 191.170120239 190.809768677 190.769729614 190.870315552 191.069534302 191.370315552 191.729690552 192.120315552 192.599807739 193.259963989 194.120315552 202.569564819 200.660385132 198.700424194 196.859603882 195.279525757 194.040267944 193.160385132 192.679916382 192.550033569 192.660385132 192.899642944 193.219955444 193.700424194 194.410385132 195.370346069 196.569564819 197.960189819 200.719528198 199.709762573 198.719528198 197.789840698 196.949996948 196.150192261 195.350387573 194.759567261 194.549606323 194.719528198 195.039840698 195.369918823 195.770309448 196.320114136 197.079879761 198.060348511 199.400192261 199.460159302 198.050003052 196.550003052 194.960159302 193.450393677 192.240432739 191.469924927 191.099807739 191.019729614 191.120315552 191.340042114 191.649612427 192.030471802 192.450393677 193.000198364 193.700393677 194.580276489 202.740463257 200.840072632 198.899642944 197.050033569 195.429916382 194.170150757 193.300033569 192.819564819 192.719955444 192.870346069 193.170150757 193.509994507 193.990463257 194.700424194 195.710189819 196.960189819 198.370346069 200.850387573 199.860153198 198.860153198 197.900192261 197.049606323 196.240036011 195.449996948 194.850387573 194.650192261 194.829879761 195.169723511 195.530075073 195.949996948 196.530075073 197.299606323 198.310348511 199.680465698 199.639846802 198.259963989 196.759963989 195.149612427 193.660354614 192.500198364 191.769729614 191.389846802 191.269729614 191.349807739 191.620315552 191.969924927 192.370315552 192.840042114 193.420120239 194.160354614 195.059768677 202.849838257 200.960189819 199.019760132 197.149642944 195.519760132 194.240463257 193.380111694 192.920150757 192.840072632 193.040267944 193.380111694 193.779525757 194.290267944 195.040267944 196.090072632 197.349838257 198.750228882 200.959762573 199.949996948 198.900192261 197.930465698 197.070114136 196.240036011 195.449996948 194.869918823 194.690231323 194.890426636 195.249801636 195.640426636 196.100387573 196.719528198 197.509567261 198.539840698 199.930465698 199.849807739 198.479690552 196.960159302 195.349807739 193.889846802 192.790237427 192.080276489 191.649612427 191.490432739 191.590042114 191.899612427 192.300003052 192.729690552 193.210159302 193.819534302 194.590042114 195.500198364 202.899642944 200.990463257 199.090072632 197.229721069 195.590072632 194.290267944 193.410385132 192.960189819 192.880111694 193.090072632 193.469955444 193.939682007 194.540267944 195.349838257 196.429916382 197.689682007 199.080307007 201.079879761 200.009567261 198.919723511 197.909957886 197.020309448 196.169723511 195.369918823 194.810348511 194.659957886 194.850387573 195.209762573 195.619918823 196.140426636 196.820114136 197.650192261 198.690231323 200.079879761 200.099807739 198.740432739 197.219924927 195.630081177 194.219924927 193.160354614 192.420120239 191.960159302 191.750198364 191.849807739 192.200393677 192.639846802 193.099807739 193.599807739 194.219924927 195.009963989 195.960159302 202.939682007 201.050033569 199.170150757 197.340072632 195.700424194 194.399642944 193.519760132 193.059799194 192.929916382 193.109603882 193.490463257 194.029525757 194.719955444 195.620346069 196.719955444 197.990463257 199.410385132 201.219528198 200.100387573 198.959762573 197.909957886 196.969528198 196.079879761 195.289840698 194.770309448 194.640426636 194.799606323 195.110153198 195.520309448 196.089645386 196.820114136 197.699996948 198.770309448 200.169723511 200.370315552 199.030471802 197.530471802 195.979690552 194.599807739 193.550003052 192.800003052 192.300003052 192.080276489 192.179885864 192.530471802 192.979690552 193.450393677 193.979690552 194.639846802 195.469924927 196.490432739 203.000228882 201.160385132 199.309799194 197.500228882 195.870346069 194.569564819 193.700424194 193.219955444 193.050033569 193.170150757 193.550033569 194.139877319 194.899642944 195.859603882 197.000228882 198.319564819 199.759994507 201.379684448 200.249801636 199.070114136 197.949996948 196.940231323 196.020309448 195.249801636 194.789840698 194.669723511 194.799606323 195.039840698 195.430465698 196.030075073 196.780075073 197.690231323 198.799606323 200.249801636 200.649612427 199.330276489 197.840042114 196.290237427 194.920120239 193.859573364 193.090042114 192.559768677 192.340042114 192.450393677 192.809768677 193.259963989 193.769729614 194.340042114 195.050003052 195.950393677 197.050003052 203.120346069 201.330307007 199.490463257 197.660385132 196.009994507 194.719955444 193.840072632 193.330307007 193.130111694 193.219955444 193.599838257 194.229721069 195.050033569 196.040267944 197.250228882 198.639877319 200.120346069 201.539840698 200.400192261 199.180465698 197.980270386 196.879684448 195.919723511 195.190231323 194.780075073 194.680465698 194.770309448 194.969528198 195.350387573 195.949996948 196.719528198 197.629684448 198.770309448 200.270309448 200.969924927 199.649612427 198.149612427 196.590042114 195.179885864 194.069534302 193.259963989 192.729690552 192.509963989 192.620315552 192.990432739 193.490432739 194.040237427 194.660354614 195.420120239 196.399612427 197.590042114 203.250228882 201.509994507 199.670150757 197.819564819 196.130111694 194.800033569 193.889877319 193.349838257 193.120346069 193.219955444 193.620346069 194.269760132 195.109603882 196.139877319 197.410385132 198.870346069 200.429916382 201.690231323 200.539840698 199.259567261 197.990036011 196.799606323 195.789840698 195.070114136 194.699996948 194.600387573 194.669723511 194.860153198 195.240036011 195.820114136 196.560348511 197.469528198 198.669723511 200.230270386 201.309768677 199.979690552 198.479690552 196.899612427 195.460159302 194.280471802 193.420120239 192.859573364 192.649612427 192.769729614 193.160354614 193.710159302 194.319534302 194.969924927 195.769729614 196.809768677 198.090042114 203.340072632 201.630111694 199.819564819 197.990463257 196.290267944 194.920150757 193.950424194 193.359603882 193.109603882 193.219955444 193.649642944 194.319564819 195.160385132 196.200424194 197.490463257 199.029525757 200.649642944 201.869918823 200.650192261 199.329879761 197.999801636 196.770309448 195.709762573 194.980270386 194.600387573 194.509567261 194.579879761 194.759567261 195.119918823 195.659957886 196.360153198 197.270309448 198.499801636 200.089645386 201.630081177 200.300003052 198.800003052 197.229690552 195.759963989 194.530471802 193.599807739 193.019729614 192.800003052 192.910354614 193.319534302 193.920120239 194.609573364 195.319534302 196.149612427 197.229690552 198.580276489 203.359603882 201.700424194 199.939682007 198.149642944 196.469955444 195.080307007 194.080307007 193.450424194 193.189682007 193.290267944 193.719955444 194.399642944 195.250228882 196.290267944 197.590072632 199.139877319 200.809799194 202.100387573 200.799606323 199.409957886 198.060348511 196.799606323 195.719528198 194.949996948 194.549606323 194.459762573 194.549606323 194.730270386 195.060348511 195.530075073 196.190231323 197.089645386 198.320114136 199.879684448 201.939651489 200.569534302 199.050003052 197.500198364 196.009963989 194.729690552 193.750198364 193.160354614 192.920120239 193.000198364 193.410354614 194.059768677 194.809768677 195.599807739 196.490432739 197.620315552 199.009963989 203.340072632 201.729721069 200.009994507 198.250228882 196.590072632 195.179916382 194.149642944 193.519760132 193.269760132 193.359603882 193.759994507 194.429916382 195.290267944 196.359603882 197.660385132 199.189682007 200.870346069 202.339645386 200.940231323 199.490036011 198.119918823 196.839645386 195.719528198 194.919723511 194.520309448 194.430465698 194.530075073 194.719528198 195.009567261 195.449996948 196.079879761 196.980270386 198.150192261 199.610153198 202.210159302 200.790237427 199.240432739 197.670120239 196.160354614 194.830276489 193.809768677 193.189651489 192.929885864 193.000198364 193.389846802 194.050003052 194.880081177 195.759963989 196.719924927 197.880081177 199.280471802 203.349838257 201.779525757 200.069564819 198.300033569 196.599838257 195.170150757 194.130111694 193.519760132 193.269760132 193.340072632 193.710189819 194.340072632 195.219955444 196.319564819 197.630111694 199.139877319 200.809799194 202.539840698 201.060348511 199.570114136 198.150192261 196.820114136 195.680465698 194.890426636 194.490036011 194.409957886 194.490036011 194.659957886 194.919723511 195.339645386 195.969528198 196.850387573 197.949996948 199.299606323 202.450393677 200.979690552 199.380081177 197.769729614 196.219924927 194.849807739 193.790237427 193.149612427 192.880081177 192.950393677 193.330276489 194.000198364 194.849807739 195.780471802 196.800003052 197.979690552 199.380081177 203.399642944 201.859603882 200.149642944 198.330307007 196.590072632 195.120346069 194.099838257 193.519760132 193.290267944 193.330307007 193.649642944 194.250228882 195.090072632 196.170150757 197.460189819 198.969955444 200.649642944 202.690231323 201.190231323 199.659957886 198.180465698 196.789840698 195.659957886 194.900192261 194.520309448 194.419723511 194.459762573 194.589645386 194.820114136 195.199996948 195.810348511 196.650192261 197.690231323 198.969528198 202.590042114 201.099807739 199.469924927 197.800003052 196.219924927 194.809768677 193.729690552 193.059768677 192.780471802 192.889846802 193.290237427 193.950393677 194.790237427 195.740432739 196.800003052 197.979690552 199.340042114 203.509994507 201.969955444 200.229721069 198.380111694 196.590072632 195.109603882 194.120346069 193.580307007 193.359603882 193.420150757 193.719955444 194.259994507 195.019760132 196.000228882 197.219955444 198.719955444 200.410385132 202.810348511 201.329879761 199.780075073 198.209762573 196.780075073 195.659957886 194.969528198 194.619918823 194.499801636 194.499801636 194.600387573 194.789840698 195.110153198 195.650192261 196.409957886 197.409957886 198.640426636 202.569534302 201.090042114 199.420120239 197.719924927 196.090042114 194.670120239 193.580276489 192.910354614 192.660354614 192.790237427 193.210159302 193.849807739 194.670120239 195.630081177 196.710159302 197.889846802 199.189651489 203.620346069 202.069564819 200.290267944 198.370346069 196.540267944 195.069564819 194.099838257 193.580307007 193.410385132 193.479721069 193.790267944 194.290267944 194.960189819 195.830307007 196.979721069 198.429916382 200.109603882 202.940231323 201.480270386 199.890426636 198.240036011 196.749801636 195.629684448 194.980270386 194.680465698 194.549606323 194.539840698 194.619918823 194.789840698 195.060348511 195.509567261 196.209762573 197.140426636 198.299606323 202.429885864 200.920120239 199.229690552 197.500198364 195.849807739 194.420120239 193.340042114 192.689651489 192.479690552 192.620315552 193.019729614 193.630081177 194.429885864 195.410354614 196.500198364 197.630081177 198.840042114 203.719955444 202.130111694 200.300033569 198.340072632 196.469955444 194.969955444 193.990463257 193.500228882 193.340072632 193.399642944 193.700424194 194.179916382 194.809799194 195.630111694 196.729721069 198.120346069 199.710189819 203.039840698 201.589645386 199.959762573 198.219528198 196.669723511 195.539840698 194.909957886 194.619918823 194.509567261 194.480270386 194.560348511 194.709762573 194.959762573 195.379684448 196.030075073 196.860153198 197.890426636 202.250198364 200.700393677 198.979690552 197.219924927 195.569534302 194.139846802 193.090042114 192.500198364 192.319534302 192.460159302 192.800003052 193.359573364 194.139846802 195.120315552 196.160354614 197.179885864 198.229690552 203.769760132 202.149642944 200.300033569 198.349838257 196.460189819 194.920150757 193.929916382 193.439682007 193.269760132 193.300033569 193.509994507 193.939682007 194.569564819 195.399642944 196.460189819 197.729721069 199.149642944 203.049606323 201.600387573 199.930465698 198.159957886 196.570114136 195.449996948 194.820114136 194.549606323 194.430465698 194.409957886 194.449996948 194.560348511 194.789840698 195.219528198 195.829879761 196.560348511 197.440231323 202.069534302 200.469924927 198.740432739 196.990432739 195.340042114 193.920120239 192.910354614 192.370315552 192.229690552 192.330276489 192.630081177 193.149612427 193.910354614 194.819534302 195.740432739 196.559768677 197.450393677 203.759994507 202.109603882 200.279525757 198.359603882 196.490463257 194.939682007 193.950424194 193.490463257 193.330307007 193.300033569 193.420150757 193.779525757 194.389877319 195.189682007 196.160385132 197.259994507 198.490463257 202.949996948 201.499801636 199.799606323 198.009567261 196.440231323 195.339645386 194.749801636 194.509567261 194.430465698 194.409957886 194.400192261 194.449996948 194.659957886 195.070114136 195.629684448 196.249801636 197.030075073 201.889846802 200.250198364 198.519729614 196.790237427 195.149612427 193.759963989 192.780471802 192.259963989 192.120315552 192.189651489 192.469924927 192.969924927 193.700393677 194.509963989 195.240432739 195.889846802 196.670120239 203.700424194 202.019760132 200.160385132 198.259994507 196.429916382 194.910385132 193.929916382 193.490463257 193.349838257 193.319564819 193.410385132 193.759994507 194.330307007 195.029525757 195.809799194 196.700424194 197.790267944 202.759567261 201.280075073 199.539840698 197.740036011 196.199996948 195.150192261 194.589645386 194.400192261 194.369918823 194.379684448 194.379684448 194.430465698 194.619918823 194.980270386 195.459762573 196.009567261 196.780075073 201.719924927 200.059768677 198.319534302 196.590042114 194.969924927 193.620315552 192.670120239 192.149612427 191.939651489 191.960159302 192.219924927 192.750198364 193.429885864 194.099807739 194.679885864 195.280471802 196.080276489 203.649642944 201.880111694 199.929916382 198.019760132 196.250228882 194.769760132 193.790267944 193.330307007 193.170150757 193.149642944 193.319564819 193.729721069 194.300033569 194.849838257 195.410385132 196.139877319 197.179916382 202.490036011 200.959762573 199.169723511 197.360153198 195.869918823 194.869918823 194.339645386 194.140426636 194.150192261 194.219528198 194.289840698 194.409957886 194.600387573 194.930465698 195.339645386 195.900192261 196.759567261 201.599807739 199.950393677 198.189651489 196.429885864 194.830276489 193.530471802 192.620315552 192.050003052 191.750198364 191.700393677 191.960159302 192.500198364 193.109573364 193.639846802 194.120315552 194.780471802 195.710159302 203.559799194 201.710189819 199.689682007 197.790267944 196.109603882 194.689682007 193.700424194 193.160385132 192.929916382 192.920150757 193.170150757 193.670150757 194.219955444 194.620346069 195.019760132 195.679916382 196.790267944 202.150192261 200.570114136 198.770309448 197.030075073 195.659957886 194.749801636 194.240036011 194.009567261 193.959762573 194.020309448 194.150192261 194.329879761 194.560348511 194.850387573 195.270309448 195.900192261 196.909957886 201.540237427 199.920120239 198.120315552 196.330276489 194.740432739 193.479690552 192.609573364 192.019729614 191.649612427 191.550003052 191.800003052 192.319534302 192.830276489 193.219924927 193.670120239 194.439651489 195.519729614 203.330307007 201.500228882 199.500228882 197.670150757 196.080307007 194.740463257 193.750228882 193.170150757 192.880111694 192.840072632 193.109603882 193.630111694 194.109603882 194.389877319 194.710189819 195.420150757 196.630111694 201.770309448 200.150192261 198.419723511 196.839645386 195.650192261 194.890426636 194.440231323 194.169723511 194.030075073 194.030075073 194.119918823 194.289840698 194.490036011 194.759567261 195.219528198 195.980270386 197.119918823 201.530471802 199.889846802 198.040237427 196.210159302 194.620315552 193.389846802 192.530471802 191.939651489 191.559768677 191.469924927 191.740432739 192.200393677 192.609573364 192.910354614 193.359573364 194.219924927 195.389846802 202.899642944 201.170150757 199.279525757 197.519760132 195.969955444 194.649642944 193.700424194 193.139877319 192.889877319 192.880111694 193.139877319 193.590072632 193.969955444 194.160385132 194.479721069 195.290267944 196.580307007 201.360153198 199.759567261 198.129684448 196.719528198 195.680465698 195.009567261 194.619918823 194.390426636 194.240036011 194.180465698 194.219528198 194.310348511 194.430465698 194.650192261 195.159957886 196.060348511 197.280075073 201.479690552 199.800003052 197.899612427 196.040237427 194.439651489 193.210159302 192.330276489 191.729690552 191.399612427 191.380081177 191.679885864 192.080276489 192.399612427 192.670120239 193.170120239 194.069534302 195.229690552 202.359603882 200.759994507 198.960189819 197.189682007 195.550033569 194.179916382 193.250228882 192.790267944 192.670150757 192.750228882 193.050033569 193.460189819 193.750228882 193.899642944 194.269760132 195.170150757 196.490463257 200.969528198 199.419723511 197.909957886 196.549606323 195.480270386 194.770309448 194.400192261 194.240036011 194.159957886 194.150192261 194.209762573 194.289840698 194.360153198 194.549606323 195.110153198 196.079879761 197.339645386 201.370315552 199.639846802 197.759963989 195.920120239 194.330276489 193.069534302 192.149612427 191.540237427 191.259963989 191.330276489 191.649612427 192.000198364 192.259963989 192.559768677 193.109573364 193.990432739 195.059768677 201.819564819 200.330307007 198.590072632 196.750228882 195.019760132 193.599838257 192.710189819 192.330307007 192.279525757 192.450424194 192.800033569 193.229721069 193.529525757 193.719955444 194.149642944 195.069564819 196.319564819 200.610153198 199.169723511 197.730270386 196.339645386 195.140426636 194.320114136 193.940231323 193.820114136 193.810348511 193.879684448 194.020309448 194.169723511 194.270309448 194.480270386 195.070114136 196.089645386 197.339645386 201.179885864 199.490432739 197.700393677 195.960159302 194.410354614 193.149612427 192.189651489 191.559768677 191.319534302 191.450393677 191.780471802 192.090042114 192.349807739 192.689651489 193.250198364 194.030471802 194.920120239 201.359603882 199.950424194 198.240463257 196.420150757 194.740463257 193.469955444 192.710189819 192.349838257 192.250228882 192.349838257 192.670150757 193.120346069 193.490463257 193.779525757 194.240463257 195.069564819 196.149642944 200.180465698 198.900192261 197.579879761 196.209762573 194.980270386 194.169723511 193.820114136 193.719528198 193.690231323 193.730270386 193.879684448 194.070114136 194.230270386 194.490036011 195.110153198 196.110153198 197.320114136 200.889846802 199.300003052 197.660354614 196.040237427 194.559768677 193.340042114 192.389846802 191.759963989 191.550003052 191.689651489 192.000198364 192.319534302 192.609573364 193.000198364 193.530471802 194.139846802 194.819534302 200.910385132 199.519760132 197.870346069 196.179916382 194.790267944 193.870346069 193.330307007 192.990463257 192.750228882 192.689682007 192.880111694 193.229721069 193.609603882 193.990463257 194.469955444 195.170150757 196.059799194 199.669723511 198.530075073 197.360153198 196.150192261 195.110153198 194.520309448 194.310348511 194.219528198 194.089645386 193.999801636 194.049606323 194.159957886 194.289840698 194.570114136 195.199996948 196.159957886 197.299606323 200.500198364 198.969924927 197.429885864 195.889846802 194.490432739 193.349807739 192.490432739 191.929885864 191.689651489 191.790237427 192.059768677 192.380081177 192.759963989 193.229690552 193.740432739 194.189651489 194.710159302 200.399642944 198.969955444 197.359603882 195.859603882 194.819564819 194.240463257 193.910385132 193.590072632 193.300033569 193.130111694 193.160385132 193.370346069 193.679916382 194.069564819 194.580307007 195.179916382 195.939682007 199.219528198 198.089645386 196.999801636 195.999801636 195.280075073 194.959762573 194.900192261 194.820114136 194.629684448 194.459762573 194.400192261 194.369918823 194.379684448 194.610153198 195.230270386 196.180465698 197.310348511 200.069534302 198.479690552 196.910354614 195.410354614 194.109573364 193.120315552 192.389846802 191.889846802 191.649612427 191.670120239 191.870315552 192.170120239 192.620315552 193.189651489 193.719924927 194.120315552 194.599807739 199.910385132 198.359603882 196.729721069 195.370346069 194.529525757 194.099838257 193.809799194 193.519760132 193.300033569 193.210189819 193.200424194 193.269760132 193.469955444 193.880111694 194.420150757 195.029525757 195.750228882 198.930465698 197.659957886 196.560348511 195.709762573 195.199996948 195.030075073 194.980270386 194.879684448 194.719528198 194.640426636 194.610153198 194.509567261 194.390426636 194.539840698 195.169723511 196.159957886 197.339645386 199.670120239 197.910354614 196.280471802 194.830276489 193.660354614 192.819534302 192.219924927 191.790237427 191.540237427 191.500198364 191.620315552 191.899612427 192.380081177 193.000198364 193.590042114 194.050003052 194.569534302 199.450424194 197.769760132 196.149642944 194.899642944 194.099838257 193.620346069 193.219955444 192.929916382 192.840072632 192.899642944 192.960189819 192.979721069 193.149642944 193.580307007 194.179916382 194.830307007 195.599838257 198.719528198 197.299606323 196.150192261 195.390426636 194.969528198 194.770309448 194.629684448 194.449996948 194.369918823 194.440231323 194.539840698 194.480270386 194.320114136 194.440231323 195.089645386 196.159957886 197.419723511 199.300003052 197.439651489 195.830276489 194.500198364 193.460159302 192.710159302 192.170120239 191.769729614 191.540237427 191.490432739 191.599807739 191.849807739 192.309768677 192.950393677 193.590042114 194.139846802 194.769729614 198.969955444 197.250228882 195.740463257 194.609603882 193.859603882 193.279525757 192.779525757 192.490463257 192.490463257 192.620346069 192.710189819 192.759994507 192.969955444 193.469955444 194.109603882 194.779525757 195.580307007 198.440231323 196.959762573 195.860153198 195.180465698 194.820114136 194.579879761 194.339645386 194.119918823 194.060348511 194.190231323 194.350387573 194.339645386 194.240036011 194.419723511 195.110153198 196.230270386 197.560348511 199.000198364 197.210159302 195.729690552 194.519729614 193.540237427 192.769729614 192.200393677 191.800003052 191.609573364 191.609573364 191.740432739 192.000198364 192.460159302 193.099807739 193.769729614 194.410354614 195.149612427 198.450424194 196.819564819 195.500228882 194.529525757 193.840072632 193.259994507 192.790267944 192.559799194 192.559799194 192.630111694 192.630111694 192.700424194 193.019760132 193.599838257 194.250228882 194.899642944 195.710189819 198.049606323 196.659957886 195.680465698 195.110153198 194.780075073 194.549606323 194.369918823 194.199996948 194.110153198 194.140426636 194.209762573 194.209762573 194.230270386 194.520309448 195.249801636 196.350387573 197.699996948 198.819534302 197.210159302 195.870315552 194.689651489 193.670120239 192.819534302 192.210159302 191.819534302 191.649612427 191.670120239 191.840042114 192.160354614 192.660354614 193.319534302 194.019729614 194.740432739 195.590042114 198.019760132 196.559799194 195.410385132 194.540267944 193.870346069 193.340072632 192.990463257 192.849838257 192.830307007 192.759994507 192.649642944 192.729721069 193.149642944 193.779525757 194.420150757 195.059799194 195.910385132 197.770309448 196.520309448 195.659957886 195.100387573 194.740036011 194.549606323 194.480270386 194.430465698 194.339645386 194.219528198 194.159957886 194.150192261 194.280075073 194.680465698 195.409957886 196.459762573 197.780075073 198.780471802 197.280471802 195.960159302 194.729690552 193.620315552 192.750198364 192.170120239 191.830276489 191.649612427 191.649612427 191.830276489 192.219924927 192.790237427 193.500198364 194.250198364 195.069534302 196.030471802 197.830307007 196.519760132 195.469955444 194.609603882 193.889877319 193.389877319 193.120346069 193.029525757 192.960189819 192.800033569 192.679916382 192.809799194 193.279525757 193.929916382 194.550033569 195.219955444 196.139877319 197.780075073 196.640426636 195.789840698 195.159957886 194.709762573 194.469528198 194.449996948 194.469528198 194.400192261 194.240036011 194.119918823 194.169723511 194.400192261 194.850387573 195.549606323 196.530075073 197.810348511 198.700393677 197.189651489 195.800003052 194.500198364 193.399612427 192.639846802 192.200393677 191.920120239 191.710159302 191.639846802 191.840042114 192.300003052 192.950393677 193.700393677 194.530471802 195.450393677 196.509963989 197.870346069 196.630111694 195.590072632 194.710189819 194.000228882 193.500228882 193.240463257 193.090072632 192.920150757 192.759994507 192.740463257 192.990463257 193.509994507 194.120346069 194.729721069 195.460189819 196.460189819 197.969528198 196.839645386 195.969528198 195.289840698 194.789840698 194.509567261 194.400192261 194.350387573 194.270309448 194.150192261 194.129684448 194.259567261 194.560348511 195.030075073 195.690231323 196.619918823 197.869918823 198.420120239 196.880081177 195.460159302 194.179885864 193.210159302 192.630081177 192.319534302 192.090042114 191.849807739 191.750198364 191.969924927 192.490432739 193.170120239 193.960159302 194.870315552 195.910354614 197.059768677 197.929916382 196.689682007 195.649642944 194.819564819 194.200424194 193.769760132 193.460189819 193.179916382 192.910385132 192.769760132 192.889877319 193.279525757 193.819564819 194.389877319 195.019760132 195.819564819 196.880111694 198.110153198 196.949996948 196.060348511 195.419723511 194.999801636 194.740036011 194.520309448 194.320114136 194.159957886 194.089645386 194.180465698 194.400192261 194.740036011 195.209762573 195.869918823 196.789840698 198.020309448 198.000198364 196.540237427 195.210159302 194.069534302 193.219924927 192.710159302 192.460159302 192.229690552 192.000198364 191.939651489 192.210159302 192.729690552 193.410354614 194.200393677 195.189651489 196.359573364 197.599807739 197.960189819 196.719955444 195.679916382 194.889877319 194.349838257 193.979721069 193.649642944 193.290267944 192.979721069 192.889877319 193.120346069 193.580307007 194.120346069 194.679916382 195.340072632 196.210189819 197.309799194 198.129684448 196.980270386 196.089645386 195.509567261 195.190231323 194.980270386 194.709762573 194.400192261 194.180465698 194.140426636 194.280075073 194.530075073 194.879684448 195.379684448 196.060348511 196.999801636 198.209762573 197.740432739 196.479690552 195.319534302 194.269729614 193.389846802 192.790237427 192.460159302 192.259963989 192.130081177 192.160354614 192.429885864 192.920120239 193.550003052 194.380081177 195.479690552 196.759963989 198.059768677 198.050033569 196.880111694 195.840072632 195.009994507 194.399642944 193.960189819 193.599838257 193.279525757 193.059799194 193.069564819 193.359603882 193.809799194 194.340072632 194.910385132 195.630111694 196.559799194 197.679916382 198.219528198 197.159957886 196.270309448 195.629684448 195.259567261 194.999801636 194.730270386 194.430465698 194.249801636 194.240036011 194.379684448 194.629684448 194.990036011 195.520309448 196.249801636 197.190231323 198.390426636 197.800003052 196.750198364 195.729690552 194.660354614 193.599807739 192.790237427 192.359573364 192.229690552 192.219924927 192.330276489 192.590042114 193.030471802 193.670120239 194.580276489 195.780471802 197.109573364 198.410354614 198.200424194 197.160385132 196.160385132 195.219955444 194.420150757 193.790267944 193.380111694 193.149642944 193.099838257 193.240463257 193.569564819 194.009994507 194.519760132 195.139877319 195.950424194 196.910385132 198.050033569 198.459762573 197.549606323 196.669723511 195.879684448 195.270309448 194.850387573 194.560348511 194.360153198 194.270309448 194.310348511 194.469528198 194.719528198 195.089645386 195.669723511 196.419723511 197.379684448 198.539840698 198.009963989 197.009963989 196.030471802 194.920120239 193.740432739 192.800003052 192.309768677 192.229690552 192.309768677 192.439651489 192.660354614 193.090042114 193.809768677 194.859573364 196.139846802 197.469924927 198.729690552 198.170150757 197.250228882 196.349838257 195.420150757 194.500228882 193.759994507 193.300033569 193.109603882 193.139877319 193.359603882 193.740463257 194.210189819 194.759994507 195.439682007 196.300033569 197.309799194 198.450424194 198.659957886 197.860153198 197.039840698 196.159957886 195.360153198 194.789840698 194.459762573 194.299606323 194.259567261 194.320114136 194.509567261 194.799606323 195.219528198 195.820114136 196.610153198 197.570114136 198.709762573 197.990432739 196.870315552 195.880081177 194.859573364 193.780471802 192.889846802 192.420120239 192.330276489 192.380081177 192.469924927 192.679885864 193.170120239 194.019729614 195.179885864 196.509963989 197.809768677 199.019729614 197.830307007 196.920150757 196.149642944 195.389877319 194.590072632 193.929916382 193.500228882 193.290267944 193.250228882 193.429916382 193.859603882 194.420150757 195.040267944 195.750228882 196.639877319 197.689682007 198.840072632 198.640426636 197.810348511 197.049606323 196.240036011 195.480270386 194.900192261 194.570114136 194.379684448 194.289840698 194.329879761 194.530075073 194.879684448 195.360153198 195.990036011 196.799606323 197.770309448 198.900192261 197.660354614 196.359573364 195.370315552 194.540237427 193.710159302 193.009963989 192.609573364 192.469924927 192.450393677 192.500198364 192.740432739 193.330276489 194.259963989 195.450393677 196.769729614 198.059768677 199.300003052 197.420150757 196.429916382 195.719955444 195.090072632 194.509994507 194.069564819 193.790267944 193.580307007 193.439682007 193.540267944 194.000228882 194.649642944 195.330307007 196.040267944 196.920150757 197.990463257 199.200424194 198.499801636 197.499801636 196.709762573 196.030075073 195.430465698 195.009567261 194.730270386 194.520309448 194.350387573 194.339645386 194.560348511 194.959762573 195.480270386 196.129684448 196.959762573 197.980270386 199.150192261 197.340042114 195.920120239 194.920120239 194.219924927 193.580276489 193.050003052 192.719924927 192.569534302 192.490432739 192.540237427 192.880081177 193.559768677 194.509963989 195.679885864 196.950393677 198.250198364 199.530471802 197.359603882 196.300033569 195.490463257 194.809799194 194.259994507 193.979721069 193.899642944 193.779525757 193.620346069 193.689682007 194.170150757 194.899642944 195.620346069 196.319564819 197.179916382 198.269760132 199.529525757 198.570114136 197.329879761 196.379684448 195.680465698 195.159957886 194.850387573 194.690231323 194.539840698 194.400192261 194.379684448 194.600387573 195.020309448 195.549606323 196.240036011 197.110153198 198.180465698 199.409957886 197.349807739 195.939651489 194.910354614 194.149612427 193.509963989 193.019729614 192.750198364 192.620315552 192.550003052 192.639846802 193.030471802 193.769729614 194.759963989 195.899612427 197.170120239 198.469924927 199.769729614 197.750228882 196.660385132 195.689682007 194.759994507 194.050033569 193.769760132 193.809799194 193.840072632 193.769760132 193.849838257 194.340072632 195.109603882 195.880111694 196.630111694 197.519760132 198.639877319 199.929916382 198.949996948 197.520309448 196.360153198 195.449996948 194.829879761 194.520309448 194.440231323 194.419723511 194.379684448 194.409957886 194.619918823 195.020309448 195.570114136 196.299606323 197.259567261 198.400192261 199.680465698 197.599807739 196.309768677 195.250198364 194.359573364 193.599807739 193.069534302 192.819534302 192.729690552 192.670120239 192.740432739 193.109573364 193.870315552 194.920120239 196.139846802 197.450393677 198.759963989 200.030471802 198.210189819 197.160385132 196.090072632 194.939682007 194.050033569 193.679916382 193.740463257 193.870346069 193.859603882 193.960189819 194.420150757 195.189682007 196.059799194 196.929916382 197.929916382 199.090072632 200.380111694 199.379684448 197.890426636 196.560348511 195.469528198 194.690231323 194.289840698 194.209762573 194.259567261 194.329879761 194.430465698 194.610153198 194.969528198 195.539840698 196.350387573 197.409957886 198.629684448 199.980270386 197.740432739 196.590042114 195.569534302 194.630081177 193.780471802 193.219924927 192.960159302 192.870315552 192.790237427 192.809768677 193.149612427 193.899612427 195.000198364 196.309768677 197.710159302 199.040237427 200.250198364 198.349838257 197.340072632 196.259994507 195.130111694 194.219955444 193.800033569 193.790267944 193.870346069 193.880111694 194.000228882 194.429916382 195.200424194 196.149642944 197.170150757 198.290267944 199.479721069 200.800033569 199.579879761 198.100387573 196.749801636 195.610153198 194.770309448 194.289840698 194.140426636 194.190231323 194.299606323 194.419723511 194.610153198 194.930465698 195.509567261 196.390426636 197.539840698 198.860153198 200.310348511 197.590042114 196.540237427 195.609573364 194.710159302 193.880081177 193.290237427 192.979690552 192.849807739 192.769729614 192.819534302 193.170120239 193.920120239 195.040237427 196.410354614 197.870315552 199.240432739 200.450393677 198.279525757 197.229721069 196.170150757 195.149642944 194.370346069 193.939682007 193.800033569 193.759994507 193.759994507 193.939682007 194.410385132 195.210189819 196.219955444 197.359603882 198.559799194 199.800033569 201.139877319 199.530075073 198.070114136 196.780075073 195.709762573 194.919723511 194.419723511 194.180465698 194.150192261 194.259567261 194.430465698 194.640426636 194.959762573 195.520309448 196.419723511 197.629684448 199.070114136 200.640426636 197.349807739 196.319534302 195.450393677 194.609573364 193.809768677 193.179885864 192.780471802 192.580276489 192.530471802 192.689651489 193.139846802 193.950393677 195.069534302 196.450393677 197.939651489 199.359573364 200.639846802 198.309799194 197.130111694 196.019760132 195.059799194 194.370346069 193.929916382 193.660385132 193.509994507 193.529525757 193.809799194 194.370346069 195.210189819 196.279525757 197.509994507 198.779525757 200.080307007 201.439682007 199.459762573 197.980270386 196.730270386 195.749801636 195.039840698 194.539840698 194.230270386 194.129684448 194.209762573 194.419723511 194.659957886 194.969528198 195.499801636 196.390426636 197.659957886 199.209762573 200.949996948 197.240432739 196.200393677 195.309768677 194.490432739 193.700393677 193.030471802 192.540237427 192.250198364 192.189651489 192.439651489 193.019729614 193.889846802 195.030471802 196.410354614 197.929885864 199.439651489 200.830276489 198.559799194 197.229721069 195.969955444 194.969955444 194.279525757 193.819564819 193.469955444 193.259994507 193.309799194 193.660385132 194.259994507 195.099838257 196.240463257 197.580307007 199.000228882 200.370346069 201.759994507 199.469528198 197.980270386 196.719528198 195.780075073 195.119918823 194.650192261 194.329879761 194.169723511 194.199996948 194.379684448 194.619918823 194.909957886 195.390426636 196.259567261 197.600387573 199.289840698 201.190231323 197.229690552 196.160354614 195.229690552 194.399612427 193.630081177 192.950393677 192.420120239 192.059768677 191.950393677 192.200393677 192.809768677 193.719924927 194.880081177 196.290237427 197.870315552 199.479690552 200.979690552 198.800033569 197.349838257 195.969955444 194.889877319 194.179916382 193.719955444 193.370346069 193.170150757 193.210189819 193.529525757 194.069564819 194.880111694 196.059799194 197.540267944 199.120346069 200.620346069 202.069564819 199.490036011 197.999801636 196.759567261 195.829879761 195.209762573 194.789840698 194.490036011 194.299606323 194.270309448 194.379684448 194.560348511 194.799606323 195.240036011 196.100387573 197.469528198 199.289840698 201.350387573 197.099807739 196.019729614 195.080276489 194.259963989 193.519729614 192.880081177 192.330276489 191.929885864 191.790237427 192.040237427 192.639846802 193.559768677 194.710159302 196.130081177 197.750198364 199.460159302 201.080276489 198.849838257 197.349838257 195.929916382 194.819564819 194.109603882 193.649642944 193.319564819 193.139877319 193.170150757 193.439682007 193.899642944 194.649642944 195.819564819 197.389877319 199.090072632 200.710189819 202.240463257 199.409957886 197.940231323 196.730270386 195.839645386 195.270309448 194.900192261 194.640426636 194.440231323 194.360153198 194.409957886 194.560348511 194.770309448 195.169723511 195.969528198 197.339645386 199.209762573 201.390426636 196.859573364 195.759963989 194.849807739 194.040237427 193.319534302 192.660354614 192.090042114 191.700393677 191.609573364 191.929885864 192.599807739 193.519729614 194.649612427 196.019729614 197.630081177 199.380081177 201.099807739 198.819564819 197.300033569 195.889877319 194.790267944 194.050033569 193.569564819 193.219955444 193.029525757 193.069564819 193.340072632 193.790267944 194.500228882 195.639877319 197.170150757 198.910385132 200.620346069 202.269760132 199.270309448 197.829879761 196.640426636 195.780075073 195.249801636 194.909957886 194.669723511 194.480270386 194.409957886 194.480270386 194.629684448 194.839645386 195.169723511 195.879684448 197.159957886 199.030075073 201.270309448 196.639846802 195.540237427 194.649612427 193.870315552 193.139846802 192.439651489 191.819534302 191.420120239 191.420120239 191.840042114 192.580276489 193.509963989 194.609573364 195.950393677 197.540237427 199.300003052 201.069534302 198.880111694 197.330307007 195.939682007 194.840072632 194.069564819 193.540267944 193.139877319 192.929916382 192.969955444 193.240463257 193.689682007 194.370346069 195.429916382 196.899642944 198.630111694 200.439682007 202.200424194 199.180465698 197.740036011 196.560348511 195.709762573 195.169723511 194.860153198 194.640426636 194.490036011 194.459762573 194.549606323 194.709762573 194.879684448 195.169723511 195.770309448 196.940231323 198.719528198 200.980270386 196.569534302 195.439651489 194.550003052 193.790237427 193.069534302 192.380081177 191.759963989 191.370315552 191.359573364 191.750198364 192.439651489 193.330276489 194.450393677 195.849807739 197.479690552 199.229690552 201.000198364 198.939682007 197.380111694 196.000228882 194.899642944 194.130111694 193.590072632 193.210189819 192.990463257 192.979721069 193.170150757 193.540267944 194.130111694 195.099838257 196.529525757 198.300033569 200.210189819 202.080307007 199.129684448 197.709762573 196.530075073 195.669723511 195.140426636 194.839645386 194.669723511 194.570114136 194.560348511 194.640426636 194.730270386 194.839645386 195.079879761 195.640426636 196.699996948 198.379684448 200.560348511 196.509963989 195.380081177 194.460159302 193.679885864 192.990432739 192.370315552 191.849807739 191.509963989 191.439651489 191.679885864 192.179885864 192.979690552 194.149612427 195.700393677 197.420120239 199.149612427 200.870315552 198.830307007 197.279525757 195.910385132 194.830307007 194.099838257 193.620346069 193.309799194 193.120346069 193.059799194 193.130111694 193.349838257 193.819564819 194.700424194 196.109603882 197.929916382 199.939682007 201.910385132 199.060348511 197.690231323 196.530075073 195.650192261 195.100387573 194.829879761 194.699996948 194.659957886 194.680465698 194.719528198 194.749801636 194.799606323 195.020309448 195.560348511 196.549606323 198.079879761 200.100387573 196.439651489 195.319534302 194.349807739 193.469924927 192.729690552 192.160354614 191.759963989 191.530471802 191.490432739 191.599807739 191.950393677 192.660354614 193.899612427 195.569534302 197.359573364 199.059768677 200.740432739 198.609603882 197.080307007 195.740463257 194.679916382 193.950424194 193.500228882 193.240463257 193.099838257 193.050033569 193.080307007 193.250228882 193.630111694 194.439682007 195.759994507 197.540267944 199.580307007 201.630111694 198.969528198 197.659957886 196.509567261 195.610153198 195.020309448 194.730270386 194.619918823 194.610153198 194.690231323 194.770309448 194.810348511 194.869918823 195.089645386 195.600387573 196.490036011 197.839645386 199.680465698 196.429885864 195.370315552 194.340042114 193.319534302 192.439651489 191.800003052 191.460159302 191.349807739 191.389846802 191.550003052 191.870315552 192.559768677 193.800003052 195.479690552 197.259963989 198.920120239 200.590042114 198.460189819 197.000228882 195.700424194 194.639877319 193.859603882 193.340072632 193.029525757 192.920150757 192.939682007 193.059799194 193.269760132 193.660385132 194.380111694 195.529525757 197.149642944 199.109603882 201.229721069 198.919723511 197.659957886 196.499801636 195.560348511 194.930465698 194.610153198 194.480270386 194.480270386 194.600387573 194.770309448 194.909957886 195.020309448 195.209762573 195.640426636 196.390426636 197.579879761 199.289840698 196.479690552 195.460159302 194.410354614 193.309768677 192.319534302 191.649612427 191.290237427 191.179885864 191.269729614 191.500198364 191.889846802 192.590042114 193.759963989 195.349807739 197.059768677 198.719924927 200.429885864 198.460189819 197.040267944 195.750228882 194.679916382 193.870346069 193.319564819 192.990463257 192.859603882 192.899642944 193.080307007 193.359603882 193.769760132 194.380111694 195.340072632 196.740463257 198.590072632 200.750228882 198.890426636 197.619918823 196.440231323 195.509567261 194.930465698 194.650192261 194.530075073 194.499801636 194.600387573 194.789840698 194.969528198 195.089645386 195.240036011 195.549606323 196.169723511 197.249801636 198.900192261 196.410354614 195.340042114 194.240432739 193.160354614 192.290237427 191.719924927 191.399612427 191.229690552 191.229690552 191.429885864 191.830276489 192.500198364 193.590042114 195.099807739 196.780471802 198.450393677 200.210159302 198.399642944 196.899642944 195.559799194 194.490463257 193.779525757 193.349838257 193.099838257 192.950424194 192.950424194 193.109603882 193.380111694 193.759994507 194.279525757 195.099838257 196.349838257 198.099838257 200.250228882 198.789840698 197.449996948 196.259567261 195.390426636 194.949996948 194.789840698 194.730270386 194.669723511 194.680465698 194.799606323 194.940231323 195.039840698 195.150192261 195.390426636 195.909957886 196.890426636 198.440231323 203.739868164 203.42980957 203.299926758 203.25012207 203.170043945 203.080200195 203.08996582 203.199829102 203.270141602 203.190063477 203.049926758 202.940063477 202.909790039 203.049926758 203.67980957 204.989868164 206.699829102 205.629959106 205.230056763 205.040115356 204.859939575 204.609939575 204.390213013 204.390213013 204.569900513 204.719802856 204.640213013 204.399978638 204.149978638 203.960037231 203.919998169 204.109939575 204.629959106 205.410232544 206.18019104 205.879898071 205.750015259 205.640151978 205.43019104 205.209976196 205.149917603 205.259780884 205.350112915 205.310073853 205.209976196 205.149917603 205.140151978 205.120132446 205.169937134 205.390151978 205.85987854 204.040161133 203.900024414 203.859985352 203.730102539 203.469848633 203.17980957 203.08996582 203.190063477 203.290161133 203.190063477 203.029907227 202.969848633 202.969848633 203.009887695 203.420043945 204.58996582 206.330200195 205.77986145 205.52986145 205.399978638 205.230056763 204.919998169 204.609939575 204.520095825 204.609939575 204.679763794 204.580154419 204.370193481 204.169998169 203.989822388 203.870193481 203.910232544 204.27986145 205.009841919 206.319839478 206.120132446 206.060073853 205.950210571 205.660171509 205.319839478 205.169937134 205.229995728 205.310073853 205.299819946 205.240249634 205.220230103 205.160171509 205.040054321 205.000015259 205.229995728 205.750015259 204.210083008 204.120239258 204.08996582 203.949829102 203.670043945 203.370239258 203.270141602 203.359985352 203.359985352 203.120239258 202.870239258 202.850219727 202.960083008 203.009887695 203.259887695 204.25012207 205.980102539 205.870193481 205.569900513 205.390213013 205.210037231 204.969802856 204.739822388 204.679763794 204.719802856 204.660232544 204.4400177 204.1900177 204.020095825 203.919998169 203.819900513 203.799880981 204.060134888 204.6900177 206.43019104 206.250015259 206.200210571 206.089859009 205.839859009 205.540054321 205.390151978 205.370132446 205.310073853 205.160171509 205.080093384 205.120132446 205.10987854 205.000015259 204.93019104 205.160171509 205.720230103 203.989868164 203.690063477 203.529907227 203.400024414 203.259887695 203.170043945 203.259887695 203.449829102 203.380004883 202.969848633 202.580200195 202.569946289 202.799926758 202.92980957 203.130004883 203.969848633 205.609985352 205.660232544 205.120193481 204.750076294 204.520095825 204.379959106 204.359939575 204.489822388 204.609939575 204.520095825 204.1900177 203.870193481 203.730056763 203.719802856 203.719802856 203.730056763 203.929763794 204.460037231 206.299819946 205.970230103 205.799819946 205.669937134 205.490249634 205.350112915 205.350112915 205.370132446 205.189956665 204.890151978 204.740249634 204.830093384 204.959976196 204.93019104 204.890151978 205.120132446 205.669937134 203.549926758 202.92980957 202.520141602 202.350219727 202.350219727 202.50012207 202.83996582 203.199829102 203.210083008 202.75012207 202.290161133 202.290161133 202.600219727 202.799926758 202.960083008 203.67980957 205.199829102 205.250076294 204.460037231 203.899978638 203.589920044 203.469802856 203.560134888 203.839920044 204.120193481 204.10017395 203.799880981 203.500076294 203.419998169 203.500076294 203.560134888 203.629959106 203.819900513 204.270095825 205.990249634 205.450210571 205.10987854 204.870132446 204.68019104 204.649917603 204.850112915 205.029800415 204.910171509 204.589859009 204.410171509 204.549819946 204.750015259 204.77003479 204.77003479 205.009780884 205.549819946 203.380004883 202.520141602 201.949829102 201.730102539 201.770141602 201.980102539 202.370239258 202.799926758 202.909790039 202.569946289 202.159790039 202.159790039 202.469848633 202.67980957 202.799926758 203.400024414 204.779907227 205.020095825 204.140213013 203.569900513 203.239822388 203.049880981 203.049880981 203.27986145 203.560134888 203.589920044 203.379959106 203.210037231 203.250076294 203.370193481 203.419998169 203.460037231 203.660232544 204.10017395 205.839859009 205.209976196 204.779800415 204.470230103 204.200210571 204.129898071 204.35987854 204.649917603 204.669937134 204.450210571 204.330093384 204.459976196 204.629898071 204.60987854 204.589859009 204.830093384 205.379898071 203.690063477 202.799926758 202.210083008 202.049926758 202.100219727 202.17980957 202.33996582 202.58996582 202.670043945 202.440063477 202.159790039 202.17980957 202.440063477 202.58996582 202.670043945 203.190063477 204.449829102 205.1900177 204.359939575 203.929763794 203.710037231 203.460037231 203.270095825 203.27986145 203.379959106 203.330154419 203.140213013 203.069900513 203.219802856 203.339920044 203.290115356 203.230056763 203.429763794 203.919998169 206.060073853 205.479995728 205.140151978 204.879898071 204.580093384 204.370132446 204.450210571 204.669937134 204.709976196 204.540054321 204.459976196 204.560073853 204.649917603 204.540054321 204.450210571 204.68019104 205.240249634 204.270141602 203.350219727 202.819946289 202.770141602 202.870239258 202.810180664 202.670043945 202.58996582 202.509887695 202.319946289 202.130004883 202.170043945 202.389770508 202.509887695 202.600219727 203.069946289 204.210083008 205.540115356 204.699783325 204.429763794 204.370193481 204.149978638 203.810134888 203.60017395 203.500076294 203.290115356 203.02986145 203.009841919 203.219802856 203.330154419 203.160232544 203.009841919 203.199783325 203.759841919 206.410171509 205.939956665 205.740249634 205.620132446 205.370132446 205.069839478 204.950210571 204.990249634 204.919937134 204.709976196 204.600112915 204.689956665 204.729995728 204.589859009 204.459976196 204.620132446 205.129898071 204.67980957 203.639770508 203.08996582 203.109985352 203.25012207 203.120239258 202.790161133 202.50012207 202.319946289 202.150024414 202.029907227 202.120239258 202.310180664 202.449829102 202.549926758 202.989868164 204.00012207 205.699783325 204.739822388 204.500076294 204.560134888 204.379959106 203.969802856 203.660232544 203.469802856 203.230056763 202.949783325 202.9400177 203.179763794 203.299880981 203.10017395 202.879959106 203.049880981 203.629959106 206.589859009 206.089859009 205.939956665 205.939956665 205.759780884 205.43019104 205.189956665 205.100112915 204.939956665 204.689956665 204.589859009 204.720230103 204.810073853 204.700210571 204.540054321 204.620132446 205.02003479 204.710083008 203.529907227 202.960083008 202.980102539 203.08996582 202.889770508 202.520141602 202.239868164 202.100219727 202.00012207 201.969848633 202.08996582 202.259887695 202.370239258 202.449829102 202.819946289 203.719848633 205.480056763 204.390213013 204.1900177 204.339920044 204.169998169 203.679763794 203.35017395 203.230056763 203.089920044 202.899978638 202.910232544 203.1900177 203.330154419 203.129959106 202.870193481 202.969802856 203.489822388 206.500015259 205.899917603 205.720230103 205.750015259 205.589859009 205.229995728 204.939956665 204.830093384 204.720230103 204.549819946 204.529800415 204.709976196 204.870132446 204.790054321 204.600112915 204.569839478 204.850112915 204.389770508 203.259887695 202.799926758 202.83996582 202.83996582 202.580200195 202.290161133 202.150024414 202.109985352 202.049926758 202.009887695 202.109985352 202.230102539 202.239868164 202.239868164 202.509887695 203.319946289 205.02986145 204.000076294 203.9400177 204.179763794 204.000076294 203.469802856 203.129959106 203.140213013 203.160232544 203.049880981 203.049880981 203.270095825 203.410232544 203.210037231 202.910232544 202.899978638 203.319900513 206.259780884 205.620132446 205.479995728 205.560073853 205.410171509 204.979995728 204.660171509 204.589859009 204.589859009 204.529800415 204.569839478 204.77003479 204.919937134 204.830093384 204.569839478 204.450210571 204.640151978 203.889770508 203.009887695 202.770141602 202.83996582 202.770141602 202.549926758 202.449829102 202.509887695 202.480102539 202.290161133 202.100219727 202.080200195 202.109985352 202.029907227 201.940063477 202.159790039 202.92980957 204.669998169 203.839920044 203.910232544 204.199783325 204.020095825 203.52986145 203.310134888 203.460037231 203.580154419 203.4400177 203.290115356 203.35017395 203.410232544 203.219802856 202.899978638 202.810134888 203.160232544 206.009780884 205.459976196 205.450210571 205.640151978 205.540054321 205.129898071 204.819839478 204.77003479 204.799819946 204.759780884 204.740249634 204.850112915 204.93019104 204.790054321 204.490249634 204.290054321 204.450210571 203.549926758 202.900024414 202.759887695 202.759887695 202.650024414 202.609985352 202.850219727 203.130004883 203.049926758 202.58996582 202.159790039 201.989868164 201.949829102 201.83996582 201.719848633 201.92980957 202.699829102 204.699783325 204.020095825 204.020095825 204.149978638 203.919998169 203.609939575 203.640213013 203.960037231 204.089920044 203.830154419 203.480056763 203.35017395 203.339920044 203.160232544 202.870193481 202.750076294 203.080154419 205.890151978 205.419937134 205.490249634 205.720230103 205.700210571 205.450210571 205.279800415 205.310073853 205.290054321 205.100112915 204.890151978 204.850112915 204.850112915 204.709976196 204.410171509 204.18019104 204.310073853 203.719848633 203.130004883 202.810180664 202.540161133 202.330200195 202.50012207 203.069946289 203.549926758 203.42980957 202.819946289 202.239868164 201.989868164 201.900024414 201.770141602 201.650024414 201.83996582 202.580200195 205.160232544 204.520095825 204.219802856 203.969802856 203.640213013 203.489822388 203.770095825 204.230056763 204.330154419 204.000076294 203.580154419 203.399978638 203.339920044 203.179763794 202.899978638 202.770095825 203.060134888 205.970230103 205.540054321 205.500015259 205.589859009 205.580093384 205.52003479 205.600112915 205.759780884 205.709976196 205.379898071 205.02003479 204.839859009 204.779800415 204.640151978 204.370132446 204.129898071 204.189956665 204.359985352 203.699829102 203.100219727 202.509887695 202.130004883 202.310180664 202.949829102 203.480102539 203.420043945 202.909790039 202.440063477 202.210083008 202.069946289 201.859985352 201.67980957 201.810180664 202.449829102 205.719802856 205.080154419 204.520095825 203.9400177 203.469802856 203.379959106 203.719802856 204.129959106 204.219802856 203.949783325 203.660232544 203.580154419 203.549880981 203.359939575 203.009841919 202.77986145 202.960037231 206.240249634 205.790054321 205.560073853 205.399917603 205.279800415 205.310073853 205.569839478 205.830093384 205.819839478 205.529800415 205.18019104 204.959976196 204.819839478 204.640151978 204.370132446 204.10987854 204.069839478 204.870239258 204.17980957 203.469848633 202.759887695 202.259887695 202.239868164 202.630004883 202.989868164 203.020141602 202.810180664 202.650024414 202.540161133 202.330200195 201.980102539 201.690063477 201.699829102 202.219848633 205.890213013 205.299880981 204.730056763 204.120193481 203.609939575 203.429763794 203.589920044 203.819900513 203.85017395 203.759841919 203.739822388 203.839920044 203.830154419 203.569900513 203.089920044 202.6900177 202.710037231 206.439956665 205.990249634 205.640151978 205.319839478 205.080093384 205.080093384 205.290054321 205.509780884 205.560073853 205.470230103 205.35987854 205.209976196 204.979995728 204.68019104 204.35987854 204.089859009 204.009780884 204.650024414 204.00012207 203.460083008 202.960083008 202.540161133 202.319946289 202.310180664 202.370239258 202.42980957 202.520141602 202.67980957 202.699829102 202.449829102 202.009887695 201.659790039 201.580200195 201.989868164 205.449783325 204.960037231 204.589920044 204.1900177 203.790115356 203.52986145 203.4400177 203.410232544 203.390213013 203.469802856 203.710037231 203.9400177 203.949783325 203.640213013 203.080154419 202.569900513 202.4400177 206.279800415 205.870132446 205.569839478 205.290054321 205.060073853 204.959976196 204.979995728 205.009780884 205.060073853 205.220230103 205.410171509 205.410171509 205.120132446 204.700210571 204.379898071 204.149917603 204.060073853 203.909790039 203.290161133 203.009887695 202.870239258 202.670043945 202.389770508 202.120239258 201.960083008 201.980102539 202.219848633 202.529907227 202.630004883 202.409790039 202.009887695 201.670043945 201.58996582 201.960083008 204.879959106 204.399978638 204.219802856 204.060134888 203.790115356 203.509841919 203.27986145 203.140213013 203.10017395 203.250076294 203.549880981 203.819900513 203.839920044 203.569900513 203.080154419 202.580154419 202.410232544 205.939956665 205.529800415 205.339859009 205.200210571 205.069839478 204.959976196 204.819839478 204.649917603 204.629898071 204.899917603 205.290054321 205.399917603 205.120132446 204.720230103 204.459976196 204.299819946 204.200210571 203.50012207 202.880004883 202.699829102 202.719848633 202.659790039 202.449829102 202.170043945 201.949829102 201.909790039 202.08996582 202.33996582 202.449829102 202.319946289 202.049926758 201.810180664 201.759887695 202.109985352 204.810134888 204.310134888 204.140213013 204.020095825 203.790115356 203.520095825 203.299880981 203.169998169 203.129959106 203.230056763 203.449783325 203.640213013 203.669998169 203.500076294 203.179763794 202.810134888 202.660232544 205.850112915 205.43019104 205.27003479 205.189956665 205.120132446 205.029800415 204.870132446 204.629898071 204.52003479 204.729995728 205.100112915 205.229995728 205.000015259 204.700210571 204.549819946 204.450210571 204.299819946 203.900024414 203.290161133 203.029907227 202.920043945 202.770141602 202.580200195 202.370239258 202.190063477 202.100219727 202.139770508 202.259887695 202.330200195 202.279907227 202.130004883 201.989868164 201.989868164 202.330200195 205.330154419 204.799880981 204.540115356 204.290115356 203.969802856 203.679763794 203.520095825 203.429763794 203.379959106 203.390213013 203.480056763 203.569900513 203.580154419 203.489822388 203.339920044 203.120193481 203.02986145 206.220230103 205.810073853 205.580093384 205.399917603 205.229995728 205.149917603 205.060073853 204.85987854 204.709976196 204.759780884 204.959976196 205.000015259 204.819839478 204.649917603 204.589859009 204.470230103 204.229995728 204.670043945 204.120239258 203.719848633 203.350219727 202.980102539 202.690063477 202.50012207 202.359985352 202.25012207 202.210083008 202.25012207 202.310180664 202.299926758 202.219848633 202.120239258 202.130004883 202.460083008 205.870193481 205.359939575 204.989822388 204.60017395 204.169998169 203.830154419 203.669998169 203.589920044 203.52986145 203.520095825 203.560134888 203.580154419 203.569900513 203.520095825 203.449783325 203.339920044 203.270095825 206.700210571 206.330093384 206.009780884 205.649917603 205.319839478 205.160171509 205.10987854 205.029800415 204.910171509 204.85987854 204.899917603 204.850112915 204.700210571 204.600112915 204.549819946 204.35987854 204.040054321 205.069946289 204.580200195 204.109985352 203.600219727 203.08996582 202.690063477 202.440063477 202.290161133 202.210083008 202.199829102 202.279907227 202.350219727 202.359985352 202.299926758 202.210083008 202.199829102 202.509887695 205.949783325 205.429763794 205.009841919 204.549880981 204.109939575 203.770095825 203.589920044 203.489822388 203.4400177 203.469802856 203.569900513 203.620193481 203.589920044 203.560134888 203.52986145 203.429763794 203.339920044 206.879898071 206.509780884 206.140151978 205.68019104 205.250015259 205.02003479 204.970230103 204.950210571 204.899917603 204.890151978 204.910171509 204.850112915 204.720230103 204.60987854 204.509780884 204.229995728 203.870132446 204.920043945 204.460083008 204.020141602 203.549926758 203.049926758 202.630004883 202.33996582 202.170043945 202.139770508 202.199829102 202.319946289 202.420043945 202.460083008 202.409790039 202.319946289 202.290161133 202.549926758 205.719802856 205.140213013 204.669998169 204.250076294 203.890213013 203.620193481 203.449783325 203.35017395 203.319900513 203.410232544 203.560134888 203.620193481 203.629959106 203.629959106 203.620193481 203.509841919 203.359939575 206.759780884 206.350112915 205.959976196 205.540054321 205.140151978 204.899917603 204.830093384 204.799819946 204.790054321 204.850112915 204.939956665 204.950210571 204.850112915 204.720230103 204.52003479 204.18019104 203.830093384 204.699829102 204.210083008 203.819946289 203.42980957 203.029907227 202.659790039 202.359985352 202.190063477 202.159790039 202.25012207 202.380004883 202.480102539 202.549926758 202.549926758 202.469848633 202.409790039 202.630004883 205.629959106 204.989822388 204.480056763 204.109939575 203.830154419 203.649978638 203.509841919 203.390213013 203.359939575 203.419998169 203.549880981 203.629959106 203.669998169 203.739822388 203.750076294 203.60017395 203.399978638 206.700210571 206.220230103 205.839859009 205.490249634 205.18019104 204.970230103 204.850112915 204.77003479 204.729995728 204.790054321 204.93019104 205.009780884 204.970230103 204.850112915 204.60987854 204.240249634 203.93019104 204.75012207 204.219848633 203.810180664 203.42980957 203.060180664 202.730102539 202.449829102 202.270141602 202.210083008 202.270141602 202.389770508 202.50012207 202.58996582 202.639770508 202.600219727 202.540161133 202.75012207 205.819900513 205.160232544 204.629959106 204.219802856 203.949783325 203.799880981 203.679763794 203.540115356 203.4400177 203.4400177 203.520095825 203.60017395 203.6900177 203.810134888 203.859939575 203.679763794 203.480056763 206.850112915 206.350112915 205.950210571 205.600112915 205.319839478 205.129898071 204.970230103 204.810073853 204.709976196 204.729995728 204.839859009 204.950210571 204.979995728 204.919937134 204.709976196 204.379898071 204.140151978 204.920043945 204.370239258 203.880004883 203.420043945 203.009887695 202.690063477 202.440063477 202.259887695 202.17980957 202.219848633 202.33996582 202.480102539 202.630004883 202.719848633 202.730102539 202.719848633 202.960083008 206.020095825 205.379959106 204.839920044 204.379959106 204.049880981 203.859939575 203.710037231 203.549880981 203.410232544 203.379959106 203.449783325 203.549880981 203.6900177 203.859939575 203.899978638 203.730056763 203.589920044 207.040054321 206.540054321 206.100112915 205.700210571 205.379898071 205.149917603 204.970230103 204.799819946 204.669937134 204.660171509 204.729995728 204.839859009 204.93019104 204.939956665 204.819839478 204.560073853 204.399917603 204.92980957 204.370239258 203.830200195 203.310180664 202.880004883 202.569946289 202.33996582 202.17980957 202.109985352 202.170043945 202.319946289 202.509887695 202.690063477 202.830200195 202.900024414 202.960083008 203.25012207 206.060134888 205.460037231 204.929763794 204.449783325 204.069900513 203.819900513 203.640213013 203.460037231 203.330154419 203.310134888 203.399978638 203.549880981 203.710037231 203.879959106 203.919998169 203.790115356 203.739822388 207.100112915 206.580093384 206.100112915 205.649917603 205.310073853 205.069839478 204.879898071 204.729995728 204.640151978 204.640151978 204.709976196 204.799819946 204.910171509 205.000015259 204.950210571 204.77003479 204.700210571 204.819946289 204.259887695 203.739868164 203.259887695 202.859985352 202.569946289 202.33996582 202.170043945 202.109985352 202.199829102 202.370239258 202.569946289 202.759887695 202.940063477 203.08996582 203.239868164 203.580200195 206.060134888 205.500076294 205.009841919 204.540115356 204.140213013 203.870193481 203.669998169 203.489822388 203.359939575 203.359939575 203.469802856 203.60017395 203.750076294 203.899978638 203.969802856 203.879959106 203.899978638 207.069839478 206.52003479 206.02003479 205.600112915 205.279800415 205.049819946 204.85987854 204.729995728 204.669937134 204.700210571 204.77003479 204.850112915 204.950210571 205.069839478 205.080093384 204.970230103 204.950210571 204.799926758 204.259887695 203.790161133 203.389770508 203.040161133 202.739868164 202.469848633 202.259887695 202.190063477 202.270141602 202.42980957 202.600219727 202.790161133 203.020141602 203.259887695 203.480102539 203.859985352 206.140213013 205.589920044 205.109939575 204.649978638 204.259841919 203.969802856 203.759841919 203.569900513 203.4400177 203.449783325 203.540115356 203.640213013 203.770095825 203.9400177 204.02986145 203.980056763 204.000076294 207.129898071 206.52003479 206.02003479 205.620132446 205.350112915 205.129898071 204.919937134 204.759780884 204.700210571 204.750015259 204.819839478 204.890151978 205.009780884 205.169937134 205.229995728 205.149917603 205.149917603 204.880004883 204.359985352 203.92980957 203.549926758 203.210083008 202.870239258 202.560180664 202.319946289 202.25012207 202.310180664 202.440063477 202.600219727 202.819946289 203.109985352 203.409790039 203.699829102 204.100219727 206.230056763 205.629959106 205.109939575 204.629959106 204.230056763 203.929763794 203.699783325 203.509841919 203.410232544 203.429763794 203.52986145 203.629959106 203.77986145 204.000076294 204.140213013 204.080154419 204.080154419 207.250015259 206.60987854 206.069839478 205.649917603 205.35987854 205.140151978 204.919937134 204.740249634 204.660171509 204.709976196 204.799819946 204.890151978 205.060073853 205.299819946 205.439956665 205.370132446 205.310073853 204.92980957 204.409790039 203.960083008 203.569946289 203.219848633 202.870239258 202.549926758 202.33996582 202.279907227 202.330200195 202.440063477 202.639770508 202.920043945 203.279907227 203.609985352 203.92980957 204.389770508 206.179763794 205.520095825 204.9400177 204.429763794 204.02986145 203.739822388 203.509841919 203.330154419 203.270095825 203.35017395 203.480056763 203.620193481 203.810134888 204.089920044 204.270095825 204.199783325 204.149978638 207.339859009 206.669937134 206.060073853 205.580093384 205.229995728 205.000015259 204.810073853 204.660171509 204.600112915 204.640151978 204.750015259 204.899917603 205.140151978 205.479995728 205.68019104 205.589859009 205.439956665 204.880004883 204.33996582 203.859985352 203.469848633 203.120239258 202.799926758 202.549926758 202.400024414 202.359985352 202.380004883 202.489868164 202.719848633 203.080200195 203.460083008 203.799926758 204.17980957 204.719848633 206.060134888 205.359939575 204.77986145 204.290115356 203.9400177 203.669998169 203.460037231 203.299880981 203.250076294 203.35017395 203.480056763 203.629959106 203.85017395 204.160232544 204.35017395 204.299880981 204.27986145 207.350112915 206.660171509 206.02003479 205.479995728 205.080093384 204.850112915 204.720230103 204.60987854 204.580093384 204.629898071 204.750015259 204.919937134 205.209976196 205.569839478 205.790054321 205.700210571 205.540054321 204.810180664 204.239868164 203.759887695 203.370239258 203.049926758 202.779907227 202.580200195 202.480102539 202.440063477 202.440063477 202.529907227 202.790161133 203.170043945 203.540161133 203.900024414 204.389770508 205.080200195 206.020095825 205.339920044 204.799880981 204.399978638 204.10017395 203.870193481 203.649978638 203.469802856 203.399978638 203.4400177 203.540115356 203.660232544 203.839920044 204.10017395 204.290115356 204.330154419 204.469802856 207.390151978 206.68019104 206.049819946 205.500015259 205.089859009 204.850112915 204.729995728 204.640151978 204.60987854 204.660171509 204.77003479 204.939956665 205.189956665 205.500015259 205.689956665 205.640151978 205.549819946 204.779907227 204.190063477 203.699829102 203.310180664 203.00012207 202.730102539 202.549926758 202.489868164 202.460083008 202.449829102 202.520141602 202.779907227 203.150024414 203.509887695 203.909790039 204.529907227 205.400024414 206.089920044 205.449783325 204.969802856 204.609939575 204.330154419 204.069900513 203.830154419 203.620193481 203.520095825 203.52986145 203.60017395 203.679763794 203.810134888 203.980056763 204.169998169 204.35017395 204.699783325 207.459976196 206.759780884 206.149917603 205.629898071 205.229995728 204.950210571 204.77003479 204.649917603 204.60987854 204.669937134 204.799819946 204.939956665 205.120132446 205.339859009 205.490249634 205.490249634 205.569839478 204.719848633 204.120239258 203.639770508 203.259887695 202.909790039 202.620239258 202.420043945 202.380004883 202.400024414 202.42980957 202.509887695 202.770141602 203.109985352 203.469848633 203.909790039 204.639770508 205.630004883 206.129959106 205.52986145 205.089920044 204.730056763 204.379959106 204.060134888 203.790115356 203.60017395 203.509841919 203.540115356 203.629959106 203.739822388 203.839920044 203.949783325 204.120193481 204.410232544 204.949783325 207.549819946 206.870132446 206.299819946 205.810073853 205.379898071 205.02003479 204.77003479 204.620132446 204.589859009 204.68019104 204.839859009 204.970230103 205.120132446 205.259780884 205.379898071 205.439956665 205.640151978 204.609985352 204.029907227 203.580200195 203.219848633 202.870239258 202.520141602 202.319946289 202.290161133 202.359985352 202.420043945 202.529907227 202.790161133 203.139770508 203.509887695 203.969848633 204.699829102 205.670043945 206.10017395 205.549880981 205.120193481 204.719802856 204.310134888 203.960037231 203.710037231 203.560134888 203.509841919 203.569900513 203.710037231 203.859939575 203.9400177 204.009841919 204.160232544 204.520095825 205.120193481 207.600112915 206.970230103 206.439956665 205.950210571 205.479995728 205.060073853 204.759780884 204.589859009 204.600112915 204.720230103 204.890151978 205.029800415 205.149917603 205.279800415 205.390151978 205.459976196 205.689956665 204.529907227 204.00012207 203.600219727 203.270141602 202.920043945 202.569946289 202.33996582 202.310180664 202.380004883 202.449829102 202.560180664 202.799926758 203.159790039 203.549926758 204.00012207 204.639770508 205.489868164 206.040115356 205.52986145 205.120193481 204.699783325 204.27986145 203.949783325 203.77986145 203.679763794 203.629959106 203.669998169 203.810134888 203.9400177 203.969802856 204.009841919 204.169998169 204.540115356 205.10017395 207.620132446 207.040054321 206.52003479 206.029800415 205.540054321 205.089859009 204.779800415 204.640151978 204.660171509 204.77003479 204.910171509 205.02003479 205.140151978 205.27003479 205.379898071 205.450210571 205.620132446 204.549926758 204.060180664 203.67980957 203.359985352 203.009887695 202.659790039 202.420043945 202.350219727 202.380004883 202.42980957 202.529907227 202.770141602 203.150024414 203.540161133 203.960083008 204.480102539 205.199829102 205.989822388 205.509841919 205.089920044 204.649978638 204.259841919 204.009841919 203.910232544 203.85017395 203.77986145 203.799880981 203.919998169 203.980056763 203.919998169 203.899978638 204.060134888 204.419998169 204.890213013 207.600112915 207.009780884 206.479995728 205.979995728 205.500015259 205.089859009 204.799819946 204.68019104 204.68019104 204.759780884 204.85987854 204.939956665 205.029800415 205.140151978 205.259780884 205.330093384 205.479995728 204.609985352 204.120239258 203.719848633 203.370239258 203.020141602 202.670043945 202.420043945 202.290161133 202.279907227 202.319946289 202.460083008 202.719848633 203.08996582 203.489868164 203.889770508 204.370239258 205.060180664 205.879959106 205.390213013 204.9400177 204.509841919 204.149978638 203.969802856 203.929763794 203.85017395 203.750076294 203.77986145 203.949783325 204.02986145 203.919998169 203.819900513 203.960037231 204.270095825 204.679763794 207.500015259 206.839859009 206.279800415 205.799819946 205.399917603 205.069839478 204.790054321 204.629898071 204.580093384 204.649917603 204.77003479 204.870132446 204.93019104 205.009780884 205.129898071 205.27003479 205.500015259 204.609985352 204.109985352 203.690063477 203.310180664 202.960083008 202.620239258 202.33996582 202.150024414 202.08996582 202.170043945 202.380004883 202.67980957 203.049926758 203.449829102 203.880004883 204.42980957 205.210083008 205.719802856 205.219802856 204.790115356 204.390213013 204.069900513 203.9400177 203.859939575 203.719802856 203.560134888 203.640213013 203.910232544 204.10017395 204.02986145 203.899978638 203.969802856 204.239822388 204.640213013 207.350112915 206.660171509 206.080093384 205.669937134 205.350112915 205.069839478 204.790054321 204.52003479 204.399917603 204.479995728 204.669937134 204.830093384 204.910171509 204.970230103 205.10987854 205.350112915 205.77003479 204.509887695 204.049926758 203.650024414 203.279907227 202.940063477 202.600219727 202.279907227 202.040161133 201.940063477 202.040161133 202.299926758 202.650024414 203.020141602 203.42980957 203.900024414 204.540161133 205.469848633 205.589920044 205.140213013 204.790115356 204.460037231 204.210037231 204.060134888 203.929763794 203.710037231 203.489822388 203.540115356 203.870193481 204.149978638 204.169998169 204.069900513 204.089920044 204.290115356 204.719802856 207.279800415 206.600112915 206.060073853 205.689956665 205.43019104 205.18019104 204.839859009 204.479995728 204.27003479 204.330093384 204.580093384 204.810073853 204.93019104 204.979995728 205.129898071 205.450210571 206.069839478 204.400024414 203.980102539 203.620239258 203.299926758 202.969848633 202.620239258 202.299926758 202.029907227 201.92980957 202.040161133 202.299926758 202.630004883 202.989868164 203.400024414 203.870239258 204.520141602 205.540161133 205.569900513 205.199783325 204.9400177 204.679763794 204.419998169 204.270095825 204.149978638 203.9400177 203.710037231 203.679763794 203.910232544 204.160232544 204.239822388 204.1900177 204.179763794 204.290115356 204.730056763 207.35987854 206.720230103 206.209976196 205.819839478 205.549819946 205.279800415 204.919937134 204.529800415 204.299819946 204.330093384 204.560073853 204.790054321 204.919937134 204.979995728 205.089859009 205.399917603 206.10987854 204.33996582 203.940063477 203.58996582 203.25012207 202.920043945 202.58996582 202.299926758 202.100219727 202.060180664 202.17980957 202.409790039 202.670043945 203.009887695 203.389770508 203.799926758 204.310180664 205.239868164 205.640213013 205.310134888 205.060134888 204.770095825 204.469802856 204.290115356 204.250076294 204.179763794 204.069900513 204.02986145 204.10017395 204.199783325 204.259841919 204.270095825 204.239822388 204.230056763 204.580154419 207.500015259 206.890151978 206.330093384 205.879898071 205.529800415 205.229995728 204.93019104 204.660171509 204.500015259 204.509780884 204.660171509 204.810073853 204.910171509 204.959976196 205.000015259 205.189956665 205.819839478 204.389770508 203.920043945 203.520141602 203.139770508 202.799926758 202.50012207 202.279907227 202.17980957 202.210083008 202.33996582 202.520141602 202.730102539 203.029907227 203.420043945 203.75012207 204.080200195 204.790161133 205.719802856 205.35017395 205.049880981 204.6900177 204.310134888 204.080154419 204.060134888 204.149978638 204.239822388 204.290115356 204.310134888 204.299880981 204.310134888 204.35017395 204.319900513 204.210037231 204.379959106 207.589859009 206.939956665 206.330093384 205.790054321 205.370132446 205.080093384 204.879898071 204.740249634 204.68019104 204.720230103 204.779800415 204.839859009 204.910171509 204.970230103 204.979995728 205.02003479 205.500015259 204.520141602 203.989868164 203.520141602 203.100219727 202.75012207 202.469848633 202.279907227 202.17980957 202.219848633 202.33996582 202.489868164 202.670043945 202.980102539 203.400024414 203.730102539 203.949829102 204.480102539 205.750076294 205.379959106 205.02986145 204.640213013 204.219802856 203.910232544 203.759841919 203.799880981 203.960037231 204.169998169 204.299880981 204.319900513 204.330154419 204.399978638 204.410232544 204.270095825 204.330154419 207.589859009 206.910171509 206.27003479 205.720230103 205.290054321 204.979995728 204.790054321 204.689956665 204.68019104 204.709976196 204.750015259 204.779800415 204.850112915 204.970230103 205.029800415 205.049819946 205.410171509 204.659790039 204.150024414 203.670043945 203.219848633 202.83996582 202.549926758 202.299926758 202.120239258 202.060180664 202.150024414 202.299926758 202.509887695 202.850219727 203.310180664 203.699829102 203.949829102 204.400024414 205.730056763 205.429763794 205.160232544 204.830154419 204.4400177 204.009841919 203.620193481 203.370193481 203.410232544 203.710037231 204.049880981 204.219802856 204.259841919 204.319900513 204.370193481 204.330154419 204.390213013 207.569839478 206.899917603 206.319839478 205.810073853 205.370132446 205.02003479 204.740249634 204.549819946 204.459976196 204.490249634 204.560073853 204.629898071 204.720230103 204.899917603 205.069839478 205.189956665 205.549819946 204.779907227 204.359985352 203.909790039 203.420043945 202.989868164 202.620239258 202.290161133 202.009887695 201.870239258 201.940063477 202.159790039 202.420043945 202.759887695 203.199829102 203.650024414 203.969848633 204.420043945 205.679763794 205.489822388 205.330154419 205.10017395 204.790115356 204.319900513 203.710037231 203.169998169 203.009841919 203.330154419 203.830154419 204.140213013 204.199783325 204.179763794 204.210037231 204.250076294 204.429763794 207.60987854 206.979995728 206.450210571 205.970230103 205.500015259 205.060073853 204.669937134 204.370132446 204.220230103 204.279800415 204.450210571 204.580093384 204.689956665 204.830093384 205.029800415 205.259780884 205.700210571 204.850219727 204.529907227 204.109985352 203.569946289 203.029907227 202.580200195 202.190063477 201.859985352 201.739868164 201.870239258 202.199829102 202.540161133 202.850219727 203.199829102 203.58996582 203.920043945 204.370239258 205.609939575 205.509841919 205.399978638 205.239822388 204.989822388 204.580154419 203.9400177 203.299880981 203.040115356 203.310134888 203.859939575 204.230056763 204.259841919 204.120193481 204.020095825 204.060134888 204.330154419 207.649917603 207.060073853 206.540054321 206.029800415 205.470230103 204.939956665 204.490249634 204.169937134 204.049819946 204.209976196 204.500015259 204.720230103 204.799819946 204.850112915 204.990249634 205.240249634 205.740249634 204.889770508 204.580200195 204.150024414 203.609985352 203.009887695 202.469848633 202.029907227 201.730102539 201.670043945 201.909790039 202.319946289 202.719848633 203.009887695 203.259887695 203.540161133 203.799926758 204.17980957 205.580154419 205.469802856 205.399978638 205.27986145 205.10017395 204.759841919 204.219802856 203.660232544 203.399978638 203.589920044 204.040115356 204.359939575 204.35017395 204.120193481 203.890213013 203.859939575 204.169998169 207.640151978 207.02003479 206.470230103 205.910171509 205.299819946 204.720230103 204.240249634 203.950210571 203.899917603 204.149917603 204.549819946 204.850112915 204.950210571 204.919937134 204.970230103 205.18019104 205.669937134 204.880004883 204.460083008 204.029907227 203.549926758 203.009887695 202.449829102 201.960083008 201.659790039 201.639770508 201.920043945 202.359985352 202.759887695 203.049926758 203.259887695 203.460083008 203.639770508 203.940063477 205.60017395 205.460037231 205.460037231 205.419998169 205.27986145 204.980056763 204.540115356 204.109939575 203.870193481 203.929763794 204.169998169 204.359939575 204.319900513 204.089920044 203.810134888 203.719802856 204.020095825 207.569839478 206.879898071 206.310073853 205.779800415 205.200210571 204.600112915 204.100112915 203.790054321 203.750015259 204.000015259 204.43019104 204.790054321 204.93019104 204.939956665 204.979995728 205.149917603 205.589859009 204.790161133 204.210083008 203.790161133 203.469848633 203.069946289 202.549926758 202.029907227 201.719848633 201.710083008 201.969848633 202.359985352 202.710083008 202.980102539 203.17980957 203.33996582 203.489868164 203.719848633 205.629959106 205.520095825 205.620193481 205.719802856 205.60017395 205.270095825 204.839920044 204.489822388 204.299880981 204.259841919 204.290115356 204.290115356 204.219802856 204.020095825 203.739822388 203.620193481 203.899978638 207.490249634 206.790054321 206.27003479 205.839859009 205.350112915 204.77003479 204.220230103 203.830093384 203.729995728 203.919937134 204.299819946 204.629898071 204.810073853 204.890151978 204.970230103 205.149917603 205.560073853 204.67980957 204.040161133 203.650024414 203.469848633 203.190063477 202.710083008 202.199829102 201.900024414 201.909790039 202.150024414 202.469848633 202.730102539 202.92980957 203.069946289 203.210083008 203.319946289 203.529907227 205.679763794 205.629959106 205.830154419 205.969802856 205.830154419 205.4400177 205.020095825 204.759841919 204.679763794 204.649978638 204.560134888 204.419998169 204.259841919 204.000076294 203.6900177 203.52986145 203.77986145 207.540054321 206.879898071 206.450210571 206.120132446 205.709976196 205.140151978 204.52003479 204.080093384 203.950210571 204.089859009 204.370132446 204.600112915 204.750015259 204.850112915 204.959976196 205.140151978 205.529800415 204.759887695 204.190063477 203.850219727 203.650024414 203.350219727 202.880004883 202.400024414 202.130004883 202.159790039 202.389770508 202.67980957 202.889770508 202.989868164 203.029907227 203.069946289 203.139770508 203.330200195 205.799880981 205.810134888 205.980056763 206.02986145 205.819900513 205.419998169 205.060134888 204.910232544 204.969802856 205.02986145 204.960037231 204.750076294 204.469802856 204.10017395 203.699783325 203.449783325 203.640213013 207.720230103 207.18019104 206.799819946 206.490249634 206.060073853 205.43019104 204.779800415 204.339859009 204.240249634 204.390151978 204.600112915 204.740249634 204.799819946 204.850112915 204.939956665 205.10987854 205.479995728 205.080200195 204.650024414 204.319946289 203.989868164 203.580200195 203.060180664 202.600219727 202.33996582 202.330200195 202.529907227 202.819946289 203.049926758 203.120239258 203.049926758 202.960083008 202.949829102 203.100219727 206.000076294 205.969802856 205.969802856 205.870193481 205.629959106 205.339920044 205.109939575 205.049880981 205.149978638 205.27986145 205.259841919 205.049880981 204.6900177 204.219802856 203.719802856 203.399978638 203.520095825 207.919937134 207.459976196 207.080093384 206.709976196 206.200210571 205.509780884 204.839859009 204.450210571 204.399917603 204.569839478 204.750015259 204.85987854 204.870132446 204.890151978 204.919937134 205.040054321 205.399917603 205.420043945 205.060180664 204.67980957 204.239868164 203.730102539 203.219848633 202.799926758 202.540161133 202.449829102 202.580200195 202.889770508 203.190063477 203.270141602 203.109985352 202.889770508 202.759887695 202.850219727 206.140213013 205.980056763 205.77986145 205.589920044 205.469802856 205.419998169 205.339920044 205.259841919 205.270095825 205.359939575 205.359939575 205.179763794 204.77986145 204.259841919 203.730056763 203.370193481 203.429763794 208.000015259 207.490249634 207.049819946 206.620132446 206.069839478 205.419937134 204.810073853 204.490249634 204.470230103 204.629898071 204.799819946 204.899917603 204.93019104 204.93019104 204.919937134 204.990249634 205.330093384 205.509887695 205.069946289 204.620239258 204.170043945 203.730102539 203.350219727 203.040161133 202.799926758 202.650024414 202.699829102 203.009887695 203.370239258 203.460083008 203.239868164 202.870239258 202.600219727 202.580200195 206.129959106 205.799880981 205.469802856 205.299880981 205.390213013 205.580154419 205.640213013 205.520095825 205.399978638 205.399978638 205.410232544 205.230056763 204.810134888 204.250076294 203.699783325 203.339920044 203.379959106 207.890151978 207.27003479 206.740249634 206.310073853 205.850112915 205.330093384 204.879898071 204.649917603 204.649917603 204.77003479 204.890151978 204.979995728 205.029800415 205.000015259 204.939956665 204.979995728 205.290054321 205.319946289 204.730102539 204.270141602 203.940063477 203.659790039 203.420043945 203.219848633 203.040161133 202.889770508 202.92980957 203.219848633 203.569946289 203.639770508 203.350219727 202.870239258 202.469848633 202.319946289 206.060134888 205.60017395 205.250076294 205.160232544 205.359939575 205.640213013 205.739822388 205.620193481 205.489822388 205.500076294 205.500076294 205.27986145 204.819900513 204.219802856 203.649978638 203.290115356 203.299880981 207.750015259 207.009780884 206.450210571 206.060073853 205.700210571 205.330093384 205.02003479 204.890151978 204.899917603 204.979995728 205.069839478 205.149917603 205.160171509 205.080093384 204.959976196 204.959976196 205.259780884 205.130004883 204.480102539 204.08996582 203.870239258 203.670043945 203.469848633 203.310180664 203.159790039 203.060180664 203.109985352 203.359985352 203.659790039 203.710083008 203.370239258 202.830200195 202.310180664 202.049926758 206.080154419 205.649978638 205.35017395 205.259841919 205.370193481 205.520095825 205.560134888 205.500076294 205.469802856 205.52986145 205.52986145 205.27986145 204.770095825 204.160232544 203.589920044 203.210037231 203.179763794 207.750015259 207.02003479 206.459976196 206.060073853 205.729995728 205.390151978 205.149917603 205.049819946 205.049819946 205.10987854 205.189956665 205.259780884 205.250015259 205.120132446 204.939956665 204.919937134 205.229995728 205.170043945 204.600219727 204.279907227 204.069946289 203.83996582 203.549926758 203.33996582 203.210083008 203.150024414 203.17980957 203.380004883 203.609985352 203.639770508 203.290161133 202.699829102 202.130004883 201.790161133 206.27986145 205.919998169 205.6900177 205.520095825 205.410232544 205.359939575 205.319900513 205.330154419 205.390213013 205.469802856 205.429763794 205.149978638 204.660232544 204.089920044 203.52986145 203.120193481 203.040115356 207.879898071 207.240249634 206.729995728 206.290054321 205.870132446 205.470230103 205.200210571 205.080093384 205.060073853 205.100112915 205.18019104 205.279800415 205.27003479 205.10987854 204.899917603 204.870132446 205.189956665 205.380004883 204.889770508 204.580200195 204.319946289 204.009887695 203.67980957 203.440063477 203.319946289 203.259887695 203.270141602 203.400024414 203.580200195 203.549926758 203.17980957 202.540161133 201.900024414 201.520141602 206.480056763 206.169998169 205.9400177 205.669998169 205.410232544 205.250076294 205.230056763 205.319900513 205.419998169 205.4400177 205.310134888 205.009841919 204.580154419 204.060134888 203.489822388 203.040115356 202.919998169 208.009780884 207.439956665 206.93019104 206.450210571 205.979995728 205.560073853 205.279800415 205.140151978 205.100112915 205.120132446 205.209976196 205.310073853 205.299819946 205.120132446 204.890151978 204.819839478 205.120132446 205.529907227 205.020141602 204.639770508 204.33996582 204.069946289 203.819946289 203.650024414 203.549926758 203.480102539 203.449829102 203.540161133 203.639770508 203.549926758 203.08996582 202.370239258 201.670043945 201.259887695 206.580154419 206.199783325 205.890213013 205.580154419 205.299880981 205.179763794 205.250076294 205.410232544 205.509841919 205.469802856 205.299880981 205.000076294 204.589920044 204.080154419 203.480056763 202.960037231 202.799880981 207.990249634 207.410171509 206.879898071 206.410171509 205.979995728 205.640151978 205.419937134 205.310073853 205.250015259 205.259780884 205.339859009 205.419937134 205.390151978 205.169937134 204.890151978 204.790054321 205.049819946 205.540161133 204.92980957 204.480102539 204.210083008 204.080200195 203.989868164 203.880004883 203.770141602 203.659790039 203.630004883 203.699829102 203.75012207 203.549926758 202.989868164 202.190063477 201.42980957 200.989868164 206.609939575 206.109939575 205.710037231 205.379959106 205.169998169 205.129959106 205.239822388 205.399978638 205.500076294 205.480056763 205.319900513 205.060134888 204.640213013 204.069900513 203.410232544 202.839920044 202.669998169 207.919937134 207.27003479 206.709976196 206.27003479 205.939956665 205.709976196 205.540054321 205.43019104 205.379898071 205.390151978 205.450210571 205.490249634 205.419937134 205.189956665 204.899917603 204.759780884 204.970230103 205.509887695 204.830200195 204.370239258 204.170043945 204.159790039 204.139770508 204.040161133 203.870239258 203.75012207 203.730102539 203.790161133 203.770141602 203.469848633 202.830200195 201.980102539 201.210083008 200.730102539 206.669998169 206.109939575 205.6900177 205.370193481 205.179763794 205.109939575 205.169998169 205.27986145 205.370193481 205.399978638 205.310134888 205.060134888 204.629959106 204.009841919 203.310134888 202.719802856 202.52986145 207.919937134 207.220230103 206.629898071 206.220230103 205.959976196 205.759780884 205.589859009 205.459976196 205.410171509 205.43019104 205.479995728 205.470230103 205.379898071 205.149917603 204.879898071 204.729995728 204.910171509 205.529907227 204.870239258 204.440063477 204.290161133 204.299926758 204.259887695 204.109985352 203.909790039 203.810180664 203.819946289 203.850219727 203.75012207 203.350219727 202.650024414 201.799926758 201.020141602 200.509887695 206.770095825 206.239822388 205.839920044 205.520095825 205.299880981 205.1900177 205.149978638 205.199783325 205.27986145 205.339920044 205.27986145 205.02986145 204.560134888 203.929763794 203.230056763 202.640213013 202.419998169 207.979995728 207.290054321 206.709976196 206.299819946 206.029800415 205.819839478 205.60987854 205.470230103 205.43019104 205.470230103 205.500015259 205.470230103 205.350112915 205.149917603 204.879898071 204.720230103 204.879898071 205.560180664 204.949829102 204.560180664 204.409790039 204.370239258 204.290161133 204.150024414 204.029907227 203.980102539 203.989868164 203.960083008 203.75012207 203.259887695 202.50012207 201.630004883 200.830200195 200.290161133 206.830154419 206.35017395 205.960037231 205.649978638 205.410232544 205.259841919 205.199783325 205.219802856 205.290115356 205.35017395 205.270095825 204.980056763 204.509841919 203.890213013 203.1900177 202.580154419 202.310134888 207.979995728 207.330093384 206.779800415 206.379898071 206.10987854 205.879898071 205.689956665 205.569839478 205.560073853 205.60987854 205.620132446 205.549819946 205.410171509 205.189956665 204.919937134 204.729995728 204.85987854 205.529907227 204.969848633 204.600219727 204.42980957 204.350219727 204.279907227 204.219848633 204.190063477 204.190063477 204.170043945 204.060180664 203.770141602 203.190063477 202.370239258 201.449829102 200.630004883 200.060180664 206.870193481 206.379959106 205.989822388 205.660232544 205.419998169 205.27986145 205.239822388 205.239822388 205.290115356 205.319900513 205.219802856 204.9400177 204.460037231 203.839920044 203.129959106 202.480056763 202.179763794 207.919937134 207.299819946 206.790054321 206.410171509 206.140151978 205.939956665 205.790054321 205.709976196 205.700210571 205.720230103 205.709976196 205.629898071 205.479995728 205.250015259 204.950210571 204.740249634 204.830093384 205.480102539 204.949829102 204.620239258 204.42980957 204.33996582 204.290161133 204.299926758 204.310180664 204.299926758 204.219848633 204.049926758 203.710083008 203.120239258 202.259887695 201.290161133 200.420043945 199.859985352 206.960037231 206.4400177 206.020095825 205.669998169 205.419998169 205.270095825 205.199783325 205.169998169 205.169998169 205.1900177 205.120193481 204.85017395 204.390213013 203.750076294 203.000076294 202.339920044 202.049880981 207.870132446 207.279800415 206.810073853 206.450210571 206.189956665 205.990249634 205.85987854 205.77003479 205.740249634 205.720230103 205.700210571 205.629898071 205.500015259 205.259780884 204.959976196 204.729995728 204.810073853 205.460083008 204.980102539 204.670043945 204.469848633 204.33996582 204.290161133 204.319946289 204.33996582 204.299926758 204.190063477 204.00012207 203.659790039 203.060180664 202.170043945 201.150024414 200.270141602 199.719848633 207.109939575 206.589920044 206.140213013 205.750076294 205.460037231 205.270095825 205.140213013 205.060134888 205.040115356 205.080154419 205.020095825 204.77986145 204.310134888 203.649978638 202.879959106 202.230056763 201.980056763 207.919937134 207.350112915 206.890151978 206.529800415 206.229995728 206.009780884 205.870132446 205.77003479 205.709976196 205.68019104 205.669937134 205.620132446 205.479995728 205.240249634 204.939956665 204.720230103 204.819839478 205.50012207 205.029907227 204.690063477 204.449829102 204.279907227 204.219848633 204.259887695 204.319946289 204.310180664 204.199829102 204.00012207 203.639770508 203.029907227 202.120239258 201.069946289 200.170043945 199.630004883 207.259841919 206.739822388 206.250076294 205.810134888 205.469802856 205.250076294 205.109939575 205.040115356 205.040115356 205.069900513 205.000076294 204.730056763 204.230056763 203.560134888 202.819900513 202.199783325 201.980056763 208.000015259 207.43019104 206.959976196 206.549819946 206.220230103 206.000015259 205.85987854 205.779800415 205.729995728 205.720230103 205.720230103 205.669937134 205.500015259 205.220230103 204.919937134 204.740249634 204.830093384 205.529907227 205.029907227 204.650024414 204.319946289 204.130004883 204.080200195 204.159790039 204.290161133 204.350219727 204.259887695 204.020141602 203.609985352 202.960083008 202.040161133 200.989868164 200.069946289 199.540161133 207.35017395 206.790115356 206.270095825 205.790115356 205.419998169 205.1900177 205.080154419 205.069900513 205.10017395 205.109939575 204.989822388 204.660232544 204.149978638 203.489822388 202.77986145 202.199783325 201.989822388 208.049819946 207.450210571 206.93019104 206.479995728 206.129898071 205.919937134 205.839859009 205.799819946 205.779800415 205.790054321 205.799819946 205.720230103 205.509780884 205.200210571 204.910171509 204.740249634 204.830093384 205.560180664 205.020141602 204.569946289 204.230102539 204.029907227 204.00012207 204.100219727 204.259887695 204.33996582 204.259887695 203.969848633 203.489868164 202.830200195 201.92980957 200.880004883 199.969848633 199.440063477 207.410232544 206.810134888 206.259841919 205.750076294 205.359939575 205.140213013 205.060134888 205.060134888 205.109939575 205.089920044 204.929763794 204.569900513 204.060134888 203.419998169 202.739822388 202.160232544 201.960037231 208.069839478 207.419937134 206.870132446 206.410171509 206.069839478 205.890151978 205.830093384 205.810073853 205.779800415 205.779800415 205.77003479 205.700210571 205.479995728 205.18019104 204.879898071 204.720230103 204.810073853 205.620239258 205.069946289 204.609985352 204.25012207 204.060180664 204.009887695 204.069946289 204.199829102 204.279907227 204.190063477 203.870239258 203.370239258 202.699829102 201.819946289 200.799926758 199.889770508 199.380004883 207.52986145 206.910232544 206.339920044 205.819900513 205.410232544 205.149978638 205.040115356 205.020095825 205.069900513 205.049880981 204.879959106 204.52986145 204.020095825 203.399978638 202.710037231 202.120193481 201.919998169 208.100112915 207.450210571 206.899917603 206.439956665 206.100112915 205.910171509 205.839859009 205.790054321 205.759780884 205.740249634 205.720230103 205.660171509 205.479995728 205.189956665 204.890151978 204.720230103 204.799819946 205.730102539 205.17980957 204.719848633 204.370239258 204.150024414 204.040161133 204.040161133 204.109985352 204.190063477 204.130004883 203.819946289 203.330200195 202.650024414 201.790161133 200.779907227 199.900024414 199.409790039 207.710037231 207.049880981 206.449783325 205.929763794 205.500076294 205.1900177 205.02986145 205.000076294 205.049880981 205.060134888 204.919998169 204.589920044 204.089920044 203.449783325 202.719802856 202.129959106 201.929763794 208.18019104 207.529800415 206.990249634 206.52003479 206.160171509 205.93019104 205.830093384 205.790054321 205.790054321 205.790054321 205.779800415 205.700210571 205.529800415 205.259780884 204.950210571 204.759780884 204.850112915 205.850219727 205.290161133 204.799926758 204.409790039 204.159790039 204.020141602 203.989868164 204.049926758 204.139770508 204.109985352 203.830200195 203.310180664 202.639770508 201.779907227 200.819946289 199.960083008 199.480102539 207.890213013 207.169998169 206.52986145 205.960037231 205.489822388 205.149978638 204.980056763 204.969802856 205.040115356 205.080154419 204.969802856 204.660232544 204.169998169 203.520095825 202.799880981 202.210037231 202.009841919 208.259780884 207.600112915 207.040054321 206.549819946 206.149917603 205.890151978 205.790054321 205.790054321 205.850112915 205.890151978 205.879898071 205.779800415 205.589859009 205.330093384 205.02003479 204.830093384 204.93019104 205.969848633 205.359985352 204.810180664 204.359985352 204.069946289 203.949829102 203.960083008 204.029907227 204.120239258 204.069946289 203.779907227 203.270141602 202.600219727 201.770141602 200.83996582 200.009887695 199.540161133 208.069900513 207.310134888 206.589920044 205.949783325 205.4400177 205.089920044 204.919998169 204.910232544 204.989822388 205.040115356 204.9400177 204.649978638 204.179763794 203.569900513 202.879959106 202.319900513 202.109939575 208.330093384 207.649917603 207.049819946 206.529800415 206.10987854 205.85987854 205.750015259 205.77003479 205.85987854 205.919937134 205.899917603 205.790054321 205.589859009 205.350112915 205.080093384 204.910171509 205.02003479 206.130004883 205.460083008 204.819946289 204.310180664 204.020141602 203.940063477 203.969848633 204.049926758 204.08996582 204.00012207 203.690063477 203.190063477 202.560180664 201.770141602 200.880004883 200.069946289 199.600219727 208.310134888 207.520095825 206.730056763 206.02986145 205.460037231 205.080154419 204.899978638 204.859939575 204.899978638 204.9400177 204.859939575 204.620193481 204.199783325 203.640213013 202.989822388 202.419998169 202.199783325 208.390151978 207.68019104 207.060073853 206.529800415 206.129898071 205.879898071 205.77003479 205.759780884 205.830093384 205.879898071 205.870132446 205.77003479 205.600112915 205.390151978 205.160171509 205.009780884 205.140151978 206.350219727 205.639770508 204.949829102 204.380004883 204.060180664 203.960083008 203.969848633 204.009887695 204.040161133 203.92980957 203.650024414 203.190063477 202.580200195 201.819946289 200.92980957 200.139770508 199.659790039 208.569900513 207.759841919 206.949783325 206.1900177 205.560134888 205.120193481 204.879959106 204.810134888 204.819900513 204.859939575 204.839920044 204.649978638 204.27986145 203.750076294 203.120193481 202.569900513 202.319900513 208.450210571 207.720230103 207.089859009 206.560073853 206.169937134 205.93019104 205.819839478 205.779800415 205.810073853 205.85987854 205.870132446 205.790054321 205.660171509 205.479995728 205.290054321 205.169937134 205.299819946 206.58996582 205.870239258 205.150024414 204.540161133 204.120239258 203.940063477 203.909790039 203.940063477 203.969848633 203.909790039 203.670043945 203.239868164 202.630004883 201.870239258 201.00012207 200.199829102 199.739868164 208.77986145 207.969802856 207.120193481 206.310134888 205.60017395 205.10017395 204.839920044 204.739822388 204.770095825 204.839920044 204.870193481 204.730056763 204.390213013 203.870193481 203.270095825 202.739822388 202.509841919 208.490249634 207.729995728 207.089859009 206.549819946 206.149917603 205.899917603 205.799819946 205.779800415 205.810073853 205.85987854 205.890151978 205.830093384 205.720230103 205.580093384 205.419937134 205.319839478 205.470230103 206.850219727 206.120239258 205.370239258 204.690063477 204.190063477 203.900024414 203.810180664 203.850219727 203.92980957 203.900024414 203.67980957 203.25012207 202.639770508 201.880004883 201.040161133 200.290161133 199.870239258 208.929763794 208.069900513 207.1900177 206.330154419 205.569900513 205.02986145 204.750076294 204.669998169 204.710037231 204.810134888 204.870193481 204.750076294 204.429763794 203.949783325 203.410232544 202.9400177 202.730056763 208.509780884 207.729995728 207.089859009 206.529800415 206.100112915 205.850112915 205.759780884 205.750015259 205.790054321 205.819839478 205.830093384 205.790054321 205.689956665 205.589859009 205.479995728 205.450210571 205.649917603 207.08996582 206.33996582 205.569946289 204.83996582 204.270141602 203.920043945 203.790161133 203.830200195 203.900024414 203.859985352 203.630004883 203.210083008 202.630004883 201.920043945 201.139770508 200.440063477 200.040161133 209.040115356 208.129959106 207.219802856 206.319900513 205.540115356 205.000076294 204.719802856 204.640213013 204.669998169 204.750076294 204.799880981 204.719802856 204.469802856 204.060134888 203.569900513 203.149978638 202.969802856 208.540054321 207.759780884 207.120132446 206.569839478 206.129898071 205.870132446 205.77003479 205.740249634 205.720230103 205.720230103 205.709976196 205.68019104 205.620132446 205.580093384 205.560073853 205.60987854 205.85987854 207.299926758 206.529907227 205.730102539 204.969848633 204.350219727 203.969848633 203.810180664 203.819946289 203.850219727 203.779907227 203.560180664 203.199829102 202.699829102 202.060180664 201.319946289 200.639770508 200.230102539 209.149978638 208.179763794 207.230056763 206.319900513 205.52986145 205.000076294 204.719802856 204.629959106 204.629959106 204.669998169 204.730056763 204.710037231 204.540115356 204.219802856 203.810134888 203.410232544 203.239822388 208.580093384 207.790054321 207.18019104 206.649917603 206.240249634 205.970230103 205.830093384 205.750015259 205.68019104 205.640151978 205.629898071 205.629898071 205.629898071 205.649917603 205.689956665 205.819839478 206.120132446 207.469848633 206.67980957 205.859985352 205.060180664 204.409790039 203.969848633 203.779907227 203.75012207 203.75012207 203.690063477 203.529907227 203.259887695 202.830200195 202.25012207 201.540161133 200.859985352 200.42980957 209.250076294 208.199783325 207.1900177 206.259841919 205.480056763 204.960037231 204.679763794 204.569900513 204.560134888 204.60017395 204.669998169 204.699783325 204.620193481 204.410232544 204.069900513 203.730056763 203.580154419 208.589859009 207.819839478 207.200210571 206.700210571 206.290054321 206.009780884 205.850112915 205.729995728 205.640151978 205.60987854 205.629898071 205.669937134 205.709976196 205.750015259 205.839859009 206.029800415 206.390151978 207.639770508 206.830200195 205.980102539 205.150024414 204.449829102 203.949829102 203.690063477 203.620239258 203.620239258 203.600219727 203.509887695 203.310180664 202.940063477 202.389770508 201.710083008 201.060180664 200.639770508 209.330154419 208.210037231 207.120193481 206.169998169 205.390213013 204.870193481 204.589920044 204.489822388 204.480056763 204.52986145 204.609939575 204.669998169 204.640213013 204.52986145 204.299880981 204.060134888 203.949783325 208.600112915 207.819839478 207.18019104 206.660171509 206.229995728 205.939956665 205.779800415 205.68019104 205.60987854 205.589859009 205.620132446 205.68019104 205.720230103 205.799819946 205.93019104 206.189956665 206.620132446 207.799926758 206.980102539 206.109985352 205.270141602 204.529907227 203.989868164 203.67980957 203.560180664 203.540161133 203.529907227 203.469848633 203.299926758 202.980102539 202.489868164 201.900024414 201.299926758 200.900024414 209.410232544 208.219802856 207.089920044 206.120193481 205.359939575 204.85017395 204.569900513 204.469802856 204.469802856 204.509841919 204.560134888 204.609939575 204.620193481 204.580154419 204.489822388 204.370193481 204.339920044 208.60987854 207.830093384 207.189956665 206.629898071 206.18019104 205.890151978 205.729995728 205.640151978 205.589859009 205.549819946 205.560073853 205.589859009 205.660171509 205.790054321 206.000015259 206.339859009 206.830093384 207.949829102 207.100219727 206.210083008 205.370239258 204.659790039 204.109985352 203.75012207 203.560180664 203.50012207 203.480102539 203.440063477 203.319946289 203.069946289 202.67980957 202.170043945 201.639770508 201.219848633 209.460037231 208.250076294 207.109939575 206.149978638 205.410232544 204.919998169 204.640213013 204.52986145 204.520095825 204.549880981 204.589920044 204.620193481 204.669998169 204.699783325 204.710037231 204.699783325 204.719802856 208.620132446 207.870132446 207.229995728 206.669937134 206.200210571 205.899917603 205.729995728 205.649917603 205.580093384 205.529800415 205.509780884 205.540054321 205.640151978 205.850112915 206.129898071 206.52003479 207.060073853 208.020141602 207.130004883 206.219848633 205.409790039 204.730102539 204.17980957 203.779907227 203.560180664 203.460083008 203.42980957 203.42980957 203.389770508 203.25012207 202.960083008 202.540161133 202.029907227 201.569946289 209.449783325 208.230056763 207.089920044 206.149978638 205.4400177 204.9400177 204.660232544 204.540115356 204.52986145 204.569900513 204.620193481 204.710037231 204.799880981 204.899978638 204.980056763 205.02986145 205.109939575 208.629898071 207.890151978 207.27003479 206.709976196 206.229995728 205.890151978 205.700210571 205.60987854 205.560073853 205.509780884 205.490249634 205.540054321 205.689956665 205.939956665 206.27003479 206.689956665 207.259780884 208.069946289 207.109985352 206.17980957 205.380004883 204.699829102 204.150024414 203.739868164 203.489868164 203.400024414 203.400024414 203.440063477 203.469848633 203.420043945 203.239868164 202.880004883 202.400024414 201.949829102 209.379959106 208.169998169 207.040115356 206.089920044 205.359939575 204.85017395 204.560134888 204.4400177 204.449783325 204.520095825 204.609939575 204.759841919 204.929763794 205.080154419 205.219802856 205.35017395 205.480056763 208.60987854 207.899917603 207.279800415 206.709976196 206.189956665 205.799819946 205.589859009 205.509780884 205.500015259 205.490249634 205.490249634 205.540054321 205.68019104 205.950210571 206.310073853 206.779800415 207.399917603 208.130004883 207.130004883 206.190063477 205.359985352 204.670043945 204.109985352 203.699829102 203.460083008 203.389770508 203.409790039 203.469848633 203.549926758 203.549926758 203.440063477 203.159790039 202.75012207 202.359985352 209.319900513 208.120193481 207.000076294 206.040115356 205.290115356 204.770095825 204.480056763 204.390213013 204.390213013 204.460037231 204.569900513 204.759841919 204.969802856 205.1900177 205.419998169 205.649978638 205.870193481 208.640151978 207.93019104 207.310073853 206.709976196 206.149917603 205.720230103 205.490249634 205.43019104 205.450210571 205.479995728 205.490249634 205.509780884 205.60987854 205.85987854 206.259780884 206.790054321 207.450210571 208.210083008 207.199829102 206.239868164 205.400024414 204.699829102 204.139770508 203.739868164 203.540161133 203.460083008 203.480102539 203.540161133 203.630004883 203.67980957 203.639770508 203.460083008 203.159790039 202.83996582 209.270095825 208.109939575 206.989822388 206.049880981 205.299880981 204.77986145 204.489822388 204.410232544 204.429763794 204.489822388 204.580154419 204.759841919 205.000076294 205.27986145 205.609939575 205.960037231 206.259841919 208.68019104 207.979995728 207.330093384 206.720230103 206.140151978 205.700210571 205.470230103 205.410171509 205.439956665 205.479995728 205.500015259 205.490249634 205.549819946 205.77003479 206.189956665 206.77003479 207.479995728 208.299926758 207.290161133 206.310180664 205.440063477 204.730102539 204.17980957 203.810180664 203.620239258 203.540161133 203.540161133 203.600219727 203.710083008 203.83996582 203.909790039 203.83996582 203.630004883 203.350219727 209.169998169 208.060134888 206.989822388 206.069900513 205.319900513 204.799880981 204.509841919 204.419998169 204.4400177 204.489822388 204.589920044 204.77986145 205.040115356 205.379959106 205.810134888 206.270095825 206.649978638 208.689956665 207.970230103 207.290054321 206.660171509 206.100112915 205.68019104 205.450210571 205.390151978 205.399917603 205.459976196 205.509780884 205.509780884 205.540054321 205.729995728 206.149917603 206.740249634 207.459976196 208.389770508 207.359985352 206.370239258 205.460083008 204.730102539 204.17980957 203.83996582 203.639770508 203.560180664 203.549926758 203.620239258 203.770141602 203.969848633 204.150024414 204.199829102 204.060180664 203.830200195 209.009841919 207.949783325 206.929763794 206.02986145 205.310134888 204.770095825 204.4400177 204.319900513 204.319900513 204.399978638 204.52986145 204.739822388 205.040115356 205.429763794 205.9400177 206.509841919 206.969802856 208.669937134 207.899917603 207.189956665 206.540054321 205.979995728 205.560073853 205.339859009 205.279800415 205.299819946 205.390151978 205.470230103 205.500015259 205.52003479 205.669937134 206.040054321 206.620132446 207.339859009 208.489868164 207.469848633 206.449829102 205.509887695 204.75012207 204.190063477 203.850219727 203.659790039 203.580200195 203.560180664 203.620239258 203.75012207 204.00012207 204.290161133 204.469848633 204.449829102 204.279907227 208.890213013 207.85017395 206.870193481 206.009841919 205.290115356 204.719802856 204.359939575 204.199783325 204.199783325 204.270095825 204.419998169 204.649978638 204.969802856 205.399978638 205.989822388 206.669998169 207.239822388 208.669937134 207.85987854 207.129898071 206.459976196 205.879898071 205.459976196 205.229995728 205.18019104 205.229995728 205.330093384 205.410171509 205.43019104 205.419937134 205.529800415 205.85987854 206.43019104 207.169937134 208.600219727 207.58996582 206.549926758 205.600219727 204.810180664 204.239868164 203.880004883 203.699829102 203.630004883 203.609985352 203.630004883 203.719848633 203.980102539 204.359985352 204.690063477 204.830200195 204.770141602 208.85017395 207.830154419 206.85017395 206.000076294 205.299880981 204.750076294 204.390213013 204.210037231 204.1900177 204.239822388 204.370193481 204.569900513 204.879959106 205.330154419 206.000076294 206.790115356 207.469802856 208.720230103 207.919937134 207.18019104 206.490249634 205.890151978 205.450210571 205.250015259 205.229995728 205.290054321 205.35987854 205.379898071 205.350112915 205.310073853 205.390151978 205.700210571 206.259780884 207.040054321 208.659790039 207.650024414 206.600219727 205.630004883 204.830200195 204.239868164 203.880004883 203.699829102 203.650024414 203.650024414 203.639770508 203.710083008 203.980102539 204.449829102 204.940063477 205.230102539 205.299926758 208.859939575 207.810134888 206.819900513 205.960037231 205.270095825 204.759841919 204.429763794 204.270095825 204.230056763 204.259841919 204.359939575 204.52986145 204.830154419 205.310134888 206.02986145 206.899978638 207.660232544 208.759780884 207.970230103 207.229995728 206.540054321 205.93019104 205.509780884 205.339859009 205.350112915 205.399917603 205.399917603 205.35987854 205.299819946 205.250015259 205.330093384 205.620132446 206.149917603 206.939956665 208.639770508 207.609985352 206.560180664 205.540161133 204.710083008 204.130004883 203.770141602 203.58996582 203.540161133 203.560180664 203.58996582 203.699829102 204.00012207 204.540161133 205.139770508 205.569946289 205.759887695 208.819900513 207.770095825 206.739822388 205.85017395 205.149978638 204.669998169 204.379959106 204.230056763 204.169998169 204.1900177 204.290115356 204.480056763 204.790115356 205.270095825 206.02986145 206.9400177 207.770095825 208.720230103 207.93019104 207.189956665 206.490249634 205.890151978 205.52003479 205.399917603 205.419937134 205.43019104 205.379898071 205.319839478 205.27003479 205.240249634 205.279800415 205.509780884 206.009780884 206.779800415 208.569946289 207.560180664 206.480102539 205.42980957 204.569946289 203.989868164 203.639770508 203.449829102 203.380004883 203.409790039 203.480102539 203.639770508 203.980102539 204.560180664 205.219848633 205.75012207 206.080200195 208.799880981 207.739822388 206.669998169 205.750076294 205.049880981 204.580154419 204.299880981 204.149978638 204.060134888 204.060134888 204.169998169 204.390213013 204.699783325 205.179763794 205.919998169 206.859939575 207.770095825 208.660171509 207.879898071 207.129898071 206.419937134 205.85987854 205.529800415 205.439956665 205.439956665 205.399917603 205.330093384 205.279800415 205.259780884 205.200210571 205.169937134 205.310073853 205.750015259 206.52003479 208.509887695 207.540161133 206.440063477 205.350219727 204.480102539 203.92980957 203.600219727 203.400024414 203.299926758 203.310180664 203.389770508 203.549926758 203.889770508 204.449829102 205.170043945 205.819946289 206.279907227 208.799880981 207.759841919 206.710037231 205.759841919 205.049880981 204.589920044 204.319900513 204.160232544 204.040115356 204.02986145 204.129959106 204.339920044 204.609939575 205.02986145 205.730056763 206.660232544 207.649978638 208.660171509 207.910171509 207.169937134 206.490249634 205.939956665 205.640151978 205.540054321 205.500015259 205.439956665 205.370132446 205.330093384 205.279800415 205.149917603 205.029800415 205.100112915 205.52003479 206.27003479 208.460083008 207.489868164 206.359985352 205.239868164 204.370239258 203.850219727 203.569946289 203.400024414 203.310180664 203.290161133 203.33996582 203.460083008 203.759887695 204.319946289 205.080200195 205.830200195 206.400024414 208.810134888 207.77986145 206.719802856 205.770095825 205.049880981 204.609939575 204.370193481 204.219802856 204.10017395 204.069900513 204.169998169 204.330154419 204.52986145 204.879959106 205.520095825 206.4400177 207.429763794 208.720230103 208.009780884 207.290054321 206.620132446 206.080093384 205.759780884 205.620132446 205.560073853 205.509780884 205.470230103 205.419937134 205.319839478 205.149917603 205.009780884 205.060073853 205.43019104 206.10987854 208.359985352 207.33996582 206.159790039 205.020141602 204.150024414 203.670043945 203.460083008 203.350219727 203.279907227 203.25012207 203.270141602 203.359985352 203.639770508 204.190063477 204.969848633 205.759887695 206.370239258 208.739822388 207.6900177 206.620193481 205.669998169 204.949783325 204.52986145 204.319900513 204.1900177 204.080154419 204.069900513 204.160232544 204.290115356 204.449783325 204.759841919 205.35017395 206.1900177 207.120193481 208.720230103 208.02003479 207.310073853 206.649917603 206.120132446 205.750015259 205.580093384 205.529800415 205.509780884 205.490249634 205.419937134 205.299819946 205.149917603 205.060073853 205.129898071 205.410171509 205.959976196 208.199829102 207.109985352 205.900024414 204.770141602 203.940063477 203.489868164 203.319946289 203.259887695 203.219848633 203.199829102 203.199829102 203.279907227 203.549926758 204.080200195 204.799926758 205.509887695 206.08996582 208.580154419 207.520095825 206.489822388 205.549880981 204.85017395 204.429763794 204.239822388 204.129959106 204.02986145 204.009841919 204.10017395 204.210037231 204.35017395 204.640213013 205.169998169 205.890213013 206.6900177 208.649917603 207.899917603 207.18019104 206.549819946 206.029800415 205.669937134 205.490249634 205.439956665 205.459976196 205.450210571 205.35987854 205.240249634 205.129898071 205.100112915 205.129898071 205.279800415 205.709976196 208.069946289 206.949829102 205.75012207 204.670043945 203.889770508 203.469848633 203.319946289 203.279907227 203.239868164 203.190063477 203.17980957 203.25012207 203.50012207 203.92980957 204.520141602 205.120239258 205.659790039 208.460037231 207.460037231 206.480056763 205.569900513 204.870193481 204.449783325 204.270095825 204.160232544 204.060134888 204.020095825 204.080154419 204.179763794 204.290115356 204.509841919 204.919998169 205.489822388 206.160232544 208.540054321 207.759780884 207.060073853 206.459976196 205.979995728 205.629898071 205.470230103 205.439956665 205.470230103 205.450210571 205.350112915 205.229995728 205.149917603 205.089859009 205.029800415 205.080093384 205.470230103 207.989868164 206.900024414 205.759887695 204.719848633 203.969848633 203.569946289 203.420043945 203.380004883 203.310180664 203.230102539 203.199829102 203.270141602 203.469848633 203.799926758 204.25012207 204.759887695 205.290161133 208.429763794 207.509841919 206.569900513 205.649978638 204.899978638 204.460037231 204.290115356 204.210037231 204.109939575 204.069900513 204.140213013 204.219802856 204.290115356 204.399978638 204.669998169 205.080154419 205.660232544 208.470230103 207.689956665 207.009780884 206.439956665 205.979995728 205.640151978 205.490249634 205.490249634 205.52003479 205.500015259 205.419937134 205.319839478 205.220230103 205.089859009 204.959976196 205.02003479 205.490249634 207.92980957 206.900024414 205.790161133 204.770141602 204.020141602 203.600219727 203.460083008 203.409790039 203.33996582 203.25012207 203.219848633 203.270141602 203.420043945 203.670043945 204.060180664 204.560180664 205.120239258 208.449783325 207.560134888 206.589920044 205.620193481 204.810134888 204.339920044 204.179763794 204.129959106 204.080154419 204.069900513 204.149978638 204.250076294 204.27986145 204.310134888 204.460037231 204.790115356 205.310134888 208.399917603 207.660171509 207.009780884 206.450210571 205.959976196 205.60987854 205.470230103 205.459976196 205.490249634 205.479995728 205.450210571 205.399917603 205.27003479 205.120132446 205.02003479 205.209976196 205.819839478 207.859985352 206.850219727 205.759887695 204.739868164 203.989868164 203.569946289 203.42980957 203.380004883 203.310180664 203.230102539 203.190063477 203.219848633 203.310180664 203.520141602 203.92980957 204.460083008 205.029907227 208.419998169 207.509841919 206.52986145 205.540115356 204.719802856 204.230056763 204.069900513 204.040115356 204.000076294 204.020095825 204.10017395 204.199783325 204.219802856 204.230056763 204.370193481 204.6900177 205.1900177 208.319839478 207.620132446 207.02003479 206.459976196 205.950210571 205.580093384 205.43019104 205.419937134 205.419937134 205.399917603 205.399917603 205.379898071 205.259780884 205.10987854 205.140151978 205.509780884 206.220230103 207.730102539 206.739868164 205.67980957 204.690063477 203.969848633 203.58996582 203.469848633 203.409790039 203.350219727 203.259887695 203.199829102 203.170043945 203.199829102 203.400024414 203.819946289 204.380004883 204.850219727 208.27986145 207.390213013 206.460037231 205.549880981 204.790115356 204.330154419 204.160232544 204.129959106 204.080154419 204.069900513 204.109939575 204.160232544 204.169998169 204.199783325 204.379959106 204.730056763 205.219802856 208.229995728 207.569839478 207.02003479 206.500015259 205.990249634 205.629898071 205.509780884 205.509780884 205.470230103 205.419937134 205.399917603 205.35987854 205.220230103 205.089859009 205.200210571 205.660171509 206.379898071 207.520141602 206.549926758 205.529907227 204.620239258 203.949829102 203.609985352 203.520141602 203.489868164 203.449829102 203.359985352 203.270141602 203.17980957 203.170043945 203.350219727 203.75012207 204.25012207 204.580200195 208.02986145 207.1900177 206.35017395 205.549880981 204.870193481 204.460037231 204.290115356 204.259841919 204.230056763 204.199783325 204.179763794 204.160232544 204.160232544 204.239822388 204.4400177 204.77986145 205.219802856 208.120132446 207.479995728 206.979995728 206.490249634 206.000015259 205.649917603 205.569839478 205.600112915 205.589859009 205.529800415 205.490249634 205.419937134 205.259780884 205.120132446 205.209976196 205.629898071 206.250015259 207.25012207 206.310180664 205.359985352 204.480102539 203.830200195 203.50012207 203.42980957 203.460083008 203.469848633 203.42980957 203.33996582 203.239868164 203.210083008 203.389770508 203.739868164 204.100219727 204.239868164 207.739822388 206.919998169 206.10017395 205.330154419 204.6900177 204.27986145 204.129959106 204.140213013 204.179763794 204.1900177 204.199783325 204.1900177 204.210037231 204.310134888 204.489822388 204.730056763 205.069900513 207.950210571 207.279800415 206.77003479 206.27003479 205.779800415 205.439956665 205.35987854 205.459976196 205.52003479 205.509780884 205.509780884 205.490249634 205.370132446 205.240249634 205.27003479 205.549819946 206.029800415 206.989868164 206.109985352 205.219848633 204.380004883 203.719848633 203.350219727 203.279907227 203.370239258 203.42980957 203.409790039 203.330200195 203.259887695 203.290161133 203.460083008 203.710083008 203.909790039 203.900024414 207.509841919 206.669998169 205.830154419 205.049880981 204.419998169 204.009841919 203.859939575 203.890213013 203.980056763 204.060134888 204.120193481 204.1900177 204.270095825 204.379959106 204.489822388 204.580154419 204.770095825 207.720230103 206.990249634 206.439956665 205.959976196 205.470230103 205.129898071 205.060073853 205.18019104 205.279800415 205.339859009 205.390151978 205.450210571 205.439956665 205.379898071 205.379898071 205.560073853 205.919937134 206.83996582 206.029907227 205.25012207 204.50012207 203.870239258 203.469848633 203.370239258 203.42980957 203.480102539 203.420043945 203.310180664 203.259887695 203.33996582 203.489868164 203.639770508 203.659790039 203.560180664 207.429763794 206.60017395 205.799880981 205.109939575 204.569900513 204.210037231 204.040115356 204.020095825 204.040115356 204.069900513 204.120193481 204.199783325 204.310134888 204.419998169 204.460037231 204.419998169 204.500076294 207.52003479 206.750015259 206.209976196 205.839859009 205.500015259 205.229995728 205.140151978 205.189956665 205.250015259 205.27003479 205.299819946 205.379898071 205.450210571 205.470230103 205.490249634 205.60987854 205.919937134 206.779907227 206.009887695 205.33996582 204.730102539 204.210083008 203.830200195 203.690063477 203.690063477 203.639770508 203.480102539 203.299926758 203.239868164 203.33996582 203.449829102 203.469848633 203.380004883 203.219848633 207.399978638 206.620193481 205.980056763 205.520095825 205.149978638 204.85017395 204.640213013 204.509841919 204.399978638 204.27986145 204.210037231 204.219802856 204.290115356 204.359939575 204.370193481 204.299880981 204.339920044 207.399917603 206.600112915 206.149917603 205.970230103 205.85987854 205.709976196 205.60987854 205.569839478 205.52003479 205.43019104 205.350112915 205.379898071 205.470230103 205.52003479 205.549819946 205.640151978 205.93019104 206.659790039 205.870239258 205.219848633 204.690063477 204.259887695 203.92980957 203.770141602 203.739868164 203.650024414 203.420043945 203.199829102 203.150024414 203.259887695 203.350219727 203.279907227 203.120239258 202.969848633 207.199783325 206.4400177 205.949783325 205.660232544 205.390213013 205.069900513 204.819900513 204.649978638 204.509841919 204.330154419 204.179763794 204.140213013 204.179763794 204.210037231 204.1900177 204.149978638 204.210037231 207.250015259 206.43019104 206.040054321 206.009780884 206.029800415 205.939956665 205.819839478 205.750015259 205.669937134 205.529800415 205.399917603 205.410171509 205.490249634 205.560073853 205.569839478 205.640151978 205.919937134 206.469848633 205.560180664 204.779907227 204.190063477 203.730102539 203.400024414 203.270141602 203.279907227 203.270141602 203.120239258 202.949829102 202.960083008 203.109985352 203.199829102 203.109985352 202.940063477 202.819946289 206.750076294 205.949783325 205.469802856 205.160232544 204.750076294 204.290115356 204.000076294 203.949783325 203.969802856 203.929763794 203.899978638 203.929763794 204.000076294 204.009841919 203.969802856 203.949783325 204.02986145 207.000015259 206.140151978 205.720230103 205.629898071 205.560073853 205.379898071 205.259780884 205.250015259 205.290054321 205.250015259 205.209976196 205.299819946 205.490249634 205.600112915 205.600112915 205.620132446 205.890151978 206.290161133 205.279907227 204.330200195 203.58996582 203.020141602 202.609985352 202.480102539 202.600219727 202.739868164 202.730102539 202.67980957 202.779907227 202.980102539 203.08996582 203.00012207 202.830200195 202.739868164 206.319900513 205.469802856 204.890213013 204.390213013 203.739822388 203.109939575 202.839920044 202.960037231 203.219802856 203.399978638 203.560134888 203.770095825 203.929763794 203.960037231 203.870193481 203.77986145 203.810134888 206.729995728 205.870132446 205.370132446 205.089859009 204.790054321 204.459976196 204.319839478 204.450210571 204.649917603 204.759780884 204.85987854 205.10987854 205.450210571 205.640151978 205.629898071 205.640151978 205.890151978 206.25012207 205.230102539 204.219848633 203.370239258 202.699829102 202.210083008 202.040161133 202.17980957 202.409790039 202.520141602 202.569946289 202.719848633 202.969848633 203.100219727 203.009887695 202.83996582 202.75012207 206.199783325 205.370193481 204.750076294 204.109939575 203.319900513 202.629959106 202.410232544 202.629959106 202.969802856 203.230056763 203.489822388 203.819900513 204.069900513 204.10017395 203.9400177 203.759841919 203.6900177 206.660171509 205.870132446 205.330093384 204.919937134 204.450210571 204.02003479 203.890151978 204.089859009 204.35987854 204.500015259 204.649917603 205.000015259 205.439956665 205.700210571 205.700210571 205.689956665 205.93019104 206.279907227 205.290161133 204.33996582 203.529907227 202.870239258 202.350219727 202.100219727 202.170043945 202.370239258 202.520141602 202.600219727 202.770141602 203.049926758 203.219848633 203.159790039 202.980102539 202.870239258 206.370193481 205.629959106 205.020095825 204.390213013 203.660232544 203.060134888 202.879959106 203.049880981 203.290115356 203.4400177 203.640213013 203.969802856 204.239822388 204.259841919 204.080154419 203.859939575 203.719802856 206.819839478 206.089859009 205.580093384 205.169937134 204.700210571 204.279800415 204.149917603 204.330093384 204.529800415 204.60987854 204.720230103 205.060073853 205.52003479 205.790054321 205.790054321 205.77003479 206.000015259 206.170043945 205.210083008 204.33996582 203.650024414 203.100219727 202.609985352 202.310180664 202.270141602 202.409790039 202.540161133 202.630004883 202.819946289 203.120239258 203.359985352 203.380004883 203.239868164 203.120239258 206.489822388 205.799880981 205.230056763 204.679763794 204.10017395 203.640213013 203.460037231 203.500076294 203.560134888 203.60017395 203.750076294 204.02986145 204.259841919 204.270095825 204.120193481 203.9400177 203.819900513 206.979995728 206.250015259 205.759780884 205.419937134 205.060073853 204.709976196 204.549819946 204.629898071 204.740249634 204.790054321 204.890151978 205.200210571 205.60987854 205.850112915 205.850112915 205.839859009 206.069839478 205.909790039 204.909790039 204.080200195 203.50012207 203.060180664 202.670043945 202.389770508 202.299926758 202.389770508 202.509887695 202.630004883 202.830200195 203.150024414 203.469848633 203.609985352 203.549926758 203.42980957 206.379959106 205.640213013 205.040115356 204.580154419 204.169998169 203.810134888 203.580154419 203.500076294 203.480056763 203.520095825 203.699783325 203.980056763 204.179763794 204.1900177 204.069900513 203.960037231 203.890213013 207.009780884 206.18019104 205.649917603 205.35987854 205.10987854 204.819839478 204.620132446 204.600112915 204.68019104 204.779800415 204.950210571 205.290054321 205.660171509 205.870132446 205.879898071 205.890151978 206.129898071 205.650024414 204.639770508 203.850219727 203.330200195 202.960083008 202.659790039 202.420043945 202.330200195 202.370239258 202.50012207 202.650024414 202.880004883 203.230102539 203.609985352 203.870239258 203.889770508 203.790161133 206.129959106 205.319900513 204.719802856 204.35017395 204.060134888 203.739822388 203.469802856 203.310134888 203.27986145 203.379959106 203.649978638 203.969802856 204.169998169 204.1900177 204.10017395 204.009841919 203.960037231 206.899917603 206.009780884 205.439956665 205.160171509 204.979995728 204.759780884 204.540054321 204.450210571 204.52003479 204.700210571 204.959976196 205.319839478 205.68019104 205.890151978 205.919937134 205.959976196 206.200210571 205.560180664 204.630004883 203.920043945 203.409790039 203.049926758 202.770141602 202.569946289 202.460083008 202.449829102 202.529907227 202.710083008 202.989868164 203.389770508 203.83996582 204.17980957 204.270141602 204.199829102 205.960037231 205.149978638 204.589920044 204.299880981 204.069900513 203.770095825 203.469802856 203.290115356 203.250076294 203.379959106 203.660232544 204.009841919 204.270095825 204.330154419 204.259841919 204.149978638 204.069900513 206.799819946 205.970230103 205.399917603 205.10987854 204.959976196 204.790054321 204.600112915 204.500015259 204.540054321 204.700210571 204.970230103 205.330093384 205.689956665 205.93019104 206.029800415 206.10987854 206.330093384 205.620239258 204.830200195 204.210083008 203.690063477 203.239868164 202.920043945 202.699829102 202.569946289 202.489868164 202.520141602 202.710083008 203.080200195 203.569946289 204.100219727 204.520141602 204.67980957 204.659790039 205.899978638 205.140213013 204.649978638 204.339920044 204.080154419 203.770095825 203.500076294 203.359939575 203.330154419 203.419998169 203.640213013 204.000076294 204.339920044 204.509841919 204.489822388 204.359939575 204.270095825 206.77003479 206.060073853 205.540054321 205.220230103 205.009780884 204.85987854 204.729995728 204.660171509 204.660171509 204.750015259 204.970230103 205.319839478 205.709976196 206.02003479 206.189956665 206.299819946 206.52003479 205.710083008 205.040161133 204.469848633 203.880004883 203.299926758 202.870239258 202.639770508 202.50012207 202.400024414 202.42980957 202.670043945 203.109985352 203.710083008 204.330200195 204.830200195 205.069946289 205.120239258 205.839920044 205.149978638 204.660232544 204.270095825 203.890213013 203.52986145 203.319900513 203.290115356 203.310134888 203.370193481 203.560134888 203.919998169 204.35017395 204.629959106 204.6900177 204.60017395 204.500076294 206.759780884 206.160171509 205.660171509 205.229995728 204.899917603 204.720230103 204.669937134 204.669937134 204.669937134 204.720230103 204.910171509 205.279800415 205.740249634 206.10987854 206.330093384 206.479995728 206.709976196 205.770141602 205.08996582 204.509887695 203.850219727 203.170043945 202.670043945 202.42980957 202.319946289 202.270141602 202.330200195 202.620239258 203.130004883 203.799926758 204.509887695 205.08996582 205.42980957 205.560180664 205.679763794 205.049880981 204.560134888 204.080154419 203.60017395 203.239822388 203.109939575 203.149978638 203.219802856 203.299880981 203.500076294 203.899978638 204.399978638 204.770095825 204.910232544 204.85017395 204.759841919 206.720230103 206.149917603 205.629898071 205.10987854 204.669937134 204.450210571 204.450210571 204.529800415 204.569839478 204.629898071 204.839859009 205.250015259 205.759780884 206.189956665 206.439956665 206.60987854 206.839859009 205.699829102 204.949829102 204.310180664 203.650024414 203.009887695 202.540161133 202.299926758 202.190063477 202.159790039 202.290161133 202.630004883 203.17980957 203.889770508 204.659790039 205.33996582 205.770141602 205.969848633 205.469802856 204.870193481 204.399978638 203.9400177 203.520095825 203.239822388 203.149978638 203.169998169 203.1900177 203.270095825 203.52986145 203.989822388 204.549880981 204.980056763 205.169998169 205.149978638 205.060134888 206.640151978 206.02003479 205.509780884 204.979995728 204.560073853 204.350112915 204.370132446 204.459976196 204.500015259 204.569839478 204.810073853 205.259780884 205.819839478 206.27003479 206.549819946 206.720230103 206.919937134 205.449829102 204.569946289 203.900024414 203.330200195 202.880004883 202.560180664 202.359985352 202.199829102 202.130004883 202.259887695 202.630004883 203.219848633 203.949829102 204.790161133 205.580200195 206.109985352 206.359985352 205.270095825 204.629959106 204.160232544 203.810134888 203.589920044 203.469802856 203.410232544 203.310134888 203.219802856 203.259841919 203.549880981 204.089920044 204.710037231 205.1900177 205.419998169 205.429763794 205.35017395 206.509780884 205.819839478 205.319839478 204.919937134 204.629898071 204.509780884 204.529800415 204.549819946 204.529800415 204.580093384 204.830093384 205.299819946 205.85987854 206.350112915 206.669937134 206.85987854 207.029800415 205.060180664 204.100219727 203.389770508 202.960083008 202.739868164 202.639770508 202.50012207 202.299926758 202.159790039 202.25012207 202.630004883 203.219848633 203.980102539 204.870239258 205.75012207 206.380004883 206.67980957 205.169998169 204.419998169 203.879959106 203.60017395 203.560134888 203.609939575 203.569900513 203.410232544 203.239822388 203.250076294 203.569900513 204.129959106 204.770095825 205.290115356 205.569900513 205.620193481 205.580154419 206.399917603 205.629898071 205.10987854 204.819839478 204.700210571 204.700210571 204.720230103 204.669937134 204.589859009 204.629898071 204.890151978 205.339859009 205.890151978 206.399917603 206.779800415 207.02003479 207.189956665 204.799926758 203.83996582 203.100219727 202.699829102 202.609985352 202.639770508 202.600219727 202.400024414 202.239868164 202.319946289 202.67980957 203.25012207 204.00012207 204.900024414 205.830200195 206.549926758 206.909790039 205.27986145 204.419998169 203.759841919 203.449783325 203.4400177 203.520095825 203.500076294 203.370193481 203.250076294 203.319900513 203.640213013 204.160232544 204.790115356 205.330154419 205.649978638 205.750076294 205.759841919 206.399917603 205.549819946 204.970230103 204.68019104 204.640151978 204.720230103 204.750015259 204.689956665 204.629898071 204.700210571 204.970230103 205.390151978 205.910171509 206.439956665 206.879898071 207.18019104 207.35987854 204.900024414 204.060180664 203.299926758 202.810180664 202.630004883 202.630004883 202.58996582 202.449829102 202.350219727 202.449829102 202.790161133 203.319946289 204.020141602 204.900024414 205.859985352 206.639770508 207.069946289 205.569900513 204.719802856 204.020095825 203.620193481 203.469802856 203.419998169 203.359939575 203.290115356 203.299880981 203.4400177 203.739822388 204.210037231 204.810134888 205.390213013 205.770095825 205.899978638 205.9400177 206.569839478 205.720230103 205.080093384 204.709976196 204.60987854 204.649917603 204.669937134 204.629898071 204.629898071 204.759780884 205.049819946 205.450210571 205.93019104 206.459976196 206.959976196 207.319839478 207.560073853 205.230102539 204.569946289 203.870239258 203.270141602 202.889770508 202.690063477 202.560180664 202.449829102 202.42980957 202.560180664 202.870239258 203.350219727 204.009887695 204.889770508 205.880004883 206.739868164 207.239868164 205.85017395 205.120193481 204.509841919 204.089920044 203.799880981 203.52986145 203.319900513 203.239822388 203.330154419 203.509841919 203.790115356 204.210037231 204.810134888 205.449783325 205.919998169 206.129959106 206.210037231 206.819839478 206.069839478 205.439956665 205.000015259 204.77003479 204.689956665 204.640151978 204.600112915 204.640151978 204.810073853 205.089859009 205.450210571 205.93019104 206.490249634 207.049819946 207.479995728 207.779800415 205.409790039 204.92980957 204.33996582 203.730102539 203.219848633 202.830200195 202.580200195 202.449829102 202.460083008 202.609985352 202.889770508 203.330200195 203.960083008 204.83996582 205.870239258 206.799926758 207.409790039 205.919998169 205.310134888 204.859939575 204.520095825 204.179763794 203.77986145 203.449783325 203.290115356 203.359939575 203.520095825 203.750076294 204.140213013 204.739822388 205.4400177 206.02986145 206.379959106 206.549880981 206.970230103 206.350112915 205.819839478 205.370132446 205.080093384 204.890151978 204.779800415 204.709976196 204.720230103 204.850112915 205.089859009 205.43019104 205.919937134 206.509780884 207.120132446 207.640151978 208.040054321 205.219848633 204.810180664 204.359985352 203.870239258 203.389770508 202.960083008 202.650024414 202.50012207 202.520141602 202.650024414 202.900024414 203.310180664 203.920043945 204.759887695 205.779907227 206.799926758 207.540161133 205.750076294 205.1900177 204.85017395 204.609939575 204.339920044 203.969802856 203.640213013 203.460037231 203.460037231 203.560134888 203.750076294 204.109939575 204.679763794 205.390213013 206.049880981 206.540115356 206.859939575 206.919937134 206.399917603 205.959976196 205.580093384 205.290054321 205.100112915 204.990249634 204.93019104 204.899917603 204.959976196 205.120132446 205.439956665 205.919937134 206.52003479 207.160171509 207.759780884 208.290054321 204.83996582 204.420043945 204.049926758 203.690063477 203.33996582 202.989868164 202.710083008 202.569946289 202.560180664 202.670043945 202.920043945 203.330200195 203.92980957 204.710083008 205.67980957 206.719848633 207.580200195 205.620193481 205.02986145 204.6900177 204.480056763 204.27986145 204.020095825 203.790115356 203.649978638 203.629959106 203.679763794 203.85017395 204.169998169 204.699783325 205.379959106 206.069900513 206.660232544 207.129959106 206.799819946 206.290054321 205.890151978 205.549819946 205.310073853 205.169937134 205.129898071 205.120132446 205.100112915 205.100112915 205.189956665 205.470230103 205.939956665 206.52003479 207.140151978 207.810073853 208.490249634 204.650024414 204.199829102 203.799926758 203.489868164 203.210083008 202.949829102 202.730102539 202.58996582 202.560180664 202.630004883 202.880004883 203.330200195 203.949829102 204.699829102 205.630004883 206.659790039 207.600219727 205.710037231 205.089920044 204.6900177 204.419998169 204.199783325 204.009841919 203.870193481 203.790115356 203.750076294 203.759841919 203.890213013 204.219802856 204.770095825 205.449783325 206.149978638 206.799880981 207.359939575 206.759780884 206.229995728 205.799819946 205.459976196 205.220230103 205.120132446 205.140151978 205.189956665 205.200210571 205.169937134 205.229995728 205.500015259 205.950210571 206.509780884 207.120132446 207.850112915 208.660171509 204.699829102 204.230102539 203.799926758 203.440063477 203.150024414 202.909790039 202.719848633 202.569946289 202.50012207 202.540161133 202.779907227 203.259887695 203.920043945 204.710083008 205.630004883 206.670043945 207.630004883 205.890213013 205.299880981 204.879959106 204.540115356 204.239822388 204.020095825 203.919998169 203.870193481 203.790115356 203.730056763 203.819900513 204.179763794 204.77986145 205.500076294 206.259841919 206.949783325 207.549880981 206.830093384 206.27003479 205.819839478 205.450210571 205.200210571 205.089859009 205.100112915 205.169937134 205.189956665 205.169937134 205.209976196 205.470230103 205.919937134 206.470230103 207.100112915 207.890151978 208.799819946 204.759887695 204.310180664 203.880004883 203.480102539 203.159790039 202.909790039 202.710083008 202.58996582 202.520141602 202.529907227 202.719848633 203.159790039 203.830200195 204.659790039 205.620239258 206.670043945 207.650024414 205.929763794 205.410232544 205.02986145 204.669998169 204.319900513 204.089920044 203.989822388 203.949783325 203.859939575 203.750076294 203.790115356 204.120193481 204.699783325 205.460037231 206.270095825 207.020095825 207.679763794 206.850112915 206.279800415 205.830093384 205.479995728 205.229995728 205.089859009 205.080093384 205.160171509 205.209976196 205.189956665 205.220230103 205.450210571 205.879898071 206.410171509 207.049819946 207.879898071 208.879898071 204.650024414 204.25012207 203.870239258 203.50012207 203.150024414 202.859985352 202.690063477 202.630004883 202.620239258 202.639770508 202.779907227 203.139770508 203.75012207 204.560180664 205.540161133 206.609985352 207.609985352 205.830154419 205.339920044 205.02986145 204.710037231 204.379959106 204.129959106 204.060134888 204.049880981 204.000076294 203.890213013 203.890213013 204.129959106 204.629959106 205.330154419 206.160232544 206.969802856 207.719802856 206.77003479 206.189956665 205.759780884 205.450210571 205.220230103 205.069839478 205.069839478 205.160171509 205.240249634 205.250015259 205.279800415 205.479995728 205.85987854 206.339859009 206.939956665 207.77003479 208.819839478 204.489868164 204.150024414 203.850219727 203.50012207 203.109985352 202.790161133 202.639770508 202.639770508 202.690063477 202.75012207 202.870239258 203.170043945 203.710083008 204.489868164 205.440063477 206.50012207 207.489868164 205.770095825 205.270095825 204.969802856 204.6900177 204.379959106 204.140213013 204.069900513 204.089920044 204.080154419 204.009841919 204.020095825 204.1900177 204.580154419 205.179763794 205.969802856 206.85017395 207.679763794 206.68019104 206.10987854 205.700210571 205.399917603 205.18019104 205.029800415 205.009780884 205.120132446 205.229995728 205.250015259 205.279800415 205.490249634 205.850112915 206.279800415 206.790054321 207.560073853 208.60987854 204.440063477 204.159790039 203.909790039 203.549926758 203.120239258 202.770141602 202.630004883 202.650024414 202.710083008 202.75012207 202.859985352 203.159790039 203.699829102 204.469848633 205.42980957 206.449829102 207.400024414 205.85017395 205.339920044 205.009841919 204.699783325 204.370193481 204.120193481 204.040115356 204.049880981 204.040115356 204.009841919 204.02986145 204.199783325 204.52986145 205.049880981 205.799880981 206.699783325 207.569900513 206.689956665 206.149917603 205.77003479 205.470230103 205.209976196 205.040054321 204.990249634 205.080093384 205.169937134 205.160171509 205.189956665 205.410171509 205.799819946 206.220230103 206.669937134 207.310073853 208.299819946 204.449829102 204.190063477 203.960083008 203.569946289 203.120239258 202.779907227 202.67980957 202.719848633 202.739868164 202.730102539 202.799926758 203.08996582 203.650024414 204.449829102 205.42980957 206.469848633 207.389770508 205.980056763 205.4400177 205.060134888 204.719802856 204.379959106 204.129959106 204.040115356 204.040115356 204.009841919 203.980056763 204.020095825 204.1900177 204.489822388 204.969802856 205.669998169 206.520095825 207.370193481 206.750015259 206.259780884 205.899917603 205.60987854 205.339859009 205.10987854 205.040054321 205.100112915 205.149917603 205.10987854 205.10987854 205.339859009 205.750015259 206.160171509 206.540054321 207.100112915 207.959976196 204.380004883 204.100219727 203.819946289 203.42980957 203.00012207 202.739868164 202.719848633 202.790161133 202.810180664 202.779907227 202.819946289 203.069946289 203.560180664 204.330200195 205.350219727 206.460083008 207.42980957 206.000076294 205.4400177 205.020095825 204.669998169 204.339920044 204.109939575 204.060134888 204.089920044 204.089920044 204.060134888 204.109939575 204.259841919 204.520095825 204.919998169 205.520095825 206.27986145 207.080154419 206.709976196 206.27003479 205.950210571 205.669937134 205.379898071 205.149917603 205.060073853 205.10987854 205.169937134 205.140151978 205.160171509 205.370132446 205.720230103 206.049819946 206.370132446 206.830093384 207.629898071 204.199829102 203.830200195 203.50012207 203.159790039 202.83996582 202.659790039 202.670043945 202.770141602 202.830200195 202.880004883 202.960083008 203.150024414 203.50012207 204.139770508 205.150024414 206.359985352 207.449829102 205.9400177 205.319900513 204.870193481 204.540115356 204.270095825 204.10017395 204.060134888 204.120193481 204.169998169 204.169998169 204.230056763 204.370193481 204.580154419 204.899978638 205.370193481 206.009841919 206.750076294 206.60987854 206.160171509 205.839859009 205.580093384 205.310073853 205.089859009 205.000015259 205.060073853 205.140151978 205.18019104 205.240249634 205.439956665 205.689956665 205.899917603 206.10987854 206.509780884 207.27003479 204.009887695 203.569946289 203.230102539 202.989868164 202.810180664 202.710083008 202.67980957 202.710083008 202.799926758 202.92980957 203.100219727 203.239868164 203.440063477 203.920043945 204.870239258 206.190063477 207.440063477 205.899978638 205.199783325 204.739822388 204.460037231 204.270095825 204.129959106 204.10017395 204.160232544 204.199783325 204.219802856 204.259841919 204.370193481 204.540115356 204.799880981 205.210037231 205.759841919 206.469802856 206.52003479 206.040054321 205.729995728 205.500015259 205.27003479 205.080093384 204.979995728 205.000015259 205.060073853 205.120132446 205.229995728 205.410171509 205.60987854 205.729995728 205.850112915 206.189956665 206.890151978 203.859985352 203.370239258 203.080200195 202.980102539 202.980102539 202.960083008 202.889770508 202.810180664 202.830200195 202.960083008 203.109985352 203.219848633 203.310180664 203.690063477 204.600219727 205.989868164 207.380004883 205.879959106 205.129959106 204.669998169 204.469802856 204.339920044 204.250076294 204.219802856 204.27986145 204.299880981 204.250076294 204.1900177 204.230056763 204.359939575 204.589920044 204.989822388 205.560134888 206.259841919 206.459976196 205.979995728 205.689956665 205.52003479 205.379898071 205.229995728 205.129898071 205.100112915 205.080093384 205.049819946 205.100112915 205.279800415 205.470230103 205.580093384 205.660171509 205.939956665 206.549819946 203.719848633 203.210083008 202.969848633 203.00012207 203.130004883 203.199829102 203.159790039 203.069946289 203.00012207 203.020141602 203.060180664 203.069946289 203.109985352 203.440063477 204.319946289 205.75012207 207.259887695 205.790115356 205.069900513 204.660232544 204.480056763 204.390213013 204.339920044 204.379959106 204.489822388 204.509841919 204.390213013 204.199783325 204.080154419 204.109939575 204.310134888 204.730056763 205.330154419 206.069900513 206.35987854 205.899917603 205.660171509 205.549819946 205.470230103 205.379898071 205.330093384 205.299819946 205.220230103 205.089859009 205.029800415 205.129898071 205.299819946 205.439956665 205.540054321 205.759780884 206.27003479 203.630004883 203.170043945 202.980102539 203.009887695 203.120239258 203.199829102 203.219848633 203.219848633 203.190063477 203.120239258 203.029907227 202.949829102 202.949829102 203.199829102 204.00012207 205.400024414 207.020141602 205.649978638 205.060134888 204.739822388 204.569900513 204.419998169 204.339920044 204.410232544 204.60017395 204.699783325 204.569900513 204.310134888 204.069900513 203.969802856 204.060134888 204.410232544 205.009841919 205.790115356 206.209976196 205.810073853 205.629898071 205.540054321 205.43019104 205.330093384 205.310073853 205.370132446 205.35987854 205.220230103 205.089859009 205.080093384 205.18019104 205.27003479 205.370132446 205.589859009 206.029800415 217.840026855 217.279968262 216.799987793 216.469909668 216.369812012 216.500183105 216.639831543 216.529968262 216.290222168 216.250183105 216.480163574 216.650085449 216.529968262 216.159851074 215.750183105 215.360046387 215.049987793 218.389801025 217.529937744 216.659820557 216.069976807 215.96987915 216.150054932 216.230133057 216.069976807 215.869781494 215.8800354 216.100250244 216.330230713 216.449859619 216.350250244 215.920074463 215.270172119 214.770172119 218.179840088 217.71987915 217.100250244 216.610015869 216.440093994 216.489898682 216.46987915 216.239898682 215.980133057 215.949859619 216.1300354 216.369781494 216.54019165 216.589996338 216.480133057 216.239898682 216.020172119 217.329772949 216.540222168 215.989929199 215.739929199 215.840026855 216.190124512 216.50994873 216.50994873 216.279968262 216.199890137 216.409851074 216.59979248 216.520202637 216.199890137 215.810241699 215.409851074 215.049987793 218.060211182 217.060211182 216.080230713 215.46987915 215.420074463 215.71987915 215.929840088 215.839996338 215.659820557 215.699859619 216.000152588 216.319976807 216.509918213 216.429840088 216.04019165 215.46987915 215.069976807 217.900054932 217.279937744 216.589996338 216.150054932 216.100250244 216.259918213 216.29019165 216.069976807 215.819976807 215.850250244 216.159820557 216.509918213 216.679840088 216.6300354 216.46987915 216.299957275 216.199859619 216.770202637 215.92010498 215.380065918 215.159851074 215.250183105 215.619812012 216.070007324 216.310241699 216.320007324 216.340026855 216.520202637 216.639831543 216.500183105 216.17010498 215.829772949 215.480163574 215.09979248 217.54019165 216.619781494 215.739898682 215.150054932 215.04019165 215.310211182 215.580230713 215.650054932 215.610015869 215.730133057 216.04019165 216.3800354 216.560211182 216.46987915 216.119781494 215.670074463 215.360015869 217.509918213 216.819976807 216.139801025 215.730133057 215.699859619 215.900054932 216.029937744 215.96987915 215.889801025 216.04019165 216.389801025 216.71987915 216.779937744 216.610015869 216.389801025 216.259918213 216.239898682 216.630065918 216.020202637 215.699890137 215.529968262 215.440124512 215.610046387 216.029968262 216.449890137 216.659851074 216.770202637 216.860046387 216.820007324 216.540222168 216.130065918 215.779968262 215.480163574 215.139831543 217.360015869 216.730133057 216.170074463 215.710113525 215.480133057 215.610015869 215.929840088 216.170074463 216.270172119 216.339996338 216.489898682 216.650054932 216.699859619 216.560211182 216.259918213 215.900054932 215.619781494 217.389801025 216.839996338 216.310211182 215.96987915 215.909820557 216.049957275 216.270172119 216.429840088 216.560211182 216.730133057 216.940093994 217.049957275 216.920074463 216.6300354 216.350250244 216.21987915 216.230133057 217.060241699 216.869812012 216.889831543 216.810241699 216.570007324 216.489929199 216.779968262 217.17010498 217.369812012 217.360046387 217.290222168 217.070007324 216.639831543 216.090026855 215.690124512 215.449890137 215.190124512 217.699859619 217.460113525 217.270172119 216.960113525 216.679840088 216.730133057 217.089996338 217.449859619 217.54019165 217.420074463 217.239898682 217.069976807 216.900054932 216.670074463 216.409820557 216.1300354 215.8800354 217.690093994 217.400054932 217.110015869 216.889801025 216.810211182 216.920074463 217.199859619 217.509918213 217.690093994 217.699859619 217.6300354 217.440093994 217.110015869 216.710113525 216.409820557 216.259918213 216.239898682 217.590026855 217.719909668 217.940124512 217.92010498 217.639831543 217.50994873 217.739929199 218.020202637 218.020202637 217.770202637 217.50994873 217.219909668 216.730163574 216.119812012 215.659851074 215.449890137 215.25994873 218.150054932 218.119781494 218.119781494 217.929840088 217.699859619 217.779937744 218.199859619 218.580230713 218.569976807 218.199859619 217.71987915 217.310211182 216.96987915 216.690093994 216.489898682 216.319976807 216.110015869 218.020172119 217.929840088 217.819976807 217.71987915 217.670074463 217.819976807 218.170074463 218.500152588 218.569976807 218.360015869 218.020172119 217.639801025 217.21987915 216.779937744 216.440093994 216.29019165 216.250152588 217.679870605 217.820007324 217.980163574 217.92010498 217.719909668 217.75994873 218.119812012 218.380065918 218.199890137 217.770202637 217.440124512 217.210144043 216.820007324 216.239929199 215.75994873 215.549987793 215.389831543 218.1300354 218.069976807 218.029937744 217.889801025 217.770172119 217.989898682 218.480133057 218.810211182 218.670074463 218.159820557 217.619781494 217.210113525 216.900054932 216.650054932 216.529937744 216.46987915 216.369781494 217.960113525 217.869781494 217.770172119 217.710113525 217.739898682 218.000152588 218.429840088 218.759918213 218.699859619 218.330230713 217.909820557 217.560211182 217.199859619 216.770172119 216.409820557 216.250152588 216.230133057 217.290222168 217.279968262 217.25994873 217.130065918 217.070007324 217.380065918 217.980163574 218.329772949 218.090026855 217.570007324 217.239929199 217.130065918 216.869812012 216.369812012 215.889831543 215.659851074 215.500183105 217.619781494 217.420074463 217.270172119 217.150054932 217.199859619 217.600250244 218.179840088 218.46987915 218.230133057 217.679840088 217.250152588 217.009918213 216.830230713 216.659820557 216.589996338 216.619781494 216.619781494 217.560211182 217.360015869 217.199859619 217.119781494 217.199859619 217.580230713 218.139801025 218.489898682 218.3800354 217.960113525 217.610015869 217.420074463 217.190093994 216.79019165 216.400054932 216.230133057 216.210113525 216.84979248 216.750183105 216.659851074 216.549987793 216.639831543 217.190124512 217.960144043 218.369812012 218.079772949 217.480163574 217.119812012 217.040222168 216.829772949 216.340026855 215.860046387 215.619812012 215.489929199 217.100250244 216.839996338 216.650054932 216.569976807 216.79019165 217.389801025 218.089996338 218.3800354 218.04019165 217.449859619 217.069976807 216.960113525 216.869781494 216.71987915 216.650054932 216.71987915 216.79019165 217.21987915 216.96987915 216.779937744 216.690093994 216.830230713 217.339996338 218.009918213 218.409820557 218.259918213 217.799957275 217.500152588 217.429840088 217.279937744 216.900054932 216.489898682 216.279937744 216.270172119 216.719909668 216.659851074 216.59979248 216.570007324 216.790222168 217.440124512 218.219909668 218.570007324 218.190124512 217.50994873 217.079772949 216.960144043 216.719909668 216.17010498 215.639831543 215.409851074 215.380065918 216.980133057 216.770172119 216.560211182 216.480133057 216.759918213 217.480133057 218.279937744 218.580230713 218.199859619 217.54019165 217.110015869 217.009918213 216.909820557 216.699859619 216.569976807 216.650054932 216.830230713 217.179840088 216.980133057 216.810211182 216.739898682 216.949859619 217.520172119 218.239898682 218.6300354 218.420074463 217.900054932 217.560211182 217.500152588 217.389801025 217.029937744 216.610015869 216.420074463 216.400054932 216.92010498 216.909851074 216.829772949 216.779968262 216.989929199 217.570007324 218.230163574 218.449890137 218.040222168 217.389831543 217.020202637 216.929870605 216.67010498 216.049987793 215.429870605 215.219909668 215.329772949 217.190093994 217.020172119 216.770172119 216.610015869 216.810211182 217.449859619 218.190093994 218.489898682 218.1300354 217.500152588 217.100250244 217.000152588 216.8800354 216.589996338 216.400054932 216.509918213 216.810211182 217.339996338 217.179840088 217.009918213 216.949859619 217.159820557 217.710113525 218.339996338 218.650054932 218.389801025 217.869781494 217.54019165 217.46987915 217.389801025 217.060211182 216.699859619 216.560211182 216.580230713 217.270202637 217.219909668 217.020202637 216.860046387 216.940124512 217.290222168 217.719909668 217.840026855 217.500183105 217.070007324 216.940124512 217.020202637 216.790222168 216.139831543 215.480163574 215.25994873 215.440124512 217.360015869 217.199859619 216.929840088 216.699859619 216.759918213 217.150054932 217.650054932 217.850250244 217.589996338 217.190093994 217.009918213 217.04019165 216.929840088 216.569976807 216.330230713 216.46987915 216.860015869 217.520172119 217.310211182 217.069976807 216.989898682 217.159820557 217.569976807 218.020172119 218.199859619 217.989898682 217.619781494 217.429840088 217.440093994 217.3800354 217.089996338 216.770172119 216.670074463 216.739898682 217.469909668 217.340026855 217.079772949 216.880065918 216.840026855 216.960144043 217.139831543 217.17010498 216.980163574 216.820007324 216.929870605 217.119812012 216.960144043 216.360046387 215.739929199 215.540222168 215.679870605 217.210113525 217.04019165 216.839996338 216.730133057 216.759918213 216.920074463 217.1300354 217.199859619 217.049957275 216.920074463 217.009918213 217.179840088 217.089996338 216.699859619 216.440093994 216.589996338 216.989898682 217.569976807 217.29019165 217.020172119 216.949859619 217.100250244 217.360015869 217.600250244 217.690093994 217.589996338 217.449859619 217.449859619 217.529937744 217.460113525 217.159820557 216.830230713 216.739898682 216.869781494 217.210144043 217.049987793 216.869812012 216.829772949 216.860046387 216.889831543 216.92010498 216.92010498 216.860046387 216.84979248 216.969909668 217.09979248 216.929870605 216.440124512 216.000183105 215.880065918 215.969909668 216.79019165 216.569976807 216.500152588 216.600250244 216.759918213 216.889801025 216.989898682 217.009918213 216.949859619 216.940093994 217.110015869 217.259918213 217.110015869 216.750152588 216.560211182 216.750152588 217.100250244 217.460113525 217.150054932 216.909820557 216.920074463 217.119781494 217.330230713 217.46987915 217.54019165 217.54019165 217.529937744 217.580230713 217.650054932 217.520172119 217.179840088 216.850250244 216.799957275 216.989898682 216.610046387 216.369812012 216.290222168 216.460144043 216.67010498 216.799987793 216.92010498 217.020202637 217.079772949 217.040222168 217.000183105 216.909851074 216.67010498 216.34979248 216.17010498 216.199890137 216.290222168 216.429840088 216.080230713 215.96987915 216.139801025 216.420074463 216.699859619 216.940093994 217.119781494 217.159820557 217.119781494 217.1300354 217.100250244 216.889801025 216.610015869 216.580230713 216.869781494 217.230133057 217.29019165 216.940093994 216.71987915 216.79019165 217.060211182 217.330230713 217.54019165 217.659820557 217.690093994 217.659820557 217.6300354 217.580230713 217.389801025 217.060211182 216.799957275 216.819976807 217.119781494 216.239929199 215.860046387 215.699890137 215.869812012 216.17010498 216.480163574 216.820007324 217.130065918 217.279968262 217.199890137 216.989929199 216.750183105 216.500183105 216.320007324 216.320007324 216.489929199 216.650085449 216.520172119 216.020172119 215.670074463 215.610015869 215.819976807 216.239898682 216.759918213 217.179840088 217.310211182 217.21987915 217.049957275 216.869781494 216.6300354 216.460113525 216.580230713 217.009918213 217.460113525 217.29019165 216.909820557 216.610015869 216.589996338 216.830230713 217.190093994 217.529937744 217.730133057 217.770172119 217.679840088 217.549957275 217.409820557 217.190093994 216.909820557 216.730133057 216.839996338 217.230133057 216.619812012 216.17010498 215.810241699 215.719909668 215.869812012 216.210144043 216.67010498 217.079772949 217.279968262 217.199890137 217.00994873 216.810241699 216.619812012 216.460144043 216.460144043 216.659851074 216.889831543 217.159820557 216.639801025 216.049957275 215.639801025 215.600250244 215.980133057 216.610015869 217.1300354 217.310211182 217.21987915 217.049957275 216.869781494 216.650054932 216.480133057 216.6300354 217.119781494 217.730133057 217.639801025 217.259918213 216.869781494 216.659820557 216.759918213 217.069976807 217.449859619 217.699859619 217.759918213 217.690093994 217.569976807 217.400054932 217.139801025 216.869781494 216.730133057 216.860015869 217.230133057 217.520202637 217.150085449 216.67010498 216.299987793 216.17010498 216.310241699 216.650085449 216.980163574 217.110046387 217.070007324 217.020202637 216.989929199 216.84979248 216.59979248 216.460144043 216.579772949 216.869812012 217.850250244 217.489898682 216.889801025 216.299957275 216.029937744 216.21987915 216.690093994 217.089996338 217.199859619 217.159820557 217.119781494 217.049957275 216.830230713 216.569976807 216.600250244 217.069976807 217.79019165 218.119781494 217.839996338 217.440093994 217.110015869 217.029937744 217.210113525 217.46987915 217.650054932 217.699859619 217.730133057 217.730133057 217.589996338 217.259918213 216.909820557 216.750152588 216.819976807 217.080230713 218.029968262 217.860046387 217.440124512 216.989929199 216.679870605 216.59979248 216.699890137 216.820007324 216.84979248 216.84979248 216.949890137 217.060241699 216.92010498 216.540222168 216.239929199 216.299987793 216.630065918 217.960113525 217.819976807 217.389801025 216.8800354 216.549957275 216.569976807 216.799957275 216.96987915 216.980133057 216.96987915 217.060211182 217.069976807 216.860015869 216.509918213 216.420074463 216.830230713 217.560211182 218.270172119 218.119781494 217.819976807 217.509918213 217.360015869 217.409820557 217.509918213 217.54019165 217.560211182 217.679840088 217.799957275 217.679840088 217.29019165 216.900054932 216.739898682 216.770172119 216.8800354 217.650085449 217.560241699 217.329772949 217.040222168 216.779968262 216.639831543 216.619812012 216.619812012 216.59979248 216.639831543 216.799987793 216.929870605 216.790222168 216.380065918 216.049987793 216.119812012 216.469909668 217.420074463 217.350250244 217.119781494 216.770172119 216.529937744 216.529937744 216.670074463 216.750152588 216.71987915 216.730133057 216.819976807 216.839996338 216.659820557 216.369781494 216.299957275 216.639801025 217.29019165 217.940093994 217.819976807 217.639801025 217.460113525 217.3800354 217.420074463 217.449859619 217.3800354 217.330230713 217.46987915 217.619781494 217.509918213 217.150054932 216.839996338 216.770172119 216.810211182 216.839996338 216.869812012 216.699890137 216.590026855 216.520202637 216.469909668 216.449890137 216.469909668 216.500183105 216.50994873 216.549987793 216.67010498 216.75994873 216.639831543 216.329772949 216.119812012 216.250183105 216.590026855 216.8800354 216.739898682 216.549957275 216.310211182 216.179840088 216.259918213 216.480133057 216.6300354 216.639801025 216.619781494 216.610015869 216.569976807 216.460113525 216.3800354 216.449859619 216.759918213 217.259918213 217.54019165 217.3800354 217.239898682 217.159820557 217.199859619 217.330230713 217.389801025 217.299957275 217.210113525 217.270172119 217.350250244 217.250152588 216.980133057 216.819976807 216.8800354 216.980133057 217.020172119 216.549987793 216.270202637 216.150085449 216.179870605 216.279968262 216.380065918 216.489929199 216.570007324 216.590026855 216.59979248 216.630065918 216.639831543 216.570007324 216.440124512 216.409851074 216.570007324 216.880065918 216.909820557 216.690093994 216.449859619 216.210113525 216.110015869 216.250152588 216.520172119 216.739898682 216.779937744 216.710113525 216.580230713 216.449859619 216.400054932 216.509918213 216.759918213 217.069976807 217.480133057 217.509918213 217.310211182 217.170074463 217.110015869 217.199859619 217.389801025 217.500152588 217.429840088 217.29019165 217.250152588 217.230133057 217.100250244 216.920074463 216.8800354 216.989898682 217.139801025 217.279937744 216.880065918 216.529968262 216.320007324 216.290222168 216.369812012 216.500183105 216.590026855 216.639831543 216.659851074 216.639831543 216.59979248 216.549987793 216.529968262 216.540222168 216.630065918 216.799987793 217.029968262 217.360015869 217.1300354 216.850250244 216.569976807 216.429840088 216.520172119 216.730133057 216.850250244 216.860015869 216.779937744 216.619781494 216.440093994 216.369781494 216.54019165 216.889801025 217.279937744 217.699859619 217.830230713 217.6300354 217.460113525 217.360015869 217.400054932 217.549957275 217.650054932 217.580230713 217.449859619 217.350250244 217.250152588 217.080230713 216.909820557 216.869781494 216.980133057 217.159820557 217.440093994 217.250183105 216.900085449 216.610046387 216.489929199 216.489929199 216.520202637 216.540222168 216.540222168 216.579772949 216.630065918 216.59979248 216.50994873 216.460144043 216.50994873 216.659851074 216.810241699 216.969909668 217.6300354 217.429840088 217.139801025 216.830230713 216.670074463 216.690093994 216.759918213 216.770172119 216.730133057 216.71987915 216.639801025 216.449859619 216.299957275 216.409820557 216.819976807 217.299957275 217.779937744 218.009918213 217.830230713 217.650054932 217.500152588 217.489898682 217.580230713 217.639801025 217.600250244 217.500152588 217.429840088 217.310211182 217.100250244 216.900054932 216.830230713 216.920074463 217.150054932 217.549957275 217.199890137 216.889831543 216.630065918 216.500183105 216.469909668 216.449890137 216.400085449 216.380065918 216.480163574 216.659851074 216.690124512 216.540222168 216.389831543 216.42010498 216.579772949 216.710144043 216.799987793 217.489898682 217.270172119 216.989898682 216.71987915 216.589996338 216.610015869 216.639801025 216.600250244 216.600250244 216.699859619 216.71987915 216.500152588 216.239898682 216.299957275 216.759918213 217.369781494 217.889801025 217.909820557 217.699859619 217.500152588 217.369781494 217.360015869 217.460113525 217.529937744 217.54019165 217.529937744 217.500152588 217.400054932 217.170074463 216.940093994 216.869781494 217.000152588 217.310211182 217.759918213 216.969909668 216.739929199 216.579772949 216.529968262 216.549987793 216.529968262 216.42010498 216.369812012 216.520202637 216.750183105 216.799987793 216.579772949 216.340026855 216.34979248 216.520202637 216.610046387 216.639831543 217.270172119 216.989898682 216.699859619 216.460113525 216.409820557 216.500152588 216.600250244 216.6300354 216.679840088 216.819976807 216.830230713 216.569976807 216.239898682 216.29019165 216.860015869 217.580230713 218.089996338 217.770172119 217.54019165 217.319976807 217.21987915 217.279937744 217.440093994 217.569976807 217.619781494 217.6300354 217.619781494 217.500152588 217.250152588 217.009918213 216.96987915 217.190093994 217.600250244 218.080230713 216.969909668 216.790222168 216.730163574 216.739929199 216.790222168 216.75994873 216.619812012 216.50994873 216.59979248 216.790222168 216.799987793 216.549987793 216.299987793 216.310241699 216.469909668 216.520202637 216.469909668 217.270172119 216.909820557 216.569976807 216.339996338 216.299957275 216.46987915 216.670074463 216.799957275 216.860015869 216.920074463 216.850250244 216.529937744 216.179840088 216.279937744 216.929840088 217.730133057 218.270172119 217.850250244 217.580230713 217.350250244 217.259918213 217.350250244 217.560211182 217.730133057 217.779937744 217.759918213 217.690093994 217.509918213 217.21987915 216.960113525 216.929840088 217.239898682 217.779937744 218.339996338 217.159851074 216.969909668 216.869812012 216.840026855 216.860046387 216.840026855 216.719909668 216.590026855 216.59979248 216.699890137 216.679870605 216.489929199 216.290222168 216.299987793 216.369812012 216.340026855 216.270202637 217.360015869 216.929840088 216.520172119 216.250152588 216.210113525 216.389801025 216.670074463 216.850250244 216.8800354 216.850250244 216.730133057 216.420074463 216.100250244 216.159820557 216.770172119 217.619781494 218.239898682 218.000152588 217.71987915 217.480133057 217.350250244 217.400054932 217.580230713 217.770172119 217.839996338 217.779937744 217.6300354 217.409820557 217.100250244 216.799957275 216.710113525 217.020172119 217.690093994 218.420074463 217.219909668 216.949890137 216.730163574 216.590026855 216.570007324 216.630065918 216.619812012 216.570007324 216.560241699 216.59979248 216.59979248 216.500183105 216.380065918 216.299987793 216.219909668 216.119812012 216.130065918 217.330230713 216.850250244 216.420074463 216.139801025 216.100250244 216.310211182 216.610015869 216.810211182 216.839996338 216.759918213 216.639801025 216.420074463 216.119781494 216.049957275 216.480133057 217.29019165 218.080230713 218.020172119 217.730133057 217.489898682 217.339996338 217.319976807 217.480133057 217.699859619 217.799957275 217.739898682 217.580230713 217.369781494 217.089996338 216.750152588 216.549957275 216.770172119 217.480133057 218.369781494 217.09979248 216.739929199 216.42010498 216.230163574 216.230163574 216.389831543 216.540222168 216.59979248 216.619812012 216.650085449 216.659851074 216.619812012 216.489929199 216.270202637 216.029968262 215.92010498 216.09979248 217.230133057 216.770172119 216.420074463 216.230133057 216.21987915 216.420074463 216.739898682 216.949859619 216.949859619 216.839996338 216.739898682 216.589996338 216.299957275 216.060211182 216.270172119 217.000152588 217.929840088 217.929840088 217.659820557 217.480133057 217.350250244 217.339996338 217.480133057 217.71987915 217.839996338 217.779937744 217.639801025 217.509918213 217.310211182 216.96987915 216.650054932 216.710113525 217.350250244 218.270172119 217.000183105 216.59979248 216.279968262 216.139831543 216.210144043 216.380065918 216.560241699 216.659851074 216.699890137 216.719909668 216.739929199 216.710144043 216.520202637 216.190124512 215.84979248 215.750183105 216.110046387 217.279937744 216.940093994 216.710113525 216.589996338 216.569976807 216.71987915 217.000152588 217.199859619 217.179840088 217.029937744 216.900054932 216.770172119 216.46987915 216.139801025 216.199859619 216.839996338 217.810211182 217.940093994 217.710113525 217.619781494 217.549957275 217.54019165 217.690093994 217.909820557 218.009918213 217.900054932 217.759918213 217.679840088 217.560211182 217.250152588 216.8800354 216.799957275 217.270172119 218.069976807 217.020202637 216.650085449 216.389831543 216.310241699 216.34979248 216.449890137 216.540222168 216.570007324 216.610046387 216.67010498 216.710144043 216.659851074 216.460144043 216.110046387 215.750183105 215.659851074 216.079772949 217.440093994 217.210113525 217.049957275 216.889801025 216.770172119 216.810211182 217.04019165 217.239898682 217.230133057 217.069976807 216.920074463 216.759918213 216.489898682 216.199859619 216.190093994 216.699859619 217.569976807 218.080230713 217.909820557 217.850250244 217.779937744 217.750152588 217.869781494 218.049957275 218.089996338 217.949859619 217.799957275 217.71987915 217.610015869 217.310211182 216.940093994 216.810211182 217.1300354 217.750152588 217.040222168 216.719909668 216.529968262 216.440124512 216.42010498 216.409851074 216.400085449 216.380065918 216.440124512 216.549987793 216.610046387 216.570007324 216.42010498 216.150085449 215.810241699 215.67010498 215.989929199 217.489898682 217.299957275 217.100250244 216.810211182 216.560211182 216.54019165 216.770172119 216.989898682 217.049957275 216.949859619 216.830230713 216.679840088 216.480133057 216.259918213 216.230133057 216.54019165 217.159820557 218.179840088 218.04019165 217.949859619 217.79019165 217.710113525 217.810211182 218.000152588 218.020172119 217.889801025 217.750152588 217.659820557 217.460113525 217.100250244 216.750152588 216.679840088 216.940093994 217.400054932 217.000183105 216.75994873 216.590026855 216.449890137 216.400085449 216.389831543 216.380065918 216.369812012 216.429870605 216.540222168 216.590026855 216.520202637 216.409851074 216.25994873 216.00994873 215.779968262 215.929870605 217.3800354 217.159820557 216.860015869 216.46987915 216.21987915 216.270172119 216.509918213 216.739898682 216.850250244 216.869781494 216.799957275 216.659820557 216.489898682 216.3800354 216.360015869 216.420074463 216.730133057 218.179840088 218.029937744 217.839996338 217.569976807 217.449859619 217.619781494 217.850250244 217.920074463 217.819976807 217.739898682 217.6300354 217.319976807 216.850250244 216.520172119 216.54019165 216.810211182 217.179840088 217.029968262 216.869812012 216.690124512 216.50994873 216.480163574 216.560241699 216.619812012 216.590026855 216.59979248 216.67010498 216.630065918 216.469909668 216.34979248 216.340026855 216.199890137 215.940124512 215.960144043 217.270172119 216.989898682 216.6300354 216.259918213 216.119781494 216.279937744 216.54019165 216.690093994 216.79019165 216.889801025 216.869781494 216.670074463 216.480133057 216.500152588 216.560211182 216.46987915 216.480133057 218.139801025 217.949859619 217.659820557 217.330230713 217.250152588 217.520172119 217.799957275 217.850250244 217.759918213 217.71987915 217.610015869 217.239898682 216.71987915 216.429840088 216.529937744 216.810211182 217.100250244 217.159851074 217.020202637 216.820007324 216.619812012 216.619812012 216.770202637 216.829772949 216.750183105 216.730163574 216.790222168 216.699890137 216.409851074 216.239929199 216.320007324 216.360046387 216.150085449 216.130065918 217.270172119 216.96987915 216.589996338 216.250152588 216.190093994 216.409820557 216.580230713 216.619781494 216.730133057 216.940093994 216.940093994 216.619781494 216.400054932 216.560211182 216.819976807 216.730133057 216.560211182 218.119781494 217.869781494 217.509918213 217.190093994 217.199859619 217.520172119 217.79019165 217.770172119 217.6300354 217.619781494 217.549957275 217.179840088 216.690093994 216.460113525 216.6300354 216.900054932 217.089996338 217.239929199 217.060241699 216.820007324 216.59979248 216.610046387 216.75994873 216.75994873 216.659851074 216.699890137 216.869812012 216.810241699 216.409851074 216.139831543 216.299987793 216.560241699 216.489929199 216.449890137 217.310211182 217.009918213 216.619781494 216.270172119 216.190093994 216.299957275 216.350250244 216.339996338 216.589996338 216.989898682 217.049957275 216.6300354 216.330230713 216.650054932 217.170074463 217.179840088 216.900054932 218.069976807 217.779937744 217.440093994 217.170074463 217.21987915 217.520172119 217.71987915 217.6300354 217.509918213 217.549957275 217.509918213 217.170074463 216.710113525 216.569976807 216.79019165 217.04019165 217.170074463 217.119812012 216.880065918 216.610046387 216.42010498 216.469909668 216.610046387 216.590026855 216.540222168 216.75994873 217.110046387 217.060241699 216.520202637 216.119812012 216.34979248 216.810241699 216.92010498 216.880065918 217.330230713 217.049957275 216.670074463 216.279937744 216.119781494 216.119781494 216.089996338 216.139801025 216.549957275 217.139801025 217.250152588 216.759918213 216.409820557 216.839996338 217.549957275 217.670074463 217.360015869 218.020172119 217.759918213 217.520172119 217.29019165 217.299957275 217.509918213 217.639801025 217.610015869 217.610015869 217.730133057 217.670074463 217.250152588 216.779937744 216.679840088 216.96987915 217.270172119 217.420074463 216.900085449 216.630065918 216.389831543 216.270202637 216.400085449 216.59979248 216.67010498 216.750183105 217.130065918 217.549987793 217.42010498 216.679870605 216.130065918 216.360046387 216.969909668 217.250183105 217.230163574 217.389801025 217.139801025 216.770172119 216.369781494 216.179840088 216.179840088 216.210113525 216.330230713 216.79019165 217.3800354 217.46987915 216.929840088 216.569976807 216.989898682 217.750152588 217.980133057 217.710113525 218.080230713 217.920074463 217.770172119 217.560211182 217.480133057 217.549957275 217.659820557 217.770172119 217.960113525 218.139801025 218.000152588 217.440093994 216.850250244 216.71987915 217.069976807 217.489898682 217.819976807 216.820007324 216.540222168 216.320007324 216.250183105 216.449890137 216.75994873 216.969909668 217.199890137 217.610046387 217.949890137 217.679870605 216.829772949 216.159851074 216.270202637 216.84979248 217.219909668 217.310241699 217.509918213 217.239898682 216.830230713 216.400054932 216.259918213 216.400054932 216.589996338 216.750152588 217.100250244 217.489898682 217.489898682 217.009918213 216.650054932 216.960113525 217.610015869 217.889801025 217.779937744 218.250152588 218.150054932 218.000152588 217.770172119 217.600250244 217.619781494 217.759918213 217.980133057 218.279937744 218.46987915 218.239898682 217.569976807 216.909820557 216.699859619 217.009918213 217.529937744 218.089996338 216.92010498 216.650085449 216.389831543 216.279968262 216.480163574 216.860046387 217.199890137 217.449890137 217.75994873 217.969909668 217.679870605 216.909851074 216.230163574 216.119812012 216.460144043 216.790222168 217.060241699 217.549957275 217.199859619 216.690093994 216.190093994 216.049957275 216.330230713 216.679840088 216.889801025 217.060211182 217.259918213 217.250152588 216.940093994 216.670074463 216.770172119 217.139801025 217.400054932 217.520172119 218.369781494 218.190093994 217.949859619 217.659820557 217.520172119 217.610015869 217.819976807 218.069976807 218.299957275 218.400054932 218.159820557 217.589996338 216.989898682 216.710113525 216.839996338 217.310211182 218.020172119 217.079772949 216.810241699 216.500183105 216.320007324 216.480163574 216.869812012 217.190124512 217.340026855 217.460144043 217.549987793 217.400085449 216.929870605 216.360046387 216.020202637 215.989929199 216.210144043 216.639831543 217.369781494 216.940093994 216.369781494 215.830230713 215.670074463 215.940093994 216.319976807 216.529937744 216.600250244 216.71987915 216.850250244 216.850250244 216.71987915 216.610015869 216.600250244 216.730133057 217.04019165 218.259918213 217.960113525 217.619781494 217.339996338 217.350250244 217.600250244 217.869781494 217.980133057 218.000152588 217.96987915 217.810211182 217.500152588 217.139801025 216.839996338 216.71987915 216.960113525 217.659820557 217.159851074 216.949890137 216.67010498 216.500183105 216.619812012 216.949890137 217.150085449 217.130065918 217.060241699 217.070007324 217.060241699 216.860046387 216.440124512 215.929870605 215.59979248 215.730163574 216.299987793 217.04019165 216.650054932 216.199859619 215.770172119 215.600250244 215.770172119 216.04019165 216.150054932 216.1300354 216.21987915 216.46987915 216.739898682 216.79019165 216.54019165 216.179840088 216.100250244 216.500152588 218.04019165 217.690093994 217.350250244 217.179840088 217.350250244 217.71987915 217.940093994 217.860015869 217.670074463 217.529937744 217.449859619 217.3800354 217.270172119 217.009918213 216.710113525 216.679840088 217.230133057 217.17010498 217.049987793 216.860046387 216.770202637 216.900085449 217.130065918 217.210144043 217.110046387 216.969909668 216.960144043 216.969909668 216.799987793 216.389831543 215.779968262 215.329772949 215.440124512 216.09979248 216.810211182 216.529937744 216.310211182 216.150054932 216.089996338 216.199859619 216.310211182 216.29019165 216.179840088 216.1300354 216.299957275 216.619781494 216.770172119 216.480133057 215.909820557 215.639801025 216.020172119 217.929840088 217.659820557 217.400054932 217.319976807 217.560211182 217.900054932 218.009918213 217.830230713 217.600250244 217.480133057 217.429840088 217.389801025 217.319976807 217.089996338 216.710113525 216.520172119 216.909820557 217.17010498 217.060241699 216.929870605 216.900085449 217.040222168 217.179870605 217.230163574 217.219909668 217.270202637 217.340026855 217.250183105 216.909851074 216.329772949 215.639831543 215.139831543 215.239929199 215.889831543 216.860015869 216.560211182 216.460113525 216.520172119 216.679840088 216.850250244 216.980133057 216.96987915 216.819976807 216.600250244 216.500152588 216.569976807 216.650054932 216.369781494 215.770172119 215.400054932 215.730133057 218.009918213 217.810211182 217.580230713 217.500152588 217.679840088 217.929840088 217.989898682 217.909820557 217.900054932 217.949859619 217.850250244 217.600250244 217.330230713 217.029937744 216.6300354 216.389801025 216.650054932 217.17010498 216.949890137 216.75994873 216.770202637 216.929870605 217.079772949 217.179870605 217.34979248 217.650085449 217.860046387 217.690124512 217.130065918 216.360046387 215.579772949 215.00994873 214.989929199 215.529968262 217.110015869 216.659820557 216.449859619 216.529937744 216.830230713 217.190093994 217.480133057 217.639801025 217.610015869 217.339996338 216.960113525 216.670074463 216.54019165 216.270172119 215.730133057 215.330230713 215.610015869 218.139801025 217.860015869 217.560211182 217.420074463 217.54019165 217.779937744 217.929840088 218.080230713 218.360015869 218.580230713 218.420074463 217.889801025 217.350250244 216.929840088 216.54019165 216.230133057 216.350250244 217.110046387 216.730163574 216.469909668 216.540222168 216.829772949 217.09979248 217.250183105 217.469909668 217.840026855 218.049987793 217.829772949 217.199890137 216.42010498 215.630065918 214.940124512 214.699890137 215.040222168 217.389801025 216.850250244 216.460113525 216.3800354 216.679840088 217.150054932 217.580230713 217.889801025 218.000152588 217.799957275 217.299957275 216.779937744 216.46987915 216.230133057 215.79019165 215.389801025 215.529937744 218.150054932 217.750152588 217.369781494 217.210113525 217.400054932 217.730133057 218.009918213 218.259918213 218.619781494 218.8800354 218.6300354 217.980133057 217.350250244 216.920074463 216.54019165 216.1300354 216.049957275 216.980163574 216.540222168 216.299987793 216.480163574 216.960144043 217.380065918 217.540222168 217.619812012 217.770202637 217.820007324 217.540222168 216.989929199 216.369812012 215.690124512 214.969909668 214.520202637 214.630065918 217.589996338 217.170074463 216.71987915 216.509918213 216.71987915 217.150054932 217.520172119 217.739898682 217.860015869 217.750152588 217.310211182 216.750152588 216.400054932 216.230133057 215.920074463 215.480133057 215.3800354 218.100250244 217.690093994 217.330230713 217.239898682 217.560211182 218.020172119 218.279937744 218.389801025 218.560211182 218.619781494 218.330230713 217.750152588 217.279937744 217.020172119 216.679840088 216.179840088 215.860015869 216.940124512 216.560241699 216.380065918 216.59979248 217.150085449 217.639831543 217.779968262 217.699890137 217.610046387 217.460144043 217.130065918 216.67010498 216.210144043 215.710144043 215.070007324 214.540222168 214.449890137 217.679840088 217.489898682 217.139801025 216.900054932 217.04019165 217.400054932 217.619781494 217.610015869 217.569976807 217.480133057 217.150054932 216.659820557 216.360015869 216.299957275 216.100250244 215.580230713 215.179840088 218.119781494 217.8800354 217.639801025 217.619781494 217.960113525 218.400054932 218.549957275 218.449859619 218.339996338 218.230133057 217.940093994 217.500152588 217.230133057 217.150054932 216.900054932 216.319976807 215.839996338 217.110046387 216.900085449 216.690124512 216.770202637 217.139831543 217.520202637 217.639831543 217.549987793 217.449890137 217.310241699 216.980163574 216.520202637 216.079772949 215.659851074 215.139831543 214.659851074 214.469909668 217.710113525 217.650054932 217.339996338 217.119781494 217.279937744 217.650054932 217.810211182 217.679840088 217.520172119 217.400054932 217.1300354 216.710113525 216.429840088 216.409820557 216.259918213 215.659820557 214.980133057 218.279937744 218.230133057 218.069976807 218.009918213 218.230133057 218.54019165 218.600250244 218.429840088 218.259918213 218.150054932 217.900054932 217.529937744 217.310211182 217.230133057 217.000152588 216.429840088 215.889801025 217.500183105 217.389831543 217.119812012 216.940124512 217.020202637 217.190124512 217.250183105 217.239929199 217.310241699 217.329772949 217.070007324 216.560241699 216.00994873 215.549987793 215.079772949 214.679870605 214.440124512 217.730133057 217.54019165 217.190093994 216.949859619 217.150054932 217.619781494 217.900054932 217.839996338 217.670074463 217.529937744 217.259918213 216.850250244 216.54019165 216.46987915 216.310211182 215.690093994 214.869781494 218.449859619 218.46987915 218.279937744 218.100250244 218.170074463 218.360015869 218.429840088 218.350250244 218.339996338 218.350250244 218.150054932 217.750152588 217.400054932 217.210113525 216.929840088 216.409820557 215.909820557 217.75994873 217.690124512 217.380065918 217.090026855 217.020202637 217.079772949 217.070007324 217.090026855 217.230163574 217.34979248 217.159851074 216.619812012 216.000183105 215.449890137 214.949890137 214.540222168 214.25994873 217.659820557 217.319976807 216.909820557 216.6300354 216.770172119 217.299957275 217.779937744 217.920074463 217.810211182 217.610015869 217.310211182 216.889801025 216.569976807 216.449859619 216.250152588 215.650054932 214.860015869 218.440093994 218.369781494 218.110015869 217.8800354 217.929840088 218.150054932 218.29019165 218.339996338 218.440093994 218.500152588 218.270172119 217.799957275 217.360015869 217.080230713 216.779937744 216.330230713 215.909820557 217.579772949 217.469909668 217.210144043 217.029968262 217.090026855 217.250183105 217.279968262 217.250183105 217.320007324 217.360046387 217.150085449 216.659851074 216.090026855 215.540222168 214.960144043 214.400085449 213.989929199 217.400054932 217.069976807 216.690093994 216.360015869 216.369781494 216.860015869 217.520172119 217.8800354 217.860015869 217.600250244 217.21987915 216.830230713 216.560211182 216.420074463 216.179840088 215.610015869 214.909820557 218.179840088 217.989898682 217.71987915 217.589996338 217.759918213 218.119781494 218.369781494 218.480133057 218.549957275 218.489898682 218.159820557 217.659820557 217.250152588 216.989898682 216.710113525 216.310211182 215.940093994 217.049987793 216.869812012 216.679870605 216.67010498 216.980163574 217.389831543 217.59979248 217.630065918 217.610046387 217.520202637 217.219909668 216.779968262 216.340026855 215.860046387 215.199890137 214.409851074 213.790222168 217.060211182 216.8800354 216.589996338 216.150054932 215.980133057 216.440093994 217.259918213 217.8800354 217.940093994 217.600250244 217.150054932 216.799957275 216.619781494 216.500152588 216.210113525 215.619781494 214.960113525 217.850250244 217.639801025 217.429840088 217.400054932 217.699859619 218.170074463 218.54019165 218.71987915 218.739898682 218.54019165 218.100250244 217.600250244 217.270172119 217.069976807 216.799957275 216.389801025 215.989898682 216.67010498 216.480163574 216.290222168 216.310241699 216.730163574 217.320007324 217.750183105 217.940124512 217.969909668 217.820007324 217.429870605 216.960144043 216.579772949 216.190124512 215.500183105 214.560241699 213.739929199 216.949859619 216.8800354 216.549957275 215.949859619 215.679840088 216.159820557 217.150054932 217.889801025 217.989898682 217.589996338 217.119781494 216.810211182 216.699859619 216.589996338 216.250152588 215.639801025 214.96987915 217.750152588 217.619781494 217.480133057 217.440093994 217.699859619 218.170074463 218.619781494 218.920074463 219.000152588 218.759918213 218.270172119 217.750152588 217.429840088 217.230133057 216.909820557 216.460113525 216.029937744 216.860046387 216.730163574 216.469909668 216.369812012 216.690124512 217.279968262 217.790222168 218.079772949 218.190124512 218.060241699 217.619812012 217.060241699 216.630065918 216.25994873 215.639831543 214.710144043 213.810241699 217.230133057 217.100250244 216.589996338 215.900054932 215.659820557 216.230133057 217.199859619 217.819976807 217.770172119 217.350250244 216.929840088 216.699859619 216.6300354 216.520172119 216.199859619 215.600250244 214.929840088 217.96987915 217.949859619 217.830230713 217.679840088 217.779937744 218.150054932 218.619781494 219.009918213 219.150054932 218.940093994 218.449859619 217.920074463 217.560211182 217.270172119 216.909820557 216.460113525 216.04019165 217.42010498 217.320007324 216.989929199 216.770202637 216.989929199 217.480163574 217.880065918 218.090026855 218.17010498 218.079772949 217.67010498 217.049987793 216.500183105 216.090026855 215.579772949 214.799987793 213.940124512 217.659820557 217.319976807 216.6300354 215.980133057 215.940093994 216.569976807 217.259918213 217.449859619 217.170074463 216.79019165 216.569976807 216.460113525 216.389801025 216.279937744 216.020172119 215.520172119 214.8800354 218.279937744 218.279937744 218.110015869 217.889801025 217.909820557 218.239898682 218.690093994 219.029937744 219.119781494 218.900054932 218.429840088 217.920074463 217.509918213 217.170074463 216.810211182 216.429840088 216.060211182 217.779968262 217.590026855 217.199890137 216.989929199 217.230163574 217.699890137 217.989929199 218.020202637 217.980163574 217.909851074 217.630065918 217.070007324 216.449890137 215.949890137 215.480163574 214.84979248 214.060241699 217.799957275 217.21987915 216.46987915 216.000152588 216.159820557 216.710113525 217.009918213 216.799957275 216.409820557 216.230133057 216.29019165 216.310211182 216.21987915 216.080230713 215.869781494 215.460113525 214.869781494 218.339996338 218.230133057 218.000152588 217.799957275 217.900054932 218.310211182 218.759918213 219.009918213 218.989898682 218.71987915 218.29019165 217.819976807 217.400054932 217.029937744 216.739898682 216.46987915 216.150054932 217.610046387 217.250183105 216.829772949 216.699890137 217.040222168 217.590026855 217.900085449 217.880065918 217.770202637 217.710144043 217.579772949 217.17010498 216.560241699 215.969909668 215.449890137 214.869812012 214.079772949 217.500152588 216.819976807 216.1300354 215.810211182 216.000152588 216.360015869 216.409820557 216.110015869 215.8800354 216.009918213 216.270172119 216.339996338 216.179840088 216.009918213 215.830230713 215.480133057 214.900054932 218.1300354 217.839996338 217.560211182 217.409820557 217.580230713 218.060211182 218.549957275 218.79019165 218.770172119 218.529937744 218.190093994 217.770172119 217.339996338 216.960113525 216.710113525 216.54019165 216.259918213 217.17010498 216.719909668 216.340026855 216.25994873 216.590026855 217.17010498 217.630065918 217.75994873 217.679870605 217.619812012 217.520202637 217.199890137 216.630065918 216.00994873 215.429870605 214.799987793 213.969909668 217.119781494 216.520172119 216.000152588 215.690093994 215.670074463 215.779937744 215.779937744 215.690093994 215.779937744 216.089996338 216.360015869 216.339996338 216.170074463 216.009918213 215.860015869 215.520172119 214.929840088 217.920074463 217.560211182 217.230133057 217.029937744 217.119781494 217.480133057 217.960113525 218.299957275 218.420074463 218.339996338 218.100250244 217.71987915 217.279937744 216.8800354 216.670074463 216.569976807 216.310211182 216.880065918 216.500183105 216.250183105 216.159851074 216.329772949 216.820007324 217.369812012 217.719909668 217.770202637 217.639831543 217.409851074 217.040222168 216.540222168 215.960144043 215.369812012 214.679870605 213.75994873 217.020172119 216.659820557 216.310211182 215.920074463 215.619781494 215.489898682 215.509918213 215.659820557 215.920074463 216.190093994 216.279937744 216.179840088 216.060211182 216.000152588 215.889801025 215.54019165 214.940093994 217.929840088 217.619781494 217.319976807 217.020172119 216.850250244 216.949859619 217.299957275 217.730133057 218.029937744 218.089996338 217.920074463 217.589996338 217.150054932 216.770172119 216.580230713 216.529937744 216.330230713 216.889831543 216.650085449 216.529968262 216.400085449 216.369812012 216.639831543 217.179870605 217.679870605 217.860046387 217.67010498 217.279968262 216.810241699 216.329772949 215.860046387 215.320007324 214.579772949 213.570007324 217.190093994 217.009918213 216.79019165 216.360015869 215.900054932 215.6300354 215.6300354 215.810211182 216.009918213 216.100250244 216.060211182 215.980133057 216.000152588 216.04019165 215.940093994 215.560211182 214.940093994 218.060211182 217.850250244 217.610015869 217.270172119 216.920074463 216.770172119 216.960113525 217.3800354 217.750152588 217.850250244 217.690093994 217.400054932 217.04019165 216.71987915 216.54019165 216.489898682 216.330230713 217.049987793 216.840026855 216.750183105 216.590026855 216.440124512 216.50994873 216.909851074 217.42010498 217.690124512 217.540222168 217.09979248 216.59979248 216.17010498 215.799987793 215.290222168 214.50994873 213.429870605 217.3800354 217.199859619 216.96987915 216.589996338 216.150054932 215.860015869 215.759918213 215.819976807 215.889801025 215.900054932 215.889801025 215.940093994 216.080230713 216.159820557 216.020172119 215.600250244 214.989898682 218.100250244 217.900054932 217.710113525 217.440093994 217.100250244 216.860015869 216.940093994 217.279937744 217.589996338 217.6300354 217.449859619 217.21987915 217.000152588 216.759918213 216.560211182 216.480133057 216.330230713 217.219909668 216.889831543 216.699890137 216.549987793 216.389831543 216.340026855 216.549987793 216.900085449 217.179870605 217.150085449 216.810241699 216.380065918 216.029968262 215.730163574 215.270202637 214.449890137 213.329772949 217.509918213 217.179840088 216.860015869 216.500152588 216.150054932 215.869781494 215.690093994 215.610015869 215.6300354 215.71987915 215.850250244 216.009918213 216.170074463 216.210113525 216.049957275 215.659820557 215.069976807 218.04019165 217.779937744 217.569976807 217.369781494 217.139801025 216.929840088 216.909820557 217.1300354 217.360015869 217.350250244 217.190093994 217.049957275 216.949859619 216.79019165 216.580230713 216.449859619 216.299957275 217.360046387 216.880065918 216.590026855 216.42010498 216.310241699 216.210144043 216.219909668 216.389831543 216.59979248 216.650085449 216.449890137 216.130065918 215.860046387 215.650085449 215.230163574 214.409851074 213.270202637 217.670074463 217.190093994 216.750152588 216.3800354 216.060211182 215.770172119 215.509918213 215.400054932 215.46987915 215.659820557 215.830230713 215.96987915 216.080230713 216.119781494 216.020172119 215.690093994 215.139801025 218.060211182 217.71987915 217.440093994 217.239898682 217.04019165 216.799957275 216.679840088 216.79019165 216.980133057 217.020172119 216.900054932 216.819976807 216.810211182 216.730133057 216.549957275 216.389801025 216.230133057 217.42010498 216.929870605 216.570007324 216.360046387 216.230163574 216.130065918 216.070007324 216.130065918 216.25994873 216.320007324 216.179870605 215.909851074 215.719909668 215.59979248 215.250183105 214.429870605 213.279968262 217.830230713 217.319976807 216.839996338 216.429840088 216.069976807 215.71987915 215.46987915 215.3800354 215.500152588 215.679840088 215.79019165 215.830230713 215.920074463 216.029937744 216.020172119 215.71987915 215.159820557 218.179840088 217.830230713 217.46987915 217.190093994 216.909820557 216.580230713 216.350250244 216.400054932 216.6300354 216.750152588 216.699859619 216.6300354 216.650054932 216.6300354 216.520172119 216.350250244 216.170074463 217.400085449 216.960144043 216.579772949 216.25994873 216.040222168 215.940124512 215.940124512 216.020202637 216.150085449 216.190124512 216.040222168 215.790222168 215.630065918 215.590026855 215.329772949 214.540222168 213.34979248 217.839996338 217.400054932 216.940093994 216.500152588 216.089996338 215.730133057 215.509918213 215.480133057 215.610015869 215.71987915 215.730133057 215.739898682 215.8800354 216.080230713 216.100250244 215.750152588 215.110015869 218.250152588 217.909820557 217.489898682 217.110015869 216.770172119 216.400054932 216.1300354 216.170074463 216.449859619 216.650054932 216.639801025 216.560211182 216.580230713 216.619781494 216.549957275 216.3800354 216.1300354 217.329772949 216.960144043 216.520202637 216.060241699 215.710144043 215.59979248 215.67010498 215.810241699 215.960144043 216.029968262 215.92010498 215.679870605 215.540222168 215.549987793 215.369812012 214.619812012 213.380065918 217.699859619 217.299957275 216.8800354 216.449859619 216.049957275 215.699859619 215.509918213 215.520172119 215.619781494 215.699859619 215.699859619 215.759918213 215.96987915 216.210113525 216.190093994 215.750152588 215.020172119 218.179840088 217.860015869 217.400054932 216.96987915 216.6300354 216.279937744 216.04019165 216.069976807 216.350250244 216.580230713 216.600250244 216.529937744 216.560211182 216.6300354 216.600250244 216.420074463 216.110015869 217.329772949 216.969909668 216.500183105 215.92010498 215.460144043 215.290222168 215.340026855 215.449890137 215.579772949 215.690124512 215.679870605 215.520202637 215.400085449 215.429870605 215.320007324 214.650085449 213.369812012 217.580230713 217.190093994 216.79019165 216.389801025 216.000152588 215.670074463 215.480133057 215.460113525 215.549957275 215.639801025 215.710113525 215.819976807 216.020172119 216.230133057 216.179840088 215.739898682 214.980133057 218.1300354 217.810211182 217.339996338 216.900054932 216.560211182 216.239898682 215.96987915 215.949859619 216.170074463 216.400054932 216.46987915 216.460113525 216.509918213 216.589996338 216.569976807 216.400054932 216.100250244 217.409851074 217.020202637 216.529968262 215.92010498 215.42010498 215.179870605 215.150085449 215.139831543 215.179870605 215.310241699 215.42010498 215.380065918 215.299987793 215.340026855 215.299987793 214.690124512 213.409851074 217.619781494 217.199859619 216.799957275 216.420074463 216.04019165 215.699859619 215.480133057 215.420074463 215.509918213 215.659820557 215.779937744 215.869781494 215.989898682 216.1300354 216.119781494 215.779937744 215.069976807 218.199859619 217.900054932 217.449859619 217.009918213 216.6300354 216.230133057 215.8800354 215.770172119 215.940093994 216.179840088 216.339996338 216.400054932 216.460113525 216.509918213 216.500152588 216.369781494 216.119781494 217.440124512 217.029968262 216.560241699 215.969909668 215.460144043 215.199890137 215.110046387 215.020202637 214.980163574 215.079772949 215.250183105 215.320007324 215.329772949 215.409851074 215.400085449 214.829772949 213.50994873 217.71987915 217.270172119 216.850250244 216.420074463 216.020172119 215.659820557 215.460113525 215.429840088 215.549957275 215.730133057 215.869781494 215.929840088 215.96987915 216.060211182 216.1300354 215.909820557 215.21987915 218.330230713 218.049957275 217.619781494 217.159820557 216.679840088 216.159820557 215.739898682 215.600250244 215.770172119 216.069976807 216.299957275 216.420074463 216.480133057 216.489898682 216.449859619 216.369781494 216.199859619 217.380065918 216.960144043 216.489929199 215.92010498 215.409851074 215.139831543 215.079772949 215.029968262 214.960144043 214.989929199 215.130065918 215.279968262 215.42010498 215.59979248 215.59979248 214.989929199 213.619812012 217.710113525 217.239898682 216.759918213 216.279937744 215.830230713 215.480133057 215.319976807 215.3800354 215.54019165 215.71987915 215.869781494 215.949859619 216.000152588 216.089996338 216.179840088 216.000152588 215.299957275 218.360015869 218.049957275 217.619781494 217.1300354 216.580230713 216.009918213 215.580230713 215.489898682 215.679840088 215.980133057 216.259918213 216.440093994 216.509918213 216.500152588 216.460113525 216.409820557 216.270172119 217.320007324 216.880065918 216.409851074 215.84979248 215.299987793 215.00994873 214.989929199 215.020202637 214.969909668 214.909851074 214.980163574 215.17010498 215.469909668 215.75994873 215.739929199 215.040222168 213.619812012 217.650054932 217.150054932 216.639801025 216.1300354 215.6300354 215.279937744 215.179840088 215.279937744 215.449859619 215.589996338 215.730133057 215.869781494 215.989898682 216.110015869 216.179840088 215.96987915 215.259918213 218.29019165 217.920074463 217.46987915 216.989898682 216.429840088 215.869781494 215.480133057 215.400054932 215.560211182 215.830230713 216.1300354 216.360015869 216.480133057 216.480133057 216.460113525 216.429840088 216.29019165 217.329772949 216.869812012 216.429870605 215.880065918 215.299987793 214.929870605 214.889831543 214.980163574 214.949890137 214.84979248 214.840026855 215.070007324 215.480163574 215.840026855 215.790222168 215.00994873 213.540222168 217.650054932 217.119781494 216.6300354 216.139801025 215.6300354 215.259918213 215.159820557 215.259918213 215.389801025 215.480133057 215.600250244 215.770172119 215.949859619 216.089996338 216.1300354 215.909820557 215.210113525 218.250152588 217.819976807 217.369781494 216.909820557 216.389801025 215.850250244 215.480133057 215.360015869 215.440093994 215.670074463 215.980133057 216.29019165 216.449859619 216.460113525 216.449859619 216.449859619 216.299957275 217.400085449 216.900085449 216.480163574 215.980163574 215.380065918 214.929870605 214.820007324 214.909851074 214.929870605 214.84979248 214.840026855 215.060241699 215.50994873 215.889831543 215.810241699 214.980163574 213.520202637 217.679840088 217.139801025 216.690093994 216.250152588 215.779937744 215.369781494 215.210113525 215.279937744 215.429840088 215.509918213 215.589996338 215.750152588 215.929840088 216.080230713 216.1300354 215.929840088 215.29019165 218.270172119 217.819976807 217.360015869 216.929840088 216.429840088 215.909820557 215.520172119 215.350250244 215.389801025 215.600250244 215.980133057 216.350250244 216.509918213 216.489898682 216.449859619 216.460113525 216.339996338 217.449890137 216.929870605 216.50994873 216.020202637 215.42010498 214.929870605 214.770202637 214.860046387 214.940124512 214.909851074 214.909851074 215.130065918 215.540222168 215.909851074 215.84979248 215.040222168 213.590026855 217.690093994 217.100250244 216.659820557 216.279937744 215.839996338 215.429840088 215.21987915 215.279937744 215.460113525 215.580230713 215.670074463 215.779937744 215.940093994 216.089996338 216.179840088 216.029937744 215.420074463 218.270172119 217.799957275 217.339996338 216.900054932 216.400054932 215.8800354 215.489898682 215.319976807 215.369781494 215.639801025 216.069976807 216.46987915 216.600250244 216.520172119 216.460113525 216.46987915 216.369781494 217.500183105 216.960144043 216.500183105 216.00994873 215.409851074 214.929870605 214.790222168 214.900085449 215.000183105 214.980163574 214.969909668 215.130065918 215.50994873 215.889831543 215.860046387 215.110046387 213.67010498 217.679840088 217.060211182 216.569976807 216.199859619 215.799957275 215.409820557 215.179840088 215.230133057 215.429840088 215.600250244 215.699859619 215.799957275 215.929840088 216.089996338 216.21987915 216.089996338 215.460113525 218.210113525 217.730133057 217.270172119 216.830230713 216.330230713 215.810211182 215.440093994 215.279937744 215.350250244 215.6300354 216.069976807 216.46987915 216.6300354 216.549957275 216.449859619 216.440093994 216.339996338 217.560241699 217.020202637 216.540222168 216.000183105 215.440124512 215.029968262 214.949890137 215.070007324 215.159851074 215.09979248 215.020202637 215.119812012 215.469909668 215.860046387 215.880065918 215.150085449 213.699890137 217.750152588 217.119781494 216.589996338 216.179840088 215.810211182 215.449859619 215.210113525 215.210113525 215.369781494 215.549957275 215.690093994 215.779937744 215.900054932 216.060211182 216.199859619 216.060211182 215.409820557 218.170074463 217.670074463 217.239898682 216.839996338 216.369781494 215.860015869 215.460113525 215.29019165 215.339996338 215.569976807 215.960113525 216.360015869 216.580230713 216.580230713 216.500152588 216.449859619 216.310211182 217.590026855 217.049987793 216.540222168 216.000183105 215.489929199 215.17010498 215.159851074 215.310241699 215.369812012 215.25994873 215.139831543 215.199890137 215.50994873 215.889831543 215.92010498 215.179870605 213.719909668 217.869781494 217.259918213 216.730133057 216.270172119 215.889801025 215.529937744 215.279937744 215.210113525 215.330230713 215.520172119 215.679840088 215.779937744 215.860015869 216.000152588 216.159820557 216.049957275 215.400054932 218.170074463 217.670074463 217.270172119 216.929840088 216.500152588 215.980133057 215.569976807 215.369781494 215.3800354 215.54019165 215.869781494 216.279937744 216.580230713 216.670074463 216.610015869 216.500152588 216.319976807 217.560241699 216.969909668 216.460144043 215.949890137 215.489929199 215.25994873 215.310241699 215.469909668 215.529968262 215.449890137 215.340026855 215.369812012 215.619812012 215.949890137 215.969909668 215.230163574 213.770202637 217.889801025 217.330230713 216.810211182 216.350250244 215.929840088 215.560211182 215.279937744 215.170074463 215.270172119 215.500152588 215.710113525 215.79019165 215.810211182 215.920074463 216.110015869 216.100250244 215.509918213 218.139801025 217.6300354 217.250152588 216.940093994 216.529937744 216.029937744 215.610015869 215.420074463 215.440093994 215.600250244 215.900054932 216.299957275 216.610015869 216.730133057 216.679840088 216.569976807 216.389801025 217.520202637 216.909851074 216.380065918 215.900085449 215.500183105 215.329772949 215.400085449 215.540222168 215.59979248 215.560241699 215.50994873 215.500183105 215.650085449 215.929870605 215.949890137 215.25994873 213.829772949 217.799957275 217.299957275 216.819976807 216.350250244 215.920074463 215.520172119 215.21987915 215.089996338 215.190093994 215.449859619 215.690093994 215.750152588 215.710113525 215.79019165 216.04019165 216.1300354 215.659820557 218.060211182 217.549957275 217.150054932 216.830230713 216.440093994 215.949859619 215.560211182 215.400054932 215.449859619 215.6300354 215.920074463 216.279937744 216.569976807 216.679840088 216.659820557 216.600250244 216.489898682 217.590026855 216.989929199 216.449890137 215.949890137 215.590026855 215.469909668 215.529968262 215.619812012 215.650085449 215.650085449 215.619812012 215.560241699 215.610046387 215.810241699 215.860046387 215.25994873 213.889831543 217.770172119 217.310211182 216.850250244 216.369781494 215.909820557 215.529937744 215.230133057 215.080230713 215.1300354 215.3800354 215.6300354 215.690093994 215.610015869 215.659820557 215.929840088 216.089996338 215.739898682 218.060211182 217.54019165 217.1300354 216.770172119 216.3800354 215.920074463 215.549957275 215.400054932 215.429840088 215.589996338 215.860015869 216.210113525 216.500152588 216.619781494 216.619781494 216.619781494 216.589996338 217.719909668 217.139831543 216.570007324 216.029968262 215.699890137 215.639831543 215.710144043 215.750183105 215.730163574 215.739929199 215.730163574 215.630065918 215.570007324 215.699890137 215.770202637 215.219909668 213.900085449 217.850250244 217.389801025 216.889801025 216.3800354 215.920074463 215.560211182 215.279937744 215.089996338 215.089996338 215.310211182 215.580230713 215.679840088 215.610015869 215.6300354 215.850250244 216.020172119 215.759918213 218.139801025 217.670074463 217.239898682 216.860015869 216.440093994 216.009918213 215.659820557 215.46987915 215.420074463 215.529937744 215.799957275 216.170074463 216.500152588 216.659820557 216.679840088 216.679840088 216.659820557 217.779968262 217.190124512 216.570007324 216.000183105 215.699890137 215.710144043 215.810241699 215.820007324 215.770202637 215.799987793 215.840026855 215.730163574 215.59979248 215.650085449 215.679870605 215.150085449 213.860046387 217.909820557 217.3800354 216.830230713 216.270172119 215.79019165 215.460113525 215.210113525 215.020172119 214.989898682 215.199859619 215.520172119 215.710113525 215.71987915 215.699859619 215.830230713 215.960113525 215.779937744 218.21987915 217.79019165 217.360015869 216.929840088 216.489898682 216.04019165 215.710113525 215.489898682 215.409820557 215.489898682 215.779937744 216.210113525 216.589996338 216.759918213 216.759918213 216.71987915 216.670074463 217.739929199 217.130065918 216.50994873 215.949890137 215.67010498 215.710144043 215.829772949 215.799987793 215.739929199 215.810241699 215.909851074 215.829772949 215.650085449 215.59979248 215.549987793 215.020202637 213.799987793 217.810211182 217.21987915 216.650054932 216.089996338 215.6300354 215.29019165 215.049957275 214.869781494 214.839996338 215.069976807 215.429840088 215.699859619 215.770172119 215.759918213 215.810211182 215.909820557 215.830230713 218.230133057 217.819976807 217.369781494 216.889801025 216.409820557 215.960113525 215.6300354 215.429840088 215.369781494 215.489898682 215.810211182 216.250152588 216.619781494 216.770172119 216.739898682 216.659820557 216.589996338 217.75994873 217.150085449 216.570007324 216.070007324 215.810241699 215.810241699 215.869812012 215.799987793 215.739929199 215.820007324 215.949890137 215.889831543 215.679870605 215.560241699 215.429870605 214.889831543 213.779968262 217.6300354 217.04019165 216.529937744 216.04019165 215.600250244 215.250152588 214.980133057 214.810211182 214.79019165 215.000152588 215.360015869 215.650054932 215.759918213 215.750152588 215.759918213 215.839996338 215.839996338 218.210113525 217.79019165 217.330230713 216.830230713 216.310211182 215.860015869 215.54019165 215.389801025 215.3800354 215.520172119 215.839996338 216.250152588 216.569976807 216.699859619 216.659820557 216.589996338 216.529937744 217.840026855 217.279968262 216.790222168 216.360046387 216.090026855 216.000183105 215.989929199 215.889831543 215.820007324 215.889831543 216.000183105 215.940124512 215.750183105 215.590026855 215.409851074 214.889831543 213.869812012 217.560211182 216.989898682 216.529937744 216.119781494 215.710113525 215.339996338 215.04019165 214.860015869 214.839996338 215.000152588 215.310211182 215.600250244 215.750152588 215.750152588 215.710113525 215.750152588 215.819976807 218.210113525 217.79019165 217.339996338 216.839996338 216.319976807 215.860015869 215.560211182 215.429840088 215.440093994 215.569976807 215.869781494 216.250152588 216.560211182 216.679840088 216.659820557 216.610015869 216.560211182 217.900085449 217.389831543 216.960144043 216.560241699 216.250183105 216.079772949 216.020202637 215.949890137 215.909851074 215.960144043 216.040222168 215.989929199 215.840026855 215.699890137 215.50994873 214.989929199 214.040222168 217.639801025 217.049957275 216.569976807 216.139801025 215.730133057 215.330230713 215.020172119 214.839996338 214.810211182 214.949859619 215.230133057 215.580230713 215.810211182 215.819976807 215.690093994 215.659820557 215.739898682 218.230133057 217.799957275 217.350250244 216.860015869 216.330230713 215.8800354 215.600250244 215.480133057 215.46987915 215.600250244 215.8800354 216.270172119 216.600250244 216.750152588 216.750152588 216.710113525 216.639801025 217.869812012 217.329772949 216.900085449 216.500183105 216.159851074 215.969909668 215.92010498 215.92010498 215.929870605 215.980163574 216.029968262 216.000183105 215.900085449 215.770202637 215.570007324 215.060241699 214.17010498 217.71987915 217.080230713 216.509918213 216.020172119 215.569976807 215.170074463 214.830230713 214.639801025 214.610015869 214.759918213 215.089996338 215.520172119 215.830230713 215.830230713 215.610015869 215.500152588 215.589996338 218.21987915 217.770172119 217.310211182 216.810211182 216.279937744 215.819976807 215.560211182 215.460113525 215.46987915 215.580230713 215.869781494 216.259918213 216.589996338 216.750152588 216.759918213 216.730133057 216.679840088 217.799987793 217.190124512 216.699890137 216.290222168 215.989929199 215.820007324 215.799987793 215.840026855 215.909851074 215.980163574 216.029968262 216.020202637 215.92010498 215.790222168 215.540222168 215.040222168 214.239929199 217.710113525 217.029937744 216.429840088 215.920074463 215.460113525 215.029937744 214.670074463 214.449859619 214.420074463 214.589996338 214.960113525 215.429840088 215.770172119 215.750152588 215.46987915 215.29019165 215.409820557 218.190093994 217.750152588 217.29019165 216.810211182 216.279937744 215.830230713 215.589996338 215.520172119 215.529937744 215.6300354 215.8800354 216.21987915 216.500152588 216.619781494 216.659820557 216.659820557 216.650054932 217.799987793 217.070007324 216.50994873 216.130065918 215.869812012 215.719909668 215.690124512 215.750183105 215.860046387 215.980163574 216.079772949 216.090026855 216.00994873 215.829772949 215.529968262 215.040222168 214.320007324 217.6300354 216.96987915 216.420074463 215.960113525 215.520172119 215.04019165 214.6300354 214.389801025 214.389801025 214.600250244 214.949859619 215.3800354 215.690093994 215.659820557 215.360015869 215.150054932 215.299957275 218.199859619 217.759918213 217.330230713 216.889801025 216.420074463 216.020172119 215.799957275 215.730133057 215.750152588 215.839996338 216.009918213 216.250152588 216.449859619 216.569976807 216.619781494 216.650054932 216.650054932 217.829772949 217.00994873 216.389831543 216.00994873 215.75994873 215.579772949 215.500183105 215.549987793 215.710144043 215.900085449 216.070007324 216.150085449 216.119812012 215.960144043 215.630065918 215.119812012 214.440124512 217.610015869 216.96987915 216.449859619 216.009918213 215.549957275 215.029937744 214.569976807 214.3800354 214.460113525 214.699859619 215.020172119 215.369781494 215.659820557 215.659820557 215.389801025 215.159820557 215.250152588 218.199859619 217.739898682 217.319976807 216.940093994 216.549957275 216.199859619 216.009918213 215.960113525 215.96987915 216.04019165 216.170074463 216.350250244 216.529937744 216.670074463 216.770172119 216.79019165 216.710113525 217.84979248 216.989929199 216.329772949 215.92010498 215.639831543 215.369812012 215.219909668 215.250183105 215.429870605 215.67010498 215.889831543 216.070007324 216.159851074 216.070007324 215.750183105 215.219909668 214.560241699 217.699859619 217.049957275 216.500152588 215.989898682 215.449859619 214.889801025 214.449859619 214.319976807 214.480133057 214.739898682 215.000152588 215.310211182 215.610015869 215.710113525 215.489898682 215.199859619 215.179840088 218.139801025 217.6300354 217.190093994 216.839996338 216.500152588 216.210113525 216.04019165 215.989898682 216.020172119 216.089996338 216.21987915 216.389801025 216.589996338 216.810211182 216.960113525 216.929840088 216.739898682 217.889831543 217.049987793 216.389831543 215.960144043 215.630065918 215.299987793 215.060241699 215.029968262 215.190124512 215.409851074 215.659851074 215.909851074 216.090026855 216.070007324 215.75994873 215.219909668 214.560241699 217.850250244 217.199859619 216.589996338 216.009918213 215.420074463 214.860015869 214.460113525 214.350250244 214.509918213 214.739898682 214.940093994 215.199859619 215.529937744 215.690093994 215.500152588 215.1300354 215.009918213 218.069976807 217.54019165 217.080230713 216.699859619 216.3800354 216.100250244 215.949859619 215.929840088 215.980133057 216.060211182 216.170074463 216.319976807 216.54019165 216.79019165 216.960113525 216.920074463 216.690093994 217.989929199 217.17010498 216.500183105 216.079772949 215.750183105 215.400085449 215.119812012 215.029968262 215.119812012 215.310241699 215.560241699 215.869812012 216.079772949 216.029968262 215.679870605 215.119812012 214.480163574 217.929840088 217.299957275 216.690093994 216.119781494 215.610015869 215.110015869 214.739898682 214.580230713 214.679840088 214.839996338 214.989898682 215.199859619 215.480133057 215.619781494 215.409820557 214.96987915 214.799957275 218.069976807 217.580230713 217.150054932 216.759918213 216.3800354 216.069976807 215.909820557 215.900054932 215.96987915 216.060211182 216.150054932 216.270172119 216.460113525 216.699859619 216.860015869 216.830230713 216.670074463 218.029968262 217.17010498 216.460144043 216.049987793 215.750183105 215.440124512 215.17010498 215.049987793 215.110046387 215.299987793 215.619812012 215.969909668 216.17010498 216.040222168 215.619812012 215.040222168 214.440124512 217.860015869 217.250152588 216.679840088 216.190093994 215.770172119 215.3800354 215.029937744 214.830230713 214.869781494 215.029937744 215.190093994 215.330230713 215.520172119 215.569976807 215.319976807 214.8800354 214.699859619 218.119781494 217.690093994 217.270172119 216.839996338 216.409820557 216.069976807 215.900054932 215.909820557 215.980133057 216.060211182 216.150054932 216.29019165 216.480133057 216.699859619 216.830230713 216.850250244 216.79019165 217.949890137 217.000183105 216.239929199 215.799987793 215.50994873 215.250183105 215.040222168 214.969909668 215.029968262 215.250183105 215.630065918 216.029968262 216.230163574 216.060241699 215.610046387 215.040222168 214.460144043 217.759918213 217.139801025 216.569976807 216.100250244 215.739898682 215.420074463 215.100250244 214.909820557 214.949859619 215.179840088 215.360015869 215.46987915 215.549957275 215.560211182 215.319976807 214.889801025 214.690093994 218.1300354 217.690093994 217.21987915 216.730133057 216.259918213 215.920074463 215.799957275 215.810211182 215.869781494 215.929840088 216.060211182 216.29019165 216.549957275 216.779937744 216.909820557 216.96987915 216.96987915 217.84979248 216.909851074 216.159851074 215.67010498 215.329772949 215.070007324 214.929870605 214.909851074 214.969909668 215.179870605 215.560241699 215.969909668 216.179870605 216.029968262 215.619812012 215.079772949 214.460144043 217.819976807 217.199859619 216.610015869 216.069976807 215.679840088 215.389801025 215.119781494 214.940093994 215.000152588 215.250152588 215.440093994 215.489898682 215.529937744 215.560211182 215.369781494 214.920074463 214.639801025 218.089996338 217.589996338 217.04019165 216.500152588 216.020172119 215.750152588 215.679840088 215.690093994 215.710113525 215.750152588 215.929840088 216.239898682 216.560211182 216.799957275 216.929840088 217.000152588 217.029937744 217.92010498 217.130065918 216.469909668 215.940124512 215.500183105 215.199890137 215.060241699 215.040222168 215.090026855 215.239929199 215.570007324 215.940124512 216.119812012 215.989929199 215.619812012 215.060241699 214.360046387 218.080230713 217.520172119 216.900054932 216.279937744 215.830230713 215.549957275 215.299957275 215.110015869 215.1300354 215.330230713 215.460113525 215.46987915 215.520172119 215.619781494 215.46987915 214.96987915 214.529937744 218.100250244 217.569976807 217.000152588 216.460113525 216.020172119 215.779937744 215.710113525 215.690093994 215.650054932 215.679840088 215.889801025 216.210113525 216.520172119 216.730133057 216.860015869 216.949859619 216.980133057 218.09979248 217.469909668 216.929870605 216.389831543 215.84979248 215.469909668 215.270202637 215.199890137 215.199890137 215.34979248 215.679870605 216.020202637 216.159851074 216.000183105 215.610046387 215.000183105 214.219909668 218.250152588 217.759918213 217.179840088 216.529937744 216.04019165 215.759918213 215.509918213 215.270172119 215.21987915 215.3800354 215.509918213 215.520172119 215.610015869 215.779937744 215.670074463 215.1300354 214.589996338 218.170074463 217.710113525 217.210113525 216.699859619 216.270172119 215.96987915 215.819976807 215.699859619 215.6300354 215.699859619 215.949859619 216.259918213 216.520172119 216.699859619 216.830230713 216.929840088 216.940093994 218.130065918 217.570007324 217.070007324 216.529968262 215.989929199 215.560241699 215.279968262 215.090026855 215.049987793 215.290222168 215.719909668 216.079772949 216.179870605 215.989929199 215.570007324 214.960144043 214.199890137 218.139801025 217.690093994 217.139801025 216.520172119 216.080230713 215.810211182 215.500152588 215.159820557 215.089996338 215.330230713 215.549957275 215.600250244 215.699859619 215.920074463 215.909820557 215.460113525 214.989898682 218.21987915 217.850250244 217.420074463 216.949859619 216.46987915 216.069976807 215.770172119 215.549957275 215.460113525 215.600250244 215.920074463 216.250152588 216.509918213 216.699859619 216.8800354 217.009918213 216.980133057 217.960144043 217.329772949 216.810241699 216.299987793 215.840026855 215.480163574 215.130065918 214.810241699 214.719909668 215.029968262 215.549987793 215.960144043 216.049987793 215.889831543 215.549987793 215.029968262 214.380065918 217.869781494 217.409820557 216.909820557 216.389801025 216.029937744 215.770172119 215.369781494 214.949859619 214.8800354 215.230133057 215.569976807 215.6300354 215.690093994 215.929840088 216.089996338 215.8800354 215.589996338 218.190093994 217.860015869 217.46987915 217.009918213 216.500152588 216.020172119 215.610015869 215.299957275 215.190093994 215.350250244 215.699859619 216.080230713 216.400054932 216.670074463 216.900054932 217.000152588 216.929840088 217.790222168 217.079772949 216.529968262 216.079772949 215.739929199 215.440124512 215.049987793 214.650085449 214.520202637 214.820007324 215.34979248 215.739929199 215.889831543 215.880065918 215.67010498 215.239929199 214.699890137 217.750152588 217.310211182 216.869781494 216.429840088 216.139801025 215.869781494 215.400054932 214.889801025 214.819976807 215.239898682 215.610015869 215.619781494 215.610015869 215.889801025 216.230133057 216.21987915 216.020172119 218.139801025 217.799957275 217.400054932 216.940093994 216.440093994 215.960113525 215.529937744 215.179840088 215.029937744 215.150054932 215.500152588 215.900054932 216.279937744 216.589996338 216.799957275 216.839996338 216.71987915 217.810241699 217.090026855 216.529968262 216.079772949 215.739929199 215.389831543 214.969909668 214.590026855 214.500183105 214.799987793 215.250183105 215.639831543 215.949890137 216.130065918 216.020202637 215.529968262 214.929870605 217.869781494 217.440093994 217.009918213 216.560211182 216.230133057 215.920074463 215.409820557 214.909820557 214.860015869 215.279937744 215.639801025 215.650054932 215.659820557 216.020172119 216.460113525 216.460113525 216.110015869 218.139801025 217.750152588 217.319976807 216.850250244 216.360015869 215.8800354 215.420074463 215.069976807 214.929840088 215.069976807 215.429840088 215.869781494 216.270172119 216.560211182 216.670074463 216.619781494 216.480133057 217.909851074 217.190124512 216.630065918 216.130065918 215.630065918 215.130065918 214.659851074 214.389831543 214.449890137 214.770202637 215.190124512 215.67010498 216.190124512 216.540222168 216.380065918 215.659851074 214.84979248 218.04019165 217.580230713 217.060211182 216.489898682 216.009918213 215.610015869 215.150054932 214.759918213 214.79019165 215.210113525 215.580230713 215.690093994 215.860015869 216.330230713 216.730133057 216.569976807 215.920074463 218.100250244 217.659820557 217.190093994 216.690093994 216.159820557 215.619781494 215.110015869 214.759918213 214.699859619 214.949859619 215.400054932 215.920074463 216.350250244 216.589996338 216.619781494 216.529937744 216.460113525 217.869812012 217.130065918 216.59979248 216.079772949 215.449890137 214.790222168 214.290222168 214.130065918 214.310241699 214.650085449 215.070007324 215.650085449 216.360046387 216.770202637 216.429870605 215.440124512 214.469909668 218.119781494 217.600250244 217.009918213 216.310211182 215.690093994 215.21987915 214.839996338 214.600250244 214.699859619 215.100250244 215.460113525 215.690093994 216.000152588 216.480133057 216.799957275 216.509918213 215.710113525 218.009918213 217.509918213 217.020172119 216.54019165 216.009918213 215.400054932 214.850250244 214.500152588 214.509918213 214.839996338 215.339996338 215.869781494 216.299957275 216.549957275 216.610015869 216.600250244 216.639801025 217.659851074 216.92010498 216.480163574 216.029968262 215.400085449 214.690124512 214.190124512 214.110046387 214.310241699 214.59979248 214.980163574 215.619812012 216.34979248 216.659851074 216.139831543 215.040222168 214.130065918 218.159820557 217.650054932 217.1300354 216.460113525 215.810211182 215.310211182 214.96987915 214.79019165 214.850250244 215.1300354 215.429840088 215.650054932 215.909820557 216.259918213 216.46987915 216.21987915 215.600250244 217.940093994 217.460113525 217.029937744 216.650054932 216.210113525 215.650054932 215.100250244 214.750152588 214.730133057 215.000152588 215.3800354 215.770172119 216.139801025 216.420074463 216.600250244 216.71987915 216.889801025 217.480163574 216.75994873 216.369812012 215.960144043 215.329772949 214.630065918 214.199890137 214.179870605 214.42010498 214.710144043 215.09979248 215.730163574 216.34979248 216.460144043 215.829772949 214.840026855 214.179870605 218.150054932 217.750152588 217.389801025 216.839996338 216.199859619 215.650054932 215.259918213 215.029937744 215.04019165 215.270172119 215.560211182 215.710113525 215.759918213 215.810211182 215.869781494 215.810211182 215.560211182 218.000152588 217.580230713 217.230133057 216.940093994 216.589996338 216.119781494 215.619781494 215.279937744 215.230133057 215.389801025 215.619781494 215.839996338 216.110015869 216.409820557 216.670074463 216.869781494 217.029937744 217.42010498 216.659851074 216.150085449 215.579772949 214.810241699 214.079772949 213.730163574 213.889831543 214.340026855 214.829772949 215.400085449 216.029968262 216.500183105 216.429870605 215.820007324 215.079772949 214.650085449 217.940093994 217.600250244 217.279937744 216.710113525 216.000152588 215.360015869 214.900054932 214.670074463 214.79019165 215.230133057 215.730133057 215.940093994 215.799957275 215.549957275 215.449859619 215.500152588 215.529937744 218.049957275 217.679840088 217.310211182 216.929840088 216.500152588 216.009918213 215.549957275 215.279937744 215.330230713 215.589996338 215.889801025 216.150054932 216.3800354 216.650054932 216.869781494 217.020172119 217.049957275 217.409851074 216.500183105 215.739929199 214.900085449 213.960144043 213.210144043 213.020202637 213.429870605 214.17010498 214.969909668 215.739929199 216.380065918 216.690124512 216.540222168 216.070007324 215.579772949 215.270202637 217.529937744 217.069976807 216.580230713 215.839996338 215.000152588 214.330230713 213.920074463 213.860015869 214.259918213 215.069976807 215.889801025 216.250152588 216.029937744 215.610015869 215.3800354 215.420074463 215.480133057 217.96987915 217.569976807 217.04019165 216.400054932 215.730133057 215.119781494 214.679840088 214.569976807 214.869781494 215.46987915 216.069976807 216.500152588 216.759918213 216.949859619 217.080230713 217.110015869 217.020172119 217.400085449 216.329772949 215.449890137 214.560241699 213.719909668 213.179870605 213.199890137 213.739929199 214.579772949 215.449890137 216.190124512 216.659851074 216.799987793 216.650085449 216.389831543 216.090026855 215.719909668 217.259918213 216.619781494 215.929840088 215.080230713 214.299957275 213.810211182 213.6300354 213.779937744 214.360015869 215.310211182 216.199859619 216.529937744 216.239898682 215.730133057 215.480133057 215.480133057 215.460113525 217.799957275 217.350250244 216.699859619 215.909820557 215.139801025 214.54019165 214.199859619 214.250152588 214.739898682 215.520172119 216.29019165 216.779937744 216.980133057 217.029937744 217.060211182 217.060211182 216.960113525 217.440124512 216.389831543 215.67010498 215.159851074 214.810241699 214.719909668 214.940124512 215.369812012 215.92010498 216.429870605 216.790222168 216.900085449 216.820007324 216.710144043 216.67010498 216.50994873 216.020202637 217.440093994 216.779937744 216.110015869 215.440093994 215.009918213 214.900054932 214.980133057 215.179840088 215.600250244 216.230133057 216.730133057 216.730133057 216.250152588 215.739898682 215.54019165 215.580230713 215.520172119 217.799957275 217.3800354 216.810211182 216.190093994 215.670074463 215.330230713 215.199859619 215.310211182 215.710113525 216.29019165 216.79019165 217.020172119 216.980133057 216.8800354 216.8800354 216.949859619 216.929840088 217.610046387 216.750183105 216.389831543 216.400085449 216.639831543 216.969909668 217.25994873 217.429870605 217.460144043 217.429870605 217.310241699 217.090026855 216.84979248 216.810241699 216.92010498 216.869812012 216.320007324 217.960113525 217.420074463 216.96987915 216.679840088 216.690093994 216.940093994 217.1300354 217.179840088 217.210113525 217.29019165 217.250152588 216.850250244 216.210113525 215.690093994 215.549957275 215.659820557 215.659820557 218.009918213 217.71987915 217.3800354 217.100250244 217.000152588 217.049957275 217.1300354 217.199859619 217.299957275 217.400054932 217.409820557 217.239898682 216.96987915 216.770172119 216.779937744 216.920074463 216.980133057 217.810241699 217.190124512 217.079772949 217.369812012 217.869812012 218.340026855 218.570007324 218.500183105 218.199890137 217.829772949 217.480163574 217.130065918 216.880065918 216.889831543 217.110046387 217.130065918 216.639831543 218.279937744 217.850250244 217.589996338 217.589996338 217.8800354 218.250152588 218.409820557 218.270172119 218.009918213 217.759918213 217.429840088 216.909820557 216.259918213 215.759918213 215.610015869 215.71987915 215.79019165 218.199859619 218.020172119 217.830230713 217.79019165 217.960113525 218.210113525 218.3800354 218.400054932 218.279937744 218.049957275 217.739898682 217.389801025 217.060211182 216.8800354 216.900054932 217.049957275 217.089996338 217.889831543 217.440124512 217.360046387 217.579772949 217.960144043 218.310241699 218.480163574 218.369812012 218.029968262 217.650085449 217.320007324 217.040222168 216.860046387 216.889831543 217.079772949 217.159851074 216.799987793 218.119781494 217.699859619 217.46987915 217.520172119 217.819976807 218.139801025 218.259918213 218.110015869 217.860015869 217.610015869 217.319976807 216.909820557 216.409820557 215.960113525 215.730133057 215.71987915 215.79019165 218.1300354 217.960113525 217.770172119 217.730133057 217.8800354 218.1300354 218.330230713 218.389801025 218.259918213 217.980133057 217.670074463 217.409820557 217.210113525 217.089996338 217.100250244 217.170074463 217.1300354 217.790222168 217.460144043 217.329772949 217.389831543 217.549987793 217.75994873 217.940124512 217.949890137 217.75994873 217.440124512 217.159851074 216.960144043 216.810241699 216.779968262 216.880065918 216.969909668 216.790222168 217.679840088 217.250152588 216.989898682 216.96987915 217.159820557 217.420074463 217.610015869 217.650054932 217.589996338 217.449859619 217.199859619 216.8800354 216.500152588 216.100250244 215.79019165 215.659820557 215.670074463 217.810211182 217.6300354 217.400054932 217.29019165 217.350250244 217.549957275 217.799957275 217.980133057 217.96987915 217.770172119 217.529937744 217.389801025 217.279937744 217.199859619 217.170074463 217.190093994 217.089996338 217.590026855 217.369812012 217.310241699 217.320007324 217.380065918 217.529968262 217.779968262 217.949890137 217.860046387 217.529968262 217.199890137 216.980163574 216.829772949 216.690124512 216.67010498 216.750183105 216.739929199 217.299957275 216.96987915 216.759918213 216.699859619 216.799957275 217.04019165 217.350250244 217.6300354 217.759918213 217.639801025 217.299957275 216.8800354 216.46987915 216.100250244 215.779937744 215.600250244 215.569976807 217.480133057 217.339996338 217.170074463 217.069976807 217.119781494 217.350250244 217.699859619 218.009918213 218.080230713 217.8800354 217.610015869 217.420074463 217.279937744 217.159820557 217.110015869 217.139801025 217.069976807 217.380065918 217.270202637 217.320007324 217.400085449 217.429870605 217.549987793 217.829772949 218.09979248 218.070007324 217.699890137 217.299987793 217.049987793 216.880065918 216.679870605 216.560241699 216.650085449 216.770202637 217.100250244 216.929840088 216.850250244 216.819976807 216.860015869 217.04019165 217.400054932 217.819976807 218.069976807 217.96987915 217.520172119 216.960113525 216.460113525 216.080230713 215.819976807 215.659820557 215.600250244 217.299957275 217.230133057 217.170074463 217.170074463 217.259918213 217.480133057 217.869781494 218.259918213 218.389801025 218.179840088 217.819976807 217.500152588 217.250152588 217.069976807 217.049957275 217.159820557 217.170074463 217.199890137 217.139831543 217.239929199 217.340026855 217.34979248 217.380065918 217.650085449 217.980163574 218.00994873 217.690124512 217.320007324 217.09979248 216.92010498 216.67010498 216.50994873 216.630065918 216.869812012 216.96987915 216.900054932 216.929840088 216.960113525 216.980133057 217.069976807 217.360015869 217.770172119 218.089996338 218.089996338 217.699859619 217.110015869 216.549957275 216.150054932 215.920074463 215.810211182 215.730133057 217.239898682 217.210113525 217.21987915 217.259918213 217.319976807 217.449859619 217.770172119 218.179840088 218.400054932 218.29019165 217.960113525 217.569976807 217.210113525 216.989898682 217.009918213 217.21987915 217.299957275 217.119812012 216.989929199 217.060241699 217.150085449 217.139831543 217.139831543 217.369812012 217.730163574 217.84979248 217.630065918 217.329772949 217.130065918 216.909851074 216.59979248 216.42010498 216.59979248 216.949890137 216.960113525 216.819976807 216.869781494 216.989898682 217.069976807 217.150054932 217.330230713 217.6300354 217.940093994 218.029937744 217.779937744 217.270172119 216.679840088 216.239898682 216.009918213 215.940093994 215.850250244 217.259918213 217.199859619 217.199859619 217.250152588 217.250152588 217.259918213 217.46987915 217.860015869 218.190093994 218.21987915 217.96987915 217.560211182 217.139801025 216.869781494 216.929840088 217.190093994 217.319976807 217.159851074 216.889831543 216.889831543 217.049987793 217.110046387 217.159851074 217.409851074 217.750183105 217.880065918 217.690124512 217.389831543 217.17010498 216.900085449 216.50994873 216.320007324 216.560241699 217.000183105 217.230133057 216.909820557 216.889801025 217.069976807 217.279937744 217.449859619 217.589996338 217.79019165 217.960113525 217.989898682 217.770172119 217.299957275 216.710113525 216.21987915 215.980133057 215.949859619 215.900054932 217.429840088 217.279937744 217.230133057 217.279937744 217.29019165 217.270172119 217.440093994 217.799957275 218.1300354 218.179840088 217.909820557 217.460113525 216.980133057 216.710113525 216.779937744 217.069976807 217.239898682 217.329772949 216.949890137 216.929870605 217.150085449 217.310241699 217.429870605 217.659851074 217.960144043 218.00994873 217.739929199 217.409851074 217.179870605 216.880065918 216.460144043 216.270202637 216.549987793 217.040222168 217.730133057 217.270172119 217.150054932 217.29019165 217.520172119 217.750152588 217.96987915 218.1300354 218.159820557 217.989898682 217.670074463 217.210113525 216.650054932 216.150054932 215.900054932 215.889801025 215.889801025 217.739898682 217.500152588 217.3800354 217.429840088 217.480133057 217.549957275 217.739898682 218.069976807 218.279937744 218.159820557 217.750152588 217.250152588 216.830230713 216.610015869 216.699859619 216.980133057 217.190093994 217.579772949 217.210144043 217.210144043 217.380065918 217.460144043 217.529968262 217.739929199 217.969909668 217.929870605 217.590026855 217.270202637 217.09979248 216.860046387 216.460144043 216.239929199 216.50994873 217.049987793 218.21987915 217.759918213 217.560211182 217.529937744 217.569976807 217.710113525 218.000152588 218.259918213 218.239898682 217.940093994 217.520172119 217.100250244 216.6300354 216.150054932 215.860015869 215.860015869 215.889801025 218.080230713 217.810211182 217.600250244 217.549957275 217.580230713 217.670074463 217.929840088 218.239898682 218.330230713 218.04019165 217.54019165 217.069976807 216.770172119 216.659820557 216.750152588 217.000152588 217.239898682 217.840026855 217.650085449 217.650085449 217.630065918 217.449890137 217.329772949 217.469909668 217.679870605 217.619812012 217.279968262 217.029968262 216.980163574 216.860046387 216.480163574 216.199890137 216.409851074 216.960144043 218.429840088 218.1300354 217.960113525 217.730133057 217.449859619 217.3800354 217.690093994 218.060211182 218.100250244 217.770172119 217.3800354 217.060211182 216.690093994 216.230133057 215.889801025 215.850250244 215.900054932 218.279937744 218.049957275 217.799957275 217.619781494 217.489898682 217.500152588 217.739898682 218.069976807 218.159820557 217.860015869 217.369781494 217.000152588 216.819976807 216.779937744 216.839996338 217.049957275 217.310211182 217.989929199 218.020202637 218.020202637 217.790222168 217.380065918 217.110046387 217.190124512 217.380065918 217.299987793 217.000183105 216.829772949 216.92010498 216.900085449 216.549987793 216.179870605 216.270202637 216.810241699 218.259918213 218.190093994 218.150054932 217.889801025 217.460113525 217.239898682 217.460113525 217.839996338 217.900054932 217.589996338 217.270172119 217.069976807 216.799957275 216.299957275 215.900054932 215.839996338 215.929840088 218.230133057 218.1300354 217.929840088 217.699859619 217.449859619 217.330230713 217.46987915 217.779937744 217.940093994 217.739898682 217.339996338 217.04019165 216.900054932 216.819976807 216.830230713 217.029937744 217.350250244 217.860046387 218.000183105 217.980163574 217.730163574 217.360046387 217.130065918 217.17010498 217.25994873 217.110046387 216.810241699 216.699890137 216.869812012 216.949890137 216.650085449 216.219909668 216.210144043 216.690124512 217.830230713 217.8800354 218.000152588 217.940093994 217.650054932 217.480133057 217.6300354 217.869781494 217.819976807 217.480133057 217.190093994 217.060211182 216.799957275 216.29019165 215.830230713 215.79019165 215.940093994 217.980133057 217.96987915 217.900054932 217.770172119 217.610015869 217.460113525 217.500152588 217.710113525 217.860015869 217.730133057 217.409820557 217.100250244 216.8800354 216.730133057 216.710113525 216.949859619 217.360015869 217.469909668 217.460144043 217.400085449 217.310241699 217.25994873 217.270202637 217.299987793 217.239929199 216.989929199 216.690124512 216.619812012 216.820007324 216.960144043 216.750183105 216.34979248 216.239929199 216.590026855 217.400054932 217.339996338 217.500152588 217.679840088 217.759918213 217.819976807 217.96987915 218.060211182 217.869781494 217.460113525 217.150054932 217.029937744 216.779937744 216.250152588 215.750152588 215.670074463 215.850250244 217.670074463 217.610015869 217.600250244 217.670074463 217.750152588 217.759918213 217.770172119 217.850250244 217.900054932 217.770172119 217.449859619 217.100250244 216.799957275 216.600250244 216.600250244 216.900054932 217.369781494 217.029968262 216.719909668 216.570007324 216.67010498 216.980163574 217.239929199 217.290222168 217.139831543 216.869812012 216.650085449 216.590026855 216.750183105 216.92010498 216.829772949 216.520202637 216.310241699 216.480163574 217.21987915 216.8800354 216.889801025 217.170074463 217.520172119 217.819976807 218.060211182 218.139801025 217.929840088 217.520172119 217.190093994 217.029937744 216.779937744 216.250152588 215.690093994 215.500152588 215.619781494 217.460113525 217.210113525 217.100250244 217.270172119 217.589996338 217.819976807 217.920074463 217.960113525 217.929840088 217.79019165 217.500152588 217.150054932 216.799957275 216.560211182 216.560211182 216.8800354 217.330230713 216.880065918 216.360046387 216.090026855 216.230163574 216.639831543 216.980163574 217.049987793 216.929870605 216.799987793 216.710144043 216.679870605 216.739929199 216.869812012 216.900085449 216.699890137 216.42010498 216.360046387 217.409820557 216.839996338 216.560211182 216.690093994 217.04019165 217.420074463 217.759918213 217.960113525 217.909820557 217.569976807 217.230133057 217.029937744 216.799957275 216.310211182 215.690093994 215.319976807 215.270172119 217.489898682 217.009918213 216.690093994 216.739898682 217.089996338 217.480133057 217.730133057 217.839996338 217.860015869 217.779937744 217.600250244 217.279937744 216.900054932 216.619781494 216.560211182 216.819976807 217.210113525 217.150085449 216.659851074 216.329772949 216.290222168 216.500183105 216.690124512 216.739929199 216.739929199 216.779968262 216.829772949 216.810241699 216.770202637 216.84979248 216.949890137 216.860046387 216.560241699 216.340026855 217.860015869 217.199859619 216.690093994 216.54019165 216.659820557 216.929840088 217.29019165 217.650054932 217.770172119 217.569976807 217.230133057 216.989898682 216.779937744 216.350250244 215.71987915 215.210113525 214.980133057 217.710113525 217.139801025 216.619781494 216.420074463 216.610015869 216.980133057 217.330230713 217.560211182 217.710113525 217.770172119 217.690093994 217.409820557 216.989898682 216.6300354 216.54019165 216.739898682 217.049957275 217.590026855 217.320007324 217.00994873 216.730163574 216.59979248 216.610046387 216.650085449 216.690124512 216.770202637 216.84979248 216.829772949 216.770202637 216.829772949 216.960144043 216.940124512 216.690124512 216.429870605 218.21987915 217.619781494 217.009918213 216.659820557 216.569976807 216.710113525 217.020172119 217.409820557 217.619781494 217.500152588 217.190093994 216.929840088 216.730133057 216.330230713 215.739898682 215.199859619 214.8800354 217.929840088 217.449859619 216.869781494 216.480133057 216.440093994 216.690093994 217.04019165 217.339996338 217.580230713 217.710113525 217.699859619 217.420074463 216.949859619 216.54019165 216.460113525 216.670074463 216.949859619 217.860046387 217.790222168 217.50994873 217.090026855 216.790222168 216.75994873 216.820007324 216.820007324 216.75994873 216.750183105 216.750183105 216.770202637 216.810241699 216.869812012 216.84979248 216.690124512 216.520202637 218.29019165 217.759918213 217.179840088 216.779937744 216.670074463 216.779937744 217.049957275 217.350250244 217.500152588 217.3800354 217.139801025 216.909820557 216.679840088 216.270172119 215.699859619 215.199859619 214.889801025 218.029937744 217.659820557 217.150054932 216.710113525 216.569976807 216.739898682 217.060211182 217.330230713 217.520172119 217.659820557 217.659820557 217.350250244 216.819976807 216.400054932 216.360015869 216.6300354 216.900054932 217.840026855 217.799987793 217.540222168 217.119812012 216.889831543 216.969909668 217.110046387 217.029968262 216.790222168 216.650085449 216.719909668 216.829772949 216.860046387 216.779968262 216.659851074 216.549987793 216.50994873 218.170074463 217.659820557 217.119781494 216.79019165 216.750152588 216.920074463 217.170074463 217.339996338 217.369781494 217.239898682 217.069976807 216.900054932 216.639801025 216.179840088 215.610015869 215.159820557 214.850250244 218.009918213 217.699859619 217.259918213 216.889801025 216.779937744 216.960113525 217.21987915 217.400054932 217.509918213 217.619781494 217.6300354 217.330230713 216.759918213 216.310211182 216.279937744 216.549957275 216.810211182 217.739929199 217.590026855 217.310241699 216.960144043 216.860046387 217.070007324 217.279968262 217.17010498 216.840026855 216.659851074 216.779968262 216.949890137 216.940124512 216.739929199 216.520202637 216.409851074 216.429870605 218.179840088 217.639801025 217.100250244 216.750152588 216.739898682 216.929840088 217.150054932 217.230133057 217.179840088 217.069976807 216.989898682 216.8800354 216.619781494 216.139801025 215.560211182 215.089996338 214.71987915 218.009918213 217.670074463 217.279937744 216.960113525 216.909820557 217.100250244 217.310211182 217.3800354 217.420074463 217.560211182 217.6300354 217.369781494 216.819976807 216.350250244 216.279937744 216.46987915 216.619781494 217.739929199 217.480163574 217.190124512 216.880065918 216.790222168 217.000183105 217.239929199 217.179870605 216.909851074 216.75994873 216.860046387 217.000183105 216.949890137 216.739929199 216.529968262 216.400085449 216.369812012 218.389801025 217.850250244 217.270172119 216.839996338 216.710113525 216.810211182 216.980133057 217.060211182 217.029937744 216.980133057 216.940093994 216.839996338 216.589996338 216.139801025 215.600250244 215.080230713 214.580230713 218.089996338 217.730133057 217.330230713 217.029937744 216.96987915 217.110015869 217.239898682 217.250152588 217.270172119 217.440093994 217.569976807 217.369781494 216.869781494 216.440093994 216.330230713 216.440093994 216.489898682 217.790222168 217.500183105 217.199890137 216.860046387 216.690124512 216.799987793 217.020202637 217.090026855 216.960144043 216.869812012 216.880065918 216.900085449 216.820007324 216.67010498 216.560241699 216.469909668 216.380065918 218.600250244 218.089996338 217.509918213 217.000152588 216.710113525 216.690093994 216.830230713 216.949859619 217.000152588 216.980133057 216.909820557 216.759918213 216.489898682 216.110015869 215.679840088 215.170074463 214.560211182 218.170074463 217.810211182 217.420074463 217.089996338 216.989898682 217.080230713 217.170074463 217.159820557 217.170074463 217.299957275 217.389801025 217.179840088 216.739898682 216.400054932 216.369781494 216.46987915 216.480133057 217.719909668 217.429870605 217.130065918 216.770202637 216.50994873 216.540222168 216.75994873 216.909851074 216.909851074 216.869812012 216.840026855 216.750183105 216.59979248 216.500183105 216.500183105 216.469909668 216.389831543 218.610015869 218.119781494 217.549957275 217.009918213 216.679840088 216.6300354 216.779937744 216.920074463 216.96987915 216.940093994 216.839996338 216.610015869 216.310211182 215.989898682 215.679840088 215.279937744 214.679840088 218.119781494 217.799957275 217.389801025 217.049957275 216.920074463 217.029937744 217.170074463 217.190093994 217.170074463 217.190093994 217.150054932 216.8800354 216.480133057 216.230133057 216.270172119 216.449859619 216.509918213 217.590026855 217.310241699 216.989929199 216.610046387 216.340026855 216.380065918 216.590026855 216.730163574 216.739929199 216.750183105 216.770202637 216.699890137 216.500183105 216.329772949 216.310241699 216.340026855 216.320007324 218.500152588 217.989898682 217.409820557 216.8800354 216.600250244 216.600250244 216.750152588 216.830230713 216.810211182 216.759918213 216.690093994 216.509918213 216.190093994 215.8800354 215.619781494 215.360015869 214.8800354 218.04019165 217.710113525 217.270172119 216.889801025 216.770172119 216.940093994 217.150054932 217.21987915 217.159820557 217.080230713 216.96987915 216.71987915 216.360015869 216.110015869 216.110015869 216.270172119 216.420074463 217.59979248 217.340026855 217.000183105 216.619812012 216.400085449 216.480163574 216.639831543 216.639831543 216.540222168 216.570007324 216.739929199 216.770202637 216.549987793 216.25994873 216.139831543 216.159851074 216.210144043 218.500152588 217.940093994 217.319976807 216.79019165 216.560211182 216.6300354 216.759918213 216.71987915 216.580230713 216.549957275 216.619781494 216.580230713 216.299957275 215.920074463 215.619781494 215.400054932 215.069976807 218.060211182 217.710113525 217.21987915 216.79019165 216.670074463 216.839996338 217.089996338 217.150054932 217.080230713 217.020172119 217.000152588 216.889801025 216.619781494 216.279937744 216.04019165 216.020172119 216.190093994 217.820007324 217.610046387 217.279968262 216.900085449 216.679870605 216.750183105 216.829772949 216.679870605 216.460144043 216.489929199 216.739929199 216.869812012 216.630065918 216.250183105 216.040222168 216.00994873 216.070007324 218.619781494 218.049957275 217.420074463 216.869781494 216.6300354 216.690093994 216.770172119 216.639801025 216.449859619 216.46987915 216.71987915 216.839996338 216.600250244 216.119781494 215.670074463 215.389801025 215.119781494 218.179840088 217.830230713 217.310211182 216.860015869 216.670074463 216.79019165 216.960113525 217.000152588 216.960113525 217.009918213 217.170074463 217.270172119 217.1300354 216.690093994 216.159820557 215.850250244 215.900054932 218.040222168 217.889831543 217.590026855 217.159851074 216.860046387 216.829772949 216.860046387 216.710144043 216.489929199 216.529968262 216.779968262 216.869812012 216.610046387 216.199890137 215.960144043 215.889831543 215.889831543 218.6300354 218.1300354 217.54019165 216.989898682 216.679840088 216.650054932 216.650054932 216.509918213 216.3800354 216.500152588 216.830230713 217.029937744 216.810211182 216.270172119 215.690093994 215.270172119 214.96987915 218.239898682 217.909820557 217.409820557 216.940093994 216.690093994 216.699859619 216.779937744 216.810211182 216.830230713 216.960113525 217.230133057 217.460113525 217.420074463 216.980133057 216.319976807 215.779937744 215.650054932 218.110046387 217.969909668 217.659851074 217.17010498 216.730163574 216.579772949 216.610046387 216.560241699 216.489929199 216.570007324 216.779968262 216.799987793 216.500183105 216.09979248 215.84979248 215.730163574 215.639831543 218.489898682 218.020172119 217.500152588 216.960113525 216.600250244 216.460113525 216.389801025 216.279937744 216.21987915 216.400054932 216.71987915 216.900054932 216.71987915 216.239898682 215.6300354 215.080230713 214.690093994 218.159820557 217.869781494 217.400054932 216.920074463 216.600250244 216.509918213 216.549957275 216.580230713 216.6300354 216.779937744 217.020172119 217.210113525 217.230133057 216.940093994 216.3800354 215.799957275 215.529937744 218.079772949 217.880065918 217.540222168 217.00994873 216.520202637 216.320007324 216.340026855 216.369812012 216.369812012 216.50994873 216.719909668 216.739929199 216.440124512 216.049987793 215.75994873 215.540222168 215.369812012 218.360015869 217.860015869 217.310211182 216.779937744 216.440093994 216.279937744 216.179840088 216.069976807 216.029937744 216.190093994 216.449859619 216.600250244 216.500152588 216.170074463 215.619781494 214.980133057 214.500152588 218.110015869 217.830230713 217.350250244 216.830230713 216.489898682 216.369781494 216.369781494 216.360015869 216.369781494 216.449859619 216.589996338 216.730133057 216.79019165 216.699859619 216.369781494 215.900054932 215.569976807 218.029968262 217.699890137 217.310241699 216.840026855 216.469909668 216.369812012 216.409851074 216.380065918 216.299987793 216.380065918 216.59979248 216.699890137 216.480163574 216.090026855 215.719909668 215.400085449 215.150085449 218.389801025 217.739898682 217.060211182 216.509918213 216.270172119 216.239898682 216.199859619 216.060211182 215.949859619 216.020172119 216.21987915 216.3800354 216.409820557 216.210113525 215.739898682 215.080230713 214.54019165 218.179840088 217.850250244 217.310211182 216.79019165 216.489898682 216.429840088 216.400054932 216.279937744 216.159820557 216.150054932 216.259918213 216.400054932 216.520172119 216.549957275 216.400054932 216.069976807 215.770172119 219.259841919 219.229568481 219.589920044 220.099685669 220.370193481 220.280349731 220.179763794 220.360427856 220.580154419 220.460037231 219.990310669 219.660232544 219.700271606 219.830154419 219.689529419 219.299880981 219.070388794 219.129608154 219.140350342 219.459686279 219.789764404 219.900115967 219.900115967 220.049530029 220.390350342 220.619842529 220.499725342 220.129608154 219.820037842 219.810272217 220.100311279 220.589569092 220.989959717 220.989959717 220.219909668 220.090026855 220.179870605 220.34979248 220.429870605 220.429870605 220.520202637 220.770202637 221.00994873 220.969909668 220.719909668 220.529968262 220.59979248 220.840026855 221.130065918 221.409851074 221.730163574 219.240310669 219.450271606 219.849685669 220.179763794 220.229568481 220.120193481 220.189529419 220.540115356 220.820388794 220.669998169 220.160232544 219.759841919 219.710037231 219.769607544 219.610427856 219.240310669 218.950271606 219.289764404 219.459686279 219.760467529 219.949920654 219.909881592 219.869842529 220.119842529 220.570037842 220.850311279 220.699920654 220.279998779 219.890350342 219.739959717 219.919647217 220.360076904 220.799530029 220.860076904 220.34979248 220.320007324 220.340026855 220.380065918 220.409851074 220.449890137 220.59979248 220.909851074 221.179870605 221.179870605 220.880065918 220.570007324 220.489929199 220.690124512 221.040222168 221.429870605 221.779968262 219.809646606 220.280349731 220.679763794 220.780349731 220.599685669 220.400466919 220.469802856 220.759841919 220.919998169 220.679763794 220.179763794 219.750076294 219.629959106 219.669998169 219.589920044 219.320388794 219.019607544 219.999725342 220.339569092 220.600311279 220.640350342 220.440155029 220.279998779 220.400115967 220.720428467 220.900115967 220.669647217 220.209686279 219.779998779 219.589569092 219.739959717 220.199920654 220.720428467 220.820037842 220.779968262 220.84979248 220.829772949 220.750183105 220.699890137 220.699890137 220.790222168 221.020202637 221.250183105 221.239929199 220.909851074 220.489929199 220.320007324 220.520202637 221.000183105 221.529968262 221.960144043 220.580154419 221.139724731 221.460037231 221.400466919 221.089920044 220.790115356 220.669998169 220.669998169 220.559646606 220.219802856 219.790115356 219.500076294 219.469802856 219.620193481 219.719802856 219.589920044 219.280349731 220.760467529 221.100311279 221.289764404 221.249725342 220.989959717 220.650115967 220.480194092 220.489959717 220.430389404 220.110076904 219.669647217 219.360076904 219.329803467 219.629608154 220.169647217 220.720428467 220.879608154 221.199890137 221.279968262 221.219909668 221.090026855 220.980163574 220.869812012 220.75994873 220.770202637 220.820007324 220.739929199 220.42010498 220.090026855 220.049987793 220.400085449 221.000183105 221.630065918 222.110046387 220.620193481 220.960037231 221.120193481 221.000076294 220.719802856 220.429763794 220.179763794 219.929763794 219.650466919 219.339920044 219.099685669 219.070388794 219.280349731 219.639724731 219.919998169 219.889724731 219.549880981 220.659881592 220.730194092 220.749725342 220.720428467 220.520233154 220.140350342 219.749725342 219.510467529 219.329803467 219.029998779 218.739959717 218.690155029 219.010467529 219.560272217 220.199920654 220.739959717 220.919647217 221.079772949 220.989929199 220.840026855 220.699890137 220.570007324 220.380065918 220.119812012 219.940124512 219.829772949 219.67010498 219.449890137 219.42010498 219.75994873 220.360046387 221.049987793 221.67010498 222.17010498 219.679763794 219.589920044 219.530349731 219.439529419 219.339920044 219.200271606 219.009841919 218.790115356 218.620193481 218.530349731 218.559646606 218.780349731 219.189529419 219.689529419 220.040115356 220.019607544 219.679763794 219.549530029 219.190155029 218.989959717 219.010467529 218.989959717 218.730194092 218.369842529 218.169647217 218.089569092 218.010467529 217.970428467 218.209686279 218.820037842 219.579803467 220.239959717 220.720428467 220.940155029 220.369812012 219.989929199 219.699890137 219.529968262 219.42010498 219.270202637 219.060241699 218.92010498 218.810241699 218.679870605 218.630065918 218.949890137 219.650085449 220.469909668 221.150085449 221.699890137 222.210144043 218.549880981 218.110427856 217.910232544 217.900466919 217.990310669 218.030349731 218.009841919 218.019607544 218.120193481 218.299880981 218.509841919 218.809646606 219.240310669 219.710037231 220.009841919 219.990310669 219.750076294 218.379608154 217.690155029 217.350311279 217.409881592 217.549530029 217.480194092 217.310272217 217.310272217 217.520233154 217.690155029 217.829803467 218.190155029 218.869842529 219.629608154 220.249725342 220.709686279 220.989959717 219.650085449 219.049987793 218.619812012 218.429870605 218.360046387 218.310241699 218.290222168 218.360046387 218.440124512 218.440124512 218.520202637 218.969909668 219.790222168 220.619812012 221.250183105 221.75994873 222.329772949 218.169998169 217.650466919 217.419998169 217.479568481 217.639724731 217.740310669 217.809646606 217.969802856 218.259841919 218.549880981 218.769607544 218.990310669 219.299880981 219.660232544 219.910232544 219.979568481 219.910232544 218.070037842 217.350311279 216.959686279 217.020233154 217.190155029 217.180389404 217.119842529 217.279998779 217.659881592 217.970428467 218.140350342 218.390350342 218.919647217 219.570037842 220.150115967 220.650115967 221.070037842 219.469909668 218.799987793 218.329772949 218.159851074 218.119812012 218.09979248 218.159851074 218.400085449 218.650085449 218.770202637 218.889831543 219.250183105 219.92010498 220.59979248 221.17010498 221.75994873 222.449890137 218.559646606 218.110427856 217.919998169 218.000076294 218.089920044 218.059646606 218.019607544 218.160232544 218.450271606 218.700271606 218.849685669 218.979568481 219.219802856 219.549880981 219.860427856 220.080154419 220.189529419 218.499725342 217.919647217 217.570037842 217.560272217 217.600311279 217.480194092 217.339569092 217.470428467 217.850311279 218.159881592 218.260467529 218.369842529 218.730194092 219.299530029 219.930389404 220.549530029 221.110076904 219.730163574 219.110046387 218.699890137 218.549987793 218.469909668 218.340026855 218.299987793 218.489929199 218.799987793 218.980163574 219.060241699 219.279968262 219.730163574 220.290222168 220.889831543 221.619812012 222.469909668 218.950271606 218.589920044 218.490310669 218.549880981 218.500076294 218.259841919 218.030349731 218.040115356 218.269607544 218.490310669 218.620193481 218.759841919 219.059646606 219.479568481 219.910232544 220.259841919 220.469802856 218.860076904 218.400115967 218.140350342 218.060272217 217.919647217 217.619842529 217.320037842 217.320037842 217.589569092 217.890350342 217.999725342 218.089569092 218.409881592 218.999725342 219.730194092 220.449920654 221.079803467 219.909851074 219.380065918 219.040222168 218.940124512 218.790222168 218.469909668 218.210144043 218.25994873 218.529968262 218.750183105 218.84979248 219.020202637 219.389831543 219.940124512 220.610046387 221.460144043 222.400085449 218.830154419 218.559646606 218.620193481 218.740310669 218.610427856 218.200271606 217.820388794 217.769607544 217.990310669 218.229568481 218.410232544 218.620193481 219.000076294 219.519607544 220.040115356 220.439529419 220.629959106 218.650115967 218.289764404 218.169647217 218.150115967 217.949920654 217.520233154 217.110076904 217.010467529 217.230194092 217.549530029 217.760467529 217.919647217 218.279998779 218.919647217 219.720428467 220.470428467 221.060272217 219.75994873 219.299987793 219.079772949 219.040222168 218.84979248 218.400085449 218.00994873 217.969909668 218.199890137 218.460144043 218.630065918 218.860046387 219.279968262 219.860046387 220.549987793 221.409851074 222.360046387 218.460037231 218.290115356 218.500076294 218.719802856 218.589920044 218.160232544 217.780349731 217.740310669 217.979568481 218.259841919 218.460037231 218.689529419 219.059646606 219.589920044 220.129959106 220.519607544 220.700271606 218.220428467 217.919647217 217.940155029 218.039764404 217.909881592 217.520233154 217.119842529 216.999725342 217.209686279 217.570037842 217.850311279 218.070037842 218.400115967 219.020233154 219.810272217 220.579803467 221.180389404 219.489929199 219.070007324 218.949890137 218.980163574 218.810241699 218.400085449 218.029968262 217.969909668 218.199890137 218.480163574 218.699890137 218.980163574 219.409851074 219.960144043 220.619812012 221.429870605 222.360046387 218.429763794 218.219802856 218.379959106 218.540115356 218.439529419 218.120193481 217.879959106 217.889724731 218.120193481 218.410232544 218.599685669 218.780349731 219.070388794 219.530349731 220.059646606 220.509841919 220.750076294 218.220428467 217.829803467 217.779998779 217.860076904 217.799530029 217.549530029 217.270233154 217.169647217 217.360076904 217.730194092 218.049530029 218.239959717 218.470428467 218.959686279 219.760467529 220.650115967 221.400115967 219.460144043 219.020202637 218.840026855 218.810241699 218.679870605 218.400085449 218.150085449 218.130065918 218.320007324 218.579772949 218.810241699 219.070007324 219.42010498 219.900085449 220.540222168 221.369812012 222.340026855 219.040115356 218.589920044 218.360427856 218.200271606 218.049880981 217.919998169 217.860427856 217.910232544 218.070388794 218.309646606 218.519607544 218.700271606 218.919998169 219.309646606 219.860427856 220.419998169 220.790115356 218.909881592 218.260467529 217.820037842 217.610076904 217.520233154 217.400115967 217.230194092 217.140350342 217.270233154 217.619842529 217.959686279 218.129608154 218.279998779 218.699920654 219.529998779 220.610076904 221.589569092 219.810241699 219.210144043 218.779968262 218.560241699 218.409851074 218.250183105 218.090026855 218.070007324 218.199890137 218.409851074 218.650085449 218.880065918 219.17010498 219.619812012 220.320007324 221.239929199 222.239929199 220.089920044 219.389724731 218.689529419 218.169998169 217.929763794 217.929763794 217.939529419 217.910232544 217.910232544 218.059646606 218.290115356 218.519607544 218.740310669 219.099685669 219.650466919 220.259841919 220.710037231 220.029998779 219.140350342 218.270233154 217.709686279 217.499725342 217.400115967 217.239959717 217.060272217 217.070037842 217.320037842 217.650115967 217.879608154 218.060272217 218.480194092 219.350311279 220.510467529 221.579803467 220.449890137 219.679870605 218.960144043 218.520202637 218.310241699 218.190124512 218.049987793 217.949890137 217.969909668 218.139831543 218.380065918 218.610046387 218.92010498 219.429870605 220.219909668 221.179870605 222.090026855 221.000076294 220.339920044 219.570388794 218.979568481 218.740310669 218.700271606 218.589920044 218.320388794 218.089920044 218.059646606 218.229568481 218.439529419 218.679763794 219.030349731 219.549880981 220.110427856 220.519607544 220.909881592 220.089569092 219.180389404 218.560272217 218.299530029 218.119842529 217.820037842 217.480194092 217.289764404 217.329803467 217.520233154 217.760467529 218.070037842 218.579803467 219.390350342 220.409881592 221.350311279 221.040222168 220.290222168 219.540222168 219.049987793 218.840026855 218.690124512 218.469909668 218.239929199 218.130065918 218.17010498 218.310241699 218.520202637 218.889831543 219.520202637 220.360046387 221.219909668 221.92010498 221.089920044 220.809646606 220.500076294 220.280349731 220.179763794 220.009841919 219.650466919 219.139724731 218.710037231 218.479568481 218.419998169 218.490310669 218.710037231 219.099685669 219.580154419 220.049880981 220.410232544 220.909881592 220.459686279 219.999725342 219.739959717 219.589569092 219.310272217 218.839569092 218.360076904 217.989959717 217.770233154 217.680389404 217.810272217 218.220428467 218.839569092 219.570037842 220.339569092 221.060272217 221.139831543 220.630065918 220.17010498 219.929870605 219.799987793 219.590026855 219.25994873 218.949890137 218.710144043 218.549987793 218.460144043 218.590026855 219.029968262 219.739929199 220.549987793 221.250183105 221.779968262 220.179763794 220.299880981 220.639724731 220.979568481 221.099685669 220.849685669 220.339920044 219.799880981 219.370193481 219.019607544 218.700271606 218.540115356 218.719802856 219.189529419 219.729568481 220.160232544 220.549880981 219.949920654 219.860076904 219.980194092 220.230194092 220.279998779 219.980194092 219.489959717 219.060272217 218.709686279 218.299530029 217.909881592 217.869842529 218.299530029 219.010467529 219.690155029 220.329803467 220.989959717 220.590026855 220.329772949 220.270202637 220.369812012 220.400085449 220.179870605 219.840026855 219.549987793 219.290222168 218.949890137 218.650085449 218.659851074 219.130065918 219.869812012 220.59979248 221.199890137 221.770202637 219.009841919 219.229568481 219.910232544 220.599685669 220.919998169 220.729568481 220.309646606 219.979568481 219.769607544 219.450271606 218.960037231 218.639724731 218.790115356 219.339920044 219.919998169 220.400466919 220.919998169 218.829803467 218.810272217 219.209686279 219.749725342 219.989959717 219.799530029 219.449920654 219.260467529 219.110076904 218.709686279 218.190155029 217.999725342 218.369842529 219.049530029 219.730194092 220.409881592 221.239959717 219.779968262 219.610046387 219.779968262 220.110046387 220.239929199 220.090026855 219.869812012 219.770202637 219.610046387 219.250183105 218.840026855 218.820007324 219.279968262 219.949890137 220.570007324 221.179870605 221.980163574 218.660232544 218.710037231 219.290115356 219.990310669 220.379959106 220.320388794 220.059646606 219.950271606 219.960037231 219.780349731 219.309646606 218.939529419 219.030349731 219.540115356 220.099685669 220.599685669 221.309646606 218.549530029 218.360076904 218.659881592 219.190155029 219.510467529 219.419647217 219.239959717 219.230194092 219.289764404 219.060272217 218.610076904 218.379608154 218.610076904 219.140350342 219.760467529 220.560272217 221.669647217 219.469909668 219.219909668 219.360046387 219.690124512 219.829772949 219.750183105 219.710144043 219.799987793 219.810241699 219.540222168 219.210144043 219.219909668 219.630065918 220.150085449 220.619812012 221.290222168 222.320007324 219.410232544 219.309646606 219.589920044 220.049880981 220.370193481 220.339920044 220.099685669 220.000076294 220.070388794 220.030349731 219.729568481 219.410232544 219.429763794 219.759841919 220.169998169 220.669998169 221.479568481 219.289764404 218.940155029 218.989959717 219.350311279 219.610076904 219.539764404 219.339569092 219.320037842 219.409881592 219.329803467 219.100311279 218.940155029 219.039764404 219.329803467 219.820037842 220.680389404 221.949920654 219.900085449 219.579772949 219.579772949 219.739929199 219.790222168 219.719909668 219.750183105 219.909851074 220.000183105 219.840026855 219.659851074 219.75994873 220.090026855 220.440124512 220.799987793 221.489929199 222.579772949 220.429763794 220.330154419 220.389724731 220.620193481 220.790115356 220.660232544 220.309646606 220.049880981 220.040115356 220.099685669 220.009841919 219.820388794 219.740310669 219.849685669 220.110427856 220.589920044 221.460037231 220.180389404 219.839569092 219.720428467 219.900115967 220.049530029 219.919647217 219.579803467 219.379608154 219.390350342 219.440155029 219.400115967 219.379608154 219.409881592 219.520233154 219.850311279 220.680389404 221.949920654 220.529968262 220.239929199 220.130065918 220.119812012 220.049987793 219.92010498 219.900085449 220.000183105 220.060241699 219.989929199 219.969909668 220.150085449 220.440124512 220.690124512 221.000183105 221.67010498 222.659851074 220.759841919 220.759841919 220.780349731 220.889724731 220.950271606 220.750076294 220.309646606 219.950271606 219.900466919 220.030349731 220.080154419 219.969802856 219.830154419 219.790115356 219.950271606 220.469802856 221.400466919 220.400115967 220.129608154 219.980194092 220.070037842 220.150115967 219.959686279 219.570037842 219.289764404 219.260467529 219.329803467 219.430389404 219.520233154 219.579803467 219.629608154 219.869842529 220.610076904 221.779998779 220.750183105 220.529968262 220.389831543 220.290222168 220.139831543 219.980163574 219.909851074 219.940124512 219.960144043 219.949890137 220.049987793 220.320007324 220.619812012 220.840026855 221.159851074 221.790222168 222.59979248 220.400466919 220.469802856 220.559646606 220.679763794 220.729568481 220.549880981 220.189529419 219.900466919 219.860427856 219.979568481 220.040115356 219.960037231 219.780349731 219.669998169 219.809646606 220.400466919 221.389724731 220.039764404 219.829803467 219.709686279 219.779998779 219.860076904 219.739959717 219.449920654 219.249725342 219.220428467 219.270233154 219.360076904 219.499725342 219.600311279 219.650115967 219.860076904 220.529998779 221.619842529 220.520202637 220.34979248 220.250183105 220.159851074 220.000183105 219.869812012 219.860046387 219.909851074 219.92010498 219.909851074 220.070007324 220.380065918 220.699890137 220.929870605 221.250183105 221.840026855 222.540222168 220.059646606 220.160232544 220.320388794 220.490310669 220.559646606 220.460037231 220.259841919 220.089920044 220.030349731 220.040115356 220.009841919 219.939529419 219.769607544 219.620193481 219.719802856 220.339920044 221.410232544 219.789764404 219.600311279 219.499725342 219.579803467 219.699920654 219.669647217 219.539764404 219.419647217 219.379608154 219.329803467 219.350311279 219.459686279 219.579803467 219.619842529 219.779998779 220.419647217 221.499725342 220.320007324 220.179870605 220.150085449 220.070007324 219.929870605 219.860046387 219.940124512 220.040222168 220.040222168 219.989929199 220.09979248 220.409851074 220.710144043 220.909851074 221.210144043 221.75994873 222.449890137 220.160232544 220.229568481 220.400466919 220.549880981 220.610427856 220.540115356 220.419998169 220.290115356 220.160232544 220.059646606 219.990310669 219.969802856 219.860427856 219.669998169 219.660232544 220.210037231 221.309646606 219.940155029 219.749725342 219.659881592 219.709686279 219.799530029 219.810272217 219.720428467 219.600311279 219.489959717 219.369842529 219.339569092 219.449920654 219.549530029 219.529998779 219.610076904 220.209686279 221.339569092 220.389831543 220.270202637 220.250183105 220.17010498 220.029968262 219.980163574 220.09979248 220.219909668 220.17010498 220.049987793 220.09979248 220.369812012 220.630065918 220.790222168 221.020202637 221.529968262 222.279968262 220.370193481 220.389724731 220.509841919 220.610427856 220.620193481 220.540115356 220.389724731 220.229568481 220.070388794 219.939529419 219.939529419 220.019607544 219.979568481 219.759841919 219.610427856 220.019607544 221.040115356 220.159881592 219.980194092 219.860076904 219.860076904 219.890350342 219.850311279 219.709686279 219.539764404 219.400115967 219.289764404 219.310272217 219.459686279 219.539764404 219.480194092 219.480194092 219.999725342 221.079803467 220.50994873 220.369812012 220.320007324 220.230163574 220.070007324 220.00994873 220.110046387 220.210144043 220.139831543 220.00994873 220.060241699 220.320007324 220.579772949 220.710144043 220.869812012 221.310241699 222.040222168 220.339920044 220.299880981 220.370193481 220.460037231 220.490310669 220.410232544 220.240310669 220.049880981 219.919998169 219.900466919 219.979568481 220.070388794 220.019607544 219.769607544 219.580154419 219.849685669 220.689529419 220.140350342 219.989959717 219.850311279 219.810272217 219.820037842 219.739959717 219.570037842 219.379608154 219.270233154 219.260467529 219.339569092 219.499725342 219.589569092 219.529998779 219.499725342 219.869842529 220.749725342 220.460144043 220.25994873 220.17010498 220.110046387 220.000183105 219.940124512 220.000183105 220.079772949 220.060241699 220.000183105 220.09979248 220.380065918 220.659851074 220.779968262 220.869812012 221.190124512 221.820007324 220.169998169 220.129959106 220.219802856 220.360427856 220.469802856 220.419998169 220.219802856 220.030349731 219.969802856 220.030349731 220.099685669 220.059646606 219.900466919 219.700271606 219.589920044 219.799880981 220.400466919 220.010467529 219.890350342 219.789764404 219.770233154 219.789764404 219.730194092 219.539764404 219.369842529 219.299530029 219.329803467 219.419647217 219.529998779 219.610076904 219.610076904 219.600311279 219.799530029 220.400115967 220.360046387 220.09979248 220.000183105 220.000183105 219.969909668 219.940124512 219.969909668 220.029968262 220.090026855 220.09979248 220.210144043 220.469909668 220.750183105 220.880065918 220.940124512 221.139831543 221.630065918 220.139724731 220.169998169 220.290115356 220.490310669 220.639724731 220.589920044 220.360427856 220.139724731 220.120193481 220.210037231 220.200271606 219.990310669 219.729568481 219.610427856 219.689529419 219.919998169 220.299880981 219.980194092 219.900115967 219.839569092 219.860076904 219.890350342 219.810272217 219.610076904 219.419647217 219.350311279 219.379608154 219.419647217 219.449920654 219.499725342 219.560272217 219.610076904 219.720428467 220.070037842 220.389831543 220.110046387 220.020202637 220.060241699 220.070007324 220.029968262 220.00994873 220.079772949 220.159851074 220.179870605 220.239929199 220.400085449 220.639831543 220.790222168 220.84979248 221.020202637 221.480163574 220.250076294 220.320388794 220.460037231 220.620193481 220.729568481 220.669998169 220.419998169 220.189529419 220.169998169 220.259841919 220.210037231 219.929763794 219.629959106 219.610427856 219.870193481 220.189529419 220.450271606 219.999725342 219.919647217 219.869842529 219.879608154 219.900115967 219.799530029 219.579803467 219.350311279 219.239959717 219.270233154 219.320037842 219.320037842 219.320037842 219.369842529 219.489959717 219.680389404 219.989959717 220.50994873 220.250183105 220.130065918 220.119812012 220.09979248 220.020202637 219.989929199 220.060241699 220.150085449 220.150085449 220.110046387 220.199890137 220.389831543 220.540222168 220.639831543 220.900085449 221.460144043 220.259841919 220.370193481 220.469802856 220.559646606 220.610427856 220.570388794 220.389724731 220.210037231 220.160232544 220.229568481 220.200271606 219.969802856 219.700271606 219.700271606 220.019607544 220.429763794 220.740310669 219.940155029 219.839569092 219.779998779 219.760467529 219.770233154 219.699920654 219.499725342 219.239959717 219.110076904 219.140350342 219.270233154 219.320037842 219.279998779 219.230194092 219.379608154 219.779998779 220.279998779 220.549987793 220.299987793 220.130065918 220.060241699 220.000183105 219.900085449 219.889831543 220.000183105 220.09979248 220.079772949 220.040222168 220.119812012 220.290222168 220.440124512 220.590026855 220.969909668 221.679870605 220.160232544 220.280349731 220.379959106 220.450271606 220.509841919 220.530349731 220.460037231 220.330154419 220.250076294 220.259841919 220.250076294 220.099685669 219.860427856 219.769607544 220.019607544 220.519607544 220.969802856 219.869842529 219.760467529 219.690155029 219.699920654 219.749725342 219.739959717 219.589569092 219.320037842 219.140350342 219.159881592 219.339569092 219.480194092 219.390350342 219.230194092 219.390350342 220.029998779 220.810272217 220.529968262 220.270202637 220.070007324 219.969909668 219.92010498 219.880065918 219.900085449 220.020202637 220.130065918 220.119812012 220.119812012 220.270202637 220.489929199 220.639831543 220.810241699 221.290222168 222.110046387 220.120193481 220.240310669 220.410232544 220.530349731 220.589920044 220.610427856 220.589920044 220.509841919 220.389724731 220.309646606 220.290115356 220.200271606 219.939529419 219.710037231 219.839920044 220.389724731 221.049880981 219.919647217 219.810272217 219.779998779 219.860076904 219.940155029 219.919647217 219.749725342 219.489959717 219.260467529 219.209686279 219.379608154 219.600311279 219.549530029 219.329803467 219.419647217 220.129608154 221.119842529 220.579772949 220.310241699 220.119812012 220.049987793 220.040222168 220.020202637 220.029968262 220.09979248 220.17010498 220.17010498 220.219909668 220.460144043 220.750183105 220.929870605 221.130065918 221.650085449 222.460144043 220.160232544 220.290115356 220.519607544 220.689529419 220.700271606 220.599685669 220.530349731 220.490310669 220.410232544 220.320388794 220.280349731 220.219802856 219.960037231 219.599685669 219.570388794 220.120193481 220.960037231 220.029998779 219.900115967 219.930389404 220.039764404 220.079803467 219.930389404 219.699920654 219.480194092 219.279998779 219.180389404 219.310272217 219.579803467 219.640350342 219.409881592 219.320037842 219.879608154 220.869842529 220.719909668 220.469909668 220.279968262 220.210144043 220.199890137 220.130065918 220.060241699 220.090026855 220.139831543 220.150085449 220.210144043 220.480163574 220.820007324 221.070007324 221.290222168 221.75994873 222.449890137 220.150466919 220.259841919 220.530349731 220.710037231 220.629959106 220.400466919 220.309646606 220.360427856 220.389724731 220.320388794 220.299880981 220.280349731 220.009841919 219.509841919 219.259841919 219.700271606 220.639724731 220.010467529 219.850311279 219.900115967 220.039764404 219.999725342 219.730194092 219.480194092 219.379608154 219.310272217 219.190155029 219.249725342 219.539764404 219.699920654 219.430389404 219.079803467 219.270233154 220.100311279 220.810241699 220.579772949 220.400085449 220.310241699 220.219909668 220.060241699 219.949890137 220.00994873 220.130065918 220.159851074 220.199890137 220.42010498 220.770202637 221.020202637 221.190124512 221.520202637 222.049987793 220.059646606 220.150466919 220.429763794 220.629959106 220.519607544 220.290115356 220.269607544 220.439529419 220.519607544 220.429763794 220.389724731 220.419998169 220.150466919 219.450271606 218.839920044 219.000076294 219.969802856 219.860076904 219.669647217 219.730194092 219.879608154 219.839569092 219.579803467 219.419647217 219.470428467 219.489959717 219.329803467 219.299530029 219.549530029 219.749725342 219.390350342 218.730194092 218.520233154 219.129608154 220.779968262 220.570007324 220.42010498 220.320007324 220.17010498 219.960144043 219.900085449 220.070007324 220.270202637 220.310241699 220.279968262 220.440124512 220.779968262 220.969909668 220.960144043 221.020202637 221.369812012 220.019607544 220.110427856 220.389724731 220.610427856 220.580154419 220.450271606 220.519607544 220.710037231 220.679763794 220.450271606 220.379959106 220.500076294 220.269607544 219.349685669 218.299880981 218.059646606 218.969802856 219.760467529 219.570037842 219.570037842 219.720428467 219.760467529 219.659881592 219.650115967 219.760467529 219.699920654 219.400115967 219.239959717 219.489959717 219.690155029 219.270233154 218.369842529 217.850311279 218.289764404 220.679870605 220.500183105 220.400085449 220.329772949 220.190124512 220.020202637 220.00994873 220.210144043 220.380065918 220.340026855 220.279968262 220.489929199 220.84979248 220.960144043 220.690124512 220.429870605 220.590026855 220.099685669 220.179763794 220.410232544 220.639724731 220.679763794 220.650466919 220.710037231 220.750076294 220.490310669 220.120193481 220.070388794 220.370193481 220.299880981 219.309646606 217.910232544 217.250076294 217.950271606 219.789764404 219.549530029 219.449920654 219.549530029 219.690155029 219.760467529 219.829803467 219.820037842 219.539764404 219.070037842 218.890350342 219.230194092 219.529998779 219.119842529 218.150115967 217.470428467 217.760467529 220.619812012 220.42010498 220.34979248 220.329772949 220.250183105 220.119812012 220.09979248 220.179870605 220.150085449 219.980163574 219.960144043 220.340026855 220.84979248 220.949890137 220.480163574 219.949890137 219.949890137 220.160232544 220.189529419 220.370193481 220.589920044 220.669998169 220.620193481 220.540115356 220.349685669 219.939529419 219.530349731 219.589920044 220.110427856 220.299880981 219.490310669 218.040115356 217.099685669 217.479568481 219.779998779 219.510467529 219.329803467 219.369842529 219.549530029 219.669647217 219.690155029 219.499725342 219.049530029 218.529998779 218.449920654 218.900115967 219.350311279 219.089569092 218.220428467 217.520233154 217.650115967 220.579772949 220.320007324 220.250183105 220.25994873 220.219909668 220.110046387 220.000183105 219.880065918 219.630065918 219.369812012 219.440124512 220.020202637 220.719909668 220.909851074 220.440124512 219.829772949 219.690124512 220.049880981 220.070388794 220.259841919 220.509841919 220.580154419 220.439529419 220.219802856 219.929763794 219.549880981 219.250076294 219.400466919 219.960037231 220.320388794 219.870193481 218.729568481 217.790115356 217.799880981 219.690155029 219.440155029 219.279998779 219.329803467 219.489959717 219.549530029 219.459686279 219.199920654 218.779998779 218.390350342 218.360076904 218.789764404 219.249725342 219.190155029 218.619842529 218.049530029 218.010467529 220.500183105 220.239929199 220.17010498 220.199890137 220.159851074 220.020202637 219.840026855 219.610046387 219.299987793 219.070007324 219.230163574 219.840026855 220.560241699 220.869812012 220.59979248 220.130065918 219.949890137 219.879959106 219.939529419 220.210037231 220.509841919 220.580154419 220.389724731 220.120193481 219.939529419 219.780349731 219.669998169 219.750076294 220.059646606 220.339920044 220.189529419 219.559646606 218.839920044 218.589920044 219.610076904 219.440155029 219.390350342 219.499725342 219.619842529 219.579803467 219.430389404 219.279998779 219.119842529 218.949920654 218.879608154 218.989959717 219.220428467 219.289764404 219.089569092 218.789764404 218.659881592 220.460144043 220.239929199 220.219909668 220.230163574 220.159851074 219.989929199 219.829772949 219.710144043 219.579772949 219.480163574 219.59979248 219.989929199 220.469909668 220.770202637 220.790222168 220.659851074 220.529968262 219.839920044 219.950271606 220.250076294 220.530349731 220.559646606 220.389724731 220.250076294 220.280349731 220.379959106 220.410232544 220.349685669 220.290115356 220.269607544 220.240310669 220.019607544 219.610427856 219.219802856 219.690155029 219.560272217 219.539764404 219.650115967 219.709686279 219.619842529 219.499725342 219.560272217 219.739959717 219.810272217 219.619842529 219.320037842 219.190155029 219.270233154 219.419647217 219.409881592 219.220428467 220.500183105 220.329772949 220.290222168 220.270202637 220.119812012 219.969909668 219.949890137 220.060241699 220.179870605 220.219909668 220.250183105 220.299987793 220.42010498 220.610046387 220.860046387 221.049987793 221.049987793 219.950271606 220.030349731 220.250076294 220.389724731 220.360427856 220.269607544 220.299880981 220.479568481 220.689529419 220.759841919 220.639724731 220.379959106 220.169998169 220.120193481 220.099685669 219.830154419 219.370193481 219.860076904 219.650115967 219.529998779 219.529998779 219.539764404 219.470428467 219.419647217 219.579803467 219.930389404 220.169647217 220.010467529 219.539764404 219.190155029 219.260467529 219.570037842 219.680389404 219.390350342 220.579772949 220.360046387 220.239929199 220.110046387 219.949890137 219.880065918 220.000183105 220.250183105 220.469909668 220.570007324 220.540222168 220.440124512 220.380065918 220.500183105 220.820007324 221.159851074 221.239929199 220.070388794 220.080154419 220.169998169 220.160232544 220.099685669 220.110427856 220.250076294 220.370193481 220.389724731 220.370193481 220.320388794 220.210037231 220.099685669 220.089920044 220.080154419 219.780349731 219.169998169 219.930389404 219.619842529 219.369842529 219.289764404 219.299530029 219.289764404 219.220428467 219.230194092 219.409881592 219.680389404 219.749725342 219.539764404 219.329803467 219.430389404 219.720428467 219.709686279 219.169647217 220.59979248 220.290222168 220.060241699 219.869812012 219.75994873 219.779968262 219.960144043 220.139831543 220.190124512 220.190124512 220.210144043 220.290222168 220.389831543 220.579772949 220.880065918 221.150085449 221.17010498 220.059646606 220.089920044 220.129959106 220.070388794 220.030349731 220.139724731 220.250076294 220.129959106 219.809646606 219.599685669 219.669998169 219.889724731 220.070388794 220.210037231 220.200271606 219.780349731 218.979568481 219.829803467 219.570037842 219.360076904 219.289764404 219.350311279 219.360076904 219.159881592 218.820037842 218.610076904 218.770233154 219.140350342 219.409881592 219.539764404 219.720428467 219.919647217 219.699920654 218.850311279 220.549987793 220.219909668 219.969909668 219.810241699 219.750183105 219.829772949 219.929870605 219.880065918 219.639831543 219.469909668 219.610046387 220.040222168 220.489929199 220.820007324 221.060241699 221.159851074 221.020202637 219.950271606 220.099685669 220.219802856 220.210037231 220.179763794 220.229568481 220.229568481 219.939529419 219.450271606 219.150466919 219.290115356 219.679763794 220.049880981 220.309646606 220.320388794 219.839920044 218.900466919 219.629608154 219.579803467 219.549530029 219.560272217 219.589569092 219.510467529 219.180389404 218.600311279 218.129608154 218.190155029 218.730194092 219.320037842 219.650115967 219.860076904 219.999725342 219.709686279 218.709686279 220.480163574 220.250183105 220.070007324 219.960144043 219.900085449 219.889831543 219.869812012 219.659851074 219.299987793 219.090026855 219.340026855 219.960144043 220.579772949 220.969909668 221.139831543 221.150085449 220.940124512 219.849685669 220.120193481 220.330154419 220.370193481 220.229568481 220.070388794 219.939529419 219.710037231 219.429763794 219.320388794 219.479568481 219.759841919 220.009841919 220.219802856 220.240310669 219.780349731 218.830154419 219.449920654 219.579803467 219.720428467 219.730194092 219.589569092 219.339569092 218.980194092 218.529998779 218.209686279 218.299530029 218.829803467 219.350311279 219.570037842 219.669647217 219.810272217 219.669647217 218.820037842 220.409851074 220.299987793 220.210144043 220.090026855 219.909851074 219.730163574 219.59979248 219.460144043 219.310241699 219.290222168 219.579772949 220.09979248 220.570007324 220.820007324 220.949890137 221.00994873 220.92010498 219.780349731 220.049880981 220.330154419 220.389724731 220.110427856 219.710037231 219.450271606 219.439529419 219.599685669 219.809646606 219.969802856 219.990310669 219.929763794 219.939529419 219.910232544 219.519607544 218.700271606 219.329803467 219.480194092 219.680389404 219.650115967 219.289764404 218.860076904 218.579803467 218.489959717 218.549530029 218.799530029 219.159881592 219.390350342 219.329803467 219.279998779 219.470428467 219.579803467 219.039764404 220.320007324 220.250183105 220.190124512 220.020202637 219.699890137 219.369812012 219.219909668 219.290222168 219.480163574 219.730163574 219.989929199 220.239929199 220.400085449 220.469909668 220.590026855 220.790222168 220.909851074 219.650466919 219.839920044 220.179763794 220.349685669 220.099685669 219.589920044 219.250076294 219.339920044 219.759841919 220.160232544 220.259841919 220.080154419 219.820388794 219.679763794 219.589920044 219.229568481 218.559646606 219.199920654 219.279998779 219.510467529 219.520233154 219.110076904 218.589569092 218.360076904 218.510467529 218.839569092 219.129608154 219.310272217 219.289764404 219.100311279 219.020233154 219.249725342 219.499725342 219.239959717 220.199890137 220.09979248 220.029968262 219.869812012 219.549987793 219.219909668 219.090026855 219.25994873 219.610046387 219.949890137 220.130065918 220.17010498 220.159851074 220.199890137 220.360046387 220.639831543 220.900085449 219.370193481 219.509841919 219.919998169 220.320388794 220.320388794 219.929763794 219.559646606 219.580154419 219.900466919 220.169998169 220.189529419 219.990310669 219.780349731 219.660232544 219.519607544 219.129959106 218.509841919 219.010467529 219.039764404 219.360076904 219.579803467 219.350311279 218.850311279 218.570037842 218.690155029 218.980194092 219.159881592 219.169647217 219.089569092 219.010467529 219.060272217 219.320037842 219.529998779 219.310272217 220.070007324 219.960144043 219.889831543 219.820007324 219.679870605 219.500183105 219.409851074 219.489929199 219.719909668 219.909851074 219.989929199 219.989929199 220.049987793 220.210144043 220.409851074 220.619812012 220.829772949 219.049880981 219.160232544 219.639724731 220.229568481 220.500076294 220.320388794 220.030349731 219.929763794 220.009841919 220.049880981 219.979568481 219.879959106 219.849685669 219.849685669 219.700271606 219.250076294 218.599685669 218.810272217 218.829803467 219.220428467 219.640350342 219.680389404 219.320037842 218.970428467 218.940155029 219.089569092 219.150115967 219.070037842 219.020233154 219.079803467 219.299530029 219.549530029 219.589569092 219.279998779 219.980163574 219.900085449 219.860046387 219.860046387 219.889831543 219.909851074 219.869812012 219.840026855 219.84979248 219.889831543 219.92010498 219.969909668 220.139831543 220.409851074 220.619812012 220.67010498 220.710144043 218.919998169 219.049880981 219.500076294 220.049880981 220.370193481 220.309646606 220.120193481 220.019607544 220.019607544 219.979568481 219.910232544 219.889724731 219.960037231 219.990310669 219.830154419 219.389724731 218.740310669 218.779998779 218.760467529 219.089569092 219.570037842 219.749725342 219.489959717 219.119842529 219.039764404 219.199920654 219.299530029 219.230194092 219.140350342 219.220428467 219.459686279 219.659881592 219.610076904 219.199920654 219.969909668 219.940124512 219.900085449 219.889831543 219.960144043 220.029968262 220.00994873 219.960144043 219.940124512 220.00994873 220.09979248 220.179870605 220.329772949 220.560241699 220.690124512 220.659851074 220.560241699 219.169998169 219.320388794 219.679763794 220.070388794 220.179763794 220.000076294 219.780349731 219.769607544 219.879959106 219.939529419 219.919998169 219.900466919 219.919998169 219.889724731 219.729568481 219.379959106 218.830154419 219.049530029 218.940155029 219.119842529 219.520233154 219.680389404 219.390350342 218.959686279 218.869842529 219.169647217 219.459686279 219.470428467 219.289764404 219.230194092 219.379608154 219.570037842 219.560272217 219.199920654 220.070007324 220.060241699 220.029968262 219.969909668 219.92010498 219.84979248 219.770202637 219.750183105 219.869812012 220.110046387 220.320007324 220.400085449 220.429870605 220.480163574 220.570007324 220.560241699 220.480163574 219.620193481 219.809646606 220.129959106 220.389724731 220.259841919 219.799880981 219.429763794 219.410232544 219.639724731 219.830154419 219.849685669 219.799880981 219.729568481 219.629959106 219.479568481 219.250076294 218.839920044 219.470428467 219.289764404 219.390350342 219.720428467 219.799530029 219.350311279 218.749725342 218.589569092 218.980194092 219.430389404 219.529998779 219.329803467 219.150115967 219.220428467 219.440155029 219.539764404 219.299530029 220.230163574 220.210144043 220.230163574 220.17010498 219.960144043 219.659851074 219.449890137 219.469909668 219.699890137 220.049987793 220.329772949 220.449890137 220.369812012 220.329772949 220.389831543 220.469909668 220.469909668 219.870193481 220.030349731 220.450271606 220.729568481 220.479568481 219.790115356 219.250076294 219.210037231 219.490310669 219.700271606 219.729568481 219.669998169 219.620193481 219.509841919 219.349685669 219.129959106 218.790115356 219.690155029 219.489959717 219.669647217 220.029998779 220.010467529 219.390350342 218.650115967 218.430389404 218.820037842 219.310272217 219.449920654 219.289764404 219.129608154 219.190155029 219.430389404 219.579803467 219.430389404 220.320007324 220.250183105 220.360046387 220.369812012 220.060241699 219.590026855 219.299987793 219.340026855 219.59979248 219.929870605 220.210144043 220.34979248 220.340026855 220.270202637 220.310241699 220.42010498 220.440124512 219.679763794 219.799880981 220.320388794 220.689529419 220.410232544 219.679763794 219.139724731 219.179763794 219.519607544 219.710037231 219.679763794 219.660232544 219.689529419 219.639724731 219.389724731 219.049880981 218.650466919 219.470428467 219.320037842 219.640350342 220.029998779 219.890350342 219.180389404 218.520233154 218.459686279 218.900115967 219.339569092 219.449920654 219.339569092 219.260467529 219.329803467 219.510467529 219.640350342 219.480194092 220.239929199 220.110046387 220.270202637 220.310241699 219.949890137 219.429870605 219.210144043 219.400085449 219.710144043 219.940124512 220.139831543 220.329772949 220.42010498 220.369812012 220.320007324 220.34979248 220.310241699 219.250076294 219.400466919 219.969802856 220.339920044 220.049880981 219.370193481 219.009841919 219.250076294 219.679763794 219.820388794 219.710037231 219.689529419 219.820388794 219.799880981 219.479568481 218.979568481 218.479568481 219.039764404 219.020233154 219.430389404 219.720428467 219.409881592 218.720428467 218.360076904 218.640350342 219.190155029 219.510467529 219.510467529 219.400115967 219.360076904 219.419647217 219.549530029 219.650115967 219.489959717 220.049987793 219.909851074 220.060241699 220.040222168 219.630065918 219.159851074 219.139831543 219.540222168 219.92010498 220.060241699 220.17010498 220.380065918 220.520202637 220.460144043 220.310241699 220.219909668 220.130065918 219.099685669 219.360427856 219.910232544 220.179763794 219.830154419 219.219802856 219.030349731 219.400466919 219.830154419 219.879959106 219.679763794 219.639724731 219.790115356 219.790115356 219.460037231 218.929763794 218.370193481 218.860076904 218.999725342 219.409881592 219.529998779 219.049530029 218.440155029 218.379608154 218.909881592 219.449920654 219.579803467 219.449920654 219.350311279 219.329803467 219.360076904 219.480194092 219.640350342 219.570037842 219.980163574 219.900085449 220.00994873 219.909851074 219.469909668 219.090026855 219.199890137 219.699890137 220.070007324 220.150085449 220.199890137 220.400085449 220.549987793 220.449890137 220.230163574 220.110046387 220.00994873 219.400466919 219.780349731 220.269607544 220.429763794 220.070388794 219.540115356 219.370193481 219.639724731 219.910232544 219.839920044 219.620193481 219.580154419 219.700271606 219.669998169 219.370193481 218.919998169 218.419998169 219.129608154 219.360076904 219.709686279 219.669647217 219.159881592 218.690155029 218.770233154 219.249725342 219.539764404 219.440155029 219.279998779 219.249725342 219.270233154 219.249725342 219.390350342 219.680389404 219.770233154 220.130065918 220.139831543 220.230163574 220.090026855 219.699890137 219.429870605 219.570007324 219.949890137 220.150085449 220.139831543 220.199890137 220.42010498 220.560241699 220.440124512 220.199890137 220.079772949 220.00994873 219.900466919 220.250076294 220.610427856 220.750076294 220.509841919 220.099685669 219.879959106 219.889724731 219.910232544 219.790115356 219.679763794 219.710037231 219.750076294 219.620193481 219.299880981 218.969802856 218.549880981 219.600311279 219.770233154 219.970428467 219.879608154 219.499725342 219.199920654 219.289764404 219.520233154 219.499725342 219.260467529 219.180389404 219.299530029 219.329803467 219.230194092 219.329803467 219.720428467 219.940155029 220.389831543 220.429870605 220.469909668 220.34979248 220.110046387 219.980163574 220.090026855 220.239929199 220.230163574 220.150085449 220.250183105 220.520202637 220.650085449 220.50994873 220.25994873 220.119812012 220.000183105 220.219802856 220.360427856 220.589920044 220.750076294 220.719802856 220.479568481 220.210037231 220.000076294 219.870193481 219.809646606 219.889724731 220.019607544 219.979568481 219.679763794 219.299880981 218.990310669 218.610427856 219.930389404 219.900115967 219.919647217 219.839569092 219.619842529 219.510467529 219.579803467 219.629608154 219.430389404 219.199920654 219.239959717 219.470428467 219.459686279 219.239959717 219.260467529 219.659881592 219.940155029 220.590026855 220.560241699 220.520202637 220.42010498 220.310241699 220.320007324 220.42010498 220.42010498 220.279968262 220.219909668 220.400085449 220.659851074 220.75994873 220.610046387 220.34979248 220.119812012 219.900085449 220.240310669 220.189529419 220.309646606 220.540115356 220.660232544 220.540115356 220.259841919 219.990310669 219.849685669 219.879959106 220.070388794 220.229568481 220.150466919 219.769607544 219.320388794 218.979568481 218.580154419 219.989959717 219.779998779 219.690155029 219.629608154 219.520233154 219.480194092 219.570037842 219.579803467 219.390350342 219.230194092 219.339569092 219.520233154 219.459686279 219.199920654 219.180389404 219.520233154 219.820037842 220.650085449 220.529968262 220.449890137 220.34979248 220.299987793 220.369812012 220.480163574 220.460144043 220.340026855 220.320007324 220.500183105 220.699890137 220.739929199 220.610046387 220.389831543 220.09979248 219.770202637 220.139724731 220.040115356 220.169998169 220.439529419 220.599685669 220.490310669 220.200271606 219.950271606 219.879959106 219.960037231 220.110427856 220.219802856 220.120193481 219.809646606 219.410232544 219.019607544 218.540115356 219.869842529 219.669647217 219.629608154 219.589569092 219.480194092 219.419647217 219.470428467 219.520233154 219.419647217 219.289764404 219.329803467 219.430389404 219.339569092 219.169647217 219.199920654 219.489959717 219.730194092 220.619812012 220.460144043 220.42010498 220.360046387 220.310241699 220.369812012 220.480163574 220.489929199 220.409851074 220.409851074 220.520202637 220.619812012 220.619812012 220.549987793 220.409851074 220.139831543 219.739929199 220.080154419 220.059646606 220.259841919 220.540115356 220.660232544 220.490310669 220.179763794 219.990310669 219.969802856 220.019607544 220.049880981 220.049880981 219.990310669 219.849685669 219.559646606 219.120193481 218.509841919 219.739959717 219.669647217 219.730194092 219.749725342 219.610076904 219.480194092 219.499725342 219.549530029 219.480194092 219.350311279 219.310272217 219.329803467 219.289764404 219.249725342 219.339569092 219.570037842 219.739959717 220.540222168 220.42010498 220.460144043 220.469909668 220.429870605 220.469909668 220.590026855 220.639831543 220.560241699 220.500183105 220.529968262 220.570007324 220.549987793 220.540222168 220.469909668 220.239929199 219.840026855 220.070388794 220.150466919 220.360427856 220.620193481 220.710037231 220.540115356 220.250076294 220.059646606 220.059646606 220.080154419 220.000076294 219.919998169 219.900466919 219.889724731 219.689529419 219.210037231 218.460037231 219.669647217 219.659881592 219.770233154 219.810272217 219.699920654 219.589569092 219.589569092 219.610076904 219.520233154 219.369842529 219.310272217 219.329803467 219.339569092 219.369842529 219.459686279 219.610076904 219.730194092 220.500183105 220.389831543 220.489929199 220.549987793 220.529968262 220.59979248 220.75994873 220.829772949 220.710144043 220.579772949 220.570007324 220.619812012 220.630065918 220.610046387 220.540222168 220.299987793 219.940124512 220.099685669 220.179763794 220.349685669 220.570388794 220.710037231 220.629959106 220.379959106 220.160232544 220.099685669 220.099685669 220.019607544 219.910232544 219.889724731 219.900466919 219.729568481 219.210037231 218.379959106 219.669647217 219.619842529 219.680389404 219.699920654 219.659881592 219.640350342 219.659881592 219.600311279 219.459686279 219.329803467 219.320037842 219.369842529 219.390350342 219.390350342 219.419647217 219.520233154 219.629608154 220.529968262 220.389831543 220.469909668 220.540222168 220.549987793 220.67010498 220.889831543 220.960144043 220.799987793 220.59979248 220.590026855 220.690124512 220.739929199 220.679870605 220.529968262 220.279968262 219.940124512 220.160232544 220.210037231 220.330154419 220.530349731 220.750076294 220.790115356 220.580154419 220.280349731 220.129959106 220.139724731 220.120193481 220.009841919 219.919998169 219.879959106 219.719802856 219.229568481 218.379959106 219.730194092 219.629608154 219.610076904 219.610076904 219.619842529 219.680389404 219.690155029 219.579803467 219.379608154 219.279998779 219.310272217 219.360076904 219.350311279 219.320037842 219.339569092 219.430389404 219.560272217 220.59979248 220.469909668 220.520202637 220.570007324 220.579772949 220.730163574 220.960144043 221.020202637 220.820007324 220.59979248 220.590026855 220.710144043 220.75994873 220.679870605 220.50994873 220.250183105 219.92010498 220.179763794 220.299880981 220.419998169 220.599685669 220.830154419 220.950271606 220.759841919 220.419998169 220.229568481 220.269607544 220.320388794 220.179763794 219.969802856 219.849685669 219.750076294 219.360427856 218.540115356 219.789764404 219.720428467 219.690155029 219.669647217 219.690155029 219.739959717 219.720428467 219.570037842 219.379608154 219.299530029 219.339569092 219.360076904 219.299530029 219.279998779 219.379608154 219.510467529 219.629608154 220.690124512 220.590026855 220.639831543 220.659851074 220.679870605 220.820007324 221.020202637 221.060241699 220.869812012 220.67010498 220.650085449 220.730163574 220.750183105 220.699890137 220.570007324 220.329772949 219.989929199 220.169998169 220.370193481 220.540115356 220.679763794 220.860427856 220.960037231 220.809646606 220.490310669 220.339920044 220.450271606 220.540115356 220.360427856 220.000076294 219.809646606 219.780349731 219.549880981 218.759841919 219.779998779 219.760467529 219.770233154 219.760467529 219.749725342 219.749725342 219.709686279 219.570037842 219.430389404 219.400115967 219.430389404 219.379608154 219.270233154 219.299530029 219.499725342 219.699920654 219.760467529 220.750183105 220.699890137 220.730163574 220.719909668 220.739929199 220.860046387 221.040222168 221.070007324 220.940124512 220.790222168 220.75994873 220.770202637 220.750183105 220.730163574 220.679870605 220.489929199 220.09979248 220.099685669 220.370193481 220.589920044 220.689529419 220.780349731 220.849685669 220.729568481 220.469802856 220.349685669 220.509841919 220.660232544 220.450271606 219.990310669 219.710037231 219.740310669 219.650466919 218.910232544 219.730194092 219.720428467 219.770233154 219.760467529 219.720428467 219.699920654 219.659881592 219.549530029 219.449920654 219.459686279 219.499725342 219.400115967 219.239959717 219.249725342 219.510467529 219.770233154 219.820037842 220.820007324 220.770202637 220.739929199 220.699890137 220.719909668 220.84979248 221.020202637 221.070007324 220.960144043 220.84979248 220.810241699 220.799987793 220.770202637 220.770202637 220.750183105 220.590026855 220.179870605 220.049880981 220.320388794 220.570388794 220.679763794 220.740310669 220.769607544 220.660232544 220.389724731 220.250076294 220.410232544 220.629959106 220.490310669 220.009841919 219.660232544 219.669998169 219.650466919 218.979568481 219.709686279 219.680389404 219.720428467 219.720428467 219.699920654 219.699920654 219.669647217 219.539764404 219.419647217 219.419647217 219.499725342 219.419647217 219.209686279 219.140350342 219.369842529 219.709686279 219.829803467 220.900085449 220.820007324 220.750183105 220.67010498 220.699890137 220.84979248 221.020202637 221.070007324 220.949890137 220.829772949 220.779968262 220.799987793 220.810241699 220.810241699 220.770202637 220.610046387 220.239929199 220.030349731 220.259841919 220.549880981 220.710037231 220.799880981 220.820388794 220.679763794 220.360427856 220.139724731 220.269607544 220.580154419 220.570388794 220.160232544 219.740310669 219.650466919 219.650466919 219.059646606 219.739959717 219.690155029 219.730194092 219.760467529 219.749725342 219.779998779 219.770233154 219.600311279 219.390350342 219.350311279 219.470428467 219.480194092 219.279998779 219.110076904 219.260467529 219.629608154 219.879608154 220.969909668 220.869812012 220.790222168 220.719909668 220.730163574 220.880065918 221.070007324 221.139831543 221.00994873 220.810241699 220.730163574 220.799987793 220.880065918 220.869812012 220.770202637 220.59979248 220.320007324 220.019607544 220.210037231 220.519607544 220.750076294 220.849685669 220.849685669 220.679763794 220.349685669 220.089920044 220.210037231 220.559646606 220.689529419 220.360427856 219.900466919 219.710037231 219.660232544 219.169998169 219.749725342 219.709686279 219.770233154 219.799530029 219.779998779 219.799530029 219.820037842 219.680389404 219.419647217 219.320037842 219.449920654 219.560272217 219.419647217 219.199920654 219.270233154 219.629608154 219.959686279 220.949890137 220.889831543 220.84979248 220.779968262 220.750183105 220.860046387 221.090026855 221.219909668 221.110046387 220.869812012 220.739929199 220.829772949 220.960144043 220.940124512 220.779968262 220.619812012 220.440124512 220.000076294 220.160232544 220.490310669 220.729568481 220.820388794 220.769607544 220.589920044 220.320388794 220.150466919 220.269607544 220.570388794 220.689529419 220.410232544 219.979568481 219.769607544 219.689529419 219.250076294 219.720428467 219.690155029 219.770233154 219.779998779 219.709686279 219.690155029 219.739959717 219.680389404 219.470428467 219.339569092 219.419647217 219.549530029 219.489959717 219.310272217 219.329803467 219.640350342 219.970428467 220.92010498 220.880065918 220.860046387 220.779968262 220.719909668 220.799987793 221.029968262 221.219909668 221.199890137 220.969909668 220.810241699 220.860046387 220.969909668 220.949890137 220.799987793 220.659851074 220.520202637 220.009841919 220.129959106 220.429763794 220.700271606 220.780349731 220.689529419 220.509841919 220.330154419 220.269607544 220.379959106 220.570388794 220.570388794 220.309646606 219.969802856 219.820388794 219.750076294 219.299880981 219.720428467 219.669647217 219.739959717 219.749725342 219.640350342 219.579803467 219.629608154 219.659881592 219.529998779 219.360076904 219.350311279 219.430389404 219.419647217 219.320037842 219.360076904 219.619842529 219.879608154 220.92010498 220.869812012 220.820007324 220.750183105 220.710144043 220.790222168 220.989929199 221.179870605 221.199890137 221.049987793 220.889831543 220.860046387 220.909851074 220.900085449 220.820007324 220.730163574 220.590026855 220.030349731 220.120193481 220.400466919 220.700271606 220.820388794 220.729568481 220.530349731 220.370193481 220.370193481 220.479568481 220.559646606 220.469802856 220.229568481 220.009841919 219.960037231 219.900466919 219.419998169 219.739959717 219.669647217 219.739959717 219.779998779 219.720428467 219.640350342 219.650115967 219.659881592 219.560272217 219.409881592 219.320037842 219.339569092 219.339569092 219.310272217 219.409881592 219.659881592 219.839569092 220.980163574 220.889831543 220.810241699 220.750183105 220.779968262 220.900085449 221.049987793 221.150085449 221.159851074 221.070007324 220.949890137 220.880065918 220.869812012 220.880065918 220.889831543 220.860046387 220.699890137 220.040115356 220.110427856 220.379959106 220.689529419 220.900466919 220.830154419 220.589920044 220.370193481 220.360427856 220.490310669 220.570388794 220.490310669 220.299880981 220.169998169 220.160232544 220.099685669 219.610427856 219.739959717 219.659881592 219.720428467 219.820037842 219.839569092 219.789764404 219.730194092 219.669647217 219.539764404 219.400115967 219.329803467 219.339569092 219.339569092 219.369842529 219.499725342 219.770233154 219.949920654 221.020202637 220.909851074 220.799987793 220.75994873 220.860046387 221.020202637 221.110046387 221.110046387 221.090026855 221.060241699 221.00994873 220.929870605 220.869812012 220.900085449 221.000183105 221.00994873 220.820007324 220.030349731 220.139724731 220.379959106 220.689529419 220.900466919 220.870193481 220.599685669 220.320388794 220.269607544 220.400466919 220.549880981 220.540115356 220.410232544 220.290115356 220.259841919 220.179763794 219.719802856 219.690155029 219.629608154 219.680389404 219.779998779 219.839569092 219.820037842 219.739959717 219.629608154 219.459686279 219.339569092 219.320037842 219.350311279 219.369842529 219.369842529 219.539764404 219.860076904 220.089569092 221.020202637 220.929870605 220.799987793 220.750183105 220.840026855 220.989929199 221.070007324 221.049987793 221.049987793 221.060241699 221.029968262 220.929870605 220.860046387 220.909851074 221.040222168 221.070007324 220.84979248 220.049880981 220.229568481 220.460037231 220.700271606 220.870193481 220.830154419 220.570388794 220.290115356 220.210037231 220.309646606 220.460037231 220.519607544 220.439529419 220.290115356 220.219802856 220.129959106 219.740310669 219.650115967 219.629608154 219.669647217 219.720428467 219.739959717 219.739959717 219.699920654 219.600311279 219.409881592 219.260467529 219.239959717 219.310272217 219.329803467 219.339569092 219.499725342 219.829803467 220.129608154 221.00994873 220.960144043 220.860046387 220.75994873 220.779968262 220.880065918 220.969909668 221.029968262 221.070007324 221.070007324 220.989929199 220.84979248 220.790222168 220.869812012 221.020202637 221.020202637 220.799987793 220.080154419 220.320388794 220.580154419 220.769607544 220.870193481 220.809646606 220.589920044 220.349685669 220.240310669 220.280349731 220.379959106 220.429763794 220.379959106 220.259841919 220.169998169 220.099685669 219.769607544 219.650115967 219.690155029 219.730194092 219.720428467 219.669647217 219.650115967 219.680389404 219.640350342 219.449920654 219.249725342 219.180389404 219.249725342 219.320037842 219.350311279 219.480194092 219.799530029 220.140350342 221.020202637 220.980163574 220.909851074 220.820007324 220.770202637 220.820007324 220.960144043 221.09979248 221.17010498 221.09979248 220.929870605 220.75994873 220.730163574 220.869812012 221.000183105 220.969909668 220.739929199 220.070388794 220.330154419 220.620193481 220.839920044 220.919998169 220.839920044 220.629959106 220.419998169 220.290115356 220.269607544 220.309646606 220.360427856 220.349685669 220.280349731 220.240310669 220.229568481 219.919998169 219.640350342 219.680389404 219.760467529 219.760467529 219.680389404 219.629608154 219.680389404 219.690155029 219.529998779 219.289764404 219.190155029 219.270233154 219.379608154 219.449920654 219.579803467 219.869842529 220.180389404 220.989929199 220.940124512 220.889831543 220.820007324 220.779968262 220.829772949 220.989929199 221.17010498 221.230163574 221.09979248 220.880065918 220.739929199 220.770202637 220.909851074 221.029968262 220.989929199 220.770202637 220.030349731 220.259841919 220.580154419 220.849685669 220.950271606 220.839920044 220.599685669 220.370193481 220.229568481 220.189529419 220.240310669 220.309646606 220.339920044 220.290115356 220.309646606 220.370193481 220.120193481 219.570037842 219.579803467 219.720428467 219.779998779 219.690155029 219.610076904 219.640350342 219.669647217 219.539764404 219.310272217 219.220428467 219.310272217 219.430389404 219.520233154 219.669647217 219.959686279 220.279998779 220.929870605 220.829772949 220.779968262 220.739929199 220.75994873 220.840026855 221.000183105 221.139831543 221.159851074 221.029968262 220.860046387 220.770202637 220.810241699 220.92010498 221.00994873 221.000183105 220.840026855 220.049880981 220.240310669 220.549880981 220.839920044 220.950271606 220.820388794 220.540115356 220.259841919 220.110427856 220.080154419 220.150466919 220.240310669 220.259841919 220.200271606 220.240310669 220.389724731 220.250076294 219.510467529 219.489959717 219.659881592 219.749725342 219.690155029 219.600311279 219.619842529 219.640350342 219.520233154 219.339569092 219.260467529 219.310272217 219.379608154 219.459686279 219.629608154 219.980194092 220.360076904 220.889831543 220.799987793 220.730163574 220.690124512 220.719909668 220.820007324 220.969909668 221.060241699 221.040222168 220.940124512 220.84979248 220.799987793 220.799987793 220.840026855 220.909851074 220.949890137 220.880065918 220.120193481 220.309646606 220.599685669 220.849685669 220.939529419 220.799880981 220.519607544 220.240310669 220.070388794 220.030349731 220.080154419 220.169998169 220.169998169 220.099685669 220.160232544 220.389724731 220.360427856 219.549530029 219.549530029 219.699920654 219.779998779 219.709686279 219.650115967 219.680389404 219.709686279 219.600311279 219.409881592 219.320037842 219.329803467 219.329803467 219.369842529 219.570037842 219.959686279 220.419647217 220.909851074 220.880065918 220.810241699 220.730163574 220.730163574 220.840026855 220.969909668 221.029968262 220.969909668 220.889831543 220.840026855 220.810241699 220.770202637 220.75994873 220.829772949 220.929870605 220.92010498 220.160232544 220.389724731 220.660232544 220.849685669 220.889724731 220.750076294 220.519607544 220.309646606 220.150466919 220.049880981 220.059646606 220.120193481 220.150466919 220.120193481 220.219802856 220.500076294 220.549880981 219.629608154 219.659881592 219.789764404 219.810272217 219.720428467 219.690155029 219.770233154 219.820037842 219.709686279 219.520233154 219.409881592 219.379608154 219.379608154 219.419647217 219.619842529 220.010467529 220.489959717 220.909851074 220.960144043 220.929870605 220.810241699 220.750183105 220.84979248 220.989929199 221.029968262 220.960144043 220.889831543 220.84979248 220.820007324 220.779968262 220.790222168 220.880065918 221.00994873 221.000183105 220.099685669 220.349685669 220.629959106 220.799880981 220.790115356 220.650466919 220.490310669 220.330154419 220.200271606 220.070388794 220.009841919 220.059646606 220.139724731 220.219802856 220.379959106 220.679763794 220.769607544 219.610076904 219.680389404 219.789764404 219.779998779 219.680389404 219.659881592 219.770233154 219.829803467 219.730194092 219.549530029 219.440155029 219.440155029 219.480194092 219.560272217 219.739959717 220.049530029 220.489959717 220.84979248 220.929870605 220.929870605 220.810241699 220.730163574 220.799987793 220.929870605 220.980163574 220.92010498 220.860046387 220.840026855 220.829772949 220.799987793 220.840026855 220.949890137 221.070007324 221.049987793 220.000076294 220.229568481 220.540115356 220.729568481 220.719802856 220.570388794 220.410232544 220.299880981 220.210037231 220.070388794 219.950271606 219.969802856 220.080154419 220.219802856 220.419998169 220.750076294 220.870193481 219.529998779 219.589569092 219.730194092 219.720428467 219.629608154 219.610076904 219.669647217 219.739959717 219.690155029 219.560272217 219.470428467 219.449920654 219.520233154 219.610076904 219.749725342 219.980194092 220.390350342 220.75994873 220.829772949 220.860046387 220.75994873 220.67010498 220.719909668 220.829772949 220.869812012 220.840026855 220.820007324 220.820007324 220.810241699 220.790222168 220.799987793 220.889831543 221.000183105 221.040222168 219.969802856 220.179763794 220.500076294 220.740310669 220.759841919 220.580154419 220.379959106 220.280349731 220.229568481 220.110427856 219.950271606 219.910232544 219.979568481 220.110427856 220.339920044 220.669998169 220.849685669 219.489959717 219.549530029 219.690155029 219.749725342 219.680389404 219.619842529 219.650115967 219.709686279 219.720428467 219.669647217 219.589569092 219.510467529 219.499725342 219.570037842 219.659881592 219.850311279 220.270233154 220.719909668 220.770202637 220.810241699 220.739929199 220.67010498 220.699890137 220.779968262 220.820007324 220.829772949 220.840026855 220.869812012 220.840026855 220.770202637 220.719909668 220.750183105 220.880065918 220.989929199 220.009841919 220.200271606 220.530349731 220.820388794 220.849685669 220.639724731 220.379959106 220.290115356 220.299880981 220.210037231 220.019607544 219.889724731 219.919998169 220.059646606 220.290115356 220.620193481 220.820388794 219.560272217 219.619842529 219.749725342 219.799530029 219.739959717 219.680389404 219.680389404 219.749725342 219.829803467 219.839569092 219.749725342 219.610076904 219.539764404 219.560272217 219.640350342 219.810272217 220.239959717 220.699890137 220.730163574 220.75994873 220.710144043 220.659851074 220.679870605 220.75994873 220.829772949 220.869812012 220.909851074 220.929870605 220.889831543 220.790222168 220.719909668 220.730163574 220.84979248 221.040222168 220.019607544 220.210037231 220.559646606 220.830154419 220.860427856 220.610427856 220.330154419 220.259841919 220.320388794 220.280349731 220.059646606 219.879959106 219.900466919 220.080154419 220.360427856 220.689529419 220.860427856 219.650115967 219.690155029 219.779998779 219.799530029 219.749725342 219.680389404 219.669647217 219.739959717 219.839569092 219.879608154 219.799530029 219.669647217 219.600311279 219.629608154 219.709686279 219.879608154 220.299530029 220.650085449 220.650085449 220.659851074 220.610046387 220.570007324 220.610046387 220.719909668 220.810241699 220.869812012 220.900085449 220.900085449 220.869812012 220.829772949 220.790222168 220.820007324 220.940124512 221.119812012 220.000076294 220.200271606 220.540115356 220.820388794 220.839920044 220.570388794 220.250076294 220.179763794 220.269607544 220.259841919 220.040115356 219.839920044 219.860427856 220.089920044 220.410232544 220.740310669 220.889724731 219.659881592 219.699920654 219.760467529 219.770233154 219.730194092 219.659881592 219.640350342 219.669647217 219.739959717 219.770233154 219.720428467 219.629608154 219.610076904 219.659881592 219.749725342 219.919647217 220.310272217 220.59979248 220.579772949 220.570007324 220.50994873 220.480163574 220.549987793 220.67010498 220.750183105 220.799987793 220.820007324 220.799987793 220.790222168 220.799987793 220.829772949 220.880065918 220.980163574 221.139831543 220.019607544 220.210037231 220.540115356 220.849685669 220.900466919 220.629959106 220.290115356 220.169998169 220.250076294 220.259841919 220.059646606 219.839920044 219.820388794 220.019607544 220.339920044 220.669998169 220.820388794 219.640350342 219.680389404 219.760467529 219.810272217 219.810272217 219.770233154 219.720428467 219.680389404 219.690155029 219.709686279 219.680389404 219.610076904 219.570037842 219.629608154 219.709686279 219.879608154 220.230194092 220.659851074 220.619812012 220.590026855 220.549987793 220.540222168 220.59979248 220.690124512 220.75994873 220.779968262 220.790222168 220.779968262 220.75994873 220.770202637 220.810241699 220.840026855 220.909851074 221.040222168 220.059646606 220.210037231 220.530349731 220.879959106 221.000076294 220.780349731 220.429763794 220.240310669 220.290115356 220.320388794 220.150466919 219.910232544 219.809646606 219.939529419 220.219802856 220.559646606 220.759841919 219.650115967 219.699920654 219.789764404 219.879608154 219.940155029 219.919647217 219.850311279 219.779998779 219.770233154 219.779998779 219.739959717 219.640350342 219.560272217 219.579803467 219.669647217 219.850311279 220.199920654 220.779968262 220.730163574 220.679870605 220.639831543 220.639831543 220.710144043 220.779968262 220.820007324 220.84979248 220.869812012 220.869812012 220.820007324 220.790222168 220.779968262 220.810241699 220.869812012 220.949890137 220.030349731 220.160232544 220.439529419 220.780349731 220.969802856 220.849685669 220.540115356 220.309646606 220.299880981 220.330154419 220.189529419 219.950271606 219.790115356 219.860427856 220.139724731 220.530349731 220.769607544 219.699920654 219.730194092 219.799530029 219.890350342 219.949920654 219.949920654 219.900115967 219.839569092 219.820037842 219.820037842 219.770233154 219.650115967 219.539764404 219.549530029 219.680389404 219.890350342 220.260467529 220.810241699 220.75994873 220.690124512 220.619812012 220.630065918 220.719909668 220.820007324 220.860046387 220.869812012 220.909851074 220.929870605 220.889831543 220.829772949 220.810241699 220.840026855 220.909851074 220.980163574 219.950271606 220.120193481 220.370193481 220.660232544 220.860427856 220.820388794 220.580154419 220.330154419 220.259841919 220.240310669 220.120193481 219.870193481 219.710037231 219.769607544 220.080154419 220.519607544 220.780349731 219.739959717 219.779998779 219.820037842 219.869842529 219.890350342 219.879608154 219.860076904 219.810272217 219.770233154 219.730194092 219.669647217 219.570037842 219.470428467 219.470428467 219.610076904 219.869842529 220.289764404 220.730163574 220.690124512 220.619812012 220.529968262 220.540222168 220.67010498 220.820007324 220.860046387 220.84979248 220.84979248 220.869812012 220.860046387 220.810241699 220.820007324 220.889831543 220.980163574 221.029968262 219.919998169 220.189529419 220.460037231 220.700271606 220.860427856 220.839920044 220.620193481 220.370193481 220.240310669 220.179763794 220.059646606 219.820388794 219.629959106 219.679763794 219.990310669 220.439529419 220.740310669 219.779998779 219.860076904 219.919647217 219.949920654 219.940155029 219.930389404 219.909881592 219.839569092 219.749725342 219.659881592 219.600311279 219.529998779 219.419647217 219.329803467 219.409881592 219.699920654 220.220428467 220.690124512 220.699890137 220.639831543 220.549987793 220.560241699 220.730163574 220.889831543 220.92010498 220.860046387 220.820007324 220.829772949 220.829772949 220.779968262 220.770202637 220.860046387 220.969909668 221.020202637 219.969802856 220.330154419 220.650466919 220.860427856 220.960037231 220.900466919 220.660232544 220.379959106 220.240310669 220.189529419 220.099685669 219.900466919 219.700271606 219.660232544 219.900466919 220.339920044 220.679763794 219.810272217 219.930389404 220.049530029 220.110076904 220.119842529 220.079803467 220.039764404 219.949920654 219.829803467 219.720428467 219.690155029 219.629608154 219.449920654 219.220428467 219.180389404 219.499725342 220.150115967 220.770202637 220.820007324 220.799987793 220.719909668 220.719909668 220.880065918 221.029968262 221.040222168 220.92010498 220.880065918 220.92010498 220.909851074 220.829772949 220.75994873 220.840026855 220.969909668 221.040222168 219.979568481 220.349685669 220.689529419 220.900466919 220.969802856 220.849685669 220.570388794 220.290115356 220.160232544 220.160232544 220.139724731 220.000076294 219.790115356 219.689529419 219.870193481 220.290115356 220.719802856 219.779998779 219.890350342 220.039764404 220.150115967 220.180389404 220.129608154 220.070037842 219.980194092 219.869842529 219.799530029 219.779998779 219.739959717 219.489959717 219.150115967 219.049530029 219.430389404 220.169647217 220.829772949 220.869812012 220.869812012 220.810241699 220.810241699 220.940124512 221.060241699 221.049987793 220.960144043 220.940124512 221.029968262 221.029968262 220.889831543 220.779968262 220.869812012 221.079772949 221.219909668 219.879959106 220.189529419 220.519607544 220.790115356 220.870193481 220.710037231 220.410232544 220.150466919 220.049880981 220.070388794 220.049880981 219.939529419 219.750076294 219.669998169 219.839920044 220.290115356 220.790115356 219.690155029 219.739959717 219.879608154 220.039764404 220.110076904 220.060272217 219.989959717 219.940155029 219.850311279 219.749725342 219.699920654 219.640350342 219.409881592 219.089569092 219.020233154 219.430389404 220.150115967 220.75994873 220.75994873 220.770202637 220.739929199 220.750183105 220.880065918 220.989929199 220.989929199 220.92010498 220.940124512 221.040222168 221.029968262 220.84979248 220.730163574 220.900085449 221.239929199 221.469909668 219.809646606 220.110427856 220.460037231 220.759841919 220.839920044 220.679763794 220.400466919 220.200271606 220.120193481 220.059646606 219.929763794 219.769607544 219.620193481 219.599685669 219.769607544 220.200271606 220.669998169 219.669647217 219.699920654 219.829803467 220.020233154 220.100311279 220.060272217 220.039764404 220.029998779 219.930389404 219.720428467 219.570037842 219.499725342 219.339569092 219.079803467 218.959686279 219.260467529 219.820037842 220.619812012 220.630065918 220.659851074 220.679870605 220.730163574 220.869812012 221.000183105 221.020202637 220.960144043 220.960144043 221.020202637 220.969909668 220.779968262 220.679870605 220.860046387 221.250183105 221.500183105 219.910232544 220.269607544 220.669998169 220.950271606 220.990310669 220.790115356 220.549880981 220.419998169 220.370193481 220.210037231 219.950271606 219.740310669 219.629959106 219.589920044 219.669998169 219.960037231 220.320388794 219.779998779 219.850311279 219.999725342 220.169647217 220.220428467 220.180389404 220.199920654 220.260467529 220.150115967 219.850311279 219.610076904 219.560272217 219.489959717 219.190155029 218.839569092 218.810272217 219.159881592 220.610046387 220.659851074 220.739929199 220.75994873 220.810241699 220.940124512 221.079772949 221.139831543 221.110046387 221.079772949 221.090026855 221.020202637 220.840026855 220.719909668 220.810241699 221.070007324 221.219909668 220.080154419 220.479568481 220.879959106 221.120193481 221.080154419 220.830154419 220.610427856 220.549880981 220.519607544 220.339920044 220.070388794 219.879959106 219.780349731 219.650466919 219.540115356 219.629959106 219.889724731 219.900115967 220.010467529 220.169647217 220.289764404 220.249725342 220.159881592 220.220428467 220.369842529 220.289764404 219.970428467 219.749725342 219.799530029 219.779998779 219.310272217 218.610076904 218.249725342 218.520233154 220.710144043 220.790222168 220.880065918 220.869812012 220.84979248 220.929870605 221.070007324 221.179870605 221.210144043 221.179870605 221.139831543 221.09979248 221.000183105 220.900085449 220.820007324 220.820007324 220.770202637 220.059646606 220.429763794 220.809646606 221.009841919 220.939529419 220.710037231 220.540115356 220.519607544 220.469802856 220.299880981 220.099685669 219.990310669 219.870193481 219.589920044 219.309646606 219.330154419 219.660232544 219.850311279 219.959686279 220.140350342 220.209686279 220.100311279 219.980194092 220.100311279 220.299530029 220.270233154 219.970428467 219.810272217 219.919647217 219.879608154 219.249725342 218.320037842 217.879608154 218.329803467 220.750183105 220.84979248 220.909851074 220.84979248 220.750183105 220.779968262 220.949890137 221.139831543 221.219909668 221.17010498 221.070007324 221.020202637 221.029968262 220.989929199 220.840026855 220.619812012 220.369812012 219.839920044 220.189529419 220.559646606 220.769607544 220.799880981 220.689529419 220.610427856 220.580154419 220.479568481 220.280349731 220.120193481 220.009841919 219.780349731 219.360427856 219.040115356 219.200271606 219.790115356 219.669647217 219.820037842 220.039764404 220.119842529 220.029998779 219.959686279 220.150115967 220.390350342 220.339569092 220.020233154 219.829803467 219.890350342 219.749725342 219.060272217 218.169647217 217.919647217 218.690155029 220.719909668 220.840026855 220.889831543 220.799987793 220.699890137 220.739929199 220.960144043 221.219909668 221.320007324 221.179870605 220.929870605 220.820007324 220.880065918 220.92010498 220.779968262 220.480163574 220.110046387 219.719802856 220.110427856 220.500076294 220.740310669 220.839920044 220.860427856 220.870193481 220.830154419 220.669998169 220.460037231 220.299880981 220.110427856 219.710037231 219.169998169 218.950271606 219.379959106 220.240310669 219.579803467 219.820037842 220.070037842 220.169647217 220.129608154 220.169647217 220.440155029 220.699920654 220.610076904 220.239959717 219.980194092 219.940155029 219.720428467 219.070037842 218.400115967 218.440155029 219.379608154 220.730163574 220.889831543 220.940124512 220.829772949 220.739929199 220.84979248 221.130065918 221.42010498 221.500183105 221.290222168 220.949890137 220.75994873 220.799987793 220.84979248 220.699890137 220.369812012 219.960144043 219.830154419 220.309646606 220.679763794 220.839920044 220.900466919 220.939529419 220.979568481 220.950271606 220.820388794 220.669998169 220.549880981 220.309646606 219.820388794 219.269607544 219.200271606 219.849685669 220.790115356 219.680389404 219.940155029 220.119842529 220.129608154 220.089569092 220.209686279 220.549530029 220.820037842 220.749725342 220.430389404 220.190155029 220.119842529 219.930389404 219.449920654 219.029998779 219.180389404 219.999725342 220.869812012 220.989929199 220.949890137 220.770202637 220.679870605 220.820007324 221.110046387 221.400085449 221.480163574 221.310241699 221.040222168 220.909851074 220.929870605 220.889831543 220.67010498 220.320007324 219.900085449 220.019607544 220.479568481 220.729568481 220.780349731 220.769607544 220.799880981 220.849685669 220.839920044 220.750076294 220.679763794 220.610427856 220.370193481 219.910232544 219.490310669 219.589920044 220.320388794 221.139724731 219.829803467 219.970428467 219.949920654 219.829803467 219.760467529 219.949920654 220.320037842 220.619842529 220.610076904 220.360076904 220.190155029 220.169647217 220.089569092 219.850311279 219.619842529 219.739959717 220.239959717 220.989929199 220.989929199 220.75994873 220.480163574 220.389831543 220.560241699 220.860046387 221.09979248 221.17010498 221.09979248 220.989929199 220.989929199 221.00994873 220.880065918 220.610046387 220.290222168 219.940124512 220.019607544 220.349685669 220.549880981 220.650466919 220.750076294 220.879959106 220.960037231 220.950271606 220.820388794 220.669998169 220.469802856 220.169998169 219.769607544 219.519607544 219.759841919 220.460037231 221.099685669 219.869842529 219.860076904 219.730194092 219.610076904 219.659881592 219.949920654 220.369842529 220.650115967 220.610076904 220.329803467 220.049530029 219.949920654 219.919647217 219.869842529 219.789764404 219.839569092 220.079803467 220.980163574 220.810241699 220.500183105 220.239929199 220.279968262 220.570007324 220.869812012 221.040222168 221.029968262 220.909851074 220.820007324 220.790222168 220.750183105 220.59979248 220.42010498 220.290222168 220.119812012 219.849685669 220.150466919 220.479568481 220.860427856 221.219802856 221.469802856 221.549880981 221.450271606 221.210037231 220.849685669 220.400466919 219.910232544 219.500076294 219.349685669 219.620193481 220.240310669 220.769607544 219.869842529 219.879608154 219.890350342 220.020233154 220.310272217 220.680389404 221.029998779 221.209686279 221.060272217 220.619842529 220.079803467 219.720428467 219.600311279 219.600311279 219.610076904 219.619842529 219.749725342 220.880065918 220.730163574 220.540222168 220.500183105 220.730163574 221.110046387 221.409851074 221.489929199 221.360046387 221.079772949 220.779968262 220.520202637 220.320007324 220.179870605 220.210144043 220.369812012 220.409851074 219.750076294 220.240310669 220.849685669 221.450271606 221.860427856 221.969802856 221.830154419 221.589920044 221.299880981 220.879959106 220.320388794 219.769607544 219.360427856 219.229568481 219.439529419 219.929763794 220.429763794 219.879608154 220.140350342 220.470428467 220.860076904 221.220428467 221.430389404 221.499725342 221.489959717 221.299530029 220.820037842 220.180389404 219.669647217 219.470428467 219.499725342 219.529998779 219.480194092 219.529998779 220.820007324 220.880065918 220.949890137 221.09979248 221.340026855 221.590026855 221.739929199 221.750183105 221.579772949 221.250183105 220.829772949 220.42010498 220.110046387 220.00994873 220.219909668 220.610046387 220.779968262 219.809646606 220.549880981 221.269607544 221.750076294 221.790115356 221.410232544 220.870193481 220.500076294 220.339920044 220.169998169 219.879959106 219.570388794 219.360427856 219.290115356 219.410232544 219.769607544 220.240310669 219.869842529 220.329803467 220.810272217 221.159881592 221.220428467 220.980194092 220.650115967 220.480194092 220.400115967 220.209686279 219.860076904 219.579803467 219.549530029 219.669647217 219.709686279 219.589569092 219.499725342 220.810241699 221.00994873 221.210144043 221.290222168 221.230163574 221.090026855 220.969909668 220.900085449 220.84979248 220.719909668 220.529968262 220.329772949 220.190124512 220.199890137 220.489929199 220.92010498 221.09979248 219.860427856 220.580154419 221.080154419 221.129959106 220.669998169 219.839920044 219.019607544 218.629959106 218.669998169 218.849685669 218.990310669 219.089920044 219.219802856 219.299880981 219.400466919 219.689529419 220.189529419 219.699920654 220.089569092 220.339569092 220.329803467 219.970428467 219.350311279 218.779998779 218.560272217 218.690155029 218.879608154 218.999725342 219.150115967 219.470428467 219.810272217 219.909881592 219.730194092 219.489959717 220.699890137 220.820007324 220.840026855 220.619812012 220.17010498 219.690124512 219.369812012 219.270202637 219.329772949 219.460144043 219.67010498 219.949890137 220.199890137 220.440124512 220.730163574 221.060241699 221.199890137 219.669998169 220.000076294 220.059646606 219.780349731 219.200271606 218.439529419 217.780349731 217.500076294 217.599685669 217.870193481 218.160232544 218.509841919 218.870193481 219.089920044 219.240310669 219.559646606 220.120193481 219.379608154 219.369842529 219.220428467 218.890350342 218.430389404 217.900115967 217.510467529 217.419647217 217.600311279 217.869842529 218.159881592 218.560272217 219.119842529 219.629608154 219.820037842 219.680389404 219.379608154 220.400085449 220.210144043 219.929870605 219.500183105 218.969909668 218.520202637 218.290222168 218.239929199 218.270202637 218.409851074 218.770202637 219.34979248 219.949890137 220.389831543 220.679870605 220.929870605 221.079772949 219.219802856 219.049880981 218.809646606 218.530349731 218.320388794 218.120193481 217.939529419 217.839920044 217.820388794 217.820388794 217.929763794 218.189529419 218.549880981 218.799880981 218.990310669 219.370193481 220.030349731 218.999725342 218.589569092 218.159881592 217.850311279 217.709686279 217.690155029 217.749725342 217.839569092 217.879608154 217.879608154 217.940155029 218.230194092 218.779998779 219.329803467 219.579803467 219.520233154 219.260467529 220.020202637 219.50994873 219.079772949 218.730163574 218.489929199 218.42010498 218.489929199 218.529968262 218.449890137 218.340026855 218.480163574 218.989929199 219.650085449 220.179870605 220.500183105 220.710144043 220.92010498 218.729568481 218.309646606 218.059646606 218.049880981 218.269607544 218.549880981 218.719802856 218.710037231 218.530349731 218.269607544 218.129959106 218.219802856 218.469802856 218.679763794 218.889724731 219.309646606 219.990310669 218.659881592 218.089569092 217.730194092 217.669647217 217.900115967 218.320037842 218.680389404 218.839569092 218.720428467 218.430389404 218.190155029 218.299530029 218.730194092 219.230194092 219.499725342 219.470428467 219.260467529 219.650085449 219.060241699 218.730163574 218.630065918 218.719909668 218.940124512 219.219909668 219.369812012 219.250183105 218.960144043 218.810241699 219.040222168 219.560241699 220.09979248 220.449890137 220.659851074 220.869812012 218.429763794 218.129959106 218.129959106 218.309646606 218.599685669 218.870193481 218.979568481 218.919998169 218.700271606 218.419998169 218.250076294 218.309646606 218.519607544 218.719802856 218.950271606 219.379959106 220.040115356 218.419647217 217.989959717 217.879608154 218.039764404 218.379608154 218.760467529 219.049530029 219.140350342 218.959686279 218.610076904 218.360076904 218.440155029 218.860076904 219.360076904 219.650115967 219.619842529 219.369842529 219.449890137 218.989929199 218.880065918 218.969909668 219.110046387 219.25994873 219.449890137 219.59979248 219.560241699 219.329772949 219.130065918 219.230163574 219.659851074 220.199890137 220.579772949 220.779968262 220.92010498 218.469802856 218.460037231 218.679763794 218.879959106 218.929763794 218.839920044 218.679763794 218.500076294 218.339920044 218.189529419 218.120193481 218.240310669 218.500076294 218.759841919 219.030349731 219.450271606 220.070388794 218.449920654 218.230194092 218.329803467 218.539764404 218.720428467 218.810272217 218.829803467 218.749725342 218.560272217 218.329803467 218.230194092 218.419647217 218.909881592 219.459686279 219.799530029 219.799530029 219.489959717 219.500183105 219.230163574 219.270202637 219.369812012 219.360046387 219.25994873 219.190124512 219.210144043 219.210144043 219.130065918 219.060241699 219.219909668 219.699890137 220.290222168 220.699890137 220.869812012 220.949890137 218.910232544 219.030349731 219.250076294 219.330154419 219.179763794 218.889724731 218.580154419 218.339920044 218.160232544 218.040115356 217.990310669 218.110427856 218.389724731 218.729568481 219.049880981 219.439529419 220.019607544 218.850311279 218.709686279 218.789764404 218.879608154 218.919647217 218.879608154 218.760467529 218.560272217 218.299530029 218.089569092 218.070037842 218.339569092 218.850311279 219.430389404 219.839569092 219.879608154 219.560272217 219.84979248 219.650085449 219.650085449 219.650085449 219.529968262 219.329772949 219.159851074 219.020202637 218.900085449 218.790222168 218.820007324 219.130065918 219.699890137 220.320007324 220.719909668 220.84979248 220.889831543 219.589920044 219.549880981 219.519607544 219.419998169 219.290115356 219.129959106 218.889724731 218.620193481 218.360427856 218.160232544 218.040115356 218.110427856 218.379959106 218.750076294 219.089920044 219.439529419 219.979568481 219.520233154 219.249725342 219.060272217 218.949920654 218.959686279 219.049530029 219.049530029 218.810272217 218.419647217 218.119842529 218.100311279 218.390350342 218.879608154 219.430389404 219.810272217 219.900115967 219.629608154 220.360046387 220.070007324 219.860046387 219.690124512 219.59979248 219.579772949 219.529968262 219.320007324 218.989929199 218.75994873 218.820007324 219.219909668 219.840026855 220.389831543 220.710144043 220.799987793 220.860046387 220.150466919 219.889724731 219.509841919 219.240310669 219.189529419 219.210037231 219.070388794 218.780349731 218.479568481 218.269607544 218.189529419 218.269607544 218.530349731 218.889724731 219.210037231 219.519607544 220.000076294 220.020233154 219.619842529 219.079803467 218.709686279 218.709686279 218.999725342 219.169647217 218.949920654 218.489959717 218.190155029 218.260467529 218.629608154 219.089569092 219.539764404 219.850311279 219.930389404 219.730194092 220.730163574 220.320007324 219.84979248 219.480163574 219.42010498 219.630065918 219.790222168 219.59979248 219.199890137 218.940124512 219.090026855 219.590026855 220.17010498 220.590026855 220.75994873 220.820007324 220.929870605 220.250076294 219.900466919 219.360427856 218.979568481 218.919998169 218.969802856 218.799880981 218.479568481 218.269607544 218.269607544 218.360427856 218.490310669 218.719802856 219.040115356 219.320388794 219.599685669 220.040115356 220.010467529 219.600311279 218.930389404 218.379608154 218.310272217 218.619842529 218.829803467 218.659881592 218.310272217 218.190155029 218.459686279 218.930389404 219.369842529 219.690155029 219.869842529 219.930389404 219.829803467 220.750183105 220.299987793 219.690124512 219.179870605 219.070007324 219.340026855 219.579772949 219.480163574 219.17010498 219.079772949 219.42010498 220.00994873 220.50994873 220.739929199 220.799987793 220.880065918 221.060241699 219.809646606 219.610427856 219.169998169 218.839920044 218.759841919 218.710037231 218.439529419 218.150466919 218.120193481 218.370193481 218.610427856 218.710037231 218.809646606 219.059646606 219.349685669 219.660232544 220.080154419 219.480194092 219.249725342 218.739959717 218.239959717 218.119842529 218.310272217 218.459686279 218.360076904 218.209686279 218.310272217 218.720428467 219.190155029 219.539764404 219.730194092 219.820037842 219.890350342 219.919647217 220.429870605 220.070007324 219.529968262 219.029968262 218.880065918 219.049987793 219.230163574 219.190124512 219.079772949 219.210144043 219.679870605 220.25994873 220.67010498 220.779968262 220.779968262 220.889831543 221.130065918 219.129959106 219.099685669 218.929763794 218.820388794 218.830154419 218.750076294 218.450271606 218.210037231 218.330154419 218.689529419 218.910232544 218.849685669 218.799880981 218.990310669 219.339920044 219.700271606 220.129959106 218.789764404 218.739959717 218.520233154 218.279998779 218.249725342 218.369842529 218.440155029 218.400115967 218.419647217 218.640350342 218.980194092 219.310272217 219.539764404 219.690155029 219.789764404 219.890350342 220.020233154 219.980163574 219.739929199 219.400085449 219.079772949 218.980163574 219.090026855 219.199890137 219.199890137 219.219909668 219.440124512 219.889831543 220.369812012 220.67010498 220.75994873 220.770202637 220.889831543 221.150085449 218.570388794 218.549880981 218.570388794 218.700271606 218.900466919 218.960037231 218.759841919 218.580154419 218.700271606 219.009841919 219.129959106 218.929763794 218.759841919 218.939529419 219.370193481 219.820388794 220.240310669 218.310272217 218.220428467 218.190155029 218.249725342 218.409881592 218.560272217 218.610076904 218.619842529 218.730194092 218.940155029 219.140350342 219.299530029 219.480194092 219.680389404 219.839569092 219.989959717 220.159881592 219.59979248 219.369812012 219.150085449 219.049987793 219.110046387 219.270202637 219.42010498 219.489929199 219.560241699 219.750183105 220.049987793 220.380065918 220.659851074 220.810241699 220.84979248 220.929870605 221.139831543 218.330154419 218.129959106 218.139724731 218.379959106 218.750076294 219.000076294 218.969802856 218.849685669 218.929763794 219.160232544 219.229568481 219.009841919 218.799880981 218.939529419 219.400466919 219.929763794 220.370193481 218.140350342 217.820037842 217.749725342 217.940155029 218.260467529 218.510467529 218.610076904 218.699920654 218.860076904 219.049530029 219.159881592 219.260467529 219.480194092 219.770233154 219.959686279 220.079803467 220.249725342 219.389831543 219.020202637 218.799987793 218.779968262 218.969909668 219.270202637 219.540222168 219.710144043 219.840026855 219.960144043 220.119812012 220.380065918 220.67010498 220.880065918 220.940124512 220.969909668 221.139831543 218.429763794 218.040115356 217.910232544 218.059646606 218.419998169 218.780349731 218.919998169 218.900466919 218.979568481 219.210037231 219.330154419 219.160232544 218.910232544 218.929763794 219.339920044 219.910232544 220.419998169 218.279998779 217.730194092 217.480194092 217.589569092 217.900115967 218.199920654 218.400115967 218.579803467 218.850311279 219.079803467 219.190155029 219.310272217 219.579803467 219.890350342 220.029998779 220.089569092 220.220428467 219.369812012 218.869812012 218.549987793 218.480163574 218.659851074 219.029968262 219.409851074 219.699890137 219.889831543 220.00994873 220.130065918 220.360046387 220.67010498 220.900085449 220.940124512 220.92010498 221.090026855 218.839920044 218.469802856 218.219802856 218.139724731 218.280349731 218.559646606 218.769607544 218.860427856 219.009841919 219.280349731 219.460037231 219.339920044 219.019607544 218.900466919 219.189529419 219.780349731 220.379959106 218.659881592 218.089569092 217.730194092 217.650115967 217.770233154 217.959686279 218.180389404 218.470428467 218.839569092 219.129608154 219.289764404 219.430389404 219.690155029 219.959686279 220.049530029 220.029998779 220.129608154 219.610046387 219.09979248 218.699890137 218.489929199 218.540222168 218.840026855 219.239929199 219.590026855 219.840026855 219.980163574 220.130065918 220.369812012 220.679870605 220.880065918 220.889831543 220.860046387 221.070007324 219.429763794 219.250076294 219.049880981 218.780349731 218.610427856 218.629959106 218.759841919 218.900466919 219.080154419 219.320388794 219.490310669 219.410232544 219.110427856 218.900466919 219.089920044 219.669998169 220.309646606 219.169647217 218.789764404 218.499725342 218.279998779 218.129608154 218.079803467 218.199920654 218.499725342 218.879608154 219.169647217 219.320037842 219.470428467 219.730194092 219.999725342 220.089569092 220.060272217 220.110076904 220.020202637 219.659851074 219.299987793 218.969909668 218.829772949 218.969909668 219.290222168 219.619812012 219.84979248 219.989929199 220.150085449 220.409851074 220.719909668 220.900085449 220.880065918 220.860046387 221.119812012 219.870193481 219.979568481 219.950271606 219.669998169 219.290115356 219.030349731 218.990310669 219.059646606 219.169998169 219.299880981 219.400466919 219.349685669 219.150466919 218.979568481 219.099685669 219.589920044 220.219802856 219.549530029 219.449920654 219.369842529 219.159881592 218.820037842 218.549530029 218.510467529 218.709686279 218.980194092 219.159881592 219.260467529 219.409881592 219.709686279 220.039764404 220.199920654 220.199920654 220.190155029 220.380065918 220.239929199 220.000183105 219.679870605 219.42010498 219.409851074 219.630065918 219.880065918 220.00994873 220.060241699 220.17010498 220.440124512 220.75994873 220.940124512 220.929870605 220.940124512 221.210144043 219.919998169 220.189529419 220.370193481 220.259841919 219.900466919 219.540115356 219.360427856 219.330154419 219.320388794 219.309646606 219.330154419 219.330154419 219.240310669 219.110427856 219.150466919 219.509841919 220.049880981 219.579803467 219.669647217 219.820037842 219.760467529 219.449920654 219.119842529 219.010467529 219.079803467 219.169647217 219.180389404 219.220428467 219.390350342 219.730194092 220.089569092 220.310272217 220.339569092 220.279998779 220.440124512 220.449890137 220.400085449 220.179870605 219.949890137 219.900085449 220.070007324 220.239929199 220.250183105 220.159851074 220.190124512 220.429870605 220.75994873 220.940124512 220.929870605 220.969909668 221.290222168 219.639724731 219.860427856 220.169998169 220.299880981 220.139724731 219.839920044 219.629959106 219.559646606 219.509841919 219.429763794 219.400466919 219.410232544 219.360427856 219.200271606 219.120193481 219.339920044 219.830154419 219.360076904 219.489959717 219.779998779 219.869842529 219.690155029 219.449920654 219.379608154 219.409881592 219.369842529 219.279998779 219.279998779 219.480194092 219.810272217 220.129608154 220.339569092 220.409881592 220.339569092 220.270202637 220.290222168 220.340026855 220.290222168 220.17010498 220.17010498 220.34979248 220.50994873 220.460144043 220.270202637 220.219909668 220.449890137 220.750183105 220.880065918 220.869812012 220.969909668 221.329772949 219.410232544 219.519607544 219.820388794 220.080154419 220.089920044 219.889724731 219.710037231 219.629959106 219.580154419 219.519607544 219.509841919 219.530349731 219.450271606 219.240310669 219.070388794 219.210037231 219.650466919 219.209686279 219.310272217 219.579803467 219.709686279 219.610076904 219.470428467 219.480194092 219.510467529 219.449920654 219.339569092 219.379608154 219.610076904 219.890350342 220.150115967 220.350311279 220.470428467 220.470428467 220.090026855 220.040222168 220.119812012 220.150085449 220.110046387 220.17010498 220.380065918 220.590026855 220.549987793 220.360046387 220.320007324 220.529968262 220.799987793 220.869812012 220.84979248 221.020202637 221.42010498 219.490310669 219.519607544 219.769607544 220.000076294 220.030349731 219.849685669 219.660232544 219.559646606 219.509841919 219.490310669 219.519607544 219.559646606 219.469802856 219.250076294 219.070388794 219.200271606 219.639724731 219.299530029 219.379608154 219.549530029 219.600311279 219.470428467 219.390350342 219.419647217 219.480194092 219.409881592 219.329803467 219.400115967 219.640350342 219.930389404 220.159881592 220.390350342 220.600311279 220.680389404 220.119812012 219.989929199 220.029968262 220.070007324 220.040222168 220.079772949 220.310241699 220.560241699 220.590026855 220.440124512 220.42010498 220.639831543 220.900085449 220.949890137 220.929870605 221.130065918 221.579772949 219.700271606 219.769607544 219.960037231 220.120193481 220.059646606 219.839920044 219.629959106 219.519607544 219.490310669 219.469802856 219.490310669 219.519607544 219.460037231 219.290115356 219.160232544 219.309646606 219.729568481 219.449920654 219.529998779 219.619842529 219.579803467 219.440155029 219.360076904 219.419647217 219.489959717 219.440155029 219.360076904 219.419647217 219.640350342 219.909881592 220.180389404 220.480194092 220.770233154 220.919647217 220.25994873 220.119812012 220.119812012 220.110046387 220.029968262 220.049987793 220.299987793 220.610046387 220.67010498 220.520202637 220.469909668 220.690124512 220.949890137 221.00994873 221.000183105 221.219909668 221.67010498 219.719802856 219.879959106 220.089920044 220.189529419 220.059646606 219.820388794 219.650466919 219.610427856 219.620193481 219.589920044 219.549880981 219.530349731 219.490310669 219.360427856 219.259841919 219.379959106 219.780349731 219.440155029 219.510467529 219.570037842 219.529998779 219.430389404 219.400115967 219.489959717 219.589569092 219.579803467 219.510467529 219.529998779 219.690155029 219.949920654 220.239959717 220.539764404 220.839569092 221.029998779 220.299987793 220.179870605 220.190124512 220.150085449 220.029968262 220.029968262 220.340026855 220.699890137 220.779968262 220.590026855 220.489929199 220.699890137 220.969909668 221.049987793 221.029968262 221.210144043 221.630065918 219.580154419 219.809646606 220.049880981 220.129959106 220.000076294 219.769607544 219.669998169 219.740310669 219.839920044 219.809646606 219.689529419 219.610427856 219.559646606 219.450271606 219.309646606 219.360427856 219.750076294 219.329803467 219.369842529 219.419647217 219.440155029 219.430389404 219.430389404 219.510467529 219.619842529 219.669647217 219.669647217 219.680389404 219.820037842 220.079803467 220.350311279 220.579803467 220.770233154 220.949920654 220.270202637 220.17010498 220.159851074 220.09979248 219.969909668 220.000183105 220.320007324 220.710144043 220.810241699 220.639831543 220.570007324 220.779968262 221.060241699 221.150085449 221.09979248 221.179870605 221.50994873 219.540115356 219.790115356 220.040115356 220.129959106 220.019607544 219.799880981 219.710037231 219.830154419 220.000076294 219.969802856 219.780349731 219.639724731 219.610427856 219.540115356 219.349685669 219.299880981 219.660232544 219.320037842 219.320037842 219.379608154 219.470428467 219.529998779 219.520233154 219.499725342 219.560272217 219.669647217 219.730194092 219.760467529 219.900115967 220.190155029 220.459686279 220.579803467 220.629608154 220.739959717 220.290222168 220.179870605 220.150085449 220.090026855 219.989929199 220.020202637 220.310241699 220.650085449 220.779968262 220.699890137 220.679870605 220.900085449 221.17010498 221.279968262 221.219909668 221.230163574 221.449890137 219.650466919 219.849685669 220.080154419 220.200271606 220.139724731 219.929763794 219.799880981 219.900466919 220.070388794 220.030349731 219.790115356 219.610427856 219.599685669 219.559646606 219.349685669 219.219802856 219.549880981 219.419647217 219.369842529 219.419647217 219.600311279 219.730194092 219.680389404 219.570037842 219.570037842 219.690155029 219.749725342 219.739959717 219.810272217 220.089569092 220.390350342 220.499725342 220.449920654 220.499725342 220.42010498 220.25994873 220.199890137 220.159851074 220.119812012 220.159851074 220.360046387 220.619812012 220.750183105 220.739929199 220.730163574 220.880065918 221.070007324 221.199890137 221.270202637 221.360046387 221.529968262 219.679763794 219.790115356 219.919998169 220.089920044 220.150466919 220.019607544 219.870193481 219.929763794 220.110427856 220.080154419 219.790115356 219.540115356 219.500076294 219.490310669 219.290115356 219.129959106 219.400466919 219.390350342 219.270233154 219.310272217 219.560272217 219.789764404 219.789764404 219.669647217 219.680389404 219.820037842 219.829803467 219.650115967 219.570037842 219.770233154 220.140350342 220.339569092 220.329803467 220.329803467 220.489929199 220.270202637 220.17010498 220.179870605 220.219909668 220.290222168 220.429870605 220.630065918 220.770202637 220.750183105 220.650085449 220.579772949 220.619812012 220.829772949 221.139831543 221.460144043 221.719909668 219.549880981 219.509841919 219.559646606 219.799880981 220.019607544 219.990310669 219.849685669 219.910232544 220.120193481 220.150466919 219.839920044 219.509841919 219.419998169 219.389724731 219.210037231 219.040115356 219.269607544 219.230194092 219.029998779 219.049530029 219.369842529 219.680389404 219.760467529 219.720428467 219.799530029 219.970428467 219.930389404 219.589569092 219.320037842 219.440155029 219.879608154 220.249725342 220.379608154 220.360076904 220.429870605 220.139831543 220.029968262 220.110046387 220.230163574 220.299987793 220.42010498 220.619812012 220.799987793 220.779968262 220.520202637 220.219909668 220.139831543 220.400085449 220.940124512 221.50994873 221.909851074 219.469802856 219.309646606 219.330154419 219.669998169 220.030349731 220.049880981 219.879959106 219.910232544 220.139724731 220.189529419 219.879959106 219.519607544 219.410232544 219.400466919 219.240310669 219.059646606 219.210037231 219.169647217 218.930389404 218.970428467 219.320037842 219.669647217 219.749725342 219.749725342 219.909881592 220.100311279 220.029998779 219.619842529 219.260467529 219.339569092 219.829803467 220.360076904 220.629608154 220.610076904 220.329772949 220.020202637 219.949890137 220.110046387 220.250183105 220.290222168 220.380065918 220.59979248 220.840026855 220.810241699 220.480163574 220.110046387 219.989929199 220.290222168 220.889831543 221.529968262 222.040222168 219.530349731 219.320388794 219.410232544 219.889724731 220.309646606 220.299880981 220.049880981 220.019607544 220.210037231 220.219802856 219.879959106 219.540115356 219.490310669 219.559646606 219.429763794 219.200271606 219.229568481 219.260467529 219.060272217 219.190155029 219.579803467 219.869842529 219.909881592 219.890350342 220.049530029 220.230194092 220.140350342 219.749725342 219.419647217 219.510467529 220.010467529 220.589569092 220.940155029 220.909881592 220.310241699 220.020202637 220.049987793 220.270202637 220.409851074 220.389831543 220.409851074 220.630065918 220.880065918 220.84979248 220.549987793 220.250183105 220.230163574 220.540222168 221.020202637 221.529968262 222.00994873 219.500076294 219.330154419 219.570388794 220.129959106 220.519607544 220.450271606 220.210037231 220.200271606 220.370193481 220.290115356 219.879959106 219.580154419 219.620193481 219.759841919 219.639724731 219.320388794 219.210037231 219.260467529 219.159881592 219.400115967 219.810272217 220.020233154 220.010467529 220.029998779 220.239959717 220.409881592 220.289764404 219.930389404 219.659881592 219.730194092 220.150115967 220.709686279 221.089569092 221.060272217 220.270202637 220.060241699 220.159851074 220.389831543 220.500183105 220.469909668 220.489929199 220.699890137 220.909851074 220.880065918 220.619812012 220.429870605 220.520202637 220.810241699 221.139831543 221.480163574 221.860046387 228.139572144 227.679611206 227.139572144 226.580001831 226.190353394 226.129806519 226.169845581 225.990158081 225.749923706 226.060470581 227.129806519 228.379806519 229.209884644 229.910079956 231.179611206 232.919845581 234.080001831 228.839691162 228.179534912 227.400238037 226.749847412 226.410003662 226.230316162 225.919769287 225.390472412 224.980316162 225.150238037 226.039886475 227.150238037 227.9402771 228.400238037 228.999847412 229.9402771 230.7996521 230.119613647 229.619613647 229.079574585 228.539535522 228.060043335 227.670394897 227.350082397 226.949691772 226.590316772 226.65965271 227.270004272 228.06980896 228.670394897 229.199691772 230.000473022 231.06980896 231.970199585 228.490158081 227.839767456 227.280197144 226.889572144 226.679611206 226.589767456 226.400314331 225.990158081 225.610275269 225.860275269 226.919845581 228.270431519 229.270431519 230.049728394 231.280197144 233.060470581 234.469650269 228.9402771 228.1902771 227.469573975 227.009613037 226.770355225 226.5496521 226.1199646 225.499847412 224.950042725 224.950042725 225.719573975 226.9402771 227.999847412 228.6199646 229.160003662 230.03012085 231.060394287 230.250473022 229.72996521 229.270004272 228.840316772 228.329574585 227.869613647 227.46043396 227.000473022 226.529769897 226.470199585 227.079574585 228.029769897 228.80027771 229.359848022 230.079574585 231.100082397 232.060043335 228.160079956 227.379806519 226.900314331 226.740158081 226.709884644 226.610275269 226.349533081 225.889572144 225.509689331 225.719650269 226.740158081 228.190353394 229.389572144 230.249923706 231.330001831 232.969650269 234.549728394 228.499847412 227.719573975 227.150238037 226.810394287 226.579925537 226.329925537 225.9402771 225.429534912 224.950042725 224.890472412 225.60043335 226.9402771 228.219573975 228.929534912 229.320159912 230.0496521 231.230316162 230.06980896 229.56980896 229.199691772 228.810043335 228.270004272 227.750473022 227.340316772 226.899887085 226.40965271 226.31980896 226.97996521 228.079574585 229.020004272 229.590316772 230.14012146 230.970199585 231.869613647 227.469650269 226.660079956 226.230392456 226.150314331 226.160079956 226.099533081 225.950119019 225.759689331 225.700119019 226.089767456 227.099533081 228.450119019 229.580001831 230.289962769 231.110275269 232.539962769 234.169845581 227.85043335 227.110198975 226.579925537 226.20980835 225.919769287 225.660003662 225.469573975 225.329925537 225.240081787 225.410003662 226.160003662 227.429534912 228.589691162 229.129730225 229.320159912 229.929534912 231.1902771 229.72996521 229.239730835 228.869613647 228.449691772 227.899887085 227.40965271 227.090316772 226.81980896 226.579574585 226.699691772 227.449691772 228.539535522 229.359848022 229.760238647 230.119613647 230.750473022 231.520004272 227.700119019 226.950119019 226.450119019 226.219650269 226.120040894 226.020431519 225.980392456 226.120040894 226.499923706 227.179611206 228.139572144 229.120040894 229.770431519 230.120040894 230.719650269 231.999923706 233.599533081 228.070159912 227.419769287 226.839691162 226.320159912 225.8699646 225.589691162 225.579925537 225.820159912 226.20980835 226.749847412 227.499847412 228.379730225 228.990081787 229.129730225 229.160003662 229.730316162 230.95980835 229.89012146 229.430160522 228.989730835 228.510238647 227.989730835 227.539535522 227.289535522 227.239730835 227.380355835 227.869613647 228.689926147 229.449691772 229.770004272 229.81980896 230.020004272 230.560043335 231.180160522 229.480392456 228.870040894 228.230392456 227.759689331 227.440353394 227.150314331 226.980392456 227.120040894 227.639572144 228.429611206 229.200119019 229.650314331 229.749923706 229.830001831 230.419845581 231.709884644 233.169845581 229.640472412 229.150238037 228.499847412 227.820159912 227.240081787 226.85043335 226.759613037 227.009613037 227.579925537 228.270355225 228.85043335 229.160003662 229.089691162 228.890472412 228.929534912 229.6199646 230.740081787 230.939926147 230.560043335 230.090316772 229.590316772 229.100082397 228.619613647 228.260238647 228.170394897 228.500473022 229.220199585 229.939926147 230.199691772 229.949691772 229.689926147 229.899887085 230.470199585 230.96043396 231.770431519 231.289962769 230.610275269 229.990158081 229.480392456 228.929611206 228.370040894 228.089767456 228.299728394 228.879806519 229.419845581 229.580001831 229.469650269 229.610275269 230.419845581 231.749923706 232.929611206 231.640472412 231.289886475 230.660003662 229.929534912 229.259613037 228.6902771 228.259613037 228.1199646 228.379730225 228.890472412 229.259613037 229.169769287 228.7996521 228.589691162 228.900238037 229.669769287 230.539886475 232.30027771 232.039535522 231.64012146 231.199691772 230.699691772 230.06980896 229.399887085 228.989730835 229.130355835 229.72996521 230.260238647 230.199691772 229.720199585 229.47996521 229.850082397 230.500473022 230.850082397 232.950119019 232.549728394 231.980392456 231.419845581 230.830001831 230.089767456 229.179611206 228.419845581 228.150314331 228.419845581 228.870040894 229.129806519 229.259689331 229.690353394 230.669845581 231.860275269 232.629806519 232.669769287 232.379730225 231.860198975 231.230316162 230.570159912 229.839691162 229.0496521 228.429534912 228.230316162 228.450042725 228.730316162 228.730316162 228.579925537 228.669769287 229.20980835 229.910003662 230.410003662 233.020004272 232.869613647 232.600082397 232.22996521 231.699691772 230.939926147 230.000473022 229.220199585 228.97996521 229.289535522 229.699691772 229.739730835 229.520004272 229.55027771 230.090316772 230.670394897 230.789535522 232.709884644 232.330001831 231.980392456 231.549728394 230.990158081 230.249923706 229.349533081 228.459884644 227.929611206 227.990158081 228.490158081 229.060470581 229.520431519 230.070236206 230.889572144 231.730392456 232.139572144 232.480316162 232.169769287 231.820159912 231.329925537 230.70980835 229.969573975 229.140472412 228.339691162 227.879730225 227.9402771 228.339691162 228.719573975 228.969573975 229.289886475 229.770355225 230.200042725 230.320159912 232.90965271 232.779769897 232.619613647 232.289535522 231.770004272 231.020004272 230.119613647 229.250473022 228.760238647 228.859848022 229.310043335 229.699691772 229.899887085 230.149887085 230.600082397 230.930160522 230.81980896 232.219650269 231.830001831 231.549728394 231.120040894 230.599533081 230.089767456 229.580001831 228.969650269 228.419845581 228.299728394 228.799728394 229.539962769 230.060470581 230.370040894 230.789962769 231.289962769 231.599533081 232.10043335 231.70980835 231.400238037 230.950042725 230.390472412 229.85043335 229.310394287 228.740081787 228.270355225 228.230316162 228.70980835 229.339691162 229.78012085 229.999847412 230.179534912 230.339691162 230.320159912 232.680160522 232.47996521 232.289535522 231.920394897 231.439926147 230.930160522 230.359848022 229.72996521 229.22996521 229.199691772 229.699691772 230.329574585 230.71043396 230.89012146 231.079574585 231.170394897 230.930160522 232.509689331 231.990158081 231.499923706 230.879806519 230.370040894 230.200119019 230.219650269 229.990158081 229.400314331 228.990158081 229.219650269 229.849533081 230.259689331 230.289962769 230.389572144 230.810470581 231.259689331 232.35043335 231.820159912 231.35043335 230.789886475 230.259613037 230.009613037 229.95980835 229.730316162 229.270355225 228.95980835 229.1902771 229.770355225 230.140472412 230.160003662 230.129730225 230.249847412 230.35043335 232.920394897 232.56980896 232.199691772 231.72996521 231.30027771 231.079574585 230.96043396 230.670394897 230.21043396 230.000473022 230.270004272 230.80027771 231.109848022 231.149887085 231.180160522 231.250473022 231.05027771 233.150314331 232.520431519 231.770431519 230.980392456 230.520431519 230.650314331 231.049728394 230.980392456 230.169845581 229.270431519 229.049728394 229.490158081 229.879806519 229.959884644 230.089767456 230.599533081 231.139572144 232.839691162 232.249847412 231.6199646 230.900238037 230.400238037 230.419769287 230.770355225 230.789886475 230.140472412 229.2996521 229.020355225 229.329925537 229.719573975 229.810394287 229.860198975 230.079925537 230.289886475 233.340316772 232.90965271 232.380355835 231.81980896 231.449691772 231.46043396 231.680160522 231.630355835 231.090316772 230.449691772 230.220199585 230.420394897 230.670394897 230.81980896 230.989730835 231.189926147 231.06980896 233.009689331 232.570236206 231.959884644 231.360275269 231.070236206 231.339767456 231.810470581 231.709884644 230.650314331 229.280197144 228.610275269 228.889572144 229.480392456 229.889572144 230.230392456 230.690353394 231.039962769 232.6199646 232.270355225 231.820159912 231.219573975 230.810394287 230.969573975 231.53012085 231.640472412 230.740081787 229.339691162 228.490081787 228.610198975 229.20980835 229.6902771 229.929534912 230.079925537 230.110198975 233.260238647 232.97996521 232.609848022 232.15965271 231.859848022 231.96043396 232.31980896 232.380355835 231.699691772 230.590316772 229.789535522 229.720199585 230.130355835 230.609848022 231.000473022 231.170394897 230.970199585 231.589767456 231.740158081 231.849533081 231.849533081 231.830001831 232.020431519 232.330001831 232.179611206 231.129806519 229.650314331 228.740158081 228.900314331 229.650314331 230.339767456 230.730392456 230.900314331 230.879806519 231.240081787 231.520355225 231.730316162 231.60043335 231.3699646 231.53012085 232.070159912 232.240081787 231.320159912 229.70980835 228.589691162 228.660003662 229.480316162 230.249847412 230.509613037 230.2996521 229.919769287 232.359848022 232.560043335 232.71043396 232.600082397 232.369613647 232.420394897 232.80027771 232.930160522 232.239730835 230.930160522 229.899887085 229.789535522 230.420394897 231.119613647 231.399887085 231.250473022 230.850082397 229.520431519 230.289962769 231.219650269 231.810470581 231.929611206 231.889572144 231.999923706 231.959884644 231.310470581 230.219650269 229.469650269 229.589767456 230.299728394 230.950119019 231.179611206 231.060470581 230.870040894 229.270355225 230.160003662 231.110198975 231.499847412 231.379730225 231.410003662 231.85043335 232.110198975 231.499847412 230.28012085 229.4402771 229.570159912 230.360198975 231.03012085 231.089691162 230.60043335 230.009613037 231.05027771 231.739730835 232.439926147 232.649887085 232.420394897 232.329574585 232.609848022 232.829574585 232.39012146 231.40965271 230.699691772 230.810043335 231.47996521 231.949691772 231.81980896 231.30027771 230.89012146 227.999923706 228.839767456 229.870040894 230.490158081 230.469650269 230.240158081 230.270431519 230.480392456 230.459884644 230.139572144 229.999923706 230.299728394 230.839767456 231.200119019 231.280197144 231.200119019 231.240158081 227.820159912 228.740081787 229.7996521 230.240081787 230.070159912 229.950042725 230.249847412 230.60043335 230.520355225 230.1902771 230.129730225 230.499847412 230.990081787 231.240081787 231.140472412 230.7996521 230.539886475 230.020004272 230.810043335 231.579574585 231.739730835 231.380355835 231.130355835 231.289535522 231.55027771 231.520004272 231.310043335 231.39012146 231.880355835 232.329574585 232.289535522 231.760238647 231.239730835 231.170394897 227.940353394 228.129806519 228.339767456 228.270431519 227.940353394 227.700119019 227.839767456 228.249923706 228.669845581 229.150314331 229.820236206 230.539962769 230.950119019 231.039962769 231.120040894 231.419845581 231.860275269 227.759613037 228.03012085 228.320159912 228.179534912 227.789886475 227.629730225 227.8699646 228.20980835 228.560394287 229.160003662 230.070159912 230.810394287 230.95980835 230.78012085 230.749847412 230.980316162 231.270355225 229.869613647 230.250473022 230.46043396 230.149887085 229.55027771 229.22996521 229.289535522 229.500473022 229.789535522 230.40965271 231.380355835 232.199691772 232.329574585 231.829574585 231.30027771 231.220199585 231.56980896 229.289962769 228.629806519 227.660079956 226.679611206 226.070236206 225.999923706 226.289962769 226.639572144 227.089767456 227.969650269 229.270431519 230.389572144 230.789962769 230.719650269 230.950119019 231.650314331 232.249923706 229.060394287 228.53012085 227.70980835 226.749847412 226.089691162 226.039886475 226.28012085 226.45980835 226.829925537 227.919769287 229.520355225 230.570159912 230.560394287 230.179534912 230.379730225 231.129730225 231.669769287 230.680160522 230.47996521 229.89012146 228.970199585 228.21043396 227.939926147 227.939926147 227.939926147 228.279769897 229.359848022 230.89012146 231.850082397 231.720199585 231.090316772 230.899887085 231.350082397 231.80027771 230.959884644 229.900314331 228.200119019 226.650314331 225.919845581 225.980392456 226.310470581 226.389572144 226.509689331 227.280197144 228.740158081 230.020431519 230.440353394 230.389572144 230.799728394 231.669845581 232.080001831 230.700042725 229.789886475 228.270355225 226.740081787 225.9402771 225.969573975 226.200042725 226.110198975 226.160003662 227.150238037 228.860198975 230.039886475 230.089691162 229.829925537 230.240081787 231.1199646 231.3699646 231.760238647 231.30027771 230.220199585 228.920394897 228.109848022 227.930160522 227.869613647 227.600082397 227.699691772 228.760238647 230.310043335 231.199691772 231.010238647 230.579574585 230.829574585 231.510238647 231.600082397 231.480392456 230.570236206 228.940353394 227.400314331 226.639572144 226.669845581 226.870040894 226.740158081 226.530197144 226.950119019 228.139572144 229.320236206 229.830001831 229.990158081 230.580001831 231.440353394 231.530197144 231.259613037 230.539886475 229.03012085 227.429534912 226.539886475 226.5496521 226.740081787 226.45980835 226.140472412 226.6902771 228.039886475 229.169769287 229.469573975 229.560394287 230.140472412 230.810394287 230.539886475 232.15965271 231.779769897 230.699691772 229.430160522 228.670394897 228.47996521 228.31980896 227.859848022 227.670394897 228.39012146 229.609848022 230.340316772 230.310043335 230.279769897 230.850082397 231.439926147 231.079574585 230.370040894 229.820236206 228.730392456 227.570236206 226.870040894 226.749923706 226.839767456 226.730392456 226.469650269 226.599533081 227.370040894 228.360275269 229.049728394 229.560470581 230.339767456 231.139572144 231.080001831 230.310394287 229.929534912 228.890472412 227.579925537 226.719573975 226.610198975 226.730316162 226.480316162 226.0496521 226.179534912 227.039886475 228.009613037 228.610198975 229.1199646 229.839691162 230.2996521 229.7996521 231.46043396 231.250473022 230.47996521 229.47996521 228.810043335 228.579574585 228.329574585 227.850082397 227.55027771 227.90965271 228.699691772 229.289535522 229.520004272 229.899887085 230.609848022 231.05027771 230.590316772 228.669845581 228.299728394 227.719650269 227.039962769 226.490158081 226.299728394 226.389572144 226.450119019 226.339767456 226.320236206 226.740158081 227.539962769 228.429611206 229.310470581 230.249923706 230.980392456 230.959884644 228.78012085 228.579925537 228.009613037 227.10043335 226.360198975 226.179534912 226.2996521 226.219573975 225.910003662 225.85043335 226.2996521 227.060394287 227.829925537 228.640472412 229.45980835 229.879730225 229.570159912 230.289535522 230.14012146 229.670394897 229.000473022 228.46043396 228.180160522 227.939926147 227.590316772 227.369613647 227.520004272 227.930160522 228.350082397 228.779769897 229.399887085 230.119613647 230.510238647 230.380355835 227.810470581 227.419845581 227.070236206 226.679611206 226.349533081 226.230392456 226.330001831 226.469650269 226.459884644 226.370040894 226.530197144 227.190353394 228.209884644 229.349533081 230.360275269 230.999923706 231.039962769 227.999847412 227.789886475 227.4402771 226.820159912 226.249847412 226.060394287 226.160003662 226.200042725 226.0496521 225.950042725 226.150238037 226.669769287 227.4402771 228.35043335 229.200042725 229.6902771 229.740081787 229.649887085 229.449691772 229.119613647 228.65965271 228.260238647 227.989730835 227.770004272 227.56980896 227.47996521 227.529769897 227.649887085 227.859848022 228.310043335 228.970199585 229.630355835 230.090316772 230.39012146 228.129806519 227.639572144 227.190353394 226.860275269 226.700119019 226.669845581 226.690353394 226.709884644 226.669845581 226.570236206 226.629806519 227.160079956 228.230392456 229.520431519 230.589767456 231.139572144 231.150314331 228.270355225 227.969573975 227.570159912 227.020355225 226.539886475 226.329925537 226.329925537 226.339691162 226.270355225 226.230316162 226.320159912 226.679534912 227.379730225 228.2996521 229.140472412 229.679534912 229.969573975 229.81980896 229.55027771 229.170394897 228.779769897 228.46043396 228.180160522 227.89012146 227.689926147 227.689926147 227.739730835 227.720199585 227.770004272 228.149887085 228.789535522 229.420394897 229.930160522 230.47996521 228.740158081 228.160079956 227.469650269 227.009689331 226.910079956 226.919845581 226.789962769 226.639572144 226.610275269 226.639572144 226.730392456 227.160079956 228.200119019 229.620040894 230.820236206 231.360275269 231.280197144 228.759613037 228.400238037 227.839691162 227.179534912 226.6902771 226.419769287 226.259613037 226.160003662 226.1902771 226.289886475 226.410003662 226.719573975 227.410003662 228.3699646 229.230316162 229.770355225 230.1199646 230.189926147 229.869613647 229.359848022 228.899887085 228.590316772 228.270004272 227.829574585 227.55027771 227.600082397 227.750473022 227.760238647 227.80027771 228.170394897 228.840316772 229.47996521 230.010238647 230.55027771 228.839767456 228.209884644 227.339767456 226.759689331 226.679611206 226.690353394 226.490158081 226.320236206 226.429611206 226.669845581 226.810470581 227.120040894 228.089767456 229.610275269 230.980392456 231.620040894 231.530197144 228.78012085 228.400238037 227.719573975 226.999847412 226.509613037 226.179534912 225.890472412 225.78012085 225.9402771 226.20980835 226.410003662 226.719573975 227.450042725 228.499847412 229.400238037 229.929534912 230.2996521 230.220199585 229.859848022 229.260238647 228.739730835 228.430160522 228.060043335 227.529769897 227.189926147 227.289535522 227.579574585 227.720199585 227.829574585 228.260238647 228.970199585 229.649887085 230.189926147 230.65965271 228.520431519 227.910079956 227.060470581 226.520431519 226.459884644 226.480392456 226.299728394 226.249923706 226.530197144 226.849533081 226.919845581 227.110275269 227.999923706 229.549728394 231.039962769 231.849533081 231.900314331 228.499847412 228.1199646 227.499847412 226.8699646 226.419769287 226.070159912 225.759613037 225.700042725 225.980316162 226.320159912 226.499847412 226.759613037 227.499847412 228.579925537 229.53012085 230.150238037 230.650238037 229.970199585 229.65965271 229.090316772 228.590316772 228.30027771 227.930160522 227.399887085 227.060043335 227.199691772 227.539535522 227.739730835 227.899887085 228.340316772 229.039535522 229.72996521 230.31980896 230.810043335 228.370040894 227.820236206 227.120040894 226.650314331 226.560470581 226.530197144 226.440353394 226.499923706 226.789962769 226.990158081 226.929611206 227.099533081 228.009689331 229.520431519 230.999923706 231.980392456 232.330001831 228.410003662 228.060394287 227.560394287 227.0496521 226.629730225 226.249847412 225.950042725 225.950042725 226.240081787 226.480316162 226.560394287 226.78012085 227.499847412 228.5496521 229.539886475 230.390472412 231.179534912 229.869613647 229.680160522 229.22996521 228.750473022 228.420394897 228.039535522 227.539535522 227.22996521 227.329574585 227.590316772 227.739730835 227.90965271 228.340316772 228.97996521 229.670394897 230.380355835 230.989730835 228.480392456 228.009689331 227.410079956 226.919845581 226.669845581 226.539962769 226.499923706 226.620040894 226.799728394 226.789962769 226.709884644 227.089767456 228.179611206 229.599533081 230.950119019 232.080001831 232.780197144 228.570159912 228.219573975 227.749847412 227.219573975 226.740081787 226.320159912 226.070159912 226.1199646 226.320159912 226.419769287 226.419769287 226.719573975 227.490081787 228.499847412 229.509613037 230.669769287 231.839691162 229.970199585 229.880355835 229.520004272 229.000473022 228.539535522 228.090316772 227.619613647 227.31980896 227.31980896 227.449691772 227.579574585 227.810043335 228.30027771 228.939926147 229.649887085 230.510238647 231.270004272 228.539962769 228.080001831 227.499923706 226.940353394 226.539962769 226.330001831 226.330001831 226.490158081 226.560470581 226.429611206 226.490158081 227.219650269 228.490158081 229.759689331 230.889572144 232.099533081 233.089767456 228.660003662 228.240081787 227.669769287 227.0496521 226.499847412 226.10043335 225.980316162 226.10043335 226.230316162 226.200042725 226.249847412 226.740081787 227.629730225 228.610198975 229.640472412 231.020355225 232.480316162 230.020004272 229.949691772 229.579574585 229.000473022 228.420394897 227.939926147 227.520004272 227.21043396 227.100082397 227.15965271 227.369613647 227.770004272 228.39012146 229.079574585 229.859848022 230.80027771 231.619613647 228.410079956 227.950119019 227.379806519 226.820236206 226.410079956 226.230392456 226.289962769 226.450119019 226.450119019 226.320236206 226.560470581 227.490158081 228.770431519 229.820236206 230.730392456 231.870040894 232.919845581 228.560394287 228.020355225 227.379730225 226.749847412 226.240081787 225.980316162 226.009613037 226.20980835 226.310394287 226.240081787 226.360198975 226.990081787 227.969573975 228.919769287 229.910003662 231.28012085 232.810394287 229.920394897 229.80027771 229.420394897 228.840316772 228.30027771 227.89012146 227.520004272 227.189926147 227.000473022 227.06980896 227.380355835 227.930160522 228.630355835 229.369613647 230.170394897 231.090316772 231.81980896 228.320236206 227.820236206 227.310470581 226.879806519 226.589767456 226.459884644 226.499923706 226.589767456 226.570236206 226.499923706 226.799728394 227.679611206 228.789962769 229.660079956 230.419845581 231.349533081 232.169845581 228.429534912 227.829925537 227.20980835 226.669769287 226.289886475 226.140472412 226.240081787 226.469573975 226.570159912 226.499847412 226.629730225 227.249847412 228.230316162 229.179534912 230.110198975 231.28012085 232.570159912 229.840316772 229.65965271 229.31980896 228.829574585 228.40965271 228.090316772 227.739730835 227.350082397 227.100082397 227.189926147 227.56980896 228.109848022 228.760238647 229.47996521 230.270004272 231.039535522 231.579574585 228.349533081 227.820236206 227.349533081 227.009689331 226.810470581 226.700119019 226.639572144 226.629806519 226.610275269 226.620040894 226.889572144 227.599533081 228.560470581 229.450119019 230.219650269 230.870040894 231.200119019 228.400238037 227.810394287 227.259613037 226.789886475 226.429534912 226.259613037 226.329925537 226.5496521 226.679534912 226.660003662 226.740081787 227.230316162 228.129730225 229.169769287 230.140472412 231.039886475 231.890472412 229.859848022 229.65965271 229.369613647 228.97996521 228.609848022 228.289535522 227.869613647 227.40965271 227.15965271 227.279769897 227.619613647 228.020004272 228.520004272 229.21043396 230.000473022 230.600082397 230.949691772 228.360275269 227.820236206 227.299728394 226.950119019 226.770431519 226.650314331 226.520431519 226.450119019 226.459884644 226.580001831 226.849533081 227.450119019 228.389572144 229.490158081 230.410079956 230.770431519 230.530197144 228.379730225 227.85043335 227.310394287 226.770355225 226.339691162 226.110198975 226.160003662 226.400238037 226.610198975 226.650238037 226.679534912 226.999847412 227.820159912 228.999847412 230.140472412 230.910003662 231.339691162 229.869613647 229.670394897 229.430160522 229.039535522 228.619613647 228.22996521 227.779769897 227.310043335 227.100082397 227.22996521 227.500473022 227.72996521 228.109848022 228.789535522 229.600082397 230.149887085 230.39012146 228.259689331 227.709884644 227.129806519 226.719650269 226.580001831 226.560470581 226.480392456 226.379806519 226.410079956 226.589767456 226.889572144 227.450119019 228.450119019 229.789962769 230.900314331 231.099533081 230.440353394 228.320159912 227.8699646 227.2996521 226.660003662 226.179534912 226.020355225 226.150238037 226.410003662 226.640472412 226.70980835 226.70980835 226.910003662 227.6199646 228.879730225 230.249847412 231.10043335 231.379730225 229.770004272 229.609848022 229.380355835 228.970199585 228.520004272 228.130355835 227.739730835 227.359848022 227.149887085 227.270004272 227.470199585 227.600082397 227.89012146 228.579574585 229.449691772 230.060043335 230.369613647 228.150314331 227.629806519 227.030197144 226.620040894 226.589767456 226.730392456 226.719650269 226.560470581 226.509689331 226.690353394 227.030197144 227.549728394 228.539962769 230.030197144 231.370040894 231.679611206 230.910079956 228.28012085 227.910003662 227.320159912 226.660003662 226.270355225 226.270355225 226.490081787 226.660003662 226.759613037 226.820159912 226.8699646 227.020355225 227.589691162 228.839691162 230.429534912 231.610198975 232.039886475 229.71043396 229.560043335 229.329574585 228.930160522 228.529769897 228.250473022 227.96043396 227.600082397 227.340316772 227.380355835 227.560043335 227.689926147 227.939926147 228.600082397 229.560043335 230.380355835 230.949691772 228.150314331 227.660079956 227.070236206 226.679611206 226.730392456 226.929611206 226.900314331 226.610275269 226.480392456 226.700119019 227.080001831 227.539962769 228.429611206 230.020431519 231.759689331 232.549728394 232.009689331 228.310394287 227.95980835 227.400238037 226.820159912 226.560394287 226.6199646 226.730316162 226.669769287 226.629730225 226.749847412 226.95980835 227.129730225 227.60043335 228.7996521 230.660003662 232.320159912 233.070159912 229.789535522 229.609848022 229.31980896 228.920394897 228.579574585 228.369613647 228.109848022 227.689926147 227.340316772 227.329574585 227.56980896 227.750473022 228.010238647 228.670394897 229.789535522 230.97996521 231.899887085 228.190353394 227.719650269 227.139572144 226.740158081 226.719650269 226.830001831 226.679611206 226.360275269 226.320236206 226.679611206 227.120040894 227.469650269 228.200119019 229.950119019 232.320236206 233.940353394 233.870040894 228.2996521 227.929534912 227.450042725 226.990081787 226.740081787 226.660003662 226.509613037 226.28012085 226.28012085 226.640472412 227.0496521 227.230316162 227.570159912 228.810394287 231.020355225 233.200042725 234.259613037 229.90965271 229.670394897 229.289535522 228.829574585 228.46043396 228.220199585 227.90965271 227.46043396 227.15965271 227.239730835 227.55027771 227.750473022 227.949691772 228.630355835 230.020004272 231.699691772 233.000473022 228.169845581 227.730392456 227.200119019 226.770431519 226.599533081 226.549728394 226.370040894 226.230392456 226.450119019 227.009689331 227.450119019 227.570236206 228.089767456 229.919845581 232.910079956 235.480392456 236.099533081 228.1902771 227.85043335 227.480316162 227.1199646 226.7996521 226.480316162 226.169769287 226.03012085 226.339691162 227.009613037 227.499847412 227.499847412 227.6199646 228.890472412 231.45980835 234.10043335 235.360198975 229.920394897 229.64012146 229.21043396 228.699691772 228.250473022 227.930160522 227.619613647 227.340316772 227.289535522 227.56980896 227.869613647 227.899887085 227.920394897 228.579574585 230.220199585 232.340316772 233.96043396 228.139572144 227.789962769 227.330001831 226.860275269 226.580001831 226.459884644 226.429611206 226.599533081 227.089767456 227.719650269 228.009689331 227.870040894 228.089767456 229.719650269 232.860275269 236.070236206 237.480392456 228.1199646 227.85043335 227.589691162 227.270355225 226.890472412 226.499847412 226.240081787 226.3699646 227.020355225 227.85043335 228.219573975 227.929534912 227.770355225 228.900238037 231.560394287 234.4402771 235.910003662 229.850082397 229.619613647 229.21043396 228.680160522 228.180160522 227.840316772 227.64012146 227.65965271 227.949691772 228.369613647 228.539535522 228.289535522 228.05027771 228.590316772 230.279769897 232.560043335 234.399887085 228.240158081 227.929611206 227.480392456 226.980392456 226.660079956 226.589767456 226.749923706 227.120040894 227.639572144 228.120040894 228.249923706 228.049728394 228.070236206 229.179611206 231.730392456 234.870040894 236.959884644 228.240081787 227.990081787 227.730316162 227.390472412 227.020355225 226.740081787 226.669769287 226.950042725 227.589691162 228.270355225 228.490081787 228.150238037 227.890472412 228.740081787 230.999847412 233.70980835 235.379730225 229.89012146 229.71043396 229.31980896 228.779769897 228.279769897 227.96043396 227.880355835 228.079574585 228.510238647 228.89012146 228.90965271 228.529769897 228.250473022 228.649887085 230.039535522 232.05027771 233.880355835 228.440353394 228.030197144 227.469650269 226.940353394 226.679611206 226.690353394 226.889572144 227.150314331 227.419845581 227.639572144 227.780197144 227.889572144 228.049728394 228.610275269 230.049728394 232.429611206 234.770431519 228.480316162 228.140472412 227.759613037 227.339691162 227.039886475 226.950042725 226.969573975 227.089691162 227.289886475 227.570159912 227.820159912 227.900238037 227.990081787 228.560394287 229.999847412 232.070159912 233.7996521 230.06980896 229.859848022 229.420394897 228.869613647 228.399887085 228.090316772 227.930160522 227.97996521 228.199691772 228.40965271 228.420394897 228.31980896 228.369613647 228.789535522 229.649887085 230.970199585 232.489730835 228.570236206 228.009689331 227.330001831 226.839767456 226.700119019 226.740158081 226.749923706 226.700119019 226.620040894 226.620040894 226.919845581 227.570236206 228.200119019 228.520431519 228.929611206 230.240158081 232.339767456 228.6199646 228.20980835 227.679534912 227.20980835 227.009613037 227.020355225 226.999847412 226.770355225 226.419769287 226.270355225 226.629730225 227.390472412 228.110198975 228.579925537 229.160003662 230.35043335 231.900238037 230.22996521 229.96043396 229.449691772 228.920394897 228.510238647 228.170394897 227.760238647 227.420394897 227.270004272 227.289535522 227.46043396 227.840316772 228.46043396 229.05027771 229.430160522 229.939926147 230.939926147 228.570236206 227.929611206 227.259689331 226.929611206 226.950119019 226.919845581 226.639572144 226.310470581 226.110275269 226.099533081 226.469650269 227.400314331 228.440353394 228.849533081 228.780197144 229.330001831 230.969650269 228.610198975 228.219573975 227.700042725 227.249847412 227.060394287 227.03012085 226.919769287 226.570159912 226.039886475 225.669769287 225.950042725 227.009613037 228.179534912 228.719573975 228.78012085 229.28012085 230.53012085 230.239730835 229.949691772 229.489730835 229.060043335 228.739730835 228.310043335 227.64012146 227.000473022 226.689926147 226.720199585 226.989730835 227.609848022 228.55027771 229.30027771 229.439926147 229.40965271 229.949691772 228.560470581 227.959884644 227.400314331 227.249923706 227.330001831 227.129806519 226.639572144 226.339767456 226.450119019 226.650314331 226.900314331 227.530197144 228.480392456 229.030197144 229.030197144 229.410079956 230.740158081 228.5496521 228.259613037 227.85043335 227.450042725 227.150238037 226.9402771 226.829925537 226.810394287 226.700042725 226.379730225 226.289886475 226.910003662 227.969573975 228.589691162 228.589691162 228.879730225 229.980316162 230.15965271 229.939926147 229.609848022 229.31980896 229.020004272 228.46043396 227.65965271 227.06980896 227.039535522 227.289535522 227.47996521 227.80027771 228.510238647 229.220199585 229.399887085 229.310043335 229.699691772 228.719650269 228.120040894 227.620040894 227.499923706 227.499923706 227.139572144 226.610275269 226.620040894 227.280197144 227.810470581 227.810470581 227.820236206 228.270431519 228.780197144 229.030197144 229.599533081 230.950119019 228.629730225 228.310394287 227.910003662 227.499847412 227.0496521 226.660003662 226.629730225 227.169769287 227.789886475 227.749847412 227.169769287 226.95980835 227.509613037 228.129730225 228.320159912 228.749847412 229.9402771 230.15965271 229.989730835 229.760238647 229.489730835 229.100082397 228.430160522 227.670394897 227.40965271 227.869613647 228.420394897 228.40965271 228.109848022 228.239730835 228.779769897 229.149887085 229.30027771 229.80027771 229.089767456 228.360275269 227.749923706 227.499923706 227.389572144 227.020431519 226.620040894 226.919845581 227.879806519 228.570236206 228.410079956 227.999923706 228.080001831 228.469650269 228.830001831 229.580001831 231.049728394 228.879730225 228.289886475 227.730316162 227.270355225 226.829925537 226.4402771 226.53012085 227.390472412 228.450042725 228.60043335 227.730316162 226.969573975 227.160003662 227.789886475 228.129730225 228.650238037 229.9402771 230.340316772 230.100082397 229.840316772 229.47996521 228.989730835 228.329574585 227.739730835 227.760238647 228.46043396 229.079574585 228.859848022 228.149887085 227.930160522 228.39012146 228.939926147 229.279769897 229.850082397 229.520431519 228.570236206 227.810470581 227.429611206 227.360275269 227.219650269 227.049728394 227.280197144 227.950119019 228.370040894 228.169845581 227.910079956 228.129806519 228.589767456 228.969650269 229.669845581 231.060470581 229.179534912 228.230316162 227.450042725 226.999847412 226.810394287 226.719573975 226.8699646 227.5496521 228.360198975 228.400238037 227.570159912 226.900238037 227.230316162 227.990081787 228.360198975 228.6902771 229.810394287 230.619613647 230.220199585 229.829574585 229.369613647 228.949691772 228.539535522 228.170394897 228.14012146 228.539535522 228.850082397 228.529769897 227.930160522 227.880355835 228.500473022 229.119613647 229.399887085 229.770004272 229.849533081 228.780197144 227.919845581 227.480392456 227.549728394 227.780197144 227.810470581 227.740158081 227.679611206 227.539962769 227.379806519 227.620040894 228.360275269 229.099533081 229.509689331 230.070236206 231.209884644 229.469573975 228.28012085 227.329925537 226.890472412 227.03012085 227.339691162 227.5496521 227.740081787 227.890472412 227.640472412 227.039886475 226.890472412 227.650238037 228.60043335 228.900238037 228.9402771 229.6199646 230.869613647 230.310043335 229.770004272 229.310043335 229.090316772 229.020004272 228.850082397 228.560043335 228.350082397 228.170394897 227.90965271 227.779769897 228.21043396 229.05027771 229.64012146 229.699691772 229.699691772 230.110275269 229.039962769 228.099533081 227.570236206 227.669845581 228.120040894 228.320236206 228.009689331 227.410079956 226.879806519 226.810470581 227.450119019 228.570236206 229.499923706 229.999923706 230.530197144 231.419845581 229.749847412 228.560394287 227.450042725 226.890472412 227.10043335 227.660003662 227.929534912 227.78012085 227.4402771 227.0496521 226.7996521 227.089691162 228.060394287 229.020355225 229.2996521 229.230316162 229.53012085 231.06980896 230.369613647 229.750473022 229.279769897 229.149887085 229.260238647 229.180160522 228.71043396 228.100082397 227.680160522 227.609848022 227.930160522 228.65965271 229.510238647 230.000473022 229.96043396 229.72996521 230.499923706 229.440353394 228.389572144 227.620040894 227.480392456 227.830001831 228.070236206 227.820236206 227.249923706 226.810470581 226.900314331 227.629806519 228.639572144 229.469650269 230.039962769 230.700119019 231.549728394 230.160003662 229.03012085 227.810394287 226.950042725 226.860198975 227.329925537 227.629730225 227.469573975 227.1199646 226.919769287 227.009613037 227.469573975 228.230316162 228.950042725 229.259613037 229.360198975 229.60043335 231.289535522 230.539535522 229.869613647 229.30027771 229.000473022 228.939926147 228.810043335 228.380355835 227.869613647 227.590316772 227.739730835 228.239730835 228.899887085 229.510238647 229.89012146 229.970199585 229.840316772 231.070236206 229.980392456 228.799728394 227.759689331 227.240158081 227.289962769 227.450119019 227.370040894 227.150314331 227.080001831 227.360275269 227.950119019 228.610275269 229.190353394 229.759689331 230.610275269 231.549728394 230.650238037 229.579925537 228.320159912 227.160003662 226.669769287 226.839691162 227.089691162 227.03012085 226.85043335 226.910003662 227.259613037 227.730316162 228.200042725 228.610198975 228.95980835 229.3699646 229.810394287 231.630355835 230.859848022 230.15965271 229.470199585 228.850082397 228.420394897 228.14012146 227.880355835 227.670394897 227.649887085 227.930160522 228.380355835 228.829574585 229.189926147 229.529769897 229.81980896 229.97996521 231.549728394 230.410079956 229.179611206 228.030197144 227.320236206 227.150314331 227.190353394 227.169845581 227.120040894 227.259689331 227.620040894 228.110275269 228.589767456 229.049728394 229.629806519 230.509689331 231.490158081 230.969573975 229.950042725 228.759613037 227.53012085 226.810394287 226.7996521 226.999847412 226.919769287 226.669769287 226.679534912 227.089691162 227.650238037 228.10043335 228.450042725 228.829925537 229.429534912 230.039886475 231.949691772 231.180160522 230.489730835 229.71043396 228.899887085 228.260238647 227.90965271 227.739730835 227.64012146 227.64012146 227.840316772 228.21043396 228.630355835 229.010238647 229.39012146 229.779769897 230.090316772 231.539962769 230.419845581 229.200119019 228.110275269 227.520431519 227.480392456 227.580001831 227.469650269 227.259689331 227.259689331 227.570236206 228.089767456 228.679611206 229.259689331 229.870040894 230.589767456 231.410079956 230.7996521 229.890472412 228.85043335 227.719573975 227.060394287 227.160003662 227.480316162 227.2996521 226.719573975 226.35043335 226.629730225 227.35043335 228.089691162 228.629730225 229.0496521 229.589691162 230.150238037 232.020004272 231.260238647 230.510238647 229.71043396 229.000473022 228.529769897 228.30027771 228.100082397 227.810043335 227.56980896 227.600082397 227.970199585 228.560043335 229.15965271 229.600082397 229.920394897 230.149887085 231.009689331 229.980392456 228.740158081 227.740158081 227.469650269 227.870040894 228.230392456 228.030197144 227.549728394 227.310470581 227.530197144 228.110275269 228.870040894 229.629806519 230.249923706 230.740158081 231.289962769 230.20980835 229.490081787 228.53012085 227.450042725 226.980316162 227.429534912 228.060394287 227.910003662 227.009613037 226.259613037 226.339691162 227.150238037 228.160003662 228.9402771 229.400238037 229.770355225 230.129730225 231.760238647 231.05027771 230.14012146 229.279769897 228.850082397 228.859848022 228.90965271 228.619613647 228.05027771 227.579574585 227.529769897 227.920394897 228.649887085 229.40965271 229.899887085 230.090316772 230.149887085 230.480392456 229.580001831 228.219650269 227.179611206 227.240158081 228.139572144 228.759689331 228.490158081 227.770431519 227.419845581 227.669845581 228.249923706 228.980392456 229.789962769 230.440353394 230.849533081 231.219650269 229.70980835 229.1902771 228.179534912 227.020355225 226.719573975 227.539886475 228.45980835 228.339691162 227.339691162 226.4402771 226.429534912 227.1902771 228.219573975 229.070159912 229.589691162 229.900238037 230.129730225 231.470199585 230.81980896 229.720199585 228.739730835 228.609848022 229.130355835 229.39012146 228.920394897 228.100082397 227.630355835 227.689926147 228.109848022 228.739730835 229.449691772 229.97996521 230.170394897 230.189926147 230.499923706 229.669845581 228.150314331 227.030197144 227.320236206 228.520431519 229.160079956 228.620040894 227.679611206 227.389572144 227.789962769 228.360275269 228.889572144 229.570236206 230.339767456 230.919845581 231.289962769 229.7996521 229.3699646 228.200042725 226.990081787 226.900238037 227.929534912 228.789886475 228.450042725 227.320159912 226.560394287 226.679534912 227.3699646 228.200042725 228.95980835 229.560394287 229.980316162 230.240081787 231.439926147 230.89012146 229.630355835 228.619613647 228.720199585 229.520004272 229.72996521 228.899887085 227.859848022 227.539535522 227.869613647 228.289535522 228.680160522 229.22996521 229.869613647 230.239730835 230.350082397 230.969650269 230.089767456 228.450119019 227.370040894 227.810470581 229.060470581 229.469650269 228.509689331 227.349533081 227.179611206 227.810470581 228.389572144 228.709884644 229.259689331 230.169845581 230.999923706 231.490158081 230.360198975 229.829925537 228.539886475 227.4402771 227.60043335 228.660003662 229.1199646 228.249847412 226.95980835 226.4402771 226.85043335 227.5496521 228.1902771 228.829925537 229.499847412 230.0496521 230.390472412 231.649887085 231.130355835 229.90965271 228.989730835 229.239730835 230.029769897 229.96043396 228.720199585 227.510238647 227.340316772 227.89012146 228.329574585 228.539535522 229.039535522 229.81980896 230.399887085 230.56980896 231.259689331 230.209884644 228.620040894 227.669845581 228.179611206 229.289962769 229.410079956 228.219650269 227.049728394 227.049728394 227.870040894 228.469650269 228.700119019 229.179611206 230.139572144 231.089767456 231.629806519 230.749847412 229.950042725 228.629730225 227.789886475 228.200042725 229.129730225 229.10043335 227.810394287 226.499847412 226.289886475 226.969573975 227.70980835 228.270355225 228.8699646 229.560394287 230.10043335 230.390472412 231.750473022 231.149887085 230.06980896 229.359848022 229.65965271 230.250473022 229.869613647 228.46043396 227.279769897 227.239730835 227.880355835 228.279769897 228.470199585 229.000473022 229.90965271 230.56980896 230.720199585 230.879806519 229.719650269 228.339767456 227.580001831 227.969650269 228.780197144 228.770431519 227.789962769 226.940353394 227.139572144 227.969650269 228.560470581 228.830001831 229.349533081 230.299728394 231.150314331 231.580001831 230.469573975 229.45980835 228.240081787 227.640472412 228.079925537 228.730316162 228.410003662 227.179534912 226.249847412 226.379730225 227.1199646 227.78012085 228.310394287 228.990081787 229.6902771 230.10043335 230.20980835 231.40965271 230.71043396 229.829574585 229.350082397 229.539535522 229.80027771 229.30027771 228.130355835 227.30027771 227.399887085 227.920394897 228.220199585 228.40965271 229.029769897 229.97996521 230.619613647 230.72996521 229.980392456 228.980392456 227.980392456 227.370040894 227.440353394 227.820236206 227.830001831 227.349533081 227.020431519 227.289962769 227.900314331 228.370040894 228.780197144 229.499923706 230.450119019 231.160079956 231.440353394 229.629730225 228.669769287 227.730316162 227.259613037 227.45980835 227.70980835 227.339691162 226.589691162 226.28012085 226.650238037 227.219573975 227.629730225 228.169769287 229.03012085 229.839691162 230.129730225 230.060394287 230.770004272 230.05027771 229.420394897 229.079574585 229.05027771 228.96043396 228.470199585 227.789535522 227.470199585 227.649887085 227.949691772 228.06980896 228.289535522 228.970199585 229.920394897 230.579574585 230.739730835 229.219650269 228.570236206 227.980392456 227.450119019 227.150314331 227.129806519 227.190353394 227.169845581 227.169845581 227.299728394 227.530197144 227.879806519 228.490158081 229.459884644 230.509689331 231.179611206 231.410079956 228.860198975 228.169769287 227.5496521 227.1199646 226.980316162 226.8699646 226.5496521 226.2996521 226.469573975 226.879730225 227.1199646 227.310394287 227.910003662 228.969573975 229.919769287 230.270355225 230.150238037 230.220199585 229.630355835 229.21043396 228.930160522 228.65965271 228.260238647 227.829574585 227.579574585 227.609848022 227.770004272 227.840316772 227.880355835 228.170394897 228.880355835 229.80027771 230.55027771 230.89012146 228.969650269 228.620040894 228.240158081 227.719650269 227.209884644 227.009689331 227.120040894 227.330001831 227.370040894 227.240158081 227.160079956 227.450119019 228.249923706 229.379806519 230.459884644 231.160079956 231.469650269 228.60043335 228.160003662 227.679534912 227.219573975 226.879730225 226.610198975 226.379730225 226.3699646 226.650238037 226.910003662 226.9402771 227.079925537 227.78012085 228.9402771 229.9402771 230.410003662 230.400238037 230.06980896 229.609848022 229.270004272 228.939926147 228.510238647 227.970199585 227.590316772 227.55027771 227.670394897 227.71043396 227.670394897 227.80027771 228.22996521 228.920394897 229.72996521 230.55027771 231.119613647 229.160079956 228.839767456 228.379806519 227.770431519 227.270431519 227.129806519 227.349533081 227.599533081 227.560470581 227.270431519 227.110275269 227.490158081 228.360275269 229.410079956 230.320236206 231.009689331 231.459884644 228.810394287 228.360198975 227.749847412 227.1902771 226.860198975 226.679534912 226.539886475 226.53012085 226.679534912 226.78012085 226.810394287 227.10043335 227.910003662 228.95980835 229.839691162 230.379730225 230.589691162 230.239730835 229.81980896 229.340316772 228.899887085 228.420394897 227.90965271 227.590316772 227.579574585 227.649887085 227.600082397 227.600082397 227.90965271 228.470199585 229.060043335 229.689926147 230.489730835 231.22996521 229.450119019 228.969650269 228.280197144 227.580001831 227.179611206 227.179611206 227.469650269 227.679611206 227.610275269 227.360275269 227.360275269 227.839767456 228.660079956 229.490158081 230.160079956 230.770431519 231.310470581 229.140472412 228.490081787 227.640472412 226.980316162 226.740081787 226.679534912 226.589691162 226.509613037 226.539886475 226.610198975 226.759613037 227.230316162 228.060394287 228.929534912 229.6199646 230.20980835 230.589691162 230.449691772 229.97996521 229.310043335 228.739730835 228.279769897 227.850082397 227.55027771 227.500473022 227.55027771 227.55027771 227.649887085 228.079574585 228.65965271 229.130355835 229.590316772 230.329574585 231.149887085 229.589767456 228.999923706 228.200119019 227.499923706 227.169845581 227.179611206 227.389572144 227.549728394 227.539962769 227.469650269 227.599533081 228.099533081 228.820236206 229.499923706 230.080001831 230.629806519 231.160079956 229.289886475 228.539886475 227.589691162 226.890472412 226.650238037 226.570159912 226.4402771 226.360198975 226.4402771 226.570159912 226.78012085 227.259613037 228.039886475 228.820159912 229.469573975 230.079925537 230.5496521 230.520004272 230.020004272 229.250473022 228.64012146 228.220199585 227.789535522 227.420394897 227.31980896 227.449691772 227.579574585 227.72996521 228.100082397 228.619613647 229.06980896 229.520004272 230.220199585 231.029769897 229.560470581 229.020431519 228.310470581 227.700119019 227.349533081 227.240158081 227.299728394 227.419845581 227.539962769 227.599533081 227.740158081 228.110275269 228.740158081 229.480392456 230.160079956 230.709884644 231.129806519 229.270355225 228.589691162 227.730316162 227.070159912 226.740081787 226.499847412 226.270355225 226.249847412 226.499847412 226.740081787 226.860198975 227.1902771 227.900238037 228.759613037 229.539886475 230.1902771 230.579925537 230.470199585 230.010238647 229.279769897 228.699691772 228.310043335 227.80027771 227.289535522 227.15965271 227.420394897 227.699691772 227.81980896 228.020004272 228.46043396 228.989730835 229.579574585 230.30027771 231.039535522 229.440353394 228.969650269 228.400314331 227.870040894 227.490158081 227.280197144 227.270431519 227.450119019 227.690353394 227.799728394 227.830001831 228.039962769 228.629806519 229.499923706 230.320236206 230.870040894 231.160079956 229.1902771 228.6199646 227.890472412 227.28012085 226.85043335 226.450042725 226.179534912 226.270355225 226.669769287 226.95980835 226.990081787 227.179534912 227.839691162 228.789886475 229.6902771 230.379730225 230.669769287 230.380355835 229.949691772 229.279769897 228.770004272 228.380355835 227.81980896 227.239730835 227.109848022 227.470199585 227.829574585 227.899887085 227.970199585 228.350082397 229.000473022 229.71043396 230.449691772 231.100082397 229.320236206 228.839767456 228.289962769 227.770431519 227.389572144 227.219650269 227.299728394 227.570236206 227.839767456 227.919845581 227.860275269 228.039962769 228.660079956 229.570236206 230.379806519 230.860275269 231.080001831 229.179534912 228.610198975 227.879730225 227.249847412 226.789886475 226.400238037 226.160003662 226.2996521 226.700042725 226.969573975 227.020355225 227.230316162 227.910003662 228.8699646 229.740081787 230.390472412 230.650238037 230.310043335 229.840316772 229.180160522 228.680160522 228.310043335 227.779769897 227.239730835 227.14012146 227.500473022 227.850082397 227.90965271 227.96043396 228.380355835 229.05027771 229.739730835 230.420394897 231.060043335 229.270431519 228.709884644 228.080001831 227.520431519 227.190353394 227.160079956 227.389572144 227.690353394 227.860275269 227.830001831 227.799728394 228.099533081 228.849533081 229.709884644 230.339767456 230.669845581 230.950119019 229.240081787 228.60043335 227.7996521 227.110198975 226.660003662 226.379730225 226.20980835 226.289886475 226.539886475 226.730316162 226.890472412 227.2996521 228.070159912 228.919769287 229.6199646 230.20980835 230.560394287 230.21043396 229.689926147 229.039535522 228.529769897 228.180160522 227.750473022 227.31980896 227.21043396 227.46043396 227.720199585 227.810043335 227.97996521 228.439926147 229.05027771 229.600082397 230.199691772 230.920394897 229.249923706 228.679611206 228.020431519 227.429611206 227.120040894 227.200119019 227.520431519 227.799728394 227.830001831 227.690353394 227.700119019 228.169845581 229.049728394 229.889572144 230.339767456 230.539962769 230.919845581 229.259613037 228.660003662 227.85043335 227.140472412 226.700042725 226.469573975 226.339691162 226.310394287 226.3699646 226.480316162 226.740081787 227.35043335 228.219573975 228.999847412 229.560394287 230.079925537 230.520355225 230.05027771 229.56980896 229.000473022 228.529769897 228.180160522 227.810043335 227.449691772 227.289535522 227.39012146 227.56980896 227.72996521 228.000473022 228.47996521 229.000473022 229.470199585 230.020004272 230.80027771 229.200119019 228.700119019 228.080001831 227.459884644 227.120040894 227.200119019 227.539962769 227.870040894 227.900314331 227.719650269 227.690353394 228.190353394 229.150314331 230.039962769 230.469650269 230.620040894 231.020431519 229.219573975 228.740081787 228.03012085 227.329925537 226.839691162 226.560394287 226.410003662 226.3699646 226.390472412 226.469573975 226.719573975 227.3699646 228.289886475 229.1199646 229.6902771 230.160003662 230.560394287 229.90965271 229.520004272 229.06980896 228.670394897 228.310043335 227.939926147 227.56980896 227.359848022 227.369613647 227.539535522 227.760238647 228.05027771 228.46043396 228.970199585 229.47996521 230.05027771 230.779769897 229.129806519 228.690353394 228.080001831 227.440353394 227.020431519 227.039962769 227.410079956 227.860275269 228.049728394 227.929611206 227.799728394 228.150314331 229.049728394 230.039962769 230.599533081 230.789962769 231.129806519 229.150238037 228.740081787 228.1199646 227.4402771 226.879730225 226.520355225 226.35043335 226.379730225 226.509613037 226.629730225 226.810394287 227.310394287 228.20980835 229.169769287 229.890472412 230.339691162 230.570159912 229.829574585 229.500473022 229.14012146 228.750473022 228.39012146 227.989730835 227.609848022 227.350082397 227.350082397 227.579574585 227.850082397 228.05027771 228.350082397 228.880355835 229.560043335 230.199691772 230.770004272 229.099533081 228.629806519 227.969650269 227.299728394 226.870040894 226.870040894 227.240158081 227.770431519 228.110275269 228.080001831 227.889572144 228.080001831 228.879806519 229.900314331 230.589767456 230.870040894 231.169845581 229.110198975 228.660003662 228.03012085 227.360198975 226.829925537 226.450042725 226.259613037 226.329925537 226.570159912 226.749847412 226.8699646 227.219573975 228.020355225 229.070159912 229.9402771 230.4402771 230.520355225 229.850082397 229.47996521 229.079574585 228.699691772 228.359848022 228.010238647 227.619613647 227.279769897 227.270004272 227.560043335 227.869613647 228.000473022 228.180160522 228.72996521 229.56980896 230.270004272 230.720199585 229.080001831 228.530197144 227.830001831 227.209884644 226.870040894 226.910079956 227.240158081 227.709884644 228.030197144 228.030197144 227.900314331 228.099533081 228.849533081 229.820236206 230.490158081 230.820236206 231.179611206 229.10043335 228.5496521 227.860198975 227.230316162 226.810394287 226.509613037 226.320159912 226.320159912 226.5496521 226.770355225 226.919769287 227.230316162 227.950042725 228.950042725 229.839691162 230.379730225 230.520355225 229.880355835 229.430160522 228.970199585 228.609848022 228.350082397 228.06980896 227.680160522 227.289535522 227.180160522 227.439926147 227.779769897 227.939926147 228.109848022 228.630355835 229.470199585 230.199691772 230.630355835 229.020431519 228.450119019 227.759689331 227.209884644 226.959884644 227.049728394 227.349533081 227.709884644 227.889572144 227.849533081 227.860275269 228.259689331 229.060470581 229.879806519 230.379806519 230.709884644 231.209884644 229.060394287 228.45980835 227.730316162 227.150238037 226.820159912 226.629730225 226.45980835 226.410003662 226.539886475 226.759613037 226.999847412 227.400238037 228.089691162 228.929534912 229.6902771 230.249847412 230.579925537 229.859848022 229.39012146 228.939926147 228.609848022 228.369613647 228.130355835 227.779769897 227.380355835 227.170394897 227.31980896 227.670394897 227.949691772 228.199691772 228.670394897 229.359848022 230.029769897 230.55027771 228.900314331 228.370040894 227.740158081 227.209884644 226.940353394 226.990158081 227.299728394 227.660079956 227.780197144 227.690353394 227.789962769 228.370040894 229.240158081 229.940353394 230.280197144 230.580001831 231.209884644 228.990081787 228.400238037 227.669769287 227.070159912 226.740081787 226.570159912 226.480316162 226.480316162 226.589691162 226.78012085 227.060394287 227.5496521 228.249847412 228.95980835 229.5496521 230.089691162 230.60043335 229.840316772 229.39012146 228.989730835 228.689926147 228.380355835 228.060043335 227.760238647 227.470199585 227.279769897 227.310043335 227.590316772 227.970199585 228.359848022 228.770004272 229.250473022 229.829574585 230.46043396 228.799728394 228.310470581 227.759689331 227.200119019 226.780197144 226.690353394 227.030197144 227.499923706 227.700119019 227.599533081 227.669845581 228.280197144 229.179611206 229.849533081 230.169845581 230.499923706 231.139572144 228.929534912 228.360198975 227.650238037 226.990081787 226.520355225 226.310394287 226.310394287 226.480316162 226.669769287 226.810394287 227.03012085 227.509613037 228.230316162 228.929534912 229.469573975 229.969573975 230.5496521 229.850082397 229.430160522 229.090316772 228.760238647 228.31980896 227.869613647 227.609848022 227.500473022 227.40965271 227.380355835 227.55027771 227.96043396 228.420394897 228.810043335 229.15965271 229.65965271 230.350082397 228.749923706 228.259689331 227.780197144 227.219650269 226.660079956 226.429611206 226.749923706 227.320236206 227.599533081 227.520431519 227.560470581 228.080001831 228.919845581 229.650314331 230.110275269 230.530197144 231.099533081 228.910003662 228.310394287 227.6199646 226.929534912 226.379730225 226.10043335 226.150238037 226.429534912 226.719573975 226.8699646 227.009613037 227.400238037 228.1199646 228.900238037 229.499847412 229.999847412 230.490081787 229.89012146 229.470199585 229.14012146 228.789535522 228.260238647 227.720199585 227.470199585 227.470199585 227.500473022 227.489730835 227.609848022 227.97996521 228.430160522 228.80027771 229.119613647 229.609848022 230.310043335 228.730392456 228.200119019 227.749923706 227.240158081 226.679611206 226.410079956 226.650314331 227.129806519 227.410079956 227.419845581 227.509689331 227.999923706 228.759689331 229.520431519 230.150314331 230.679611206 231.150314331 228.900238037 228.230316162 227.5496521 226.900238037 226.390472412 226.1199646 226.1199646 226.360198975 226.660003662 226.910003662 227.10043335 227.45980835 228.110198975 228.919769287 229.60043335 230.1199646 230.539886475 229.920394897 229.46043396 229.100082397 228.750473022 228.250473022 227.72996521 227.449691772 227.420394897 227.470199585 227.560043335 227.750473022 228.109848022 228.489730835 228.81980896 229.15965271 229.670394897 230.340316772 228.700119019 228.139572144 227.650314331 227.129806519 226.639572144 226.459884644 226.650314331 226.929611206 227.089767456 227.200119019 227.499923706 228.039962769 228.709884644 229.440353394 230.179611206 230.799728394 231.240158081 228.900238037 228.1902771 227.45980835 226.829925537 226.410003662 226.20980835 226.140472412 226.20980835 226.469573975 226.8699646 227.259613037 227.660003662 228.20980835 228.929534912 229.650238037 230.219573975 230.610198975 229.90965271 229.46043396 229.05027771 228.649887085 228.21043396 227.80027771 227.489730835 227.340316772 227.340316772 227.520004272 227.880355835 228.270004272 228.579574585 228.840316772 229.180160522 229.71043396 230.350082397 228.759689331 228.209884644 227.599533081 226.929611206 226.440353394 226.379806519 226.610275269 226.759689331 226.810470581 226.990158081 227.440353394 228.020431519 228.620040894 229.310470581 230.099533081 230.789962769 231.240158081 228.950042725 228.270355225 227.45980835 226.730316162 226.329925537 226.200042725 226.1199646 226.060394287 226.249847412 226.770355225 227.35043335 227.7996521 228.240081787 228.8699646 229.589691162 230.179534912 230.579925537 229.880355835 229.520004272 229.05027771 228.55027771 228.100082397 227.760238647 227.47996521 227.239730835 227.180160522 227.430160522 227.90965271 228.329574585 228.56980896 228.789535522 229.149887085 229.65965271 230.260238647 228.929611206 228.440353394 227.690353394 226.799728394 226.219650269 226.240158081 226.560470581 226.730392456 226.730392456 226.900314331 227.360275269 227.900314331 228.440353394 229.150314331 229.999923706 230.719650269 231.179611206 229.0496521 228.45980835 227.570159912 226.6902771 226.249847412 226.169769287 226.129730225 226.03012085 226.1902771 226.719573975 227.35043335 227.78012085 228.1902771 228.810394287 229.560394287 230.1199646 230.480316162 229.850082397 229.55027771 229.090316772 228.500473022 227.989730835 227.680160522 227.449691772 227.22996521 227.149887085 227.420394897 227.880355835 228.250473022 228.489730835 228.770004272 229.180160522 229.649887085 230.15965271 229.089767456 228.620040894 227.820236206 226.820236206 226.169845581 226.179611206 226.570236206 226.810470581 226.839767456 226.999923706 227.349533081 227.780197144 228.289962769 229.080001831 230.020431519 230.730392456 231.129806519 229.089691162 228.560394287 227.669769287 226.770355225 226.289886475 226.219573975 226.20980835 226.150238037 226.2996521 226.78012085 227.310394287 227.719573975 228.179534912 228.890472412 229.660003662 230.140472412 230.3699646 229.760238647 229.489730835 229.060043335 228.489730835 227.989730835 227.680160522 227.470199585 227.289535522 227.270004272 227.500473022 227.869613647 228.180160522 228.439926147 228.840316772 229.31980896 229.750473022 230.14012146 229.139572144 228.580001831 227.780197144 226.849533081 226.249923706 226.230392456 226.560470581 226.820236206 226.929611206 227.099533081 227.400314331 227.759689331 228.280197144 229.120040894 230.049728394 230.700119019 231.039962769 229.020355225 228.45980835 227.660003662 226.879730225 226.450042725 226.329925537 226.259613037 226.200042725 226.3699646 226.7996521 227.28012085 227.6902771 228.230316162 229.020355225 229.770355225 230.160003662 230.259613037 229.64012146 229.279769897 228.899887085 228.489730835 228.100082397 227.779769897 227.520004272 227.340316772 227.359848022 227.56980896 227.880355835 228.149887085 228.470199585 228.949691772 229.47996521 229.869613647 230.170394897 229.089767456 228.379806519 227.560470581 226.799728394 226.330001831 226.280197144 226.490158081 226.700119019 226.860275269 227.099533081 227.419845581 227.799728394 228.330001831 229.120040894 229.940353394 230.499923706 230.830001831 228.9402771 228.28012085 227.539886475 226.9402771 226.579925537 226.390472412 226.219573975 226.129730225 226.2996521 226.730316162 227.200042725 227.650238037 228.240081787 229.020355225 229.719573975 230.060394287 230.140472412 229.560043335 229.06980896 228.71043396 228.470199585 228.22996521 227.899887085 227.560043335 227.340316772 227.350082397 227.539535522 227.81980896 228.119613647 228.500473022 228.989730835 229.47996521 229.859848022 230.170394897 229.110275269 228.259689331 227.389572144 226.709884644 226.330001831 226.280197144 226.440353394 226.639572144 226.820236206 227.060470581 227.419845581 227.860275269 228.400314331 229.060470581 229.730392456 230.219650269 230.580001831 228.980316162 228.230316162 227.520355225 226.999847412 226.660003662 226.410003662 226.20980835 226.140472412 226.289886475 226.650238037 227.10043335 227.60043335 228.20980835 228.929534912 229.570159912 229.9402771 230.1199646 229.590316772 229.000473022 228.619613647 228.46043396 228.279769897 227.970199585 227.619613647 227.399887085 227.359848022 227.46043396 227.71043396 228.06980896 228.510238647 228.970199585 229.40965271 229.80027771 230.15965271 229.200119019 228.330001831 227.419845581 226.690353394 226.289962769 226.249923706 226.490158081 226.749923706 226.900314331 227.060470581 227.400314331 227.929611206 228.509689331 229.089767456 229.639572144 230.099533081 230.490158081 229.10043335 228.360198975 227.629730225 227.060394287 226.669769287 226.450042725 226.3699646 226.3699646 226.450042725 226.650238037 227.020355225 227.570159912 228.230316162 228.929534912 229.570159912 230.03012085 230.270355225 229.619613647 229.060043335 228.649887085 228.46043396 228.260238647 227.970199585 227.72996521 227.600082397 227.500473022 227.46043396 227.619613647 228.029769897 228.55027771 229.029769897 229.46043396 229.869613647 230.22996521 229.190353394 228.429611206 227.530197144 226.740158081 226.259689331 226.219650269 226.539962769 226.839767456 226.929611206 226.999923706 227.360275269 227.990158081 228.650314331 229.209884644 229.719650269 230.169845581 230.539962769 229.150238037 228.480316162 227.730316162 227.079925537 226.640472412 226.490081787 226.560394287 226.640472412 226.6199646 226.640472412 226.95980835 227.560394287 228.2996521 229.039886475 229.730316162 230.270355225 230.520355225 229.579574585 229.100082397 228.720199585 228.46043396 228.189926147 227.939926147 227.81980896 227.779769897 227.64012146 227.470199585 227.56980896 228.000473022 228.590316772 229.130355835 229.619613647 230.06980896 230.39012146 229.060470581 228.410079956 227.599533081 226.820236206 226.310470581 226.249923706 226.520431519 226.740158081 226.749923706 226.820236206 227.280197144 228.049728394 228.770431519 229.320236206 229.799728394 230.249923706 230.549728394 229.110198975 228.469573975 227.730316162 227.0496521 226.610198975 226.499847412 226.6199646 226.6902771 226.60043335 226.560394287 226.879730225 227.560394287 228.339691162 229.10043335 229.85043335 230.429534912 230.640472412 229.500473022 229.109848022 228.760238647 228.449691772 228.149887085 227.899887085 227.81980896 227.770004272 227.579574585 227.399887085 227.500473022 227.970199585 228.560043335 229.14012146 229.71043396 230.21043396 230.449691772 228.980392456 228.379806519 227.650314331 226.929611206 226.469650269 226.379806519 226.530197144 226.580001831 226.509689331 226.679611206 227.299728394 228.129806519 228.820236206 229.330001831 229.799728394 230.230392456 230.480392456 229.129730225 228.450042725 227.719573975 227.0496521 226.640472412 226.53012085 226.6199646 226.629730225 226.509613037 226.520355225 226.890472412 227.570159912 228.310394287 229.060394287 229.810394287 230.419769287 230.6199646 229.539535522 229.170394897 228.80027771 228.47996521 228.15965271 227.90965271 227.750473022 227.590316772 227.39012146 227.289535522 227.500473022 227.96043396 228.47996521 229.05027771 229.699691772 230.239730835 230.420394897 229.070236206 228.490158081 227.759689331 227.049728394 226.629806519 226.580001831 226.660079956 226.589767456 226.499923706 226.740158081 227.389572144 228.209884644 228.849533081 229.349533081 229.849533081 230.259689331 230.469650269 229.28012085 228.560394287 227.770355225 227.089691162 226.6902771 226.589691162 226.660003662 226.640472412 226.560394287 226.6199646 226.999847412 227.610198975 228.28012085 229.020355225 229.810394287 230.410003662 230.570159912 229.699691772 229.329574585 228.899887085 228.510238647 228.189926147 227.949691772 227.720199585 227.470199585 227.270004272 227.289535522 227.600082397 228.029769897 228.470199585 229.029769897 229.750473022 230.30027771 230.420394897 229.219650269 228.690353394 227.870040894 227.070236206 226.639572144 226.660079956 226.810470581 226.789962769 226.679611206 226.879806519 227.450119019 228.169845581 228.860275269 229.490158081 230.049728394 230.429611206 230.570236206 229.419769287 228.70980835 227.85043335 227.10043335 226.660003662 226.60043335 226.70980835 226.770355225 226.70980835 226.730316162 227.020355225 227.560394287 228.270355225 229.10043335 229.919769287 230.480316162 230.579925537 229.840316772 229.500473022 229.020004272 228.55027771 228.180160522 227.939926147 227.71043396 227.470199585 227.310043335 227.39012146 227.699691772 228.100082397 228.529769897 229.14012146 229.89012146 230.430160522 230.510238647 229.209884644 228.789962769 227.950119019 227.020431519 226.520431519 226.599533081 226.879806519 226.959884644 226.879806519 226.940353394 227.349533081 228.030197144 228.839767456 229.639572144 230.270431519 230.570236206 230.660079956 229.429534912 228.789886475 227.910003662 227.070159912 226.570159912 226.509613037 226.679534912 226.789886475 226.749847412 226.700042725 226.900238037 227.4402771 228.249847412 229.1902771 230.009613037 230.469573975 230.520355225 229.850082397 229.590316772 229.130355835 228.609848022 228.180160522 227.90965271 227.689926147 227.500473022 227.399887085 227.470199585 227.72996521 228.090316772 228.579574585 229.250473022 229.97996521 230.46043396 230.55027771 229.070236206 228.740158081 227.969650269 227.039962769 226.499923706 226.570236206 226.900314331 227.060470581 226.980392456 226.959884644 227.270431519 227.959884644 228.889572144 229.749923706 230.289962769 230.480392456 230.599533081 229.3699646 228.810394287 227.969573975 227.110198975 226.560394287 226.4402771 226.579925537 226.6902771 226.669769287 226.629730225 226.829925537 227.410003662 228.289886475 229.219573975 229.919769287 230.289886475 230.329925537 229.789535522 229.609848022 229.22996521 228.720199585 228.250473022 227.90965271 227.670394897 227.520004272 227.470199585 227.55027771 227.750473022 228.100082397 228.619613647 229.279769897 229.899887085 230.310043335 230.500473022 228.980392456 228.639572144 227.940353394 227.120040894 226.629806519 226.669845581 226.959884644 227.129806519 227.110275269 227.110275269 227.410079956 228.110275269 229.030197144 229.810470581 230.190353394 230.320236206 230.530197144 229.390472412 228.810394287 228.020355225 227.20980835 226.640472412 226.450042725 226.469573975 226.560394287 226.6199646 226.719573975 226.990081787 227.5496521 228.379730225 229.219573975 229.85043335 230.169769287 230.240081787 229.770004272 229.56980896 229.250473022 228.81980896 228.369613647 227.970199585 227.670394897 227.529769897 227.56980896 227.699691772 227.899887085 228.239730835 228.739730835 229.30027771 229.789535522 230.180160522 230.489730835 229.020431519 228.549728394 227.839767456 227.110275269 226.709884644 226.730392456 226.959884644 227.160079956 227.230392456 227.320236206 227.629806519 228.289962769 229.150314331 229.870040894 230.219650269 230.360275269 230.620040894 229.4402771 228.7996521 227.990081787 227.20980835 226.669769287 226.410003662 226.360198975 226.450042725 226.640472412 226.8699646 227.150238037 227.6199646 228.379730225 229.270355225 230.009613037 230.390472412 230.450042725 229.789535522 229.520004272 229.170394897 228.789535522 228.399887085 227.989730835 227.65965271 227.55027771 227.65965271 227.869613647 228.06980896 228.380355835 228.859848022 229.369613647 229.810043335 230.239730835 230.649887085 229.089767456 228.469650269 227.669845581 226.950119019 226.599533081 226.639572144 226.870040894 227.099533081 227.270431519 227.410079956 227.669845581 228.240158081 229.099533081 229.919845581 230.400314331 230.599533081 230.770431519 229.429534912 228.759613037 227.900238037 227.089691162 226.5496521 226.289886475 226.219573975 226.329925537 226.60043335 226.8699646 227.060394287 227.410003662 228.249847412 229.410003662 230.419769287 230.85043335 230.719573975 229.81980896 229.489730835 229.079574585 228.680160522 228.310043335 227.930160522 227.609848022 227.529769897 227.689926147 227.899887085 228.060043335 228.329574585 228.80027771 229.369613647 229.899887085 230.380355835 230.80027771 229.080001831 228.429611206 227.549728394 226.780197144 226.440353394 226.509689331 226.770431519 227.030197144 227.219650269 227.349533081 227.549728394 228.070236206 228.990158081 229.980392456 230.580001831 230.740158081 230.719650269 229.339691162 228.719573975 227.85043335 227.009613037 226.450042725 226.20980835 226.150238037 226.249847412 226.490081787 226.700042725 226.820159912 227.179534912 228.179534912 229.640472412 230.820159912 231.150238037 230.770355225 229.840316772 229.539535522 229.079574585 228.619613647 228.239730835 227.880355835 227.579574585 227.520004272 227.680160522 227.829574585 227.90965271 228.119613647 228.65965271 229.31980896 229.880355835 230.340316772 230.670394897 229.009689331 228.389572144 227.499923706 226.709884644 226.389572144 226.509689331 226.780197144 227.009689331 227.160079956 227.289962769 227.530197144 228.110275269 229.080001831 230.080001831 230.639572144 230.690353394 230.570236206 229.259613037 228.730316162 227.900238037 227.03012085 226.480316162 226.270355225 226.200042725 226.1902771 226.339691162 226.5496521 226.78012085 227.270355225 228.360198975 229.85043335 230.980316162 231.169769287 230.730316162 229.869613647 229.609848022 229.119613647 228.630355835 228.22996521 227.880355835 227.609848022 227.55027771 227.689926147 227.789535522 227.81980896 228.05027771 228.64012146 229.340316772 229.840316772 230.15965271 230.420394897 228.929611206 228.320236206 227.419845581 226.610275269 226.320236206 226.509689331 226.810470581 226.980392456 227.070236206 227.270431519 227.669845581 228.349533081 229.270431519 230.150314331 230.620040894 230.709884644 230.799728394 229.240081787 228.719573975 227.879730225 227.009613037 226.499847412 226.339691162 226.240081787 226.10043335 226.150238037 226.480316162 226.9402771 227.560394287 228.560394287 229.879730225 230.929534912 231.289886475 231.200042725 229.899887085 229.579574585 229.05027771 228.55027771 228.170394897 227.869613647 227.64012146 227.579574585 227.680160522 227.770004272 227.840316772 228.130355835 228.750473022 229.430160522 229.869613647 230.149887085 230.470199585 228.889572144 228.219650269 227.249923706 226.400314331 226.129806519 226.419845581 226.759689331 226.879806519 226.940353394 227.219650269 227.740158081 228.440353394 229.249923706 230.060470581 230.700119019 231.200119019 231.770431519 229.259613037 228.660003662 227.759613037 226.860198975 226.410003662 226.35043335 226.240081787 225.969573975 225.9402771 226.360198975 226.969573975 227.570159912 228.360198975 229.589691162 230.950042725 231.950042725 232.490081787 229.90965271 229.439926147 228.840316772 228.359848022 228.06980896 227.859848022 227.649887085 227.55027771 227.579574585 227.670394897 227.80027771 228.119613647 228.720199585 229.380355835 229.939926147 230.46043396 231.079574585 228.879806519 228.200119019 227.200119019 226.310470581 226.039962769 226.370040894 226.740158081 226.849533081 226.919845581 227.219650269 227.719650269 228.280197144 228.990158081 229.950119019 231.099533081 232.209884644 233.160079956 229.259613037 228.650238037 227.70980835 226.789886475 226.410003662 226.4402771 226.339691162 225.990081787 225.860198975 226.259613037 226.810394287 227.219573975 227.8699646 229.310394287 231.35043335 233.150238037 234.110198975 229.939926147 229.380355835 228.72996521 228.289535522 228.119613647 227.97996521 227.760238647 227.539535522 227.46043396 227.529769897 227.689926147 227.989730835 228.470199585 229.130355835 229.96043396 230.930160522 231.920394897 228.870040894 228.299728394 227.360275269 226.490158081 226.209884644 226.509689331 226.849533081 226.940353394 227.020431519 227.339767456 227.740158081 228.150314331 228.839767456 230.129806519 231.839767456 233.339767456 234.190353394 229.28012085 228.759613037 227.860198975 226.969573975 226.629730225 226.669769287 226.53012085 226.10043335 225.9402771 226.289886475 226.749847412 227.009613037 227.660003662 229.45980835 232.1199646 234.320159912 235.03012085 230.010238647 229.47996521 228.869613647 228.489730835 228.359848022 228.22996521 227.920394897 227.560043335 227.399887085 227.510238647 227.760238647 228.000473022 228.310043335 228.939926147 230.000473022 231.31980896 232.510238647 228.820236206 228.339767456 227.480392456 226.679611206 226.429611206 226.669845581 226.910079956 226.940353394 227.049728394 227.400314331 227.789962769 228.179611206 228.999923706 230.620040894 232.589767456 233.990158081 234.259689331 229.270355225 228.810394287 227.990081787 227.179534912 226.860198975 226.820159912 226.539886475 226.03012085 225.890472412 226.329925537 226.839691162 227.150238037 227.929534912 229.9402771 232.6902771 234.629730225 234.589691162 230.06980896 229.600082397 229.05027771 228.71043396 228.56980896 228.369613647 227.930160522 227.449691772 227.270004272 227.520004272 227.939926147 228.21043396 228.430160522 229.020004272 230.180160522 231.590316772 232.649887085 228.709884644 228.139572144 227.299728394 226.580001831 226.419845581 226.650314331 226.810470581 226.770431519 226.849533081 227.219650269 227.650314331 228.150314331 229.169845581 230.940353394 232.799728394 233.730392456 233.349533081 229.129730225 228.6199646 227.85043335 227.160003662 226.8699646 226.719573975 226.270355225 225.700042725 225.610198975 226.169769287 226.820159912 227.28012085 228.150238037 230.0496521 232.390472412 233.6902771 233.009613037 230.000473022 229.539535522 229.039535522 228.72996521 228.55027771 228.250473022 227.71043396 227.15965271 227.000473022 227.359848022 227.880355835 228.220199585 228.489730835 229.180160522 230.420394897 231.750473022 232.539535522 228.599533081 227.910079956 227.049728394 226.410079956 226.330001831 226.620040894 226.799728394 226.740158081 226.740158081 226.969650269 227.349533081 227.929611206 229.080001831 230.780197144 232.280197144 232.709884644 232.020431519 228.929534912 228.339691162 227.640472412 227.079925537 226.820159912 226.6199646 226.1199646 225.539886475 225.450042725 225.990081787 226.650238037 227.140472412 227.910003662 229.419769287 231.150238037 231.910003662 231.1902771 229.850082397 229.380355835 228.97996521 228.699691772 228.470199585 228.090316772 227.510238647 226.97996521 226.81980896 227.130355835 227.56980896 227.869613647 228.239730835 229.14012146 230.520004272 231.760238647 232.359848022 228.599533081 228.009689331 227.249923706 226.639572144 226.520431519 226.789962769 227.039962769 227.039962769 226.929611206 226.969650269 227.219650269 227.830001831 228.999923706 230.469650269 231.499923706 231.570236206 230.959884644 228.85043335 228.3699646 227.7996521 227.28012085 226.980316162 226.719573975 226.2996521 225.820159912 225.719573975 226.110198975 226.6199646 227.020355225 227.6199646 228.679534912 229.829925537 230.35043335 230.03012085 229.750473022 229.439926147 229.189926147 228.949691772 228.590316772 228.090316772 227.539535522 227.090316772 226.96043396 227.130355835 227.380355835 227.579574585 228.039535522 229.100082397 230.520004272 231.64012146 232.14012146 228.690353394 228.410079956 227.820236206 227.129806519 226.759689331 226.839767456 227.080001831 227.139572144 227.030197144 226.990158081 227.259689331 228.039962769 229.289962769 230.560470581 231.190353394 231.009689331 230.549728394 228.969573975 228.749847412 228.270355225 227.60043335 227.0496521 226.679534912 226.339691162 226.009613037 225.9402771 226.249847412 226.730316162 227.219573975 227.829925537 228.640472412 229.3699646 229.759613037 229.7996521 229.81980896 229.750473022 229.630355835 229.289535522 228.699691772 228.029769897 227.47996521 227.14012146 227.079574585 227.239730835 227.46043396 227.750473022 228.369613647 229.46043396 230.65965271 231.47996521 231.869613647 228.749923706 228.620040894 228.049728394 227.179611206 226.520431519 226.370040894 226.520431519 226.589767456 226.509689331 226.580001831 227.099533081 228.219650269 229.709884644 230.950119019 231.400314331 231.099533081 230.700119019 229.150238037 229.009613037 228.410003662 227.469573975 226.6199646 226.140472412 225.829925537 225.579925537 225.520355225 225.879730225 226.570159912 227.400238037 228.310394287 229.140472412 229.719573975 229.990081787 230.1199646 229.989730835 230.000473022 229.80027771 229.220199585 228.40965271 227.65965271 227.109848022 226.789535522 226.739730835 226.970199585 227.380355835 228.000473022 228.920394897 230.020004272 230.90965271 231.310043335 231.560043335 228.709884644 228.310470581 227.520431519 226.570236206 225.929611206 225.839767456 225.980392456 226.009689331 225.900314331 226.030197144 226.730392456 228.049728394 229.690353394 231.020431519 231.570236206 231.400314331 231.070236206 229.20980835 228.759613037 227.910003662 226.860198975 226.079925537 225.730316162 225.509613037 225.1902771 225.009613037 225.329925537 226.140472412 227.20980835 228.320159912 229.289886475 229.950042725 230.28012085 230.4402771 230.119613647 229.920394897 229.439926147 228.71043396 227.97996521 227.420394897 226.939926147 226.520004272 226.30027771 226.46043396 226.97996521 227.829574585 228.970199585 230.119613647 230.850082397 231.060043335 231.270004272 228.669845581 227.799728394 226.860275269 226.129806519 225.950119019 226.240158081 226.549728394 226.530197144 226.330001831 226.360275269 226.879806519 227.910079956 229.259689331 230.539962769 231.330001831 231.530197144 231.389572144 229.10043335 228.28012085 227.360198975 226.6199646 226.3699646 226.480316162 226.4402771 226.03012085 225.629730225 225.700042725 226.240081787 226.969573975 227.810394287 228.70980835 229.560394287 230.169769287 230.509613037 230.180160522 229.65965271 229.000473022 228.420394897 228.130355835 228.020004272 227.739730835 227.21043396 226.770004272 226.699691772 226.970199585 227.539535522 228.439926147 229.520004272 230.340316772 230.720199585 231.130355835 228.709884644 227.789962769 227.060470581 226.810470581 227.120040894 227.709884644 228.080001831 228.039962769 227.849533081 227.830001831 228.009689331 228.379806519 229.049728394 230.020431519 230.999923706 231.599533081 231.700119019 228.9402771 228.150238037 227.60043335 227.450042725 227.78012085 228.230316162 228.28012085 227.85043335 227.400238037 227.320159912 227.419769287 227.450042725 227.539886475 228.060394287 228.969573975 229.900238037 230.490081787 230.170394897 229.619613647 229.149887085 228.96043396 229.119613647 229.340316772 229.170394897 228.649887085 228.250473022 228.14012146 228.079574585 227.949691772 228.119613647 228.840316772 229.770004272 230.520004272 231.21043396 228.849533081 228.490158081 228.339767456 228.429611206 228.709884644 228.980392456 229.030197144 228.919845581 228.990158081 229.280197144 229.429611206 229.360275269 229.419845581 230.039962769 231.049728394 231.860275269 232.070236206 228.929534912 228.70980835 228.770355225 228.969573975 229.28012085 229.45980835 229.259613037 228.839691162 228.679534912 228.910003662 228.990081787 228.53012085 227.980316162 228.039886475 228.860198975 229.890472412 230.570159912 230.199691772 230.020004272 230.000473022 230.100082397 230.289535522 230.270004272 229.89012146 229.439926147 229.430160522 229.750473022 229.72996521 229.109848022 228.539535522 228.760238647 229.649887085 230.649887085 231.489730835 229.230392456 229.610275269 229.900314331 229.849533081 229.499923706 228.950119019 228.389572144 228.169845581 228.610275269 229.440353394 229.999923706 229.999923706 229.929611206 230.429611206 231.440353394 232.289962769 232.469650269 229.270355225 229.730316162 230.150238037 230.150238037 229.770355225 229.140472412 228.400238037 227.929534912 228.200042725 229.0496521 229.60043335 229.28012085 228.6199646 228.520355225 229.1902771 230.10043335 230.629730225 230.470199585 230.779769897 231.06980896 231.060043335 230.720199585 230.039535522 229.170394897 228.680160522 229.100082397 230.039535522 230.500473022 229.989730835 229.199691772 229.14012146 229.920394897 230.949691772 231.770004272 230.060470581 230.650314331 230.780197144 230.190353394 229.139572144 228.009689331 227.099533081 226.799728394 227.400314331 228.560470581 229.499923706 229.830001831 230.020431519 230.650314331 231.709884644 232.549728394 232.719650269 230.129730225 230.759613037 230.9402771 230.329925537 229.230316162 227.999847412 226.879730225 226.2996521 226.759613037 228.009613037 229.03012085 229.140472412 228.759613037 228.770355225 229.390472412 230.129730225 230.499847412 231.180160522 231.65965271 231.789535522 231.30027771 230.350082397 229.149887085 227.949691772 227.340316772 227.80027771 229.010238647 229.89012146 229.850082397 229.350082397 229.359848022 230.119613647 231.130355835 231.89012146 231.240158081 231.310470581 230.679611206 229.490158081 228.289962769 227.339767456 226.669845581 226.429611206 226.910079956 227.919845581 228.849533081 229.349533081 229.749923706 230.530197144 231.629806519 232.520431519 232.780197144 231.310394287 231.469573975 230.929534912 229.719573975 228.450042725 227.360198975 226.390472412 225.789886475 226.10043335 227.240081787 228.310394287 228.610198975 228.450042725 228.579925537 229.1902771 229.839691162 230.179534912 232.21043396 232.359848022 231.899887085 230.859848022 229.689926147 228.590316772 227.579574585 226.949691772 227.130355835 228.060043335 228.939926147 229.180160522 229.039535522 229.22996521 230.029769897 231.060043335 231.869613647 232.150314331 231.410079956 229.980392456 228.469650269 227.599533081 227.330001831 227.200119019 227.120040894 227.400314331 228.080001831 228.759689331 229.190353394 229.589767456 230.360275269 231.440353394 232.379806519 232.780197144 232.160003662 231.629730225 230.360198975 228.879730225 227.919769287 227.429534912 226.929534912 226.490081787 226.640472412 227.490081787 228.289886475 228.450042725 228.259613037 228.3699646 228.900238037 229.499847412 229.879730225 232.949691772 232.579574585 231.489730835 230.14012146 229.149887085 228.560043335 228.039535522 227.590316772 227.600082397 228.15965271 228.779769897 228.949691772 228.850082397 229.06980896 229.880355835 230.970199585 231.880355835 232.039962769 230.919845581 229.209884644 227.799728394 227.299728394 227.450119019 227.580001831 227.599533081 227.870040894 228.469650269 229.049728394 229.360275269 229.669845581 230.339767456 231.370040894 232.349533081 232.870040894 232.0496521 231.200042725 229.679534912 228.28012085 227.6199646 227.469573975 227.249847412 227.009613037 227.28012085 228.079925537 228.700042725 228.669769287 228.35043335 228.3699646 228.820159912 229.3699646 229.770355225 232.840316772 232.180160522 230.89012146 229.609848022 228.859848022 228.55027771 228.289535522 228.06980896 228.239730835 228.810043335 229.270004272 229.239730835 228.96043396 229.06980896 229.859848022 231.000473022 231.97996521 230.879806519 230.030197144 228.789962769 227.799728394 227.429611206 227.379806519 227.289962769 227.280197144 227.740158081 228.499923706 229.129806519 229.419845581 229.690353394 230.339767456 231.379806519 232.400314331 232.969650269 231.009613037 230.379730225 229.28012085 228.240081787 227.610198975 227.20980835 226.7996521 226.679534912 227.249847412 228.219573975 228.820159912 228.700042725 228.3699646 228.400238037 228.8699646 229.390472412 229.759613037 231.880355835 231.359848022 230.449691772 229.590316772 228.939926147 228.39012146 227.880355835 227.72996521 228.21043396 229.020004272 229.489730835 229.30027771 228.920394897 229.039535522 229.89012146 231.060043335 232.020004272 229.539962769 229.200119019 228.770431519 228.360275269 227.959884644 227.469650269 227.009689331 226.969650269 227.549728394 228.360275269 228.889572144 229.120040894 229.459884644 230.230392456 231.349533081 232.410079956 233.020431519 229.770355225 229.589691162 229.240081787 228.730316162 228.0496521 227.179534912 226.410003662 226.2996521 227.020355225 228.009613037 228.45980835 228.270355225 228.020355225 228.230316162 228.820159912 229.390472412 229.740081787 230.779769897 230.600082397 230.369613647 230.05027771 229.449691772 228.470199585 227.529769897 227.270004272 227.89012146 228.739730835 229.06980896 228.760238647 228.470199585 228.829574585 229.840316772 230.989730835 231.89012146 228.969650269 228.839767456 228.980392456 228.990158081 228.620040894 227.929611206 227.379806519 227.370040894 227.839767456 228.310470581 228.509689331 228.669845581 229.179611206 230.150314331 231.310470581 232.349533081 232.990158081 229.179534912 229.160003662 229.35043335 229.320159912 228.730316162 227.669769287 226.770355225 226.629730225 227.20980835 227.839691162 227.929534912 227.640472412 227.5496521 227.990081787 228.719573975 229.339691162 229.6902771 230.270004272 230.260238647 230.47996521 230.56980896 230.05027771 228.899887085 227.80027771 227.470199585 227.96043396 228.489730835 228.439926147 228.010238647 227.930160522 228.64012146 229.810043335 230.880355835 231.64012146 229.440353394 229.089767456 229.179611206 229.230392456 228.919845581 228.379806519 228.049728394 228.080001831 228.240158081 228.200119019 228.089767456 228.339767456 229.150314331 230.289962769 231.410079956 232.310470581 232.959884644 229.53012085 229.240081787 229.400238037 229.499847412 229.0496521 228.150238037 227.410003662 227.270355225 227.53012085 227.660003662 227.450042725 227.200042725 227.35043335 227.969573975 228.730316162 229.329925537 229.669769287 230.55027771 230.380355835 230.56980896 230.689926147 230.250473022 229.239730835 228.310043335 228.029769897 228.279769897 228.39012146 228.020004272 227.560043335 227.72996521 228.65965271 229.880355835 230.81980896 231.449691772 230.549728394 229.839767456 229.469650269 229.179611206 228.789962769 228.410079956 228.280197144 228.299728394 228.160079956 227.789962769 227.650314331 228.219650269 229.370040894 230.599533081 231.539962769 232.289962769 232.940353394 230.509613037 229.7996521 229.520355225 229.310394287 228.7996521 228.089691162 227.560394287 227.419769287 227.390472412 227.230316162 227.009613037 227.03012085 227.45980835 228.129730225 228.839691162 229.3699646 229.669769287 231.30027771 230.850082397 230.670394897 230.489730835 229.970199585 229.14012146 228.40965271 228.15965271 228.220199585 228.119613647 227.72996521 227.470199585 227.810043335 228.789535522 229.949691772 230.81980896 231.40965271 231.730392456 230.929611206 230.139572144 229.370040894 228.669845581 228.200119019 228.020431519 227.940353394 227.679611206 227.310470581 227.379806519 228.249923706 229.610275269 230.789962769 231.570236206 232.219650269 232.929611206 231.570159912 230.749847412 230.03012085 229.320159912 228.520355225 227.749847412 227.249847412 227.0496521 226.900238037 226.70980835 226.6902771 227.020355225 227.60043335 228.240081787 228.839691162 229.3699646 229.70980835 232.090316772 231.56980896 231.039535522 230.47996521 229.750473022 228.880355835 228.14012146 227.779769897 227.699691772 227.64012146 227.47996521 227.470199585 227.880355835 228.770004272 229.829574585 230.770004272 231.46043396 232.520431519 232.009689331 231.129806519 230.070236206 229.039962769 228.240158081 227.780197144 227.560470581 227.330001831 227.120040894 227.370040894 228.320236206 229.660079956 230.780197144 231.490158081 232.150314331 232.910079956 232.259613037 231.730316162 230.910003662 229.879730225 228.740081787 227.730316162 227.060394287 226.740081787 226.539886475 226.419769287 226.5496521 226.999847412 227.589691162 228.150238037 228.730316162 229.35043335 229.789886475 232.649887085 232.31980896 231.699691772 230.899887085 229.939926147 228.89012146 227.989730835 227.439926147 227.270004272 227.279769897 227.329574585 227.449691772 227.829574585 228.579574585 229.630355835 230.689926147 231.500473022 232.549728394 232.429611206 231.780197144 230.830001831 229.730392456 228.669845581 227.889572144 227.480392456 227.289962769 227.209884644 227.459884644 228.299728394 229.560470581 230.700119019 231.509689331 232.169845581 232.889572144 232.240081787 232.129730225 231.520355225 230.53012085 229.310394287 228.129730225 227.270355225 226.770355225 226.499847412 226.360198975 226.509613037 226.9402771 227.490081787 228.039886475 228.679534912 229.429534912 229.990081787 232.699691772 232.64012146 232.15965271 231.380355835 230.369613647 229.220199585 228.15965271 227.489730835 227.250473022 227.250473022 227.31980896 227.420394897 227.750473022 228.47996521 229.560043335 230.689926147 231.500473022 231.610275269 231.629806519 231.330001831 230.820236206 230.070236206 229.110275269 228.200119019 227.610275269 227.339767456 227.249923706 227.429611206 228.169845581 229.429611206 230.749923706 231.690353394 232.310470581 232.839767456 231.400238037 231.480316162 231.150238037 230.499847412 229.589691162 228.5496521 227.610198975 226.9402771 226.509613037 226.310394287 226.429534912 226.860198975 227.4402771 228.060394287 228.7996521 229.629730225 230.219573975 232.079574585 232.119613647 231.869613647 231.369613647 230.55027771 229.47996521 228.40965271 227.680160522 227.369613647 227.30027771 227.289535522 227.369613647 227.720199585 228.520004272 229.670394897 230.779769897 231.470199585 229.999923706 229.820236206 229.690353394 229.690353394 229.570236206 229.089767456 228.339767456 227.679611206 227.280197144 227.120040894 227.310470581 228.060470581 229.370040894 230.830001831 231.889572144 232.450119019 232.770431519 230.0496521 229.980316162 229.759613037 229.520355225 229.150238037 228.509613037 227.700042725 226.95980835 226.400238037 226.160003662 226.2996521 226.810394287 227.469573975 228.1902771 228.969573975 229.789886475 230.360198975 230.930160522 230.880355835 230.810043335 230.689926147 230.279769897 229.439926147 228.439926147 227.64012146 227.270004272 227.170394897 227.170394897 227.260238647 227.680160522 228.56980896 229.779769897 230.840316772 231.39012146 228.560470581 227.980392456 227.740158081 227.950119019 228.330001831 228.440353394 228.110275269 227.560470581 227.129806519 227.009689331 227.280197144 228.060470581 229.330001831 230.780197144 231.900314331 232.480392456 232.719650269 228.910003662 228.490081787 228.160003662 228.089691162 228.129730225 227.929534912 227.379730225 226.719573975 226.200042725 226.039886475 226.270355225 226.810394287 227.490081787 228.230316162 229.009613037 229.820159912 230.3699646 229.850082397 229.56980896 229.560043335 229.720199585 229.670394897 229.090316772 228.149887085 227.31980896 226.939926147 226.939926147 227.060043335 227.21043396 227.609848022 228.510238647 229.760238647 230.81980896 231.310043335 228.030197144 227.139572144 226.589767456 226.589767456 227.030197144 227.480392456 227.530197144 227.249923706 226.969650269 226.990158081 227.370040894 228.110275269 229.219650269 230.549728394 231.740158081 232.459884644 232.759689331 228.5496521 227.829925537 227.219573975 227.009613037 227.1199646 227.129730225 226.7996521 226.2996521 225.990081787 226.020355225 226.339691162 226.820159912 227.400238037 228.10043335 228.950042725 229.789886475 230.3699646 229.430160522 228.939926147 228.770004272 228.920394897 228.96043396 228.539535522 227.689926147 226.899887085 226.619613647 226.81980896 227.119613647 227.310043335 227.619613647 228.439926147 229.680160522 230.770004272 231.250473022 228.299728394 227.370040894 226.560470581 226.160079956 226.299728394 226.719650269 226.980392456 226.929611206 226.849533081 226.999923706 227.429611206 228.070236206 229.009689331 230.270431519 231.580001831 232.499923706 232.900314331 228.839691162 228.020355225 227.160003662 226.669769287 226.579925537 226.53012085 226.240081787 225.910003662 225.829925537 226.070159912 226.410003662 226.749847412 227.20980835 227.9402771 228.890472412 229.810394287 230.419769287 229.689926147 229.079574585 228.65965271 228.510238647 228.40965271 228.010238647 227.279769897 226.590316772 226.449691772 226.81980896 227.239730835 227.439926147 227.680160522 228.449691772 229.670394897 230.739730835 231.15965271 228.570236206 227.810470581 227.020431519 226.410079956 226.249923706 226.469650269 226.709884644 226.780197144 226.810470581 226.999923706 227.360275269 227.929611206 228.830001831 230.150314331 231.549728394 232.570236206 232.990158081 229.089691162 228.329925537 227.4402771 226.810394287 226.5496521 226.3699646 226.03012085 225.740081787 225.789886475 226.129730225 226.429534912 226.660003662 227.079925537 227.8699646 228.910003662 229.839691162 230.419769287 230.05027771 229.46043396 228.859848022 228.439926147 228.15965271 227.760238647 227.109848022 226.510238647 226.40965271 226.80027771 227.239730835 227.439926147 227.720199585 228.539535522 229.720199585 230.649887085 230.970199585 228.339767456 227.749923706 227.150314331 226.650314331 226.429611206 226.509689331 226.679611206 226.740158081 226.789962769 226.940353394 227.249923706 227.799728394 228.770431519 230.169845581 231.610275269 232.570236206 232.929611206 228.890472412 228.1902771 227.400238037 226.890472412 226.679534912 226.469573975 226.070159912 225.759613037 225.810394287 226.140472412 226.419769287 226.6199646 227.070159912 227.919769287 228.929534912 229.759613037 230.270355225 230.05027771 229.520004272 228.930160522 228.449691772 228.14012146 227.770004272 227.180160522 226.590316772 226.420394897 226.72996521 227.109848022 227.340316772 227.739730835 228.630355835 229.750473022 230.500473022 230.689926147 227.919845581 227.320236206 226.870040894 226.580001831 226.490158081 226.549728394 226.620040894 226.620040894 226.629806519 226.789962769 227.120040894 227.740158081 228.810470581 230.240158081 231.620040894 232.499923706 232.830001831 228.490081787 227.730316162 227.070159912 226.740081787 226.669769287 226.509613037 226.089691162 225.740081787 225.759613037 226.079925537 226.3699646 226.650238037 227.169769287 227.999847412 228.900238037 229.610198975 230.079925537 229.760238647 229.270004272 228.789535522 228.430160522 228.189926147 227.869613647 227.260238647 226.630355835 226.40965271 226.689926147 227.06980896 227.340316772 227.789535522 228.699691772 229.750473022 230.380355835 230.520004272 227.870040894 227.110275269 226.650314331 226.480392456 226.499923706 226.580001831 226.549728394 226.419845581 226.370040894 226.549728394 226.999923706 227.749923706 228.839767456 230.200119019 231.530197144 232.450119019 232.830001831 228.35043335 227.499847412 226.890472412 226.650238037 226.610198975 226.4402771 226.009613037 225.640472412 225.640472412 225.950042725 226.2996521 226.669769287 227.219573975 228.009613037 228.85043335 229.560394287 230.070159912 229.64012146 229.130355835 228.699691772 228.420394897 228.22996521 227.880355835 227.239730835 226.590316772 226.399887085 226.739730835 227.180160522 227.46043396 227.850082397 228.689926147 229.71043396 230.40965271 230.619613647 228.160079956 227.289962769 226.740158081 226.580001831 226.669845581 226.759689331 226.650314331 226.360275269 226.160079956 226.339767456 226.919845581 227.780197144 228.830001831 230.060470581 231.400314331 232.499923706 233.039962769 228.509613037 227.679534912 227.079925537 226.78012085 226.629730225 226.379730225 225.990081787 225.650238037 225.610198975 225.860198975 226.230316162 226.640472412 227.169769287 227.910003662 228.85043335 229.749847412 230.390472412 229.80027771 229.250473022 228.80027771 228.489730835 228.250473022 227.850082397 227.199691772 226.579574585 226.439926147 226.810043335 227.270004272 227.520004272 227.81980896 228.560043335 229.609848022 230.510238647 230.939926147 228.270431519 227.429611206 226.879806519 226.719650269 226.830001831 226.969650269 226.860275269 226.480392456 226.120040894 226.240158081 226.919845581 227.870040894 228.830001831 229.929611206 231.310470581 232.669845581 233.370040894 228.579925537 227.879730225 227.35043335 226.950042725 226.640472412 226.339691162 226.060394287 225.7996521 225.700042725 225.85043335 226.200042725 226.629730225 227.110198975 227.810394287 228.879730225 230.10043335 230.919769287 229.930160522 229.399887085 228.930160522 228.55027771 228.250473022 227.859848022 227.279769897 226.71043396 226.520004272 226.789535522 227.189926147 227.449691772 227.72996521 228.399887085 229.47996521 230.560043335 231.239730835 228.039962769 227.299728394 226.830001831 226.660079956 226.730392456 226.900314331 226.919845581 226.589767456 226.179611206 226.230392456 226.980392456 228.030197144 228.969650269 229.980392456 231.370040894 232.910079956 233.740158081 228.429534912 227.879730225 227.429534912 226.9402771 226.469573975 226.1902771 226.060394287 225.929534912 225.78012085 225.839691162 226.240081787 226.770355225 227.249847412 227.8699646 228.990081787 230.4402771 231.4402771 229.810043335 229.329574585 228.899887085 228.529769897 228.21043396 227.869613647 227.430160522 226.90965271 226.600082397 226.689926147 227.05027771 227.439926147 227.859848022 228.489730835 229.430160522 230.489730835 231.31980896 227.839767456 227.190353394 226.820236206 226.589767456 226.490158081 226.610275269 226.770431519 226.589767456 226.209884644 226.230392456 227.039962769 228.230392456 229.249923706 230.200119019 231.570236206 233.129806519 234.039962769 228.329925537 227.900238037 227.480316162 226.8699646 226.249847412 225.980316162 225.990081787 225.9402771 225.740081787 225.78012085 226.329925537 227.110198975 227.669769287 228.179534912 229.169769287 230.640472412 231.730316162 229.649887085 229.239730835 228.880355835 228.500473022 228.149887085 227.869613647 227.539535522 227.06980896 226.649887085 226.619613647 227.05027771 227.720199585 228.369613647 228.96043396 229.609848022 230.399887085 231.199691772 227.900314331 227.370040894 227.099533081 226.749923706 226.400314331 226.389572144 226.639572144 226.610275269 226.240158081 226.219650269 227.060470581 228.370040894 229.490158081 230.459884644 231.759689331 233.270431519 234.150314331 228.509613037 228.150238037 227.70980835 226.969573975 226.219573975 225.929534912 225.980316162 225.919769287 225.640472412 225.70980835 226.469573975 227.509613037 228.169769287 228.560394287 229.339691162 230.629730225 231.70980835 229.720199585 229.380355835 229.05027771 228.619613647 228.189926147 227.880355835 227.579574585 227.14012146 226.689926147 226.649887085 227.199691772 228.14012146 228.989730835 229.539535522 229.930160522 230.420394897 231.060043335 227.969650269 227.599533081 227.389572144 226.929611206 226.400314331 226.299728394 226.570236206 226.610275269 226.259689331 226.219650269 227.049728394 228.400314331 229.549728394 230.509689331 231.759689331 233.200119019 234.039962769 228.730316162 228.400238037 227.890472412 227.070159912 226.2996521 226.009613037 226.020355225 225.860198975 225.520355225 225.629730225 226.5496521 227.719573975 228.429534912 228.740081787 229.35043335 230.4402771 231.390472412 229.939926147 229.619613647 229.239730835 228.72996521 228.199691772 227.850082397 227.560043335 227.130355835 226.699691772 226.689926147 227.359848022 228.380355835 229.270004272 229.789535522 230.14012146 230.539535522 231.06980896 227.839767456 227.570236206 227.320236206 226.770431519 226.200119019 226.099533081 226.389572144 226.450119019 226.160079956 226.209884644 227.099533081 228.389572144 229.419845581 230.280197144 231.520431519 232.990158081 233.830001831 228.730316162 228.339691162 227.730316162 226.900238037 226.219573975 225.990081787 225.9402771 225.669769287 225.310394287 225.509613037 226.480316162 227.650238037 228.339691162 228.629730225 229.1902771 230.160003662 230.969573975 230.020004272 229.680160522 229.21043396 228.619613647 228.06980896 227.71043396 227.420394897 227.020004272 226.649887085 226.720199585 227.380355835 228.310043335 229.06980896 229.609848022 230.130355835 230.72996521 231.279769897 227.780197144 227.480392456 227.089767456 226.490158081 225.980392456 225.919845581 226.139572144 226.139572144 225.929611206 226.169845581 227.160079956 228.400314331 229.259689331 229.990158081 231.249923706 232.849533081 233.789962769 228.679534912 228.160003662 227.419769287 226.650238037 226.150238037 225.969573975 225.810394287 225.429534912 225.089691162 225.339691162 226.310394287 227.419769287 228.079925537 228.419769287 229.009613037 229.95980835 230.730316162 230.010238647 229.590316772 229.039535522 228.449691772 227.930160522 227.56980896 227.289535522 226.920394897 226.609848022 226.71043396 227.350082397 228.149887085 228.760238647 229.279769897 230.020004272 230.920394897 231.64012146 - diff --git a/Test/tas.asc b/Test/tas.asc deleted file mode 100644 index f4690a3348769aab77dda39b6907415f79e4d87b..0000000000000000000000000000000000000000 --- a/Test/tas.asc +++ /dev/null @@ -1,17 +0,0 @@ -3 -256 -128 -3 -longitude -degrees_east --180.0 -178.59375 -177.1875 -175.78125 -174.375 -172.96875 -171.5625 -170.15625 -168.75 -167.34375 -165.9375 -164.53125 -163.125 -161.71875 -160.3125 -158.90625 -157.5 -156.09375 -154.6875 -153.28125 -151.875 -150.46875 -149.0625 -147.65625 -146.25 -144.84375 -143.4375 -142.03125 -140.625 -139.21875 -137.8125 -136.40625 -135.0 -133.59375 -132.1875 -130.78125 -129.375 -127.96875 -126.5625 -125.15625 -123.75 -122.34375 -120.9375 -119.53125 -118.125 -116.71875 -115.3125 -113.90625 -112.5 -111.09375 -109.6875 -108.28125 -106.875 -105.46875 -104.0625 -102.65625 -101.25 -99.84375 -98.4375 -97.03125 -95.625 -94.21875 -92.8125 -91.40625 -90.0 -88.59375 -87.1875 -85.78125 -84.375 -82.96875 -81.5625 -80.15625 -78.75 -77.34375 -75.9375 -74.53125 -73.125 -71.71875 -70.3125 -68.90625 -67.5 -66.09375 -64.6875 -63.28125 -61.875 -60.46875 -59.0625 -57.65625 -56.25 -54.84375 -53.4375 -52.03125 -50.625 -49.21875 -47.8125 -46.40625 -45.0 -43.59375 -42.1875 -40.78125 -39.375 -37.96875 -36.5625 -35.15625 -33.75 -32.34375 -30.9375 -29.53125 -28.125 -26.71875 -25.3125 -23.90625 -22.5 -21.09375 -19.6875 -18.28125 -16.875 -15.46875 -14.0625 -12.65625 -11.25 -9.84375 -8.4375 -7.03125 -5.625 -4.21875 -2.8125 -1.40625 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.65625 14.0625 15.46875 16.875 18.28125 19.6875 21.09375 22.5 23.90625 25.3125 26.71875 28.125 29.53125 30.9375 32.34375 33.75 35.15625 36.5625 37.96875 39.375 40.78125 42.1875 43.59375 45.0 46.40625 47.8125 49.21875 50.625 52.03125 53.4375 54.84375 56.25 57.65625 59.0625 60.46875 61.875 63.28125 64.6875 66.09375 67.5 68.90625 70.3125 71.71875 73.125 74.53125 75.9375 77.34375 78.75 80.15625 81.5625 82.96875 84.375 85.78125 87.1875 88.59375 90.0 91.40625 92.8125 94.21875 95.625 97.03125 98.4375 99.84375 101.25 102.65625 104.0625 105.46875 106.875 108.28125 109.6875 111.09375 112.5 113.90625 115.3125 116.71875 118.125 119.53125 120.9375 122.34375 123.75 125.15625 126.5625 127.96875 129.375 130.78125 132.1875 133.59375 135.0 136.40625 137.8125 139.21875 140.625 142.03125 143.4375 144.84375 146.25 147.65625 149.0625 150.46875 151.875 153.28125 154.6875 156.09375 157.5 158.90625 160.3125 161.71875 163.125 164.53125 165.9375 167.34375 168.75 170.15625 171.5625 172.96875 174.375 175.78125 177.1875 178.59375 --180.703125 -179.296875 -179.296875 -177.890625 -177.890625 -176.484375 -176.484375 -175.078125 -175.078125 -173.671875 -173.671875 -172.265625 -172.265625 -170.859375 -170.859375 -169.453125 -169.453125 -168.046875 -168.046875 -166.640625 -166.640625 -165.234375 -165.234375 -163.828125 -163.828125 -162.421875 -162.421875 -161.015625 -161.015625 -159.609375 -159.609375 -158.203125 -158.203125 -156.796875 -156.796875 -155.390625 -155.390625 -153.984375 -153.984375 -152.578125 -152.578125 -151.171875 -151.171875 -149.765625 -149.765625 -148.359375 -148.359375 -146.953125 -146.953125 -145.546875 -145.546875 -144.140625 -144.140625 -142.734375 -142.734375 -141.328125 -141.328125 -139.921875 -139.921875 -138.515625 -138.515625 -137.109375 -137.109375 -135.703125 -135.703125 -134.296875 -134.296875 -132.890625 -132.890625 -131.484375 -131.484375 -130.078125 -130.078125 -128.671875 -128.671875 -127.265625 -127.265625 -125.859375 -125.859375 -124.453125 -124.453125 -123.046875 -123.046875 -121.640625 -121.640625 -120.234375 -120.234375 -118.828125 -118.828125 -117.421875 -117.421875 -116.015625 -116.015625 -114.609375 -114.609375 -113.203125 -113.203125 -111.796875 -111.796875 -110.390625 -110.390625 -108.984375 -108.984375 -107.578125 -107.578125 -106.171875 -106.171875 -104.765625 -104.765625 -103.359375 -103.359375 -101.953125 -101.953125 -100.546875 -100.546875 -99.140625 -99.140625 -97.734375 -97.734375 -96.328125 -96.328125 -94.921875 -94.921875 -93.515625 -93.515625 -92.109375 -92.109375 -90.703125 -90.703125 -89.296875 -89.296875 -87.890625 -87.890625 -86.484375 -86.484375 -85.078125 -85.078125 -83.671875 -83.671875 -82.265625 -82.265625 -80.859375 -80.859375 -79.453125 -79.453125 -78.046875 -78.046875 -76.640625 -76.640625 -75.234375 -75.234375 -73.828125 -73.828125 -72.421875 -72.421875 -71.015625 -71.015625 -69.609375 -69.609375 -68.203125 -68.203125 -66.796875 -66.796875 -65.390625 -65.390625 -63.984375 -63.984375 -62.578125 -62.578125 -61.171875 -61.171875 -59.765625 -59.765625 -58.359375 -58.359375 -56.953125 -56.953125 -55.546875 -55.546875 -54.140625 -54.140625 -52.734375 -52.734375 -51.328125 -51.328125 -49.921875 -49.921875 -48.515625 -48.515625 -47.109375 -47.109375 -45.703125 -45.703125 -44.296875 -44.296875 -42.890625 -42.890625 -41.484375 -41.484375 -40.078125 -40.078125 -38.671875 -38.671875 -37.265625 -37.265625 -35.859375 -35.859375 -34.453125 -34.453125 -33.046875 -33.046875 -31.640625 -31.640625 -30.234375 -30.234375 -28.828125 -28.828125 -27.421875 -27.421875 -26.015625 -26.015625 -24.609375 -24.609375 -23.203125 -23.203125 -21.796875 -21.796875 -20.390625 -20.390625 -18.984375 -18.984375 -17.578125 -17.578125 -16.171875 -16.171875 -14.765625 -14.765625 -13.359375 -13.359375 -11.953125 -11.953125 -10.546875 -10.546875 -9.140625 -9.140625 -7.734375 -7.734375 -6.328125 -6.328125 -4.921875 -4.921875 -3.515625 -3.515625 -2.109375 -2.109375 -0.703125 -0.703125 0.703125 0.703125 2.109375 2.109375 3.515625 3.515625 4.921875 4.921875 6.328125 6.328125 7.734375 7.734375 9.140625 9.140625 10.546875 10.546875 11.953125 11.953125 13.359375 13.359375 14.765625 14.765625 16.171875 16.171875 17.578125 17.578125 18.984375 18.984375 20.390625 20.390625 21.796875 21.796875 23.203125 23.203125 24.609375 24.609375 26.015625 26.015625 27.421875 27.421875 28.828125 28.828125 30.234375 30.234375 31.640625 31.640625 33.046875 33.046875 34.453125 34.453125 35.859375 35.859375 37.265625 37.265625 38.671875 38.671875 40.078125 40.078125 41.484375 41.484375 42.890625 42.890625 44.296875 44.296875 45.703125 45.703125 47.109375 47.109375 48.515625 48.515625 49.921875 49.921875 51.328125 51.328125 52.734375 52.734375 54.140625 54.140625 55.546875 55.546875 56.953125 56.953125 58.359375 58.359375 59.765625 59.765625 61.171875 61.171875 62.578125 62.578125 63.984375 63.984375 65.390625 65.390625 66.796875 66.796875 68.203125 68.203125 69.609375 69.609375 71.015625 71.015625 72.421875 72.421875 73.828125 73.828125 75.234375 75.234375 76.640625 76.640625 78.046875 78.046875 79.453125 79.453125 80.859375 80.859375 82.265625 82.265625 83.671875 83.671875 85.078125 85.078125 86.484375 86.484375 87.890625 87.890625 89.296875 89.296875 90.703125 90.703125 92.109375 92.109375 93.515625 93.515625 94.921875 94.921875 96.328125 96.328125 97.734375 97.734375 99.140625 99.140625 100.546875 100.546875 101.953125 101.953125 103.359375 103.359375 104.765625 104.765625 106.171875 106.171875 107.578125 107.578125 108.984375 108.984375 110.390625 110.390625 111.796875 111.796875 113.203125 113.203125 114.609375 114.609375 116.015625 116.015625 117.421875 117.421875 118.828125 118.828125 120.234375 120.234375 121.640625 121.640625 123.046875 123.046875 124.453125 124.453125 125.859375 125.859375 127.265625 127.265625 128.671875 128.671875 130.078125 130.078125 131.484375 131.484375 132.890625 132.890625 134.296875 134.296875 135.703125 135.703125 137.109375 137.109375 138.515625 138.515625 139.921875 139.921875 141.328125 141.328125 142.734375 142.734375 144.140625 144.140625 145.546875 145.546875 146.953125 146.953125 148.359375 148.359375 149.765625 149.765625 151.171875 151.171875 152.578125 152.578125 153.984375 153.984375 155.390625 155.390625 156.796875 156.796875 158.203125 158.203125 159.609375 159.609375 161.015625 161.015625 162.421875 162.421875 163.828125 163.828125 165.234375 165.234375 166.640625 166.640625 168.046875 168.046875 169.453125 169.453125 170.859375 170.859375 172.265625 172.265625 173.671875 173.671875 175.078125 175.078125 176.484375 176.484375 177.890625 177.890625 179.296875 -latitude -degrees_north --88.9277353523 -87.538705213 -86.1414721015 -84.7423855907 -83.3425960441 -81.9424662992 -80.5421464346 -79.1417096486 -77.7411958655 -76.3406287024 -74.9400230196 -73.5393886338 -72.1387322892 -70.7380587725 -69.337371575 -67.9366733026 -66.5359659402 -65.135251026 -63.7345297708 -62.3338031405 -60.9330719152 -59.5323367318 -58.1315981156 -56.7308565037 -55.3301122627 -53.9293657026 -52.5286170871 -51.1278666424 -49.7271145631 -48.3263610182 -46.9256061547 -45.5248501013 -44.1240929714 -42.7233348649 -41.3225758706 -39.9218160676 -38.5210555266 -37.120294311 -35.7195324778 -34.3187700788 -32.9180071606 -31.5172437659 -30.1164799335 -28.7157156991 -27.3149510951 -25.9141861518 -24.5134208971 -23.1126553566 -21.7118895544 -20.311123513 -18.9103572532 -17.509590795 -16.1088241568 -14.7080573564 -13.3072904104 -11.906523335 -10.5057561452 -9.10498885605 -7.7042214816 -6.30345403571 -4.90268653183 -3.50191898313 -2.10115140258 -0.700383802973 0.700383802973 2.10115140258 3.50191898313 4.90268653183 6.30345403571 7.7042214816 9.10498885605 10.5057561452 11.906523335 13.3072904104 14.7080573564 16.1088241568 17.509590795 18.9103572532 20.311123513 21.7118895544 23.1126553566 24.5134208971 25.9141861518 27.3149510951 28.7157156991 30.1164799335 31.5172437659 32.9180071606 34.3187700788 35.7195324778 37.120294311 38.5210555266 39.9218160676 41.3225758706 42.7233348649 44.1240929714 45.5248501013 46.9256061547 48.3263610182 49.7271145631 51.1278666424 52.5286170871 53.9293657026 55.3301122627 56.7308565037 58.1315981156 59.5323367318 60.9330719152 62.3338031405 63.7345297708 65.135251026 66.5359659402 67.9366733026 69.337371575 70.7380587725 72.1387322892 73.5393886338 74.9400230196 76.3406287024 77.7411958655 79.1417096486 80.5421464346 81.9424662992 83.3425960441 84.7423855907 86.1414721015 87.538705213 88.9277353523 --90.0 -88.2332202827 -88.2332202827 -86.8400886573 -86.8400886573 -85.4419288461 -85.4419288461 -84.0424908174 -84.0424908174 -82.6425311716 -82.6425311716 -81.2423063669 -81.2423063669 -79.8419280416 -79.8419280416 -78.4414527571 -78.4414527571 -77.0409122839 -77.0409122839 -75.640325861 -75.640325861 -74.2397058267 -74.2397058267 -72.8390604615 -72.8390604615 -71.4383955308 -71.4383955308 -70.0377151737 -70.0377151737 -68.6370224388 -68.6370224388 -67.2363196214 -67.2363196214 -65.8356084831 -65.8356084831 -64.4348903984 -64.4348903984 -63.0341664557 -63.0341664557 -61.6334375279 -61.6334375279 -60.2327043235 -60.2327043235 -58.8319674237 -58.8319674237 -57.4312273097 -57.4312273097 -56.0304843832 -56.0304843832 -54.6297389826 -54.6297389826 -53.2289913948 -53.2289913948 -51.8282418647 -51.8282418647 -50.4274906027 -50.4274906027 -49.0267377906 -49.0267377906 -47.6259835864 -47.6259835864 -46.225228128 -46.225228128 -44.8244715363 -44.8244715363 -43.4237139181 -43.4237139181 -42.0229553678 -42.0229553678 -40.6221959691 -40.6221959691 -39.2214357971 -39.2214357971 -37.8206749188 -37.8206749188 -36.4199133944 -36.4199133944 -35.0191512783 -35.0191512783 -33.6183886197 -33.6183886197 -32.2176254633 -32.2176254633 -30.8168618497 -30.8168618497 -29.4160978163 -29.4160978163 -28.0153333971 -28.0153333971 -26.6145686235 -26.6145686235 -25.2138035245 -25.2138035245 -23.8130381268 -23.8130381268 -22.4122724555 -22.4122724555 -21.0115065337 -21.0115065337 -19.6107403831 -19.6107403831 -18.2099740241 -18.2099740241 -16.8092074759 -16.8092074759 -15.4084407566 -15.4084407566 -14.0076738834 -14.0076738834 -12.6069068727 -12.6069068727 -11.2061397401 -11.2061397401 -9.80537250065 -9.80537250065 -8.40460516882 -8.40460516882 -7.00383775865 -7.00383775865 -5.60307028377 -5.60307028377 -4.20230275748 -4.20230275748 -2.80153519286 -2.80153519286 -1.40076760278 -1.40076760278 0.0 0.0 1.40076760278 1.40076760278 2.80153519286 2.80153519286 4.20230275748 4.20230275748 5.60307028377 5.60307028377 7.00383775865 7.00383775865 8.40460516882 8.40460516882 9.80537250065 9.80537250065 11.2061397401 11.2061397401 12.6069068727 12.6069068727 14.0076738834 14.0076738834 15.4084407566 15.4084407566 16.8092074759 16.8092074759 18.2099740241 18.2099740241 19.6107403831 19.6107403831 21.0115065337 21.0115065337 22.4122724555 22.4122724555 23.8130381268 23.8130381268 25.2138035245 25.2138035245 26.6145686235 26.6145686235 28.0153333971 28.0153333971 29.4160978163 29.4160978163 30.8168618497 30.8168618497 32.2176254633 32.2176254633 33.6183886197 33.6183886197 35.0191512783 35.0191512783 36.4199133944 36.4199133944 37.8206749188 37.8206749188 39.2214357971 39.2214357971 40.6221959691 40.6221959691 42.0229553678 42.0229553678 43.4237139181 43.4237139181 44.8244715363 44.8244715363 46.225228128 46.225228128 47.6259835864 47.6259835864 49.0267377906 49.0267377906 50.4274906027 50.4274906027 51.8282418647 51.8282418647 53.2289913948 53.2289913948 54.6297389826 54.6297389826 56.0304843832 56.0304843832 57.4312273097 57.4312273097 58.8319674237 58.8319674237 60.2327043235 60.2327043235 61.6334375279 61.6334375279 63.0341664557 63.0341664557 64.4348903984 64.4348903984 65.8356084831 65.8356084831 67.2363196214 67.2363196214 68.6370224388 68.6370224388 70.0377151737 70.0377151737 71.4383955308 71.4383955308 72.8390604615 72.8390604615 74.2397058267 74.2397058267 75.640325861 75.640325861 77.0409122839 77.0409122839 78.4414527571 78.4414527571 79.8419280416 79.8419280416 81.2423063669 81.2423063669 82.6425311716 82.6425311716 84.0424908174 84.0424908174 85.4419288461 85.4419288461 86.8400886573 86.8400886573 88.2332202827 88.2332202827 90.0 -time -days since 0000-1-1 -682565.5 682595.0 682624.5 -682550.0 682581.0 682581.0 682609.0 682609.0 682640.0 -246 236 226 249 239 232 254 245 239 259 250 245 263 254 249 265 256 247 266 255 243 267 255 243 268 260 250 269 263 252 269 265 254 269 267 255 271 269 257 271 270 259 271 272 263 271 273 266 272 273 269 272 274 271 274 275 272 274 275 273 275 276 274 276 277 274 276 277 275 277 278 276 278 279 277 279 280 278 280 280 279 281 281 280 282 282 281 283 284 283 285 285 285 287 287 286 288 288 288 290 290 289 291 291 290 292 292 291 292 292 291 292 293 292 293 293 292 293 293 292 293 294 293 294 294 293 294 294 294 295 295 295 295 296 295 296 296 296 296 297 296 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 300 300 299 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 298 298 298 298 298 299 298 298 299 299 299 300 300 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 296 296 296 296 296 296 296 296 295 295 295 295 295 294 294 294 293 293 293 291 291 292 290 290 291 289 289 290 288 288 289 288 287 288 287 286 286 286 285 285 285 284 284 283 283 282 282 281 280 280 280 278 279 279 277 277 277 275 276 276 275 275 276 274 275 275 274 274 275 274 274 274 273 274 274 273 274 274 272 273 273 271 272 272 269 272 272 266 270 270 260 266 266 252 261 261 247 259 256 245 256 253 242 254 251 237 251 248 236 249 247 237 247 246 238 248 246 239 248 245 240 248 244 239 248 245 239 247 246 239 246 246 239 245 246 239 244 245 239 244 244 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 249 240 232 254 245 239 259 251 246 263 255 249 265 256 247 266 255 243 267 255 243 268 260 250 268 263 252 268 265 255 269 266 256 270 268 258 271 270 260 271 271 263 271 273 267 271 273 269 272 274 271 273 275 272 274 275 273 275 276 274 276 277 274 276 277 275 277 278 276 278 279 277 279 280 278 280 280 279 281 281 280 282 282 281 283 284 283 285 285 285 287 287 287 288 288 288 289 290 289 291 291 290 291 291 291 292 292 291 292 292 291 292 293 292 293 293 292 293 293 293 294 294 293 294 294 294 295 295 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 300 300 299 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 298 298 298 299 298 298 299 299 299 300 299 300 300 300 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 296 296 296 296 296 296 296 295 295 295 295 295 295 294 294 294 293 293 293 291 291 292 290 290 291 289 289 290 288 288 289 288 287 287 287 286 286 286 285 285 285 284 284 283 283 282 282 281 280 280 280 278 279 279 277 277 277 276 276 277 275 276 276 275 275 276 274 275 275 274 274 275 273 274 274 273 274 274 272 273 273 271 273 273 269 272 272 266 270 270 260 266 266 253 262 261 249 259 257 247 257 254 244 255 252 238 251 249 236 249 248 237 247 246 239 248 247 240 248 245 240 248 245 239 248 245 239 247 246 239 246 246 239 245 246 239 244 245 239 244 244 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 249 240 232 254 245 239 259 251 246 263 255 249 265 255 247 266 255 243 267 255 243 268 260 249 268 262 252 268 265 255 269 266 257 270 268 258 270 270 261 271 271 263 271 272 267 271 273 269 272 274 271 273 275 272 274 275 273 275 276 274 276 277 274 276 277 275 277 278 276 278 279 277 279 280 278 280 280 279 281 281 280 282 282 281 283 284 283 285 285 285 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 291 292 291 292 292 291 292 293 292 293 293 292 293 293 293 294 294 293 294 294 294 295 295 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 299 299 299 299 299 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 298 298 298 298 298 298 298 298 298 299 299 299 299 299 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 298 298 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 295 295 295 295 294 294 294 293 293 293 291 291 292 290 290 291 289 289 290 288 288 288 287 287 287 287 286 286 286 285 285 285 284 283 283 283 282 282 281 280 281 280 278 279 279 277 278 278 276 277 277 276 276 276 275 275 276 275 275 275 274 275 275 273 274 274 273 274 274 272 273 273 271 273 273 269 272 272 266 270 270 260 266 266 254 262 261 250 260 258 248 258 255 245 256 253 239 252 249 237 249 248 237 248 246 239 248 246 240 248 245 240 248 245 240 248 246 239 247 246 239 246 246 239 245 245 239 244 245 239 244 244 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 249 240 232 254 245 239 260 251 246 264 255 249 266 255 246 266 255 243 267 256 243 267 260 249 268 262 253 268 265 255 268 266 257 269 268 259 270 269 261 270 271 264 271 272 267 271 273 269 272 274 271 273 275 272 274 275 273 275 276 274 276 277 275 276 277 275 277 278 276 278 279 277 279 280 278 280 281 279 281 281 280 282 282 281 283 284 283 285 286 285 287 287 287 288 288 288 289 289 289 290 290 290 291 291 290 291 292 291 292 292 291 292 292 292 293 293 292 293 293 293 294 294 293 294 294 294 295 295 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 299 299 299 299 299 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 298 298 298 298 298 298 298 298 298 299 299 299 299 299 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 298 298 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 295 295 295 295 294 294 294 293 293 293 291 292 291 290 290 290 289 289 289 288 288 288 287 287 287 287 286 286 286 285 285 284 284 283 283 283 282 282 281 280 281 280 279 279 279 277 278 278 277 277 277 276 276 276 275 276 276 275 275 275 274 275 275 274 274 275 273 274 274 272 274 274 271 273 273 269 272 272 266 269 270 260 265 265 254 262 261 251 260 258 249 258 256 246 256 254 240 252 250 238 250 248 238 248 246 239 248 246 240 248 246 240 248 246 240 248 246 239 247 246 239 246 247 239 245 245 239 244 245 239 244 244 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 249 240 232 254 245 240 260 251 246 264 255 249 266 255 246 266 255 243 267 256 243 267 260 248 267 262 253 268 265 256 268 266 258 269 268 259 269 269 261 270 271 264 271 272 267 271 273 269 272 274 271 273 274 272 274 275 273 275 276 274 276 276 275 276 277 275 277 278 276 278 279 277 279 280 278 280 281 279 281 281 280 282 282 281 283 284 283 285 286 285 287 287 287 288 288 288 289 289 289 290 290 290 290 291 290 291 291 291 292 292 291 292 292 292 293 293 292 293 293 293 294 294 293 294 294 294 295 295 294 295 295 295 296 296 296 296 297 296 296 297 297 297 298 297 298 298 298 298 299 299 298 299 299 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 299 299 300 299 299 299 298 298 298 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 299 299 299 299 299 299 298 298 298 298 298 298 297 298 298 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 295 295 295 295 294 294 294 293 293 293 291 292 291 290 290 290 289 289 289 288 288 288 287 287 287 287 286 286 286 285 284 284 284 283 283 282 281 282 281 280 281 280 279 279 279 278 278 278 277 277 277 276 277 277 275 276 276 275 276 276 274 275 275 274 275 275 273 274 274 272 274 274 271 273 273 269 272 272 266 269 269 260 265 265 254 262 261 252 261 258 250 259 256 245 256 254 241 253 251 239 250 248 239 248 247 239 248 247 240 248 246 240 248 246 240 248 246 239 247 246 239 246 246 239 245 246 239 244 245 239 244 244 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 249 240 232 254 245 240 260 251 247 264 255 249 266 255 246 266 255 243 267 256 244 267 259 248 267 262 253 268 265 256 268 266 258 269 268 260 269 269 262 270 271 264 271 272 267 271 273 269 272 273 271 273 274 272 274 275 273 275 276 274 276 276 275 276 277 275 277 278 276 278 279 277 279 280 278 280 281 279 281 281 280 282 283 282 283 284 283 285 286 285 287 287 287 288 288 288 289 289 289 290 290 289 290 291 290 291 291 291 291 292 291 292 292 291 293 293 292 293 293 293 293 294 293 294 294 294 295 295 294 295 296 295 295 296 296 296 296 296 296 297 297 297 298 297 297 298 298 298 299 299 298 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 299 299 298 298 298 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 299 299 299 299 299 299 298 298 298 298 298 298 297 298 298 297 297 297 296 297 297 296 296 296 295 296 296 295 295 295 295 295 295 295 294 294 294 293 293 293 292 292 291 290 290 290 289 289 289 288 288 288 287 287 287 286 286 286 285 285 284 284 284 283 283 282 281 282 281 280 281 280 279 279 279 278 278 278 277 278 277 276 277 277 276 276 276 275 276 276 274 275 275 274 275 275 273 274 274 272 274 274 271 273 273 269 271 271 266 268 268 260 265 264 255 263 260 252 261 258 250 259 257 246 257 254 242 254 252 240 251 249 240 249 248 240 249 247 240 248 247 240 248 246 240 248 246 239 246 246 239 246 246 239 245 246 238 244 245 239 244 245 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 249 240 233 255 246 240 260 252 247 264 255 249 266 255 245 266 255 243 267 256 244 267 259 248 268 262 253 268 265 256 268 267 258 269 268 260 269 270 262 270 271 264 271 272 267 271 272 269 272 273 271 273 274 272 274 275 273 275 276 274 275 276 275 276 277 275 277 278 276 278 278 277 279 279 278 280 280 279 281 281 280 282 283 282 283 284 284 285 286 285 286 287 287 288 288 288 289 289 289 290 290 289 290 291 290 291 291 290 291 292 291 292 292 291 292 293 292 293 293 293 293 294 293 294 294 294 294 295 294 295 296 295 295 296 295 296 297 296 296 297 297 297 298 297 297 298 298 298 299 299 298 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 298 298 298 297 297 298 298 298 298 298 299 299 299 299 299 299 300 299 299 299 299 299 299 299 298 298 298 298 298 298 297 298 298 297 297 297 296 297 297 296 296 296 295 296 296 295 295 295 295 295 295 295 294 294 294 293 293 293 292 292 291 290 290 290 289 289 289 288 288 288 287 287 287 286 286 286 285 285 284 284 284 283 283 282 282 282 281 280 281 280 279 280 279 278 279 278 277 278 277 277 277 277 276 276 276 275 276 276 274 275 275 274 275 275 273 274 274 272 274 273 271 273 272 269 271 271 265 268 268 259 265 263 255 263 260 253 262 259 251 260 257 247 257 255 244 254 252 242 252 250 241 251 249 240 249 248 240 248 247 240 248 247 240 248 247 239 246 247 239 245 247 239 245 246 238 244 245 238 244 245 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 250 240 233 255 246 240 260 252 247 264 255 249 265 255 245 266 255 243 266 257 245 267 259 248 268 263 253 268 265 256 268 267 258 269 268 260 269 270 262 270 271 264 271 272 267 271 272 269 272 273 271 273 274 272 274 275 273 275 276 274 275 276 275 276 277 275 277 278 276 278 278 277 279 279 278 280 280 279 281 281 281 282 283 282 283 284 284 285 285 285 286 287 287 288 288 287 289 289 288 289 290 289 290 290 290 290 291 290 291 292 291 292 292 291 292 293 292 293 293 292 293 294 293 294 294 294 295 295 294 295 296 295 295 296 295 296 297 296 296 297 297 297 298 297 297 298 298 298 299 298 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 298 298 298 297 297 298 298 298 298 298 299 299 299 299 299 299 300 299 299 299 299 299 299 299 298 298 299 298 298 298 297 298 298 297 297 297 296 297 297 296 296 296 295 296 296 295 295 295 295 295 295 295 294 294 294 294 293 293 292 292 291 291 291 290 289 289 289 288 288 288 287 287 287 286 286 286 285 285 285 284 284 283 283 282 282 282 281 281 281 280 279 280 279 278 279 278 278 278 277 277 277 277 276 277 276 275 276 276 274 275 275 274 275 274 273 274 274 272 274 273 271 273 272 269 271 270 264 267 267 259 265 263 256 264 261 254 262 259 252 260 257 249 258 255 246 255 253 244 253 251 242 252 250 241 250 248 240 248 248 240 248 247 240 248 247 239 246 247 239 245 246 238 245 246 238 244 245 238 244 245 240 243 244 241 242 243 240 242 242 240 242 241 239 241 240 246 236 227 250 240 233 255 246 240 261 252 247 264 255 249 265 255 245 266 255 243 266 257 245 267 259 249 268 263 253 268 265 256 268 267 258 269 268 260 269 270 262 270 271 264 271 271 267 271 272 269 272 273 271 273 274 272 274 275 273 275 275 274 275 276 275 276 277 275 277 278 276 278 278 277 278 279 278 279 280 279 280 281 281 282 282 282 283 284 284 284 285 285 286 286 286 287 288 287 288 289 288 289 289 289 290 290 289 290 291 290 291 291 290 292 292 291 292 293 292 293 293 292 293 294 293 294 294 294 294 295 294 295 296 295 295 296 295 296 297 296 296 297 297 297 298 297 297 298 298 298 299 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 298 298 299 297 297 298 297 298 298 298 299 299 299 299 300 299 300 299 299 299 299 299 299 299 298 298 299 298 298 298 297 298 298 297 297 297 296 297 297 296 296 296 295 296 296 295 295 295 295 295 295 295 294 294 294 294 294 293 293 292 292 291 291 290 289 290 289 288 288 288 287 287 287 286 286 286 285 285 285 284 284 283 283 283 282 282 281 281 281 280 280 280 279 279 279 278 278 278 277 277 277 277 276 277 276 275 276 276 275 276 275 274 275 274 272 274 273 272 274 273 271 273 271 269 271 269 264 267 266 260 265 263 257 264 261 255 263 259 253 261 258 250 259 256 247 256 254 245 254 252 244 252 250 242 250 249 241 249 248 241 248 247 240 248 247 239 246 247 239 245 246 238 244 246 238 244 245 238 244 245 239 243 244 241 242 243 240 242 242 240 242 241 239 241 240 246 236 226 250 240 233 255 246 241 261 252 247 264 255 248 265 255 245 266 255 243 266 257 246 267 260 249 268 263 253 268 265 257 269 267 259 269 268 260 269 269 262 270 270 265 271 271 267 271 272 269 272 273 271 273 274 272 274 274 273 275 275 274 275 276 275 276 277 276 277 277 276 278 278 277 278 279 278 279 280 279 280 281 281 281 282 282 283 283 284 284 285 285 286 286 286 287 287 287 288 288 288 289 289 289 289 290 289 290 291 290 291 291 290 291 292 291 292 293 292 292 293 292 293 294 293 294 294 294 294 295 294 295 296 295 295 296 295 296 297 296 296 297 297 297 298 297 297 298 298 298 299 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 297 298 298 297 297 298 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 298 299 299 298 298 298 297 298 298 297 297 297 296 297 297 296 296 296 295 296 296 295 295 295 295 295 295 295 294 294 294 294 294 293 293 293 292 291 291 290 290 290 289 288 289 288 287 287 287 286 286 286 285 285 284 284 284 283 283 283 282 282 282 281 281 280 280 280 279 279 279 278 278 278 277 277 278 277 276 277 276 275 276 275 275 276 275 274 275 274 272 274 273 271 273 272 270 273 271 268 270 268 264 267 265 260 265 263 257 264 261 256 263 260 254 261 258 251 260 256 248 256 254 246 255 252 244 252 251 242 250 250 241 249 249 241 248 248 240 248 247 239 246 247 239 245 246 238 244 246 237 244 245 238 244 245 239 243 244 241 242 243 241 242 242 240 242 241 239 241 240 246 236 227 250 240 233 255 246 241 261 252 247 264 255 248 265 255 245 266 255 244 266 257 246 267 260 249 268 263 253 268 265 257 269 267 259 269 268 260 270 269 262 270 270 265 271 271 267 271 272 269 272 272 271 273 273 272 274 274 273 275 275 274 275 276 275 276 277 276 277 277 276 278 278 277 278 279 278 279 280 279 280 281 281 281 282 282 283 283 283 284 285 285 286 286 286 287 287 287 288 288 288 288 289 288 289 290 289 290 290 290 291 291 290 291 292 291 292 292 292 292 293 292 293 294 293 294 294 294 294 295 294 295 295 295 295 296 295 296 296 296 296 297 297 297 297 297 297 298 298 298 299 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 297 298 298 297 297 298 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 298 299 299 298 298 298 297 298 298 297 297 297 296 297 297 296 296 296 295 296 296 295 295 295 295 295 295 295 294 294 294 294 294 293 293 293 292 292 292 290 290 290 289 289 289 288 287 287 287 286 286 286 285 285 284 284 284 283 283 283 282 282 282 281 281 280 280 280 279 279 279 278 278 278 277 277 278 277 276 277 276 276 276 275 275 276 275 274 275 274 273 274 273 271 273 272 270 272 270 268 270 268 263 267 265 260 265 262 257 264 261 255 263 260 253 261 258 249 259 256 248 257 254 246 255 253 245 253 251 243 250 250 242 249 249 241 248 248 240 248 247 239 246 246 238 245 246 238 244 246 237 244 245 238 244 245 239 243 244 240 242 243 241 242 242 240 242 241 239 241 240 246 237 227 250 240 233 255 246 241 261 252 247 264 255 248 265 255 244 266 255 244 266 257 247 267 259 249 268 263 253 269 265 257 269 267 259 269 268 260 270 269 262 270 270 265 271 271 267 271 272 269 272 272 271 273 273 272 274 274 273 275 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 286 286 286 287 287 287 288 288 288 288 289 288 289 290 289 290 290 290 291 291 290 291 292 291 292 292 292 292 293 292 293 294 293 294 294 294 294 295 294 295 295 295 295 296 295 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 297 298 298 297 297 298 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 298 297 296 297 297 296 296 296 296 296 296 295 295 295 295 295 295 295 294 294 294 294 294 293 293 293 292 292 292 291 290 290 289 289 289 288 287 288 287 286 286 286 285 285 284 284 284 283 283 283 282 282 282 281 281 280 280 280 279 279 279 278 278 278 277 277 278 277 277 277 276 276 277 275 275 276 275 274 275 274 273 274 273 271 273 272 269 272 269 267 270 267 263 267 264 259 266 262 255 263 260 253 262 259 252 261 258 248 259 256 247 257 254 246 255 253 245 253 252 243 251 251 242 249 250 241 248 248 240 247 247 239 246 247 238 245 246 237 244 246 237 244 245 238 244 245 239 243 244 240 242 243 241 242 241 240 242 241 239 241 240 246 237 227 250 240 233 255 246 241 261 252 247 264 255 248 265 255 244 265 255 244 266 257 247 267 259 249 268 262 253 269 265 257 270 266 259 270 267 261 270 269 263 270 270 265 271 271 267 271 272 269 272 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 279 278 279 279 279 279 280 280 280 281 281 281 282 282 283 283 283 284 284 285 285 286 286 287 287 287 287 288 288 288 289 288 289 289 289 290 290 289 290 291 290 291 291 291 292 292 292 292 293 292 293 293 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 299 297 298 298 297 297 298 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 295 295 295 295 294 294 294 294 294 294 293 293 292 292 292 291 291 291 290 289 289 288 288 288 287 286 286 286 285 285 285 284 284 284 283 283 282 282 282 281 281 281 280 280 279 279 279 278 279 279 278 278 278 277 277 277 276 276 277 275 275 276 275 274 275 274 273 275 273 272 274 271 269 272 269 266 269 266 262 267 263 258 265 261 254 263 259 251 261 258 251 261 258 247 258 256 245 256 254 244 254 253 244 253 252 243 250 251 242 249 250 241 248 249 240 247 247 239 246 247 238 244 246 237 244 245 237 244 245 237 244 245 239 243 244 240 242 243 241 241 241 240 241 241 239 241 240 246 236 227 250 240 233 255 246 241 261 252 247 264 255 248 265 255 244 265 255 244 266 257 247 267 259 249 268 262 252 269 265 257 270 266 259 270 267 261 270 269 263 270 269 265 271 271 268 271 271 269 272 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 279 278 279 280 279 280 280 280 280 281 281 281 282 282 283 283 283 284 284 285 285 286 286 286 287 287 287 288 287 288 288 288 289 289 289 289 290 289 290 291 290 291 291 291 291 292 292 292 293 292 293 293 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 299 297 298 298 297 298 298 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 295 295 295 295 294 294 294 294 294 294 293 293 293 293 292 291 291 291 290 290 290 289 288 288 287 287 286 286 286 285 285 285 284 284 283 283 283 282 282 282 281 281 281 280 279 280 279 278 279 279 278 278 278 277 277 278 276 276 277 276 275 276 275 275 276 274 273 275 273 272 274 271 269 272 269 266 269 265 262 267 263 257 265 261 253 263 259 251 262 258 248 260 257 246 258 256 244 256 254 243 254 253 243 252 252 243 250 251 243 249 251 241 248 249 240 247 247 239 245 247 238 244 246 237 244 245 236 244 245 237 243 245 239 243 244 240 242 243 241 241 241 240 241 241 239 241 240 246 237 227 250 241 233 256 246 241 261 252 247 264 255 248 265 255 244 265 255 245 266 257 248 267 259 249 268 262 252 269 265 256 270 266 259 270 267 261 270 269 263 270 269 265 271 270 268 271 271 269 272 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 279 278 279 280 279 280 280 280 281 281 281 282 282 282 283 283 284 284 284 285 285 286 286 286 287 287 287 288 287 288 288 288 289 289 289 289 290 289 290 291 290 291 291 291 291 292 292 292 293 292 293 293 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 299 298 297 298 298 297 297 298 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 297 297 297 297 297 297 297 296 297 296 296 296 296 295 295 295 295 295 295 295 294 294 294 294 294 294 294 293 293 293 293 292 292 291 290 290 290 289 289 288 288 287 287 286 286 285 285 285 284 284 284 283 283 283 282 282 281 281 281 280 280 280 280 279 279 279 278 278 278 277 277 278 276 276 277 276 276 276 275 275 276 274 274 275 273 272 274 271 269 273 269 265 269 265 261 267 263 255 264 260 252 263 259 250 262 258 248 260 257 246 259 256 244 256 255 242 254 253 242 252 252 243 250 252 243 249 251 242 248 249 240 247 247 238 245 246 238 244 245 237 243 245 236 244 245 237 243 245 239 242 244 240 242 243 241 241 241 239 241 241 239 241 240 247 237 227 250 241 233 256 246 241 261 252 247 264 255 248 265 254 244 265 255 245 266 257 248 267 260 250 268 262 252 269 265 256 270 266 259 270 267 261 270 268 263 270 269 265 271 270 268 271 271 269 272 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 279 278 279 280 279 280 281 280 281 281 281 282 282 283 283 283 284 284 284 285 285 285 286 286 287 287 287 287 287 288 288 288 288 289 289 289 290 289 290 290 290 290 291 291 291 292 292 292 293 292 293 293 293 293 294 294 294 294 294 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 299 298 297 298 298 297 297 297 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 297 298 297 297 297 297 297 296 297 296 296 296 296 295 295 295 295 294 295 294 294 294 294 294 294 294 294 293 293 293 293 292 292 291 291 291 290 289 289 288 288 288 287 287 286 286 286 285 284 284 284 283 283 283 282 282 282 281 281 281 280 280 280 279 279 279 278 278 279 277 277 278 276 277 277 276 276 277 275 275 276 274 274 275 273 272 275 272 270 273 269 265 270 264 261 267 263 255 265 260 252 263 259 250 262 258 248 261 258 246 259 256 244 256 255 242 254 253 242 252 252 243 250 252 243 249 251 241 248 249 239 247 248 238 245 247 237 244 245 237 243 245 236 243 245 237 243 244 239 242 243 240 242 243 241 241 241 239 241 241 239 241 240 247 237 227 250 241 233 256 246 241 261 252 247 264 255 248 265 254 244 265 255 245 266 256 248 267 259 251 268 261 251 270 264 256 270 266 259 271 267 261 270 268 264 270 269 266 271 270 268 271 271 269 272 272 271 272 273 272 273 274 273 274 274 274 275 276 275 276 277 276 277 277 277 278 278 278 279 279 279 280 281 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 288 289 289 289 289 289 289 290 290 290 291 291 291 292 292 292 292 292 293 293 293 293 294 294 294 294 294 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 298 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 299 298 297 298 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 298 297 297 297 297 297 297 296 296 296 296 295 295 295 295 295 294 294 294 294 294 294 294 294 294 294 293 293 293 293 292 292 292 291 291 290 290 289 289 288 288 287 287 287 286 286 285 285 285 284 283 284 283 282 282 282 281 281 281 280 280 280 279 279 280 278 278 279 277 278 278 277 277 277 276 276 277 275 275 276 274 274 275 273 273 275 272 270 273 269 266 271 266 261 268 262 255 264 260 252 263 259 250 262 258 248 260 258 246 259 257 243 256 255 242 253 253 241 251 252 243 250 252 242 249 251 241 248 250 239 246 248 238 245 247 237 244 245 236 243 245 236 243 245 237 243 244 239 242 243 240 242 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 247 264 255 247 265 254 244 265 255 246 266 256 249 267 259 251 268 261 251 269 264 256 270 266 259 271 267 261 270 268 264 270 269 266 271 270 268 271 271 270 272 272 271 272 273 272 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 285 286 286 286 287 287 287 288 288 288 288 288 289 289 289 289 289 290 290 290 291 291 291 292 292 292 292 292 293 293 293 293 294 294 294 294 294 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 299 299 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 299 298 297 298 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 298 297 297 297 297 297 297 296 296 296 295 295 295 295 294 294 294 294 294 294 294 294 294 293 294 293 293 294 293 293 293 292 292 292 291 291 290 290 289 289 288 288 287 287 286 286 286 285 285 284 284 284 284 283 283 283 281 282 282 280 281 281 279 280 280 278 279 279 277 278 278 277 277 278 276 276 277 275 275 276 274 274 276 274 273 275 272 271 274 270 268 272 267 261 268 263 255 264 260 252 263 258 250 262 258 248 261 258 246 258 257 244 256 255 241 253 253 241 251 252 243 250 253 242 249 251 241 248 250 239 246 248 237 245 247 237 243 245 236 243 245 236 243 245 237 243 244 239 242 243 240 242 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 247 264 254 247 265 254 244 265 255 246 266 256 249 266 259 251 267 261 251 269 264 256 270 266 259 271 267 262 270 268 264 270 269 266 271 270 268 271 271 270 272 272 271 272 273 272 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 281 281 282 282 282 283 283 283 283 284 284 284 285 285 285 285 286 286 286 287 287 287 287 288 288 288 288 289 289 289 289 289 290 290 290 291 291 291 292 292 292 292 292 293 293 293 293 294 294 294 294 294 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 299 298 299 299 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 297 298 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 298 297 297 297 297 296 296 296 296 296 295 295 295 295 294 294 294 294 294 294 294 294 294 293 294 293 293 294 293 293 293 293 292 292 292 291 291 290 290 289 289 288 288 287 286 286 286 285 285 285 284 284 284 283 283 283 282 282 282 280 281 281 279 280 280 278 279 279 277 278 278 277 277 278 276 276 277 275 275 276 275 275 276 274 273 275 273 272 275 271 268 272 267 264 269 264 256 264 260 252 262 258 250 261 257 248 260 257 245 258 256 244 256 255 241 253 253 241 251 252 242 250 253 242 248 252 241 248 250 239 246 248 237 244 247 236 243 245 236 243 245 236 243 245 237 243 244 239 242 243 240 242 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 247 264 254 247 265 254 245 265 255 247 265 256 249 266 259 251 267 261 251 269 263 256 270 266 259 271 267 262 270 268 264 270 269 266 271 270 268 271 271 270 272 272 271 272 273 272 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 281 281 281 282 282 283 283 283 283 284 284 284 284 285 285 285 286 286 286 287 287 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 291 291 292 292 292 292 293 293 293 293 293 294 294 294 294 294 295 295 295 295 296 296 296 296 296 296 297 297 297 298 297 297 298 298 298 299 298 299 299 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 298 298 298 297 297 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 297 297 297 297 296 297 296 296 296 295 295 295 295 294 295 294 294 294 294 293 294 294 293 294 293 293 293 293 292 293 293 292 292 292 291 291 291 290 290 289 288 288 288 286 287 286 285 286 285 284 285 284 283 283 283 282 282 282 281 281 281 279 280 280 278 279 279 277 278 278 277 277 278 276 276 277 275 276 276 275 275 276 274 274 275 273 272 275 271 270 273 268 265 269 265 259 265 261 252 262 258 249 260 256 248 260 257 245 258 256 244 256 255 241 253 253 241 251 252 242 249 253 242 248 252 241 248 250 238 246 248 237 244 247 236 243 245 235 242 245 235 243 245 237 242 244 239 242 243 240 242 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 247 264 254 247 265 254 245 265 255 247 265 256 250 266 258 251 266 260 251 269 263 256 270 266 259 271 267 262 270 268 265 270 269 267 271 270 269 271 271 270 272 272 271 272 273 272 273 273 273 274 274 274 275 275 275 276 276 276 276 277 277 277 278 278 279 279 279 280 280 281 281 281 282 282 283 283 283 283 284 284 284 284 285 285 285 286 286 286 287 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 291 291 292 292 292 293 293 293 293 293 293 294 294 294 295 294 295 295 295 295 296 295 296 297 296 296 297 297 297 298 297 298 298 298 298 299 298 299 299 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 298 298 298 297 297 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 297 297 297 296 296 297 296 296 296 296 295 295 295 294 295 294 294 294 294 293 294 293 293 294 293 293 293 293 292 293 293 292 292 292 291 292 291 290 290 290 288 289 288 287 287 286 285 286 285 284 285 284 283 283 283 282 282 282 281 281 281 280 280 280 278 279 279 278 278 279 277 277 278 276 277 277 276 276 276 275 275 275 274 274 275 273 273 275 272 271 274 270 267 270 266 261 266 262 253 262 258 249 260 256 247 259 256 245 257 256 243 255 255 241 253 253 240 251 252 242 249 253 242 248 252 241 247 250 238 245 248 237 244 247 236 243 245 235 242 245 235 242 244 237 242 244 239 242 243 240 242 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 247 264 254 247 265 255 245 265 255 248 265 256 250 265 258 251 266 259 251 268 262 256 270 266 260 271 267 263 270 268 265 270 269 267 271 270 269 271 271 270 272 272 271 272 273 272 273 274 273 274 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 280 280 281 281 281 282 282 282 283 283 283 284 284 284 284 285 285 285 286 286 286 287 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 291 291 292 292 292 293 293 293 293 293 293 294 294 294 295 294 295 296 295 295 296 295 296 297 296 296 297 297 297 298 297 298 299 298 298 299 298 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 298 298 298 297 297 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 300 299 299 299 299 299 299 298 298 298 297 298 298 297 297 297 297 297 297 296 296 297 296 296 296 296 295 295 295 294 295 294 294 294 294 293 294 293 293 293 293 292 293 293 292 293 292 292 293 292 291 292 291 290 291 290 289 289 288 287 288 287 285 286 286 284 285 285 283 284 284 282 283 283 281 281 282 280 280 281 279 279 280 278 278 279 277 277 278 276 277 277 276 276 276 275 275 275 274 274 275 273 273 275 272 272 274 271 269 271 267 263 267 263 254 262 259 249 260 256 247 258 255 245 257 255 243 255 254 241 252 253 240 251 252 242 249 253 242 248 252 241 247 251 238 245 248 236 243 246 235 242 245 235 242 244 235 242 244 237 242 243 238 242 243 240 242 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 247 264 254 247 265 255 245 265 255 248 264 257 250 265 258 251 266 259 252 267 262 256 270 265 260 271 267 263 271 269 265 270 269 267 271 270 269 271 271 271 272 272 272 273 273 272 273 274 273 274 274 274 274 275 275 275 276 275 276 276 277 277 278 278 278 279 279 280 280 281 281 281 282 282 282 283 283 283 284 284 284 284 285 285 285 286 286 286 287 286 287 287 287 288 288 288 289 289 289 290 290 290 290 291 291 291 291 291 292 292 292 293 292 293 293 293 293 294 294 294 295 294 295 296 295 295 296 295 296 297 296 296 297 297 297 298 297 298 299 298 298 299 298 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 298 298 298 297 297 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 300 299 299 299 299 299 299 298 298 298 297 297 298 297 297 297 297 296 297 296 296 297 296 295 296 295 295 295 295 294 294 294 294 294 293 293 294 293 292 293 293 292 293 292 292 293 292 291 293 292 291 292 291 290 291 291 289 290 289 288 288 287 286 287 286 285 285 285 283 284 284 282 283 283 281 282 282 280 280 281 279 279 280 278 278 279 277 278 278 276 277 277 276 276 276 275 275 275 274 274 275 273 274 275 273 273 274 272 270 272 269 265 268 264 254 261 259 249 258 256 247 257 255 245 257 255 243 255 254 240 252 253 240 251 252 241 249 252 242 248 252 241 247 250 238 244 248 236 243 246 235 242 245 234 242 244 235 242 244 237 242 243 238 242 243 239 241 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 246 264 254 247 265 255 246 265 256 248 264 256 250 265 257 251 266 259 252 267 261 255 270 265 260 271 267 263 271 269 266 270 270 268 271 270 269 271 271 271 272 272 272 273 273 273 273 274 273 274 275 274 274 275 275 275 276 276 276 276 277 277 277 278 278 279 279 280 280 281 281 281 282 282 282 283 283 283 284 284 284 284 285 285 285 286 286 286 287 287 287 287 288 288 288 288 289 289 289 290 290 290 290 291 291 291 291 291 292 292 292 293 292 293 293 293 293 294 294 294 295 294 295 296 295 295 296 295 296 297 296 297 298 297 297 298 297 298 299 298 298 299 298 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 298 297 297 297 297 296 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 297 298 297 297 297 296 296 297 296 296 296 296 295 296 295 295 295 295 294 294 294 293 294 293 293 293 293 292 293 292 292 293 292 292 293 292 291 292 292 291 292 291 290 291 291 289 290 289 288 289 288 287 287 286 285 286 285 284 285 284 282 283 283 281 282 282 280 281 281 279 280 280 278 279 279 277 278 278 276 277 277 276 276 276 275 275 276 274 274 275 274 274 275 273 273 275 272 271 273 270 265 268 265 256 261 259 249 258 255 247 257 254 245 256 255 242 254 254 240 252 253 240 251 252 241 248 252 242 248 252 241 246 250 238 244 248 236 243 246 235 242 245 234 241 244 235 242 244 236 242 243 238 241 242 239 241 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 255 246 241 261 252 246 264 254 247 265 255 246 265 256 248 264 256 250 264 257 251 265 259 252 266 261 255 269 265 260 271 267 263 271 269 266 271 270 268 271 270 269 271 271 271 272 273 272 273 274 273 274 274 274 274 275 274 275 275 275 275 276 276 276 276 277 277 277 278 278 279 279 280 280 281 281 281 282 282 282 283 283 283 284 284 284 284 285 285 285 286 286 286 287 287 287 287 288 288 288 289 289 289 289 290 290 290 290 291 291 291 291 291 292 292 292 293 292 293 293 293 293 294 294 294 295 294 295 296 295 295 296 295 296 297 296 297 298 297 297 298 297 298 299 298 299 299 299 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 297 297 297 297 297 296 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 297 298 297 297 297 296 296 297 296 296 296 296 295 296 295 295 295 294 294 294 294 293 293 293 293 293 292 292 293 292 292 293 292 291 293 292 291 292 291 291 292 291 290 291 291 290 290 290 288 289 288 287 288 287 286 286 285 284 285 284 283 284 283 281 282 282 280 281 281 279 280 280 278 279 279 277 278 278 276 277 277 276 276 276 275 275 276 274 275 275 274 274 275 273 273 275 273 272 273 271 266 268 265 258 262 260 250 258 255 247 256 254 245 256 254 242 254 254 241 252 253 240 250 252 241 248 252 242 248 252 241 246 250 238 244 249 236 242 247 235 241 245 234 241 244 235 242 244 236 241 243 238 241 242 239 241 242 240 241 241 239 241 241 238 241 240 247 237 227 250 241 234 255 246 241 261 252 246 264 254 247 265 255 246 265 256 249 264 256 250 264 256 250 265 258 253 266 260 254 269 264 259 271 267 263 271 269 267 271 270 268 271 270 270 271 271 271 272 273 272 273 274 273 274 275 274 274 275 275 275 276 275 275 276 276 276 276 277 277 277 278 279 279 279 280 280 281 281 281 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 287 288 288 288 289 289 289 289 290 290 290 290 290 291 291 291 291 292 292 292 293 292 293 294 293 294 295 294 294 295 294 295 296 295 296 296 296 296 297 296 297 298 297 298 298 297 298 299 298 299 299 299 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 298 298 298 297 297 297 297 297 296 297 297 297 298 298 298 299 298 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 297 297 297 297 297 296 296 297 296 296 296 295 295 296 295 294 295 294 294 294 293 293 293 293 292 293 292 292 292 292 291 292 291 291 292 291 291 292 291 290 292 291 290 291 290 289 291 290 289 290 288 288 288 287 286 287 286 284 285 284 283 284 283 281 283 282 280 281 281 279 280 280 278 279 279 277 278 278 277 277 277 276 276 276 275 275 276 275 275 275 274 274 275 274 274 275 273 272 273 271 267 268 266 257 261 259 250 257 255 247 256 254 245 255 254 242 254 254 241 252 253 241 250 252 241 248 251 242 248 251 241 245 250 237 243 248 235 242 246 234 241 245 234 241 244 235 242 243 236 241 243 238 241 242 239 241 242 239 241 241 239 241 241 238 241 240 247 237 227 250 241 234 255 246 240 261 251 246 264 254 248 264 255 247 264 256 249 263 256 250 263 256 250 264 258 252 266 259 254 269 264 259 271 267 263 271 269 267 271 270 268 271 270 270 271 271 271 272 273 272 273 274 273 274 275 274 275 275 275 275 276 275 276 276 276 276 277 277 277 278 278 279 279 279 280 280 281 281 281 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 288 289 289 289 289 290 290 290 290 290 291 291 291 292 292 292 292 293 293 293 294 293 294 295 294 294 295 294 295 296 295 296 297 296 296 297 296 297 298 297 298 298 297 298 299 298 299 299 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 298 298 298 297 297 297 297 297 296 297 297 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 297 297 297 296 296 296 296 295 296 295 295 296 295 294 295 294 294 294 293 293 293 293 292 293 292 292 292 291 291 292 291 291 292 291 290 292 291 290 291 290 290 291 290 289 291 289 289 290 288 288 288 287 286 287 286 285 285 285 283 284 283 282 283 282 281 282 281 280 280 280 278 279 279 278 278 278 277 278 277 276 277 276 275 276 276 275 275 275 274 274 275 274 274 275 273 272 273 271 267 268 266 257 260 258 250 256 254 248 255 254 245 255 253 242 254 253 241 252 253 240 251 252 241 248 251 241 247 251 240 245 250 237 243 248 235 241 246 234 241 245 234 241 244 235 242 243 236 241 243 238 241 242 239 241 242 239 241 241 239 241 241 238 241 240 247 237 227 250 241 233 255 246 240 260 251 246 263 254 248 264 255 247 264 255 249 263 255 250 263 255 249 264 257 252 265 259 254 268 264 259 271 267 263 271 269 267 271 270 269 271 270 270 271 271 271 272 273 273 273 274 273 274 275 274 275 276 275 275 276 276 276 276 276 277 277 277 278 278 278 279 279 279 280 280 280 281 281 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 288 288 289 289 289 290 290 290 290 291 291 291 291 292 292 292 292 293 293 293 294 293 294 295 294 294 296 295 295 296 295 296 297 296 296 297 296 297 298 297 298 298 297 298 299 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 298 298 298 297 297 297 296 297 296 297 297 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 295 294 295 294 294 294 293 293 293 292 292 292 292 291 292 291 291 292 291 290 292 290 290 291 290 290 291 290 289 291 290 289 290 289 289 290 288 288 289 287 286 287 286 285 286 285 283 284 283 282 283 282 281 282 281 280 280 280 279 279 279 278 279 278 277 278 277 276 277 277 276 276 276 275 275 275 274 275 275 274 274 274 274 272 272 271 267 268 265 257 259 258 251 255 255 248 255 254 246 255 253 243 253 253 241 251 253 240 250 252 241 248 251 241 247 251 239 245 250 237 242 248 235 241 246 234 240 245 234 241 244 235 241 243 236 241 243 238 241 242 238 241 242 239 241 242 239 241 241 238 241 240 247 237 228 250 241 233 255 246 240 260 251 246 263 254 248 264 255 247 264 255 249 263 255 249 262 254 249 263 256 251 265 258 254 268 263 258 270 267 263 271 269 267 271 270 269 271 270 270 271 271 271 272 273 273 273 274 274 274 275 274 275 276 275 276 276 276 276 277 277 277 277 277 278 278 278 279 279 279 280 280 280 281 281 281 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 288 288 289 289 289 290 290 290 291 291 291 291 291 292 292 292 293 293 293 293 294 293 294 295 294 295 296 295 295 296 295 296 297 296 297 297 296 297 298 297 298 298 297 298 299 298 299 299 298 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 299 299 299 298 298 297 297 297 297 296 297 296 296 297 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 297 296 297 296 296 296 295 295 296 295 295 295 294 294 295 294 294 294 293 293 293 292 292 292 291 291 292 291 291 291 290 290 291 290 290 291 290 290 291 289 289 291 289 289 290 289 288 290 288 288 289 287 286 288 286 285 286 285 284 285 283 282 283 282 281 282 281 280 281 280 279 280 279 278 279 278 277 278 278 276 277 277 276 276 276 275 276 275 275 275 275 275 274 274 274 272 272 270 266 267 265 256 258 257 251 255 255 249 255 254 245 254 253 242 253 253 241 251 253 240 250 252 240 249 251 240 247 251 238 244 249 236 242 248 235 240 246 234 240 245 234 241 244 235 241 243 236 241 242 238 241 242 238 241 242 239 241 242 239 241 241 238 241 240 247 237 228 250 241 233 255 246 240 260 251 245 263 254 248 264 255 247 264 255 249 262 255 249 261 254 249 262 255 251 265 258 255 267 263 258 270 268 263 271 270 268 271 270 269 271 271 270 272 272 272 272 273 273 273 274 274 274 275 275 275 276 275 276 276 276 276 277 277 277 277 277 278 278 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 288 289 289 289 289 290 290 290 291 291 291 292 291 292 292 292 293 293 293 293 294 293 294 295 294 295 296 295 296 296 295 296 297 296 297 297 296 298 298 297 298 298 297 298 298 298 299 299 298 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 299 299 299 299 299 299 299 298 298 298 297 297 297 296 296 296 296 296 297 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 296 296 297 296 296 296 295 295 295 295 294 295 294 294 295 294 293 294 293 293 293 292 292 292 291 291 291 291 290 291 290 290 291 290 290 291 289 289 290 289 289 290 288 288 290 288 288 289 288 287 289 287 286 288 286 285 286 285 284 285 283 282 284 282 281 282 281 280 281 280 279 280 279 278 279 278 277 278 278 277 277 277 276 277 276 276 276 276 275 275 275 275 274 273 273 270 270 269 265 265 264 256 258 257 252 255 255 249 255 254 245 254 253 242 252 253 240 251 253 239 250 252 240 249 251 240 247 251 238 244 249 236 242 248 234 240 246 234 240 245 234 240 243 235 241 243 236 241 242 238 240 242 238 241 242 238 241 242 239 241 241 238 241 240 247 237 227 250 241 233 255 245 240 260 251 245 263 253 248 264 254 248 263 255 249 262 254 249 261 253 248 262 254 250 264 258 255 267 263 258 270 267 263 271 270 268 271 270 269 271 271 270 272 272 272 272 273 273 273 274 274 274 275 275 275 276 275 276 276 276 276 277 277 277 277 277 278 278 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 291 292 292 292 293 292 293 293 293 294 294 294 294 295 294 295 296 295 296 296 295 296 297 296 297 297 296 298 297 297 298 298 297 298 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 299 299 300 299 299 299 299 299 299 299 298 298 298 297 297 297 296 296 296 296 296 296 297 298 297 298 299 298 299 299 299 299 299 299 298 299 299 298 298 298 297 298 298 297 297 297 296 296 297 296 296 296 295 295 295 295 294 295 294 294 294 294 293 294 293 293 293 292 292 292 291 291 291 290 290 290 290 290 290 289 289 290 289 289 290 288 288 290 288 288 290 288 287 289 287 287 289 287 286 288 286 285 286 285 284 285 284 283 284 283 281 283 281 280 281 280 279 280 279 278 279 278 277 279 278 277 278 277 276 277 276 276 276 276 276 275 274 275 273 272 272 269 269 268 261 262 261 256 257 257 252 255 255 249 255 254 245 253 253 243 252 253 240 251 253 239 249 251 240 248 251 240 246 250 238 244 249 236 241 247 234 240 246 234 240 245 234 240 243 235 241 243 237 241 242 238 240 242 238 241 241 238 241 242 239 241 241 238 241 240 247 237 228 250 241 233 255 245 239 260 250 245 263 253 248 263 254 248 263 255 249 261 254 249 260 252 248 261 254 250 264 258 255 267 262 258 270 267 262 271 270 268 271 271 270 271 271 271 272 272 272 272 273 273 273 274 274 274 275 275 275 276 276 276 277 276 276 277 277 277 278 278 278 278 278 279 279 279 280 280 280 281 282 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 291 292 292 292 293 292 293 293 293 294 294 294 294 295 294 295 295 295 296 296 295 297 296 296 297 297 296 298 297 297 298 298 297 298 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 300 299 299 299 299 299 299 298 298 298 297 297 297 296 296 296 296 296 296 296 297 298 297 298 299 298 298 299 299 299 299 299 298 299 299 298 298 298 297 298 298 297 297 297 296 296 296 296 296 296 295 295 295 294 294 295 294 293 294 293 293 293 293 292 292 292 292 291 291 291 291 290 290 290 290 290 290 289 289 290 288 288 290 288 288 289 287 287 289 287 287 289 287 286 288 286 286 287 285 285 286 285 284 285 284 283 284 283 282 283 282 280 282 280 279 281 279 278 280 279 278 279 278 277 278 277 277 277 276 276 276 275 275 275 274 274 272 271 271 267 267 266 259 260 260 255 257 257 252 255 255 250 254 254 246 253 253 243 252 253 239 250 253 239 249 251 240 248 251 240 246 250 237 243 248 236 241 247 235 240 246 234 239 245 234 240 243 235 241 243 237 240 242 238 240 242 238 241 241 238 241 241 239 241 241 238 241 240 247 237 228 250 241 233 255 245 239 260 250 245 262 253 248 263 254 248 263 254 249 261 253 248 260 252 247 260 253 249 263 257 254 266 261 257 270 267 262 271 270 268 271 271 270 271 271 271 272 272 272 272 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 277 277 277 278 278 278 279 278 279 280 279 280 281 280 281 282 281 282 283 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 292 292 292 292 293 292 293 293 293 294 294 294 295 295 295 295 295 295 296 296 295 297 296 296 297 297 296 298 297 297 298 298 297 298 298 298 299 299 299 299 299 299 299 300 299 300 300 300 300 300 299 300 300 299 299 299 299 299 299 299 299 300 299 299 299 299 299 299 298 298 298 297 297 297 296 296 296 296 296 296 296 297 298 297 298 299 298 298 299 299 299 299 299 298 299 299 298 298 298 297 298 298 297 297 297 296 296 296 296 296 296 295 295 295 294 294 294 294 293 294 293 293 293 292 292 292 292 292 291 291 291 290 290 290 290 289 289 290 289 289 289 288 288 289 288 288 289 287 287 289 287 287 288 286 286 288 286 285 287 285 284 286 284 284 285 283 283 284 283 282 283 282 281 282 280 279 281 279 279 280 279 278 279 278 277 278 277 277 277 276 276 276 275 275 273 272 272 270 269 269 264 264 264 258 259 259 255 257 257 252 255 255 250 254 254 246 253 253 243 252 253 240 251 253 238 249 251 239 247 250 240 245 250 237 243 248 236 241 247 235 240 246 234 239 244 234 240 243 235 241 243 237 240 242 238 240 242 238 240 241 238 241 241 239 241 241 238 241 240 247 237 228 250 241 233 254 245 239 259 250 244 262 253 248 263 254 248 262 254 249 261 252 248 259 251 247 260 252 249 263 257 254 266 261 257 269 266 262 271 270 268 271 271 270 271 271 271 272 272 272 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 277 277 278 278 278 279 279 279 280 279 280 281 281 281 282 282 282 283 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 292 292 292 293 293 293 293 293 293 294 294 294 295 295 295 295 295 295 296 296 295 297 296 296 297 297 296 298 297 297 298 298 297 298 298 298 299 299 299 299 299 299 299 300 299 300 300 299 300 300 299 300 299 299 299 299 299 299 299 299 299 300 299 299 299 299 299 299 298 298 298 297 297 297 296 296 296 296 296 297 296 297 298 297 298 299 298 298 299 299 299 299 299 298 299 299 298 299 298 297 298 297 297 297 297 296 296 296 296 296 296 295 295 295 294 294 294 293 293 293 293 292 293 292 292 292 292 291 291 291 291 290 290 290 290 289 289 289 288 288 289 288 288 289 287 287 289 287 287 288 286 286 288 286 286 287 285 285 286 284 284 286 284 283 285 283 283 284 282 282 283 281 281 282 280 280 281 279 279 280 279 278 279 278 278 278 277 277 277 276 276 275 274 274 271 270 271 266 266 266 261 261 261 257 258 258 254 256 256 252 255 255 250 254 254 247 253 253 243 252 253 240 250 253 238 248 252 239 246 250 240 245 250 238 243 248 236 241 247 235 240 246 234 239 244 234 240 243 235 241 243 237 240 242 238 240 242 238 240 241 238 241 241 238 241 240 238 241 240 247 237 228 250 241 233 254 245 239 259 249 244 262 252 248 263 253 248 262 253 249 260 252 247 259 251 246 259 252 248 263 257 254 266 261 257 269 266 262 271 270 267 271 271 270 271 272 271 272 272 272 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 278 278 278 279 279 279 280 280 280 281 281 281 282 282 282 283 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 292 292 292 293 293 293 293 293 293 294 294 294 295 295 295 295 295 295 296 296 296 297 296 296 297 297 296 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 300 299 299 300 299 299 300 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 296 297 296 297 298 297 298 299 298 299 299 299 299 299 299 298 299 299 298 299 298 298 298 297 297 297 297 296 297 296 296 296 296 295 295 295 294 294 294 293 293 293 293 292 292 292 292 292 292 291 291 291 291 290 290 290 290 289 289 289 288 288 289 287 287 288 287 287 288 286 286 288 286 286 287 285 285 287 285 284 286 284 284 285 283 283 284 283 282 283 282 281 283 281 280 282 280 280 281 279 279 280 279 278 279 278 278 278 277 277 276 275 275 273 272 272 269 268 269 263 263 263 260 260 260 256 258 258 254 256 256 252 255 255 250 254 254 247 253 253 244 252 253 240 250 253 238 247 251 239 246 249 239 245 249 238 243 248 236 241 247 235 240 246 234 239 244 234 240 243 235 241 243 237 240 242 238 240 242 238 240 241 238 241 241 238 241 240 238 241 240 247 237 228 250 240 233 254 245 238 259 249 243 261 252 247 262 253 248 262 253 248 260 251 247 258 250 246 259 251 248 263 256 254 266 261 257 269 266 262 271 270 267 271 271 270 271 272 271 272 272 272 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 278 279 279 279 280 280 280 281 281 281 281 282 282 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 290 291 291 291 292 292 292 293 293 293 293 293 294 294 294 294 295 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 300 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 296 297 296 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 297 298 297 296 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 292 292 291 291 291 291 291 291 290 290 290 290 289 289 289 288 288 288 287 287 288 287 287 288 286 286 287 285 285 287 285 285 286 284 284 285 283 283 285 283 283 284 282 282 283 281 281 282 281 280 282 280 280 281 279 279 280 278 278 278 277 277 277 276 276 274 274 274 271 270 271 266 265 266 261 261 262 258 259 260 255 257 257 253 255 255 252 255 255 250 253 254 247 253 253 244 252 253 240 249 253 238 248 252 238 245 249 239 244 249 238 243 248 236 241 247 235 240 246 234 239 244 235 240 243 236 241 243 237 240 243 237 240 242 238 240 241 238 241 241 238 241 240 238 241 240 247 237 228 250 240 233 254 244 238 258 249 243 261 252 247 262 253 248 261 252 248 260 251 246 258 249 245 259 251 247 262 255 252 266 261 257 269 265 261 271 270 267 271 271 270 271 272 271 272 272 272 273 273 273 273 274 274 274 275 275 275 277 276 276 278 277 277 278 278 278 279 279 279 280 279 280 280 280 281 281 281 281 282 282 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 290 291 291 291 292 292 292 293 293 293 293 293 294 294 294 294 295 295 295 295 295 295 296 295 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 296 297 296 295 296 296 295 296 296 296 297 298 297 298 299 298 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 297 298 297 296 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 292 292 291 291 291 290 291 290 290 290 290 290 289 289 289 288 288 288 287 287 288 287 286 287 286 286 287 285 285 286 284 284 286 284 284 285 283 283 284 283 282 284 282 282 283 281 281 282 281 280 281 280 280 280 279 279 279 278 278 277 276 276 275 274 274 272 272 272 268 267 268 263 263 264 259 260 260 257 258 258 256 256 257 254 256 255 252 254 254 250 253 254 247 253 253 244 252 254 240 249 253 238 247 252 238 244 249 239 244 249 237 242 248 236 241 247 235 240 246 234 240 244 235 240 243 236 241 243 237 239 243 237 239 242 238 240 241 238 240 241 238 241 240 238 241 240 247 237 228 250 240 233 254 244 238 258 248 242 261 251 247 261 252 248 261 252 248 259 250 246 258 249 244 259 251 247 261 255 251 266 261 257 269 265 261 271 270 267 271 271 270 271 272 271 272 273 272 273 273 273 274 274 274 274 275 275 275 277 276 276 278 277 277 278 278 278 279 279 279 280 279 280 281 280 281 281 281 281 282 282 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 291 292 292 292 293 293 293 294 293 294 294 294 294 295 295 295 295 295 295 296 295 296 296 296 296 297 296 296 297 297 297 298 297 298 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 296 296 296 295 296 296 295 296 296 296 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 297 298 297 297 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 292 292 291 291 291 290 290 290 290 290 289 289 289 289 289 288 288 288 287 287 287 286 286 287 285 286 286 285 285 286 284 284 285 284 284 285 283 283 284 283 282 283 282 282 282 281 281 282 280 280 281 280 280 280 279 279 278 277 277 275 275 275 272 272 272 269 269 269 264 264 265 261 261 263 258 258 259 257 257 258 256 256 257 254 255 255 251 254 254 250 253 254 247 253 254 244 251 254 240 248 253 238 247 252 238 244 249 238 244 249 237 242 248 236 241 247 235 240 245 234 240 244 235 240 243 236 241 243 237 239 243 237 239 241 238 240 241 238 240 241 238 241 240 238 241 240 247 237 228 250 240 233 254 244 237 258 248 242 260 251 246 261 252 248 260 251 247 259 249 245 258 248 244 258 250 246 261 254 251 266 260 257 269 265 261 270 269 267 271 271 270 271 272 271 272 273 272 273 274 273 274 274 274 274 275 275 275 277 276 276 278 277 277 279 278 278 279 279 279 280 280 280 281 280 281 281 281 281 282 282 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 291 292 292 292 293 293 293 294 293 294 294 294 294 295 295 295 296 295 295 296 295 295 296 296 296 297 296 296 297 297 297 298 297 298 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 296 296 296 295 296 296 295 296 296 296 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 299 298 298 298 298 297 298 297 297 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 291 291 290 290 290 290 290 289 289 289 288 288 288 288 288 287 287 287 286 286 287 285 285 286 284 285 286 284 284 285 284 284 284 283 283 283 283 282 282 282 281 282 281 280 281 280 280 281 279 279 279 278 278 276 276 276 272 273 273 268 269 269 265 266 266 263 262 264 260 259 261 258 257 259 257 256 257 256 256 257 254 256 256 251 254 255 249 253 255 247 252 254 244 251 254 240 248 253 238 245 252 238 243 249 238 243 248 237 241 247 236 240 246 235 240 245 234 240 244 235 240 243 236 240 243 237 239 242 237 239 241 237 240 241 238 240 241 238 241 240 238 241 240 247 237 228 250 240 232 254 244 237 258 248 241 260 250 246 261 251 248 260 251 247 258 249 244 257 248 243 258 250 246 261 254 251 266 260 256 269 264 261 270 269 267 271 271 270 271 272 271 272 273 272 273 274 273 274 275 274 274 276 275 275 277 276 276 278 277 277 279 278 278 279 279 279 280 280 280 281 280 280 281 281 281 282 282 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 289 288 289 290 289 290 291 290 291 292 291 291 292 292 292 293 293 293 294 294 293 295 294 294 295 295 295 296 295 295 296 295 295 296 296 296 296 296 296 297 297 297 298 297 298 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 298 299 299 298 299 299 299 299 299 299 299 299 298 299 299 298 299 298 298 298 297 296 296 296 295 296 296 295 296 296 296 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 299 298 298 299 298 297 298 297 297 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 291 290 290 290 290 290 289 289 289 289 288 288 288 287 288 287 286 287 286 286 287 285 285 286 285 285 286 285 284 285 284 284 284 284 283 283 282 281 281 281 280 281 280 279 280 279 279 279 279 278 278 277 277 275 275 275 269 270 271 266 266 267 264 264 265 261 261 263 259 258 260 258 257 258 256 255 257 255 256 257 253 255 257 251 253 256 250 253 256 247 252 255 243 249 254 240 247 253 238 244 251 238 242 249 237 242 248 236 241 247 235 240 246 235 239 245 234 240 244 235 240 243 236 240 243 237 239 242 237 239 241 237 239 241 238 240 241 238 241 240 239 241 240 247 237 228 250 240 232 253 244 237 257 247 241 260 250 245 260 251 247 259 250 246 258 248 244 257 248 243 258 250 246 261 255 251 265 259 255 269 264 261 270 269 267 271 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 275 277 276 276 278 277 277 279 278 278 279 279 279 280 280 280 280 280 280 281 281 281 282 282 282 283 282 283 284 283 284 285 284 285 285 285 286 286 286 287 288 287 288 289 289 289 290 290 290 291 291 291 292 292 291 293 292 292 293 293 293 294 294 293 295 294 294 295 295 294 296 295 295 296 296 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 298 298 298 298 299 299 298 299 299 298 299 299 298 299 299 298 299 299 298 299 299 299 299 299 298 299 299 298 298 298 298 298 297 296 296 296 295 295 295 295 296 296 296 297 297 298 299 298 299 299 299 299 299 299 299 299 299 298 299 299 298 298 299 298 297 298 297 297 297 296 296 297 295 295 296 295 294 294 293 293 293 292 292 292 291 291 291 291 291 290 290 290 290 290 289 289 289 289 288 288 288 287 288 287 286 287 286 286 287 286 285 287 286 285 286 285 284 285 285 283 284 283 282 281 280 279 279 278 277 279 278 277 279 278 277 278 277 277 275 275 275 271 272 273 267 268 269 264 264 266 262 262 263 260 260 262 259 258 260 258 256 258 257 256 258 255 256 258 253 255 258 251 253 257 249 252 256 246 250 255 243 248 254 240 246 253 238 244 251 237 242 249 236 242 249 235 241 247 235 239 246 235 239 245 234 239 244 235 240 243 236 240 243 237 239 242 237 239 241 237 239 241 238 240 241 238 240 240 238 241 239 247 237 228 250 240 232 253 243 236 257 247 240 259 250 245 260 250 247 259 249 246 258 248 243 257 248 243 258 250 246 261 255 250 266 260 256 269 264 261 270 269 267 270 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 275 277 276 276 278 277 277 279 278 278 279 279 279 280 280 280 280 280 280 281 281 281 282 282 282 283 282 283 284 283 284 285 284 285 285 285 286 287 286 287 288 287 288 289 289 289 290 290 290 291 291 291 292 292 291 293 292 292 294 293 293 294 294 293 295 294 294 295 295 294 295 295 295 296 296 295 296 296 296 296 296 296 297 297 297 297 297 298 298 297 298 298 298 298 298 298 298 299 298 298 298 299 298 298 299 298 298 299 298 299 299 298 299 299 298 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 296 297 297 298 299 298 299 299 299 299 299 298 299 299 298 298 299 299 298 298 298 298 298 298 297 297 297 296 296 297 296 296 296 295 295 294 293 293 293 292 292 292 291 291 291 291 290 290 290 290 290 290 289 289 289 289 288 288 288 287 288 287 287 288 287 286 287 287 286 287 286 285 286 285 284 284 283 282 281 280 279 278 277 276 276 276 274 275 275 273 276 275 274 275 275 274 273 273 273 269 270 270 266 267 268 263 263 265 261 261 263 260 259 261 259 258 260 259 256 259 257 256 259 255 255 259 252 253 258 251 252 257 248 251 256 245 249 255 242 247 253 239 244 252 238 243 251 237 242 249 236 242 248 235 240 247 235 239 246 235 239 245 234 239 244 236 240 243 236 240 242 237 239 242 237 239 241 237 239 241 237 240 241 238 240 240 238 241 239 247 237 228 250 240 232 253 243 236 256 246 240 259 249 244 259 250 247 259 249 245 257 247 243 257 248 243 258 250 246 261 255 251 265 260 256 269 265 261 270 269 267 270 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 275 277 276 276 278 277 277 279 278 278 279 279 279 280 280 279 280 280 280 281 281 281 282 282 282 283 282 283 284 283 284 284 284 285 285 285 286 287 286 287 288 287 288 289 289 289 290 290 290 291 291 291 292 292 292 293 292 292 294 293 293 294 294 293 295 294 294 295 295 294 295 295 295 296 296 295 296 296 296 296 296 296 297 297 297 297 297 297 297 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 299 298 299 299 298 299 299 298 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 296 297 297 298 299 298 298 299 298 299 299 298 299 299 298 298 298 298 298 298 298 298 298 298 297 297 298 296 297 297 296 296 296 295 295 295 293 294 293 292 292 292 291 291 291 291 291 290 290 290 290 290 289 289 289 289 288 288 288 288 288 287 287 288 287 287 288 287 286 286 286 285 283 284 282 280 280 278 277 277 276 274 275 273 273 273 271 273 273 271 274 274 272 273 274 272 271 272 271 268 269 269 265 265 266 262 262 264 260 260 262 259 258 261 259 257 260 258 256 260 257 256 260 254 254 259 252 252 258 249 251 257 247 250 256 244 248 255 242 245 253 239 244 252 238 242 251 237 241 249 235 241 248 235 240 247 235 239 245 235 239 246 234 239 244 236 240 243 236 240 242 237 239 242 237 239 241 237 239 241 237 240 240 238 240 240 238 241 239 247 237 228 250 240 232 253 243 236 256 246 239 258 249 243 259 249 246 258 248 245 257 247 242 257 247 243 259 251 246 262 255 251 265 259 255 269 265 262 270 269 267 270 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 276 278 277 277 279 278 278 279 279 279 280 279 279 280 280 280 281 281 281 282 281 282 282 282 283 283 283 284 284 284 285 285 285 286 287 286 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 291 293 293 292 294 293 293 294 294 293 295 294 294 295 295 294 295 295 295 296 296 295 296 296 296 296 296 296 297 296 297 297 297 297 297 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 299 299 298 299 299 298 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 296 297 297 298 299 298 298 299 298 299 299 298 298 299 298 298 298 298 298 298 298 297 298 298 297 297 298 297 297 297 296 296 296 295 295 295 293 294 293 292 293 292 291 291 291 291 291 290 290 290 290 290 290 289 289 289 288 289 288 288 289 288 287 288 287 287 287 287 286 284 284 283 280 281 279 277 277 276 274 274 273 271 272 271 270 271 270 271 272 270 272 273 270 272 273 271 270 271 270 266 268 268 263 264 265 261 261 263 260 259 262 259 258 261 259 257 260 258 256 260 256 255 260 254 253 259 252 252 259 249 250 257 246 248 256 244 246 255 241 244 253 239 243 252 238 242 250 237 240 249 235 240 248 234 239 247 235 239 245 235 239 245 234 239 244 236 240 242 237 239 242 237 239 242 237 239 241 237 239 241 237 240 240 238 240 240 238 241 239 247 237 228 250 240 232 253 243 235 256 245 238 258 248 243 259 249 245 258 248 244 257 246 242 257 248 243 259 251 247 262 255 251 265 260 256 269 266 262 270 269 267 270 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 276 278 277 277 279 278 278 279 279 279 280 279 279 280 280 280 281 281 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 287 286 286 288 288 288 289 289 289 290 290 290 291 291 291 292 292 291 293 293 292 294 293 293 294 294 293 295 294 294 295 295 294 295 295 295 295 296 295 296 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 299 298 299 299 298 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 297 297 297 298 298 298 298 299 298 299 299 298 298 298 298 298 298 298 298 298 298 297 298 298 297 297 298 297 297 297 296 296 296 295 296 295 294 294 294 293 293 292 292 292 291 291 291 291 291 290 290 290 290 289 290 290 289 290 289 288 289 288 288 288 288 287 286 286 285 282 283 282 278 279 277 274 275 274 271 272 271 269 270 269 269 270 269 270 271 269 271 272 269 271 272 269 269 270 268 265 267 267 262 263 265 260 260 263 259 258 261 259 258 261 258 257 261 258 257 260 256 254 260 253 252 259 251 251 258 248 249 257 246 247 256 243 245 254 241 243 253 239 242 252 239 241 250 237 240 249 235 239 248 234 238 247 235 238 245 235 239 245 235 239 243 236 239 242 237 239 242 237 239 241 237 239 241 237 239 240 237 240 240 238 240 240 239 241 239 247 237 228 250 240 232 253 243 235 255 245 238 257 248 242 258 248 245 257 247 244 257 246 242 257 248 243 259 251 247 262 256 251 266 261 256 269 266 262 270 269 267 270 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 279 279 279 279 279 280 280 280 281 281 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 285 287 286 286 288 288 288 289 289 289 290 290 290 291 291 291 292 292 291 293 293 292 294 293 293 294 294 293 295 294 294 295 295 294 295 295 295 295 296 295 296 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 298 298 298 297 298 298 298 298 298 298 298 299 298 299 299 298 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 297 297 297 298 298 298 298 299 298 298 298 298 298 298 298 298 298 298 298 298 298 297 298 298 297 297 298 297 297 297 296 297 297 295 296 296 294 295 294 293 294 293 292 292 292 292 292 291 292 292 291 291 291 290 291 290 290 290 290 289 289 288 288 287 287 287 284 285 284 280 281 281 276 278 277 273 274 273 269 271 270 268 268 268 269 269 269 269 270 268 269 270 267 269 270 267 267 268 267 264 265 266 262 262 264 260 259 262 259 258 261 260 258 261 258 258 261 257 256 260 255 254 259 252 251 258 251 250 258 248 248 257 245 245 256 243 244 254 241 243 253 239 242 251 238 241 250 237 240 249 234 239 248 234 238 246 235 238 245 235 238 244 235 239 243 236 239 242 237 239 242 236 238 241 237 239 241 237 239 240 237 240 240 238 240 240 239 241 239 247 237 228 250 240 232 253 242 235 255 245 237 257 247 241 258 248 244 257 247 243 256 246 242 257 248 243 259 252 247 262 256 251 266 262 257 269 267 263 270 269 267 270 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 278 279 279 279 279 280 280 280 281 281 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 285 287 286 286 288 288 288 289 289 289 290 290 290 291 291 290 292 292 291 293 293 292 294 293 293 294 294 293 294 294 294 295 295 294 295 295 295 295 296 295 296 296 296 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 297 298 298 297 298 297 297 298 297 298 298 297 298 298 298 298 299 298 299 299 298 299 299 298 298 299 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 297 297 297 298 298 298 298 299 298 298 298 298 298 298 298 298 298 298 298 298 298 297 298 298 297 297 298 297 297 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 293 293 292 293 293 292 292 292 291 292 291 291 290 290 289 288 288 288 285 286 286 282 284 284 279 281 281 276 277 277 272 273 273 269 270 270 268 268 269 268 267 267 268 267 267 268 268 266 268 268 266 266 267 266 263 264 265 261 261 264 260 259 262 260 259 262 260 259 262 258 258 261 256 256 260 255 254 260 253 251 259 250 249 258 247 247 256 245 245 255 242 243 254 240 242 252 239 241 251 238 241 250 236 240 249 234 238 248 234 238 246 235 238 245 234 238 243 235 238 242 236 239 241 237 239 241 236 238 241 237 239 240 238 239 240 237 240 240 238 240 240 239 241 239 247 237 228 250 240 232 252 242 234 255 244 237 256 247 240 257 247 243 257 246 243 256 246 242 257 248 243 260 252 248 262 256 251 266 262 257 269 267 263 270 270 268 270 271 270 271 271 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 278 279 279 279 279 280 280 280 281 281 281 281 282 282 282 282 283 283 283 284 284 284 285 286 285 285 287 287 286 288 288 288 289 289 289 290 290 290 291 291 290 292 292 291 293 293 292 293 293 292 294 294 293 294 294 294 295 295 294 295 295 295 295 295 295 295 296 295 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 297 298 298 298 298 299 298 299 299 298 299 299 298 298 298 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 297 297 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 297 298 298 297 298 298 297 297 297 297 297 297 297 297 297 296 296 296 295 295 295 295 295 294 294 294 293 294 294 293 294 293 293 293 293 292 292 291 291 291 290 290 289 289 288 285 285 286 282 283 283 279 280 280 275 277 277 271 273 273 268 269 270 268 267 269 267 266 267 267 266 266 267 266 265 266 266 265 265 265 265 263 263 265 261 260 264 260 259 263 260 259 263 259 259 262 258 258 261 256 256 260 255 253 259 252 251 258 250 248 257 247 246 256 244 244 255 242 242 253 240 241 252 239 241 251 237 240 250 235 239 249 234 238 248 234 237 246 235 238 245 234 237 243 235 238 241 236 238 241 236 238 241 236 238 241 237 239 240 237 239 240 237 240 240 238 240 240 239 241 239 247 237 228 250 240 232 252 242 234 254 244 236 256 246 239 257 247 242 256 246 242 256 246 242 257 248 244 260 252 248 263 257 252 267 262 257 269 268 263 270 270 268 270 271 270 271 271 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 278 279 279 279 280 280 280 280 281 281 281 282 282 282 282 282 283 283 283 284 284 284 284 286 285 285 287 287 286 288 288 287 289 289 288 290 290 289 291 291 290 292 292 291 293 292 292 293 293 292 294 294 293 294 294 294 295 295 294 295 295 295 295 295 295 295 296 295 296 296 296 296 296 296 296 296 297 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 299 299 298 299 299 298 298 298 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 297 297 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 295 295 295 295 295 295 294 295 294 294 294 294 294 292 291 292 292 291 292 291 290 290 288 288 288 284 284 285 281 282 282 277 279 279 274 276 276 270 272 273 267 268 270 266 266 268 266 266 266 266 266 265 266 265 264 265 265 264 264 264 265 262 262 264 261 260 264 261 260 263 260 259 263 259 259 263 257 258 262 255 255 260 254 253 259 252 250 258 249 247 257 247 245 256 244 243 254 241 241 253 240 241 252 238 240 251 236 239 250 235 238 249 233 237 248 234 237 246 234 238 245 234 237 242 235 238 241 236 238 240 236 238 241 236 238 240 237 239 240 237 239 240 237 240 240 238 240 240 239 241 239 247 237 228 250 240 231 252 242 234 254 244 235 256 246 238 256 247 242 256 246 242 256 246 241 257 248 244 260 253 248 263 257 252 266 262 257 269 268 263 270 270 268 270 271 270 271 271 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 278 279 280 279 280 280 280 280 281 281 281 282 282 282 282 283 283 283 283 284 284 284 284 286 285 285 287 286 286 288 288 287 289 289 288 290 290 289 291 291 290 292 292 291 293 292 292 293 293 292 294 294 293 294 294 294 294 295 294 295 295 294 295 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 297 298 298 298 299 299 298 299 299 298 298 298 298 298 298 297 297 297 296 296 295 295 295 295 295 296 295 297 297 297 298 298 297 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 295 295 296 295 295 295 295 295 294 293 294 294 293 293 292 291 291 289 288 289 285 285 286 281 282 283 278 279 280 276 277 277 272 274 275 268 270 272 266 266 269 266 265 268 266 265 266 265 265 264 266 265 264 265 265 264 264 264 265 262 263 266 261 261 265 261 260 264 260 260 263 258 259 263 257 257 262 256 255 260 254 252 259 252 249 258 249 246 257 246 244 256 243 242 254 241 241 253 240 240 252 238 240 251 236 238 250 234 238 249 234 237 248 234 237 245 234 237 244 234 237 242 234 237 241 235 237 240 236 238 241 236 238 240 237 239 240 238 239 240 238 240 239 238 240 239 239 241 239 247 237 228 250 240 231 252 242 234 254 243 235 255 245 237 256 246 241 255 246 241 256 246 241 258 249 244 260 253 248 263 257 252 266 262 258 269 268 263 270 270 268 270 271 269 271 271 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 279 279 280 280 280 280 280 281 281 281 281 282 282 282 282 283 283 283 283 283 284 284 284 286 285 285 287 286 286 288 287 287 289 288 288 290 290 289 291 290 290 292 291 291 293 292 292 293 293 292 294 294 293 294 294 294 294 295 294 295 295 294 295 295 295 295 295 295 295 296 296 296 296 296 296 296 296 296 296 296 296 297 297 296 297 297 296 297 296 297 297 296 297 297 297 297 298 297 298 298 298 298 299 298 299 299 298 298 298 298 298 298 297 297 297 296 296 295 295 295 295 296 296 295 297 297 296 298 298 297 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 296 295 295 295 294 293 294 292 292 292 289 289 289 284 284 285 281 281 283 278 279 281 276 277 278 273 275 276 270 272 274 266 267 270 265 265 268 264 264 267 264 264 265 265 265 264 265 265 264 265 265 265 264 265 267 263 263 267 262 261 266 261 261 265 259 260 263 258 258 263 256 256 262 255 254 260 253 251 258 251 249 258 249 246 257 246 244 255 243 242 254 241 240 253 239 240 251 238 239 250 235 238 250 234 237 249 233 237 248 234 237 245 234 237 244 234 237 241 234 236 239 235 237 240 236 238 240 236 238 240 237 239 240 238 239 239 238 239 239 238 240 239 239 241 239 247 237 228 250 240 231 252 242 233 253 243 234 255 245 237 255 246 240 255 245 241 256 246 241 258 249 244 260 253 248 263 258 252 266 263 258 269 268 263 270 270 267 270 271 269 271 271 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 279 279 280 280 280 280 280 281 281 281 281 282 282 282 282 283 283 283 283 283 284 284 284 285 285 285 287 286 286 288 287 287 289 288 288 290 289 289 291 290 290 292 291 291 292 292 292 293 293 292 294 293 293 294 294 294 294 294 294 294 295 294 295 295 295 295 295 295 295 296 296 295 296 296 296 296 296 296 296 296 296 296 296 296 297 296 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 299 298 298 299 298 298 298 298 298 298 297 297 296 296 296 295 295 295 295 296 296 295 297 297 296 298 298 297 298 298 298 298 298 298 297 298 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 296 297 297 296 296 295 295 295 293 292 293 288 288 289 283 284 285 281 281 283 278 279 281 276 277 280 275 276 278 272 274 275 268 271 273 265 266 269 264 264 268 264 264 267 264 264 265 264 264 265 265 265 265 264 266 267 264 265 268 263 263 268 262 261 267 260 261 265 258 259 263 257 258 263 256 255 261 254 253 260 252 250 258 251 248 257 248 245 256 245 243 255 242 241 253 240 240 252 239 239 251 237 239 250 235 237 250 234 237 249 233 237 248 234 237 245 234 237 243 234 237 241 233 236 239 235 237 240 236 238 240 236 238 240 237 239 239 238 239 239 238 240 239 238 240 239 239 241 239 247 237 228 250 240 231 252 242 233 253 243 234 254 244 236 255 245 239 255 245 240 255 246 241 258 249 244 260 253 248 263 258 252 265 263 258 269 268 263 270 270 267 270 271 269 271 271 270 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 280 280 280 280 281 281 281 281 281 282 282 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 289 288 288 290 289 289 290 290 290 291 291 291 292 292 292 293 293 292 293 293 293 294 294 293 294 294 294 294 295 294 295 295 295 295 295 295 295 295 295 295 296 296 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 299 298 298 299 298 298 298 298 298 298 297 297 296 297 296 295 296 295 294 296 295 295 297 297 296 298 297 297 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 295 295 296 293 293 294 288 288 290 283 284 286 280 281 283 278 280 282 277 278 281 276 277 280 274 276 278 272 274 276 268 271 273 265 266 270 264 265 268 264 265 267 265 265 266 266 266 266 266 267 267 265 266 268 264 264 269 263 263 269 261 261 267 259 260 265 257 259 264 257 257 263 255 254 261 254 252 260 252 249 258 250 247 257 247 244 256 244 242 255 241 240 253 239 239 252 238 239 251 237 238 250 235 237 250 234 237 249 233 237 247 234 237 244 234 236 242 234 236 240 233 236 239 235 237 240 236 237 240 236 238 239 237 239 239 238 239 239 238 240 239 238 240 239 239 241 239 247 237 228 250 240 231 252 242 233 253 242 233 254 244 235 254 245 238 254 245 240 255 246 241 258 249 244 261 253 248 263 258 252 266 264 258 268 267 262 270 269 266 270 270 269 271 272 270 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 280 280 280 280 280 280 281 281 281 281 282 282 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 291 293 293 292 293 293 293 293 294 293 294 294 294 294 294 294 294 295 294 295 295 295 295 295 295 295 295 295 295 296 296 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 297 297 297 297 298 297 298 298 297 298 299 298 298 299 298 298 298 298 298 298 297 297 297 297 296 295 296 295 294 296 295 295 297 296 296 298 297 297 298 298 297 298 298 298 297 297 297 297 297 297 297 297 297 297 296 296 297 297 297 297 297 297 298 298 298 297 297 298 296 296 297 294 295 296 292 292 294 287 288 290 283 284 287 280 282 284 279 280 283 278 279 282 277 278 282 276 277 281 275 276 280 273 275 277 271 273 275 269 271 273 268 269 271 266 269 270 266 268 269 267 268 268 267 268 269 266 266 270 264 264 270 263 262 269 260 261 268 258 259 265 256 257 263 256 256 262 254 253 261 253 251 260 251 248 258 249 246 257 246 244 256 244 241 254 241 239 253 239 239 252 238 238 251 236 237 250 235 237 250 234 237 249 233 236 247 233 236 244 234 236 242 233 236 239 233 235 238 236 237 240 236 237 239 236 238 239 237 239 239 238 239 239 238 240 239 238 240 239 239 241 239 247 237 228 250 240 231 252 242 233 253 242 233 254 244 234 254 245 238 254 245 239 255 246 241 258 249 244 260 253 248 263 258 253 266 264 258 268 267 262 270 269 266 270 270 269 271 271 270 272 273 271 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 279 280 280 280 280 280 281 281 281 281 282 282 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 291 292 293 292 293 293 293 293 294 293 294 294 294 294 294 294 294 295 294 294 295 295 294 295 295 295 295 295 295 296 295 295 296 296 295 296 296 295 296 295 296 296 296 296 296 296 297 297 296 297 298 297 298 298 297 298 299 297 298 299 298 298 298 298 298 298 297 297 297 297 296 295 296 295 294 296 295 294 297 296 296 298 297 297 298 298 297 297 298 298 297 297 298 297 297 297 297 296 297 297 296 296 297 296 297 298 297 297 298 298 298 296 297 297 293 294 297 288 290 294 285 287 291 282 284 287 280 282 285 279 281 284 279 280 284 279 280 284 278 279 283 278 278 283 277 278 282 275 276 279 273 275 277 272 273 275 271 272 274 269 271 272 268 271 271 267 270 270 267 268 270 266 266 271 264 263 270 262 261 269 259 260 268 257 258 266 256 257 263 256 255 262 254 253 261 253 250 260 251 247 258 248 245 257 246 243 256 243 241 255 241 239 253 239 238 252 238 238 251 236 237 250 235 237 250 233 236 249 232 236 246 233 236 243 234 236 241 233 236 239 233 235 238 236 237 240 236 237 239 236 238 239 237 238 239 238 239 239 238 239 239 238 240 239 239 241 239 247 237 228 250 240 231 252 242 233 253 242 233 253 243 234 254 244 237 254 244 239 255 246 241 258 249 244 260 253 248 263 258 251 266 263 257 268 266 261 269 269 265 270 270 268 271 271 270 272 273 271 273 274 272 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 279 280 280 280 280 280 281 281 281 281 282 282 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 288 288 288 289 289 289 290 290 290 291 291 290 291 292 291 292 292 292 293 293 293 293 293 293 294 294 294 294 294 294 294 294 294 294 295 294 294 295 295 294 295 295 295 295 295 295 296 295 295 296 295 295 296 295 295 296 295 296 296 296 296 297 296 297 298 297 298 298 297 298 299 297 298 299 298 298 298 298 298 298 298 297 297 297 296 295 296 295 294 296 295 294 297 296 296 298 297 297 298 297 297 297 297 298 297 297 298 297 297 297 297 296 297 297 296 296 297 297 297 298 297 297 297 297 298 295 296 297 289 291 295 284 287 291 281 284 288 280 282 286 280 282 285 280 281 286 280 282 286 280 281 286 280 280 285 279 279 284 278 279 283 276 278 282 275 276 279 274 275 278 273 275 276 271 273 274 269 272 273 268 270 271 267 268 271 265 265 271 264 262 270 261 261 269 259 259 268 257 258 266 256 256 263 255 254 262 254 252 261 252 249 260 250 247 258 247 244 257 245 242 256 243 240 255 240 239 254 239 238 252 238 237 251 236 237 250 235 237 250 233 236 248 232 235 246 232 235 243 233 235 241 233 235 240 233 235 238 235 237 240 236 237 239 236 237 239 237 238 239 238 239 239 238 239 239 238 240 239 239 241 239 247 237 227 250 240 231 252 242 233 253 242 232 253 243 233 254 244 237 254 244 239 255 246 241 257 249 244 260 253 247 262 257 251 265 261 255 267 264 259 269 268 264 270 270 268 271 271 270 272 273 271 273 274 272 274 275 274 275 276 275 276 277 276 277 277 277 278 278 278 278 279 279 279 279 280 280 280 280 280 280 281 281 281 282 282 282 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 289 289 289 290 290 290 290 291 291 291 291 291 292 292 292 293 293 293 293 293 293 293 294 294 294 294 294 294 294 294 294 294 294 294 295 295 294 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 296 295 296 296 296 296 297 296 297 298 297 298 298 297 298 299 297 298 299 298 298 298 298 298 298 298 297 297 297 296 295 296 295 294 296 295 294 297 296 295 297 297 297 297 297 297 297 297 298 297 297 298 297 297 297 297 296 297 297 296 297 297 297 297 297 297 297 297 297 297 293 294 296 286 289 292 282 284 289 280 282 287 280 282 286 280 283 287 281 283 288 282 283 288 282 283 288 281 281 287 280 280 285 279 280 284 278 279 283 277 278 281 276 277 279 274 276 278 273 273 276 269 271 274 267 268 272 266 268 272 265 264 272 263 262 270 260 260 268 258 258 267 257 257 266 256 255 263 255 253 261 253 251 261 251 248 260 249 246 258 246 244 257 244 241 256 242 240 254 240 238 254 239 237 253 237 237 251 236 237 250 235 236 249 232 235 248 232 235 246 232 235 243 233 235 242 233 235 240 233 235 238 235 236 240 236 237 239 236 237 239 237 238 239 238 239 239 238 239 238 238 240 239 239 241 239 247 237 227 250 240 231 252 242 233 253 242 232 253 243 233 254 244 236 254 244 238 255 246 241 257 249 244 260 253 247 262 256 250 264 261 254 267 264 259 269 268 264 270 270 267 271 271 270 272 273 271 273 274 272 274 275 274 275 276 275 276 277 276 277 277 277 278 278 278 278 279 279 279 279 279 280 280 280 280 280 281 281 281 281 282 282 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 290 291 291 291 291 292 292 292 292 293 293 293 293 293 293 293 293 293 294 294 294 294 294 294 294 294 294 294 294 294 295 295 294 295 295 295 295 295 295 295 295 295 295 295 295 296 295 296 296 296 296 297 296 297 298 297 298 298 297 298 299 297 298 299 298 298 299 298 298 298 298 297 297 297 296 295 296 295 294 296 295 294 297 296 295 297 297 297 297 297 297 297 297 298 297 297 298 297 297 297 297 297 297 297 296 297 297 297 297 297 297 297 295 296 297 290 291 294 284 286 290 281 283 288 281 283 287 282 284 288 283 285 289 283 285 290 283 286 290 283 285 289 282 283 288 281 281 286 280 280 285 278 279 283 277 279 282 276 277 280 274 276 278 273 273 277 270 271 275 267 268 273 266 267 272 265 264 272 263 261 270 260 259 267 258 258 266 257 256 266 256 254 263 254 252 261 252 250 260 250 248 259 248 245 258 246 243 257 243 241 255 242 239 254 240 238 254 239 237 253 237 236 252 236 236 250 234 235 249 232 235 247 232 235 247 232 234 244 232 234 242 233 234 240 233 234 239 235 237 240 236 236 239 236 237 239 237 238 239 238 239 239 239 239 238 238 240 239 239 241 239 247 237 227 250 240 231 252 242 233 253 242 232 253 243 232 254 244 236 254 244 238 255 246 241 257 249 243 260 252 246 262 256 250 264 261 254 267 264 259 269 267 264 270 269 267 271 271 270 272 273 271 273 274 272 274 275 274 275 276 275 276 277 276 277 277 277 278 278 278 278 279 278 279 279 279 280 280 280 280 280 281 281 281 281 282 282 282 282 282 283 283 283 284 284 284 284 285 285 286 286 285 287 287 287 288 288 288 288 289 289 289 290 290 290 291 291 291 291 292 292 292 292 292 293 293 293 293 293 293 293 293 293 293 293 294 294 294 294 294 294 294 294 294 295 294 294 295 295 294 295 295 294 295 295 295 295 295 295 296 295 296 296 296 296 297 296 297 298 297 298 298 297 298 298 297 298 299 298 298 299 298 298 298 298 297 297 297 296 295 297 295 294 297 295 294 297 296 295 297 297 297 297 297 297 297 297 298 297 297 298 297 297 297 297 297 297 297 297 297 297 297 297 296 296 297 294 295 297 288 289 293 283 285 289 283 285 289 284 286 289 286 287 291 286 288 292 286 288 292 285 287 291 284 286 289 282 284 288 281 282 287 280 281 285 278 279 284 277 279 283 276 277 281 274 275 279 272 273 278 270 271 276 267 269 273 266 266 272 264 263 272 263 260 269 260 258 267 258 257 265 257 255 264 255 253 262 253 251 261 251 249 260 249 247 259 247 245 257 245 242 256 243 240 255 241 238 254 240 237 254 238 237 253 237 236 252 235 235 250 234 235 249 232 234 247 231 234 246 231 234 244 232 233 241 233 234 240 233 234 238 236 237 240 236 236 239 236 237 239 237 238 239 238 239 239 239 239 238 238 240 238 239 241 239 247 237 227 250 240 231 252 242 233 253 242 232 253 243 232 254 244 235 254 244 238 255 246 240 257 249 243 259 252 246 261 255 249 264 260 254 268 264 259 270 267 264 270 269 267 271 271 269 272 273 271 273 274 272 274 275 274 275 276 275 276 277 276 277 277 277 277 278 278 278 279 278 279 279 279 280 280 280 280 280 281 281 281 281 281 281 282 282 282 283 283 283 283 284 283 284 285 284 285 286 285 286 287 286 287 288 288 288 289 289 289 290 290 290 291 291 291 291 292 291 292 292 292 292 293 293 293 293 293 293 293 293 293 293 293 293 293 294 294 294 294 294 294 294 294 294 295 294 294 295 294 294 295 294 295 295 295 295 295 295 296 296 295 296 297 296 297 298 296 297 298 297 298 298 297 298 299 297 298 299 298 298 298 298 297 297 297 296 296 297 295 295 297 295 294 297 296 296 297 297 297 297 297 297 297 297 298 297 297 298 297 297 297 297 297 297 297 297 297 297 297 297 296 296 297 293 294 296 287 289 293 285 287 290 288 289 291 290 291 293 290 291 293 290 291 293 290 290 293 288 289 292 285 287 291 283 284 288 281 282 287 280 281 286 278 279 285 277 278 283 275 277 281 274 275 279 272 273 278 270 270 276 267 268 274 266 265 272 264 263 271 263 260 268 261 258 266 259 256 265 257 255 264 255 252 262 253 250 261 251 248 260 249 246 259 247 244 257 245 242 256 243 240 255 241 238 254 239 237 254 237 236 253 236 235 252 235 235 251 233 234 249 232 233 247 231 234 246 231 233 243 232 233 241 233 233 240 233 233 239 236 237 240 236 236 239 235 236 239 237 238 239 238 239 239 239 239 238 238 240 238 239 241 239 247 237 227 250 240 231 252 242 233 253 242 232 253 243 232 254 244 235 254 245 238 255 247 240 257 249 243 259 251 245 261 255 249 264 260 254 267 263 258 270 267 265 270 269 267 271 271 269 272 272 271 273 274 272 274 275 274 275 276 275 276 276 276 277 277 277 277 278 278 278 279 278 279 279 279 280 280 280 280 280 280 281 281 281 281 281 282 282 282 283 283 282 283 284 283 284 285 284 285 286 285 286 287 286 287 288 287 288 289 289 289 290 290 290 291 291 290 291 291 291 292 292 292 292 292 292 293 293 293 293 293 293 293 293 293 293 293 294 293 293 294 294 294 294 294 294 294 294 294 294 294 294 295 294 294 295 294 295 295 295 295 296 295 296 297 296 297 298 296 297 298 297 298 298 297 298 299 297 298 299 298 298 298 298 298 297 297 296 296 297 295 295 297 295 295 297 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 297 298 298 297 297 297 297 297 296 296 297 293 294 297 289 290 294 290 290 293 291 292 293 292 292 294 292 292 294 292 292 294 291 291 293 290 290 293 287 288 291 283 284 288 281 282 287 279 281 286 278 279 285 276 278 283 275 276 282 273 274 280 272 272 278 269 270 276 267 267 274 265 264 272 264 262 271 263 260 268 261 258 266 259 256 265 257 254 264 255 251 262 253 249 261 251 248 260 248 245 258 246 244 257 245 243 256 244 240 255 242 238 254 239 237 254 237 236 253 235 235 252 234 234 251 233 234 250 232 233 248 231 233 246 231 233 244 232 232 242 232 233 241 233 233 239 235 237 240 236 237 240 235 236 239 237 238 239 238 239 239 239 239 238 238 240 238 239 240 239 247 237 227 250 240 231 252 242 233 253 243 232 254 244 232 254 244 235 255 245 238 255 247 240 257 249 242 259 251 244 261 254 248 264 261 255 267 265 260 270 268 265 270 269 267 271 271 269 272 272 271 273 274 272 274 275 273 275 276 275 276 276 276 277 277 277 277 278 277 278 279 278 279 279 279 280 280 280 280 280 280 281 281 281 281 281 282 282 282 282 283 282 283 283 283 284 284 284 285 285 285 286 286 286 287 288 287 288 289 289 289 290 290 290 291 291 290 291 291 291 292 292 292 292 292 292 292 292 292 293 293 293 293 293 293 293 293 293 293 293 294 293 294 294 293 294 294 294 294 294 294 294 294 294 294 295 294 295 295 295 295 296 295 296 297 296 297 298 296 297 298 297 298 299 297 298 299 297 298 299 298 298 298 298 298 297 298 297 296 297 296 295 297 295 295 297 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 298 297 298 297 296 297 297 293 295 298 291 293 296 292 293 295 293 293 295 293 293 295 292 293 295 292 292 294 291 291 293 290 290 292 287 287 290 283 285 289 281 282 287 279 280 286 277 278 285 275 277 283 274 275 282 273 274 280 271 271 278 269 269 276 266 266 274 265 263 272 264 261 270 263 260 268 261 258 266 259 256 265 257 254 264 256 252 262 253 249 261 250 247 260 248 245 258 247 244 257 247 244 257 246 243 257 242 239 255 238 237 254 236 235 253 234 234 252 234 234 251 233 233 250 231 233 248 231 232 246 231 233 244 232 232 242 232 232 241 232 233 240 235 236 240 236 237 240 235 236 239 236 238 239 238 239 239 239 239 238 238 240 238 239 240 239 247 237 227 250 240 231 252 242 233 253 243 233 254 244 233 255 245 235 255 245 238 256 247 240 257 249 242 259 251 244 260 254 247 264 261 255 268 266 262 270 268 266 270 269 268 271 271 269 272 272 271 273 273 272 274 275 273 275 275 274 276 276 276 277 277 276 277 278 277 278 278 278 279 279 279 279 280 280 280 280 280 281 281 281 281 281 282 282 282 282 283 282 283 283 283 284 284 284 285 285 285 286 286 286 287 288 287 288 289 288 288 290 290 289 291 290 290 291 291 291 292 292 291 292 292 292 292 292 292 292 293 292 293 293 293 293 293 293 293 293 293 293 293 293 293 294 294 293 294 294 293 294 294 294 294 294 294 295 295 295 295 296 295 296 297 296 297 298 296 297 298 297 298 299 297 298 299 297 298 299 298 298 298 298 298 297 297 297 296 297 296 295 297 296 295 297 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 298 298 297 298 298 296 297 298 292 295 297 291 294 297 293 295 297 294 295 296 293 294 296 293 294 295 292 293 295 291 291 293 290 290 292 287 288 290 283 285 289 281 282 287 279 280 286 277 278 285 275 276 283 274 275 282 272 273 280 271 271 277 268 268 275 266 265 274 264 263 272 263 261 270 262 260 268 261 258 266 259 255 265 257 254 263 255 251 262 253 249 261 250 247 260 247 244 258 248 245 258 248 245 258 247 244 257 243 240 256 238 237 254 235 235 252 234 234 252 233 233 251 233 233 250 231 232 247 230 232 245 231 232 244 232 232 243 232 233 242 232 233 240 234 236 240 235 237 240 235 236 239 236 238 238 238 239 239 239 239 238 238 240 238 239 240 239 247 237 227 250 240 231 252 242 233 253 243 233 254 244 233 255 245 236 255 246 238 256 248 240 257 249 241 258 251 243 260 254 247 265 261 255 269 267 262 270 269 267 270 269 268 271 271 269 272 272 271 273 273 272 274 274 273 275 275 274 276 276 275 277 277 276 277 278 277 278 278 278 279 279 279 279 279 280 280 280 280 281 280 281 281 281 282 282 281 282 283 282 283 283 283 284 284 284 285 285 285 286 286 286 287 288 287 287 289 288 288 290 289 289 290 290 290 291 291 291 292 291 291 292 292 292 292 292 292 292 292 292 292 293 292 292 293 293 293 293 293 293 293 293 293 293 293 293 293 294 293 294 294 293 294 294 294 295 295 294 295 296 295 296 297 296 297 298 296 297 298 297 298 299 297 298 299 297 298 299 298 298 298 298 298 298 298 297 297 297 296 296 297 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 298 298 298 297 298 298 294 296 297 291 293 296 291 293 297 293 295 298 294 296 297 294 295 297 293 294 296 292 293 295 291 292 293 290 290 292 288 288 291 283 285 289 281 282 287 279 280 286 277 278 285 275 276 284 274 274 282 272 273 280 270 270 277 268 268 275 266 265 273 264 263 271 263 261 269 262 260 267 260 257 266 259 255 264 257 254 263 255 251 262 252 249 261 249 246 259 248 245 258 249 246 258 249 246 258 247 244 257 245 242 256 238 237 253 235 235 252 233 234 251 233 233 251 232 232 249 231 232 247 230 231 245 231 232 244 232 232 243 232 233 241 232 232 239 234 236 240 235 237 240 235 236 239 236 238 238 238 239 238 239 239 238 238 240 238 239 240 239 247 237 227 250 240 231 252 242 233 253 243 233 255 245 233 255 246 236 256 247 238 257 248 240 258 250 241 258 251 242 260 253 246 265 261 255 269 268 263 270 270 268 271 270 268 271 271 269 272 272 271 273 273 272 274 274 273 275 275 274 276 276 275 277 277 276 277 278 277 278 278 278 279 279 279 279 279 280 280 280 280 281 280 281 281 281 281 282 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 289 288 288 290 289 289 290 290 290 291 291 290 291 291 291 292 292 291 292 292 292 292 292 292 292 292 292 292 293 292 292 293 293 292 293 293 293 293 293 293 293 293 293 294 294 293 294 294 294 295 295 294 295 296 295 296 297 296 297 298 296 298 298 297 298 299 297 299 299 298 299 299 298 298 298 298 298 298 298 297 297 298 297 296 298 296 296 298 297 296 298 297 297 297 297 297 298 297 297 298 297 298 298 298 298 298 298 298 298 298 298 297 297 298 293 295 297 291 292 295 291 292 295 292 294 297 293 296 298 294 295 297 294 295 296 293 293 295 292 292 293 290 290 292 288 288 291 283 285 289 281 282 287 279 280 286 277 278 285 275 276 284 274 274 283 272 272 281 270 270 278 268 268 275 266 265 273 264 262 271 263 261 269 261 259 267 260 257 266 258 255 264 257 253 263 255 251 262 252 248 261 249 245 259 248 245 258 249 246 258 249 246 258 248 245 257 245 243 256 240 239 254 234 235 251 233 234 251 233 233 250 232 232 249 231 231 247 231 232 246 231 231 243 231 232 243 232 233 242 232 232 240 235 236 240 235 237 240 235 237 239 236 238 238 239 239 238 239 240 238 238 240 238 239 240 239 247 237 227 250 240 231 252 242 234 254 244 234 255 245 234 256 246 236 257 247 239 257 249 240 258 250 241 258 251 242 260 253 246 265 262 255 269 268 264 271 270 268 271 270 269 271 271 269 272 272 271 273 273 272 273 274 273 275 275 274 276 276 275 277 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 281 280 281 281 281 281 282 281 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 289 291 290 290 291 291 291 291 291 291 292 292 291 292 292 292 292 292 292 292 292 292 292 292 292 292 293 292 292 293 293 292 293 293 293 293 293 293 294 294 294 295 295 295 295 296 295 296 297 296 297 298 296 298 299 297 298 299 297 298 299 297 299 299 298 298 298 298 298 298 298 297 297 298 297 296 298 297 296 298 297 296 298 297 297 298 297 297 298 298 297 298 298 298 298 298 298 298 298 298 298 298 298 296 297 298 294 295 297 293 294 295 293 294 296 293 295 296 292 294 297 294 295 297 295 295 296 293 294 295 292 292 294 291 290 292 289 289 291 286 286 289 282 283 287 279 280 286 277 278 285 275 276 284 274 274 282 272 272 281 270 270 278 268 267 275 266 264 273 264 262 271 262 261 269 261 259 267 259 257 265 258 255 264 257 253 263 255 251 262 251 247 260 249 245 259 249 246 258 250 246 258 249 246 257 247 245 257 244 243 256 241 240 254 235 235 251 234 234 250 233 233 250 232 232 248 231 231 248 231 232 247 231 231 244 231 232 243 232 233 242 232 232 240 235 236 240 235 236 240 235 237 240 236 237 238 239 239 238 239 240 238 238 240 238 239 240 239 247 237 227 250 240 231 252 243 234 254 244 234 255 246 234 256 247 237 257 248 239 258 249 241 258 250 240 259 251 241 260 253 246 265 263 256 269 268 264 271 270 269 271 270 269 271 271 269 272 272 271 273 273 272 273 274 273 275 275 274 276 276 275 277 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 280 280 281 281 281 281 282 281 282 282 282 283 283 283 283 284 284 284 285 284 285 286 286 286 287 287 287 288 288 288 289 289 288 290 290 289 290 290 290 291 291 290 291 291 291 291 292 291 291 292 291 291 292 291 291 292 292 292 292 292 292 292 292 292 293 292 292 293 293 293 293 293 293 294 294 294 295 295 295 296 296 295 296 297 296 297 298 296 298 298 297 298 299 297 298 299 297 298 299 298 298 298 298 298 298 298 297 297 298 297 296 298 297 296 298 297 296 298 297 297 298 298 297 298 298 297 298 298 298 298 298 298 298 298 298 297 297 298 296 296 297 294 295 296 295 295 296 295 296 296 295 296 296 295 295 296 295 296 296 295 295 296 294 294 295 292 292 294 291 290 292 289 289 291 286 286 289 282 283 288 280 280 286 277 278 284 275 276 283 274 274 282 273 272 280 271 270 278 268 267 276 266 265 274 264 262 272 262 261 269 260 259 266 259 256 265 258 255 265 256 252 263 254 249 262 250 247 260 249 245 259 250 246 258 250 246 258 249 246 257 247 245 256 244 243 255 241 240 254 235 235 251 234 234 250 234 233 249 232 231 248 231 231 248 231 231 247 231 231 244 231 232 243 232 233 242 233 234 241 235 237 241 235 236 240 235 237 240 236 237 238 239 239 238 240 240 238 238 240 238 239 240 239 247 237 227 250 240 231 252 243 234 254 245 235 256 246 235 257 247 238 258 249 240 258 250 241 259 251 240 259 251 241 260 254 245 266 263 257 269 268 264 271 271 269 271 271 270 271 271 269 272 272 271 273 273 272 273 274 273 275 275 274 276 276 275 277 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 280 280 281 281 281 281 282 281 282 282 282 283 283 283 283 284 283 284 285 284 285 286 285 286 287 287 287 288 288 287 289 289 288 290 289 289 290 290 290 290 290 290 291 291 290 291 291 291 291 291 291 291 291 291 291 292 291 291 292 292 291 292 292 292 292 292 292 292 293 292 293 293 293 294 294 294 295 296 295 296 296 295 297 297 296 297 298 296 298 298 296 298 298 297 298 299 297 298 299 298 298 299 298 298 298 298 297 297 298 297 296 298 297 296 298 297 296 298 297 297 298 298 297 298 298 298 298 298 298 298 297 298 297 297 298 295 296 297 294 295 296 293 294 295 295 296 296 296 296 296 296 296 296 296 296 297 296 296 296 295 295 296 294 294 295 292 292 294 291 290 292 289 289 291 286 286 290 282 283 288 280 280 286 277 278 284 275 276 283 274 274 281 273 272 280 271 270 278 269 267 275 266 265 274 264 262 272 262 260 269 260 258 266 258 256 265 257 254 265 255 251 263 253 248 261 250 246 260 250 246 259 250 246 258 250 246 257 249 245 256 247 244 256 244 243 255 240 240 253 235 235 251 236 234 250 234 232 250 233 231 249 231 231 249 231 231 247 231 232 244 231 232 243 233 233 241 234 236 242 235 237 241 235 236 240 235 237 240 236 237 238 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 252 243 234 254 245 235 256 247 236 257 248 238 258 249 240 259 251 241 259 251 240 259 251 240 260 254 245 266 264 257 269 269 265 271 271 269 271 271 270 271 271 270 272 272 270 273 273 272 273 274 273 274 275 274 276 276 275 276 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 280 280 281 281 281 281 281 281 282 282 282 282 283 282 283 284 283 284 285 284 285 286 285 286 287 287 287 288 288 287 289 288 288 289 289 289 290 290 289 290 290 290 290 291 290 290 291 291 290 291 291 290 291 291 290 291 291 290 291 291 291 292 292 291 292 292 292 292 293 293 293 294 293 294 295 294 295 296 295 296 297 295 296 297 295 297 298 296 297 298 296 298 298 297 298 298 297 299 299 298 298 299 297 298 298 297 297 297 297 297 296 298 297 296 298 297 296 298 298 297 298 298 298 298 298 298 298 298 298 297 297 297 296 296 296 295 296 296 295 295 296 294 295 296 296 296 296 297 297 297 297 297 297 296 296 297 296 296 297 295 295 296 294 294 295 293 292 294 291 290 292 289 289 291 286 286 289 282 283 288 280 280 286 277 278 284 275 276 282 274 273 281 273 271 279 271 269 277 269 267 275 267 265 274 264 262 272 262 260 269 260 258 267 258 256 266 257 254 265 255 250 262 252 248 261 250 246 260 250 246 259 251 246 258 250 246 257 249 245 256 247 244 255 244 243 254 239 239 253 236 235 251 236 234 251 234 232 250 233 231 250 231 230 249 230 231 247 231 232 244 232 233 244 233 233 242 236 237 242 236 237 241 235 236 240 235 237 240 236 237 238 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 252 243 234 255 245 236 257 247 237 258 249 239 259 250 241 260 251 241 260 251 240 259 251 240 260 254 245 266 264 257 269 269 264 271 271 269 271 271 270 271 272 270 272 272 271 273 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 280 280 280 281 281 281 281 281 282 282 282 282 283 282 283 284 283 284 285 284 285 286 285 285 287 286 286 288 287 287 288 288 288 289 289 289 289 290 289 290 290 290 290 290 290 290 291 290 290 291 290 290 291 291 290 291 291 290 291 291 290 291 291 291 292 292 292 292 293 293 293 294 294 294 295 294 295 296 295 296 297 295 296 297 295 297 297 295 297 297 296 297 298 296 298 298 297 298 298 297 298 298 297 298 298 297 297 297 297 297 296 298 296 296 298 297 296 298 297 297 298 298 297 298 298 298 298 298 298 297 297 297 296 296 296 296 296 296 296 296 296 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 296 296 297 294 294 296 294 294 296 293 292 294 291 290 293 289 288 291 285 285 289 283 283 288 280 280 286 278 278 284 275 276 282 274 273 281 272 271 279 271 269 277 269 267 275 267 265 274 265 262 272 262 260 269 260 258 267 258 256 266 256 253 264 254 250 262 252 248 260 251 247 260 251 246 259 251 246 258 250 246 257 249 245 256 247 244 255 244 242 254 241 239 253 238 236 251 237 234 251 235 232 251 233 231 250 231 230 249 231 231 247 232 232 245 233 234 244 233 234 243 236 237 243 236 237 242 235 236 240 235 237 240 236 237 238 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 243 235 255 246 236 257 248 237 259 250 239 260 251 241 260 252 241 260 252 240 260 252 240 260 255 245 266 264 257 269 269 264 271 271 269 272 272 270 271 272 270 272 272 271 273 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 280 280 280 281 281 281 281 281 282 282 282 282 283 283 283 284 283 284 285 284 285 286 285 285 287 286 286 287 287 287 288 288 288 289 289 289 289 289 289 289 290 289 289 290 290 289 290 290 289 290 290 289 290 290 290 290 291 290 291 291 290 291 291 291 292 292 292 293 293 293 294 294 294 295 295 294 295 296 295 296 297 295 296 297 295 296 297 295 296 297 295 297 297 296 297 297 296 297 297 297 297 297 297 297 297 296 296 296 297 296 296 297 296 296 298 296 296 298 297 296 299 298 297 299 298 298 298 298 298 297 297 297 296 296 296 296 296 296 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 296 296 297 294 295 296 294 294 295 292 292 294 289 289 292 288 288 291 288 287 290 285 285 289 281 281 287 278 278 285 276 276 283 274 273 281 273 271 278 271 269 277 269 267 275 267 265 274 265 262 272 262 260 269 260 258 267 258 255 266 256 252 264 254 250 262 253 248 261 252 247 260 252 247 259 251 247 258 250 246 257 248 245 256 247 244 255 244 242 254 241 239 253 239 236 251 239 235 251 236 233 250 235 232 250 231 230 249 231 231 247 233 233 246 235 235 244 234 234 243 237 238 244 236 237 242 235 236 240 235 237 240 236 237 238 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 255 246 237 257 249 238 259 250 240 260 252 242 261 252 242 261 252 240 260 252 240 260 255 245 265 263 256 269 269 263 271 271 268 272 272 270 272 272 270 272 272 271 273 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 279 280 280 280 280 281 281 281 281 281 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 285 287 287 286 287 287 287 288 288 288 288 289 288 289 289 289 289 290 289 289 290 289 289 290 290 289 290 290 289 290 290 290 290 291 290 291 291 291 291 292 291 292 292 292 293 293 293 294 294 294 295 296 294 295 296 294 296 296 294 296 296 294 295 296 295 295 296 295 295 296 295 295 296 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 296 295 295 297 296 296 298 297 297 299 298 297 299 299 298 299 298 298 297 297 297 296 296 296 296 296 296 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 296 296 297 295 295 296 295 294 295 293 293 294 292 292 293 291 291 293 290 289 292 288 287 290 284 284 288 279 279 285 276 276 283 274 273 281 273 271 279 271 269 276 269 267 275 267 265 274 265 262 272 263 260 269 260 258 267 258 255 266 256 252 264 255 250 262 254 249 260 253 248 260 252 247 258 251 247 257 250 246 256 248 245 255 246 244 254 244 242 253 242 239 253 239 236 252 238 235 251 237 233 251 235 232 250 231 230 249 231 231 248 234 234 246 236 236 246 236 236 245 237 238 244 237 237 243 235 236 241 235 237 240 236 237 239 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 256 247 237 258 249 239 260 251 240 261 252 242 261 253 242 261 253 240 260 252 239 260 256 244 264 263 255 269 269 262 271 271 267 271 272 269 272 272 270 272 273 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 280 280 280 281 281 281 281 281 282 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 286 287 288 287 288 288 288 288 289 288 288 289 288 289 289 289 289 290 289 289 290 290 290 290 290 290 290 290 290 291 291 290 291 291 291 292 292 291 292 292 292 293 293 294 295 295 294 295 296 294 295 295 294 295 295 294 295 295 294 294 295 294 294 295 293 293 294 293 293 293 293 293 293 293 293 293 293 293 293 293 293 294 293 293 293 293 293 294 295 295 295 296 296 295 298 297 296 299 299 298 299 299 299 298 298 298 297 297 296 296 296 296 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 296 296 297 296 296 296 295 295 295 294 294 295 294 293 294 293 292 293 292 291 292 290 289 291 287 286 289 282 281 286 278 277 284 275 273 281 273 271 279 271 268 276 269 267 275 268 265 273 265 262 272 263 260 269 260 258 267 258 255 266 256 252 264 254 250 262 254 249 261 252 247 260 252 247 258 251 246 257 249 245 256 247 244 254 245 243 254 244 241 253 242 239 252 239 236 252 238 234 252 237 233 251 235 232 250 232 230 249 232 232 248 236 234 246 238 236 246 236 236 245 237 237 245 237 238 243 235 236 241 235 237 240 236 238 239 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 256 247 238 258 250 239 260 252 241 261 253 242 262 253 242 261 253 240 260 253 239 260 256 244 263 262 253 269 269 262 270 271 265 271 272 268 271 272 270 272 273 271 272 273 271 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 279 279 279 280 280 280 280 280 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 286 287 287 287 287 288 288 288 288 288 288 289 289 289 289 289 289 290 290 290 290 290 290 290 290 290 291 291 291 291 291 291 291 291 291 292 292 292 292 292 293 294 294 294 295 295 294 295 295 294 294 295 294 294 294 293 293 294 293 293 293 292 292 292 292 291 292 292 292 292 294 293 294 294 294 295 295 294 295 294 294 295 293 293 294 293 293 293 293 293 293 294 294 294 296 296 295 298 299 298 299 300 300 299 298 299 297 297 297 296 296 296 296 296 296 297 296 296 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 295 294 294 294 293 294 293 292 293 292 291 293 291 289 292 288 287 290 285 283 288 279 278 285 276 274 283 274 271 280 272 268 277 270 266 275 268 265 273 266 262 272 263 260 269 261 258 267 258 255 266 256 252 264 254 250 262 253 249 261 251 247 259 251 246 258 250 245 256 247 244 255 243 242 254 243 241 253 242 240 253 242 239 252 239 235 252 238 234 252 237 233 251 235 231 250 232 231 249 233 232 248 236 235 248 238 236 247 237 236 246 237 236 245 238 238 244 236 236 241 235 237 240 236 238 239 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 256 247 238 259 250 240 261 252 241 262 253 242 262 254 242 262 253 239 260 253 239 260 257 244 263 262 252 268 268 260 270 270 263 270 271 267 271 272 269 272 273 271 272 273 271 273 274 272 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 279 279 279 279 279 279 280 280 280 280 280 280 280 280 281 281 281 282 283 282 283 284 283 284 285 284 285 286 285 286 286 286 287 287 287 288 288 288 288 289 289 289 289 290 290 290 290 290 290 290 290 290 290 291 291 291 291 291 291 292 292 292 292 292 292 292 292 292 293 293 293 294 294 295 294 295 295 293 294 295 293 293 294 293 293 293 291 291 292 289 290 290 290 290 290 292 292 292 294 294 295 296 296 297 298 297 298 298 298 297 298 298 296 296 297 296 295 295 295 294 293 294 293 293 293 294 295 294 297 298 298 299 300 301 299 299 300 298 297 297 296 296 296 296 296 296 297 296 296 297 297 297 297 297 297 297 297 297 296 297 297 296 296 296 296 295 295 295 295 295 295 294 294 294 293 294 293 292 293 292 291 292 291 290 291 290 288 291 287 285 289 283 281 287 279 277 285 276 273 282 273 269 278 270 266 275 268 265 273 266 262 272 264 260 269 261 258 267 258 255 266 256 253 264 254 250 262 252 248 261 251 246 259 249 245 258 248 245 256 245 243 255 242 241 254 241 240 253 242 239 252 242 239 252 239 235 252 237 233 252 235 232 251 234 231 250 232 231 249 235 234 249 238 236 248 239 237 248 238 236 246 236 235 245 237 237 244 236 236 242 235 237 240 236 238 239 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 256 248 239 259 251 240 261 253 242 262 254 242 262 254 241 262 253 239 261 254 239 260 257 244 262 262 251 266 267 257 269 269 261 269 269 264 271 271 268 272 272 270 272 273 271 273 274 272 274 275 273 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 279 279 279 279 279 279 279 279 279 279 279 279 279 279 280 281 280 281 282 281 282 283 283 283 284 284 284 285 285 286 286 286 287 287 287 288 288 289 289 289 290 290 290 291 290 290 291 291 290 291 291 291 291 292 292 292 293 292 293 293 293 293 293 293 292 293 293 293 294 294 294 295 295 295 294 295 295 293 293 294 292 292 293 290 290 290 287 287 287 288 288 288 291 292 291 295 296 297 297 298 299 297 298 298 298 298 298 298 298 298 298 299 298 297 298 297 298 298 298 296 298 297 296 297 297 295 296 297 295 296 298 297 298 300 298 298 300 297 297 298 296 296 296 296 296 295 297 296 296 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 296 295 295 296 295 295 295 294 294 294 293 293 293 292 292 292 291 292 291 290 291 291 289 291 289 287 290 286 284 289 284 281 287 280 277 284 275 272 280 271 267 276 268 264 273 266 262 272 264 260 269 261 258 268 258 255 266 256 253 264 253 250 262 251 248 260 250 246 259 248 245 257 247 244 256 244 242 255 241 240 253 241 240 253 242 239 253 242 238 253 237 234 253 237 233 252 235 231 251 234 231 250 233 231 249 237 235 249 239 237 249 240 237 248 239 237 247 237 236 245 237 237 244 236 236 242 235 237 240 236 238 239 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 256 248 239 259 251 241 261 253 242 262 254 242 263 254 241 262 254 239 261 254 239 260 257 244 262 262 250 265 265 254 267 268 258 268 269 262 270 270 267 272 272 270 272 273 271 273 274 272 274 275 273 275 276 275 276 277 276 277 278 277 278 278 278 278 279 278 278 279 278 278 279 278 278 278 278 278 278 278 278 279 278 279 280 278 280 281 279 281 282 281 282 283 283 283 283 282 285 284 284 287 286 287 289 288 289 290 289 290 291 290 291 291 290 292 292 291 292 293 292 293 294 293 294 294 294 294 294 294 294 294 294 294 294 295 294 295 296 295 295 296 295 294 294 294 292 292 293 290 290 290 286 286 286 285 285 284 289 289 288 295 296 295 297 299 299 298 298 298 298 298 298 298 299 298 298 299 298 298 299 298 298 299 298 299 300 299 299 301 300 299 301 301 297 298 299 296 296 298 296 296 298 295 296 298 296 296 297 296 295 295 296 296 295 296 296 296 297 296 296 297 297 297 297 297 297 297 297 297 296 296 296 296 295 295 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 291 291 289 290 290 288 290 288 286 289 286 283 288 283 280 285 278 274 281 272 268 277 268 265 274 266 262 272 264 260 269 261 258 268 258 255 266 255 253 264 253 250 262 251 248 261 249 246 259 247 244 258 246 243 256 243 242 255 241 240 253 241 239 253 242 239 253 240 237 253 236 233 253 235 232 252 234 231 251 233 231 251 234 232 249 239 236 249 240 237 249 240 237 249 240 237 248 238 237 246 236 235 244 236 236 242 235 237 240 236 238 239 238 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 257 249 239 260 252 241 262 253 242 263 255 242 263 255 240 262 254 239 261 254 239 260 258 243 262 261 249 264 265 253 266 267 256 267 268 260 269 270 265 271 272 268 272 273 271 273 273 272 274 274 273 275 276 275 276 277 276 277 278 277 278 278 278 278 279 278 278 279 278 278 279 278 278 279 278 278 278 277 278 279 277 279 279 278 280 280 279 280 281 279 282 282 280 283 282 282 285 283 283 288 285 286 290 287 288 291 288 289 291 289 291 292 290 291 293 291 292 294 292 293 294 293 293 293 293 293 293 293 294 293 293 294 293 294 294 294 294 294 293 294 294 292 292 293 290 291 291 286 287 286 284 284 283 285 286 285 291 292 291 298 299 298 298 298 298 298 298 298 299 299 298 298 300 298 298 300 299 299 300 299 299 300 299 300 302 300 301 303 302 302 302 303 299 299 301 296 297 298 295 295 297 294 295 296 295 295 296 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 296 296 297 296 297 296 296 296 295 296 295 295 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 292 290 290 291 289 290 290 288 290 289 286 289 287 285 288 284 281 286 280 276 282 275 271 278 270 265 274 267 262 272 264 260 269 261 258 267 258 255 266 255 253 265 252 250 263 250 248 261 249 246 259 247 244 258 246 243 256 244 242 255 242 241 254 242 240 254 243 239 254 239 235 253 235 233 253 234 232 252 233 231 252 233 231 251 235 233 250 239 236 250 240 237 250 241 238 249 240 238 248 239 238 247 235 235 243 237 237 243 235 237 241 236 238 239 238 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 236 257 249 239 260 252 242 262 254 242 263 255 241 263 255 239 262 254 238 261 255 239 260 258 243 262 261 248 264 263 251 265 266 254 267 267 259 269 269 263 271 271 267 272 272 270 273 273 272 274 274 273 275 276 274 276 277 276 277 278 277 278 278 278 278 279 278 278 279 278 279 279 278 279 280 278 279 279 278 279 280 278 280 280 278 281 281 279 282 281 280 283 282 281 284 282 282 287 284 284 289 286 286 290 287 287 291 287 287 292 289 288 293 290 289 294 291 290 294 291 290 292 291 290 291 291 291 291 291 291 291 291 292 292 292 292 292 292 293 291 292 292 290 290 291 287 287 287 284 284 284 284 284 283 288 288 288 295 296 294 298 299 298 298 298 298 298 298 298 298 299 298 298 300 298 298 299 299 298 300 298 298 301 299 300 302 300 301 303 302 302 304 304 301 302 304 299 299 300 297 297 298 295 296 297 295 295 295 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 295 296 296 296 296 296 296 296 295 296 295 295 296 295 295 295 294 294 294 293 293 294 292 292 293 291 291 292 290 290 291 289 290 290 288 289 289 287 289 288 285 288 286 282 286 282 278 283 277 273 278 273 269 276 268 263 273 264 260 270 261 258 268 258 255 266 255 253 265 252 250 263 249 247 261 248 245 259 247 244 258 246 243 257 244 242 256 243 242 255 244 241 255 244 240 254 238 235 253 235 233 253 233 232 252 233 232 252 234 232 251 237 234 250 240 236 250 241 237 250 242 238 250 241 238 248 241 240 248 236 235 244 237 237 243 235 237 241 236 237 239 238 238 237 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 236 257 249 240 260 252 242 262 254 242 263 255 240 263 255 239 263 254 238 261 255 239 260 258 243 261 261 247 263 263 250 265 265 252 267 267 258 269 269 261 270 271 265 271 272 269 273 273 271 274 274 273 275 275 274 276 277 276 277 278 277 278 278 278 278 279 278 279 279 278 280 280 279 280 281 280 281 281 279 281 281 279 282 282 280 283 282 281 283 282 281 284 283 282 286 284 283 288 285 284 290 287 286 291 288 287 291 288 287 292 289 287 293 289 287 293 290 287 292 290 287 291 289 286 289 289 285 287 288 285 287 287 285 287 287 285 287 287 286 286 287 286 285 286 285 284 284 283 284 284 283 287 287 286 292 292 292 298 299 296 298 298 298 298 299 298 299 300 299 298 299 298 297 298 298 297 298 298 297 299 298 298 300 298 299 302 300 301 303 301 301 304 303 302 303 305 300 301 302 298 298 299 296 296 297 295 295 296 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 296 295 295 296 295 295 295 294 294 294 293 293 294 292 292 293 291 291 292 290 290 291 289 290 290 288 289 290 287 289 288 286 288 286 283 287 283 279 283 278 275 279 275 271 277 270 266 275 264 260 271 261 258 268 258 255 267 255 253 265 251 250 263 249 247 261 248 245 260 247 244 258 245 243 257 245 243 256 246 244 256 246 243 256 244 240 255 238 235 254 235 233 253 233 232 252 234 232 252 235 232 251 239 235 251 241 236 251 242 237 250 242 238 250 241 239 249 242 240 249 235 234 244 237 236 244 236 237 241 236 237 239 238 238 237 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 245 236 257 249 240 260 252 242 262 254 242 263 255 240 263 255 238 263 255 238 262 256 240 261 258 243 261 260 246 263 262 249 265 264 251 266 266 255 269 269 260 270 270 263 271 271 267 272 272 271 273 274 273 274 275 274 276 277 275 277 278 277 278 278 277 278 279 278 279 280 279 280 281 280 281 282 281 282 282 281 283 283 281 284 284 282 285 284 283 286 284 283 287 285 284 289 286 285 290 288 286 292 289 287 293 290 288 293 290 288 293 290 288 294 290 288 295 291 288 294 291 287 291 290 285 289 288 284 286 287 282 285 286 281 284 285 281 284 285 282 283 285 282 283 283 281 284 284 282 287 287 286 292 292 291 297 298 296 299 300 298 299 300 298 299 300 298 298 300 298 298 298 298 297 298 298 298 298 298 298 300 298 298 300 299 299 301 300 300 302 300 300 302 302 300 302 303 299 300 301 298 298 299 296 296 297 295 295 295 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 296 295 295 296 295 294 295 294 294 294 293 293 294 292 292 293 291 291 292 290 291 291 289 290 291 289 289 290 288 289 289 286 288 287 284 287 284 280 284 280 276 280 276 272 278 272 268 276 265 261 272 261 258 268 258 256 267 256 253 266 252 250 263 249 247 261 248 245 260 246 243 259 245 243 258 245 243 257 246 243 257 247 243 257 245 241 256 240 237 255 236 234 253 235 233 253 236 234 252 238 235 252 240 236 252 241 236 251 242 237 251 243 238 250 242 239 249 242 241 249 237 236 245 238 237 244 236 237 241 236 237 239 238 238 237 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 245 236 257 249 240 261 253 242 263 254 242 263 255 239 263 255 237 263 255 238 262 256 240 261 259 243 262 260 246 263 262 248 264 263 250 266 265 254 267 267 257 269 269 261 271 271 266 272 272 270 273 273 272 274 275 274 275 276 275 277 278 276 278 278 277 279 279 278 280 280 279 281 281 280 282 282 281 282 283 282 284 284 283 285 285 284 286 285 285 288 286 285 289 287 286 291 288 287 292 289 288 294 291 289 295 292 290 294 292 290 295 292 290 296 293 290 296 294 290 296 294 290 294 292 288 292 290 287 289 288 285 287 287 283 285 286 283 285 285 282 284 284 282 284 285 283 287 287 286 291 291 291 297 296 296 301 301 299 300 301 298 299 300 298 298 299 298 298 298 298 297 298 298 298 298 298 298 300 298 299 302 299 299 302 301 300 302 301 300 302 301 299 301 301 297 298 299 297 297 298 297 297 298 296 296 297 296 295 296 295 295 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 296 295 295 295 295 294 295 294 294 294 293 293 294 292 292 293 291 291 292 290 291 291 290 290 291 289 289 290 288 289 289 287 288 287 285 287 285 282 284 281 278 281 277 273 278 273 268 276 266 261 272 262 258 269 260 257 268 258 255 266 252 250 264 249 247 261 247 245 260 246 243 259 245 243 258 245 243 257 246 243 257 247 244 257 246 243 257 241 238 255 240 237 254 236 234 253 239 236 252 241 237 253 241 236 252 242 237 252 243 237 251 243 238 250 243 239 250 243 241 249 238 236 246 239 238 245 236 237 242 236 236 238 238 238 237 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 245 236 257 250 240 261 253 243 263 254 242 263 255 238 264 255 237 263 255 238 262 257 240 262 259 243 262 260 246 263 262 247 264 263 250 266 265 253 267 267 255 269 268 259 270 271 265 272 272 269 273 273 272 274 275 273 275 276 275 276 277 276 278 278 277 279 279 278 280 280 279 281 281 280 282 282 281 283 283 282 284 284 283 285 285 284 286 286 285 287 287 286 289 288 287 291 289 288 294 291 290 295 292 290 295 293 290 295 293 291 294 293 291 295 294 292 297 295 293 298 296 294 298 296 292 297 294 291 295 293 290 292 292 289 290 290 288 289 289 288 289 289 287 289 290 288 292 292 291 295 295 294 299 299 297 300 301 298 299 301 298 298 299 297 298 298 298 297 297 298 297 298 298 298 298 298 298 301 299 299 302 299 300 303 301 301 304 303 300 302 302 298 299 300 295 296 297 294 294 296 296 296 297 296 296 297 296 295 296 296 295 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 296 295 295 296 295 295 295 295 294 295 294 294 294 293 293 294 292 292 293 291 291 292 290 291 292 290 290 291 289 290 290 288 289 289 287 288 288 285 287 286 283 285 282 279 282 278 274 279 273 269 276 266 262 273 265 260 270 264 259 268 260 256 266 253 250 264 249 247 262 247 245 260 245 243 259 244 242 258 245 243 257 246 243 257 248 244 258 247 244 258 245 242 257 242 239 255 238 236 254 241 237 253 242 237 253 242 236 253 243 237 252 243 237 251 244 238 249 243 239 250 243 241 249 239 237 246 239 238 245 236 237 242 235 236 238 238 238 237 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 245 236 258 250 240 261 253 243 263 255 241 263 255 238 264 255 236 263 256 238 263 257 240 262 259 243 262 260 245 263 262 247 264 263 249 266 265 252 267 267 255 268 268 257 270 270 264 271 271 268 273 273 271 274 274 273 275 276 274 276 277 276 277 278 277 279 279 278 280 280 279 281 281 280 281 282 281 282 283 282 284 284 283 285 285 284 286 286 285 287 287 286 288 288 288 290 290 289 294 291 290 295 292 290 295 293 290 294 293 291 294 293 291 295 294 292 296 295 293 297 297 294 299 297 295 299 297 295 299 297 295 297 297 295 296 296 294 294 294 293 294 294 293 294 294 294 296 295 295 297 297 296 299 299 297 299 300 298 298 299 297 297 298 297 297 297 298 297 298 298 298 298 298 298 298 298 298 299 299 300 303 300 302 304 303 303 304 304 300 301 302 297 298 299 294 294 296 293 293 295 295 295 296 296 296 296 296 295 296 296 295 296 296 296 296 296 296 296 296 296 295 296 295 295 296 295 295 296 295 295 296 295 295 296 295 295 295 295 294 295 294 294 294 293 293 294 292 292 293 291 291 292 291 291 292 290 290 291 289 290 290 288 289 289 287 288 288 286 287 286 283 285 283 279 282 279 274 279 273 269 276 267 263 273 266 262 270 265 260 268 262 257 267 253 251 264 249 247 262 247 245 260 245 243 260 245 243 259 246 243 258 248 245 259 248 244 258 248 245 258 246 243 257 245 241 257 241 237 254 242 237 253 243 237 253 243 237 253 243 237 252 244 237 250 244 237 249 244 239 250 243 241 249 242 240 248 239 238 246 237 237 242 235 236 238 238 238 237 240 240 238 239 240 239 239 240 239 247 237 227 250 240 231 253 245 236 258 250 241 261 253 243 263 255 241 264 255 237 264 255 236 264 256 237 263 258 241 263 260 244 263 261 246 264 262 247 265 263 249 266 264 252 267 266 254 268 268 257 270 270 261 271 271 267 272 273 270 273 274 272 275 276 274 276 277 275 277 278 277 278 279 278 279 280 279 280 281 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 284 286 286 286 287 288 287 290 290 289 292 291 290 295 292 290 294 293 290 294 293 291 294 294 291 295 294 292 296 295 293 297 297 295 298 298 296 298 298 296 298 298 296 298 298 296 298 298 297 297 298 296 297 297 296 297 297 296 298 297 297 298 297 296 298 298 297 298 298 297 297 297 297 297 297 297 297 297 298 297 297 298 297 298 298 298 298 298 299 300 299 301 303 301 303 305 304 303 303 304 300 300 302 297 298 299 295 295 297 294 294 295 294 295 295 296 296 296 296 295 296 296 296 296 296 296 296 296 296 296 296 295 295 296 295 295 296 295 295 296 295 295 296 295 295 295 295 295 295 295 294 295 294 294 294 293 293 294 292 292 293 292 291 292 291 291 292 290 290 291 289 290 290 288 289 290 288 288 288 286 287 287 284 285 284 280 283 279 275 279 274 270 275 269 265 273 268 263 270 267 261 268 262 258 267 253 252 265 248 248 262 247 246 261 247 244 260 247 245 260 249 246 260 249 245 259 249 245 259 248 245 259 247 243 258 246 242 257 244 239 255 244 237 254 244 237 254 244 237 253 244 237 252 245 238 250 244 237 249 244 239 250 244 241 249 242 240 248 240 238 246 237 237 242 235 236 238 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 250 240 231 253 245 236 258 250 241 261 253 243 263 255 241 264 255 237 264 256 235 264 256 237 264 258 241 264 261 246 264 261 245 264 261 247 265 263 249 266 264 250 267 266 254 268 268 257 269 269 260 271 271 267 272 273 270 273 274 272 274 275 274 276 277 275 277 278 277 278 279 278 279 280 279 280 281 280 281 281 281 282 282 281 283 283 282 283 283 283 284 284 284 285 286 285 286 287 287 288 289 288 291 291 290 293 292 290 294 293 290 295 293 291 295 294 292 296 295 293 296 296 293 297 297 294 297 297 295 297 298 295 298 298 296 298 298 297 298 298 297 298 298 297 298 298 297 298 298 297 298 297 296 298 297 296 297 297 297 297 297 297 297 297 296 296 297 297 297 297 297 297 297 298 297 297 298 297 298 298 298 300 298 300 304 300 302 304 303 302 303 304 300 301 302 298 299 299 295 296 297 293 294 295 294 294 295 296 296 296 296 296 296 296 296 296 296 296 296 296 295 295 296 295 295 296 295 295 295 295 295 295 295 295 296 295 295 295 295 295 295 295 294 294 294 293 294 293 293 293 293 292 293 292 291 292 291 290 291 290 290 291 289 290 290 289 289 290 288 288 289 286 287 287 284 285 284 281 283 279 276 279 274 271 275 271 268 273 269 264 270 267 261 268 262 258 267 253 252 265 249 248 263 248 247 262 249 247 261 250 248 261 250 247 260 250 246 260 250 246 260 249 244 259 248 242 258 247 241 257 246 240 256 245 237 254 245 237 253 245 237 252 245 238 251 245 238 250 244 237 249 245 240 250 243 241 249 242 241 248 240 239 246 237 237 242 235 236 238 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 250 240 230 253 245 236 258 250 241 261 253 243 263 255 241 264 255 237 264 256 235 264 257 237 264 259 242 265 261 246 265 261 245 265 261 246 265 263 248 266 264 251 267 266 254 268 268 257 269 269 260 271 271 266 272 273 269 273 274 272 274 275 274 276 277 275 277 278 277 278 279 278 279 280 279 280 281 279 281 281 280 282 282 281 282 282 282 283 283 282 283 284 283 284 285 285 286 286 286 287 288 288 289 290 289 292 292 290 294 293 290 295 293 291 295 294 292 296 295 293 296 296 294 296 297 294 297 297 294 297 298 295 298 298 296 298 298 296 298 298 297 298 298 297 298 298 297 298 298 297 298 298 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 296 297 297 297 297 298 297 297 298 297 298 298 298 300 298 300 303 300 301 304 303 301 302 303 300 300 301 298 298 299 296 296 297 294 295 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 296 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 294 295 295 294 294 294 293 294 293 293 293 293 292 293 292 291 292 291 290 291 290 290 291 289 289 290 289 289 290 288 288 289 287 287 287 285 285 284 281 283 280 276 279 275 272 275 272 269 273 270 266 270 266 261 268 261 257 266 253 252 265 249 249 263 249 248 262 251 249 262 251 249 262 251 248 261 251 246 260 250 246 260 249 244 260 248 242 259 248 241 258 247 240 256 246 238 254 246 237 253 246 237 252 246 238 251 246 238 251 245 238 251 245 242 251 243 241 249 242 241 248 240 239 247 237 237 242 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 250 240 230 253 245 236 258 250 241 261 253 243 263 255 242 264 255 237 264 256 235 264 257 237 265 259 242 265 261 246 265 261 246 265 261 247 265 263 249 266 264 252 268 266 254 268 268 257 269 269 260 270 270 264 272 273 269 273 274 271 274 275 273 275 276 275 277 278 276 278 279 278 279 280 278 280 281 279 281 281 280 281 282 281 282 282 281 282 282 282 283 283 283 284 285 284 285 286 286 287 288 287 289 290 289 292 292 291 294 293 291 294 293 292 295 294 292 296 295 293 296 296 293 296 296 294 297 297 294 297 298 295 298 298 296 298 298 296 298 298 296 298 298 297 298 298 297 298 298 297 298 298 297 297 297 297 297 297 297 296 296 297 296 296 296 296 296 297 296 297 297 296 297 297 297 297 297 297 299 298 298 301 299 300 303 301 301 303 303 301 301 303 299 299 300 297 297 298 296 296 297 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 296 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 294 295 294 294 294 294 293 294 293 292 293 293 292 293 292 291 292 291 290 291 290 290 291 289 289 290 289 289 290 288 288 289 287 287 287 285 285 284 282 283 280 277 279 276 272 275 273 269 273 270 266 271 264 260 267 260 257 266 254 253 265 251 251 263 251 250 263 252 250 263 252 250 262 251 248 261 251 247 261 251 246 261 250 243 260 249 241 259 249 241 258 248 240 256 247 238 254 247 238 253 247 238 253 247 239 252 246 239 251 246 241 252 245 242 251 243 241 249 242 241 248 241 239 247 237 237 242 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 250 240 230 253 245 235 258 250 241 261 253 243 263 255 242 264 255 237 264 256 235 264 258 237 265 260 244 266 261 246 266 261 246 266 262 248 266 263 251 267 265 253 268 267 256 269 269 259 270 270 261 270 270 263 272 272 268 273 274 271 274 275 273 275 276 275 277 278 276 278 278 277 279 279 278 280 280 279 281 281 280 281 281 281 281 281 281 282 282 281 282 283 282 283 284 284 285 286 286 287 288 288 289 290 290 291 292 291 293 294 293 294 295 293 295 295 293 296 295 292 296 296 293 296 296 293 296 297 294 297 297 295 297 298 296 297 298 296 297 298 296 297 298 297 297 298 297 298 298 298 298 298 298 297 297 297 296 297 297 296 296 297 296 296 296 296 296 296 296 296 297 296 297 297 296 297 297 297 299 298 299 302 301 300 303 303 301 302 304 300 301 302 299 299 300 297 297 298 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 296 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 294 295 295 294 295 294 294 294 294 293 294 293 292 293 293 292 292 292 291 292 291 290 291 290 290 291 289 289 290 289 289 290 288 288 289 287 287 287 285 285 284 282 283 280 277 279 276 273 275 273 270 272 270 266 271 263 260 268 259 257 266 255 255 265 252 253 264 252 252 264 252 251 263 252 250 262 252 248 261 252 247 261 252 246 261 252 243 260 251 242 259 250 242 258 249 241 256 249 239 255 248 239 254 248 239 254 248 240 253 247 241 253 246 242 253 245 242 250 242 241 248 242 240 248 241 239 247 237 237 242 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 250 240 230 253 245 235 258 249 241 261 253 244 263 255 242 264 255 237 264 256 235 265 258 238 266 261 244 266 262 246 266 262 247 266 262 249 267 264 252 268 266 254 269 268 257 270 269 260 270 270 262 270 270 264 272 272 268 273 273 271 274 275 273 275 276 274 277 277 276 278 278 277 278 279 278 279 280 279 280 280 280 281 281 280 281 281 280 281 281 281 282 283 282 283 284 284 285 286 286 287 289 289 290 291 291 291 292 292 293 294 293 294 295 294 295 295 292 295 295 292 296 295 292 296 296 293 296 296 294 296 296 295 296 297 296 296 297 296 297 297 296 297 298 297 297 298 297 297 297 297 297 297 297 296 297 297 296 297 297 296 296 297 296 296 296 296 296 297 296 297 297 296 296 297 296 297 297 297 299 299 299 302 302 301 303 304 301 301 303 300 300 301 298 299 299 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 296 295 296 295 295 295 295 295 295 295 295 295 295 295 295 294 294 295 294 294 295 294 294 295 294 294 295 294 294 294 294 294 294 294 293 293 293 292 293 293 292 292 292 291 292 291 290 291 290 290 291 290 289 290 289 289 290 288 288 289 287 287 287 285 285 284 283 283 280 278 279 277 273 275 273 270 272 270 267 271 263 260 268 260 259 267 258 257 267 255 256 265 253 253 264 253 252 263 253 250 262 254 249 262 254 248 262 254 247 261 253 245 261 251 243 260 251 242 258 250 241 256 250 240 256 248 240 255 248 240 255 248 241 255 247 242 254 246 242 252 244 241 250 242 240 248 241 240 247 241 239 247 238 237 243 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 250 240 230 253 244 235 257 249 241 261 253 244 263 255 242 264 255 237 264 257 235 265 258 238 266 261 244 266 262 246 267 262 247 267 263 250 267 264 253 268 266 255 269 268 258 270 269 260 270 270 263 271 271 265 271 272 267 273 273 270 274 275 272 275 276 274 276 277 276 277 278 277 278 279 278 279 280 279 280 280 279 280 280 280 281 280 280 281 281 281 282 283 282 283 284 284 285 287 286 288 289 289 290 291 291 292 293 292 293 294 293 294 295 294 295 295 294 295 295 292 295 295 292 295 295 293 295 295 293 295 295 294 295 296 295 296 296 296 296 297 296 297 297 297 297 297 297 296 297 297 296 297 297 296 297 297 296 297 297 296 296 297 296 297 297 296 296 297 296 296 297 296 296 296 296 297 297 297 299 299 299 302 302 301 302 303 300 301 302 299 299 300 298 298 299 297 297 297 297 297 297 297 297 296 297 296 296 296 296 296 296 295 295 295 295 295 295 295 295 295 295 294 295 294 294 295 294 294 295 294 294 295 294 294 295 294 294 295 294 294 294 294 294 294 294 293 293 293 292 293 293 291 292 292 291 292 291 290 291 290 290 291 290 290 290 289 289 290 288 288 288 287 287 287 286 285 284 283 283 280 278 279 277 274 275 273 270 272 270 267 271 264 262 269 261 260 268 258 258 267 256 257 265 255 255 264 255 253 263 256 252 262 257 250 262 257 250 263 255 248 262 254 246 261 252 244 259 251 242 258 250 241 258 249 240 257 249 240 256 248 241 257 248 242 255 247 242 253 245 242 252 243 241 249 241 240 247 241 240 247 241 240 247 239 238 243 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 249 240 230 253 244 235 257 249 241 261 253 244 263 255 243 264 256 238 264 257 236 265 259 239 266 261 243 267 263 246 267 263 248 267 264 251 268 265 254 269 266 256 270 268 259 270 269 261 270 270 263 271 271 265 271 272 268 273 273 270 274 275 272 275 276 274 276 277 276 277 278 277 278 279 278 279 279 279 279 280 279 280 280 279 280 280 280 281 281 281 282 283 282 283 285 284 285 287 286 288 289 289 290 291 291 292 292 292 293 294 293 294 295 294 294 295 294 295 295 294 295 295 293 294 295 293 294 294 292 293 294 292 294 295 293 295 295 294 296 296 296 297 297 297 297 297 297 296 297 296 296 296 296 295 296 297 296 296 297 296 297 297 296 297 297 296 297 297 296 296 297 296 296 297 296 297 297 296 299 300 298 301 302 299 301 302 299 300 300 298 299 299 298 298 298 297 297 297 297 297 297 297 296 296 297 296 296 296 295 295 296 295 295 295 295 295 295 295 294 295 294 294 295 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 293 294 294 293 293 293 292 293 293 291 292 292 291 291 291 290 291 291 290 290 290 290 290 289 289 289 288 288 288 287 287 287 286 285 284 283 283 280 279 278 276 274 275 273 270 272 269 267 271 265 264 270 262 261 268 259 259 267 257 258 266 256 256 264 258 255 264 260 255 264 261 255 265 259 252 264 257 249 263 254 247 261 252 243 259 250 241 258 249 241 258 249 241 258 249 241 257 249 242 256 248 242 254 246 242 253 244 241 251 242 240 248 240 239 246 241 240 247 241 240 247 238 237 242 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 249 240 230 253 244 235 257 249 240 261 253 244 263 255 243 264 256 238 265 257 236 265 260 240 266 261 243 267 263 246 268 264 249 268 264 252 268 265 255 269 267 257 270 268 260 270 269 263 271 270 265 271 271 267 272 272 269 273 273 270 274 275 272 275 275 274 276 277 276 277 278 277 278 278 278 279 279 278 279 279 279 279 279 279 280 280 280 281 281 281 282 283 282 284 285 284 286 287 286 288 289 289 290 291 291 291 292 292 292 293 293 293 294 294 294 295 294 295 296 295 295 296 295 295 295 294 294 294 293 293 294 292 294 294 292 294 295 293 295 296 295 296 297 297 297 297 297 296 296 296 296 296 296 295 296 296 295 296 296 296 297 297 296 297 297 296 297 297 296 297 297 296 297 297 296 297 297 296 298 299 297 300 301 297 300 300 297 299 299 298 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 295 295 295 294 294 295 294 294 295 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 293 293 293 293 293 293 292 292 292 291 292 292 291 291 291 290 291 291 290 290 290 290 290 289 289 289 289 289 288 287 287 286 286 285 284 283 283 280 279 278 276 274 275 272 270 272 269 267 271 265 264 270 263 261 269 261 260 268 260 260 267 261 260 266 262 259 265 263 259 266 263 258 267 261 255 266 258 250 263 255 246 261 252 242 258 250 241 257 250 241 257 250 241 257 249 241 257 249 242 255 247 242 253 245 241 252 243 241 250 241 239 248 239 238 246 240 239 246 241 240 248 238 237 243 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 249 240 230 253 244 235 257 249 240 261 253 244 263 255 244 264 256 239 265 257 237 266 260 240 266 262 244 267 264 247 268 264 250 268 265 253 269 266 256 269 267 258 270 268 261 270 269 264 271 270 266 271 271 268 272 272 269 273 274 271 274 275 272 275 275 274 276 276 275 277 277 277 278 278 277 278 279 278 279 279 278 279 279 279 280 280 280 281 282 281 282 283 282 284 284 284 286 286 286 288 289 289 289 290 290 290 291 291 292 293 292 293 294 293 294 295 294 295 296 295 295 296 295 295 296 295 295 296 294 295 295 294 295 295 293 295 295 293 295 296 295 296 296 296 296 297 297 296 296 296 295 295 296 295 295 296 295 295 296 296 296 296 296 297 297 296 297 297 296 297 297 296 297 297 296 297 297 296 298 299 297 299 300 297 299 300 297 298 298 298 297 297 298 297 297 298 297 297 297 297 296 297 296 296 296 295 295 295 295 295 295 294 294 295 294 294 295 294 294 295 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 293 293 293 293 293 293 292 292 292 291 291 292 291 291 291 290 290 291 290 290 290 290 289 289 289 289 289 289 288 288 288 286 286 286 284 283 283 279 278 278 275 273 274 272 270 272 269 267 271 266 264 270 264 262 269 263 261 269 263 262 268 264 263 268 266 263 268 266 263 269 266 261 269 262 256 266 259 251 263 254 244 260 251 241 257 249 240 256 250 240 255 250 241 256 250 241 255 248 242 254 246 242 253 244 241 251 242 240 249 239 238 247 238 237 245 240 239 246 241 240 248 240 239 245 236 235 237 239 238 237 240 240 238 239 240 239 240 240 239 247 236 226 249 239 230 253 244 235 257 249 240 261 253 244 263 255 244 264 256 240 265 257 238 266 260 240 266 262 244 267 264 247 268 265 250 268 265 254 269 266 257 270 267 259 270 268 262 271 269 265 271 270 267 271 271 269 272 273 270 273 274 271 274 275 272 274 275 274 276 276 275 277 277 276 277 278 277 278 278 278 278 279 278 279 279 278 280 280 280 281 282 281 282 283 283 284 284 284 285 286 286 287 288 288 289 290 290 290 291 291 291 292 292 292 294 293 293 295 294 294 295 295 295 296 296 295 296 296 296 297 296 296 297 295 296 297 295 296 296 295 295 296 295 295 296 296 295 296 297 295 296 297 295 295 296 295 295 296 295 295 295 295 295 296 295 296 296 296 297 297 296 297 297 296 297 297 296 297 297 296 297 298 296 298 299 297 299 299 298 299 298 298 298 297 298 297 297 298 297 296 297 296 296 296 296 295 296 295 295 295 295 295 295 294 294 295 294 294 295 294 294 294 294 294 294 294 294 294 293 293 294 293 293 294 293 293 294 293 294 294 294 294 294 294 293 293 293 293 293 293 292 292 292 291 291 292 291 291 291 290 290 290 290 290 290 290 289 289 289 289 289 289 288 288 288 286 286 286 283 283 283 279 278 278 275 274 274 272 270 273 270 267 272 268 265 270 267 264 270 266 264 270 266 265 270 267 266 270 268 266 270 268 265 270 267 262 269 263 257 266 258 250 262 253 242 258 249 240 255 248 239 254 249 239 254 249 240 254 249 241 254 247 241 253 245 241 252 243 240 250 241 239 248 238 237 246 238 236 245 240 238 246 242 240 248 240 239 245 236 236 237 239 239 237 240 240 238 240 240 239 240 240 239 247 236 226 249 239 230 253 244 235 257 249 240 260 253 244 263 255 245 264 256 241 265 258 239 266 260 241 267 262 244 268 265 248 268 265 251 269 266 255 269 266 258 270 267 260 270 268 263 271 270 266 271 270 268 272 271 269 272 273 271 273 274 271 274 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 277 278 278 278 279 279 278 280 280 280 281 282 281 282 283 283 284 284 284 285 286 286 287 288 288 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 295 295 296 295 295 297 296 296 297 296 297 297 296 297 297 296 297 297 296 296 296 296 295 295 296 295 295 297 296 296 298 296 296 298 295 295 297 295 295 296 295 295 296 295 296 296 296 296 297 296 296 297 296 296 297 296 297 297 296 297 297 296 298 299 297 299 299 298 299 298 298 298 297 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 295 295 295 294 294 295 294 294 295 294 294 294 294 294 294 293 293 294 293 293 294 293 293 294 293 293 294 293 293 294 293 293 293 293 293 293 293 293 293 293 292 292 292 291 291 291 291 291 291 290 290 290 290 289 290 290 289 289 289 288 289 289 287 288 288 286 286 286 283 283 283 279 278 278 275 274 275 273 271 273 271 268 272 269 266 271 268 266 271 268 267 272 268 267 271 269 268 271 270 267 271 270 266 271 268 263 270 263 257 266 258 249 262 252 242 257 249 239 254 247 238 252 247 238 252 248 239 252 247 240 252 245 240 252 243 240 251 241 239 249 239 238 247 237 236 245 237 236 244 239 238 246 242 240 248 240 239 245 238 238 239 239 238 237 240 240 238 240 240 239 240 240 239 247 236 226 249 239 230 253 244 235 257 248 240 260 252 244 262 255 245 264 256 242 265 258 240 266 260 241 267 262 245 268 265 248 268 266 252 269 267 256 270 267 259 270 268 262 271 269 264 271 270 267 272 271 269 272 272 270 273 273 271 273 274 272 274 274 273 274 275 274 275 276 275 276 277 276 277 277 277 277 278 277 278 278 277 279 279 278 280 280 280 281 282 281 282 283 283 284 284 284 285 286 286 287 288 288 288 289 289 289 290 290 291 292 291 292 293 293 293 294 294 293 295 294 294 296 295 295 296 296 296 297 297 297 298 297 297 298 297 298 298 296 297 298 296 295 296 295 295 295 296 296 296 298 297 297 299 296 296 298 295 296 298 295 295 297 295 295 296 295 296 296 296 296 296 296 296 297 296 296 297 296 297 297 297 298 299 297 299 299 298 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 295 295 295 294 294 295 294 294 295 294 294 294 294 294 294 293 293 294 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 292 293 292 292 292 291 291 291 291 291 291 291 290 290 290 289 290 290 289 289 289 288 289 289 287 288 288 286 286 286 283 283 284 279 279 279 276 275 276 273 272 274 271 269 272 270 267 271 270 268 272 269 268 272 270 269 272 270 269 272 271 268 272 270 267 271 268 263 270 264 257 266 258 248 261 253 243 257 249 241 254 247 239 252 246 238 251 246 238 251 245 239 250 243 239 250 241 238 249 239 238 248 238 237 246 236 235 244 236 235 244 239 238 246 241 240 248 241 239 245 238 239 239 239 238 236 240 240 238 240 240 239 240 241 239 247 236 226 249 239 230 252 243 234 256 248 240 260 252 244 262 255 245 264 256 243 265 258 241 266 260 242 267 263 245 268 265 249 268 267 253 269 267 257 270 267 260 270 268 263 271 269 266 271 270 268 272 271 270 272 272 270 273 273 271 273 274 272 274 274 273 274 275 274 275 276 275 276 276 276 276 277 276 277 277 276 277 278 277 279 279 278 280 280 280 281 282 282 282 283 283 284 284 284 285 286 286 287 287 288 288 289 289 289 290 290 291 291 291 291 293 292 292 294 293 293 294 294 294 295 295 295 296 296 296 297 296 297 297 297 297 298 297 298 298 297 298 298 296 296 297 296 296 297 296 297 297 297 298 297 298 297 297 299 296 296 299 295 295 298 295 295 297 295 295 296 295 295 296 296 296 296 296 296 296 296 297 297 297 297 299 298 299 299 299 298 298 298 297 297 298 297 297 297 296 296 297 296 296 296 296 295 296 295 295 295 295 294 295 294 294 295 294 294 294 294 294 294 294 293 294 293 293 294 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 292 292 292 292 292 291 291 291 291 290 291 291 290 290 290 289 290 290 289 289 289 288 289 289 287 288 288 286 286 286 283 284 284 279 279 280 276 276 276 274 273 274 272 271 273 271 269 272 271 270 273 271 270 273 271 270 273 271 270 273 271 269 272 271 268 272 269 264 270 265 258 267 259 250 262 254 246 258 250 243 255 247 241 253 245 239 252 245 238 250 243 238 249 241 237 248 239 237 248 238 236 246 236 235 245 235 234 244 236 235 243 239 238 246 241 240 248 241 240 245 238 239 240 239 239 237 240 240 238 240 240 239 240 241 239 247 236 226 249 239 229 252 243 234 256 248 240 260 252 244 262 255 246 264 256 244 265 258 242 266 260 243 267 263 246 268 266 250 269 267 254 269 267 258 270 268 261 271 269 264 271 270 266 272 271 269 272 271 270 272 272 271 273 273 271 273 274 272 274 274 273 274 275 274 275 276 275 275 276 276 276 277 276 276 277 276 277 278 277 278 279 278 280 280 280 281 281 282 282 283 283 284 284 284 285 285 286 286 287 288 288 289 289 289 290 290 291 291 291 291 292 292 292 293 293 293 294 294 294 295 295 295 296 295 296 297 296 297 297 297 297 298 297 298 298 297 298 298 297 298 298 297 298 299 297 298 299 297 298 299 297 297 299 297 297 298 299 297 297 299 296 296 299 295 296 298 295 295 296 295 296 296 296 296 296 296 296 297 297 297 298 298 298 298 299 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 295 294 295 294 294 295 294 294 294 294 293 294 293 293 294 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 292 292 292 292 292 292 291 291 291 290 291 291 290 290 290 289 289 290 288 289 289 288 289 289 287 288 288 285 286 286 283 284 284 279 280 280 276 276 277 274 274 275 273 272 274 272 271 273 271 271 274 271 271 274 271 271 273 272 270 273 272 270 273 272 269 273 270 265 271 266 260 267 261 256 264 257 251 261 252 246 257 248 243 254 244 240 252 243 238 250 241 237 248 239 236 246 237 235 246 236 235 245 235 235 244 234 234 243 236 235 243 239 238 245 241 240 248 241 240 245 239 239 240 239 239 236 240 240 238 240 241 239 240 241 239 247 236 226 249 239 229 252 243 234 256 248 239 260 252 244 262 254 246 264 256 244 265 258 243 266 260 243 267 262 246 268 266 252 269 267 256 269 268 259 270 268 262 271 269 264 271 270 267 272 271 269 272 272 270 272 272 271 273 273 272 273 274 272 274 274 273 274 275 274 275 275 275 275 276 275 276 276 276 276 277 276 277 277 277 278 278 278 280 280 280 281 281 282 282 282 283 284 284 284 285 285 286 286 287 287 288 288 289 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 295 295 296 295 296 297 296 297 297 297 297 298 297 298 298 298 298 298 298 298 298 298 298 298 298 298 299 298 297 299 298 297 299 297 297 299 298 298 299 299 297 299 300 296 296 299 295 296 297 295 295 296 295 296 296 296 296 297 297 297 298 298 298 298 299 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 294 294 295 294 294 295 294 293 294 293 293 294 293 293 294 293 293 293 293 293 293 292 293 293 292 293 293 292 293 293 293 293 293 293 293 293 292 292 292 292 292 291 292 292 291 291 291 290 290 291 290 290 290 289 289 290 288 289 289 288 289 289 287 288 288 285 286 286 283 284 284 279 280 280 276 277 277 275 275 276 273 273 274 272 272 274 272 272 274 272 272 274 272 271 274 272 271 273 273 271 273 273 269 273 272 267 272 269 262 268 264 258 264 259 255 262 255 251 260 250 246 257 245 242 253 243 239 250 240 237 247 238 235 245 236 234 245 235 234 245 234 235 244 234 234 243 236 236 243 239 238 246 242 240 248 241 240 245 239 239 240 239 239 236 240 240 238 240 241 239 240 241 239 247 236 226 249 239 229 252 243 234 256 247 239 259 251 244 262 254 246 264 256 245 265 258 244 265 260 244 267 262 247 268 265 253 269 268 257 270 268 260 270 268 263 271 269 265 271 270 268 272 271 269 272 272 270 272 272 271 273 273 272 273 273 272 274 274 273 274 275 274 274 275 274 275 276 275 276 276 276 276 277 276 277 277 277 278 278 278 280 280 280 281 281 282 282 282 283 283 284 284 285 285 286 286 287 287 288 288 289 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 295 295 296 295 296 296 296 296 297 296 297 298 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 297 298 298 297 298 298 296 298 297 297 298 298 298 298 299 297 298 299 296 296 298 295 295 296 295 295 296 296 296 297 297 297 298 299 298 298 299 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 294 294 295 294 294 294 293 293 294 293 293 294 293 293 293 293 292 293 292 292 293 292 292 293 292 292 293 292 292 293 292 293 293 292 293 292 292 292 292 292 292 291 292 292 291 291 291 290 290 290 290 290 290 289 289 290 288 289 289 287 289 289 287 288 288 285 287 286 283 284 284 280 280 281 277 278 278 275 276 276 274 274 275 273 273 274 273 273 274 272 272 274 273 272 274 273 272 274 274 272 274 273 270 274 273 268 273 271 265 272 269 263 268 265 260 264 259 255 262 253 250 259 247 244 255 243 241 251 239 238 247 237 235 245 235 233 244 234 234 244 234 235 243 234 234 243 236 236 243 239 239 246 242 240 248 241 240 245 239 239 240 239 239 236 240 241 238 240 241 239 240 241 239 246 236 226 249 239 229 252 243 234 255 247 239 259 251 243 262 254 246 263 256 245 265 258 246 265 260 245 266 262 247 268 265 254 269 268 258 270 268 261 270 269 264 271 269 266 271 270 268 271 271 270 272 272 271 272 272 271 272 273 272 273 273 272 274 274 273 274 275 274 274 275 274 275 275 275 276 276 275 276 277 276 277 277 277 278 278 278 280 279 280 281 281 281 282 282 283 283 284 284 285 285 286 286 287 287 287 288 288 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 294 295 296 295 296 296 296 296 297 296 297 298 297 298 298 298 298 298 298 298 298 298 298 298 299 298 298 299 298 299 299 298 299 299 298 298 299 298 298 298 297 297 298 297 297 297 296 296 297 296 295 296 296 296 297 297 297 297 298 298 298 299 299 298 299 298 298 298 298 298 298 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 294 294 294 294 294 294 293 293 294 293 293 293 293 292 293 293 292 293 292 292 293 292 292 293 292 292 293 292 292 293 292 292 293 292 292 292 292 292 292 292 292 291 292 291 291 291 291 290 290 290 289 290 290 289 289 290 288 289 289 287 288 289 287 288 288 285 287 287 283 285 285 281 282 282 278 279 279 276 276 277 274 275 275 274 274 274 273 273 274 273 273 275 273 273 274 274 272 274 274 272 274 274 271 274 273 269 274 272 267 273 271 266 272 269 264 268 264 259 263 256 253 261 249 246 257 244 242 253 239 239 248 236 236 245 235 234 244 234 234 244 234 235 243 234 235 243 236 237 243 239 239 246 242 240 247 241 240 245 239 240 240 240 239 236 240 241 238 240 241 239 240 241 239 246 236 225 249 239 229 252 242 234 255 247 239 259 251 243 261 254 246 263 256 246 265 258 246 265 260 246 266 262 248 268 265 254 269 268 259 270 268 262 270 269 264 271 269 266 271 270 268 271 271 270 272 272 271 272 272 271 272 272 272 273 273 273 274 274 273 274 275 274 274 275 274 275 275 275 275 276 275 276 276 276 277 277 277 278 278 278 280 279 280 281 281 281 282 282 283 283 284 284 284 285 286 286 287 287 287 288 288 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 298 298 298 298 298 299 299 298 299 299 298 299 299 298 299 299 299 299 299 298 299 299 298 298 299 298 298 299 297 297 298 297 296 297 297 296 297 297 296 297 298 297 298 299 298 298 299 299 298 299 298 298 298 298 298 298 297 297 298 297 297 297 296 296 296 296 296 296 295 295 295 294 294 294 294 293 294 293 293 293 293 293 293 293 292 293 292 292 293 292 292 293 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 291 291 291 291 291 291 290 290 290 289 290 290 289 289 289 288 288 289 287 288 288 287 288 288 286 287 287 284 285 285 282 283 283 279 280 279 276 277 277 275 275 275 274 274 275 274 274 275 274 273 275 274 273 275 275 273 275 275 273 275 274 272 275 274 270 274 273 269 274 273 268 274 272 267 272 268 263 266 258 255 263 250 249 259 245 244 254 241 240 249 237 237 246 235 235 244 235 235 244 235 236 243 235 236 243 237 237 244 240 239 246 242 240 247 241 240 245 239 240 239 240 239 236 240 241 238 240 241 239 240 241 239 246 236 225 249 239 229 252 242 233 255 246 238 258 250 243 261 253 246 263 256 246 264 258 247 265 259 246 266 261 248 268 264 254 270 268 260 270 269 263 270 269 265 271 269 266 271 270 268 271 271 270 272 272 271 272 272 272 272 272 272 273 273 272 274 274 273 274 275 274 274 275 274 275 275 275 275 276 275 276 276 276 277 277 277 278 278 279 279 279 280 281 281 281 282 282 283 283 284 284 284 285 286 286 287 287 287 288 288 289 290 290 290 291 291 291 292 292 292 293 293 293 294 293 294 294 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 298 298 298 299 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 298 299 299 298 298 299 298 298 298 297 297 297 298 298 298 299 298 299 299 299 299 299 299 299 299 298 298 299 298 298 298 298 297 298 297 297 297 297 296 296 296 296 296 295 295 295 294 294 294 294 293 294 293 293 293 293 292 293 292 292 293 292 292 293 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 291 291 291 290 291 291 290 290 290 289 290 290 289 289 289 288 288 289 287 288 288 287 288 288 286 287 287 284 286 285 283 284 284 280 281 280 277 278 278 275 276 276 274 275 275 274 274 275 274 274 275 275 274 275 275 274 275 275 274 275 275 273 275 274 271 275 274 270 275 273 269 274 273 269 274 270 266 270 261 257 264 253 251 260 246 246 256 242 242 251 239 239 247 236 237 245 236 237 245 236 237 244 236 237 244 238 238 244 240 240 246 242 240 247 241 240 245 239 240 239 240 239 237 240 241 238 240 241 239 240 241 239 246 236 225 249 239 229 251 242 233 255 246 238 258 250 242 261 253 245 263 255 246 264 257 248 265 259 247 266 260 248 268 264 255 270 267 260 270 269 263 271 269 265 271 270 267 271 270 268 271 271 270 272 272 271 272 272 272 272 272 272 272 273 272 273 274 273 274 275 274 274 275 274 275 275 275 275 275 275 276 276 276 277 277 277 278 278 279 279 279 280 281 281 281 282 282 283 283 284 284 284 285 286 286 287 287 287 288 288 289 290 289 290 291 291 291 292 292 292 293 292 293 294 293 294 294 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 298 298 298 298 298 298 298 298 298 299 298 299 299 298 299 299 298 299 299 298 299 299 299 299 299 299 299 299 298 299 299 298 298 299 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 295 295 295 294 294 294 294 293 294 293 293 293 293 292 293 292 292 293 292 292 292 292 292 292 292 291 292 292 291 292 291 292 292 291 292 292 292 292 292 292 292 292 291 292 291 291 291 290 291 291 290 290 290 289 289 289 289 289 289 288 288 288 287 288 288 287 288 288 286 287 287 285 286 286 283 285 284 281 283 281 278 279 278 276 277 276 275 275 275 275 275 275 275 275 275 275 274 276 276 274 276 276 274 276 276 274 276 275 272 276 274 271 275 274 270 275 274 270 274 271 268 272 264 259 265 254 252 261 248 247 257 244 244 253 240 241 249 238 239 247 237 238 246 237 238 245 237 238 245 238 239 245 240 240 247 242 240 247 241 240 245 240 240 239 240 239 237 241 241 238 240 241 239 240 241 239 246 236 225 249 238 229 251 242 233 254 246 238 258 249 242 260 253 245 262 255 246 264 257 248 265 258 249 266 260 249 268 264 255 270 267 260 270 269 264 271 269 266 271 270 267 271 270 269 271 271 270 272 272 271 272 272 272 272 272 272 272 273 272 273 274 273 274 274 274 274 275 274 275 275 275 275 275 275 276 276 276 277 277 277 278 278 279 279 279 280 280 281 281 281 282 283 283 284 284 284 285 286 286 287 287 287 288 288 289 289 289 290 291 290 291 292 291 292 293 292 293 294 293 294 294 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 298 298 298 298 298 298 298 298 298 299 298 298 299 298 298 299 298 298 299 298 299 299 299 299 299 299 299 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 295 295 295 294 294 294 294 293 294 293 293 293 293 292 293 292 292 293 292 292 292 292 291 292 292 291 292 291 291 292 291 291 292 291 291 292 291 292 292 291 292 291 291 291 291 291 291 290 291 291 290 290 290 289 289 289 289 289 289 288 288 288 287 288 288 287 288 287 286 287 287 285 287 286 284 285 285 282 284 282 280 281 279 277 278 277 275 276 275 275 275 275 275 275 275 275 275 276 276 275 276 276 275 277 276 275 277 276 273 276 275 272 276 274 271 275 274 271 275 272 269 274 266 262 268 256 253 262 251 250 260 245 246 254 243 243 251 240 241 248 239 240 247 238 240 246 238 240 246 239 240 246 241 240 247 242 240 247 241 240 245 240 240 239 240 240 237 241 241 238 240 241 239 240 241 239 246 236 225 248 238 229 251 242 233 254 245 237 257 249 241 260 252 244 262 255 246 263 256 248 265 258 249 265 259 249 268 263 255 270 267 261 270 269 265 271 269 266 271 270 268 271 270 269 271 271 270 272 272 271 272 272 272 272 272 272 272 273 272 273 273 273 274 274 274 274 275 274 275 275 275 275 275 275 276 276 276 277 277 277 278 278 279 279 279 280 280 281 281 281 282 283 283 284 284 284 285 286 286 286 287 287 288 288 289 289 289 290 291 290 291 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 296 297 297 297 297 297 298 297 298 298 298 298 298 298 298 299 298 298 299 298 298 299 298 298 299 298 298 299 298 299 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 299 298 298 298 297 297 298 297 296 297 296 296 296 295 295 295 294 294 295 294 293 294 293 293 293 293 292 293 292 292 293 292 292 292 292 291 292 292 291 292 291 291 292 291 291 292 291 291 292 291 291 292 291 291 291 291 291 291 291 291 290 290 291 290 290 290 289 289 289 289 289 289 288 288 288 287 288 288 287 287 287 286 287 287 285 287 286 284 286 285 283 285 283 281 282 280 278 279 277 276 277 276 276 276 275 276 276 276 276 275 276 276 275 277 277 276 277 276 275 277 276 274 277 275 273 276 274 272 276 274 271 275 273 271 275 267 265 270 257 254 262 252 252 261 246 247 256 244 245 253 242 243 250 241 242 249 240 242 247 240 241 247 240 241 247 241 241 247 242 240 247 242 241 244 241 242 241 240 240 237 241 241 238 240 241 240 240 241 239 246 236 225 248 238 228 251 241 233 254 245 237 257 249 241 260 252 244 261 254 246 263 256 248 264 257 250 266 259 250 267 263 255 270 267 261 271 269 265 271 269 267 271 270 268 271 270 269 271 271 270 272 272 271 272 272 272 272 272 272 272 273 272 273 273 273 274 274 274 274 274 274 275 275 275 275 275 275 276 276 276 277 277 278 278 278 279 279 279 280 280 281 281 281 282 283 283 284 284 284 285 286 286 286 287 287 288 288 289 289 289 290 291 290 291 292 291 292 293 292 293 294 293 294 295 294 295 296 295 296 296 296 296 297 296 297 297 297 297 297 298 297 298 298 298 298 298 298 298 299 298 298 299 298 298 299 298 298 299 298 298 299 298 298 299 298 299 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 298 297 298 297 297 297 296 296 296 295 295 295 294 294 295 294 293 294 293 293 294 293 293 293 292 292 293 292 292 292 292 291 292 291 291 291 291 291 291 291 291 291 291 291 292 291 291 291 291 291 291 291 291 291 291 291 290 290 290 290 290 290 289 289 289 289 289 289 288 288 288 287 288 288 287 287 287 286 287 287 285 286 286 284 286 285 283 285 284 282 284 282 279 281 279 277 278 276 276 277 276 276 276 276 276 276 276 277 276 277 277 276 277 277 276 278 277 275 277 276 274 277 275 272 276 274 272 276 273 271 275 268 267 271 258 255 263 253 253 262 247 248 257 246 246 254 244 245 252 242 244 250 241 243 249 241 242 248 241 242 247 242 241 247 242 241 247 242 241 244 241 242 241 240 240 238 241 241 239 240 241 240 240 241 240 246 236 225 248 238 228 251 241 232 254 245 237 257 248 240 259 251 244 261 254 246 263 255 248 264 257 250 266 259 252 267 262 255 269 266 261 271 269 265 271 269 267 271 270 268 271 270 269 271 271 270 272 272 271 272 272 272 272 273 272 272 273 272 273 273 273 274 274 274 274 274 274 275 275 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 280 281 281 282 283 283 284 284 284 285 286 286 286 287 287 288 288 289 289 289 290 291 290 291 292 291 292 293 292 293 294 293 293 295 294 294 295 295 295 296 296 296 297 296 297 297 297 297 297 298 297 297 298 297 298 298 298 298 298 298 298 299 298 298 299 298 298 299 298 298 299 298 298 299 298 299 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 298 297 298 297 297 297 296 296 296 295 295 296 294 294 295 294 293 294 293 293 294 293 293 293 293 292 293 292 292 292 292 292 292 291 291 291 291 291 291 291 291 291 291 291 291 291 291 291 291 291 291 291 290 291 290 290 290 290 290 290 290 290 289 289 289 289 289 289 288 288 288 287 287 288 287 287 287 286 286 286 285 286 286 285 286 285 284 285 284 282 284 283 280 282 280 278 279 277 277 277 276 276 277 276 277 276 276 277 276 277 277 276 277 277 276 278 277 276 278 276 274 277 275 273 277 275 273 276 274 272 276 269 268 272 258 257 264 254 254 262 248 249 258 247 247 256 245 246 253 244 245 251 242 244 250 242 243 249 242 242 248 242 242 248 243 241 247 242 241 244 242 242 241 241 240 238 241 241 239 240 241 240 240 241 240 246 236 225 248 238 228 250 241 232 253 244 236 256 248 240 259 251 243 261 253 245 262 255 248 263 256 250 265 259 252 267 262 255 269 266 261 271 269 266 271 269 268 271 270 269 271 270 269 271 271 270 272 272 271 272 272 272 273 273 272 272 273 272 273 273 273 274 274 274 274 274 274 275 275 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 280 281 281 282 283 282 283 284 284 285 286 286 286 287 287 288 288 289 289 289 290 291 290 291 292 291 292 293 292 292 294 293 293 295 294 294 295 295 295 296 296 296 297 296 296 297 297 297 297 298 297 297 298 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 297 297 296 296 297 295 295 296 295 294 295 294 294 295 294 293 294 294 293 294 293 293 293 293 292 292 292 292 292 292 291 291 291 291 291 291 291 291 291 291 291 291 290 291 291 290 291 291 290 291 290 290 290 290 290 290 289 290 289 289 289 289 288 289 288 288 288 287 287 287 287 287 287 286 286 286 285 286 285 285 286 285 284 285 284 283 285 283 281 283 281 279 281 278 278 278 277 277 277 277 277 277 277 277 276 277 277 277 278 277 277 278 277 276 278 277 275 278 276 274 277 275 273 277 274 272 276 270 269 273 260 259 265 254 254 262 248 249 259 247 248 257 246 247 255 244 246 253 243 245 251 243 244 249 243 243 249 243 242 248 243 241 247 242 241 244 242 242 241 241 240 238 241 241 239 240 241 240 240 241 240 246 236 225 248 238 228 250 241 232 253 244 236 256 247 240 258 250 243 260 253 245 262 254 247 263 256 249 265 258 252 267 261 256 269 265 260 271 268 266 271 269 268 271 270 269 271 270 270 271 271 270 272 272 271 272 272 272 273 273 272 272 273 272 273 273 273 273 274 274 274 274 274 275 275 275 275 275 276 276 276 277 277 277 278 277 278 279 279 279 280 280 280 281 281 282 283 282 283 284 284 285 286 286 286 287 287 288 288 288 289 289 289 291 290 290 292 291 291 293 292 292 294 293 293 295 294 294 296 295 295 296 296 296 297 297 296 297 297 297 297 298 297 297 298 297 297 298 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 299 299 299 299 299 299 299 299 298 298 298 297 297 297 296 296 297 295 295 296 295 294 295 295 294 295 294 294 294 294 294 294 293 293 293 293 293 293 292 292 292 292 292 292 291 291 291 291 291 291 291 291 291 291 290 291 291 290 291 291 290 291 290 290 290 290 290 290 289 289 289 289 289 289 288 288 288 288 288 288 287 287 287 286 286 286 286 286 285 285 285 285 285 285 284 285 284 283 285 284 282 284 282 280 282 279 279 279 277 278 278 277 277 277 277 278 277 277 278 277 278 278 277 278 277 277 279 277 276 278 276 274 278 275 273 277 273 272 276 269 269 273 261 261 266 254 255 262 250 251 260 248 249 257 247 248 256 245 247 253 244 246 251 243 244 250 243 244 249 243 243 248 243 242 247 242 242 244 242 242 241 241 241 239 241 241 239 240 241 240 240 241 240 246 236 225 248 238 228 250 241 232 253 243 235 256 247 239 258 250 242 260 252 244 261 254 247 262 255 249 264 257 252 266 261 256 269 265 260 270 268 265 271 269 268 271 270 269 271 270 270 271 271 271 272 272 271 272 272 272 273 273 272 273 273 272 273 273 273 273 273 273 274 274 274 275 275 275 275 275 276 276 276 277 277 277 278 277 278 279 278 279 280 280 280 281 281 282 283 282 283 284 284 285 286 286 286 287 287 288 288 288 289 289 289 291 290 290 292 291 291 293 292 292 294 293 293 295 294 295 296 295 295 296 296 296 297 297 296 297 297 297 297 298 297 297 298 297 297 298 297 297 298 297 298 298 298 298 298 298 298 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 299 299 299 299 299 299 299 299 298 298 298 297 297 298 296 296 297 296 295 296 295 295 296 295 295 295 295 294 294 295 294 294 294 294 293 293 293 293 293 293 292 292 292 292 292 292 291 291 291 291 291 291 291 291 290 291 291 290 290 291 290 290 290 290 290 290 289 290 289 289 289 288 289 289 288 288 288 287 288 288 287 287 287 286 286 286 285 285 285 285 285 285 285 284 284 285 284 283 285 284 282 284 282 281 282 280 279 280 278 278 278 278 278 278 278 278 278 278 278 277 278 278 277 278 278 277 279 278 276 279 277 275 278 275 274 277 273 272 275 269 269 272 262 263 266 253 256 262 251 253 260 248 249 258 247 248 256 246 247 254 244 246 252 244 245 250 244 244 249 244 243 248 243 242 247 242 242 244 242 242 241 241 241 239 241 242 240 240 241 240 240 241 240 246 236 225 248 238 228 250 240 231 252 243 235 255 246 238 257 249 241 259 252 244 260 253 247 262 254 249 264 257 251 266 260 255 268 265 259 270 268 265 271 269 269 271 270 270 271 270 270 271 271 271 271 272 271 272 272 272 273 273 272 273 273 273 273 273 273 273 273 273 274 274 274 275 275 275 275 275 275 276 276 276 277 277 277 277 278 279 278 279 280 280 280 281 281 282 283 283 284 284 284 285 286 286 286 287 287 288 288 288 289 289 289 291 290 290 292 291 291 293 292 292 294 293 293 295 294 294 296 295 295 296 296 296 297 297 296 297 297 297 297 298 297 297 298 297 297 298 297 297 298 297 297 298 297 297 298 298 298 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 300 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 299 299 299 298 298 298 297 298 298 296 296 297 296 296 296 296 295 296 296 295 295 296 295 295 295 295 294 295 295 294 294 294 293 293 294 293 293 293 292 292 292 291 292 291 291 291 291 291 291 290 291 291 290 290 290 290 290 290 290 290 289 289 290 289 289 289 288 288 289 287 288 288 287 287 287 286 287 287 286 286 286 285 285 285 285 285 284 285 284 284 284 284 283 284 284 282 284 283 281 282 281 280 281 279 279 279 278 278 278 278 278 278 278 278 278 279 278 278 279 278 278 279 278 277 279 277 276 278 275 274 277 272 271 275 266 266 271 263 264 267 254 258 263 252 253 260 250 251 259 247 249 257 246 248 255 245 246 253 244 245 251 244 245 250 244 244 249 244 243 247 242 243 244 242 242 241 242 241 239 241 242 240 240 241 240 240 241 240 246 236 225 248 238 228 250 240 231 252 243 235 255 246 238 257 249 241 259 251 243 260 252 246 261 254 248 263 256 251 266 259 255 268 264 258 270 267 264 271 269 269 271 270 270 271 270 270 271 271 271 271 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 273 273 274 274 274 275 275 275 275 275 275 276 276 276 277 277 277 277 278 278 278 279 280 280 280 281 281 282 283 283 284 284 284 285 286 286 286 287 287 287 288 288 289 289 289 290 290 290 292 291 291 293 292 292 294 293 294 295 294 294 296 295 295 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 297 298 297 297 298 297 297 298 297 298 298 298 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 300 299 300 299 299 299 299 299 298 299 299 297 298 298 296 297 297 296 296 297 297 296 296 297 296 296 297 296 295 296 296 295 295 296 294 294 295 293 294 294 293 293 294 292 293 293 292 292 292 291 291 291 291 291 290 290 291 290 290 290 290 290 290 289 290 289 289 289 289 289 289 288 288 288 287 288 288 286 287 287 286 286 287 285 286 286 285 285 285 285 284 284 284 284 284 284 284 283 284 283 283 284 283 282 283 281 281 281 280 280 280 279 279 279 279 279 279 279 279 279 279 279 278 280 279 278 280 278 277 280 277 276 279 275 274 277 271 271 274 264 266 270 265 266 269 257 261 265 252 255 261 250 251 259 248 250 258 247 249 256 245 247 253 245 246 251 245 246 250 244 245 249 244 243 247 241 243 244 242 241 241 242 242 240 241 242 240 240 241 240 240 241 240 246 236 225 248 238 228 250 240 231 252 242 234 254 245 237 257 248 240 258 250 243 259 252 246 260 253 247 262 255 250 265 258 254 268 263 258 270 267 263 271 269 268 271 270 270 271 270 271 271 271 271 271 271 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 275 275 275 275 275 275 276 276 276 277 277 277 277 278 278 278 279 280 279 280 281 281 282 283 283 283 284 284 285 286 285 286 287 287 287 288 288 289 289 289 290 290 290 292 291 291 293 292 293 294 293 294 295 294 294 296 295 295 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 297 297 298 298 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 299 299 300 300 299 300 300 299 299 299 299 299 299 299 298 299 299 297 298 298 296 297 298 297 297 298 297 297 297 298 297 297 298 297 296 297 297 295 296 297 295 295 296 294 294 295 293 293 294 293 293 294 292 292 292 291 292 291 291 291 291 290 291 290 290 290 290 290 290 289 290 289 289 289 289 288 289 288 288 288 287 287 288 286 287 287 285 286 286 285 285 286 285 285 285 284 284 284 284 284 284 284 284 283 284 283 283 283 283 282 283 282 281 282 281 280 281 280 280 280 279 280 279 280 280 279 280 280 279 280 279 279 280 279 278 280 278 276 279 275 274 277 270 270 274 264 266 270 266 267 269 261 263 267 253 257 263 250 253 260 249 251 258 247 249 257 245 248 254 245 247 252 246 247 251 246 246 250 244 244 247 241 242 244 242 242 241 242 242 240 241 242 240 241 241 240 240 241 240 246 236 225 248 238 227 249 240 231 252 242 234 254 245 237 256 247 240 258 250 242 259 251 245 260 252 247 261 254 249 264 257 253 267 262 258 269 266 262 270 269 268 271 270 270 271 271 271 271 271 271 271 271 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 275 275 275 275 275 275 276 276 276 277 277 277 277 278 278 278 279 280 279 280 281 281 282 283 282 283 284 284 284 285 285 286 286 286 287 288 287 289 289 289 290 290 290 292 291 291 293 292 292 294 294 293 295 295 294 296 295 295 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 299 299 300 300 299 300 300 299 299 299 300 299 299 300 298 299 299 297 298 298 297 298 298 297 298 298 298 298 298 299 298 298 299 299 297 298 299 296 297 298 295 296 297 294 295 296 294 294 295 293 293 294 292 293 293 291 292 292 291 291 291 290 291 290 290 290 289 290 290 289 289 289 288 289 288 288 289 287 287 288 286 287 288 286 286 287 285 286 286 285 285 285 284 284 285 284 284 284 284 284 284 284 283 283 283 283 283 283 282 282 283 282 281 282 281 281 281 280 280 280 280 280 280 280 280 280 281 280 280 281 280 279 281 279 278 280 278 277 279 276 275 278 270 270 274 264 266 270 266 267 270 263 266 269 258 261 265 253 255 262 249 252 260 247 250 257 246 248 254 246 247 251 247 247 251 247 248 251 244 245 248 241 242 243 242 242 242 242 242 241 242 242 241 241 241 241 240 241 240 246 236 224 248 237 227 249 240 230 251 241 233 254 244 236 256 247 239 257 249 242 258 250 244 259 251 246 261 253 248 264 256 252 267 261 257 269 265 261 270 269 267 271 271 270 271 271 271 271 271 271 271 271 272 271 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 275 275 275 275 275 276 276 276 276 277 277 277 277 278 278 278 279 280 279 280 281 280 281 282 282 283 284 283 284 285 285 285 286 286 287 287 287 289 289 289 290 290 290 292 291 291 293 292 292 294 293 293 295 294 294 296 295 295 296 296 295 296 296 296 296 297 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 297 298 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 299 300 300 299 300 300 299 299 299 298 299 299 298 298 299 298 298 299 299 298 300 300 299 299 300 300 298 299 300 297 297 299 296 296 298 295 295 297 293 294 296 293 293 295 292 292 294 291 292 293 290 291 292 290 291 290 290 290 289 289 290 289 289 289 288 289 288 288 289 287 287 288 286 287 287 285 286 287 285 285 286 284 285 285 284 284 285 284 284 284 283 283 284 283 283 283 283 283 283 283 282 282 283 282 282 282 281 281 281 281 281 281 281 281 281 281 281 280 281 280 280 281 280 279 281 280 278 280 279 277 279 276 275 278 272 271 275 265 266 271 267 268 270 265 267 270 261 264 268 257 259 265 251 254 262 248 252 259 246 249 255 246 248 252 247 248 251 248 248 251 245 246 249 241 243 244 242 243 242 243 243 241 242 242 241 241 241 241 240 241 240 246 236 224 248 237 227 249 239 230 251 241 233 253 244 236 255 246 239 257 248 241 257 250 244 258 250 245 260 252 248 263 255 251 266 259 256 269 264 260 270 268 267 271 270 270 271 271 271 271 271 271 271 271 272 271 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 275 274 275 275 275 276 276 276 276 277 277 277 277 277 278 278 278 279 279 280 281 280 281 282 282 282 283 283 284 285 284 285 286 286 287 288 287 289 289 289 290 290 290 292 291 291 293 292 292 294 293 293 295 294 294 296 295 295 296 296 295 296 296 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 300 299 300 300 299 299 300 298 299 299 298 299 299 298 298 299 300 299 300 300 299 299 299 300 299 300 302 297 298 301 296 297 301 294 295 299 293 294 298 292 292 297 291 292 296 290 291 294 290 290 292 289 290 291 289 290 290 289 290 289 289 289 288 289 289 288 288 287 287 288 286 287 287 285 286 287 285 285 286 284 285 285 284 284 285 283 284 284 283 283 284 283 283 283 283 283 283 283 282 282 283 282 282 282 281 281 282 281 281 282 281 281 281 281 281 281 281 280 280 281 280 279 281 280 279 280 279 278 279 277 276 278 273 273 276 266 267 272 268 269 271 267 268 271 264 267 270 261 263 268 255 258 265 249 253 261 247 251 257 246 249 253 247 249 251 247 248 250 246 247 250 242 244 245 243 243 243 243 243 242 242 242 241 241 241 241 240 241 240 246 236 224 247 237 227 249 239 230 251 241 232 253 243 235 255 246 238 256 248 241 257 249 243 257 250 245 259 251 247 262 254 250 265 258 254 268 263 259 270 267 266 271 270 270 271 271 271 271 271 272 271 271 272 271 272 272 272 272 272 272 273 273 273 273 273 273 273 273 274 274 274 275 274 275 275 275 276 276 276 276 276 277 277 277 277 278 278 278 279 279 279 280 280 281 282 281 282 283 283 284 285 285 286 286 286 287 288 287 289 289 289 290 290 290 292 291 291 293 292 292 294 293 293 295 294 294 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 296 296 296 297 297 296 297 297 296 297 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 300 299 300 300 299 300 300 299 299 299 298 299 299 299 299 299 299 299 299 300 299 300 300 301 299 299 301 298 298 301 297 297 301 295 295 299 293 293 298 291 292 296 290 291 296 289 290 295 288 289 293 288 289 292 289 290 290 289 290 290 289 289 289 289 289 288 288 288 287 288 286 287 287 286 286 286 285 285 286 284 285 285 284 284 285 283 284 284 283 283 284 283 283 283 283 283 283 283 282 282 283 282 282 283 282 282 282 282 281 282 282 281 282 282 281 281 281 280 280 281 280 279 280 280 279 280 279 278 279 278 276 278 275 274 277 270 270 273 269 270 272 268 269 271 266 268 271 263 266 269 258 262 267 251 256 263 248 252 258 246 250 254 247 250 252 247 249 250 246 248 250 242 244 245 243 244 243 243 243 242 242 242 242 241 241 241 240 241 240 246 235 224 247 237 227 249 239 230 251 241 232 253 243 235 254 245 237 256 247 240 256 248 243 256 249 244 258 250 246 261 253 249 264 256 253 268 261 258 270 266 264 270 270 269 271 271 271 271 271 272 271 271 272 271 272 272 272 272 272 272 273 273 273 273 273 273 273 273 274 274 274 275 274 275 275 275 275 276 276 276 276 277 277 277 277 278 278 278 279 279 279 280 280 280 281 282 282 283 283 284 285 285 286 287 286 288 288 288 289 289 289 290 290 290 292 291 291 293 292 292 294 293 293 295 294 294 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 296 296 296 296 297 296 297 297 296 297 297 296 297 297 297 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 299 299 298 298 299 297 298 298 298 299 298 299 300 298 300 300 300 299 298 300 298 298 301 297 296 301 295 295 299 293 293 297 291 291 295 289 289 294 289 289 294 288 288 293 287 288 293 287 288 292 289 289 290 289 289 289 289 289 288 288 288 287 288 287 287 287 286 286 286 285 286 286 285 285 285 284 284 285 284 284 284 283 283 284 283 283 284 283 283 283 283 283 283 283 283 282 283 282 282 282 282 281 282 281 281 282 282 281 281 281 280 280 281 280 280 280 279 279 280 279 278 279 278 277 279 276 275 277 272 272 275 270 270 272 269 270 272 267 269 271 265 268 270 261 265 268 255 259 265 249 254 260 247 251 255 247 250 252 247 249 250 246 248 250 243 244 246 243 244 244 243 243 243 242 243 242 241 241 241 240 241 240 246 235 224 247 237 227 249 239 229 250 240 231 252 242 234 254 245 237 255 247 240 255 247 242 256 248 243 257 249 245 260 252 248 263 255 252 267 260 258 269 264 263 270 269 269 271 271 271 271 271 272 271 272 272 271 272 272 272 272 272 272 273 273 273 273 273 273 273 274 274 274 274 275 274 275 275 275 275 276 276 276 276 276 277 277 277 278 278 278 279 279 279 280 280 280 281 282 282 283 284 284 285 285 286 287 287 288 288 288 289 289 289 290 290 290 291 291 291 293 292 292 294 293 293 294 294 294 295 295 295 295 295 295 296 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 297 296 297 297 297 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 300 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 299 299 298 298 298 297 297 298 299 299 298 299 299 299 299 298 299 297 297 299 297 296 300 296 296 300 295 294 298 293 292 297 291 290 295 289 289 293 288 288 293 288 288 293 287 287 293 286 287 292 288 288 290 288 288 290 288 288 289 288 288 288 288 287 287 287 287 287 286 286 286 285 285 285 285 284 285 285 284 284 284 283 283 284 283 283 284 283 283 283 283 283 283 283 283 282 283 282 282 282 281 281 282 281 280 281 281 280 281 281 280 280 281 280 280 280 280 279 280 279 278 279 278 277 279 276 276 277 273 273 275 271 271 272 269 270 272 268 270 271 266 269 271 263 267 269 258 263 267 251 257 262 248 253 256 247 251 253 246 250 251 245 247 249 243 244 246 243 244 244 243 244 243 242 243 242 241 242 241 240 241 240 246 235 224 247 237 227 248 239 229 250 240 231 252 242 233 254 244 236 255 246 239 255 247 241 255 247 242 256 248 244 258 250 247 262 254 251 266 258 256 269 263 262 270 268 268 271 271 271 271 271 272 271 272 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 274 274 274 274 274 274 275 275 275 275 275 276 276 276 276 277 277 277 277 278 278 279 278 279 280 280 280 281 282 282 284 284 284 285 285 286 287 286 287 288 287 289 289 289 290 290 290 291 291 291 293 292 292 294 293 293 294 294 294 295 294 294 295 295 295 296 295 295 296 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 297 296 297 297 297 297 297 297 297 298 297 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 298 299 297 298 297 297 297 297 299 299 298 298 298 298 298 297 299 297 296 299 297 296 300 296 295 299 294 293 298 292 292 296 291 290 294 289 289 293 288 288 293 287 288 292 286 287 292 285 286 291 285 286 291 286 287 290 286 287 289 287 287 288 288 287 287 287 287 287 286 286 286 285 285 285 284 284 284 284 283 284 284 283 283 284 283 283 284 283 283 283 283 283 283 283 283 282 283 282 281 282 281 279 281 280 279 280 280 280 281 281 280 280 281 280 280 280 280 279 280 279 278 279 278 277 279 277 276 277 274 274 275 271 271 273 270 271 272 269 270 272 267 270 271 265 268 270 261 265 268 253 260 264 250 255 258 248 252 253 247 250 251 245 247 249 244 245 247 244 245 245 243 244 243 242 243 242 241 242 242 240 241 240 246 235 224 247 237 226 248 238 229 250 240 231 252 242 233 253 244 236 254 245 238 254 246 240 254 246 241 255 247 243 258 249 246 261 253 250 265 257 254 269 262 261 270 268 268 271 271 271 271 272 272 271 272 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 274 274 274 274 274 274 275 275 275 275 275 275 276 276 276 276 277 277 277 278 278 279 279 279 280 280 280 282 282 282 284 284 284 286 285 286 287 286 287 288 287 289 289 288 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 294 294 295 295 295 295 295 295 296 295 295 296 296 295 296 296 295 296 296 295 296 296 296 296 296 296 296 297 296 297 297 297 297 297 297 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 298 298 298 297 297 297 298 298 298 299 298 298 298 297 298 297 297 299 297 296 300 296 295 299 295 294 298 294 293 297 292 291 295 291 290 294 289 289 293 288 288 293 287 287 292 286 286 292 284 285 291 283 284 290 282 284 290 283 284 288 285 286 288 287 287 287 287 287 287 285 285 286 282 282 284 281 281 283 282 282 283 282 281 282 283 283 283 284 283 283 283 283 283 282 283 282 282 282 282 281 281 281 278 280 279 278 279 279 279 280 280 280 280 280 280 280 280 280 279 280 279 278 279 278 278 279 277 276 277 274 274 275 272 272 273 271 271 273 270 271 272 268 270 271 266 269 271 263 267 269 257 262 265 251 256 259 249 253 255 247 251 252 246 248 250 244 246 247 244 245 245 244 244 243 242 243 243 241 242 242 240 241 240 246 235 224 247 237 226 248 238 229 250 239 230 251 241 232 253 243 235 254 245 238 254 245 240 254 245 240 254 246 242 257 248 245 260 252 249 264 256 254 268 261 260 270 267 267 271 271 271 271 272 272 271 272 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 274 274 274 274 274 274 274 275 275 275 275 275 275 276 276 276 277 277 277 278 278 279 279 279 280 280 280 282 282 282 284 284 284 285 285 286 287 286 287 288 287 288 289 288 290 290 290 291 291 291 292 292 292 293 293 293 294 294 293 295 294 294 295 295 295 295 295 295 296 295 295 296 295 295 296 296 295 296 296 295 296 296 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 298 298 298 299 298 299 299 299 299 298 299 298 297 299 297 296 300 297 295 300 296 294 299 295 294 298 294 293 297 292 291 295 291 290 294 290 289 293 288 288 293 287 287 292 285 286 291 283 284 289 282 283 289 280 282 288 280 281 287 281 282 287 285 285 287 286 286 287 284 284 286 281 281 284 279 279 282 279 279 281 280 279 280 282 282 283 284 283 283 283 283 283 282 282 282 282 282 281 280 281 280 278 279 279 277 279 278 278 279 279 279 279 279 279 279 279 280 279 280 279 279 279 278 278 279 277 277 277 275 275 275 273 273 274 272 272 273 270 271 273 269 271 272 267 270 271 264 268 270 260 264 267 253 258 261 250 254 255 247 251 252 246 248 250 244 247 248 244 246 245 244 244 244 242 243 243 241 242 242 240 241 241 246 235 224 247 237 226 248 238 228 249 239 230 251 241 232 253 243 235 253 244 237 253 245 239 253 245 240 254 245 241 256 247 244 259 251 248 263 255 253 268 261 260 270 266 266 271 271 271 271 272 272 271 272 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 274 274 274 274 274 274 274 274 274 275 275 275 275 276 276 276 277 277 278 278 278 279 279 279 281 280 281 282 282 283 284 284 284 285 285 286 287 286 287 288 287 288 289 288 290 290 289 291 291 291 292 292 291 293 293 292 294 293 293 294 294 294 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 296 296 295 296 296 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 299 299 300 300 299 300 300 299 299 298 300 298 296 301 297 296 301 296 295 300 296 294 299 295 293 298 294 292 297 292 291 295 291 290 294 290 289 294 288 288 293 287 287 292 285 286 291 283 284 289 281 283 288 279 281 286 278 280 286 279 280 286 282 282 286 285 285 287 282 283 286 279 280 284 278 278 281 278 278 280 279 279 280 282 282 282 283 283 283 283 283 283 282 282 282 281 282 281 280 281 280 278 279 279 276 278 278 276 278 278 277 278 278 278 278 278 279 279 279 279 279 279 278 278 278 277 277 277 276 275 276 274 274 275 272 273 274 271 272 273 269 271 272 268 270 272 266 269 270 262 266 268 256 259 262 251 255 257 249 253 253 246 249 250 245 247 248 244 246 246 244 245 244 242 243 243 241 242 242 240 241 241 246 235 224 247 237 226 248 238 228 249 239 230 251 241 231 252 242 234 253 244 236 253 244 238 252 244 239 253 244 240 255 247 243 258 250 247 263 255 252 268 260 258 270 265 265 271 270 271 271 271 272 271 272 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 274 274 274 274 274 274 274 274 274 275 275 275 275 276 276 276 277 277 278 278 278 279 279 280 281 281 281 282 282 283 284 284 284 285 285 285 287 286 287 288 287 288 289 288 289 290 290 291 291 291 292 292 291 293 293 292 294 293 293 294 294 294 295 294 294 295 295 295 295 295 294 295 295 295 295 295 295 295 295 295 295 295 295 296 296 295 296 296 296 296 297 296 297 297 297 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 298 300 300 300 299 298 300 298 297 301 297 296 301 296 294 299 294 292 297 294 292 297 293 292 296 292 291 295 291 290 294 290 289 294 288 288 293 287 287 291 285 286 290 283 284 289 282 283 288 279 280 286 278 278 285 278 279 285 281 281 285 284 284 286 282 282 286 279 279 283 277 278 281 277 277 279 279 279 280 282 282 282 283 283 283 283 283 283 281 281 281 280 281 281 279 280 280 278 279 278 276 278 277 276 277 277 276 277 277 277 278 278 279 279 279 279 279 279 278 278 278 278 277 277 276 276 276 275 274 275 273 273 275 271 272 274 270 271 273 268 271 272 266 269 271 263 267 269 258 261 264 253 256 258 249 253 253 247 249 251 245 248 249 245 246 246 244 245 244 242 243 243 241 242 242 240 241 241 246 235 224 247 236 226 248 238 228 249 239 229 251 240 231 252 242 234 252 243 236 252 243 237 252 243 238 252 243 239 254 246 242 257 250 247 262 254 251 267 259 258 270 265 265 271 270 270 271 271 272 271 272 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 274 274 273 274 274 274 274 274 274 275 275 275 275 276 276 277 277 277 278 278 279 280 280 280 281 281 281 283 282 283 284 284 284 285 285 285 286 286 287 288 287 288 289 288 289 290 290 291 291 291 292 292 291 293 292 292 294 293 293 294 294 294 295 294 294 295 295 294 295 295 294 295 295 294 295 295 294 295 295 294 295 295 295 295 296 295 296 296 296 296 297 296 297 297 297 298 298 298 298 299 298 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 299 299 298 298 298 299 299 299 299 298 301 298 297 302 297 296 301 296 295 300 295 293 298 295 294 299 294 292 297 292 291 295 292 290 294 291 289 294 289 288 292 287 287 291 285 286 290 284 284 289 282 283 288 280 281 286 278 279 284 278 278 284 280 280 285 283 283 285 282 282 286 279 280 284 277 278 281 277 277 280 278 278 280 281 282 282 283 283 283 282 282 282 280 281 281 280 281 280 278 280 279 277 278 278 276 278 277 276 277 277 276 277 277 277 278 278 279 279 278 279 279 279 279 278 278 278 277 277 277 276 276 275 275 276 274 274 275 272 273 274 270 272 273 269 271 272 267 270 271 264 268 269 260 264 266 254 257 259 251 255 255 248 250 252 246 248 249 245 247 246 244 245 244 242 243 243 241 242 242 240 241 241 246 235 223 247 236 226 248 238 228 249 238 229 250 240 231 252 242 233 252 243 235 252 243 236 252 242 237 252 243 238 253 245 241 256 249 245 261 254 251 267 259 257 270 265 264 271 270 270 271 271 272 271 272 272 272 272 272 272 272 273 272 273 273 273 273 273 273 273 274 273 273 274 274 274 274 274 274 275 275 275 275 276 276 277 277 277 278 278 279 280 280 280 281 281 281 283 282 283 284 284 284 285 285 285 286 286 287 288 287 288 289 288 289 290 290 291 291 291 292 291 291 292 292 292 293 293 293 294 294 294 294 294 294 295 294 294 295 295 294 295 295 294 295 295 294 295 295 294 295 295 295 295 295 295 296 296 296 296 297 296 297 298 297 298 298 298 298 299 298 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 300 299 299 299 298 301 298 297 302 297 296 301 296 294 300 295 293 299 294 293 298 293 292 297 293 291 296 292 290 295 291 289 293 289 288 292 288 287 291 286 286 290 284 284 289 282 283 288 280 281 286 278 279 285 278 278 283 279 279 284 283 283 285 283 283 286 280 280 284 277 278 282 276 278 280 277 278 280 280 281 281 281 282 282 280 281 281 279 280 280 279 280 280 278 279 279 277 278 278 276 278 277 277 278 277 277 278 277 278 278 278 279 279 278 279 279 279 279 278 278 278 277 278 277 276 277 276 275 276 275 274 276 273 273 275 271 272 274 270 271 273 268 270 272 265 269 270 262 265 267 257 259 261 252 255 255 248 250 252 246 249 249 245 247 247 244 245 244 242 243 243 241 242 242 239 241 241 246 235 223 247 236 225 247 237 227 249 238 228 250 240 230 251 241 233 252 242 235 252 242 236 251 242 236 251 242 237 252 244 239 256 248 244 261 253 250 267 259 256 270 265 264 271 270 270 271 271 272 271 272 272 272 272 272 272 272 273 272 272 273 273 273 273 273 273 274 273 273 274 274 274 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 280 280 280 281 281 281 282 282 283 284 283 284 285 285 285 286 286 287 287 287 288 289 288 289 290 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 295 295 294 295 295 295 295 295 295 296 296 296 296 297 297 297 298 297 298 298 298 298 299 298 299 300 299 299 300 299 299 300 299 300 300 299 300 300 299 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 300 299 300 299 298 301 298 297 301 296 295 300 296 294 300 295 293 299 294 292 298 293 292 297 292 290 295 291 289 294 290 288 293 289 288 292 288 287 292 287 286 290 285 285 289 283 283 288 280 281 286 279 280 285 278 278 284 279 279 284 282 281 285 284 283 285 282 283 285 280 281 283 277 278 281 277 278 280 278 279 280 278 280 280 278 280 280 278 280 280 278 279 279 277 279 278 277 278 278 277 278 277 278 278 277 278 278 278 278 279 278 279 279 278 279 279 278 279 278 278 278 278 278 277 277 277 276 275 276 275 274 276 273 273 275 272 272 274 270 271 273 269 271 272 266 269 271 263 266 268 259 260 262 254 257 257 248 252 253 246 249 250 245 247 247 244 245 245 242 243 243 241 242 243 239 241 241 246 235 223 247 236 225 247 237 227 248 238 228 250 239 230 251 241 232 251 242 234 251 241 235 251 241 236 251 241 236 252 243 238 255 247 243 260 253 249 266 258 256 270 264 263 271 270 270 271 271 272 271 272 272 272 272 272 272 272 273 272 272 273 273 273 273 273 273 273 273 273 274 273 274 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 285 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 292 293 293 293 294 293 293 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 295 295 295 295 295 295 296 296 296 296 297 297 297 298 297 298 298 298 298 299 298 299 300 299 299 300 299 299 300 299 300 300 299 300 299 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 300 299 299 299 298 300 298 296 300 297 295 300 295 294 299 294 293 299 294 292 298 292 291 296 291 289 295 290 288 294 290 288 293 289 287 292 288 286 291 287 286 290 285 285 289 283 283 288 281 281 286 279 279 284 278 279 284 278 279 283 281 281 284 284 284 285 283 284 285 281 282 284 279 280 282 277 278 280 277 278 279 277 278 279 277 279 279 277 279 279 277 279 279 277 279 278 277 278 277 278 278 277 278 278 277 279 279 278 279 279 278 278 278 278 278 278 278 278 278 277 278 278 277 277 277 277 277 276 277 275 275 276 274 273 275 272 272 275 271 272 274 269 271 273 267 269 271 264 267 269 261 262 264 254 257 257 248 252 253 246 249 250 245 247 247 244 245 245 242 244 243 241 242 243 239 241 241 246 235 223 246 236 225 247 237 227 248 238 228 250 239 230 251 241 232 251 241 234 251 241 234 251 241 235 250 240 235 251 242 236 254 246 242 260 252 249 266 258 255 270 264 263 271 270 269 271 271 272 271 272 272 272 272 272 272 272 273 272 272 273 273 273 273 273 273 273 273 273 274 273 274 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 280 279 280 281 281 281 282 282 282 283 283 284 285 285 285 286 286 286 287 287 288 288 288 289 290 289 290 290 290 291 291 291 292 292 292 293 293 293 293 293 293 294 294 293 294 294 293 294 294 293 294 294 294 294 294 294 294 294 294 295 294 294 295 295 295 296 296 296 296 297 296 297 297 297 298 298 298 298 299 298 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 298 299 298 299 298 296 300 297 295 300 295 294 299 294 293 299 293 292 298 292 290 296 290 289 294 290 288 293 289 287 292 288 286 291 287 285 290 287 285 289 285 284 288 283 283 287 281 282 286 280 280 285 279 279 284 279 279 283 280 280 283 283 283 285 284 284 285 283 283 284 281 282 283 279 279 281 276 277 278 275 277 277 276 277 277 276 278 278 276 278 278 277 278 278 278 278 277 278 278 277 278 279 277 279 279 277 278 278 277 278 278 277 277 277 276 277 277 276 278 277 277 277 277 277 277 276 277 276 275 276 274 274 276 273 273 275 271 272 274 270 271 273 268 270 272 265 268 270 262 263 265 256 258 259 248 253 254 246 250 251 245 247 247 244 245 245 242 244 244 241 242 243 239 241 241 246 235 223 246 236 225 247 237 227 248 238 228 250 239 229 251 240 231 251 241 233 251 241 234 250 240 234 250 240 234 251 241 235 254 246 241 259 252 248 266 258 255 269 264 262 271 270 269 272 271 272 272 272 272 272 272 272 272 272 272 272 272 273 273 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 280 279 280 281 281 281 282 282 282 283 283 284 284 284 285 286 286 286 287 287 288 288 288 289 290 289 290 291 290 291 291 291 292 292 292 293 293 293 293 293 293 294 293 293 294 294 293 294 294 293 294 294 293 294 294 294 294 294 294 294 294 294 295 295 295 296 296 296 296 297 296 297 297 297 298 298 297 298 299 298 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 298 299 298 299 298 296 300 297 295 301 295 293 299 294 292 298 292 291 297 291 290 296 290 288 294 289 287 292 287 285 291 286 284 290 286 283 289 285 283 288 285 283 287 283 282 287 282 282 287 281 282 286 280 280 285 279 279 283 280 280 283 283 283 284 284 284 285 283 284 284 282 282 283 280 280 281 276 277 277 274 276 276 275 276 276 276 277 277 276 278 277 276 278 277 277 278 277 278 278 277 278 278 277 278 278 277 277 278 276 276 276 275 276 276 275 276 276 275 277 277 276 277 277 277 277 276 277 276 275 276 275 274 276 273 273 275 272 272 274 270 271 273 268 270 272 266 268 270 262 264 266 257 258 260 248 253 254 246 250 251 245 248 248 244 246 245 242 244 244 241 242 243 239 241 241 245 235 223 246 236 225 247 237 226 248 237 227 249 239 229 251 240 231 251 240 232 250 240 233 250 240 234 250 239 233 250 240 234 253 245 240 259 251 248 265 258 255 269 264 261 271 270 269 272 271 272 272 272 272 272 272 272 272 272 272 272 272 273 273 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 280 279 280 281 281 281 282 282 282 283 283 284 284 284 285 285 285 286 287 287 288 288 288 289 290 289 290 291 290 291 291 291 292 292 292 293 293 293 293 293 293 293 293 293 293 293 293 294 293 293 294 293 293 294 294 293 294 294 294 294 294 294 295 295 295 296 296 296 296 297 296 297 298 297 298 298 297 298 299 298 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 298 299 298 298 298 299 299 299 299 298 300 297 296 300 296 295 300 294 293 298 293 292 297 292 291 296 291 289 295 290 288 294 288 286 292 286 284 290 284 282 288 283 281 286 284 281 286 284 281 286 283 282 286 282 282 286 282 282 287 281 281 285 280 280 284 280 280 283 283 283 284 284 284 285 284 284 284 282 283 283 280 280 281 276 276 277 274 274 275 274 275 274 274 276 275 275 277 276 276 277 277 276 278 277 277 278 277 278 278 277 278 278 277 276 277 276 275 275 274 273 273 272 274 274 273 276 276 275 277 276 276 277 276 277 276 275 276 275 274 276 273 273 276 272 272 275 270 271 274 268 270 273 266 268 271 263 265 267 258 259 261 249 253 255 246 250 251 245 248 248 244 246 245 242 244 244 241 242 243 239 241 241 245 235 223 246 236 225 247 237 226 248 237 227 249 238 229 250 240 231 251 240 232 250 240 233 250 239 233 249 239 232 249 240 232 253 244 240 258 251 247 265 257 254 269 264 261 271 270 268 272 271 271 272 272 272 272 272 272 272 272 272 272 272 273 273 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 279 279 280 281 281 281 282 282 282 283 283 284 284 284 285 285 285 286 287 287 288 288 288 289 290 290 290 291 291 291 291 292 292 292 292 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 294 294 293 294 294 294 294 295 294 295 295 295 296 297 296 297 297 297 298 298 297 298 299 298 299 299 298 299 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 299 299 300 298 298 299 299 299 300 300 299 300 298 298 300 296 295 299 294 293 298 293 292 297 292 291 297 291 290 296 290 289 294 289 287 293 288 286 292 286 284 289 283 281 286 282 280 285 283 280 285 283 280 285 283 282 286 283 282 286 282 282 286 281 281 285 280 281 284 280 281 283 283 282 284 284 283 284 284 283 284 282 283 283 280 281 281 276 276 277 273 274 274 273 273 273 273 275 274 274 276 275 275 277 276 276 277 276 277 277 276 277 278 276 277 277 276 275 276 275 272 273 272 270 271 270 272 272 271 275 274 274 277 276 276 277 276 276 276 275 276 275 274 276 274 273 276 272 272 275 270 271 274 268 270 273 266 268 271 263 265 267 258 260 262 250 255 256 246 250 252 245 248 248 244 246 246 242 244 244 241 242 243 239 241 241 245 235 223 246 236 224 247 236 226 248 237 227 249 238 228 250 239 230 250 240 232 250 239 232 250 239 232 249 238 231 249 239 231 252 244 239 258 250 247 265 257 254 269 264 260 271 270 268 272 271 271 272 272 272 272 272 272 272 272 272 272 272 273 272 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 278 279 279 280 280 280 281 282 282 282 283 283 283 284 284 285 285 285 286 287 287 288 288 288 289 290 290 291 291 291 291 292 292 292 292 292 293 293 292 293 293 293 293 293 293 293 293 293 293 293 293 293 294 293 293 294 293 294 294 294 295 295 295 296 296 296 297 298 297 298 298 298 299 299 298 299 299 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 300 299 299 300 298 298 299 299 298 300 299 298 300 298 297 300 296 295 300 294 293 298 292 291 297 292 290 296 290 289 295 290 289 294 289 287 293 287 285 291 284 282 288 282 280 286 282 279 285 282 280 284 283 280 285 283 281 285 282 281 285 282 282 285 281 282 285 281 282 284 281 281 283 283 283 283 284 283 284 283 283 283 282 282 282 280 281 281 277 277 278 273 274 274 272 273 272 272 274 273 274 275 274 274 276 275 275 277 276 276 277 276 276 277 276 276 276 275 275 275 274 271 272 271 269 270 269 270 270 269 274 273 272 276 275 275 276 275 276 276 275 276 275 274 276 274 273 276 272 272 275 271 271 274 269 270 273 266 268 271 263 265 267 258 260 262 249 255 256 246 250 252 245 248 248 244 246 246 242 244 244 241 242 243 239 241 241 245 235 223 246 236 224 247 236 226 248 237 226 249 238 228 250 239 230 250 239 231 250 239 231 249 239 231 248 238 230 249 239 230 252 244 238 258 250 246 265 257 254 269 263 260 271 270 268 272 271 271 272 272 272 272 272 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 278 279 279 280 280 280 281 281 282 282 282 283 283 283 284 285 285 285 286 286 287 288 288 288 289 289 290 290 291 291 291 292 291 292 292 292 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 294 293 294 295 294 295 295 295 296 297 296 297 298 297 298 299 298 299 299 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 298 298 298 298 299 299 298 299 299 297 298 300 297 298 300 298 298 300 299 299 301 298 297 300 297 296 300 296 295 299 294 293 298 293 292 297 291 290 296 290 289 294 288 287 292 287 286 291 286 285 289 284 282 287 282 280 285 282 280 285 282 280 284 282 280 284 282 281 285 282 281 285 282 282 285 282 282 285 282 282 284 282 282 283 283 283 283 284 283 283 283 283 283 282 282 282 280 281 281 277 278 278 273 274 274 272 273 272 272 273 272 273 275 273 274 276 275 275 276 275 275 276 275 275 276 275 275 276 275 274 275 273 271 272 271 269 270 269 269 269 268 272 271 271 274 273 273 275 274 275 275 274 275 274 274 276 274 273 276 272 272 275 271 271 274 269 270 273 266 268 271 262 265 267 257 260 262 249 255 256 246 250 252 245 249 249 244 246 246 242 244 244 241 242 243 239 241 241 245 235 223 246 235 224 247 236 226 247 237 226 249 238 228 250 239 230 250 239 231 250 239 231 249 238 231 248 237 229 248 238 229 252 243 237 258 250 246 265 258 253 269 263 259 271 269 267 272 271 271 272 272 272 272 272 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 278 279 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 285 286 286 287 288 288 289 289 290 290 290 291 291 291 292 292 292 293 292 293 293 293 293 293 293 293 293 293 293 293 293 293 294 293 294 295 294 295 296 295 296 297 296 297 298 297 298 298 298 298 299 298 299 299 298 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 297 298 298 298 299 299 299 300 301 299 300 302 297 299 301 297 299 301 298 299 301 298 298 301 298 297 300 297 296 300 296 295 299 293 293 298 293 292 297 291 290 296 290 289 294 288 288 293 287 286 291 286 285 290 284 283 287 283 281 286 281 279 284 281 279 284 281 280 284 282 280 284 282 281 284 282 281 284 283 283 285 284 284 285 284 284 284 284 284 284 284 284 283 283 283 283 282 282 282 280 280 279 277 277 276 274 274 273 272 273 271 272 273 272 273 274 273 274 276 274 274 276 275 275 276 275 274 276 275 274 275 274 273 274 273 271 272 271 269 269 268 268 268 268 269 269 269 273 271 272 274 272 273 274 273 275 274 273 275 273 273 276 272 272 275 271 271 274 268 269 273 265 267 270 262 264 267 256 260 261 249 256 256 246 251 253 245 249 249 243 246 246 242 244 244 241 242 243 239 241 241 245 235 223 246 235 224 246 236 225 247 237 226 249 238 228 250 239 230 250 239 230 250 238 230 249 238 230 248 237 228 248 238 228 252 243 237 257 250 246 264 257 253 269 262 258 271 269 267 272 271 271 272 272 272 272 272 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 279 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 286 286 287 287 288 288 289 289 290 290 291 291 291 292 292 292 293 293 293 293 293 293 293 293 293 293 293 293 293 294 294 295 295 295 295 297 296 296 298 296 296 298 297 297 298 297 297 297 296 297 296 296 297 296 297 297 297 297 298 298 298 298 299 298 299 299 299 299 299 299 299 299 298 299 298 297 298 297 297 298 299 298 299 301 299 300 302 299 301 303 297 300 303 297 299 301 297 298 301 298 298 301 297 297 300 296 296 300 296 295 299 294 293 298 293 292 297 292 291 296 291 290 295 289 288 293 288 287 292 286 285 290 284 283 288 283 281 286 281 280 284 281 279 284 281 280 283 282 280 284 281 280 284 282 281 284 284 284 285 285 285 285 285 285 284 284 284 284 284 284 283 282 283 282 281 281 281 279 279 278 277 277 276 274 275 274 273 273 272 272 273 272 273 274 273 274 275 274 274 276 275 275 276 275 274 276 275 274 275 274 272 274 272 271 271 270 268 269 268 268 268 268 268 267 268 270 268 270 272 270 272 273 272 273 273 272 274 273 272 275 272 272 275 271 271 274 268 269 273 265 267 270 261 264 267 252 257 260 248 255 256 246 251 253 245 249 249 243 247 246 242 244 244 241 242 243 239 241 241 245 235 222 246 235 224 246 236 225 247 236 226 248 237 228 250 238 229 250 238 230 249 238 230 248 237 229 247 236 227 248 238 228 251 243 237 257 250 246 264 257 252 269 262 258 271 269 267 272 271 271 271 272 272 272 272 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 274 274 274 274 274 275 275 275 276 276 276 277 277 278 278 279 279 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 286 286 287 288 288 289 289 290 291 290 291 292 292 292 293 292 293 293 293 293 293 293 293 293 293 293 293 294 295 295 296 296 296 297 297 297 297 297 298 297 296 297 296 295 296 296 295 296 295 294 295 294 294 294 294 294 294 294 294 295 296 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 297 298 300 297 298 300 297 298 300 296 298 301 297 299 302 297 299 301 298 299 301 298 298 301 297 297 301 297 296 301 296 295 300 295 294 299 292 291 295 292 291 296 291 290 295 289 289 294 288 287 292 286 286 290 284 283 288 283 282 286 282 280 284 281 280 284 281 280 284 282 281 284 282 281 284 282 282 284 285 285 285 286 285 285 285 285 284 283 284 283 283 283 283 282 283 282 280 280 280 279 279 278 277 278 277 275 275 274 273 274 272 273 273 272 273 274 273 274 275 274 274 276 275 274 276 275 275 275 275 273 275 273 272 273 272 270 271 271 268 269 269 268 268 268 268 266 268 267 265 268 269 267 269 271 270 272 272 271 273 272 272 274 272 272 275 271 271 274 268 269 272 264 266 269 259 262 265 251 257 259 248 255 256 246 251 253 245 249 250 243 247 247 242 244 245 241 242 243 239 241 241 245 235 222 246 235 223 246 236 225 247 236 226 248 237 227 249 238 229 250 238 229 249 238 229 248 237 228 247 236 226 248 237 227 251 243 237 257 250 246 264 257 252 269 262 258 271 269 266 271 271 270 271 272 272 271 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 274 274 274 274 274 274 275 275 275 276 276 276 277 277 278 278 279 279 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 286 287 287 288 289 289 290 290 291 291 292 292 292 292 293 293 293 293 293 293 293 294 293 293 294 294 294 297 296 295 299 298 296 299 297 296 298 297 296 297 295 295 296 295 295 296 294 296 295 294 295 293 293 294 292 292 293 292 292 293 294 293 294 295 295 295 296 296 295 295 297 296 295 296 296 296 297 297 296 297 298 297 297 298 296 297 298 296 297 298 296 298 300 298 298 301 298 298 301 299 299 302 297 297 302 298 297 302 298 297 302 295 295 300 293 292 298 292 292 297 291 291 296 290 289 294 288 287 292 286 285 290 284 283 288 282 281 285 282 281 285 282 281 284 282 281 284 282 281 284 282 282 284 284 284 285 286 285 286 286 285 285 285 285 284 284 284 283 283 283 282 281 282 281 279 280 279 279 279 278 277 277 277 275 275 274 274 274 273 273 274 272 273 274 273 274 275 274 274 275 274 275 276 275 275 276 275 274 275 274 272 273 272 271 271 271 269 270 269 268 268 268 267 266 268 267 264 267 266 264 267 268 267 269 271 270 272 272 271 274 272 272 275 271 271 274 268 268 272 264 265 269 255 259 263 250 256 259 247 255 256 246 251 253 245 249 250 243 247 247 242 244 245 240 242 243 239 241 241 245 234 222 246 235 223 246 236 225 247 236 225 248 237 227 249 238 229 249 238 229 249 237 228 248 236 227 247 236 225 247 237 227 251 243 236 257 250 246 264 257 252 269 262 258 271 269 266 271 271 270 271 271 272 271 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 273 274 274 274 274 274 274 274 275 275 275 276 276 276 277 277 277 278 278 279 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 286 287 288 289 289 290 290 291 292 291 292 293 292 293 293 293 293 292 294 293 292 295 294 292 298 296 293 300 297 294 299 296 294 298 295 294 296 295 294 296 295 294 296 295 295 296 295 296 295 294 295 294 293 294 292 292 293 292 292 292 293 293 293 294 294 294 295 296 295 295 297 296 295 296 296 295 296 296 296 296 296 296 296 297 296 296 297 296 297 297 297 298 299 297 298 300 298 299 301 300 300 303 299 299 303 299 299 303 298 298 303 296 295 301 295 294 300 293 292 298 291 291 296 290 290 295 288 288 292 285 285 289 282 282 286 282 281 285 282 281 285 282 282 285 281 281 284 282 282 284 283 283 285 286 285 286 286 286 286 286 285 285 285 285 284 284 284 283 282 283 282 280 281 280 280 280 279 279 279 278 276 276 275 275 275 274 274 274 273 274 274 273 273 274 273 273 275 273 273 275 274 274 275 274 275 276 275 275 275 274 273 274 273 271 272 272 269 270 270 269 269 269 267 266 268 266 264 267 265 263 267 265 264 267 269 268 270 271 270 273 272 271 274 271 270 274 268 268 272 262 264 267 254 258 262 250 256 259 247 255 256 246 251 253 245 249 250 243 247 247 242 244 245 240 242 243 239 241 241 245 234 222 246 235 223 246 235 224 247 236 225 248 237 227 249 237 229 249 237 228 248 237 228 247 236 227 246 235 225 247 237 227 252 243 237 258 251 246 264 257 252 269 263 258 271 269 266 271 271 270 271 271 271 271 272 272 272 272 272 272 272 273 272 273 273 272 273 273 273 273 274 274 274 274 274 274 274 275 275 275 276 276 276 277 277 277 278 278 279 279 280 280 280 281 281 281 282 282 283 283 283 285 285 285 287 287 288 289 290 291 291 291 292 292 292 293 293 293 292 294 293 292 296 294 292 299 295 292 300 295 292 299 294 293 297 293 293 295 293 293 294 293 294 295 294 295 295 294 295 295 295 296 295 294 296 294 294 295 293 293 293 293 292 293 293 293 293 294 293 293 294 295 294 294 295 295 295 296 296 295 296 296 296 296 296 296 296 297 297 297 297 297 297 298 297 298 298 298 298 300 300 300 302 301 301 303 300 301 304 300 300 304 299 299 303 298 298 303 295 294 300 293 293 299 292 292 297 290 290 294 287 287 292 283 284 288 282 282 286 281 281 285 282 281 285 282 282 285 282 282 285 282 283 285 284 284 285 286 286 286 286 286 285 286 285 285 285 285 284 284 284 283 282 282 281 280 281 280 279 279 278 277 277 276 275 275 274 275 275 274 274 274 273 274 274 273 273 274 273 273 274 273 273 274 273 274 275 274 275 275 274 275 275 274 274 274 274 272 273 272 271 272 271 270 270 270 267 267 268 266 264 267 265 263 266 264 263 266 267 266 269 270 270 272 271 271 274 271 270 274 268 268 271 261 262 266 255 258 262 249 255 259 247 255 256 246 251 253 245 249 250 243 247 247 242 244 245 240 243 243 239 241 241 245 234 222 246 235 223 246 235 224 247 236 225 248 237 227 249 237 228 249 237 228 248 236 227 247 236 226 246 235 224 247 237 226 252 243 237 258 251 246 264 258 253 269 263 258 271 269 266 271 271 270 271 271 271 271 272 272 271 272 272 272 272 273 272 273 273 272 273 273 273 274 274 274 274 274 274 274 274 275 275 275 276 276 276 277 277 277 278 278 279 279 280 280 280 281 281 281 282 282 283 283 283 285 285 286 287 288 289 290 290 291 291 292 293 292 293 293 293 293 292 295 293 291 297 294 290 298 294 291 298 293 291 296 293 293 295 293 294 294 293 294 294 294 295 294 295 295 295 294 295 295 294 296 295 294 296 295 294 295 294 294 294 294 293 293 294 293 293 294 293 293 294 294 294 294 295 295 295 295 296 296 296 296 296 296 296 296 296 297 298 298 297 298 299 299 297 298 299 299 299 302 300 300 302 301 302 302 300 301 303 299 300 304 299 300 304 297 298 303 295 296 302 293 293 299 291 292 297 289 289 294 287 287 292 284 284 288 282 282 286 282 282 285 281 281 285 282 282 286 282 282 285 283 283 285 284 284 286 286 285 286 286 285 285 285 285 284 284 284 283 283 283 282 281 281 281 279 279 278 277 278 276 275 275 274 274 274 273 274 274 274 274 274 273 273 274 273 273 274 272 273 274 272 272 274 273 273 274 273 275 275 274 275 275 274 274 274 274 273 273 273 272 272 272 271 271 271 269 268 268 266 264 267 265 263 266 264 262 266 265 264 267 270 269 271 271 271 273 271 270 274 268 267 271 260 262 265 255 258 263 249 255 259 247 255 256 246 251 253 244 250 250 243 247 247 242 244 245 240 243 244 239 241 241 245 234 222 246 235 223 246 235 224 247 236 225 248 236 226 249 237 228 249 237 227 248 236 226 247 235 225 246 234 223 247 237 226 252 244 237 258 251 246 265 258 254 269 263 258 271 270 266 271 271 270 271 271 271 271 272 272 271 272 272 272 272 273 272 273 273 272 273 273 273 274 274 274 274 274 274 275 274 275 275 275 276 276 276 277 277 277 278 278 279 279 280 280 280 281 281 281 282 282 283 283 284 285 286 286 288 288 289 290 291 292 291 292 293 292 293 293 293 293 292 294 292 290 295 292 289 295 292 290 295 292 291 294 293 293 294 294 295 295 295 295 295 296 295 295 297 296 295 296 296 295 295 296 296 295 296 295 295 296 295 294 295 294 294 294 294 294 294 294 294 294 294 294 294 294 295 295 295 295 295 296 295 296 296 296 296 296 296 296 297 297 297 298 299 300 298 299 301 298 300 302 300 300 301 301 301 301 299 301 302 298 300 303 297 299 304 296 297 302 294 295 300 292 293 298 291 291 296 289 289 294 287 287 292 284 284 288 283 283 286 282 282 286 282 282 285 282 283 286 282 283 285 282 283 285 283 283 285 283 283 285 285 284 284 285 284 284 284 283 283 282 282 282 279 279 279 276 276 276 274 275 274 273 274 273 273 273 273 274 274 273 273 274 273 273 273 272 273 274 272 272 274 272 272 274 272 273 274 273 274 274 273 274 274 273 274 274 273 273 273 273 272 272 272 270 270 270 269 267 268 267 265 267 265 263 266 263 262 266 264 263 266 269 269 270 271 270 273 271 270 274 268 267 271 261 262 266 255 258 263 250 255 259 247 254 256 246 251 253 244 250 250 243 247 247 242 244 245 240 243 244 239 241 242 245 234 222 245 234 222 246 235 224 246 235 224 248 236 226 248 237 228 248 236 227 248 236 226 246 235 224 246 234 222 247 237 226 252 244 236 258 251 246 265 259 254 269 264 259 271 270 267 271 271 270 271 271 271 271 272 272 271 272 272 272 272 273 272 273 273 272 273 273 273 274 274 274 274 274 274 275 274 275 275 275 276 276 276 276 277 277 278 278 278 279 279 279 280 281 281 281 282 282 283 284 284 285 286 286 288 289 290 290 291 292 292 293 293 293 293 293 293 293 292 294 292 290 293 291 289 293 291 289 293 292 292 294 293 294 294 295 296 295 296 296 296 297 296 296 298 296 296 297 297 296 296 296 296 295 296 295 295 296 295 294 295 294 294 294 294 294 294 294 294 294 294 294 294 294 295 296 295 295 296 295 295 296 295 295 296 295 295 296 296 296 297 297 297 298 297 299 300 298 299 301 299 300 300 300 301 301 298 300 301 297 299 303 296 298 302 294 296 301 292 294 299 290 292 297 289 290 295 288 289 293 286 286 291 285 285 289 283 283 287 283 283 286 282 283 286 282 282 285 282 282 285 281 282 285 282 283 285 283 283 284 284 284 284 285 284 284 284 283 283 281 280 281 278 277 278 275 276 275 273 274 273 272 273 272 273 273 272 273 273 273 272 273 273 272 273 272 272 273 272 272 273 272 272 273 272 272 273 272 273 273 272 273 273 272 274 273 272 273 273 272 270 271 271 268 268 269 269 267 268 268 266 267 264 263 267 263 262 266 263 262 266 268 268 270 270 270 273 271 270 274 268 267 271 262 262 266 255 257 262 250 256 259 247 253 256 246 252 254 244 250 250 243 247 247 241 245 245 240 243 244 239 241 242 245 234 222 245 234 222 246 235 223 246 235 224 247 236 226 248 236 227 248 236 227 247 235 225 246 234 223 245 234 222 247 237 226 252 244 236 258 252 246 265 259 255 269 264 260 271 270 267 271 271 270 271 271 271 271 272 272 271 272 272 272 272 273 272 273 273 272 273 273 273 274 274 274 274 274 274 275 275 275 276 275 276 276 276 276 277 277 277 278 278 279 279 279 280 281 280 281 282 282 283 284 284 285 286 287 288 289 290 290 291 292 292 293 293 293 294 293 293 293 292 293 291 290 292 290 288 291 291 289 292 292 291 293 293 293 293 295 295 294 296 296 296 297 297 297 298 297 296 297 297 296 296 296 295 295 296 295 295 296 294 294 295 294 294 295 293 294 294 293 294 295 294 294 295 294 295 297 295 295 297 295 295 296 295 295 296 295 295 296 296 297 297 297 298 298 297 300 300 297 300 301 299 301 301 299 301 302 298 300 302 296 298 302 294 296 301 293 295 300 291 293 297 289 291 296 287 289 293 287 288 292 286 286 290 284 285 289 283 283 288 283 283 286 282 283 286 282 282 285 282 282 285 281 282 284 282 283 285 283 283 285 285 284 284 284 283 284 284 282 283 282 281 281 279 278 278 277 277 277 274 275 274 273 274 273 273 273 272 273 273 272 272 273 272 272 273 271 272 273 272 272 273 271 272 273 271 272 273 272 272 272 272 272 272 272 272 272 272 272 272 271 269 270 270 268 268 269 267 267 269 267 265 267 263 263 267 262 262 266 262 262 266 267 267 269 270 270 272 270 270 274 268 267 272 262 262 267 255 257 262 251 256 260 247 253 256 246 252 254 244 250 251 243 247 247 241 245 246 240 243 244 239 241 242 245 234 222 245 234 222 246 235 223 246 235 224 247 236 225 248 236 227 248 236 226 247 235 225 246 234 223 245 234 221 247 237 226 252 244 236 258 252 245 265 259 255 269 264 260 271 270 267 271 271 270 271 271 271 271 272 272 271 272 272 272 272 273 272 273 273 272 273 273 273 274 274 274 274 274 274 275 275 275 276 275 276 277 276 276 277 277 277 278 278 278 279 279 280 281 280 281 282 282 282 284 283 285 286 286 288 289 290 290 292 292 292 293 294 293 294 294 293 294 293 292 292 290 291 290 288 290 290 288 290 290 290 291 292 292 292 294 294 294 295 295 296 296 297 297 297 298 296 298 298 296 297 296 295 296 296 295 295 296 294 294 296 293 294 295 293 293 295 293 293 294 294 294 295 294 295 296 295 295 296 295 295 296 295 295 295 295 295 296 297 297 297 297 298 299 297 299 300 299 301 300 300 301 301 299 301 302 298 300 302 296 298 301 294 296 300 291 294 298 290 292 297 289 291 295 287 289 292 286 288 291 286 287 290 284 285 289 283 284 288 283 283 287 282 282 286 281 282 285 281 282 285 281 282 284 283 283 285 284 284 285 285 284 284 285 283 284 283 282 282 282 281 281 280 279 279 278 277 277 275 275 275 273 274 274 273 274 273 272 273 272 272 272 272 271 272 272 272 273 272 272 273 272 271 273 271 271 272 271 271 272 271 271 271 271 271 271 271 271 271 271 269 269 270 266 268 269 266 266 269 265 265 268 263 263 267 261 262 266 262 262 267 266 267 269 270 270 272 270 270 273 268 268 272 263 263 268 255 258 263 251 256 260 247 253 256 246 252 254 244 250 251 242 247 248 241 245 246 240 243 244 239 242 242 245 234 222 245 234 222 246 235 223 246 235 224 247 236 225 248 236 226 247 235 225 247 234 224 246 234 222 245 233 221 247 237 226 252 244 236 258 251 245 265 260 254 269 264 260 271 269 266 271 271 270 271 272 271 271 272 272 272 272 272 272 272 272 272 273 273 272 273 273 273 274 274 274 275 274 274 275 275 275 276 275 276 277 276 276 277 277 277 278 278 278 279 279 280 281 280 281 282 282 282 284 283 284 286 286 288 289 289 290 292 292 292 294 294 293 295 294 293 294 293 292 292 290 291 290 288 289 289 288 289 289 289 290 290 290 292 293 293 293 295 295 296 297 298 297 297 298 296 297 298 295 297 296 295 297 296 294 295 295 294 294 295 293 293 295 293 293 294 293 293 294 293 294 294 294 294 295 294 295 295 294 295 295 294 294 295 294 294 296 296 295 296 296 297 297 297 298 299 299 300 300 300 301 301 299 301 302 298 300 302 297 298 301 294 296 300 292 294 299 291 293 297 290 292 296 288 290 294 287 288 292 286 287 291 285 286 290 284 284 288 283 283 287 281 282 286 281 282 285 281 282 285 282 283 286 283 283 285 285 284 285 285 284 285 284 283 284 283 282 282 281 280 280 279 277 278 277 276 276 275 275 275 274 275 275 273 274 274 273 273 273 272 273 272 271 273 272 271 273 272 271 273 271 271 273 271 271 272 271 270 271 271 270 270 271 270 270 270 270 269 270 268 269 269 265 267 269 265 266 268 264 265 268 262 263 267 260 262 266 261 262 267 266 266 269 270 269 272 270 270 273 268 268 272 264 264 269 256 259 264 251 257 260 247 254 257 246 252 254 244 250 251 242 247 248 241 245 246 240 243 244 239 242 242 245 234 221 245 234 222 245 234 223 246 235 224 247 235 225 247 236 226 247 235 225 246 234 223 245 233 221 245 233 221 247 237 226 252 244 236 257 251 245 263 258 253 269 264 260 271 269 266 271 271 270 271 272 271 271 272 272 272 272 272 272 272 272 272 273 273 272 273 273 273 274 274 274 275 274 274 275 275 275 276 276 276 277 276 276 278 277 277 279 278 278 279 279 280 281 280 281 282 282 282 284 283 284 286 286 287 289 289 290 292 292 292 294 293 294 295 294 294 295 294 293 294 293 291 291 289 289 289 288 289 289 288 289 290 290 291 291 292 293 294 294 295 296 296 296 297 297 296 296 297 295 297 296 295 297 296 295 296 295 294 294 295 293 293 295 292 293 294 292 293 293 293 293 293 293 294 294 293 294 294 293 293 294 292 293 294 293 293 294 294 293 294 295 295 296 297 297 298 299 299 300 300 301 301 300 301 302 299 300 302 298 300 302 295 297 302 293 295 300 292 294 298 291 293 297 289 291 295 288 290 293 287 288 292 286 287 291 284 285 289 283 284 288 283 284 287 283 284 287 282 283 286 282 283 286 283 283 285 285 285 285 285 285 285 284 283 284 282 281 282 279 278 279 276 275 276 275 275 275 276 275 276 276 276 276 275 275 275 273 274 274 272 273 273 272 273 273 271 273 272 271 273 271 270 272 271 270 272 271 270 271 270 270 270 270 269 269 270 269 269 269 267 268 269 265 266 269 264 265 268 263 264 268 261 263 267 260 262 266 261 262 267 265 266 269 270 269 272 270 269 273 268 268 272 264 264 269 257 260 264 251 257 261 247 254 257 246 253 255 244 250 251 242 247 248 241 245 246 240 243 244 239 242 242 245 234 221 245 234 221 245 234 222 246 235 223 247 235 224 247 235 225 247 234 224 246 233 223 245 233 221 245 233 221 247 237 226 251 243 235 257 251 244 263 258 252 269 264 260 271 269 266 271 271 270 271 272 271 271 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 274 274 274 275 274 275 275 275 275 276 276 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 282 282 282 284 283 284 286 285 287 289 289 290 291 291 292 293 293 293 295 294 294 295 295 294 295 294 293 293 293 291 291 290 290 290 289 290 290 290 291 291 291 293 294 294 296 297 296 297 297 297 296 297 296 295 297 296 295 298 296 295 296 295 294 295 295 293 294 295 293 293 294 292 292 293 292 293 293 292 293 293 292 293 293 292 293 293 292 292 293 292 292 293 292 293 293 294 295 295 296 297 297 299 299 297 300 301 299 301 302 301 300 302 304 300 301 305 296 298 303 296 297 302 293 295 299 292 294 298 290 292 296 289 291 294 288 290 293 287 288 292 286 287 290 284 285 289 283 284 288 283 284 288 282 284 287 282 283 286 283 283 285 285 285 285 285 285 285 284 284 284 281 281 281 276 276 277 274 273 274 274 273 274 276 276 276 277 277 277 276 276 276 274 274 274 273 273 273 272 273 273 271 273 272 270 272 272 270 272 271 269 271 271 269 270 270 269 269 270 269 269 269 268 268 269 266 267 269 264 266 269 263 265 268 263 264 268 260 263 267 259 262 266 260 262 267 266 266 269 269 269 272 270 269 273 268 268 272 265 265 270 257 260 265 251 257 261 247 255 258 246 253 255 244 250 251 242 247 248 241 245 246 240 243 244 239 242 242 245 234 221 245 234 221 245 234 222 246 234 223 246 235 224 247 235 225 246 234 224 246 233 222 245 233 220 245 233 220 247 237 226 251 243 235 257 250 244 263 257 252 268 264 259 271 268 265 271 271 270 271 272 271 271 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 274 274 274 275 275 275 275 275 275 276 276 276 277 276 276 278 277 277 279 278 278 279 279 279 281 280 281 282 282 282 284 283 284 286 285 287 288 288 289 291 291 291 293 293 293 294 294 294 295 294 295 295 295 294 295 294 294 294 294 292 292 292 291 292 292 292 293 293 295 295 295 297 298 297 298 299 297 297 298 296 296 297 296 295 297 296 295 297 296 294 295 295 294 294 295 293 293 294 292 292 293 292 292 293 292 292 293 292 293 293 292 293 293 292 292 293 291 292 293 292 292 293 293 294 295 296 297 296 299 298 297 301 300 298 302 302 302 301 303 305 301 302 305 299 300 305 297 299 303 295 296 301 294 295 299 292 294 298 290 292 296 289 291 294 288 289 292 287 288 291 286 287 290 284 285 289 283 285 288 282 284 287 282 283 286 283 283 285 285 285 285 285 285 285 284 284 284 281 281 281 276 276 277 272 271 273 273 272 273 276 275 276 277 277 277 277 277 277 275 275 275 273 274 274 272 273 273 271 272 272 270 272 272 270 272 271 269 271 271 269 270 269 269 269 269 268 268 268 267 268 268 266 267 268 264 266 268 263 265 268 262 264 267 260 263 267 259 262 266 261 262 267 267 267 270 269 269 272 269 269 273 268 268 272 265 265 270 258 260 266 252 257 262 248 255 258 246 253 255 244 250 251 242 247 248 241 245 246 240 243 244 239 242 242 245 234 221 245 234 221 245 234 222 245 234 223 246 235 224 246 235 224 246 233 223 245 233 221 245 232 220 245 233 220 246 236 226 251 242 234 256 250 243 262 257 251 268 264 259 270 268 265 271 271 270 271 272 271 271 272 272 272 272 272 272 272 272 272 272 273 273 273 273 273 274 274 274 275 275 275 275 275 275 276 276 276 277 276 276 278 277 277 278 278 278 279 279 279 281 280 280 282 281 282 284 283 284 286 285 286 288 288 289 291 291 291 292 292 292 294 293 294 294 294 295 295 295 295 296 295 295 295 295 295 295 295 294 294 294 294 295 295 297 297 296 298 298 297 298 298 297 297 298 297 295 298 297 295 297 296 295 297 296 295 295 295 294 294 294 293 293 294 292 293 293 292 292 293 292 292 292 292 292 293 292 292 293 292 292 293 291 292 292 291 292 292 293 293 294 296 296 295 298 298 296 301 300 298 302 301 302 302 303 304 301 302 305 300 301 304 299 300 305 296 298 303 296 297 302 294 295 299 292 293 297 289 291 294 288 289 292 287 288 291 286 287 290 285 286 290 284 285 289 283 284 287 281 282 285 282 282 285 285 285 285 285 285 285 284 284 284 280 280 281 275 275 276 271 271 272 272 270 272 275 274 275 277 277 277 277 277 277 275 275 275 273 273 274 272 273 273 271 272 272 270 271 272 269 271 271 268 271 270 268 270 269 268 269 268 268 268 268 267 267 267 265 267 267 264 266 267 262 265 267 262 264 267 260 263 266 259 262 266 263 264 268 268 267 270 269 269 272 269 269 273 268 268 272 265 265 270 259 261 266 252 257 262 248 256 259 246 253 255 244 250 251 242 247 248 240 245 246 239 243 244 239 242 242 245 234 221 245 234 221 245 234 222 245 234 223 246 234 223 246 234 223 245 233 222 245 232 221 244 232 219 244 233 220 246 236 225 250 242 234 256 249 243 261 256 250 267 263 258 270 267 264 271 271 270 272 272 271 272 272 272 272 272 272 272 272 272 272 272 273 272 273 273 273 274 274 274 275 274 275 275 275 275 276 276 276 277 276 276 278 277 277 278 278 278 279 279 279 281 280 280 282 281 282 284 283 284 285 285 286 288 288 289 290 290 290 292 292 292 293 293 293 294 293 294 294 294 295 295 295 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 298 298 297 297 298 297 296 298 297 295 297 297 295 297 297 295 297 296 295 295 295 294 294 294 293 293 293 293 293 293 292 293 293 292 293 293 292 292 293 292 292 293 292 292 293 291 292 292 291 291 292 293 293 294 296 296 296 298 298 297 299 298 298 301 300 301 301 301 303 299 301 303 300 302 304 300 301 305 299 300 305 297 299 303 295 296 300 293 294 298 290 291 295 288 290 293 287 289 291 287 288 291 287 287 290 286 287 289 284 284 287 281 282 285 281 282 285 283 284 285 284 284 285 283 283 283 280 280 281 274 275 276 271 270 272 271 270 272 274 273 274 277 277 277 277 277 277 275 275 275 272 273 273 271 272 273 270 272 272 269 271 271 269 271 271 268 270 270 267 269 268 267 268 267 267 267 267 266 267 267 265 266 267 263 265 267 262 264 267 261 263 267 260 263 266 259 262 266 265 265 268 268 268 270 269 269 272 269 269 272 268 268 272 265 265 270 259 261 266 253 258 263 249 256 259 246 253 255 244 250 251 242 247 248 240 245 246 239 243 244 239 242 242 245 234 221 245 233 221 245 234 221 245 234 222 246 234 223 245 234 223 245 233 221 245 232 220 244 231 219 244 232 220 246 235 225 250 241 233 255 248 242 261 255 250 266 262 256 270 267 263 271 271 270 272 272 271 272 272 272 272 272 272 272 272 272 272 272 273 272 273 273 273 274 274 274 275 274 274 275 275 275 276 276 276 277 276 276 278 277 277 278 278 278 279 279 279 281 280 280 282 281 281 284 283 283 285 285 286 288 288 288 290 290 290 292 292 291 292 292 292 293 293 293 294 294 294 295 294 295 296 295 296 297 296 297 297 297 297 298 298 298 298 298 298 298 298 298 299 298 298 299 298 297 298 297 296 298 297 296 297 296 295 296 295 294 294 295 294 294 294 293 294 294 293 293 294 293 293 294 293 293 293 292 292 293 291 292 292 291 292 292 291 292 293 294 295 294 296 297 296 297 298 298 299 299 299 298 298 299 297 298 298 297 299 299 297 299 301 299 301 304 298 300 304 297 298 303 295 296 300 292 294 297 291 292 295 289 291 293 288 290 292 289 290 291 289 289 291 288 288 290 285 285 288 280 282 285 280 281 284 281 282 284 282 282 284 282 282 283 279 279 280 274 274 276 270 270 272 271 270 272 275 274 275 277 277 278 277 277 277 274 275 275 272 273 273 271 272 272 270 272 272 269 271 271 268 270 270 267 270 269 267 269 267 267 268 267 266 267 267 266 266 267 264 266 266 262 265 266 261 264 267 261 263 266 260 263 266 259 262 266 265 265 268 268 268 270 269 269 272 268 269 272 267 267 272 265 265 270 260 262 266 253 258 263 249 256 259 246 253 256 243 250 252 242 247 248 240 245 246 239 243 244 239 242 242 245 234 221 245 233 220 245 234 221 245 234 222 245 234 222 245 233 222 245 232 220 244 231 219 244 231 218 244 232 219 246 235 225 250 241 233 255 248 241 260 254 249 264 260 254 269 266 262 271 271 269 272 272 271 272 272 272 272 272 272 272 272 272 272 272 273 272 273 273 273 274 274 274 275 274 274 275 275 275 276 276 276 277 276 276 278 277 277 278 278 278 279 279 279 281 280 280 282 281 281 284 283 283 285 285 286 288 288 288 290 290 290 291 291 291 292 292 292 293 293 292 293 293 293 294 294 294 295 295 295 296 296 296 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 297 298 297 297 297 296 296 296 296 295 295 296 295 295 296 295 295 295 294 295 295 294 294 295 294 294 294 293 293 294 292 293 293 292 293 293 293 294 295 294 296 296 296 297 298 297 298 298 296 297 298 295 296 296 293 294 294 293 295 295 295 296 297 296 298 300 296 298 301 295 296 301 293 295 299 293 294 297 291 293 295 291 292 294 291 291 293 291 291 292 289 290 291 287 287 290 283 284 287 279 280 284 278 279 282 278 279 282 279 279 282 278 279 281 277 277 279 273 274 276 270 270 272 271 270 272 275 275 276 277 277 278 277 277 278 275 275 276 272 273 274 271 272 272 269 271 271 268 270 270 267 270 270 267 269 268 267 268 267 267 267 267 266 267 266 265 266 266 263 265 266 261 264 266 260 263 266 261 264 266 260 263 266 259 262 266 265 265 268 268 268 270 269 269 272 268 269 272 267 267 272 265 265 270 261 262 267 254 259 264 249 256 259 246 253 256 243 250 252 242 247 248 240 245 246 239 243 244 239 242 242 245 234 221 245 233 220 245 233 221 245 233 222 245 233 222 245 233 221 244 232 219 244 231 218 244 231 218 244 232 219 246 234 224 249 240 232 254 247 240 259 253 248 263 259 253 269 265 261 271 271 269 272 272 271 272 272 272 272 272 272 272 272 272 272 272 273 272 273 273 273 274 274 273 275 274 274 275 275 275 276 276 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 280 282 281 281 283 283 283 285 285 286 288 288 288 290 290 290 291 291 291 292 292 291 293 293 292 293 294 293 294 295 294 295 296 295 296 297 296 297 297 297 298 298 297 298 298 298 299 299 299 299 299 299 300 300 299 299 300 298 299 298 297 297 297 297 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 295 296 295 295 295 295 296 295 295 296 295 295 295 296 296 296 297 297 297 299 297 298 300 296 297 298 293 295 296 291 292 294 290 292 294 291 293 295 291 294 297 292 294 298 293 295 299 293 295 298 293 294 296 294 294 295 293 293 295 292 292 293 290 291 293 287 289 291 283 285 289 280 281 286 278 279 283 277 279 282 277 279 282 277 278 281 277 278 281 276 277 279 273 274 276 270 270 272 271 270 272 275 275 276 277 277 278 276 277 277 274 274 276 272 273 274 271 272 272 269 271 271 267 270 270 267 270 269 266 269 268 266 268 267 266 267 267 265 266 266 264 266 266 263 265 266 261 264 265 260 263 266 261 263 266 260 263 266 260 262 266 265 265 268 267 267 270 268 269 272 267 268 272 266 267 271 265 265 270 261 262 267 255 259 264 250 256 260 246 253 256 243 250 252 241 247 249 240 245 246 239 243 244 239 242 242 245 234 221 245 233 220 245 233 221 245 233 221 245 233 221 244 233 221 244 231 219 244 230 217 244 230 217 244 231 219 245 234 224 249 239 231 253 246 239 258 252 247 263 259 253 268 264 260 271 270 268 272 272 271 272 272 272 272 272 272 272 272 272 272 273 272 272 273 273 273 274 274 273 274 274 274 275 275 275 276 276 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 280 282 282 281 283 283 283 285 285 285 288 288 288 290 290 290 291 291 290 292 292 291 292 293 292 293 294 293 294 295 294 295 296 295 296 297 296 297 298 297 298 298 297 299 299 298 299 299 299 300 300 299 300 300 300 300 300 299 300 300 298 298 298 298 297 297 297 297 297 297 297 298 297 297 298 297 298 298 298 298 298 299 298 299 298 298 298 298 298 297 298 297 297 298 297 299 298 297 299 299 298 300 298 298 299 296 297 298 293 295 296 291 293 295 289 292 294 289 291 295 290 292 296 291 293 296 293 294 298 295 295 297 295 295 296 294 294 296 293 293 295 290 292 294 287 289 293 284 287 291 282 284 289 279 281 285 278 279 283 277 279 282 277 279 282 277 278 282 277 278 282 276 277 280 273 274 276 269 268 272 270 269 271 274 274 275 276 276 277 275 276 276 273 274 275 272 273 274 271 272 272 269 271 271 267 270 269 267 270 268 266 269 267 266 268 267 266 267 267 265 266 266 264 265 266 262 265 266 260 263 265 259 263 265 260 263 266 260 262 265 261 262 266 264 265 268 267 267 270 267 268 271 267 268 272 266 267 271 265 265 270 262 262 267 255 259 264 250 256 260 246 253 256 243 250 252 241 247 249 240 245 246 239 243 244 239 242 242 245 234 221 245 233 220 245 233 221 244 233 221 244 233 221 244 232 220 244 231 218 244 230 217 243 230 217 244 231 219 245 234 224 248 239 230 252 245 238 257 251 246 263 258 253 268 263 259 271 269 267 272 272 271 272 272 272 272 272 272 272 272 272 272 273 272 272 273 273 273 274 273 273 274 274 274 275 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 280 282 282 281 284 283 283 285 285 285 288 288 288 290 290 289 291 291 290 292 292 291 292 293 292 293 294 293 294 295 294 295 296 295 296 297 296 297 298 297 298 298 298 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 299 299 298 298 299 299 299 299 299 299 300 299 300 300 300 299 299 299 299 299 299 299 299 298 299 299 298 298 299 299 299 299 301 300 300 300 300 299 298 299 299 294 296 297 292 294 296 290 293 296 290 292 295 291 293 296 293 294 298 295 295 297 295 295 297 295 295 296 293 294 296 290 292 297 287 290 295 284 288 293 282 285 290 280 283 288 278 280 286 278 279 284 278 280 284 278 280 283 278 279 283 277 279 283 276 278 281 273 274 276 268 267 271 267 267 269 272 272 273 274 274 275 273 274 275 272 273 274 272 273 274 270 272 272 268 271 271 267 270 269 266 269 268 266 268 267 265 267 267 265 266 267 264 266 266 263 265 266 261 264 265 259 263 265 259 262 265 259 263 266 260 262 265 261 263 266 263 264 268 266 266 269 266 267 271 266 267 271 265 266 271 265 265 270 262 262 267 256 260 265 250 256 260 245 253 256 243 250 252 241 247 249 240 245 247 239 243 244 239 242 242 245 234 221 245 233 220 245 233 220 244 233 221 244 233 221 244 232 219 243 230 217 243 230 216 243 230 217 244 231 220 245 233 224 248 238 230 252 244 237 256 250 244 261 257 251 267 263 258 271 269 266 272 272 270 272 272 272 272 272 272 272 272 272 272 273 272 272 273 273 273 274 273 273 274 274 274 275 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 280 282 282 282 284 283 283 286 285 286 288 288 288 290 290 289 291 291 290 292 292 291 292 293 292 293 294 293 294 295 294 295 296 295 297 297 296 298 298 297 298 298 298 299 299 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 299 299 299 299 299 299 300 300 300 301 300 302 303 301 301 302 301 298 300 301 296 298 299 293 296 298 292 294 298 292 294 297 294 295 298 295 296 299 295 296 298 294 295 297 293 294 297 289 293 298 287 291 297 285 289 295 283 287 293 281 285 290 280 283 288 279 281 287 279 280 286 279 281 285 279 281 285 279 280 285 278 280 284 276 278 281 272 273 276 266 265 269 266 266 268 269 269 270 272 272 273 272 273 274 272 273 274 271 273 274 270 272 272 267 271 271 266 270 269 266 269 267 265 268 267 265 267 267 264 266 267 263 265 267 262 265 266 260 264 266 258 263 265 258 262 265 258 262 265 259 262 265 261 262 266 263 263 267 265 265 268 265 266 270 265 267 271 265 266 271 264 264 270 262 262 268 256 259 265 250 256 260 245 252 256 242 250 252 241 247 249 240 245 247 239 243 244 239 242 242 245 234 221 245 233 220 244 233 220 244 233 220 244 232 220 243 231 219 243 230 216 243 229 216 243 230 217 244 231 220 245 233 223 247 237 229 251 243 236 255 249 243 260 255 250 266 262 258 270 267 264 272 271 270 272 272 272 272 272 272 272 272 272 272 273 272 272 273 273 273 274 273 273 274 274 274 275 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 280 283 282 282 284 284 284 286 286 286 288 288 288 290 290 289 291 291 290 292 292 291 292 293 292 293 294 293 294 295 294 296 296 295 297 297 296 298 298 297 298 298 297 298 298 297 298 298 298 299 298 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 299 299 299 299 298 299 299 299 300 300 300 302 303 301 301 302 302 299 301 302 297 299 301 295 297 300 293 295 299 294 295 298 296 296 298 294 296 298 293 296 298 291 294 298 288 293 298 286 291 297 285 290 296 283 288 294 282 287 293 281 285 291 280 284 289 280 282 288 280 282 287 280 282 286 280 282 286 279 281 285 277 280 284 274 276 280 271 271 274 266 265 268 265 265 267 267 267 269 271 271 272 272 273 273 272 273 274 272 273 274 269 272 272 267 270 271 266 269 269 265 268 267 264 267 267 264 266 266 263 266 266 262 265 266 261 264 266 259 263 265 257 262 265 257 262 265 257 262 265 258 261 265 259 261 266 262 262 267 263 263 267 264 265 269 264 266 271 264 265 270 264 264 269 262 262 268 256 259 265 250 256 260 245 252 257 242 250 252 241 247 249 240 245 247 239 243 245 239 242 242 245 234 220 244 233 219 244 233 220 244 232 220 244 232 220 243 231 218 243 230 216 243 229 215 243 230 217 244 231 220 245 233 223 247 236 228 250 242 234 254 248 241 259 254 248 265 260 256 269 266 262 272 271 269 272 272 271 272 272 272 272 273 272 272 273 272 272 273 273 273 274 273 273 274 274 274 275 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 280 283 282 282 285 284 284 287 286 287 289 288 288 290 290 289 291 291 290 292 292 291 293 293 292 293 294 293 294 295 294 296 296 295 297 297 296 297 298 297 298 298 296 298 297 296 297 297 296 297 297 296 297 297 297 298 298 298 298 299 299 299 300 300 300 301 300 300 300 300 300 300 300 300 300 299 299 300 299 300 300 300 300 300 300 299 299 299 299 299 299 298 298 299 298 298 299 299 299 300 300 300 300 301 302 299 301 302 298 299 301 295 298 300 294 296 299 294 295 298 295 295 297 294 296 297 290 294 297 287 292 297 286 291 296 284 290 296 284 290 296 284 288 295 283 287 293 281 286 291 281 285 290 281 284 289 281 283 288 281 283 288 281 283 287 279 280 285 276 278 282 273 275 278 269 269 273 266 265 269 265 265 269 268 267 270 271 271 272 272 273 274 273 273 274 272 272 274 269 271 272 266 270 271 265 269 269 264 268 267 263 266 266 263 266 266 262 265 266 261 265 266 260 264 266 259 263 266 257 262 265 256 261 265 255 261 265 256 261 265 259 261 266 261 261 267 262 261 266 263 264 268 263 265 270 264 264 270 264 264 269 262 262 268 257 259 265 250 255 260 245 252 257 242 249 252 241 247 249 240 245 247 239 243 245 239 242 242 245 234 220 244 233 219 244 232 220 244 232 220 243 232 219 243 230 217 242 229 215 243 229 215 243 229 217 244 231 220 245 232 223 247 236 227 249 240 233 253 246 240 258 253 247 264 260 254 268 265 261 271 270 268 272 272 271 272 272 272 272 273 272 272 273 272 273 273 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 285 285 285 287 287 287 289 289 288 290 290 289 291 291 290 292 292 291 293 293 292 294 294 293 295 295 294 296 296 295 296 297 296 297 297 297 298 298 296 297 297 295 297 296 295 296 296 295 296 296 297 296 297 297 297 298 298 298 299 299 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 299 299 299 298 299 298 298 299 299 299 299 299 299 299 300 300 300 300 301 298 299 301 295 298 300 293 296 299 294 295 297 294 295 296 293 294 296 289 293 296 287 292 297 285 291 296 285 291 297 285 291 297 284 289 295 283 288 294 283 287 292 282 285 291 281 285 290 282 285 290 280 283 288 280 282 287 277 279 284 274 276 280 270 272 276 269 268 273 268 267 272 269 269 272 271 271 273 272 273 274 275 275 276 274 274 275 272 273 274 269 271 272 266 270 270 264 268 268 263 267 267 263 266 266 263 266 266 262 265 266 260 265 266 259 264 266 258 263 265 256 262 265 255 261 265 254 261 264 255 260 265 258 260 266 260 260 266 260 260 266 261 261 267 262 263 269 263 263 269 263 263 269 262 262 268 257 259 265 250 255 260 244 252 257 242 249 252 241 247 249 239 245 247 239 243 245 239 242 242 245 233 220 244 233 219 244 232 220 244 232 220 243 231 219 242 230 217 242 229 215 243 229 215 243 229 218 244 231 221 245 232 224 247 235 227 249 239 232 252 245 239 256 251 245 263 259 253 267 264 259 271 269 266 272 272 271 272 272 272 272 273 272 272 273 272 273 273 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 285 285 285 288 287 287 289 289 289 290 290 289 291 291 290 292 291 291 293 293 292 294 294 293 295 295 294 296 296 295 296 297 296 297 297 297 297 298 297 297 297 296 297 297 296 296 297 296 296 296 296 296 296 298 296 297 298 297 298 299 298 299 300 299 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 298 299 299 299 299 299 299 299 299 299 300 298 299 300 296 297 299 294 296 299 293 295 297 294 294 296 294 294 295 290 293 296 287 292 297 286 292 297 286 292 298 286 292 298 285 291 296 285 289 295 284 288 294 283 287 292 283 286 291 283 286 291 282 284 289 279 281 286 275 277 282 271 274 278 269 271 275 270 269 274 271 270 274 273 272 275 274 274 276 275 276 276 276 276 276 275 275 276 272 273 274 268 271 272 265 269 270 264 268 268 263 267 267 262 266 266 262 265 266 261 265 266 260 264 266 259 263 266 257 262 265 255 261 265 254 261 265 253 260 264 254 260 264 257 260 266 259 259 266 258 259 266 258 260 266 260 261 267 261 262 268 262 262 268 262 261 267 257 259 265 249 255 260 244 252 257 241 249 252 241 247 249 239 245 247 239 243 245 239 242 242 245 233 220 244 233 219 244 232 219 243 232 219 243 231 218 242 230 216 242 228 215 243 229 215 244 230 218 245 231 221 245 233 224 246 234 227 248 238 231 251 244 238 255 250 244 261 256 250 267 264 258 270 269 265 272 272 270 272 273 272 272 273 272 273 273 273 273 273 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 286 285 286 288 287 288 289 288 289 290 289 289 291 290 290 292 291 291 293 292 292 294 294 293 295 295 294 296 296 295 296 297 296 297 297 297 297 298 297 298 298 297 297 298 297 297 298 297 297 297 297 297 297 298 297 296 299 297 297 299 298 298 299 298 298 299 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 299 296 297 298 295 296 298 294 295 297 294 295 296 294 294 295 292 294 296 288 293 297 287 293 298 287 292 298 287 292 298 286 291 297 286 290 296 286 289 295 285 288 294 286 288 292 285 287 290 281 283 288 277 279 284 273 275 280 269 272 277 270 271 275 273 273 276 277 276 278 277 277 279 277 277 279 278 278 278 277 277 277 276 276 276 273 274 275 268 271 272 265 269 270 263 268 267 262 266 266 262 265 266 261 265 266 260 264 265 259 264 266 258 263 266 257 262 265 255 261 265 253 260 264 252 259 264 253 259 264 256 259 266 257 259 266 257 258 265 257 258 265 258 260 266 260 261 267 261 261 268 261 261 267 257 258 265 249 254 260 245 252 256 241 249 252 240 247 249 239 245 247 239 243 245 239 242 242 245 233 220 244 232 219 244 232 219 243 232 219 243 231 218 242 229 216 242 228 214 243 229 215 244 230 219 245 231 222 246 233 225 246 234 227 248 238 231 251 243 237 255 249 244 260 254 249 266 262 256 269 268 263 272 272 270 272 273 272 272 273 272 273 273 273 273 273 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 286 284 286 288 287 288 289 288 289 290 289 289 291 290 290 292 291 291 293 292 292 294 294 293 295 295 294 295 296 295 296 297 296 297 297 297 297 298 298 298 298 298 298 299 298 298 299 298 298 299 298 299 298 298 299 298 298 299 298 299 299 299 299 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 297 298 296 296 297 295 296 297 295 295 295 295 295 295 294 294 296 290 293 297 289 293 298 288 293 298 288 293 298 287 292 298 287 291 297 287 290 296 288 290 295 288 289 292 285 286 290 279 281 286 275 277 282 271 273 278 269 272 277 272 273 277 277 277 279 280 279 280 280 280 281 280 280 280 278 278 279 277 277 277 276 276 276 274 274 275 269 271 272 265 269 269 263 267 267 262 266 266 261 265 266 261 264 266 260 264 266 259 263 266 257 262 266 256 261 265 254 260 264 253 259 264 252 259 264 252 258 264 255 258 265 256 258 265 255 257 265 255 258 265 257 258 265 258 259 266 260 260 267 261 260 267 257 258 264 249 254 260 244 251 256 241 249 252 240 247 249 239 245 247 239 243 245 239 242 242 245 233 220 244 233 219 244 232 219 243 231 219 242 230 217 242 229 216 242 228 214 243 229 216 244 230 219 245 232 223 246 233 226 247 234 227 248 237 231 250 242 236 254 248 243 259 253 248 265 261 254 269 267 261 272 272 269 272 273 272 272 273 272 273 273 273 273 273 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 285 284 286 288 287 288 289 288 289 290 289 289 291 290 290 292 291 291 293 292 292 294 293 293 295 295 295 295 296 296 296 296 296 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 300 299 299 300 299 299 300 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 296 296 296 296 296 295 296 295 295 294 295 295 292 294 296 290 293 298 288 293 298 288 293 299 288 292 299 288 292 298 289 291 296 290 290 294 287 288 292 282 283 289 276 278 284 273 274 280 271 273 278 271 273 278 274 275 279 279 279 281 281 281 282 281 281 282 280 280 281 277 278 279 276 276 277 276 276 276 274 274 274 269 271 272 265 268 269 263 266 266 262 265 266 260 265 266 260 264 266 259 263 266 258 262 266 257 262 265 255 260 265 254 259 264 253 259 264 251 258 264 251 257 263 254 257 264 256 258 265 254 257 263 253 256 264 255 257 265 257 258 266 259 259 266 260 260 267 256 257 264 249 254 260 244 251 256 241 248 252 240 246 249 239 244 247 239 243 245 239 242 242 245 233 220 244 232 219 244 232 219 243 231 219 242 230 217 241 228 215 241 228 214 243 229 216 244 230 220 246 232 224 247 234 227 247 234 228 248 237 231 250 242 236 254 247 242 259 253 248 264 260 253 268 267 260 272 272 268 272 273 271 272 273 272 273 273 273 273 274 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 285 284 286 288 286 288 289 288 289 290 289 289 291 290 290 292 291 291 293 292 292 294 293 294 295 295 295 295 295 296 296 296 296 297 297 297 297 298 297 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 299 299 299 299 298 298 298 298 297 297 297 297 296 296 296 295 296 295 295 295 295 295 294 294 296 291 293 298 289 293 298 289 293 299 289 293 299 289 292 298 290 292 296 290 290 294 285 287 292 278 281 287 274 276 283 272 273 280 272 273 279 272 274 279 274 276 280 278 279 281 280 280 282 280 280 282 279 279 281 275 276 278 274 275 276 275 275 276 273 274 274 269 270 272 265 268 268 263 266 266 261 265 266 260 264 266 259 263 266 258 262 265 258 262 265 257 261 265 255 260 265 254 259 264 252 258 263 251 257 263 251 256 263 253 256 264 255 257 264 253 256 263 251 255 264 253 256 265 255 256 265 258 258 266 260 259 266 256 257 264 249 254 260 244 251 256 241 248 252 240 246 249 239 244 247 239 243 245 239 242 242 245 233 220 244 232 218 244 232 219 243 231 218 242 230 217 241 228 215 241 228 215 243 229 217 244 230 221 246 233 225 247 234 228 248 235 230 248 237 231 250 241 236 253 247 242 259 252 248 264 260 253 268 267 260 272 272 268 272 273 271 272 273 272 273 273 273 273 274 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 281 283 285 284 286 287 286 288 289 288 289 290 289 290 291 290 290 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 299 299 299 299 299 298 298 298 298 297 298 297 297 297 296 296 296 296 295 295 295 294 294 295 295 292 294 297 291 294 298 290 293 298 289 293 299 289 292 298 290 291 296 289 290 293 283 286 291 277 280 286 274 276 283 273 274 281 273 274 281 273 275 280 274 275 280 276 277 281 278 278 281 278 278 281 276 277 280 274 275 278 272 274 276 273 274 275 272 273 274 268 270 271 264 267 267 262 265 266 261 264 266 260 264 266 259 263 265 258 262 265 257 261 265 256 260 265 255 259 264 254 258 264 252 257 263 250 256 263 251 255 263 252 255 263 254 256 263 252 255 263 250 254 263 250 253 264 253 255 265 257 257 265 259 258 266 255 256 263 249 254 260 244 250 255 241 248 252 240 246 249 239 244 247 239 243 245 239 242 242 245 233 220 244 232 218 244 232 219 243 231 218 242 229 216 241 228 215 241 228 215 243 229 217 245 231 222 247 233 226 248 235 229 248 236 231 248 238 233 250 241 237 254 246 242 259 252 248 265 260 254 268 267 260 272 272 268 272 273 271 272 273 272 273 273 273 273 274 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 281 283 285 284 286 287 286 288 289 287 289 290 288 290 291 290 291 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 300 299 299 300 299 299 299 299 299 299 299 298 298 298 298 297 298 297 297 297 296 296 297 296 295 296 295 294 295 295 295 294 295 296 292 294 297 291 293 298 290 293 298 290 292 298 290 292 296 289 290 294 283 286 291 277 280 287 275 276 283 274 275 282 274 275 281 273 275 281 273 275 279 274 275 280 275 276 280 275 276 280 274 276 279 273 274 277 271 273 275 271 273 274 269 271 273 266 269 270 264 267 267 262 265 266 261 264 266 260 263 266 258 262 265 258 261 265 257 260 264 256 260 264 254 259 264 253 258 263 252 257 263 250 256 262 250 255 262 251 254 262 253 256 262 252 255 263 251 254 263 248 252 263 251 253 264 256 256 265 258 258 265 255 256 263 249 253 260 244 250 255 241 248 252 240 246 249 239 244 247 239 243 245 239 242 242 245 233 220 244 232 218 244 232 219 243 231 218 242 229 216 241 228 214 241 228 215 243 229 218 245 231 223 247 234 227 249 236 230 249 237 232 249 238 234 250 242 237 254 246 243 259 252 249 264 260 254 269 268 260 272 272 268 272 273 271 272 273 272 273 273 273 273 274 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 285 284 286 287 286 287 288 287 289 290 288 290 291 290 291 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 300 299 299 299 299 299 299 299 298 298 298 298 297 298 297 297 297 296 296 297 296 296 296 295 295 295 295 295 294 295 296 293 294 296 292 294 297 291 293 298 290 292 297 291 292 295 288 290 294 282 285 291 278 280 287 276 277 284 275 275 283 274 275 282 273 274 280 272 274 279 273 275 279 274 275 279 274 275 279 274 275 278 272 274 276 271 273 275 270 272 273 268 270 272 266 268 270 263 266 267 262 265 266 261 264 266 260 263 266 258 262 265 257 261 264 256 260 264 255 259 264 254 259 264 253 258 263 251 257 263 250 256 262 250 254 262 251 254 261 252 255 261 252 254 263 251 253 263 248 252 263 249 252 263 255 255 264 257 257 265 254 255 263 248 252 259 243 249 255 240 247 252 239 246 249 239 244 247 239 243 245 239 242 242 245 233 220 244 232 218 243 231 218 242 230 218 241 229 216 241 227 214 241 227 215 243 229 218 245 231 223 248 235 228 250 237 232 250 238 234 251 239 235 251 242 238 254 247 243 260 252 250 265 261 257 270 269 261 272 272 268 272 273 271 272 273 272 273 274 273 273 274 273 273 274 273 274 275 274 274 275 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 280 281 280 281 283 282 283 285 284 286 287 286 287 288 287 289 290 288 290 291 290 291 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 297 297 298 297 298 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 299 299 299 298 298 298 297 298 297 297 297 296 296 297 296 296 296 295 295 295 295 295 295 295 295 294 294 296 293 294 297 291 293 297 291 293 296 291 292 295 286 289 294 282 285 291 279 281 287 276 277 285 276 276 284 274 275 282 273 274 281 273 274 280 273 275 280 274 275 279 274 275 279 273 275 278 272 274 276 271 273 275 269 271 273 267 270 272 265 268 269 263 266 267 262 264 266 261 263 265 260 262 265 258 261 264 257 260 264 256 260 264 255 259 263 254 259 263 252 258 263 251 256 262 250 255 262 250 254 261 250 253 260 252 254 261 252 254 263 251 253 263 248 251 263 247 250 263 254 254 264 256 256 264 254 255 262 248 252 259 244 249 255 240 247 252 239 246 249 239 244 247 239 243 245 239 242 242 245 233 220 244 232 218 243 231 218 242 230 218 241 229 216 241 227 214 241 227 215 243 229 219 246 232 224 249 235 229 251 238 233 252 239 235 252 241 237 253 243 239 255 247 244 262 254 251 266 263 258 270 269 262 272 272 268 272 273 271 272 273 272 273 274 273 273 274 273 273 274 273 274 275 274 274 275 274 275 276 275 276 277 276 276 278 277 277 278 278 278 280 279 280 281 280 281 283 282 283 285 284 285 287 286 287 288 287 289 290 288 290 291 290 291 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 296 297 298 297 298 298 297 298 298 298 298 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 298 299 298 298 298 297 297 297 296 296 297 296 296 296 295 296 296 295 296 295 295 295 294 294 296 294 294 296 293 293 296 292 293 295 291 292 294 285 288 293 281 284 291 279 280 287 277 278 286 276 277 285 274 275 283 273 274 281 273 274 280 274 275 281 275 276 280 274 275 279 273 274 278 272 273 276 271 272 275 269 271 274 267 269 272 265 268 269 264 266 267 262 264 266 261 263 265 259 261 265 258 260 264 257 260 264 256 259 263 254 259 263 253 258 263 251 257 262 250 256 262 249 254 261 249 253 261 249 252 260 250 253 261 252 254 263 251 252 262 248 251 262 246 250 262 252 253 263 256 256 263 253 254 262 248 251 258 243 249 254 240 247 252 239 245 249 239 244 247 239 243 245 239 242 242 244 233 220 244 232 218 243 231 218 242 230 217 241 229 215 241 227 214 241 227 215 243 229 220 246 232 225 249 236 230 251 239 234 253 240 237 253 242 238 254 244 241 257 248 245 263 256 253 268 264 258 271 270 263 272 272 268 272 273 271 272 273 272 273 274 273 273 274 273 273 274 273 274 275 274 274 275 274 275 276 275 275 277 276 276 277 277 277 278 278 278 279 279 280 281 280 281 283 282 283 285 284 285 287 286 287 288 287 289 290 288 290 291 289 291 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 296 297 297 297 298 298 297 298 298 298 298 299 298 298 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 298 299 298 298 298 297 297 297 297 296 297 296 296 297 296 296 296 295 297 295 295 296 294 294 296 294 294 296 293 294 296 293 293 295 291 292 294 285 288 293 281 284 290 279 281 287 278 279 286 276 277 284 274 275 282 272 273 280 272 273 280 274 275 280 275 276 281 274 275 280 273 274 278 271 273 276 270 272 275 269 271 274 267 269 272 265 268 269 264 266 267 262 264 266 260 263 265 259 261 265 258 260 264 257 259 264 256 259 263 254 258 262 252 258 262 251 257 262 249 255 261 249 254 261 249 252 260 248 251 260 250 252 261 252 253 263 251 252 262 248 250 262 246 250 262 252 253 263 255 255 263 252 254 261 247 251 258 243 248 254 240 247 252 239 245 249 239 244 246 239 243 244 239 242 242 245 233 220 244 232 218 243 231 218 242 230 217 241 228 215 240 227 214 241 227 215 243 230 220 246 233 226 250 236 231 252 240 235 254 241 238 254 243 240 256 245 242 258 249 246 264 257 254 269 265 259 271 270 264 272 272 269 272 273 271 272 273 272 273 274 273 273 274 273 273 274 273 274 275 274 274 275 274 275 276 275 275 276 276 276 277 276 277 278 277 278 279 278 279 281 280 281 283 282 283 285 284 286 287 286 287 288 287 289 290 288 290 291 289 291 292 291 292 293 292 293 294 293 293 295 294 294 295 295 296 296 295 296 297 296 297 297 297 298 298 297 298 298 298 298 299 298 298 299 298 298 299 299 298 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 299 298 298 298 297 297 298 297 297 297 296 297 297 296 297 296 296 297 296 295 297 295 295 296 294 294 296 294 294 296 293 293 295 291 292 295 286 288 293 281 284 290 279 281 287 277 279 285 276 277 283 273 274 280 271 272 278 272 272 278 274 275 280 275 275 281 274 275 281 272 274 278 271 273 276 270 272 275 268 270 274 266 269 271 265 267 269 264 266 267 262 264 266 260 262 265 258 260 265 257 259 264 257 259 264 256 259 263 254 258 262 251 258 261 250 257 262 249 255 261 248 254 261 248 251 260 248 250 259 249 251 261 251 252 262 250 251 261 248 250 261 246 249 262 252 253 263 254 254 262 252 253 261 247 250 258 243 248 254 240 246 252 239 245 249 239 244 246 239 243 244 239 242 242 244 233 220 244 232 218 243 231 218 242 230 217 241 228 215 240 227 214 241 227 216 243 230 221 247 233 226 250 237 232 253 240 237 255 242 239 256 244 242 257 247 244 260 251 248 265 258 255 269 265 260 271 270 265 272 273 269 272 273 271 272 273 272 273 274 273 273 274 273 273 274 273 274 275 274 274 275 274 275 276 275 275 276 276 276 277 276 276 278 277 278 279 278 279 281 280 281 283 282 283 285 284 286 287 286 288 288 287 289 290 288 290 291 289 291 292 291 292 293 292 292 294 293 293 295 294 294 295 295 295 296 295 296 297 296 297 297 296 297 298 297 298 298 297 298 299 298 298 299 298 298 299 299 298 299 299 299 299 299 299 299 299 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 299 299 299 299 299 298 298 298 298 297 298 297 297 298 297 297 297 296 297 297 296 298 296 296 297 295 295 297 295 295 296 294 294 296 293 294 296 291 292 295 286 289 294 282 285 291 279 282 287 277 279 284 274 276 281 271 272 278 269 270 276 271 271 277 273 274 279 274 275 280 273 275 280 272 274 278 271 273 277 270 272 275 268 270 274 266 268 271 265 267 268 264 265 267 262 264 266 260 262 266 258 260 265 257 259 264 256 259 264 255 259 263 253 258 262 251 257 261 249 256 261 248 254 261 248 253 260 247 251 259 247 249 259 248 250 260 250 251 262 250 251 261 248 250 261 246 249 261 251 252 262 253 254 262 251 252 260 247 250 257 243 248 254 240 246 251 239 245 249 239 244 246 239 243 244 239 242 242 244 233 220 244 232 218 243 231 218 242 230 217 241 228 215 240 226 214 241 227 216 243 230 221 247 233 227 250 237 233 253 241 238 255 243 240 257 245 243 258 249 246 261 253 250 266 260 256 270 266 261 271 271 266 272 273 269 272 273 271 272 273 272 273 274 273 273 274 273 273 274 273 274 275 274 274 275 274 274 276 275 275 276 275 275 277 276 276 277 277 277 279 278 279 280 280 281 283 282 284 285 284 286 287 286 288 288 287 289 290 288 290 291 289 291 292 291 292 293 292 292 294 293 293 295 294 294 295 295 295 296 295 296 297 296 297 297 296 297 297 297 298 298 297 298 298 298 298 299 298 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 299 299 299 299 299 298 298 299 298 298 298 297 297 298 297 297 298 297 298 297 297 298 297 296 298 296 296 297 295 295 297 294 294 296 293 294 296 291 293 295 286 290 294 282 286 292 280 283 288 277 279 284 273 275 280 269 271 276 267 268 274 268 269 275 271 272 277 272 273 278 272 273 278 272 273 277 271 273 277 270 272 275 268 270 274 266 268 271 264 266 268 263 265 267 262 263 266 260 261 266 258 259 265 257 259 264 256 259 264 255 258 263 252 258 262 250 257 261 249 256 261 247 254 261 247 252 260 246 250 259 246 248 258 247 249 260 249 250 261 250 251 261 248 250 261 247 249 261 249 251 261 252 253 261 250 252 260 247 250 257 243 248 254 240 246 251 239 245 248 239 244 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 218 242 230 217 241 228 215 240 226 213 241 227 216 243 230 221 247 234 227 250 238 234 254 242 238 256 244 241 258 247 244 260 250 248 263 255 252 267 261 258 270 267 263 271 271 267 272 273 270 272 273 271 272 273 272 272 274 273 273 274 273 273 274 273 274 275 274 274 275 274 274 275 275 275 276 275 275 276 276 276 277 277 277 279 278 279 280 279 281 283 282 284 285 284 286 287 286 288 288 287 289 290 288 290 291 289 291 292 290 292 293 292 292 294 293 293 294 293 294 295 294 295 296 295 296 296 296 297 297 296 297 297 297 297 298 297 298 298 298 298 299 298 298 299 299 298 299 299 298 299 299 299 299 299 299 299 299 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 299 299 299 299 298 298 299 298 298 299 298 298 298 297 298 298 297 298 298 297 298 297 297 298 297 296 298 296 295 298 295 295 297 293 294 296 290 292 296 286 290 295 283 287 292 280 284 289 278 280 285 274 275 280 269 270 276 264 266 273 265 266 273 268 269 274 270 271 276 270 271 276 271 272 276 271 272 277 270 272 275 268 270 273 266 267 270 264 266 267 263 264 266 262 263 266 260 261 265 258 259 265 256 258 264 256 259 264 254 258 263 252 257 262 250 257 261 248 255 261 247 253 261 246 251 260 246 249 258 245 247 258 245 247 259 246 248 260 249 250 260 248 249 261 247 249 261 248 251 261 251 252 261 250 251 259 247 249 257 243 247 254 240 246 251 239 245 248 239 244 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 218 242 230 217 241 228 215 240 226 213 241 227 215 243 230 221 247 234 228 250 238 235 254 242 239 256 245 242 258 248 245 261 252 250 264 257 254 268 262 259 271 268 264 271 271 268 272 273 270 272 273 271 272 273 272 272 274 272 273 274 273 273 274 273 274 275 274 274 275 274 274 275 275 274 276 275 275 276 276 276 277 277 277 279 278 279 280 279 281 283 282 284 285 284 286 287 286 288 288 287 289 290 288 290 291 289 291 292 290 292 293 292 292 294 293 293 294 293 295 295 294 296 296 295 296 296 296 297 297 296 297 297 297 297 298 297 298 298 298 298 299 298 298 299 299 298 299 299 298 299 299 299 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 299 299 300 299 298 299 299 298 298 299 298 298 299 298 298 299 298 298 299 298 299 299 298 299 298 297 299 297 297 299 296 297 298 295 295 298 292 294 298 288 292 296 286 289 295 283 287 293 282 286 291 279 282 287 275 277 282 270 272 277 264 266 272 262 263 270 263 264 269 265 265 271 266 268 273 269 270 275 270 271 275 269 271 275 267 270 273 265 267 270 264 265 267 263 264 266 262 262 266 261 260 265 258 258 265 256 258 264 255 258 263 254 258 263 252 257 262 249 256 261 247 255 260 246 252 260 245 250 259 245 248 258 244 246 258 243 245 259 244 246 259 247 248 260 248 249 260 246 249 260 249 251 261 251 251 260 249 250 259 246 249 256 242 247 254 240 246 251 239 245 248 239 244 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 218 242 230 217 241 228 215 240 226 213 241 227 215 243 230 221 247 234 228 250 238 235 254 243 240 256 246 243 259 249 247 262 253 251 266 258 256 269 263 259 271 269 265 271 272 269 272 273 270 272 273 271 272 273 272 272 274 272 273 274 273 273 274 273 274 275 274 274 275 274 274 275 275 274 276 275 275 276 276 276 278 277 277 279 278 279 280 279 282 283 282 284 285 284 286 287 286 288 288 287 289 290 288 290 291 289 291 292 290 292 293 292 293 294 293 294 294 293 295 295 294 296 296 295 296 296 295 296 297 296 297 297 297 297 298 297 298 298 298 298 298 298 298 299 299 298 299 299 298 299 299 299 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 299 299 300 299 298 299 299 298 298 299 298 298 299 298 299 299 299 299 299 299 300 299 298 299 298 298 299 297 297 299 294 296 300 291 294 299 288 292 297 286 290 295 284 288 294 283 287 292 281 284 289 278 281 285 273 275 280 266 269 274 260 261 266 259 259 264 260 260 265 263 263 268 266 267 272 268 269 274 269 270 275 267 270 273 265 267 269 263 264 267 263 263 266 262 261 265 261 259 265 259 258 265 256 258 264 254 258 263 253 257 262 251 257 261 249 256 261 247 254 260 246 252 260 244 249 259 244 247 258 243 245 257 242 244 258 243 244 259 244 246 259 248 249 260 247 249 260 249 250 261 250 250 259 248 250 258 246 249 256 242 247 254 239 246 251 239 245 248 239 244 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 241 227 215 243 230 221 247 234 228 250 238 236 253 243 241 256 247 244 259 250 248 262 255 252 266 260 256 269 265 260 272 270 267 272 272 270 272 273 271 272 273 271 272 273 272 272 273 272 272 274 273 273 274 273 273 275 274 274 275 274 274 275 275 274 276 275 275 276 276 277 278 277 278 279 278 279 281 280 282 283 282 284 285 284 286 287 286 288 288 287 289 289 288 290 291 289 291 292 290 292 293 291 293 294 292 294 294 293 295 295 294 295 296 295 296 296 295 296 297 296 297 297 297 297 298 297 298 298 298 298 298 298 298 299 299 298 299 299 298 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 301 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 299 299 300 299 299 299 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 299 299 300 298 299 300 297 297 299 294 296 300 291 294 298 289 292 297 286 290 295 285 289 294 283 287 293 282 286 291 280 283 288 277 279 283 268 271 275 258 260 264 255 256 260 256 256 261 259 259 264 263 263 268 267 268 273 268 269 274 267 269 273 264 266 269 263 263 266 262 262 265 262 261 265 261 259 265 259 258 265 256 258 264 254 257 263 252 257 262 250 257 261 248 256 260 246 254 260 245 252 260 244 249 259 243 247 258 242 244 257 241 243 258 241 243 259 244 245 259 248 249 260 247 249 260 248 250 260 249 250 259 247 249 258 245 248 256 242 247 254 239 245 251 239 244 248 239 243 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 227 215 243 229 220 246 233 228 250 238 236 253 243 241 255 247 245 258 251 249 262 255 253 265 259 256 270 266 261 272 270 268 272 272 270 272 273 271 272 273 271 272 273 272 272 273 272 272 274 273 273 274 273 273 274 274 274 275 274 274 275 275 275 276 275 276 277 276 277 278 278 278 279 279 280 281 280 282 283 282 284 285 284 286 287 286 288 288 287 289 289 288 290 291 289 290 292 290 291 293 291 293 293 292 294 294 293 295 295 294 295 295 295 296 296 295 296 297 296 297 297 297 297 298 297 297 298 298 298 298 298 298 298 298 298 299 299 298 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 299 299 300 299 298 299 300 299 299 300 299 299 300 300 300 300 300 301 299 299 301 298 298 300 296 297 300 294 296 300 291 294 298 289 293 297 287 291 295 284 288 294 283 287 293 282 287 292 281 285 290 277 280 284 268 270 274 255 258 261 251 253 257 253 253 258 256 257 262 260 261 266 265 266 271 268 268 274 267 269 273 264 266 270 263 262 266 262 261 265 262 260 265 261 258 265 259 258 265 256 257 264 253 257 263 251 257 262 250 257 261 247 256 260 246 254 260 245 251 260 243 248 259 242 245 258 241 243 257 240 242 258 240 242 258 242 244 259 247 249 260 247 249 260 247 249 260 248 249 259 247 249 257 245 248 256 242 247 253 239 245 251 239 244 248 239 243 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 227 215 242 229 220 246 233 227 249 238 235 252 242 241 255 247 245 258 250 249 262 255 253 265 259 256 270 265 261 272 270 268 272 272 270 272 273 271 272 273 272 272 273 272 272 273 273 272 274 273 273 274 273 273 274 274 274 275 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 280 281 281 282 283 283 284 285 284 286 286 286 287 288 287 288 289 288 289 290 289 290 291 290 291 292 291 292 293 292 294 294 293 294 295 294 295 295 295 296 296 295 296 297 296 297 297 297 297 298 297 297 298 298 297 298 298 298 298 298 298 299 299 298 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 300 298 300 301 299 300 302 298 299 301 296 297 300 294 296 299 291 295 298 289 292 296 287 291 295 284 288 293 284 288 293 282 286 292 280 284 288 275 277 281 263 266 268 252 256 258 250 253 256 253 254 258 257 256 261 259 259 264 264 263 268 267 267 273 267 268 273 264 266 271 262 262 266 262 260 265 262 259 266 261 258 266 259 258 265 255 257 263 252 257 263 251 257 261 249 257 261 247 256 260 245 253 260 244 251 259 242 247 259 241 245 257 240 242 257 239 241 257 239 241 258 241 243 259 247 248 260 248 249 260 247 249 259 247 249 258 246 248 257 245 248 255 242 247 253 239 245 251 239 244 248 239 243 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 227 215 242 229 220 245 233 227 248 237 235 251 242 241 254 246 244 257 249 248 261 253 253 265 259 256 270 265 261 272 269 267 272 272 270 272 272 271 272 273 272 272 273 272 272 273 273 272 274 273 273 274 273 273 274 274 274 274 274 274 275 275 275 276 276 276 277 277 278 278 278 279 280 279 281 281 281 283 283 283 284 285 284 286 286 285 287 288 287 288 289 288 289 290 289 290 291 290 291 292 291 292 293 292 293 294 293 294 294 294 295 295 294 295 296 295 296 296 296 296 297 296 297 297 297 297 298 297 297 298 298 297 298 298 298 298 299 298 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 299 299 299 297 299 298 297 299 299 298 300 301 298 301 303 298 300 302 298 299 301 296 297 300 294 296 299 291 294 298 289 293 297 287 291 295 286 290 294 284 288 292 282 285 289 277 280 283 269 271 274 255 259 261 251 255 257 253 255 259 258 257 262 260 258 263 259 259 264 262 262 266 266 265 272 266 268 273 264 265 271 262 262 267 262 260 265 262 259 266 261 258 266 259 257 265 255 257 263 252 257 262 249 257 261 248 257 261 246 255 260 244 253 259 243 250 259 242 247 258 240 244 257 240 242 257 239 240 257 238 240 258 241 243 259 247 248 260 248 249 260 247 248 259 246 248 258 246 248 257 244 248 255 242 247 253 239 245 251 239 244 248 239 243 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 227 214 242 229 219 245 232 226 248 236 234 250 241 239 253 244 243 255 248 247 259 252 251 265 259 257 269 264 261 271 268 266 272 271 270 272 272 271 272 273 272 272 273 272 272 273 273 272 273 273 273 274 273 273 274 274 273 274 274 274 275 275 275 276 276 277 277 277 278 279 279 279 280 280 281 282 281 283 283 283 284 285 284 286 286 285 287 288 287 288 289 288 289 290 289 290 291 290 291 292 291 292 293 292 293 293 293 294 294 294 295 295 294 295 296 295 296 296 296 296 297 296 297 297 297 297 298 297 297 298 298 297 298 298 298 298 299 298 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 299 300 300 298 300 299 297 300 300 297 300 301 297 301 302 298 301 303 298 300 302 297 299 301 296 298 300 293 296 299 291 295 298 289 294 297 287 292 295 286 291 294 285 288 292 280 283 286 272 274 276 257 260 262 251 255 256 251 255 257 258 258 262 262 260 265 262 261 267 260 261 266 262 261 265 265 264 270 266 266 272 264 265 271 262 262 267 262 259 265 262 259 266 261 258 266 259 258 264 255 257 263 251 257 262 249 257 261 247 257 261 245 255 260 243 253 259 242 250 259 241 247 259 240 243 257 239 241 257 238 239 257 237 239 257 240 242 259 246 247 260 247 249 260 247 248 259 246 248 258 245 248 256 244 248 255 242 247 253 239 245 251 239 244 248 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 227 214 242 228 219 244 232 226 247 235 233 249 239 238 252 243 242 254 246 245 258 250 250 263 256 255 268 262 260 271 267 265 272 270 270 272 272 271 272 273 272 272 273 272 272 273 273 272 273 273 272 274 273 273 274 274 273 274 274 274 275 275 275 276 276 277 278 278 278 279 279 279 280 280 281 282 282 283 283 283 284 285 284 286 286 285 287 288 287 288 289 288 289 290 289 290 291 290 291 292 291 292 292 292 293 293 293 294 294 293 295 295 294 295 296 295 296 296 296 296 297 296 297 297 297 297 297 297 297 298 298 297 298 298 298 298 298 298 299 299 298 299 299 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 299 300 300 298 300 300 297 300 300 296 300 300 296 300 301 296 300 301 297 300 301 297 300 301 297 299 301 296 298 301 294 297 299 291 295 298 289 294 298 289 293 296 287 291 295 284 287 290 277 278 281 260 265 268 250 254 256 248 252 253 254 257 258 261 261 265 265 263 270 264 264 270 261 262 268 261 261 265 263 262 267 265 264 271 264 264 271 263 261 267 262 259 266 262 259 265 261 258 265 259 258 264 255 257 262 251 257 261 248 257 261 246 256 261 244 254 260 243 252 259 242 249 259 241 246 258 240 243 257 239 240 256 238 239 256 237 238 257 240 241 258 245 246 259 247 248 259 247 248 259 246 248 257 245 248 256 244 247 255 242 247 253 239 245 250 239 244 248 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 226 214 241 228 218 244 231 225 246 235 232 248 238 236 250 241 240 253 244 243 256 248 248 261 253 253 268 261 259 270 265 263 271 269 269 272 272 271 272 273 272 272 273 272 272 273 273 272 273 273 273 273 273 273 274 274 273 274 274 274 275 275 276 276 276 277 278 278 279 279 279 280 280 280 281 282 282 283 283 283 284 284 284 286 286 285 287 287 287 288 289 288 289 290 289 290 291 290 291 291 291 292 292 292 293 293 292 294 294 293 294 295 294 295 295 295 296 296 296 296 296 296 296 297 296 297 297 297 297 297 297 297 298 298 298 298 298 298 298 299 298 299 299 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 299 299 300 299 299 300 298 299 300 297 298 299 297 298 298 296 298 298 296 298 298 297 299 299 297 300 300 297 300 301 296 298 300 293 296 299 291 295 298 290 294 297 290 293 296 288 291 294 282 284 287 272 273 275 253 257 260 246 250 253 247 251 252 256 258 259 264 263 266 267 266 272 265 265 272 262 263 270 260 260 265 262 261 266 264 263 270 264 263 270 263 261 267 262 259 265 262 259 265 261 258 265 259 257 264 255 257 262 251 257 261 248 257 261 246 256 260 244 254 260 242 251 259 241 248 259 240 245 258 239 242 257 238 240 256 237 238 256 237 238 257 240 241 258 244 245 259 246 248 259 246 248 258 245 247 257 244 248 256 243 247 255 241 247 253 240 245 250 239 244 248 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 226 214 241 228 218 243 231 225 245 234 231 247 236 235 249 239 238 251 242 241 255 246 246 260 252 251 266 259 258 270 265 263 271 268 267 272 272 271 272 273 272 272 273 272 272 273 273 272 273 273 273 273 273 273 274 273 274 274 274 274 275 275 276 277 277 278 278 278 279 279 280 280 281 281 281 282 282 283 283 283 284 284 284 286 286 285 287 287 287 288 289 288 289 290 289 290 290 290 291 291 291 292 292 292 293 293 292 294 294 293 294 295 294 295 295 295 295 296 295 296 296 296 296 297 296 296 297 297 297 297 297 297 297 298 297 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 299 299 300 299 299 300 299 299 300 298 298 299 298 298 299 298 297 298 297 297 298 297 297 298 297 297 298 296 297 298 296 299 299 296 299 299 295 297 299 293 296 298 291 294 297 291 294 297 290 294 295 287 290 292 279 280 283 267 268 270 249 254 256 244 249 251 247 251 253 256 258 259 265 264 268 268 268 274 266 267 274 263 264 272 260 260 266 262 261 265 264 263 269 264 262 269 262 260 266 261 258 265 261 258 265 261 258 265 259 258 264 256 257 262 251 257 261 248 257 261 245 255 260 244 253 260 242 250 259 241 248 259 240 245 258 239 242 257 238 239 256 237 238 256 237 237 257 239 239 258 242 243 259 246 247 259 246 248 258 245 247 257 244 248 256 243 247 255 242 247 253 240 245 250 239 244 248 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 227 214 240 226 214 241 228 217 243 230 224 245 233 230 246 235 233 247 237 236 250 240 239 253 245 244 258 250 250 265 257 256 269 263 262 271 267 265 271 271 271 272 273 272 272 273 272 272 273 272 272 273 273 273 273 273 273 274 273 274 274 274 275 275 275 276 277 277 278 278 279 279 280 280 280 281 281 282 282 282 283 283 283 284 284 284 286 286 286 287 287 287 288 288 288 289 290 289 290 290 290 291 291 291 292 292 291 293 293 292 294 294 293 294 294 294 295 295 294 295 296 295 296 296 296 296 296 296 296 297 297 297 297 297 297 297 298 297 298 298 298 298 299 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 299 299 299 299 299 299 299 298 299 299 298 299 298 298 299 298 297 298 297 297 297 297 297 297 297 296 297 296 297 297 296 297 298 296 298 299 295 298 298 294 296 297 292 295 297 292 294 296 291 294 295 286 288 290 275 276 278 256 260 262 247 252 253 245 249 251 248 252 253 254 257 259 264 263 267 268 268 274 267 268 275 263 264 272 260 260 267 261 261 267 263 261 268 263 261 267 261 259 265 260 258 265 261 258 265 261 258 265 259 258 264 256 257 263 252 257 261 249 257 261 246 254 260 244 252 260 242 250 259 241 247 259 240 245 258 239 242 257 238 239 256 237 238 255 237 237 256 238 238 257 241 242 258 245 246 258 246 248 258 245 248 257 244 247 255 243 247 254 242 247 253 240 245 250 239 244 248 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 229 215 240 227 214 240 226 213 240 227 217 242 230 223 244 232 228 245 234 232 246 236 234 248 239 237 252 243 243 257 249 249 263 255 254 269 261 261 271 266 265 271 271 270 272 272 272 272 273 272 272 273 272 272 273 273 273 273 273 273 274 274 274 274 274 275 275 276 277 277 277 278 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 291 293 293 292 293 294 293 294 294 294 295 295 294 295 295 295 295 296 295 296 296 296 296 297 297 296 297 297 297 297 298 297 298 298 298 298 299 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 299 299 300 299 299 299 299 298 299 299 298 299 298 298 298 298 297 298 297 297 297 297 297 297 296 296 297 296 296 297 297 297 298 296 298 298 295 298 298 294 297 297 293 295 296 292 294 296 290 293 294 283 285 287 271 272 274 253 257 258 246 251 252 245 250 252 248 252 252 252 255 257 260 262 265 267 268 273 267 268 275 264 264 272 260 260 269 262 261 268 263 261 268 262 259 265 260 257 264 259 257 264 260 257 264 260 257 264 260 258 264 257 257 263 253 257 262 249 256 261 246 254 260 244 251 259 242 249 259 241 247 258 241 245 258 239 243 257 238 240 256 238 238 255 237 237 256 237 237 256 241 241 257 244 245 258 246 248 258 245 248 257 244 247 255 243 247 254 241 247 252 240 245 250 239 244 247 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 229 216 240 227 214 240 226 213 240 227 216 242 229 222 243 231 227 244 233 230 245 234 232 247 237 236 251 242 241 256 248 248 262 254 253 268 261 260 271 266 264 272 271 270 272 272 272 272 273 272 272 273 272 272 273 273 273 273 273 273 274 274 274 274 275 275 275 276 277 277 278 278 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 285 284 285 286 286 287 287 287 288 288 288 289 289 289 290 290 290 290 291 290 291 292 291 292 293 292 293 293 293 294 294 293 294 295 294 295 295 295 295 296 295 296 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 299 298 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 300 299 299 300 299 299 299 299 298 299 299 298 299 298 297 298 298 297 298 297 297 297 296 297 297 296 296 297 296 296 297 297 296 297 297 297 298 295 297 298 294 297 297 294 296 296 293 294 295 290 291 293 281 282 284 269 270 271 252 256 257 247 251 253 246 251 252 247 251 252 250 254 255 258 259 262 265 266 271 267 267 274 264 264 272 261 261 270 261 260 269 262 259 267 260 257 264 258 255 262 257 255 262 259 256 263 260 257 263 260 258 264 258 257 263 254 257 262 250 256 261 246 253 260 244 251 259 243 249 258 241 248 258 240 246 258 240 244 257 238 241 255 238 238 255 237 237 255 237 236 256 239 239 257 243 244 257 245 247 258 245 248 256 244 247 255 243 247 254 241 246 252 240 245 250 239 244 247 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 229 216 241 227 214 240 226 213 240 227 216 241 229 222 243 231 226 243 232 229 244 233 231 246 236 234 250 241 240 255 247 247 262 253 253 268 260 260 271 266 264 272 271 270 272 272 272 272 273 272 272 273 272 273 273 273 273 273 273 274 274 274 274 274 275 275 276 276 277 277 278 278 279 279 280 280 281 281 281 282 282 282 283 283 283 283 284 285 285 285 286 286 286 287 287 287 288 288 289 289 289 289 290 290 290 291 290 291 291 291 292 292 292 293 293 293 294 294 293 294 294 294 294 295 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 298 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 300 299 299 300 299 299 299 299 298 299 298 298 299 298 297 298 297 297 298 297 296 297 296 296 297 296 296 297 296 296 297 297 296 297 297 297 298 296 297 298 295 297 297 295 296 296 294 295 295 289 290 291 279 280 282 267 268 267 255 257 257 249 253 254 247 252 253 246 251 252 248 252 254 255 257 260 263 263 268 266 266 273 264 264 273 262 261 271 261 260 269 261 258 267 258 255 262 255 253 260 255 253 259 257 255 261 260 257 263 260 258 264 258 258 263 254 257 262 250 256 261 247 253 259 244 251 259 242 249 258 241 248 258 240 246 257 240 244 256 239 242 255 238 239 254 237 237 255 236 236 255 237 237 256 241 243 257 245 247 257 244 247 256 244 247 255 243 247 254 241 246 252 240 245 249 239 244 247 239 243 246 239 242 244 239 242 242 245 233 220 244 232 217 243 231 217 242 230 217 242 229 216 241 227 215 240 226 213 240 227 216 241 229 221 242 230 225 242 231 228 243 232 230 245 235 233 249 240 239 254 246 246 261 252 252 268 259 259 271 266 264 272 271 270 272 272 272 272 273 272 272 273 272 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 278 279 279 279 280 280 281 281 281 282 282 282 283 283 283 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 290 291 291 291 292 292 292 293 293 293 294 294 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 300 299 299 299 299 298 299 298 298 299 298 297 298 297 297 298 296 296 297 296 296 297 296 296 297 296 296 297 296 296 297 297 296 297 297 297 298 296 297 297 295 297 296 294 295 294 288 289 290 278 279 280 266 266 266 256 257 257 250 253 254 248 252 254 246 251 252 247 251 253 253 256 258 262 261 265 265 265 272 265 265 273 262 262 271 260 259 269 259 256 265 256 253 261 253 251 258 253 251 258 256 254 260 259 256 262 260 258 264 258 258 263 255 257 262 250 255 261 247 253 259 244 251 258 243 250 258 242 249 258 240 247 256 239 245 255 238 242 254 238 240 254 237 238 254 235 235 254 236 236 255 239 240 255 244 247 257 244 247 256 244 247 254 242 247 253 241 246 252 241 245 249 240 244 247 239 243 246 239 242 244 239 242 242 245 233 220 244 232 217 243 231 217 243 230 217 242 229 216 241 228 215 240 227 213 240 227 215 241 228 220 242 230 225 242 230 227 243 232 229 245 234 232 248 239 238 254 245 245 260 251 251 267 259 258 271 265 264 272 270 270 272 272 272 272 273 272 272 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 278 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 285 285 285 286 286 287 287 287 287 288 288 288 289 289 289 290 289 290 290 290 291 291 291 292 292 292 293 293 292 293 293 293 294 294 294 294 294 294 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 299 299 300 299 298 299 298 298 299 298 297 299 297 297 298 296 296 297 296 296 297 296 296 297 296 296 297 297 296 297 297 296 297 297 296 297 296 296 297 294 295 295 293 294 294 287 289 289 278 278 280 267 267 268 257 258 258 252 255 255 249 252 254 247 251 253 248 252 254 253 256 258 260 260 264 266 266 272 266 265 273 262 262 272 260 258 268 258 254 263 255 252 259 253 250 258 253 251 257 256 253 259 258 256 262 259 257 263 258 257 262 255 257 262 251 255 261 247 253 259 244 251 258 243 250 258 241 248 257 240 246 255 239 245 254 238 243 253 239 241 254 237 238 254 235 235 254 235 235 254 238 239 255 243 246 256 244 247 255 243 247 254 242 246 253 241 246 252 241 245 249 240 244 247 239 243 246 239 242 244 239 242 242 245 233 220 244 232 217 243 231 217 243 230 217 242 229 217 241 228 215 240 227 213 240 227 215 241 228 220 241 229 224 241 230 226 242 231 228 244 234 231 248 238 237 253 244 244 260 251 251 267 259 259 271 265 264 272 270 270 272 272 272 272 273 272 272 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 278 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 286 286 287 287 287 287 288 288 288 289 289 289 289 289 290 290 290 291 291 291 292 292 292 293 293 292 293 293 293 293 294 294 294 294 294 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 300 299 298 299 298 298 299 298 298 299 297 297 298 296 296 297 296 296 297 296 296 297 296 296 297 297 296 297 297 296 297 296 296 297 295 295 296 293 294 294 291 293 292 287 288 288 278 280 281 269 269 270 260 261 261 254 256 256 251 253 255 249 252 255 250 253 255 254 256 258 259 259 263 264 265 270 265 265 273 261 262 271 259 256 267 256 253 261 253 250 258 252 250 257 254 251 257 256 253 259 258 255 261 258 256 262 258 257 262 255 257 262 251 255 261 247 253 259 244 251 258 242 250 257 241 248 256 239 246 255 238 245 253 238 243 253 238 241 253 237 239 253 235 236 254 234 235 254 237 238 254 242 245 255 243 247 255 242 246 254 241 246 253 241 246 252 241 245 249 240 244 247 239 243 246 239 242 244 239 242 242 245 233 220 244 232 217 243 231 217 243 230 217 242 229 217 241 228 216 241 227 214 240 227 215 240 228 219 241 229 223 241 229 225 242 231 227 244 233 230 247 237 236 253 244 243 259 251 250 267 260 259 270 265 264 272 269 270 272 272 272 272 272 272 272 273 272 272 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 278 279 279 280 280 280 281 281 281 282 282 282 282 283 283 284 284 284 285 286 286 286 287 287 287 287 288 288 288 288 288 289 289 289 290 290 290 291 291 291 292 292 292 292 292 292 293 293 293 293 293 294 294 294 294 294 294 295 295 295 296 295 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 299 299 300 299 299 300 298 298 299 298 298 299 297 297 298 296 297 298 296 296 297 296 297 297 297 297 297 297 297 297 297 297 297 295 296 296 293 294 295 291 292 293 290 291 291 287 288 288 279 281 282 271 271 273 262 263 263 256 258 258 253 255 256 250 253 256 252 254 257 255 257 259 258 259 262 262 264 269 263 264 272 261 261 270 258 256 265 255 252 259 253 249 257 253 249 257 254 250 258 256 253 260 257 255 261 258 257 262 257 257 262 254 256 262 250 255 260 247 253 259 244 251 258 242 249 257 240 248 256 239 246 254 238 245 253 238 243 252 238 241 253 237 239 253 235 236 253 234 234 253 236 237 254 241 245 255 243 246 254 241 245 253 241 246 253 242 246 252 241 245 249 240 244 247 239 243 245 239 242 244 239 242 242 245 233 220 244 232 218 244 231 217 243 230 217 242 230 217 241 229 216 241 227 214 240 227 215 240 228 218 240 229 222 241 229 224 242 230 226 243 233 229 247 237 235 252 243 242 259 250 250 267 260 258 270 264 263 272 269 269 272 271 272 272 272 272 272 273 273 272 273 273 273 273 273 274 274 274 275 275 275 276 276 277 277 277 278 279 279 280 280 280 281 281 281 281 282 282 282 283 283 284 284 284 285 286 286 286 286 287 287 287 287 288 288 288 288 289 289 289 290 290 290 291 291 291 292 292 292 292 292 292 293 293 293 293 293 293 294 294 294 294 294 295 295 295 296 295 296 296 296 296 297 297 297 297 297 297 297 297 297 298 298 298 298 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 299 299 300 299 299 300 298 298 299 298 298 299 297 298 298 297 297 298 296 296 297 296 297 297 296 297 298 297 297 298 295 296 297 294 296 297 293 295 296 291 293 294 289 291 291 286 288 288 280 281 282 272 273 274 263 264 265 258 259 260 253 256 257 251 254 257 253 255 257 255 257 259 256 258 261 260 261 268 262 263 271 259 259 269 256 254 263 254 251 259 252 249 257 252 248 257 253 250 258 255 252 260 256 254 261 257 256 262 257 257 262 254 256 262 250 255 260 246 253 259 243 251 257 241 249 256 239 248 255 238 246 254 238 244 252 237 243 252 238 241 253 237 239 253 234 236 253 233 234 253 235 237 253 240 244 254 241 245 254 240 244 253 241 245 252 242 246 251 241 245 249 240 244 247 239 243 245 239 242 244 239 242 242 245 233 220 244 232 218 244 231 217 243 231 217 242 230 217 242 229 216 241 228 214 241 228 215 240 228 218 240 229 221 240 229 224 241 230 225 243 232 228 247 236 234 252 243 242 259 250 249 266 258 257 270 263 263 271 268 268 272 271 271 272 272 272 272 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 279 279 279 280 280 281 281 281 281 282 282 282 283 283 284 284 284 285 286 286 286 286 286 287 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 291 291 292 292 292 292 292 293 293 293 293 293 294 294 294 294 295 295 295 296 295 296 296 296 296 297 296 296 297 297 297 297 297 297 298 298 298 299 298 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 298 299 299 298 299 299 298 298 299 297 297 298 297 297 297 296 297 298 294 296 297 294 297 298 294 297 298 294 297 298 293 296 296 291 293 294 288 290 291 285 287 288 280 281 282 271 273 274 261 263 266 256 259 261 254 257 259 252 255 257 253 255 257 253 255 258 255 257 261 259 259 266 261 261 269 258 257 268 255 253 261 253 250 258 251 248 257 251 248 257 253 249 258 255 252 259 256 254 261 256 255 261 256 256 262 254 256 262 250 255 260 245 253 259 242 251 257 240 249 256 238 247 255 238 246 253 237 244 252 237 242 252 237 240 253 237 239 253 234 236 253 233 234 253 234 237 253 238 243 253 240 244 253 239 243 252 241 245 252 242 246 251 241 245 249 240 244 247 239 243 245 239 242 244 239 242 242 245 233 220 244 232 218 244 231 218 243 231 218 242 230 217 242 229 217 241 228 215 241 228 215 240 228 217 240 228 221 240 229 223 241 230 225 243 232 228 247 236 233 252 243 241 258 250 249 265 256 255 269 262 262 271 267 268 272 271 271 272 272 272 272 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 284 284 284 285 285 285 286 286 286 287 287 287 287 288 288 288 289 289 289 290 290 290 291 290 291 291 291 291 292 292 292 292 292 292 293 293 293 293 293 294 294 294 295 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 299 298 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 298 299 299 298 299 299 299 299 299 300 299 300 300 298 299 300 298 298 300 297 298 299 296 297 299 294 297 299 293 297 300 292 296 298 291 295 297 290 293 295 289 291 292 286 288 289 283 285 286 276 279 280 269 270 273 259 262 266 255 259 262 253 257 259 252 255 258 253 255 257 252 255 258 255 257 260 259 259 266 260 261 269 257 256 267 254 252 261 252 250 258 250 248 256 250 248 257 252 249 257 253 251 259 255 253 260 256 255 261 256 256 262 253 256 262 249 255 260 245 253 259 242 251 257 239 249 255 238 247 254 237 246 253 237 244 252 237 241 252 237 239 252 236 239 253 234 236 253 233 235 252 234 236 252 238 242 253 239 243 252 240 244 252 242 245 252 243 247 251 241 245 249 240 244 247 239 243 245 239 242 244 239 242 242 245 233 220 244 232 218 244 231 218 243 231 218 242 230 218 242 229 217 241 228 215 241 228 215 240 228 217 240 228 220 240 229 222 241 230 224 243 232 227 246 236 233 252 243 241 258 250 248 265 255 255 269 261 261 271 267 267 272 271 271 272 272 272 272 273 273 273 273 273 273 273 274 273 274 274 275 275 275 276 276 277 277 277 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 288 289 289 289 290 290 290 290 291 291 291 291 291 292 292 292 292 292 293 293 293 293 294 294 294 294 295 295 295 295 295 295 296 295 295 296 296 296 297 296 297 297 297 297 298 298 298 299 298 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 298 298 298 299 299 299 299 299 300 299 300 300 299 300 300 298 299 301 297 299 300 296 298 300 295 297 299 293 297 300 292 297 300 290 295 298 289 293 296 288 291 293 286 290 291 284 286 288 279 281 283 273 275 277 265 266 269 258 261 264 255 258 262 254 258 260 252 256 259 253 255 258 253 256 259 257 258 262 260 261 266 261 262 269 257 256 267 254 252 262 252 251 258 251 249 257 250 248 256 251 249 257 252 250 258 254 252 260 255 255 261 255 256 262 253 256 262 248 254 260 244 253 259 241 250 257 238 249 255 237 247 254 237 245 253 237 243 252 237 241 252 236 239 252 236 238 252 234 237 253 232 235 252 233 236 252 238 242 252 238 243 252 240 244 252 244 247 252 243 247 251 241 245 249 240 244 247 239 243 245 239 242 244 239 242 242 245 233 220 244 232 218 244 231 218 243 231 218 243 230 218 242 230 218 241 229 216 241 228 215 240 228 217 240 228 219 240 229 222 241 230 224 243 232 227 246 236 233 252 243 240 258 249 248 264 255 254 268 261 261 271 268 267 272 271 271 272 272 272 272 273 273 273 273 273 273 273 274 273 274 274 275 275 275 276 276 277 277 277 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 291 291 291 292 292 292 292 292 293 293 293 294 294 294 294 295 295 295 295 295 295 296 295 295 296 296 296 297 296 297 298 297 298 298 297 298 299 298 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 298 298 298 297 297 298 299 299 299 299 299 299 299 299 300 298 299 299 298 299 300 298 299 299 297 298 300 295 298 300 293 297 300 292 297 300 291 296 299 289 294 297 287 292 295 286 290 292 284 288 289 280 283 285 276 278 280 272 274 275 266 267 269 259 262 265 256 260 263 253 259 261 253 258 260 255 257 259 256 257 260 259 260 264 261 263 267 261 263 269 257 258 268 254 253 263 253 252 259 252 250 257 251 250 257 252 250 257 252 250 258 253 252 260 255 255 261 255 256 262 252 255 261 248 254 260 244 252 258 240 250 256 238 249 255 237 247 254 236 245 253 237 243 253 236 241 252 235 239 252 235 238 252 234 237 253 232 235 252 233 236 251 237 241 252 238 242 252 241 244 252 245 248 253 243 247 251 241 245 249 240 244 247 240 243 245 239 242 244 239 242 242 245 233 220 244 232 218 244 232 218 243 231 218 243 231 218 242 230 218 242 229 216 241 228 215 240 228 217 240 228 219 241 229 221 242 231 223 243 233 227 247 237 232 252 243 240 258 249 247 264 255 254 268 261 260 271 268 268 272 271 271 272 272 272 272 273 273 273 273 273 273 273 274 273 274 274 274 275 276 276 276 277 277 277 278 279 278 279 280 280 280 281 281 281 282 282 282 283 283 284 284 284 285 285 285 285 286 286 286 287 287 287 287 288 288 288 288 289 289 289 290 290 290 291 291 291 291 291 291 292 292 292 293 293 293 293 293 294 294 294 294 295 294 294 295 294 295 295 295 295 296 296 296 297 296 297 298 297 298 299 298 299 299 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 297 297 298 298 298 298 298 298 298 299 300 299 298 299 298 298 298 299 298 298 299 298 298 299 298 298 299 297 298 299 295 298 299 293 297 299 292 296 299 290 295 298 288 293 296 286 291 294 284 289 292 283 287 289 279 282 284 276 278 281 273 275 278 270 272 274 263 267 270 259 264 266 256 261 264 257 259 262 258 259 261 260 260 263 262 262 266 263 264 269 261 263 270 258 260 268 256 255 264 254 253 260 253 252 258 252 252 258 253 253 259 254 253 260 255 254 261 255 255 261 253 256 262 251 255 261 247 254 260 243 252 258 240 250 256 238 249 255 236 247 254 236 245 253 236 243 253 236 241 253 235 238 252 235 238 252 233 237 252 232 235 252 233 236 251 236 240 251 238 242 252 243 246 253 245 248 253 243 247 251 241 245 249 240 244 247 240 243 245 240 242 244 239 242 242 245 233 220 244 232 218 244 232 218 244 231 218 243 231 218 242 230 218 242 229 217 241 228 216 241 228 217 240 229 218 241 229 221 242 231 223 243 233 227 247 237 232 252 243 240 258 250 247 264 256 254 268 261 260 271 269 268 272 272 272 272 272 272 272 273 273 273 273 273 273 273 274 273 274 274 274 275 276 276 276 277 277 277 278 279 278 279 280 280 280 281 281 281 282 282 283 284 283 284 284 284 285 285 285 285 286 286 286 287 287 287 287 287 288 288 288 289 289 289 290 290 290 291 290 291 291 291 291 292 292 292 293 293 293 294 293 294 294 294 294 294 294 294 295 294 295 295 295 295 296 296 296 297 296 297 298 297 298 299 298 299 299 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 298 297 297 298 298 297 298 298 298 298 299 299 298 299 299 298 298 298 298 298 298 299 298 298 299 298 299 299 298 299 299 297 299 299 296 299 300 293 297 299 291 294 298 289 294 298 286 292 296 284 290 294 283 288 292 282 286 289 279 283 286 277 280 284 275 278 281 272 274 278 268 270 274 264 267 271 261 263 267 260 261 264 261 261 264 262 262 266 263 264 268 263 264 270 261 263 270 259 260 268 257 256 264 255 254 261 254 254 260 253 253 259 255 255 260 254 254 261 255 255 261 254 255 261 253 256 261 250 255 261 247 253 259 243 252 257 239 250 256 237 248 254 236 247 253 235 244 253 235 242 253 235 241 253 234 238 252 234 237 252 233 237 252 232 236 252 233 236 251 236 239 251 239 242 252 244 247 253 245 248 253 243 246 251 241 245 249 240 244 247 240 243 245 240 242 244 239 242 242 245 233 220 244 232 218 244 232 218 244 231 218 243 231 219 242 230 219 242 230 217 241 229 216 241 228 217 241 229 218 241 230 220 242 231 223 243 233 226 247 237 232 252 243 240 258 250 247 265 256 254 268 261 260 271 269 269 272 272 272 272 272 272 272 273 273 273 273 273 273 273 274 273 274 274 275 275 276 276 276 277 277 277 278 278 278 279 280 280 280 281 281 281 282 282 283 284 283 284 284 284 285 285 285 286 286 286 286 286 287 287 287 287 288 288 288 289 289 289 290 290 290 291 290 291 291 291 291 292 292 292 293 293 293 294 293 294 294 294 294 294 294 294 295 294 295 296 295 296 296 296 296 297 297 297 298 297 298 299 298 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 298 299 299 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 299 298 299 300 298 299 300 297 300 299 295 299 298 292 296 297 290 293 297 288 292 297 285 291 296 284 289 294 283 287 292 282 286 289 279 284 287 277 281 285 274 277 282 272 272 278 270 268 275 267 267 272 264 265 270 264 263 267 264 263 267 264 264 268 264 265 270 263 265 271 261 263 270 259 261 268 257 258 265 255 256 262 254 254 261 254 254 261 255 255 261 254 255 261 254 255 261 253 256 261 252 255 261 250 254 260 247 253 258 242 251 257 239 250 255 237 248 254 235 246 253 235 244 253 235 242 253 234 240 253 234 239 252 233 237 252 233 237 252 232 236 251 233 237 251 236 239 251 239 243 252 244 247 253 244 247 253 242 246 251 241 245 249 240 244 247 240 243 245 240 242 244 239 242 242 245 233 220 244 232 218 244 232 218 244 231 219 243 231 219 243 231 219 242 230 217 241 229 216 241 229 217 241 229 218 241 230 220 242 231 222 243 233 227 247 238 233 252 243 240 258 250 247 265 257 255 268 262 261 271 270 269 272 272 272 272 272 272 272 273 273 273 273 273 273 273 274 273 274 275 275 275 276 276 276 277 277 277 278 278 278 279 280 280 280 281 281 281 282 282 283 284 283 284 284 284 285 285 285 286 286 286 286 286 287 287 287 287 288 288 288 289 289 289 290 290 290 291 290 291 291 291 292 292 292 292 293 293 293 293 293 294 294 293 294 294 294 295 295 294 295 296 295 296 297 296 297 298 297 298 299 298 298 299 298 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 299 300 300 298 298 299 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 299 299 298 299 299 297 299 300 297 300 300 295 298 298 292 295 297 290 293 296 288 291 296 286 290 295 284 288 293 283 287 291 281 285 289 279 283 286 277 280 284 274 275 281 272 271 277 271 269 274 270 268 273 267 267 271 266 265 270 266 265 269 265 265 270 264 265 271 263 264 271 261 263 270 259 261 267 257 258 265 255 256 263 254 255 262 253 255 261 254 255 262 254 255 261 253 255 261 252 255 261 251 255 260 249 254 259 246 253 258 242 251 257 238 249 255 236 248 253 235 246 253 234 244 253 233 242 253 233 240 253 233 238 252 233 238 252 232 237 252 232 236 251 233 237 250 236 240 251 242 245 253 245 247 253 244 247 252 242 246 251 241 245 249 240 244 247 240 243 245 240 242 244 239 242 242 245 234 221 244 233 219 244 232 219 244 232 219 243 231 219 243 231 219 242 230 218 242 229 216 241 229 217 241 229 217 241 230 219 242 232 222 244 234 227 247 238 233 253 244 241 259 250 248 265 257 255 269 264 262 271 270 269 272 272 272 272 272 272 273 273 273 273 273 273 273 273 274 273 274 275 275 275 276 276 276 277 277 277 278 278 278 279 280 280 280 281 281 281 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 286 287 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 291 292 292 292 293 293 293 293 294 293 294 294 294 294 295 294 295 296 295 296 297 296 297 298 296 297 298 297 298 299 298 299 300 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 299 299 300 299 299 299 300 299 300 300 299 300 300 299 300 299 299 299 299 299 299 299 298 299 299 298 299 299 299 299 298 299 299 298 299 299 298 299 299 298 299 300 297 299 301 293 297 299 291 294 297 290 292 297 289 290 294 288 289 293 287 288 292 284 287 291 281 284 288 279 282 286 277 279 283 274 275 281 273 273 278 273 272 276 272 271 275 269 269 273 267 267 271 267 267 271 266 267 271 264 265 271 262 264 270 261 263 269 259 261 267 257 259 265 255 256 264 253 255 262 254 255 261 254 255 261 253 255 261 252 254 261 251 254 260 249 254 259 248 253 258 245 252 258 242 251 256 238 249 254 236 247 253 235 245 253 233 243 253 233 241 253 233 240 253 233 239 252 232 238 252 232 237 252 232 237 251 234 238 250 238 241 251 243 246 253 245 247 253 244 247 252 242 245 251 241 244 249 240 244 247 240 243 245 240 242 244 239 242 242 245 234 221 244 233 219 244 232 219 244 232 219 244 232 219 243 231 219 242 230 218 242 229 217 241 229 217 241 229 217 241 230 219 242 232 222 244 234 227 248 239 234 253 244 241 259 251 248 266 259 256 269 265 263 271 270 270 272 272 272 272 272 272 273 273 273 273 273 273 273 273 274 273 274 275 275 275 276 276 276 277 277 277 278 278 278 279 280 280 280 281 281 281 282 282 283 284 283 284 284 284 285 285 285 286 286 286 287 286 287 288 287 288 289 288 288 289 289 289 290 290 290 291 291 291 292 292 292 293 292 293 293 293 293 294 294 294 295 295 295 296 295 296 297 296 297 298 296 298 298 297 298 299 298 299 300 298 299 300 299 299 300 299 300 300 300 300 301 300 300 300 300 300 300 299 299 299 299 299 300 300 299 300 300 299 300 300 299 300 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 299 298 298 299 296 298 299 293 296 298 292 294 297 292 293 296 291 292 295 290 291 294 288 289 293 285 288 293 282 285 289 279 282 286 277 279 283 275 276 281 275 275 279 274 274 277 272 272 276 270 270 275 268 268 273 268 268 272 266 267 271 263 265 270 261 264 269 260 263 269 259 262 267 256 259 266 254 256 264 253 254 262 253 255 261 253 255 261 253 254 261 251 254 260 249 253 259 248 252 258 247 252 257 245 252 257 242 250 256 238 248 254 236 246 253 234 244 253 233 243 253 232 241 253 232 240 253 232 239 252 232 238 252 231 238 251 232 237 250 234 238 250 239 242 251 243 247 253 245 247 253 243 246 252 242 245 250 241 244 248 240 244 247 240 243 245 240 242 244 239 242 242 245 234 221 245 233 219 244 232 219 244 232 219 244 232 220 243 231 219 242 230 218 242 230 217 242 229 217 242 229 216 241 230 218 242 232 222 244 235 227 248 239 234 254 245 242 260 251 248 266 260 257 269 266 263 272 271 270 272 272 272 272 273 272 273 273 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 280 280 280 281 281 281 282 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 287 288 289 288 289 290 289 290 291 290 291 292 291 292 292 292 292 293 293 293 294 294 294 294 294 295 296 295 296 297 296 297 298 297 298 299 297 299 299 298 299 300 298 299 300 299 299 300 299 299 300 300 300 301 300 300 301 300 300 300 300 300 300 299 299 299 300 299 300 300 300 300 300 299 300 299 299 299 299 298 299 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 299 298 298 299 297 297 299 296 296 298 295 295 297 294 295 297 293 294 296 291 292 296 289 290 294 286 288 294 282 286 291 279 283 287 277 279 284 275 277 281 275 275 279 274 274 277 272 271 276 270 270 275 270 270 274 269 269 273 266 268 271 263 265 270 261 264 269 259 263 268 258 261 266 256 259 265 254 256 265 253 255 263 252 254 261 252 255 261 251 254 260 249 253 259 247 252 258 246 251 257 245 251 256 245 251 256 242 250 256 238 248 254 235 245 252 234 244 253 232 242 253 232 241 253 231 240 253 231 239 252 231 238 252 231 238 251 232 238 250 235 239 250 239 242 251 243 247 253 244 246 253 243 245 251 242 245 250 241 244 248 240 243 247 240 243 245 240 242 244 239 242 242 245 234 221 245 233 219 244 232 219 244 232 220 244 232 220 243 232 220 242 231 218 242 230 217 242 229 216 242 230 216 242 230 218 242 232 222 244 235 228 249 240 235 254 246 242 260 252 249 266 259 256 270 266 263 272 271 270 272 272 272 272 273 272 273 273 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 276 277 277 278 278 278 279 280 280 280 281 281 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 292 293 293 293 293 293 294 294 295 295 295 296 296 297 297 298 298 297 299 299 298 299 300 298 300 300 299 300 300 299 300 300 299 300 300 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 298 298 299 300 299 300 300 300 300 299 299 299 298 298 298 298 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 299 298 298 299 297 297 298 296 297 298 296 296 297 294 295 297 293 294 296 290 291 295 286 289 294 283 286 292 280 283 288 277 280 285 275 278 282 274 276 279 273 274 278 272 272 276 272 272 276 271 272 276 270 271 274 267 269 272 264 266 271 261 264 269 259 263 267 257 261 266 256 260 265 254 257 265 253 255 263 252 254 261 251 254 260 250 253 260 247 252 259 245 251 257 244 250 256 244 250 256 244 250 256 242 250 255 238 247 253 235 244 252 233 243 252 232 242 253 231 240 253 231 239 252 231 239 251 230 239 251 231 239 251 233 239 250 236 240 250 239 243 251 243 247 253 243 246 252 243 245 251 242 244 250 241 244 248 240 243 246 240 243 245 240 242 244 239 242 242 245 234 221 245 233 219 245 233 220 245 232 220 244 232 220 243 232 220 243 231 218 242 230 217 242 230 216 242 230 216 242 231 217 242 232 221 244 236 228 249 241 236 255 247 243 261 252 249 267 260 255 270 266 264 272 271 270 272 272 272 273 273 272 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 276 276 277 277 278 278 278 279 280 280 280 281 281 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 291 291 291 292 292 293 293 293 294 294 294 295 295 295 297 297 297 298 298 299 299 300 300 300 301 301 300 301 301 300 301 301 299 300 301 300 300 301 300 300 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 298 298 299 300 300 300 300 300 300 299 299 299 298 298 298 297 297 297 296 296 297 297 297 297 299 299 299 299 299 300 300 299 299 300 299 299 299 299 300 299 299 299 299 299 299 298 298 299 297 298 299 296 297 298 295 296 298 294 295 297 291 293 295 287 289 294 283 286 292 280 283 289 277 281 286 276 279 283 275 277 281 274 275 279 274 274 278 273 274 278 272 274 277 271 272 275 268 270 273 265 268 272 262 265 270 259 263 267 257 261 266 255 259 265 254 257 264 253 255 263 251 254 261 251 254 260 249 253 259 246 252 258 244 250 257 243 249 255 243 249 255 243 249 255 242 249 254 238 246 253 234 244 252 232 242 252 231 241 252 231 240 252 231 239 252 230 239 251 230 239 251 231 239 250 233 240 250 237 241 250 241 245 252 243 247 253 243 245 252 243 244 251 242 244 250 241 244 248 240 243 246 240 243 245 240 242 244 239 242 242 245 234 221 245 233 219 245 233 220 245 233 220 244 232 220 244 232 220 243 231 219 242 230 217 242 230 216 242 230 216 242 231 217 242 233 221 245 236 228 249 241 236 255 247 243 261 253 249 267 260 256 270 267 264 272 271 270 272 272 272 273 273 272 273 273 273 273 273 273 274 274 274 274 275 275 275 275 276 276 276 277 277 277 278 278 278 279 280 280 281 281 281 282 283 282 283 284 283 284 285 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 290 291 291 291 292 293 293 293 294 294 294 296 295 295 298 297 297 300 299 299 302 302 301 304 303 302 302 302 301 302 302 301 301 301 301 300 301 301 300 300 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 299 299 300 300 300 300 300 300 300 299 299 299 297 298 298 296 296 297 296 296 297 296 296 297 297 297 298 299 299 299 299 299 299 300 299 299 299 299 300 299 299 299 299 299 299 298 299 299 298 298 299 297 298 299 296 297 298 295 296 297 292 294 296 288 290 294 283 287 292 279 284 290 277 282 287 276 280 284 275 278 282 275 277 280 274 275 279 274 275 279 273 274 278 271 273 277 270 271 275 267 269 273 263 266 271 259 263 267 257 261 265 255 259 264 253 257 264 252 255 262 251 254 261 249 253 260 248 253 259 245 251 258 244 250 257 242 248 255 241 248 254 242 248 254 241 248 254 238 246 253 234 244 252 232 242 252 231 241 252 231 240 251 230 239 251 230 239 250 230 239 250 230 239 250 235 242 250 239 244 251 243 246 252 243 247 252 243 244 252 242 244 251 242 244 250 241 244 248 240 243 246 240 243 245 240 242 244 239 242 242 245 234 221 245 233 220 245 233 220 245 233 221 245 233 221 244 232 220 243 231 219 243 231 217 242 230 216 242 230 216 241 231 217 242 233 221 245 237 229 250 242 237 255 248 244 261 253 249 267 260 256 270 267 265 272 272 270 272 272 272 273 273 272 273 273 273 273 273 273 274 274 274 274 275 275 275 275 276 276 276 277 277 277 278 279 279 279 280 280 281 282 281 282 283 283 283 284 284 284 285 284 285 285 285 286 286 286 287 287 287 288 288 288 289 290 290 291 291 292 292 294 294 293 296 295 294 299 297 296 302 300 298 305 302 300 306 304 300 307 305 302 306 303 300 303 302 301 302 301 302 301 301 302 300 300 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 297 298 298 296 297 297 296 296 297 295 296 297 296 296 298 297 297 299 299 299 299 299 299 299 299 299 300 299 299 299 299 299 299 299 299 299 298 299 299 297 298 299 296 297 298 295 296 298 293 295 297 290 292 295 285 289 294 280 285 291 277 282 288 276 280 285 275 278 283 275 277 281 274 275 279 273 274 279 272 274 278 271 274 278 270 273 276 268 271 275 264 268 272 260 264 268 257 261 265 255 259 264 254 257 264 252 256 262 250 254 261 248 253 260 246 252 258 245 251 258 243 250 257 242 248 255 241 247 254 241 248 253 240 247 253 238 246 253 234 243 252 232 241 252 231 240 251 230 239 251 230 239 250 229 240 250 230 240 250 230 240 249 236 242 250 241 246 251 243 247 252 243 246 252 243 244 252 242 244 251 242 244 250 241 244 248 240 243 246 240 243 245 240 242 244 239 242 242 245 234 221 245 233 220 245 233 221 245 233 221 245 233 221 244 232 221 243 232 219 243 231 217 242 230 216 242 230 215 241 231 216 242 233 221 245 237 229 250 243 237 255 248 244 261 254 250 268 261 257 271 268 265 272 272 271 272 273 272 273 273 273 273 273 273 273 273 273 274 274 274 275 275 275 275 276 276 276 277 277 277 278 278 279 279 279 280 280 281 282 282 282 283 283 283 284 284 284 285 284 285 285 285 285 286 286 287 287 287 288 288 288 289 290 290 290 293 293 292 296 295 293 299 297 295 301 299 296 303 301 297 305 302 297 305 303 298 306 304 299 306 303 300 303 302 301 301 301 302 301 301 302 301 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 299 300 299 299 299 297 297 298 296 297 297 296 296 297 296 296 297 296 296 297 298 298 299 299 299 299 299 299 300 299 299 300 299 299 299 299 299 299 298 299 299 297 298 299 296 298 299 296 297 298 294 296 297 291 294 296 287 290 294 281 286 291 277 283 288 275 280 286 275 278 283 274 277 281 273 275 279 273 275 279 272 274 279 271 274 278 271 273 277 269 272 276 265 269 273 261 265 269 257 262 266 255 259 265 253 257 264 250 255 262 249 254 261 247 253 260 246 252 259 244 251 258 242 250 256 241 248 254 240 246 253 240 247 253 240 247 253 237 246 253 234 243 253 232 241 252 231 240 251 230 239 250 230 239 249 229 240 249 229 240 249 230 240 249 236 243 250 241 246 252 243 246 252 242 245 252 242 244 251 242 244 250 242 244 249 241 243 248 241 243 246 240 243 245 240 242 244 239 242 242 245 234 221 245 233 220 245 233 221 245 233 222 245 233 222 245 233 221 244 232 219 243 231 218 242 231 216 242 231 215 241 231 216 242 234 221 245 238 229 250 243 237 255 248 244 261 254 250 267 261 257 271 269 266 272 272 271 272 273 272 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 280 281 281 281 282 282 282 283 283 283 284 284 284 285 284 285 285 285 285 286 286 287 287 287 288 288 289 289 290 290 290 293 293 292 296 295 293 299 297 295 300 298 295 302 300 296 303 301 296 304 301 297 306 303 300 305 303 301 302 302 302 300 300 301 301 301 302 301 300 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 301 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 298 298 299 299 298 299 298 298 299 297 297 298 299 299 299 299 299 300 299 299 300 299 299 300 299 299 299 299 299 300 298 299 299 298 299 299 297 298 299 296 297 298 295 296 298 292 294 297 288 291 295 284 288 292 279 284 289 275 280 286 274 278 284 273 277 281 273 276 280 273 275 279 272 275 279 271 274 278 271 273 277 270 272 276 266 269 274 261 266 271 257 263 267 255 260 265 252 257 264 250 255 262 247 254 261 246 253 260 245 252 259 243 251 258 242 249 256 240 247 254 239 246 252 240 246 253 239 246 253 237 245 253 234 242 253 232 240 251 231 239 250 231 239 249 230 240 249 229 240 249 229 240 249 231 240 249 237 244 250 241 247 251 242 245 252 242 245 251 242 244 251 242 244 250 242 244 249 241 243 248 241 243 246 240 243 245 240 242 244 239 242 242 245 234 221 245 234 220 245 234 221 245 234 222 245 234 222 245 233 221 244 232 220 243 232 218 242 231 217 242 231 215 241 232 216 242 234 221 245 238 229 249 243 237 255 248 244 261 254 250 268 262 258 271 269 266 272 272 271 273 273 272 273 273 273 273 273 273 273 274 274 274 274 274 275 275 275 276 276 276 277 277 278 278 278 279 279 279 280 281 281 281 282 282 282 283 283 283 284 284 284 285 284 284 285 285 285 286 286 287 287 287 288 289 289 289 290 290 291 292 292 292 295 295 293 298 296 294 299 298 295 301 299 295 302 300 296 304 300 297 305 302 299 305 302 301 303 301 302 300 300 301 301 300 302 301 300 302 301 300 301 300 300 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 301 300 300 300 299 299 299 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 300 299 299 300 299 300 300 300 300 300 299 300 300 299 299 300 299 299 300 299 299 299 298 299 299 297 298 299 296 298 299 296 297 298 295 297 298 293 295 297 289 291 295 285 288 292 282 285 289 276 281 286 274 278 284 273 277 282 273 276 280 273 275 279 272 274 278 272 274 277 270 272 276 270 272 275 267 270 274 260 266 271 256 263 268 255 261 266 252 258 265 249 255 262 247 253 260 245 252 259 244 252 258 243 251 257 241 249 256 240 247 254 238 246 252 239 246 253 239 246 254 237 244 253 234 241 252 233 240 251 232 239 249 231 239 249 230 240 248 230 240 248 229 240 248 231 240 249 237 245 251 241 246 251 242 245 251 242 244 251 242 244 251 242 244 250 242 244 249 242 243 248 241 243 246 240 242 245 240 242 243 239 242 241 245 234 221 245 234 221 245 234 222 246 234 223 246 234 222 245 233 222 244 233 220 244 232 218 243 231 217 242 231 216 241 232 217 242 234 221 245 238 228 249 242 237 254 248 244 260 254 250 268 263 258 271 269 266 273 272 271 273 273 272 273 273 273 273 273 273 274 274 274 274 274 274 275 275 275 276 276 277 277 278 278 278 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 284 285 285 285 286 286 287 287 288 288 289 289 289 290 290 291 292 292 292 295 294 293 297 296 293 298 297 294 300 299 295 301 299 296 303 300 297 304 301 299 305 303 300 303 302 302 301 300 301 301 300 302 301 300 302 301 300 302 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 301 300 300 300 298 298 299 296 297 297 296 296 297 298 298 298 299 299 299 299 299 300 300 300 300 300 300 300 299 300 300 299 300 301 299 300 300 299 299 300 299 299 300 298 299 299 297 298 299 296 298 298 296 297 298 296 297 298 295 297 297 293 295 297 289 292 295 286 289 293 283 286 290 280 283 287 275 279 284 274 278 282 273 276 280 274 276 279 274 275 278 273 274 277 270 272 275 270 272 275 267 270 274 259 266 271 256 263 269 254 261 267 252 258 265 250 256 263 247 254 260 245 252 259 244 252 258 242 251 257 241 249 256 239 248 254 238 246 253 238 246 253 238 245 254 236 243 253 234 241 252 233 239 250 232 239 249 231 240 249 231 241 248 230 241 248 230 240 248 231 241 248 237 245 251 240 246 251 241 245 251 241 244 251 242 244 250 242 244 250 242 244 249 241 243 248 241 243 246 240 243 245 240 242 243 239 242 241 245 234 222 245 234 221 245 234 222 246 234 223 246 234 223 245 234 222 245 233 220 244 232 219 243 231 217 242 231 216 241 232 217 242 234 221 244 237 228 249 242 236 254 248 243 260 254 250 268 262 257 271 269 266 273 272 271 273 273 272 273 273 273 273 273 273 274 274 274 275 274 275 275 276 276 276 277 277 278 278 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 284 286 285 285 286 287 287 287 288 288 289 289 289 290 290 291 291 292 292 295 294 292 297 296 293 298 297 294 299 298 295 300 299 296 303 300 298 304 302 299 305 303 300 304 303 302 302 300 301 300 299 301 300 299 301 300 300 302 300 300 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 298 298 298 298 298 298 298 298 299 299 299 299 300 300 300 300 300 300 299 300 300 299 299 301 299 299 300 298 299 300 299 299 299 298 299 299 298 298 298 297 297 298 296 297 298 296 297 298 295 296 297 294 295 297 291 294 296 289 292 294 286 289 292 282 285 288 280 282 285 278 280 282 277 278 280 276 277 279 276 276 278 274 275 277 272 273 276 270 272 275 264 269 273 258 266 271 255 263 269 253 262 268 251 258 266 250 256 262 248 254 260 245 253 259 244 252 258 242 251 257 241 249 256 239 247 254 237 246 253 237 246 253 237 244 253 236 242 252 234 240 251 233 239 250 232 240 249 232 241 248 231 242 248 231 241 247 230 240 247 231 241 248 237 245 250 240 246 251 241 244 251 241 244 250 242 244 250 242 244 249 242 244 248 241 243 247 241 243 246 240 243 244 240 242 243 239 242 241 245 234 222 245 234 221 246 234 223 246 235 224 246 235 224 246 234 222 245 233 221 244 232 219 243 232 217 242 231 216 241 232 217 242 234 221 244 237 228 248 242 235 253 248 243 259 254 249 267 262 257 271 269 266 273 272 271 273 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 284 286 286 285 286 287 287 287 288 288 289 289 289 290 290 290 291 291 291 294 294 292 296 296 293 297 297 294 298 298 295 300 299 296 302 300 297 304 302 299 305 303 301 304 302 301 301 301 301 299 299 301 298 299 301 299 299 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 300 299 300 300 299 300 299 299 300 299 299 300 298 298 300 298 299 299 298 299 299 298 298 299 298 298 299 298 298 298 298 298 298 297 297 298 296 297 297 295 296 297 294 295 296 293 295 296 291 293 295 288 291 294 285 288 291 282 285 287 280 282 284 279 280 282 278 278 280 277 277 279 275 275 277 272 274 276 269 272 274 264 269 273 257 265 270 254 263 268 253 261 268 251 258 266 249 256 262 248 254 260 246 253 259 244 252 258 243 251 257 241 249 256 238 247 254 237 245 253 236 245 253 236 244 253 235 241 252 233 240 250 233 239 249 233 241 249 232 242 248 232 242 248 231 242 247 230 240 247 231 241 248 237 245 250 240 246 250 240 244 250 241 244 250 242 244 250 242 244 249 242 244 248 241 243 247 241 243 246 240 243 244 240 242 243 239 242 241 245 234 222 245 234 222 246 235 223 246 235 224 246 235 224 246 235 223 245 234 221 244 233 219 243 232 218 242 232 217 241 233 218 242 235 222 244 237 227 248 242 235 253 247 242 259 254 249 267 262 257 271 269 265 273 272 271 273 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 292 293 292 295 295 293 296 297 294 298 298 294 300 299 296 302 300 297 303 302 299 304 303 301 303 302 301 301 301 301 299 300 301 298 299 303 298 299 300 299 300 301 300 300 301 300 300 301 300 300 301 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 299 299 300 299 300 300 299 300 299 299 300 298 298 299 297 297 299 297 298 298 298 299 299 298 299 299 298 298 298 298 298 298 298 298 298 297 297 298 296 297 297 295 296 297 294 295 296 293 295 296 291 294 295 289 292 294 286 290 292 284 287 289 282 284 286 280 281 284 279 280 282 277 278 280 275 275 278 272 273 276 268 271 274 262 267 271 255 264 268 254 262 267 252 260 267 251 257 265 249 256 262 248 255 261 246 253 259 244 252 258 243 250 257 241 248 256 238 246 254 236 244 252 236 244 252 236 243 252 235 241 252 233 240 250 232 240 249 233 242 249 233 243 248 232 243 247 232 242 247 231 241 247 231 241 247 237 245 250 240 246 250 240 244 250 241 244 250 241 244 249 242 244 249 242 244 248 241 243 247 241 243 246 241 243 244 240 242 243 239 242 241 245 234 222 245 234 222 246 235 224 246 235 225 247 235 225 246 235 223 246 234 222 244 233 220 243 232 218 242 232 217 242 233 219 242 235 222 243 237 227 247 242 234 252 247 241 258 253 248 267 261 257 271 269 265 273 272 271 273 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 277 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 292 292 291 295 295 292 297 297 293 298 297 294 299 298 295 301 300 297 303 302 299 304 303 300 303 301 301 301 301 301 299 300 302 298 300 302 298 299 300 298 299 300 300 300 301 301 300 301 301 300 301 300 300 300 300 300 301 300 300 300 300 300 300 300 299 300 300 300 300 300 299 300 300 299 300 300 300 300 299 299 300 299 299 300 299 299 299 298 298 299 298 298 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 298 298 296 297 297 295 296 297 294 295 296 293 294 295 292 294 295 290 292 294 288 291 293 286 288 291 284 286 288 282 283 286 280 281 283 277 278 280 273 275 277 270 272 275 264 269 273 259 265 270 255 262 266 253 261 265 252 259 266 250 257 263 248 256 262 247 254 260 246 253 259 244 251 257 243 250 256 241 247 255 239 245 253 236 243 252 235 243 252 236 242 252 234 240 252 232 240 250 232 241 249 233 243 249 233 243 248 233 243 247 232 242 247 231 241 247 232 241 247 237 245 249 239 246 250 240 244 250 240 244 249 241 244 249 242 244 248 242 244 248 241 243 247 241 243 245 241 243 244 240 242 243 239 242 241 245 234 222 245 234 222 246 235 224 247 236 225 247 236 225 247 236 224 246 235 222 245 233 220 243 232 219 242 232 218 242 234 219 242 235 222 243 237 226 247 241 233 252 247 241 258 253 247 266 261 257 270 268 264 272 272 270 273 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 277 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 290 291 292 291 294 295 292 297 297 293 298 297 293 299 298 294 300 300 296 302 302 298 303 303 299 302 301 301 301 301 301 299 300 302 298 300 302 298 299 301 299 299 301 300 300 301 301 300 301 301 300 301 301 300 301 300 300 301 300 300 300 300 300 300 300 299 300 300 300 300 300 300 300 299 299 299 300 300 300 300 300 300 299 299 300 299 299 300 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 298 298 297 297 297 296 296 297 294 295 296 293 294 295 292 293 294 291 293 294 289 292 293 287 290 292 285 287 289 283 285 287 281 282 284 278 279 281 272 275 277 268 272 275 265 270 273 261 266 271 256 262 266 253 260 265 252 259 264 250 257 263 248 256 262 247 254 260 245 252 259 244 251 257 243 249 256 242 247 255 239 245 253 237 243 251 236 242 251 235 241 252 234 240 251 232 240 250 233 243 250 233 244 248 233 244 247 233 243 247 232 241 246 231 240 246 232 241 247 237 245 249 239 246 249 240 244 249 240 244 249 241 244 248 242 244 248 242 244 248 242 243 246 241 243 245 241 243 244 240 242 243 239 242 241 245 234 222 245 234 222 246 235 225 247 236 226 247 236 226 247 236 225 246 235 223 245 234 221 244 232 219 243 232 219 242 234 220 242 235 222 243 237 226 246 241 232 251 247 240 257 253 247 266 262 256 270 268 263 272 272 270 273 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 277 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 289 289 289 290 289 290 291 290 291 292 291 294 295 292 297 297 293 298 298 293 299 298 294 300 300 295 302 302 297 303 302 299 303 302 300 301 302 301 300 301 301 299 301 302 299 299 302 299 299 301 300 300 301 301 300 301 301 300 301 301 300 301 301 300 301 300 300 300 300 300 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 300 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 298 298 297 297 297 296 296 297 295 295 296 293 294 295 292 293 294 291 292 294 290 292 293 288 290 292 286 288 290 283 285 287 281 282 284 279 280 282 276 278 280 272 274 277 270 273 275 267 270 273 261 265 269 255 261 265 252 259 263 250 258 263 249 256 262 247 254 260 245 252 259 244 250 257 243 249 256 242 246 254 240 244 252 238 242 251 236 242 251 235 241 251 233 240 251 233 241 250 233 244 249 233 245 248 234 244 247 233 243 246 232 241 246 232 240 246 233 241 247 237 246 249 239 245 249 240 244 249 240 244 249 241 244 248 242 244 248 242 244 247 242 244 246 241 243 245 241 243 244 240 242 243 239 242 241 245 234 222 245 235 223 246 236 225 247 236 227 248 237 227 247 236 225 247 235 223 245 234 221 244 233 219 243 233 219 243 234 221 242 236 223 243 237 226 246 241 232 251 246 240 257 252 246 264 260 254 269 267 262 272 271 269 273 273 272 273 273 272 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 277 279 279 278 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 289 289 289 290 289 290 291 290 291 292 291 294 296 292 297 298 293 298 298 293 299 299 293 300 300 294 302 301 296 303 301 298 302 302 300 302 303 301 300 303 301 301 302 303 299 300 302 299 299 301 299 299 300 300 300 300 300 300 301 301 300 301 301 300 301 301 300 300 301 300 300 300 299 299 300 299 300 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 298 298 298 297 297 297 296 296 297 295 295 296 294 294 295 292 293 294 291 292 293 290 291 293 289 290 292 286 288 290 281 283 286 278 280 283 278 280 282 277 279 281 276 277 279 273 275 277 270 272 274 265 268 271 259 264 268 252 259 264 250 257 262 248 255 261 247 254 261 246 252 259 244 250 257 244 248 256 243 247 254 241 244 252 238 242 251 236 241 251 235 241 251 234 241 251 233 243 250 234 245 250 234 245 248 234 244 247 234 242 246 233 241 246 232 240 246 235 243 247 238 245 249 239 245 248 240 244 248 240 244 248 241 244 248 242 244 247 242 244 247 242 244 246 241 243 245 241 243 244 240 242 243 239 242 241 245 234 222 246 235 223 246 236 225 247 237 227 248 237 228 248 237 226 247 236 224 246 234 222 244 233 220 243 233 220 243 234 221 243 236 223 243 237 226 246 241 232 250 246 240 256 252 246 264 260 254 269 267 261 272 271 268 273 273 272 273 273 272 274 274 273 274 274 274 275 275 275 276 276 276 277 277 276 278 278 277 279 279 278 280 280 279 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 287 288 288 288 289 289 289 290 289 290 291 290 292 293 291 295 296 291 298 299 292 299 299 293 300 299 294 301 300 294 302 300 296 302 301 297 302 302 299 302 303 301 301 303 301 301 302 302 299 300 302 299 299 301 298 298 300 299 299 299 300 300 301 300 300 301 301 300 300 301 300 300 301 300 300 300 299 299 299 298 298 299 298 298 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 296 296 296 295 295 296 294 294 295 293 293 294 291 292 293 290 291 293 289 290 292 287 288 291 283 285 287 279 281 284 277 279 281 278 280 281 278 279 280 275 276 278 272 274 275 267 270 273 261 266 270 252 259 264 249 256 262 248 254 261 247 253 261 246 251 259 245 250 257 244 248 255 243 247 254 241 244 252 238 242 251 236 242 251 235 241 251 234 242 251 235 244 250 235 246 249 235 246 248 235 245 247 234 242 246 233 240 246 233 240 246 236 243 247 238 245 248 239 244 248 240 244 248 240 244 248 242 244 247 242 244 247 242 244 247 242 244 246 241 243 244 241 243 244 240 242 243 239 242 241 245 234 223 246 235 223 247 236 226 248 237 228 248 238 228 248 237 227 247 236 225 246 235 222 245 233 220 244 233 220 243 235 222 243 236 224 243 237 226 246 241 232 250 246 239 256 252 246 264 260 253 269 266 261 271 271 267 273 273 271 273 273 272 274 274 273 274 274 274 275 275 275 276 276 276 277 277 276 278 278 277 279 279 278 280 280 279 281 281 280 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 288 289 289 289 291 289 291 292 290 292 294 291 296 297 291 299 299 293 300 300 294 301 300 294 302 301 295 302 301 296 302 301 297 302 302 298 303 303 300 302 303 302 301 303 303 299 300 302 299 299 301 299 298 300 299 299 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 299 298 298 297 297 297 298 298 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 296 296 296 295 295 296 294 294 295 293 293 294 292 292 293 291 291 293 289 290 293 287 289 291 285 286 289 281 283 285 277 279 281 278 280 281 278 279 280 276 277 278 273 274 276 268 271 274 262 266 270 253 259 264 249 256 262 248 254 261 247 252 260 247 251 259 245 250 257 244 248 255 243 246 254 241 244 252 239 243 251 237 242 251 236 242 251 235 244 250 236 245 250 236 246 249 235 246 248 235 244 247 235 242 246 234 240 246 233 240 246 236 243 247 238 244 248 239 244 247 239 244 248 240 244 248 242 244 247 242 244 247 242 244 247 242 244 245 241 244 244 241 243 244 240 242 243 239 242 241 245 234 223 246 235 224 247 236 226 248 237 228 249 238 229 249 238 228 248 237 226 246 235 223 245 234 221 244 234 221 244 235 222 243 236 224 244 238 226 246 241 232 250 246 239 256 252 246 263 258 251 268 265 259 271 270 266 273 272 271 273 273 272 274 274 273 274 274 274 275 275 275 276 276 276 277 277 276 278 278 277 279 279 278 280 280 279 281 281 280 282 282 281 283 283 283 284 285 284 285 286 285 286 287 286 287 288 287 288 289 288 289 290 289 290 291 289 292 293 290 295 296 291 298 298 292 300 300 293 302 301 295 303 301 296 303 302 297 302 301 296 302 302 297 302 302 298 303 303 301 302 304 302 301 303 302 300 301 301 299 299 300 299 299 300 299 299 300 300 300 301 300 300 300 301 301 300 300 300 300 299 299 299 297 297 297 298 298 298 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 296 296 296 295 295 296 294 294 295 293 293 294 292 292 293 291 291 293 290 290 292 288 289 292 286 287 289 283 284 286 277 279 281 278 279 280 278 279 280 277 277 278 273 275 276 269 271 274 264 267 271 256 261 266 250 257 262 249 254 261 247 252 260 247 251 258 246 250 257 245 248 255 244 247 254 243 246 253 241 244 252 238 243 251 237 244 250 237 245 250 238 246 249 237 247 249 236 246 247 235 244 246 235 242 246 234 240 246 234 240 246 236 242 246 238 244 247 238 244 247 239 244 247 240 244 247 242 244 247 242 244 247 242 245 246 242 244 245 241 244 244 241 243 244 240 242 243 239 242 241 245 235 223 246 235 224 247 237 227 248 238 229 249 239 230 249 239 229 248 237 226 247 236 224 245 234 222 244 234 221 244 235 223 244 236 224 244 238 227 247 241 232 250 246 239 256 252 246 263 259 252 267 264 258 271 270 266 272 272 271 273 273 272 274 274 273 274 275 274 275 276 275 276 277 275 277 277 276 278 278 277 279 279 278 280 280 279 281 281 280 282 283 281 283 284 283 284 285 284 285 286 285 286 287 286 287 288 287 288 289 288 289 290 289 291 292 289 294 296 290 296 297 291 298 298 292 300 299 293 301 300 294 302 301 295 302 301 296 303 301 297 303 302 298 303 303 299 303 303 301 302 304 302 300 302 301 299 300 300 299 300 300 299 299 300 300 300 300 300 300 301 301 301 301 301 301 301 300 300 300 298 298 298 296 296 296 298 297 298 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 296 296 297 295 295 296 294 294 295 293 293 294 292 292 293 291 291 293 290 290 292 289 289 292 287 288 290 284 285 287 278 280 282 276 278 279 278 279 279 277 277 278 274 275 277 271 272 274 266 268 272 261 264 268 254 258 263 250 255 262 248 253 260 247 251 258 246 250 257 246 249 256 246 248 255 245 247 254 243 246 253 241 245 251 240 245 250 240 247 249 239 248 249 239 247 248 237 246 247 236 244 246 236 242 246 234 241 246 234 240 246 236 242 246 238 243 246 237 243 246 239 243 247 241 244 247 242 244 247 242 244 247 242 245 246 242 244 245 241 244 244 241 243 243 240 242 243 239 242 241 245 235 223 246 235 224 247 237 227 248 238 230 249 239 231 249 239 229 249 238 227 247 236 225 246 235 222 245 234 222 245 235 223 244 237 225 245 239 227 247 242 233 251 247 240 256 252 246 263 260 253 268 265 260 271 271 267 272 272 271 273 273 272 274 274 273 275 275 274 275 276 275 276 277 275 277 277 276 278 278 277 279 279 278 280 280 279 281 282 280 282 283 282 283 284 283 284 285 284 285 286 285 286 287 286 287 288 287 288 289 288 289 291 289 292 293 290 295 296 291 297 297 292 299 298 292 301 300 294 301 300 294 302 301 296 302 302 297 303 302 298 303 302 299 304 303 301 303 303 301 301 303 301 300 301 300 300 300 301 300 300 301 300 300 301 300 300 301 301 300 301 301 301 301 300 300 300 300 299 299 297 296 297 296 295 296 297 297 297 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 297 297 297 297 296 297 296 295 296 295 294 295 293 293 294 292 292 293 292 291 293 290 290 292 289 290 292 287 288 290 284 285 287 281 282 283 276 278 279 276 278 278 276 277 278 275 275 277 272 273 275 268 270 273 263 265 269 258 261 265 253 256 262 250 253 260 249 252 259 248 251 258 247 250 257 247 249 255 247 248 254 246 249 254 244 247 252 242 247 250 242 247 249 241 248 248 239 246 247 237 245 246 236 243 246 235 242 245 234 241 246 234 240 245 236 242 245 237 242 245 237 242 245 239 244 247 241 244 247 242 244 247 242 244 246 242 245 246 242 244 245 241 244 244 241 243 243 240 242 243 239 242 241 245 235 223 246 236 224 247 237 228 249 239 230 250 240 231 250 240 230 249 239 228 248 237 225 246 235 223 245 235 223 245 236 224 245 237 225 246 239 228 248 243 233 251 247 240 257 253 246 264 261 254 269 267 261 272 271 268 272 272 271 273 273 272 274 274 273 275 275 274 275 276 275 276 277 275 277 277 276 278 278 277 279 279 278 280 281 279 281 282 280 282 283 282 283 284 283 284 285 284 285 286 285 286 287 286 287 288 287 288 290 288 290 291 289 292 294 290 295 297 291 296 297 291 298 297 292 300 299 294 299 300 294 301 302 297 301 303 298 302 302 299 303 302 300 302 301 301 302 301 301 300 301 300 299 300 300 301 301 302 301 301 301 300 300 301 300 300 301 301 301 301 300 300 301 299 299 299 298 297 298 296 295 296 295 295 296 298 298 298 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 297 297 296 297 296 296 296 295 295 295 294 293 294 293 292 294 292 291 293 291 291 292 289 290 292 288 288 290 285 286 288 282 283 284 277 279 280 275 277 277 275 276 277 275 275 277 273 273 275 269 271 273 265 267 270 260 261 265 256 258 263 252 254 261 250 253 259 249 251 258 248 250 257 248 250 256 249 250 254 249 251 255 246 250 253 244 249 251 243 248 248 241 247 247 239 246 246 238 244 246 236 243 245 235 242 245 234 241 245 233 241 245 235 242 245 237 242 245 236 243 245 239 245 246 241 244 247 242 244 246 242 245 246 242 245 246 242 244 245 241 244 244 241 243 243 240 242 243 239 242 241 245 235 223 246 236 225 247 237 228 249 239 231 250 240 232 250 240 231 250 239 229 248 237 226 247 236 224 246 235 224 245 236 224 245 237 226 246 240 229 249 243 234 252 248 240 258 254 246 265 263 255 270 269 262 272 272 268 272 272 271 273 273 272 274 274 273 275 275 274 275 276 274 276 276 275 277 277 276 278 278 276 279 279 278 280 281 279 281 282 281 283 283 282 284 285 283 285 286 284 286 287 285 287 288 287 288 289 288 289 290 289 291 293 289 293 296 290 295 297 291 296 297 291 298 297 291 298 299 292 298 300 294 300 301 296 301 302 298 301 302 299 302 303 300 302 302 302 300 301 302 300 300 301 299 299 301 300 300 301 300 300 301 300 300 301 300 301 301 301 301 301 300 300 301 298 298 298 297 296 296 296 295 296 296 296 296 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 296 296 296 295 295 295 294 294 295 293 292 294 292 291 293 291 291 292 290 290 291 288 289 290 286 287 289 283 284 286 279 280 282 276 277 278 275 276 277 273 274 275 272 273 275 269 270 272 267 267 270 262 262 265 257 258 262 254 254 260 252 252 258 251 251 258 249 251 258 250 250 256 252 252 255 252 252 255 250 252 254 246 250 251 244 248 248 241 246 246 240 245 245 238 243 245 237 243 245 236 242 245 234 241 245 233 241 244 234 242 244 235 243 244 236 243 244 239 245 246 241 245 246 242 244 246 242 245 246 242 245 246 242 245 244 241 244 244 241 243 243 240 242 243 239 242 241 245 235 223 246 236 225 248 238 229 249 239 232 251 241 233 251 241 232 250 240 230 249 238 227 247 236 225 246 236 225 246 236 225 246 238 226 247 240 229 249 244 234 253 249 241 259 255 247 266 264 256 270 270 263 272 272 268 272 272 271 273 273 272 274 274 273 275 275 274 275 276 274 276 276 275 277 277 275 278 278 276 279 280 278 280 281 279 282 283 281 283 284 282 284 285 283 285 286 285 286 287 286 287 288 287 288 289 288 289 291 289 293 295 290 294 296 290 295 297 290 296 296 290 298 298 291 298 298 292 297 298 293 299 300 296 300 301 298 300 302 299 300 303 301 301 303 302 299 300 302 298 299 300 298 298 300 298 299 300 299 299 299 299 300 300 300 300 301 300 301 301 299 299 300 297 297 297 296 295 296 296 295 295 297 297 297 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 296 296 296 295 295 295 294 294 294 293 293 294 292 292 293 291 291 292 290 290 291 289 289 290 287 287 289 285 285 287 282 283 284 280 280 282 278 278 279 275 275 277 273 274 275 268 270 272 266 266 269 263 262 266 258 258 262 255 254 259 253 252 258 252 252 258 251 251 258 252 251 256 253 253 256 253 253 256 252 253 255 247 251 253 244 248 249 241 245 245 239 244 244 239 243 245 238 243 245 237 242 245 234 242 244 233 241 243 233 243 244 235 243 244 236 243 244 239 245 246 241 245 246 242 244 246 242 245 246 242 245 246 242 245 244 241 244 244 241 243 243 240 242 243 239 242 241 245 235 223 246 236 225 248 238 229 249 240 232 251 241 234 252 242 233 251 241 231 249 239 228 248 237 226 247 236 226 246 237 226 246 238 227 248 241 230 250 245 235 254 250 241 260 256 248 267 265 257 271 270 263 272 272 269 272 272 271 273 273 272 274 274 273 275 275 273 275 275 274 276 276 275 277 277 275 278 278 276 279 280 278 281 281 279 282 283 281 283 284 283 284 285 284 285 286 285 286 287 286 287 289 288 288 290 289 290 292 289 293 295 288 295 296 289 295 296 290 296 296 290 297 297 291 298 298 291 297 298 293 297 299 295 298 299 297 299 301 299 300 303 301 300 302 302 299 300 300 298 298 299 297 298 299 298 298 299 299 299 299 299 300 300 300 300 300 300 300 301 299 299 299 297 297 297 295 295 295 296 295 295 298 298 298 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 298 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 296 296 296 296 295 295 295 294 294 294 293 294 293 292 293 291 291 292 290 290 291 289 289 290 287 288 289 286 286 287 284 284 285 282 282 283 279 280 281 277 277 278 274 274 276 270 270 273 266 265 268 264 263 266 259 259 265 256 257 263 255 255 262 254 254 260 253 253 259 253 253 257 255 253 256 255 254 257 253 254 256 249 252 254 244 248 249 240 245 245 239 243 244 239 243 244 239 243 245 237 243 245 234 242 244 232 242 243 233 243 243 237 244 244 237 244 244 241 247 246 241 245 246 242 244 246 242 245 246 242 245 245 241 245 244 241 244 243 241 243 243 240 242 243 239 242 241 245 235 223 246 236 226 248 238 230 250 240 233 252 242 235 252 242 234 252 241 232 250 240 229 248 238 227 247 237 227 247 237 227 247 239 228 248 241 231 250 246 236 255 251 242 261 258 249 268 267 258 272 271 264 272 272 269 272 273 271 273 273 272 274 274 273 274 275 273 275 275 274 276 276 274 277 277 275 278 278 276 279 280 278 281 282 280 282 283 281 283 284 283 284 286 284 286 287 286 287 288 287 288 289 288 289 290 289 290 292 288 293 294 288 295 295 288 295 296 289 296 296 290 297 297 290 297 297 291 297 297 293 297 298 294 297 298 295 298 300 298 299 301 299 299 300 299 299 299 299 298 298 299 297 297 298 298 298 298 299 299 299 300 300 300 300 301 301 300 301 301 299 299 300 297 297 297 296 295 295 296 296 296 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 298 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 293 292 291 292 290 290 291 289 289 290 288 288 289 286 286 288 285 285 286 283 283 284 281 280 282 278 278 279 275 275 276 272 271 273 268 267 269 264 263 266 259 260 265 257 257 264 255 256 262 255 255 261 255 254 259 255 254 257 256 254 257 255 254 257 254 255 257 250 253 254 244 249 249 240 245 245 239 243 244 239 243 244 238 243 245 236 243 245 234 243 244 232 242 243 233 244 243 237 245 244 238 244 244 241 247 246 241 245 246 242 244 246 242 245 246 242 245 245 241 245 244 241 244 243 241 243 243 240 242 242 239 242 241 245 235 224 246 236 226 248 238 230 250 240 233 252 242 235 253 243 235 252 242 233 251 240 231 249 239 229 248 238 228 247 238 228 248 239 229 249 242 232 251 246 237 256 252 243 263 260 251 269 268 259 272 272 265 272 273 269 272 273 271 273 273 272 274 274 273 274 274 273 275 275 274 276 276 274 277 277 275 278 279 277 280 280 278 281 282 280 283 284 282 284 285 283 285 286 285 286 287 286 287 288 286 289 290 287 289 291 289 290 291 288 291 292 287 293 293 288 294 295 289 295 295 289 296 296 290 297 297 292 296 297 293 296 297 293 296 297 294 297 298 295 298 299 296 299 299 297 298 298 298 298 297 298 298 298 298 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 297 296 296 297 296 296 299 298 298 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 293 292 291 292 291 290 291 289 289 290 288 288 289 287 286 288 285 285 286 283 283 284 281 281 282 279 278 280 276 275 277 273 272 273 269 267 269 264 263 266 260 260 264 258 257 263 257 256 262 256 255 260 257 255 259 257 255 258 257 255 258 256 255 258 254 255 257 250 254 254 244 249 249 240 245 245 238 243 244 238 243 245 237 244 245 236 243 245 233 243 244 232 243 243 234 245 243 238 245 244 238 245 244 241 247 246 241 245 246 242 245 246 242 245 246 241 245 245 241 245 244 241 244 243 241 243 243 240 242 242 239 242 241 245 235 224 247 236 226 248 239 230 250 241 234 252 243 236 253 244 236 253 243 235 252 241 232 250 240 230 248 239 229 248 238 228 248 240 229 250 243 233 252 247 238 257 253 244 265 262 254 271 269 261 272 272 266 272 273 269 272 273 271 273 273 272 274 274 273 274 274 273 275 275 274 276 277 274 277 278 276 279 279 277 280 281 279 281 282 280 283 284 282 284 285 283 285 286 285 287 288 287 288 289 287 289 290 288 289 291 289 290 292 289 290 291 287 292 292 287 293 293 288 294 295 289 295 296 290 295 297 291 296 297 292 296 296 293 297 296 293 298 296 294 299 298 296 299 298 297 299 298 298 299 299 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 298 298 298 299 298 298 299 298 297 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 293 292 291 292 291 290 291 290 289 290 288 288 289 287 286 288 285 285 286 283 283 284 281 281 282 279 279 280 277 276 277 274 272 274 270 267 269 266 263 266 263 259 264 260 258 262 259 257 261 259 256 260 259 256 259 259 256 259 258 256 259 257 256 258 254 256 257 250 254 254 243 249 249 240 246 246 238 243 245 238 244 245 237 244 246 235 244 245 233 243 244 232 244 243 235 246 243 238 246 244 238 245 244 241 247 246 241 245 246 241 245 246 242 245 246 241 245 245 241 245 244 241 244 243 241 243 243 240 242 242 239 242 241 245 235 224 247 237 226 249 239 231 251 241 235 253 243 237 254 244 237 254 244 236 252 242 233 251 241 231 249 239 230 248 239 229 249 240 230 250 243 234 252 248 239 258 254 245 267 264 255 271 270 262 273 273 267 273 273 269 273 273 271 273 273 272 274 274 273 274 275 273 275 276 274 276 277 275 278 278 276 279 280 277 280 281 279 282 283 281 283 284 282 284 285 284 285 286 285 287 288 287 288 289 288 289 290 289 290 291 290 290 292 290 290 291 288 291 292 288 292 293 288 293 294 289 294 294 290 295 295 291 296 296 292 297 296 293 298 296 294 298 296 294 299 297 296 298 298 297 299 299 298 299 299 299 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 300 299 299 299 299 298 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 292 291 290 291 290 289 290 289 288 289 287 287 287 285 285 286 284 283 284 282 281 282 280 279 280 277 276 277 274 272 274 271 268 269 267 263 265 265 260 264 264 259 262 263 259 261 263 258 260 262 257 260 261 257 260 260 257 260 257 257 259 254 256 257 250 254 254 243 250 250 239 246 247 238 244 245 237 244 245 237 245 246 234 244 245 232 244 243 232 245 243 236 246 243 239 246 244 239 246 244 241 247 246 241 245 246 241 245 246 241 245 246 241 245 245 241 245 244 241 244 243 241 243 243 240 242 242 239 242 241 245 235 224 247 237 227 249 239 231 251 242 235 253 244 238 255 245 238 255 245 237 253 243 235 252 242 233 250 240 231 249 240 231 249 241 231 250 244 235 253 248 240 260 255 247 268 265 256 272 271 263 273 273 267 273 273 270 273 273 271 273 273 272 274 274 273 274 275 273 275 276 274 276 277 275 278 278 276 279 280 278 281 281 279 282 283 281 283 284 282 284 285 284 285 286 285 286 288 287 288 289 288 289 290 289 290 292 290 291 293 291 291 293 291 292 293 290 292 293 289 292 292 289 293 293 290 294 293 290 296 294 292 297 295 293 297 295 294 297 296 295 298 297 296 299 298 298 299 299 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 292 291 290 291 290 289 290 289 288 289 287 287 287 286 285 286 284 283 284 282 281 282 280 279 280 278 276 278 275 272 274 272 268 269 269 264 265 267 262 264 266 261 263 266 261 262 266 260 261 265 259 261 263 258 260 261 258 260 258 257 259 254 256 257 249 254 254 242 250 250 239 247 248 237 244 246 236 244 246 235 245 246 234 244 245 232 244 243 233 245 243 237 247 243 239 247 244 240 246 245 241 247 246 241 245 246 241 245 247 241 245 246 241 245 245 241 245 244 241 244 243 241 243 243 239 242 242 239 242 241 245 235 224 247 237 227 249 240 232 251 242 236 254 245 238 256 246 239 256 246 238 254 244 236 252 243 234 251 242 233 250 241 232 250 241 232 251 244 236 254 249 241 261 257 248 269 266 257 272 272 264 273 273 268 273 273 270 273 273 271 273 274 272 274 274 273 275 275 273 275 276 274 277 277 275 278 279 276 280 280 278 281 282 279 282 283 281 283 284 282 284 285 284 285 286 285 286 287 287 287 289 288 288 290 289 289 292 290 291 293 291 292 294 292 293 294 292 293 294 292 293 293 292 292 292 291 293 292 291 295 293 292 296 294 294 296 295 295 297 296 296 298 298 298 299 299 298 299 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 292 291 291 291 290 290 290 289 288 289 288 287 287 286 285 286 284 283 284 282 281 282 280 279 280 278 276 277 275 272 274 272 269 270 270 266 266 269 264 264 268 263 263 268 263 263 267 263 262 267 261 261 264 259 261 262 259 261 259 258 260 254 256 257 248 254 254 242 251 250 239 247 248 236 244 247 235 244 246 234 245 246 233 244 245 232 244 243 233 246 243 237 248 243 239 247 244 241 247 245 241 247 246 241 245 246 241 245 247 241 245 246 241 245 245 241 244 244 241 244 243 241 243 243 239 242 242 239 242 241 246 235 224 247 237 227 249 240 232 252 243 236 255 245 239 256 247 240 256 247 240 255 246 237 253 244 236 252 243 234 251 242 233 250 242 233 251 245 236 254 249 241 262 258 248 270 267 258 273 272 265 273 273 268 273 273 270 273 273 271 274 274 272 274 274 273 275 275 273 275 276 274 277 277 275 278 279 276 280 280 278 281 282 280 282 283 281 283 284 283 284 285 284 285 286 285 286 287 287 287 289 288 288 290 289 289 291 290 290 292 291 292 293 293 293 294 293 294 294 294 294 294 294 294 294 293 294 294 293 295 294 294 296 295 295 296 296 296 297 297 297 298 298 298 299 299 298 299 299 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 296 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 292 291 291 291 290 290 290 289 288 289 288 287 288 286 285 286 284 283 284 282 281 282 280 279 280 278 276 277 275 272 274 273 269 270 271 267 267 270 266 265 269 265 265 269 265 264 268 264 263 267 262 262 265 260 261 263 259 261 260 258 260 254 256 257 247 254 254 242 251 251 239 248 249 236 245 247 235 244 246 234 245 246 233 244 245 232 245 243 234 247 243 237 248 243 239 247 244 241 247 245 241 246 246 241 245 247 241 245 247 241 245 246 241 245 245 241 244 244 241 244 243 240 243 243 239 242 242 239 242 241 246 235 224 247 237 227 249 240 232 252 243 237 255 246 240 257 248 241 257 248 241 256 247 239 255 245 237 253 244 236 252 243 234 251 243 234 252 245 237 255 250 242 264 260 250 270 268 259 273 272 265 273 273 268 273 273 270 273 273 271 274 274 272 274 275 273 275 275 274 275 276 274 277 278 275 278 279 277 280 280 278 281 282 280 282 283 281 283 284 283 284 285 284 285 286 285 286 287 287 287 289 288 288 290 289 289 291 290 290 292 291 291 293 292 293 294 293 294 294 294 295 295 294 295 295 295 295 295 295 296 295 295 296 296 296 297 297 297 298 297 297 298 298 298 298 299 298 299 299 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 301 300 301 301 301 301 300 301 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 298 298 297 297 297 297 297 297 296 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 291 291 290 290 290 289 288 289 288 287 288 287 285 286 285 284 284 283 281 283 280 279 280 277 276 277 275 273 274 273 270 271 271 268 268 271 267 267 270 267 266 269 266 265 269 265 264 267 263 262 265 260 261 263 259 261 260 258 260 254 256 258 248 254 254 243 252 252 239 249 249 236 245 248 235 244 246 235 244 246 233 245 245 232 245 243 234 247 243 237 247 243 239 247 245 240 247 245 241 246 246 241 245 247 241 245 247 241 245 246 241 245 245 241 244 244 241 244 243 240 243 242 239 242 242 239 242 241 246 235 224 247 237 228 250 240 233 253 243 237 256 247 241 258 248 242 258 249 242 257 248 240 256 247 239 255 245 237 253 244 235 252 243 235 252 245 238 256 250 242 265 261 252 270 268 259 273 272 266 273 273 269 273 273 270 273 274 271 274 274 272 274 275 273 275 276 274 276 276 274 277 278 275 278 279 277 280 281 278 281 282 280 282 283 281 283 284 283 284 285 284 285 286 285 286 287 287 287 288 288 288 290 289 289 290 290 290 291 291 291 293 292 292 294 293 294 294 294 295 295 295 295 295 295 296 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 299 298 299 299 299 299 299 299 300 300 300 300 300 300 300 301 300 300 301 300 301 301 301 301 301 301 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 298 298 297 297 297 297 297 297 296 297 296 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 291 290 290 290 289 289 289 288 287 288 287 286 286 285 284 285 283 282 283 280 279 280 277 276 277 275 273 274 273 271 271 272 269 269 271 268 268 270 268 267 269 267 266 268 265 264 266 262 262 263 260 261 260 257 259 258 257 260 254 256 258 249 255 255 245 254 252 240 250 250 237 246 248 235 244 247 235 245 246 234 245 245 233 245 243 233 247 243 237 248 243 239 248 245 240 247 245 241 246 246 241 245 247 241 245 247 241 245 246 241 245 245 241 244 244 241 244 243 240 243 242 239 242 242 239 242 241 246 235 224 247 237 228 250 241 233 253 244 238 256 247 241 259 249 243 259 250 243 258 249 242 257 248 240 256 247 239 255 245 237 253 244 236 253 246 239 257 251 243 266 263 253 271 269 260 273 273 266 273 273 269 273 273 270 273 274 271 274 274 272 275 275 273 275 276 274 276 277 274 277 278 276 279 280 277 280 281 279 281 282 280 282 283 282 283 284 283 284 285 284 285 286 285 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 295 295 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 299 299 300 300 300 300 300 300 300 301 300 300 301 301 301 301 301 301 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 296 297 296 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 291 290 290 290 289 289 289 288 287 288 287 286 286 285 284 285 283 282 283 280 279 280 277 276 277 275 273 274 273 271 272 272 270 270 271 269 269 271 268 268 270 267 267 268 265 265 264 261 262 261 258 260 258 256 258 255 255 258 253 256 257 250 256 256 246 254 253 241 251 250 237 247 248 236 245 247 236 245 246 235 245 245 233 245 244 235 247 243 237 248 243 239 248 245 240 247 246 241 246 247 241 245 247 241 245 247 241 245 246 241 245 245 241 244 244 240 244 243 240 243 242 239 242 242 239 242 241 246 235 225 247 238 228 250 241 234 253 244 238 257 248 242 259 250 244 260 250 244 259 250 243 258 249 242 258 248 241 256 247 239 254 245 238 254 247 239 258 252 244 267 263 254 271 270 261 273 273 267 273 273 269 273 274 270 273 274 272 274 274 272 275 275 273 275 276 274 276 277 275 278 278 276 279 280 277 280 281 279 281 282 280 282 283 282 283 284 283 284 285 284 285 286 285 286 287 287 287 288 288 288 290 289 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 294 294 295 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 299 299 300 300 300 300 300 300 300 301 300 300 301 301 301 301 301 301 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 296 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 290 290 290 290 289 289 289 288 287 288 287 286 286 285 284 285 283 282 283 280 279 280 278 276 277 275 273 274 274 272 272 273 270 271 272 270 270 271 269 269 270 268 268 269 266 266 265 263 264 261 259 261 258 256 258 254 255 257 251 256 256 250 256 256 247 255 254 241 252 251 237 248 248 237 247 247 237 246 247 236 245 246 233 245 244 235 248 243 237 248 243 239 248 245 240 248 246 241 247 247 241 245 247 241 245 247 241 245 246 241 244 245 241 244 244 240 244 243 240 243 242 239 242 242 239 242 241 246 235 225 248 238 228 250 241 234 254 245 239 257 248 243 260 251 245 261 251 245 260 251 244 259 250 243 259 250 243 258 248 241 255 247 239 255 248 240 260 254 245 267 264 254 272 270 261 273 273 267 273 273 269 273 274 271 273 274 272 274 275 273 275 275 273 275 276 274 276 277 275 278 279 276 279 280 277 281 281 279 282 282 280 282 283 282 283 284 283 284 285 284 285 286 286 286 287 287 287 289 288 288 290 289 289 290 290 290 291 291 291 292 292 292 293 293 293 293 293 294 294 294 294 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 301 300 301 301 300 301 301 301 301 300 301 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 296 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 290 290 289 290 289 289 289 288 287 288 287 286 286 285 284 285 283 282 283 280 279 280 278 276 277 275 274 275 274 272 273 273 271 271 272 270 271 271 269 270 270 269 269 269 267 268 267 264 265 264 261 263 258 257 259 254 255 257 251 256 256 249 257 256 246 256 254 240 252 251 237 249 248 237 248 247 237 246 247 236 245 246 234 246 244 235 248 244 237 248 243 238 248 245 239 248 246 240 247 247 240 246 247 241 245 247 241 245 246 241 244 245 241 244 244 240 244 243 240 243 242 239 242 242 239 242 241 246 235 225 248 238 229 251 241 234 254 245 239 258 249 244 261 251 245 261 252 246 261 252 245 261 252 245 260 251 244 259 250 242 257 248 240 256 249 241 262 256 247 268 265 255 272 271 262 273 273 267 273 273 269 273 274 271 274 274 272 274 275 273 275 275 273 275 276 274 277 277 275 278 279 276 280 280 278 281 281 279 282 282 281 282 283 282 283 284 283 284 285 284 285 286 286 286 288 287 287 289 288 288 290 289 289 290 290 290 291 291 291 292 292 292 292 293 293 293 293 294 294 294 294 294 295 295 295 295 295 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 301 300 301 301 300 301 301 301 301 301 301 301 300 300 301 300 300 300 300 300 300 300 300 300 299 300 300 299 299 300 299 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 297 298 298 297 297 297 297 297 297 297 297 297 296 296 296 296 296 295 295 295 295 294 294 294 293 292 293 292 292 292 291 291 291 290 290 290 289 289 289 288 289 288 287 288 287 286 286 285 284 285 283 282 283 280 279 280 278 276 277 275 274 275 274 272 273 273 271 272 272 270 271 271 270 271 271 270 270 270 269 269 269 267 267 266 264 264 262 260 261 256 257 258 252 257 256 248 257 255 245 256 254 239 253 250 237 250 248 236 248 247 237 247 247 237 246 246 235 247 245 236 248 244 237 248 243 238 248 245 239 248 246 240 247 247 240 246 247 240 245 247 241 245 246 241 244 245 241 244 244 240 244 243 240 243 242 239 242 242 239 242 240 246 236 225 248 238 229 251 242 235 254 246 240 258 250 244 261 252 246 262 253 246 262 253 246 262 254 247 263 256 248 262 253 245 258 250 242 258 250 243 263 258 248 269 266 256 272 271 263 273 273 267 273 274 270 273 274 271 274 275 272 274 275 273 275 276 274 276 276 274 277 278 275 279 279 277 280 280 278 281 282 279 282 282 281 282 283 282 283 284 283 284 285 285 285 286 286 286 288 287 288 289 288 288 290 290 289 290 290 290 291 291 291 292 292 292 292 293 293 293 293 294 294 294 294 294 294 295 295 295 295 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 301 300 301 301 300 301 301 301 301 301 301 301 300 301 301 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 295 296 295 295 295 295 294 294 294 293 292 293 292 292 292 291 291 291 290 290 290 289 289 289 288 289 288 287 288 287 286 286 285 284 284 283 282 282 280 279 280 278 276 277 275 274 275 274 273 273 273 272 272 272 271 271 272 270 271 271 270 271 271 270 270 270 269 269 268 267 267 264 264 263 261 261 261 257 260 259 251 258 256 243 255 253 239 253 250 237 251 248 236 249 247 236 247 247 236 247 246 235 247 245 236 248 243 237 248 244 238 248 245 239 248 246 239 247 246 240 246 247 240 245 247 240 245 246 241 244 245 241 244 244 240 244 243 240 243 242 239 242 242 239 242 240 246 236 225 248 238 229 251 242 235 255 246 241 259 250 245 262 253 247 263 253 247 262 253 246 264 256 249 264 257 249 263 255 247 260 252 244 259 252 244 264 259 249 270 267 256 272 272 263 273 273 268 273 274 270 273 274 271 274 275 272 274 275 273 275 276 274 276 277 274 277 278 276 279 279 277 280 281 278 281 282 280 282 282 281 282 283 282 283 284 283 284 285 285 285 286 286 287 288 287 288 289 288 289 290 290 289 290 291 290 291 291 291 292 292 292 292 293 293 293 293 294 294 294 294 294 294 295 295 295 295 295 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 301 300 301 301 300 301 301 301 301 301 301 301 301 301 301 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 298 299 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 295 296 295 295 295 294 294 293 294 293 292 293 292 291 292 291 291 291 290 290 290 289 289 289 288 288 288 287 287 287 286 286 285 284 284 283 282 282 280 279 280 278 276 277 275 274 275 274 273 274 273 272 273 272 271 272 272 271 271 272 270 271 272 271 271 271 270 270 270 269 269 267 267 266 264 264 263 260 262 260 253 259 258 243 255 253 239 253 250 237 251 248 236 249 247 236 248 246 236 247 246 236 248 245 236 248 244 237 248 244 238 248 245 238 248 246 239 247 246 239 246 246 240 245 247 240 245 246 241 244 245 241 244 244 240 243 243 240 243 242 239 242 241 239 242 240 246 236 225 248 238 229 251 242 236 255 247 241 259 251 245 262 253 247 263 254 247 263 254 247 265 257 249 266 258 250 264 257 249 262 254 246 261 254 245 266 261 251 270 268 257 272 272 264 273 273 268 273 274 270 273 274 271 274 275 272 274 275 273 275 276 274 276 277 275 278 278 276 279 280 277 280 281 279 281 282 280 282 282 281 282 283 282 283 284 283 285 285 285 286 286 286 287 287 287 287 288 288 289 290 290 289 290 291 290 291 291 291 292 292 292 292 293 293 293 293 294 294 294 294 294 294 295 295 295 295 295 296 296 296 296 296 297 297 297 297 298 298 298 298 298 298 299 299 298 299 299 299 299 299 299 300 300 299 300 300 300 300 300 300 300 301 300 301 301 300 301 301 301 301 301 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 300 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 296 297 296 296 296 296 295 296 295 294 295 294 294 293 293 293 292 293 292 291 292 291 291 291 290 290 290 289 289 289 288 288 288 287 287 287 286 286 285 284 284 283 282 282 281 279 280 278 277 278 276 275 276 274 273 274 273 272 273 272 271 272 272 271 272 272 271 272 272 271 271 272 271 271 271 270 270 269 269 268 267 267 266 262 264 262 254 259 258 242 255 253 238 253 250 238 252 248 236 250 247 235 248 246 235 247 246 236 248 245 236 248 244 237 248 244 237 248 245 238 248 246 238 247 246 239 246 246 240 245 246 240 245 246 240 244 245 241 244 244 240 243 243 240 243 242 239 242 241 239 242 240 246 236 225 248 238 230 252 243 236 256 247 242 260 251 246 263 254 248 264 254 247 264 254 247 265 257 250 267 260 251 266 259 251 263 256 247 262 256 247 267 263 252 271 269 257 272 272 264 272 273 268 273 274 270 274 274 271 274 275 272 275 275 273 275 276 274 276 277 275 278 278 276 279 280 277 280 281 279 281 282 280 282 283 281 282 283 282 284 285 283 285 285 285 286 286 285 287 287 286 287 288 288 288 289 289 290 290 291 291 291 291 292 292 292 292 292 293 293 293 293 294 294 294 294 294 294 295 295 295 295 295 295 296 296 296 296 297 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 300 300 300 300 300 300 300 301 300 301 301 300 301 301 301 301 301 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 296 297 296 296 296 296 295 296 295 294 295 294 293 293 293 292 292 293 291 291 292 291 290 291 290 290 290 289 289 289 288 288 288 287 287 286 286 286 285 284 284 283 282 282 281 279 280 278 277 278 276 275 276 274 273 274 273 272 273 273 272 272 272 271 272 272 271 272 272 271 272 272 271 271 271 271 271 270 270 270 268 269 268 264 265 264 255 260 259 242 256 253 238 254 250 238 252 248 237 250 247 235 248 246 235 248 245 236 248 244 236 248 244 237 248 244 237 248 245 238 248 245 238 246 246 239 245 246 240 245 246 240 245 246 240 244 245 240 244 244 240 243 243 240 243 242 239 242 241 239 242 240 246 236 225 248 239 230 252 243 236 256 247 242 260 252 247 263 254 248 264 255 246 264 255 247 266 258 250 268 261 253 267 261 252 265 258 249 264 258 248 269 265 253 271 270 258 272 272 264 272 273 268 273 274 270 274 274 271 274 275 272 275 276 273 275 276 274 277 277 275 278 279 276 279 280 278 280 281 279 281 282 280 282 283 281 282 283 282 284 284 283 285 286 284 286 285 284 287 287 286 287 288 287 288 289 289 290 290 291 291 291 291 292 292 292 293 293 293 293 293 293 294 294 294 294 294 294 295 295 295 295 295 295 296 296 296 296 297 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 301 301 301 301 301 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 292 291 290 291 290 289 290 289 289 289 288 288 288 287 287 286 285 286 285 284 284 283 282 282 280 280 280 278 277 278 276 275 276 274 274 275 273 273 274 273 272 273 273 272 272 273 272 272 272 272 272 272 272 272 271 271 271 270 271 271 268 269 269 264 266 266 256 261 260 243 256 253 238 254 250 238 252 248 237 250 247 235 249 246 235 248 245 235 248 244 236 248 244 237 248 244 237 248 245 238 248 245 238 246 246 239 245 246 239 245 246 240 244 246 240 244 245 240 244 244 240 243 243 240 243 242 239 242 241 239 242 240 246 236 225 248 239 230 252 243 237 256 248 243 261 252 247 264 254 248 265 255 246 265 255 246 267 258 250 269 262 253 269 263 253 267 261 251 266 262 249 270 267 254 271 270 259 272 272 264 272 273 268 273 274 270 274 275 271 274 275 272 275 276 273 275 276 274 277 277 275 278 279 276 279 280 278 280 281 279 281 282 280 282 283 281 283 283 282 284 285 283 285 286 284 286 286 284 287 286 285 288 288 287 289 289 289 290 291 290 291 291 291 292 292 292 293 293 293 293 293 293 294 294 294 294 294 294 295 295 295 295 295 295 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 301 301 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 290 291 290 289 290 289 288 289 288 288 287 287 287 286 285 286 284 284 284 283 282 282 280 280 280 278 277 278 276 275 277 275 274 275 274 273 274 273 272 273 273 272 273 273 272 273 272 272 272 272 272 272 271 272 272 270 271 271 268 270 270 265 267 267 257 262 261 243 257 254 238 254 250 238 252 249 236 250 247 235 249 246 235 248 245 235 248 245 236 248 244 237 248 244 237 248 245 238 248 245 238 246 246 239 245 246 239 245 246 240 244 246 240 244 245 240 244 244 240 243 243 240 242 242 239 242 241 239 242 240 246 236 225 248 239 230 252 243 237 257 248 243 261 253 248 264 255 248 265 255 246 265 255 246 267 259 249 269 263 253 270 264 254 269 264 252 269 265 251 270 268 254 272 271 259 272 273 265 272 273 268 273 274 270 274 275 272 274 275 272 275 276 273 276 277 274 277 277 275 278 279 276 279 280 278 280 281 279 281 282 280 282 283 281 283 283 282 284 285 283 285 286 285 287 287 285 287 287 285 288 288 287 289 290 289 290 291 290 291 291 291 292 292 292 293 293 293 293 294 293 294 294 294 294 294 294 294 295 295 295 295 295 295 296 296 296 296 297 296 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 290 290 289 289 290 289 288 289 288 287 287 287 287 286 285 285 284 284 284 282 282 282 280 280 280 278 277 278 276 276 277 275 274 275 274 273 274 273 273 274 273 272 273 273 273 273 272 273 273 272 272 272 271 272 272 270 271 271 268 270 270 265 267 267 257 262 261 246 258 256 239 254 251 237 252 249 236 251 248 235 249 246 235 248 246 235 248 246 236 247 244 237 248 244 238 248 245 238 248 245 238 246 246 239 245 246 239 244 246 239 244 245 240 244 244 240 244 244 240 243 243 240 242 242 239 242 241 239 242 240 246 236 225 248 239 231 252 244 237 257 249 243 261 253 248 264 255 248 265 255 245 266 255 245 268 260 251 269 263 254 270 265 254 270 265 253 270 266 253 271 269 255 272 271 260 272 273 265 272 273 268 273 274 270 274 275 272 274 275 273 275 276 273 276 277 274 277 277 275 278 278 276 279 280 277 280 281 279 281 282 280 282 282 281 283 283 282 284 285 283 285 286 285 287 287 286 288 288 286 288 288 286 289 290 288 290 291 290 291 292 291 292 293 292 293 294 293 293 294 293 294 294 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 301 300 300 300 300 299 300 299 299 299 299 299 299 298 299 299 299 299 300 300 300 300 300 300 299 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 290 290 289 289 289 288 288 288 288 287 287 286 286 286 285 285 284 283 284 282 282 282 280 280 280 278 278 279 276 276 277 275 274 276 274 273 275 273 273 274 273 273 274 273 273 273 272 273 273 272 273 273 271 272 272 270 271 272 268 270 270 265 268 268 258 263 263 248 258 257 239 255 252 237 252 249 236 251 248 235 249 246 235 248 246 235 248 246 236 247 244 237 248 244 238 248 244 238 247 245 238 246 246 239 245 246 239 244 246 239 244 245 240 244 244 240 244 244 240 243 243 240 242 242 239 242 241 239 242 240 246 236 225 249 239 231 253 244 238 258 249 244 262 253 248 265 255 248 266 255 245 266 255 245 268 260 251 270 263 253 270 265 254 270 266 254 271 268 253 272 270 256 272 272 261 271 273 265 272 273 268 273 274 270 274 275 272 274 275 273 275 276 273 276 277 274 276 277 275 278 278 276 279 279 277 280 280 279 281 281 280 281 282 281 283 283 282 284 284 283 285 286 285 287 287 286 288 289 287 289 290 288 290 290 288 290 291 289 292 292 291 292 292 291 293 293 292 294 294 293 294 294 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 301 301 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 298 299 299 299 299 299 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 295 295 295 295 294 294 294 293 293 293 292 291 292 291 290 291 290 290 290 289 289 289 288 288 288 287 287 287 286 286 286 285 285 284 283 284 282 282 282 280 280 280 278 278 279 276 276 277 275 274 276 274 274 275 274 273 274 273 273 274 273 273 274 272 273 273 272 273 273 271 272 272 270 272 272 269 271 271 266 269 269 259 264 264 249 259 257 241 256 253 238 253 250 236 251 248 234 249 247 235 248 246 235 248 246 236 246 244 237 247 244 238 248 244 238 247 245 239 247 246 239 246 246 239 244 246 239 244 245 240 244 244 240 244 244 240 243 243 240 242 242 239 242 241 239 242 240 246 236 226 249 239 231 253 244 238 258 249 244 262 254 248 265 255 248 266 255 245 266 255 244 268 260 251 269 263 253 270 266 254 270 267 254 271 268 254 272 270 257 272 272 261 271 273 266 272 273 269 273 274 270 274 275 272 275 275 273 275 276 273 276 277 274 276 277 275 277 278 276 279 279 277 280 280 278 280 281 279 281 282 280 282 283 282 284 284 283 285 286 285 287 287 286 288 289 287 290 290 288 290 290 289 290 290 288 291 290 289 293 293 292 293 294 293 293 294 293 294 294 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 301 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 298 299 298 298 299 299 299 299 299 299 300 300 300 300 300 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 296 295 295 295 295 294 294 294 293 293 293 292 291 292 290 290 291 290 289 290 289 288 289 288 287 288 287 287 287 286 286 286 285 285 284 283 283 282 282 282 280 280 280 278 278 279 276 276 277 275 275 276 274 274 275 274 274 275 273 273 274 273 273 274 273 273 273 272 273 273 271 272 273 270 272 272 269 271 271 266 269 269 259 265 265 250 260 258 243 257 254 239 253 251 236 252 249 235 250 247 235 248 246 236 248 246 236 246 244 237 247 244 239 248 244 239 247 245 239 247 246 239 246 246 239 244 246 239 244 245 240 244 244 240 244 244 240 243 243 240 242 242 239 242 241 239 242 240 246 236 226 249 239 231 253 244 238 258 250 245 262 254 249 265 255 248 266 255 244 267 255 244 268 260 250 269 263 253 270 266 254 270 267 254 271 269 255 272 270 258 272 272 262 271 273 266 272 273 269 273 274 271 274 275 272 275 275 273 275 276 274 276 277 274 276 277 275 277 278 276 278 279 277 279 280 278 280 281 279 281 282 280 282 283 281 284 284 283 285 285 285 287 287 286 288 288 287 290 290 289 291 291 290 291 291 290 291 291 289 293 293 292 293 293 292 293 294 293 294 294 293 294 294 294 294 295 294 295 295 295 295 296 295 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 298 298 298 298 299 299 299 299 299 299 300 300 300 300 300 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 296 295 295 295 295 294 294 294 293 293 293 291 291 292 290 290 291 289 289 290 289 288 289 288 287 288 287 286 287 286 285 285 285 284 284 283 283 282 282 281 280 280 280 278 278 279 276 276 277 275 275 276 274 274 275 274 274 275 274 274 274 273 274 274 273 273 274 272 273 273 271 273 273 270 272 272 269 271 271 266 269 270 260 266 266 250 260 259 245 257 255 240 254 251 237 252 249 235 250 247 235 248 247 236 248 247 236 246 245 238 247 244 239 248 244 239 248 245 239 247 246 239 246 246 239 244 246 239 244 245 239 244 244 240 244 244 240 243 243 240 242 242 239 242 241 239 242 240 246 236 226 249 239 231 253 244 238 258 250 245 263 254 249 265 256 247 266 255 244 267 255 243 268 260 250 269 263 252 269 265 254 270 267 255 271 269 256 272 270 259 272 272 262 271 273 266 272 273 269 273 274 271 274 275 272 275 275 273 275 276 274 276 277 274 276 277 275 277 278 276 278 279 277 279 280 278 280 281 279 281 282 280 282 283 281 283 284 283 285 285 285 287 287 286 288 288 288 290 290 289 291 291 290 292 292 291 292 292 291 292 293 292 293 293 292 293 293 293 294 294 293 294 294 294 294 295 294 295 295 295 295 296 295 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 298 298 298 298 298 299 299 298 299 299 299 300 300 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 296 295 295 295 295 294 294 294 293 293 293 291 291 292 290 290 291 289 289 290 288 288 289 288 287 288 287 286 287 286 285 285 285 284 284 283 283 282 282 281 280 280 280 278 278 278 276 277 277 275 275 276 275 275 276 274 274 275 274 274 275 274 274 274 273 274 274 272 273 273 272 273 273 270 272 272 269 271 271 266 270 270 260 266 266 251 261 260 246 258 255 242 255 253 238 253 250 236 250 248 235 249 247 236 247 246 237 247 245 238 247 244 240 248 244 239 248 245 239 247 246 239 246 246 239 244 246 239 244 245 239 244 244 240 243 244 241 243 243 240 242 242 239 242 241 239 241 240 diff --git a/Test/tas_3D_noreorder.input b/Test/tas_3D_noreorder.input deleted file mode 100644 index d173d8794d07eea6fdf973ea009c279f3991e639..0000000000000000000000000000000000000000 --- a/Test/tas_3D_noreorder.input +++ /dev/null @@ -1 +0,0 @@ -Test/tas_mytest_noreorder.asc diff --git a/Test/tas_3D_xty_-180_180.asc b/Test/tas_3D_xty_-180_180.asc deleted file mode 100644 index bbc73e30f750e6299c345cec24c023c4ec6e693c..0000000000000000000000000000000000000000 --- a/Test/tas_3D_xty_-180_180.asc +++ /dev/null @@ -1,19 +0,0 @@ -tas -K -3 -256 -3 -128 -longitude -degrees_east --180.0 -178.59375 -177.1875 -175.78125 -174.375 -172.96875 -171.5625 -170.15625 -168.75 -167.34375 -165.9375 -164.53125 -163.125 -161.71875 -160.3125 -158.90625 -157.5 -156.09375 -154.6875 -153.28125 -151.875 -150.46875 -149.0625 -147.65625 -146.25 -144.84375 -143.4375 -142.03125 -140.625 -139.21875 -137.8125 -136.40625 -135.0 -133.59375 -132.1875 -130.78125 -129.375 -127.96875 -126.5625 -125.15625 -123.75 -122.34375 -120.9375 -119.53125 -118.125 -116.71875 -115.3125 -113.90625 -112.5 -111.09375 -109.6875 -108.28125 -106.875 -105.46875 -104.0625 -102.65625 -101.25 -99.84375 -98.4375 -97.03125 -95.625 -94.21875 -92.8125 -91.40625 -90.0 -88.59375 -87.1875 -85.78125 -84.375 -82.96875 -81.5625 -80.15625 -78.75 -77.34375 -75.9375 -74.53125 -73.125 -71.71875 -70.3125 -68.90625 -67.5 -66.09375 -64.6875 -63.28125 -61.875 -60.46875 -59.0625 -57.65625 -56.25 -54.84375 -53.4375 -52.03125 -50.625 -49.21875 -47.8125 -46.40625 -45.0 -43.59375 -42.1875 -40.78125 -39.375 -37.96875 -36.5625 -35.15625 -33.75 -32.34375 -30.9375 -29.53125 -28.125 -26.71875 -25.3125 -23.90625 -22.5 -21.09375 -19.6875 -18.28125 -16.875 -15.46875 -14.0625 -12.65625 -11.25 -9.84375 -8.4375 -7.03125 -5.625 -4.21875 -2.8125 -1.40625 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.65625 14.0625 15.46875 16.875 18.28125 19.6875 21.09375 22.5 23.90625 25.3125 26.71875 28.125 29.53125 30.9375 32.34375 33.75 35.15625 36.5625 37.96875 39.375 40.78125 42.1875 43.59375 45.0 46.40625 47.8125 49.21875 50.625 52.03125 53.4375 54.84375 56.25 57.65625 59.0625 60.46875 61.875 63.28125 64.6875 66.09375 67.5 68.90625 70.3125 71.71875 73.125 74.53125 75.9375 77.34375 78.75 80.15625 81.5625 82.96875 84.375 85.78125 87.1875 88.59375 90.0 91.40625 92.8125 94.21875 95.625 97.03125 98.4375 99.84375 101.25 102.65625 104.0625 105.46875 106.875 108.28125 109.6875 111.09375 112.5 113.90625 115.3125 116.71875 118.125 119.53125 120.9375 122.34375 123.75 125.15625 126.5625 127.96875 129.375 130.78125 132.1875 133.59375 135.0 136.40625 137.8125 139.21875 140.625 142.03125 143.4375 144.84375 146.25 147.65625 149.0625 150.46875 151.875 153.28125 154.6875 156.09375 157.5 158.90625 160.3125 161.71875 163.125 164.53125 165.9375 167.34375 168.75 170.15625 171.5625 172.96875 174.375 175.78125 177.1875 178.59375 --180.703125 -179.296875 -179.296875 -177.890625 -177.890625 -176.484375 -176.484375 -175.078125 -175.078125 -173.671875 -173.671875 -172.265625 -172.265625 -170.859375 -170.859375 -169.453125 -169.453125 -168.046875 -168.046875 -166.640625 -166.640625 -165.234375 -165.234375 -163.828125 -163.828125 -162.421875 -162.421875 -161.015625 -161.015625 -159.609375 -159.609375 -158.203125 -158.203125 -156.796875 -156.796875 -155.390625 -155.390625 -153.984375 -153.984375 -152.578125 -152.578125 -151.171875 -151.171875 -149.765625 -149.765625 -148.359375 -148.359375 -146.953125 -146.953125 -145.546875 -145.546875 -144.140625 -144.140625 -142.734375 -142.734375 -141.328125 -141.328125 -139.921875 -139.921875 -138.515625 -138.515625 -137.109375 -137.109375 -135.703125 -135.703125 -134.296875 -134.296875 -132.890625 -132.890625 -131.484375 -131.484375 -130.078125 -130.078125 -128.671875 -128.671875 -127.265625 -127.265625 -125.859375 -125.859375 -124.453125 -124.453125 -123.046875 -123.046875 -121.640625 -121.640625 -120.234375 -120.234375 -118.828125 -118.828125 -117.421875 -117.421875 -116.015625 -116.015625 -114.609375 -114.609375 -113.203125 -113.203125 -111.796875 -111.796875 -110.390625 -110.390625 -108.984375 -108.984375 -107.578125 -107.578125 -106.171875 -106.171875 -104.765625 -104.765625 -103.359375 -103.359375 -101.953125 -101.953125 -100.546875 -100.546875 -99.140625 -99.140625 -97.734375 -97.734375 -96.328125 -96.328125 -94.921875 -94.921875 -93.515625 -93.515625 -92.109375 -92.109375 -90.703125 -90.703125 -89.296875 -89.296875 -87.890625 -87.890625 -86.484375 -86.484375 -85.078125 -85.078125 -83.671875 -83.671875 -82.265625 -82.265625 -80.859375 -80.859375 -79.453125 -79.453125 -78.046875 -78.046875 -76.640625 -76.640625 -75.234375 -75.234375 -73.828125 -73.828125 -72.421875 -72.421875 -71.015625 -71.015625 -69.609375 -69.609375 -68.203125 -68.203125 -66.796875 -66.796875 -65.390625 -65.390625 -63.984375 -63.984375 -62.578125 -62.578125 -61.171875 -61.171875 -59.765625 -59.765625 -58.359375 -58.359375 -56.953125 -56.953125 -55.546875 -55.546875 -54.140625 -54.140625 -52.734375 -52.734375 -51.328125 -51.328125 -49.921875 -49.921875 -48.515625 -48.515625 -47.109375 -47.109375 -45.703125 -45.703125 -44.296875 -44.296875 -42.890625 -42.890625 -41.484375 -41.484375 -40.078125 -40.078125 -38.671875 -38.671875 -37.265625 -37.265625 -35.859375 -35.859375 -34.453125 -34.453125 -33.046875 -33.046875 -31.640625 -31.640625 -30.234375 -30.234375 -28.828125 -28.828125 -27.421875 -27.421875 -26.015625 -26.015625 -24.609375 -24.609375 -23.203125 -23.203125 -21.796875 -21.796875 -20.390625 -20.390625 -18.984375 -18.984375 -17.578125 -17.578125 -16.171875 -16.171875 -14.765625 -14.765625 -13.359375 -13.359375 -11.953125 -11.953125 -10.546875 -10.546875 -9.140625 -9.140625 -7.734375 -7.734375 -6.328125 -6.328125 -4.921875 -4.921875 -3.515625 -3.515625 -2.109375 -2.109375 -0.703125 -0.703125 0.703125 0.703125 2.109375 2.109375 3.515625 3.515625 4.921875 4.921875 6.328125 6.328125 7.734375 7.734375 9.140625 9.140625 10.546875 10.546875 11.953125 11.953125 13.359375 13.359375 14.765625 14.765625 16.171875 16.171875 17.578125 17.578125 18.984375 18.984375 20.390625 20.390625 21.796875 21.796875 23.203125 23.203125 24.609375 24.609375 26.015625 26.015625 27.421875 27.421875 28.828125 28.828125 30.234375 30.234375 31.640625 31.640625 33.046875 33.046875 34.453125 34.453125 35.859375 35.859375 37.265625 37.265625 38.671875 38.671875 40.078125 40.078125 41.484375 41.484375 42.890625 42.890625 44.296875 44.296875 45.703125 45.703125 47.109375 47.109375 48.515625 48.515625 49.921875 49.921875 51.328125 51.328125 52.734375 52.734375 54.140625 54.140625 55.546875 55.546875 56.953125 56.953125 58.359375 58.359375 59.765625 59.765625 61.171875 61.171875 62.578125 62.578125 63.984375 63.984375 65.390625 65.390625 66.796875 66.796875 68.203125 68.203125 69.609375 69.609375 71.015625 71.015625 72.421875 72.421875 73.828125 73.828125 75.234375 75.234375 76.640625 76.640625 78.046875 78.046875 79.453125 79.453125 80.859375 80.859375 82.265625 82.265625 83.671875 83.671875 85.078125 85.078125 86.484375 86.484375 87.890625 87.890625 89.296875 89.296875 90.703125 90.703125 92.109375 92.109375 93.515625 93.515625 94.921875 94.921875 96.328125 96.328125 97.734375 97.734375 99.140625 99.140625 100.546875 100.546875 101.953125 101.953125 103.359375 103.359375 104.765625 104.765625 106.171875 106.171875 107.578125 107.578125 108.984375 108.984375 110.390625 110.390625 111.796875 111.796875 113.203125 113.203125 114.609375 114.609375 116.015625 116.015625 117.421875 117.421875 118.828125 118.828125 120.234375 120.234375 121.640625 121.640625 123.046875 123.046875 124.453125 124.453125 125.859375 125.859375 127.265625 127.265625 128.671875 128.671875 130.078125 130.078125 131.484375 131.484375 132.890625 132.890625 134.296875 134.296875 135.703125 135.703125 137.109375 137.109375 138.515625 138.515625 139.921875 139.921875 141.328125 141.328125 142.734375 142.734375 144.140625 144.140625 145.546875 145.546875 146.953125 146.953125 148.359375 148.359375 149.765625 149.765625 151.171875 151.171875 152.578125 152.578125 153.984375 153.984375 155.390625 155.390625 156.796875 156.796875 158.203125 158.203125 159.609375 159.609375 161.015625 161.015625 162.421875 162.421875 163.828125 163.828125 165.234375 165.234375 166.640625 166.640625 168.046875 168.046875 169.453125 169.453125 170.859375 170.859375 172.265625 172.265625 173.671875 173.671875 175.078125 175.078125 176.484375 176.484375 177.890625 177.890625 179.296875 -time -days since 0000-1-1 -682565.5 682595.0 682624.5 -682550.0 682581.0 682581.0 682609.0 682609.0 682640.0 -latitude -degrees_north --88.9277353523 -87.538705213 -86.1414721015 -84.7423855907 -83.3425960441 -81.9424662992 -80.5421464346 -79.1417096486 -77.7411958655 -76.3406287024 -74.9400230196 -73.5393886338 -72.1387322892 -70.7380587725 -69.337371575 -67.9366733026 -66.5359659402 -65.135251026 -63.7345297708 -62.3338031405 -60.9330719152 -59.5323367318 -58.1315981156 -56.7308565037 -55.3301122627 -53.9293657026 -52.5286170871 -51.1278666424 -49.7271145631 -48.3263610182 -46.9256061547 -45.5248501013 -44.1240929714 -42.7233348649 -41.3225758706 -39.9218160676 -38.5210555266 -37.120294311 -35.7195324778 -34.3187700788 -32.9180071606 -31.5172437659 -30.1164799335 -28.7157156991 -27.3149510951 -25.9141861518 -24.5134208971 -23.1126553566 -21.7118895544 -20.311123513 -18.9103572532 -17.509590795 -16.1088241568 -14.7080573564 -13.3072904104 -11.906523335 -10.5057561452 -9.10498885605 -7.7042214816 -6.30345403571 -4.90268653183 -3.50191898313 -2.10115140258 -0.700383802973 0.700383802973 2.10115140258 3.50191898313 4.90268653183 6.30345403571 7.7042214816 9.10498885605 10.5057561452 11.906523335 13.3072904104 14.7080573564 16.1088241568 17.509590795 18.9103572532 20.311123513 21.7118895544 23.1126553566 24.5134208971 25.9141861518 27.3149510951 28.7157156991 30.1164799335 31.5172437659 32.9180071606 34.3187700788 35.7195324778 37.120294311 38.5210555266 39.9218160676 41.3225758706 42.7233348649 44.1240929714 45.5248501013 46.9256061547 48.3263610182 49.7271145631 51.1278666424 52.5286170871 53.9293657026 55.3301122627 56.7308565037 58.1315981156 59.5323367318 60.9330719152 62.3338031405 63.7345297708 65.135251026 66.5359659402 67.9366733026 69.337371575 70.7380587725 72.1387322892 73.5393886338 74.9400230196 76.3406287024 77.7411958655 79.1417096486 80.5421464346 81.9424662992 83.3425960441 84.7423855907 86.1414721015 87.538705213 88.9277353523 --90.0 -88.2332202827 -88.2332202827 -86.8400886573 -86.8400886573 -85.4419288461 -85.4419288461 -84.0424908174 -84.0424908174 -82.6425311716 -82.6425311716 -81.2423063669 -81.2423063669 -79.8419280416 -79.8419280416 -78.4414527571 -78.4414527571 -77.0409122839 -77.0409122839 -75.640325861 -75.640325861 -74.2397058267 -74.2397058267 -72.8390604615 -72.8390604615 -71.4383955308 -71.4383955308 -70.0377151737 -70.0377151737 -68.6370224388 -68.6370224388 -67.2363196214 -67.2363196214 -65.8356084831 -65.8356084831 -64.4348903984 -64.4348903984 -63.0341664557 -63.0341664557 -61.6334375279 -61.6334375279 -60.2327043235 -60.2327043235 -58.8319674237 -58.8319674237 -57.4312273097 -57.4312273097 -56.0304843832 -56.0304843832 -54.6297389826 -54.6297389826 -53.2289913948 -53.2289913948 -51.8282418647 -51.8282418647 -50.4274906027 -50.4274906027 -49.0267377906 -49.0267377906 -47.6259835864 -47.6259835864 -46.225228128 -46.225228128 -44.8244715363 -44.8244715363 -43.4237139181 -43.4237139181 -42.0229553678 -42.0229553678 -40.6221959691 -40.6221959691 -39.2214357971 -39.2214357971 -37.8206749188 -37.8206749188 -36.4199133944 -36.4199133944 -35.0191512783 -35.0191512783 -33.6183886197 -33.6183886197 -32.2176254633 -32.2176254633 -30.8168618497 -30.8168618497 -29.4160978163 -29.4160978163 -28.0153333971 -28.0153333971 -26.6145686235 -26.6145686235 -25.2138035245 -25.2138035245 -23.8130381268 -23.8130381268 -22.4122724555 -22.4122724555 -21.0115065337 -21.0115065337 -19.6107403831 -19.6107403831 -18.2099740241 -18.2099740241 -16.8092074759 -16.8092074759 -15.4084407566 -15.4084407566 -14.0076738834 -14.0076738834 -12.6069068727 -12.6069068727 -11.2061397401 -11.2061397401 -9.80537250065 -9.80537250065 -8.40460516882 -8.40460516882 -7.00383775865 -7.00383775865 -5.60307028377 -5.60307028377 -4.20230275748 -4.20230275748 -2.80153519286 -2.80153519286 -1.40076760278 -1.40076760278 0.0 0.0 1.40076760278 1.40076760278 2.80153519286 2.80153519286 4.20230275748 4.20230275748 5.60307028377 5.60307028377 7.00383775865 7.00383775865 8.40460516882 8.40460516882 9.80537250065 9.80537250065 11.2061397401 11.2061397401 12.6069068727 12.6069068727 14.0076738834 14.0076738834 15.4084407566 15.4084407566 16.8092074759 16.8092074759 18.2099740241 18.2099740241 19.6107403831 19.6107403831 21.0115065337 21.0115065337 22.4122724555 22.4122724555 23.8130381268 23.8130381268 25.2138035245 25.2138035245 26.6145686235 26.6145686235 28.0153333971 28.0153333971 29.4160978163 29.4160978163 30.8168618497 30.8168618497 32.2176254633 32.2176254633 33.6183886197 33.6183886197 35.0191512783 35.0191512783 36.4199133944 36.4199133944 37.8206749188 37.8206749188 39.2214357971 39.2214357971 40.6221959691 40.6221959691 42.0229553678 42.0229553678 43.4237139181 43.4237139181 44.8244715363 44.8244715363 46.225228128 46.225228128 47.6259835864 47.6259835864 49.0267377906 49.0267377906 50.4274906027 50.4274906027 51.8282418647 51.8282418647 53.2289913948 53.2289913948 54.6297389826 54.6297389826 56.0304843832 56.0304843832 57.4312273097 57.4312273097 58.8319674237 58.8319674237 60.2327043235 60.2327043235 61.6334375279 61.6334375279 63.0341664557 63.0341664557 64.4348903984 64.4348903984 65.8356084831 65.8356084831 67.2363196214 67.2363196214 68.6370224388 68.6370224388 70.0377151737 70.0377151737 71.4383955308 71.4383955308 72.8390604615 72.8390604615 74.2397058267 74.2397058267 75.640325861 75.640325861 77.0409122839 77.0409122839 78.4414527571 78.4414527571 79.8419280416 79.8419280416 81.2423063669 81.2423063669 82.6425311716 82.6425311716 84.0424908174 84.0424908174 85.4419288461 85.4419288461 86.8400886573 86.8400886573 88.2332202827 88.2332202827 90.0 -246.618438721 249.43963623 254.053329468 259.268554688 263.412414551 265.8097229 266.670593262 267.246765137 268.651824951 269.128448486 269.342498779 269.956451416 271.081512451 271.672485352 271.856781006 271.848175049 272.066101074 272.884338379 274.031982422 274.973571777 275.570831299 276.138458252 276.851898193 277.663452148 278.512756348 279.381744385 280.321411133 281.276824951 282.345001221 283.823913574 285.464874268 287.10949707 288.687194824 290.135742188 291.49710083 292.241271973 292.576507568 292.829864502 293.149200439 293.552032471 293.943664551 294.326690674 294.745910645 295.222412109 295.703460693 296.208282471 296.764862061 297.292144775 297.793579102 298.332214355 298.83581543 299.173217773 299.382202148 299.601043701 299.958496094 300.391082764 300.693756104 300.788604736 300.848999023 300.81842041 300.561889648 300.125457764 299.586669922 299.035705566 298.785003662 299.091674805 299.698364258 300.107971191 300.137908936 299.882507324 299.45413208 298.907104492 298.388702393 298.025848389 297.615661621 297.057373047 296.639678955 296.438598633 296.162841797 295.684234619 295.051849365 294.204315186 293.232055664 292.240814209 291.292877197 290.244750977 289.202484131 288.120544434 286.876464844 285.644073486 284.2371521 282.415283203 280.534576416 278.672515869 277.00680542 275.996246338 275.438537598 274.970611572 274.575897217 274.211181641 273.695587158 273.065246582 272.23614502 271.131622314 269.60256958 266.558135986 260.423217773 252.256469727 247.942260742 245.515975952 242.327835083 237.245178223 236.383224487 237.331771851 238.392303467 239.929489136 240.674850464 239.663894653 239.388763428 239.751846313 239.891387939 239.565231323 239.7293396 240.619338989 241.094177246 240.811813354 239.906219482 239.143417358 236.581466675 239.969787598 245.124206543 250.779312134 254.863372803 256.042907715 255.259567261 255.587783813 260.695739746 263.457824707 265.735748291 267.184661865 269.050354004 270.771911621 272.067138672 273.041046143 273.772155762 274.467681885 275.170959473 275.896728516 276.521850586 277.119537354 277.737884521 278.448242188 279.224822998 280.022094727 280.936340332 281.866271973 282.82333374 284.172637939 285.774017334 287.354949951 288.842834473 290.150268555 291.329711914 292.153381348 292.689575195 293.052215576 293.339569092 293.672119141 294.01385498 294.410919189 294.968444824 295.561126709 296.102600098 296.68737793 297.306213379 297.870880127 298.39465332 298.935394287 299.391113281 299.814758301 300.149169922 300.223022461 300.281799316 300.517700195 300.758239746 300.819763184 300.821502686 300.763122559 300.541442871 300.166229248 299.511352539 298.754302979 298.532562256 298.989654541 299.634277344 300.015899658 299.989105225 299.712005615 299.370483398 298.956207275 298.472351074 298.062164307 297.749267578 297.261230469 296.725921631 296.370574951 296.038482666 295.514221191 294.593444824 293.256744385 291.890380859 290.732299805 289.796234131 288.893249512 288.104431152 287.331115723 286.387512207 285.340087891 283.982757568 282.245635986 280.668762207 279.052825928 277.444152832 276.302307129 275.580627441 275.060272217 274.744171143 274.56338501 274.331542969 274.029785156 273.590148926 272.98324585 272.076934814 270.344909668 266.723876953 261.891479492 259.026641846 256.553039551 254.667266846 251.362915039 249.552505493 247.779724121 248.405136108 248.235183716 248.908691406 248.213928223 247.201843262 246.393417358 245.06993103 244.220352173 244.277175903 243.901748657 242.879867554 242.603927612 242.265609741 241.978012085 226.429214478 232.093566895 239.200317383 245.891540527 249.428115845 247.571289062 243.850479126 243.500564575 250.093383789 252.488372803 254.604537964 255.914154053 257.320068359 259.878875732 263.254394531 266.823699951 269.435516357 271.138275146 272.423614502 273.343780518 274.093383789 274.935974121 275.775970459 276.625091553 277.541717529 278.432983398 279.371948242 280.409515381 281.627502441 283.312896729 285.160858154 286.805603027 288.275390625 289.575256348 290.730651855 291.501617432 291.932373047 292.214385986 292.521606445 292.958679199 293.473754883 293.99041748 294.541381836 295.10748291 295.701263428 296.282073975 296.896484375 297.560974121 298.197967529 298.813690186 299.461914062 299.907592773 300.146453857 300.344085693 300.593780518 300.846435547 301.039520264 301.007720947 300.83682251 300.813781738 300.765808105 300.275115967 299.451721191 298.679138184 298.357055664 298.832092285 299.702911377 300.118652344 299.928039551 299.575012207 299.287872314 298.913238525 298.464324951 298.004943848 297.594970703 297.144775391 296.675323486 296.313476562 295.976531982 295.439971924 294.509857178 293.157653809 291.708435059 290.462402344 289.556274414 288.673858643 287.796600342 286.849700928 285.715820312 284.566558838 283.188873291 281.529998779 280.255828857 279.042785645 277.744567871 276.810974121 276.240722656 275.764373779 275.310455322 274.892730713 274.456787109 274.129302979 273.66418457 272.912445068 272.054443359 270.515380859 266.913146973 261.358032227 256.619415283 253.773101807 251.434280396 248.608535767 247.952102661 246.549621582 246.494949341 245.054000854 244.974716187 245.719024658 246.558624268 246.830062866 246.083984375 245.327133179 244.755508423 244.391143799 243.627746582 242.395385742 241.645187378 240.783737183 246.644577026 249.52947998 254.265045166 259.548034668 263.626800537 265.915771484 266.725860596 267.306854248 268.370727539 268.635925293 268.861663818 269.494262695 270.56161499 271.089263916 271.525115967 271.765930176 271.99987793 272.775390625 273.944152832 274.926361084 275.548828125 276.145568848 276.875793457 277.692108154 278.529449463 279.385955811 280.299163818 281.2265625 282.277679443 283.779724121 285.473266602 287.13192749 288.622772217 289.943817139 291.184967041 291.886810303 292.228515625 292.557861328 292.982025146 293.443481445 293.842773438 294.260894775 294.718597412 295.157440186 295.613494873 296.154693604 296.718688965 297.216949463 297.725646973 298.291564941 298.796173096 299.135925293 299.342132568 299.539733887 299.871765137 300.309844971 300.638214111 300.788696289 300.846710205 300.791320801 300.521972656 300.05480957 299.469451904 298.917510986 298.70022583 299.006378174 299.60824585 300.061401367 300.144134521 299.905883789 299.444122314 298.874511719 298.370941162 298.021118164 297.612701416 297.04864502 296.594024658 296.345489502 296.074401855 295.636047363 295.017333984 294.163848877 293.176605225 292.13293457 291.18649292 290.141967773 289.094238281 287.996917725 286.744812012 285.500030518 284.071746826 282.33001709 280.541687012 278.796020508 277.281890869 276.344512939 275.76171875 275.284118652 274.869995117 274.397644043 273.815185547 273.151641846 272.330535889 271.272003174 269.783813477 266.526977539 260.526153564 253.182922363 249.372375488 247.44732666 244.386077881 238.215774536 236.937561035 237.568969727 239.074798584 240.336547852 240.801040649 239.887374878 239.528839111 239.758758545 239.868255615 239.480300903 239.612960815 240.574356079 241.145812988 240.817153931 239.905715942 239.136505127 236.657394409 240.039230347 245.310897827 251.062774658 255.042419434 256.004211426 255.205627441 255.728683472 260.674224854 263.092498779 265.48526001 266.923919678 268.626495361 270.496002197 271.891784668 273.0027771 273.722564697 274.403137207 275.16027832 275.887451172 276.492126465 277.099182129 277.741210938 278.440673828 279.22064209 280.03302002 280.914001465 281.775115967 282.717315674 284.151428223 285.863922119 287.469451904 288.833618164 290.039276123 291.169494629 291.972961426 292.481109619 292.834777832 293.177947998 293.555328369 293.899780273 294.29864502 294.832092285 295.370147705 295.934814453 296.609039307 297.257232666 297.792785645 298.3543396 298.907470703 299.334106445 299.717926025 300.058898926 300.192993164 300.274291992 300.459838867 300.636016846 300.711273193 300.754608154 300.713470459 300.510620117 300.114105225 299.406463623 298.645843506 298.429840088 298.870941162 299.544921875 299.991363525 300.00012207 299.714324951 299.375549316 298.969207764 298.488861084 298.077941895 297.776550293 297.299835205 296.723236084 296.301971436 295.944458008 295.462310791 294.586029053 293.236602783 291.826019287 290.609680176 289.676452637 288.7940979 288.021881104 287.232025146 286.269317627 285.246185303 283.974609375 282.422637939 280.938293457 279.380249023 277.837585449 276.753723145 276.043029785 275.547851562 275.169219971 274.82623291 274.52545166 274.201263428 273.76574707 273.187530518 272.255859375 270.277648926 266.591583252 262.394836426 259.742858887 257.568847656 255.458633423 251.869338989 249.616912842 247.807373047 248.615020752 248.280044556 248.980895996 248.22076416 247.235748291 246.435882568 245.137954712 244.274749756 244.30696106 243.779052734 242.744613647 242.533859253 242.227600098 241.957763672 226.510070801 232.301651001 239.468048096 246.187362671 249.523635864 247.296981812 243.565567017 243.37828064 250.012756348 252.555282593 255.013381958 256.599914551 258.21987915 260.536834717 263.57635498 267.009735107 269.506072998 271.173187256 272.482879639 273.387786865 274.115814209 274.957000732 275.800811768 276.650726318 277.586395264 278.491912842 279.410766602 280.390319824 281.559692383 283.312194824 285.308258057 287.01965332 288.355895996 289.519897461 290.615631104 291.353790283 291.738525391 291.969207764 292.33795166 292.897888184 293.45489502 293.940216064 294.443847656 294.993133545 295.590881348 296.204467773 296.833251953 297.462677002 298.076141357 298.719116211 299.409606934 299.888549805 300.131256104 300.372467041 300.677612305 300.906402588 301.039855957 301.022766113 300.910888672 300.899810791 300.815734863 300.265197754 299.411712646 298.661621094 298.347717285 298.742675781 299.583374023 300.098876953 299.973205566 299.591094971 299.283477783 298.916717529 298.477661133 298.022888184 297.607574463 297.143890381 296.659332275 296.270294189 295.913330078 295.431610107 294.58996582 293.282592773 291.850128174 290.560150146 289.58203125 288.605957031 287.706359863 286.800262451 285.70501709 284.554870605 283.152282715 281.534545898 280.30291748 279.158081055 277.951629639 277.086181641 276.50189209 276.010437012 275.590423584 275.139282227 274.677307129 274.320251465 273.845367432 273.097900391 272.219543457 270.48059082 266.85559082 261.776092529 257.483032227 254.787811279 252.435317993 249.206802368 248.038711548 246.477218628 247.005187988 245.33505249 245.295333862 245.975021362 246.661972046 246.906951904 246.047348022 245.316864014 244.716430664 244.370681763 243.582748413 242.316543579 241.609725952 240.755722046 246.674530029 249.638015747 254.443939209 259.806640625 263.877410889 265.975646973 266.756988525 267.319152832 268.085876465 268.198608398 268.43182373 269.042999268 270.024475098 270.59866333 271.155090332 271.627746582 271.925964355 272.688354492 273.863739014 274.871643066 275.515045166 276.13079834 276.87322998 277.700561523 278.559112549 279.427093506 280.317138672 281.225189209 282.268859863 283.784820557 285.503875732 287.154083252 288.596740723 289.776580811 290.84286499 291.500854492 291.872192383 292.287109375 292.819244385 293.358428955 293.774169922 294.195770264 294.676605225 295.116394043 295.574615479 296.125732422 296.662506104 297.133209229 297.649841309 298.226074219 298.726928711 299.105163574 299.364654541 299.582489014 299.883087158 300.274139404 300.586242676 300.769744873 300.831848145 300.754943848 300.458526611 299.945098877 299.318847656 298.773223877 298.574859619 298.884094238 299.49710083 299.993164062 300.115325928 299.910186768 299.450317383 298.861328125 298.343994141 297.985717773 297.589660645 297.042541504 296.551849365 296.239074707 295.974945068 295.600250244 295.013366699 294.14553833 293.134246826 292.049957275 291.086303711 290.032928467 288.980834961 287.863067627 286.590759277 285.265441895 283.806213379 282.212036133 280.557403564 278.916046143 277.602539062 276.70690918 276.062561035 275.540008545 275.113769531 274.618438721 273.980163574 273.264526367 272.435333252 271.411224365 269.913818359 266.583618164 260.639526367 254.061935425 250.507736206 248.735473633 245.757247925 239.210968018 237.616775513 237.792984009 239.226501465 240.362518311 240.856704712 240.055389404 239.594955444 239.737869263 239.797897339 239.319137573 239.471313477 240.51272583 241.174865723 240.790679932 239.900375366 239.132324219 236.546310425 240.168960571 245.491928101 251.32421875 255.227111816 255.946899414 255.221542358 255.938018799 260.523193359 262.791412354 265.284240723 266.775085449 268.242004395 270.206329346 271.69342041 272.910736084 273.650115967 274.334625244 275.137207031 275.865112305 276.457855225 277.078674316 277.738128662 278.428833008 279.235565186 280.098175049 280.971160889 281.77130127 282.701538086 284.202789307 285.966552734 287.544433594 288.8152771 289.907501221 290.982757568 291.77520752 292.262786865 292.612915039 293.012786865 293.466888428 293.877166748 294.287597656 294.771789551 295.248596191 295.825469971 296.55178833 297.214935303 297.733062744 298.306610107 298.865753174 299.286865234 299.664642334 299.992706299 300.152984619 300.253631592 300.399597168 300.523956299 300.604980469 300.694030762 300.696746826 300.51852417 300.078796387 299.31741333 298.544433594 298.320587158 298.76739502 299.484893799 299.968933105 299.989868164 299.706329346 299.378356934 298.986206055 298.512512207 298.069702148 297.729736328 297.276611328 296.72567749 296.270446777 295.897857666 295.462249756 294.632354736 293.256652832 291.787261963 290.495452881 289.550415039 288.704437256 287.985076904 287.195709229 286.182434082 285.081085205 283.862518311 282.52947998 281.136291504 279.621520996 278.20892334 277.170318604 276.461334229 275.974304199 275.567230225 275.137939453 274.72479248 274.343780518 273.911773682 273.344726562 272.30166626 270.10760498 266.281219482 262.720214844 260.381774902 258.346801758 256.397705078 252.374328613 249.903335571 248.010971069 248.362335205 248.412445068 248.919708252 248.19694519 247.183364868 246.425735474 245.163360596 244.389419556 244.313827515 243.664978027 242.622329712 242.470825195 242.184234619 241.937011719 226.638366699 232.460479736 239.744369507 246.444061279 249.54901123 247.009414673 243.364059448 243.472579956 249.754226685 252.801956177 255.460113525 257.19921875 258.943878174 261.064422607 263.852264404 267.161407471 269.576263428 271.206817627 272.527160645 273.419372559 274.142486572 274.991210938 275.825408936 276.658752441 277.618530273 278.577575684 279.514892578 280.446624756 281.577667236 283.390533447 285.478363037 287.175109863 288.393280029 289.440093994 290.454193115 291.119445801 291.465545654 291.713195801 292.172454834 292.826507568 293.405578613 293.873718262 294.360931396 294.900177002 295.500335693 296.14465332 296.784942627 297.377655029 297.976013184 298.639678955 299.355560303 299.853759766 300.106536865 300.37020874 300.67300415 300.841888428 300.943481445 300.991546631 300.961395264 300.971862793 300.876678467 300.274047852 299.384002686 298.658905029 298.372833252 298.724517822 299.526672363 300.073303223 299.984191895 299.599731445 299.288543701 298.927856445 298.490325928 298.023376465 297.589019775 297.134368896 296.655975342 296.241607666 295.868041992 295.421478271 294.631866455 293.372772217 291.970581055 290.647827148 289.583892822 288.53704834 287.649749756 286.764007568 285.695220947 284.527038574 283.151519775 281.650695801 280.406768799 279.27154541 278.179260254 277.35949707 276.752166748 276.232299805 275.821014404 275.378875732 274.880371094 274.46697998 273.976043701 273.229766846 272.268432617 270.321838379 266.519866943 261.763671875 258.202880859 255.686752319 253.556747437 249.804290771 248.280151367 246.609725952 246.89630127 245.768569946 245.740783691 246.269424438 246.738983154 246.960159302 245.991989136 245.310638428 244.689208984 244.376541138 243.528884888 242.238510132 241.563842773 240.72718811 246.708908081 249.724822998 254.642089844 260.060028076 264.077056885 266.023620605 266.751586914 267.277770996 267.915710449 268.031860352 268.238952637 268.628173828 269.516113281 270.231414795 270.826538086 271.447540283 271.848266602 272.601776123 273.777770996 274.806976318 275.477478027 276.098724365 276.836547852 277.670349121 278.559448242 279.448974609 280.344543457 281.254425049 282.299102783 283.813262939 285.534576416 287.205596924 288.615447998 289.657867432 290.558837891 291.179992676 291.61315918 292.116882324 292.724487305 293.309692383 293.744354248 294.148834229 294.635955811 295.092102051 295.570037842 296.106231689 296.59588623 297.048950195 297.586151123 298.149261475 298.626586914 299.052490234 299.396850586 299.65411377 299.937072754 300.291412354 300.577850342 300.746765137 300.7890625 300.698242188 300.385192871 299.826141357 299.170318604 298.622528076 298.405181885 298.700134277 299.358459473 299.914764404 300.06817627 299.892059326 299.454589844 298.851928711 298.313690186 297.9480896 297.574859619 297.045043945 296.507507324 296.12487793 295.877258301 295.575531006 295.020812988 294.136505127 293.102722168 291.9894104 290.992736816 289.915039062 288.853759766 287.718597412 286.43737793 285.043243408 283.534820557 282.057678223 280.576538086 279.087860107 277.895996094 277.019165039 276.319122314 275.748321533 275.283203125 274.781768799 274.161712646 273.452056885 272.581085205 271.571655273 269.944702148 266.596710205 260.710205078 254.635147095 251.259460449 249.537918091 246.323959351 240.265197754 238.427658081 238.364303589 239.295837402 240.334091187 240.971221924 240.240631104 239.64616394 239.68661499 239.648162842 239.144943237 239.370529175 240.437347412 241.154708862 240.795959473 239.873397827 239.124938965 236.599319458 240.269729614 245.64704895 251.550796509 255.349594116 255.879394531 255.235580444 256.199737549 260.338226318 262.69354248 265.183349609 266.706451416 268.014038086 269.944854736 271.493499756 272.761962891 273.539886475 274.252593994 275.09286499 275.826049805 276.415893555 277.049682617 277.709533691 278.390411377 279.222229004 280.14453125 281.048339844 281.832672119 282.769775391 284.314483643 286.081665039 287.632720947 288.847137451 289.81817627 290.804229736 291.58303833 292.082336426 292.459960938 292.896240234 293.429840088 293.927856445 294.350982666 294.783599854 295.236175537 295.822570801 296.533905029 297.144592285 297.639434814 298.231689453 298.822662354 299.282196045 299.678436279 299.960784912 300.090301514 300.191558838 300.339355469 300.457427979 300.546600342 300.647094727 300.672088623 300.512634277 300.045562744 299.248168945 298.444488525 298.178161621 298.629669189 299.411437988 299.945465088 299.983062744 299.704040527 299.36541748 298.983062744 298.53894043 298.074584961 297.675445557 297.24432373 296.731506348 296.242095947 295.861175537 295.492706299 294.740264893 293.367675781 291.835296631 290.430175781 289.430969238 288.601959229 287.932678223 287.166534424 286.134368896 284.93145752 283.675048828 282.472290039 281.181549072 279.753173828 278.502044678 277.520629883 276.806945801 276.316680908 275.879608154 275.38381958 274.917510986 274.508575439 274.050262451 273.465515137 272.232330322 269.790649414 265.850372314 262.868011475 260.765319824 258.994384766 256.791290283 252.926040649 250.497161865 248.370956421 248.387161255 248.437316895 248.862014771 248.17880249 247.122802734 246.347915649 245.152160645 244.533294678 244.274749756 243.5912323 242.56187439 242.415206909 242.140213013 241.916061401 226.599624634 232.578048706 239.967712402 246.660125732 249.552474976 246.743835449 243.23286438 243.65083313 249.370300293 253.191207886 255.938735962 257.658081055 259.492004395 261.462860107 264.08682251 267.29309082 269.646270752 271.239044189 272.550689697 273.439086914 274.17755127 275.038513184 275.850219727 276.650634766 277.624053955 278.652374268 279.64831543 280.56942749 281.690582275 283.546051025 285.648864746 287.294647217 288.431945801 289.383239746 290.306549072 290.90914917 291.258544922 291.563751221 292.067382812 292.743560791 293.326446533 293.800964355 294.303863525 294.848693848 295.453094482 296.095825195 296.710388184 297.269622803 297.887878418 298.589782715 299.315216064 299.826751709 300.100067139 300.361297607 300.615570068 300.730529785 300.852111816 300.984924316 300.999511719 300.994293213 300.883209229 300.267486572 299.378387451 298.676696777 298.393463135 298.703887939 299.47366333 300.029632568 299.971801758 299.610992432 299.295074463 298.943878174 298.528320312 298.059967041 297.587982178 297.124206543 296.642486572 296.202270508 295.828582764 295.420654297 294.677886963 293.460632324 292.077484131 290.698577881 289.568817139 288.509460449 287.640533447 286.711303711 285.600463867 284.39251709 283.063323975 281.728820801 280.522766113 279.395965576 278.390258789 277.582550049 276.94128418 276.40045166 275.982147217 275.532806396 275.010009766 274.574462891 274.053253174 273.2940979 272.187133789 270.004730225 265.962799072 261.460968018 258.463134766 256.403045654 254.006286621 250.508224487 248.739151001 246.951965332 246.817947388 246.088790894 246.171966553 246.526794434 246.830657959 247.000961304 245.931945801 245.354034424 244.75630188 244.410705566 243.487960815 242.206985474 241.514816284 240.697143555 246.732223511 249.794876099 254.824508667 260.30368042 264.222991943 266.035064697 266.7265625 267.057373047 267.70199585 267.885772705 268.182067871 268.380706787 269.128875732 269.908447266 270.579498291 271.250213623 271.764404297 272.50112915 273.655883789 274.698913574 275.426055908 276.052825928 276.752258301 277.581329346 278.504547119 279.421356201 280.346954346 281.289825439 282.338653564 283.830383301 285.546569824 287.244384766 288.625427246 289.584259033 290.357910156 290.942077637 291.462585449 292.059020996 292.671600342 293.242034912 293.689605713 294.089263916 294.581634521 295.054260254 295.541412354 296.053070068 296.517303467 296.975860596 297.523803711 298.051483154 298.493896484 298.959197998 299.385345459 299.686248779 299.987518311 300.366210938 300.628692627 300.710357666 300.704681396 300.622070312 300.314208984 299.716827393 299.048248291 298.497833252 298.228027344 298.469177246 299.183013916 299.837036133 300.051757812 299.882965088 299.445343018 298.830108643 298.28692627 297.928466797 297.571411133 297.047393799 296.472991943 296.045593262 295.824279785 295.579406738 295.043212891 294.150939941 293.10043335 291.960845947 290.917480469 289.818756104 288.742095947 287.591186523 286.330474854 284.916137695 283.373016357 281.963806152 280.614074707 279.256958008 278.177825928 277.341186523 276.591156006 275.923034668 275.388000488 274.876373291 274.300262451 273.614501953 272.78302002 271.719024658 269.93157959 266.401245117 260.640136719 254.981460571 252.003936768 250.114212036 245.962417603 241.304824829 239.128890991 239.056808472 239.718078613 240.27822876 240.865432739 240.354431152 239.736282349 239.615570068 239.427764893 239.018417358 239.300354004 240.354232788 241.138656616 240.799560547 239.879257202 239.105010986 236.667755127 240.363220215 245.799942017 251.744598389 255.440093994 255.801177979 255.273254395 256.46774292 260.124359131 262.736480713 265.194274902 266.809112549 268.108062744 269.817565918 271.289733887 272.545196533 273.363800049 274.113098145 274.99786377 275.742553711 276.351257324 276.993896484 277.632080078 278.302490234 279.157928467 280.117797852 281.076293945 281.925048828 282.9168396 284.473602295 286.215301514 287.750213623 288.939056396 289.815429688 290.657775879 291.383758545 291.928161621 292.362915039 292.848266602 293.444549561 293.981231689 294.418426514 294.854888916 295.354827881 295.96496582 296.565002441 297.029418945 297.486724854 298.101470947 298.755493164 299.291229248 299.7059021 299.947235107 300.018218994 300.12902832 300.322265625 300.481384277 300.583648682 300.642730713 300.613555908 300.436859131 299.965576172 299.172241211 298.353179932 298.042816162 298.471984863 299.313446045 299.917755127 300.018066406 299.752716064 299.366973877 298.961761475 298.569274902 298.123382568 297.681243896 297.261810303 296.760955811 296.216308594 295.816253662 295.516143799 294.86630249 293.564056396 291.982391357 290.437713623 289.34362793 288.505187988 287.839050293 287.076934814 286.059814453 284.786773682 283.46081543 282.334442139 281.152069092 279.810699463 278.708007812 277.839080811 277.106079102 276.563690186 276.083343506 275.55581665 275.088226318 274.663787842 274.211914062 273.540039062 272.121612549 269.344299316 265.432617188 262.97442627 261.20413208 259.474304199 256.726959229 253.602737427 250.582580566 248.978012085 248.631164551 248.523284912 248.832733154 248.2212677 247.040237427 246.2215271 245.219573975 244.662231445 244.234695435 243.599334717 242.524169922 242.357177734 242.110778809 241.891311646 226.717697144 232.778717041 240.140426636 246.866394043 249.539794922 246.474914551 243.119918823 243.93132019 248.78263855 253.586639404 256.379669189 258.003143311 259.852905273 261.801605225 264.329833984 267.417022705 269.709899902 271.25894165 272.545562744 273.445281982 274.225402832 275.098907471 275.871948242 276.635894775 277.6144104 278.699035645 279.778503418 280.75112915 281.906494141 283.771606445 285.8125 287.371520996 288.439727783 289.322692871 290.144195557 290.71572876 291.125183105 291.506103516 292.002410889 292.64239502 293.223999023 293.734863281 294.280883789 294.855957031 295.462188721 296.059661865 296.59854126 297.143798828 297.813690186 298.543609619 299.239196777 299.759552002 300.091278076 300.369476318 300.571899414 300.677001953 300.871185303 301.046417236 301.01361084 300.942108154 300.814331055 300.261016846 299.456695557 298.791717529 298.46862793 298.680236816 299.395965576 299.964111328 299.962371826 299.641052246 299.291320801 298.940124512 298.588562012 298.157043457 297.634765625 297.119903564 296.614074707 296.149993896 295.789031982 295.415405273 294.713439941 293.548919678 292.178375244 290.737731934 289.563110352 288.516876221 287.61605835 286.582305908 285.410339355 284.190216064 282.913452148 281.732788086 280.590789795 279.467559814 278.520477295 277.726745605 277.057800293 276.503265381 276.066711426 275.606292725 275.09765625 274.637115479 274.082061768 273.26852417 272.011108398 269.544189453 265.316925049 261.104949951 258.692108154 256.819091797 254.064926147 251.312057495 248.808837891 247.478530884 247.06880188 246.488250732 246.496948242 246.742538452 246.917221069 246.978485107 246.026748657 245.475158691 244.897735596 244.531219482 243.479766846 242.186096191 241.473114014 240.661407471 246.76020813 249.868927002 254.975265503 260.516418457 264.340515137 266.067169189 266.676635742 267.041717529 267.583496094 267.909912109 268.170715332 268.361938477 269.108306885 269.777679443 270.463348389 271.132995605 271.684844971 272.392700195 273.52243042 274.577819824 275.366424561 276.00592041 276.65838623 277.471557617 278.410308838 279.332550049 280.290588379 281.286224365 282.328857422 283.786743164 285.490997314 287.170562744 288.536376953 289.505493164 290.222747803 290.772735596 291.335876465 291.97064209 292.548370361 293.063110352 293.510955811 293.951507568 294.487121582 295.006622314 295.493499756 295.99230957 296.46661377 296.937042236 297.462280273 297.959075928 298.425079346 298.936767578 299.387237549 299.696960449 300.022033691 300.432281494 300.657501221 300.675048828 300.662506104 300.612670898 300.300811768 299.644165039 298.915893555 298.336303711 298.063720703 298.283630371 299.016143799 299.737731934 300.01864624 299.854095459 299.414672852 298.820831299 298.288421631 297.907714844 297.523071289 296.98260498 296.404083252 295.989257812 295.796630859 295.589691162 295.09677124 294.233062744 293.158569336 291.96786499 290.868469238 289.758514404 288.669586182 287.497131348 286.281982422 284.893341064 283.351348877 281.981140137 280.68536377 279.459503174 278.434082031 277.591461182 276.837310791 276.125640869 275.478973389 274.921966553 274.369110107 273.671508789 272.897735596 271.84753418 269.847076416 266.04006958 260.335784912 255.361480713 252.843811035 250.508804321 246.743988037 242.503768921 240.969055176 240.079452515 240.252624512 240.27885437 240.643753052 240.355819702 239.836517334 239.570159912 239.245666504 238.873855591 239.180297852 240.271087646 241.119796753 240.812835693 239.924346924 239.077651978 236.73777771 240.413192749 245.968734741 251.918258667 255.503311157 255.687438965 255.315490723 256.710906982 259.986450195 262.874420166 265.213012695 266.913421631 268.317047119 269.92376709 271.192169189 272.341918945 273.159057617 273.932403564 274.847381592 275.608764648 276.257385254 276.914337158 277.52230835 278.197418213 279.067993164 280.01651001 281.012878418 281.970214844 283.027954102 284.540649414 286.226196289 287.736114502 288.932769775 289.801574707 290.55380249 291.214233398 291.766143799 292.257446289 292.792755127 293.4012146 293.939971924 294.401275635 294.911132812 295.491668701 296.091094971 296.603851318 296.99822998 297.438049316 298.040496826 298.684906006 299.256134033 299.67980957 299.92578125 300.019927979 300.16003418 300.363861084 300.556488037 300.683044434 300.702789307 300.61416626 300.395721436 299.87588501 299.069702148 298.294616699 298.002288818 298.412475586 299.241149902 299.868438721 300.027984619 299.801635742 299.392242432 298.965637207 298.597991943 298.175323486 297.708984375 297.279083252 296.772216797 296.204864502 295.794799805 295.506347656 294.926513672 293.771606445 292.227600098 290.571136475 289.32522583 288.419342041 287.69934082 286.897644043 285.915344238 284.627990723 283.246002197 282.172729492 281.102996826 279.897247314 278.900299072 278.096557617 277.376251221 276.782287598 276.221008301 275.677215576 275.224975586 274.776367188 274.332672119 273.591094971 271.974273682 268.792175293 265.235290527 263.173553467 261.623046875 259.616760254 257.167205811 254.33480835 251.66998291 249.99961853 249.048934937 248.754257202 248.814697266 248.279876709 246.986526489 246.108688354 245.28704834 244.745895386 244.258712769 243.595428467 242.502166748 242.3019104 242.092285156 241.863937378 226.67565918 232.906204224 240.349227905 247.055557251 249.471435547 246.2134552 243.096832275 244.295944214 248.638381958 253.800415039 256.703887939 258.259613037 260.063903809 262.062072754 264.539916992 267.499206543 269.738006592 271.249145508 272.516571045 273.445068359 274.27331543 275.148101807 275.883575439 276.637786865 277.623962402 278.716003418 279.846099854 280.900085449 282.102905273 283.93447876 285.892456055 287.35345459 288.362823486 289.21005249 289.971893311 290.54107666 291.00012207 291.426696777 291.916534424 292.532501221 293.134246826 293.684234619 294.273162842 294.862701416 295.446899414 296.012542725 296.546020508 297.13092041 297.819732666 298.494384766 299.122833252 299.666992188 300.094665527 300.407684326 300.575958252 300.668670654 300.864074707 300.985931396 300.894683838 300.833465576 300.781616211 300.293518066 299.550842285 298.925384521 298.59777832 298.76461792 299.420318604 299.941497803 299.954193115 299.670043945 299.306854248 298.935119629 298.620391846 298.221893311 297.663421631 297.102813721 296.588165283 296.134918213 295.773162842 295.386505127 294.707763672 293.621643066 292.294342041 290.838623047 289.647003174 288.57421875 287.544708252 286.386260986 285.210998535 284.021392822 282.806030273 281.716888428 280.634277344 279.529052734 278.591308594 277.787841797 277.110992432 276.558074951 276.099517822 275.627960205 275.129394531 274.610015869 274.002349854 273.145446777 271.718963623 268.955871582 264.597290039 260.893096924 258.933837891 257.066711426 254.554992676 252.087371826 249.870071411 248.244995117 247.619781494 247.09588623 246.74256897 246.925582886 246.981170654 246.983428955 246.218765259 245.61505127 245.041687012 244.644729614 243.531951904 242.182067871 241.435897827 240.621749878 246.791290283 249.965759277 255.162231445 260.713928223 264.450317383 266.02444458 266.596862793 267.005828857 267.485748291 268.026519775 268.235015869 268.447418213 269.182403564 269.779876709 270.412414551 271.067810059 271.600799561 272.286102295 273.381347656 274.457977295 275.305450439 275.96875 276.584991455 277.377441406 278.310882568 279.209533691 280.184661865 281.227722168 282.272216797 283.689849854 285.364532471 286.999542236 288.347442627 289.346557617 290.063842773 290.592803955 291.166503906 291.822753906 292.374176025 292.849731445 293.298797607 293.780151367 294.392486572 294.994903564 295.496704102 295.961914062 296.421936035 296.882781982 297.38583374 297.891174316 298.419403076 298.98046875 299.424377441 299.718566895 300.071624756 300.475097656 300.644927979 300.659423828 300.700744629 300.672943115 300.334106445 299.623260498 298.810974121 298.157348633 297.889984131 298.132232666 298.880645752 299.634765625 299.959472656 299.794799805 299.368041992 298.821380615 298.30480957 297.895721436 297.488525391 296.942169189 296.348327637 295.927490234 295.740509033 295.572418213 295.150848389 294.330688477 293.221252441 291.972961426 290.825164795 289.70324707 288.607299805 287.435211182 286.280517578 284.957214355 283.472564697 282.118255615 280.824310303 279.675720215 278.678894043 277.811065674 277.05657959 276.316131592 275.576690674 274.954284668 274.347900391 273.596710205 272.83581543 271.843414307 269.662658691 265.59173584 259.981750488 255.976242065 253.780075073 251.232910156 247.970535278 244.069946289 242.81362915 241.40574646 240.785339355 240.485824585 240.668701172 240.44569397 239.889129639 239.539215088 239.083786011 238.667221069 238.978118896 240.155899048 241.102172852 240.851806641 239.968231201 239.048553467 236.862792969 240.490661621 246.110046387 252.069534302 255.53944397 255.57975769 255.380371094 256.951934814 259.904205322 262.990356445 265.281616211 267.035644531 268.493011475 270.016235352 271.138885498 272.172943115 272.953338623 273.734466553 274.663665771 275.445281982 276.139343262 276.820098877 277.409454346 278.105163574 278.984283447 279.894958496 280.906433105 281.958953857 283.051757812 284.4871521 286.08505249 287.540496826 288.742889404 289.650268555 290.402252197 291.038909912 291.58996582 292.134429932 292.703857422 293.301391602 293.847198486 294.360015869 294.959381104 295.573883057 296.148925781 296.638702393 297.044067383 297.488647461 298.058776855 298.648345947 299.200378418 299.632598877 299.89364624 300.021057129 300.170196533 300.367858887 300.585998535 300.731018066 300.727600098 300.619354248 300.385742188 299.818511963 298.98236084 298.241027832 297.975524902 298.369110107 299.18548584 299.832092285 300.019958496 299.819824219 299.40335083 298.970092773 298.62322998 298.224334717 297.751495361 297.293823242 296.766815186 296.196563721 295.775695801 295.469512939 294.942047119 293.938476562 292.480499268 290.76171875 289.353240967 288.322387695 287.536895752 286.714691162 285.774932861 284.496246338 283.096191406 282.046020508 281.075195312 280.013244629 279.088531494 278.313690186 277.6144104 276.96963501 276.349334717 275.796844482 275.318023682 274.818847656 274.362884521 273.595245361 271.778198242 268.147979736 265.228942871 263.553771973 262.082061768 260.135772705 257.562072754 254.744934082 252.970245361 251.166275024 249.591445923 248.889556885 248.770629883 248.30140686 246.960754395 245.978179932 245.255661011 244.839172363 244.243041992 243.543746948 242.477813721 242.2474823 242.076797485 241.835174561 226.914978027 233.099304199 240.584060669 247.192337036 249.381896973 245.967468262 243.170639038 244.70539856 248.69090271 253.818527222 256.850036621 258.470916748 260.190765381 262.242645264 264.701904297 267.551849365 269.743041992 271.220123291 272.473632812 273.443481445 274.317718506 275.188079834 275.895568848 276.656677246 277.654022217 278.72177124 279.864135742 280.99710083 282.236846924 284.003326416 285.867797852 287.240722656 288.196533203 289.039337158 289.793395996 290.376037598 290.86050415 291.313873291 291.815368652 292.433837891 293.051239014 293.629943848 294.24786377 294.836364746 295.403961182 295.968048096 296.543457031 297.180633545 297.854675293 298.451049805 299.033843994 299.616485596 300.098052979 300.424224854 300.568450928 300.645263672 300.816864014 300.873352051 300.763641357 300.765625 300.796386719 300.328948975 299.590759277 298.96786499 298.645263672 298.829528809 299.470397949 299.946655273 299.94140625 299.689605713 299.352142334 298.977203369 298.664428711 298.274139404 297.700866699 297.104614258 296.565795898 296.125762939 295.770690918 295.374755859 294.732727051 293.719024658 292.426635742 290.984375 289.78225708 288.675567627 287.542266846 286.318878174 285.194824219 284.023071289 282.83102417 281.741973877 280.649536133 279.562805176 278.622009277 277.813995361 277.147125244 276.59197998 276.100006104 275.606079102 275.064910889 274.45993042 273.787872314 272.880187988 271.262329102 268.18371582 263.90637207 260.949279785 259.241149902 257.377410889 255.098434448 252.618515015 250.84312439 249.151306152 248.317749023 247.702392578 247.023956299 247.088623047 247.102493286 247.018600464 246.32975769 245.75592041 245.112594604 244.741867065 243.568115234 242.188858032 241.397293091 240.579437256 246.838272095 250.025360107 255.300186157 260.885772705 264.549926758 265.99395752 266.496887207 266.898590088 267.451782227 268.149230957 268.339691162 268.596038818 269.256835938 269.818389893 270.42010498 271.042694092 271.527404785 272.188720703 273.242858887 274.336212158 275.237854004 275.937194824 276.534881592 277.306274414 278.222106934 279.075286865 280.045532227 281.127410889 282.181335449 283.558685303 285.192626953 286.774169922 288.097290039 289.106414795 289.850036621 290.390167236 290.984619141 291.660247803 292.200897217 292.672637939 293.12689209 293.637084961 294.329650879 295.009460449 295.523620605 295.939147949 296.356201172 296.805236816 297.314849854 297.855041504 298.42956543 299.014770508 299.433837891 299.714172363 300.102050781 300.480834961 300.602264404 300.653198242 300.769836426 300.729156494 300.342468262 299.625366211 298.773193359 298.044036865 297.765472412 298.026031494 298.781402588 299.559692383 299.914611816 299.742980957 299.324157715 298.822418213 298.316680908 297.884429932 297.481811523 296.953033447 296.343200684 295.898254395 295.686523438 295.539642334 295.190124512 294.420562744 293.27947998 291.988342285 290.799072266 289.64175415 288.516143799 287.364837646 286.282653809 285.020050049 283.621185303 282.318603516 281.050140381 279.937713623 278.934417725 278.013885498 277.239471436 276.467468262 275.658569336 274.986755371 274.255645752 273.387573242 272.622436523 271.657165527 269.381896973 264.99887085 259.960693359 256.694610596 254.744873047 252.407608032 249.219909668 246.245285034 244.401489258 242.841796875 241.412963867 240.841125488 240.886474609 240.514144897 239.913970947 239.514892578 238.902694702 238.402206421 238.749771118 240.030670166 241.068786621 240.919525146 240.006027222 239.021514893 236.807647705 240.602508545 246.265579224 252.218200684 255.539169312 255.495223999 255.393798828 257.116973877 259.865936279 263.135620117 265.41027832 267.099761963 268.562591553 270.047424316 271.085601807 272.018859863 272.7605896 273.527099609 274.458007812 275.261444092 276.001342773 276.713317871 277.311340332 278.040405273 278.914978027 279.783477783 280.798980713 281.911621094 283.001159668 284.337219238 285.827972412 287.223693848 288.428894043 289.378112793 290.171783447 290.832489014 291.421020508 292.025390625 292.616821289 293.194091797 293.742584229 294.310516357 294.987304688 295.610107422 296.16394043 296.664794922 297.105224609 297.57043457 298.104278564 298.637237549 299.142730713 299.570922852 299.846038818 300.002197266 300.148681641 300.340148926 300.562164307 300.692504883 300.669403076 300.576843262 300.351715088 299.768585205 298.911804199 298.193023682 297.936798096 298.308105469 299.137298584 299.837402344 300.042755127 299.836090088 299.401611328 298.961608887 298.637695312 298.274627686 297.820617676 297.336273193 296.775146484 296.190826416 295.732299805 295.392700195 294.934661865 294.102722168 292.746765137 291.014831543 289.446716309 288.252349854 287.386535645 286.593383789 285.732299805 284.501159668 283.152435303 282.076507568 281.104125977 280.14175415 279.256713867 278.466888428 277.794525146 277.148345947 276.48727417 275.924194336 275.37789917 274.773010254 274.319458008 273.515625 271.523590088 267.576538086 265.367584229 264.06350708 262.608856201 260.818054199 258.102630615 255.594650269 253.958404541 252.070922852 250.081375122 248.975753784 248.733566284 248.241287231 246.906356812 245.794998169 245.113830566 244.922424316 244.194595337 243.468811035 242.43611145 242.20098877 242.063766479 241.805557251 226.91859436 233.231460571 240.787322998 247.309417725 249.260421753 245.709899902 243.259185791 245.176513672 248.808319092 253.736099243 256.862426758 258.647491455 260.314880371 262.39163208 264.833190918 267.588623047 269.734313965 271.180999756 272.424255371 273.440368652 274.357330322 275.224975586 275.91696167 276.692962646 277.694671631 278.72354126 279.858459473 281.056915283 282.325683594 284.020782471 285.765167236 287.055450439 287.972625732 288.809967041 289.577026367 290.187347412 290.692932129 291.176055908 291.712249756 292.353027344 292.974884033 293.565643311 294.202209473 294.795471191 295.363922119 295.937896729 296.550689697 297.222412109 297.871246338 298.413299561 298.979888916 299.580688477 300.064819336 300.388061523 300.542114258 300.63671875 300.785644531 300.801208496 300.713195801 300.778564453 300.839050293 300.377716064 299.643890381 298.990142822 298.633728027 298.832275391 299.495056152 299.973846436 299.949310303 299.710021973 299.402099609 299.036956787 298.721984863 298.341400146 297.77456665 297.141021729 296.54864502 296.098297119 295.757171631 295.379486084 294.808227539 293.87789917 292.603851318 291.176574707 289.951629639 288.807525635 287.646820068 286.434143066 285.344055176 284.1640625 282.955688477 281.832733154 280.679656982 279.585510254 278.628479004 277.813964844 277.160125732 276.605560303 276.072021484 275.516662598 274.859863281 274.162231445 273.475250244 272.491577148 270.624542236 267.237091064 263.561431885 261.157592773 259.613616943 257.834716797 255.637527466 253.647277832 251.827468872 250.054321289 248.999343872 248.286849976 247.370956421 247.237609863 247.212402344 246.9715271 246.363800049 245.854354858 245.158447266 244.780914307 243.577774048 242.182144165 241.360916138 240.534576416 246.855545044 250.101882935 255.423690796 261.036804199 264.639434814 265.96862793 266.403656006 266.805511475 267.550048828 268.226196289 268.506561279 268.827911377 269.335632324 269.892700195 270.411499023 271.085083008 271.489532471 272.112030029 273.129119873 274.221038818 275.163452148 275.904266357 276.50958252 277.261291504 278.152313232 278.949645996 279.886535645 280.988128662 282.055938721 283.400146484 284.993927002 286.533996582 287.813568115 288.78704834 289.538391113 290.139862061 290.803833008 291.496673584 292.036712646 292.550262451 293.035400391 293.558654785 294.288665771 294.987945557 295.471893311 295.842071533 296.248931885 296.739898682 297.311645508 297.876098633 298.425567627 298.973266602 299.352020264 299.652160645 300.077758789 300.435150146 300.537017822 300.638427734 300.793792725 300.70123291 300.25100708 299.568847656 298.745483398 298.006652832 297.727142334 297.974945068 298.692749023 299.508361816 299.90737915 299.732147217 299.317016602 298.849639893 298.33013916 297.855255127 297.456634521 296.956970215 296.377593994 295.92980957 295.660705566 295.490325928 295.204284668 294.500915527 293.34664917 292.035644531 290.808166504 289.605377197 288.420043945 287.291687012 286.255767822 285.028503418 283.707183838 282.455474854 281.228179932 280.198242188 279.225952148 278.252532959 277.394012451 276.566467285 275.749542236 275.049346924 274.212005615 272.682098389 272.31036377 271.322723389 269.003814697 264.571716309 260.027008057 257.366912842 255.570388794 253.523712158 250.788269043 247.847885132 245.631362915 244.074615479 242.211837769 241.355285645 241.117889404 240.53868103 239.84262085 239.41595459 238.675125122 238.099563599 238.493408203 239.904037476 241.042373657 240.988372803 240.053146362 239.005889893 236.772872925 240.725540161 246.36366272 252.354888916 255.503677368 255.436630249 255.464996338 257.248748779 259.980957031 263.245361328 265.500640869 267.094940186 268.512359619 270.007995605 271.011444092 271.864532471 272.569580078 273.311279297 274.229492188 275.058441162 275.842498779 276.595550537 277.234832764 278.004333496 278.863952637 279.701751709 280.715820312 281.838409424 282.876098633 284.103118896 285.503540039 286.869659424 288.089874268 289.065948486 289.885070801 290.589782715 291.258483887 291.937438965 292.550415039 293.119018555 293.65625 294.246307373 294.971435547 295.600524902 296.131469727 296.633148193 297.103424072 297.582946777 298.107391357 298.617401123 299.094970703 299.515899658 299.831634521 300.057647705 300.208129883 300.342712402 300.480255127 300.564910889 300.551300049 300.502044678 300.298919678 299.692474365 298.813720703 298.133331299 297.89364624 298.229980469 299.059692383 299.834381104 300.085235596 299.8699646 299.420562744 298.970947266 298.645050049 298.309570312 297.886199951 297.383789062 296.799591064 296.195220947 295.669464111 295.284759521 294.904968262 294.236114502 293.004272461 291.327545166 289.671569824 288.302856445 287.293914795 286.492523193 285.694915771 284.533935547 283.277709961 282.174041748 281.149597168 280.232330322 279.374542236 278.575622559 277.922088623 277.300354004 276.640075684 276.067047119 275.446960449 274.356170654 274.212188721 273.341644287 271.190856934 267.353759766 265.558868408 264.486907959 263.087554932 261.383575439 259.265899658 256.402252197 254.603347778 252.572906494 250.408660889 249.103500366 248.669631958 248.193405151 246.745025635 245.590316772 244.904190063 244.93850708 244.140289307 243.355270386 242.38369751 242.15675354 242.0521698 241.789291382 227.041275024 233.329605103 240.887664795 247.405517578 249.147644043 245.483383179 243.475234985 245.678817749 249.035064697 253.690109253 256.89364624 258.835479736 260.378326416 262.476379395 264.953186035 267.641571045 269.721862793 271.13180542 272.370025635 273.433258057 274.390289307 275.266357422 275.965911865 276.75769043 277.741760254 278.728179932 279.861694336 281.110595703 282.404876709 284.013824463 285.609283447 286.811584473 287.719909668 288.538726807 289.289764404 289.912597656 290.448364258 290.985198975 291.587005615 292.276519775 292.920074463 293.527099609 294.190917969 294.7890625 295.343261719 295.90725708 296.535095215 297.233184814 297.873352051 298.394195557 298.956115723 299.532470703 299.981536865 300.313751221 300.536254883 300.664672852 300.760650635 300.76272583 300.725799561 300.833557129 300.882232666 300.437072754 299.7394104 299.051727295 298.634552002 298.814849854 299.496887207 300.002380371 299.975128174 299.727874756 299.425598145 299.073455811 298.761505127 298.408172607 297.871765137 297.224060059 296.58013916 296.085449219 295.725006104 295.371490479 294.897888184 294.070953369 292.823944092 291.425445557 290.176147461 288.976074219 287.775970459 286.622955322 285.553741455 284.341644287 283.107727051 281.931243896 280.714569092 279.632415771 278.649932861 277.804443359 277.147155762 276.587280273 276.0206604 275.398834229 274.616119385 273.602111816 273.109558105 271.990356445 269.862762451 266.427825928 263.318511963 261.363830566 259.907684326 258.198822021 256.245300293 254.451950073 252.524215698 250.720245361 249.65435791 248.799331665 247.75630188 247.351608276 247.154907227 246.892684937 246.301101685 245.862258911 245.224243164 244.762374878 243.520690918 242.157577515 241.323760986 240.511077881 246.872436523 250.170013428 255.551925659 261.188659668 264.70803833 265.934356689 266.276519775 266.72052002 267.567901611 268.194030762 268.718261719 269.071716309 269.476165771 269.957061768 270.40423584 271.135528564 271.491485596 272.080627441 273.071380615 274.147064209 275.104431152 275.873565674 276.508422852 277.25201416 278.123901367 278.887908936 279.777038574 280.858032227 281.936645508 283.27331543 284.842926025 286.359893799 287.594573975 288.507171631 289.230621338 289.891540527 290.627593994 291.341064453 291.884490967 292.410888672 292.956085205 293.533905029 294.25692749 294.897338867 295.319335938 295.692504883 296.160919189 296.723510742 297.3253479 297.888916016 298.417572021 298.931152344 299.302124023 299.635559082 300.086486816 300.462677002 300.577575684 300.674987793 300.798034668 300.666229248 300.186981201 299.477722168 298.633422852 297.923797607 297.698547363 297.944915771 298.61807251 299.465057373 299.92376709 299.770599365 299.36416626 298.914093018 298.384796143 297.86138916 297.41897583 296.91885376 296.398101807 295.978393555 295.632263184 295.395721436 295.181915283 294.601104736 293.481536865 292.163146973 290.877288818 289.636352539 288.387237549 287.231781006 286.181884766 284.963043213 283.723999023 282.517852783 281.36807251 280.403442383 279.4609375 278.485809326 277.564575195 276.660369873 275.868347168 275.157897949 274.248657227 272.9559021 271.568786621 270.923126221 268.512268066 264.315002441 260.099945068 257.711364746 256.066802979 254.115844727 251.487503052 248.606460571 246.536697388 244.830963135 242.940872192 241.720993042 241.226531982 240.567474365 239.72857666 239.224090576 238.384719849 237.815292358 238.286422729 239.752685547 241.002548218 241.071426392 240.097930908 239.007705688 236.823898315 240.78729248 246.502502441 252.438171387 255.469955444 255.379486084 255.420898438 257.314880371 260.123260498 263.323913574 265.670227051 267.045043945 268.406280518 269.897735596 270.871612549 271.745239258 272.420532227 273.136810303 274.044555664 274.908477783 275.727081299 276.508148193 277.188201904 277.98526001 278.846557617 279.674255371 280.668823242 281.73651123 282.706573486 283.894958496 285.282989502 286.661773682 287.896026611 288.874023438 289.688446045 290.409301758 291.125030518 291.845031738 292.468841553 293.062805176 293.60736084 294.196289062 294.897155762 295.495147705 296.006408691 296.514251709 297.016601562 297.523406982 298.058837891 298.582733154 299.074676514 299.509643555 299.889556885 300.1980896 300.344940186 300.380340576 300.409515381 300.469085693 300.504058838 300.529174805 300.343566895 299.668914795 298.730834961 298.071258545 297.860198975 298.173553467 298.976165771 299.78225708 300.083068848 299.895904541 299.472076416 299.028564453 298.67880249 298.338439941 297.931488037 297.407806396 296.81362915 296.212463379 295.651794434 295.22567749 294.881378174 294.306121826 293.221252441 291.744384766 290.127563477 288.611663818 287.343170166 286.402099609 285.595489502 284.503326416 283.352233887 282.228607178 281.182128906 280.296081543 279.448486328 278.66305542 278.028106689 277.432373047 276.796203613 276.212341309 275.544128418 274.629272461 273.736663818 273.106933594 270.776550293 267.419342041 265.799316406 264.75378418 263.422851562 261.756835938 260.005706787 256.988647461 255.03213501 252.895706177 250.764938354 249.219619751 248.541229248 248.130554199 246.52911377 245.365844727 244.739776611 244.878143311 244.100234985 243.224090576 242.327514648 242.115997314 242.037185669 241.781219482 226.996795654 233.398223877 241.053283691 247.49256897 248.992828369 245.287307739 243.725234985 246.232177734 249.307907104 253.701553345 257.010375977 259.01550293 260.489349365 262.616516113 265.081756592 267.704071045 269.727233887 271.100769043 272.321960449 273.414978027 274.402557373 275.311126709 276.039520264 276.837799072 277.79876709 278.769439697 279.904388428 281.160949707 282.462493896 284.005096436 285.486816406 286.635467529 287.557312012 288.361968994 289.06552124 289.666168213 290.223754883 290.810394287 291.464660645 292.206542969 292.909118652 293.559417725 294.23928833 294.812927246 295.323394775 295.858459473 296.49822998 297.216003418 297.863830566 298.381164551 298.93536377 299.49520874 299.91809082 300.270385742 300.569030762 300.714019775 300.752685547 300.725524902 300.72744751 300.868347168 300.880401611 300.419158936 299.706939697 298.984375 298.577514648 298.798278809 299.481719971 299.977294922 299.966949463 299.740325928 299.438720703 299.077209473 298.751708984 298.413635254 297.92175293 297.320159912 296.70199585 296.177276611 295.722229004 295.3230896 294.934814453 294.268341064 293.129333496 291.805999756 290.496551514 289.185424805 287.883453369 286.754150391 285.710266113 284.471130371 283.247192383 282.006866455 280.777893066 279.707977295 278.703186035 277.824951172 277.137176514 276.540893555 275.963104248 275.296386719 274.428985596 273.511413574 272.43661499 271.406158447 268.963287354 265.783569336 263.130889893 261.522033691 260.098297119 258.481903076 256.48739624 254.660049438 252.798553467 251.24520874 250.346786499 249.349563599 248.111709595 247.478866577 247.035629272 246.749160767 246.163528442 245.863311768 245.306793213 244.681777954 243.439208984 242.107467651 241.276901245 240.502105713 246.883026123 250.231964111 255.660079956 261.304016113 264.764556885 265.896972656 266.108062744 266.805725098 267.513549805 268.23147583 268.970947266 269.34173584 269.668914795 270.064453125 270.453063965 271.180938721 271.510864258 272.069213867 273.0390625 274.096923828 275.056976318 275.858886719 276.52835083 277.273254395 278.13458252 278.88848877 279.733642578 280.753601074 281.832000732 283.181243896 284.730529785 286.21963501 287.41204834 288.271240234 288.967041016 289.659362793 290.448028564 291.193328857 291.737060547 292.261627197 292.871246338 293.524536133 294.245666504 294.826812744 295.213439941 295.613616943 296.135009766 296.719116211 297.299255371 297.85836792 298.399200439 298.923248291 299.308868408 299.674377441 300.151794434 300.556640625 300.686462402 300.732879639 300.782501221 300.630859375 300.160308838 299.425445557 298.533050537 297.828887939 297.65222168 297.907012939 298.549713135 299.427215576 299.940216064 299.814697266 299.408935547 298.974822998 298.46383667 297.929199219 297.439788818 296.911407471 296.409729004 295.996734619 295.592376709 295.3097229 295.153411865 294.701019287 293.658843994 292.347015381 290.993133545 289.750396729 288.488189697 287.270141602 286.128143311 284.907562256 283.734069824 282.55569458 281.471466064 280.551025391 279.63772583 278.694854736 277.73727417 276.82901001 276.060882568 275.312103271 274.374023438 273.182067871 271.392456055 270.459655762 268.055450439 263.983673096 260.069641113 257.304229736 255.811843872 253.945358276 249.994445801 248.346328735 246.998168945 245.188262939 243.403686523 242.01071167 241.290618896 240.534240723 239.601303101 238.993301392 238.173995972 237.602554321 238.145324707 239.569335938 240.974990845 241.121017456 240.108535767 239.010040283 236.892242432 240.833297729 246.59312439 252.537963867 255.417388916 255.321105957 255.468597412 257.317169189 260.037322998 263.296112061 265.798065186 267.050476074 268.283477783 269.714385986 270.676055908 271.640563965 272.302856445 272.986572266 273.898498535 274.807434082 275.65512085 276.454437256 277.163208008 277.984313965 278.855621338 279.683990479 280.642883301 281.609985352 282.520629883 283.728729248 285.132080078 286.509033203 287.744659424 288.728942871 289.548339844 290.269958496 290.993133545 291.703887939 292.328948975 292.953765869 293.54385376 294.147399902 294.80758667 295.35534668 295.847900391 296.37878418 296.924530029 297.447174072 297.971832275 298.50402832 299.025482178 299.479125977 299.874023438 300.215698242 300.382995605 300.397125244 300.389465332 300.442626953 300.510620117 300.56640625 300.385620117 299.690429688 298.738311768 298.082824707 297.867950439 298.151123047 298.932006836 299.758026123 300.086456299 299.908447266 299.503234863 299.063293457 298.690460205 298.354492188 297.982635498 297.448852539 296.830291748 296.232116699 295.666809082 295.219726562 294.878509521 294.350830078 293.369506836 292.069091797 290.557983398 289.065673828 287.608428955 286.441070557 285.504486084 284.455566406 283.367462158 282.226257324 281.183837891 280.343109131 279.522918701 278.767608643 278.144104004 277.566253662 276.953796387 276.341156006 275.663146973 274.827941895 273.609466553 272.803466797 270.467071533 267.511322021 265.982757568 264.67276001 263.475463867 261.884094238 259.360198975 257.191314697 255.520065308 253.252349854 250.986450195 249.250900269 248.45223999 248.0105896 246.349853516 245.221618652 244.625717163 244.714614868 244.079986572 243.174942017 242.285140991 242.065185547 242.020019531 241.773376465 227.218811035 233.556747437 241.191955566 247.517715454 248.842697144 245.108200073 244.013946533 246.724899292 249.473648071 253.646759033 257.092163086 259.191040039 260.636749268 262.793426514 265.227874756 267.775726318 269.753570557 271.091888428 272.290374756 273.392089844 274.402801514 275.360137939 276.124938965 276.933868408 277.890716553 278.870483398 279.992797852 281.208435059 282.485595703 283.985961914 285.396209717 286.52432251 287.465759277 288.270172119 288.939605713 289.518432617 290.094238281 290.723571777 291.388519287 292.144989014 292.894989014 293.591766357 294.275848389 294.837188721 295.32699585 295.849090576 296.485748291 297.187652588 297.817474365 298.325500488 298.882781982 299.442199707 299.841400146 300.190032959 300.556304932 300.76083374 300.795013428 300.745269775 300.769378662 300.909423828 300.85836792 300.348846436 299.601898193 298.856231689 298.504547119 298.782165527 299.462310791 299.940338135 299.958404541 299.754058838 299.444244385 299.05557251 298.696594238 298.357910156 297.912506104 297.38659668 296.823242188 296.288085938 295.755279541 295.296295166 294.956787109 294.422088623 293.391479492 292.126434326 290.766845703 289.374328613 287.954528809 286.762481689 285.717498779 284.535400391 283.365722656 282.075500488 280.842529297 279.797454834 278.768280029 277.873291016 277.16619873 276.528533936 275.925933838 275.238952637 274.315795898 273.376953125 272.108795166 270.710784912 268.100982666 265.163452148 262.951538086 261.38885498 260.071350098 258.512420654 256.308258057 254.67276001 253.262283325 251.635986328 250.924667358 249.879150391 248.374816895 247.634414673 246.984146118 246.574462891 246.124435425 245.883255005 245.335830688 244.597976685 243.362014771 242.024780273 241.232391357 240.493606567 246.907684326 250.284851074 255.774734497 261.409484863 264.781951904 265.872344971 266.036682129 266.748321533 267.425933838 268.305389404 269.242340088 269.662994385 269.906097412 270.171142578 270.509918213 271.216461182 271.533843994 272.06362915 273.01071167 274.05178833 275.017028809 275.860076904 276.571746826 277.326904297 278.184570312 278.957885742 279.768798828 280.693725586 281.749938965 283.120605469 284.648651123 286.099517822 287.246734619 288.06628418 288.745910645 289.458251953 290.27243042 291.049591064 291.602050781 292.133178711 292.798919678 293.522277832 294.248077393 294.799560547 295.190093994 295.617675781 296.152801514 296.721435547 297.272796631 297.823150635 298.387115479 298.932556152 299.34161377 299.745635986 300.248779297 300.649902344 300.755584717 300.74230957 300.724121094 300.557342529 300.113220215 299.377868652 298.448852539 297.742370605 297.601531982 297.856140137 298.466949463 299.356323242 299.911071777 299.822998047 299.427703857 299.016723633 298.546569824 298.025146484 297.500701904 296.932891846 296.42276001 296.002380371 295.576171875 295.267242432 295.119598389 294.764282227 293.852813721 292.594238281 291.164916992 289.9140625 288.649230957 287.394287109 286.17855835 284.985015869 283.861816406 282.687072754 281.62512207 280.678253174 279.770843506 278.873199463 277.918518066 277.054138184 276.296630859 275.507080078 274.586273193 273.414611816 271.742126465 269.911590576 267.554382324 263.49130249 259.669830322 255.271865845 253.153991699 252.76940918 248.848922729 247.194000244 246.198806763 245.090759277 243.638168335 242.310028076 241.473937988 240.516998291 239.489074707 238.804718018 237.975601196 237.413085938 238.012451172 239.451599121 240.887252808 241.145446777 240.115188599 239.012039185 237.026779175 240.879547119 246.663375854 252.609344482 255.348144531 255.263137817 255.493087769 257.359588623 259.739044189 263.046447754 265.806793213 267.02947998 268.158935547 269.495025635 270.448303223 271.504882812 272.193695068 272.852416992 273.767456055 274.732818604 275.61428833 276.430755615 277.162658691 278.011444092 278.90045166 279.739898682 280.645507812 281.483032227 282.3387146 283.603179932 285.023651123 286.364471436 287.576263428 288.565246582 289.397155762 290.125213623 290.838165283 291.519897461 292.139648438 292.801513672 293.454681396 294.089477539 294.723937988 295.234741211 295.717987061 296.267425537 296.838256836 297.360656738 297.866485596 298.384033203 298.932617188 299.400970459 299.761749268 300.093322754 300.316497803 300.39050293 300.413970947 300.467987061 300.521972656 300.53793335 300.356079102 299.701416016 298.807342529 298.162902832 297.919067383 298.153289795 298.911621094 299.750793457 300.083618164 299.89666748 299.499664307 299.057128906 298.652648926 298.326690674 298.007080078 297.491851807 296.852294922 296.254516602 295.691802979 295.21661377 294.872039795 294.412841797 293.544799805 292.361907959 290.91204834 289.489227295 287.966033936 286.647399902 285.579284668 284.563110352 283.502319336 282.275695801 281.217834473 280.381500244 279.608642578 278.900360107 278.287017822 277.721191406 277.083129883 276.433929443 275.799499512 274.99130249 273.864654541 272.424346924 270.210571289 267.647735596 266.079406738 263.914764404 262.547729492 261.557830811 259.027740479 257.076721191 255.375 253.335876465 251.121200562 249.27355957 248.529953003 247.867767334 246.26852417 245.066223145 244.452377319 244.542205811 244.081878662 243.146347046 242.291503906 242.012237549 242.005966187 241.765289307 227.27897644 233.644241333 241.327224731 247.556762695 248.680953979 244.982650757 244.284469604 247.174240112 249.458816528 253.548110962 257.136535645 259.368011475 260.83013916 262.959472656 265.381408691 267.8565979 269.796783447 271.097961426 272.272827148 273.369995117 274.396911621 275.406158447 276.217468262 277.054870605 278.035614014 279.039520264 280.129821777 281.261779785 282.481567383 283.951568604 285.321685791 286.444976807 287.402282715 288.214202881 288.867858887 289.432983398 290.032104492 290.697479248 291.360473633 292.106231689 292.874572754 293.597503662 294.290344238 294.870025635 295.377471924 295.899627686 296.507995605 297.16619873 297.758026123 298.245697021 298.8125 299.383575439 299.770324707 300.090087891 300.490386963 300.790161133 300.857818604 300.800354004 300.840698242 300.95413208 300.805175781 300.222351074 299.460357666 298.73651123 298.442993164 298.760040283 299.441070557 299.920654297 299.975921631 299.76776123 299.425964355 299.002593994 298.598510742 298.239562988 297.84262085 297.401550293 296.900115967 296.377319336 295.805480957 295.296875 294.970336914 294.527801514 293.608306885 292.401885986 290.992706299 289.563232422 288.059783936 286.75869751 285.629333496 284.526763916 283.425994873 282.140167236 280.919128418 279.873260498 278.834014893 277.947753906 277.231231689 276.577453613 275.937255859 275.218322754 274.291992188 273.260498047 272.06048584 269.853668213 267.280914307 264.568725586 262.579071045 260.357177734 259.09664917 258.292266846 256.178314209 254.680786133 253.576889038 252.179901123 251.329101562 250.240142822 248.602279663 247.837875366 247.060028076 246.457611084 246.056549072 245.867630005 245.319671631 244.499862671 243.350662231 241.91859436 241.192993164 240.48487854 246.935394287 250.326583862 255.868164062 261.500274658 264.80682373 265.834075928 265.89743042 266.662628174 267.325561523 268.389923096 269.544036865 270.087402344 270.235870361 270.266723633 270.56072998 271.231048584 271.567901611 272.054046631 272.957092285 273.98336792 274.973449707 275.881072998 276.645690918 277.413665771 278.287536621 279.125762939 279.919769287 280.72869873 281.732849121 283.117034912 284.617980957 285.998931885 287.080047607 287.875335693 288.575286865 289.308227539 290.102844238 290.877929688 291.448120117 292.024993896 292.746307373 293.503265381 294.227294922 294.78692627 295.215026855 295.648162842 296.172027588 296.755187988 297.30166626 297.817993164 298.373504639 298.915252686 299.347076416 299.802093506 300.316497803 300.650604248 300.681945801 300.646118164 300.631835938 300.480926514 300.058563232 299.299316406 298.320037842 297.630249023 297.549072266 297.817016602 298.387207031 299.24307251 299.822418213 299.785430908 299.433288574 299.062866211 298.641998291 298.145690918 297.610046387 297.01348877 296.459777832 296.021362305 295.617828369 295.293914795 295.086029053 294.774871826 294.037811279 292.888580322 291.412200928 290.129211426 288.846282959 287.571166992 286.314422607 285.164337158 284.074462891 282.914367676 281.878753662 280.881439209 279.941497803 279.039794922 278.095397949 277.299499512 276.535186768 275.69631958 274.833374023 273.686035156 272.017456055 269.397766113 266.97668457 262.785614014 258.649810791 254.24697876 251.884277344 251.786315918 247.823028564 245.531890869 244.376739502 244.066543579 243.618057251 242.707336426 241.791366577 240.445053101 239.310836792 238.628662109 237.766418457 237.19102478 237.866226196 239.331115723 240.794784546 241.137252808 240.103210449 239.013687134 237.067077637 240.941711426 246.739501953 252.661437988 255.300247192 255.173400879 255.525390625 257.215240479 259.55255127 262.831207275 265.594512939 266.834777832 267.990020752 269.312469482 270.200836182 271.28604126 272.053009033 272.699432373 273.602966309 274.643859863 275.577941895 276.425994873 277.193878174 278.074615479 279.003601074 279.877227783 280.714569092 281.404754639 282.213439941 283.541320801 284.945648193 286.222412109 287.379333496 288.351776123 289.175811768 289.909179688 290.617980957 291.30456543 291.930633545 292.612304688 293.31161499 293.9871521 294.651367188 295.17855835 295.658874512 296.187286377 296.73626709 297.269104004 297.761047363 298.247711182 298.824005127 299.309539795 299.612091064 299.912017822 300.220001221 300.38684082 300.45489502 300.491546631 300.521606445 300.488586426 300.297210693 299.699310303 298.893737793 298.266174316 297.986114502 298.184753418 298.919677734 299.734924316 300.043029785 299.844543457 299.469543457 299.025360107 298.592163086 298.252471924 297.9737854 297.523223877 296.89352417 296.284698486 295.715942383 295.200408936 294.84173584 294.483551025 293.754119873 292.655609131 291.249694824 289.901824951 288.393249512 286.989654541 285.786712646 284.76171875 283.734527588 282.478057861 281.376251221 280.47467041 279.728240967 279.062011719 278.457611084 277.905303955 277.237457275 276.534332275 275.951782227 275.194915771 274.068145752 272.043334961 269.900695801 267.632324219 265.807189941 263.525421143 261.898376465 261.484741211 258.998260498 256.833374023 254.579620361 253.064727783 250.981765747 249.393157959 248.62689209 247.750305176 246.139755249 244.799499512 244.237091064 244.376922607 244.057220459 243.109405518 242.298095703 241.97769165 241.984008789 241.756866455 227.312316895 233.714706421 241.440582275 247.582183838 248.541412354 244.889892578 244.651947021 247.562301636 249.336837769 253.299026489 257.197845459 259.484863281 261.100769043 263.222503662 265.545349121 267.942596436 269.8409729 271.113769531 272.261138916 273.347839355 274.390625 275.453826904 276.321838379 277.206054688 278.252166748 279.30291748 280.347229004 281.359008789 282.49230957 283.927764893 285.265106201 286.378326416 287.326385498 288.121490479 288.768188477 289.337677002 289.960357666 290.660491943 291.341033936 292.098114014 292.869873047 293.582183838 294.288818359 294.925354004 295.476715088 296.003204346 296.563812256 297.161224365 297.709960938 298.200042725 298.773956299 299.359893799 299.75378418 300.044494629 300.440490723 300.787384033 300.852172852 300.785003662 300.876251221 300.990386963 300.699859619 299.989257812 299.21697998 298.560913086 298.340057373 298.706451416 299.402374268 299.91192627 299.998046875 299.767211914 299.395507812 298.94128418 298.484313965 298.086975098 297.735687256 297.386260986 296.94543457 296.446044922 295.858886719 295.300170898 294.936584473 294.556213379 293.771057129 292.646636963 291.215789795 289.77130127 288.211791992 286.80581665 285.571563721 284.503295898 283.451538086 282.184570312 281.00491333 279.919494629 278.901794434 278.029815674 277.317657471 276.663970947 275.995178223 275.251220703 274.354187012 273.220153809 271.742950439 269.016235352 266.46496582 263.990142822 261.987670898 259.830322266 258.719390869 258.148254395 256.377075195 254.800430298 253.367340088 252.395721436 251.61038208 250.60357666 249.056060791 247.975357056 247.098510742 246.30140686 245.942703247 245.811904907 245.238586426 244.414077759 243.320175171 241.856262207 241.158950806 240.475784302 246.949066162 250.393630981 255.949310303 261.561462402 264.811676025 265.812957764 265.772216797 266.559417725 267.344207764 268.321807861 269.762969971 270.402587891 270.483795166 270.415557861 270.65246582 271.220794678 271.595672607 272.044647217 272.894805908 273.899993896 274.916687012 275.894165039 276.722869873 277.505157471 278.400695801 279.31060791 280.122436523 280.88394165 281.842041016 283.211334229 284.66192627 285.956359863 286.958648682 287.740264893 288.491577148 289.23059082 289.949829102 290.662750244 291.253082275 291.899383545 292.699279785 293.458770752 294.139587402 294.69744873 295.171447754 295.625793457 296.166168213 296.781066895 297.328491211 297.799957275 298.313110352 298.832550049 299.271148682 299.760559082 300.29019165 300.568847656 300.582702637 300.568054199 300.587615967 300.483459473 300.083465576 299.273986816 298.210845947 297.532714844 297.507507324 297.814331055 298.389526367 299.226867676 299.809387207 299.789764404 299.456939697 299.102600098 298.700500488 298.249511719 297.776306152 297.218719482 296.615509033 296.097686768 295.690460205 295.354736328 295.081237793 294.781860352 294.219940186 293.231994629 291.790649414 290.446594238 289.10369873 287.807556152 286.518768311 285.399810791 284.302307129 283.188293457 282.180114746 281.130065918 280.156555176 279.243896484 278.306182861 277.528625488 276.754180908 275.89541626 275.031158447 273.91708374 272.151763916 269.655456543 266.311920166 262.130706787 257.0262146 253.410507202 251.132492065 248.967834473 246.642730713 244.809341431 243.524002075 243.351608276 243.481002808 243.036209106 241.976577759 240.323059082 239.05682373 238.45401001 237.528610229 236.931350708 237.694519043 239.261505127 240.687759399 241.118942261 240.070465088 239.022216797 236.992370605 240.999938965 246.81489563 252.695404053 255.243942261 255.097305298 255.503555298 257.134918213 259.548522949 262.581420898 265.416534424 266.732910156 267.90737915 269.166534424 269.981018066 271.030944824 271.902282715 272.549926758 273.425048828 274.516418457 275.504119873 276.399902344 277.219665527 278.134857178 279.113006592 280.029846191 280.833740234 281.450500488 282.243835449 283.557006836 284.919250488 286.147399902 287.258117676 288.180969238 288.974914551 289.694000244 290.411468506 291.142059326 291.809295654 292.489929199 293.183013916 293.87789917 294.575653076 295.135772705 295.623321533 296.094512939 296.604400635 297.161132812 297.679840088 298.179870605 298.76953125 299.2784729 299.555938721 299.812133789 300.152954102 300.382446289 300.473022461 300.489501953 300.53302002 300.539581299 300.349578857 299.765411377 298.992401123 298.337585449 298.003204346 298.201080322 298.964935303 299.756408691 300.034240723 299.815979004 299.432830811 298.984069824 298.553955078 298.204040527 297.937591553 297.570617676 296.990356445 296.323486328 295.707855225 295.155090332 294.77911377 294.507659912 293.96875 293.000305176 291.663635254 290.348846436 288.857696533 287.403839111 286.071380615 285.017211914 283.989227295 282.788085938 281.636016846 280.64553833 279.883789062 279.253143311 278.677764893 278.115570068 277.425201416 276.703582764 276.111724854 275.413116455 274.244506836 272.450592041 269.662963867 267.531616211 265.195098877 263.65057373 262.10369873 260.696380615 258.93850708 256.796722412 254.310134888 252.673171997 250.786087036 249.533905029 248.662261963 247.600219727 245.908813477 244.4480896 244.019760132 244.216125488 243.999298096 243.016525269 242.314620972 241.960083008 241.959564209 241.750183105 227.322494507 233.824356079 241.485977173 247.553756714 248.403503418 244.843505859 244.919662476 247.885574341 249.116775513 252.805450439 257.133087158 259.614501953 261.326293945 263.495605469 265.714752197 268.015197754 269.875701904 271.13269043 272.250488281 273.335357666 274.392425537 275.49029541 276.405914307 277.338928223 278.457885742 279.557250977 280.577270508 281.527557373 282.600952148 283.983642578 285.264709473 286.340820312 287.234802246 287.986297607 288.645019531 289.246643066 289.889190674 290.60458374 291.315155029 292.110198975 292.903198242 293.597412109 294.299102783 294.965881348 295.532043457 296.04284668 296.582824707 297.127502441 297.645751953 298.154205322 298.753173828 299.342376709 299.755126953 300.064483643 300.448974609 300.759552002 300.772003174 300.684326172 300.838256836 300.98223877 300.601745605 299.794036865 299.000152588 298.376983643 298.214294434 298.657409668 299.38684082 299.904602051 299.987670898 299.756500244 299.389160156 298.929931641 298.432891846 298.01171875 297.692718506 297.394683838 296.983825684 296.477203369 295.871856689 295.26864624 294.84765625 294.498962402 293.87322998 292.887817383 291.499847412 290.035003662 288.41708374 286.919067383 285.570983887 284.525268555 283.489013672 282.259857178 281.09085083 279.950653076 278.943328857 278.110473633 277.424316406 276.766021729 276.073303223 275.345855713 274.474975586 273.290344238 271.535858154 269.064910889 265.733398438 263.587005615 261.149993896 259.489074707 258.67010498 257.64932251 256.359710693 254.930541992 253.404754639 252.599365234 251.860595703 251.026916504 249.476669312 247.995651245 247.030288696 246.085708618 245.806365967 245.754272461 245.139144897 244.313369751 243.274383545 241.851333618 241.129943848 240.468658447 246.976104736 250.43560791 256.004852295 261.611022949 264.832397461 265.777191162 265.686126709 266.296691895 267.460235596 268.285736084 269.903778076 270.624053955 270.68951416 270.535369873 270.708587646 271.212341309 271.623352051 272.039703369 272.848114014 273.824005127 274.843017578 275.880981445 276.777191162 277.575317383 278.477600098 279.435913086 280.311157227 281.098144531 282.041687012 283.36920166 284.734100342 285.929107666 286.855499268 287.625 288.425598145 289.151184082 289.769470215 290.426116943 291.051300049 291.787506104 292.662628174 293.422302246 294.045196533 294.597839355 295.120391846 295.616729736 296.178497314 296.79989624 297.328887939 297.767211914 298.245117188 298.742431641 299.182312012 299.672851562 300.216125488 300.510223389 300.558074951 300.547515869 300.56842041 300.48236084 300.113220215 299.292572021 298.187469482 297.514129639 297.480682373 297.792388916 298.397247314 299.251983643 299.838134766 299.818572998 299.477294922 299.098052979 298.699493408 298.304931641 297.924285889 297.426086426 296.797729492 296.181793213 295.690093994 295.31652832 295.060211182 294.80581665 294.342956543 293.493621826 292.185241699 290.82824707 289.444854736 288.157897949 286.858001709 285.700042725 284.526947021 283.44039917 282.465148926 281.394165039 280.400054932 279.453094482 278.527526855 277.740753174 276.956604004 276.113372803 275.214050293 274.092315674 272.403106689 269.991271973 265.500579834 261.660949707 255.880630493 252.903671265 250.915374756 248.272903442 246.035797119 244.382354736 242.892074585 242.678497314 243.39755249 243.054168701 242.014282227 240.073760986 238.713394165 238.187911987 237.28565979 236.742889404 237.529525757 239.196350098 240.607818604 241.090057373 239.969268799 239.037948608 237.014083862 241.061691284 246.859664917 252.718841553 255.195251465 255.053039551 255.403121948 257.0597229 259.877685547 262.302398682 265.231933594 266.701599121 267.854003906 269.041656494 269.839904785 270.81930542 271.747192383 272.420562744 273.267333984 274.356994629 275.378570557 276.330505371 277.20980835 278.152069092 279.163635254 280.115142822 280.942138672 281.573425293 282.364929199 283.610168457 284.899017334 286.0831604 287.152740479 288.03503418 288.800476074 289.508850098 290.236419678 291.016052246 291.731689453 292.412872314 293.091217041 293.785797119 294.486663818 295.069763184 295.576263428 296.02532959 296.505706787 297.061279297 297.594390869 298.120483398 298.733062744 299.239196777 299.504455566 299.759399414 300.132843018 300.411102295 300.520111084 300.508728027 300.534088135 300.574615479 300.398651123 299.835845947 299.084686279 298.372497559 297.942382812 298.138458252 298.956268311 299.76348877 300.039123535 299.814941406 299.392669678 298.915222168 298.487030029 298.1434021 297.884429932 297.589019775 297.056518555 296.317657471 295.633514404 295.07699585 294.711975098 294.469268799 294.054473877 293.24105835 292.026092529 290.720336914 289.276489258 287.869140625 286.442016602 285.303222656 284.248748779 283.117340088 281.968933105 280.88961792 280.099853516 279.456695557 278.900817871 278.358917236 277.64944458 276.910705566 276.275238037 275.606048584 274.587158203 273.016540527 269.64654541 267.683898926 264.920837402 263.7159729 262.442443848 260.824523926 259.04296875 256.82901001 254.206420898 252.387390137 250.528762817 249.54624939 248.651779175 247.380783081 245.605422974 244.213272095 243.872817993 244.048675537 243.872940063 242.856933594 242.325317383 241.944839478 241.930252075 241.746337891 227.449157715 233.9009552 241.530105591 247.547653198 248.26902771 244.846206665 245.169113159 248.061264038 249.821411133 252.334442139 256.939147949 259.766967773 261.550994873 263.749420166 265.852539062 268.065643311 269.911468506 271.15322876 272.248687744 273.334075928 274.396026611 275.509765625 276.460906982 277.441131592 278.610443115 279.739837646 280.773681641 281.742370605 282.796813965 284.094207764 285.284179688 286.302764893 287.132202148 287.848022461 288.544342041 289.209381104 289.887145996 290.612915039 291.325317383 292.133514404 292.944671631 293.627471924 294.311309814 294.981262207 295.548553467 296.052062988 296.58291626 297.086883545 297.573577881 298.111175537 298.741851807 299.324127197 299.750671387 300.090576172 300.460632324 300.722229004 300.691802979 300.581237793 300.743713379 300.893951416 300.481262207 299.651611328 298.855926514 298.225646973 298.083953857 298.602020264 299.390045166 299.91204834 299.97845459 299.754547119 299.39263916 298.919128418 298.398132324 297.970672607 297.669525146 297.38092041 296.963165283 296.418273926 295.794769287 295.19140625 294.76675415 294.423187256 293.882293701 293.020324707 291.73828125 290.287597656 288.690368652 287.177001953 285.741333008 284.67276001 283.602050781 282.373565674 281.176147461 280.00994873 279.014709473 278.19418335 277.52822876 276.882171631 276.176849365 275.480743408 274.627471924 273.462982178 271.633850098 269.21762085 265.112701416 263.214996338 260.495544434 259.231903076 258.785003662 257.890869141 256.416137695 255.004333496 253.533035278 252.745101929 252.199371338 251.394058228 249.726547241 247.974731445 246.935958862 245.88885498 245.698928833 245.73286438 245.028289795 244.173812866 243.200088501 241.864089966 241.112411499 240.465698242 247.010345459 250.464004517 256.056365967 261.660858154 264.848815918 265.728393555 265.649780273 266.3253479 267.456420898 268.23449707 269.973205566 270.77935791 270.872344971 270.603302002 270.743530273 271.186340332 271.646728516 272.036804199 272.823852539 273.768798828 274.759338379 275.834289551 276.788879395 277.608795166 278.502075195 279.486480713 280.452667236 281.328155518 282.292541504 283.553009033 284.800720215 285.886962891 286.743682861 287.502716064 288.318908691 288.994354248 289.523254395 290.17855835 290.898468018 291.738433838 292.648529053 293.394348145 293.980834961 294.532897949 295.092529297 295.631011963 296.206970215 296.812347412 297.316894531 297.73840332 298.181640625 298.651611328 299.087188721 299.579711914 300.137176514 300.483520508 300.575134277 300.550750732 300.544189453 300.477752686 300.145233154 299.335266113 298.247192383 297.572540283 297.474060059 297.754608154 298.389648438 299.267272949 299.859527588 299.84954834 299.49810791 299.085723877 298.68182373 298.327789307 298.019714355 297.569396973 296.937744141 296.239013672 295.633605957 295.197357178 294.985626221 294.808502197 294.430358887 293.714813232 292.570098877 291.211853027 289.772125244 288.466705322 287.182220459 286.014862061 284.784973145 283.718688965 282.723175049 281.648254395 280.634124756 279.665161133 278.738220215 277.887298584 277.12197876 276.322052002 275.38861084 274.315856934 272.753479004 270.254730225 265.086578369 261.531829834 255.503829956 252.774200439 250.721588135 248.375518799 246.058380127 244.208816528 242.336990356 242.195037842 243.453948975 243.024002075 241.850875854 239.810455322 238.438491821 237.88067627 237.075134277 236.655731201 237.409164429 239.165313721 240.536804199 241.045425415 239.85899353 239.052398682 237.024688721 241.071456909 246.897323608 252.732086182 255.160995483 254.995803833 255.3775177 257.025787354 260.123687744 262.050262451 265.043914795 266.660339355 267.785675049 268.887115479 269.747436523 270.710784912 271.610565186 272.314056396 273.137908936 274.188293457 275.210845947 276.214141846 277.151367188 278.109283447 279.131744385 280.112792969 281.01361084 281.732025146 282.541564941 283.688903809 284.86416626 285.978790283 287.006652832 287.859924316 288.609771729 289.328216553 290.07208252 290.90145874 291.664428711 292.35269165 293.015686035 293.702819824 294.391143799 294.992614746 295.530731201 295.990142822 296.452270508 296.974609375 297.503204346 298.066558838 298.690582275 299.168426514 299.450805664 299.778411865 300.197723389 300.48651123 300.58505249 300.530883789 300.52633667 300.580352783 300.413452148 299.865997314 299.126922607 298.361785889 297.840057373 298.036102295 298.889923096 299.720855713 300.020141602 299.814880371 299.364349365 298.847839355 298.401977539 298.057373047 297.79095459 297.532745361 297.032531738 296.247314453 295.512054443 294.978179932 294.644134521 294.40814209 294.072021484 293.410980225 292.328948975 291.027313232 289.600891113 288.233154297 286.797088623 285.582366943 284.487487793 283.478637695 282.365539551 281.247253418 280.397583008 279.707550049 279.105163574 278.52532959 277.855529785 277.108093262 276.408538818 275.800048828 275.003082275 273.421051025 270.080596924 267.995239258 265.161773682 263.816711426 262.422119141 261.211273193 259.25604248 256.854309082 254.057617188 252.10736084 250.404388428 249.47567749 248.621963501 247.117614746 245.457382202 244.136276245 243.74887085 243.827697754 243.708312988 242.666992188 242.309265137 241.932174683 241.900894165 241.742004395 227.523376465 233.958312988 241.580169678 247.508544922 248.162902832 244.837814331 245.434997559 248.482635498 250.608078003 252.004196167 256.631744385 259.865875244 261.767974854 263.982330322 265.972351074 268.107055664 269.939910889 271.17300415 272.254669189 273.34753418 274.399078369 275.50177002 276.484069824 277.504394531 278.702392578 279.849151611 280.926940918 281.971435547 283.03717041 284.215545654 285.28237915 286.230499268 287.007568359 287.715148926 288.470397949 289.20425415 289.929412842 290.677337646 291.379882812 292.166107178 292.97567749 293.649078369 294.311645508 294.972717285 295.54888916 296.067657471 296.604248047 297.085479736 297.552032471 298.130065918 298.782073975 299.348175049 299.790100098 300.157592773 300.492156982 300.697052002 300.624847412 300.510864258 300.661193848 300.781066895 300.344482422 299.502105713 298.702484131 298.064208984 297.928283691 298.5128479 299.377716064 299.92288208 299.977600098 299.759521484 299.402099609 298.912109375 298.37322998 297.942657471 297.63180542 297.316253662 296.855834961 296.24331665 295.598876953 295.033660889 294.650787354 294.322296143 293.841491699 293.095733643 291.952606201 290.541442871 288.981567383 287.485229492 286.030883789 284.91595459 283.786224365 282.578155518 281.313964844 280.132385254 279.143341064 278.308349609 277.635070801 276.979553223 276.312652588 275.623504639 274.767059326 273.716827393 272.000610352 269.220306396 264.854949951 263.040740967 260.300384521 259.081695557 258.582183838 258.138824463 256.757385254 255.135345459 253.594223022 252.842102051 252.683837891 251.618225098 249.773391724 248.112182617 247.014724731 245.823577881 245.597473145 245.67276001 244.932281494 243.995040894 243.0728302 241.88609314 241.101699829 240.462615967 247.057617188 250.503112793 256.0965271 261.693908691 264.850891113 265.701416016 265.5909729 266.213897705 267.268707275 268.170623779 270.024261475 270.896881104 271.051269531 270.770019531 270.811340332 271.182067871 271.659332275 272.052337646 272.81918335 273.72454834 274.6512146 275.729553223 276.729553223 277.582061768 278.456787109 279.442657471 280.514465332 281.533966064 282.556030273 283.734680176 284.841094971 285.809295654 286.605773926 287.355102539 288.134002686 288.7109375 289.202972412 289.944610596 290.847564697 291.780517578 292.650390625 293.354003906 293.943267822 294.513305664 295.083618164 295.6300354 296.205108643 296.785614014 297.267974854 297.693878174 298.119110107 298.531799316 298.965270996 299.505706787 300.082550049 300.471191406 300.570922852 300.494293213 300.484863281 300.52722168 300.25390625 299.442779541 298.385437012 297.668823242 297.485046387 297.740905762 298.397583008 299.273071289 299.864685059 299.882049561 299.536346436 299.093048096 298.685119629 298.345001221 298.062530518 297.632537842 297.008422852 296.262481689 295.560424805 295.052490234 294.865936279 294.768798828 294.473815918 293.896972656 292.941650391 291.607177734 290.123199463 288.758331299 287.476531982 286.310943604 285.087677002 284.020111084 282.960754395 281.894134521 280.847259521 279.862030029 278.924163818 278.001403809 277.240356445 276.497436523 275.574310303 274.583007812 273.18447876 270.684204102 266.957824707 261.143768311 255.372573853 252.801925659 250.80758667 248.284347534 246.484481812 243.996673584 242.083709717 241.84135437 243.28894043 242.885543823 241.784973145 239.591934204 238.158660889 237.578475952 236.83895874 236.567474365 237.40687561 239.067428589 240.536743164 240.93182373 239.837463379 239.065490723 237.058883667 241.129165649 246.921615601 252.734222412 255.096130371 254.951629639 255.367599487 256.838500977 259.855499268 261.729309082 264.839202881 266.61050415 267.770233154 268.828582764 269.614837646 270.629333496 271.538787842 272.253234863 273.048583984 274.00112915 274.990661621 276.03338623 277.018890381 277.983581543 278.9921875 279.998321533 281.016113281 281.894683838 282.756469727 283.796081543 284.821350098 285.825866699 286.779663086 287.5887146 288.365753174 289.112518311 289.873046875 290.753387451 291.575805664 292.279266357 292.928741455 293.59854126 294.275726318 294.898834229 295.477661133 295.956451416 296.402709961 296.87802124 297.404907227 298.020812988 298.64755249 299.08782959 299.441101074 299.909759521 300.372039795 300.594940186 300.612701416 300.508056641 300.508880615 300.597503662 300.429443359 299.859405518 299.100982666 298.297241211 297.743103027 297.957275391 298.833190918 299.667694092 299.982269287 299.805419922 299.346954346 298.802062988 298.331390381 297.974243164 297.672973633 297.383789062 296.883026123 296.089752197 295.346679688 294.859222412 294.56930542 294.33682251 294.049255371 293.532501221 292.623382568 291.362915039 289.950500488 288.556945801 287.133087158 285.850585938 284.722625732 283.803466797 282.762329102 281.736480713 280.823364258 280.001861572 279.301208496 278.632751465 277.955413818 277.209197998 276.484832764 275.954589844 275.396331787 273.889312744 271.550689697 268.151611328 264.988372803 263.819061279 262.551116943 260.98135376 259.263702393 256.655944824 253.846221924 251.918258667 250.216186523 249.277435303 248.55140686 246.952911377 245.335617065 244.013565063 243.571914673 243.599914551 243.489501953 242.593643188 242.27394104 241.91973877 241.88494873 241.736587524 227.516296387 233.980834961 241.608963013 247.451309204 248.063751221 244.817581177 245.775604248 248.89213562 251.414855957 251.676651001 256.412506104 259.818908691 261.737823486 264.180511475 266.122375488 268.185089111 269.983459473 271.203399658 272.252838135 273.34487915 274.386413574 275.454742432 276.460662842 277.5105896 278.723693848 279.88494873 281.032745361 282.189849854 283.278259277 284.302825928 285.219848633 286.094787598 286.851898193 287.591491699 288.408874512 289.170684814 289.922546387 290.722473145 291.443786621 292.19418335 292.992095947 293.659667969 294.299957275 294.94821167 295.539550781 296.102325439 296.674255371 297.160614014 297.643127441 298.246398926 298.892883301 299.432617188 299.899414062 300.289276123 300.585113525 300.732055664 300.640075684 300.520568848 300.661621094 300.749633789 300.26953125 299.363769531 298.517822266 297.888885498 297.811004639 298.445251465 299.373901367 299.950408936 299.981689453 299.751922607 299.411621094 298.929016113 298.379150391 297.919586182 297.561645508 297.177154541 296.639404297 295.938110352 295.266143799 294.759857178 294.456420898 294.175354004 293.76965332 293.147644043 292.168304443 290.830749512 289.313598633 287.790771484 286.33102417 285.144287109 283.968719482 282.810577393 281.553955078 280.405944824 279.374816895 278.473358154 277.747589111 277.0574646 276.417449951 275.726409912 274.883148193 273.97958374 272.491516113 269.531524658 266.20892334 262.855834961 260.206573486 259.139190674 258.448608398 258.068725586 257.112182617 255.206985474 253.587127686 252.885894775 252.710250854 251.686859131 250.064849854 248.355178833 247.080078125 245.727493286 245.475891113 245.564605713 244.787521362 243.867950439 242.910263062 241.912597656 241.113311768 240.45854187 247.062973022 250.535827637 256.118743896 261.716522217 264.828887939 265.717559814 265.595428467 266.136657715 267.079559326 268.039978027 269.937805176 270.948181152 271.104675293 270.882568359 270.852783203 271.177429199 271.639831543 272.064666748 272.830749512 273.695739746 274.546112061 275.589202881 276.6065979 277.484283447 278.350372314 279.334350586 280.48135376 281.637054443 282.726531982 283.856628418 284.864074707 285.750823975 286.522979736 287.26940918 288.001831055 288.530426025 289.050292969 289.897155762 290.90222168 291.855834961 292.642944336 293.281799316 293.885986328 294.479522705 295.037506104 295.576538086 296.149780273 296.710449219 297.179077148 297.628204346 298.067504883 298.458770752 298.898406982 299.475646973 300.07421875 300.476715088 300.546203613 300.409576416 300.416351318 300.566619873 300.398498535 299.644165039 298.576599121 297.724243164 297.466125488 297.739044189 298.40145874 299.253417969 299.849121094 299.915374756 299.567504883 299.103149414 298.680328369 298.320404053 298.046478271 297.645721436 297.009399414 296.196136475 295.429107666 294.980865479 294.773498535 294.691009521 294.458648682 294.034088135 293.294708252 292.047912598 290.562316895 289.08807373 287.762329102 286.604766846 285.460876465 284.362884521 283.175048828 282.092468262 281.022186279 280.037902832 279.07409668 278.109619141 277.349090576 276.625244141 275.791595459 274.860412598 273.599517822 271.497436523 268.006195068 261.608673096 255.78477478 252.794692993 250.81211853 248.645477295 246.343551636 244.199081421 241.92918396 241.532699585 243.054916382 242.826309204 241.798522949 239.355072021 237.80645752 237.276855469 236.527923584 236.380905151 237.38444519 239.041046143 240.480712891 240.814208984 239.828765869 239.077133179 237.112350464 241.159210205 246.942138672 252.699417114 255.051437378 254.883239746 255.372360229 256.676147461 259.659393311 261.643798828 264.554077148 266.582611084 267.770904541 268.79776001 269.599395752 270.593688965 271.517364502 272.275421143 273.043670654 273.881896973 274.795776367 275.842956543 276.848693848 277.815032959 278.808441162 279.827545166 280.937988281 281.979797363 282.921447754 283.898010254 284.82434082 285.734436035 286.585723877 287.361694336 288.172424316 288.940185547 289.698669434 290.598358154 291.445648193 292.169921875 292.830230713 293.484039307 294.15725708 294.792541504 295.385559082 295.872406006 296.322814941 296.78112793 297.314697266 297.969482422 298.617248535 299.08605957 299.513824463 300.026275635 300.445861816 300.612518311 300.598510742 300.482849121 300.485839844 300.585632324 300.405639648 299.824920654 299.03515625 298.185699463 297.640380859 297.873687744 298.75567627 299.628875732 299.979644775 299.798797607 299.321655273 298.762084961 298.267852783 297.901855469 297.584869385 297.228393555 296.688812256 295.89175415 295.120330811 294.741516113 294.471252441 294.242004395 293.972930908 293.605682373 292.936737061 291.805236816 290.3956604 288.86907959 287.412384033 286.094665527 284.976104736 284.088745117 283.096618652 282.151153564 281.233154297 280.352325439 279.491912842 278.71307373 278.004699707 277.214324951 276.508178711 276.038818359 275.655883789 274.62612915 272.223907471 268.461791992 264.757171631 263.410369873 262.580749512 261.025360107 258.830535889 256.674133301 253.717330933 251.843536377 250.373077393 249.022155762 248.395004272 246.758010864 245.057556152 243.779846191 243.326828003 243.404159546 243.295288086 242.572128296 242.251800537 241.891418457 241.8722229 241.73008728 227.520019531 234.031539917 241.608230591 247.419036865 247.975524902 244.885665894 246.137954712 249.267974854 251.537338257 251.560958862 256.327026367 259.807678223 261.890136719 264.335540771 266.293273926 268.312286377 270.066070557 271.24798584 272.245361328 273.296203613 274.319946289 275.368896484 276.388885498 277.454162598 278.671905518 279.852813721 281.066070557 282.311981201 283.413024902 284.321655273 285.128173828 285.962524414 286.73815918 287.521514893 288.367095947 289.099121094 289.837158203 290.689697266 291.440490723 292.18069458 292.97869873 293.660064697 294.2862854 294.923797607 295.537597656 296.151184082 296.768615723 297.290435791 297.790283203 298.384216309 298.996704102 299.531433105 300.004608154 300.382415771 300.651702881 300.791564941 300.716674805 300.585083008 300.678924561 300.731048584 300.241363525 299.324462891 298.446075439 297.848815918 297.831665039 298.467712402 299.398193359 299.986175537 299.987457275 299.723266602 299.391662598 298.925964355 298.365722656 297.869537354 297.467376709 297.024108887 296.423919678 295.623596191 294.869842529 294.470092773 294.208557129 293.970001221 293.647644043 293.166534424 292.375213623 291.160522461 289.684783936 288.05078125 286.553649902 285.317596436 284.168273926 283.052612305 281.805358887 280.693267822 279.63961792 278.687927246 277.856658936 277.122802734 276.495727539 275.764282227 274.973205566 274.176300049 272.895385742 270.359832764 267.064422607 263.096618652 260.229095459 258.874389648 258.3699646 258.029663086 257.011138916 255.361160278 253.5728302 252.952911377 253.084075928 251.944473267 250.36819458 248.506286621 247.098205566 245.567733765 245.326324463 245.421508789 244.621307373 243.751434326 242.817886353 241.903579712 241.130065918 240.454040527 247.051239014 250.557525635 256.128936768 261.705474854 264.789245605 265.666320801 265.643615723 266.020996094 266.888366699 267.792480469 269.764770508 270.952606201 271.14453125 270.93661499 270.872772217 271.152526855 271.607086182 272.058380127 272.8465271 273.668273926 274.447418213 275.432617188 276.449890137 277.346588135 278.226806641 279.217254639 280.415527344 281.676300049 282.821105957 283.926422119 284.873931885 285.706237793 286.471496582 287.222961426 287.942047119 288.480682373 289.061737061 289.979553223 290.981201172 291.896514893 292.622344971 293.215209961 293.818634033 294.43157959 294.990478516 295.52432251 296.089355469 296.634735107 297.103973389 297.591827393 298.066894531 298.460876465 298.897521973 299.468109131 300.065948486 300.48034668 300.553131104 300.392883301 300.383026123 300.56729126 300.49786377 299.85043335 298.773376465 297.766113281 297.444976807 297.748382568 298.397369385 299.21282959 299.835144043 299.946105957 299.592346191 299.125030518 298.685302734 298.277618408 298.00012207 297.638671875 296.996643066 296.127288818 295.357818604 294.98727417 294.727294922 294.585266113 294.360778809 294.056335449 293.522857666 292.484222412 291.138183594 289.589080811 288.133239746 286.955200195 285.872619629 284.693572998 283.39630127 282.284606934 281.172607422 280.166290283 279.194915771 278.25881958 277.47744751 276.763946533 275.984405518 275.092895508 273.977203369 272.313079834 268.873657227 264.196960449 256.73651123 252.766555786 250.207138062 248.303634644 245.887496948 244.351486206 241.7371521 241.226379395 242.741531372 242.895767212 241.864547729 239.047576904 237.432403564 236.941268921 236.169113159 236.121841431 237.31439209 239.057815552 240.404663086 240.688552856 239.820495605 239.087127686 237.154388428 241.166503906 246.934829712 252.673858643 254.995819092 254.923446655 255.459487915 256.556243896 259.519775391 261.483520508 264.207061768 266.554992676 267.730194092 268.729309082 269.641357422 270.579528809 271.519317627 272.328704834 273.086334229 273.834350586 274.667388916 275.678039551 276.679382324 277.644439697 278.632659912 279.667419434 280.84085083 282.002166748 283.011810303 283.958343506 284.832977295 285.664337158 286.439575195 287.206207275 288.04083252 288.825256348 289.587524414 290.47442627 291.304718018 292.047912598 292.7421875 293.391357422 294.050506592 294.693359375 295.293487549 295.799407959 296.271728516 296.737182617 297.273162842 297.945343018 298.619110107 299.144256592 299.617675781 300.08114624 300.41619873 300.585601807 300.599029541 300.482513428 300.453216553 300.518890381 300.331237793 299.754669189 298.924713135 298.019958496 297.499664307 297.756286621 298.638305664 299.566467285 299.978637695 299.794616699 299.306243896 298.743835449 298.20803833 297.803039551 297.484863281 297.114593506 296.581695557 295.812438965 295.04498291 294.698760986 294.402038574 294.150299072 293.857940674 293.562683105 293.113525391 292.217529297 290.926116943 289.27255249 287.709899902 286.342590332 285.238464355 284.342193604 283.405303955 282.491333008 281.523529053 280.60333252 279.686340332 278.832092285 278.051574707 277.214996338 276.516601562 276.048828125 275.764343262 275.169464111 272.695953369 269.354187012 264.797821045 262.828369141 261.750915527 260.550140381 258.31842041 256.635131836 253.586547852 251.78717041 250.071792603 248.835418701 248.220977783 246.40335083 244.728317261 243.543243408 243.096969604 243.237258911 243.122375488 242.560134888 242.234329224 241.838317871 241.861602783 241.722290039 227.578170776 234.119842529 241.599472046 247.376983643 247.900863647 244.955947876 246.626525879 249.543716431 251.594589233 251.54574585 256.202636719 259.795166016 262.122253418 264.563476562 266.496307373 268.485076904 270.186889648 271.311004639 272.247467041 273.245910645 274.226501465 275.260345459 276.295166016 277.372619629 278.59286499 279.800262451 281.065216064 282.363647461 283.46472168 284.304870605 285.051055908 285.86895752 286.664398193 287.481292725 288.344818115 289.063201904 289.792907715 290.661254883 291.411376953 292.147766113 292.959136963 293.653106689 294.276733398 294.930328369 295.573364258 296.222869873 296.867706299 297.433288574 297.973510742 298.568145752 299.140167236 299.660797119 300.123168945 300.461120605 300.6902771 300.820068359 300.756072998 300.608581543 300.625823975 300.632995605 300.168395996 299.305023193 298.421905518 297.822784424 297.836700439 298.465667725 299.38470459 299.979187012 299.969116211 299.682617188 299.34954834 298.887115479 298.321228027 297.807800293 297.377838135 296.916687012 296.325653076 295.498931885 294.702575684 294.354248047 294.05279541 293.784393311 293.469268799 293.054016113 292.43145752 291.402526855 290.025146484 288.284759521 286.722717285 285.470062256 284.363800049 283.252197266 282.032806396 280.930755615 279.830810547 278.839874268 277.93371582 277.198059082 276.560455322 275.808624268 275.046783447 274.30267334 273.202423096 271.190307617 267.756072998 264.382537842 260.55291748 258.644836426 257.600036621 257.579315186 256.665740967 255.470397949 253.548797607 252.971511841 253.134048462 252.137649536 250.576126099 248.527084351 247.047424316 245.470016479 245.224411011 245.268997192 244.419799805 243.675979614 242.76763916 241.864578247 241.156570435 240.449752808 247.052597046 250.575256348 256.132080078 261.682098389 264.725708008 265.593322754 265.578979492 265.894714355 266.663116455 267.427947998 269.510894775 270.895233154 271.162078857 270.918792725 270.899108887 271.112030029 271.56842041 272.045562744 272.857757568 273.647064209 274.362365723 275.268585205 276.263641357 277.18371582 278.098022461 279.108215332 280.354522705 281.688568115 282.865234375 283.95111084 284.855834961 285.645996094 286.404266357 287.168304443 287.895782471 288.484008789 289.166229248 290.123077393 291.055175781 291.902832031 292.598937988 293.171783447 293.768096924 294.387023926 294.955780029 295.485534668 296.027496338 296.559783936 297.056152344 297.594085693 298.091949463 298.483947754 298.912902832 299.479980469 300.066894531 300.477081299 300.569244385 300.425933838 300.398254395 300.564880371 300.551055908 300.004486084 298.916442871 297.78994751 297.438201904 297.776641846 298.406616211 299.179901123 299.823364258 299.962188721 299.610443115 299.15637207 298.709289551 298.248046875 297.946807861 297.627868652 297.016204834 296.232879639 295.565826416 295.034210205 294.677642822 294.448364258 294.212768555 293.995849609 293.625061035 292.797210693 291.635803223 290.097900391 288.582641602 287.345916748 286.295959473 285.010803223 283.638885498 282.46762085 281.334381104 280.299499512 279.312042236 278.434631348 277.647735596 276.930236816 276.161682129 275.216003418 274.278991699 272.972686768 270.271331787 265.954528809 259.563476562 252.742385864 249.408905029 248.021179199 245.985534668 244.051696777 241.541793823 241.026855469 242.473739624 242.855316162 241.751205444 238.830474854 237.212310791 236.595001221 235.861694336 235.932937622 237.277236938 239.084411621 240.305709839 240.564147949 239.815231323 239.095947266 237.193252563 241.251266479 246.927658081 252.623687744 254.94203186 254.925720215 255.555160522 256.551239014 259.260925293 261.046508789 263.823028564 266.463623047 267.68170166 268.686859131 269.726165771 270.582824707 271.553588867 272.400878906 273.167907715 273.856292725 274.60836792 275.54788208 276.521331787 277.477478027 278.476898193 279.5390625 280.756317139 281.990844727 283.038116455 283.974578857 284.797698975 285.565612793 286.302856445 287.078674316 287.936096191 288.74432373 289.529846191 290.394958496 291.178771973 291.935211182 292.682952881 293.329681396 293.959625244 294.605072021 295.220397949 295.758544922 296.261749268 296.738922119 297.284790039 297.961853027 298.654907227 299.234832764 299.727752686 300.110168457 300.364105225 300.559631348 300.617218018 300.502624512 300.433105469 300.449157715 300.260467529 299.676025391 298.773620605 297.820404053 297.356628418 297.66595459 298.544677734 299.507446289 299.966522217 299.772827148 299.286102295 298.740447998 298.157470703 297.693908691 297.37008667 297.023803711 296.551055908 295.95904541 295.280639648 294.702484131 294.338134766 294.041320801 293.708679199 293.447875977 293.140686035 292.447662354 291.336914062 289.713012695 288.054748535 286.631103516 285.529663086 284.591827393 283.680664062 282.754333496 281.738311768 280.78414917 279.84274292 278.991149902 278.128326416 277.258758545 276.53137207 276.001159668 275.753540039 275.430908203 273.613220215 269.959381104 265.468414307 262.21105957 260.806671143 260.016479492 258.096954346 256.247955322 253.488052368 251.732330322 249.936477661 248.686325073 248.015594482 246.095581055 244.518371582 243.372299194 242.921340942 243.06829834 242.975387573 242.481231689 242.20854187 241.773986816 241.853607178 241.71295166 227.740585327 234.126235962 241.55255127 247.302276611 247.844177246 245.06942749 247.148406982 249.865402222 251.615753174 251.594543457 256.130615234 259.791564941 262.393493652 264.825408936 266.735015869 268.706726074 270.363555908 271.414093018 272.277252197 273.225799561 274.145050049 275.147521973 276.193695068 277.282897949 278.511535645 279.75201416 281.059814453 282.37588501 283.462463379 284.268371582 284.988311768 285.791412354 286.591644287 287.425567627 288.305358887 289.053894043 289.80960083 290.670440674 291.395721436 292.13684082 292.961517334 293.65447998 294.297790527 294.995330811 295.672668457 296.328399658 296.973602295 297.565368652 298.168457031 298.771392822 299.294586182 299.769622803 300.219970703 300.521575928 300.719787598 300.843353271 300.756103516 300.588470459 300.563751221 300.532714844 300.092559814 299.289825439 298.417663574 297.779876709 297.794219971 298.44342041 299.349609375 299.937286377 299.921630859 299.626037598 299.293426514 298.830963135 298.268280029 297.749908447 297.294433594 296.836853027 296.309051514 295.600738525 294.880737305 294.326385498 293.92791748 293.588348389 293.253234863 292.88104248 292.389587402 291.535400391 290.261413574 288.485137939 286.872344971 285.616790771 284.539337158 283.404052734 282.196563721 281.066802979 279.958129883 278.943756104 277.977783203 277.259918213 276.628112793 275.899993896 275.148651123 274.373779297 273.456420898 271.853027344 268.981323242 265.541168213 261.809875488 258.334014893 256.839599609 257.065429688 256.552490234 255.325973511 253.545700073 252.942169189 253.218948364 252.21673584 250.713180542 248.58656311 247.0652771 245.570083618 245.162689209 245.092193604 244.241989136 243.565170288 242.735046387 241.813934326 241.186279297 240.444335938 247.082077026 250.603912354 256.123046875 261.644683838 264.639984131 265.523651123 265.496551514 265.641998291 266.274291992 266.908782959 269.000335693 270.772369385 271.182495117 270.92388916 270.908569336 271.088287354 271.53012085 272.056610107 272.890563965 273.660217285 274.301605225 275.091888428 276.027404785 276.981567383 277.960144043 279.014038086 280.309448242 281.683258057 282.863006592 283.913116455 284.774719238 285.531188965 286.300079346 287.090148926 287.828491211 288.477050781 289.289337158 290.252593994 291.096252441 291.859893799 292.551391602 293.145172119 293.752105713 294.362335205 294.9296875 295.449584961 295.95803833 296.488952637 297.047058105 297.621490479 298.107421875 298.486206055 298.94720459 299.561401367 300.1512146 300.505889893 300.562438965 300.45123291 300.413757324 300.556152344 300.578735352 300.080047607 298.967803955 297.786621094 297.421020508 297.75692749 298.383789062 299.158721924 299.825439453 299.977874756 299.617340088 299.158874512 298.712219238 298.224975586 297.884552002 297.603027344 297.076690674 296.384307861 295.718292236 295.091827393 294.607421875 294.305877686 294.068206787 293.894226074 293.632385254 292.98526001 292.023254395 290.609649658 289.109741211 287.753723145 286.632446289 285.291778564 283.965301514 282.724945068 281.524932861 280.440032959 279.472625732 278.603179932 277.794311523 277.121734619 276.296691895 275.317779541 274.460693359 273.431121826 271.435882568 267.488464355 261.74105835 253.104507446 249.238449097 247.510528564 245.73789978 243.732666016 241.273223877 240.82800293 242.226104736 242.812286377 241.724960327 238.703216553 237.028518677 236.287765503 235.571456909 235.804840088 237.203231812 239.078598022 240.171646118 240.475036621 239.824279785 239.099990845 237.27053833 241.245895386 246.896118164 252.575927734 254.878494263 254.960922241 255.629852295 256.659454346 258.867004395 260.208709717 263.271575928 266.30279541 267.703979492 268.803710938 269.841705322 270.666320801 271.609649658 272.508483887 273.313812256 273.977172852 274.631072998 275.452697754 276.358581543 277.290222168 278.330718994 279.434509277 280.691192627 281.958557129 283.01651001 283.937652588 284.695373535 285.414978027 286.150360107 286.94418335 287.828582764 288.681335449 289.525634766 290.374694824 291.09576416 291.858856201 292.64666748 293.27166748 293.867919922 294.527954102 295.168487549 295.744049072 296.274505615 296.763031006 297.338775635 298.021606445 298.716461182 299.334716797 299.841644287 300.157775879 300.366790771 300.584564209 300.660736084 300.509368896 300.400970459 300.406005859 300.228240967 299.604492188 298.605102539 297.619110107 297.227081299 297.609191895 298.507293701 299.487487793 299.94430542 299.716003418 299.21887207 298.685638428 298.077484131 297.579620361 297.248382568 296.928527832 296.539916992 296.060150146 295.374237061 294.685974121 294.232879639 293.892120361 293.5362854 293.291381836 293.061798096 292.53237915 291.649047852 290.197814941 288.492584229 286.912445068 285.767120361 284.811645508 283.941802979 282.955841064 281.899902344 280.922210693 279.988830566 279.125976562 278.209777832 277.345001221 276.537841797 275.953186035 275.677337646 275.501403809 274.273986816 270.827026367 266.451324463 262.041290283 260.182037354 259.194335938 257.661590576 255.726364136 253.221496582 251.64112854 249.73979187 248.613265991 247.778884888 245.86491394 244.293060303 243.153930664 242.730636597 242.884765625 242.842315674 242.294082642 242.149139404 241.747039795 241.849060059 241.698318481 227.804641724 234.117874146 241.500350952 247.215835571 247.81817627 245.241424561 247.617950439 250.090286255 251.525665283 251.592544556 256.305236816 259.90145874 262.813110352 265.152709961 267.034423828 269.001251221 270.626647949 271.60848999 272.381744385 273.277496338 274.116516113 275.041900635 276.078399658 277.186096191 278.437896729 279.720367432 281.066650391 282.366638184 283.421112061 284.21496582 284.921813965 285.693054199 286.478363037 287.304595947 288.213348389 289.054412842 289.883056641 290.737670898 291.437805176 292.195678711 293.013366699 293.678039551 294.355407715 295.129180908 295.85357666 296.490692139 297.089477539 297.660980225 298.318725586 298.937835693 299.391235352 299.797027588 300.223846436 300.526000977 300.737365723 300.857543945 300.71585083 300.522186279 300.496704102 300.46585083 300.036743164 299.265319824 298.414672852 297.747589111 297.74407959 298.410461426 299.323669434 299.893493652 299.851501465 299.546386719 299.220123291 298.753265381 298.192138672 297.676086426 297.188110352 296.723052979 296.277709961 295.671813965 294.950042725 294.30267334 293.791931152 293.38885498 293.046142578 292.706054688 292.30645752 291.602233887 290.45880127 288.749542236 287.096099854 285.741455078 284.65133667 283.494293213 282.321533203 281.139801025 280.034454346 278.997924805 278.028411865 277.305664062 276.683746338 276.036987305 275.262451172 274.459197998 273.642059326 272.357513428 270.127105713 266.638519287 262.910064697 258.512786865 256.567657471 256.298736572 256.18347168 255.109588623 253.428970337 252.835708618 253.178024292 252.313217163 250.918548584 248.764312744 247.052993774 245.555633545 245.049285889 244.884613037 244.137969971 243.37449646 242.668792725 241.810974121 241.222229004 240.435668945 247.118942261 250.609298706 256.091430664 261.590667725 264.614959717 265.451873779 265.511047363 265.359741211 265.879302979 266.440551758 268.475646973 270.632843018 271.19342041 270.975830078 270.951293945 271.133514404 271.540893555 272.102905273 272.973297119 273.720184326 274.303375244 274.970703125 275.812988281 276.786743164 277.843811035 278.951660156 280.286804199 281.668243408 282.824981689 283.829071045 284.653137207 285.410919189 286.237640381 287.074279785 287.823760986 288.516571045 289.368103027 290.319976807 291.098144531 291.793701172 292.455780029 293.081665039 293.741699219 294.360046387 294.913970947 295.421508789 295.925445557 296.484741211 297.096038818 297.674468994 298.151855469 298.57510376 299.098022461 299.73614502 300.305999756 300.611328125 300.635925293 300.482421875 300.39151001 300.518005371 300.571868896 300.075653076 298.960266113 297.798095703 297.383331299 297.631317139 298.27130127 299.119842529 299.825378418 300.006530762 299.646759033 299.139007568 298.659088135 298.174438477 297.802368164 297.517028809 297.075073242 296.494140625 295.817199707 295.072479248 294.505096436 294.187103271 293.960693359 293.786315918 293.5730896 293.062927246 292.28125 291.098815918 289.674102783 288.220611572 286.983856201 285.609313965 284.332763672 283.001434326 281.758117676 280.629455566 279.673950195 278.748382568 277.909667969 277.256103516 276.392211914 275.421417236 274.591217041 273.793731689 272.394104004 269.061462402 263.289855957 254.399993896 249.543014526 247.123184204 245.506637573 243.324905396 241.006988525 240.656646729 242.046478271 242.768218994 241.742584229 238.472442627 236.783416748 235.985809326 235.207687378 235.594329834 237.18397522 238.936950684 240.052307129 240.395675659 239.826599121 239.103164673 237.244766235 241.200057983 246.854598999 252.501602173 254.829315186 255.009658813 255.794815063 256.995880127 258.603973389 259.68258667 262.841186523 266.092132568 267.727539062 268.936004639 269.890594482 270.742553711 271.660400391 272.638580322 273.503204346 274.168701172 274.745178223 275.445495605 276.231628418 277.122283936 278.201782227 279.359619141 280.659423828 281.933380127 282.987854004 283.877563477 284.603149414 285.314758301 286.074523926 286.901763916 287.80947876 288.688781738 289.558959961 290.39074707 291.087402344 291.829711914 292.593353271 293.192047119 293.799499512 294.507110596 295.166625977 295.752441406 296.306091309 296.824523926 297.412231445 298.096008301 298.78918457 299.425872803 299.928283691 300.209014893 300.411895752 300.637786865 300.692382812 300.493499756 300.350097656 300.359954834 300.18057251 299.533233643 298.52331543 297.553009033 297.140319824 297.504669189 298.442169189 299.468597412 299.911224365 299.670135498 299.157836914 298.583129883 297.959259033 297.47946167 297.134185791 296.788818359 296.433624268 296.009552002 295.319763184 294.555236816 294.037017822 293.658203125 293.314971924 293.09185791 292.893096924 292.499511719 291.860992432 290.664215088 288.981903076 287.232299805 286.015777588 285.052429199 284.190551758 283.096343994 282.013763428 281.038909912 280.135681152 279.210388184 278.279602051 277.418395996 276.547668457 275.933105469 275.616210938 275.489013672 274.725646973 271.745056152 267.175537109 262.289764404 260.060455322 258.397613525 257.298980713 255.236022949 252.837265015 251.526916504 249.430038452 248.599105835 247.486999512 245.420516968 243.901672363 242.774734497 242.444076538 242.707641602 242.645233154 242.133834839 242.071182251 241.732192993 241.843673706 241.677230835 227.765655518 234.103607178 241.431900024 247.15171814 247.838348389 245.491485596 248.016052246 250.304473877 251.597427368 251.725189209 256.296173096 260.037628174 263.245239258 265.488922119 267.360351562 269.283538818 270.898773193 271.860473633 272.574157715 273.427154541 274.182220459 275.009216309 276.002319336 277.116455078 278.393371582 279.717346191 281.089324951 282.352935791 283.372375488 284.167572021 284.862518311 285.601654053 286.377410889 287.218444824 288.185119629 289.103363037 289.986846924 290.831176758 291.514831543 292.262817383 293.043945312 293.693634033 294.441711426 295.304046631 296.03604126 296.658111572 297.228027344 297.78314209 298.446105957 299.062347412 299.471740723 299.844146729 300.242095947 300.510894775 300.724822998 300.878265381 300.745178223 300.510284424 300.443206787 300.386138916 299.947814941 299.174133301 298.341705322 297.677734375 297.647705078 298.329284668 299.279968262 299.855651855 299.791748047 299.476165771 299.145477295 298.653442383 298.087249756 297.585662842 297.069824219 296.560577393 296.123504639 295.56652832 294.869140625 294.19052124 293.613037109 293.171936035 292.830688477 292.503204346 292.165740967 291.608184814 290.625518799 289.103210449 287.469085693 285.962158203 284.801818848 283.643798828 282.491424561 281.206451416 280.083251953 279.025482178 278.076904297 277.324676514 276.71484375 276.122619629 275.363922119 274.559143066 273.777313232 272.85458374 271.210021973 267.938323975 263.770477295 259.131378174 256.702148438 255.563735962 255.793899536 254.888778687 253.281021118 252.718276978 253.029632568 252.413482666 251.028198242 248.879104614 246.987380981 245.369857788 244.819198608 244.641418457 243.980712891 243.224212646 242.56111145 241.828842163 241.250152588 240.425140381 247.12449646 250.609069824 256.059020996 261.523620605 264.518341064 265.397338867 265.473937988 264.995300293 265.480743408 266.394927979 267.980529785 270.487213135 271.208740234 271.063568115 270.970001221 271.187103271 271.599121094 272.185089111 273.093780518 273.829284668 274.368499756 274.921936035 275.648925781 276.615661621 277.751586914 278.915679932 280.275817871 281.648529053 282.773590088 283.73425293 284.544433594 285.336334229 286.233581543 287.115905762 287.892822266 288.615234375 289.457427979 290.371124268 291.092376709 291.729522705 292.342376709 292.99508667 293.714111328 294.347229004 294.89730835 295.403320312 295.922454834 296.523620605 297.16394043 297.725341797 298.22164917 298.728424072 299.287872314 299.880859375 300.384155273 300.672637939 300.704406738 300.522705078 300.347015381 300.445831299 300.519561768 300.004699707 298.895324707 297.795379639 297.353027344 297.508178711 298.166687012 299.090484619 299.813446045 300.015869141 299.667541504 299.11895752 298.61151123 298.127655029 297.722564697 297.413635254 297.011810303 296.484283447 295.783050537 294.970550537 294.364715576 294.047424316 293.815765381 293.644012451 293.46005249 293.050170898 292.433776855 291.543487549 290.269042969 288.771392822 287.363739014 285.974243164 284.690185547 283.303070068 282.012542725 280.86239624 279.928070068 278.881072998 278.017578125 277.332458496 276.465179443 275.540802002 274.728790283 274.043273926 273.082946777 270.325439453 265.31918335 254.537506104 249.41078186 247.179244995 245.79258728 243.08505249 240.757965088 240.586212158 241.78338623 242.707138062 241.573059082 238.182723999 236.555160522 235.672180176 234.842315674 235.322143555 237.091888428 238.819839478 239.899581909 240.316680908 239.80531311 239.097076416 237.213653564 241.246520996 246.805725098 252.425933838 254.760864258 255.026596069 255.916397095 257.085906982 258.296936035 259.774169922 262.332244873 265.847106934 267.696563721 269.050354004 269.947906494 270.806274414 271.72088623 272.773834229 273.714263916 274.385437012 274.908447266 275.506652832 276.169647217 276.988708496 278.088409424 279.303527832 280.640899658 281.90838623 282.951751709 283.815979004 284.538360596 285.287078857 286.097961426 286.957000732 287.882385254 288.769195557 289.616027832 290.405914307 291.082458496 291.799865723 292.526611328 293.129943848 293.79019165 294.536651611 295.191894531 295.771179199 296.361755371 296.927398682 297.520141602 298.188598633 298.879577637 299.497406006 299.964019775 300.23614502 300.45803833 300.67590332 300.705718994 300.488586426 300.333740234 300.341339111 300.13760376 299.459014893 298.48348999 297.547119141 297.068511963 297.384155273 298.383270264 299.449890137 299.854797363 299.607818604 299.106964111 298.500305176 297.872558594 297.408782959 297.025756836 296.638183594 296.301330566 295.892608643 295.18460083 294.399353027 293.845184326 293.426147461 293.081085205 292.874359131 292.669921875 292.355987549 291.94418335 291.061981201 289.499176025 287.674743652 286.335021973 285.345428467 284.419586182 283.247894287 282.140258789 281.139434814 280.255432129 279.258880615 278.336914062 277.466125488 276.587463379 275.957946777 275.590148926 275.432342529 274.969268799 272.468078613 268.008331299 261.444396973 258.9324646 257.919372559 257.212341309 255.00692749 252.560409546 251.429916382 249.069961548 248.541885376 247.025527954 244.955154419 243.517852783 242.400344849 242.174057007 242.567214966 242.429244995 242.004898071 241.977203369 241.719100952 241.834625244 241.649368286 227.787506104 234.098526001 241.353500366 247.064651489 247.837814331 245.825057983 248.359100342 250.389129639 251.793167114 252.650375366 256.17590332 260.191894531 263.561584473 265.858734131 267.692230225 269.531738281 271.147399902 272.127502441 272.820526123 273.63470459 274.321563721 275.057983398 275.992340088 277.077667236 278.367675781 279.725585938 281.106689453 282.330932617 283.322296143 284.12713623 284.813995361 285.542480469 286.339813232 287.234313965 288.260864258 289.218536377 290.103424072 290.913757324 291.57232666 292.282348633 293.032287598 293.716156006 294.574371338 295.476226807 296.159179688 296.758148193 297.364349365 297.954406738 298.598175049 299.178771973 299.567749023 299.940734863 300.321807861 300.532196045 300.709747314 300.887512207 300.800048828 300.558776855 300.447875977 300.337097168 299.871490479 299.071289062 298.224731445 297.5730896 297.547027588 298.243591309 299.229156494 299.806854248 299.72946167 299.405303955 299.067565918 298.560180664 297.999237061 297.50567627 296.97064209 296.417755127 295.952453613 295.401245117 294.734283447 294.062194824 293.441192627 292.962188721 292.610107422 292.274993896 291.949676514 291.530761719 290.783660889 289.577423096 288.062713623 286.401672363 285.064300537 283.912750244 282.7081604 281.299804688 280.12197876 279.029907227 278.107879639 277.313079834 276.716705322 276.121246338 275.413696289 274.658447266 273.903961182 273.253601074 272.124664307 269.129730225 264.868041992 259.027923584 256.213439941 255.242172241 255.691543579 254.840057373 253.158050537 252.611404419 252.753890991 252.378860474 250.991897583 248.843276978 246.882659912 245.226043701 244.585281372 244.389572144 243.786804199 243.098403931 242.418731689 241.863937378 241.265274048 240.410079956 247.13269043 250.620498657 256.008911133 261.446166992 264.420013428 265.279846191 265.388336182 264.865234375 265.061340332 266.218322754 267.484313965 270.274475098 271.220275879 271.153991699 270.987915039 271.235351562 271.66583252 272.297210693 273.239196777 273.977081299 274.503112793 274.971923828 275.56439209 276.490753174 277.69543457 278.912322998 280.277893066 281.623931885 282.713409424 283.641784668 284.459289551 285.304168701 286.258087158 287.169708252 287.975158691 288.729553223 289.546203613 290.397491455 291.076599121 291.675628662 292.251800537 292.923126221 293.678527832 294.316436768 294.878875732 295.401000977 295.937438965 296.574981689 297.230316162 297.76852417 298.295410156 298.88671875 299.449981689 299.953704834 300.384979248 300.654418945 300.699554443 300.509094238 300.272338867 300.346923828 300.425445557 299.886138916 298.776153564 297.75869751 297.326049805 297.426940918 298.09765625 299.067718506 299.799255371 299.997436523 299.648193359 299.083465576 298.57144165 298.078155518 297.636260986 297.309539795 296.928527832 296.409637451 295.685211182 294.838745117 294.179260254 293.826782227 293.579101562 293.420928955 293.277404785 292.950683594 292.438415527 291.744110107 290.674346924 289.320373535 287.853515625 286.387268066 285.020843506 283.643737793 282.319580078 281.156158447 280.161437988 279.058624268 278.160980225 277.403137207 276.543304443 275.672424316 274.917266846 274.232116699 273.515289307 271.420318604 265.999542236 256.756866455 249.70866394 247.372039795 245.864074707 242.8019104 240.777145386 240.603668213 241.610931396 242.623580933 241.404083252 238.155654907 236.396606445 235.357376099 234.648971558 235.125930786 236.977462769 238.744155884 239.721725464 240.235961914 239.733200073 239.054199219 237.267181396 241.285919189 246.753189087 252.32371521 254.695068359 255.097946167 256.0128479 256.882324219 257.963378906 259.592926025 261.737060547 265.528961182 267.668823242 269.154022217 270.009216309 270.856292725 271.783599854 272.907440186 273.929138184 274.623321533 275.117431641 275.622711182 276.174255371 276.898468018 277.99798584 279.26675415 280.627532959 281.878845215 282.900085449 283.742034912 284.478881836 285.297607422 286.174316406 287.060394287 288.004516602 288.896881104 289.698577881 290.431396484 291.070861816 291.75881958 292.476287842 293.120574951 293.837188721 294.588134766 295.219848633 295.792205811 296.41885376 297.047393799 297.66003418 298.317871094 298.991973877 299.549041748 299.957794189 300.260101318 300.53427124 300.722991943 300.699920654 300.480499268 300.341033936 300.34979248 300.110839844 299.387634277 298.435638428 297.514984131 296.968719482 297.266723633 298.353118896 299.444061279 299.78326416 299.510894775 299.028533936 298.421447754 297.815216064 297.363128662 296.922668457 296.494689941 296.176940918 295.762786865 295.034484863 294.240478516 293.642822266 293.167053223 292.81161499 292.621704102 292.421142578 292.154724121 291.848999023 291.172119141 289.854278564 288.250244141 286.834594727 285.692199707 284.621368408 283.436981201 282.295166016 281.266937256 280.315704346 279.300018311 278.409637451 277.521881104 276.663513184 276.01953125 275.605499268 275.368591309 275.041351318 273.141571045 268.090301514 261.814178467 258.109375 257.297821045 256.899749756 254.799194336 252.455200195 251.413955688 248.779418945 248.404022217 246.695892334 244.645584106 243.196456909 242.150436401 241.987701416 242.433288574 242.176315308 241.901855469 241.915985107 241.698165894 241.817199707 241.602828979 227.944778442 234.088668823 241.261901855 246.949325562 247.877624512 246.226135254 248.642654419 250.459976196 251.515853882 252.953445435 255.902908325 260.242248535 263.777435303 266.252716064 268.024108887 269.752502441 271.366241455 272.386901855 273.092529297 273.877349854 274.518493652 275.185668945 276.060424805 277.079620361 278.360229492 279.735595703 281.106323242 282.29284668 283.265319824 284.085968018 284.772705078 285.514282227 286.35534668 287.312988281 288.396148682 289.345947266 290.185821533 290.961120605 291.607299805 292.28894043 293.028961182 293.792877197 294.754760742 295.62612915 296.217529297 296.791503906 297.470855713 298.118804932 298.747558594 299.277435303 299.64050293 300.010528564 300.388275146 300.570404053 300.71081543 300.877624512 300.810974121 300.585266113 300.452636719 300.299987793 299.808441162 298.980285645 298.098693848 297.45413208 297.469024658 298.201263428 299.19052124 299.746826172 299.65814209 299.330841064 298.98059082 298.469451904 297.922790527 297.425628662 296.870849609 296.286010742 295.790161133 295.235870361 294.595214844 293.926849365 293.258483887 292.736236572 292.373565674 292.03414917 291.724060059 291.397369385 290.820648193 289.885009766 288.594909668 287.053924561 285.583618164 284.314819336 282.947845459 281.462158203 280.208984375 279.117218018 278.176971436 277.352783203 276.72088623 276.08883667 275.44644165 274.7605896 274.062591553 273.548278809 272.802062988 270.323272705 265.311401367 259.940124512 255.787689209 254.752838135 255.356750488 254.672698975 253.097442627 252.5440979 252.35723877 252.227523804 250.956542969 248.940155029 246.952194214 245.234741211 244.469894409 244.20652771 243.567733765 242.974197388 242.344497681 241.905395508 241.258651733 240.380279541 247.153701782 250.625564575 255.95135498 261.354309082 264.287689209 265.152832031 265.239532471 264.570770264 264.6043396 265.78112793 266.987121582 269.960998535 271.204528809 271.237640381 271.070007324 271.274230957 271.747436523 272.429595947 273.403961182 274.17288208 274.735900879 275.166748047 275.631988525 276.461029053 277.70135498 278.959991455 280.306304932 281.588104248 282.625976562 283.540771484 284.391265869 285.29510498 286.272247314 287.172119141 287.996154785 288.772033691 289.559661865 290.344970703 291.017974854 291.638824463 292.246948242 292.923797607 293.647796631 294.265136719 294.862854004 295.429962158 295.97467041 296.627227783 297.288635254 297.823394775 298.393341064 299.029510498 299.552368164 299.975372314 300.363006592 300.593200684 300.603820801 300.408966064 300.170227051 300.244934082 300.329772949 299.783508301 298.683135986 297.720367432 297.3097229 297.390930176 298.037750244 299.014984131 299.786193848 299.981658936 299.596099854 299.03314209 298.53692627 298.012084961 297.526794434 297.19934082 296.82232666 296.299072266 295.583190918 294.720977783 293.97845459 293.551208496 293.28527832 293.145324707 293.036132812 292.773956299 292.345947266 291.797149658 290.902526855 289.721374512 288.262786865 286.759796143 285.341491699 284.037841797 282.682220459 281.485656738 280.379943848 279.284698486 278.390350342 277.545471191 276.653167725 275.807952881 275.133758545 274.397918701 273.840454102 272.168212891 266.830078125 258.20098877 250.597717285 247.672958374 245.824050903 242.885452271 241.024734497 240.777740479 241.702163696 242.63494873 241.392501831 238.011657715 236.165847778 235.080368042 234.503067017 235.102905273 236.820602417 238.742385864 239.535217285 240.116073608 239.582580566 238.990478516 237.289962769 241.237686157 246.684570312 252.199035645 254.626876831 255.115936279 256.066009521 256.658630371 257.495025635 259.046661377 261.004638672 265.129455566 267.707885742 269.246185303 270.089935303 270.869628906 271.846954346 273.048126221 274.153381348 274.907714844 275.406036377 275.826873779 276.251373291 276.864074707 277.950042725 279.259185791 280.627044678 281.847137451 282.83380127 283.649139404 284.411071777 285.308837891 286.256500244 287.145477295 288.10458374 289.017120361 289.787597656 290.469329834 291.071258545 291.756408691 292.522918701 293.219909668 293.939300537 294.641784668 295.269165039 295.857330322 296.500366211 297.199798584 297.855804443 298.515045166 299.15020752 299.60534668 299.918823242 300.283416748 300.633483887 300.789459229 300.690002441 300.474182129 300.340454102 300.334228516 300.068237305 299.326385498 298.369110107 297.41494751 296.802490234 297.124053955 298.323516846 299.438934326 299.736022949 299.423675537 298.929748535 298.330047607 297.766357422 297.324707031 296.822998047 296.359313965 296.042785645 295.61416626 294.884796143 294.084228516 293.425140381 292.880615234 292.512786865 292.332000732 292.137817383 291.908477783 291.637756348 291.081298828 290.020996094 288.705200195 287.247436523 285.97946167 284.821105957 283.67288208 282.472381592 281.40057373 280.349182129 279.358062744 278.537353516 277.642303467 276.768890381 276.080810547 275.632843018 275.312683105 275.077606201 273.530822754 268.551177979 262.146606445 258.155456543 256.861907959 256.243347168 254.623596191 252.403549194 250.973999023 248.945846558 248.384521484 246.362854004 244.188461304 242.761306763 241.777328491 241.734725952 242.260040283 241.996765137 241.739944458 241.849319458 241.666107178 241.786254883 241.548187256 227.959960938 234.099395752 241.152694702 246.839828491 247.909576416 246.525299072 248.930282593 250.465621948 251.245986938 252.938491821 255.269256592 260.04296875 263.883911133 266.694915771 268.372283936 269.955810547 271.556182861 272.64831543 273.373046875 274.162567139 274.78692627 275.403503418 276.214447021 277.136413574 278.377258301 279.742980957 281.081512451 282.227630615 283.188018799 284.025909424 284.738830566 285.502716064 286.384338379 287.411621094 288.500610352 289.393432617 290.167236328 290.955108643 291.643493652 292.350128174 293.1328125 293.98638916 294.971801758 295.74331665 296.259918213 296.827453613 297.56072998 298.257171631 298.873138428 299.373413086 299.703765869 300.023925781 300.379852295 300.599487305 300.758117676 300.859313965 300.720214844 300.504425049 300.391204834 300.198913574 299.685333252 298.860961914 297.954650879 297.300354004 297.378662109 298.167480469 299.131286621 299.657592773 299.587860107 299.273132324 298.883636475 298.359863281 297.823883057 297.320648193 296.752929688 296.155273438 295.632995605 295.075561523 294.45715332 293.788452148 293.076141357 292.517150879 292.134063721 291.781982422 291.473449707 291.198883057 290.733551025 290.016845703 288.956939697 287.607879639 286.0546875 284.669342041 283.191864014 281.697113037 280.395843506 279.321716309 278.339477539 277.517364502 276.819091797 276.105926514 275.500732422 274.875274658 274.255950928 273.794433594 273.310760498 271.234283447 265.924072266 260.326873779 255.948699951 254.457962036 254.689666748 254.450836182 253.163375854 252.428359985 252.043640137 252.092758179 250.857513428 249.030334473 247.015151978 245.263046265 244.359359741 244.052932739 243.436691284 242.807006836 242.303115845 241.945404053 241.232208252 240.343688965 247.175018311 250.611465454 255.878738403 261.250976562 264.167663574 265.032958984 265.094238281 264.260559082 264.095977783 265.460723877 266.522613525 269.580780029 271.169372559 271.318054199 271.178497314 271.336883545 271.813171387 272.53414917 273.516052246 274.330108643 274.946655273 275.404785156 275.823608398 276.569396973 277.786682129 279.051116943 280.352905273 281.544952393 282.529754639 283.456451416 284.360137939 285.303771973 286.285827637 287.169830322 287.980834961 288.736480713 289.480529785 290.246887207 290.957366943 291.642608643 292.311889648 292.989776611 293.665863037 294.256195068 294.889312744 295.490966797 296.020141602 296.641693115 297.295928955 297.865386963 298.477264404 299.101226807 299.572052002 299.966369629 300.341094971 300.529754639 300.514007568 300.347839355 300.139648438 300.185089111 300.251525879 299.749359131 298.687957764 297.72177124 297.31350708 297.406951904 298.006195068 298.947479248 299.774627686 299.98626709 299.563018799 299.003570557 298.516967773 297.962341309 297.439971924 297.089813232 296.674987793 296.162231445 295.52532959 294.660766602 293.794403076 293.262664795 292.970336914 292.827667236 292.744140625 292.535247803 292.17755127 291.747283936 291.00994873 290.005187988 288.621826172 287.108795166 285.629974365 284.400543213 283.066009521 281.802642822 280.576080322 279.52911377 278.621307373 277.776916504 276.793273926 275.982910156 275.317047119 274.583862305 274.119781494 272.539245605 267.536468506 257.729827881 250.65637207 247.939331055 245.681411743 242.839187622 241.237289429 241.003219604 241.62097168 242.369186401 241.196426392 237.635375977 235.816772461 234.761260986 234.277694702 235.095794678 236.749725342 238.711486816 239.375518799 239.838577271 239.462799072 238.939575195 237.278381348 241.232635498 246.609298706 252.054443359 254.53288269 255.15663147 256.082397461 256.415985107 256.846679688 258.772583008 260.419250488 264.814971924 267.817565918 269.379547119 270.163421631 270.874053955 271.902160645 273.164855957 274.323181152 275.147827148 275.673095703 276.058929443 276.39755249 276.924560547 277.986694336 279.307678223 280.652191162 281.835266113 282.807006836 283.613952637 284.402801514 285.34777832 286.315673828 287.182342529 288.1300354 289.045318604 289.811004639 290.497406006 291.141601562 291.874237061 292.681518555 293.382995605 294.058227539 294.728057861 295.393066406 296.004058838 296.640625 297.359954834 298.046295166 298.677337646 299.243682861 299.630401611 299.911071777 300.286651611 300.64163208 300.765258789 300.666381836 300.485046387 300.32800293 300.243865967 299.966339111 299.276641846 298.317077637 297.317565918 296.705780029 297.064025879 298.302764893 299.411010742 299.71774292 299.403991699 298.888793945 298.283111572 297.730712891 297.274353027 296.737030029 296.254974365 295.904388428 295.457977295 294.758483887 293.946258545 293.198486328 292.575256348 292.176055908 291.967346191 291.780487061 291.59753418 291.334503174 290.843688965 290.009918213 288.972259521 287.540008545 286.170593262 284.95123291 283.842834473 282.622375488 281.514526367 280.379058838 279.430969238 278.6378479 277.810668945 276.868041992 276.14932251 275.63684082 275.267303467 275.07913208 273.573181152 268.9168396 261.471221924 257.25100708 256.275299072 255.659240723 254.376068115 252.26499939 250.870437622 248.94442749 248.302658081 245.840484619 243.614822388 242.221542358 241.33416748 241.402099609 242.102371216 241.849884033 241.506454468 241.770584106 241.590713501 241.750061035 241.514907837 227.868972778 234.051452637 241.007232666 246.695755005 247.95135498 246.831420898 249.190719604 250.412979126 250.827957153 253.166519165 254.772232056 259.766174316 263.944885254 267.082885742 268.676055908 270.124603271 271.681243896 272.832977295 273.596466064 274.40435791 275.047271729 275.640686035 276.396789551 277.248260498 278.432739258 279.757965088 281.045898438 282.159240723 283.119842529 283.97064209 284.712890625 285.501373291 286.440002441 287.46484375 288.505767822 289.342895508 290.086853027 290.915039062 291.679260254 292.475616455 293.344573975 294.217590332 295.120330811 295.829162598 296.37387085 296.982452393 297.706329346 298.364196777 298.931365967 299.411651611 299.740020752 300.01953125 300.350952148 300.610290527 300.783660889 300.785369873 300.588775635 300.422302246 300.349487305 300.108764648 299.54888916 298.744628906 297.834381104 297.142791748 297.255767822 298.122375488 299.073577881 299.575012207 299.536865234 299.245513916 298.818878174 298.264099121 297.720275879 297.213409424 296.657897949 296.060791016 295.504760742 294.935150146 294.3359375 293.662628174 292.912841797 292.292022705 291.850067139 291.466461182 291.154693604 290.918609619 290.52734375 289.979492188 289.150909424 288.005249023 286.41595459 284.897369385 283.345123291 281.968139648 280.739501953 279.660247803 278.595397949 277.774536133 277.009765625 276.261688232 275.608306885 275.035644531 274.450134277 274.032318115 273.667877197 271.647216797 266.553619385 259.765930176 255.474761963 254.208831787 254.086639404 254.163391113 253.261581421 252.399642944 251.747970581 251.89125061 250.632568359 248.849151611 246.9165802 245.232437134 244.165481567 243.892105103 243.333587646 242.605026245 242.274002075 241.952377319 241.217559814 240.321411133 247.186569214 250.594467163 255.797576904 261.129394531 264.031188965 264.94418335 264.914367676 263.964569092 263.527374268 264.872497559 266.177154541 269.152954102 271.126586914 271.377319336 271.304138184 271.42590332 271.857910156 272.6121521 273.575744629 274.424530029 275.100036621 275.632202148 276.066162109 276.771575928 277.921173096 279.155426025 280.404815674 281.5078125 282.446868896 283.40914917 284.364196777 285.335083008 286.314880371 287.199584961 288.003753662 288.716491699 289.41418457 290.187805176 290.947967529 291.688415527 292.396759033 293.077697754 293.739471436 294.322937012 294.959594727 295.574951172 296.081665039 296.64944458 297.269836426 297.859527588 298.488525391 299.099731445 299.562347412 299.960693359 300.313476562 300.459655762 300.440124512 300.317962646 300.12588501 300.11907959 300.161468506 299.702056885 298.688934326 297.69430542 297.28414917 297.419128418 297.994842529 298.887359619 299.728546143 299.946380615 299.511322021 298.955780029 298.470703125 297.896484375 297.36126709 296.975952148 296.516082764 296.028381348 295.472351074 294.602752686 293.653900146 293.03326416 292.691192627 292.515289307 292.438232422 292.25012207 291.921142578 291.583587646 291.015350342 290.160552979 288.94354248 287.457366943 285.968017578 284.689239502 283.33694458 282.022003174 280.782470703 279.750671387 278.839172363 278.001068115 277.017944336 276.19744873 275.500427246 274.857269287 274.390319824 272.725006104 267.778991699 257.185882568 250.817825317 248.349029541 245.840194702 242.919204712 241.288238525 240.972824097 241.404418945 241.828643799 240.662490845 237.468002319 235.505691528 234.498428345 234.102279663 235.074996948 236.807250977 238.565994263 239.192764282 239.525482178 239.412506104 238.938858032 237.272628784 241.285003662 246.492111206 251.890335083 254.430282593 255.155059814 256.072906494 256.108062744 256.264129639 258.054656982 259.814575195 264.590484619 267.902862549 269.556213379 270.23135376 270.870513916 271.940765381 273.244506836 274.444702148 275.327148438 275.889678955 276.278717041 276.580566406 277.070739746 278.09854126 279.394958496 280.696411133 281.848388672 282.819885254 283.653289795 284.469604492 285.428863525 286.373596191 287.208892822 288.123779297 289.012359619 289.764984131 290.51083374 291.248931885 292.04800415 292.855804443 293.538604736 294.180084229 294.844451904 295.533630371 296.147766113 296.776763916 297.505523682 298.18838501 298.759033203 299.256164551 299.627319336 299.940429688 300.297302246 300.589385986 300.647674561 300.565032959 300.438781738 300.285949707 300.143127441 299.854949951 299.199310303 298.228240967 297.212738037 296.656585693 297.078338623 298.307769775 299.366882324 299.656341553 299.329071045 298.814453125 298.235076904 297.692016602 297.208618164 296.652679443 296.163421631 295.771789551 295.320007324 294.653930664 293.827148438 293.012664795 292.348724365 291.90713501 291.606750488 291.367645264 291.196624756 290.917633057 290.452850342 289.816040039 288.984985352 287.681976318 286.260223389 285.028198242 283.882659912 282.667022705 281.557281494 280.42791748 279.485290527 278.707977295 277.915618896 276.966522217 276.224700928 275.65322876 275.275909424 275.033599854 273.414001465 268.566436768 260.199432373 256.149475098 255.76965332 255.271377563 254.045837402 252.024932861 251.12663269 248.873336792 247.994827271 245.475524902 243.234313965 241.794967651 241.094772339 241.17124939 242.00630188 241.622375488 241.321487427 241.65145874 241.497924805 241.718078613 241.512695312 227.915054321 234.039260864 240.834213257 246.542251587 248.018859863 247.119613647 249.401199341 250.301010132 250.427230835 252.660369873 254.277175903 259.411407471 263.972473145 267.398010254 268.949859619 270.271942139 271.777252197 272.968811035 273.776367188 274.599945068 275.273590088 275.875366211 276.591918945 277.407409668 278.531616211 279.788452148 281.01171875 282.101104736 283.072692871 283.941253662 284.687316895 285.531799316 286.510894775 287.501068115 288.502044678 289.314788818 290.050811768 290.900817871 291.718383789 292.596496582 293.548797607 294.4190979 295.246429443 295.936676025 296.516357422 297.130249023 297.815307617 298.411590576 298.909179688 299.340545654 299.667999268 299.959411621 300.298980713 300.552154541 300.658508301 300.588012695 300.427185059 300.35760498 300.333984375 300.061798096 299.456542969 298.644836426 297.720794678 297.003753662 297.151641846 298.114074707 299.071044922 299.518951416 299.482147217 299.209075928 298.770904541 298.190734863 297.620513916 297.097900391 296.544281006 295.949279785 295.383880615 294.827087402 294.24420166 293.548950195 292.756958008 292.077545166 291.587493896 291.175994873 290.844787598 290.603973389 290.237030029 289.783721924 289.171325684 288.186157227 286.668212891 285.040161133 283.51473999 282.204681396 281.065856934 280.025970459 278.936187744 278.041320801 277.234466553 276.491088867 275.81829834 275.244262695 274.677032471 274.335113525 273.907043457 271.750762939 266.426818848 258.711456299 254.955825806 254.125930786 253.851150513 253.810516357 253.344390869 252.832199097 251.776626587 251.730529785 250.391082764 248.662796021 246.844711304 245.304016113 244.072052002 243.723754883 243.186126709 242.449966431 242.222793579 241.974273682 241.219680786 240.322097778 247.175338745 250.582809448 255.710449219 260.987579346 263.888000488 264.799163818 264.706390381 263.548736572 263.007629395 264.198425293 265.826141357 268.716278076 271.054260254 271.419647217 271.426147461 271.522277832 271.897338867 272.668640137 273.601043701 274.473114014 275.210510254 275.846343994 276.333404541 277.007873535 278.070770264 279.250549316 280.447509766 281.481658936 282.395141602 283.405181885 284.405670166 285.380950928 286.343994141 287.241546631 288.058776855 288.740142822 289.405303955 290.196350098 291.001800537 291.766723633 292.48739624 293.172698975 293.848724365 294.430786133 295.042755127 295.648834229 296.147583008 296.68170166 297.268280029 297.834716797 298.445037842 299.049255371 299.566223145 300.002716064 300.308563232 300.397613525 300.368896484 300.270812988 300.074432373 300.021057129 300.045410156 299.633666992 298.660583496 297.638885498 297.213195801 297.388092041 297.966522217 298.835754395 299.668640137 299.881713867 299.446136475 298.892669678 298.401031494 297.808990479 297.268341064 296.840576172 296.345275879 295.89251709 295.385742188 294.503112793 293.514770508 292.811462402 292.365966797 292.143707275 292.092010498 291.929901123 291.629425049 291.357757568 290.912963867 290.181976318 289.199615479 287.828979492 286.325683594 284.948974609 283.575775146 282.186889648 280.999298096 279.977020264 279.061981201 278.218536377 277.320343018 276.494384766 275.773590088 275.231719971 274.645690918 272.655578613 267.431274414 257.047637939 251.234115601 248.783294678 246.051330566 243.0209198 241.410644531 240.747299194 241.163543701 241.388305664 239.868774414 237.096740723 235.234771729 234.274459839 234.065414429 235.079437256 236.925842285 238.428390503 238.959640503 239.329421997 239.367553711 238.938278198 237.312683105 241.179428101 246.384613037 251.726989746 254.313598633 255.130004883 255.981994629 255.802688599 255.630722046 257.30581665 259.23059082 264.315185547 267.951538086 269.76373291 270.32019043 270.872375488 271.965911865 273.29486084 274.527526855 275.454376221 276.062652588 276.485992432 276.791503906 277.271942139 278.259887695 279.498291016 280.751037598 281.874511719 282.849365234 283.725799561 284.567901611 285.508361816 286.410369873 287.219329834 288.105712891 288.967987061 289.717132568 290.546539307 291.385345459 292.220062256 292.997131348 293.666992188 294.314727783 294.984191895 295.666870117 296.280181885 296.921600342 297.648864746 298.304107666 298.800170898 299.241912842 299.636444092 300.00112915 300.319061279 300.500091553 300.473358154 300.387695312 300.316558838 300.202392578 300.060089111 299.759063721 299.101531982 298.108032227 297.099182129 296.619018555 297.11026001 298.313781738 299.316131592 299.574249268 299.213989258 298.696655273 298.160736084 297.635253906 297.134063721 296.5675354 296.057769775 295.616363525 295.166778564 294.534179688 293.694793701 292.82913208 292.123809814 291.632263184 291.263580322 290.974060059 290.771026611 290.466796875 290.008453369 289.470214844 288.754272461 287.644683838 286.28112793 285.045501709 283.85824585 282.678283691 281.554779053 280.471710205 279.49987793 278.749023438 277.968780518 277.076660156 276.333679199 275.739990234 275.343841553 274.911132812 272.999511719 268.048858643 259.390197754 255.694580078 255.365386963 255.084396362 253.794387817 251.888076782 250.938232422 248.912857056 247.715789795 245.259628296 242.849151611 241.353347778 240.891860962 241.095245361 241.869003296 241.367294312 241.178421021 241.482223511 241.463760376 241.687805176 241.51071167 227.997650146 233.976516724 240.664993286 246.371841431 248.083084106 247.420059204 249.528167725 250.119491577 249.962753296 252.243362427 254.025177002 259.135650635 263.947875977 267.676818848 269.209716797 270.419708252 271.866943359 273.075256348 273.922363281 274.75982666 275.46975708 276.115844727 276.807922363 277.595397949 278.65145874 279.818725586 280.971343994 282.046417236 283.043426514 283.921661377 284.669189453 285.56854248 286.55657959 287.50994873 288.488983154 289.317047119 290.071289062 290.930786133 291.770996094 292.696960449 293.706298828 294.581481934 295.377716064 296.064544678 296.643218994 297.215179443 297.84664917 298.392822266 298.826538086 299.198852539 299.527282715 299.858917236 300.226196289 300.421905518 300.423065186 300.331695557 300.265380859 300.282470703 300.290649414 300.016571045 299.387664795 298.550598145 297.592224121 296.851348877 297.045288086 298.108032227 299.100158691 299.498352051 299.450866699 299.187713623 298.744903564 298.143890381 297.537567139 296.983581543 296.413269043 295.808563232 295.244567871 294.725860596 294.164520264 293.436065674 292.591644287 291.860412598 291.351257324 290.946075439 290.596710205 290.318664551 289.95489502 289.532287598 289.007415771 288.154022217 286.841156006 285.21661377 283.717895508 282.426452637 281.314788818 280.229553223 279.181915283 278.263336182 277.457519531 276.719940186 276.06817627 275.516571045 274.998840332 274.698455811 274.039428711 271.54510498 265.999938965 258.147460938 255.015075684 254.162643433 253.772735596 253.586761475 253.594528198 252.809310913 251.717147827 251.529663086 250.089126587 248.47807312 246.823532104 245.394104004 244.118682861 243.622695923 243.013687134 242.335983276 242.137054443 242.010574341 241.223098755 240.322738647 247.19732666 250.590957642 255.61668396 260.841796875 263.711029053 264.641693115 264.481536865 263.000579834 262.414733887 263.529418945 265.335083008 268.248962402 270.899780273 271.439300537 271.524597168 271.617004395 271.945129395 272.708190918 273.608337402 274.496246338 275.291534424 276.045288086 276.593994141 277.222808838 278.192962646 279.313873291 280.481109619 281.490142822 282.409179688 283.457244873 284.476531982 285.434753418 286.361236572 287.256958008 288.120452881 288.823974609 289.485809326 290.283172607 291.1043396 291.873718262 292.596618652 293.28137207 293.942443848 294.500946045 295.080749512 295.678527832 296.186187744 296.717590332 297.292724609 297.826812744 298.379943848 298.983825684 299.599182129 300.08102417 300.314086914 300.326446533 300.289794922 300.17791748 299.954956055 299.867675781 299.878753662 299.507171631 298.574798584 297.538299561 297.082611084 297.274932861 297.88470459 298.783752441 299.629486084 299.826690674 299.382598877 298.828552246 298.332183838 297.730072021 297.177612305 296.692382812 296.165466309 295.736022949 295.243743896 294.363494873 293.395874023 292.614471436 292.012023926 291.714172363 291.675079346 291.531585693 291.277923584 291.09463501 290.746337891 290.096435547 289.283966064 288.097442627 286.698944092 285.231781006 283.83416748 282.391265869 281.235900879 280.199188232 279.32635498 278.461486816 277.653625488 276.857421875 276.17388916 275.616271973 274.797912598 272.121734619 266.72567749 256.770294189 251.698242188 249.108444214 245.950485229 242.87210083 241.259613037 240.383789062 240.954071045 240.951339722 238.980331421 236.549591064 235.002761841 234.10723877 234.034500122 235.257919312 236.938735962 238.367706299 238.809082031 239.140045166 239.315368652 238.937744141 237.375457764 241.199310303 246.262405396 251.539031982 254.172271729 255.094909668 255.750457764 255.455947876 254.98815918 256.50088501 258.790802002 263.962341309 267.983123779 269.983764648 270.457214355 270.906280518 271.9949646 273.326934814 274.576873779 275.547210693 276.205780029 276.683502197 277.033996582 277.521270752 278.446289062 279.597564697 280.805084229 281.890777588 282.859222412 283.775634766 284.623535156 285.512878418 286.382843018 287.204620361 288.115631104 288.987945557 289.775604248 290.679901123 291.572540283 292.37890625 293.111846924 293.793945312 294.491363525 295.168823242 295.835998535 296.488037109 297.16494751 297.846221924 298.415710449 298.864105225 299.280303955 299.678161621 300.039764404 300.305206299 300.383514404 300.278594971 300.180480957 300.138824463 300.075714111 299.987579346 299.684448242 299.005249023 297.995483398 297.019683838 296.612640381 297.138397217 298.288269043 299.251434326 299.509735107 299.132171631 298.592437744 298.071472168 297.553009033 297.05065918 296.485992432 295.935180664 295.43347168 294.989837646 294.393768311 293.556488037 292.66305542 291.897003174 291.337860107 290.929504395 290.595214844 290.302642822 289.941833496 289.502563477 289.057067871 288.445037842 287.52243042 286.29586792 285.090087891 283.854003906 282.730529785 281.59274292 280.52230835 279.50201416 278.778442383 278.011962891 277.202423096 276.47857666 275.910888672 275.392486572 274.628997803 272.137878418 267.240081787 258.639221191 255.643630981 255.141082764 254.667648315 253.287902832 251.737380981 250.833557129 249.302185059 247.46862793 244.801773071 242.311843872 240.897720337 240.531311035 241.043395996 241.675979614 241.263290405 241.071624756 241.359832764 241.436981201 241.647964478 241.508926392 228.079772949 233.9140625 240.494857788 246.14994812 248.179580688 247.70993042 249.66973877 249.92489624 249.534225464 251.905105591 254.507720947 258.804351807 263.758300781 267.91796875 269.480865479 270.607330322 271.966125488 273.172271729 274.052307129 274.898345947 275.649078369 276.363220215 277.041595459 277.781585693 278.745910645 279.815826416 280.903503418 281.980621338 283.015472412 283.897827148 284.643798828 285.542877197 286.505767822 287.438079834 288.426544189 289.318603516 290.13079834 291.014404297 291.868255615 292.811065674 293.829956055 294.692474365 295.483978271 296.155151367 296.69329834 297.21081543 297.785949707 298.280548096 298.674560547 299.033294678 299.38067627 299.7578125 300.134552002 300.264953613 300.181488037 300.129943848 300.156738281 300.188415527 300.197174072 299.959869385 299.352416992 298.488708496 297.475372314 296.697845459 296.917907715 298.066375732 299.116119385 299.520141602 299.487915039 299.225006104 298.762939453 298.142974854 297.500274658 296.901245117 296.294006348 295.650360107 295.075531006 294.59576416 294.070648193 293.328735352 292.450744629 291.669067383 291.144195557 290.750030518 290.364715576 290.011108398 289.634094238 289.232330322 288.761047363 288.004760742 286.890167236 285.425354004 284.013153076 282.670654297 281.508758545 280.349334717 279.318878174 278.367858887 277.655273438 276.959106445 276.359649658 275.849395752 275.430450439 275.031860352 274.015625 270.870117188 265.414123535 257.784851074 255.354370117 254.305358887 253.517089844 253.323669434 253.712997437 252.708251953 251.659454346 251.316101074 249.692367554 248.207855225 246.76348877 245.32359314 244.03515625 243.576644897 242.902786255 242.279541016 242.067245483 242.034698486 241.206893921 240.32333374 247.224212646 250.565490723 255.498733521 260.663574219 263.532073975 264.483825684 264.244750977 262.666778564 261.835540771 262.76864624 265.220550537 267.943267822 270.738800049 271.453155518 271.558959961 271.672943115 272.014129639 272.748413086 273.631622314 274.523590088 275.357696533 276.178710938 276.760498047 277.344573975 278.247283936 279.335968018 280.514984131 281.550231934 282.493011475 283.533081055 284.533905029 285.484710693 286.384552002 287.2550354 288.153808594 288.919525146 289.629760742 290.41696167 291.203216553 291.969848633 292.702026367 293.351837158 293.959533691 294.513793945 295.100250244 295.682891846 296.177093506 296.687957764 297.233520508 297.766326904 298.341339111 298.996582031 299.651306152 300.109466553 300.265838623 300.234466553 300.195098877 300.07208252 299.838165283 299.708496094 299.662414551 299.285125732 298.369140625 297.323760986 296.884887695 297.121246338 297.784515381 298.726013184 299.581085205 299.764373779 299.300170898 298.751373291 298.260131836 297.665985107 297.105712891 296.563476562 295.986785889 295.533081055 295.023223877 294.1925354 293.278900146 292.413024902 291.636169434 291.257446289 291.203826904 291.067718506 290.875976562 290.777923584 290.492828369 289.921020508 289.242614746 288.192749023 286.912628174 285.544921875 284.175384521 282.687255859 281.470611572 280.452545166 279.580230713 278.774871826 277.9793396 277.233703613 276.633880615 275.902770996 274.553924561 270.973876953 265.220306396 256.261657715 252.24407959 249.740005493 245.711837769 242.748443604 240.838485718 239.906906128 240.634475708 240.544021606 238.392623901 236.335998535 234.930297852 234.06350708 234.026397705 235.478591919 236.969238281 238.367202759 238.709823608 238.966903687 239.25994873 238.937255859 237.428100586 241.241027832 246.132537842 251.316482544 254.019210815 255.050445557 255.569412231 255.052688599 254.335739136 255.666931152 258.939056396 263.519317627 268.001434326 270.145294189 270.631500244 271.014190674 272.04977417 273.352539062 274.600402832 275.604156494 276.306274414 276.831848145 277.239990234 277.751647949 278.598907471 279.669769287 280.848388672 281.909393311 282.857452393 283.7684021 284.590759277 285.464233398 286.369293213 287.245117188 288.193817139 289.097198486 289.943237305 290.883422852 291.754302979 292.527587891 293.250305176 293.948425293 294.67489624 295.352294922 296.036682129 296.7578125 297.448608398 298.028564453 298.479644775 298.904327393 299.32925415 299.708526611 300.030731201 300.254730225 300.282592773 300.165802002 300.079650879 300.044067383 299.982879639 299.911315918 299.622741699 298.916381836 297.870422363 296.927337646 296.631835938 297.205291748 298.266326904 299.148040771 299.419006348 299.077636719 298.549041748 298.020721436 297.476715088 296.959197998 296.394134521 295.821716309 295.274658203 294.808685303 294.221069336 293.422271729 292.536560059 291.674316406 291.003417969 290.570404053 290.199371338 289.779815674 289.358978271 288.974304199 288.612823486 288.111663818 287.37197876 286.310943604 285.181976318 283.997283936 282.897888184 281.723480225 280.578491211 279.559509277 278.828369141 278.108306885 277.326477051 276.6484375 276.082641602 275.313354492 273.980316162 270.72555542 265.669708252 258.135009766 255.605407715 255.167800903 254.094177246 252.954544067 251.477478027 250.481948853 249.251998901 247.039764404 244.439544678 242.032196045 240.646987915 240.275253296 240.97756958 241.624313354 241.222213745 240.87663269 241.260757446 241.408630371 241.595794678 241.507324219 228.007446289 233.860061646 240.279098511 245.91494751 248.253494263 247.986343384 249.761947632 249.755401611 249.043502808 251.292602539 255.194244385 258.626953125 263.513427734 268.061126709 269.73324585 270.783569336 272.057128906 273.248779297 274.152709961 275.004608154 275.782714844 276.548156738 277.220947266 277.898498535 278.76651001 279.767028809 280.833953857 281.924865723 282.977783203 283.869354248 284.592132568 285.457611084 286.398132324 287.334777832 288.34161377 289.302856445 290.193847656 291.129486084 292.007019043 292.940124512 293.894836426 294.704833984 295.453979492 296.105499268 296.640716553 297.150756836 297.679107666 298.11227417 298.491424561 298.890991211 299.284576416 299.692565918 300.087371826 300.203338623 300.100799561 300.073547363 300.095672607 300.095428467 300.132049561 299.954833984 299.369934082 298.484191895 297.422180176 296.612854004 296.868713379 298.085906982 299.139984131 299.548614502 299.522949219 299.258117676 298.803253174 298.196868896 297.519348145 296.85369873 296.196044922 295.508605957 294.858276367 294.3465271 293.861175537 293.203796387 292.359893799 291.513641357 290.922637939 290.517364502 290.091156006 289.658996582 289.275878906 288.882904053 288.438415527 287.769958496 286.818450928 285.524963379 284.239532471 282.952880859 281.724975586 280.480529785 279.402374268 278.46673584 277.797271729 277.224822998 276.646392822 276.194793701 275.868865967 275.227722168 273.585784912 269.636322021 264.242034912 257.536590576 255.653091431 254.679794312 253.245529175 253.190917969 253.57989502 252.430770874 251.538345337 251.069274902 249.367889404 248.001190186 246.718765259 245.273483276 243.837799072 243.431869507 242.847808838 242.195037842 242.005462646 242.041610718 241.180435181 240.323883057 247.244338989 250.549102783 255.336608887 260.457702637 263.329162598 264.237762451 263.916290283 262.260528564 261.318450928 262.059936523 264.773651123 267.657501221 270.582519531 271.458892822 271.592803955 271.737457275 272.094207764 272.803741455 273.680603027 274.567382812 275.428039551 276.273986816 276.865966797 277.420776367 278.282470703 279.365753174 280.555053711 281.623718262 282.588256836 283.591796875 284.568969727 285.534332275 286.43661499 287.283782959 288.18460083 289.001983643 289.765808105 290.558074951 291.306488037 292.06350708 292.789978027 293.411804199 294.015106201 294.61428833 295.216247559 295.743988037 296.196502686 296.666748047 297.168487549 297.712036133 298.372009277 299.094787598 299.725921631 300.121948242 300.223968506 300.152282715 300.08380127 299.96484375 299.748321533 299.566131592 299.439666748 299.045074463 298.140136719 297.079315186 296.6769104 296.973937988 297.694244385 298.672698975 299.541015625 299.702941895 299.219787598 298.673980713 298.175445557 297.571502686 297.002502441 296.425109863 295.803710938 295.303192139 294.782928467 294.006591797 293.111572266 292.200866699 291.364654541 290.941314697 290.809814453 290.639007568 290.459594727 290.340911865 290.077972412 289.62008667 289.05960083 288.142578125 286.967926025 285.761169434 284.440032959 283.034240723 281.743896484 280.731567383 279.838623047 279.081573486 278.313171387 277.598937988 276.90512085 275.923370361 273.670349121 269.723480225 261.697509766 256.105621338 252.429626465 249.899902344 245.948577881 243.003448486 240.364959717 239.478530884 240.434234619 240.392089844 238.159622192 236.376831055 234.979568481 234.12008667 234.189163208 235.635696411 237.072769165 238.300048828 238.641662598 238.833267212 239.20413208 238.936828613 237.340957642 241.165115356 245.990219116 251.092529297 253.851242065 254.937240601 255.377639771 254.648727417 253.670669556 254.913909912 258.540649414 263.034454346 267.890655518 270.266021729 270.827178955 271.170227051 272.126678467 273.382751465 274.618347168 275.649230957 276.392913818 276.967193604 277.419799805 277.953704834 278.741424561 279.750213623 280.907287598 281.954284668 282.883758545 283.778991699 284.584594727 285.458404541 286.415618896 287.345489502 288.296081543 289.184509277 290.068359375 291.036376953 291.886688232 292.662780762 293.410888672 294.119689941 294.839141846 295.522705078 296.23034668 296.960632324 297.619049072 298.119781494 298.51550293 298.92767334 299.356567383 299.72265625 300.027435303 300.239746094 300.252655029 300.12612915 300.032775879 299.977783203 299.909332275 299.840942383 299.579071045 298.843414307 297.724487305 296.796966553 296.644287109 297.30960083 298.2784729 299.041687012 299.298858643 298.995849609 298.498901367 297.990875244 297.431915283 296.872741699 296.285247803 295.702728271 295.121490479 294.608917236 294.009979248 293.262878418 292.41885376 291.520355225 290.758789062 290.269042969 289.806518555 289.250823975 288.778900146 288.427307129 288.12387085 287.735748291 287.146331787 286.247161865 285.207611084 284.138427734 283.055725098 281.911346436 280.682830811 279.682006836 278.920135498 278.237915039 277.473083496 276.818054199 276.067016602 274.977294922 272.799804688 269.339294434 262.43145752 257.971832275 255.120239258 255.030487061 253.858108521 252.925857544 251.266769409 249.86416626 248.95274353 246.844268799 244.18572998 241.897277832 240.407028198 240.042160034 240.883773804 241.652252197 241.035675049 240.697402954 241.178482056 241.374282837 241.533752441 241.505905151 227.956039429 233.808151245 240.060317993 245.663925171 248.34463501 248.233215332 249.816604614 249.516952515 248.560775757 250.812423706 255.558242798 258.461639404 263.233795166 268.128448486 269.960784912 270.951934814 272.136779785 273.308746338 274.241790771 275.099822998 275.900970459 276.693572998 277.366607666 277.987640381 278.764099121 279.721710205 280.796325684 281.898132324 282.949035645 283.832214355 284.54876709 285.388916016 286.338287354 287.278900146 288.306762695 289.319000244 290.272247314 291.251861572 292.137939453 293.035797119 293.914520264 294.65814209 295.36428833 296.009124756 296.56060791 297.065429688 297.545501709 297.953125 298.352172852 298.801757812 299.223602295 299.666503906 300.091094971 300.224914551 300.125244141 300.061737061 300.024017334 300.010528564 300.091552734 299.965576172 299.371307373 298.464691162 297.367614746 296.540222168 296.863342285 298.142852783 299.183258057 299.565246582 299.529296875 299.268066406 298.847229004 298.284606934 297.567565918 296.817504883 296.11618042 295.405578613 294.643951416 294.031433105 293.559173584 293.018676758 292.271240234 291.415740967 290.735076904 290.275054932 289.802093506 289.29598999 288.871948242 288.438018799 287.994415283 287.427612305 286.609527588 285.490936279 284.358123779 283.207061768 281.94909668 280.714569092 279.548095703 278.616119385 277.959259033 277.478637695 276.946075439 276.511657715 276.0859375 275.11605835 272.542297363 268.475524902 261.741546631 257.658538818 255.745361328 254.791748047 253.180389404 253.221343994 253.52784729 251.933563232 251.386276245 250.862045288 249.185592651 247.890197754 246.687896729 245.229522705 243.881774902 243.246841431 242.796051025 242.153869629 241.955123901 242.025695801 241.150665283 240.324401855 247.243423462 250.544937134 255.234436035 260.267211914 263.082519531 263.95223999 263.539428711 261.835968018 260.751586914 261.450164795 264.455810547 267.353546143 270.368255615 271.4637146 271.623535156 271.805023193 272.183624268 272.880157471 273.747161865 274.627838135 275.505859375 276.36138916 276.945922852 277.49206543 278.347808838 279.430114746 280.60534668 281.693725586 282.669250488 283.629943848 284.582305908 285.570373535 286.492584229 287.318084717 288.209320068 289.058959961 289.863098145 290.683868408 291.435516357 292.175842285 292.876434326 293.491088867 294.146514893 294.81817627 295.405700684 295.83001709 296.228668213 296.683776855 297.173034668 297.741821289 298.484588623 299.21762085 299.773895264 300.106872559 300.182952881 300.077392578 299.958404541 299.85635376 299.679595947 299.444671631 299.231445312 298.820648193 297.930511475 296.866973877 296.484588623 296.838806152 297.612823486 298.633789062 299.515594482 299.6534729 299.157653809 298.612304688 298.097198486 297.469451904 296.886077881 296.290466309 295.622833252 295.058319092 294.516967773 293.777099609 292.885284424 291.967102051 291.150024414 290.698699951 290.488586426 290.29486084 290.12677002 289.903930664 289.555480957 289.157592773 288.686431885 287.898010254 286.849822998 285.817565918 284.566009521 283.265869141 282.041046143 281.043212891 280.11618042 279.36895752 278.642181396 277.885314941 276.900238037 275.271057129 272.189758301 267.626922607 259.872314453 255.545135498 252.769638062 250.300872803 246.355072021 243.003097534 239.802505493 239.128829956 240.217971802 240.226547241 237.914535522 236.442840576 235.071609497 234.17628479 234.427505493 235.719680786 237.185150146 238.160293579 238.587234497 238.707962036 239.1456604 238.936431885 237.321716309 241.144897461 245.824920654 250.835388184 253.665328979 254.7762146 255.083374023 254.111053467 252.961990356 254.188339233 258.158447266 262.491607666 267.694152832 270.36541748 271.033447266 271.360015869 272.230010986 273.424835205 274.642852783 275.696807861 276.487854004 277.114562988 277.607147217 278.155303955 278.909851074 279.865112305 280.994842529 282.033203125 282.948547363 283.830810547 284.629119873 285.498077393 286.491394043 287.455718994 288.372436523 289.214538574 290.122802734 291.125762939 291.978271484 292.783599854 293.58190918 294.299285889 294.99887085 295.700592041 296.415863037 297.080627441 297.669616699 298.142150879 298.555938721 298.957519531 299.368469238 299.720123291 300.026184082 300.244445801 300.256256104 300.120178223 300.007843018 299.920227051 299.834716797 299.774749756 299.550170898 298.789337158 297.594055176 296.681304932 296.666259766 297.425262451 298.312988281 298.97277832 299.209503174 298.919281006 298.430358887 297.956542969 297.408782959 296.802032471 296.1847229 295.593170166 294.969604492 294.392211914 293.781921387 293.097229004 292.297241211 291.389404297 290.575378418 290.011779785 289.444366455 288.819824219 288.368041992 287.990844727 287.61050415 287.211547852 286.702331543 285.961120605 285.051696777 284.142791748 283.10760498 282.018463135 280.835754395 279.864898682 279.056610107 278.372558594 277.659301758 276.926818848 275.83392334 274.088470459 271.191192627 267.340515137 260.673522949 257.667663574 255.39125061 254.811279297 253.863174438 252.509765625 250.908874512 249.354614258 248.339630127 246.402664185 243.781585693 241.649902344 240.13520813 239.762924194 240.763717651 241.573638916 240.770080566 240.525009155 241.088439941 241.317611694 241.46333313 241.504638672 228.085418701 233.760574341 239.846618652 245.377227783 248.363876343 248.462585449 249.840072632 249.194747925 248.1277771 250.321136475 255.036727905 258.17590332 262.943878174 268.140930176 270.138336182 271.107452393 272.202636719 273.358032227 274.330108643 275.196868896 276.022003174 276.836425781 277.509460449 278.091003418 278.793701172 279.721313477 280.808105469 281.904510498 282.925231934 283.795318604 284.520568848 285.356933594 286.318389893 287.263519287 288.316955566 289.357177734 290.343963623 291.358337402 292.236175537 293.093200684 293.922210693 294.623809814 295.295471191 295.928375244 296.478759766 296.958953857 297.402923584 297.823120117 298.276092529 298.76473999 299.203887939 299.678405762 300.129638672 300.282470703 300.174743652 300.057678223 299.955322266 299.941345215 300.07510376 299.972747803 299.34979248 298.437591553 297.334960938 296.508178711 296.892822266 298.212036133 299.235046387 299.595031738 299.557159424 299.287353516 298.894683838 298.382080078 297.641387939 296.818908691 296.095458984 295.377868652 294.514953613 293.768188477 293.253753662 292.799194336 292.156463623 291.323028564 290.56060791 290.025390625 289.510528564 288.964050293 288.504943848 287.998840332 287.486633301 286.950866699 286.227081299 285.286376953 284.324768066 283.350891113 282.119018555 280.92956543 279.789764404 278.853637695 278.165771484 277.710693359 277.216461182 276.726409912 275.991088867 274.291687012 271.020690918 266.759399414 260.24786377 257.468688965 255.908706665 254.795623779 253.198196411 253.110153198 253.351654053 251.606765747 251.166534424 250.632873535 248.997817993 247.818756104 246.604492188 245.109405518 243.845397949 243.199813843 242.764465332 242.137588501 241.90927124 241.977859497 241.113189697 240.324859619 247.255584717 250.505233765 255.106414795 260.036956787 262.848114014 263.654541016 263.247192383 261.456817627 260.206481934 260.94354248 263.999816895 266.990661621 270.120697021 271.453308105 271.647216797 271.882720947 272.298400879 272.984558105 273.81552124 274.693969727 275.595581055 276.462310791 277.045227051 277.62612915 278.507659912 279.560058594 280.682861328 281.7578125 282.721038818 283.643920898 284.571105957 285.565704346 286.501739502 287.330200195 288.228088379 289.085540771 289.901733398 290.78894043 291.599334717 292.332458496 292.990875244 293.612182617 294.347503662 295.056396484 295.551452637 295.859527588 296.224273682 296.707458496 297.23236084 297.868713379 298.623046875 299.269378662 299.706451416 299.985168457 300.058380127 299.948120117 299.802368164 299.748260498 299.630310059 299.357452393 299.058929443 298.603668213 297.695739746 296.636169434 296.283294678 296.707794189 297.552978516 298.635070801 299.498779297 299.581634521 299.073425293 298.542510986 298.029022217 297.393463135 296.795288086 296.182739258 295.461273193 294.814422607 294.222198486 293.494506836 292.624633789 291.747283936 290.987792969 290.485351562 290.178741455 289.955108643 289.780853271 289.476501465 289.069763184 288.697143555 288.188323975 287.42098999 286.5027771 285.649169922 284.547698975 283.365692139 282.275360107 281.296966553 280.412078857 279.621276855 278.884216309 277.945465088 276.511322021 273.779846191 270.408294678 264.087127686 258.457092285 255.146484375 252.696990967 250.293151855 246.825042725 243.529144287 240.257629395 238.728393555 239.847854614 240.011230469 237.953018188 236.557937622 235.211593628 234.265441895 234.563873291 235.868057251 237.181884766 238.09274292 238.459609985 238.550643921 239.070968628 238.936645508 237.348754883 241.080215454 245.646118164 250.560028076 253.443237305 254.535491943 254.749252319 253.563034058 252.306854248 253.497772217 257.48739624 261.816375732 267.319732666 270.440917969 271.266479492 271.610595703 272.384429932 273.4949646 274.680786133 275.760467529 276.61517334 277.309906006 277.848419189 278.425292969 279.146697998 280.045196533 281.132843018 282.143615723 283.03704834 283.908081055 284.702667236 285.548461914 286.552398682 287.524383545 288.396881104 289.228027344 290.156066895 291.186737061 292.070739746 292.927032471 293.765319824 294.480072021 295.157714844 295.876464844 296.582458496 297.143188477 297.62411499 298.106689453 298.568206787 298.989349365 299.366668701 299.695007324 299.987915039 300.192443848 300.211212158 300.101470947 299.993927002 299.877410889 299.767242432 299.715423584 299.495147705 298.697845459 297.451019287 296.581390381 296.690948486 297.514038086 298.354125977 298.94631958 299.171661377 298.879119873 298.365234375 297.901489258 297.374359131 296.740692139 296.109619141 295.522216797 294.842315674 294.18145752 293.575653076 292.964904785 292.203613281 291.294464111 290.454772949 289.783508301 289.102966309 288.441345215 288.010437012 287.591094971 287.123901367 286.681274414 286.121917725 285.403106689 284.630615234 283.919311523 283.022155762 282.008239746 280.950775146 279.987304688 279.197875977 278.49911499 277.827972412 276.876708984 275.317901611 272.546722412 269.543151855 264.076904297 259.443939209 257.314758301 255.343597412 254.70652771 253.831878662 252.549743652 251.231521606 249.257461548 247.43888855 245.921569824 243.550857544 241.521972656 240.226425171 239.766799927 240.610595703 241.405151367 240.629150391 240.414337158 240.958694458 241.231048584 241.377960205 241.503890991 228.145065308 233.683319092 239.583023071 245.061218262 248.335067749 248.648178101 249.731628418 248.801803589 247.736602783 249.825668335 254.585617065 257.931671143 262.674591064 268.094482422 270.26776123 271.236907959 272.255340576 273.396820068 274.417938232 275.315979004 276.1769104 277.02545166 277.69921875 278.250518799 278.894561768 279.796051025 280.890319824 281.953308105 282.898498535 283.748352051 284.502990723 285.350158691 286.297058105 287.26272583 288.336914062 289.379882812 290.397796631 291.428527832 292.293701172 293.134368896 293.95489502 294.644897461 295.275512695 295.86114502 296.37701416 296.832061768 297.278015137 297.724334717 298.222198486 298.735198975 299.20489502 299.702575684 300.15335083 300.28414917 300.150421143 300.007141113 299.871520996 299.875732422 300.065124512 299.951660156 299.298461914 298.401885986 297.346374512 296.576507568 296.995361328 298.324645996 299.312561035 299.649902344 299.620880127 299.337432861 298.940216064 298.460571289 297.739440918 296.885650635 296.142181396 295.426086426 294.520965576 293.656219482 293.040557861 292.59942627 292.041107178 291.239044189 290.401153564 289.756164551 289.190551758 288.617248535 288.122924805 287.574981689 287.013275146 286.483856201 285.785095215 284.940216064 284.110717773 283.296966553 282.19140625 281.051605225 279.998352051 279.082244873 278.409606934 277.91317749 277.384735107 276.688476562 275.492156982 272.749847412 269.561981201 264.065460205 259.359283447 257.13369751 255.806625366 254.675521851 253.183792114 253.335083008 253.830413818 251.790939331 250.774810791 250.396118164 248.924057007 247.755706787 246.548370361 244.991851807 243.567855835 243.172637939 242.79586792 242.186706543 241.869430542 241.93019104 241.051101685 240.326065063 247.271469116 250.465759277 254.967269897 259.79864502 262.594299316 263.354675293 262.867675781 261.137756348 259.740447998 260.393768311 263.542694092 266.709747314 269.92010498 271.426483154 271.662536621 271.932556152 272.399719238 273.075134277 273.85760498 274.724731445 275.651092529 276.543945312 277.17364502 277.817260742 278.722473145 279.732452393 280.7840271 281.807250977 282.725036621 283.628387451 284.554077148 285.54019165 286.478118896 287.342926025 288.275238037 289.137359619 289.938873291 290.841247559 291.689941406 292.434570312 293.090423584 293.753936768 294.527130127 295.193939209 295.59753418 295.879760742 296.266296387 296.740539551 297.287902832 297.968078613 298.684936523 299.232299805 299.589935303 299.831420898 299.885498047 299.776885986 299.663879395 299.647094727 299.563049316 299.313842773 299.013061523 298.492218018 297.48614502 296.399230957 296.105987549 296.629364014 297.567352295 298.690032959 299.494567871 299.516998291 299.013366699 298.498687744 297.982147217 297.338165283 296.721923828 296.088226318 295.331939697 294.617614746 293.927520752 293.166320801 292.334442139 291.56060791 290.857086182 290.27255249 289.855224609 289.606842041 289.409881592 289.052154541 288.609710693 288.212860107 287.608856201 286.847045898 286.063293457 285.264892578 284.334075928 283.331573486 282.38470459 281.403198242 280.574432373 279.791534424 278.888702393 277.562286377 275.398101807 271.968292236 266.832061768 261.541229248 257.630950928 254.418930054 252.320037842 250.580749512 247.068740845 243.853530884 240.284286499 238.796295166 239.627029419 240.007369995 238.031616211 236.640777588 235.392776489 234.408721924 234.71156311 235.95866394 237.171554565 238.064163208 238.300003052 238.494735718 238.952713013 238.93939209 237.390686035 241.095550537 245.434906006 250.288208008 253.180175781 254.238372803 254.341903687 252.966751099 251.651428223 252.853164673 257.114959717 261.527984619 266.939971924 270.463592529 271.466888428 271.857147217 272.555084229 273.578094482 274.716003418 275.818206787 276.749542236 277.516143799 278.110626221 278.711029053 279.411987305 280.260498047 281.28225708 282.239227295 283.097412109 283.9581604 284.753387451 285.579223633 286.574462891 287.54309082 288.444458008 289.318328857 290.240997314 291.25592041 292.166809082 293.048339844 293.887054443 294.597625732 295.25491333 295.92880249 296.590087891 297.128631592 297.5675354 298.025024414 298.502532959 298.956542969 299.342315674 299.67175293 299.928283691 300.09588623 300.113861084 300.055084229 299.994537354 299.867736816 299.725128174 299.669250488 299.431274414 298.592010498 297.303710938 296.458282471 296.663421631 297.566070557 298.418060303 298.956390381 299.149414062 298.903991699 298.426818848 297.942626953 297.374572754 296.700256348 296.062103271 295.477142334 294.739501953 293.982543945 293.356414795 292.812896729 292.126495361 291.260223389 290.388702393 289.572479248 288.787750244 288.126953125 287.696777344 287.218658447 286.679443359 286.184295654 285.556091309 284.850616455 284.168273926 283.486450195 282.727081299 281.862609863 280.946258545 279.978973389 279.234741211 278.595428467 277.852813721 276.526885986 274.220916748 270.99508667 266.447998047 261.828979492 258.761901855 256.60168457 255.065475464 254.718719482 253.511627197 252.527359009 250.771377563 248.760742188 246.916061401 245.722198486 243.46156311 241.473373413 240.362182617 239.917007446 240.487213135 241.367797852 240.537506104 240.25491333 240.826507568 241.196670532 241.278182983 241.504837036 228.073364258 233.603775024 239.323165894 244.711853027 248.268112183 248.757263184 249.543991089 248.336151123 247.197814941 249.230575562 254.326248169 257.830963135 262.503814697 268.013183594 270.333557129 271.341064453 272.287872314 273.423522949 274.475250244 275.42489624 276.341369629 277.235076904 277.905273438 278.438354492 279.050445557 279.926361084 281.005249023 282.002716064 282.868652344 283.708953857 284.496337891 285.332733154 286.28616333 287.265777588 288.33984375 289.405303955 290.446105957 291.464141846 292.315063477 293.158447266 293.98135376 294.658935547 295.239807129 295.752990723 296.243041992 296.733093262 297.217926025 297.666229248 298.146362305 298.670898438 299.188842773 299.702026367 300.117706299 300.211425781 300.073760986 299.922180176 299.77722168 299.806945801 300.017791748 299.908325195 299.223876953 298.312561035 297.299133301 296.606079102 297.101898193 298.444702148 299.380828857 299.665771484 299.639526367 299.392913818 299.004241943 298.534088135 297.842987061 296.973937988 296.179748535 295.462310791 294.585968018 293.680755615 292.950653076 292.446289062 291.935455322 291.174438477 290.262786865 289.481781006 288.860198975 288.278717041 287.757110596 287.178314209 286.564910889 286.005218506 285.314849854 284.538024902 283.794250488 283.041473389 282.111999512 281.072875977 280.114105225 279.208343506 278.590270996 278.066802979 277.370239258 276.279815674 274.362670898 271.286560059 266.715332031 261.834259033 258.826721191 256.412231445 255.387069702 254.660949707 253.12286377 253.552200317 253.789840698 252.092529297 250.417053223 250.168380737 248.857330322 247.709762573 246.515518188 244.897628784 243.576522827 243.075042725 242.859786987 242.229644775 241.842483521 241.91027832 240.925888062 240.330871582 247.26399231 250.484741211 254.83140564 259.538421631 262.307220459 263.053955078 262.547149658 260.710266113 259.237518311 259.937744141 263.09942627 266.586181641 269.695129395 271.391937256 271.665252686 271.948791504 272.472503662 273.146789551 273.886077881 274.731903076 275.667785645 276.593322754 277.29510498 278.012634277 278.934661865 279.90625 280.898925781 281.849395752 282.705291748 283.595367432 284.542449951 285.536437988 286.475799561 287.376495361 288.352142334 289.215911865 289.991088867 290.858184814 291.714508057 292.484832764 293.174072266 293.892730713 294.69039917 295.30557251 295.671508789 296.008666992 296.434661865 296.875518799 297.390472412 298.044006348 298.701171875 299.177185059 299.501739502 299.707122803 299.721923828 299.616088867 299.547271729 299.544281006 299.463897705 299.245239258 298.972839355 298.408538818 297.315643311 296.207733154 295.965698242 296.574432373 297.605255127 298.756988525 299.49118042 299.484649658 299.012634277 298.509643555 297.962554932 297.288421631 296.654296875 296.010498047 295.245605469 294.496276855 293.704711914 292.875488281 292.072601318 291.385406494 290.754364014 290.152832031 289.632873535 289.248199463 288.952453613 288.59588623 288.170257568 287.715454102 287.01852417 286.267578125 285.617462158 284.851409912 283.99017334 283.12210083 282.299224854 281.368377686 280.485961914 279.598876953 278.428497314 276.604309082 273.514434814 269.332183838 263.365142822 260.019958496 256.805450439 254.155807495 252.267822266 250.68862915 247.159133911 244.129714966 240.239517212 238.47857666 239.336761475 239.865341187 238.012023926 236.692687988 235.470504761 234.460510254 234.926513672 235.981277466 237.203781128 238.022323608 238.193237305 238.3853302 238.921524048 238.942138672 237.404129028 241.087387085 245.250854492 249.968276978 252.898269653 253.908325195 253.842163086 252.338027954 251.032806396 252.32383728 257.010864258 261.437347412 266.615081787 270.435974121 271.616210938 272.064453125 272.716583252 273.659515381 274.74432373 275.858978271 276.862365723 277.708343506 278.368743896 278.998046875 279.687988281 280.487854004 281.428100586 282.317230225 283.132598877 283.989990234 284.795806885 285.631835938 286.617034912 287.586303711 288.542877197 289.454467773 290.343719482 291.310668945 292.23526001 293.128326416 293.949127197 294.659912109 295.30291748 295.90536499 296.510925293 297.061889648 297.497711182 297.927978516 298.411407471 298.888366699 299.285949707 299.607727051 299.842468262 299.98739624 299.994506836 299.98324585 299.977355957 299.858032227 299.674072266 299.615234375 299.404418945 298.551605225 297.234039307 296.390991211 296.648468018 297.624450684 298.524414062 299.017669678 299.16809082 298.983825684 298.574401855 298.071563721 297.452728271 296.740264893 296.071868896 295.459838867 294.672058105 293.825134277 293.128051758 292.601104736 292.013793945 291.253295898 290.39263916 289.474578857 288.616912842 287.936676025 287.429534912 286.893188477 286.310089111 285.759124756 285.066680908 284.355285645 283.728424072 283.034576416 282.30380249 281.536895752 280.763946533 279.888916016 279.145568848 278.490783691 277.545166016 275.730804443 272.528778076 268.751739502 263.405914307 260.576538086 258.238098145 256.343688965 255.12651062 254.490493774 253.169281006 252.386856079 250.324447632 247.911758423 246.31022644 245.304916382 243.198501587 241.401916504 240.336380005 239.935775757 240.478652954 241.322418213 240.287887573 240.100006104 240.663375854 241.124542236 241.254013062 241.50592041 228.09564209 233.487915039 239.025146484 244.356277466 248.11517334 248.862609863 249.286315918 247.832824707 246.625686646 248.627914429 254.237442017 257.853729248 262.457427979 267.910614014 270.358673096 271.403015137 272.316314697 273.443939209 274.503143311 275.502166748 276.491149902 277.434753418 278.102661133 278.636779785 279.241088867 280.089935303 281.123016357 282.039489746 282.844390869 283.687866211 284.499023438 285.340942383 286.313293457 287.300048828 288.387451172 289.476806641 290.509399414 291.486724854 292.310821533 293.150726318 293.967712402 294.634643555 295.189788818 295.654205322 296.115570068 296.63571167 297.174468994 297.628570557 298.08883667 298.634674072 299.189208984 299.681152344 300.044708252 300.127441406 300.001220703 299.832733154 299.684448242 299.73336792 299.965759277 299.87487793 299.164154053 298.204772949 297.201751709 296.548370361 297.103027344 298.49597168 299.42590332 299.663421631 299.640380859 299.462463379 299.107055664 298.633636475 297.961273193 297.085144043 296.242767334 295.517028809 294.661407471 293.723937988 292.90725708 292.331939697 291.830749512 291.122131348 290.213348389 289.342010498 288.631378174 287.994781494 287.405334473 286.803314209 286.141082764 285.526306152 284.84161377 284.103912354 283.422058105 282.70791626 281.905548096 280.990966797 280.099395752 279.256011963 278.631988525 278.014984131 277.029418945 275.471496582 272.796539307 269.061004639 263.825134277 260.716583252 258.469665527 256.013000488 255.285125732 254.468353271 253.144515991 253.648086548 253.630996704 251.690795898 249.998153687 249.930282593 248.800994873 247.69140625 246.386566162 244.801773071 243.665359497 243.12361145 242.955657959 242.202041626 241.79145813 241.824417114 240.897857666 240.335571289 247.26020813 250.449645996 254.693771362 259.256469727 261.988372803 262.684936523 262.144104004 260.330535889 258.811309814 259.563964844 263.109863281 266.438476562 269.502349854 271.325195312 271.643829346 271.936218262 272.516540527 273.208587646 273.916442871 274.729370117 275.660797119 276.619812012 277.401733398 278.194274902 279.129211426 280.065216064 281.013305664 281.882354736 282.667236328 283.550231934 284.532653809 285.543914795 286.496734619 287.426391602 288.42288208 289.278259277 290.039337158 290.878631592 291.718383789 292.506774902 293.241851807 294.007110596 294.813537598 295.390869141 295.762542725 296.162506104 296.616241455 297.032104492 297.513397217 298.111175537 298.695892334 299.112365723 299.416534424 299.573760986 299.558288574 299.474029541 299.442657471 299.444702148 299.357208252 299.150512695 298.881011963 298.287628174 297.15222168 296.053894043 295.844787598 296.526824951 297.643035889 298.815551758 299.488006592 299.452758789 299.011932373 298.525360107 297.952362061 297.254364014 296.616760254 295.97454834 295.200073242 294.407409668 293.529266357 292.629333496 291.824676514 291.177215576 290.641448975 290.099243164 289.515899658 288.958282471 288.53225708 288.175689697 287.755828857 287.215484619 286.466552734 285.752044678 285.196105957 284.444946289 283.607757568 282.832275391 282.023040771 281.149475098 280.112457275 278.832458496 277.083892822 274.816131592 271.562683105 266.2527771 261.256072998 258.892944336 255.931976318 253.95098877 252.549377441 250.115188599 247.485427856 244.282058716 240.347015381 238.603729248 238.827911377 239.652893066 238.122421265 236.697113037 235.557723999 234.563079834 235.046417236 236.085708618 237.220169067 237.949920654 238.121490479 238.273345947 238.912780762 238.944503784 237.440139771 240.989334106 245.085357666 249.631210327 252.58241272 253.577758789 253.293106079 251.673553467 250.511383057 251.796081543 256.840301514 261.248504639 266.261077881 270.3644104 271.710510254 272.22442627 272.859191895 273.742706299 274.771026611 275.881347656 276.942077637 277.880615234 278.612915039 279.276977539 279.963470459 280.716308594 281.568695068 282.382232666 283.163238525 284.024932861 284.845245361 285.712799072 286.692932129 287.668304443 288.66116333 289.596496582 290.438323975 291.35925293 292.297973633 293.189666748 293.964111328 294.67755127 295.316192627 295.866485596 296.42755127 296.971069336 297.410217285 297.835876465 298.323181152 298.804718018 299.192993164 299.491668701 299.724914551 299.85369873 299.853149414 299.879577637 299.933990479 299.835571289 299.624511719 299.561096191 299.379577637 298.524078369 297.197357178 296.368408203 296.659667969 297.6847229 298.6277771 299.114990234 299.227386475 299.0652771 298.698394775 298.189544678 297.566619873 296.847351074 296.142547607 295.486755371 294.657867432 293.73147583 292.938659668 292.376342773 291.858917236 291.209838867 290.410308838 289.472167969 288.587219238 287.84866333 287.230438232 286.627258301 285.993530273 285.346343994 284.608673096 283.930511475 283.345947266 282.632263184 281.894348145 281.221923828 280.507904053 279.744720459 278.928924561 277.982635498 276.542907715 274.211883545 270.869720459 265.975067139 261.488800049 259.646362305 257.284942627 255.973083496 255.185760498 253.703094482 253.101547241 252.377822876 249.88659668 248.086029053 245.318984985 244.962097168 243.098251343 241.498672485 240.483673096 239.972091675 240.409179688 241.166687012 240.050033569 240.001434326 240.494796753 241.046432495 241.247451782 241.506881714 228.18371582 233.364761353 238.725662231 243.914215088 247.912567139 248.887512207 248.967910767 247.295135498 246.02456665 248.146057129 254.062103271 257.9140625 262.326721191 267.801940918 270.346893311 271.425415039 272.339050293 273.463623047 274.515258789 275.550140381 276.615112305 277.60748291 278.283477783 278.841766357 279.464050293 280.282897949 281.238708496 282.068847656 282.8359375 283.689788818 284.51751709 285.389404297 286.362030029 287.369262695 288.467254639 289.563232422 290.565368652 291.498138428 292.305175781 293.141082764 293.936767578 294.592468262 295.143218994 295.587341309 296.015869141 296.526885986 297.09967041 297.578186035 298.046905518 298.609588623 299.175567627 299.619812012 299.934631348 300.014770508 299.896606445 299.721099854 299.593475342 299.656402588 299.892150879 299.815765381 299.088592529 298.078857422 297.08203125 296.445556641 297.024383545 298.471130371 299.448760986 299.66494751 299.642669678 299.529846191 299.208374023 298.738708496 298.094177246 297.230651855 296.35647583 295.605285645 294.739105225 293.774261475 292.901947021 292.254180908 291.714630127 291.038879395 290.182891846 289.269439697 288.467681885 287.745361328 287.116729736 286.522521973 285.824493408 285.100860596 284.387390137 283.689361572 283.059387207 282.39944458 281.700836182 280.914886475 280.039855957 279.235687256 278.505187988 277.572845459 276.101165771 274.080535889 271.257263184 266.539672852 262.01965332 260.041748047 257.500793457 255.579650879 255.180953979 254.122756958 253.417358398 253.860458374 253.720001221 252.296585083 249.61000061 249.806671143 248.735809326 247.601242065 246.223937988 244.782150269 243.564193726 243.336959839 243.056060791 242.129959106 241.73765564 241.719238281 240.897506714 240.339630127 247.294769287 250.414413452 254.543441772 258.96383667 261.665039062 262.311248779 261.712310791 260.013916016 258.468841553 259.272186279 262.205993652 266.26449585 269.386688232 271.19052124 271.583007812 271.895355225 272.530670166 273.274597168 273.971435547 274.740600586 275.650482178 276.639434814 277.499389648 278.36026001 279.293487549 280.192199707 281.098327637 281.892120361 282.612731934 283.502868652 284.504211426 285.515869141 286.494171143 287.439910889 288.418212891 289.289825439 290.101104736 290.93951416 291.739227295 292.53213501 293.292419434 294.064056396 294.834564209 295.386108398 295.769165039 296.165252686 296.611877441 297.053894043 297.570678711 298.139007568 298.664855957 299.055023193 299.326690674 299.422943115 299.398345947 299.351287842 299.34197998 299.359100342 299.286621094 299.080535889 298.789337158 298.166778564 296.994750977 295.90057373 295.728790283 296.50177002 297.710723877 298.885070801 299.497253418 299.412139893 298.976806641 298.511016846 297.941345215 297.244232178 296.614746094 295.975799561 295.177246094 294.302642822 293.367156982 292.437652588 291.610076904 290.960571289 290.498077393 290.035614014 289.409454346 288.699279785 288.136993408 287.752929688 287.33480835 286.776855469 286.055114746 285.321105957 284.729278564 284.040649414 283.25 282.556427002 281.735198975 280.706787109 279.411254883 277.450683594 275.046081543 272.41595459 268.074920654 263.091583252 259.841827393 257.768066406 256.066650391 254.396789551 252.392486572 250.063751221 247.577178955 244.170471191 240.619567871 238.72593689 238.646514893 239.371353149 237.960845947 236.533401489 235.552612305 234.763717651 235.146697998 236.191696167 237.204406738 237.913116455 238.088287354 238.18560791 238.905059814 238.946487427 237.489456177 240.965148926 244.8331604 249.277786255 252.231781006 253.198822021 252.758621216 251.088790894 249.933517456 251.387985229 255.361190796 261.005523682 265.88079834 270.208557129 271.730651855 272.327484131 272.983673096 273.834655762 274.807373047 275.892211914 277.004302979 278.031890869 278.835968018 279.541992188 280.231628418 280.93258667 281.693572998 282.438995361 283.20425415 284.070251465 284.893768311 285.793914795 286.784484863 287.754760742 288.764312744 289.73034668 290.556976318 291.463287354 292.415893555 293.278106689 293.978759766 294.671844482 295.341064453 295.875762939 296.377593994 296.861999512 297.274627686 297.718994141 298.239990234 298.694976807 299.051513672 299.358612061 299.614685059 299.722625732 299.710571289 299.745605469 299.841491699 299.783782959 299.574310303 299.504180908 299.321228027 298.419128418 297.080841064 296.321624756 296.681030273 297.74319458 298.719543457 299.246856689 299.313842773 299.103210449 298.728515625 298.240142822 297.670471191 296.976043701 296.245483398 295.54989624 294.689910889 293.696990967 292.811950684 292.169036865 291.654022217 291.080596924 290.377990723 289.499725342 288.612609863 287.77935791 287.006103516 286.283508301 285.56930542 284.900939941 284.253448486 283.653991699 283.074798584 282.363342285 281.617370605 281.011138916 280.356109619 279.578887939 278.562591553 276.97668457 274.874023438 272.188903809 267.819915771 263.079711914 260.039672852 258.371368408 256.975463867 256.040588379 254.718215942 253.330673218 253.115997314 252.286178589 249.601913452 247.654953003 244.977416992 244.670227051 242.966415405 241.394897461 240.570175171 240.124710083 240.325164795 241.107147217 239.983428955 239.931930542 240.344268799 240.963165283 241.241668701 241.507736206 228.112213135 233.361190796 238.471008301 243.49446106 247.631332397 248.895126343 248.617980957 246.715545654 245.382858276 247.711425781 252.281341553 257.659637451 261.938079834 267.694549561 270.305908203 271.417175293 272.36517334 273.489196777 274.523132324 275.570983887 276.705810547 277.746124268 278.448699951 279.062194824 279.729217529 280.507507324 281.358001709 282.109527588 282.855743408 283.707824707 284.552276611 285.432983398 286.427124023 287.45123291 288.545043945 289.622192383 290.59765625 291.524871826 292.362762451 293.190765381 293.936676025 294.552185059 295.089294434 295.535552979 295.946807861 296.418609619 296.965667725 297.482727051 297.978363037 298.527038574 299.083068848 299.505554199 299.778533936 299.852539062 299.728210449 299.574890137 299.505187988 299.578063965 299.772674561 299.681274414 298.939819336 297.891540527 296.922607422 296.316345215 296.895599365 298.390930176 299.430725098 299.648132324 299.622009277 299.55355835 299.278411865 298.847839355 298.259796143 297.411254883 296.502990723 295.692779541 294.784698486 293.801116943 292.918945312 292.19241333 291.562957764 290.895202637 290.113525391 289.203643799 288.330444336 287.522155762 286.855865479 286.276031494 285.596099854 284.844940186 284.144744873 283.455474854 282.817352295 282.205749512 281.576141357 280.894744873 280.052032471 279.186676025 278.220001221 276.71282959 274.680419922 272.214630127 268.122711182 264.355987549 260.91885376 258.966247559 257.224273682 255.801223755 254.8959198 254.223220825 253.789627075 254.106292725 253.916625977 252.545257568 249.716094971 249.66343689 248.559753418 247.338439941 246.065048218 244.808746338 243.64515686 243.529708862 243.064544678 242.050170898 241.684646606 241.582748413 240.897171021 240.343048096 247.288345337 250.386413574 254.376480103 258.662506104 261.33795166 261.949005127 261.352539062 259.635101318 258.293060303 259.059356689 261.979827881 266.260986328 269.322296143 271.038757324 271.487365723 271.846893311 272.537689209 273.340820312 274.057617188 274.789489746 275.662689209 276.658111572 277.570373535 278.47265625 279.377471924 280.227142334 281.096435547 281.860687256 282.574432373 283.484863281 284.468597412 285.448425293 286.446868896 287.410522461 288.376922607 289.278198242 290.146575928 291.007049561 291.776824951 292.555999756 293.320678711 294.065643311 294.776489258 295.301208496 295.68170166 296.047637939 296.462249756 296.978912354 297.582946777 298.14932251 298.62677002 298.999664307 299.250274658 299.316650391 299.279632568 299.22833252 299.223632812 299.27432251 299.238555908 299.06652832 298.797027588 298.160003662 296.936889648 295.818969727 295.681060791 296.543243408 297.79864502 298.940063477 299.514984131 299.433319092 299.012542725 298.551361084 297.971954346 297.251922607 296.607055664 295.961761475 295.135925293 294.17175293 293.210021973 292.289520264 291.433868408 290.724395752 290.256195068 289.842041016 289.212127686 288.438079834 287.795166016 287.35760498 286.910858154 286.373443604 285.740386963 285.029266357 284.310119629 283.580108643 282.897918701 282.302215576 281.46472168 280.13394165 278.20526123 275.684143066 272.300231934 269.018676758 264.873260498 261.671020508 258.743652344 257.17868042 256.16986084 254.301422119 251.995941162 250.077438354 247.655517578 244.128189087 240.67010498 238.860046387 238.621765137 238.915802002 237.668365479 236.346908569 235.458312988 234.776290894 235.360656738 236.22277832 237.216690063 237.923431396 238.033325195 238.119873047 238.898193359 238.948135376 237.60899353 240.871109009 244.629776001 248.876266479 251.85798645 252.774658203 252.220703125 250.503189087 249.407043457 251.171432495 255.101791382 261.014862061 265.58392334 270.001342773 271.67477417 272.355285645 273.059143066 273.919281006 274.869018555 275.931213379 277.044708252 278.122955322 278.974243164 279.712036133 280.402252197 281.053253174 281.749450684 282.463409424 283.227813721 284.094360352 284.913238525 285.811523438 286.826293945 287.811126709 288.847503662 289.860443115 290.727142334 291.649139404 292.584381104 293.399108887 294.065551758 294.76385498 295.455718994 295.946563721 296.361328125 296.747802734 297.129943848 297.639953613 298.19720459 298.617797852 298.96383667 299.314941406 299.568603516 299.642883301 299.601257324 299.618591309 299.718322754 299.684539795 299.502349854 299.455078125 299.26675415 298.319946289 296.951385498 296.228820801 296.671844482 297.803985596 298.817749023 299.376525879 299.423583984 299.181365967 298.800933838 298.316955566 297.736022949 297.036010742 296.329193115 295.627044678 294.734771729 293.67880249 292.73727417 292.010955811 291.404998779 290.820373535 290.208557129 289.446166992 288.572845459 287.655578613 286.744049072 285.8934021 285.113800049 284.514312744 284.08114624 283.635314941 283.032653809 282.274017334 281.498016357 280.894439697 280.253509521 279.32989502 277.819091797 275.578216553 272.563751221 269.313781738 264.783691406 261.456787109 258.705718994 257.223327637 256.550170898 255.970718384 254.229949951 253.210998535 253.174743652 251.903381348 248.961303711 247.025939941 244.344726562 244.080856323 242.50038147 241.121673584 240.529891968 240.161132812 240.341781616 241.069549561 239.924880981 239.829238892 240.221664429 240.87348938 241.236968994 241.508483887 228.098068237 233.282836914 238.151367188 242.994232178 247.304290771 248.790893555 248.169067383 246.138748169 244.768249512 247.291778564 251.820266724 257.680938721 261.601501465 267.625640869 270.259674072 271.41116333 272.398590088 273.514923096 274.532501221 275.584686279 276.756500244 277.825561523 278.564941406 279.243103027 279.946624756 280.674163818 281.44317627 282.151733398 282.874633789 283.717987061 284.550994873 285.434967041 286.465820312 287.511016846 288.608795166 289.685546875 290.67199707 291.634368896 292.497436523 293.287506104 293.971984863 294.534088135 295.031799316 295.476959229 295.908752441 296.370391846 296.89541626 297.432128906 297.926361084 298.429718018 298.941192627 299.360168457 299.626861572 299.697265625 299.581634521 299.471343994 299.436523438 299.505065918 299.678344727 299.60244751 298.868286133 297.779724121 296.80078125 296.221099854 296.793548584 298.310424805 299.384216309 299.600219727 299.560974121 299.518249512 299.304992676 298.948730469 298.408569336 297.556976318 296.620880127 295.751708984 294.791809082 293.772888184 292.872070312 292.050964355 291.319122314 290.665863037 289.960571289 289.090270996 288.198669434 287.345672607 286.63659668 286.038208008 285.37979126 284.671508789 284.060424805 283.43548584 282.74710083 282.085693359 281.478759766 280.880645752 280.108795166 279.0887146 277.647338867 275.610229492 272.495178223 269.225402832 265.933013916 263.124725342 259.799163818 258.007873535 257.090759277 255.945098877 254.889312744 254.624664307 254.291030884 254.329498291 253.881286621 252.575057983 249.578536987 249.384979248 248.269958496 247.026306152 245.930465698 244.702987671 243.778289795 243.562469482 243.00769043 241.960205078 241.625473022 241.417373657 240.898010254 240.34588623 247.327774048 250.374053955 254.239730835 258.333465576 260.992492676 261.587402344 260.959716797 259.220092773 258.121154785 258.904083252 261.844207764 266.484191895 269.258239746 270.874664307 271.375518799 271.791381836 272.535095215 273.398681641 274.15435791 274.878143311 275.708221436 276.681640625 277.621704102 278.548126221 279.410186768 280.201202393 281.035430908 281.802459717 282.550720215 283.492523193 284.446655273 285.394927979 286.397155762 287.385681152 288.352203369 289.263397217 290.171569824 291.047698975 291.799957275 292.559112549 293.323028564 294.049621582 294.700469971 295.184906006 295.58215332 295.957305908 296.372711182 296.957000732 297.636169434 298.165344238 298.570251465 298.909790039 299.136962891 299.193695068 299.141235352 299.076202393 299.088867188 299.186706543 299.183135986 299.034484863 298.793060303 298.136322021 296.868438721 295.735229492 295.648773193 296.597930908 297.871002197 298.951080322 299.486328125 299.436340332 299.058105469 298.60256958 298.010467529 297.284912109 296.618133545 295.955993652 295.106506348 294.090209961 293.105651855 292.172302246 291.286712646 290.541564941 290.061584473 289.639831543 288.983123779 288.183563232 287.529846191 287.091491699 286.644683838 286.156982422 285.62890625 284.905548096 283.907104492 282.980499268 282.307952881 281.82723999 281.030273438 279.324310303 276.739501953 272.743286133 268.301635742 265.864257812 263.097106934 260.509094238 258.350921631 257.070556641 256.057769775 254.225997925 251.534729004 249.999938965 247.66242981 244.052383423 240.7681427 238.844314575 238.652603149 238.333816528 237.347229004 236.165084839 235.42276001 234.860595703 235.529815674 236.302719116 237.217300415 237.877182007 237.984405518 238.030349731 238.891281128 238.972640991 237.57711792 240.908065796 244.435684204 248.481582642 251.434753418 252.312850952 251.642044067 249.923934937 248.944992065 250.990509033 254.998092651 260.905609131 265.271789551 269.79675293 271.582885742 272.352233887 273.113800049 274.001586914 274.953033447 275.992736816 277.083740234 278.180267334 279.062835693 279.813354492 280.48638916 281.091308594 281.740905762 282.45211792 283.225799561 284.112243652 284.937072754 285.824523926 286.863861084 287.8828125 288.944610596 289.985290527 290.906097412 291.847900391 292.744659424 293.52633667 294.220062256 294.941833496 295.601623535 296.023284912 296.360443115 296.673858643 297.036743164 297.590301514 298.162811279 298.55267334 298.891662598 299.260528564 299.495910645 299.529724121 299.466278076 299.486816406 299.604492188 299.5965271 299.430297852 299.374145508 299.183837891 298.238037109 296.854949951 296.126800537 296.616729736 297.831390381 298.899688721 299.469604492 299.511474609 299.280670166 298.909362793 298.409484863 297.787841797 297.097137451 296.434448242 295.733337402 294.805725098 293.708618164 292.737670898 291.951629639 291.253875732 290.619110107 290.006439209 289.273620605 288.383209229 287.44821167 286.541320801 285.662841797 284.891662598 284.451171875 284.250518799 283.836364746 283.016296387 282.059051514 281.240997314 280.628417969 279.993621826 278.820251465 276.733032227 273.236663818 269.239013672 266.010070801 262.88381958 259.960113525 257.658782959 256.523864746 256.261535645 256.019165039 254.01725769 253.162521362 252.928817749 251.154907227 248.158172607 245.894973755 243.769439697 243.302001953 241.943664551 240.768951416 240.36177063 240.148727417 240.351654053 240.922958374 239.626342773 239.69090271 240.149261475 240.802154541 241.234329224 241.458068848 228.203170776 233.147171021 237.801330566 242.473190308 246.911499023 248.625579834 247.766708374 245.570831299 244.236175537 246.952911377 251.513427734 257.63092041 261.364685059 267.566314697 270.225769043 271.417785645 272.435852051 273.541595459 274.55178833 275.621185303 276.8046875 277.878814697 278.654388428 279.385894775 280.094848633 280.765045166 281.479766846 282.169830322 282.87399292 283.709411621 284.52911377 285.429656982 286.499908447 287.580535889 288.71774292 289.816101074 290.818145752 291.786712646 292.618743896 293.348724365 293.992553711 294.546447754 295.034545898 295.468963623 295.903991699 296.363250732 296.877410889 297.420135498 297.90322876 298.346191406 298.786529541 299.180603027 299.442199707 299.515411377 299.429229736 299.377685547 299.379486084 299.442779541 299.608520508 299.56149292 298.849853516 297.731109619 296.718139648 296.131469727 296.684234619 298.204162598 299.305450439 299.528747559 299.475341797 299.443664551 299.286102295 298.996063232 298.492156982 297.661132812 296.738739014 295.842376709 294.812042236 293.714447021 292.762115479 291.872253418 291.103973389 290.471435547 289.765777588 288.899780273 288.011413574 287.152984619 286.411010742 285.787231445 285.190582275 284.621948242 284.124450684 283.469787598 282.533111572 281.625061035 280.936462402 280.50402832 279.949554443 278.729522705 276.774108887 273.582275391 269.110321045 266.587005615 264.446105957 261.889648438 259.052093506 257.572021484 257.302978516 256.683410645 255.365921021 255.201889038 254.858139038 254.428268433 253.684173584 252.068664551 249.561752319 248.990325928 247.905456543 246.759613037 245.783309937 244.640808105 243.642318726 243.488510132 242.878143311 241.88458252 241.584320068 241.295928955 240.904632568 240.287475586 247.33895874 250.361923218 254.065795898 258.008666992 260.623474121 261.229980469 260.460510254 258.851196289 257.855194092 258.837921143 261.77947998 266.398590088 269.131469727 270.711029053 271.248809814 271.722442627 272.518798828 273.439544678 274.249450684 274.983947754 275.780792236 276.718719482 277.65713501 278.593688965 279.412231445 280.143585205 280.945007324 281.731658936 282.532714844 283.513183594 284.444122314 285.369995117 286.357513428 287.358764648 288.321472168 289.239349365 290.15838623 291.043182373 291.811859131 292.569793701 293.309570312 293.997070312 294.576843262 295.026245117 295.467102051 295.891235352 296.332427979 296.963928223 297.677276611 298.1668396 298.510192871 298.800292969 299.010131836 299.074310303 299.018859863 298.936004639 298.963745117 299.10067749 299.125213623 298.994995117 298.774597168 298.08215332 296.762573242 295.633666992 295.614074707 296.643981934 297.950500488 298.969329834 299.434814453 299.381988525 299.041137695 298.603363037 298.038604736 297.353149414 296.670196533 295.96307373 295.077270508 294.030487061 293.01864624 292.057128906 291.162841797 290.461395264 290.007232666 289.564117432 288.857971191 288.060516357 287.498413086 287.161132812 286.800018311 286.379058838 285.792877197 284.834869385 283.355285645 281.927276611 281.129669189 280.709228516 279.868347168 278.050231934 275.025787354 269.846343994 266.022369385 264.103424072 261.74230957 259.923614502 258.61831665 256.937530518 255.829864502 253.937942505 251.391876221 250.323272705 247.276870728 243.547180176 240.463760376 238.459106445 238.323379517 237.526123047 236.729187012 235.718215942 235.281341553 234.952606201 235.674285889 236.456863403 237.15776062 237.829788208 237.945678711 238.015441895 238.852981567 239.001052856 237.471069336 240.813949585 244.253540039 248.054611206 250.985626221 251.878036499 251.01524353 249.229995728 248.641799927 250.877502441 254.996292114 260.131561279 264.930084229 269.596923828 271.465545654 272.332366943 273.157318115 274.076171875 275.03817749 276.065246582 277.128326416 278.22354126 279.124176025 279.869140625 280.504241943 281.065673828 281.690612793 282.410064697 283.206817627 284.129730225 284.976928711 285.869018555 286.92388916 287.975982666 289.04208374 290.088287354 291.057128906 292.029541016 292.901947021 293.670562744 294.394226074 295.113922119 295.703369141 296.05947876 296.365478516 296.653839111 296.988739014 297.528900146 298.085357666 298.456329346 298.794647217 299.15020752 299.364837646 299.367248535 299.298034668 299.33505249 299.501739502 299.540039062 299.381622314 299.280700684 299.067260742 298.136688232 296.768737793 296.011779785 296.523468018 297.831054688 298.968811035 299.521850586 299.559661865 299.351928711 298.987518311 298.47644043 297.850402832 297.206329346 296.570739746 295.849121094 294.892456055 293.773223877 292.766998291 291.912994385 291.142364502 290.474975586 289.859313965 289.13369751 288.212585449 287.322906494 286.599517822 285.942352295 285.414733887 285.151977539 284.869384766 284.110900879 282.739868164 281.322479248 280.385925293 279.747131348 279.046844482 277.799682617 275.341125488 270.561950684 266.946685791 264.077056885 261.411437988 258.983093262 257.084075928 255.967025757 256.340209961 255.477416992 253.753570557 253.140701294 252.22996521 249.83442688 247.274093628 244.619949341 242.972229004 242.757659912 241.063110352 240.062850952 239.970458984 240.085296631 240.42149353 240.729812622 239.529220581 239.563430786 239.995803833 240.78956604 241.196533203 241.22618103 228.161239624 232.980560303 237.477233887 241.964355469 246.45791626 248.348373413 247.257522583 244.965652466 243.884216309 246.669784546 251.2784729 256.617401123 261.174285889 267.515960693 270.205627441 271.434295654 272.468383789 273.560760498 274.574951172 275.678955078 276.862762451 277.92098999 278.725738525 279.491851807 280.175750732 280.788024902 281.472381592 282.159881592 282.859893799 283.688354492 284.511657715 285.433441162 286.537139893 287.66708374 288.867431641 289.998443604 290.997741699 291.935424805 292.705413818 293.372375488 294.005249023 294.596801758 295.106323242 295.526947021 295.954589844 296.404022217 296.892456055 297.398956299 297.839447021 298.226593018 298.60949707 298.980987549 299.248474121 299.330993652 299.277618408 299.285186768 299.331207275 299.387390137 299.535858154 299.499420166 298.806365967 297.675933838 296.634857178 296.031524658 296.559539795 298.062011719 299.181243896 299.413604736 299.354888916 299.335540771 299.235778809 299.00769043 298.535339355 297.745330811 296.869659424 295.950378418 294.827758789 293.639434814 292.64453125 291.722045898 290.94644165 290.300872803 289.552368164 288.681671143 287.792816162 286.971099854 286.278778076 285.73449707 285.290893555 284.863433838 284.286804199 283.334777832 281.901153564 280.510925293 279.656341553 279.305969238 278.937408447 277.853729248 275.569061279 271.111083984 267.458343506 265.153594971 263.065673828 260.99822998 258.861114502 257.700714111 257.873474121 257.226196289 256.126159668 256.20324707 255.090148926 254.212646484 253.508102417 251.575195312 249.368209839 248.912353516 247.463943481 246.394760132 245.564651489 244.534515381 243.593612671 243.318481445 242.8177948 241.82019043 241.471725464 241.288909912 240.858901978 240.032455444 247.317596436 250.332702637 253.90625 257.662078857 260.216552734 260.808166504 259.985351562 258.483856201 257.651397705 258.816864014 261.809783936 265.72177124 269.04385376 270.557830811 271.101867676 271.62600708 272.468505859 273.446105957 274.328704834 275.09161377 275.870117188 276.775848389 277.680358887 278.605194092 279.39654541 280.074768066 280.845397949 281.655334473 282.501403809 283.521057129 284.45513916 285.364227295 286.314483643 287.288879395 288.243255615 289.174072266 290.107849121 291.041809082 291.881225586 292.656188965 293.324157715 293.900543213 294.373596191 294.795013428 295.308990479 295.832885742 296.319915771 296.95098877 297.635986328 298.127532959 298.467407227 298.731658936 298.907867432 298.976959229 298.936767578 298.841491699 298.863616943 298.987426758 299.02645874 298.93170166 298.743164062 298.035980225 296.689819336 295.581817627 295.575744629 296.656860352 298.040802002 299.036560059 299.399536133 299.274475098 298.934204102 298.530181885 298.064697266 297.46005249 296.763458252 295.973205566 295.021118164 293.945281982 292.913574219 291.949310303 291.113525391 290.501098633 290.069824219 289.564697266 288.806091309 288.066711426 287.661590576 287.433227539 287.093292236 286.523498535 285.525970459 284.044250488 281.603790283 279.598876953 279.074249268 279.058013916 278.34552002 275.651885986 271.842071533 267.806854248 264.526916504 262.860015869 260.774871826 259.755004883 258.682159424 257.308990479 255.75668335 253.5859375 251.934127808 249.749588013 246.264587402 243.16696167 240.155166626 238.628662109 237.880401611 236.658096313 235.965682983 235.3722229 235.173019409 234.898101807 235.901489258 236.572799683 237.140075684 237.827270508 237.937591553 238.004669189 238.650314331 238.991439819 237.459609985 240.829269409 244.044342041 247.624694824 250.53237915 251.383804321 250.463607788 248.736434937 248.379226685 250.906158447 255.037628174 259.319915771 264.798919678 269.417144775 271.3230896 272.301818848 273.196166992 274.139160156 275.122344971 276.145629883 277.18460083 278.265716553 279.16607666 279.881439209 280.453979492 280.96975708 281.596832275 282.339416504 283.169128418 284.140441895 285.030761719 285.942199707 286.995605469 288.061798096 289.132324219 290.180633545 291.190490723 292.217346191 293.114715576 293.886962891 294.568115234 295.198272705 295.683532715 296.009857178 296.341217041 296.639251709 296.933532715 297.398101807 297.913146973 298.292724609 298.638946533 298.994750977 299.196228027 299.165374756 299.081359863 299.149597168 299.38482666 299.481048584 299.341644287 299.205871582 298.953216553 298.032836914 296.679168701 295.895507812 296.42300415 297.8543396 299.072601318 299.571258545 299.569854736 299.391174316 299.046142578 298.541534424 297.962188721 297.389953613 296.741638184 295.965118408 294.996582031 293.847290039 292.757720947 291.811737061 291.025299072 290.378814697 289.785644531 289.084075928 288.159515381 287.353149414 286.850189209 286.513336182 286.198547363 285.808532715 285.016174316 283.45425415 280.718505859 278.699981689 278.138214111 278.051605225 277.586120605 275.519989014 272.840606689 268.738372803 264.930969238 262.827453613 260.389923096 258.397583008 256.800872803 256.159790039 256.277954102 255.20161438 253.812393188 252.483627319 250.975006104 248.621871948 246.211746216 244.327926636 242.427337646 242.803146362 241.2472229 239.514480591 239.671020508 239.925491333 240.519119263 240.666732788 239.519485474 239.5184021 239.864486694 240.779602051 240.996261597 241.179733276 228.13609314 232.858856201 237.140365601 241.378036499 245.902801514 247.97543335 246.751831055 244.375930786 243.600082397 246.520599365 251.095367432 255.880096436 261.191223145 267.465789795 270.196685791 271.462463379 272.496063232 273.563476562 274.596252441 275.755859375 276.929107666 277.95401001 278.777740479 279.551483154 280.179046631 280.737426758 281.41809082 282.11932373 282.833709717 283.674865723 284.518615723 285.464752197 286.584991455 287.759674072 289.024932861 290.180480957 291.156860352 292.044342041 292.785461426 293.434875488 294.069763184 294.679992676 295.203704834 295.6300354 296.074768066 296.51675415 296.932983398 297.32244873 297.671142578 298.021606445 298.416931152 298.810211182 299.096710205 299.17477417 299.138824463 299.197753906 299.291931152 299.337097168 299.473358154 299.426574707 298.742584229 297.617034912 296.569793701 295.968658447 296.465118408 297.904571533 298.997833252 299.218322754 299.161834717 299.181640625 299.170074463 299.019866943 298.581756592 297.841064453 297.031494141 296.081512451 294.854064941 293.585266113 292.560821533 291.623535156 290.834503174 290.148803711 289.367004395 288.522918701 287.681182861 286.942779541 286.369903564 285.968841553 285.575378418 284.969573975 283.881103516 282.320770264 279.708953857 277.597595215 277.063903809 277.269226074 277.30355835 275.703674316 273.028625488 269.260742188 266.19644165 263.939422607 262.260162354 260.524200439 258.923736572 258.591339111 258.851226807 258.247558594 257.565917969 256.684814453 255.10244751 254.123474121 253.284881592 251.682937622 249.328384399 249.171264648 247.919799805 246.179000854 245.5181427 244.3931427 243.486160278 243.128097534 242.704818726 241.777587891 241.316513062 241.284713745 240.5284729 239.979476929 247.304718018 250.287902832 253.736907959 257.310913086 259.828765869 260.438934326 259.57723999 258.182006836 257.537200928 258.873687744 261.84967041 266.077758789 269.013092041 270.470062256 270.975219727 271.546569824 272.409301758 273.416900635 274.36026001 275.159332275 275.938140869 276.828704834 277.692199707 278.587310791 279.359985352 280.023284912 280.783325195 281.598175049 282.453765869 283.489990234 284.444488525 285.348999023 286.249786377 287.174835205 288.137237549 289.122039795 290.106231689 291.106567383 291.990386963 292.75213623 293.341766357 293.819030762 294.237426758 294.651397705 295.207519531 295.80267334 296.318206787 296.911010742 297.548187256 298.03515625 298.3855896 298.652252197 298.791442871 298.830200195 298.796966553 298.735839844 298.784301758 298.895843506 298.911804199 298.833282471 298.65713501 297.969665527 296.666503906 295.59262085 295.596893311 296.675109863 298.067138672 299.027130127 299.322631836 299.137573242 298.778717041 298.406433105 298.051574707 297.534088135 296.86114502 296.03225708 295.015930176 293.873718262 292.802185059 291.872131348 291.164978027 290.622192383 290.101837158 289.48828125 288.787689209 288.252075195 288.032684326 287.837280273 287.196258545 286.027252197 284.065948486 281.070556641 278.225708008 276.095733643 275.694793701 276.161621094 275.750518799 273.144134521 269.574676514 266.234100342 263.894317627 261.755828857 260.336791992 259.668243408 259.066894531 257.645233154 255.537307739 252.87600708 251.029220581 248.882385254 245.557540894 242.560821533 239.638305664 238.702529907 237.871383667 236.237106323 235.268630981 235.420806885 235.339828491 234.99546814 236.036300659 236.71383667 237.154129028 237.846878052 237.935333252 237.989196777 238.477630615 238.99382019 237.483551025 240.857299805 243.849212646 247.198074341 250.087280273 250.88772583 249.835388184 248.214736938 248.175415039 250.905029297 255.159591675 260.26159668 264.926757812 269.307403564 271.216796875 272.28213501 273.229278564 274.177185059 275.184692383 276.218383789 277.245025635 278.302215576 279.173339844 279.835906982 280.351715088 280.84197998 281.483612061 282.263031006 283.116821289 284.103942871 285.035827637 285.972686768 287.016815186 288.107055664 289.233062744 290.316375732 291.349121094 292.412475586 293.321716309 294.063690186 294.660491943 295.176818848 295.59942627 295.913360596 296.235687256 296.554718018 296.860168457 297.273712158 297.741851807 298.113861084 298.474090576 298.843444824 299.033477783 298.967681885 298.873413086 298.994628906 299.287902832 299.410614014 299.300262451 299.16696167 298.877471924 297.959350586 296.609222412 295.80581665 296.354278564 297.885009766 299.147583008 299.575317383 299.518585205 299.358886719 299.061920166 298.588775635 298.064666748 297.55581665 296.945617676 296.177459717 295.207885742 293.980712891 292.751464844 291.698364258 290.936798096 290.363006592 289.80682373 289.152526855 288.309204102 287.58114624 287.234344482 287.109436035 286.706268311 285.765441895 283.727600098 280.522460938 277.753662109 276.037231445 275.367340088 275.413024902 275.131317139 273.702636719 270.909942627 267.378570557 263.961914062 261.675994873 259.453033447 258.0234375 256.840332031 256.278656006 255.686264038 253.870117188 252.509155273 251.394638062 249.659591675 247.086257935 244.695114136 243.562957764 242.034851074 242.129119873 240.804794312 239.280517578 239.852050781 239.803268433 240.527130127 240.557434082 239.371185303 239.500640869 239.779251099 240.750686646 240.794189453 241.175048828 228.235198975 232.80027771 236.773574829 240.789138794 245.287078857 247.580276489 246.261917114 243.792175293 243.408187866 246.579177856 250.993469238 256.698669434 261.393585205 267.438140869 270.197967529 271.499816895 272.515228271 273.550231934 274.606994629 275.814666748 276.972290039 277.96005249 278.782592773 279.541503906 280.121459961 280.65435791 281.345581055 282.064605713 282.805908203 283.680419922 284.553924561 285.514312744 286.644226074 287.840332031 289.121429443 290.285308838 291.242889404 292.121673584 292.898162842 293.575073242 294.191070557 294.75592041 295.252075195 295.69720459 296.16204834 296.593841553 296.947509766 297.238830566 297.506713867 297.840240479 298.261108398 298.668945312 298.968017578 299.042999268 299.002960205 299.100311279 299.223144531 299.256011963 299.397216797 299.391784668 298.72946167 297.604156494 296.562011719 295.962921143 296.414520264 297.794250488 298.829223633 299.018768311 298.960327148 298.999084473 299.050231934 298.985931396 298.615386963 297.955291748 297.217346191 296.27142334 294.981658936 293.630340576 292.527893066 291.544372559 290.730987549 290.031677246 289.293518066 288.550933838 287.821868896 287.17276001 286.713439941 286.332000732 285.636779785 284.445495605 282.431060791 279.095672607 276.383056641 274.529510498 273.662597656 274.016479492 274.407989502 273.457855225 270.894317627 268.049621582 265.502746582 263.172332764 261.701019287 260.375915527 259.726531982 259.768310547 259.576507568 258.444122314 257.575744629 256.752044678 255.122055054 253.702560425 252.568847656 251.302642822 249.421325684 248.968963623 247.813110352 246.10887146 245.978988647 244.302886963 243.258926392 242.916900635 242.488494873 241.667755127 241.121673584 241.234603882 240.183166504 239.974014282 247.321090698 250.260498047 253.587356567 256.950592041 259.380096436 259.994354248 259.123321533 257.861419678 257.508575439 258.999420166 261.944671631 265.906768799 269.035186768 270.449035645 270.890167236 271.471801758 272.342132568 273.378234863 274.371063232 275.202575684 275.992431641 276.874603271 277.702850342 278.553833008 279.310424805 279.985290527 280.73727417 281.540588379 282.400634766 283.453125 284.424468994 285.320465088 286.177703857 287.078613281 288.07824707 289.137481689 290.175445557 291.18850708 292.037200928 292.748443604 293.300994873 293.758209229 294.184783936 294.611846924 295.165618896 295.756469727 296.268432617 296.830200195 297.448913574 297.92300415 298.261230469 298.531829834 298.677947998 298.680297852 298.610015869 298.591064453 298.708648682 298.852935791 298.856323242 298.761657715 298.569946289 297.893371582 296.652984619 295.630432129 295.684326172 296.772796631 298.106048584 298.986358643 299.229156494 299.009185791 298.615722656 298.275115967 298.009674072 297.588806152 296.977844238 296.152893066 295.090148926 293.875946045 292.760528564 291.847198486 291.182128906 290.63494873 290.046478271 289.439025879 288.952423096 288.70123291 288.563171387 288.009094238 286.559875488 283.792633057 280.422698975 277.874328613 274.810913086 273.02255249 273.484313965 274.319793701 273.936004639 271.515380859 268.01159668 265.064910889 262.973297119 260.979248047 259.965026855 259.619750977 258.79574585 257.476776123 254.92628479 252.195449829 249.832260132 247.870254517 244.828811646 242.153701782 239.64743042 238.745605469 237.738754272 235.870147705 235.144088745 235.632080078 235.419143677 234.966064453 236.133483887 236.894012451 237.129592896 237.810791016 237.91633606 237.952987671 238.455383301 238.996154785 237.478302002 240.764709473 243.651794434 246.782150269 249.586257935 250.395309448 249.249282837 247.78024292 248.030670166 250.995254517 255.313552856 260.00567627 265.255859375 269.295288086 271.145141602 272.260009766 273.251495361 274.19934082 275.234344482 276.287261963 277.304077148 278.328216553 279.147674561 279.757904053 280.23638916 280.72164917 281.372436523 282.180847168 283.050201416 284.042205811 284.998413086 285.964813232 287.025878906 288.157043457 289.364929199 290.488586426 291.533111572 292.571014404 293.436431885 294.153991699 294.705627441 295.152954102 295.543243408 295.839416504 296.124725342 296.436981201 296.758605957 297.146484375 297.571380615 297.925476074 298.30166626 298.683990479 298.866668701 298.777801514 298.6875 298.869445801 299.214477539 299.370758057 299.295043945 299.13772583 298.794342041 297.872344971 296.529449463 295.710693359 296.296203613 297.894256592 299.153106689 299.511169434 299.400177002 299.232727051 298.99710083 298.600982666 298.141998291 297.683685303 297.153259277 296.441741943 295.478973389 294.207427979 292.889404297 291.769561768 291.0 290.419586182 289.868682861 289.289794922 288.604492188 287.999694824 287.708709717 287.421325684 286.465057373 284.085327148 280.741424561 277.815338135 275.004516602 273.881378174 273.805480957 274.382995605 274.305267334 272.779907227 269.866210938 265.686737061 262.816589355 260.527404785 258.693695068 257.705596924 256.752624512 256.219604492 254.999893188 252.643814087 251.027709961 250.031036377 248.102661133 245.695877075 244.020278931 242.913833618 241.408599854 241.312469482 240.113479614 239.241546631 239.83291626 239.584884644 240.399490356 240.242218018 239.243881226 239.458511353 239.752960205 240.623641968 240.766174316 241.172851562 228.242446899 232.741531372 236.426071167 240.193130493 244.660583496 247.106552124 245.708572388 243.271774292 243.306167603 246.773391724 251.025161743 256.042572021 261.692810059 267.469207764 270.20980835 271.533355713 272.527740479 273.532318115 274.611633301 275.847839355 276.986206055 277.942321777 278.751739502 279.4871521 280.043914795 280.576171875 281.270904541 282.000457764 282.77734375 283.695068359 284.598968506 285.577362061 286.723602295 287.932861328 289.208770752 290.364685059 291.311584473 292.195678711 292.999023438 293.689849854 294.282989502 294.797393799 295.263641357 295.723083496 296.185211182 296.576202393 296.872802734 297.114654541 297.358215332 297.702545166 298.134216309 298.533081055 298.829193115 298.904388428 298.866485596 299.005218506 299.155609131 299.177459717 299.316711426 299.335693359 298.679443359 297.558959961 296.539337158 295.944122314 296.361785889 297.68963623 298.68460083 298.860076904 298.801452637 298.825256348 298.889678955 298.89553833 298.626800537 298.076202393 297.414825439 296.499053955 295.172607422 293.737548828 292.541564941 291.536682129 290.747344971 290.052612305 289.341156006 288.690643311 288.101135254 287.569824219 287.138244629 286.464630127 285.065307617 282.453460693 278.81729126 276.20904541 273.812316895 271.953063965 271.481170654 272.056671143 272.733947754 271.740783691 269.379699707 266.92388916 264.561340332 262.647918701 261.254638672 260.492401123 260.022216797 260.470977783 259.984405518 258.3956604 257.182525635 256.772827148 255.026382446 253.240020752 252.394287109 251.084899902 249.218994141 248.749511719 247.400878906 245.998733521 246.077636719 244.094558716 243.104232788 242.606185913 242.261062622 241.549713135 241.05859375 240.923019409 240.12840271 239.970962524 247.329452515 250.21987915 253.451034546 256.583099365 258.925231934 259.52331543 258.666931152 257.568878174 257.500030518 259.153106689 262.090362549 265.470825195 269.090393066 270.455810547 270.866210938 271.413696289 272.274261475 273.347015381 274.381195068 275.238037109 276.038787842 276.918792725 277.714477539 278.513305664 279.255828857 279.954864502 280.699676514 281.479980469 282.350067139 283.427856445 284.411834717 285.279998779 286.106262207 287.013397217 288.061706543 289.183532715 290.26739502 291.243286133 291.999359131 292.644592285 293.198577881 293.697784424 294.168212891 294.614257812 295.1328125 295.683929443 296.177124023 296.716430664 297.342285156 297.808807373 298.111785889 298.39831543 298.586181641 298.553863525 298.421081543 298.425598145 298.623291016 298.820343018 298.825500488 298.718200684 298.51739502 297.855194092 296.653198242 295.665222168 295.789154053 296.912017822 298.173828125 298.953155518 299.140045166 298.892974854 298.477142334 298.169036865 297.964172363 297.648986816 297.128723145 296.321044922 295.22164917 293.954986572 292.813140869 291.900390625 291.273864746 290.769775391 290.229064941 289.735107422 289.389007568 289.159301758 288.738586426 287.516693115 284.460144043 280.372833252 277.402282715 274.53704834 271.266540527 270.860687256 271.754241943 272.996032715 272.676147461 270.371124268 266.685760498 263.909912109 261.861785889 260.194152832 259.617797852 259.28704834 258.511352539 256.317901611 254.00390625 252.402755737 249.458251953 246.860687256 244.239593506 241.866363525 239.788208008 238.968811035 237.753417969 235.823730469 234.781356812 235.679275513 235.377319336 234.966766357 236.304656982 237.019836426 237.098464966 237.733688354 237.904434204 237.970413208 238.454650879 238.998352051 237.572540283 240.697189331 243.470840454 246.388641357 249.078384399 249.856338501 248.659484863 247.344421387 247.965866089 251.181350708 255.545059204 259.843566895 265.736816406 269.36529541 271.098510742 272.228302002 273.263214111 274.221099854 275.282012939 276.35546875 277.358886719 278.340118408 279.094726562 279.659973145 280.126617432 280.626373291 281.28024292 282.093231201 282.968261719 283.967803955 284.94442749 285.943481445 287.049804688 288.229370117 289.497497559 290.65435791 291.701507568 292.667816162 293.464752197 294.174194336 294.71673584 295.119262695 295.487701416 295.765045166 296.023620605 296.32220459 296.649017334 297.008605957 297.39251709 297.738677979 298.129180908 298.522186279 298.699493408 298.59854126 298.527709961 298.7527771 299.127655029 299.33001709 299.297973633 299.11819458 298.725311279 297.799468994 296.449859619 295.631195068 296.260101318 297.874481201 299.103729248 299.424804688 299.266021729 299.061401367 298.886230469 298.603942871 298.214904785 297.780914307 297.30847168 296.666229248 295.742950439 294.498596191 293.15234375 291.974822998 291.186126709 290.591705322 290.049468994 289.537628174 288.955200195 288.397888184 287.977752686 287.213439941 284.96786499 281.343353271 277.949432373 274.986083984 272.098419189 271.972869873 272.721710205 273.432281494 273.46295166 271.988861084 268.915100098 264.606811523 261.517242432 259.520599365 258.159454346 257.45123291 256.800933838 255.301467896 253.419708252 252.218338013 250.07244873 248.490783691 246.766098022 244.7784729 243.540145874 242.182540894 240.934951782 240.672790527 239.52796936 239.02532959 239.459472656 239.385772705 240.141220093 239.992004395 239.191253662 239.42074585 239.745040894 240.512863159 240.766464233 241.17175293 228.165542603 232.617385864 236.110794067 239.551986694 243.968276978 246.596893311 245.249603271 242.88822937 243.281616211 246.955627441 251.106933594 255.409042358 262.06942749 267.557739258 270.227325439 271.554229736 272.533233643 273.515625 274.613647461 275.855560303 276.97064209 277.9012146 278.6875 279.396697998 279.954772949 280.509613037 281.201843262 281.933898926 282.751586914 283.716705322 284.644165039 285.639770508 286.815826416 288.033691406 289.286254883 290.415313721 291.360290527 292.260864258 293.064117432 293.744415283 294.31817627 294.795532227 295.251068115 295.722229004 296.160736084 296.486785889 296.741241455 296.975891113 297.228546143 297.602111816 298.043579102 298.433380127 298.716674805 298.76965332 298.737579346 298.924835205 299.119476318 299.145233154 299.257263184 299.271057129 298.612121582 297.506561279 296.506835938 295.922241211 296.31048584 297.588623047 298.549865723 298.725372314 298.68170166 298.684417725 298.727325439 298.783874512 298.630645752 298.193481445 297.605316162 296.73828125 295.419067383 293.9269104 292.666931152 291.664459229 290.919647217 290.202514648 289.472167969 288.869812012 288.364440918 287.855224609 287.27154541 286.150360107 283.53036499 279.319580078 276.133514404 273.455230713 271.456176758 270.539672852 270.225067139 270.540313721 271.132415771 270.255859375 268.013793945 265.911193848 263.78692627 262.060394287 261.1328125 260.718261719 260.467834473 260.116027832 259.328430176 259.131591797 257.581390381 256.517181396 255.168640137 253.321243286 252.287063599 250.899765015 249.195373535 248.563354492 247.258743286 245.756729126 245.72328186 244.020111084 242.765533447 242.381103516 242.039611816 241.353347778 241.042984009 240.575088501 240.130004883 239.968856812 247.357650757 250.213378906 253.324798584 256.217590332 258.449188232 259.081634521 258.229400635 257.335906982 257.540344238 259.349060059 262.267456055 265.703369141 269.193878174 270.4871521 270.910095215 271.378662109 272.204223633 273.331939697 274.410247803 275.279418945 276.082427979 276.969268799 277.739501953 278.477172852 279.201904297 279.924041748 280.670715332 281.429412842 282.314575195 283.426452637 284.414306641 285.232177734 286.034332275 286.971893311 288.054718018 289.21395874 290.320495605 291.229949951 291.882568359 292.488220215 293.085174561 293.639953613 294.159454346 294.605743408 295.09664917 295.632141113 296.116607666 296.635742188 297.241577148 297.694732666 297.967834473 298.235565186 298.426513672 298.356506348 298.19543457 298.233581543 298.502502441 298.731262207 298.747711182 298.657073975 298.487976074 297.856079102 296.644592285 295.639129639 295.813842773 297.009155273 298.225189209 298.918884277 299.023590088 298.737335205 298.355987549 298.094848633 297.91796875 297.698760986 297.307373047 296.568267822 295.482513428 294.21194458 293.05670166 292.154418945 291.617095947 291.220123291 290.797119141 290.426849365 290.02355957 289.456481934 288.486419678 286.612670898 282.393493652 278.220184326 274.811523438 271.068511963 269.709625244 269.980560303 270.823181152 271.58883667 271.347351074 269.392730713 265.674560547 262.918243408 260.748077393 259.600128174 259.627502441 258.883422852 258.239685059 256.012298584 253.564941406 251.847717285 248.704788208 246.127731323 243.606796265 241.575958252 239.661102295 239.203979492 237.768707275 235.046615601 234.548690796 235.556533813 235.223449707 235.328109741 236.352142334 237.117782593 237.060806274 237.673355103 237.915222168 237.970733643 238.454483032 239.000350952 237.505004883 240.630615234 243.273971558 245.979431152 248.565490723 249.357009888 248.124130249 246.994110107 248.058029175 251.403274536 255.824050903 260.599060059 266.280731201 269.517120361 271.069610596 272.175537109 273.261444092 274.258605957 275.355163574 276.433227539 277.414428711 278.336608887 279.011657715 279.538360596 280.03704834 280.577270508 281.22088623 281.995452881 282.854003906 283.877380371 284.888214111 285.939788818 287.094268799 288.311157227 289.594848633 290.775878906 291.831878662 292.735412598 293.471923828 294.161224365 294.702850342 295.072052002 295.391540527 295.660339355 295.932220459 296.246337891 296.556945801 296.873626709 297.218658447 297.582244873 297.962097168 298.334747314 298.477264404 298.381713867 298.364318848 298.613494873 298.98739624 299.230743408 299.252227783 299.083831787 298.682067871 297.76663208 296.394592285 295.574859619 296.219207764 297.780029297 298.951171875 299.29788208 299.131896973 298.878051758 298.751739502 298.593811035 298.26675415 297.828765869 297.379455566 296.828857422 296.015594482 294.863250732 293.527404785 292.313751221 291.555786133 290.999847412 290.492156982 290.001983643 289.408081055 288.741485596 288.020812988 286.719573975 283.311981201 279.152984619 275.702636719 272.866455078 270.007293701 270.147644043 271.816375732 272.56552124 272.352416992 270.658874512 267.11895752 263.525726318 260.392700195 258.665405273 258.160949707 257.604736328 257.055969238 254.925537109 252.694442749 251.099121094 249.00100708 247.080795288 245.410705566 243.917251587 242.916442871 241.531555176 240.723114014 239.78894043 238.884078979 238.69821167 239.211685181 239.262161255 239.871459961 239.733947754 239.079238892 239.450515747 239.754302979 240.494873047 240.766921997 241.171432495 228.170700073 232.444274902 235.757369995 238.887329102 243.258300781 245.981430054 244.736602783 242.506271362 243.361953735 247.181304932 251.269805908 256.379821777 262.459381104 267.699768066 270.246643066 271.554077148 272.530700684 273.507507324 274.61630249 275.837768555 276.923370361 277.831695557 278.584411621 279.254272461 279.844787598 280.459716797 281.158081055 281.885192871 282.739807129 283.743621826 284.679077148 285.691314697 286.898132324 288.103210449 289.32144165 290.40423584 291.35723877 292.286865234 293.093963623 293.760650635 294.316894531 294.771270752 295.214141846 295.690795898 296.110534668 296.39440918 296.652282715 296.890716553 297.127258301 297.524383545 297.990875244 298.364624023 298.585021973 298.584716797 298.562042236 298.815002441 299.089691162 299.148162842 299.227172852 299.222259521 298.58013916 297.479248047 296.460021973 295.88394165 296.25112915 297.484161377 298.404754639 298.595245361 298.575073242 298.552703857 298.552490234 298.627319336 298.579650879 298.256408691 297.754974365 296.984466553 295.760894775 294.278198242 292.988250732 291.988525391 291.258270264 290.504333496 289.766601562 289.221435547 288.749481201 288.148986816 287.300018311 285.777435303 282.149353027 277.794433594 274.279510498 271.584991455 269.670593262 269.634063721 269.384674072 269.209869385 269.404052734 268.61227417 267.160095215 265.107971191 263.094482422 261.737915039 261.423370361 261.134887695 260.867218018 260.00112915 259.044708252 258.988647461 257.350006104 256.231140137 254.988143921 253.223937988 252.12286377 250.682723999 249.148284912 248.283294678 247.039978027 245.526077271 245.328277588 243.798019409 242.468994141 242.218856812 241.811096191 241.127471924 240.862808228 240.486953735 240.130981445 239.967422485 247.357498169 250.159103394 253.151824951 255.846420288 257.994415283 258.612304688 257.836761475 257.108581543 257.533752441 259.607879639 262.489318848 266.297637939 269.356384277 270.527648926 270.922698975 271.342376709 272.160095215 273.336730957 274.445495605 275.314453125 276.125274658 277.02532959 277.770172119 278.450317383 279.167938232 279.917144775 280.680725098 281.428710938 282.311553955 283.421325684 284.386169434 285.167327881 285.972381592 286.954864502 288.054229736 289.180114746 290.263977051 291.139801025 291.76763916 292.398284912 293.05456543 293.636138916 294.170776367 294.61895752 295.103027344 295.630859375 296.111572266 296.577392578 297.108886719 297.550933838 297.823486328 298.066589355 298.203704834 298.088195801 297.954467773 298.070770264 298.401580811 298.652313232 298.679931641 298.609832764 298.463439941 297.844787598 296.602233887 295.550567627 295.753936768 297.043365479 298.275939941 298.913726807 298.905975342 298.589477539 298.280303955 298.045959473 297.850585938 297.701782227 297.467132568 296.888275146 295.92755127 294.753967285 293.649993896 292.900360107 292.541290283 292.263305664 291.96975708 291.55255127 290.75302124 289.350219727 287.651580811 284.764526367 280.48828125 276.836395264 273.098266602 269.557281494 268.885040283 269.177154541 269.34866333 269.52053833 269.303100586 267.603485107 264.853942871 262.03817749 260.066772461 259.700439453 260.002838135 258.89743042 257.15322876 255.094924927 252.927001953 251.210693359 248.334976196 245.56640625 243.04548645 241.30619812 239.668106079 238.781234741 237.632019043 234.591369629 234.552886963 235.418716431 235.032592773 235.514190674 236.3878479 237.143859863 236.998550415 237.633773804 237.983047485 237.970077515 238.454864502 239.002380371 237.526443481 240.702148438 243.097366333 245.559448242 248.047012329 248.844223022 247.680831909 246.642562866 248.137176514 251.710494995 256.186218262 261.475402832 266.817810059 269.706237793 271.054962158 272.109893799 273.242431641 274.309967041 275.442443848 276.500244141 277.451721191 278.326721191 278.936676025 279.437774658 279.990325928 280.581359863 281.20526123 281.914825439 282.744598389 283.78604126 284.830047607 285.9347229 287.130615234 288.362823486 289.640258789 290.838165283 291.917480469 292.803710938 293.479919434 294.122955322 294.657073975 295.010437012 295.312255859 295.592681885 295.881256104 296.192871094 296.456634521 296.732421875 297.0753479 297.44039917 297.781311035 298.103515625 298.210266113 298.136260986 298.18951416 298.4894104 298.890930176 299.157958984 299.192352295 299.026397705 298.635009766 297.708526611 296.332122803 295.558746338 296.190917969 297.650390625 298.757568359 299.136657715 298.986480713 298.719390869 298.617584229 298.507019043 298.210327148 297.833129883 297.467468262 297.021606445 296.35168457 295.315460205 294.048400879 292.980194092 292.428771973 292.008483887 291.506591797 290.892333984 290.058166504 288.921203613 287.581665039 285.377502441 281.775756836 278.042236328 274.437591553 271.338745117 268.952697754 269.226715088 270.081665039 270.256072998 270.789672852 268.354309082 265.643981934 262.300537109 259.420349121 258.61227417 258.476806641 258.164855957 256.620300293 254.305114746 251.769485474 250.178665161 248.021011353 245.992599487 244.257568359 243.205215454 242.433532715 241.471786499 240.681243896 239.1224823 238.387908936 238.601409912 238.717132568 239.039382935 239.505142212 239.312362671 238.956420898 239.442367554 239.809188843 240.490737915 240.767547607 241.171661377 228.22253418 232.365066528 235.397674561 238.223236084 242.466445923 245.32699585 244.28263855 242.316192627 243.478973389 247.481704712 251.487701416 256.999694824 262.82913208 267.84173584 270.245819092 271.520477295 272.51385498 273.510009766 274.622436523 275.81338501 276.868865967 277.759185791 278.469055176 279.10635376 279.748413086 280.454467773 281.186126709 281.903503418 282.756011963 283.751861572 284.683685303 285.713653564 286.933807373 288.124542236 289.311340332 290.368865967 291.319671631 292.269866943 293.100372314 293.777984619 294.328643799 294.76473999 295.190795898 295.656829834 296.062438965 296.359100342 296.642608643 296.880218506 297.071014404 297.442016602 297.913085938 298.229095459 298.346038818 298.335144043 298.376647949 298.71496582 299.066223145 299.134124756 299.17074585 299.142150879 298.512664795 297.393707275 296.350616455 295.814361572 296.211853027 297.400482178 298.293151855 298.511932373 298.490936279 298.431915283 298.386627197 298.434387207 298.415588379 298.183563232 297.791229248 297.163452148 296.119262695 294.760437012 293.502532959 292.5440979 291.867797852 291.183837891 290.554473877 290.067047119 289.462890625 288.425628662 287.199005127 284.907287598 281.25302124 277.338867188 273.671051025 270.787445068 268.903900146 269.104492188 268.223724365 267.842254639 267.777435303 267.364837646 266.363525391 264.432556152 262.634735107 261.997833252 261.968353271 261.449676514 260.579193115 259.391998291 258.6746521 258.715881348 257.334594727 256.137084961 254.751678467 253.152877808 251.90473938 250.669281006 249.354736328 248.143798828 246.693099976 245.650177002 244.582290649 243.420928955 242.197631836 242.008865356 241.56010437 241.002624512 240.638336182 240.488143921 240.131332397 239.96635437 247.354812622 250.110198975 253.003387451 255.465423584 257.455291748 258.159423828 257.445617676 256.955047607 257.60256958 259.850860596 262.704956055 266.688446045 269.553588867 270.576751709 270.930084229 271.310974121 272.134124756 273.343383789 274.468353271 275.333496094 276.16204834 277.078582764 277.798095703 278.42678833 279.148284912 279.939361572 280.736450195 281.483642578 282.334533691 283.391387939 284.316467285 285.093200684 285.943572998 286.96987915 288.061645508 289.11428833 290.149475098 290.992431641 291.629425049 292.312805176 293.035797119 293.647888184 294.19317627 294.646026611 295.092773438 295.582366943 296.049194336 296.480895996 296.963989258 297.391693115 297.675292969 297.910797119 298.012786865 297.863586426 297.74597168 297.914916992 298.285766602 298.568756104 298.624938965 298.563964844 298.436981201 297.84576416 296.555145264 295.411682129 295.659423828 297.062469482 298.324157715 298.886901855 298.795043945 298.492462158 298.2472229 298.014678955 297.799591064 297.712341309 297.587219238 297.123748779 296.297821045 295.281494141 294.33795166 293.79498291 293.569824219 293.287231445 292.931854248 292.273376465 290.866119385 288.498321533 285.582550049 282.936187744 279.730987549 276.108520508 272.474487305 269.01272583 268.468292236 268.308868408 268.245910645 268.544464111 268.144073486 266.419952393 263.92880249 261.616821289 260.395050049 260.580108643 260.081420898 258.757019043 256.56048584 255.704193115 253.067550659 250.651535034 247.783233643 245.045791626 242.601242065 240.952362061 239.426025391 238.022781372 236.825683594 234.367721558 234.535369873 235.0519104 234.713775635 235.601119995 236.378158569 237.10609436 236.925308228 237.573776245 238.001037598 237.969818115 238.455795288 239.004577637 237.49230957 240.639877319 242.918685913 245.164611816 247.553604126 248.360229492 247.21383667 246.448257446 248.315048218 252.067687988 256.566162109 262.061767578 267.356231689 269.871917725 271.049194336 272.042175293 273.218658447 274.366333008 275.524169922 276.55065918 277.472839355 278.319122314 278.885345459 279.366424561 279.963775635 280.601318359 281.221405029 281.885803223 282.674926758 283.709106445 284.784515381 285.951202393 287.177185059 288.417755127 289.682067871 290.868347168 291.954467773 292.822296143 293.441741943 294.033660889 294.562713623 294.939544678 295.265350342 295.554748535 295.829193115 296.103607178 296.319030762 296.582946777 296.940612793 297.289123535 297.593994141 297.877044678 297.9637146 297.908569336 298.00958252 298.356872559 298.808044434 299.118713379 299.164886475 298.995574951 298.596405029 297.65737915 296.30380249 295.585723877 296.201690674 297.56829834 298.623840332 299.007598877 298.86026001 298.593597412 298.491119385 298.382843018 298.14151001 297.88482666 297.598815918 297.172851562 296.570587158 295.668640137 294.577972412 293.75213623 293.395263672 293.005493164 292.419189453 291.616882324 290.267303467 288.267700195 286.269104004 284.070892334 281.219512939 277.574859619 273.82611084 270.321044922 268.481384277 267.423187256 267.890014648 268.415863037 268.165039062 267.01071167 264.472564697 261.562835693 259.321502686 259.184051514 259.094268799 258.328521729 256.414123535 254.639938354 251.684112549 249.27142334 247.113052368 245.095611572 243.29473877 242.281814575 241.894363403 241.22114563 240.210723877 238.618530273 238.007202148 238.323699951 238.385040283 238.726928711 239.021713257 239.03503418 238.889755249 239.452072144 239.837814331 240.487579346 240.768341064 241.172348022 228.180526733 232.239639282 235.113967896 237.569793701 241.62600708 244.602874756 243.78338623 242.14730835 243.642669678 247.804275513 251.737014771 257.307128906 263.171203613 267.962188721 270.225006104 271.459350586 272.483642578 273.510742188 274.633178711 275.797821045 276.824645996 277.69241333 278.35949707 278.976989746 279.69052124 280.498901367 281.278656006 281.984222412 282.791625977 283.743133545 284.671447754 285.733978271 286.966766357 288.141296387 289.30267334 290.350463867 291.29876709 292.249938965 293.080871582 293.761810303 294.316223145 294.760162354 295.189666748 295.635375977 296.016204834 296.314025879 296.62197876 296.866729736 297.041778564 297.38369751 297.831542969 298.064910889 298.099731445 298.107818604 298.227600098 298.640563965 299.054077148 299.137634277 299.128112793 299.049682617 298.409088135 297.275665283 296.255828857 295.788848877 296.213775635 297.331665039 298.201843262 298.454956055 298.435791016 298.345733643 298.262359619 298.272094727 298.253570557 298.07711792 297.771179199 297.254058838 296.367431641 295.162200928 294.010925293 293.182220459 292.648773193 292.131866455 291.6355896 291.005462646 289.961700439 288.465423584 286.487762451 284.109161377 281.138519287 277.356262207 273.774475098 270.725402832 269.155059814 267.696655273 267.30645752 266.808319092 266.559753418 266.407806396 265.72076416 264.215484619 262.881317139 262.730529785 262.267944336 261.697692871 260.455963135 260.006988525 259.01361084 258.067749023 256.766845703 255.69619751 254.348602295 252.811630249 251.674804688 250.895614624 249.488616943 248.148132324 246.440185547 245.678863525 243.984313965 242.636978149 241.665893555 241.851165771 241.292282104 240.867645264 240.519973755 240.489105225 240.131057739 239.965499878 247.368591309 250.082000732 252.889038086 255.110321045 256.97442627 257.639465332 257.039428711 256.731048584 257.712646484 260.072753906 262.933807373 266.989074707 269.72088623 270.631408691 270.932495117 271.281707764 272.10647583 273.340057373 274.470703125 275.337677002 276.189727783 277.126403809 277.823791504 278.406738281 279.147674561 279.988433838 280.823974609 281.576477051 282.374542236 283.338531494 284.222839355 285.026489258 285.946960449 286.99887085 288.043395996 289.038391113 290.0050354 290.824066162 291.484130859 292.221801758 292.999023438 293.638946533 294.191497803 294.647186279 295.058441162 295.498748779 295.941253662 296.370422363 296.851196289 297.253845215 297.520568848 297.742370605 297.815368652 297.652374268 297.547180176 297.73916626 298.140777588 298.473266602 298.561798096 298.495727539 298.384674072 297.834686279 296.488647461 295.251373291 295.566680908 297.080566406 298.336456299 298.78225708 298.646820068 298.399688721 298.201538086 297.961914062 297.751800537 297.723144531 297.65637207 297.266143799 296.569763184 295.740570068 295.019622803 294.676208496 294.524017334 294.149932861 293.634155273 292.216888428 291.15435791 289.29473877 285.151977539 282.379272461 279.024261475 275.542694092 271.704528809 268.527191162 268.008605957 267.571838379 267.34777832 267.309020996 266.928283691 265.293640137 263.070739746 261.388916016 260.861541748 260.750732422 259.278503418 258.451812744 256.137664795 255.061599731 252.871276855 250.395858765 247.453994751 244.603942871 242.159957886 240.773925781 239.071655273 237.411361694 235.57421875 234.045089722 234.621078491 235.094665527 234.534927368 235.465805054 236.257339478 236.984786987 236.832229614 237.454055786 237.995346069 237.969924927 238.457290649 239.006988525 237.524490356 240.526702881 242.723052979 244.741500854 247.08253479 247.952362061 246.904312134 246.407318115 248.487884521 252.377746582 256.930297852 262.434814453 267.8074646 270.027801514 271.05770874 271.980651855 273.190551758 274.42010498 275.592834473 276.583862305 277.480499268 278.314605713 278.857116699 279.323608398 279.951477051 280.625488281 281.268829346 281.922424316 282.661407471 283.661682129 284.781097412 286.004272461 287.248840332 288.475006104 289.696350098 290.850219727 291.91619873 292.77255249 293.365020752 293.921081543 294.437469482 294.837219238 295.196716309 295.499816895 295.760650635 295.9894104 296.183197021 296.450042725 296.815673828 297.142089844 297.423858643 297.67590332 297.733306885 297.691314697 297.829223633 298.212219238 298.717285156 299.083740234 299.15020752 298.982208252 298.58416748 297.6456604 296.328216553 295.637939453 296.206573486 297.496063232 298.526092529 298.891845703 298.739929199 298.481964111 298.356536865 298.226776123 298.064758301 297.940063477 297.700866699 297.250793457 296.691589355 295.955657959 295.092041016 294.475463867 294.179718018 293.715911865 293.021118164 291.416381836 290.42755127 289.008728027 285.855041504 283.461486816 280.466247559 277.106903076 273.392547607 269.712402344 267.393676758 266.487365723 266.834106445 266.684448242 266.550750732 265.789428711 263.732513428 260.896484375 259.362945557 259.524658203 259.126495361 258.269744873 256.038696289 253.792480469 251.08757019 248.391311646 246.315063477 244.363952637 242.464447021 241.76663208 241.295654297 240.409240723 239.375030518 238.08795166 237.768997192 238.204284668 237.996231079 238.242385864 238.591186523 238.847702026 238.876068115 239.45791626 239.829925537 240.485397339 240.769332886 241.17338562 228.15057373 232.136138916 234.838363647 237.043716431 240.768936157 243.861801147 243.097671509 242.008071899 243.889221191 248.19152832 251.997467041 257.460327148 263.485137939 268.07208252 270.195892334 271.377410889 272.44152832 273.504302979 274.644989014 275.793762207 276.792938232 277.634246826 278.270263672 278.888336182 279.685852051 280.58505249 281.412628174 282.107330322 282.843200684 283.730163574 284.66003418 285.762573242 287.015136719 288.151184082 289.27835083 290.328399658 291.281524658 292.222625732 293.02835083 293.701385498 294.27130127 294.742645264 295.189208984 295.622406006 295.977752686 296.256744385 296.577880859 296.837036133 297.022277832 297.341003418 297.74307251 297.89755249 297.875244141 297.896820068 298.080230713 298.542144775 299.01071167 299.139678955 299.110229492 298.979797363 298.318115234 297.175292969 296.177215576 295.766540527 296.179443359 297.256835938 298.110687256 298.395507812 298.381317139 298.271636963 298.150360107 298.111694336 298.092468262 297.967315674 297.730163574 297.304870605 296.571716309 295.546051025 294.560302734 293.927368164 293.578094482 293.200500488 292.718963623 291.472991943 290.522827148 288.956298828 286.3097229 283.773162842 280.620666504 277.141998291 273.775268555 270.731964111 269.067871094 267.269073486 266.152709961 265.341705322 265.399414062 265.578308105 265.432312012 264.244567871 263.215454102 263.127288818 262.48739624 261.93057251 260.397674561 259.438476562 258.641143799 257.546386719 256.51348877 255.379440308 253.87399292 252.574310303 251.389328003 250.70274353 249.68409729 248.214202881 246.22026062 245.454910278 243.311431885 241.764007568 241.278610229 241.635192871 241.036254883 240.587722778 240.518234253 240.489837646 240.130142212 239.964767456 247.369064331 250.077987671 252.75920105 254.767578125 256.529968262 257.111083984 256.515533447 256.530212402 257.841064453 260.306396484 263.188293457 267.019592285 269.859710693 270.685241699 270.927185059 271.271881104 272.097198486 273.325073242 274.438110352 275.328552246 276.212615967 277.175720215 277.850311279 278.411102295 279.19140625 280.074005127 280.926483154 281.68447876 282.425994873 283.280792236 284.11920166 284.973388672 285.960632324 286.984924316 287.972595215 288.913391113 289.824462891 290.686523438 291.383026123 292.137298584 292.931915283 293.580566406 294.132781982 294.592529297 295.007324219 295.429229736 295.852050781 296.297058105 296.780853271 297.141784668 297.331604004 297.4972229 297.531341553 297.372009277 297.310913086 297.549102783 298.007385254 298.409667969 298.520080566 298.415008545 298.29284668 297.788360596 296.444671631 295.236999512 295.627716064 297.205749512 298.361328125 298.630981445 298.458251953 298.264892578 298.084350586 297.834136963 297.659393311 297.677856445 297.6612854 297.375244141 296.808135986 296.133758545 295.611999512 295.45980835 295.331176758 294.79309082 292.440765381 292.681671143 291.455566406 288.872253418 284.140228271 281.17098999 277.863800049 274.523712158 270.552856445 267.530975342 266.966430664 266.902008057 266.523223877 266.386688232 265.824401855 264.485351562 262.202209473 261.255096436 261.017303467 260.482635498 259.069213867 257.962219238 255.749435425 254.385452271 252.197372437 249.895812988 247.188766479 244.141021729 241.808334351 240.483078003 238.797225952 236.902511597 235.089920044 233.96144104 234.643844604 234.714935303 234.524581909 235.514358521 236.016403198 236.775497437 236.746017456 237.413238525 237.990325928 237.981002808 238.459365845 239.009674072 237.640151978 240.518966675 242.595291138 244.375564575 246.604812622 247.52796936 246.654937744 246.499633789 248.756729126 252.731903076 257.312805176 262.397521973 268.148254395 270.176879883 271.076934814 271.937194824 273.156158447 274.460510254 275.633575439 276.589935303 277.476470947 278.316619873 278.855010986 279.314300537 279.96472168 280.655670166 281.341430664 282.025390625 282.726715088 283.691467285 284.843078613 286.091339111 287.32925415 288.470428467 289.606781006 290.711914062 291.764953613 292.65737915 293.282592773 293.836151123 294.312011719 294.68661499 295.063964844 295.389892578 295.652160645 295.8699646 296.085083008 296.353820801 296.686035156 296.980255127 297.2421875 297.443878174 297.444885254 297.425598145 297.642822266 298.092498779 298.649017334 299.053466797 299.127655029 298.958648682 298.589477539 297.678894043 296.372802734 295.610809326 296.126037598 297.402862549 298.409759521 298.741912842 298.604736328 298.369232178 298.183532715 297.995605469 297.907623291 297.889099121 297.704650879 297.308319092 296.835296631 296.244659424 295.562072754 295.076019287 294.745300293 294.124237061 291.928222656 291.925964355 290.767059326 288.523651123 284.64239502 282.028411865 279.083648682 276.119567871 272.679443359 268.877685547 266.547698975 266.199035645 266.010620117 265.43347168 265.432739258 264.888793945 262.684417725 260.591094971 260.060058594 259.860778809 259.453399658 258.124359131 255.307678223 253.069656372 250.208969116 247.607162476 245.551559448 243.556472778 241.901611328 241.180725098 240.617050171 239.634170532 238.652923584 237.775192261 237.667678833 238.001113892 237.635116577 238.182037354 238.004455566 238.692306519 238.882965088 239.49810791 239.823379517 240.472412109 240.770492554 241.17477417 228.170303345 232.043762207 234.542129517 236.299850464 239.905105591 242.97984314 242.557754517 242.024093628 244.115020752 248.485168457 252.201919556 257.491516113 263.737579346 268.152435303 270.152648926 271.269561768 272.37399292 273.47744751 274.646087646 275.796966553 276.776000977 277.585113525 278.213043213 278.872314453 279.761077881 280.721405029 281.579986572 282.262695312 282.929595947 283.740966797 284.660827637 285.79397583 287.033813477 288.105804443 289.175689697 290.233154297 291.207244873 292.15612793 292.943359375 293.610107422 294.194030762 294.696594238 295.166046143 295.594696045 295.932678223 296.198364258 296.507354736 296.771331787 296.968597412 297.246276855 297.566772461 297.663818359 297.619812012 297.646850586 297.892150879 298.410675049 298.928436279 299.111419678 299.088928223 298.920654297 298.247253418 297.085968018 296.043914795 295.619384766 296.075897217 297.154693604 298.009674072 298.315490723 298.311523438 298.187896729 298.005401611 297.902252197 297.893859863 297.855957031 297.685028076 297.350189209 296.789825439 295.964569092 295.172119141 294.77041626 294.566040039 294.146209717 292.470611572 292.138244629 290.712860107 288.602752686 285.181945801 282.533203125 279.396057129 276.400817871 273.451904297 270.772247314 268.642425537 266.995605469 265.318115234 264.503204346 264.448242188 265.242126465 264.930603027 264.552215576 263.928161621 263.478759766 263.023712158 262.109680176 260.212768555 259.025756836 258.086517334 257.30178833 256.34463501 254.863769531 253.480163574 252.249679565 251.191497803 250.543457031 249.742935181 248.247894287 246.03074646 245.390960693 242.369903564 241.619262695 240.999160767 241.335769653 240.873779297 240.393661499 240.51675415 240.470352173 240.128616333 239.964096069 247.35194397 250.060943604 252.66204834 254.445739746 256.060882568 256.574798584 256.058135986 256.33996582 257.957458496 260.559387207 263.394195557 266.77734375 269.901947021 270.70401001 270.921325684 271.283721924 272.12991333 273.311462402 274.397613525 275.326812744 276.23626709 277.210083008 277.880737305 278.465698242 279.287750244 280.176940918 280.995605469 281.736907959 282.461120605 283.246063232 284.037597656 284.920928955 285.932373047 286.909790039 287.86151123 288.760498047 289.68460083 290.637207031 291.372894287 292.098632812 292.889373779 293.552734375 294.089050293 294.529968262 294.955688477 295.379821777 295.795471191 296.234863281 296.681945801 296.985961914 297.154449463 297.29296875 297.292480469 297.121582031 297.106231689 297.414367676 297.928283691 298.355224609 298.471160889 298.354248047 298.231719971 297.771240234 296.531555176 295.399017334 295.820373535 297.345916748 298.39364624 298.564331055 298.359436035 298.165985107 297.987182617 297.773071289 297.633544922 297.625335693 297.631408691 297.468017578 297.011322021 296.421600342 296.085449219 296.16998291 295.83694458 294.090789795 294.030334473 292.313598633 289.375793457 285.576965332 281.820068359 278.990325928 276.031951904 272.817626953 268.521118164 266.252532959 266.259307861 266.056671143 265.906005859 266.003356934 265.385498047 264.142822266 262.717956543 261.776306152 261.386047363 260.107177734 258.600921631 257.709747314 256.222808838 254.43951416 252.255508423 249.657196045 246.694381714 243.650939941 241.363861084 240.196212769 238.548416138 236.259963989 234.78717041 234.007095337 234.65032959 234.643676758 234.524963379 234.908035278 235.792526245 236.602462769 236.687286377 237.388397217 238.14616394 238.358322144 238.469589233 239.012664795 237.653121948 240.600448608 242.443405151 244.035140991 246.057022095 247.086975098 246.35736084 246.517562866 248.971435547 253.087478638 257.644165039 262.286499023 268.33706665 270.26776123 271.096923828 271.937133789 273.135192871 274.47354126 275.634094238 276.576660156 277.467529297 278.316772461 278.861694336 279.335205078 280.008178711 280.69543457 281.392608643 282.10760498 282.824951172 283.765777588 284.879821777 286.095306396 287.302886963 288.361938477 289.413452148 290.513580322 291.585327148 292.524658203 293.199401855 293.772003174 294.234466553 294.596679688 294.972473145 295.282989502 295.525848389 295.744812012 295.970977783 296.227203369 296.499145508 296.76159668 297.026367188 297.213592529 297.194244385 297.202880859 297.502624512 298.024902344 298.613677979 299.021575928 299.088592529 298.921356201 298.58114624 297.69329834 296.38482666 295.608398438 296.097198486 297.352050781 298.322509766 298.622894287 298.513519287 298.30178833 298.058685303 297.812774658 297.725006104 297.731231689 297.638183594 297.38772583 296.994567871 296.454406738 295.93661499 295.646759033 295.109985352 293.469116211 293.237640381 291.523773193 288.901763916 285.42565918 282.177215576 279.733398438 277.388885498 274.371765137 270.702545166 266.946838379 265.751159668 265.782806396 265.702941895 265.399780273 265.294067383 264.79397583 263.090759277 261.411193848 260.72668457 260.278320312 259.112518311 257.560699463 255.239715576 252.656951904 249.723144531 246.994842529 244.87802124 242.774642944 241.388931274 240.692550659 240.035797119 238.912780762 238.107574463 237.580718994 237.667633057 237.790283203 237.503387451 237.980407715 237.589111328 238.519332886 238.852706909 239.482269287 239.768951416 240.016265869 240.696670532 241.176483154 228.142288208 231.95640564 234.329360962 235.730453491 238.958480835 242.09437561 242.030548096 241.88343811 244.4190979 248.676391602 252.356369019 257.666229248 263.720672607 268.153686523 270.085510254 271.182098389 272.289825439 273.421203613 274.620452881 275.792175293 276.768768311 277.563995361 278.216888428 278.943603516 279.890686035 280.85369873 281.69644165 282.367736816 283.012298584 283.782745361 284.661865234 285.76663208 286.963195801 288.006744385 289.042663574 290.094329834 291.089904785 292.044158936 292.829437256 293.50668335 294.113525391 294.634857178 295.115844727 295.527191162 295.850006104 296.109771729 296.393890381 296.658721924 296.867492676 297.107910156 297.354003906 297.427581787 297.395263672 297.452941895 297.782348633 298.371002197 298.90737915 299.098571777 299.083831787 298.891265869 298.207702637 297.038238525 295.941070557 295.452575684 295.893768311 297.019348145 297.912841797 298.249694824 298.263122559 298.115875244 297.875091553 297.734283447 297.761352539 297.802825928 297.655456543 297.360473633 296.921264648 296.304748535 295.778747559 295.662475586 295.385772705 294.006408691 293.494476318 291.762939453 289.20425415 286.254180908 283.224304199 280.59967041 277.965423584 275.278594971 272.520050049 269.681854248 268.227142334 266.481231689 264.975402832 264.378326416 264.59072876 265.479675293 266.183776855 265.936706543 264.734100342 263.722015381 263.07699585 262.162658691 260.973754883 259.055908203 258.212097168 257.249420166 256.050262451 254.341140747 253.205825806 252.008361816 251.04359436 250.47253418 249.758163452 248.159194946 245.851226807 244.915161133 242.101776123 241.465026855 240.957702637 241.000961304 240.594696045 240.373565674 240.252975464 239.705032349 239.96005249 239.963485718 247.362487793 250.050552368 252.575286865 254.103729248 255.578063965 256.108093262 255.651138306 256.166900635 258.040344238 260.785888672 263.527709961 266.447296143 269.841583252 270.692810059 270.913330078 271.303649902 272.170898438 273.302398682 274.375518799 275.337371826 276.262451172 277.238677979 277.917327881 278.549316406 279.397003174 280.265625 281.025512695 281.741027832 282.463592529 283.212432861 283.965667725 284.850921631 285.871459961 286.832061768 287.764526367 288.651153564 289.606781006 290.633209229 291.38873291 292.081207275 292.847869873 293.535552979 294.071716309 294.480072021 294.886993408 295.29574585 295.713500977 296.136352539 296.52935791 296.777984619 296.95614624 297.096466064 297.078521729 296.903656006 296.923980713 297.293762207 297.841156006 298.257263184 298.372741699 298.300201416 298.214538574 297.808410645 296.691131592 295.6456604 296.010131836 297.394042969 298.342193604 298.47088623 298.261474609 298.071105957 297.90802002 297.773651123 297.677825928 297.625457764 297.611694336 297.526428223 297.198394775 296.779174805 296.666351318 296.801422119 295.760742188 294.546875 292.728057861 289.570098877 284.868865967 281.92199707 278.993408203 276.530029297 273.909851074 270.188903809 266.359893799 265.102905273 264.791564941 264.925842285 265.192169189 265.787811279 265.04208374 264.324584961 263.675384521 262.674682617 261.008117676 259.56817627 258.511199951 256.930999756 255.529876709 253.799743652 251.742294312 249.161712646 246.166900635 243.091674805 241.008468628 239.783432007 238.058364868 235.748352051 234.494598389 233.800537109 234.486465454 234.561431885 234.473983765 234.007141113 235.783218384 236.488967896 236.619995117 237.381286621 238.292739868 238.368835449 238.451705933 239.01600647 237.485351562 240.619567871 242.311447144 243.718780518 245.557128906 246.647354126 246.079986572 246.550292969 249.248718262 253.359375 257.941558838 262.539886475 268.400878906 270.299102783 271.102752686 271.953125 273.126556396 274.464660645 275.618804932 276.563842773 277.458282471 278.305023193 278.852233887 279.357421875 280.053924561 280.724822998 281.399230957 282.127349854 282.886230469 283.802154541 284.840454102 286.016021729 287.197570801 288.23336792 289.260650635 290.350372314 291.407714844 292.350494385 293.057128906 293.659637451 294.149414062 294.534881592 294.897949219 295.164001465 295.380157471 295.591918945 295.809814453 296.046447754 296.282043457 296.518249512 296.790802002 296.986907959 296.979156494 297.02053833 297.37612915 297.945831299 298.544128418 298.953552246 299.034881592 298.891143799 298.560424805 297.669647217 296.363250732 295.589355469 296.051483154 297.299468994 298.224639893 298.508209229 298.417999268 298.219238281 297.949249268 297.686828613 297.571685791 297.603546143 297.597595215 297.463745117 297.127227783 296.687042236 296.412963867 296.228424072 295.208770752 293.839782715 292.077178955 289.081268311 284.746704102 281.988555908 279.551422119 277.486297607 275.524963379 272.788269043 267.772857666 265.897613525 264.782592773 264.944976807 265.077850342 265.688110352 265.608215332 265.336639404 263.257354736 261.816070557 261.127349854 260.298278809 258.739654541 256.751190186 254.41204834 251.742965698 249.052658081 246.433853149 244.303970337 242.016845703 240.992401123 240.290527344 239.44821167 238.166244507 237.618133545 237.553268433 237.544311523 237.370925903 237.424224854 236.920227051 237.506240845 238.352142334 238.782836914 239.401596069 239.724075317 239.998825073 240.547317505 241.178497314 228.109573364 231.901596069 234.049285889 235.177703857 237.999404907 241.222412109 241.501113892 241.806182861 244.674453735 248.815612793 252.48500061 258.026275635 263.604736328 268.052032471 269.993164062 271.110412598 272.209014893 273.342041016 274.568481445 275.767059326 276.754669189 277.560180664 278.254852295 279.042938232 280.012390137 280.945831299 281.751220703 282.401031494 283.05166626 283.819549561 284.649902344 285.688842773 286.873382568 287.941345215 288.974060059 290.003173828 290.983795166 291.918640137 292.700164795 293.399963379 294.025543213 294.562652588 295.051544189 295.434967041 295.734832764 295.981811523 296.250213623 296.52633667 296.757904053 296.978942871 297.167999268 297.220184326 297.199401855 297.296813965 297.70501709 298.335662842 298.872619629 299.086883545 299.112548828 298.901641846 298.183074951 297.015808105 295.882293701 295.32333374 295.702178955 296.859405518 297.791503906 298.180541992 298.204681396 298.014892578 297.725921631 297.566162109 297.624237061 297.755493164 297.687316895 297.422180176 297.064178467 296.645568848 296.386383057 296.371551514 295.740386963 294.308410645 292.47845459 289.691894531 285.764465332 283.547973633 281.186431885 278.887939453 276.750061035 274.048950195 270.354919434 268.941864014 267.638244629 265.986755371 264.657958984 264.763427734 265.182952881 267.005187988 267.506134033 266.967041016 265.270477295 263.897003174 263.157531738 262.081176758 260.865905762 258.997467041 258.028289795 257.214233398 255.781295776 254.038345337 253.108978271 251.882019043 250.948440552 250.537628174 249.802246094 248.240783691 245.519729614 244.1068573 241.747528076 239.856231689 240.788879395 240.676498413 240.317642212 240.22177124 239.932495117 239.674316406 239.571258545 239.962875366 247.370529175 250.023513794 252.455780029 253.858444214 255.149765015 255.695510864 255.336120605 256.002807617 258.102325439 260.887512207 263.637268066 266.137939453 269.668029785 270.644104004 270.89831543 271.331115723 272.210083008 273.299346924 274.368438721 275.358612061 276.291015625 277.255126953 277.957458496 278.640197754 279.496429443 280.327789307 281.027954102 281.71862793 282.437194824 283.16027832 283.880706787 284.758728027 285.781890869 286.755828857 287.69644165 288.592010498 289.5753479 290.637237549 291.401428223 292.056182861 292.787261963 293.476409912 294.017211914 294.422576904 294.804290771 295.189117432 295.611602783 296.017700195 296.34487915 296.554595947 296.726776123 296.850860596 296.816497803 296.674987793 296.755584717 297.194885254 297.771148682 298.162658691 298.274536133 298.262908936 298.223052979 297.867248535 296.881469727 295.95690918 296.241973877 297.460632324 298.277679443 298.355316162 298.159545898 297.99597168 297.850006104 297.763549805 297.689666748 297.63885498 297.632873535 297.634857178 297.484924316 297.288726807 297.261169434 297.052246094 295.822540283 293.312866211 288.524627686 283.814971924 281.06362915 278.963165283 276.955383301 275.129760742 272.125305176 268.023071289 265.229675293 264.297332764 264.193206787 264.291473389 264.962890625 265.10144043 264.820220947 264.447387695 263.941772461 262.115722656 260.056549072 258.72644043 257.958251953 256.166564941 254.837875366 252.96736145 251.001708984 248.407012939 245.438339233 242.482421875 240.362594604 239.341491699 237.661071777 235.60105896 234.398803711 233.958679199 234.465484619 234.50932312 234.276153564 233.976913452 235.732192993 236.378372192 236.577453613 237.399551392 238.287216187 238.369491577 238.435668945 239.019180298 237.497131348 240.518218994 242.19833374 243.431518555 245.150390625 246.249282837 245.769226074 246.564117432 249.482254028 253.567687988 258.193664551 263.051055908 268.331268311 270.260345459 271.096069336 271.972320557 273.126037598 274.440307617 275.598907471 276.556427002 277.446990967 278.275024414 278.821533203 279.365539551 280.084716797 280.73236084 281.364501953 282.094451904 282.879608154 283.769226074 284.734313965 285.867126465 287.041870117 288.122039795 289.172454834 290.210021973 291.192840576 292.110931396 292.858215332 293.499572754 294.012481689 294.418273926 294.755889893 294.992431641 295.217498779 295.43359375 295.624694824 295.841522217 296.067840576 296.294128418 296.549438477 296.730255127 296.729980469 296.82208252 297.259490967 297.878753662 298.475708008 298.878753662 298.978118896 298.864105225 298.52331543 297.610900879 296.297119141 295.547485352 296.030792236 297.200256348 298.106018066 298.386138916 298.305877686 298.107940674 297.823364258 297.547088623 297.388549805 297.472747803 297.596252441 297.618438721 297.413970947 297.134124756 296.989776611 296.553100586 295.167816162 292.771179199 288.803314209 284.441986084 281.853088379 279.802459717 277.826873779 276.263214111 274.220794678 271.582855225 266.759277344 264.769714355 264.01361084 264.312316895 264.995635986 265.354156494 266.155090332 265.272674561 263.366760254 261.816650391 261.068237305 259.918762207 258.15536499 255.652603149 253.347335815 250.598907471 248.119003296 245.585983276 243.315124512 241.244277954 240.296188354 239.870681763 239.007507324 237.820404053 237.463424683 237.549362183 237.309799194 237.209594727 237.145477295 236.469894409 237.109115601 238.193862915 238.737762451 239.186477661 239.720230103 240.0 240.471755981 241.18081665 228.125854492 231.764144897 233.87197876 234.693481445 237.117874146 240.36907959 241.026473999 241.840621948 244.84564209 248.896835327 252.529815674 258.454925537 263.398101807 267.828674316 269.859954834 271.046142578 272.135986328 273.250457764 274.492614746 275.719360352 276.726348877 277.556427002 278.299377441 279.130981445 280.103881836 280.996520996 281.760620117 282.384277344 283.038391113 283.817016602 284.621154785 285.604370117 286.801513672 287.913848877 288.957977295 289.951019287 290.887817383 291.784057617 292.571807861 293.30657959 293.930999756 294.457977295 294.944274902 295.312896729 295.593933105 295.831726074 296.08706665 296.363525391 296.611816406 296.820007324 296.970031738 297.001190186 296.993682861 297.145812988 297.635009766 298.283355713 298.816558838 299.080780029 299.155181885 298.91708374 298.152435303 296.978363037 295.797302246 295.157318115 295.498413086 296.64151001 297.649475098 298.117858887 298.153259277 297.925598145 297.584533691 297.360748291 297.387176514 297.618164062 297.762084961 297.617889404 297.367736816 297.142852783 297.017547607 296.767028809 295.737457275 293.571624756 289.688262939 285.560028076 283.172332764 281.664031982 280.013671875 278.386779785 275.977233887 273.188568115 269.243560791 268.269714355 267.168670654 265.949890137 265.127410889 265.157287598 267.292755127 268.344573975 268.740814209 267.747955322 265.734588623 263.90725708 263.038787842 261.854949951 260.684967041 258.860626221 257.898468018 256.828826904 255.439376831 253.794418335 252.895843506 251.78364563 250.89630127 250.599411011 249.863967896 248.009735107 245.129226685 243.600814819 241.25 239.723648071 240.615264893 240.384613037 240.215835571 239.873840332 239.928787231 239.673278809 239.340698242 239.962753296 247.376693726 250.022262573 252.380203247 253.654220581 254.763824463 255.237075806 255.063522339 255.783401489 258.136260986 260.978912354 263.691802979 265.996002197 269.337188721 270.550567627 270.890533447 271.379821777 272.252746582 273.306732178 274.375732422 275.393890381 276.317840576 277.257263184 278.001068115 278.72845459 279.566711426 280.348968506 281.009124756 281.69229126 282.392578125 283.079711914 283.771759033 284.649139404 285.674499512 286.652557373 287.603149414 288.52911377 289.534515381 290.591400146 291.363922119 292.017578125 292.714385986 293.345397949 293.875457764 294.342010498 294.731781006 295.069732666 295.454345703 295.830993652 296.110321045 296.320648193 296.475006104 296.547027588 296.497772217 296.44241333 296.627319336 297.125793457 297.712615967 298.073974609 298.187927246 298.231933594 298.219696045 297.888427734 297.013824463 296.157928467 296.450775146 297.605316162 298.276306152 298.266143799 298.10446167 298.009643555 297.853271484 297.693603516 297.587890625 297.629882812 297.738647461 297.879211426 297.83013916 297.570922852 297.098297119 295.996673584 293.566925049 288.141723633 283.225128174 280.507080078 278.860900879 277.777893066 276.253997803 274.705505371 272.369873047 268.844909668 265.676544189 264.824584961 264.927154541 265.39163208 266.077392578 266.272003174 265.563354492 264.915802002 263.988342285 261.273284912 259.079925537 257.986663818 257.271636963 255.615707397 254.142532349 252.532516479 250.361495972 247.539108276 244.718780518 241.869216919 239.868225098 238.78062439 237.070327759 235.286468506 234.247085571 233.599319458 234.26663208 234.406387329 234.104202271 233.869995117 235.918930054 236.333206177 236.559661865 237.400695801 238.281341553 238.370300293 238.425247192 239.022415161 237.476364136 240.524307251 242.124420166 243.188751221 244.759460449 245.821655273 245.54927063 246.566329956 249.700424194 253.741897583 258.326293945 263.737121582 268.082702637 270.111999512 271.054473877 271.99331665 273.130401611 274.406433105 275.579803467 276.558349609 277.428009033 278.216583252 278.766235352 279.343688965 280.076507568 280.693054199 281.290100098 282.017364502 282.809143066 283.658905029 284.562042236 285.639984131 286.846954346 287.999847412 289.070861816 290.01550293 290.889373779 291.805877686 292.62677002 293.305786133 293.790496826 294.178771973 294.500823975 294.757873535 295.036102295 295.253234863 295.381652832 295.575561523 295.839813232 296.085632324 296.29284668 296.412506104 296.407409668 296.591827393 297.163360596 297.841888428 298.43069458 298.812347412 298.918731689 298.833282471 298.490753174 297.552856445 296.205963135 295.431213379 295.849395752 297.056610107 297.984405518 298.275970459 298.217346191 298.034088135 297.721160889 297.358154297 297.102874756 297.231109619 297.61730957 297.908569336 297.900085449 297.611450195 297.077484131 295.839599609 293.51260376 288.956573486 284.541748047 281.869293213 280.123626709 278.685089111 277.286987305 276.004730225 274.144989014 271.744171143 266.820617676 265.183929443 265.180084229 265.796020508 266.349731445 267.135772705 266.558502197 264.865722656 263.089080811 261.606292725 260.494628906 259.350463867 257.300689697 254.609817505 252.265167236 249.709289551 247.200531006 244.707809448 242.437332153 240.568908691 239.687484741 239.363983154 238.367935181 237.470443726 237.327041626 237.353164673 237.100891113 236.915496826 236.645874023 236.040710449 237.03855896 237.953491211 238.478042603 239.1197052 239.716415405 240.001647949 240.429458618 241.183456421 228.043792725 231.776123047 233.679580688 234.242111206 236.277893066 239.559539795 240.550674438 241.785644531 244.899185181 248.90524292 252.462844849 258.830230713 263.018157959 267.408416748 269.649017334 270.977294922 272.06918335 273.152954102 274.393981934 275.639862061 276.67074585 277.543701172 278.333709717 279.186889648 280.147888184 281.007720947 281.736694336 282.330749512 282.964599609 283.74822998 284.56262207 285.535186768 286.742095947 287.878356934 288.915710449 289.870056152 290.773651123 291.647003174 292.466247559 293.239074707 293.827636719 294.301696777 294.768829346 295.135650635 295.407836914 295.652160645 295.888885498 296.139923096 296.379669189 296.589111328 296.714599609 296.730773926 296.764099121 297.023010254 297.611755371 298.279083252 298.813293457 299.119934082 299.197418213 298.916656494 298.136474609 296.964263916 295.691925049 294.907897949 295.191711426 296.382446289 297.495330811 298.063537598 298.146484375 297.943054199 297.565002441 297.173309326 297.040740967 297.341766357 297.823547363 297.940643311 297.852752686 297.730102539 297.371826172 296.392669678 294.53817749 290.560241699 286.264099121 283.569549561 282.007629395 281.421112061 280.237640381 278.653167725 276.436676025 273.529815674 270.676696777 268.702697754 267.728942871 266.940551758 266.7237854 267.848144531 268.824859619 269.720733643 269.623443604 267.923400879 265.896606445 264.314483643 263.070709229 261.656616211 260.446136475 258.985809326 257.76776123 256.512329102 255.11416626 253.70741272 252.777206421 251.701507568 250.804046631 250.613037109 249.793670654 247.986328125 244.831726074 242.833236694 240.398071289 239.435760498 240.533355713 240.126449585 239.947616577 239.78817749 239.927993774 239.671539307 239.200942993 239.962966919 247.39503479 250.025558472 252.321166992 253.519363403 254.431793213 254.915084839 254.776596069 255.687042236 258.149505615 261.024536133 263.622039795 266.287567139 268.934631348 270.38760376 270.883789062 271.433776855 272.288635254 273.306396484 274.388702393 275.423034668 276.321990967 277.249267578 278.042877197 278.795074463 279.584075928 280.321044922 280.98449707 281.67288208 282.342163086 282.988830566 283.684570312 284.57522583 285.572052002 286.51852417 287.460144043 288.415283203 289.42578125 290.452056885 291.237731934 291.945831299 292.668273926 293.267181396 293.800109863 294.298675537 294.670196533 294.930328369 295.25793457 295.615966797 295.889099121 296.112060547 296.274169922 296.299072266 296.242675781 296.264892578 296.540985107 297.04699707 297.594024658 297.92401123 298.071136475 298.17401123 298.192382812 297.897277832 297.067169189 296.203857422 296.416229248 297.559234619 298.210510254 298.159912109 298.018371582 297.964355469 297.78692627 297.557556152 297.438110352 297.58013916 297.900634766 298.111602783 297.644348145 296.312713623 294.397918701 292.286895752 287.047515869 283.053070068 280.547973633 279.063446045 278.483886719 277.754180908 276.955108643 275.728088379 273.427642822 271.108978271 269.170013428 268.009246826 266.886230469 266.690917969 267.352508545 267.251251221 266.185546875 264.926757812 263.08795166 260.360198975 258.242401123 256.960174561 256.762542725 254.9871521 253.722503662 251.801239014 249.839874268 246.923294067 244.061325073 241.447738647 239.484008789 238.23765564 236.731613159 235.316131592 234.025100708 233.265594482 233.75617981 234.285247803 233.908050537 233.668319702 236.140029907 236.332901001 236.493270874 237.385955811 238.277267456 238.371292114 238.413497925 239.025466919 237.549957275 240.550872803 242.09387207 242.958328247 244.428543091 245.443191528 245.322921753 246.576049805 249.847930908 253.828735352 258.417572021 264.124969482 267.718994141 269.856262207 270.964904785 272.00189209 273.135223389 274.374511719 275.567077637 276.556335449 277.391540527 278.144866943 278.708465576 279.309570312 280.025177002 280.611358643 281.205535889 281.935882568 282.708892822 283.523498535 284.372772217 285.395507812 286.595458984 287.763000488 288.844116211 289.76675415 290.60446167 291.539367676 292.412261963 293.109863281 293.56628418 293.968475342 294.348266602 294.620758057 294.866729736 295.032836914 295.109893799 295.300140381 295.617431641 295.893371582 296.07635498 296.163208008 296.184906006 296.464508057 297.103485107 297.771850586 298.345489502 298.747711182 298.88092041 298.824493408 298.516845703 297.584777832 296.183288574 295.329589844 295.730255127 296.913543701 297.84552002 298.150360107 298.125701904 297.97567749 297.634552002 297.179077148 296.864501953 297.00680542 297.612609863 298.084625244 297.93951416 296.912567139 295.137695312 292.935241699 288.661529541 284.919647217 282.274475098 280.6144104 279.674957275 278.693054199 277.694580078 276.799102783 275.289703369 273.201538086 271.134918213 269.549346924 269.021972656 268.057983398 268.578521729 268.071807861 266.36529541 264.24810791 262.56338501 261.169647217 259.600280762 257.898040771 256.080993652 253.861907959 251.467483521 248.714889526 246.444458008 244.026000977 241.718032837 239.966949463 239.154846191 238.75163269 237.972259521 237.306991577 237.108200073 236.860214233 236.764434814 236.638656616 236.250167847 235.805541992 237.02947998 237.82333374 238.143661499 239.099227905 239.714019775 240.003753662 240.404846191 241.181503296 228.031906128 231.769012451 233.484802246 233.850967407 235.49180603 238.807006836 240.147781372 241.776397705 244.939056396 248.78578186 252.580749512 258.766204834 262.675048828 266.878173828 269.385742188 270.887634277 272.013183594 273.078887939 274.312744141 275.553314209 276.596679688 277.513977051 278.336303711 279.190063477 280.139709473 280.985900879 281.692016602 282.261474609 282.864624023 283.639587402 284.486297607 285.478271484 286.652130127 287.761688232 288.798187256 289.763946533 290.671478271 291.528503418 292.355316162 293.149902344 293.725494385 294.168548584 294.613739014 294.96206665 295.213043213 295.447387695 295.686309814 295.944610596 296.203765869 296.415557861 296.511779785 296.530822754 296.619384766 296.971954346 297.60168457 298.272979736 298.816436768 299.148773193 299.215179443 298.929077148 298.198303223 297.051116943 295.692382812 294.76763916 295.000305176 296.216186523 297.363494873 297.973419189 298.115325928 297.987243652 297.627227783 297.135131836 296.870269775 297.151702881 297.812347412 298.139862061 298.119445801 297.720855713 296.585968018 294.613250732 290.911132812 287.220855713 284.840881348 283.193878174 282.352752686 282.098297119 281.819641113 280.441802979 277.984161377 275.536499023 273.086730957 271.616912842 270.175872803 269.02557373 268.572937012 269.432189941 270.214752197 270.498291016 269.922515869 268.071350098 265.633972168 263.493286133 262.776184082 261.605895996 260.389068604 258.969848633 257.753662109 256.416687012 254.973999023 253.795028687 252.742431641 251.504821777 250.661239624 250.483123779 249.724960327 247.110122681 244.507217407 242.11958313 239.970428467 238.763885498 240.40574646 239.935638428 239.617553711 239.783935547 239.927368164 239.669052124 239.109375 239.949264526 247.399246216 250.018829346 252.261810303 253.408432007 254.171401978 254.664733887 254.636749268 255.603027344 258.146362305 260.981018066 263.968414307 266.724121094 268.497497559 270.164154053 270.873474121 271.473693848 272.31262207 273.298400879 274.391387939 275.434417725 276.31362915 277.239135742 278.0831604 278.841766357 279.57635498 280.276733398 280.958007812 281.647766113 282.282867432 282.903869629 283.618103027 284.522735596 285.481262207 286.397277832 287.342132568 288.32244873 289.317657471 290.300811768 291.088134766 291.860443115 292.632965088 293.254425049 293.799224854 294.27041626 294.579376221 294.790374756 295.109222412 295.461425781 295.710510254 295.918304443 296.066772461 296.043823242 295.98135376 296.073516846 296.449707031 296.981292725 297.489593506 297.795318604 297.988647461 298.141357422 298.186279297 297.965301514 297.190551758 296.222320557 296.306060791 297.441314697 298.131103516 298.08102417 297.926452637 297.837524414 297.615112305 297.384399414 297.298980713 297.520080566 298.056976318 298.185516357 296.878570557 293.284393311 288.3543396 285.582183838 282.672332764 280.840484619 279.654968262 279.428009033 279.434387207 278.828399658 278.113647461 277.072540283 275.159881592 273.251800537 272.157836914 271.165039062 269.688598633 268.188476562 267.916107178 267.988891602 266.394958496 264.389648438 262.343811035 259.547912598 257.739929199 256.758026123 256.154907227 254.635314941 253.091690063 251.283432007 248.84967041 246.298583984 243.597595215 241.200195312 239.439590454 238.058654785 236.675537109 235.466964722 233.554046631 232.717330933 233.192779541 234.089859009 233.806793213 233.59854126 236.164810181 236.31362915 236.468994141 237.419692993 238.576293945 238.475692749 238.414627075 239.027557373 237.669876099 240.467514038 242.037185669 242.815063477 244.157485962 245.137207031 245.093154907 246.628753662 249.937103271 253.824478149 258.926696777 264.116821289 267.309020996 269.520324707 270.825073242 271.988647461 273.138427734 274.34753418 275.552734375 276.541137695 277.338134766 278.073608398 278.661071777 279.280029297 279.955688477 280.512298584 281.110992432 281.852966309 282.592590332 283.368865967 284.164611816 285.128173828 286.269897461 287.411987305 288.542144775 289.53326416 290.390014648 291.310424805 292.187194824 292.891204834 293.361175537 293.820404053 294.260650635 294.51272583 294.683776855 294.808319092 294.888885498 295.101409912 295.442230225 295.713989258 295.86932373 295.935913086 296.001556396 296.368865967 297.039337158 297.688812256 298.26461792 298.705566406 298.872161865 298.830505371 298.547637939 297.635192871 296.197113037 295.267822266 295.578735352 296.781951904 297.712554932 298.02835083 298.021972656 297.872497559 297.488983154 296.995574951 296.738555908 296.954589844 297.679412842 298.106811523 297.387786865 294.837036133 290.409881592 287.412078857 284.716033936 282.939727783 281.500762939 280.908813477 280.387756348 279.344818115 278.551025391 278.010009766 276.74029541 275.016662598 273.781860352 272.831390381 271.843505859 271.011627197 270.089141846 268.741943359 266.076721191 263.497497559 261.986358643 260.473022461 258.828887939 257.005218506 255.215179443 253.220169067 250.603012085 247.953231812 245.642669678 243.445480347 241.162063599 239.427383423 238.726470947 238.272125244 237.691116333 237.217025757 236.7059021 236.173995972 236.004074097 236.30140686 236.008071899 235.742233276 237.029602051 237.519989014 238.07598877 238.80418396 239.496734619 239.995666504 240.406600952 241.147613525 228.026565552 231.669998169 233.390869141 233.450637817 234.771835327 238.150543213 239.801422119 241.781433105 244.891921997 248.595916748 253.036132812 258.501159668 262.393676758 266.279174805 269.085662842 270.77355957 271.96105957 273.025543213 274.25479126 275.470672607 276.514862061 277.474090576 278.3175354 279.165466309 280.113067627 280.945251465 281.625549316 282.188110352 282.780426025 283.544616699 284.410430908 285.40435791 286.537322998 287.623138428 288.693389893 289.697753906 290.593383789 291.398986816 292.20123291 293.005096436 293.60925293 294.057525635 294.474090576 294.778839111 295.00604248 295.238067627 295.497589111 295.794189453 296.081268311 296.25769043 296.30960083 296.344238281 296.496246338 296.917022705 297.558868408 298.22454834 298.780853271 299.132019043 299.204681396 298.940216064 298.247711182 297.103881836 295.69140625 294.728942871 294.903869629 296.118774414 297.284484863 297.899414062 298.079986572 298.001922607 297.6456604 297.127502441 296.839660645 297.1121521 297.830657959 298.238555908 297.998840332 297.1121521 294.491027832 291.274200439 287.986541748 285.861419678 284.927856445 284.428955078 284.109375 283.700256348 283.091705322 282.016296387 279.970245361 277.723358154 275.84274292 274.021575928 272.452575684 271.071258545 270.401397705 270.921112061 271.330047607 270.795898438 269.823059082 268.115661621 266.166015625 263.425842285 262.389556885 261.536834717 260.411773682 258.91619873 257.620758057 256.488708496 255.015777588 253.964492798 252.820419312 251.393432617 250.487518311 250.330566406 249.210617065 246.316635132 243.691268921 241.594146729 239.995651245 238.605209351 240.416854858 239.710281372 239.559494019 239.593933105 239.563735962 239.56640625 239.09223938 239.849243164 247.393783569 250.000518799 252.219482422 253.343765259 253.944976807 254.487823486 254.530700684 255.524993896 258.094665527 260.865478516 263.307952881 266.163787842 268.062957764 269.9112854 270.858032227 271.510345459 272.327941895 273.282196045 274.378204346 275.419464111 276.289428711 277.230316162 278.113006592 278.868988037 279.559020996 280.232513428 280.925994873 281.607055664 282.214416504 282.834197998 283.566162109 284.469329834 285.404815674 286.313262939 287.283599854 288.275665283 289.246490479 290.201324463 290.995300293 291.812103271 292.611541748 293.256561279 293.792663574 294.205505371 294.458465576 294.664001465 294.987731934 295.328948975 295.546783447 295.727661133 295.846618652 295.792938232 295.736419678 295.905853271 296.374908447 296.942260742 297.409179688 297.694366455 297.940490723 298.128814697 298.178833008 298.039672852 297.352020264 296.315917969 296.261352539 297.352142334 298.058441162 298.030151367 297.883483887 297.751464844 297.486083984 297.257171631 297.199401855 297.471282959 298.144897461 297.98739624 295.640686035 289.419189453 284.740539551 281.882171631 280.35269165 280.014678955 280.250396729 280.877410889 280.988067627 280.25088501 279.3621521 278.164093018 276.993011475 275.484558105 274.551239014 273.538208008 271.882904053 269.46685791 268.252807617 267.099334717 265.879150391 264.118530273 261.423675537 259.164123535 257.293243408 256.802642822 255.646072388 254.092041016 252.456436157 250.397857666 247.861755371 245.465774536 243.12878418 240.971389771 239.471740723 238.002807617 236.873565674 235.624603271 233.092178345 232.683273315 232.749526978 233.725982666 233.460250854 233.518280029 235.931930542 236.354415894 236.350967407 237.434570312 238.645492554 238.806777954 238.420257568 239.04246521 237.57963562 240.519638062 242.048629761 242.696334839 243.953796387 244.883712769 244.958862305 246.658111572 249.985931396 253.701858521 258.019622803 263.23840332 266.409881592 269.041656494 270.632293701 271.946105957 273.131530762 274.319549561 275.532043457 276.507873535 277.271087646 278.00769043 278.624511719 279.255432129 279.882446289 280.406311035 281.009216309 281.756439209 282.460998535 283.184234619 283.930053711 284.83392334 285.886291504 286.988494873 288.192657471 289.310577393 290.224731445 291.120574951 291.976959229 292.685791016 293.183258057 293.674835205 294.134674072 294.361541748 294.490203857 294.609313965 294.716217041 294.952056885 295.295043945 295.541534424 295.658782959 295.708221436 295.829711914 296.28012085 296.977996826 297.633270264 298.215545654 298.67477417 298.863830566 298.828704834 298.555786133 297.665405273 296.221588135 295.261749268 295.54486084 296.684234619 297.629364014 297.954925537 297.960876465 297.78793335 297.355010986 296.851898193 296.69934082 297.057189941 297.828399658 297.979125977 296.445129395 291.693328857 287.276489258 284.269561768 282.664825439 282.146087646 281.945922852 282.143341064 281.686248779 280.555664062 279.75592041 279.010772705 278.395812988 276.867401123 275.97088623 275.024353027 273.56817627 272.093994141 270.549285889 268.56427002 265.503814697 262.816040039 261.291778564 259.697998047 258.064178467 256.354125977 254.287612915 252.344390869 249.744598389 247.241928101 244.819290161 242.815429688 240.627105713 239.046508789 238.372695923 237.757415771 237.51953125 237.127746582 236.151687622 235.963546753 235.539993286 235.95350647 235.581481934 235.277709961 237.079605103 237.279495239 237.762283325 238.529159546 239.461471558 239.965072632 240.412719727 241.110687256 228.002090454 231.629714966 233.336257935 233.042434692 234.201843262 237.570175171 239.42666626 241.708633423 244.783874512 248.285858154 251.880065918 257.244659424 261.956390381 265.638427734 268.753601074 270.631866455 271.90133667 272.986236572 274.21585083 275.392578125 276.428161621 277.426147461 278.283966064 279.125610352 280.073699951 280.884094238 281.531219482 282.108215332 282.71963501 283.477966309 284.337402344 285.315765381 286.417114258 287.497039795 288.614593506 289.643432617 290.498596191 291.247436523 292.024108887 292.83380127 293.476196289 293.942749023 294.323699951 294.567993164 294.785827637 295.040008545 295.327209473 295.65133667 295.942626953 296.059082031 296.069152832 296.142700195 296.382293701 296.870880127 297.538635254 298.212890625 298.764038086 299.105285645 299.18548584 298.953735352 298.279632568 297.120178223 295.684783936 294.700286865 294.865966797 296.072113037 297.24798584 297.862426758 298.085754395 298.052368164 297.690155029 297.162872314 296.884887695 297.148742676 297.881866455 298.229492188 297.531616211 295.206634521 291.759124756 288.873962402 286.430603027 285.968475342 286.157440186 286.40914917 286.339447021 285.645019531 284.468475342 283.203887939 282.083526611 279.878509521 278.133850098 276.537567139 274.692230225 273.05758667 271.949737549 271.953063965 271.933105469 270.95022583 269.639282227 268.277740479 266.197753906 263.612335205 262.261138916 261.442718506 260.133453369 258.773864746 257.561431885 256.421112061 255.063232422 254.110809326 252.938247681 251.517105103 250.463058472 250.055801392 248.486831665 246.37953186 243.466720581 241.633178711 240.125015259 238.217529297 240.451095581 239.608474731 239.390701294 239.413665771 239.487213135 239.179275513 239.088348389 239.77255249 247.399978638 250.002868652 252.19909668 253.276062012 253.802398682 254.360443115 254.511627197 255.427978516 257.966278076 260.669372559 262.709991455 265.121856689 267.509307861 269.753662109 270.823120117 271.544494629 272.338226318 273.260192871 274.352050781 275.384399414 276.248962402 277.210998535 278.112457275 278.861663818 279.533294678 280.19442749 280.881835938 281.544067383 282.147735596 282.786560059 283.523254395 284.395690918 285.324462891 286.260894775 287.275054932 288.255767822 289.208312988 290.197296143 291.043273926 291.871246338 292.62677002 293.223449707 293.704345703 294.057739258 294.30847168 294.54196167 294.840667725 295.11920166 295.321502686 295.501098633 295.609680176 295.555877686 295.563781738 295.816162109 296.306030273 296.853637695 297.264129639 297.558258057 297.883422852 298.110046387 298.153930664 298.075561523 297.475006104 296.46081543 296.334289551 297.278076172 297.87411499 297.85244751 297.811218262 297.754364014 297.508178711 297.252838135 297.173675537 297.470123291 297.987609863 297.101196289 293.651062012 286.691833496 282.182983398 280.449523926 280.253631592 280.942321777 281.866973877 282.449615479 282.282958984 281.410064697 280.558013916 279.302459717 278.208404541 277.184265137 276.05871582 274.831939697 273.08996582 269.108642578 267.169952393 266.779541016 265.815856934 263.619720459 260.816802979 258.644927979 257.671417236 256.925415039 255.005508423 253.490402222 251.601730347 249.484970093 246.945571899 244.3515625 242.772018433 240.898162842 239.343841553 237.797927856 236.866897583 235.554000854 232.81111145 232.573623657 232.372070312 233.179534912 233.33895874 233.501525879 235.644332886 236.363815308 236.242919922 237.427474976 238.650985718 238.993591309 238.427978516 239.055541992 237.475097656 240.544723511 242.067703247 242.632583618 243.749679565 244.651824951 244.891891479 246.695205688 249.964477539 253.450927734 257.238311768 261.875274658 264.814483643 268.455108643 270.342102051 271.858917236 273.111450195 274.286682129 275.493896484 276.44418335 277.186218262 277.941589355 278.594116211 279.230895996 279.814758301 280.299407959 280.894287109 281.632843018 282.302856445 282.963623047 283.659790039 284.509094238 285.486419678 286.560546875 287.78326416 289.004455566 290.020385742 290.95199585 291.815643311 292.542358398 293.035827637 293.480682373 293.904937744 294.139526367 294.296478271 294.424804688 294.525634766 294.756011963 295.097839355 295.327972412 295.428436279 295.506866455 295.724487305 296.236816406 296.923065186 297.578979492 298.15435791 298.602508545 298.820983887 298.820129395 298.559997559 297.68649292 296.246337891 295.186859131 295.389434814 296.580535889 297.551757812 297.885009766 297.927429199 297.787017822 297.358184814 296.858978271 296.756408691 297.210632324 297.863983154 297.363555908 294.831481934 289.169036865 284.697143555 282.839508057 282.749542236 283.239990234 283.620391846 283.809875488 283.24118042 281.943389893 280.931854248 280.151153564 279.521087646 278.413513184 277.050750732 276.117828369 273.940582275 271.661193848 268.969085693 268.11315918 264.952392578 262.427642822 260.127624512 258.788513184 257.529266357 255.783508301 253.344558716 251.310699463 248.934036255 246.482971191 244.130264282 241.924118042 240.065338135 238.773284912 237.921768188 237.346389771 237.141036987 236.786148071 235.669525146 235.927444458 235.280715942 235.517715454 235.225418091 235.152603149 236.944396973 237.205413818 237.394989014 238.52293396 239.464874268 239.927337646 240.419540405 241.077606201 227.965560913 231.65574646 233.269897461 232.729827881 233.693328857 237.029006958 239.121017456 241.61517334 244.551239014 247.895797729 251.079483032 255.300140381 259.882446289 264.918151855 268.347198486 270.436523438 271.813476562 272.948638916 274.190124512 275.316345215 276.335174561 277.369567871 278.237945557 279.075195312 280.017669678 280.787628174 281.392791748 282.011413574 282.683013916 283.432220459 284.251922607 285.207641602 286.294372559 287.373443604 288.484527588 289.471160889 290.28213501 291.054321289 291.853088379 292.660827637 293.312225342 293.789306641 294.132507324 294.332397461 294.564788818 294.86114502 295.15234375 295.476745605 295.744934082 295.81918335 295.82925415 295.966430664 296.297363281 296.840423584 297.548522949 298.251434326 298.769042969 299.071502686 299.15524292 298.976104736 298.345397949 297.200073242 295.752655029 294.682525635 294.727081299 295.970031738 297.188262939 297.796264648 298.061584473 298.106719971 297.793060303 297.284881592 297.009490967 297.252532959 297.909454346 297.903167725 296.544830322 292.913238525 289.471069336 287.467437744 286.765014648 287.583099365 288.063934326 288.250946045 288.097442627 287.077270508 285.566131592 284.247161865 283.309112549 281.590270996 279.537902832 278.060852051 276.298950195 274.305297852 272.892730713 272.691192627 272.40133667 270.902008057 268.735198975 267.474975586 266.38961792 263.67098999 261.92276001 261.232116699 260.031921387 258.54989624 257.290496826 256.034118652 254.99822998 254.219909668 253.046981812 251.809783936 250.475311279 249.766983032 248.042510986 246.968383789 243.723953247 242.046829224 240.143814087 238.541107178 240.319442749 239.60295105 239.220993042 239.411743164 239.485824585 238.942108154 239.085510254 239.719909668 247.420272827 250.036712646 252.192199707 253.252334595 253.710739136 254.298965454 254.550811768 255.427841187 257.866882324 260.383880615 262.408569336 264.844207764 267.540618896 269.827362061 270.80178833 271.562469482 272.344177246 273.253265381 274.329406738 275.347320557 276.213012695 277.174377441 278.06854248 278.815185547 279.510437012 280.175079346 280.835113525 281.476928711 282.091033936 282.751525879 283.476715088 284.317626953 285.251861572 286.212188721 287.240936279 288.211883545 289.172149658 290.217376709 291.119567871 291.929107666 292.62387085 293.169403076 293.596801758 293.909698486 294.164489746 294.403900146 294.660705566 294.887084961 295.095245361 295.273040771 295.326934814 295.280944824 295.393157959 295.711395264 296.188995361 296.720703125 297.137756348 297.480957031 297.858001709 298.09475708 298.143768311 298.11026001 297.60925293 296.736663818 296.62802124 297.377410889 297.761993408 297.676269531 297.684265137 297.71572876 297.57244873 297.355926514 297.261657715 297.473571777 297.381835938 295.535644531 290.015594482 284.106842041 281.381439209 281.33795166 282.371429443 283.203521729 283.718780518 283.993164062 283.415588379 282.054595947 281.125457764 280.147888184 278.699279785 277.788024902 276.395507812 274.95526123 273.028320312 270.472717285 267.120147705 266.123596191 265.331329346 263.27545166 260.830444336 258.680206299 257.927093506 256.295776367 254.43989563 252.596801758 250.884933472 248.603546143 246.299713135 243.547790527 242.24647522 240.689437866 239.051010132 237.624237061 236.563308716 234.743560791 232.684799194 232.070999146 232.168716431 232.692733765 233.189483643 233.498413086 235.918014526 236.378662109 236.235565186 237.421508789 238.659255981 239.086456299 238.520080566 239.064620972 237.483734131 240.520797729 242.098556519 242.604309082 243.641296387 244.532409668 244.844329834 246.735061646 249.878509521 253.155044556 256.73425293 261.47668457 264.601867676 268.01751709 270.052520752 271.740875244 273.076477051 274.254058838 275.440185547 276.366241455 277.114959717 277.893127441 278.563323975 279.197509766 279.771453857 280.230377197 280.796905518 281.515106201 282.171813965 282.792175293 283.452697754 284.266815186 285.216278076 286.24420166 287.408355713 288.645874023 289.774658203 290.815368652 291.696228027 292.416931152 292.907104492 293.332702637 293.733459473 293.96875 294.127868652 294.243377686 294.339935303 294.595428467 294.936462402 295.127044678 295.207855225 295.354797363 295.679138184 296.215606689 296.860290527 297.500671387 298.077606201 298.535308838 298.799713135 298.8331604 298.57220459 297.727661133 296.33795166 295.22845459 295.350311279 296.498779297 297.46673584 297.802703857 297.864105225 297.780670166 297.450500488 297.029083252 296.905059814 297.225616455 297.427062988 296.169403076 291.653717041 286.160949707 283.527069092 283.553466797 284.771972656 285.425140381 285.749145508 286.017944336 285.162078857 283.188232422 281.782287598 280.85925293 279.990753174 279.090759277 277.570159912 276.15435791 273.813171387 271.531494141 268.181060791 267.2315979 264.210540771 261.50088501 259.366394043 258.10244751 256.880218506 254.721221924 252.412414551 250.219421387 248.173461914 245.708740234 243.553497314 241.099121094 239.45098877 238.305236816 237.481903076 236.889282227 236.507598877 235.796859741 235.179626465 235.430648804 234.888076782 234.860473633 234.66796875 234.925888062 237.010147095 236.9868927 237.367431641 238.516571045 239.47038269 239.903823853 240.41305542 241.048339844 227.928222656 231.592102051 233.27571106 232.599777222 233.271484375 236.560043335 238.730407715 241.400604248 244.324081421 247.376800537 250.653564453 254.981826782 259.561218262 264.418212891 267.981414795 270.225250244 271.710876465 272.910369873 274.171081543 275.258758545 276.258666992 277.314666748 278.191070557 279.028808594 279.958465576 280.684875488 281.260406494 281.924499512 282.646820068 283.378295898 284.15322876 285.102050781 286.186218262 287.239379883 288.273284912 289.183166504 290.007415771 290.865112305 291.685546875 292.455505371 293.086029053 293.58706665 293.949798584 294.152130127 294.386901855 294.693817139 294.992492676 295.320098877 295.577331543 295.637878418 295.656463623 295.828338623 296.199584961 296.765014648 297.480102539 298.180664062 298.692993164 299.012786865 299.148040771 299.009002686 298.409393311 297.295654297 295.850646973 294.72076416 294.719299316 295.930664062 297.167480469 297.761352539 298.007537842 298.061248779 297.816345215 297.435241699 297.222076416 297.39263916 297.820343018 297.34463501 294.68661499 290.518188477 288.311767578 287.920440674 288.955810547 289.698394775 290.14956665 290.139312744 289.370269775 288.016479492 286.360229492 285.117248535 283.945373535 282.525238037 280.42388916 278.91519165 277.38180542 275.534454346 273.484771729 272.977478027 272.514953613 270.870330811 267.573120117 266.505310059 266.125152588 263.398651123 261.738433838 260.967285156 259.838745117 258.239929199 257.070495605 255.708099365 254.844436646 254.206985474 253.26776123 252.096847534 250.687591553 249.250152588 247.820281982 247.047805786 244.103668213 242.252349854 240.513534546 239.020355225 240.209411621 239.727935791 239.219024658 239.408721924 239.484313965 238.849121094 239.043182373 239.684692383 247.418533325 250.02684021 252.198852539 253.244537354 253.728286743 254.230239868 254.649169922 255.463226318 257.687255859 260.093505859 262.075592041 264.678283691 267.752227783 269.980102539 270.794067383 271.568084717 272.350646973 273.260375977 274.318145752 275.317840576 276.181335449 277.133422852 278.007781982 278.758331299 279.48727417 280.155761719 280.786773682 281.41027832 282.028015137 282.690948486 283.404632568 284.237701416 285.185791016 286.156982422 287.191223145 288.180389404 289.170532227 290.222961426 291.110748291 291.890167236 292.561431885 293.080718994 293.476318359 293.756774902 293.97668457 294.203216553 294.462860107 294.684082031 294.882904053 295.028656006 295.0284729 295.012237549 295.204101562 295.570373535 296.063812256 296.611236572 297.051849365 297.419525146 297.794372559 298.026367188 298.097625732 298.112884521 297.756072998 297.098114014 297.019470215 297.562652588 297.777984619 297.660705566 297.644866943 297.683105469 297.653320312 297.532043457 297.42175293 297.427734375 296.653442383 294.169586182 288.010650635 283.738739014 283.312469482 284.569091797 286.151153564 286.623657227 286.311218262 285.822875977 284.419799805 282.47253418 281.343933105 280.161682129 278.622711182 277.449768066 276.063568115 274.516265869 272.60949707 270.391723633 267.891540527 266.088134766 264.896514893 263.154083252 260.991546631 258.97869873 257.61038208 255.799865723 253.918807983 251.970046997 249.934280396 247.830154419 245.591873169 243.245697021 241.894989014 240.205795288 238.62310791 237.354949951 235.808761597 234.240478516 232.190994263 231.825164795 231.859680176 232.439849854 233.088516235 233.404830933 236.20980835 236.311325073 236.064224243 237.101104736 238.716537476 239.089538574 238.625076294 239.073181152 237.543334961 240.497589111 242.118560791 242.683547974 243.608474731 244.485839844 244.843353271 246.816040039 249.830947876 252.760223389 256.211700439 261.148620605 264.613006592 267.736846924 269.799072266 271.596221924 273.039367676 274.220428467 275.377868652 276.286224365 277.057952881 277.856109619 278.525604248 279.15234375 279.737213135 280.188110352 280.721923828 281.412353516 282.055633545 282.647827148 283.287658691 284.088195801 285.021026611 285.993927002 287.097412109 288.335174561 289.562683105 290.679962158 291.539031982 292.231567383 292.755126953 293.207427979 293.594482422 293.8046875 293.9324646 294.053863525 294.219573975 294.524749756 294.822265625 294.936889648 294.994720459 295.19732666 295.582458496 296.13684082 296.786621094 297.444335938 298.022003174 298.473388672 298.763427734 298.826141357 298.5652771 297.790679932 296.50390625 295.34185791 295.336517334 296.429382324 297.416595459 297.798522949 297.873443604 297.794342041 297.557189941 297.282958984 297.139770508 297.217529297 296.855987549 295.121856689 289.804138184 285.559020996 285.177185059 286.330657959 287.786590576 288.350067139 288.444854736 287.924377441 286.409881592 284.131958008 282.461669922 281.022613525 279.927001953 279.157409668 277.816497803 275.971282959 273.543334961 271.102783203 269.105560303 266.461303711 263.405395508 260.395355225 258.607635498 257.451416016 255.898925781 253.59211731 251.423233032 249.37550354 247.347061157 245.105438232 242.770690918 240.561798096 238.911453247 237.870513916 237.016647339 236.325576782 235.705245972 235.224990845 234.44960022 234.926101685 234.137908936 233.946716309 234.239425659 234.368347168 237.267227173 236.889755249 237.140640259 238.416778564 239.409866333 239.908035278 240.382385254 241.023849487 227.893859863 231.593322754 233.282485962 232.498352051 232.923461914 236.103240967 238.426361084 241.25138855 243.93132019 246.809539795 250.179489136 254.769500732 259.622528076 264.216461182 267.70614624 270.022125244 271.607452393 272.863555908 274.148529053 275.209594727 276.194396973 277.258911133 278.14050293 278.981750488 279.892150879 280.584136963 281.152496338 281.852874756 282.591522217 283.300506592 284.046081543 284.997436523 286.076507568 287.113037109 288.08404541 288.946289062 289.794464111 290.687316895 291.470428467 292.190673828 292.817077637 293.34753418 293.746276855 293.968566895 294.200164795 294.509155273 294.831268311 295.151947021 295.374420166 295.419647217 295.450836182 295.654327393 296.072875977 296.687988281 297.429138184 298.119506836 298.640930176 298.983703613 299.163848877 299.042144775 298.455352783 297.378875732 295.978363037 294.847625732 294.781005859 295.968353271 297.199279785 297.807037354 298.037719727 298.045898438 297.857208252 297.636779785 297.447387695 297.463806152 297.629486084 297.043884277 293.871612549 289.946105957 289.160064697 289.835540771 291.519958496 292.172912598 292.122283936 291.605651855 289.978240967 288.387939453 287.049285889 285.739349365 284.441375732 283.057250977 281.190979004 279.55581665 278.08782959 276.118041992 273.979888916 272.927398682 272.455383301 269.552368164 267.050964355 265.945648193 264.956207275 262.980987549 261.61227417 260.89743042 259.617431641 257.999267578 256.739196777 255.589370728 254.793365479 254.299667358 253.401046753 252.320648193 250.938995361 249.699371338 247.551132202 246.913833618 244.012420654 241.992904663 240.755462646 238.996917725 240.538833618 239.752914429 239.230148315 239.126647949 239.364608765 238.838897705 238.954559326 239.659393311 247.433410645 250.027313232 252.209243774 253.294403076 253.765075684 254.273468018 254.74647522 255.586105347 257.538330078 259.802093506 261.734466553 264.516052246 268.063995361 270.162506104 270.811218262 271.565002441 272.354614258 273.272949219 274.311340332 275.291534424 276.152801514 277.093475342 277.948120117 278.708496094 279.464447021 280.122406006 280.728942871 281.346832275 281.956604004 282.601104736 283.309234619 284.153747559 285.118652344 286.096984863 287.141052246 288.17489624 289.211242676 290.2472229 291.072998047 291.821899414 292.471466064 292.951171875 293.318695068 293.576049805 293.746856689 293.945129395 294.217376709 294.44140625 294.61807251 294.738555908 294.754608154 294.808837891 295.047546387 295.43637085 295.939208984 296.480377197 296.908599854 297.267547607 297.65045166 297.92276001 298.041412354 298.09185791 297.87298584 297.425415039 297.338592529 297.645935059 297.731994629 297.639831543 297.622802734 297.662963867 297.757873535 297.771697998 297.663635254 297.423675537 296.113647461 293.02520752 287.847839355 285.936920166 288.022857666 290.022491455 290.736206055 290.676757812 290.008728027 288.928619385 285.880218506 283.162994385 281.410522461 280.075866699 278.644714355 277.022491455 275.607025146 274.111450195 272.348999023 270.289794922 267.542602539 266.014923096 264.758972168 263.150543213 261.288665771 259.434143066 257.605712891 255.561553955 253.529510498 251.666061401 249.311752319 247.282119751 245.44984436 243.349914551 241.903686523 239.81817627 237.948577881 236.763748169 235.293243408 233.520141602 232.140533447 231.75730896 231.803268433 232.353118896 233.022659302 233.253112793 236.130950928 236.279266357 235.944366455 237.063461304 238.877639771 239.097229004 238.644424438 239.081619263 237.565002441 240.553833008 242.187347412 242.797195435 243.705505371 244.501602173 244.977279663 246.912811279 249.806106567 252.37979126 255.676269531 260.911621094 264.834899902 267.689666748 269.638519287 271.447570801 273.001800537 274.182067871 275.306549072 276.206848145 277.009002686 277.826202393 278.486572266 279.102050781 279.70401001 280.158874512 280.663421631 281.317352295 281.933166504 282.501281738 283.136383057 283.943023682 284.873413086 285.808319092 286.869781494 288.116821289 289.393951416 290.531463623 291.357116699 292.038726807 292.600280762 293.064575195 293.41973877 293.596710205 293.712493896 293.873718262 294.121704102 294.438934326 294.663879395 294.73135376 294.818634033 295.068267822 295.46975708 296.030822754 296.710540771 297.390228271 297.940063477 298.363464355 298.687866211 298.812164307 298.582092285 297.890167236 296.698699951 295.518127441 295.392944336 296.358306885 297.353546143 297.800079346 297.902404785 297.818115234 297.685974121 297.6065979 297.496398926 297.346923828 296.508911133 294.321472168 289.572174072 287.422912598 289.293609619 291.034362793 291.490661621 291.342559814 290.818756104 289.816101074 287.500061035 284.753295898 282.768005371 281.250213623 279.927947998 278.936889648 277.544464111 275.679443359 273.247314453 270.97845459 268.663757324 265.696411133 263.01965332 260.021484375 258.349822998 256.929931641 255.073165894 252.521316528 250.325317383 248.774520874 246.867248535 244.749954224 242.598007202 240.387481689 238.686767578 237.453872681 236.555999756 235.81388855 235.269729614 234.672302246 233.987380981 234.433395386 233.650726318 233.194610596 233.515640259 233.979614258 237.277832031 236.884979248 236.967025757 238.404724121 239.350540161 239.912734985 240.344116211 241.003067017 227.884475708 231.530349731 233.350570679 232.524642944 232.784790039 235.798049927 238.249313354 240.979751587 243.589538574 246.145355225 249.625167847 254.593643188 259.84286499 264.380371094 267.6015625 269.830169678 271.502227783 272.80380249 274.108459473 275.160919189 276.138397217 277.200744629 278.087005615 278.93258667 279.815155029 280.480987549 281.064849854 281.786987305 282.515167236 283.198425293 283.933197021 284.880523682 285.955688477 286.998168945 287.940734863 288.781066895 289.636383057 290.497497559 291.22442627 291.932647705 292.566009521 293.084564209 293.495758057 293.745697021 293.990570068 294.310974121 294.649383545 294.938659668 295.10925293 295.164733887 295.240325928 295.486419678 295.952056885 296.632476807 297.410583496 298.100921631 298.614013672 298.957580566 299.156799316 299.068450928 298.522033691 297.517272949 296.197937012 295.095367432 294.984436035 296.055236816 297.19519043 297.80847168 298.044403076 298.027709961 297.941253662 297.900543213 297.675689697 297.461975098 297.420166016 296.923736572 293.757965088 290.780456543 291.818511963 293.222290039 293.756835938 293.903869629 293.647521973 292.927459717 291.06161499 288.818023682 287.37310791 286.428955078 285.187225342 283.684295654 281.780822754 279.991210938 278.330322266 276.576019287 274.258239746 272.924530029 271.922698975 268.544372559 266.699401855 265.516723633 264.312072754 262.546844482 261.61138916 260.928283691 259.44909668 257.963317871 256.68850708 255.497924805 254.776809692 254.3152771 253.507949829 252.424194336 251.474258423 249.890274048 247.559585571 246.88142395 243.893722534 241.848388672 240.931793213 239.39881897 240.685699463 239.915634155 239.254333496 239.090026855 239.149551392 238.826599121 238.887985229 239.641357422 247.436599731 250.046798706 252.225860596 253.372283936 253.859237671 254.448989868 254.943252563 255.746566772 257.509796143 259.536804199 261.371673584 264.517089844 267.177154541 270.320373535 270.828735352 271.557556152 272.350830078 273.281982422 274.294281006 275.260162354 276.127319336 277.058563232 277.905029297 278.687805176 279.448150635 280.064483643 280.662231445 281.293182373 281.878723145 282.485351562 283.198883057 284.069061279 285.036132812 286.012329102 287.070281982 288.161804199 289.268890381 290.306060791 291.101531982 291.846923828 292.438659668 292.81930542 293.139556885 293.377288818 293.50793457 293.664001465 293.897399902 294.096191406 294.24786377 294.391021729 294.484222412 294.603057861 294.860107422 295.271514893 295.784393311 296.293884277 296.689697266 297.073669434 297.540222168 297.910949707 298.083129883 298.126831055 297.995300293 297.711639404 297.58215332 297.647277832 297.593017578 297.526580811 297.537841797 297.622680664 297.828033447 298.000061035 298.010986328 297.645782471 296.090301514 293.134155273 289.289642334 290.020599365 291.500671387 292.282714844 292.483795166 292.106445312 291.318634033 290.01473999 287.365722656 283.401672363 281.374572754 279.792449951 278.023834229 276.413146973 275.111541748 273.695404053 272.119689941 269.998413086 267.298553467 265.76940918 264.477722168 263.261230469 261.670410156 259.957214355 257.764282227 255.536026001 253.55015564 251.358123779 248.319641113 246.73890686 245.770095825 244.053985596 242.123886108 239.146362305 237.034484863 235.782287598 234.655456543 233.172332764 232.121383667 231.631469727 231.801773071 232.276245117 232.924026489 233.040435791 235.944213867 236.098144531 235.954681396 237.068344116 238.941345215 239.262786865 238.647949219 239.090957642 237.569244385 240.525100708 242.328277588 242.96321106 243.85357666 244.543426514 245.219711304 247.111663818 249.793991089 251.973480225 255.178314209 260.934753418 263.843719482 267.963500977 269.617736816 271.30847168 272.954559326 274.128173828 275.216064453 276.12399292 276.957122803 277.788421631 278.445648193 279.057434082 279.665466309 280.122344971 280.602600098 281.210357666 281.771575928 282.314056396 282.972290039 283.809295654 284.742675781 285.658538818 286.724884033 287.968658447 289.22644043 290.351867676 291.204620361 291.927246094 292.480895996 292.866333008 293.159942627 293.352355957 293.518371582 293.713226318 293.967681885 294.22076416 294.392486572 294.509338379 294.690460205 294.975097656 295.3621521 295.925262451 296.623260498 297.285827637 297.805023193 298.248596191 298.650909424 298.859161377 298.683532715 298.039825439 296.910186768 295.768127441 295.566558838 296.398986816 297.310699463 297.741729736 297.8465271 297.802947998 297.829833984 297.961639404 297.985717773 297.793762207 296.793914795 294.841094971 290.90512085 290.99508667 292.188049316 292.923461914 292.929870605 292.378936768 291.507019043 290.231933594 288.163970947 284.817810059 282.822021484 281.207305908 279.403106689 278.111328125 276.863098145 274.929199219 272.717224121 270.490875244 267.863586426 264.485595703 262.249328613 260.214691162 258.44519043 256.779205322 254.597320557 251.660202026 249.874710083 248.30708313 245.745391846 244.190185547 243.003677368 240.748626709 238.74760437 237.175643921 236.145004272 235.324310303 234.704406738 234.155685425 233.986663818 233.90687561 233.470840454 232.930740356 233.062423706 233.525619507 237.231323242 237.108016968 236.97555542 238.403747559 239.352752686 239.913269043 240.312240601 240.985931396 227.87097168 231.577484131 233.402877808 232.609710693 232.784851074 235.590789795 238.215515137 240.76071167 243.178329468 245.461364746 249.009185791 254.764083862 258.929718018 265.146789551 267.695526123 269.640655518 271.391448975 272.719940186 274.035705566 275.106109619 276.087158203 277.132568359 278.020202637 278.873687744 279.718292236 280.365783691 280.987030029 281.712646484 282.400299072 283.065765381 283.805969238 284.718597412 285.780578613 286.840789795 287.77532959 288.595367432 289.432678223 290.25894165 290.996704102 291.767669678 292.388153076 292.808380127 293.177001953 293.468902588 293.7421875 294.06930542 294.405883789 294.640625 294.790405273 294.920440674 295.070770264 295.341796875 295.829437256 296.551513672 297.350799561 298.043212891 298.559234619 298.92678833 299.137573242 299.084838867 298.598999023 297.696533203 296.472442627 295.426391602 295.273895264 296.218170166 297.197937012 297.727416992 297.915924072 297.917053223 298.013549805 298.189208984 297.935638428 297.518341064 297.437042236 297.472839355 294.352294922 293.15447998 293.647705078 294.603485107 294.903045654 294.532287598 293.99822998 293.102539062 291.459014893 288.904144287 287.509277344 286.667297363 285.291229248 283.832336426 282.146759033 280.166992188 278.233551025 276.35269165 274.632049561 272.984771729 271.201690674 268.957977295 266.678497314 265.373657227 264.167419434 262.414733887 261.581665039 260.724090576 258.86730957 257.601104736 256.755493164 255.720825195 254.920959473 254.274383545 253.513290405 252.478210449 251.52243042 250.262313843 248.312042236 246.843170166 244.370346069 242.269042969 241.099258423 239.400909424 240.770950317 240.61227417 239.261901855 239.090240479 239.104171753 238.775512695 238.850311279 239.628570557 247.421020508 250.058334351 252.28352356 253.493606567 254.058166504 254.687973022 255.228439331 255.99395752 257.551971436 259.309082031 261.055023193 264.680969238 267.933502197 270.453063965 270.84274292 271.532714844 272.333984375 273.26385498 274.250854492 275.223083496 276.115600586 277.044830322 277.89453125 278.69934082 279.440551758 280.015563965 280.620025635 281.258056641 281.813751221 282.398742676 283.121551514 283.994232178 284.953918457 285.932006836 286.990783691 288.099609375 289.249023438 290.30456543 291.11932373 291.878509521 292.433166504 292.739044189 292.999145508 293.204742432 293.318084717 293.45489502 293.651580811 293.82144165 293.959960938 294.09942627 294.171569824 294.287658691 294.599151611 295.103790283 295.677185059 296.201538086 296.641113281 297.088165283 297.568359375 297.917053223 298.083984375 298.117889404 298.023712158 297.828704834 297.732696533 297.749237061 297.666778564 297.583099365 297.591064453 297.685516357 297.867950439 298.082214355 298.260223389 297.915374756 296.24230957 293.569580078 291.219360352 292.79675293 293.365509033 293.267242432 292.867767334 292.348327637 291.490814209 290.165863037 287.618103027 283.935150146 281.125946045 279.192016602 277.281524658 275.751098633 274.51574707 273.147125244 271.684936523 269.535552979 266.904541016 265.159332275 264.107666016 263.273193359 261.490722656 259.90802002 257.97543335 256.044647217 253.71723938 250.94883728 248.039840698 247.060043335 247.642501831 246.524139404 242.401535034 238.791320801 236.123184204 234.980056763 234.249145508 233.14743042 231.909088135 231.337265015 231.789459229 232.139251709 232.798141479 232.997177124 235.153244019 236.153945923 235.946746826 236.897659302 238.966598511 239.474639893 238.653991699 239.101104736 237.528778076 240.505371094 242.442321777 243.16468811 244.054244995 244.754058838 245.563735962 247.347061157 249.867538452 251.670928955 254.735992432 261.198272705 265.512207031 268.483581543 269.705963135 271.211730957 272.904663086 274.063110352 275.126678467 276.048278809 276.900024414 277.735321045 278.409332275 279.030639648 279.621246338 280.066925049 280.541625977 281.112670898 281.62197876 282.15612793 282.849578857 283.704559326 284.635650635 285.567749023 286.631988525 287.828399658 289.039001465 290.177246094 291.098236084 291.861083984 292.367767334 292.681304932 292.968048096 293.217895508 293.420227051 293.599151611 293.805450439 294.027679443 294.213592529 294.358032227 294.531829834 294.796173096 295.206237793 295.832092285 296.563537598 297.232818604 297.808563232 298.330200195 298.735717773 298.902191162 298.717376709 298.130615234 297.108428955 296.091033936 295.909118652 296.662597656 297.445251465 297.780578613 297.826477051 297.818878174 297.943359375 298.185943604 298.3621521 298.260345459 297.293518066 295.886779785 293.172790527 293.691009521 293.971862793 293.938232422 293.532562256 292.813568115 291.66885376 290.210418701 287.800384521 285.000732422 282.570281982 280.849029541 278.755310059 277.310577393 275.976196289 274.115142822 271.982971191 269.586456299 266.799133301 263.734802246 261.884521484 260.294281006 258.185638428 256.422332764 254.277053833 252.011047363 249.805465698 247.821685791 245.35194397 244.463760376 244.587936401 243.122787476 239.397857666 237.211486816 235.9375 234.992630005 234.266616821 233.56048584 233.346786499 232.97819519 233.053543091 232.75340271 232.789611816 233.618972778 236.764877319 237.215270996 236.898223877 238.29473877 239.367660522 239.920913696 240.287643433 240.973129272 227.819168091 231.537841797 233.51991272 232.787979126 232.936065674 235.589782715 238.274398804 240.589538574 242.61555481 244.775482178 248.459716797 255.098449707 260.940979004 265.968444824 267.938537598 269.550323486 271.300292969 272.628875732 273.942108154 275.04901123 276.044921875 277.062072754 277.949035645 278.818969727 279.63369751 280.268737793 280.923797607 281.644195557 282.284423828 282.942382812 283.68447876 284.542266846 285.572296143 286.625946045 287.528533936 288.303527832 289.158599854 290.038360596 290.847320557 291.661712646 292.231750488 292.55682373 292.897338867 293.208648682 293.467041016 293.774383545 294.087554932 294.302642822 294.479705811 294.659667969 294.830169678 295.13885498 295.723297119 296.525939941 297.333496094 298.019104004 298.586730957 299.034606934 299.260070801 299.147186279 298.635192871 297.790344238 296.664672852 295.677490234 295.573455811 296.458679199 297.361206055 297.787719727 297.897644043 297.896362305 298.058288574 298.340820312 298.23324585 297.893280029 297.849243164 298.230804443 296.307128906 295.527801514 295.450500488 295.718902588 295.630249023 294.990844727 293.997558594 292.770477295 290.722747803 289.119720459 287.571685791 286.417541504 285.100769043 283.827819824 282.367950439 280.284484863 278.032775879 276.341949463 274.596832275 272.750915527 270.468688965 268.356536865 266.244293213 265.131195068 264.074645996 262.957427979 261.749420166 260.459381104 258.790557861 257.686004639 257.614074707 257.374481201 255.19569397 254.227218628 253.330337524 252.416061401 251.457015991 250.183731079 248.501968384 246.25680542 244.684173584 242.887756348 241.238464355 240.030792236 240.547439575 240.680282593 239.311050415 239.047286987 239.097564697 238.726928711 238.826782227 239.622787476 247.414916992 250.073989868 252.347061157 253.640670776 254.333694458 255.008987427 255.557693481 256.282012939 257.674377441 259.120544434 260.798706055 264.928344727 268.647918701 270.587738037 270.852813721 271.493743896 272.312835693 273.223083496 274.186889648 275.18258667 276.112670898 277.04019165 277.890197754 278.702484131 279.424713135 279.983612061 280.600311279 281.22366333 281.746398926 282.332244873 283.068725586 283.923828125 284.880340576 285.887969971 286.953186035 288.050354004 289.196166992 290.237121582 291.029998779 291.767333984 292.316345215 292.615783691 292.835845947 292.985626221 293.082458496 293.233001709 293.429992676 293.577209473 293.699676514 293.80770874 293.848266602 294.012115479 294.436737061 295.024078369 295.618469238 296.139984131 296.615020752 297.088043213 297.535125732 297.859100342 298.050231934 298.099853516 297.999511719 297.818847656 297.74029541 297.767822266 297.731628418 297.656097412 297.688964844 297.818603516 297.961517334 298.156280518 298.360443115 297.846435547 296.034790039 292.942016602 291.917755127 293.876586914 294.412109375 293.942993164 293.271850586 292.540222168 291.532470703 290.179016113 287.802856445 283.952178955 281.0859375 279.119903564 277.186004639 275.410400391 274.112457275 272.683624268 271.124176025 268.906402588 266.471282959 264.933380127 263.931976318 262.898010254 261.144805908 259.585906982 257.976531982 255.914596558 253.296508789 250.367263794 247.900314331 248.562408447 248.52003479 247.462646484 243.612426758 238.40637207 235.434127808 234.347488403 233.872390747 233.024520874 231.579025269 230.846313477 231.762771606 232.104309082 232.716506958 232.726455688 234.769943237 235.904663086 235.964126587 236.530700684 238.954162598 239.64793396 238.674728394 239.10697937 237.534622192 240.549133301 242.598114014 243.378356934 244.302246094 245.092926025 245.997177124 247.729309082 249.849487305 251.421722412 254.359146118 261.503295898 266.82421875 268.999084473 269.796630859 271.145507812 272.848632812 273.989929199 275.044372559 275.982147217 276.835876465 277.670898438 278.367156982 278.999847412 279.562957764 280.002960205 280.488342285 281.035064697 281.511657715 282.050537109 282.757781982 283.604949951 284.532073975 285.483276367 286.543426514 287.703430176 288.881347656 290.013366699 290.938812256 291.692901611 292.192993164 292.529174805 292.836730957 293.086578369 293.278869629 293.448699951 293.639068604 293.854278564 294.042999268 294.183319092 294.343292236 294.631408691 295.104553223 295.791748047 296.548156738 297.238983154 297.87701416 298.435852051 298.799468994 298.91015625 298.731872559 298.21395874 297.310119629 296.393554688 296.20803833 296.855926514 297.524902344 297.802703857 297.827362061 297.853485107 298.015686035 298.304168701 298.53604126 298.313049316 297.327575684 295.76071167 294.351806641 295.164978027 295.307067871 294.772857666 294.08706665 293.153991699 291.800262451 290.265228271 288.066436768 285.060089111 282.566040039 280.793487549 278.525268555 276.744567871 275.256408691 273.555847168 271.370056152 268.89074707 265.441131592 263.169219971 261.775543213 260.170959473 258.188903809 255.931259155 254.10333252 251.836669922 249.375091553 247.20010376 244.990219116 245.59336853 245.407791138 244.213912964 240.854812622 237.532913208 235.879455566 234.822006226 233.904907227 233.060089111 232.436401367 232.034454346 232.825714111 232.608673096 233.370178223 233.160995483 236.445281982 237.324386597 236.860748291 238.076583862 239.349685669 239.954650879 240.266021729 240.962173462 227.813522339 231.574356079 233.640716553 233.089950562 233.182647705 235.74621582 238.364852905 240.529754639 242.271820068 244.031799316 247.873336792 255.43989563 262.210083008 266.697265625 268.211364746 269.518035889 271.2265625 272.544067383 273.844482422 274.990539551 276.007171631 276.992675781 277.87399292 278.762817383 279.558776855 280.185577393 280.867340088 281.580444336 282.178710938 282.832244873 283.568145752 284.376403809 285.377502441 286.414672852 287.273040771 288.027252197 288.929626465 289.864868164 290.678314209 291.462249756 291.992797852 292.301025391 292.644195557 292.926330566 293.141815186 293.431091309 293.731964111 293.938842773 294.138305664 294.339294434 294.539367676 294.963928223 295.694458008 296.561431885 297.349609375 298.03604126 298.665557861 299.181152344 299.408325195 299.229522705 298.69708252 297.937927246 296.923492432 295.968719482 295.808532715 296.602996826 297.444702148 297.80670166 297.905670166 297.941986084 298.093811035 298.36907959 298.467132568 298.281860352 298.143951416 297.893707275 297.729980469 297.049133301 296.865234375 296.489898682 295.975402832 295.179138184 293.957000732 292.600616455 290.96673584 289.215759277 287.684631348 286.469604492 285.285125732 283.948944092 282.622955322 280.539672852 277.781677246 275.850311279 274.440032959 272.214599609 270.066925049 268.204833984 266.540710449 265.198608398 263.980560303 262.671844482 261.439361572 260.119598389 258.523590088 258.066558838 258.000854492 257.801422119 256.001159668 254.149520874 252.924804688 252.078155518 251.306106567 250.037704468 247.563583374 245.639541626 244.97052002 243.211456299 242.01373291 240.018859863 240.355712891 240.649856567 239.373291016 238.988586426 239.056533813 238.710006714 238.81111145 239.615509033 247.41734314 250.086578369 252.42098999 253.806976318 254.676376343 255.364776611 255.994171143 256.607055664 257.844573975 258.97958374 260.681335449 265.118469238 269.091064453 270.76751709 270.909332275 271.456939697 272.298339844 273.170562744 274.107208252 275.141540527 276.1199646 277.04083252 277.882141113 278.688720703 279.395751953 279.960418701 280.588317871 281.181060791 281.663635254 282.266845703 283.022674561 283.854919434 284.817230225 285.863616943 286.942687988 288.021270752 289.145629883 290.141784668 290.875915527 291.560791016 292.112335205 292.434112549 292.628051758 292.728485107 292.820373535 292.998321533 293.198303223 293.311981201 293.404815674 293.484832764 293.551696777 293.834136963 294.373046875 294.989013672 295.574554443 296.092071533 296.59072876 297.071624756 297.518371582 297.882507324 298.129058838 298.187194824 298.055389404 297.870391846 297.789916992 297.812530518 297.793731689 297.72277832 297.785247803 297.959014893 298.092407227 298.281433105 298.392730713 297.567047119 294.563354492 291.442169189 291.448150635 293.983795166 294.839324951 294.527954102 293.907592773 292.953521729 291.765991211 290.405059814 288.154785156 283.860443115 281.390594482 279.517089844 277.445861816 275.555419922 274.074462891 272.496337891 270.71697998 268.70703125 266.223388672 264.643127441 263.497344971 262.389007568 260.606323242 259.06137085 257.744018555 255.678527832 252.847045898 249.644775391 248.1118927 249.317810059 249.110519409 247.9324646 245.133682251 238.396392822 235.10168457 233.984268188 233.674026489 232.876953125 231.593154907 230.926834106 231.734191895 232.067443848 232.565475464 232.466674805 234.942886353 235.714447021 235.972946167 236.547363281 238.981613159 239.781860352 238.697372437 239.112808228 237.448318481 240.511291504 242.670166016 243.68611145 244.666412354 245.511245728 246.482192993 248.190887451 249.96307373 251.207702637 254.105804443 261.768005371 267.578796387 269.529388428 269.923553467 271.11138916 272.789154053 273.913085938 274.968658447 275.923980713 276.768493652 277.597839355 278.315704346 278.952606201 279.492126465 279.937194824 280.44229126 280.970733643 281.432647705 281.981903076 282.668792725 283.486083984 284.424560547 285.391601562 286.449005127 287.597564697 288.762512207 289.847961426 290.711547852 291.433654785 291.984680176 292.405059814 292.714599609 292.906951904 293.074584961 293.259490967 293.440307617 293.613189697 293.779602051 293.941040039 294.171508789 294.563171387 295.097747803 295.804351807 296.56237793 297.267852783 297.94241333 298.521057129 298.876403809 298.987213135 298.842651367 298.354553223 297.531463623 296.702667236 296.497528076 297.000061035 297.538696289 297.768157959 297.80456543 297.861114502 298.040893555 298.343902588 298.546539307 298.053161621 296.02041626 293.798400879 293.430084229 295.902191162 296.160766602 295.561309814 294.746948242 293.54083252 292.006286621 290.481658936 288.505584717 285.148651123 282.814300537 280.99621582 278.621276855 276.5284729 274.870635986 273.161132812 270.986022949 268.403808594 265.267730713 263.13168335 261.567810059 260.009521484 257.963348389 255.668273926 254.014053345 251.752380371 249.0390625 246.298492432 245.115447998 246.041870117 246.033004761 244.906723022 242.658782959 237.93548584 235.884643555 234.736434937 233.62260437 232.578155518 232.098983765 231.883728027 232.273208618 232.397384644 233.109741211 232.494476318 236.537445068 237.214691162 236.869979858 238.085693359 239.314682007 239.997116089 240.246658325 240.953308105 227.813262939 231.557266235 233.799209595 233.438934326 233.496612549 236.113128662 238.615509033 240.556427002 241.830169678 243.39855957 247.357803345 255.615478516 262.87020874 267.427368164 268.541320801 269.486419678 271.157592773 272.468078613 273.74987793 274.930908203 275.968841553 276.92477417 277.794769287 278.698364258 279.485626221 280.111450195 280.815307617 281.516815186 282.08026123 282.730804443 283.450195312 284.218811035 285.204528809 286.224456787 287.060424805 287.834625244 288.770782471 289.698699951 290.447937012 291.175933838 291.707580566 292.048156738 292.387420654 292.612121582 292.793792725 293.086425781 293.375701904 293.565093994 293.782592773 294.019927979 294.308807373 294.886199951 295.707214355 296.550506592 297.313140869 298.045593262 298.751983643 299.309509277 299.515991211 299.302520752 298.790252686 298.105285645 297.178344727 296.248016357 296.025817871 296.710327148 297.464202881 297.744445801 297.844360352 297.954376221 298.093780518 298.305389404 298.587860107 298.496307373 297.746520996 296.593566895 297.206085205 298.148773193 297.715087891 297.017791748 296.19128418 295.267852783 293.956634521 292.554656982 291.194915771 289.202941895 287.815155029 286.835144043 285.573059082 284.234832764 282.937347412 280.93939209 277.855194092 275.53805542 273.942565918 271.834564209 269.706481934 267.793884277 266.425170898 264.958129883 263.852996826 262.522125244 261.270385742 259.460418701 258.304534912 258.192077637 258.155975342 257.904815674 256.899627686 253.936035156 252.34928894 251.577041626 251.0753479 249.588302612 247.027359009 245.435806274 244.477050781 243.35357666 241.859573364 239.941116333 240.614639282 240.584213257 239.380187988 238.99319458 238.912979126 238.709609985 238.799713135 239.610198975 247.436080933 250.105819702 252.493743896 253.989776611 255.021636963 255.806350708 256.474212646 257.0675354 258.028289795 258.938232422 260.608642578 265.233978271 269.340270996 270.957855225 271.019470215 271.42767334 272.293945312 273.117492676 274.028167725 275.102996826 276.133789062 277.037261963 277.857421875 278.647735596 279.34487915 279.933685303 280.566619873 281.113250732 281.565216064 282.193023682 282.96182251 283.778991699 284.749328613 285.809020996 286.870880127 287.943359375 289.055755615 290.024169922 290.731262207 291.377349854 291.886169434 292.182922363 292.357696533 292.457641602 292.581634521 292.777008057 292.929595947 292.995758057 293.081085205 293.177581787 293.31842041 293.717773438 294.293945312 294.929046631 295.585083008 296.18927002 296.719299316 297.195831299 297.655151367 298.041320801 298.262115479 298.261077881 298.134155273 298.051300049 298.086669922 298.127044678 298.070892334 297.988006592 298.03704834 298.166564941 298.276428223 298.44934082 298.381713867 297.260650635 293.75970459 291.219116211 291.348846436 292.579650879 293.50592041 294.786834717 294.530456543 293.43447876 292.067504883 290.727813721 288.574035645 283.884368896 281.440002441 279.791992188 277.748199463 275.739471436 274.126739502 272.55368042 270.606079102 268.636169434 266.013977051 264.467163086 263.057342529 261.807189941 260.015228271 258.51373291 257.412536621 255.538818359 252.401885986 249.326278687 248.557632446 249.695907593 249.350662231 248.010726929 245.292190552 240.359939575 234.979705811 233.909622192 233.685089111 232.798019409 231.705001831 231.476211548 231.47567749 231.965515137 232.5493927 232.437988281 235.086349487 235.446853638 235.916534424 236.553710938 239.065719604 239.885971069 238.71812439 239.121902466 237.461227417 240.574554443 242.87701416 243.988113403 245.089675903 246.098480225 247.033660889 248.682006836 250.173736572 251.072906494 253.962051392 261.931243896 268.022857666 270.108398438 270.206939697 271.137176514 272.72354126 273.829986572 274.897674561 275.874633789 276.702575684 277.51550293 278.246765137 278.878051758 279.401367188 279.868469238 280.394317627 280.899383545 281.36605835 281.931793213 282.568084717 283.331237793 284.286865234 285.265167236 286.308654785 287.46585083 288.62612915 289.634490967 290.422973633 291.152130127 291.782409668 292.241394043 292.517852783 292.664886475 292.851470947 293.070739746 293.205230713 293.309844971 293.47442627 293.691864014 294.009429932 294.489715576 295.061462402 295.792724609 296.606781006 297.376678467 298.087219238 298.671264648 299.02947998 299.139251709 298.991027832 298.516937256 297.765930176 297.074523926 296.940826416 297.316253662 297.688537598 297.838134766 297.881286621 297.941497803 298.102020264 298.360931396 298.430297852 297.691314697 295.07510376 292.609985352 292.790039062 294.81048584 296.22366333 295.985321045 295.283325195 293.888946533 292.222473145 290.754394531 288.912384033 285.287322998 282.777252197 280.984069824 278.634185791 276.380950928 274.596008301 272.761444092 270.645874023 268.076812744 265.070953369 262.899536133 261.375488281 259.683807373 257.54699707 255.459487915 253.809509277 251.756225586 248.75692749 245.872207642 245.378387451 246.246551514 246.247772217 245.279724121 243.263565063 239.708099365 235.933746338 234.658447266 233.446487427 232.329544067 231.978607178 232.197555542 231.722442627 232.361328125 233.478668213 232.464141846 236.637893677 237.091918945 237.322235107 238.061721802 239.328475952 240.018966675 240.230911255 240.948257446 227.741455078 231.541351318 233.956436157 233.815887451 233.946914673 236.444229126 238.859054565 240.686157227 241.393112183 242.730438232 246.873382568 255.761932373 263.578460693 268.151977539 268.963439941 269.491790771 271.093688965 272.408569336 273.660858154 274.863250732 275.921722412 276.855926514 277.708862305 278.612945557 279.399871826 280.03616333 280.755554199 281.439483643 281.981567383 282.629333496 283.323028564 284.0546875 285.020721436 286.018035889 286.875640869 287.697662354 288.601165771 289.426483154 290.115936279 290.851104736 291.421203613 291.7862854 292.08682251 292.26763916 292.462005615 292.762115479 293.006286621 293.176300049 293.432373047 293.737976074 294.147888184 294.841522217 295.656219482 296.448120117 297.290679932 298.163024902 298.947296143 299.484527588 299.622619629 299.380096436 298.847106934 298.127990723 297.237091064 296.412353516 296.255523682 296.898773193 297.600250244 297.807769775 297.83996582 298.00479126 298.184814453 298.316619873 298.621765137 298.422485352 297.306945801 295.432525635 295.881500244 297.950714111 298.736358643 297.273284912 296.382568359 295.386138916 293.974273682 292.512298584 291.240112305 289.165557861 287.757293701 286.802429199 285.609558105 284.262878418 283.002868652 281.136138916 278.131164551 275.565063477 273.713409424 271.704986572 269.385192871 267.392181396 266.061950684 264.967498779 263.894592285 262.763427734 261.242248535 259.277526855 258.309387207 258.283203125 258.057922363 257.644561768 256.762237549 254.817337036 251.928955078 251.198425293 250.87612915 249.21182251 247.377258301 246.116836548 243.844528198 243.363449097 242.190216064 240.180740356 240.874969482 240.477966309 239.925064087 238.998092651 238.803039551 238.709899902 238.792175293 239.610702515 247.443466187 250.131317139 252.579467773 254.192657471 255.370315552 256.249298096 257.000732422 257.614440918 258.368133545 258.967956543 260.505584717 265.328308105 269.499908447 271.124542236 271.150512695 271.45135498 272.321746826 273.100006104 273.982421875 275.076538086 276.138153076 277.028717041 277.827911377 278.601257324 279.293212891 279.899169922 280.519012451 281.033233643 281.492034912 282.137176514 282.890350342 283.70993042 284.694519043 285.714996338 286.724517822 287.795227051 288.884246826 289.833831787 290.578033447 291.231414795 291.653442383 291.87902832 292.047607422 292.176361084 292.307128906 292.457275391 292.5546875 292.653991699 292.808288574 292.945281982 293.164276123 293.665252686 294.293060303 295.000396729 295.72756958 296.32119751 296.787567139 297.244842529 297.675872803 297.998291016 298.16973877 298.151000977 298.041564941 298.030853271 298.149230957 298.222229004 298.182434082 298.176452637 298.307342529 298.449249268 298.492645264 298.455169678 298.039916992 296.964599609 294.038299561 293.175384521 293.765625 293.670806885 292.948425293 294.65927124 295.003967285 293.881774902 292.366973877 291.018310547 289.182159424 286.280578613 282.001068115 279.98727417 277.764434814 275.890960693 274.382385254 272.780914307 270.785919189 268.515869141 266.019897461 264.155914307 262.757995605 261.431762695 259.479553223 258.180969238 257.193878174 255.16003418 251.688919067 249.219650269 249.70513916 250.072570801 249.431060791 247.837814331 244.9087677 241.224136353 235.28086853 234.108978271 233.965301514 232.769058228 231.794464111 231.35118103 231.535720825 231.787643433 232.561050415 232.609664917 235.50050354 235.253799438 235.718353271 236.335723877 239.132324219 239.996902466 238.75579834 239.131744385 237.523666382 240.58934021 242.973205566 244.376876831 245.630401611 246.67137146 247.623626709 249.18069458 250.462005615 251.078964233 253.900131226 262.199981689 268.377868652 270.572570801 270.545684814 271.188934326 272.687683105 273.76663208 274.841369629 275.840545654 276.661102295 277.461425781 278.185943604 278.797515869 279.317260742 279.812744141 280.344146729 280.819152832 281.296783447 281.881530762 282.476959229 283.202026367 284.165435791 285.126739502 286.147705078 287.311767578 288.458007812 289.413848877 290.19342041 290.94744873 291.552337646 291.968566895 292.254730225 292.454162598 292.660766602 292.828582764 292.921325684 293.085601807 293.33001709 293.531829834 293.80166626 294.324768066 295.018737793 295.875732422 296.772857666 297.574188232 298.259307861 298.759033203 298.988708496 299.027832031 298.926452637 298.569580078 297.918579102 297.272766113 297.13583374 297.46081543 297.782867432 297.948272705 298.06652832 298.175598145 298.278991699 298.323242188 298.020446777 297.450378418 295.219329834 294.073242188 294.626098633 295.002960205 294.920135498 295.857818604 295.53717041 294.167388916 292.4190979 290.955566406 289.22668457 286.724761963 283.109161377 280.9425354 278.44821167 276.369873047 274.442138672 272.49887085 270.509338379 267.916320801 264.901885986 262.723266602 261.281524658 259.55355835 257.151062012 255.328109741 253.564575195 251.210998535 247.982406616 245.718231201 246.081130981 246.402984619 246.171585083 245.335601807 243.456771851 240.577484131 235.983322144 234.544921875 233.356811523 232.130981445 231.78604126 232.042221069 231.802597046 232.753753662 233.927032471 232.913467407 236.918533325 236.99420166 237.552810669 237.777023315 239.335067749 240.021377563 240.217224121 240.944885254 227.727798462 231.55871582 234.132247925 234.281173706 234.44140625 236.906463623 239.210281372 240.864364624 241.159133911 242.1953125 246.468780518 255.955291748 264.085113525 268.716644287 269.38269043 269.629119873 271.062164307 272.379669189 273.600311279 274.79989624 275.869537354 276.804534912 277.645446777 278.531982422 279.322540283 279.970153809 280.682373047 281.345367432 281.896789551 282.550842285 283.217071533 283.922912598 284.858062744 285.819549561 286.695007324 287.544586182 288.374481201 289.111083984 289.813293457 290.57824707 291.140075684 291.498504639 291.807434082 292.023651123 292.227661133 292.465057373 292.645812988 292.854431152 293.170654297 293.492492676 293.953338623 294.739257812 295.651000977 296.577514648 297.542205811 298.398254395 299.090270996 299.513183594 299.580871582 299.345855713 298.84765625 298.12689209 297.267944336 296.495910645 296.273834229 296.802642822 297.544525146 297.863067627 297.927001953 298.172027588 298.429504395 298.444030762 298.389953613 298.324645996 297.057159424 295.758178711 296.035552979 296.931793213 297.637939453 297.164245605 296.54574585 295.633056641 294.02935791 292.359680176 291.135620117 289.835571289 287.893768311 286.62890625 285.18939209 284.056182861 282.757995605 281.12689209 278.373504639 275.861572266 273.957458496 271.983886719 269.482879639 267.382843018 265.628326416 264.928405762 263.974578857 262.932312012 260.947723389 259.12008667 258.507904053 258.320495605 257.71786499 257.099365234 256.290283203 254.93447876 251.668670654 250.953720093 250.533401489 248.879882812 248.13835144 247.370422363 244.186599731 243.687744141 242.548950195 240.644287109 240.986694336 240.37449646 240.265167236 238.920532227 238.745071411 238.71055603 238.782165527 239.613357544 247.440536499 250.152816772 252.679443359 254.433334351 255.747146606 256.75680542 257.578308105 258.220672607 258.753387451 259.084014893 260.478851318 265.868530273 269.644775391 271.3019104 271.292327881 271.514282227 272.36328125 273.109954834 273.957824707 275.049804688 276.126220703 277.017608643 277.81161499 278.571380615 279.251373291 279.856170654 280.452484131 280.951721191 281.438201904 282.087402344 282.811828613 283.648834229 284.661499023 285.653106689 286.639923096 287.703521729 288.719390869 289.601715088 290.346313477 290.976745605 291.328796387 291.531738281 291.714538574 291.818908691 291.883239746 291.967590332 292.054290771 292.226013184 292.465301514 292.661804199 293.010375977 293.68637085 294.423126221 295.16809082 295.830078125 296.26675415 296.643157959 297.11920166 297.563903809 297.900177002 298.146942139 298.180633545 298.053405762 298.015899658 298.137115479 298.209136963 298.179443359 298.209716797 298.415557861 298.62512207 298.552734375 298.165435791 297.584014893 296.232910156 294.326293945 295.032348633 295.851257324 295.823699951 295.173797607 295.530273438 295.384063721 294.24420166 292.67401123 291.189880371 289.490570068 286.887878418 282.539642334 280.149841309 277.782958984 275.917297363 274.567047119 273.137451172 271.124847412 268.745422363 266.298828125 264.24118042 262.663604736 260.935546875 259.190032959 258.018554688 256.628479004 254.134963989 250.959854126 249.6302948 250.439910889 250.314102173 249.371368408 247.551803589 244.792556763 241.34677124 235.515930176 234.456329346 234.547561646 232.744613647 231.676055908 231.203948975 231.465362549 231.765228271 232.410186768 233.579559326 235.663986206 235.168182373 235.572418213 236.139312744 239.123275757 240.059005737 238.909820557 239.141769409 237.515548706 240.669799805 243.184204102 244.761825562 246.160720825 247.256744385 248.307250977 249.740615845 250.816207886 251.167236328 253.925613403 263.07723999 268.698791504 270.959197998 270.921203613 271.305664062 272.674987793 273.723907471 274.795623779 275.809143066 276.630889893 277.429046631 278.139465332 278.724243164 279.243133545 279.761169434 280.285888672 280.739654541 281.230194092 281.825500488 282.396453857 283.103668213 284.059509277 284.99822998 286.024047852 287.208679199 288.321777344 289.238647461 290.020843506 290.745513916 291.264923096 291.651306152 292.002532959 292.240722656 292.374145508 292.442443848 292.542327881 292.796508789 293.08972168 293.280883789 293.616729736 294.316040039 295.188415527 296.10925293 296.959960938 297.666534424 298.241638184 298.613494873 298.775238037 298.871826172 298.899078369 298.616119385 297.974456787 297.294891357 297.13293457 297.462371826 297.806243896 298.00189209 298.154998779 298.274475098 298.259063721 298.028625488 297.623718262 296.783599854 295.4168396 295.628295898 296.166290283 296.314056396 295.949066162 296.063690186 295.630310059 294.332733154 292.559906006 290.932434082 289.257873535 286.977539062 283.294372559 280.908538818 278.426269531 276.278869629 274.28805542 272.386962891 270.37286377 267.839294434 265.380096436 262.873565674 261.124176025 259.103759766 256.885009766 255.161315918 252.931060791 249.840789795 247.046737671 245.901107788 246.428985596 246.447998047 246.0 245.171646118 243.478210449 240.627090454 235.753128052 234.275238037 233.426101685 231.885757446 231.539550781 231.723907471 231.903778076 232.708633423 233.525588989 234.804672241 237.045288086 236.895980835 237.480117798 237.63494873 239.323242188 240.017196655 240.206314087 240.942779541 227.6925354 231.57069397 234.321762085 234.765792847 234.980072021 237.446670532 239.690414429 241.056381226 240.968719482 241.734664917 246.112533569 256.632019043 264.483520508 269.160003662 269.754364014 269.78817749 271.036224365 272.355377197 273.559875488 274.738983154 275.81072998 276.765045166 277.606506348 278.473968506 279.26574707 279.918518066 280.602478027 281.23550415 281.811553955 282.475799561 283.116088867 283.816894531 284.739898682 285.667816162 286.535614014 287.392242432 288.168945312 288.858428955 289.57522583 290.303894043 290.819732666 291.203765869 291.570678711 291.815155029 291.989776611 292.162811279 292.336730957 292.611236572 292.969848633 293.311737061 293.874420166 294.786010742 295.800140381 296.805389404 297.743103027 298.4296875 298.936645508 299.277496338 299.365356445 299.252075195 298.911987305 298.26184082 297.431884766 296.654632568 296.269134521 296.604705811 297.351226807 297.802520752 297.949859619 298.218444824 298.437316895 298.277679443 298.036834717 297.848388672 296.922271729 296.285400391 296.533294678 296.943359375 296.963500977 296.846466064 296.569396973 295.785186768 294.130706787 292.306976318 291.127838135 289.927215576 288.010986328 286.417785645 284.919616699 283.560699463 282.311737061 280.990966797 278.703796387 276.042694092 274.424957275 272.455596924 269.57623291 266.955993652 265.47555542 265.186553955 263.885284424 262.196166992 260.45401001 259.110198975 258.576568604 258.165618896 257.340698242 256.584564209 255.72366333 254.567276001 251.279815674 250.843353271 249.933609009 248.671218872 248.691970825 247.541809082 244.638092041 243.631713867 242.426620483 241.757843018 241.287002563 240.391021729 240.191146851 238.835464478 238.735229492 238.733703613 238.776031494 239.617446899 247.432937622 250.174530029 252.775909424 254.659042358 256.15713501 257.352630615 258.187896729 258.840454102 259.198425293 259.298461914 260.527893066 266.282226562 269.795288086 271.489044189 271.460754395 271.606719971 272.408813477 273.1300354 273.939422607 275.012695312 276.096557617 277.008605957 277.811401367 278.558349609 279.221008301 279.808563232 280.37387085 280.872344971 281.391693115 282.030700684 282.722686768 283.582977295 284.629577637 285.61529541 286.624908447 287.680633545 288.591644287 289.377685547 290.083587646 290.648132324 290.950164795 291.185943604 291.382446289 291.396636963 291.361633301 291.408203125 291.515869141 291.764556885 292.086364746 292.379425049 292.91015625 293.762237549 294.571014404 295.275970459 295.813659668 296.106994629 296.447967529 296.952453613 297.415924072 297.824462891 298.173095703 298.223968506 298.066558838 298.064941406 298.282806396 298.421356201 298.389556885 298.351470947 298.500671387 298.649932861 298.339752197 297.583496094 295.993927002 294.787200928 293.892822266 295.787353516 296.856323242 296.943145752 296.604125977 296.21862793 295.596069336 294.494812012 292.930908203 291.347961426 289.622131348 286.779296875 282.894683838 280.246765137 277.842773438 275.894714355 274.529174805 273.263793945 271.435028076 269.145080566 266.669677734 264.512451172 262.600036621 260.604705811 258.906921387 257.566314697 255.659347534 253.003005981 250.7578125 250.205032349 250.919204712 250.514785767 249.267333984 247.410720825 244.860061646 240.447769165 235.973434448 236.001708984 234.370010376 233.021560669 231.48298645 231.003036499 231.648498535 231.957794189 233.17288208 234.719161987 235.84854126 235.091400146 235.463546753 236.159118652 239.070983887 240.101745605 239.009567261 239.152267456 237.483551025 240.562713623 243.274536133 245.16166687 246.748794556 247.953231812 249.082901001 250.3543396 251.196960449 251.287185669 254.109283447 263.752319336 268.993438721 271.2918396 271.279418945 271.495544434 272.685852051 273.699310303 274.753509521 275.768951416 276.600372314 277.406066895 278.104309082 278.661895752 279.176361084 279.703491211 280.214538574 280.666717529 281.172424316 281.768280029 282.324493408 283.025909424 283.958282471 284.883361816 285.944549561 287.147979736 288.204589844 289.091033936 289.878173828 290.551452637 290.997497559 291.390838623 291.784484863 291.976898193 291.998077393 292.016418457 292.16027832 292.444763184 292.724243164 292.983520508 293.565185547 294.493591309 295.455078125 296.312408447 297.032897949 297.602111816 298.048461914 298.348999023 298.597717285 298.88684082 298.976867676 298.595458984 297.886566162 297.262939453 297.185241699 297.59173584 297.9949646 298.162872314 298.233947754 298.204956055 297.938446045 297.711883545 296.45211792 295.411499023 294.378265381 296.284820557 296.826171875 296.889343262 296.655639648 296.312225342 295.647796631 294.415740967 292.616943359 290.878601074 289.208831787 286.827575684 283.374145508 280.666992188 278.289245605 276.223449707 274.065795898 272.115661621 270.103240967 267.856933594 265.412811279 262.847015381 260.869720459 258.816802979 256.763824463 254.559890747 251.541534424 248.652481079 246.674697876 246.125991821 246.678848267 246.489700317 245.898712158 244.979980469 243.375701904 240.026382446 235.409942627 234.631149292 232.976699829 231.763534546 231.215301514 231.490463257 232.043075562 232.988800049 233.593673706 236.450317383 237.192062378 236.776077271 237.661468506 237.655456543 239.239044189 240.01725769 240.200180054 240.941925049 227.624801636 231.576202393 234.46031189 235.300292969 235.661575317 238.036346436 240.325195312 241.265640259 240.830200195 241.318954468 245.845123291 257.25012207 264.810913086 269.493438721 270.082366943 269.971588135 271.002655029 272.326599121 273.528167725 274.680755615 275.746582031 276.732269287 277.586700439 278.439727783 279.229492188 279.884735107 280.521850586 281.120697021 281.720153809 282.392547607 283.004089355 283.722808838 284.663085938 285.562805176 286.40246582 287.256134033 287.99697876 288.670135498 289.389770508 290.053161621 290.537109375 290.974487305 291.366241455 291.568847656 291.711242676 291.882629395 292.09552002 292.41217041 292.781463623 293.193939209 293.958129883 294.997772217 296.018371582 296.971893311 297.782836914 298.301208496 298.67086792 298.96270752 299.124023438 299.204223633 299.027374268 298.392364502 297.563018799 296.832763672 296.430419922 296.665527344 297.381439209 297.878631592 298.031860352 298.143676758 298.078765869 298.142608643 297.171112061 296.842254639 295.664276123 296.518127441 296.785003662 296.988037109 297.021728516 296.880004883 296.603820801 295.859588623 294.23425293 292.455749512 291.352905273 290.026397705 288.090545654 286.331390381 284.657806396 283.306854248 281.842285156 280.674957275 278.317474365 275.965393066 274.329193115 272.234893799 269.700805664 266.897766113 265.925598145 265.079742432 263.144226074 261.426483154 260.225158691 259.199401855 258.534881592 257.973022461 256.861755371 256.043914795 255.195037842 253.912628174 251.295288086 250.924377441 250.390563965 249.15032959 249.086715698 247.613311768 244.767684937 243.752731323 241.955490112 242.786437988 241.579544067 240.443771362 240.182937622 238.828521729 238.69909668 238.766204834 238.773635864 239.623016357 247.423553467 250.195327759 252.880355835 254.924591064 256.579589844 257.909179688 258.850311279 259.446350098 259.668884277 259.504150391 260.56036377 266.371063232 269.929473877 271.713409424 271.698638916 271.734436035 272.44052124 273.145446777 273.910522461 274.957183838 276.045562744 276.994049072 277.819458008 278.552429199 279.18963623 279.752868652 280.284515381 280.79498291 281.343811035 281.964050293 282.635559082 283.510253906 284.548858643 285.502410889 286.531066895 287.576934814 288.414031982 289.166351318 289.847900391 290.319946289 290.572387695 290.83190918 290.973022461 290.854644775 290.773529053 290.827453613 290.961212158 291.295532227 291.770294189 292.246704102 293.003601074 293.927978516 294.66696167 295.239593506 295.664825439 295.928344727 296.281036377 296.73147583 297.156402588 297.648406982 298.033508301 297.977264404 297.796020508 297.984710693 298.404693604 298.672851562 298.709991455 298.656524658 298.69921875 298.533477783 297.974731445 296.615661621 295.746063232 295.304351807 294.943511963 296.629089355 297.272064209 297.350372314 296.95111084 296.297546387 295.467834473 294.560516357 293.087310791 291.504180908 289.537445068 286.254364014 282.825408936 280.190856934 277.861999512 275.788391113 274.351226807 273.045074463 271.480499268 269.400238037 267.020599365 264.879364014 262.628295898 260.481872559 258.749572754 257.362426758 255.005142212 252.607131958 250.93637085 250.794876099 251.154266357 250.541107178 249.144989014 247.333786011 244.801834106 239.849487305 236.879348755 236.421463013 234.538452148 233.006057739 231.352996826 230.931365967 231.798706055 232.451568604 233.157440186 236.192382812 236.117828369 235.173843384 235.348907471 236.17527771 239.106948853 240.140960693 239.044387817 239.165496826 237.421600342 240.626052856 243.491973877 245.545150757 247.361938477 248.625808716 249.858032227 251.004470825 251.599136353 251.438995361 254.39855957 264.006469727 269.249389648 271.610046387 271.662658691 271.775695801 272.732696533 273.697540283 274.708282471 275.701202393 276.554016113 277.379119873 278.070770264 278.611938477 279.117706299 279.632263184 280.132904053 280.611297607 281.137634277 281.714447021 282.269042969 282.970550537 283.857788086 284.771728516 285.867645264 287.050689697 288.028625488 288.900177002 289.713928223 290.377441406 290.829803467 291.23425293 291.529449463 291.55871582 291.534973145 291.627441406 291.841400146 292.118896484 292.432403564 292.885406494 293.751251221 294.730377197 295.575805664 296.317687988 296.954620361 297.442993164 297.804443359 298.125305176 298.572235107 299.034515381 298.999664307 298.362640381 297.643005371 297.211608887 297.209991455 297.633728027 298.15512085 298.387756348 298.402587891 298.080474854 297.575134277 296.549682617 296.201873779 295.788269043 295.449127197 296.795318604 297.127990723 297.157043457 296.888397217 296.39251709 295.569641113 294.433074951 292.625061035 290.972442627 289.102935791 286.221405029 283.296905518 280.613739014 278.229309082 276.110687256 273.601806641 271.57208252 269.708557129 267.810821533 265.271209717 262.760772705 260.646697998 258.591400146 256.52923584 254.018417358 250.741867065 248.343032837 246.729049683 246.346130371 246.842880249 246.583068848 245.905944824 244.891998291 243.15612793 239.339645386 235.424179077 234.361709595 232.612457275 231.452987671 230.917144775 231.349075317 232.02973938 233.447265625 233.560821533 237.432113647 237.367614746 236.763015747 237.820632935 237.579879761 239.209671021 240.02015686 240.190948486 240.943328857 227.622329712 231.582946777 234.624694824 235.826705933 236.369293213 238.641830444 240.870056152 241.558258057 240.703323364 240.926513672 245.627227783 257.448150635 265.010284424 269.687896729 270.38470459 270.246887207 270.989624023 272.272705078 273.488006592 274.618103027 275.674499512 276.698394775 277.580841064 278.433105469 279.216125488 279.864318848 280.446655273 281.01449585 281.631530762 282.296691895 282.883605957 283.630615234 284.597991943 285.43939209 286.217315674 287.052276611 287.784759521 288.489440918 289.231109619 289.893096924 290.404083252 290.84677124 291.113311768 291.191711426 291.356811523 291.610107422 291.866851807 292.174285889 292.536743164 293.06552124 294.060302734 295.219726562 296.22744751 297.110931396 297.805908203 298.202575684 298.462249756 298.681060791 298.894439697 299.177307129 299.113098145 298.412750244 297.56628418 296.963531494 296.660949707 296.85055542 297.49621582 298.017791748 298.192047119 298.007324219 297.65637207 296.778167725 296.529663086 296.32144165 296.178955078 296.807250977 297.016357422 297.133148193 297.155090332 297.089355469 296.721588135 295.924682617 294.342773438 292.884033203 291.659942627 289.967254639 288.237854004 286.264770508 284.543670654 282.857055664 281.31918335 279.989715576 277.913696289 275.750396729 274.12008667 272.08190918 269.648010254 267.34677124 266.434783936 265.119232178 262.752655029 261.103302002 260.245056152 259.308441162 258.386688232 257.727020264 256.513946533 255.618560791 254.721664429 253.285980225 251.499267578 251.215988159 250.930679321 250.201446533 249.141967773 247.670974731 244.715744019 244.161056519 242.285079956 242.931747437 241.852676392 240.509063721 240.290512085 238.741043091 238.672286987 238.788665771 238.771224976 239.628753662 247.427154541 250.217727661 252.983291626 255.212509155 257.016357422 258.456237793 259.482543945 260.080749512 260.157989502 259.760101318 260.599975586 266.381958008 269.977478027 271.874572754 271.902130127 271.849914551 272.445495605 273.133483887 273.865844727 274.893951416 275.996582031 276.977355957 277.811553955 278.529876709 279.146484375 279.693450928 280.219238281 280.75604248 281.324645996 281.947296143 282.630950928 283.507598877 284.477172852 285.336547852 286.297912598 287.294006348 288.129394531 288.943786621 289.621795654 289.991790771 290.159759521 290.34475708 290.384002686 290.269775391 290.266174316 290.323608398 290.470428467 290.936309814 291.573760986 292.215393066 293.171539307 294.129364014 294.781799316 295.193084717 295.443695068 295.604644775 295.917022705 296.324645996 296.770294189 297.403991699 297.855621338 297.764404297 297.602874756 297.838531494 298.210144043 298.465881348 298.654785156 298.830596924 298.961608887 298.569946289 297.525787354 296.640045166 296.526580811 296.800506592 296.891021729 297.198974609 297.43963623 297.446289062 297.023498535 296.15802002 294.376403809 294.582244873 293.167175293 291.183532715 289.087371826 285.551940918 283.041870117 280.53414917 278.024993896 275.881317139 274.193878174 272.902770996 271.484558105 269.645111084 267.351226807 265.106628418 262.723052979 260.460205078 258.638000488 256.950164795 254.749786377 252.740585327 251.671081543 251.470993042 251.374679565 250.549423218 249.020385742 247.272384644 244.272384644 241.268066406 238.602005005 237.324264526 235.258010864 233.773834229 231.390884399 231.02722168 232.390319824 233.2315979 233.861450195 236.830108643 236.377410889 235.292221069 235.256591797 236.135238647 239.16696167 240.179260254 239.053894043 239.179702759 237.410995483 240.666290283 243.737930298 245.894058228 247.90171814 249.355422974 250.603652954 251.689224243 251.989837646 251.739135742 254.778533936 264.237701416 269.407012939 271.824157715 271.962890625 272.056213379 272.804046631 273.710876465 274.661468506 275.617340088 276.495300293 277.349273682 278.039001465 278.58001709 279.079193115 279.567321777 280.062835693 280.583862305 281.124389648 281.693359375 282.277496338 282.999603271 283.84576416 284.740600586 285.831329346 286.939208984 287.861114502 288.749328613 289.563903809 290.200439453 290.653564453 290.991607666 291.10760498 291.055053711 291.092468262 291.218597412 291.44921875 291.849945068 292.363006592 292.999176025 293.945465088 294.889923096 295.715881348 296.431335449 296.938049316 297.227325439 297.474090576 297.79284668 298.257141113 298.683105469 298.603027344 298.0340271 297.467895508 297.044647217 296.830566406 297.123413086 297.792144775 298.300292969 298.47442627 298.097930908 297.262817383 296.491760254 296.456268311 296.702178955 296.938964844 297.198059082 297.380615234 297.353027344 297.07598877 296.480316162 294.890045166 294.49621582 292.70223999 290.876647949 288.930084229 285.559204102 283.375366211 280.939880371 278.337036133 276.068908691 273.423553467 271.214202881 269.400665283 267.670166016 265.283996582 262.82611084 260.538665771 258.388336182 256.288818359 253.27003479 250.212677002 248.377548218 247.263473511 246.71496582 246.971710205 246.69972229 245.968734741 244.827667236 242.830810547 239.626571655 236.102722168 234.362426758 232.478225708 231.539855957 230.731307983 231.34942627 232.607635498 234.038726807 234.184020996 237.869125366 237.534179688 236.779388428 237.720275879 237.53427124 239.237731934 240.047683716 240.181838989 240.942504883 227.580337524 231.540206909 234.828491211 236.352752686 237.133911133 239.221740723 241.376586914 241.795455933 240.616119385 240.606765747 245.458099365 257.488952637 264.915283203 269.6043396 270.542602539 270.529571533 271.0340271 272.198303223 273.424224854 274.557006836 275.617889404 276.664672852 277.577178955 278.438781738 279.213226318 279.840576172 280.397735596 280.960906982 281.588653564 282.254211426 282.848937988 283.612976074 284.540130615 285.277404785 285.985290527 286.817504883 287.594696045 288.364746094 289.144104004 289.813934326 290.281616211 290.604553223 290.725708008 290.808563232 291.074829102 291.360717773 291.614990234 291.990783691 292.430145264 293.026672363 294.125640869 295.403442383 296.483795166 297.287384033 297.72946167 297.83291626 297.920318604 298.11895752 298.390014648 298.744720459 298.752655029 298.166168213 297.481872559 296.944702148 296.528991699 296.535552979 297.058929443 297.691314697 298.177703857 298.065185547 297.254272461 296.228637695 296.196258545 296.486236572 296.74029541 296.957885742 297.153106689 297.236907959 297.297149658 297.305725098 296.651000977 296.006011963 294.534423828 293.20111084 291.869659424 289.670684814 288.306945801 286.58404541 284.647460938 282.763946533 281.052337646 279.334655762 277.614471436 275.659301758 274.231262207 272.317108154 269.818756104 267.615264893 266.59487915 264.873168945 262.441986084 260.970428467 260.480072021 259.424255371 258.47164917 257.519348145 256.330505371 255.311233521 254.402893066 253.055419922 251.785507202 251.70362854 251.207565308 250.219146729 249.14855957 247.76109314 245.41973877 244.640197754 243.158935547 243.402297974 242.297027588 240.632217407 240.242767334 238.713790894 238.667602539 238.79649353 238.770401001 239.62828064 247.434890747 250.230209351 253.082427979 255.468200684 257.45791626 259.011444092 260.078338623 260.69708252 260.594024658 260.041625977 260.661499023 266.244995117 269.932189941 271.912384033 272.029144287 271.957427979 272.435760498 273.100799561 273.813964844 274.835876465 275.959533691 276.960327148 277.78918457 278.489807129 279.094360352 279.632476807 280.168304443 280.731292725 281.321777344 281.969970703 282.688049316 283.580566406 284.511474609 285.301818848 286.195526123 287.13067627 287.946533203 288.744049072 289.326629639 289.566955566 289.664489746 289.784912109 289.797943115 289.819061279 289.949951172 290.022796631 290.250701904 290.851928711 291.536010742 292.252380371 293.314666748 294.253570557 294.764038086 295.003356934 295.11920166 295.228057861 295.514404297 295.830596924 296.163604736 296.704071045 297.463439941 297.026611328 296.945220947 297.267944336 297.783905029 298.297637939 298.774749756 299.147674561 299.353485107 298.891571045 297.568054199 296.687988281 296.579223633 296.977233887 297.234985352 297.373443604 297.58404541 297.591217041 297.18057251 296.336364746 294.602783203 294.801483154 292.710632324 289.816619873 288.880218506 288.014068604 285.642852783 281.581054688 278.706604004 276.352813721 274.475219727 273.011993408 271.554473877 269.740081787 267.548095703 265.2840271 262.905822754 260.60647583 258.662109375 256.844177246 254.805419922 253.39541626 252.936676025 252.485305786 251.576431274 250.526824951 248.905136108 247.20942688 244.892364502 241.268493652 239.261077881 239.04347229 236.915710449 235.241592407 231.694229126 231.304641724 233.971740723 235.187332153 234.866897583 237.355361938 236.719818115 235.428024292 235.19329834 236.020980835 239.195968628 240.209915161 239.066421509 239.194961548 237.48789978 240.687316895 243.760375977 246.333740234 248.474655151 250.073760986 251.375045776 252.320007324 252.34324646 252.088760376 255.242889404 264.368835449 269.476013184 271.938537598 272.18157959 272.284759521 272.881866455 273.723754883 274.610321045 275.527954102 276.4375 277.323242188 278.015625 278.563415527 279.058807373 279.516296387 280.013458252 280.570098877 281.117736816 281.699432373 282.346221924 283.107696533 283.942199707 284.845947266 285.923522949 286.94543457 287.830108643 288.728088379 289.459960938 289.969726562 290.353668213 290.608551025 290.646026611 290.672393799 290.806243896 290.915557861 291.163635254 291.712524414 292.347045898 293.077941895 294.129486084 295.150146484 295.952941895 296.486297607 296.705291748 296.735290527 296.834594727 297.01776123 297.258789062 297.507232666 297.76776123 297.117828369 296.764465332 296.475006104 296.442260742 296.956390381 297.795898438 298.426940918 298.647186279 298.473083496 297.227874756 296.493377686 296.465637207 296.754852295 297.082489014 297.398132324 297.621551514 297.578216553 297.28817749 296.684906006 295.073883057 294.634429932 292.29888916 289.723022461 288.895080566 287.730499268 285.485870361 281.875915527 278.74130249 276.25302124 273.472259521 271.166412354 269.244140625 267.428405762 265.235473633 262.865844727 260.51260376 258.248077393 255.754562378 252.795654297 250.074066162 248.982391357 247.961380005 247.356964111 247.018081665 246.733779907 245.974594116 244.801269531 242.847351074 239.368011475 236.375793457 235.117782593 233.284240723 232.268188477 230.729049683 231.488052368 233.903244019 235.471801758 234.947753906 238.20942688 237.714324951 236.787322998 237.654876709 237.472763062 239.258117676 240.096466064 240.178939819 240.926651001 227.553466797 231.569580078 235.0 236.816390991 237.876098633 239.782775879 241.816146851 241.975326538 240.569244385 240.280136108 245.284820557 257.373260498 264.552581787 269.267608643 270.509338379 270.735076904 271.122406006 272.121612549 273.339019775 274.491607666 275.573760986 276.633636475 277.568023682 278.439697266 279.200042725 279.799591064 280.353027344 280.931243896 281.572601318 282.262390137 282.910491943 283.696166992 284.552246094 285.199920654 285.872894287 286.734771729 287.56918335 288.362091064 289.079589844 289.626861572 289.958526611 290.176879883 290.310333252 290.542388916 290.912811279 291.204498291 291.500640869 291.984802246 292.486419678 293.15838623 294.413146973 295.75088501 296.672271729 297.14730835 297.253448486 297.126159668 297.133544922 297.317321777 297.495574951 297.666503906 297.720611572 297.165405273 296.777191162 296.460723877 296.245788574 296.402893066 296.941955566 297.600341797 298.285369873 298.608093262 297.282867432 296.221893311 296.154174805 296.444061279 296.710235596 297.041442871 297.327819824 297.399963379 297.397369385 297.32824707 296.576538086 295.990997314 294.276489258 292.326812744 291.713409424 290.938446045 289.339508057 287.124969482 285.06729126 283.039489746 281.12487793 278.975067139 277.231811523 275.636138916 274.318450928 272.387359619 269.953094482 267.730895996 266.677490234 264.7890625 262.405273438 261.398406982 260.462677002 259.356445312 258.255126953 257.256958008 256.096405029 255.039245605 254.050079346 253.0677948 251.976013184 251.850097656 250.975067139 250.023925781 249.263931274 247.937713623 246.297058105 244.980270386 243.835723877 244.045272827 242.738098145 240.803207397 240.14100647 238.749938965 238.661972046 238.799301147 238.777114868 239.603683472 247.431777954 250.250930786 253.181640625 255.740570068 257.892150879 259.580657959 260.651977539 261.252838135 261.033966064 260.27822876 260.708190918 265.317260742 269.778259277 271.787902832 272.063873291 272.037384033 272.427154541 273.050689697 273.76184082 274.789245605 275.931976318 276.939453125 277.757781982 278.445251465 279.046234131 279.576965332 280.119232178 280.692657471 281.293640137 281.966186523 282.733428955 283.665679932 284.618225098 285.437713623 286.318969727 287.185668945 287.916168213 288.573547363 288.974945068 289.114196777 289.230224609 289.365783691 289.454071045 289.668273926 289.939819336 290.067871094 290.404449463 291.068237305 291.693054199 292.456085205 293.567321777 294.314300537 294.525817871 294.637481689 294.798614502 294.942504883 295.104827881 295.11920166 295.10949707 295.333465576 295.371063232 295.390075684 295.271209717 295.904663086 296.694671631 297.730743408 298.655487061 299.261108398 299.650085449 299.435638428 297.924072266 296.94418335 296.655700684 296.977111816 297.28338623 297.481506348 297.738708496 297.75177002 297.375610352 296.2215271 295.472839355 295.210693359 293.682067871 292.443115234 291.537231445 290.612640381 288.423583984 284.514953613 279.998962402 276.996307373 274.999328613 273.340301514 271.678222656 269.767730713 267.852111816 265.528106689 263.156311035 260.658691406 258.684417725 256.516326904 255.021057129 254.385223389 253.436828613 252.642379761 251.735778809 250.282073975 248.511672974 246.910980225 244.777664185 242.078231812 239.893066406 238.960800171 237.350769043 235.63911438 231.870880127 231.836456299 234.732254028 236.912033081 236.682418823 237.663665771 237.14730835 235.57359314 235.092788696 236.237030029 239.081542969 240.224212646 239.074829102 239.214126587 237.472427368 240.711196899 244.111724854 246.749099731 249.098434448 250.807357788 252.149291992 252.934906006 252.698745728 252.494781494 255.757720947 263.583221436 269.446838379 271.926177979 272.319702148 272.469238281 272.956451416 273.72869873 274.558929443 275.441833496 276.386413574 277.306060791 278.005004883 278.562774658 279.0597229 279.495880127 279.998718262 280.569396973 281.110107422 281.724578857 282.450042725 283.258056641 284.121948242 285.07131958 286.149963379 287.110198975 287.965667725 288.802703857 289.363616943 289.708099365 290.026062012 290.239440918 290.321594238 290.511138916 290.766784668 290.919891357 291.251068115 291.850830078 292.429718018 293.21673584 294.463745117 295.490386963 295.994476318 296.133728027 296.088195801 295.940185547 295.803985596 295.651550293 295.560943604 295.600311279 295.317810059 295.341674805 295.053985596 295.121582031 295.91885376 296.872955322 297.908325195 298.649841309 299.011535645 298.795379639 297.487304688 296.68069458 296.550933838 296.712585449 297.086975098 297.524810791 297.848449707 297.822235107 297.536865234 296.755218506 295.590576172 294.872894287 293.256713867 292.108581543 291.159667969 289.948669434 287.649475098 284.0440979 279.755462646 276.505615234 273.766540527 271.421691895 269.086364746 267.187744141 265.221832275 262.725585938 260.492736816 258.133758545 255.520629883 252.376602173 250.361816406 249.280014038 248.188781738 247.324615479 247.020187378 246.496841431 245.701828003 244.5677948 242.604644775 239.496994019 236.60093689 235.039428711 233.527694702 232.157836914 230.738891602 231.800140381 234.28036499 236.472625732 236.406219482 238.203857422 237.929794312 236.788452148 237.72265625 237.912963867 239.199630737 240.140686035 240.179122925 240.911102295 227.542785645 231.548278809 235.18963623 237.328674316 238.586105347 240.364227295 242.196624756 242.122528076 240.455001831 240.012878418 245.176147461 256.246856689 263.87310791 268.633544922 270.26272583 270.848419189 271.227203369 272.057189941 273.235900879 274.416259766 275.534362793 276.607116699 277.553344727 278.43560791 279.176269531 279.7421875 280.302490234 280.898590088 281.542999268 282.277038574 283.010650635 283.826538086 284.63180542 285.250762939 285.935760498 286.823944092 287.671051025 288.385223389 288.928283691 289.295898438 289.517059326 289.746734619 290.021575928 290.413665771 290.853118896 291.194091797 291.578857422 292.089477539 292.553619385 293.365264893 294.858612061 296.111419678 296.559692383 296.577911377 296.515350342 296.37979126 296.287261963 296.237518311 296.119140625 295.991790771 295.446411133 295.37097168 295.167388916 295.323394775 295.954284668 296.362457275 297.00958252 297.688812256 298.517150879 298.907714844 297.731933594 296.504455566 296.262084961 296.405639648 296.713409424 297.167602539 297.57711792 297.651397705 297.561187744 297.39755249 296.571533203 295.916778564 294.740905762 293.807159424 293.101226807 292.297393799 290.727966309 288.428314209 285.954956055 283.560089111 281.432373047 279.049926758 276.87991333 275.303131104 274.167419434 272.305053711 269.884063721 267.717315674 266.488891602 264.528533936 262.731628418 260.991088867 260.037322998 258.930511475 257.81729126 256.74609375 255.604522705 254.731582642 253.872879028 253.06312561 252.238464355 251.935623169 251.089187622 250.150909424 249.295257568 248.144470215 246.793258667 246.33883667 245.234039307 244.681350708 243.232131958 241.044006348 240.211013794 239.11958313 238.664733887 238.781463623 238.783187866 239.581329346 247.431976318 250.262939453 253.274108887 256.015533447 258.305786133 260.100280762 261.201904297 261.686157227 261.406860352 260.563659668 260.76449585 264.617248535 269.50579834 271.353363037 271.880096436 272.051300049 272.430450439 272.990203857 273.714630127 274.754547119 275.908447266 276.90713501 277.717803955 278.413543701 279.014526367 279.522827148 280.03805542 280.572021484 281.125457764 281.769592285 282.553283691 283.556152344 284.616973877 285.558532715 286.488952637 287.266143799 287.83682251 288.29019165 288.558166504 288.78604126 289.121002197 289.397247314 289.625671387 290.003479004 290.351196289 290.511199951 290.836700439 291.34967041 291.89465332 292.883758545 294.005432129 294.336120605 294.219573975 294.346099854 294.514404297 294.398803711 294.221191406 293.883544922 293.256988525 293.295410156 293.231323242 293.238677979 293.171630859 293.16784668 293.844665527 295.83001709 296.935760498 298.043121338 299.200408936 299.562011719 298.596954346 297.395996094 296.757354736 296.920471191 297.334411621 297.616424561 297.808563232 297.828826904 297.50592041 296.14944458 296.36505127 295.692108154 294.85848999 294.067596436 293.265167236 292.125427246 290.174987793 287.172943115 282.185546875 278.018280029 275.440917969 273.615234375 271.812469482 269.802459717 268.148345947 265.951446533 263.525390625 260.92074585 258.711761475 256.438903809 254.861679077 254.048675537 252.959747314 252.417129517 251.501174927 249.492507935 247.209823608 245.991333008 244.363769531 242.275863647 239.914031982 238.696762085 237.230224609 235.829284668 232.154724121 232.626953125 236.213134766 238.017166138 236.915420532 237.601913452 237.661636353 235.763793945 235.100158691 236.704483032 239.072570801 240.222198486 239.086624146 239.2449646 237.462432861 240.654846191 244.030609131 247.140335083 249.627731323 251.498352051 252.837478638 253.477294922 253.064163208 252.924911499 256.246490479 263.189117432 269.318908691 271.665374756 272.305206299 272.58694458 273.026123047 273.713317871 274.495330811 275.357910156 276.343902588 277.304626465 278.015777588 278.589691162 279.100830078 279.535644531 280.027191162 280.5519104 281.046783447 281.698638916 282.503509521 283.393127441 284.341583252 285.365600586 286.435577393 287.324462891 288.083679199 288.761566162 289.167419434 289.484802246 289.874481201 290.121154785 290.275634766 290.577606201 290.924804688 291.234375 291.682922363 292.14855957 292.589935303 293.629455566 295.062286377 295.717437744 295.528106689 295.249023438 295.056365967 294.66998291 294.21786499 293.70715332 293.109436035 293.247192383 293.474365234 293.388549805 293.332885742 293.16708374 293.949920654 295.582458496 296.4815979 297.911468506 299.234893799 299.264038086 298.290588379 297.011535645 296.599273682 296.638916016 297.098999023 297.613800049 297.917022705 297.972076416 297.745910645 296.682006836 296.096710205 295.147979736 294.29196167 293.475860596 292.467376709 291.084228516 289.022155762 286.04019165 281.348449707 277.069610596 273.889190674 271.450500488 268.860717773 267.00479126 265.207855225 262.825836182 260.4559021 258.099945068 255.569793701 252.31829834 250.310821533 249.25012207 247.88861084 247.037811279 246.781280518 245.819763184 244.625640869 243.678543091 241.91166687 239.347824097 236.429595947 234.796066284 233.351501465 232.124435425 230.84425354 232.285766602 234.966949463 236.551132202 236.119522095 237.758041382 238.18309021 236.801452637 237.646469116 238.634338379 239.18762207 240.173355103 240.18258667 240.900131226 227.502883911 231.552902222 235.34928894 237.733627319 239.21913147 240.859405518 242.508255005 242.251922607 240.326065063 239.797515869 244.974853516 255.164611816 262.933532715 267.45413208 269.652648926 270.770050049 271.321655273 272.013702393 273.110351562 274.314147949 275.486633301 276.585662842 277.537536621 278.431304932 279.14932251 279.68145752 280.235656738 280.799072266 281.385162354 282.137023926 282.94744873 283.812011719 284.666717529 285.367736816 286.087493896 286.921173096 287.670257568 288.21194458 288.58605957 288.93536377 289.281890869 289.656402588 290.058502197 290.445983887 290.844543457 291.290588379 291.778656006 292.173126221 292.558837891 293.660461426 295.302612305 296.150695801 295.960754395 295.734680176 295.694824219 295.413970947 295.022613525 294.498321533 293.730438232 293.763946533 293.87588501 293.899627686 294.021362305 293.897247314 294.450775146 295.45425415 295.777099609 296.786651611 298.37991333 299.021881104 298.554748535 296.903442383 296.3097229 296.349456787 296.793060303 297.328063965 297.69519043 297.81463623 297.738189697 297.352325439 296.446685791 295.729125977 295.127807617 294.534545898 293.799041748 292.901275635 291.65512085 289.763000488 286.94720459 284.379547119 281.96875 279.397979736 276.824127197 275.069335938 273.87600708 272.201507568 269.600128174 267.752075195 266.411895752 264.360961914 262.7081604 261.2265625 260.141662598 258.582855225 257.399230957 256.182373047 254.8331604 254.094711304 253.445602417 252.780654907 252.168304443 252.000640869 251.187103271 250.066955566 249.396255493 248.395233154 246.809387207 246.858169556 245.65045166 245.152404785 243.83581543 241.326263428 240.258117676 239.79548645 238.60307312 238.713897705 238.789657593 239.573257446 247.420211792 250.274887085 253.371841431 256.274200439 258.722412109 260.602630615 261.723876953 262.156890869 261.759094238 260.7784729 260.726745605 263.484130859 269.238128662 270.717468262 271.364959717 271.896789551 272.432800293 272.953491211 273.677215576 274.726043701 275.879150391 276.864593506 277.683654785 278.406158447 278.997375488 279.46182251 279.889099121 280.281036377 280.683441162 281.226379395 282.008148193 283.062896729 284.208831787 285.203186035 286.145507812 286.891662598 287.455718994 287.950622559 288.393737793 288.910125732 289.442321777 289.803161621 290.129638672 290.593261719 290.993286133 291.216552734 291.402160645 291.631958008 292.169525146 293.329406738 294.181030273 294.184234619 294.06463623 294.024139404 293.575958252 293.102325439 292.272583008 292.105895996 292.83303833 294.105804443 294.841918945 295.089691162 294.651702881 293.766235352 293.210571289 293.482330322 294.981719971 296.249633789 298.260162354 299.34564209 299.174865723 297.856048584 296.905395508 296.774139404 297.232940674 297.578857422 297.643920898 297.709197998 297.15045166 296.419555664 296.510253906 295.935424805 295.315246582 294.729522705 293.985046387 292.911987305 291.42388916 288.976593018 285.150695801 279.489990234 276.589385986 274.388641357 272.136077881 270.031829834 268.408294678 266.318695068 263.916290283 261.288330078 258.685760498 256.584991455 254.849533081 253.397399902 251.999008179 251.562652588 250.712966919 247.819000244 243.969665527 243.274551392 242.813812256 242.540817261 239.123901367 238.287689209 237.021224976 235.498168945 232.551391602 233.499603271 236.867034912 238.774597168 237.810272217 237.080276489 238.208328247 236.033096313 235.130142212 236.65234375 239.086669922 240.224472046 239.116394043 239.275497437 237.390472412 240.788665771 244.387741089 247.666275024 250.199310303 252.125473022 253.448532104 253.901245117 253.39074707 253.360900879 256.709777832 262.245513916 269.227020264 271.173675537 272.028015137 272.547943115 273.049865723 273.670043945 274.417053223 275.282501221 276.313873291 277.319030762 278.046508789 278.635253906 279.167541504 279.594055176 280.00869751 280.383361816 280.760498047 281.418395996 282.314422607 283.33972168 284.44744873 285.511627197 286.476593018 287.234375 287.89175415 288.479553223 288.972747803 289.497924805 289.971496582 290.222137451 290.422729492 290.753112793 291.122436523 291.505126953 291.842346191 292.096496582 292.717987061 294.175750732 295.375732422 295.395355225 294.840545654 294.35949707 293.778137207 293.259857178 292.159301758 291.600708008 292.448486328 293.744873047 294.678070068 294.995513916 294.749023438 293.887115479 293.127502441 293.214324951 294.468353271 296.540710449 299.306854248 300.421813965 298.941894531 297.428161621 296.617401123 296.457946777 296.9609375 297.488922119 297.826812744 297.880859375 297.700317383 296.658843994 296.014770508 295.266082764 294.666381836 293.934051514 292.902038574 291.607696533 289.956085205 287.439453125 283.727935791 278.237915039 274.781402588 271.915588379 268.826934814 266.822937012 265.179840088 262.864318848 260.582183838 258.094787598 255.642227173 252.709976196 250.719238281 249.073181152 247.247360229 246.473312378 245.969665527 244.475234985 242.558227539 241.963241577 240.490280151 239.225738525 235.795578003 234.339569092 233.256027222 231.85824585 231.101028442 232.658691406 235.386230469 236.809661865 236.558746338 236.702667236 238.455291748 236.850982666 237.565704346 238.536026001 239.199203491 240.184951782 240.189682007 240.890792847 227.467254639 231.502670288 235.481109619 238.215286255 239.792495728 241.295425415 242.713287354 242.227844238 240.157440186 239.68711853 244.775985718 253.43409729 262.013641357 265.861999512 268.647155762 270.402038574 271.295257568 271.996734619 273.008850098 274.20111084 275.429595947 276.577697754 277.533325195 278.43069458 279.14239502 279.64074707 280.106414795 280.517791748 280.938201904 281.612670898 282.456695557 283.400543213 284.406982422 285.263305664 286.00869751 286.791625977 287.519989014 288.084594727 288.591125488 289.190979004 289.692016602 290.0625 290.401123047 290.684997559 291.020721436 291.477111816 291.878540039 292.199584961 292.873687744 294.322570801 295.622772217 295.795715332 295.287078857 294.87979126 294.420837402 293.908599854 292.685394287 292.107421875 292.809112549 294.228363037 295.192932129 295.394256592 295.197174072 294.372131348 293.854522705 293.55291748 294.093597412 295.466094971 298.275970459 300.469787598 299.212677002 297.470123291 296.385131836 296.176879883 296.69430542 297.262237549 297.697540283 297.757263184 297.765319824 296.95324707 296.079650879 295.403625488 294.980895996 294.485870361 293.783447266 293.016326904 292.143737793 290.69317627 288.399017334 285.452331543 283.052215576 280.298553467 277.147369385 275.165405273 273.787475586 272.155883789 269.507171631 267.81439209 266.365692139 264.480834961 262.824768066 261.38571167 259.874298096 258.182952881 256.816986084 255.680999756 254.330123901 253.517791748 253.006759644 252.801452637 252.410980225 252.049835205 251.477386475 250.315811157 249.523925781 248.686477661 248.06072998 247.436386108 246.480117798 245.464752197 244.478042603 241.68510437 240.352981567 239.84942627 238.534240723 238.626907349 238.797897339 239.567062378 247.40802002 250.274810791 253.458602905 256.520507812 259.126068115 261.017852783 262.159973145 262.546112061 262.042144775 260.949035645 260.695556641 263.233917236 268.702972412 270.155273438 270.517242432 271.524139404 272.388671875 272.929748535 273.643798828 274.685668945 275.832397461 276.81741333 277.65335083 278.396209717 278.966796875 279.372711182 279.665496826 279.848754883 280.031311035 280.453674316 281.285736084 282.395599365 283.534088135 284.53503418 285.539367676 286.436584473 287.227264404 288.032226562 288.811401367 289.489959717 290.018371582 290.410308838 290.859741211 291.41708374 291.912597656 292.269317627 292.420806885 292.51864624 293.103607178 294.053710938 294.258148193 293.800598145 293.44430542 293.309173584 291.737640381 289.640838623 290.566650391 292.820831299 294.786712646 296.902801514 298.03616333 298.219268799 298.145324707 296.672821045 295.052978516 294.151153564 293.925628662 294.563018799 297.339416504 299.256713867 299.460968018 298.051269531 296.961273193 296.647094727 297.096588135 297.459991455 297.712036133 297.821502686 296.619232178 296.817382812 296.471801758 295.959655762 295.347229004 294.728088379 293.962646484 292.949188232 291.898132324 290.387451172 287.739196777 283.441497803 279.784240723 276.557006836 273.10369873 270.477966309 268.46395874 266.372589111 264.118713379 261.45916748 258.888641357 256.527038574 254.502532959 252.763046265 251.174575806 249.940933228 248.732315063 245.649475098 242.486938477 241.744827271 242.593460083 242.902664185 239.018386841 237.679794312 235.588485718 234.772598267 232.999008179 235.835067749 238.936233521 239.564468384 238.302200317 236.696426392 237.074645996 236.355575562 235.163040161 236.506835938 239.123443604 240.23600769 239.153778076 239.302734375 237.369018555 240.771728516 244.354385376 247.968582153 250.754852295 252.697372437 253.974639893 254.297363281 253.694091797 253.763015747 257.157836914 262.326446533 268.698394775 270.451293945 271.29876709 272.259735107 273.002593994 273.598754883 274.325195312 275.207336426 276.284454346 277.33682251 278.083892822 278.684844971 279.22467041 279.604309082 279.868713379 280.011474609 280.214630127 280.818664551 281.83416748 283.012817383 284.232543945 285.302093506 286.162231445 286.890686035 287.598510742 288.318023682 289.069030762 289.774169922 290.177520752 290.400268555 290.762145996 291.270080566 291.748260498 292.150939941 292.323150635 292.507598877 293.463806152 294.967651367 295.446258545 294.74105835 293.88381958 293.490570068 291.871917725 290.087860107 290.697143555 292.558074951 294.700408936 296.206085205 297.620819092 298.6144104 298.637939453 297.475372314 295.55758667 293.875366211 293.736083984 295.11138916 298.814605713 300.414672852 299.613586426 297.678405762 296.599639893 296.297637939 296.797027588 297.31640625 297.735900879 297.889770508 297.170532227 296.613189697 295.880859375 295.263671875 294.613220215 293.761474609 292.700469971 291.500488281 290.25579834 288.576477051 285.955871582 281.74307251 277.705108643 273.820129395 269.721588135 266.946655273 265.082733154 262.840545654 260.736206055 258.43359375 255.682891846 253.08921814 250.779464722 248.841659546 246.898483276 245.867401123 245.094009399 243.308166504 241.55078125 240.743637085 239.89440918 239.003677368 235.638061523 233.873779297 232.421966553 231.674102783 231.418640137 234.358917236 236.575134277 237.208206177 236.590576172 235.948745728 237.090545654 236.915023804 237.492050171 238.300369263 239.245819092 240.181259155 240.201019287 240.881607056 227.486343384 231.504058838 235.598587036 238.629928589 240.345031738 241.702301025 242.761611938 242.013244629 239.949890137 239.528366089 244.580490112 252.555297852 260.567047119 263.980133057 267.156311035 269.741149902 271.125305176 271.971252441 272.938720703 274.089080811 275.362182617 276.575805664 277.53326416 278.41986084 279.138519287 279.565185547 279.862335205 280.04498291 280.240478516 280.795928955 281.677429199 282.711212158 283.862609863 284.858581543 285.67868042 286.573028564 287.518035889 288.40222168 289.302612305 290.128723145 290.538574219 290.703521729 290.982543945 291.353485107 291.719726562 292.027770996 292.142181396 292.42288208 293.479125977 295.027984619 295.735229492 295.239837646 294.328308105 293.750518799 292.229278564 290.105377197 290.779693604 292.866455078 295.115692139 297.267425537 298.182739258 297.730255127 296.957763672 296.280853271 295.340240479 294.179260254 293.667266846 294.820343018 298.951080322 301.314422607 300.401550293 297.940063477 296.475067139 296.040893555 296.542022705 297.138916016 297.616271973 297.718261719 297.185058594 296.529998779 295.778045654 295.194061279 294.748962402 294.153594971 293.359191895 292.58605957 291.987976074 291.152709961 289.758056641 287.468383789 285.160308838 282.064727783 278.190795898 275.55557251 273.744018555 272.185455322 269.899871826 267.864990234 266.37588501 264.526519775 262.813781738 261.080322266 259.583831787 258.043731689 256.767608643 255.448745728 254.001708984 253.145004272 252.940383911 252.913848877 252.782287598 252.178695679 251.809539795 250.728393555 249.65625 249.281280518 248.701873779 248.163330078 246.93170166 245.41078186 244.326522827 242.055633545 240.444702148 239.721755981 238.458770752 238.537826538 238.810836792 239.558395386 247.391143799 250.280883789 253.538665771 256.754974365 259.494873047 261.390563965 262.563140869 262.892089844 262.311035156 261.08493042 260.68258667 262.898681641 266.953308105 269.71105957 269.610626221 271.034515381 272.275115967 272.899688721 273.598419189 274.625274658 275.766174316 276.770965576 277.626190186 278.373046875 278.90536499 279.227416992 279.300109863 279.259460449 279.166931152 279.40322876 280.29586792 281.722625732 282.761169434 283.791534424 284.967315674 286.164367676 287.345855713 288.622772217 289.702545166 290.376068115 290.810424805 291.278961182 291.959472656 292.635192871 293.111877441 293.495147705 293.694641113 293.857391357 294.481994629 295.017700195 294.408721924 293.239044189 292.426605225 290.146789551 287.419158936 288.202850342 291.753265381 295.314208984 297.108734131 297.977172852 298.178436279 298.275726318 298.264678955 297.801330566 298.04901123 296.981445312 296.395294189 295.788360596 295.878967285 297.8019104 298.256347656 297.818969727 296.77722168 296.554931641 297.020629883 297.346405029 297.544708252 297.682556152 297.303039551 296.941040039 296.467773438 296.02722168 295.352111816 294.636657715 293.857666016 292.862976074 291.987030029 291.029754639 289.262237549 286.777587891 284.050598145 280.69418335 275.872741699 271.286590576 268.500915527 266.357971191 264.220550537 261.546203613 258.760955811 256.169342041 253.865188599 251.903152466 250.020019531 248.65927124 247.220397949 244.46987915 241.682632446 241.291122437 242.711166382 242.1381073 237.851470947 237.031097412 235.032730103 234.06703186 233.477294922 237.780014038 239.995849609 240.189804077 239.246795654 237.617324829 237.123748779 236.675811768 235.253875732 236.381637573 239.069290161 240.227752686 239.227508545 239.336517334 237.35635376 240.671661377 244.653793335 248.410507202 251.23991394 253.18939209 254.415496826 254.584899902 253.965408325 254.177688599 257.570770264 262.276367188 267.157104492 269.272644043 269.9140625 271.745391846 272.86114502 273.494781494 274.210601807 275.126251221 276.25378418 277.355285645 278.122802734 278.735626221 279.249969482 279.544006348 279.522705078 279.417510986 279.473693848 279.959136963 281.067321777 282.582000732 283.692810059 284.686004639 285.497070312 286.308898926 287.226348877 288.349487305 289.381225586 290.139984131 290.511047363 290.816314697 291.499145508 292.302154541 292.916687012 293.34274292 293.485900879 293.770324707 294.888793945 295.957611084 295.419769287 293.898345947 292.775665283 290.1953125 287.648132324 288.695831299 292.34677124 296.303924561 298.072601318 298.305084229 298.651245117 298.971130371 299.071380615 298.709442139 298.806060791 298.075195312 297.112609863 296.8621521 296.915557861 298.675842285 298.668151855 297.632232666 296.406280518 296.195861816 296.699615479 297.154205322 297.58770752 297.841247559 297.383636475 296.580963135 295.854797363 295.301727295 294.473144531 293.457000732 292.404663086 291.253356934 290.195129395 289.07635498 287.307250977 284.769622803 281.681427002 277.636230469 272.291381836 267.37588501 264.963104248 262.676269531 260.798065186 258.752502441 255.763946533 253.0650177 250.632919312 248.474899292 246.515533447 245.390396118 244.286209106 242.512130737 240.942184448 240.124816895 239.573944092 238.141021729 234.98991394 233.666412354 231.982254028 231.434417725 231.699172974 235.633987427 237.119827271 237.533905029 237.187271118 236.664047241 237.057128906 236.998138428 237.410430908 238.207565308 239.234298706 240.178878784 240.222869873 240.876495361 227.371185303 231.443252563 235.765914917 239.045120239 240.853317261 242.038208008 242.672439575 241.65246582 239.704559326 239.410446167 244.344528198 251.665802002 257.671783447 261.784606934 264.846496582 268.692443848 270.757354736 271.893157959 272.887115479 273.981231689 275.28338623 276.574279785 277.531036377 278.393920898 279.094116211 279.405548096 279.29675293 279.185699463 279.13394165 279.503723145 280.358978271 281.822296143 283.060241699 284.171417236 285.126525879 286.261566162 287.569915771 289.02230835 290.337036133 291.254669189 291.549530029 291.57333374 291.970306396 292.595794678 293.038635254 293.130554199 292.941619873 293.122039795 294.197235107 295.424194336 295.498748779 294.393951416 293.02822876 290.163421631 287.490539551 288.24710083 291.932159424 297.141052246 299.514434814 298.994445801 298.619812012 298.400604248 298.062713623 297.721191406 298.694793701 297.807342529 297.504272461 297.817962646 298.140045166 300.069915771 300.376464844 298.268310547 296.370849609 295.966369629 296.430053711 297.001708984 297.573272705 297.753875732 297.17755127 296.340423584 295.634460449 295.124786377 294.540161133 293.789520264 292.902313232 292.027984619 291.492980957 291.053375244 290.295654297 289.148925781 287.439910889 284.244689941 280.167602539 276.150817871 273.806945801 272.114379883 269.978881836 268.008880615 266.336547852 264.618286133 262.740142822 260.897613525 259.419647217 257.937469482 256.653900146 255.26121521 253.778442383 253.046264648 253.057571411 253.041381836 253.140899658 252.258132935 251.789382935 250.981246948 249.766265869 249.590301514 249.333786011 248.792785645 247.64906311 245.935958862 244.47492981 242.483886719 240.628051758 239.668243408 238.414276123 238.465438843 238.815155029 239.556152344 247.392654419 250.281311035 253.637298584 256.985137939 259.846832275 261.800994873 262.912109375 263.204284668 262.577850342 261.228302002 260.669525146 262.582244873 265.409698486 267.648590088 268.538726807 270.40512085 272.075256348 272.816589355 273.52255249 274.531890869 275.672546387 276.729248047 277.600280762 278.322296143 278.781829834 278.921173096 278.954376221 278.735351562 278.36618042 278.386749268 279.177764893 280.410949707 281.834564209 282.965576172 283.740936279 285.698028564 287.889556885 289.829681396 290.675323486 291.377349854 291.871734619 292.595092773 293.543426514 294.067657471 294.142364502 294.267425537 294.46194458 294.733093262 295.313659668 295.453399658 294.218048096 292.23538208 290.044708252 286.278808594 285.099365234 289.102294922 295.398040771 297.856811523 298.110046387 298.434234619 298.534545898 298.520599365 298.722229004 298.973419189 299.446777344 299.895599365 299.83505249 297.120361328 296.052520752 296.226837158 295.893096924 296.4140625 296.305938721 296.434875488 296.983978271 297.200012207 297.27645874 297.454803467 297.468383789 296.927124023 296.507202148 296.131652832 295.403289795 294.60168457 293.79888916 292.842712402 291.990509033 291.256134033 290.109710693 288.420349121 286.318939209 283.208221436 278.699035645 272.826751709 268.792510986 266.359924316 264.275299072 261.590362549 258.571350098 255.792205811 253.484893799 251.211029053 249.303024292 247.733642578 246.316970825 243.872634888 241.76184082 241.439208984 242.877807617 240.797103882 236.368881226 235.026687622 234.536590576 233.563796997 234.300888062 239.296676636 240.497024536 240.70199585 240.023132324 238.9349823 236.157974243 236.889877319 235.415252686 236.543243408 238.922668457 240.199432373 239.351135254 239.371902466 237.400360107 240.808944702 244.805908203 248.708190918 251.668502808 253.64352417 254.790161133 254.846679688 254.201980591 254.572433472 257.924865723 262.121337891 265.944793701 268.117248535 269.075775146 270.995635986 272.585021973 273.32019043 274.052062988 275.023406982 276.212738037 277.370300293 278.161407471 278.781951904 279.23147583 279.325439453 279.26953125 278.933807373 278.739440918 279.126861572 280.031982422 281.463806152 282.937896729 283.745330811 283.848052979 284.664245605 286.421630859 288.470733643 289.500244141 290.303344727 290.857452393 291.542236328 292.637207031 293.538360596 294.047943115 294.450317383 294.763916016 295.220275879 296.076660156 296.312255859 294.882354736 292.670654297 290.53012085 286.302307129 285.376434326 289.606811523 296.184051514 299.742736816 298.788665771 298.902893066 299.000762939 299.09286499 299.129974365 299.603363037 300.34588623 301.367523193 301.221405029 298.325897217 296.892547607 296.659332275 296.166015625 296.5078125 295.949554443 296.080047607 296.642944336 296.930175781 297.290863037 297.693634033 297.396087646 296.539093018 295.894256592 295.355865479 294.364562988 293.209472656 292.147796631 291.056793213 290.072540283 289.22265625 288.036743164 286.23147583 283.780609131 280.041595459 274.953277588 268.872589111 265.041687012 262.549713135 260.721191406 258.817382812 255.795806885 253.113433838 250.617706299 248.238616943 246.304733276 244.895736694 243.702301025 242.162338257 240.908325195 239.856933594 239.399475098 237.063690186 233.884689331 232.667984009 231.801727295 231.126708984 232.253509521 236.416427612 237.264221191 237.805892944 237.645599365 237.800811768 235.716079712 236.940704346 237.355987549 238.369018555 239.125823975 240.194763184 240.259689331 240.873336792 227.337402344 231.471054077 235.895996094 239.359375 241.322067261 242.291427612 242.433135986 241.12121582 239.462463379 239.413269043 244.14289856 250.674346924 254.859664917 258.442169189 262.620941162 267.03137207 270.006500244 271.659820557 272.8175354 273.866699219 275.179229736 276.56072998 277.51272583 278.325164795 278.929779053 278.894073486 278.603179932 278.332641602 278.016326904 278.170440674 278.80456543 279.937316895 281.68939209 283.019378662 282.862792969 284.814575195 287.29006958 289.627593994 290.85723877 291.810791016 292.276000977 292.542938232 293.268310547 294.116699219 294.558898926 294.622741699 294.494750977 294.549835205 295.007415771 295.334747314 294.736450195 293.010253906 290.319580078 286.08203125 284.997253418 288.848480225 295.283935547 299.789245605 298.934539795 298.743041992 298.585205078 298.505218506 298.310699463 298.685211182 299.291381836 300.760620117 301.760620117 299.782562256 298.432525635 298.515350342 298.090942383 297.495880127 295.950714111 295.899597168 296.38873291 296.796691895 297.360534668 297.709594727 297.053619385 296.199005127 295.599304199 295.113861084 294.365570068 293.481750488 292.527770996 291.616271973 291.032196045 290.726715088 290.363250732 289.711608887 288.467498779 285.771392822 281.433990479 277.157592773 274.113494873 272.204467773 269.659088135 268.062347412 266.485412598 264.89175415 262.976287842 261.069335938 259.460449219 258.042327881 256.614624023 255.263397217 253.996810913 253.374771118 253.471282959 253.272399902 253.251541138 252.683792114 251.876083374 251.068084717 249.997192383 249.821151733 249.889511108 249.311096191 248.237808228 246.707260132 244.035919189 242.897918701 240.859420776 239.798660278 238.307907104 238.416427612 238.811248779 239.556533813 247.387741089 250.285446167 253.694091797 257.178375244 260.179992676 262.181518555 263.184448242 263.448364258 262.793121338 261.393249512 260.685577393 262.286865234 264.744049072 266.668762207 267.852844238 269.735534668 271.769775391 272.644592285 273.404022217 274.417663574 275.566558838 276.689117432 277.580108643 278.27545166 278.644836426 278.682037354 278.946746826 278.883850098 278.479125977 278.377593994 279.103088379 280.07913208 280.881500244 282.10333252 283.794616699 285.952819824 288.236724854 290.397766113 291.719818115 291.953613281 292.479553223 293.406921387 294.239501953 294.333068848 293.603973389 293.46774292 293.598602295 293.797393799 294.080627441 293.871856689 292.417755127 290.692504883 286.784912109 284.102386475 285.964935303 291.694671631 298.444946289 298.00881958 298.254180908 299.071228027 298.870300293 298.69329834 299.706878662 299.293121338 300.252807617 301.689697266 302.137054443 299.243469238 296.900299072 295.724060059 294.964141846 295.46786499 295.946685791 296.320953369 296.914459229 296.979003906 296.897918701 296.081176758 296.947906494 296.802398682 296.47555542 296.147766113 295.468566895 294.687103271 293.916656494 292.960235596 292.051116943 291.349456787 290.485076904 289.312744141 287.744445801 284.974151611 280.485748291 275.410919189 270.150085449 267.021392822 264.427825928 261.466827393 258.255340576 255.280029297 252.823730469 250.622344971 249.074035645 247.268371582 246.048126221 244.025878906 242.349411011 242.696426392 243.646118164 239.304000854 235.798812866 234.019256592 233.512542725 233.926849365 235.987518311 239.932830811 240.92779541 241.415161133 240.959365845 239.592163086 235.593536377 237.352859497 235.572967529 236.451538086 238.842041016 240.191604614 239.461212158 239.409423828 237.356124878 240.782974243 244.782531738 249.011734009 252.062942505 253.973632812 255.049697876 255.010971069 254.442520142 254.971099854 258.203063965 261.832214355 265.02154541 267.101470947 268.11227417 270.236663818 272.220367432 273.081420898 273.858612061 274.89553833 276.153961182 277.378753662 278.206359863 278.824371338 279.163116455 279.240020752 279.324035645 279.204040527 278.950683594 279.152099609 279.960998535 280.797332764 281.638336182 282.16619873 282.605102539 283.649963379 285.372253418 287.100128174 288.603210449 289.96206665 290.692779541 291.687957764 292.729736328 293.311035156 293.298431396 293.523986816 293.877838135 294.288360596 294.681976318 294.416931152 292.896514893 291.279266357 287.38659668 284.264465332 286.206512451 292.156097412 299.262786865 298.591156006 298.749542236 299.827575684 300.080169678 300.094390869 300.513244629 300.674285889 302.168701172 303.081787109 302.980834961 299.657409668 297.294311523 295.971893311 295.12387085 295.421173096 295.541381836 295.964416504 296.585510254 296.660552979 296.806060791 296.682647705 297.037994385 296.38873291 295.840393066 295.312255859 294.348449707 293.216156006 292.134979248 291.006439209 290.051605225 289.294921875 288.314880371 286.972045898 285.094238281 281.768249512 276.74029541 271.324035645 265.950531006 262.904083252 260.662658691 258.599151611 255.758499146 253.002075195 250.366439819 248.028152466 246.197601318 244.675582886 243.595306396 242.361282349 241.187393188 240.369125366 239.895812988 235.834777832 233.313598633 232.237640381 231.736968994 231.538604736 233.369659424 236.542312622 237.370605469 238.154937744 238.208709717 238.305648804 235.123703003 237.156967163 237.318283081 238.104782104 239.039535522 240.238845825 240.295043945 240.872207642 227.317077637 231.385971069 235.992141724 239.655883789 241.718963623 242.438110352 242.013000488 240.58013916 239.207122803 239.471817017 243.98274231 249.620422363 253.132492065 256.20703125 260.832641602 265.23135376 268.882141113 271.159362793 272.663970947 273.745727539 275.064544678 276.510772705 277.467803955 278.221252441 278.610595703 278.342468262 278.367156982 278.251739502 277.88571167 277.821807861 278.343017578 279.097320557 279.987243652 280.923034668 282.023498535 283.910491943 286.024047852 288.16885376 289.800323486 291.099456787 291.664550781 292.259643555 293.118591309 293.761108398 293.823883057 294.057128906 294.414611816 294.751831055 294.840393066 294.430755615 293.222473145 291.499786377 286.934295654 283.668060303 285.63180542 291.30657959 298.216369629 298.650390625 298.331756592 298.433502197 298.705108643 299.017822266 299.065979004 299.71472168 300.311676025 302.594787598 303.633911133 301.351806641 298.563110352 297.42489624 296.867218018 296.443847656 295.559875488 295.848999023 296.385528564 296.534759521 296.883605957 297.275085449 296.727478027 295.994842529 295.519134521 295.038818359 294.265075684 293.414581299 292.501495361 291.530822754 290.826293945 290.458953857 290.151794434 289.759185791 288.898529053 286.582763672 282.47366333 278.369232178 274.821624756 272.515228271 269.842376709 267.957885742 266.578552246 265.205047607 263.179260254 261.22946167 259.688354492 258.208251953 256.889221191 255.610397339 254.474746704 254.330490112 254.276077271 253.594985962 253.186035156 252.804885864 252.195831299 251.201339722 250.313751221 250.232879639 250.27116394 249.779312134 248.724182129 247.103302002 243.686004639 243.40007019 241.115890503 239.647216797 238.107879639 238.386764526 238.825515747 239.559921265 247.374389648 250.277526855 253.754241943 257.382354736 260.49810791 262.525024414 263.388824463 263.565856934 262.955505371 261.594207764 260.796875 262.092071533 264.195953369 265.996948242 267.35534668 269.327270508 271.299743652 272.371765137 273.236419678 274.272644043 275.424316406 276.617095947 277.551177979 278.255187988 278.541748047 278.79864502 279.318328857 279.623016357 279.459533691 279.529602051 280.220031738 281.069458008 282.104522705 283.072692871 284.898376465 287.166320801 289.420715332 290.918304443 291.864807129 292.872436523 293.582641602 294.213989258 294.289489746 292.819732666 291.875457764 291.747741699 291.907928467 292.206329346 292.210479736 291.733062744 290.18270874 287.069213867 284.492889404 284.62701416 288.770294189 295.258880615 298.93258667 298.108734131 298.443206787 298.844604492 298.611816406 298.107910156 298.179931641 298.480102539 300.113525391 301.862976074 302.70614624 301.971832275 299.315338135 297.06817627 295.89831543 295.26083374 295.661682129 296.279205322 296.879394531 296.874328613 296.707122803 295.686126709 296.803588867 296.674621582 296.440216064 296.138580322 295.510559082 294.798370361 294.090148926 293.1668396 292.242431641 291.544769287 290.743865967 289.750183105 288.490783691 286.138519287 282.006866455 277.204589844 273.373565674 268.253265381 264.573822021 261.218200684 258.046173096 255.012268066 252.189331055 249.908416748 248.775726318 247.40411377 246.045303345 244.569656372 243.970825195 244.083145142 244.043289185 238.448654175 235.18057251 233.988555908 233.617218018 234.667037964 237.777755737 240.52973938 241.446304321 242.071258545 241.216369629 241.583648682 236.139022827 237.573867798 235.757003784 236.366516113 238.794906616 240.183792114 239.548278809 239.442779541 237.375762939 240.634368896 244.999694824 249.272506714 252.396682739 254.270462036 255.30921936 255.134246826 254.657470703 255.323913574 258.421875 261.494110107 263.953735352 266.118835449 267.468811035 269.681915283 271.784423828 272.774047852 273.630340576 274.726104736 276.050231934 277.361541748 278.245727539 278.864379883 279.106445312 279.438079834 279.765258789 280.050811768 279.929840088 280.072113037 280.622741699 281.21963501 281.907836914 282.166717529 282.972106934 284.441650391 286.33102417 287.310424805 287.996185303 289.297454834 290.280273438 291.23626709 291.723388672 291.288085938 291.551055908 291.50579834 291.708526611 292.310272217 292.562225342 292.192840576 290.819732666 287.957885742 284.850585938 284.702026367 288.986785889 296.088317871 299.705352783 298.52243042 298.852142334 299.968444824 300.206939697 299.203338623 300.266387939 301.489227295 302.903533936 303.807769775 304.157196045 302.39944458 299.690460205 297.522644043 296.110717773 295.10925293 295.235748291 295.905273438 296.563476562 296.542694092 296.496734619 296.026916504 296.6953125 296.252838135 295.807403564 295.306915283 294.419342041 293.382995605 292.315460205 291.154724121 290.213623047 289.495849609 288.520690918 287.329498291 285.816772461 282.965759277 278.346435547 273.281555176 269.363342285 263.944030762 260.622131348 258.301147461 255.753387451 253.056945801 250.236129761 247.656509399 245.939697266 244.539123535 243.77104187 242.919708252 242.227416992 241.207778931 240.002349854 235.291122437 233.063522339 232.399978638 232.042068481 232.184967041 234.528671265 236.661499023 237.458526611 238.34552002 238.255111694 240.20010376 235.207046509 237.102355957 237.247817993 237.868103027 238.968215942 240.280731201 240.334259033 240.869232178 227.310134888 231.395553589 236.107971191 239.988372803 242.074295044 242.51385498 241.529510498 239.979980469 238.952087402 239.605560303 243.825576782 248.62663269 251.542938232 254.279464722 259.231140137 263.566467285 267.493927002 270.403625488 272.381530762 273.588104248 274.910736084 276.401428223 277.390136719 278.114471436 278.314422607 278.2293396 278.48046875 278.765869141 278.489807129 278.427581787 278.846008301 279.52734375 280.472869873 281.02722168 282.255767822 284.124298096 286.1121521 287.271514893 287.970489502 288.943756104 289.55166626 290.153076172 290.717224121 290.441192627 291.137817383 291.427154541 292.01550293 292.936523438 293.20501709 292.662261963 291.177001953 287.986785889 284.136566162 283.797058105 288.227386475 294.767089844 298.40725708 298.2394104 298.274963379 298.63092041 298.830566406 299.06741333 298.875762939 299.173217773 300.118530273 302.843109131 304.203308105 304.013336182 300.82333374 298.611541748 297.480773926 295.938018799 295.217315674 295.848144531 296.394592285 296.391357422 296.522949219 296.466552734 296.330963135 295.810821533 295.45098877 295.007720947 294.276672363 293.508850098 292.653259277 291.666015625 290.892700195 290.436279297 289.998657227 289.586791992 288.91293335 286.934020996 283.144989014 278.8934021 276.561889648 273.499694824 270.278106689 268.191467285 266.91986084 265.365905762 263.292358398 261.44519043 259.921875 258.577514648 257.267120361 256.114379883 255.511444092 255.356964111 254.957595825 253.883880615 253.229797363 252.781524658 252.248321533 251.413009644 250.761230469 250.728103638 250.545349121 250.108428955 248.959732056 248.586776733 244.27557373 243.769058228 241.35168457 239.380615234 237.924560547 238.355178833 238.851974487 239.561935425 247.36076355 250.270339966 253.808532715 257.572357178 260.779052734 262.766540527 263.547393799 263.722869873 263.116119385 261.830108643 260.954223633 261.954589844 263.851501465 265.477203369 267.450897217 269.351257324 270.733795166 271.995758057 273.016265869 274.085906982 275.221740723 276.484832764 277.498931885 278.261199951 278.576843262 279.108642578 280.348815918 280.95501709 281.078918457 281.389221191 282.136779785 283.172943115 283.962982178 284.881103516 286.374450684 288.299255371 290.434906006 291.287902832 291.962097168 292.657958984 293.323608398 293.789916992 292.951660156 291.01272583 289.116088867 287.999298096 287.683624268 287.434539795 287.239349365 286.551391602 285.275115967 284.19229126 284.397918701 287.649780273 292.978210449 298.493041992 298.67755127 298.424438477 299.039276123 298.608764648 297.977325439 297.749176025 297.9190979 298.115692139 299.333374023 301.020812988 301.791778564 302.74609375 300.676116943 298.382141113 296.35748291 295.583618164 295.63961792 296.262817383 296.864227295 296.877655029 296.727081299 296.324462891 296.817321777 296.617401123 296.438934326 296.127410889 295.518615723 294.861877441 294.20401001 293.347198486 292.455657959 291.74597168 290.98550415 290.0496521 288.917175293 286.870391846 283.286315918 278.887329102 275.178924561 270.905273438 264.884216309 261.133514404 258.069824219 255.077331543 251.969970703 249.64503479 248.692230225 247.253051758 245.894592285 245.158050537 246.594497681 246.783813477 244.226409912 238.744308472 235.261779785 233.960571289 234.429138184 235.852020264 239.402114868 241.073364258 242.091400146 242.703811646 241.982681274 242.487258911 235.998657227 237.539154053 236.019195557 236.282546997 238.80430603 240.185424805 239.6171875 239.472763062 237.303863525 240.810195923 244.941421509 249.528320312 252.712097168 254.555343628 255.421112061 255.220870972 254.892501831 255.725601196 258.651763916 261.195983887 263.122772217 265.29309082 267.307006836 269.382995605 271.31463623 272.390686035 273.344329834 274.50189209 275.881988525 277.297302246 278.262115479 278.900512695 279.193695068 279.777954102 280.860626221 281.382141113 281.476806641 281.666259766 282.195739746 282.726867676 282.98223877 283.260498047 284.312561035 285.909759521 287.980682373 288.489776611 288.559509277 289.000640869 289.73550415 290.267974854 290.242034912 289.704040527 289.180877686 288.205963135 287.871429443 287.897827148 287.628479004 287.183319092 286.057678223 284.672607422 284.453704834 287.704406738 292.980621338 299.047485352 298.755737305 299.322814941 300.50881958 299.161224365 298.468811035 298.741210938 299.532806396 300.787994385 302.328796387 303.647918701 304.051849365 303.726593018 301.116668701 298.66619873 296.787017822 295.685394287 295.239440918 295.869171143 296.54208374 296.539672852 296.401885986 296.265319824 296.563415527 296.195495605 295.82800293 295.339508057 294.51272583 293.557922363 292.516448975 291.366607666 290.42779541 289.711730957 288.77633667 287.655975342 286.292022705 283.791320801 279.786346436 275.18170166 271.271820068 266.617462158 260.95111084 258.112243652 255.970581055 253.047317505 250.163238525 247.462265015 245.781585693 244.133926392 243.999206543 243.568161011 244.029937744 243.422149658 240.035873413 235.805114746 233.467391968 232.585220337 232.739242554 232.981048584 235.489364624 236.670089722 237.500579834 238.376205444 239.272216797 240.810577393 234.848983765 236.879776001 237.236755371 237.813781738 238.944610596 240.31539917 240.37727356 240.864639282 227.251571655 231.377532959 236.173110962 240.200286865 242.428024292 242.461578369 240.949951172 239.308929443 238.70803833 239.756164551 243.674301147 247.599853516 250.165100098 252.684570312 258.004211426 261.954345703 265.856018066 269.367645264 271.930969238 273.365997314 274.697174072 276.211914062 277.270782471 278.021728516 278.10748291 278.303985596 279.595153809 280.392730713 279.987945557 279.85635376 280.32824707 281.030212402 281.518554688 282.110321045 283.29498291 284.871124268 286.921569824 287.391998291 287.553222656 287.098175049 287.006622314 287.43737793 287.320739746 286.494628906 285.822357178 285.05065918 285.015899658 285.876068115 286.777862549 286.535888672 285.095245361 283.810852051 283.483062744 286.807281494 292.108551025 296.935180664 298.300750732 298.246276855 299.014251709 298.9034729 298.577850342 298.400177002 298.646881104 298.949310303 300.227905273 301.841461182 303.965484619 305.116851807 302.243865967 299.607116699 297.67666626 296.044189453 295.214050293 295.876831055 296.398651123 296.375274658 296.389587402 296.402770996 296.157867432 295.723144531 295.427185059 295.004669189 294.321228027 293.585845947 292.745574951 291.787353516 290.999359131 290.473114014 289.966888428 289.518859863 288.880493164 287.103271484 283.694915771 279.84161377 277.526306152 275.13482666 271.272155762 268.464813232 267.188781738 265.576049805 263.479522705 261.616577148 260.206237793 258.951019287 257.814849854 256.754241943 256.931396484 256.87689209 255.730575562 254.229141235 253.381515503 252.866409302 252.343460083 251.771194458 251.366516113 251.325881958 250.854003906 250.249145508 249.867263794 249.127456665 244.333282471 244.00177002 241.647109985 239.239273071 237.815567017 238.318084717 238.890182495 239.561584473 247.362609863 250.267059326 253.836242676 257.730895996 260.994506836 262.979858398 263.679626465 263.865814209 263.330078125 262.047210693 261.191894531 261.962982178 263.554901123 265.05355835 266.782745361 269.159790039 270.296936035 271.533355713 272.723876953 273.827484131 274.92868042 276.228759766 277.389343262 278.273773193 278.815979004 279.825164795 280.796936035 281.621063232 282.408203125 283.259735107 284.407623291 285.59487915 286.481933594 287.35736084 289.170410156 290.542602539 292.153717041 293.067962646 293.4347229 293.823242188 294.72543335 295.217681885 294.371948242 291.757202148 289.063323975 286.913513184 285.506896973 284.38494873 284.040985107 283.883056641 283.265014648 284.067474365 287.25378418 292.247741699 297.97543335 299.328979492 299.150909424 299.10043335 298.893066406 298.184204102 297.941040039 298.154876709 298.350891113 298.740264893 299.483734131 300.231903076 300.864471436 300.855895996 299.688323975 298.307556152 296.829650879 295.952606201 295.739532471 296.283782959 296.828521729 296.85559082 296.792114258 296.755310059 296.818511963 296.613616943 296.423278809 296.05960083 295.437988281 294.821105957 294.215881348 293.443023682 292.61730957 291.892242432 291.174041748 290.338897705 289.298034668 287.472229004 284.351898193 280.458831787 276.935211182 272.798217773 265.354431152 261.381286621 258.878692627 256.109771729 252.173950195 249.454193115 248.382843018 246.744155884 245.536987305 245.56199646 246.806365967 247.364089966 245.212173462 240.681655884 236.635223389 235.097000122 236.753295898 238.955154419 240.699050903 241.809509277 242.781402588 243.301223755 242.774459839 242.908477783 237.73487854 238.28515625 236.312896729 236.125396729 238.773422241 240.203765869 239.663024902 239.505111694 237.305297852 240.786361694 245.115524292 249.706878662 252.979782104 254.72718811 255.441696167 255.298355103 255.156219482 256.14666748 258.852386475 260.967041016 262.602752686 264.557159424 266.768096924 269.1355896 270.598175049 271.903594971 272.944091797 274.181518555 275.609588623 277.121826172 278.219604492 278.93939209 279.432312012 280.534698486 281.395111084 282.05178833 282.66506958 283.185974121 284.039520264 284.701690674 284.881622314 285.360107422 286.936309814 288.197418213 289.393707275 290.002593994 290.025177002 290.339233398 290.805328369 291.452453613 291.27532959 290.081756592 288.601379395 287.202453613 286.351196289 285.871246338 285.39352417 285.270935059 283.915222168 284.174316406 287.278045654 292.244354248 298.462005615 300.685974121 300.001922607 300.468383789 300.226409912 298.51663208 298.102935791 298.725036621 300.533172607 300.84197998 301.236206055 302.067260742 302.696044922 302.097045898 300.117706299 298.375213623 296.937469482 295.772918701 295.356689453 295.892608643 296.493011475 296.514282227 296.384216309 296.473175049 296.48135376 296.182769775 295.837371826 295.342346191 294.566925049 293.676239014 292.689178467 291.577880859 290.626098633 289.886993408 289.030059814 288.018768311 286.760559082 284.523101807 280.991668701 276.833312988 272.991912842 268.557373047 261.351287842 258.261383057 256.314178467 253.550033569 250.114089966 247.2162323 245.410675049 243.827774048 243.994384766 243.792037964 243.992095947 243.91204834 241.056747437 237.733398438 234.795928955 233.552322388 234.291687012 235.442947388 236.212860107 236.851654053 237.699310303 238.288009644 239.446289062 241.004547119 236.386795044 237.47984314 237.265792847 237.388442993 238.902313232 240.369140625 240.413360596 240.861343384 227.207931519 231.333877563 236.232528687 240.417953491 242.687896729 242.352340698 240.32119751 238.591766357 238.511276245 240.029083252 243.553253174 246.821289062 249.082214355 251.492141724 255.804412842 260.300262451 263.937561035 267.89630127 271.175079346 273.007659912 274.380371094 275.882598877 277.070495605 277.945587158 278.210113525 279.081695557 280.27130127 281.240966797 281.832336426 281.666168213 282.510742188 283.322052002 283.509460449 284.061920166 285.752410889 286.705963135 287.913208008 288.789276123 288.713775635 288.418670654 288.104095459 288.16595459 287.445678711 285.866149902 284.316223145 282.722015381 281.70715332 281.772583008 282.355560303 282.597412109 281.738922119 282.7215271 286.200866699 291.402008057 296.57699585 298.171264648 298.349731445 298.465606689 298.782196045 298.535522461 298.21862793 298.389373779 298.828979492 299.541687012 300.713745117 300.585906982 302.943756104 303.175842285 301.33404541 299.274291992 297.53692627 295.918365479 295.384246826 295.92980957 296.376739502 296.397583008 296.381958008 296.422485352 296.114013672 295.753479004 295.420013428 294.957794189 294.325714111 293.613739014 292.779876709 291.861816406 291.081756592 290.49508667 289.967254639 289.514648438 288.876190186 287.263061523 284.300689697 280.831054688 278.497497559 276.069396973 272.253692627 268.854034424 267.477294922 266.057952881 263.739959717 261.80255127 260.424926758 259.307983398 258.200714111 257.169921875 257.075592041 257.272277832 256.540313721 255.183288574 253.853149414 253.131149292 252.762542725 252.783294678 252.020401001 251.888442993 251.169158936 250.211166382 249.907577515 249.404556274 245.472900391 244.635467529 241.956817627 239.139160156 237.754745483 238.335327148 238.921844482 239.562942505 247.361572266 250.262435913 253.87600708 257.857635498 261.198486328 263.099914551 263.764801025 263.936218262 263.517150879 262.346038818 261.680633545 262.128967285 263.355133057 264.747009277 266.143463135 267.481109619 269.673095703 271.188354492 272.428588867 273.567565918 274.635009766 275.906402588 277.207305908 278.23526001 279.124389648 280.17578125 281.066223145 282.023681641 282.975341797 284.356262207 285.528076172 286.370056152 288.075653076 289.519897461 291.049224854 292.85067749 294.355041504 295.077697754 294.709686279 295.239105225 296.343597412 296.824707031 296.617034912 294.962249756 292.285430908 289.869506836 287.281433105 285.623657227 285.046478271 284.469207764 284.897735596 287.470062256 291.726867676 297.20111084 301.125518799 300.367126465 299.67199707 298.895629883 298.186279297 297.960632324 298.119476318 298.474334717 299.065429688 299.784545898 300.259613037 300.42868042 299.470245361 297.844055176 297.065460205 297.284515381 296.999481201 296.050506592 295.901519775 296.439575195 296.796508789 296.69921875 296.663238525 296.770050049 296.742218018 296.541687012 296.333496094 295.936553955 295.311553955 294.696228027 294.119537354 293.450744629 292.704742432 291.986938477 291.327941895 290.597167969 289.615081787 287.983520508 285.304077148 281.785919189 277.995330811 273.005523682 266.021026611 262.458496094 260.622619629 258.94821167 252.894607544 249.465591431 247.801940918 246.192169189 245.120742798 245.124526978 246.282424927 247.762908936 246.905044556 241.419754028 240.329116821 236.98210144 239.773666382 241.659927368 241.719573975 242.577560425 243.385269165 243.839736938 243.581161499 243.371551514 238.642822266 239.03616333 236.614181519 236.010177612 238.6587677 240.204650879 239.694778442 239.542053223 237.277420044 240.597961426 245.254821777 249.890365601 253.184234619 254.85105896 255.444320679 255.40423584 255.446960449 256.533203125 259.11819458 260.855895996 262.227844238 263.905548096 265.823638916 267.640930176 269.87677002 271.446685791 272.549041748 273.849853516 275.319610596 276.847503662 278.075866699 278.929779053 279.739715576 280.834564209 281.638336182 282.397888184 283.144012451 284.17868042 285.200866699 285.804168701 286.678497314 287.302246094 288.378265381 289.889160156 291.21786499 292.121612549 292.058746338 292.630432129 293.627166748 294.259857178 294.525390625 292.939178467 290.859619141 288.94644165 287.711669922 286.478973389 285.860473633 284.898376465 285.159118652 287.738861084 291.869995117 296.834960938 301.287475586 301.724975586 300.62487793 299.180023193 298.466766357 298.197296143 298.452789307 300.33807373 302.265625 302.74810791 302.687072754 302.321716309 301.177398682 298.698730469 297.454040527 297.331054688 296.948059082 295.840637207 295.553955078 296.054779053 296.443328857 296.356506348 296.240509033 296.361999512 296.359680176 296.09475708 295.761169434 295.282226562 294.565246582 293.7215271 292.808898926 291.782531738 290.828643799 290.050170898 289.278259277 288.363861084 287.190948486 285.202270508 282.069122314 278.126556396 273.881347656 268.75970459 261.852081299 258.90145874 257.417816162 255.156417847 250.54737854 247.283538818 245.080947876 243.602813721 243.695114136 243.479248047 243.21887207 244.085647583 243.441711426 238.425933838 237.910095215 234.749511719 236.178970337 237.403717041 236.743240356 237.047912598 237.937957764 238.220443726 239.764663696 241.255874634 236.909881592 238.038070679 237.300018311 236.937057495 238.804428101 240.407424927 240.444381714 240.859924316 227.132080078 231.272491455 236.253173828 240.627426147 242.91708374 242.203109741 239.659011841 237.885452271 238.347915649 240.26725769 243.546661377 246.343185425 248.164581299 250.660766602 254.08265686 257.073425293 261.91116333 266.394104004 270.260925293 272.56237793 274.029876709 275.488922119 276.80682373 277.860961914 278.601257324 279.501617432 280.574768066 281.728607178 282.55770874 283.324462891 284.328918457 285.028808594 285.61114502 286.0 287.246917725 288.620117188 289.762573242 290.446929932 290.401367188 290.254394531 290.840881348 290.922637939 290.423095703 288.833648682 287.224822998 285.514770508 283.850250244 283.039337158 282.949829102 282.365356445 283.292907715 286.634002686 291.023803711 296.009674072 299.024383545 298.508056641 298.118560791 298.396087646 298.255767822 298.179779053 298.427825928 298.819702148 299.418304443 301.097625732 301.542694092 301.446472168 301.038238525 299.460266113 298.81552124 298.317626953 297.651306152 296.10534668 295.612030029 296.047821045 296.327911377 296.269134521 296.233459473 296.241455078 296.074035645 295.774230957 295.355407715 294.839385986 294.273223877 293.605682373 292.791503906 291.913299561 291.13180542 290.49911499 289.988433838 289.532653809 288.871429443 287.413543701 284.868438721 281.696655273 278.855712891 276.196838379 272.804290771 269.468444824 268.002075195 266.315155029 264.146270752 261.995513916 260.597320557 259.57144165 258.455169678 257.343719482 257.126739502 257.513397217 257.538391113 255.794662476 254.79019165 253.613555908 252.899230957 253.467910767 252.890319824 252.353424072 251.326721191 250.09135437 250.149887085 249.618209839 246.084579468 245.331008911 242.237564087 238.839111328 237.730743408 238.368484497 238.953414917 239.566955566 247.3565979 250.244308472 253.909454346 257.966125488 261.398529053 263.195281982 263.863250732 264.04776001 263.693450928 262.69909668 262.152160645 262.431152344 263.404022217 264.675231934 266.029052734 267.265350342 269.074951172 270.958892822 272.18951416 273.332489014 274.373931885 275.600830078 276.982116699 278.139801025 279.173614502 280.161773682 281.109710693 282.060943604 283.078552246 284.33581543 285.452911377 286.438293457 287.565307617 289.558258057 291.508331299 294.529174805 295.944580078 295.927703857 295.484130859 294.78515625 295.718231201 297.269866943 298.755584717 298.655151367 297.62121582 295.505096436 292.913818359 290.837524414 289.761962891 289.096374512 289.792266846 292.064971924 295.675506592 299.223419189 300.735534668 299.972259521 298.938079834 298.073181152 297.890228271 297.948272705 298.196014404 298.775695801 299.501098633 300.444854736 301.374572754 300.878112793 298.297363281 295.475158691 294.749481201 296.304504395 296.691253662 296.033050537 296.07598877 296.580963135 296.734375 296.531951904 296.519714355 296.650115967 296.57333374 296.425079346 296.237121582 295.848876953 295.279449463 294.665588379 294.064544678 293.430389404 292.724731445 292.04107666 291.462768555 290.795440674 289.839355469 288.417297363 286.178985596 282.90020752 278.70223999 273.36038208 266.839996338 265.119628906 264.055206299 260.828063965 253.572677612 249.177947998 247.388824463 245.726699829 244.724197388 245.034210205 246.347320557 248.229736328 247.722244263 245.045120239 242.190658569 238.985702515 241.415527344 242.582489014 242.69493103 243.260498047 243.993743896 244.27482605 243.960876465 243.681243896 239.792953491 239.449417114 236.896682739 235.948669434 238.603347778 240.177841187 239.707977295 239.577606201 237.29006958 240.743438721 245.007736206 250.00869751 253.35925293 254.938323975 255.460159302 255.52911377 255.785202026 257.018676758 259.349334717 260.84286499 262.037567139 263.632598877 265.441070557 267.316894531 268.956207275 271.121032715 272.222595215 273.552947998 275.048950195 276.559631348 277.862365723 278.847686768 279.788909912 280.768920898 281.608032227 282.372314453 283.184204102 284.270355225 285.30065918 286.166931152 287.039855957 288.382781982 289.738922119 291.498931885 292.416625977 293.211975098 293.536346436 293.36541748 294.423706055 295.587127686 296.708831787 296.119995117 294.7862854 293.323272705 292.20211792 290.935913086 289.972229004 289.363189697 290.039306641 292.091644287 295.691070557 299.670440674 301.541442871 301.06237793 299.711761475 298.175567627 297.977722168 298.164367676 298.707061768 301.030181885 302.61618042 303.904876709 304.064575195 302.363769531 299.683319092 296.107818604 294.842803955 296.299377441 296.564453125 295.823516846 295.753051758 296.178039551 296.347869873 296.180023193 296.069763184 296.176147461 296.17376709 295.997650146 295.7109375 295.261108398 294.579925537 293.750701904 292.86151123 291.90625 290.983734131 290.206726074 289.485107422 288.61932373 287.534179688 285.864257812 283.075653076 279.122344971 274.408172607 269.220214844 262.526947021 260.708557129 259.513122559 256.383117676 250.997451782 247.35168457 245.00982666 243.343658447 242.802902222 243.078567505 243.014511108 244.34223938 244.471588135 242.003189087 239.054077148 236.0809021 237.022674561 237.510116577 236.932830811 237.1902771 237.936752319 238.003128052 239.691482544 241.525619507 237.966873169 238.310119629 237.38432312 236.708007812 238.767288208 240.410919189 240.4715271 240.858932495 227.109695435 231.232879639 236.253494263 240.801971436 243.112503052 242.046386719 238.992401123 237.238418579 238.221847534 240.591537476 243.678787231 246.000305176 247.45463562 250.124053955 253.212875366 255.91305542 259.480529785 265.242645264 269.320129395 272.060333252 273.687683105 275.109863281 276.511413574 277.740081787 278.745056152 279.601837158 280.675933838 281.807739258 282.75479126 283.806152344 284.826965332 285.712005615 286.607971191 287.803741455 288.8543396 290.08895874 290.785614014 290.989593506 291.360290527 291.076873779 292.125366211 293.432525635 294.114562988 292.899871826 291.499572754 290.472381592 289.711730957 288.9324646 288.243133545 287.799133301 288.967254639 291.39743042 294.913024902 297.931976318 298.838653564 298.186096191 297.980133057 298.246276855 298.218688965 298.343566895 298.812316895 299.635650635 299.651580811 301.636627197 303.126525879 302.295471191 300.350738525 297.293518066 296.229431152 297.216094971 297.297454834 296.156158447 295.852935791 296.18850708 296.26083374 296.086303711 296.019897461 296.050231934 295.96194458 295.730224609 295.290863037 294.768005371 294.238311768 293.565856934 292.720336914 291.862884521 291.116699219 290.506530762 290.033813477 289.556091309 288.851654053 287.545440674 285.370727539 282.370239258 279.007171631 276.144226074 273.06842041 270.199676514 268.961425781 266.715148926 264.638336182 262.237091064 260.769958496 259.732727051 258.59588623 257.710388184 257.623474121 258.008758545 258.235412598 257.157287598 255.601318359 254.160522461 253.308670044 253.620849609 253.297317505 252.520690918 251.231170654 249.845046997 250.132446289 249.729141235 246.787994385 245.786132812 242.561355591 238.586608887 237.674545288 238.386322021 238.989318848 239.571975708 247.337982178 250.226394653 253.924346924 258.049713135 261.570831299 263.282196045 263.985717773 264.175811768 263.884063721 263.153411865 262.708526611 262.941680908 263.641723633 264.756835938 266.047454834 267.306640625 268.754241943 270.673736572 271.992828369 273.138763428 274.140991211 275.338348389 276.742980957 277.998413086 279.054992676 280.048553467 281.000762939 281.886016846 282.890106201 284.063476562 285.139373779 286.034820557 287.185943604 288.618286133 290.900878906 294.656982422 295.84197998 295.082824707 294.628723145 294.659545898 295.455047607 296.492919922 297.94039917 299.101226807 299.754089355 299.268615723 297.989257812 296.559753418 294.949127197 294.146453857 294.539978027 296.078552246 297.767944336 299.137145996 299.414001465 298.710693359 297.798431396 297.647705078 297.762695312 298.007843018 298.266174316 298.927215576 300.122467041 302.483886719 303.115844727 300.514556885 297.209075928 294.707061768 293.995483398 295.6378479 296.027862549 296.072113037 296.203613281 296.621063232 296.602142334 296.371734619 296.344451904 296.413269043 296.349365234 296.295257568 296.135101318 295.746856689 295.249267578 294.677764893 294.052886963 293.406188965 292.710876465 292.044250488 291.522827148 290.90927124 289.969207764 288.677703857 286.760894775 283.724243164 279.269256592 273.860717773 267.908477783 266.997314453 265.872192383 262.173217773 253.854324341 249.084854126 247.160247803 245.793960571 245.474487305 246.19569397 248.607940674 248.851760864 248.320159912 246.855667114 245.302932739 241.399841309 242.887619019 243.418563843 243.746154785 243.860824585 244.526657104 244.598052979 244.197998047 243.923629761 242.478881836 239.791702271 237.26512146 235.871261597 238.57472229 240.138717651 239.718185425 239.609451294 237.244033813 240.735809326 245.313049316 250.091827393 253.477310181 255.031936646 255.39666748 255.657394409 256.10736084 257.523010254 259.644012451 260.845153809 262.005371094 263.604980469 265.173553467 267.011962891 268.619842529 270.815765381 271.960266113 273.315856934 274.809234619 276.30090332 277.624420166 278.696472168 279.657653809 280.610717773 281.45501709 282.18182373 283.000610352 284.036346436 285.086273193 286.024902344 287.117340088 288.4559021 290.167541504 291.981658936 292.768280029 293.26852417 293.562103271 293.577301025 294.502349854 295.739868164 297.103271484 297.915161133 297.872283936 297.502319336 297.211364746 296.235626221 294.991485596 294.467468262 294.655761719 295.807830811 297.648376465 299.366851807 300.267425537 299.462677002 298.277618408 297.851379395 298.028137207 298.216217041 298.403839111 299.593444824 303.06741333 304.874572754 304.474487305 301.313354492 298.155029297 294.951507568 293.946533203 295.69934082 296.028320312 295.895843506 295.908599854 296.207305908 296.192779541 296.01776123 295.892425537 295.914978027 295.957702637 295.917358398 295.692749023 295.237548828 294.574157715 293.767303467 292.900848389 291.990509033 291.097259521 290.323303223 289.634460449 288.815429688 287.776947021 286.297607422 283.774597168 279.931427002 274.981872559 269.92477417 263.70022583 262.09954834 260.544036865 257.501251221 251.704269409 247.669052124 245.152496338 243.352752686 243.089675903 243.61265564 245.056854248 244.963226318 245.059860229 243.364608765 241.78717041 237.697814941 237.46194458 237.641555786 237.218276978 237.543258667 237.947265625 237.700653076 239.495513916 241.765136719 240.657989502 238.549850464 237.581451416 236.447021484 238.722167969 240.40171814 240.496276855 240.857025146 227.094558716 231.175262451 236.262054443 240.939712524 243.291854858 241.915756226 238.417663574 236.641220093 238.018661499 240.906814575 243.998123169 245.935577393 247.314056396 249.881134033 252.787353516 255.176010132 257.898773193 264.078125 268.392089844 271.510681152 273.354949951 274.775238037 276.213897705 277.585906982 278.692932129 279.575866699 280.590942383 281.604370117 282.569671631 283.693359375 284.775268555 285.617126465 286.765594482 288.118560791 289.404815674 290.368774414 290.757598877 290.777038574 291.108062744 291.251708984 292.238891602 293.633728027 294.963409424 295.569519043 295.287139893 295.315582275 295.097290039 294.84564209 293.824127197 293.272888184 294.080047607 295.539642334 296.691345215 297.60534668 298.274627686 297.795898438 297.799102783 298.243438721 298.340087891 298.479797363 298.805084229 299.795471191 300.157287598 303.296569824 304.526763916 302.461914062 299.270202637 296.473266602 295.371063232 296.415527344 296.54598999 296.202819824 296.095794678 296.307830811 296.167449951 295.925231934 295.854187012 295.852386475 295.804168701 295.649261475 295.238891602 294.70602417 294.166778564 293.468231201 292.588348389 291.749053955 291.064941406 290.50189209 290.066558838 289.581237793 288.841766357 287.60357666 285.633605957 282.805450439 279.146972656 276.132629395 273.417724609 270.135742188 268.945037842 267.312591553 264.975311279 262.623382568 260.951812744 260.031463623 259.05871582 258.397979736 259.068450928 258.726409912 258.82131958 257.84072876 257.091918945 254.804458618 253.769500732 253.853042603 253.475296021 252.391372681 250.980545044 249.684265137 250.070098877 249.818878174 248.451904297 246.171035767 242.830184937 238.384872437 237.600143433 238.410751343 239.028167725 239.573028564 247.325180054 250.213012695 253.928833008 258.105285645 261.672027588 263.359069824 264.064788818 264.167480469 264.107330322 263.594787598 263.523223877 263.621582031 264.030731201 265.136657715 266.343017578 267.539825439 268.823059082 270.124298096 271.832489014 272.988800049 273.94317627 275.110015869 276.500213623 277.802520752 278.86138916 279.864379883 280.83001709 281.659393311 282.56439209 283.567016602 284.411224365 285.221405029 286.39151001 287.939544678 290.028656006 292.238433838 295.081726074 294.742645264 294.753173828 294.996032715 295.672912598 296.475219727 297.458190918 298.102233887 298.484375 298.866149902 298.710418701 298.414428711 297.741943359 297.349182129 297.508880615 298.335571289 298.61605835 298.36026001 298.416992188 297.713623047 297.350189209 297.387908936 297.644348145 297.886962891 298.237030029 299.290649414 301.115447998 303.488647461 303.396728516 300.454833984 297.618377686 295.406036377 294.063415527 294.957611084 296.028442383 296.130523682 296.310394287 296.549957275 296.401611328 296.203308105 296.188079834 296.17300415 296.134796143 296.165679932 295.992431641 295.560760498 295.134613037 294.649597168 294.038726807 293.386444092 292.685943604 292.007415771 291.504699707 290.951812744 290.067932129 288.875701904 287.121276855 284.202026367 279.611297607 274.44342041 269.640075684 268.676605225 267.106140137 262.837890625 253.665924072 248.863510132 247.591751099 247.138824463 247.792129517 249.540420532 249.740814209 249.50982666 248.844650269 247.873886108 246.847442627 244.091995239 244.365966797 244.510955811 244.869308472 244.631561279 245.041305542 244.834518433 244.793029785 244.01121521 242.663970947 240.125350952 237.490737915 235.574111938 238.566513062 240.105026245 239.729995728 239.645141602 237.223022461 240.499435425 245.311035156 250.171081543 253.630447388 255.100234985 255.409454346 255.9296875 256.498504639 258.002441406 260.221343994 261.035186768 262.086181641 263.558990479 264.95690918 266.741363525 268.581542969 270.242919922 271.790985107 273.16696167 274.626922607 276.081512451 277.378997803 278.49798584 279.483764648 280.451385498 281.306518555 281.99597168 282.731719971 283.588623047 284.490600586 285.466308594 286.743164062 288.30657959 290.227294922 291.858886719 292.716003418 293.434082031 293.816833496 294.103088379 294.82800293 295.935821533 297.235900879 298.010345459 298.401397705 298.54574585 298.546600342 298.450744629 298.117370605 297.683837891 297.360076904 297.487548828 297.999603271 298.373046875 298.640777588 297.93649292 297.564971924 297.642272949 297.982635498 298.021789551 298.134643555 300.088897705 303.910430908 305.283081055 303.949645996 300.826171875 298.514678955 295.836547852 294.25 295.502197266 296.128631592 295.9972229 296.106506348 296.193267822 296.020172119 295.872955322 295.758453369 295.70880127 295.786590576 295.841674805 295.628448486 295.140991211 294.522521973 293.779754639 292.954040527 292.072937012 291.185455322 290.399047852 289.739746094 288.997741699 288.004364014 286.632629395 284.278198242 280.5652771 275.536590576 270.597412109 265.816253662 263.662414551 261.39541626 258.170135498 252.072875977 248.03326416 246.012130737 244.77911377 245.434295654 246.626983643 245.992538452 245.633880615 245.208358765 243.499786377 242.47416687 239.440567017 237.686386108 237.661178589 237.535400391 237.811889648 238.018951416 237.522766113 239.89515686 241.887710571 240.876617432 238.79119873 237.559646606 236.2578125 238.658096313 240.406005859 240.520278931 240.856262207 227.035491943 231.126800537 236.237060547 241.039398193 243.421051025 241.815338135 237.971420288 236.149917603 237.881744385 241.147872925 244.604553223 246.133926392 247.39125061 249.937088013 252.487854004 254.991638184 257.466278076 261.935943604 267.518493652 270.87322998 272.99432373 274.476837158 275.920349121 277.384521484 278.558044434 279.436309814 280.361450195 281.247253418 282.16519165 283.207336426 284.13848877 284.996307373 286.344940186 287.961578369 289.574951172 290.609130859 290.288787842 290.642303467 291.172149658 291.631530762 292.567718506 293.829620361 295.208892822 296.069458008 296.360015869 296.577423096 296.740814209 297.000183105 296.998840332 296.621582031 296.597106934 297.002929688 296.834869385 297.33026123 297.510742188 297.298034668 297.532501221 298.102325439 298.226104736 298.278839111 298.501861572 299.578857422 301.068328857 304.177062988 304.983886719 302.365875244 299.20401001 297.088043213 295.500671387 295.944061279 296.557281494 296.270233154 296.309204102 296.316314697 296.023895264 295.808135986 295.77243042 295.705200195 295.641815186 295.549591064 295.166046143 294.583587646 294.00668335 293.307556152 292.444091797 291.644714355 291.007965088 290.476379395 290.065826416 289.600311279 288.846557617 287.634521484 285.747802734 283.018188477 279.243103027 275.746551514 273.716094971 270.228820801 268.596679688 267.545135498 265.207366943 262.900878906 261.496307373 260.769287109 260.15435791 260.208404541 259.720367432 259.590118408 259.299530029 258.409759521 257.388793945 255.517349243 254.195281982 254.00453186 253.376068115 252.071029663 250.891357422 249.660644531 250.296676636 249.84135437 248.56362915 246.585067749 242.787582397 238.135131836 237.530197144 238.433929443 239.068786621 239.575531006 247.319366455 250.187988281 253.931716919 258.158905029 261.741821289 263.377105713 264.247680664 264.189331055 264.307281494 264.127044678 264.719360352 264.532531738 264.680633545 265.481170654 266.181915283 267.665039062 268.614227295 269.689910889 271.79598999 272.900512695 273.816589355 274.946685791 276.306732178 277.623016357 278.684631348 279.713806152 280.78503418 281.60345459 282.351654053 283.161437988 283.857971191 284.514404297 285.470184326 286.917694092 288.717681885 291.088867188 293.717651367 294.681091309 295.05090332 295.607147217 296.063140869 296.648620605 297.098205566 297.588195801 297.942047119 298.299041748 298.464904785 298.611114502 298.586425781 298.540161133 298.500396729 298.571533203 298.066436768 297.717346191 297.484100342 297.123016357 296.924713135 297.055938721 297.410247803 297.669494629 297.854400635 298.602935791 300.65737915 302.889923096 302.675415039 300.682556152 298.471466064 295.749420166 293.829864502 294.499603271 296.280639648 296.317443848 296.427276611 296.470397949 296.24017334 296.04309082 296.006195068 295.973144531 295.990600586 296.05279541 295.850341797 295.40234375 294.999328613 294.54901123 293.973876953 293.355072021 292.676086426 291.975616455 291.434570312 290.927947998 290.152099609 289.036346436 287.337127686 284.482543945 279.93737793 274.978729248 271.78894043 269.587219238 267.201507568 262.53704834 253.375915527 249.119338989 248.478363037 249.490005493 250.763549805 250.680984497 250.518188477 250.079101562 249.198883057 248.433898926 247.467758179 246.077194214 245.50793457 245.558074951 245.577331543 245.554702759 245.58215332 244.983322144 245.139801025 243.997894287 242.693740845 240.53704834 237.56463623 235.336212158 238.579193115 240.085266113 239.733383179 239.684829712 237.197662354 240.53894043 245.247680664 250.180160522 253.651519775 255.134674072 255.512252808 256.047241211 256.932678223 258.650482178 261.200500488 261.161346436 261.967163086 263.617004395 264.123657227 266.734619141 268.493011475 269.963897705 271.79006958 273.122131348 274.51940918 275.931152344 277.198516846 278.349731445 279.363555908 280.33895874 281.270904541 281.961364746 282.53414917 283.181488037 283.956512451 284.878356934 286.075744629 287.666900635 289.500457764 291.39276123 292.459350586 293.227935791 293.739135742 294.3487854 295.256500244 296.256591797 297.150634766 297.89352417 298.290985107 298.612365723 298.858520508 298.923461914 298.885375977 298.565826416 298.144104004 297.855865479 297.695953369 297.477935791 297.234283447 297.058502197 297.091766357 297.361785889 297.826690674 297.846282959 298.176269531 300.534454346 304.082427979 304.858551025 303.258178711 301.130737305 299.081207275 296.118621826 294.414642334 294.952850342 296.214569092 296.262298584 296.345794678 296.180023193 295.885650635 295.714141846 295.601959229 295.57144165 295.672637939 295.70501709 295.479217529 295.043395996 294.508575439 293.83782959 293.053771973 292.188537598 291.287628174 290.470092773 289.822113037 289.170440674 288.229431152 286.897979736 284.696746826 281.141326904 276.150543213 271.232879639 268.111907959 264.956695557 261.813079834 258.151763916 252.34161377 248.605834961 247.268051147 247.623153687 248.533126831 247.690643311 246.421417236 246.126068115 244.836166382 242.880630493 241.60295105 240.146575928 237.618865967 237.581817627 237.585098267 238.089614868 238.136962891 237.277130127 240.454437256 241.904129028 241.046936035 239.052825928 237.608276367 236.102767944 238.619186401 240.431945801 240.544265747 240.856750488 226.980865479 231.063171387 236.188232422 241.093704224 243.534118652 241.807647705 237.591094971 235.700241089 237.773406982 241.583343506 246.256072998 245.726669312 247.30682373 249.593109131 250.967330933 254.773422241 257.3097229 260.672363281 267.099243164 270.313079834 272.658081055 274.257751465 275.69909668 277.189422607 278.392486572 279.276824951 280.159240723 281.048736572 281.880157471 282.766021729 283.557067871 284.398529053 285.705108643 287.372283936 288.974578857 290.365600586 290.180450439 290.408874512 291.413024902 292.362762451 293.013427734 293.820098877 294.570495605 295.373199463 295.976531982 296.631713867 297.064056396 297.417175293 297.347930908 297.31427002 297.049316406 296.923370361 296.991699219 297.106536865 297.00302124 296.836730957 297.116699219 297.616760254 298.017456055 298.119873047 298.204315186 298.686431885 300.72668457 303.953857422 304.793121338 302.140441895 299.650695801 297.120666504 295.317138672 295.252929688 296.513641357 296.440795898 296.356658936 296.155181885 295.854553223 295.68850708 295.643981934 295.554412842 295.510986328 295.438293457 295.044555664 294.424835205 293.824066162 293.144378662 292.341430664 291.595367432 290.969146729 290.432861328 290.028839111 289.606719971 288.866699219 287.641815186 285.78817749 283.123626709 279.412658691 275.551849365 273.688079834 270.524047852 268.236724854 267.257598877 265.224853516 263.322509766 262.185974121 261.799804688 261.65826416 260.817504883 260.235687256 260.162322998 259.724060059 258.800018311 257.667724609 256.069732666 254.339599609 253.797317505 252.848098755 251.787841797 250.920059204 249.556213379 250.555114746 249.741271973 248.605560303 246.907974243 242.837966919 238.00541687 237.505661011 238.448364258 239.103744507 239.579574585 247.302597046 250.16166687 253.908081055 258.178863525 261.771789551 263.440216064 264.281280518 264.233581543 264.496612549 264.722808838 265.421295166 265.315032959 265.116546631 265.494689941 266.47052002 267.425384521 268.175537109 269.365631104 271.480285645 272.852142334 273.72958374 274.815887451 276.144866943 277.471923828 278.538513184 279.571136475 280.740905762 281.600158691 282.158996582 282.775115967 283.309173584 283.882873535 284.788146973 286.039306641 287.580963135 289.976593018 292.906097412 294.7472229 295.172637939 295.794128418 296.298583984 296.71585083 296.923187256 297.412597656 297.830749512 298.225250244 298.386688232 298.488647461 298.647247314 298.626373291 298.293884277 298.085174561 297.855651855 297.473480225 297.18963623 296.796844482 296.598510742 296.856414795 297.243347168 297.600860596 297.828857422 298.494873047 300.302856445 301.81350708 301.697692871 300.123199463 298.197296143 296.157897949 294.77746582 296.139862061 296.523254395 296.560516357 296.474273682 296.356719971 296.092773438 295.892486572 295.820495605 295.800537109 295.864105225 295.916534424 295.71963501 295.324798584 294.913299561 294.427307129 293.857543945 293.26852417 292.638549805 291.965393066 291.394195557 290.90133667 290.231506348 289.173370361 287.460388184 284.644500732 280.30065918 275.640075684 272.656097412 270.156463623 266.140563965 261.675750732 253.662414551 249.650436401 249.32875061 251.185562134 251.650344849 251.444244385 251.108200073 250.643737793 249.825149536 248.764251709 248.139923096 247.339447021 246.723266602 246.550079346 246.305465698 246.304626465 246.138946533 245.953231812 245.81791687 243.836364746 242.616256714 240.873794556 237.396957397 235.226272583 238.581420898 240.089492798 239.736038208 239.715866089 237.20765686 240.623260498 245.245422363 250.203308105 253.688690186 255.149597168 255.529556274 256.209533691 257.377044678 259.434875488 261.532470703 261.451385498 261.62902832 263.378417969 264.508911133 266.453155518 268.354064941 269.819488525 271.584014893 273.106658936 274.419342041 275.792572021 277.05166626 278.24029541 279.265228271 280.211181641 281.18737793 281.934173584 282.313903809 282.749237061 283.402374268 284.305633545 285.507385254 286.989746094 288.677398682 290.708221436 292.104187012 293.142059326 293.820220947 294.634033203 295.754669189 296.625152588 297.195159912 297.676971436 298.08303833 298.538787842 298.770782471 298.842987061 298.696533203 298.565979004 298.305755615 298.025482178 297.786132812 297.224304199 297.033599854 296.841461182 296.960540771 297.355651855 297.790985107 297.976013184 298.623687744 300.765808105 303.719177246 304.020111084 302.432159424 300.700805664 298.677398682 296.356201172 295.132904053 296.151489258 296.366851807 296.526611328 296.413909912 296.044921875 295.727874756 295.549865723 295.421600342 295.421295166 295.517089844 295.506256104 295.336242676 295.017486572 294.523925781 293.869415283 293.114685059 292.274627686 291.383117676 290.546447754 289.878692627 289.269927979 288.400665283 287.127319336 285.128875732 281.760375977 276.763641357 272.001068115 269.050933838 266.133605957 261.422271729 257.61706543 252.743759155 249.438018799 248.446868896 249.785614014 249.662017822 248.292129517 246.957611084 246.393127441 244.284317017 242.082138062 241.113052368 240.374328613 238.009536743 237.406265259 237.879226685 238.479980469 238.380111694 238.958953857 242.30317688 241.894515991 241.070343018 239.328536987 237.367950439 235.907531738 238.584579468 240.480194092 240.570007324 240.854476929 226.955108643 230.997055054 236.107147217 241.113021851 243.669525146 241.866531372 237.361816406 235.403427124 237.747436523 242.154632568 246.475540161 245.863845825 246.637710571 248.984741211 251.468383789 254.00819397 257.113189697 260.231536865 266.102355957 269.825195312 272.316009521 274.053344727 275.511810303 277.011108398 278.231842041 279.125610352 279.907806396 280.954864502 281.670501709 282.346832275 282.97769165 283.815612793 285.15612793 286.724609375 288.243713379 289.90612793 290.164642334 290.666381836 291.679077148 292.629974365 293.397644043 294.033905029 294.277008057 294.704284668 295.428314209 296.195922852 296.652008057 297.0652771 297.217681885 297.367370605 297.27444458 297.306243896 297.372009277 297.252288818 297.078796387 296.793914795 296.949859619 297.609558105 298.060180664 298.171600342 298.175933838 298.726104736 300.889404297 303.532714844 303.913604736 301.346466064 299.175018311 297.155609131 295.301483154 296.102844238 296.529907227 296.505828857 296.205444336 295.915313721 295.67364502 295.564056396 295.500946045 295.408843994 295.386749268 295.302398682 294.919006348 294.343933105 293.729705811 293.008178711 292.233398438 291.537902832 290.922485352 290.389373779 289.997558594 289.602844238 288.885986328 287.637451172 285.809844971 283.180450439 279.51385498 275.51953125 273.16607666 270.894165039 268.191497803 266.610961914 265.030456543 263.516662598 262.693145752 262.69921875 262.066802979 261.116210938 260.825653076 260.590423584 260.091461182 259.209594727 258.106842041 256.556640625 254.186264038 253.318054199 252.72807312 251.962402344 251.081695557 251.152282715 251.467605591 249.531097412 248.574401855 247.16557312 242.821792603 237.943572998 237.497802734 238.454025269 239.138000488 239.575744629 247.288238525 250.133529663 253.873474121 258.148681641 261.772491455 263.473846436 264.349029541 264.289367676 264.720703125 265.227172852 265.916229248 265.951293945 265.695953369 265.872955322 266.844970703 268.084777832 268.918518066 269.7237854 270.840789795 272.85559082 273.657104492 274.697845459 275.997192383 277.335327148 278.39944458 279.414398193 280.593353271 281.396087646 281.896606445 282.372070312 282.798309326 283.335571289 284.23651123 285.406158447 287.007659912 289.367370605 292.077941895 294.025177002 294.892883301 295.694580078 296.230773926 296.370178223 296.678588867 297.281829834 297.714538574 298.060760498 298.14364624 298.140106201 298.261138916 298.331481934 298.19619751 298.043609619 297.594696045 297.045532227 296.581573486 296.334442139 296.419189453 296.608795166 296.963562012 297.36630249 297.814483643 298.955352783 300.494476318 301.800933838 301.087341309 299.393707275 297.589996338 296.787078857 296.713378906 296.75680542 296.875671387 296.73348999 296.446624756 296.192596436 295.954559326 295.763092041 295.632995605 295.630493164 295.719238281 295.742340088 295.571044922 295.237518311 294.784362793 294.249298096 293.695098877 293.123260498 292.535888672 291.922821045 291.360656738 290.885192871 290.285736084 289.250274658 287.510101318 284.72454834 280.616149902 276.346557617 273.272583008 270.157867432 264.619934082 260.490875244 254.318984985 251.022247314 251.120834351 252.017318726 252.036880493 251.946640015 251.721160889 251.400024414 250.852432251 249.98815918 249.469940186 248.524154663 247.90071106 247.458435059 247.170166016 247.201766968 246.712615967 246.86138916 245.598937988 243.480102539 242.445663452 241.200241089 237.308547974 235.28767395 238.519699097 240.087188721 239.738174438 239.74256897 237.173049927 240.59147644 245.201705933 250.173095703 253.742233276 255.167907715 255.602142334 256.411071777 257.767120361 259.962554932 261.6690979 261.409301758 261.801818848 263.653869629 264.839599609 266.601226807 268.71295166 269.89654541 270.987915039 273.100280762 274.30847168 275.635406494 276.912445068 278.144714355 279.156616211 280.04876709 281.043762207 281.740020752 282.007965088 282.240600586 282.816680908 283.760162354 285.006286621 286.508117676 288.379516602 290.515563965 292.361907959 293.147583008 293.97946167 294.787322998 295.751983643 296.429107666 296.933898926 297.636108398 298.126983643 298.632354736 298.816955566 298.695861816 298.623443604 298.663146973 298.517883301 298.364044189 297.761383057 297.038452148 296.73638916 296.649932861 296.819763184 297.13671875 297.62020874 297.969085693 299.349700928 301.79800415 303.705444336 303.624237061 301.780548096 299.842681885 297.827178955 296.777648926 296.524810791 296.427337646 296.574066162 296.583984375 296.2527771 295.810424805 295.573425293 295.411224365 295.24130249 295.25378418 295.318634033 295.277374268 295.210083008 294.994934082 294.484985352 293.833953857 293.145080566 292.351074219 291.474761963 290.624755859 289.922027588 289.328796387 288.520965576 287.309692383 285.473724365 282.290130615 277.259552002 272.808898926 269.80078125 266.689300537 260.634368896 257.059051514 253.681106567 251.028823853 250.49269104 250.957504272 250.168899536 248.602935791 247.35357666 246.414215088 243.848373413 241.656402588 241.580627441 240.982681274 238.628173828 238.206115723 238.707260132 239.017654419 239.130447388 241.686737061 242.284957886 241.646514893 241.063919067 239.582901001 237.050476074 235.755172729 238.521713257 240.51701355 240.593551636 240.849380493 226.866653442 230.907699585 236.046981812 241.164794922 243.785018921 242.034118652 237.256347656 235.265670776 237.757858276 242.421981812 246.728302002 246.165222168 247.376846313 249.936965942 252.319259644 254.696243286 257.913879395 260.880187988 264.263397217 269.477539062 271.955200195 273.821563721 275.328430176 276.840820312 278.076629639 278.983398438 279.95513916 280.841888428 281.430236816 281.88470459 282.396392822 283.257995605 284.633117676 286.189727783 287.95223999 289.911956787 291.333740234 291.199310303 292.006561279 292.69317627 293.224395752 293.703033447 294.088562012 294.606323242 295.329803467 296.158599854 296.698120117 296.954772949 297.278411865 297.780578613 297.890228271 297.907196045 297.511260986 297.195922852 297.033355713 296.799041748 297.050109863 297.504760742 297.963195801 297.980560303 298.294403076 299.50189209 301.964630127 303.90826416 303.208221436 300.454193115 298.487945557 297.442901611 296.428222656 296.438293457 296.587982178 296.358856201 295.974517822 295.670166016 295.482391357 295.443054199 295.374389648 295.272766113 295.249023438 295.144165039 294.806732178 294.309936523 293.660430908 292.860198975 292.111846924 291.47442627 290.87109375 290.351287842 289.984710693 289.606048584 288.903015137 287.635559082 285.817657471 283.203735352 279.452758789 275.564880371 273.039459229 271.136749268 267.9480896 266.412506104 265.058044434 263.925262451 263.509979248 263.045043945 262.157836914 261.453369141 261.278442383 261.016601562 260.349945068 259.27456665 258.299926758 256.71307373 254.364364624 253.61756897 253.283248901 252.547027588 251.516891479 252.983200073 251.286407471 249.136245728 248.417221069 247.382171631 242.713531494 237.980514526 237.491729736 238.42930603 239.167480469 239.564559937 247.266296387 250.10736084 253.829360962 258.116821289 261.756011963 263.498809814 264.438323975 264.423309326 264.957366943 265.745635986 266.360290527 266.430419922 266.328430176 266.552062988 267.42767334 268.794647217 269.877593994 270.310119629 270.761505127 272.62979126 273.587158203 274.568237305 275.839080811 277.187347412 278.234313965 279.200927734 280.292449951 281.050231934 281.470458984 281.864044189 282.288879395 282.8543396 283.811645508 285.161743164 287.094696045 289.499664307 291.832855225 293.771270752 294.841430664 295.639434814 296.158477783 296.340881348 296.492218018 296.951080322 297.230316162 297.315979004 297.442016602 297.637542725 297.79510498 297.744720459 298.077026367 298.005310059 297.457702637 296.843078613 296.253295898 296.110870361 296.26663208 296.360931396 296.573394775 296.934875488 297.696594238 299.20211792 300.833221436 301.918579102 300.88760376 299.21975708 297.309844971 297.560516357 297.499206543 297.115234375 296.964538574 296.654632568 296.280883789 295.99786377 295.829589844 295.631958008 295.430236816 295.445037842 295.54788208 295.545288086 295.409332275 295.095916748 294.568054199 294.010009766 293.506347656 292.942260742 292.371063232 291.827728271 291.307067871 290.855377197 290.294433594 289.249969482 287.492889404 284.766723633 280.877532959 276.850097656 273.56237793 270.091552734 263.839691162 259.837890625 255.810150146 252.722839355 252.825027466 252.725891113 252.473129272 252.540817261 252.856842041 252.597000122 252.056564331 251.296432495 250.581634521 249.722915649 249.239959717 248.488174438 248.14239502 248.100631714 247.804199219 246.714767456 245.151901245 242.999099731 242.20300293 241.461914062 237.718109131 235.393814087 238.507858276 240.079818726 239.740539551 239.774414062 237.165603638 240.403961182 245.036071777 250.020645142 253.736755371 255.215240479 255.771713257 256.671325684 258.175476074 260.862030029 261.778381348 261.73248291 262.174713135 263.911834717 265.575378418 267.434936523 269.146453857 270.045196533 270.796386719 272.794342041 274.160217285 275.422088623 276.737976074 278.006408691 278.99029541 279.80581665 280.700775146 281.360961914 281.549346924 281.641204834 282.217254639 283.27947998 284.708374023 286.455352783 288.72857666 290.86428833 292.583862305 294.174804688 295.15536499 295.430023193 295.62677002 296.018585205 296.532012939 297.322814941 297.926208496 298.217315674 298.206817627 298.247192383 298.289794922 298.109863281 298.506744385 298.356719971 297.648651123 297.009460449 296.680480957 296.587310791 296.776153564 296.994720459 297.201385498 297.631835938 299.65826416 302.879882812 303.36541748 302.957824707 301.264648438 299.545379639 297.327423096 297.406494141 297.187316895 296.673217773 296.542510986 296.349639893 295.93057251 295.56463623 295.44519043 295.250946045 295.032745361 295.067047119 295.098754883 295.049987793 295.088897705 294.918182373 294.358917236 293.761810303 293.180175781 292.432403564 291.568206787 290.707885742 289.9715271 289.384735107 288.621429443 287.457580566 285.760345459 282.781616211 277.799072266 273.418731689 270.174224854 266.893096924 260.636779785 257.608184814 255.561126709 253.106582642 252.391403198 251.654556274 250.387741089 248.845825195 247.682601929 246.578811646 243.833633423 242.378341675 242.430938721 241.344146729 239.933395386 239.60307312 239.459472656 240.039611816 241.190567017 242.457870483 242.035980225 241.308547974 240.915939331 239.803359985 237.36668396 235.692153931 238.523590088 240.535324097 240.615310669 240.844329834 226.80581665 230.848693848 235.98034668 241.142578125 243.929046631 242.236129761 237.313522339 235.261734009 237.911056519 244.209884644 246.889450073 246.878326416 248.41293335 251.184799194 253.687210083 256.017456055 259.042297363 261.683563232 263.842926025 268.889099121 271.541534424 273.508850098 275.107543945 276.657806396 277.912963867 278.830627441 279.779144287 280.581207275 281.035400391 281.341308594 281.837982178 282.771759033 284.248535156 286.00213623 288.299194336 290.402526855 291.968261719 293.198699951 293.654388428 293.069580078 292.66418457 293.101226807 293.827819824 294.606964111 295.392791748 296.226745605 296.875152588 296.844421387 297.112304688 297.566558838 298.323425293 298.355865479 297.752227783 297.286437988 297.105163574 296.819091797 296.973815918 297.250823975 297.557373047 297.66217041 298.599029541 301.099639893 303.343078613 304.004272461 302.584075928 300.246002197 298.257659912 297.850799561 297.195922852 296.747802734 296.457122803 296.047546387 295.717071533 295.414672852 295.263183594 295.272827148 295.204772949 295.097503662 295.074432373 294.974639893 294.705566406 294.273834229 293.560150146 292.709350586 292.023925781 291.442108154 290.832977295 290.320709229 289.983673096 289.61831665 288.91204834 287.633239746 285.811676025 283.210174561 279.346679688 275.564422607 272.929626465 271.12878418 268.047729492 266.79119873 265.725646973 264.515136719 264.224334717 263.132049561 262.104797363 261.751220703 261.582733154 261.362213135 260.52935791 259.715393066 258.47567749 256.468078613 255.072158813 254.586547852 254.059799194 253.561569214 253.501556396 253.235473633 250.885040283 248.625106812 248.161575317 247.555526733 242.953918457 237.912033081 237.449371338 238.383377075 239.200195312 239.551803589 247.258148193 250.073364258 253.773193359 258.057250977 261.717102051 263.522796631 264.500671387 264.579528809 265.198730469 266.136077881 266.667480469 266.783203125 266.928863525 267.108032227 268.077484131 269.394012451 270.374633789 270.706939697 270.951080322 272.096496582 273.516357422 274.462402344 275.694244385 277.032806396 278.05758667 278.965209961 279.971954346 280.661956787 281.020568848 281.417602539 281.940185547 282.597747803 283.656677246 285.302764893 287.767822266 290.179992676 291.943725586 293.40133667 294.555236816 295.357757568 295.858154297 296.083679199 296.102294922 296.264526367 296.22454834 296.398193359 296.8359375 297.395568848 297.628601074 297.554016113 297.489135742 297.369781494 296.925323486 296.654388428 296.139129639 296.022949219 296.154205322 296.274871826 296.252716064 296.647613525 297.648071289 299.891906738 301.960754395 301.883270264 300.426330566 298.881286621 297.020446777 297.572479248 297.480865479 297.121124268 296.809448242 296.43939209 296.094818115 295.84942627 295.693725586 295.462524414 295.245697021 295.277008057 295.368804932 295.359100342 295.275299072 294.966430664 294.382659912 293.819946289 293.341369629 292.754699707 292.179382324 291.684356689 291.201049805 290.771697998 290.206817627 289.107818604 287.356781006 284.749267578 280.991394043 277.108642578 273.566833496 270.068572998 263.45791626 260.665313721 258.062683105 255.632781982 253.986877441 253.48638916 253.748764038 254.469268799 254.48097229 254.168533325 253.187744141 251.971664429 251.030700684 250.566925049 250.643859863 248.961456299 248.944702148 248.221603394 247.511993408 246.216796875 244.451705933 242.296020508 241.977386475 241.66998291 238.414840698 235.462997437 238.569946289 240.084030151 239.752761841 239.811676025 237.111160278 240.416122437 245.036911011 249.958343506 253.718673706 255.26222229 255.808120728 256.947570801 258.562988281 261.756713867 262.278167725 262.16619873 262.5987854 264.25378418 266.045013428 268.210357666 269.408630371 270.185302734 270.993225098 272.313995361 273.966400146 275.231689453 276.527282715 277.801513672 278.774536133 279.546173096 280.343383789 280.928100586 281.08215332 281.17666626 281.841552734 283.082763672 284.731719971 286.797973633 289.470123291 291.540039062 292.883636475 294.221038818 295.312133789 295.490081787 295.471679688 295.705688477 296.072235107 296.53515625 296.964141846 297.286865234 297.535186768 297.904266357 298.166412354 298.065551758 297.942932129 297.814941406 297.358947754 297.209503174 296.779937744 296.731658936 296.886108398 297.063323975 296.894195557 297.433959961 299.547821045 302.875640869 303.34362793 301.908721924 300.398864746 299.008117676 297.040863037 297.314453125 297.132476807 296.644317627 296.360870361 296.037872314 295.654327393 295.41784668 295.296112061 295.014068604 294.815460205 294.889801025 294.879058838 294.84185791 294.966156006 294.825012207 294.287322998 293.760406494 293.222106934 292.486755371 291.667938232 290.824523926 290.054443359 289.470153809 288.728485107 287.567138672 285.972198486 283.250274658 278.387634277 273.901672363 270.320556641 267.0859375 260.820587158 259.079864502 257.978790283 256.152374268 253.872772217 252.263153076 250.867538452 249.476715088 248.382507324 247.406799316 245.000839233 243.675064087 242.533981323 241.342819214 240.67515564 240.052398682 240.618087769 241.739730835 242.274200439 242.362243652 241.689651489 240.738067627 240.685592651 239.94720459 237.909896851 235.646759033 238.580917358 240.544769287 240.632095337 240.839416504 226.801940918 230.782180786 235.911026001 241.138259888 244.11227417 242.476730347 237.527511597 235.442642212 238.191558838 244.917160034 246.787628174 247.489212036 249.459274292 252.287887573 254.932815552 257.371734619 260.067199707 262.383789062 264.471008301 268.056396484 271.163269043 273.20791626 274.886871338 276.486175537 277.766967773 278.678955078 279.540679932 280.218536377 280.587310791 280.895935059 281.481536865 282.54473877 284.172058105 286.296875 289.029754639 291.020019531 292.356445312 293.435089111 294.042327881 292.991088867 292.479370117 292.831298828 293.475708008 294.17767334 295.142181396 296.49130249 296.798278809 296.922088623 297.12121582 297.392089844 297.710693359 297.849273682 297.644683838 297.590515137 297.212402344 296.955505371 297.005340576 297.296783447 297.23526001 297.509429932 299.009002686 302.844940186 304.149261475 303.358306885 301.437286377 299.732055664 297.942382812 297.394866943 297.079528809 296.648162842 296.217468262 295.7996521 295.531524658 295.249237061 295.087280273 295.04586792 294.960876465 294.900726318 294.906829834 294.821044922 294.592224121 294.182525635 293.449829102 292.640441895 292.018096924 291.431976318 290.803344727 290.306304932 289.988983154 289.628753662 288.901733398 287.605804443 285.776824951 283.200073242 279.220153809 275.499023438 272.81362915 271.19229126 268.311828613 267.568878174 267.06161499 265.959838867 264.505950928 263.133544922 262.21081543 262.250213623 262.099700928 261.798370361 261.100372314 260.048583984 258.325622559 256.816955566 256.00491333 255.592269897 255.620864868 255.933456421 254.408432007 252.835906982 250.361740112 248.01184082 247.866485596 247.715957642 243.433319092 237.728012085 237.454803467 238.343597412 239.240722656 239.537445068 247.239212036 250.031768799 253.688796997 257.959320068 261.627105713 263.513305664 264.554962158 264.69354248 265.330413818 266.28527832 266.96673584 267.169677734 267.470458984 267.597290039 268.694793701 269.901367188 270.583129883 270.865936279 271.134887695 271.983734131 273.426208496 274.372436523 275.552276611 276.866516113 277.888397217 278.749359131 279.680969238 280.300872803 280.609802246 281.062194824 281.744903564 282.526824951 283.682922363 285.604095459 288.374633789 290.614898682 292.104492188 293.268249512 294.367401123 295.132232666 295.245300293 295.564300537 295.424530029 295.222991943 295.021392822 295.396575928 296.099151611 296.940979004 297.321746826 297.242553711 296.928405762 296.596038818 296.276428223 296.325592041 296.22479248 296.147918701 296.095062256 296.057525635 296.079223633 296.467376709 297.438537598 299.614593506 301.547180176 300.93737793 299.650482178 298.251983643 297.674346924 297.777435303 297.448791504 297.115783691 296.639892578 296.227325439 295.927398682 295.711975098 295.526397705 295.272247314 295.094421387 295.126281738 295.172363281 295.158081055 295.120727539 294.838317871 294.252868652 293.692016602 293.18649292 292.566314697 292.007141113 291.542572021 291.057098389 290.636169434 290.043334961 288.872772217 287.145874023 284.668731689 280.910919189 277.088806152 273.48614502 270.064788818 264.321868896 261.537353516 258.683502197 256.385192871 255.130355835 255.34286499 256.612213135 257.289794922 257.074249268 255.889465332 254.109680176 252.321548462 251.469665527 250.066970825 249.647460938 249.337936401 248.974731445 248.345367432 247.19493103 245.504455566 243.48135376 241.500778198 241.667572021 241.856307983 239.015228271 235.572296143 238.65663147 240.105834961 239.785812378 239.84677124 237.037139893 240.355773926 244.841430664 249.874145508 253.677444458 255.291778564 255.91809082 257.186096191 258.942474365 261.796661377 262.711608887 262.691986084 263.226104736 264.756744385 266.453155518 268.580352783 269.502990723 270.194549561 271.003265381 272.246368408 273.825134277 275.095703125 276.31036377 277.556091309 278.543365479 279.308868408 280.033203125 280.533111572 280.664459229 280.842193604 281.668151855 283.095275879 284.871551514 287.131500244 289.953155518 291.894470215 293.065887451 294.198394775 295.263702393 295.736083984 295.206329346 295.423553467 295.586395264 295.522094727 295.605377197 296.027526855 296.767456055 297.496856689 297.813201904 297.735198975 297.473114014 297.277801514 297.00479126 297.061920166 296.963806152 297.024902344 296.947906494 296.713684082 296.72354126 297.33996582 299.569671631 302.477630615 302.857452393 301.225830078 299.868621826 298.404815674 297.266296387 297.230987549 297.004211426 296.619934082 296.161376953 295.73046875 295.411743164 295.275909424 295.119384766 294.80770874 294.674133301 294.730438232 294.649719238 294.641235352 294.834472656 294.728759766 294.241333008 293.740997314 293.173461914 292.45401001 291.736602783 290.942382812 290.130859375 289.543609619 288.827697754 287.66003418 286.115844727 283.621551514 278.912658691 274.280456543 270.397369385 267.290679932 262.219116211 260.353088379 258.840484619 257.186462402 255.221969604 253.636276245 252.121368408 250.896072388 250.347183228 248.672821045 246.552139282 244.292694092 242.038803101 241.607055664 240.909118652 240.578491211 241.871261597 242.300720215 242.27243042 242.046646118 241.121536255 240.095993042 240.429382324 240.062835693 238.318511963 235.636932373 238.659637451 240.560256958 240.650177002 240.84197998 226.72203064 230.684387207 235.823181152 241.10798645 244.265365601 242.809738159 237.854248047 235.81628418 238.598068237 244.334671021 246.483856201 247.968795776 250.320556641 253.281478882 255.954742432 258.457672119 260.956298828 263.08480835 265.082672119 267.901824951 270.895690918 272.955108643 274.685821533 276.320068359 277.624206543 278.520141602 279.297851562 279.859710693 280.166168213 280.544158936 281.279571533 282.49597168 284.259399414 286.711273193 289.512237549 291.286315918 292.475158691 293.449676514 294.169342041 294.113555908 292.838287354 292.996368408 293.055358887 293.485107422 294.092559814 295.185699463 296.043334961 296.796386719 297.038757324 297.08102417 297.068969727 297.210571289 297.286102295 297.405456543 297.335205078 297.221160889 297.193847656 297.005554199 296.939361572 297.539733887 299.699981689 302.891082764 303.891479492 302.158050537 300.62713623 299.179656982 297.77935791 297.256988525 296.875457764 296.506072998 296.002166748 295.58883667 295.344512939 295.111083984 294.940673828 294.823974609 294.747070312 294.755218506 294.761108398 294.659118652 294.457946777 294.07611084 293.368530273 292.607818604 291.996429443 291.381408691 290.779968262 290.332183838 290.013580322 289.640258789 288.884643555 287.561004639 285.723602295 283.14276123 279.048950195 275.378509521 272.776916504 271.415588379 269.292205811 268.199584961 267.11819458 265.971313477 264.577911377 263.277435303 262.472442627 262.964447021 263.251312256 262.535705566 261.472473145 259.967346191 258.556335449 258.236053467 257.949645996 256.728729248 257.191558838 255.479614258 253.833023071 252.161468506 249.660583496 247.42855835 247.572860718 247.84576416 243.871246338 237.572189331 237.392105103 238.328094482 239.278442383 239.53453064 247.212402344 249.976150513 253.614257812 257.835784912 261.54107666 263.448455811 264.60333252 264.829223633 265.666229248 266.364257812 267.228271484 267.580993652 267.947906494 268.110626221 269.256622314 270.217529297 270.709381104 270.959838867 271.254699707 271.955871582 273.34588623 274.296051025 275.40411377 276.687225342 277.728881836 278.560241699 279.396942139 279.925720215 280.209686279 280.789581299 281.657348633 282.576202393 283.832458496 285.909423828 288.662811279 290.658813477 292.040588379 293.150238037 294.096282959 294.893493652 295.266540527 295.263763428 294.97555542 294.131713867 293.90637207 294.439300537 295.236480713 296.28817749 297.009796143 297.067871094 296.759429932 296.266662598 295.883514404 296.005981445 296.436706543 296.516265869 296.468292236 296.273132324 296.144195557 296.261535645 296.840698242 298.13861084 299.461151123 299.378417969 298.659973145 298.471130371 297.904846191 297.82131958 297.456665039 297.027648926 296.429199219 296.020202637 295.774902344 295.573181152 295.344329834 295.082427979 294.95098877 294.963470459 294.967010498 294.957122803 294.941986084 294.674438477 294.119506836 293.578491211 293.023590088 292.361053467 291.818389893 291.365722656 290.857666016 290.444000244 289.862945557 288.688537598 287.001678467 284.569122314 280.687438965 276.772735596 273.244384766 269.934783936 265.756866455 262.20803833 259.425292969 257.396697998 256.889099121 258.498138428 260.615875244 261.007263184 259.49307251 257.437164307 254.598510742 252.869308472 250.581512451 249.447097778 249.404006958 249.657043457 249.267776489 248.152664185 246.631103516 244.642883301 242.383728027 240.607131958 241.3644104 241.994216919 238.078720093 235.758056641 238.765350342 240.144836426 239.848114014 239.890335083 237.083236694 240.220535278 244.800811768 249.723617554 253.622573853 255.296279907 256.051025391 257.43157959 259.447784424 261.531341553 263.111022949 263.368682861 264.000976562 265.174377441 266.940704346 268.710662842 269.461273193 270.150817871 271.017028809 272.308227539 273.807739258 275.019226074 276.108612061 277.290222168 278.312347412 279.090911865 279.740325928 280.1434021 280.280670166 280.626373291 281.670410156 283.236724854 285.000183105 287.254943848 289.984191895 291.789459229 292.964813232 294.088928223 295.073028564 295.719329834 295.814941406 295.428222656 295.189819336 294.598999023 294.560913086 295.078460693 295.851989746 296.894836426 297.534606934 297.518249512 297.162506104 296.862609863 296.677978516 296.79699707 297.265167236 297.304718018 297.169189453 296.777526855 296.761993408 297.381256104 299.254730225 301.539276123 301.667510986 300.389770508 299.412139893 298.448913574 297.472595215 297.334716797 296.95715332 296.490692139 295.894866943 295.424713135 295.181915283 295.1144104 294.936340332 294.655151367 294.573425293 294.556518555 294.429138184 294.470336914 294.682098389 294.573242188 294.141448975 293.663024902 293.062561035 292.385009766 291.789031982 291.051239014 290.20223999 289.602172852 288.921539307 287.781585693 286.25479126 283.815795898 279.118408203 274.378356934 270.327728271 267.214813232 264.018432617 261.190765381 259.557037354 258.324401855 256.82913208 255.950393677 255.807434082 255.029434204 252.533050537 249.832824707 247.022628784 243.687316895 241.921569824 241.615036011 241.144775391 241.295959473 242.301254272 242.483139038 242.075195312 241.641189575 240.470962524 239.264358521 240.060928345 240.130142212 237.31048584 235.644165039 238.741943359 240.580535889 240.689468384 240.85168457 226.655380249 230.583328247 235.725448608 241.032196045 244.380279541 243.195541382 238.362670898 236.304733276 239.511230469 243.545150757 246.533065796 248.562255859 251.245895386 254.357345581 256.912750244 259.42074585 261.836517334 263.95526123 265.932922363 268.257720947 270.792602539 272.767944336 274.515045166 276.160064697 277.477416992 278.346862793 279.019470215 279.467498779 279.756225586 280.268676758 281.196960449 282.562896729 284.392059326 286.962036133 289.663726807 291.263122559 292.384063721 293.387176514 294.135620117 294.585357666 294.5128479 293.623840332 293.243408203 292.751495361 292.878662109 293.679321289 294.870513916 296.45703125 297.551300049 297.246948242 296.794586182 296.837188721 297.007110596 297.240264893 297.480377197 297.476898193 297.466949463 297.083587646 297.014984131 297.64932251 300.158477783 302.30355835 302.435394287 300.917602539 299.8621521 298.824066162 297.524169922 297.180389404 296.768463135 296.310424805 295.771728516 295.363708496 295.113342285 294.961303711 294.805450439 294.617675781 294.556335449 294.616973877 294.59854126 294.485656738 294.335571289 293.988128662 293.311767578 292.582000732 291.946289062 291.32131958 290.789550781 290.398681641 290.060150146 289.671630859 288.910675049 287.588592529 285.764984131 283.109527588 278.883911133 275.238525391 272.835327148 271.423980713 270.071105957 268.787139893 267.472595215 266.18850708 264.928649902 264.05657959 264.474212646 265.679595947 264.788269043 263.15637207 261.544647217 259.634460449 258.908233643 258.688415527 258.480499268 257.522277832 256.559631348 254.803924561 253.059844971 251.366485596 248.908493042 246.818069458 247.267288208 247.959350586 242.81072998 237.315216064 237.300964355 238.329605103 239.34854126 239.540802002 247.196273804 249.925064087 253.545898438 257.716217041 261.436431885 263.389831543 264.534790039 265.024932861 265.915588379 266.628295898 267.45413208 268.074493408 268.396362305 268.622741699 269.625244141 270.391784668 270.810852051 271.112854004 271.364715576 272.069763184 273.321685791 274.224884033 275.23638916 276.479858398 277.559173584 278.368652344 279.068054199 279.475189209 279.807189941 280.584747314 281.616729736 282.677947998 284.037811279 286.07119751 288.58291626 290.269256592 291.560791016 292.796905518 293.767578125 294.502075195 295.103546143 295.600280762 295.331939697 294.136932373 293.616882324 294.238342285 294.867919922 295.955474854 296.733184814 297.010040283 296.600585938 296.053924561 295.713409424 295.958557129 296.512084961 296.937652588 296.846160889 296.575286865 296.483520508 296.223999023 296.493103027 297.240875244 297.78515625 297.994445801 298.077087402 298.402038574 298.212982178 297.795013428 297.342071533 296.753051758 296.134735107 295.798370361 295.612335205 295.423187256 295.157836914 294.895965576 294.763885498 294.749389648 294.762237549 294.782348633 294.749755859 294.464508057 293.963378906 293.472045898 292.874176025 292.15423584 291.605133057 291.132293701 290.601470947 290.201751709 289.673736572 288.557067871 286.900970459 284.415405273 280.310791016 276.227539062 272.941558838 269.804748535 265.977020264 263.290252686 261.16003418 260.412628174 261.05682373 262.489990234 263.695556641 263.610626221 261.569763184 258.538452148 255.320373535 252.334579468 250.570800781 250.287155151 250.199737549 249.897628784 249.112991333 247.680038452 245.823242188 243.61706543 241.145294189 239.659225464 240.996429443 241.983840942 238.290893555 235.970367432 238.890853882 240.222427368 239.929031372 239.949020386 237.074829102 240.185211182 244.565673828 249.668624878 253.546310425 255.322540283 256.172332764 257.690063477 260.028442383 261.758880615 263.548278809 264.127288818 264.819946289 265.694702148 267.305664062 268.66418457 269.349487305 270.224975586 271.198760986 272.513275146 273.910186768 275.00567627 275.933258057 277.02154541 278.087768555 278.883331299 279.438171387 279.72543335 279.928436279 280.557556152 281.842071533 283.43258667 285.036132812 287.088745117 289.569549561 291.248901367 292.48727417 293.782958984 294.901672363 295.647613525 296.028961182 296.311523438 295.787384033 294.651062012 294.309234619 294.666778564 295.340576172 296.417144775 297.384490967 297.384185791 296.827453613 296.379302979 296.251159668 296.565673828 297.21762085 297.703796387 297.47454834 297.033691406 297.066772461 297.331970215 298.598175049 300.106903076 300.277496338 299.346374512 298.218078613 298.009643555 297.72543335 297.287475586 296.764129639 296.149841309 295.552886963 295.136932373 294.943237305 294.905548096 294.739044189 294.495483398 294.393127441 294.311553955 294.244171143 294.345092773 294.480316162 294.333770752 293.975402832 293.544372559 292.942718506 292.31237793 291.798553467 291.118133545 290.27532959 289.657836914 289.006103516 287.913024902 286.385284424 283.874725342 279.100769043 274.211608887 270.252441406 267.286804199 264.314300537 261.813903809 260.482940674 260.165557861 260.087371826 259.859222412 259.604156494 258.465789795 255.225479126 250.907592773 246.748535156 242.700073242 241.40612793 241.459381104 241.486572266 241.858612061 242.583084106 242.363891602 241.749481201 241.170730591 239.598175049 238.407516479 239.676315308 240.191665649 237.461013794 235.710128784 238.800857544 240.629257202 240.74432373 240.865951538 226.569793701 230.514663696 235.618331909 240.988677979 244.519607544 243.686859131 238.956695557 236.847106934 240.687088013 243.82824707 246.831558228 249.276550293 252.252349854 255.495422363 257.894439697 260.472137451 263.097442627 265.248657227 267.161132812 269.089630127 270.939910889 272.687744141 274.387695312 276.001464844 277.3074646 278.136810303 278.679260254 279.012451172 279.354522705 280.071502686 281.221954346 282.715362549 284.509521484 286.936798096 289.493347168 291.000305176 292.088989258 293.222320557 294.138214111 294.749481201 295.174255371 295.473968506 294.681335449 293.028747559 292.572357178 292.738525391 293.763305664 295.819091797 297.40838623 297.223602295 296.625610352 296.503448486 296.601165771 296.976013184 297.467712402 297.863342285 297.774414062 297.309814453 297.402038574 297.886291504 299.796264648 301.611785889 300.920959473 299.61920166 298.28729248 297.63772583 297.231048584 296.936889648 296.50479126 295.970977783 295.511871338 295.119842529 294.848632812 294.799926758 294.68069458 294.411651611 294.322814941 294.391265869 294.377105713 294.329101562 294.26776123 293.940002441 293.27935791 292.572265625 291.916992188 291.305450439 290.847381592 290.485412598 290.118621826 289.737213135 289.017944336 287.736999512 285.931182861 283.134033203 278.754394531 275.026184082 272.924316406 271.636474609 270.317962646 269.251098633 268.291900635 267.377044678 266.440093994 265.981536865 266.853851318 267.672821045 266.118164062 263.577178955 261.306030273 258.907714844 257.722381592 257.534973145 257.638916016 257.108978271 255.749389648 253.976196289 252.231811523 250.408630371 248.067672729 246.19770813 246.976272583 248.02532959 243.083435059 237.150924683 237.299407959 238.396377563 239.425003052 239.550064087 247.170639038 249.876678467 253.446090698 257.598999023 261.314849854 263.311126709 264.522155762 265.182281494 266.037658691 266.802276611 267.677001953 268.3152771 268.655212402 269.149810791 269.92175293 270.487609863 270.923736572 271.297454834 271.525756836 272.383911133 273.373748779 274.168426514 275.090698242 276.297271729 277.40145874 278.164642334 278.719360352 279.062072754 279.547851562 280.513671875 281.636260986 282.760162354 284.140289307 286.026397705 288.290496826 289.767059326 290.932189941 292.210571289 293.320709229 294.242553711 295.061279297 295.559539795 295.559783936 295.290222168 295.170837402 295.216369629 295.300231934 295.884857178 296.382202148 296.588134766 296.194915771 295.540863037 295.375061035 295.553527832 296.053161621 296.43927002 296.620697021 296.665557861 296.649353027 296.365722656 296.59777832 297.039215088 297.520874023 297.850921631 298.33102417 298.431365967 298.183959961 297.702850342 297.14932251 296.486053467 295.916320801 295.612640381 295.456817627 295.299865723 295.014129639 294.732177734 294.572875977 294.546783447 294.571838379 294.598236084 294.548675537 294.271789551 293.833709717 293.380096436 292.763275146 291.999359131 291.395111084 290.874786377 290.331054688 289.933074951 289.439239502 288.398986816 286.750366211 284.086883545 279.660766602 275.698120117 272.746398926 269.82244873 266.809997559 264.993652344 263.614685059 263.611297607 264.707305908 266.034179688 266.849914551 266.056182861 262.869293213 259.089599609 254.428878784 251.219177246 249.733093262 250.298538208 250.559494019 250.114074707 248.622650146 246.679534912 244.693954468 242.410217285 239.764312744 238.849472046 240.635375977 241.966567993 240.453491211 236.147766113 239.005172729 240.300125122 239.990036011 240.006088257 237.069000244 240.17237854 244.567214966 249.373809814 253.435745239 255.356002808 256.337890625 257.859985352 260.241516113 262.083374023 264.124572754 264.7706604 265.384552002 266.196014404 267.458526611 268.615539551 269.440307617 270.465423584 271.449188232 272.807250977 274.059753418 275.017242432 275.821350098 276.822174072 277.895751953 278.684692383 279.153442383 279.387756348 279.732208252 280.650268555 282.049072266 283.528381348 284.958190918 286.832733154 289.091674805 290.678100586 291.866516113 293.233306885 294.523773193 295.540496826 296.173309326 296.450775146 296.332733154 296.02255249 295.924987793 295.698486328 295.509307861 296.178863525 296.99420166 297.082092285 296.468933105 295.874816895 295.70892334 295.951690674 296.652740479 297.199249268 297.361206055 297.335083008 297.278839111 297.196746826 298.075592041 299.178375244 299.389404297 298.520721436 297.919067383 297.860717773 297.611663818 297.087524414 296.507202148 295.914886475 295.378845215 294.964630127 294.7706604 294.729370117 294.572662354 294.30569458 294.158111572 294.099334717 294.104766846 294.184448242 294.242736816 294.140899658 293.881286621 293.464569092 292.84197998 292.194915771 291.670776367 291.066925049 290.342559814 289.737640381 289.063110352 288.007873535 286.455078125 283.731506348 278.729827881 273.983306885 270.29208374 267.41418457 264.694915771 262.623809814 261.770843506 262.750762939 263.661743164 263.698181152 263.109710693 261.132415771 256.51852417 251.513885498 244.455627441 241.236938477 240.528274536 240.777877808 241.29826355 241.783035278 242.371368408 242.130111694 241.375808716 240.495071411 238.531539917 237.595336914 239.28515625 240.153594971 239.515960693 235.881698608 238.850799561 240.684906006 240.77986145 240.881866455 226.535751343 230.446243286 235.499450684 240.858688354 244.657470703 244.166046143 239.668914795 237.55140686 240.847213745 244.338272095 247.360626221 250.028137207 253.168533325 256.427093506 258.82232666 261.558563232 264.346923828 266.490234375 268.258636475 269.847320557 271.262695312 272.744262695 274.326507568 275.873443604 277.142211914 277.920562744 278.348266602 278.626159668 279.084350586 280.020294189 281.347015381 282.88067627 284.584686279 286.793426514 289.181488037 290.638824463 291.651947021 292.820465088 293.924438477 294.825317383 295.51159668 295.816741943 295.550384521 294.868255615 294.453063965 293.936157227 293.773498535 295.370361328 296.730255127 297.041351318 296.635803223 296.204650879 296.003692627 296.336090088 296.958465576 297.46963501 297.767028809 297.762908936 297.581604004 297.885925293 299.524139404 300.78717041 300.012908936 298.392486572 297.43560791 297.228027344 297.021362305 296.678497314 296.183654785 295.743774414 295.398834229 294.974578857 294.695861816 294.690490723 294.566192627 294.243347168 294.110565186 294.148529053 294.162994385 294.207794189 294.198516846 293.86340332 293.255310059 292.606964111 291.94644165 291.328918457 290.884307861 290.503845215 290.144134521 289.843444824 289.229431152 288.048339844 286.277008057 283.271179199 278.493591309 274.742004395 272.960327148 271.756011963 270.5206604 269.711212158 269.181884766 268.738708496 268.320251465 268.443756104 269.093292236 269.055938721 266.724700928 263.643096924 260.132324219 257.308197021 256.106231689 255.99647522 256.149810791 255.67527771 254.685287476 253.185211182 251.247970581 249.468109131 247.222854614 245.594528198 246.707992554 248.06703186 245.432281494 237.175079346 237.244003296 238.458251953 239.467773438 239.562057495 247.165725708 249.818496704 253.336410522 257.440429688 261.173400879 263.211639404 264.478729248 265.321166992 266.091369629 266.933868408 267.86428833 268.499145508 268.95111084 269.583679199 270.199676514 270.615325928 271.050628662 271.430328369 271.764801025 272.680938721 273.464630127 274.128692627 274.964111328 276.126251221 277.225128174 277.917144775 278.35736084 278.71774292 279.397888184 280.53012085 281.712036133 282.836151123 284.162384033 285.908996582 287.969818115 289.350097656 290.452850342 291.688568115 292.828521729 293.843292236 294.790466309 295.472167969 295.772583008 296.016601562 296.275421143 296.608337402 296.165557861 295.936950684 295.800476074 295.823577881 295.726715088 295.349700928 295.119720459 295.105194092 295.359069824 295.780822754 296.233612061 296.525726318 296.650238037 296.674713135 296.681671143 296.890197754 297.378936768 298.390625 298.8878479 298.543579102 298.029327393 297.542877197 296.98223877 296.322662354 295.761474609 295.467651367 295.345977783 295.209197998 294.888305664 294.575836182 294.41192627 294.371948242 294.361816406 294.366790771 294.336395264 294.110992432 293.722442627 293.267974854 292.646606445 291.882293701 291.227111816 290.654754639 290.118530273 289.710021973 289.194580078 288.198303223 286.552062988 283.745178223 279.208984375 275.619262695 272.932556152 270.415405273 268.299804688 267.177978516 266.478393555 266.657043457 267.467376709 268.35736084 268.738555908 267.53414917 263.607879639 258.923431396 253.25869751 249.998947144 248.734512329 249.532287598 249.843765259 249.216995239 247.54699707 245.287750244 243.197860718 241.011444092 238.482803345 238.084793091 240.320785522 242.017959595 240.734222412 236.421508789 239.219223022 240.310821533 240.03364563 240.043884277 236.969650269 239.989181519 244.248275757 249.335098267 253.291320801 255.359420776 256.528015137 257.920013428 260.0965271 262.343963623 264.663604736 265.323486328 265.834747314 266.54901123 267.618225098 268.699279785 269.722320557 270.714660645 271.700408936 273.070068359 274.16607666 275.011505127 275.738098145 276.660125732 277.696685791 278.43572998 278.853729248 279.116271973 279.641143799 280.790466309 282.1902771 283.518218994 284.838378906 286.617889404 288.738830566 290.278289795 291.406494141 292.721832275 294.010314941 295.141998291 295.994995117 296.564941406 296.845062256 297.018859863 297.097137451 297.140228271 296.469360352 296.170532227 296.353424072 296.263122559 296.065002441 295.80557251 295.630828857 295.475219727 295.856567383 296.497314453 297.016143799 297.212738037 297.176879883 297.254577637 297.762573242 298.495635986 299.250030518 299.047790527 298.460754395 297.935455322 297.37677002 296.819000244 296.325408936 295.822845459 295.279510498 294.862579346 294.692260742 294.625518799 294.434936523 294.134918213 293.975006104 293.937713623 293.93359375 293.947998047 294.00994873 294.017730713 293.817810059 293.353088379 292.700164795 292.038848877 291.482543945 290.942810059 290.360870361 289.790557861 289.072021484 288.029632568 286.476165771 283.573852539 278.503356934 274.245635986 270.751251221 267.818481445 265.479705811 264.103271484 264.247802734 265.708679199 266.294128418 266.011535645 265.174255371 262.672363281 257.149291992 250.61315918 242.660491943 240.143859863 239.301132202 239.340408325 240.242858887 241.060882568 241.720840454 241.43510437 240.774810791 239.474716187 237.470458984 236.822250366 238.979019165 240.239135742 239.790649414 236.178588867 239.00869751 240.672790527 240.812545776 240.896835327 226.488479614 230.333328247 235.378204346 240.722259521 244.767684937 244.685897827 240.481826782 238.249160767 240.428878784 244.657730103 247.844070435 250.806259155 254.079406738 257.325897217 259.729095459 262.611907959 265.553131104 267.656463623 269.170562744 270.480041504 271.627502441 272.862060547 274.28326416 275.751220703 276.967468262 277.677856445 278.01550293 278.301177979 278.908782959 280.071990967 281.535888672 283.040100098 284.648834229 286.70791626 288.928131104 290.324462891 291.263458252 292.371673584 293.538330078 294.604400635 295.465362549 296.00692749 296.105987549 296.042419434 295.928863525 295.833557129 295.114868164 295.306243896 296.368041992 297.118438721 297.271850586 296.584564209 296.059265137 295.90411377 296.243927002 296.802886963 297.428619385 297.699707031 297.586608887 297.792907715 298.644744873 299.763824463 299.725738525 298.521270752 297.770751953 297.273742676 296.873413086 296.435668945 295.981109619 295.646697998 295.305450439 294.866790771 294.621124268 294.589447021 294.42175293 294.094696045 293.942687988 293.932647705 293.958831787 294.053070068 294.045410156 293.731292725 293.226928711 292.631408691 291.952392578 291.328613281 290.884643555 290.479644775 290.142028809 289.905059814 289.356109619 288.252563477 286.574676514 283.496337891 278.472229004 274.969360352 273.238983154 272.003295898 270.868011475 270.472717285 270.57510376 270.434082031 270.087646484 270.091400146 270.365570068 269.839172363 266.794464111 262.905059814 258.391723633 255.639389038 254.216415405 254.167434692 254.485687256 254.17225647 253.411941528 252.196792603 250.310409546 248.473175049 246.338424683 245.040176392 246.459091187 248.105010986 245.770690918 237.33253479 237.357421875 238.39855957 239.509994507 239.57723999 247.146179199 249.76499939 253.214660645 257.26675415 260.98336792 263.130279541 264.38760376 265.268432617 266.25213623 267.018066406 268.003845215 268.620544434 269.225067139 269.91229248 270.447540283 270.781860352 271.21307373 271.597808838 272.089263916 272.925689697 273.584472656 274.113922119 274.840026855 275.93572998 276.991699219 277.597961426 277.971679688 278.423370361 279.292724609 280.57220459 281.808837891 282.897125244 284.153106689 285.785522461 287.674316406 289.018432617 290.133850098 291.337371826 292.424133301 293.422912598 294.357421875 295.151580811 295.870147705 296.502990723 297.044830322 297.403015137 297.700286865 296.089874268 295.356994629 295.422241211 296.212249756 296.068786621 295.583007812 295.277496338 295.104553223 295.518157959 296.019897461 296.306915283 296.521179199 296.648223877 296.657043457 296.83114624 297.314758301 298.828460693 298.846038818 298.351013184 297.827819824 297.384674072 296.843048096 296.234313965 295.697143555 295.420196533 295.304473877 295.140289307 294.755523682 294.422973633 294.264251709 294.195068359 294.136352539 294.132171631 294.139953613 293.969116211 293.608276367 293.135040283 292.524932861 291.800079346 291.095489502 290.449188232 289.907623291 289.483825684 288.927703857 287.97946167 286.387176514 283.565765381 279.165679932 275.82623291 273.356933594 271.15133667 269.476043701 268.787994385 268.564208984 268.905914307 269.621307373 270.207489014 270.122894287 268.218109131 263.913726807 258.887207031 252.87600708 249.244522095 247.864395142 247.972854614 248.371765137 247.610794067 245.926574707 243.594314575 241.608200073 239.460845947 237.386047363 237.46446228 239.927902222 242.010238647 240.983413696 238.015396118 239.243179321 240.360488892 240.099212646 240.114486694 236.905212402 239.910232544 244.28477478 249.077316284 253.128921509 255.340560913 256.631622314 258.078887939 260.218017578 262.589660645 265.101165771 265.886291504 266.300323486 266.923309326 267.829803467 268.983917236 270.080535889 270.995605469 271.966491699 273.262786865 274.213775635 274.984771729 275.658050537 276.510131836 277.467895508 278.12210083 278.523345947 278.878356934 279.577423096 280.887969971 282.239959717 283.432434082 284.697021484 286.428649902 288.469848633 290.006652832 291.128967285 292.352813721 293.551574707 294.680908203 295.621429443 296.41293335 297.147705078 297.631744385 297.819244385 297.825164795 297.822540283 296.507324219 295.845825195 295.512756348 296.085662842 296.325561523 295.898498535 295.642303467 295.699890137 296.279632568 296.740966797 296.828338623 296.945678711 297.011962891 297.336853027 298.04296875 299.203399658 299.001800537 298.34552002 297.72354126 297.121124268 296.610900879 296.202087402 295.745910645 295.214935303 294.841644287 294.690887451 294.566589355 294.304199219 293.979614258 293.816680908 293.768005371 293.721893311 293.695404053 293.794433594 293.884765625 293.707366943 293.198699951 292.547027588 291.905273438 291.316558838 290.793548584 290.317565918 289.79296875 289.067504883 288.060760498 286.540405273 283.62298584 278.714813232 274.857757568 271.613555908 268.653930664 266.487335205 266.10925293 267.045318604 267.988739014 268.261901855 267.839324951 266.66217041 263.327484131 257.290557861 249.77230835 242.532180786 239.692016602 238.802337646 238.476119995 239.128509521 240.20854187 240.634918213 240.433456421 239.725387573 238.345169067 236.428466797 236.265792847 238.695907593 240.179367065 239.923614502 238.323272705 238.996292114 240.700012207 240.869934082 240.939239502 226.449005127 230.238433838 235.22354126 240.570556641 244.781280518 245.117538452 241.40838623 239.172149658 241.098342896 244.90977478 248.265777588 251.59916687 255.024139404 258.246154785 260.714508057 263.669952393 266.728942871 268.621582031 269.878662109 271.018585205 271.983581543 273.016479492 274.242919922 275.616729736 276.765380859 277.388549805 277.666320801 278.00881958 278.789611816 280.189025879 281.745300293 283.18927002 284.719512939 286.654022217 288.729919434 290.08984375 291.00100708 292.046173096 293.196990967 294.307495117 295.218322754 295.925811768 296.463378906 296.75994873 296.844390869 296.71862793 296.745117188 296.170379639 296.003814697 297.600006104 298.963745117 298.152526855 297.075195312 296.535491943 296.341796875 296.564788818 297.016479492 297.31072998 297.375671387 297.456695557 297.907287598 299.002593994 299.799316406 298.517364502 297.696044922 297.159851074 296.685577393 296.229064941 295.866882324 295.553588867 295.173553467 294.788421631 294.589447021 294.476654053 294.253356934 293.95098877 293.772186279 293.69720459 293.742980957 293.873840332 293.851715088 293.594482422 293.213195801 292.648071289 291.945159912 291.351928711 290.916442871 290.482757568 290.146789551 289.927734375 289.400268555 288.363525391 286.782073975 283.808288574 278.88659668 275.475189209 273.665863037 272.287109375 271.263397217 271.373321533 272.014465332 271.827087402 271.528564453 271.423950195 271.32723999 270.189849854 266.720062256 262.565124512 257.606262207 254.598358154 252.969543457 252.636077881 252.772659302 252.549026489 252.016357422 251.047271729 249.400512695 247.464141846 245.534133911 244.584655762 246.261428833 248.097457886 245.860946655 239.449783325 237.142486572 238.486602783 239.59854126 239.626815796 247.116104126 249.696456909 253.099655151 257.078155518 260.798522949 262.998840332 264.34866333 265.280792236 266.304870605 267.10836792 268.142059326 268.764221191 269.419281006 270.177978516 270.690765381 271.022125244 271.519805908 272.040496826 272.453399658 273.117492676 273.719818115 274.136749268 274.716400146 275.694000244 276.640045166 277.144897461 277.541320801 278.155151367 279.162811279 280.560943604 281.852294922 282.939605713 284.13772583 285.645355225 287.373199463 288.729217529 289.944824219 291.16192627 292.147064209 293.02935791 293.905944824 294.77053833 295.729827881 296.681091309 297.456268311 297.977172852 298.012878418 297.815246582 295.902832031 295.963409424 296.931365967 297.614135742 296.68737793 295.800842285 295.265563965 295.162078857 295.55166626 296.117401123 296.455566406 296.678527832 296.870788574 297.351409912 297.830474854 298.949584961 298.651763916 298.10534668 297.699890137 297.281036377 296.775146484 296.276763916 295.804229736 295.478302002 295.287200928 295.045410156 294.610351562 294.293457031 294.116210938 293.982421875 293.903320312 293.928039551 293.953155518 293.804290771 293.461669922 292.979248047 292.398406982 291.742736816 291.0027771 290.263305664 289.691131592 289.24621582 288.641387939 287.753997803 286.276245117 283.535461426 279.336181641 276.093505859 273.816802979 271.845184326 270.493896484 270.027984619 269.946899414 270.218139648 270.760131836 271.189422607 270.947631836 268.583221436 264.278076172 258.545898438 253.346817017 249.560699463 247.01260376 246.372772217 246.606277466 245.880508423 243.944671631 241.666503906 239.860992432 238.028991699 236.321640015 236.970840454 239.806732178 241.979446411 241.082580566 238.597595215 239.277999878 240.466598511 240.143295288 240.22769165 236.914855957 239.952087402 244.098968506 248.89994812 252.92199707 255.295684814 256.714050293 258.295684814 260.345092773 262.857086182 265.46496582 266.65927124 267.007965088 267.468322754 268.185577393 269.392700195 270.486999512 271.339447021 272.219482422 273.34463501 274.217712402 274.935272217 275.571533203 276.349853516 277.180236816 277.718658447 278.129150391 278.613952637 279.453155518 280.848632812 282.171081543 283.300323486 284.545257568 286.204498291 288.151153564 289.720367432 290.927276611 292.11529541 293.22088623 294.259979248 295.182373047 296.039245605 296.959625244 297.699462891 298.075805664 298.210235596 298.163452148 298.128448486 296.191864014 295.721343994 296.537719727 297.086669922 296.509124756 296.032318115 295.702209473 295.732147217 296.005493164 296.484313965 296.786651611 296.956878662 297.274536133 298.300292969 299.074554443 298.765594482 298.067443848 297.486663818 297.000976562 296.533172607 296.113800049 295.675292969 295.213287354 294.894470215 294.690917969 294.478118896 294.150085449 293.82131958 293.626342773 293.531494141 293.48651123 293.484039307 293.580444336 293.655273438 293.504089355 293.043640137 292.432800293 291.824493408 291.210906982 290.642608643 290.195831299 289.740203857 289.06842041 288.131713867 286.672973633 283.874969482 279.2449646 275.598266602 272.618896484 269.814697266 267.863372803 268.178527832 268.964355469 269.354370117 269.327453613 268.830291748 267.433532715 263.625762939 257.744598389 248.32359314 243.855529785 241.137176514 239.416702271 238.52432251 238.716781616 239.266891479 239.322631836 238.957992554 238.138076782 237.076034546 235.506439209 235.849685669 238.631240845 240.139068604 239.921035767 239.030395508 238.962875366 240.815505981 240.88822937 241.015823364 226.368225098 230.163635254 235.077453613 240.400299072 244.737380981 245.464111328 242.373260498 240.225387573 241.761444092 245.260604858 248.94190979 252.662948608 256.12588501 259.344482422 262.001861572 264.949707031 267.798919678 269.44430542 270.475524902 271.493988037 272.337402344 273.200317383 274.219543457 275.458068848 276.503448486 277.01940918 277.272003174 277.715606689 278.699951172 280.328369141 281.934997559 283.335418701 284.769622803 286.544555664 288.486328125 289.870117188 290.868774414 291.94052124 293.015167236 294.023254395 294.865631104 295.587982178 296.371795654 297.02520752 297.349822998 297.2940979 296.83972168 296.648956299 295.876312256 296.82131958 298.744689941 299.432250977 298.71963501 298.225280762 297.235107422 296.452667236 296.34664917 296.862548828 297.101196289 297.24887085 297.874450684 299.697235107 299.72467041 298.447723389 297.6355896 297.044433594 296.537506104 296.142272949 295.819976807 295.432830811 295.02130127 294.722717285 294.519683838 294.306793213 294.073516846 293.807617188 293.55847168 293.423187256 293.527801514 293.69619751 293.671661377 293.493011475 293.209197998 292.653167725 291.966552734 291.446838379 291.011260986 290.529846191 290.16796875 289.923858643 289.388153076 288.402709961 286.896148682 284.124481201 279.574127197 276.207611084 274.334320068 272.71282959 271.688415527 272.254333496 272.99130249 272.666931152 272.357666016 272.21206665 271.891296387 270.445343018 266.936187744 261.923339844 257.643341064 254.554000854 252.63117981 251.880996704 251.477600098 250.901596069 250.277633667 249.642318726 248.125473022 246.379074097 244.759536743 244.198867798 246.094741821 248.079391479 245.844451904 239.9818573 236.867782593 238.634613037 239.592544556 239.718856812 247.085006714 249.634841919 252.953964233 256.880523682 260.576446533 262.861938477 264.309967041 265.327758789 266.184204102 267.161956787 268.296569824 268.977020264 269.529510498 270.35244751 270.889221191 271.241973877 271.833740234 272.394897461 272.682281494 273.199768066 273.791534424 274.173400879 274.644073486 275.463043213 276.263549805 276.7215271 277.217956543 277.954376221 279.005706787 280.439117432 281.786834717 282.937347412 284.112670898 285.504669189 287.110748291 288.4972229 289.827270508 291.079345703 291.989044189 292.815216064 293.673614502 294.554779053 295.554504395 296.528411865 297.343353271 297.990905762 298.189575195 298.283447266 296.86026001 296.572540283 297.381866455 298.051422119 297.808563232 296.842041016 295.668884277 295.243255615 295.322967529 295.75177002 296.236968994 296.532104492 296.787841797 297.332244873 298.658691406 299.015380859 298.552703857 298.026092529 297.685302734 297.258758545 296.769775391 296.328125 295.877929688 295.498016357 295.230255127 294.933776855 294.512298584 294.227325439 294.010192871 293.813476562 293.725860596 293.745849609 293.733581543 293.598083496 293.307922363 292.831756592 292.249450684 291.650299072 290.941131592 290.167541504 289.555175781 289.057495117 288.39352417 287.532318115 286.151977539 283.492767334 279.449066162 276.32989502 274.293731689 272.590057373 271.50680542 271.115020752 271.024536133 271.191467285 271.61807251 271.954345703 271.672332764 269.226501465 265.198516846 259.691497803 254.809539795 250.742858887 247.081466675 245.355239868 245.104919434 243.860092163 241.732620239 239.643875122 238.160125732 236.746902466 235.34375 236.530090332 239.614532471 241.94833374 241.325439453 238.902862549 239.633758545 240.524414062 240.253692627 240.258758545 236.88861084 239.77432251 243.967681885 248.55531311 252.678619385 255.206192017 256.779174805 258.458648682 260.454437256 263.045349121 265.797668457 267.211090088 267.588928223 267.921356201 268.660369873 269.719146729 270.810546875 271.675537109 272.412078857 273.328948975 274.189819336 274.897338867 275.505859375 276.210479736 276.909881592 277.342590332 277.783325195 278.359558105 279.251159668 280.655212402 282.011230469 283.177246094 284.448150635 286.016082764 287.837890625 289.40335083 290.705963135 291.945098877 293.016174316 294.01953125 294.950164795 295.785614014 296.673858643 297.477478027 297.993103027 298.218170166 298.133422852 298.396759033 297.763916016 297.095550537 297.827667236 297.887298584 297.655853271 296.708953857 295.874267578 295.545684814 295.604766846 295.947601318 296.469696045 296.702972412 297.006561279 297.87487793 299.103027344 298.700378418 297.981628418 297.418518066 296.989257812 296.53338623 296.078704834 295.623596191 295.159606934 294.81439209 294.561981201 294.338439941 294.009033203 293.680114746 293.449401855 293.315124512 293.288574219 293.312103271 293.363464355 293.395507812 293.310028076 292.954925537 292.346343994 291.724609375 291.125457764 290.532073975 290.050506592 289.663543701 289.095458984 288.226715088 286.810852051 284.133483887 279.808624268 276.384765625 273.715820312 271.317443848 269.826751709 270.132263184 270.477264404 270.469451904 270.183654785 269.648986816 268.063598633 264.216644287 258.874237061 250.159744263 246.526794434 243.53263855 241.023788452 239.18850708 238.590332031 238.296325684 237.873764038 237.27053833 236.64302063 235.96434021 234.930175781 235.685974121 238.650802612 240.121383667 240.060714722 239.375183105 239.228897095 240.83555603 240.974777222 241.03616333 226.304321289 230.089767456 234.902832031 240.192611694 244.612518311 245.738052368 243.32661438 241.444915771 242.563446045 245.869888306 249.897109985 253.795211792 257.21987915 260.42855835 263.188262939 266.064544678 268.550384521 270.014953613 270.898498535 271.795532227 272.596954346 273.358184814 274.2159729 275.317260742 276.249145508 276.681732178 276.951599121 277.518829346 278.652191162 280.383361816 282.032989502 283.427459717 284.784637451 286.423156738 288.218841553 289.610198975 290.740020752 291.906829834 292.907623291 293.801177979 294.574493408 295.255065918 296.077423096 296.909179688 297.462402344 297.631713867 297.268371582 296.91595459 296.45489502 296.742370605 297.967681885 298.773254395 299.015289307 299.217773438 298.244018555 297.121246338 296.426330566 296.439697266 296.656982422 296.815765381 297.592163086 299.158172607 299.054412842 298.32824707 297.704864502 297.139678955 296.61340332 296.224121094 295.841522217 295.352783203 294.892181396 294.571929932 294.311767578 294.097869873 293.919464111 293.669799805 293.396484375 293.273742676 293.393707275 293.527679443 293.498657227 293.386383057 293.14151001 292.610778809 291.998596191 291.534088135 291.058227539 290.539489746 290.169342041 289.895812988 289.368347168 288.433685303 286.939117432 284.28994751 280.106079102 276.852172852 274.997802734 273.377929688 272.543365479 273.373565674 273.75894165 273.352539062 273.01651001 272.837341309 272.416687012 270.761016846 267.526977539 262.614624023 258.745910645 255.286483765 253.310470581 252.031982422 250.75302124 249.274642944 248.400299072 248.082092285 246.941421509 245.475158691 244.116134644 243.905548096 246.021179199 248.110397339 245.858825684 240.067825317 237.021179199 238.570571899 239.685302734 239.743545532 247.064865112 249.571044922 252.812255859 256.66418457 260.343383789 262.696685791 264.260284424 265.314880371 266.08001709 267.194396973 268.409454346 269.194519043 269.685302734 270.490753174 271.052154541 271.418182373 272.014831543 272.544189453 272.811828613 273.211334229 273.788757324 274.194091797 274.590637207 275.25793457 275.918945312 276.399780273 276.998413086 277.790496826 278.854888916 280.301818848 281.704376221 282.911102295 284.071044922 285.375915527 286.901489258 288.316192627 289.723388672 291.000946045 291.897857666 292.732177734 293.588470459 294.429199219 295.37878418 296.333953857 297.145751953 297.797729492 298.200500488 298.293426514 298.521179199 298.347747803 298.212768555 298.179901123 297.763793945 297.85055542 297.380554199 296.019989014 295.775421143 295.697570801 295.932373047 296.216918945 296.601715088 297.216003418 298.776397705 299.05279541 298.570617676 298.067749023 297.73135376 297.274902344 296.752593994 296.277496338 295.81048584 295.426208496 295.1484375 294.818511963 294.411132812 294.139953613 293.910583496 293.689056396 293.584411621 293.565460205 293.524353027 293.428344727 293.182891846 292.692352295 292.085693359 291.520507812 290.873657227 290.129699707 289.487762451 288.924468994 288.217254639 287.345672607 285.979614258 283.314300537 279.398345947 276.514923096 274.668548584 273.176483154 272.252655029 271.852233887 271.739257812 271.892089844 272.324554443 272.698913574 272.563842773 270.67489624 266.298797607 261.790283203 257.568511963 252.894104004 248.161941528 244.954437256 243.720016479 241.951370239 239.73236084 237.872009277 236.659713745 235.470840454 234.659255981 236.236129761 239.443237305 241.973571777 241.408050537 239.068328857 239.68862915 240.636047363 240.359542847 240.259475708 236.868881226 239.666229248 243.784622192 248.376205444 252.449066162 255.07598877 256.826477051 258.555664062 260.486663818 263.097747803 266.024017334 267.579071045 267.977783203 268.2605896 269.047363281 270.001403809 271.071777344 271.920013428 272.550506592 273.279846191 274.125427246 274.864257812 275.443237305 276.071289062 276.652496338 277.037872314 277.523925781 278.140319824 279.032165527 280.42678833 281.842956543 283.07598877 284.383270264 285.898071289 287.62109375 289.154205322 290.517181396 291.827545166 292.911773682 293.928771973 294.866027832 295.673828125 296.500213623 297.290161133 297.877441406 298.158996582 298.104736328 298.041290283 298.769958496 299.087310791 299.258636475 299.247192383 299.045684814 298.848144531 297.885314941 296.626647949 296.120300293 295.905212402 296.016723633 296.270294189 296.747070312 297.41506958 298.902893066 298.697113037 298.015380859 297.455474854 297.032745361 296.561157227 296.055450439 295.539337158 295.016845703 294.642669678 294.398651123 294.182525635 293.849822998 293.514984131 293.282318115 293.127532959 293.078186035 293.114379883 293.176879883 293.203918457 293.141113281 292.844726562 292.244171143 291.612304688 291.05166626 290.463989258 289.94430542 289.589050293 289.120391846 288.305450439 286.888427734 284.216217041 280.105072021 276.914611816 274.554748535 272.569458008 271.38067627 271.363037109 271.465270996 271.248077393 270.922027588 270.522338867 269.034484863 265.649719238 260.31552124 256.059356689 251.291931152 246.52835083 243.16317749 240.341339111 238.868377686 237.609466553 236.405441284 235.545440674 235.396896362 235.385467529 234.722351074 235.821472168 238.692367554 240.155502319 240.046661377 239.540512085 239.229736328 240.92175293 241.0546875 241.035964966 226.229263306 229.979095459 234.751602173 240.010742188 244.517929077 246.065048218 244.126251221 242.500961304 243.231491089 246.533737183 250.990875244 254.921813965 258.264099121 261.420410156 264.173339844 266.919830322 269.119445801 270.423522949 271.21572876 271.996582031 272.775238037 273.481231689 274.212127686 275.193725586 276.021270752 276.402618408 276.730010986 277.425933838 278.64352417 280.381866455 282.078094482 283.460083008 284.785064697 286.342926025 288.017608643 289.384155273 290.588500977 291.819244385 292.773956299 293.624847412 294.396575928 295.072479248 295.875061035 296.73739624 297.420837402 297.806518555 297.771606445 297.507537842 297.527099609 297.404846191 297.59979248 297.955230713 297.996002197 299.377685547 299.993255615 299.240600586 298.179901123 296.7762146 296.321411133 296.445281982 297.347503662 298.304260254 298.709594727 298.291107178 297.815032959 297.277740479 296.739776611 296.309814453 295.854888916 295.299987793 294.782318115 294.395507812 294.098632812 293.908660889 293.726745605 293.47756958 293.247833252 293.176483154 293.261474609 293.338684082 293.331787109 293.267089844 293.032287598 292.549285889 292.008880615 291.54977417 291.038787842 290.525482178 290.147155762 289.827789307 289.314056396 288.426422119 286.916564941 284.265106201 280.332275391 277.310546875 275.509338379 274.074493408 273.574493408 274.209381104 274.272644043 273.818939209 273.489135742 273.386505127 273.041320801 271.537506104 267.598266602 264.271911621 261.17868042 257.200714111 254.797073364 252.754196167 250.485168457 248.197265625 246.869598389 246.657958984 245.891525269 244.63192749 243.597244263 243.712265015 245.995056152 248.123306274 245.847122192 240.140304565 236.729095459 238.608795166 239.777526855 239.743545532 247.070755005 249.499984741 252.666244507 256.431976318 260.067565918 262.505096436 264.220703125 265.338989258 266.020111084 267.24899292 268.549926758 269.397796631 269.883300781 270.604705811 271.176177979 271.544433594 272.088592529 272.595031738 272.873413086 273.186645508 273.726654053 274.20123291 274.549346924 275.075744629 275.635650635 276.177886963 276.837585449 277.66229248 278.733978271 280.206237793 281.650634766 282.883666992 284.019958496 285.260559082 286.739929199 288.180877686 289.627075195 290.910186768 291.840332031 292.712677002 293.585205078 294.382904053 295.258392334 296.181274414 297.011871338 297.669830322 298.111724854 298.201019287 298.32043457 298.395019531 298.358825684 297.895172119 297.331848145 297.578796387 298.009033203 297.915588379 296.752471924 295.990997314 295.835571289 295.895904541 296.417877197 297.291900635 298.847381592 299.064361572 298.611022949 298.138916016 297.788116455 297.303833008 296.739318848 296.18637085 295.675018311 295.292205811 295.026611328 294.664245605 294.269714355 294.010040283 293.796356201 293.578613281 293.456054688 293.396453857 293.359680176 293.309997559 293.070098877 292.555755615 291.941680908 291.391052246 290.79083252 290.092132568 289.427154541 288.802062988 288.078125 287.195281982 285.819274902 283.14642334 279.458068848 276.778503418 275.062896729 273.74407959 272.904174805 272.463928223 272.337341309 272.522186279 272.981323242 273.345733643 273.251098633 272.059906006 269.077178955 264.320648193 259.230651855 255.911270142 250.577270508 245.57824707 243.039596558 240.338623047 238.206726074 236.434875488 235.499786377 234.720275879 234.376647949 236.162628174 239.50592041 242.027053833 241.699859619 239.202835083 239.799133301 240.65423584 240.372451782 240.259887695 236.797073364 239.619125366 243.532455444 248.062957764 252.162475586 254.933670044 256.8125 258.692108154 260.504821777 262.954742432 266.043914795 267.844024658 268.292480469 268.551605225 269.341918945 270.246429443 271.289886475 272.092834473 272.643066406 273.21887207 274.024169922 274.812652588 275.363494873 275.903869629 276.392578125 276.816467285 277.342681885 277.96572876 278.838531494 280.220825195 281.690551758 282.98538208 284.328735352 285.832122803 287.500854492 288.99520874 290.392974854 291.792541504 292.913543701 293.924560547 294.834838867 295.63269043 296.401672363 297.113372803 297.741546631 298.15512085 298.200439453 298.093688965 298.32913208 298.753234863 299.171417236 299.315429688 299.23928833 299.315155029 299.334899902 299.07208252 296.993896484 296.301727295 295.951690674 296.047637939 296.554046631 297.335235596 298.746520996 298.69442749 298.082794189 297.551422119 297.124176025 296.612823486 296.042602539 295.454162598 294.872406006 294.470550537 294.226715088 293.984649658 293.633514404 293.322570801 293.124694824 292.953094482 292.849578857 292.899810791 293.033355713 293.065856934 292.95501709 292.686889648 292.158599854 291.542144775 290.988739014 290.402587891 289.839233398 289.486022949 289.118560791 288.387298584 286.979095459 284.266601562 280.39151001 277.420806885 275.323394775 273.614105225 272.532470703 272.258605957 272.184875488 271.862060547 271.583068848 271.302001953 269.96484375 267.157043457 262.566741943 258.858886719 255.3828125 251.050247192 246.628341675 242.140731812 239.780517578 237.498046875 235.501754761 234.253387451 234.591293335 235.089065552 234.69128418 236.02722168 238.866577148 240.173904419 240.0965271 239.756439209 239.31918335 240.985626221 241.064697266 241.035842896 226.141845703 229.902435303 234.582687378 239.790557861 244.333526611 246.226409912 244.759307861 243.735427856 243.698669434 246.954162598 252.199859619 256.072174072 259.289733887 262.347290039 264.962341309 267.572631836 269.552429199 270.716400146 271.461914062 272.140625 272.891052246 273.575439453 274.203796387 275.073913574 275.809844971 276.187316895 276.618011475 277.445373535 278.664825439 280.386047363 282.072113037 283.440185547 284.762298584 286.289794922 287.898132324 289.228546143 290.454467773 291.704864502 292.641662598 293.509307861 294.329559326 295.043029785 295.789916992 296.548156738 297.234863281 297.793243408 298.075683594 298.022827148 298.123046875 298.053100586 298.105072021 298.009735107 297.755065918 298.265563965 299.432403564 300.440185547 299.730865479 297.716430664 296.559143066 296.444763184 297.146118164 298.247650146 298.578796387 298.336639404 297.894439697 297.372955322 296.847808838 296.382141113 295.880615234 295.294158936 294.71762085 294.251251221 293.931396484 293.733001709 293.486450195 293.230499268 293.077545166 293.049804688 293.086120605 293.149749756 293.203918457 293.164367676 292.922119141 292.500213623 292.016021729 291.533599854 291.015106201 290.535095215 290.120727539 289.718383789 289.20980835 288.375396729 286.868041992 284.213684082 280.576202393 277.821502686 276.013366699 274.752990723 274.300811768 274.642181396 274.622467041 274.164886475 273.867675781 273.838470459 273.552520752 272.569580078 268.841796875 264.923278809 262.602416992 260.051147461 257.298950195 253.989013672 250.892974854 247.742889404 245.843582153 245.497558594 245.087371826 244.013824463 243.270187378 243.642150879 246.049636841 248.098831177 245.79838562 240.151565552 236.799804688 238.665115356 239.78503418 239.743530273 247.033706665 249.447860718 252.505905151 256.169708252 259.804107666 262.28805542 264.080841064 265.289642334 265.973846436 267.036804199 268.602661133 269.570343018 270.062988281 270.726013184 271.255371094 271.591033936 272.066894531 272.601623535 272.883666992 273.109283447 273.61227417 274.194519043 274.530700684 274.930267334 275.450683594 276.0519104 276.735687256 277.570953369 278.663360596 280.162719727 281.618682861 282.848266602 283.949249268 285.145324707 286.589294434 288.047210693 289.49395752 290.772369385 291.747619629 292.645599365 293.553741455 294.362762451 295.213562012 296.105895996 296.943267822 297.65145874 298.117797852 298.257446289 298.224517822 298.218994141 298.166534424 297.635101318 297.116668701 296.947601318 297.750640869 298.182952881 297.779418945 296.491119385 295.734161377 295.784790039 296.499908447 297.900909424 299.005279541 299.066375732 298.634033203 298.207824707 297.840576172 297.341003418 296.754638672 296.121948242 295.523773193 295.090209961 294.794616699 294.410888672 294.069946289 293.845184326 293.645599365 293.432647705 293.296295166 293.218048096 293.210449219 293.184448242 292.915008545 292.407775879 291.838562012 291.278564453 290.670288086 290.001800537 289.329956055 288.669799805 287.967590332 287.098205566 285.770446777 283.384368896 280.090423584 277.411621094 275.587341309 274.349456787 273.55065918 273.102172852 272.997924805 273.269378662 273.759857178 274.044891357 273.888458252 273.171447754 271.794586182 269.293334961 265.100799561 259.7472229 253.840576172 247.125457764 243.274627686 239.486068726 237.07723999 235.556564331 234.827392578 234.378707886 234.361633301 236.378875732 239.553848267 242.068786621 241.666381836 239.423736572 239.939437866 240.818634033 240.48789978 240.260986328 236.718536377 239.469894409 243.379348755 247.771316528 251.869796753 254.725479126 256.684143066 258.682891846 260.487091064 262.728851318 265.900970459 268.032226562 268.584472656 268.857757568 269.570129395 270.454223633 271.467559814 272.244812012 272.727233887 273.146606445 273.883361816 274.73135376 275.261993408 275.695068359 276.134094238 276.642974854 277.196594238 277.831237793 278.694580078 280.058258057 281.550079346 282.896514893 284.272186279 285.791320801 287.414733887 288.88381958 290.325927734 291.803924561 292.93963623 293.844512939 294.676208496 295.507659912 296.288299561 296.902282715 297.533569336 298.177459717 298.505249023 298.541351318 298.54486084 298.562408447 298.611999512 298.571563721 298.635040283 298.056427002 298.352416992 298.994445801 298.427764893 296.415252686 295.85848999 295.996948242 296.603424072 297.795562744 298.848358154 298.733825684 298.161193848 297.669891357 297.237121582 296.692871094 296.068664551 295.427459717 294.784667969 294.294403076 293.972595215 293.680755615 293.370666504 293.143280029 292.985534668 292.779296875 292.61239624 292.668640137 292.884002686 292.920074463 292.726348877 292.496154785 292.112762451 291.506713867 290.87677002 290.269317627 289.686004639 289.306640625 289.043182373 288.459289551 287.169219971 284.600128174 280.966827393 278.155853271 276.140625 274.566192627 273.505432129 273.053649902 272.831085205 272.500030518 272.326721191 272.129394531 270.99697876 268.728973389 265.876586914 263.108398438 260.004974365 255.166275024 250.946151733 244.413299561 241.157943726 238.114135742 235.321411133 233.81729126 234.446136475 235.079376221 234.940292358 236.48538208 239.074966431 240.141387939 240.078094482 239.966491699 239.417800903 241.026321411 241.066894531 241.118270874 226.108200073 229.769363403 234.418823242 239.563751221 244.073730469 246.313201904 245.459472656 244.976699829 244.516174316 247.362976074 253.390777588 257.454833984 260.472686768 263.22769165 265.628570557 268.073303223 269.891540527 270.963989258 271.67300415 272.272216797 272.965423584 273.647369385 274.210845947 274.955749512 275.609436035 276.046600342 276.630157471 277.560913086 278.754943848 280.394348145 282.017303467 283.368530273 284.690002441 286.209533691 287.800323486 289.115478516 290.345001221 291.589141846 292.536407471 293.42175293 294.300231934 295.074981689 295.777862549 296.351135254 296.92401123 297.597564697 298.1612854 298.444671631 298.546051025 298.623535156 298.652801514 298.243530273 298.201416016 297.906707764 298.509552002 299.554046631 299.588684082 298.191833496 296.606109619 296.549377441 297.047210693 298.065307617 298.656555176 298.436187744 297.95690918 297.446472168 296.956420898 296.491210938 295.972808838 295.350646973 294.693908691 294.128143311 293.75567627 293.498016357 293.193481445 292.963531494 292.867736816 292.82131958 292.831451416 292.953186035 293.076446533 293.038024902 292.808746338 292.46697998 292.017852783 291.49432373 290.995635986 290.563232422 290.09161377 289.585693359 289.085784912 288.309356689 286.876831055 284.470733643 281.185241699 278.552825928 276.561157227 275.300384521 274.753356934 274.872680664 274.883758545 274.519134521 274.32244873 274.34777832 274.135101318 273.669891357 272.155487061 268.695037842 264.731323242 262.013641357 259.962615967 255.617980957 251.796569824 247.810623169 245.29107666 244.705474854 244.509628296 243.619628906 243.091018677 243.70425415 246.138534546 248.070007324 245.714141846 240.101013184 236.79637146 238.643234253 239.782928467 239.943145752 246.989089966 249.36239624 252.350112915 255.918273926 259.528808594 262.035736084 263.862854004 265.179931641 265.818359375 266.889526367 268.659851074 269.731231689 270.224365234 270.811767578 271.310150146 271.599853516 271.98651123 272.560180664 272.844665527 272.983642578 273.471679688 274.17477417 274.541992188 274.871856689 275.38772583 276.007446289 276.68182373 277.519470215 278.629882812 280.122497559 281.543579102 282.7550354 283.847106934 285.024871826 286.450286865 287.913665771 289.348937988 290.645599365 291.644104004 292.542419434 293.454071045 294.319976807 295.234069824 296.124908447 296.901123047 297.577423096 298.094268799 298.34362793 298.447875977 298.483825684 298.533905029 298.555450439 298.493927002 298.361022949 298.155761719 297.83404541 297.613800049 296.858551025 296.151763916 296.247772217 297.09487915 298.685241699 299.226074219 299.150512695 298.743774414 298.359619141 297.969268799 297.426086426 296.781097412 296.087371826 295.421691895 294.914550781 294.548248291 294.164886475 293.87008667 293.669586182 293.467193604 293.267211914 293.137176514 293.048339844 293.039489746 293.017852783 292.762878418 292.288665771 291.746582031 291.155548096 290.533508301 289.904632568 289.25378418 288.584716797 287.911651611 287.075042725 285.870056152 283.936462402 281.227294922 278.365844727 276.146759033 274.786651611 274.011810303 273.631835938 273.572265625 273.909637451 274.412963867 274.600372314 274.344848633 273.761871338 272.887878418 271.794799805 269.754272461 264.654785156 256.553222656 249.027954102 244.141586304 239.919235229 236.625778198 235.205459595 234.738189697 234.505722046 234.678649902 236.727325439 239.719085693 242.122207642 241.853820801 239.585861206 240.009277344 240.841720581 240.494873047 240.260681152 236.699645996 239.474655151 243.226730347 247.45149231 251.537506104 254.437469482 256.520080566 258.60369873 260.41192627 262.425445557 265.702423096 268.115722656 268.801055908 269.135345459 269.736053467 270.588287354 271.572052002 272.344696045 272.76864624 273.063598633 273.738525391 274.655792236 275.183563232 275.521697998 275.940216064 276.482696533 277.0675354 277.752685547 278.621490479 279.950531006 281.444763184 282.845977783 284.275177002 285.780090332 287.329284668 288.778259277 290.267944336 291.753509521 292.830169678 293.62310791 294.383850098 295.24118042 296.093811035 296.737548828 297.36114502 298.044616699 298.543731689 298.781188965 298.944976807 298.970428467 298.954376221 299.060943604 299.064941406 298.766723633 298.432525635 297.997680664 297.361480713 296.282836914 295.962249756 296.263977051 297.042053223 298.541870117 299.082336426 298.832733154 298.255310059 297.780181885 297.330963135 296.778320312 296.142028809 295.452880859 294.740753174 294.155303955 293.754180908 293.449310303 293.198852539 293.004119873 292.831848145 292.627929688 292.449645996 292.444824219 292.652801514 292.750152588 292.58190918 292.364715576 292.02053833 291.378540039 290.68850708 290.120330811 289.566833496 289.129364014 288.892364502 288.447753906 287.388641357 285.316894531 282.047241211 279.098907471 276.879943848 275.256195068 274.201721191 273.666412354 273.345794678 273.039001465 272.931945801 272.742980957 271.767211914 269.825653076 267.721038818 266.106628418 264.230407715 259.308685303 253.714447021 246.825653076 242.738113403 239.446380615 236.120437622 234.340682983 234.775054932 235.335159302 235.465087891 237.130844116 239.401153564 240.144927979 240.129760742 240.118240356 239.520614624 241.062606812 241.065612793 241.123275757 226.069671631 229.684402466 234.24105835 239.288040161 243.816497803 246.304855347 245.969299316 246.034378052 245.416534424 247.714248657 254.108459473 258.582427979 261.474395752 264.011627197 266.14666748 268.359771729 270.088806152 271.151641846 271.838195801 272.361114502 272.997558594 273.707305908 274.253295898 274.884460449 275.477478027 275.984222412 276.672821045 277.6796875 278.866973877 280.390014648 281.953674316 283.307037354 284.633514404 286.129394531 287.677307129 288.973999023 290.210235596 291.449829102 292.425170898 293.324584961 294.207336426 294.993743896 295.712310791 296.255493164 296.782836914 297.478546143 298.158935547 298.616516113 298.950317383 299.160247803 299.283294678 299.382904053 299.373046875 299.185089111 298.936523438 298.320281982 297.867889404 297.092590332 296.944702148 297.030822754 297.485778809 298.595092773 298.786315918 298.521362305 298.011505127 297.507720947 297.020721436 296.553649902 296.029724121 295.378479004 294.658325195 294.024291992 293.578552246 293.270690918 292.979003906 292.78213501 292.674316406 292.593200684 292.612762451 292.75177002 292.852142334 292.833618164 292.700073242 292.430267334 291.96673584 291.397216797 290.904449463 290.48739624 290.001281738 289.492736816 289.035461426 288.311645508 287.017822266 285.012420654 282.082550049 279.283416748 277.014556885 275.60534668 274.969024658 274.978210449 275.050079346 274.847900391 274.778015137 274.797546387 274.61920166 274.304107666 273.711425781 272.216461182 268.486724854 263.739959717 261.684051514 257.227020264 253.024230957 248.544555664 245.413635254 244.407440186 244.218490601 243.468734741 243.126419067 243.953460693 246.315231323 247.966033936 245.628234863 240.038711548 236.901000977 238.680801392 239.78276062 239.955047607 246.972412109 249.312057495 252.176391602 255.670852661 259.20614624 261.778900146 263.604400635 265.029571533 265.647583008 266.680603027 268.691833496 269.900848389 270.395812988 270.897125244 271.359130859 271.597045898 271.924407959 272.510162354 272.795898438 272.826965332 273.295074463 274.146606445 274.559997559 274.853942871 275.344818115 275.949310303 276.61505127 277.471160889 278.600860596 280.058227539 281.417144775 282.602081299 283.706970215 284.895324707 286.336578369 287.8253479 289.258972168 290.590545654 291.609893799 292.524291992 293.418304443 294.301330566 295.274871826 296.189697266 296.907409668 297.487304688 297.967590332 298.344787598 298.605072021 298.743011475 298.856231689 298.954315186 299.006500244 298.943817139 298.729034424 298.34185791 297.739624023 297.304321289 297.035766602 297.003662109 298.161895752 299.129150391 299.398193359 299.254577637 298.888702393 298.545349121 298.147155762 297.55557251 296.840179443 296.095306396 295.380157471 294.817657471 294.398895264 293.988128662 293.668823242 293.455047607 293.258605957 293.091003418 292.993591309 292.902496338 292.876556396 292.869232178 292.652404785 292.190673828 291.630065918 291.013427734 290.413604736 289.841308594 289.212493896 288.537231445 287.883300781 287.085968018 286.009277344 284.44644165 282.285583496 279.420471191 276.767486572 275.148345947 274.383911133 274.116912842 274.113983154 274.497467041 275.022644043 275.167327881 274.848144531 274.321624756 273.727996826 273.290344238 272.19519043 268.281951904 258.566467285 250.946762085 245.397521973 241.065322876 237.415466309 235.503860474 235.242385864 235.141891479 235.332489014 237.299713135 240.015396118 242.17880249 241.805236816 239.736846924 240.059936523 240.838790894 240.559020996 240.260025024 236.763824463 239.292129517 242.996063232 247.144821167 251.134521484 254.128814697 256.328399658 258.368041992 260.10369873 262.048095703 265.383453369 268.119018555 268.980224609 269.359863281 269.868469238 270.681640625 271.628479004 272.41293335 272.786651611 272.976196289 273.587768555 274.582305908 275.127288818 275.386657715 275.766876221 276.294403076 276.935668945 277.689971924 278.576293945 279.8644104 281.352478027 282.819091797 284.312316895 285.788909912 287.263763428 288.710296631 290.240600586 291.694915771 292.688690186 293.437042236 294.173400879 295.008270264 295.909515381 296.654174805 297.291656494 297.892913818 298.381958008 298.723175049 299.01663208 299.204162598 299.261779785 299.317626953 299.339233398 299.160217285 298.89730835 298.534210205 297.657043457 296.605529785 296.442260742 296.775756836 297.962799072 298.959991455 299.24798584 298.898956299 298.365386963 297.927703857 297.467071533 296.900848389 296.240570068 295.485137939 294.713317871 294.102722168 293.682250977 293.36038208 293.081268311 292.857330322 292.665527344 292.50012207 292.339874268 292.242126465 292.384674072 292.569641113 292.483734131 292.238677979 291.864868164 291.226257324 290.561065674 290.051483154 289.517059326 288.997375488 288.72265625 288.364532471 287.545318604 285.958465576 283.420715332 280.224456787 277.635284424 275.843383789 274.785125732 274.233398438 273.850280762 273.580718994 273.534637451 273.365631104 272.534576416 270.913543701 269.265411377 268.349487305 267.328552246 263.288604736 255.611221313 249.198486328 244.403594971 240.96812439 237.791183472 235.554534912 235.609741211 236.097305298 236.279190063 237.907165527 239.702636719 240.200561523 240.216934204 240.134033203 239.617431641 241.07472229 241.063522339 241.123535156 225.977416992 229.535186768 234.074798584 239.014648438 243.488113403 246.201416016 246.404327393 246.81930542 246.209136963 248.064682007 254.491210938 259.43182373 262.335266113 264.699890137 266.559570312 268.573364258 270.225250244 271.306976318 271.972076416 272.415496826 273.00088501 273.764862061 274.318359375 274.850891113 275.383300781 275.915679932 276.669464111 277.769104004 278.946411133 280.387969971 281.901306152 283.27444458 284.634094238 286.102661133 287.581085205 288.850738525 290.082611084 291.302001953 292.299713135 293.226013184 294.09765625 294.866027832 295.608001709 296.209777832 296.754058838 297.41998291 298.09262085 298.602172852 299.049499512 299.423553467 299.651824951 299.783935547 299.784057617 299.651550293 299.509338379 299.168762207 298.145874023 297.265472412 297.410583496 297.805908203 298.396148682 298.940216064 298.953521729 298.580078125 298.04598999 297.563537598 297.083007812 296.602050781 296.064361572 295.386749268 294.623138428 293.952148438 293.451751709 293.10446167 292.80355835 292.59185791 292.465667725 292.401763916 292.45111084 292.558929443 292.616943359 292.650695801 292.609558105 292.371765137 291.897979736 291.299499512 290.76159668 290.315734863 289.843719482 289.377197266 288.967895508 288.30291748 287.173370361 285.523284912 283.083953857 279.952941895 277.447692871 275.816650391 275.099090576 275.056732178 275.197875977 275.211853027 275.295898438 275.313262939 275.144134521 274.906341553 274.64239502 274.043060303 272.524505615 266.940185547 263.033996582 259.088104248 254.521972656 249.82951355 246.182174683 244.701171875 244.301040649 243.771774292 243.556411743 244.398910522 246.552825928 247.859634399 245.519348145 239.770828247 236.975708008 238.646789551 239.817001343 239.955184937 246.966491699 249.235107422 252.011230469 255.419113159 258.872009277 261.490539551 263.33203125 264.88671875 265.458709717 266.475189209 268.646789551 270.060882568 270.622283936 270.987335205 271.398193359 271.573944092 271.882080078 272.472320557 272.757629395 272.663574219 273.07925415 274.08013916 274.56060791 274.850341797 275.296661377 275.868804932 276.528869629 277.417022705 278.572021484 279.974487305 281.256439209 282.411071777 283.53994751 284.764343262 286.265106201 287.805786133 289.233276367 290.589477539 291.636352539 292.578094482 293.449829102 294.306121826 295.283599854 296.221954346 296.940612793 297.444641113 297.828063965 298.221862793 298.556243896 298.751556396 298.870361328 298.958587646 299.051086426 299.136993408 299.093536377 298.783111572 298.322052002 298.022491455 297.637298584 298.441314697 299.04019165 299.435821533 299.490325928 299.327728271 299.006408691 298.696136475 298.314544678 297.702636719 296.935333252 296.150787354 295.392028809 294.775787354 294.326660156 293.877227783 293.490509033 293.234008789 293.033294678 292.884246826 292.828765869 292.763122559 292.720855713 292.72744751 292.554626465 292.100158691 291.515289307 290.895935059 290.330352783 289.797607422 289.17868042 288.505249023 287.875091553 287.130859375 286.170410156 284.90914917 283.161743164 280.595001221 277.612182617 275.590393066 274.784698486 274.661499023 274.735046387 275.128662109 275.651245117 275.801940918 275.447631836 274.889434814 274.278045654 273.963928223 273.397186279 270.433410645 261.504150391 253.517181396 246.845001221 242.62461853 239.017425537 236.68447876 236.235595703 236.123931885 236.327606201 238.080947876 240.440170288 242.233581543 241.888565063 239.970275879 240.118408203 240.919754028 240.580566406 240.250869751 236.674362183 239.195068359 242.802261353 246.817947388 250.763549805 253.790878296 256.106109619 258.01348877 259.598602295 261.433410645 264.999450684 268.051544189 269.107788086 269.510070801 269.963653564 270.728668213 271.653778076 272.456787109 272.807067871 272.893218994 273.411071777 274.479553223 275.077392578 275.282043457 275.597869873 276.103546143 276.79800415 277.628295898 278.544189453 279.794708252 281.263000488 282.782745361 284.332397461 285.78515625 287.211608887 288.670928955 290.225524902 291.6456604 292.570037842 293.32220459 294.089660645 294.890106201 295.771057129 296.617034912 297.298858643 297.818237305 298.221710205 298.532958984 298.837127686 299.121582031 299.256408691 299.274291992 299.29083252 299.307800293 299.26864624 299.044036865 298.557983398 298.044036865 297.302520752 298.196502686 298.776702881 299.247772217 299.302825928 298.931518555 298.473968506 298.077575684 297.61239624 297.028564453 296.337158203 295.516693115 294.678283691 294.072296143 293.672088623 293.327880859 292.996673584 292.743560791 292.54208374 292.400146484 292.258972168 292.091003418 292.135162354 292.362365723 292.35345459 292.08706665 291.7081604 291.140655518 290.536895752 290.045135498 289.494293213 288.899169922 288.561431885 288.249176025 287.627655029 286.48236084 284.631378174 281.643615723 278.579833984 276.475402832 275.379486084 274.874511719 274.485717773 274.260986328 274.2706604 274.137115479 273.395599365 271.927856445 270.379730225 269.653320312 269.164611816 266.19708252 257.019439697 251.603942871 246.093734741 242.761917114 239.597320557 237.403167725 237.002609253 237.354995728 237.458480835 238.760650635 240.072891235 240.328948975 240.352859497 240.266525269 239.723526001 241.157562256 241.063751221 241.122940063 225.892074585 229.443572998 233.893722534 238.720977783 243.158782959 246.002807617 246.648345947 247.447555542 246.879760742 248.404174805 254.720703125 260.10067749 263.087432861 265.28704834 266.901916504 268.74005127 270.342041016 271.437957764 272.069213867 272.43157959 272.971954346 273.805053711 274.392028809 274.841522217 275.30166626 275.84161377 276.654876709 277.820129395 279.000030518 280.391662598 281.855621338 283.250061035 284.665924072 286.115081787 287.531646729 288.78213501 290.000610352 291.179504395 292.173858643 293.114532471 293.990997314 294.747772217 295.493011475 296.154418945 296.743591309 297.38369751 297.993774414 298.480438232 298.951812744 299.375549316 299.647125244 299.811584473 299.84463501 299.808074951 299.84487915 299.722991943 299.160217285 298.544403076 297.952880859 298.837341309 299.15145874 299.311187744 299.122711182 298.629486084 298.091156006 297.649841309 297.190032959 296.681396484 296.1065979 295.397216797 294.589111328 293.881591797 293.347930908 292.967803955 292.644744873 292.386383057 292.239715576 292.209716797 292.281982422 292.360717773 292.413238525 292.501495361 292.498718262 292.264221191 291.827758789 291.24017334 290.624755859 290.106384277 289.648284912 289.210662842 288.820922852 288.219940186 287.268798828 285.949066162 284.025390625 280.779449463 278.004119873 276.04586792 275.220123291 275.161956787 275.413391113 275.68737793 275.941497803 275.980102539 275.75881958 275.4715271 275.225128174 274.8465271 274.054473877 270.501586914 264.015930176 260.981964111 256.11529541 251.445632935 247.475067139 245.560028076 245.0418396 244.5105896 244.316497803 244.972808838 246.785140991 247.711288452 245.373733521 239.650848389 237.088729858 238.698257446 239.8644104 239.953994751 246.950180054 249.15486145 251.843826294 255.173339844 258.554718018 261.178314209 263.017883301 264.622192383 265.311340332 266.270080566 268.511535645 270.183074951 270.844055176 271.14440918 271.383392334 271.525970459 271.856536865 272.4609375 272.746520996 272.570617676 272.844665527 273.93258667 274.523803711 274.830749512 275.2472229 275.799804688 276.453216553 277.361572266 278.532318115 279.866882324 281.070220947 282.188446045 283.347167969 284.646881104 286.256164551 287.840179443 289.245422363 290.575378418 291.632354736 292.595916748 293.46484375 294.291046143 295.217346191 296.133361816 296.883087158 297.427124023 297.793884277 298.082824707 298.302642822 298.46887207 298.646362305 298.775817871 298.863037109 298.999206543 299.132232666 299.033996582 298.731933594 298.549682617 298.707885742 299.141845703 299.495239258 299.600250244 299.538391113 299.36038208 299.073547363 298.800384521 298.450500488 297.830535889 297.045898438 296.248382568 295.444335938 294.77142334 294.30166626 293.835754395 293.379089355 293.066223145 292.803344727 292.59777832 292.566864014 292.571350098 292.53036499 292.534423828 292.399841309 292.000061035 291.458892822 290.870391846 290.299255371 289.742767334 289.117767334 288.477416992 287.892303467 287.225311279 286.374237061 285.304138184 283.860107422 281.739349365 278.801086426 276.303924561 275.226104736 275.122619629 275.215423584 275.574707031 276.101379395 276.310119629 276.010070801 275.488861084 274.795959473 274.363342285 274.016784668 271.687835693 264.550994873 254.74949646 248.391616821 244.28338623 240.962753296 238.631454468 237.718200684 237.40914917 237.552001953 238.940383911 240.947814941 242.318222046 241.879898071 240.134811401 240.120162964 241.026412964 240.624023438 240.206848145 236.619979858 239.255661011 242.50769043 246.440261841 250.369873047 253.426086426 255.827011108 257.744934082 259.051513672 260.671600342 264.571014404 267.926147461 269.163879395 269.626617432 270.044952393 270.718505859 271.644226074 272.4793396 272.832946777 272.813720703 273.22833252 274.311035156 275.006958008 275.202148438 275.45199585 275.943267822 276.672363281 277.569671631 278.530456543 279.753479004 281.174163818 282.702331543 284.279724121 285.721374512 287.130767822 288.581634521 290.138824463 291.552276611 292.447692871 293.224090576 294.084594727 294.898162842 295.732910156 296.60067749 297.299041748 297.814880371 298.193389893 298.416015625 298.558013916 298.799713135 299.012939453 299.042327881 299.029663086 299.125457764 299.278198242 299.30758667 299.132629395 298.917449951 298.858001709 299.040130615 299.286743164 299.388946533 299.290130615 298.982849121 298.599731445 298.192169189 297.707458496 297.121429443 296.422119141 295.574249268 294.669189453 294.021240234 293.613922119 293.272979736 292.952606201 292.71697998 292.48550415 292.280670166 292.145965576 291.995697021 291.956726074 292.107574463 292.134674072 291.928710938 291.630432129 291.158843994 290.557952881 289.990661621 289.400512695 288.799682617 288.431396484 288.140014648 287.646606445 286.843444824 285.495605469 283.123168945 279.739349365 277.201812744 275.909667969 275.406524658 275.027832031 274.80682373 274.886444092 274.835479736 274.199890137 272.945037842 271.479217529 270.74118042 270.438568115 268.262023926 259.711212158 252.062255859 247.893783569 244.471969604 241.621871948 239.408813477 238.773040771 238.983337402 238.872329712 239.657318115 240.464233398 240.492370605 240.575393677 240.323043823 239.757995605 241.25718689 241.113830566 241.118240356 225.830307007 229.32749939 233.700500488 238.414093018 242.753952026 245.728713989 246.817550659 248.0262146 247.728607178 248.800811768 255.027984619 260.68762207 263.851196289 265.875305176 267.287109375 268.906005859 270.450378418 271.541748047 272.129425049 272.412689209 272.917053223 273.796875 274.449005127 274.843963623 275.245758057 275.808319092 276.668548584 277.851013184 279.056182861 280.415710449 281.811828613 283.214080811 284.683074951 286.119293213 287.509307861 288.76083374 289.943786621 291.05871582 292.00201416 292.923370361 293.839385986 294.642181396 295.399749756 296.077880859 296.715576172 297.394287109 298.016540527 298.466918945 298.857879639 299.197479248 299.421142578 299.597564697 299.700195312 299.690551758 299.747955322 299.793823242 299.560424805 299.249420166 299.211608887 299.406860352 299.545074463 299.524291992 299.224639893 298.678222656 298.173431396 297.774597168 297.329711914 296.787078857 296.150146484 295.409698486 294.569213867 293.806915283 293.237182617 292.85269165 292.530975342 292.231109619 292.034851074 291.958526611 291.986572266 292.06338501 292.183624268 292.290679932 292.262573242 292.065582275 291.755065918 291.216552734 290.525817871 289.920715332 289.455291748 288.996032715 288.583007812 288.048553467 287.24130249 286.18057251 284.680511475 281.927429199 278.752593994 276.430908203 275.371276855 275.292144775 275.637817383 276.046386719 276.450683594 276.590667725 276.377471924 276.082092285 275.776733398 275.449310303 274.956237793 272.83380127 265.872406006 261.756835938 257.830718994 253.202545166 249.192962646 247.076339722 246.232177734 245.528625488 245.215408325 245.63583374 247.053039551 247.666305542 245.227035522 239.470916748 237.096420288 238.752883911 239.940444946 239.946990967 246.903488159 249.070266724 251.683822632 254.902587891 258.181213379 260.822509766 262.729553223 264.310852051 265.606567383 266.04888916 268.297821045 270.237884521 270.922973633 271.27822876 271.378997803 271.490570068 271.852783203 272.489379883 272.797058105 272.574829102 272.719055176 273.754058838 274.456604004 274.79888916 275.221405029 275.770355225 276.417358398 277.322021484 278.467224121 279.740600586 280.893585205 281.997131348 283.198577881 284.591400146 286.290100098 287.871856689 289.240631104 290.523529053 291.547454834 292.471557617 293.358123779 294.224517822 295.163879395 296.049224854 296.775360107 297.336883545 297.746826172 298.030792236 298.214599609 298.370849609 298.606658936 298.81350708 298.880157471 298.924255371 299.014007568 299.031188965 298.926147461 298.887176514 299.093475342 299.445404053 299.654022217 299.643859863 299.56362915 299.420135498 299.179992676 298.933502197 298.583129883 297.948913574 297.182495117 296.400970459 295.575500488 294.855712891 294.348266602 293.858306885 293.372314453 293.012145996 292.660827637 292.358032227 292.306640625 292.366577148 292.360778809 292.362701416 292.25692749 291.923431396 291.442352295 290.875030518 290.281982422 289.711181641 289.104309082 288.490600586 287.91305542 287.289611816 286.528625488 285.578277588 284.338317871 282.592193604 280.010101318 277.301971436 275.739929199 275.543212891 275.633514404 275.964599609 276.506378174 276.780395508 276.59387207 276.100372314 275.243530273 274.574584961 274.342163086 272.5831604 266.55255127 256.587402344 251.184509277 245.540679932 243.015182495 240.825439453 239.540084839 238.905395508 238.860107422 239.801940918 241.429534912 242.542419434 241.957199097 240.510284424 240.464889526 241.141693115 240.650970459 240.176956177 236.597198486 238.970275879 242.338531494 246.106796265 249.952789307 253.035293579 255.47277832 257.331726074 258.951782227 260.233886719 264.092498779 267.794677734 269.158996582 269.704376221 270.09854126 270.704803467 271.618988037 272.473754883 272.879302979 272.809967041 273.12020874 274.130981445 274.909332275 275.13571167 275.369476318 275.848754883 276.587432861 277.519897461 278.528930664 279.750152588 281.124542236 282.624908447 284.192504883 285.624237061 287.021514893 288.43838501 289.993286133 291.442321777 292.365447998 293.153137207 294.091217041 294.992553711 295.857788086 296.664855957 297.272888184 297.721130371 298.09753418 298.339904785 298.468719482 298.690063477 298.930389404 298.980285645 298.961547852 299.021392822 299.15512085 299.273925781 299.322418213 299.327636719 299.320281982 299.393463135 299.479370117 299.46875 299.373199463 299.158660889 298.790039062 298.342712402 297.835906982 297.20602417 296.477722168 295.652557373 294.759307861 294.063232422 293.60559082 293.24710083 292.932617188 292.698181152 292.412567139 292.126953125 291.998291016 291.931793213 291.878326416 291.932189941 291.958648682 291.814147949 291.54776001 291.092651367 290.492858887 289.906066895 289.320068359 288.733093262 288.32623291 288.029632568 287.615234375 287.007537842 285.995269775 284.192169189 281.04876709 278.104675293 276.447296143 275.88458252 275.516296387 275.309936523 275.475128174 275.559753418 275.076599121 273.916107178 272.362579346 271.445770264 271.332489014 269.924987793 262.893493652 253.735977173 250.655227661 246.122619629 243.656311035 241.624816895 240.861785889 240.669647217 240.210266113 240.558670044 240.949172974 240.703048706 240.823226929 240.790145874 240.054901123 241.357528687 241.13104248 241.116928101 225.77432251 229.198120117 233.517501831 238.088104248 242.380126953 245.397827148 246.866363525 248.302902222 249.583740234 249.186203003 255.120239258 260.989807129 264.508422852 266.405456543 267.657226562 269.085754395 270.549102783 271.593963623 272.137969971 272.396728516 272.861785889 273.734191895 274.455169678 274.844726562 275.249938965 275.838531494 276.70880127 277.895843506 279.124450684 280.464263916 281.807495117 283.209991455 284.687927246 286.08782959 287.466400146 288.709655762 289.836914062 290.894927979 291.796356201 292.705627441 293.665740967 294.550415039 295.373626709 296.062713623 296.716461182 297.433288574 298.094116211 298.553131104 298.926086426 299.21774292 299.377441406 299.476013184 299.560882568 299.557678223 299.556793213 299.622131348 299.603118896 299.540008545 299.533752441 299.555999756 299.561065674 299.526245117 299.271118164 298.789245605 298.330841064 297.920959473 297.45614624 296.872192383 296.169921875 295.402191162 294.565307617 293.801147461 293.227966309 292.840362549 292.51663208 292.191192627 291.936065674 291.763000488 291.699371338 291.756591797 291.908782959 292.020904541 292.007751465 291.889312744 291.659637451 291.149353027 290.464385986 289.871185303 289.387268066 288.89263916 288.459533691 287.96496582 287.200744629 286.239929199 285.018829346 282.963195801 279.651824951 277.045898438 275.593597412 275.4503479 275.867156982 276.354858398 276.905578613 277.228363037 277.123199463 276.762481689 276.252380371 275.819396973 275.547302246 274.283905029 268.57522583 262.575775146 260.175811768 254.972381592 251.211257935 248.845321655 247.628585815 246.733535767 246.226837158 246.323486328 247.353256226 247.563171387 245.085357666 239.791595459 237.553100586 238.846282959 239.969268799 239.950088501 246.845581055 248.991943359 251.490188599 254.622497559 257.861633301 260.444824219 262.381500244 263.886688232 265.303314209 265.956298828 268.057373047 270.201538086 270.982849121 271.349243164 271.399017334 271.439727783 271.850006104 272.513092041 272.848175049 272.639923096 272.676513672 273.590484619 274.373901367 274.768341064 275.220733643 275.763580322 276.409423828 277.288696289 278.374938965 279.587402344 280.719818115 281.842590332 283.108978271 284.585723877 286.324981689 287.87487793 289.227844238 290.491912842 291.477966309 292.341888428 293.23425293 294.140014648 295.140350342 296.043060303 296.741668701 297.235107422 297.603515625 297.901733398 298.139343262 298.33013916 298.547515869 298.750640869 298.831695557 298.858978271 298.919433594 298.976257324 298.976409912 299.030426025 299.261047363 299.555145264 299.686431885 299.644836426 299.570617676 299.482696533 299.296539307 299.057800293 298.693084717 298.086639404 297.368225098 296.60446167 295.763977051 295.004669189 294.439239502 293.913360596 293.417663574 293.021057129 292.598907471 292.209075928 292.082702637 292.137756348 292.178192139 292.208892822 292.13269043 291.838867188 291.383666992 290.826385498 290.249420166 289.713562012 289.142913818 288.524017334 287.911529541 287.29498291 286.607849121 285.775543213 284.712280273 283.29309082 281.147766113 278.595214844 276.579833984 276.034851074 276.066314697 276.320617676 276.803070068 277.062072754 276.951660156 276.57434082 275.734436035 274.884002686 274.58682251 273.212188721 267.851806641 257.402587891 252.656509399 246.693313599 244.882751465 242.794067383 241.187057495 240.354553223 240.082305908 240.709823608 241.906646729 242.616378784 242.072250366 241.713394165 240.625228882 241.285125732 240.685119629 240.163085938 236.568023682 238.98765564 242.102890015 245.711334229 249.519668579 252.560546875 255.136917114 256.870574951 258.490661621 259.792022705 263.675811768 267.624572754 269.158447266 269.752288818 270.131164551 270.708709717 271.586120605 272.460998535 272.929901123 272.862609863 273.064483643 273.9609375 274.776855469 275.055114746 275.298736572 275.789611816 276.537231445 277.477813721 278.514251709 279.74230957 281.091888428 282.581329346 284.130645752 285.551605225 286.946044922 288.365600586 289.931396484 291.412719727 292.383026123 293.184631348 294.148803711 295.08883667 295.980773926 296.733123779 297.262115479 297.614044189 297.921691895 298.186187744 298.398284912 298.644195557 298.843231201 298.866424561 298.865509033 298.930114746 299.050109863 299.195098877 299.3671875 299.479919434 299.495697021 299.513549805 299.57019043 299.582885742 299.527923584 299.353729248 298.970489502 298.506378174 297.993103027 297.297302246 296.487213135 295.653961182 294.816955566 294.140777588 293.659637451 293.266326904 292.904418945 292.639312744 292.335601807 292.009460449 291.853820801 291.828704834 291.798187256 291.80368042 291.812011719 291.664550781 291.361877441 290.91973877 290.394500732 289.862915039 289.283935547 288.673553467 288.184417725 287.862182617 287.523254395 287.068328857 286.33984375 285.012939453 282.570068359 279.434661865 277.255401611 276.447723389 276.032073975 275.770355225 275.901641846 276.044006348 275.674713135 274.66784668 273.225402832 272.15802002 271.944335938 271.014831543 265.445495605 254.695861816 252.370407104 247.496368408 245.320266724 243.673370361 242.873275757 242.215057373 241.475585938 241.430374146 241.438735962 240.923904419 241.088760376 242.289932251 240.19833374 241.456619263 241.149047852 241.119995117 225.723220825 229.08996582 233.315826416 237.751251221 241.95249939 244.978088379 246.655532837 248.388397217 249.923294067 249.584945679 255.28036499 261.128448486 265.05569458 266.889770508 268.003814697 269.284790039 270.634033203 271.605194092 272.131713867 272.401519775 272.829620361 273.639831543 274.410675049 274.837036133 275.272857666 275.89050293 276.786651611 277.973175049 279.19708252 280.504608154 281.826141357 283.248016357 284.718231201 286.07598877 287.433380127 288.649078369 289.709960938 290.730407715 291.647064209 292.582427979 293.574249268 294.498840332 295.356628418 296.062469482 296.732055664 297.452331543 298.101287842 298.559082031 298.927368164 299.215820312 299.348144531 299.382629395 299.422821045 299.437927246 299.466247559 299.580169678 299.671356201 299.704864502 299.659484863 299.567352295 299.524597168 299.540802002 299.364837646 298.974884033 298.551544189 298.104522705 297.588439941 296.948120117 296.171325684 295.349609375 294.512359619 293.785430908 293.265625 292.912445068 292.571594238 292.203460693 291.904418945 291.662017822 291.50402832 291.49319458 291.615264893 291.726287842 291.76083374 291.699554443 291.476867676 291.011871338 290.434112549 289.898864746 289.362640381 288.825805664 288.382019043 287.913238525 287.178741455 286.266143799 285.253387451 283.742980957 280.886352539 277.897644043 276.05670166 275.696380615 276.107086182 276.578887939 277.159240723 277.618591309 277.655273438 277.331970215 276.756530762 276.202148438 275.946075439 275.06930542 270.749359131 262.953613281 261.484985352 256.515625 253.077392578 250.879959106 249.203826904 247.996444702 247.242752075 247.015289307 247.655609131 247.539474487 244.97416687 241.558380127 237.752441406 238.99369812 240.017532349 239.967178345 246.822021484 248.901794434 251.332092285 254.357009888 257.497344971 260.043945312 261.986358643 263.477844238 264.866485596 266.060974121 267.83114624 270.094299316 271.039733887 271.385040283 271.403015137 271.392852783 271.809448242 272.521697998 272.897125244 272.74987793 272.671905518 273.435455322 274.295562744 274.765228271 275.239685059 275.76940918 276.41317749 277.251342773 278.265106201 279.425048828 280.552856445 281.718536377 283.061431885 284.604858398 286.345947266 287.858917236 289.20123291 290.448547363 291.399353027 292.238372803 293.137390137 294.061340332 295.093902588 296.024627686 296.72479248 297.158905029 297.444488525 297.723632812 298.018005371 298.240997314 298.410919189 298.569671631 298.688690186 298.772521973 298.860015869 298.908172607 298.919586182 298.997650146 299.260864258 299.547698975 299.667205811 299.638244629 299.598358154 299.561889648 299.415130615 299.163848877 298.790618896 298.241607666 297.571746826 296.815917969 295.968902588 295.187194824 294.568634033 294.020690918 293.535430908 293.114349365 292.626922607 292.149810791 291.894592285 291.865997314 291.940216064 292.021820068 291.982452393 291.723297119 291.286437988 290.741333008 290.215606689 289.744842529 289.209625244 288.567138672 287.892150879 287.236297607 286.575164795 285.86328125 284.970306396 283.849243164 282.111236572 279.881591797 277.755096436 276.657592773 276.453063965 276.62612915 277.032287598 277.281890869 277.234313965 277.050018311 276.236663818 275.271057129 274.928619385 273.692077637 268.834686279 258.073913574 253.504089355 247.68927002 246.308456421 244.416381836 242.773666382 241.622772217 241.228103638 241.591400146 242.298522949 242.861801147 242.193511963 241.920440674 240.858612061 241.412185669 240.719512939 240.159820557 236.546325684 238.899795532 241.884002686 245.355117798 249.057876587 252.167892456 254.737365723 256.404296875 257.97253418 259.647521973 263.229827881 267.395874023 269.164550781 269.775360107 270.148742676 270.715698242 271.549072266 272.435974121 272.970184326 272.950744629 273.045379639 273.796508789 274.613586426 274.95791626 275.240386963 275.766418457 276.513397217 277.436431885 278.47543335 279.707458496 281.051361084 282.551177979 284.084899902 285.496368408 286.91293335 288.369262695 289.941925049 291.423065186 292.450439453 293.297607422 294.25213623 295.162109375 296.014251709 296.717132568 297.226837158 297.542907715 297.772033691 298.025024414 298.301330566 298.539794922 298.672973633 298.677215576 298.710174561 298.799987793 298.93762207 299.105712891 299.318237305 299.462280273 299.515258789 299.556091309 299.657165527 299.740631104 299.712585449 299.531280518 299.139862061 298.673492432 298.155548096 297.397705078 296.47064209 295.586883545 294.806884766 294.202819824 293.747650146 293.341400146 292.929138184 292.615142822 292.305480957 291.950714111 291.725250244 291.676544189 291.685577393 291.685241699 291.659210205 291.461425781 291.104949951 290.697021484 290.293548584 289.832977295 289.240783691 288.590576172 288.003601074 287.600585938 287.299591064 286.978393555 286.526092529 285.696166992 284.004089355 281.230316162 278.516448975 277.144744873 276.482849121 276.135681152 276.181671143 276.393310547 276.209411621 275.408081055 274.005859375 272.777008057 272.511962891 271.715606689 267.044799805 255.808349609 253.246292114 248.505310059 246.699203491 245.416656494 244.572387695 243.578964233 242.587005615 242.236129761 241.959854126 241.187683105 241.359527588 242.561920166 240.446365356 241.543167114 241.187637329 241.131851196 225.630065918 228.968566895 233.112197876 237.383041382 241.476165771 244.564163208 246.443649292 248.46963501 250.394332886 250.538986206 255.519577026 261.272613525 265.546112061 267.342163086 268.356933594 269.49786377 270.709197998 271.594390869 272.124786377 272.4296875 272.817108154 273.526977539 274.325714111 274.826019287 275.29586792 275.959411621 276.901611328 278.070129395 279.260253906 280.520812988 281.8331604 283.289367676 284.76171875 286.092163086 287.422943115 288.605133057 289.604705811 290.606109619 291.579345703 292.56552124 293.572875977 294.481750488 295.324310303 296.055267334 296.761962891 297.482757568 298.117218018 298.566864014 298.888977051 299.117340088 299.226043701 299.257202148 299.265045166 299.283569336 299.384857178 299.591339111 299.731445312 299.76574707 299.68762207 299.573303223 299.555511475 299.611541748 299.493103027 299.170928955 298.776062012 298.295959473 297.716644287 297.004730225 296.150421143 295.261260986 294.413848877 293.743927002 293.321685791 293.051025391 292.708984375 292.293365479 291.948791504 291.649932861 291.397247314 291.281524658 291.316375732 291.393768311 291.460083008 291.412780762 291.172851562 290.806518555 290.42086792 289.954620361 289.333770752 288.749786377 288.285858154 287.788696289 287.094329834 286.271179199 285.447052002 284.329376221 282.199645996 279.010986328 276.769592285 276.064880371 276.30657959 276.710174561 277.24822998 277.8203125 278.102020264 277.920074463 277.258056641 276.568115234 276.351196289 275.614318848 271.98059082 263.427246094 262.207458496 257.839538574 254.764373779 252.550796509 250.66394043 249.188400269 248.186538696 247.722259521 247.967483521 247.473846436 244.85256958 241.63861084 238.050857544 239.117553711 240.105102539 240.006713867 246.804077148 248.817504883 251.151321411 254.085037231 257.124328613 259.653594971 261.575592041 263.031799316 264.386505127 266.013031006 267.503570557 269.961273193 271.130279541 271.405334473 271.401123047 271.433441162 271.730438232 272.4637146 272.928771973 272.910522461 272.747375488 273.28427124 274.197509766 274.773712158 275.257873535 275.768127441 276.412231445 277.20513916 278.147155762 279.270263672 280.406951904 281.611175537 283.018798828 284.624145508 286.36126709 287.832122803 289.120574951 290.301025391 291.230560303 292.130004883 293.078613281 293.997589111 294.98526001 295.896148682 296.600006104 297.067840576 297.356323242 297.613830566 297.892730713 298.120849609 298.272735596 298.428619385 298.561126709 298.649810791 298.752410889 298.823760986 298.857788086 298.929504395 299.20401001 299.495391846 299.632476807 299.669433594 299.683563232 299.664031982 299.543609619 299.315002441 298.966674805 298.442260742 297.761230469 296.979827881 296.176818848 295.448944092 294.821533203 294.262817383 293.783599854 293.329467773 292.790466309 292.227203369 291.792633057 291.590545654 291.632263184 291.726135254 291.721984863 291.550842285 291.196716309 290.686157227 290.19744873 289.765167236 289.240234375 288.600524902 287.906890869 287.190307617 286.489929199 285.827697754 285.031860352 284.060699463 282.663391113 280.78515625 278.832794189 277.405853271 276.914886475 277.014221191 277.348846436 277.548370361 277.47354126 277.4112854 276.77545166 275.83013916 275.308685303 274.03302002 269.704742432 258.663818359 254.101425171 248.339111328 247.188598633 245.694396973 244.069137573 242.714279175 242.224822998 242.458740234 242.853210449 243.054580688 242.341873169 242.017410278 241.043075562 241.54888916 240.726196289 240.16242981 236.502197266 238.806533813 241.649810791 245.005310059 248.592803955 251.68270874 254.248718262 255.939254761 257.425750732 259.457092285 262.561859131 266.925842285 269.149383545 269.803100586 270.165008545 270.715576172 271.500701904 272.403076172 272.990478516 273.067474365 273.07510376 273.630981445 274.417053223 274.857086182 275.215301514 275.773132324 276.508483887 277.385528564 278.394897461 279.614257812 280.971832275 282.48928833 284.01574707 285.429412842 286.900146484 288.40625 289.930358887 291.367401123 292.457061768 293.419616699 294.379241943 295.211639404 295.955688477 296.599090576 297.126434326 297.492736816 297.710388184 297.943481445 298.187713623 298.368835449 298.473205566 298.544250488 298.610412598 298.6668396 298.813568115 299.021118164 299.247589111 299.428375244 299.56817627 299.663909912 299.794158936 299.9246521 299.947937012 299.790100098 299.425598145 298.943786621 298.373931885 297.542785645 296.49407959 295.558166504 294.859588623 294.363067627 293.979278564 293.593292236 293.151672363 292.755432129 292.389160156 291.979156494 291.642700195 291.521453857 291.546325684 291.55267334 291.473602295 291.236328125 290.867553711 290.481414795 290.102386475 289.627502441 289.04296875 288.461853027 287.88092041 287.361694336 286.965057373 286.678436279 286.405303955 285.969909668 284.82913208 282.653717041 279.855133057 277.964538574 277.029022217 276.57824707 276.536956787 276.714141846 276.6300354 276.001647949 274.800384521 273.536651611 273.000152588 272.207550049 268.331207275 257.109619141 254.103103638 249.287490845 247.795425415 246.729537964 245.84211731 244.674819946 243.492660522 242.925888062 242.421844482 241.49621582 241.671096802 242.738571167 240.696090698 241.648086548 241.218215942 241.148498535 225.510360718 228.849395752 232.902938843 237.027832031 240.996810913 244.128616333 246.081802368 248.294616699 250.4480896 252.174636841 255.897979736 261.335845947 265.980285645 267.835235596 268.732757568 269.719726562 270.781097412 271.571594238 272.133422852 272.512756348 272.830535889 273.394348145 274.205841064 274.815734863 275.32409668 276.047058105 277.03125 278.161560059 279.289123535 280.492980957 281.801513672 283.292572021 284.772460938 286.105316162 287.440185547 288.608062744 289.563812256 290.548980713 291.564575195 292.589233398 293.597137451 294.480255127 295.315063477 296.091369629 296.847412109 297.580841064 298.20904541 298.642089844 298.863006592 298.947418213 299.013458252 299.112091064 299.12298584 299.104431152 299.253387451 299.568481445 299.761993408 299.790771484 299.722412109 299.63961792 299.646881104 299.700439453 299.611846924 299.347045898 298.999481201 298.53237915 297.905700684 297.099365234 296.152191162 295.206665039 294.369445801 293.792694092 293.479675293 293.291137695 292.977600098 292.533203125 292.124359131 291.753326416 291.415435791 291.202331543 291.10055542 291.043151855 291.028594971 290.944946289 290.719360352 290.5105896 290.311431885 289.889068604 289.231018066 288.630645752 288.101715088 287.488006592 286.823883057 286.158172607 285.503936768 284.64654541 283.03302002 280.128326416 277.497192383 276.494232178 276.593048096 276.887573242 277.340515137 277.923339844 278.356903076 278.374633789 277.819366455 277.090423584 276.734100342 276.014190674 272.902008057 264.01373291 262.605560303 258.755889893 256.054290771 253.932510376 251.982498169 250.216079712 249.034957886 248.384796143 248.264511108 247.382247925 244.792068481 241.569961548 238.332489014 239.281356812 240.183746338 240.057983398 246.774307251 248.739135742 250.974334717 253.799606323 256.797454834 259.227539062 261.131988525 262.556671143 263.932403564 265.788970947 267.167724609 269.736694336 271.083435059 271.392364502 271.35723877 271.430999756 271.675415039 272.318878174 272.914367676 273.023010254 272.863922119 273.203521729 274.079833984 274.749603271 275.248931885 275.750213623 276.396362305 277.155090332 278.049499512 279.157653809 280.302490234 281.518951416 282.965759277 284.629364014 286.373260498 287.808837891 289.016326904 290.112457275 291.045043945 292.009429932 292.996612549 293.950256348 294.959625244 295.830566406 296.465454102 296.945861816 297.306396484 297.591583252 297.838653564 298.028106689 298.171478271 298.323150635 298.452087402 298.510894775 298.634368896 298.794342041 298.927429199 299.008392334 299.217529297 299.472167969 299.65524292 299.740844727 299.714019775 299.625183105 299.554412842 299.458557129 299.188934326 298.636688232 297.853942871 297.027648926 296.304443359 295.698516846 295.114105225 294.54397583 294.030395508 293.533416748 292.995513916 292.425750732 291.891418457 291.557312012 291.47756958 291.483337402 291.457305908 291.379760742 291.127532959 290.653015137 290.171356201 289.755126953 289.24319458 288.627593994 287.960296631 287.199615479 286.436035156 285.762756348 285.031768799 284.146636963 283.034545898 281.509155273 279.798370361 278.279022217 277.536743164 277.476898193 277.698760986 277.844818115 277.768615723 277.753417969 277.267883301 276.370666504 275.647674561 274.138336182 270.100097656 260.000671387 254.147216797 248.8855896 247.675857544 246.522598267 244.970230103 243.680648804 243.097320557 243.2447052 243.361236572 243.316604614 242.45249939 242.291885376 241.248016357 241.678787231 240.741287231 240.163406372 236.417617798 238.692062378 241.505477905 244.577728271 248.109680176 251.167037964 253.761047363 255.44909668 256.926940918 259.135437012 262.023468018 266.375854492 269.078979492 269.836730957 270.154205322 270.655914307 271.444610596 272.360992432 272.968719482 273.136108398 273.13772583 273.517852783 274.242767334 274.778991699 275.209136963 275.78527832 276.50982666 277.332672119 278.298461914 279.508972168 280.874847412 282.390167236 283.937591553 285.39440918 286.900970459 288.40222168 289.846374512 291.218017578 292.384613037 293.459777832 294.460021973 295.277191162 295.991760254 296.571624756 297.041992188 297.410461426 297.663482666 297.89050293 298.090332031 298.228363037 298.336425781 298.469970703 298.539306641 298.567962646 298.745941162 299.029571533 299.28503418 299.49822998 299.68572998 299.779571533 299.878723145 300.008911133 300.085205078 299.999969482 299.714172363 299.245422363 298.604858398 297.676849365 296.566131592 295.669494629 295.123260498 294.747161865 294.390808105 294.004669189 293.536773682 293.053161621 292.59552002 292.133392334 291.722961426 291.507751465 291.475006104 291.462127686 291.37322998 291.148101807 290.767944336 290.312744141 289.842498779 289.317596436 288.775268555 288.311645508 287.802978516 287.180419922 286.638397217 286.30178833 286.07699585 285.928710938 285.300384521 283.63394165 281.12399292 278.939880371 277.754699707 277.124176025 276.97869873 277.090576172 277.037475586 276.652893066 275.563110352 274.259338379 273.494384766 272.475158691 269.024139404 259.128509521 254.6456604 249.96812439 248.530059814 247.652954102 246.654449463 245.5287323 244.212539673 243.504241943 242.894927979 241.873291016 241.990921021 242.971084595 240.970993042 241.778213501 241.267623901 241.161117554 225.459991455 228.734710693 232.670318604 236.659118652 240.486953735 243.604522705 245.746276855 248.049713135 250.197967529 252.633621216 255.895782471 261.141174316 266.187683105 268.28112793 269.111663818 269.906799316 270.849395752 271.572906494 272.175567627 272.619232178 272.869384766 273.305908203 274.106964111 274.81060791 275.340606689 276.09475708 277.088409424 278.171600342 279.252349854 280.448120117 281.758575439 283.246398926 284.72088623 286.09463501 287.459960938 288.626098633 289.565979004 290.556549072 291.572540283 292.564178467 293.544311523 294.474945068 295.389892578 296.224517822 296.991088867 297.68347168 298.22845459 298.579406738 298.723327637 298.759155273 298.833129883 298.98059082 298.998687744 298.988922119 299.202270508 299.596374512 299.829681396 299.860412598 299.80569458 299.706665039 299.701873779 299.778869629 299.752532959 299.548797607 299.249725342 298.835876465 298.216369629 297.328674316 296.269866943 295.293273926 294.543395996 294.078491211 293.813446045 293.613311768 293.281616211 292.833068848 292.391235352 291.944396973 291.541931152 291.293487549 291.129486084 290.968200684 290.833007812 290.677642822 290.444244385 290.254241943 290.076477051 289.678283691 289.07144165 288.509307861 287.894134521 287.125274658 286.474639893 285.916534424 285.386871338 284.825256348 283.65222168 281.241577148 278.369018555 277.058441162 277.034851074 277.176269531 277.508758545 278.056518555 278.545532227 278.842987061 278.381195068 277.618988037 277.125549316 276.209289551 273.247741699 265.074615479 262.508148193 259.486419678 257.095581055 255.152954102 253.025024414 251.086364746 249.804367065 249.011871338 248.537872314 247.361907959 244.769470215 241.687561035 238.642608643 239.512695312 240.302108765 240.095733643 246.741531372 248.623397827 250.799728394 253.488021851 256.447143555 258.804260254 260.648956299 262.032714844 263.383575439 265.35345459 267.119842529 269.493896484 271.002380371 271.391723633 271.285827637 271.338592529 271.651367188 272.165618896 272.863830566 273.075592041 272.984436035 273.147064209 273.949615479 274.701965332 275.22479248 275.730163574 276.374298096 277.099578857 277.951812744 279.051452637 280.204833984 281.436248779 282.925689697 284.641357422 286.37979126 287.774749756 288.921142578 289.997772217 290.967376709 291.944122314 292.899963379 293.882873535 294.986999512 295.865264893 296.419830322 296.856079102 297.260131836 297.558044434 297.772827148 297.932250977 298.04196167 298.162841797 298.308166504 298.406433105 298.561859131 298.783538818 298.989959717 299.069915771 299.203918457 299.430053711 299.647888184 299.742584229 299.667053223 299.54888916 299.548919678 299.578613281 299.363555908 298.774169922 297.926116943 297.081939697 296.411010742 295.869812012 295.325073242 294.761901855 294.242553711 293.719268799 293.191314697 292.635437012 292.065704346 291.647094727 291.447021484 291.324859619 291.225830078 291.18182373 291.001373291 290.571502686 290.119384766 289.726379395 289.228942871 288.634796143 288.011352539 287.236328125 286.397521973 285.694488525 285.021820068 284.212921143 283.31036377 282.101806641 280.572875977 279.022949219 278.107879639 277.905731201 278.075775146 278.203338623 278.111053467 277.998931885 277.687255859 276.874359131 275.749816895 273.865081787 269.938537598 261.591522217 254.008804321 250.468109131 248.023101807 247.016784668 245.594894409 244.348739624 243.713623047 243.847167969 243.895751953 243.611053467 242.535385132 242.564361572 241.525192261 241.767471313 240.76965332 240.16355896 236.400741577 238.552337646 241.296401978 244.211608887 247.631729126 250.684814453 253.155273438 254.863998413 256.276824951 258.677276611 261.869628906 265.909942627 268.914550781 269.862182617 270.106964111 270.550354004 271.377288818 272.306335449 272.922515869 273.167785645 273.214172363 273.452728271 274.084350586 274.703613281 275.194549561 275.780700684 276.497833252 277.276367188 278.208740234 279.430023193 280.798614502 282.303344727 283.907531738 285.435150146 286.940643311 288.377624512 289.745452881 291.109741211 292.370330811 293.515838623 294.521453857 295.342681885 296.083099365 296.627746582 297.019561768 297.352508545 297.605499268 297.800384521 297.96383667 298.094482422 298.192199707 298.31829834 298.407958984 298.478820801 298.717529297 299.081298828 299.373596191 299.574584961 299.741027832 299.824798584 299.909912109 300.031066895 300.114807129 300.071075439 299.847808838 299.419952393 298.742828369 297.746398926 296.639526367 295.852508545 295.48336792 295.231903076 294.898468018 294.490631104 293.988922119 293.448669434 292.926422119 292.433105469 291.960144043 291.612487793 291.450256348 291.388702393 291.298492432 291.086975098 290.679382324 290.152618408 289.608062744 289.041259766 288.501190186 288.084259033 287.644317627 286.96194458 286.303009033 285.903320312 285.658294678 285.565856934 285.325897217 284.124389648 282.014587402 279.754577637 278.375732422 277.656829834 277.486938477 277.572784424 277.482910156 277.170288086 276.251617432 274.99395752 273.838897705 272.497314453 269.261230469 261.406707764 255.042678833 251.328872681 249.060836792 248.341384888 247.264175415 246.043945312 244.830154419 244.11076355 243.397232056 242.318054199 242.341918945 242.817001343 241.294845581 241.9012146 241.332015991 241.178390503 225.366348267 228.608398438 232.428405762 236.249816895 240.008773804 243.033432007 245.245437622 247.726654053 249.887313843 252.693099976 256.043395996 260.8878479 266.193359375 268.631469727 269.500366211 270.117614746 270.92880249 271.607635498 272.24508667 272.726226807 272.926879883 273.27142334 274.036621094 274.791534424 275.326843262 276.080688477 277.074584961 278.112579346 279.178833008 280.42098999 281.750762939 283.214538574 284.702148438 286.11428833 287.483001709 288.616485596 289.560211182 290.595428467 291.617340088 292.549163818 293.488800049 294.473968506 295.48626709 296.374450684 297.135406494 297.764343262 298.19329834 298.433227539 298.522247314 298.577911377 298.675415039 298.798858643 298.827728271 298.885559082 299.175628662 299.604827881 299.868682861 299.92956543 299.894958496 299.78036499 299.750305176 299.84072876 299.874786377 299.730987549 299.470245361 299.096832275 298.506347656 297.584625244 296.463745117 295.483703613 294.848052979 294.51083374 294.299072266 294.083129883 293.731903076 293.282409668 292.806671143 292.250579834 291.720092773 291.386291504 291.176971436 290.984161377 290.782043457 290.564361572 290.293029785 290.058654785 289.841033936 289.445220947 288.880401611 288.333496094 287.633361816 286.738800049 286.085845947 285.589569092 285.090026855 284.813415527 284.104187012 282.256500244 279.454498291 277.76272583 277.485443115 277.515686035 277.784881592 278.277832031 278.732635498 279.187164307 278.909820557 278.169433594 277.365234375 276.144042969 273.126617432 266.101776123 262.17288208 260.413635254 257.875091553 256.108825684 253.921432495 251.852935791 250.422241211 249.521835327 248.753417969 247.35899353 244.786270142 241.72744751 239.028839111 239.76802063 240.441970825 240.133758545 246.716293335 248.541351318 250.628875732 253.208587646 256.077056885 258.357727051 260.166595459 261.504669189 262.749450684 264.753448486 266.987182617 269.18927002 270.862854004 271.377288818 271.283874512 271.249786377 271.604644775 272.022186279 272.76449585 273.084747314 273.089691162 273.117950439 273.812713623 274.638793945 275.200836182 275.722198486 276.359619141 277.044006348 277.856933594 278.947998047 280.115600586 281.382965088 282.933929443 284.680328369 286.367980957 287.700561523 288.816650391 289.9296875 290.954925537 291.932342529 292.830932617 293.821838379 295.001983643 295.883392334 296.391571045 296.809448242 297.232879639 297.515258789 297.706390381 297.865844727 297.94720459 298.020568848 298.17880249 298.33682251 298.50213623 298.752532959 299.018493652 299.098815918 299.169219971 299.361297607 299.567596436 299.647155762 299.582183838 299.520202637 299.594909668 299.681243896 299.477966309 298.860992432 298.013000488 297.218017578 296.594177246 296.055999756 295.522888184 294.987426758 294.483093262 293.949127197 293.391357422 292.825378418 292.253845215 291.79296875 291.488006592 291.265380859 291.071990967 290.985748291 290.828796387 290.458740234 290.063568115 289.682525635 289.181427002 288.593566895 288.00869751 287.261474609 286.376556396 285.633728027 285.024505615 284.318725586 283.504577637 282.479858398 281.150146484 279.700195312 278.716033936 278.389556885 278.486480713 278.538970947 278.425842285 278.254272461 278.039215088 277.196655273 275.666595459 273.17678833 269.34664917 262.849639893 253.917404175 251.933166504 248.707199097 247.49520874 246.109680176 244.947647095 244.333526611 244.268157959 244.3306427 243.809844971 242.685516357 242.473678589 241.811340332 241.815917969 240.825134277 240.170806885 236.340805054 238.495788574 241.088531494 243.815826416 247.110855103 250.144226074 252.593841553 254.236724854 255.591171265 257.893035889 261.544464111 265.53414917 268.66192627 269.900512695 270.090057373 270.473022461 271.317657471 272.238739014 272.852539062 273.168701172 273.281494141 273.423065186 273.942932129 274.618591309 275.170135498 275.765533447 276.477050781 277.222503662 278.133422852 279.378112793 280.752227783 282.25958252 283.938476562 285.532806396 286.985321045 288.318481445 289.641143799 291.058868408 292.401000977 293.582214355 294.573883057 295.401641846 296.176269531 296.701873779 297.033447266 297.341278076 297.576080322 297.706085205 297.830078125 297.96395874 298.040802002 298.139129639 298.274108887 298.418487549 298.692382812 299.121459961 299.476013184 299.660064697 299.780273438 299.880340576 299.979858398 300.092254639 300.164154053 300.13949585 299.920562744 299.492370605 298.780761719 297.73526001 296.687713623 296.089782715 295.958221436 295.848724365 295.534698486 295.07321167 294.520690918 293.933074951 293.362762451 292.836608887 292.308288574 291.831237793 291.499542236 291.350097656 291.230377197 291.005310059 290.584686279 290.03213501 289.462188721 288.844604492 288.191894531 287.677825928 287.267547607 286.648193359 285.977813721 285.556793213 285.339111328 285.19821167 285.063140869 284.217926025 282.539398193 280.449859619 278.993804932 278.255126953 278.051361084 277.989807129 277.832641602 277.609344482 276.879364014 275.550628662 274.106079102 272.257507324 269.068603516 263.295257568 256.217498779 253.015197754 249.860641479 248.724273682 247.788101196 246.485168457 245.440292358 244.75177002 243.937866211 242.801879883 242.719665527 242.479232788 241.586456299 242.006851196 241.399749756 241.221221924 225.313339233 228.47996521 232.176498413 235.861251831 239.472610474 242.466018677 244.753189087 247.402206421 249.471450806 252.133377075 256.062316895 260.439331055 265.974761963 268.909362793 269.860351562 270.356536865 271.041656494 271.680328369 272.332824707 272.820159912 272.989227295 273.271270752 273.987884521 274.745117188 275.278442383 276.019042969 277.012939453 278.01852417 279.095672607 280.41595459 281.784210205 283.231384277 284.75189209 286.179168701 287.495727539 288.568878174 289.532501221 290.64263916 291.690338135 292.593811035 293.502380371 294.514190674 295.594726562 296.50302124 297.240356445 297.814849854 298.159057617 298.295806885 298.340789795 298.422973633 298.512481689 298.579986572 298.64151001 298.79095459 299.11038208 299.538421631 299.856658936 299.986297607 299.971466064 299.850799561 299.794708252 299.851806641 299.912445068 299.84085083 299.632171631 299.291046143 298.729034424 297.816131592 296.693481445 295.758483887 295.245361328 295.057678223 294.957305908 294.768981934 294.416412354 293.940734863 293.413269043 292.731323242 292.007965088 291.480987549 291.181884766 290.979858398 290.764953613 290.506195068 290.201934814 289.928131104 289.671722412 289.252319336 288.65032959 288.047973633 287.314453125 286.397399902 285.713623047 285.243774414 284.807067871 284.610687256 284.252746582 282.79095459 280.442199707 278.594268799 278.024993896 278.012573242 278.243713379 278.588806152 278.968109131 279.511749268 279.437988281 278.596801758 277.517333984 275.789916992 272.690643311 266.680175781 262.453979492 260.976318359 258.764526367 256.894775391 254.666122437 252.498855591 250.968444824 249.935562134 248.969192505 247.396118164 244.839752197 241.485336304 239.43572998 240.042648315 240.563323975 240.201385498 246.695770264 248.45111084 250.458831787 252.935882568 255.702850342 257.956298828 259.666015625 260.909851074 262.108184814 264.121673584 266.712890625 268.733001709 270.68258667 271.328918457 271.371765137 271.268432617 271.517883301 271.940490723 272.568939209 273.022399902 273.147613525 273.153411865 273.695892334 274.562530518 275.179962158 275.735626221 276.362365723 277.007324219 277.781646729 278.866577148 280.053039551 281.388244629 283.025543213 284.741546631 286.2918396 287.533630371 288.630371094 289.773925781 290.868774414 291.912506104 292.866027832 293.876556396 294.981872559 295.784484863 296.303527832 296.768218994 297.214294434 297.486846924 297.66204834 297.824432373 297.896453857 297.927886963 298.055969238 298.23034668 298.41708374 298.731262207 299.084869385 299.182556152 299.181762695 299.293487549 299.419067383 299.477935791 299.522003174 299.587371826 299.683044434 299.755889893 299.556365967 298.93447876 298.12310791 297.479553223 296.972137451 296.44708252 295.876983643 295.332275391 294.822143555 294.283630371 293.673126221 293.042785645 292.436065674 291.917388916 291.526702881 291.275146484 291.046936035 290.854980469 290.66003418 290.365966797 290.015136719 289.606445312 289.086608887 288.503845215 287.927856445 287.214935303 286.327728271 285.55581665 284.991241455 284.407623291 283.661804199 282.770812988 281.657470703 280.44418335 279.476745605 278.951171875 278.892822266 278.953186035 278.878479004 278.595794678 278.334075928 277.504730225 275.520477295 272.358337402 266.287719727 263.939178467 254.760986328 252.157730103 250.546447754 247.635223389 246.76776123 245.41645813 244.987884521 244.725387573 244.655700684 244.011108398 242.51751709 242.25617981 242.151504517 241.861755371 240.895401001 240.177185059 236.326644897 238.376434326 240.834701538 243.437683105 246.616485596 249.596984863 252.007583618 253.557144165 254.827087402 257.082183838 260.894500732 265.057769775 268.192382812 269.930114746 270.253814697 270.514282227 271.293182373 272.15057373 272.737335205 273.119659424 273.313964844 273.413482666 273.821777344 274.515167236 275.132324219 275.74621582 276.457000732 277.176177979 278.071136475 279.357299805 280.745025635 282.267028809 284.011779785 285.619293213 286.953796387 288.17578125 289.509735107 291.003814697 292.341705322 293.542114258 294.602813721 295.502410889 296.280609131 296.755187988 297.043640137 297.339202881 297.55871582 297.625152588 297.69921875 297.833068848 297.905792236 297.991027832 298.169128418 298.362762451 298.622009277 299.117034912 299.596130371 299.798706055 299.902954102 300.069580078 300.196960449 300.266021729 300.339141846 300.323822021 300.041717529 299.510742188 298.705657959 297.586730957 296.670593262 296.41506958 296.640472412 296.691894531 296.360290527 295.776428223 295.096374512 294.419311523 293.799835205 293.250946045 292.717468262 292.188995361 291.716766357 291.418487549 291.210144043 290.938323975 290.528442383 289.979492188 289.354827881 288.626281738 287.827270508 287.185272217 286.795043945 286.348602295 285.752258301 285.31137085 285.110565186 284.956726074 284.775817871 284.204650879 282.933227539 281.203155518 279.742218018 278.84262085 278.496520996 278.431030273 278.318695068 278.019805908 277.347930908 276.048828125 274.303344727 271.869476318 266.979949951 264.770446777 258.599273682 253.522872925 251.610717773 249.297851562 248.390319824 246.96282959 245.983398438 245.407287598 244.498214722 243.31211853 243.274612427 242.149978638 241.913970947 242.122680664 241.464599609 241.260437012 225.287979126 228.361633301 231.911773682 235.460464478 238.917068481 241.904998779 244.366531372 247.021835327 249.017974854 251.658920288 255.961303711 259.667327881 265.484069824 269.089904785 270.236846924 270.675872803 271.220611572 271.808135986 272.434326172 272.889831543 273.066345215 273.30682373 273.945526123 274.665344238 275.203765869 275.943908691 276.937774658 277.911865234 279.021240234 280.435272217 281.848083496 283.298187256 284.861694336 286.260681152 287.458374023 288.465606689 289.478240967 290.67880249 291.769470215 292.709625244 293.638671875 294.666046143 295.74810791 296.619567871 297.293334961 297.778289795 298.055786133 298.123901367 298.148101807 298.238250732 298.314300537 298.370452881 298.498504639 298.716094971 299.006256104 299.438323975 299.848236084 300.024108887 299.984710693 299.897064209 299.849609375 299.846801758 299.905914307 299.924255371 299.793518066 299.489501953 298.936798096 298.036529541 296.950653076 296.137237549 295.804901123 295.806335449 295.876861572 295.73324585 295.347442627 294.772338867 294.168731689 293.501312256 292.65814209 291.809509277 291.215820312 290.89956665 290.684997559 290.414001465 290.072540283 289.759735107 289.459442139 288.99597168 288.350280762 287.72164917 287.074554443 286.234069824 285.518432617 285.020202637 284.64743042 284.405090332 284.160888672 283.093078613 281.279724121 279.638061523 278.798034668 278.599090576 278.702728271 279.02532959 279.459838867 279.906921387 279.858276367 278.969055176 277.609405518 275.302124023 271.310852051 267.533172607 263.480987549 260.6847229 259.862182617 257.62387085 255.492797852 253.078674316 251.450164795 250.307266235 249.12272644 247.471878052 244.966369629 241.392120361 239.909698486 240.350891113 240.682006836 240.261871338 246.663772583 248.362411499 250.285064697 252.663299561 255.339157104 257.523803711 259.141113281 260.28704834 261.430389404 263.378875732 266.167053223 268.504211426 270.462982178 271.239898682 271.412872314 271.337921143 271.455474854 271.878112793 272.349395752 272.877746582 273.155090332 273.227600098 273.643920898 274.497253418 275.155059814 275.752166748 276.382171631 277.014373779 277.770446777 278.840393066 280.026611328 281.421264648 283.095428467 284.709747314 286.107330322 287.291656494 288.400299072 289.542663574 290.685302734 291.847991943 292.980377197 294.019805908 294.962554932 295.648590088 296.18939209 296.707946777 297.168731689 297.455444336 297.602325439 297.708282471 297.765045166 297.797790527 297.91204834 298.099914551 298.353240967 298.754333496 299.150054932 299.235351562 299.186096191 299.251617432 299.334442139 299.405761719 299.532623291 299.644165039 299.720703125 299.830535889 299.700408936 299.060668945 298.244903564 297.740570068 297.439178467 296.991546631 296.39743042 295.762054443 295.165740967 294.604095459 293.995300293 293.336791992 292.67956543 292.071228027 291.552947998 291.224456787 290.99710083 290.759155273 290.521759033 290.263122559 289.928924561 289.493774414 288.976409912 288.408599854 287.816864014 287.104614258 286.22479248 285.442504883 284.902313232 284.419586182 283.786071777 283.004089355 282.075469971 281.066375732 280.145812988 279.571258545 279.461669922 279.553924561 279.465057373 279.085906982 278.756286621 277.869812012 275.447174072 271.278869629 264.591094971 265.237213135 257.878662109 252.377243042 250.512878418 248.452163696 247.382995605 245.788848877 245.434646606 245.103591919 244.993087769 244.155822754 241.780593872 242.00958252 242.463760376 241.902038574 240.967056274 240.181060791 236.271652222 238.267318726 240.627120972 243.059341431 246.08404541 249.05871582 251.419967651 252.913375854 254.035369873 256.123657227 259.754608154 264.497619629 267.740356445 269.915649414 270.480682373 270.685089111 271.332366943 272.054321289 272.605560303 273.030303955 273.300048828 273.426177979 273.759735107 274.431854248 275.099334717 275.736907959 276.449829102 277.160217285 278.045715332 279.339508057 280.728790283 282.26574707 284.016448975 285.554046631 286.787597656 287.998413086 289.422576904 290.94732666 292.205291748 293.400115967 294.606628418 295.619567871 296.368255615 296.780792236 297.029693604 297.266448975 297.456207275 297.536224365 297.598510742 297.716033936 297.799804688 297.894866943 298.062469482 298.267608643 298.569793701 299.1144104 299.624298096 299.813446045 299.942230225 300.169433594 300.304168701 300.321258545 300.397094727 300.357452393 300.02331543 299.479431152 298.642333984 297.482391357 296.720703125 296.809387207 297.31451416 297.468017578 297.108276367 296.363372803 295.512451172 294.728515625 294.081756592 293.547790527 293.038909912 292.494995117 291.944030762 291.532592773 291.236450195 290.916534424 290.514587402 289.946014404 289.204711914 288.358093262 287.491455078 286.777404785 286.351470947 285.997436523 285.47555542 285.027893066 284.84967041 284.753295898 284.508575439 284.085632324 283.20993042 281.850067139 280.414611816 279.452606201 279.082763672 279.088623047 278.962432861 278.503967285 277.779174805 276.487182617 274.474945068 271.165161133 266.335235596 266.276000977 261.540008545 255.169586182 251.916824341 250.120147705 249.341659546 247.505447388 246.576217651 246.038528442 245.122238159 243.870391846 243.654998779 241.953018188 242.230667114 242.236404419 241.531600952 241.292907715 225.1587677 228.219467163 231.668533325 235.029556274 238.373565674 241.340927124 243.859954834 246.470657349 248.506729126 251.1328125 255.033325195 258.980682373 264.814819336 269.081085205 270.512359619 270.981201172 271.417022705 271.9453125 272.52255249 272.924194336 273.126068115 273.372375488 273.90713501 274.572143555 275.144470215 275.913085938 276.901000977 277.852233887 278.984924316 280.443328857 281.850036621 283.319091797 284.898376465 286.214752197 287.304779053 288.327819824 289.446990967 290.718933105 291.82611084 292.809448242 293.814117432 294.864898682 295.891174316 296.696105957 297.290740967 297.659484863 297.828521729 297.877716064 297.93862915 298.044342041 298.138244629 298.225952148 298.379943848 298.616821289 298.936798096 299.419830322 299.861022949 299.987243652 299.913848877 299.90524292 299.91973877 299.912750244 299.968383789 300.013977051 299.907531738 299.648376465 299.136169434 298.268768311 297.273376465 296.634979248 296.498138428 296.657104492 296.807922363 296.638885498 296.137023926 295.409301758 294.748168945 294.145782471 293.323730469 292.321685791 291.428863525 290.888183594 290.58114624 290.282196045 289.892913818 289.484710693 289.086608887 288.608215332 288.014465332 287.437774658 286.85736084 286.079406738 285.331665039 284.811706543 284.508544922 284.240509033 283.89630127 283.167449951 281.921508789 280.554168701 279.551361084 279.172851562 279.30657959 279.780181885 280.199157715 280.390350342 280.236968994 279.267486572 277.666351318 274.8699646 270.785247803 269.019958496 265.09387207 261.518249512 259.679840088 258.186096191 256.564544678 253.643661499 251.920959473 250.607528687 249.34916687 247.67767334 244.895950317 241.480926514 240.370727539 240.655700684 240.813308716 240.31161499 246.626754761 248.264129639 250.11491394 252.386184692 254.960205078 257.104553223 258.636657715 259.642333984 260.759490967 262.668609619 265.535339355 268.29006958 270.198242188 271.117828369 271.399291992 271.36541748 271.375488281 271.807739258 272.171936035 272.718261719 273.139099121 273.323852539 273.635314941 274.441680908 275.125976562 275.754272461 276.403839111 277.033508301 277.775115967 278.813873291 279.978302002 281.393829346 283.036071777 284.523162842 285.81817627 287.020935059 288.18572998 289.381835938 290.558898926 291.788818359 293.025634766 294.0546875 294.869934082 295.515197754 296.108886719 296.651367188 297.098388672 297.393249512 297.521514893 297.577331543 297.618682861 297.66897583 297.787963867 298.01953125 298.332366943 298.737731934 299.103729248 299.206115723 299.184783936 299.252410889 299.327972412 299.395751953 299.522979736 299.632415771 299.748901367 299.954040527 299.906188965 299.276153564 298.488555908 298.123962402 298.047149658 297.770568848 297.217407227 296.478942871 295.71887207 295.054473877 294.430358887 293.74621582 293.024047852 292.301818848 291.633300781 291.132751465 290.835083008 290.584228516 290.353790283 290.1199646 289.79864502 289.3565979 288.859313965 288.313720703 287.694854736 286.950714111 286.07131958 285.294189453 284.763977051 284.31854248 283.781311035 283.133087158 282.347900391 281.513763428 280.75189209 280.299560547 280.120178223 280.195861816 280.153656006 279.801177979 279.266387939 278.328460693 275.63949585 270.516784668 264.213562012 266.160217285 261.186035156 253.816497803 250.979385376 249.163223267 247.272979736 245.780532837 245.421768188 246.381988525 246.040817261 244.282348633 241.011291504 242.020187378 242.684921265 241.965820312 241.027908325 240.183273315 236.19682312 238.165496826 240.379455566 242.700012207 245.616119385 248.521102905 250.807952881 252.272628784 253.270065308 255.214889526 258.775482178 263.807067871 267.191864014 269.832672119 270.70904541 270.949523926 271.397460938 271.975219727 272.483093262 272.920318604 273.26171875 273.444732666 273.73651123 274.36819458 275.070404053 275.728607178 276.443511963 277.161651611 278.036254883 279.295440674 280.664276123 282.190917969 283.884033203 285.323516846 286.540374756 287.84954834 289.395111084 290.943572998 292.140441895 293.33026123 294.637481689 295.68951416 296.385009766 296.778900146 297.023803711 297.181884766 297.323608398 297.444152832 297.517791748 297.60546875 297.711517334 297.813781738 297.951263428 298.18081665 298.556671143 299.086761475 299.530761719 299.716461182 299.896606445 300.14276123 300.242767334 300.244049072 300.307312012 300.240325928 299.922546387 299.466674805 298.687316895 297.583526611 296.998474121 297.310516357 297.991577148 298.318603516 298.0546875 297.220031738 296.217498779 295.297027588 294.564361572 293.973907471 293.4112854 292.809173584 292.175262451 291.659454346 291.257415771 290.865356445 290.456420898 289.88671875 289.052154541 288.101715088 287.190338135 286.42980957 285.920074463 285.54208374 285.074554443 284.625396729 284.453887939 284.44152832 284.267272949 283.933929443 283.310852051 282.291870117 281.05178833 280.1925354 279.817230225 279.823944092 279.629455566 279.089996338 278.189056396 276.928894043 274.737091064 270.598876953 266.139709473 267.216186523 263.937927246 257.716918945 253.277709961 251.06137085 249.851089478 248.268325806 247.454391479 247.179489136 246.378417969 244.518859863 242.883865356 242.175308228 242.50793457 242.357208252 241.595550537 241.323562622 225.101913452 228.087005615 231.42489624 234.649703979 237.81338501 240.775802612 243.447921753 246.009536743 247.925415039 250.443634033 254.279373169 258.68762207 263.936706543 268.903259277 270.691223145 271.239624023 271.589324951 272.072662354 272.592163086 272.937255859 273.164886475 273.428405762 273.867095947 274.492645264 275.133300781 275.926452637 276.88494873 277.81652832 278.953979492 280.39932251 281.772186279 283.253204346 284.809051514 286.028076172 287.067565918 288.184509277 289.442382812 290.77935791 291.885620117 292.889953613 293.947631836 294.991241455 295.92477417 296.656951904 297.220275879 297.524261475 297.619171143 297.688720703 297.797454834 297.900756836 297.994903564 298.09185791 298.244384766 298.509979248 298.903503418 299.418548584 299.829986572 299.921325684 299.878845215 299.92666626 299.95211792 299.954589844 300.01751709 300.045715332 299.937103271 299.740386963 299.312164307 298.536254883 297.7215271 297.291351318 297.295074463 297.574493408 297.866668701 297.751800537 297.195556641 296.33203125 295.549682617 294.893859863 294.076599121 292.983734131 291.848724365 291.007415771 290.469024658 290.061462402 289.633666992 289.159515381 288.669677734 288.182922363 287.677886963 287.169830322 286.580230713 285.79598999 285.032104492 284.53112793 284.282012939 284.052276611 283.655883789 283.085083008 282.226165771 281.212768555 280.32623291 279.973297119 280.101989746 280.598327637 280.852020264 280.841644287 280.502044678 279.510986328 277.786437988 274.62878418 270.725097656 269.965057373 267.242675781 263.055175781 260.528900146 258.778503418 257.008392334 254.467391968 252.080413818 251.326324463 250.241958618 247.872344971 244.236602783 241.778762817 240.799621582 240.942321777 240.955673218 240.365249634 246.591049194 248.175674438 249.925552368 252.115203857 254.603820801 256.670562744 258.13104248 259.039825439 260.047515869 261.902893066 264.817596436 267.891052246 269.841796875 270.9324646 271.315826416 271.371582031 271.29901123 271.72845459 272.038024902 272.574310303 273.113250732 273.426940918 273.671112061 274.400634766 275.091339111 275.740753174 276.414672852 277.046905518 277.770507812 278.759613037 279.883026123 281.264526367 282.815673828 284.1847229 285.454650879 286.741699219 287.994750977 289.279296875 290.498901367 291.741668701 292.984283447 293.968017578 294.709320068 295.36932373 296.035705566 296.593170166 297.014068604 297.298797607 297.418701172 297.447479248 297.487792969 297.555999756 297.68560791 297.965911865 298.321868896 298.692932129 299.025665283 299.19354248 299.231079102 299.285308838 299.328796387 299.367858887 299.454101562 299.567871094 299.772155762 300.076416016 300.096954346 299.561126709 298.891235352 298.671844482 298.840362549 298.87979126 298.452911377 297.588592529 296.593200684 295.702178955 294.938598633 294.165100098 293.353302002 292.545501709 291.758331299 291.044464111 290.591003418 290.335479736 290.159667969 289.966064453 289.648468018 289.200042725 288.711914062 288.173034668 287.537414551 286.789642334 285.948852539 285.214172363 284.702148438 284.248565674 283.719390869 283.169891357 282.549377441 281.857055664 281.270385742 280.868469238 280.691894531 280.772521973 280.608306885 280.225006104 279.789001465 278.769165039 276.147460938 270.797363281 264.537963867 266.748077393 263.946350098 258.124847412 253.163192749 249.958190918 247.411895752 246.07333374 246.016342163 247.960479736 247.766281128 244.440185547 241.029403687 242.270324707 242.871337891 242.044433594 241.08682251 240.178833008 236.110473633 238.083969116 240.238098145 242.359115601 245.109832764 247.965332031 250.196853638 251.628433228 252.49786377 254.342636108 257.720550537 262.781738281 266.411010742 269.620666504 270.904083252 271.214874268 271.464019775 271.91708374 272.381713867 272.81829834 273.217834473 273.475769043 273.74432373 274.320587158 275.040771484 275.71383667 276.426971436 277.163452148 278.030334473 279.229644775 280.54107666 282.004241943 283.583435059 284.94052124 286.246063232 287.728912354 289.380126953 290.950653076 292.143829346 293.364135742 294.696228027 295.709106445 296.330352783 296.735748291 297.006988525 297.108825684 297.204559326 297.360290527 297.445953369 297.502807617 297.626647949 297.735565186 297.846435547 298.104431152 298.532714844 299.011932373 299.396942139 299.640991211 299.872772217 300.075256348 300.123718262 300.142425537 300.194946289 300.115661621 299.863098145 299.50958252 298.83203125 297.901184082 297.488861084 297.884307861 298.729400635 299.386474609 299.310028076 298.439178467 297.22756958 296.146484375 295.222320557 294.438873291 293.739807129 293.060241699 292.377227783 291.791687012 291.264587402 290.770751953 290.32925415 289.785858154 288.95135498 287.920318604 286.918640137 286.088134766 285.479156494 285.081695557 284.686950684 284.287017822 284.10723877 284.100494385 283.987518311 283.747436523 283.316467285 282.550994873 281.592773438 280.81463623 280.546112061 280.443969727 280.094238281 279.480865479 278.633026123 277.321716309 275.1796875 270.796966553 266.353790283 267.726898193 266.063476562 261.510162354 255.700958252 252.439498901 250.631072998 248.90057373 247.945800781 247.973709106 248.007369995 245.231811523 242.384414673 242.601852417 242.776107788 242.494918823 241.661087036 241.350570679 225.011703491 227.958679199 231.180908203 234.251708984 237.234420776 240.244903564 242.968643188 245.524078369 247.356201172 249.695068359 253.449066162 258.171356201 262.796966553 268.569030762 270.7784729 271.453186035 271.73223877 272.182403564 272.646942139 272.940338135 273.193237305 273.471740723 273.827697754 274.437408447 275.168365479 275.971954346 276.872467041 277.786712646 278.911254883 280.30291748 281.624298096 283.080841064 284.578308105 285.717041016 286.783996582 288.040252686 289.436523438 290.815002441 291.914489746 292.933929443 294.006896973 295.01171875 295.835601807 296.497680664 297.061157227 297.35760498 297.435028076 297.547485352 297.690765381 297.776031494 297.857574463 297.969970703 298.134521484 298.442749023 298.90246582 299.40826416 299.780334473 299.895965576 299.913238525 299.95791626 299.960235596 299.984680176 300.066436768 300.069488525 299.968292236 299.840698242 299.499511719 298.837860107 298.240905762 298.019165039 298.131530762 298.574584961 299.140991211 299.197509766 298.526123047 297.603057861 296.674499512 295.852111816 294.968017578 293.820404053 292.509735107 291.356292725 290.456420898 289.792602539 289.301727295 288.878295898 288.398651123 287.885406494 287.402038574 286.870697021 286.164001465 285.34362793 284.659851074 284.238525391 284.030609131 283.848052979 283.493286133 282.993927002 282.339630127 281.596984863 280.965057373 280.643127441 280.874023438 281.185821533 281.20223999 281.06741333 280.678863525 279.675109863 278.013183594 274.853240967 270.913116455 270.391387939 269.017211914 265.909576416 262.121948242 260.080993652 257.968322754 254.598510742 251.474945068 251.322402954 251.805709839 248.063613892 243.902023315 242.218978882 241.225723267 241.239715576 241.102890015 240.438522339 246.567810059 248.094909668 249.76008606 251.85168457 254.234420776 256.240661621 257.586090088 258.423217773 259.283996582 261.048980713 264.093078613 267.347930908 269.309326172 270.740081787 271.175079346 271.358703613 271.296112061 271.630615234 271.929962158 272.457641602 273.074798584 273.50491333 273.740478516 274.393218994 275.071014404 275.717437744 276.408721924 277.044433594 277.735046387 278.653808594 279.708831787 280.995666504 282.435760498 283.734222412 285.074005127 286.477142334 287.804718018 289.154052734 290.420135498 291.680450439 292.900726318 293.865081787 294.577484131 295.227996826 295.920043945 296.488098145 296.890594482 297.143157959 297.243408203 297.258422852 297.301086426 297.37701416 297.542663574 297.881835938 298.285919189 298.659454346 299.024169922 299.261871338 299.297943115 299.268585205 299.267852783 299.290710449 299.359100342 299.507080078 299.781066895 300.109771729 300.217681885 299.900054932 299.36505127 299.208557129 299.6746521 300.127105713 299.480285645 298.538696289 297.160491943 296.214477539 295.119476318 293.972076416 293.041046143 292.159820557 291.495819092 290.856231689 290.328643799 290.078826904 289.97064209 289.820404053 289.536834717 289.07623291 288.51763916 287.960998535 287.373199463 286.672180176 285.895324707 285.203369141 284.700958252 284.233398438 283.667663574 283.143249512 282.637329102 282.045715332 281.568389893 281.281005859 281.270446777 281.0284729 280.801422119 280.481689453 280.052978516 279.209014893 276.752807617 272.141357422 265.152130127 267.348266602 265.97744751 261.834716797 257.054534912 251.832107544 248.272445679 246.647354126 246.674362183 247.718429565 248.182815552 245.604019165 241.978775024 242.661712646 243.089172363 242.139602661 241.124130249 240.171066284 236.135375977 237.993591309 240.045349121 241.982452393 244.642196655 247.415802002 249.56803894 250.909713745 251.731567383 253.440292358 256.731781006 261.313110352 265.237945557 269.146484375 271.01574707 271.453887939 271.547088623 271.894317627 272.324127197 272.737884521 273.182067871 273.522644043 273.770782471 274.283569336 275.007415771 275.683502197 276.392822266 277.156585693 278.022705078 279.124664307 280.315917969 281.649871826 283.09085083 284.436035156 285.944702148 287.634216309 289.31729126 290.867492676 292.126708984 293.433563232 294.754943848 295.706329346 296.24508667 296.613677979 296.90145874 296.999176025 297.076385498 297.245544434 297.347900391 297.37689209 297.490234375 297.601226807 297.720855713 298.020477295 298.468994141 298.911376953 299.319549561 299.662811279 299.877838135 299.98260498 300.018859863 300.072998047 300.128112793 300.081512451 299.918914795 299.610412598 299.068603516 298.455322266 298.166778564 298.493133545 299.545471191 300.508728027 300.182830811 299.249176025 297.91003418 296.683929443 295.54598999 294.296966553 293.398345947 292.635864258 292.125335693 291.669464111 291.179443359 290.657989502 290.207397461 289.69934082 288.941741943 287.901428223 286.781188965 285.898712158 285.290557861 284.864379883 284.473693848 284.071411133 283.814331055 283.747741699 283.643707275 283.456848145 283.195068359 282.650909424 281.928833008 281.386322021 281.277923584 280.813903809 280.365325928 279.795959473 278.942810059 277.754638672 275.678009033 271.881195068 266.730651855 268.188659668 267.650177002 264.984344482 259.680023193 254.673873901 252.160751343 249.963119507 248.948562622 248.478805542 248.24861145 246.671173096 243.452804565 243.122940063 243.079452515 242.642044067 241.727233887 241.372161865 224.878372192 227.830886841 230.944198608 233.782653809 236.68347168 239.719070435 242.489898682 244.937774658 246.684555054 248.894287109 252.549621582 257.255004883 261.347686768 267.979095459 270.742370605 271.631622314 271.858093262 272.278015137 272.690765381 272.943756104 273.219940186 273.504882812 273.803497314 274.425628662 275.249206543 276.031799316 276.83807373 277.736724854 278.833831787 280.128326416 281.363006592 282.742156982 284.155548096 285.288848877 286.490631104 287.956237793 289.418670654 290.769287109 291.876953125 292.933197021 293.982818604 294.926452637 295.664154053 296.265045166 296.807312012 297.084594727 297.156433105 297.325531006 297.516876221 297.597442627 297.689910889 297.851257324 298.068725586 298.420013428 298.889373779 299.358734131 299.746185303 299.93347168 299.966552734 299.998260498 300.027862549 300.108032227 300.192901611 300.180358887 300.103881836 300.015686035 299.713012695 299.147369385 298.738586426 298.653137207 298.87701416 299.588439941 300.238189697 300.28414917 299.639709473 298.496246338 297.572235107 296.444854736 295.534759521 294.44833374 293.259338379 292.081085205 290.908813477 289.848297119 289.13873291 288.735412598 288.367980957 287.845184326 287.277709961 286.667938232 285.897094727 285.097106934 284.47833252 284.053314209 283.810821533 283.64251709 283.350250244 282.906616211 282.349609375 281.745147705 281.301757812 281.251922607 281.592559814 281.456268311 281.327301025 281.147216797 280.707733154 279.829620361 278.275482178 275.440856934 271.40335083 270.804443359 270.286315918 268.7784729 265.400909424 262.548461914 259.344665527 255.605133057 252.312683105 251.094070435 251.403625488 249.114456177 244.517837524 242.742614746 241.685958862 241.542602539 241.268783569 240.505126953 246.530059814 248.003036499 249.591674805 251.585723877 253.895553589 255.79977417 257.077728271 257.787445068 258.473083496 260.168182373 263.224639893 266.634246826 269.030822754 270.623413086 271.097412109 271.320556641 271.31463623 271.495239258 271.868469238 272.392883301 273.035766602 273.547912598 273.8230896 274.407501221 275.074462891 275.699615479 276.388397217 277.030334473 277.690155029 278.543243408 279.520294189 280.728179932 282.128814697 283.465423584 284.953033447 286.446258545 287.766937256 289.091125488 290.361968994 291.652069092 292.875427246 293.849243164 294.567382812 295.178375244 295.821807861 296.36315918 296.737945557 296.963134766 297.053009033 297.05279541 297.078033447 297.17288208 297.419555664 297.818328857 298.238128662 298.617126465 299.000579834 299.245239258 299.268310547 299.229095459 299.245117188 299.282562256 299.384277344 299.583343506 299.847351074 300.123840332 300.311859131 300.103210449 299.483184814 299.246124268 299.971862793 300.420196533 299.289093018 299.664733887 297.960723877 296.824279785 294.912872314 293.296630859 292.227905273 291.25680542 290.327697754 290.077728271 289.983459473 289.837982178 289.802307129 289.702911377 289.46383667 288.988555908 288.325836182 287.711151123 287.172698975 286.551635742 285.861053467 285.230163574 284.742401123 284.279083252 283.697845459 283.150787354 282.708435059 282.253845215 281.932891846 281.80569458 281.571411133 281.112121582 280.841552734 280.52545166 280.117797852 279.42565918 277.489593506 273.853546143 266.378051758 268.331268311 267.294372559 264.5496521 261.009521484 255.556304932 249.655288696 247.220947266 246.709945679 247.492630005 247.873306274 246.491516113 242.852706909 243.104568481 243.31652832 242.243881226 241.154281616 240.162536621 236.080947876 237.860076904 239.767929077 241.639755249 244.180877686 246.824371338 248.945953369 250.170455933 250.89302063 252.518341064 255.642501831 259.985015869 264.296844482 268.372589111 270.940765381 271.612884521 271.651367188 271.900909424 272.311889648 272.706787109 273.159393311 273.557189941 273.794952393 274.272155762 274.985046387 275.651702881 276.360321045 277.141723633 277.991638184 278.98626709 280.051879883 281.290557861 282.693145752 284.134063721 285.868774414 287.688262939 289.300079346 290.771636963 292.079742432 293.435272217 294.712005615 295.634643555 296.137512207 296.419616699 296.668548584 296.807281494 296.914703369 297.096282959 297.22555542 297.245880127 297.319061279 297.436798096 297.635253906 297.988372803 298.424407959 298.85168457 299.291748047 299.645446777 299.821411133 299.919921875 299.991943359 300.040802002 300.097686768 300.129943848 300.020477295 299.717407227 299.319549561 298.934295654 298.636169434 298.894805908 300.087371826 300.715698242 299.862823486 300.632049561 298.657653809 297.717224121 295.841339111 294.087799072 292.947509766 292.187103271 291.385986328 290.922576904 290.726470947 290.472564697 290.166717529 289.701202393 289.019226074 287.995574951 286.809814453 285.910552979 285.303131104 284.792816162 284.347930908 283.918457031 283.561920166 283.396514893 283.270263672 283.155181885 283.056396484 282.776397705 282.371002197 282.105651855 281.760101318 281.070922852 280.530212402 279.954406738 279.137390137 278.066162109 276.307434082 273.46697998 267.599121094 269.032867432 268.805328369 267.324615479 263.921386719 258.696380615 253.987228394 251.33442688 249.651901245 249.171356201 248.499389648 247.714920044 244.525527954 243.671890259 243.385757446 242.78578186 241.796203613 241.391220093 224.764526367 227.672805786 230.697631836 233.324203491 236.104049683 239.139709473 241.948913574 244.362060547 245.931869507 248.039871216 251.627944946 256.118621826 260.435760498 267.187744141 270.567810059 271.735809326 271.949584961 272.333496094 272.714691162 272.951507568 273.242889404 273.532409668 273.815185547 274.45980835 275.327484131 276.04901123 276.770690918 277.669677734 278.724761963 279.900726318 281.034423828 282.354400635 283.771575928 285.001037598 286.437713623 288.062744141 289.484771729 290.712463379 291.834869385 292.932861328 293.925506592 294.805633545 295.528625488 296.092132568 296.569824219 296.787628174 296.868255615 297.100646973 297.359710693 297.466705322 297.564849854 297.746398926 297.999237061 298.360595703 298.792755127 299.249603271 299.706695557 299.939331055 299.954071045 300.035339355 300.168426514 300.246734619 300.282836914 300.279907227 300.213684082 300.108032227 299.857849121 299.416503906 299.058441162 298.95425415 299.226928711 299.858947754 300.723388672 302.350860596 301.617736816 301.427093506 299.981903076 298.475341797 297.526000977 296.68838501 294.891540527 292.573028564 291.394927979 290.333496094 289.431152344 288.811096191 288.383209229 287.835632324 287.224365234 286.596893311 285.82421875 285.053009033 284.471893311 284.004669189 283.658996582 283.454711914 283.226989746 282.865386963 282.410095215 281.975341797 281.78515625 281.920349121 281.963928223 281.594451904 281.329589844 281.105621338 280.659729004 279.911071777 278.641235352 276.488952637 272.118835449 271.445800781 271.21081543 270.267913818 268.398468018 265.769195557 261.245758057 257.323059082 253.109542847 251.066146851 250.887802124 250.058227539 245.273910522 243.242507935 242.154632568 241.831924438 241.437362671 240.563461304 246.494171143 247.906402588 249.426330566 251.319320679 253.520492554 255.387145996 256.57611084 257.107330322 257.726043701 259.265380859 262.282745361 265.608978271 268.669708252 270.426513672 271.035705566 271.280059814 271.332000732 271.379730225 271.806671143 272.346557617 272.986938477 273.565765381 273.884857178 274.429260254 275.082092285 275.671661377 276.345306396 276.996520996 277.647888184 278.452301025 279.350830078 280.531738281 281.996307373 283.479431152 285.11831665 286.634399414 287.881103516 289.126647949 290.392059326 291.689880371 292.84765625 293.754943848 294.488739014 295.13571167 295.767547607 296.251159668 296.573181152 296.792633057 296.886749268 296.869171143 296.876495361 297.019042969 297.353851318 297.780303955 298.183074951 298.564331055 298.952392578 299.218841553 299.288787842 299.283843994 299.270904541 299.294769287 299.46182251 299.724395752 299.968292236 300.219421387 300.400665283 300.073913574 299.260528564 299.042236328 299.650543213 299.858001709 300.454162598 299.16708374 298.17678833 297.130218506 295.158813477 293.482391357 291.919799805 290.799102783 289.518035889 288.616760254 288.695037842 289.386688232 289.604949951 289.625457764 289.443481445 288.964019775 288.20111084 287.496551514 286.948669434 286.40423584 285.842254639 285.329589844 284.861907959 284.407714844 283.854644775 283.285095215 282.923828125 282.650482178 282.280853271 281.950134277 281.590576172 281.126739502 280.810089111 280.485107422 280.042388916 279.5050354 278.052368164 275.056396484 270.24911499 269.483001709 268.314147949 266.436584473 263.742797852 258.911621094 251.611679077 248.25743103 246.741546631 247.209869385 247.426254272 246.949447632 242.910598755 243.434753418 243.526794434 242.33744812 241.177185059 240.155090332 236.05015564 237.794387817 239.61289978 241.29586792 243.731002808 246.282211304 248.319152832 249.452407837 250.029891968 251.533462524 254.39805603 258.28125 263.285217285 267.372192383 270.698059082 271.694335938 271.749847412 271.921173096 272.326385498 272.709716797 273.153778076 273.575378418 273.816345215 274.269927979 274.976318359 275.634857178 276.337585449 277.113342285 277.922943115 278.821807861 279.803741455 281.02947998 282.519866943 284.135803223 286.055664062 287.889099121 289.359405518 290.736663818 292.071746826 293.408935547 294.578826904 295.449005127 295.963775635 296.208190918 296.440063477 296.625183105 296.780548096 296.971405029 297.110137939 297.138244629 297.186096191 297.332305908 297.607971191 297.984619141 298.374511719 298.789398193 299.257873535 299.61630249 299.80770874 299.933685303 299.993164062 300.00567627 300.106567383 300.224761963 300.138458252 299.840148926 299.521362305 299.173522949 298.814056396 299.123657227 299.989746094 300.226531982 300.826873779 299.713500977 298.334014893 297.383453369 295.479400635 293.7918396 292.265380859 291.379669189 290.388977051 289.55770874 289.596008301 290.019470215 290.079193115 289.739532471 289.145812988 288.179290771 286.989685059 286.117462158 285.497497559 284.860076904 284.302124023 283.86541748 283.481903076 283.276733398 283.145446777 283.040740967 283.075439453 283.105133057 282.800750732 282.426818848 282.01171875 281.301330566 280.634521484 279.997283936 279.200866699 278.282470703 276.869842529 274.524291992 270.428344727 270.067504883 269.680511475 268.815460205 266.541442871 262.359466553 256.329956055 252.918945312 250.652359009 250.158477783 249.576965332 248.306442261 244.30015564 244.114944458 243.692352295 242.922927856 241.867233276 241.411911011 224.710250854 227.543563843 230.445556641 232.85987854 235.547286987 238.547424316 241.398666382 243.789016724 245.176559448 247.20072937 250.697769165 254.657196045 259.776092529 266.211151123 270.296600342 271.788482666 272.02520752 272.362060547 272.728729248 272.959625244 273.256225586 273.560699463 273.855804443 274.518920898 275.37890625 276.020690918 276.688751221 277.580322266 278.58581543 279.650695801 280.721313477 282.061218262 283.59564209 285.010314941 286.660858154 288.32019043 289.595428467 290.669769287 291.790588379 292.916046143 293.849182129 294.670227051 295.389160156 295.932342529 296.348937988 296.531890869 296.664398193 296.958129883 297.245361328 297.352752686 297.446746826 297.646026611 297.928710938 298.297302246 298.702056885 299.162536621 299.686126709 299.953735352 299.997741699 300.158081055 300.316925049 300.314544678 300.327819824 300.37411499 300.286193848 300.163116455 300.025115967 299.698516846 299.248657227 299.032958984 299.096069336 299.643737793 301.023681641 301.705810547 301.714050293 301.43963623 299.927001953 298.327423096 296.927337646 296.208190918 295.11819458 293.660980225 292.288452148 290.83380127 290.032226562 289.167633057 288.490447998 287.845825195 287.223602295 286.660003662 285.951843262 285.206695557 284.641204834 284.140899658 283.701477051 283.444244385 283.239044189 282.94921875 282.664306641 282.432006836 282.135742188 282.05380249 282.080505371 281.698120117 281.293945312 280.999725342 280.557617188 279.926696777 278.918731689 277.124755859 273.807281494 272.184051514 271.884521484 271.069396973 269.723022461 267.679595947 263.840637207 258.772796631 254.584579468 252.005020142 250.812362671 250.53074646 245.573028564 243.686859131 242.613937378 242.110931396 241.600387573 240.635269165 246.454620361 247.828918457 249.26184082 251.073272705 253.160842896 254.972427368 256.106964111 256.473144531 256.816589355 258.343841553 261.207519531 264.671173096 268.023406982 270.118164062 270.972442627 271.225494385 271.322753906 271.305725098 271.720947266 272.303955078 272.951049805 273.558197021 273.918640137 274.436523438 275.075256348 275.622070312 276.259918213 276.913360596 277.575897217 278.350067139 279.200286865 280.397827148 282.03137207 283.736053467 285.458068848 286.891387939 288.016174316 289.176239014 290.443023682 291.726074219 292.755157471 293.541870117 294.305725098 295.072814941 295.734436035 296.144866943 296.410614014 296.624816895 296.707580566 296.662445068 296.676757812 296.898712158 297.302642822 297.724761963 298.111114502 298.513336182 298.919342041 299.223236084 299.345245361 299.337310791 299.253479004 299.281402588 299.53805542 299.847229004 300.092956543 300.369476318 300.43737793 299.800567627 298.842590332 297.986541748 298.9581604 299.850708008 300.081695557 299.000366211 298.780853271 297.115386963 295.494812012 293.443115234 291.578491211 289.707977295 289.05065918 288.189605713 287.739135742 287.831573486 289.113189697 289.461029053 289.372894287 288.983520508 288.275665283 287.511199951 286.805480957 286.194915771 285.75994873 285.384979248 284.969604492 284.580566406 284.105895996 283.557739258 283.205688477 282.860137939 282.227935791 281.737609863 281.413635254 281.058532715 280.81918335 280.496826172 279.983917236 279.499481201 278.475799561 276.084991455 272.743774414 270.289825439 269.128753662 267.750488281 265.467681885 261.848022461 255.149490356 249.701553345 247.711151123 247.087600708 247.242248535 246.520492554 243.04876709 243.615447998 243.691345215 242.400482178 241.199325562 240.145355225 235.991897583 237.693740845 239.418487549 241.016448975 243.31590271 245.744415283 247.68548584 248.674667358 249.156448364 250.494552612 253.201080322 256.901794434 261.901855469 266.098632812 270.281585693 271.70614624 271.836395264 271.943572998 272.346099854 272.733306885 273.156066895 273.579284668 273.831268311 274.273712158 274.977508545 275.624298096 276.307556152 277.052062988 277.80670166 278.638549805 279.587738037 280.862701416 282.543365479 284.384887695 286.383392334 288.092285156 289.401489258 290.705230713 292.056335449 293.346435547 294.389770508 295.2003479 295.75289917 296.027648926 296.272094727 296.490814209 296.679840088 296.863342285 296.986755371 297.022338867 297.078186035 297.268707275 297.589416504 297.960754395 298.310974121 298.736907959 299.242492676 299.638763428 299.868011475 299.983428955 299.977722168 299.965881348 300.138214111 300.320251465 300.258453369 300.005249023 299.671112061 299.192443848 298.814758301 298.48550415 299.169311523 300.098083496 300.043701172 298.783477783 298.460571289 296.840667725 295.192016602 293.20880127 291.477172852 289.912475586 289.49029541 288.778289795 288.574462891 288.837738037 289.622497559 289.671142578 289.227264404 288.400146484 287.353851318 286.587036133 285.939117432 285.15637207 284.499542236 284.024291992 283.601745605 283.385864258 283.274475098 283.19543457 283.320465088 283.330932617 282.830505371 282.416229248 282.120422363 281.459594727 280.768188477 280.084503174 279.242248535 278.438537598 277.369628906 275.406677246 272.774993896 270.754943848 270.22253418 269.795410156 268.15222168 265.088500977 259.821777344 254.913162231 251.857223511 250.636230469 249.930526733 248.397949219 244.108428955 244.452850342 243.981796265 243.048690796 241.939147949 241.433486938 224.640518188 227.39894104 230.195556641 232.431884766 235.010299683 237.970550537 240.802398682 243.078948975 244.369094849 246.372161865 249.770126343 253.554916382 258.932617188 264.967895508 269.927734375 271.801879883 272.099853516 272.377563477 272.736572266 272.970245361 273.266235352 273.596008301 273.92401123 274.582733154 275.385498047 275.950286865 276.592956543 277.45892334 278.403320312 279.396759033 280.465423584 281.891448975 283.644104004 285.305664062 287.046142578 288.578704834 289.663909912 290.609161377 291.713470459 292.853851318 293.762939453 294.545227051 295.252990723 295.77557373 296.132537842 296.315734863 296.516082764 296.84475708 297.10546875 297.188446045 297.302185059 297.544403076 297.860290527 298.240661621 298.645629883 299.134765625 299.712982178 300.028839111 300.126556396 300.321868896 300.436462402 300.346405029 300.375335693 300.46194458 300.343658447 300.254882812 300.233032227 299.887145996 299.240661621 298.675476074 298.724243164 298.934448242 300.32409668 300.950317383 301.949157715 301.03994751 299.772247314 297.650054932 295.857727051 294.475494385 294.284393311 293.759399414 293.384674072 292.400878906 290.595397949 289.801116943 288.808807373 287.97088623 287.287719727 286.8152771 286.2237854 285.484069824 284.859069824 284.330841064 283.865478516 283.617279053 283.440887451 283.231170654 283.062774658 282.715545654 282.099731445 281.906707764 282.017486572 281.745452881 281.30758667 280.922088623 280.455841064 279.90826416 279.100921631 277.573303223 275.090087891 272.766326904 272.260131836 271.625915527 270.536254883 268.965545654 265.980712891 260.450134277 255.710983276 252.441223145 250.825744629 250.278167725 246.10496521 244.038497925 243.041656494 242.373046875 241.76574707 240.724731445 246.432830811 247.742294312 249.11605835 250.819274902 252.835083008 254.561187744 255.619262695 255.855361938 256.047943115 257.361938477 260.069244385 263.576080322 267.491394043 269.633850098 270.890960693 271.19631958 271.293304443 271.323577881 271.715209961 272.313354492 272.950256348 273.540283203 273.934783936 274.399810791 275.010681152 275.529388428 276.10647583 276.724334717 277.402191162 278.192779541 279.054656982 280.333557129 282.215362549 284.141326904 285.815582275 287.042297363 288.017791748 289.129394531 290.394042969 291.650726318 292.579315186 293.271911621 294.099822998 295.00012207 295.674743652 296.015777588 296.250427246 296.446533203 296.465423584 296.387481689 296.466186523 296.785644531 297.211212158 297.615844727 298.015594482 298.457733154 298.887268066 299.206481934 299.329315186 299.254211426 299.143310547 299.279327393 299.615478516 299.877868652 300.155212402 300.520690918 300.372680664 299.354522705 298.274108887 297.473297119 299.061340332 299.563964844 299.170196533 297.80178833 297.623077393 296.944244385 295.130065918 293.467956543 291.311859131 289.4503479 288.505310059 288.026672363 287.290374756 286.465637207 288.021881104 288.464324951 288.57824707 288.596191406 288.367736816 287.719085693 286.70211792 285.801391602 285.374633789 285.155426025 284.893768311 284.678192139 284.360717773 283.785919189 283.255310059 282.828796387 282.040222168 281.195251465 280.920318604 280.88583374 280.838897705 280.609405518 280.060394287 279.504272461 278.730865479 276.882385254 273.721435547 271.028656006 269.836090088 268.662109375 266.781738281 263.972320557 258.484405518 251.779953003 248.677322388 247.874023438 246.925445557 245.922592163 243.504852295 243.898193359 243.813919067 242.432479858 241.218475342 240.131103516 235.930328369 237.61706543 239.231994629 240.707443237 242.86378479 245.219604492 247.044723511 247.905548096 248.243377686 249.448410034 252.081665039 255.647644043 260.879516602 264.54598999 269.602020264 271.644104004 271.918518066 272.002624512 272.383331299 272.777923584 273.168792725 273.577575684 273.859436035 274.295043945 274.964874268 275.590454102 276.233276367 276.906829834 277.599975586 278.424621582 279.399169922 280.757202148 282.683258057 284.733947754 286.650817871 288.132049561 289.303985596 290.581878662 291.937988281 293.199707031 294.184417725 294.949462891 295.538604736 295.876922607 296.151031494 296.387237549 296.592254639 296.751434326 296.830505371 296.868469238 296.954589844 297.174804688 297.500183105 297.88684082 298.27645874 298.735229492 299.255126953 299.67855835 299.935119629 300.011962891 299.96661377 300.006561279 300.193908691 300.329193115 300.331665039 300.199249268 299.750183105 299.094177246 298.668212891 297.766906738 299.33807373 299.673950195 298.735137939 297.1121521 296.941864014 296.296630859 294.37411499 292.871002197 290.958496094 289.40637207 288.619659424 288.36605835 287.823577881 287.231872559 288.586914062 288.821350098 288.7109375 288.313995361 287.685546875 287.136749268 286.459197998 285.516143799 284.741485596 284.18850708 283.741943359 283.572723389 283.5625 283.435882568 283.389373779 283.338592529 282.680725098 282.067626953 281.865997314 281.514831543 280.947692871 280.29296875 279.421447754 278.590057373 277.745849609 276.165496826 273.655029297 271.325164795 270.650817871 270.404266357 269.406921387 267.132232666 263.029510498 257.804077148 253.152740479 251.64881897 250.797897339 247.904022217 244.676544189 244.892700195 244.228927612 243.16343689 242.006561279 241.451538086 224.593383789 227.251220703 229.944198608 231.969833374 234.462799072 237.387710571 240.203826904 242.365615845 243.493515015 245.372955322 248.786865234 252.496932983 258.080596924 263.48324585 269.36895752 271.767700195 272.194671631 272.407104492 272.750579834 272.990203857 273.28213501 273.649688721 274.023803711 274.634185791 275.322998047 275.823791504 276.451873779 277.261627197 278.132995605 279.147491455 280.300994873 281.858215332 283.863128662 285.749786377 287.39151001 288.669616699 289.616943359 290.536193848 291.618652344 292.751922607 293.694091797 294.456848145 295.130554199 295.608520508 295.917510986 296.120635986 296.374176025 296.708709717 296.905426025 296.97567749 297.148132324 297.43649292 297.747528076 298.127288818 298.580474854 299.140197754 299.769866943 300.153167725 300.281555176 300.411560059 300.456054688 300.368804932 300.414672852 300.4609375 300.355651855 300.406463623 300.378143311 299.724304199 298.817504883 298.06036377 298.297180176 299.111358643 299.506286621 299.973846436 300.582550049 300.570404053 298.985626221 297.354278564 295.188140869 293.780456543 293.269317627 293.311218262 293.098632812 292.322570801 290.935760498 290.069396973 289.123260498 288.184173584 287.447723389 287.02947998 286.541259766 285.768280029 285.015655518 284.42376709 283.985870361 283.821899414 283.747161865 283.480651855 283.179870605 282.752746582 281.868988037 281.403381348 281.58706665 281.677093506 281.354125977 280.96673584 280.466644287 279.898864746 279.196411133 277.842315674 275.486358643 272.999725342 272.356384277 271.947418213 271.18270874 269.932800293 267.534606934 262.563903809 256.675323486 253.534225464 251.162368774 249.927978516 246.750701904 244.484069824 243.378982544 242.615371704 241.939788818 240.807388306 246.397354126 247.659790039 248.952941895 250.587738037 252.530929565 254.182327271 255.205596924 255.306091309 255.2837677 256.347747803 258.959136963 262.55581665 266.300750732 269.349975586 270.79006958 271.185211182 271.268859863 271.411376953 271.795654297 272.368774414 272.965881348 273.526885986 273.93057251 274.317657471 274.869293213 275.39276123 275.935760498 276.508239746 277.201965332 278.067840576 278.994659424 280.365112305 282.388641357 284.374603271 285.927581787 286.985534668 287.895477295 289.002197266 290.259185791 291.481750488 292.404876709 293.145507812 294.046783447 294.943511963 295.563781738 295.880218506 296.100372314 296.246734619 296.212738037 296.168365479 296.324432373 296.679473877 297.086151123 297.502197266 297.923706055 298.362762451 298.818054199 299.200164795 299.335968018 299.20614624 299.089141846 299.274505615 299.585998535 299.795471191 300.141479492 300.561035156 300.274078369 299.037811279 297.543395996 297.625366211 299.355926514 298.855529785 298.198425293 297.236022949 297.214996338 296.15802002 294.674957275 292.915924072 291.233581543 289.633148193 288.594909668 287.761901855 286.668762207 285.784423828 285.840576172 286.456878662 286.754180908 287.479644775 288.098266602 287.81262207 286.465240479 285.105926514 284.48550415 284.254760742 284.174316406 284.365539551 284.390014648 283.808166504 283.181335449 282.705780029 281.656677246 279.818237305 279.548950195 280.427764893 280.661468506 280.664916992 280.197296143 279.562866211 278.859741211 277.335113525 274.369903564 271.810546875 270.549987793 269.44317627 267.741424561 265.369659424 261.605926514 253.969512939 250.018753052 248.173126221 247.001846313 245.804550171 244.0184021 244.266571045 243.93572998 242.437210083 241.230285645 240.115631104 235.848571777 237.510147095 239.068084717 240.425338745 242.447738647 244.6927948 246.432388306 247.129104614 247.421844482 248.483627319 250.997497559 254.498535156 258.673553467 263.531890869 268.839385986 271.5262146 271.976837158 272.062683105 272.4090271 272.820098877 273.187591553 273.572509766 273.888885498 274.31036377 274.901855469 275.489685059 276.099639893 276.718658447 277.394866943 278.288482666 279.312988281 280.707824707 282.745574951 284.858917236 286.646728516 287.974914551 289.133911133 290.438140869 291.769683838 293.027069092 294.031066895 294.779449463 295.353027344 295.721313477 296.045166016 296.315673828 296.503936768 296.639801025 296.701721191 296.751953125 296.854400635 297.064147949 297.385894775 297.819458008 298.267974854 298.71887207 299.211853027 299.648956299 299.928161621 300.003936768 300.00668335 300.113983154 300.235656738 300.277770996 300.341400146 300.229095459 299.612213135 298.806396484 298.254394531 297.911804199 299.597290039 298.817321777 297.61618042 296.392181396 296.229095459 295.163116455 293.631256104 292.107879639 290.774505615 289.394104004 288.530975342 288.060516357 287.249633789 286.552032471 286.705566406 287.138336182 287.4012146 287.631622314 287.768371582 287.591674805 286.824829102 285.643951416 284.668914795 283.981384277 283.46685791 283.56652832 283.701843262 283.476531982 283.283630371 283.179962158 282.353240967 281.173614502 280.914398193 281.297851562 280.991027832 280.486816406 279.660980225 278.780792236 277.993164062 276.655731201 274.181091309 271.955352783 271.141723633 270.892120361 270.216094971 268.554046631 265.583129883 260.068023682 255.219512939 252.01272583 250.903930664 247.908050537 245.580795288 245.486236572 244.454971313 243.260192871 242.069564819 241.468078613 224.453353882 227.104141235 229.706924438 231.549057007 233.898681641 236.843704224 239.551544189 241.589935303 242.639953613 244.487060547 247.810150146 251.533187866 256.127685547 262.442169189 268.749603271 271.689727783 272.284484863 272.461700439 272.780609131 273.019622803 273.305877686 273.710449219 274.113098145 274.643615723 275.201782227 275.662628174 276.291351318 277.046569824 277.906005859 279.041778564 280.293334961 281.91506958 284.024749756 285.967041016 287.465423584 288.564910889 289.516845703 290.541931152 291.619293213 292.715881348 293.644805908 294.366790771 294.977478027 295.430023193 295.753601074 295.990844727 296.250396729 296.559997559 296.738952637 296.818969727 297.018798828 297.29977417 297.591156006 298.008544922 298.535858154 299.138031006 299.789764404 300.231872559 300.345581055 300.36517334 300.380706787 300.388397217 300.41595459 300.375762939 300.37210083 300.530548096 300.275604248 299.224761963 297.834564209 297.620422363 298.794342041 298.761810303 299.416748047 299.806274414 300.300933838 299.481903076 298.139068604 296.422180176 294.966278076 293.747680664 293.193817139 292.99118042 292.542877197 291.969482422 291.46786499 290.29977417 289.30859375 288.133087158 287.616424561 287.343017578 286.875427246 285.952636719 284.952575684 284.170959473 283.72366333 283.827728271 283.865936279 283.478759766 283.045898438 282.571350098 281.490112305 280.441436768 280.620117188 281.306213379 281.227874756 280.950378418 280.485839844 279.883117676 279.178649902 277.905181885 275.44644165 273.300323486 272.631011963 272.297393799 271.637451172 270.65725708 268.723724365 264.360534668 258.076599121 253.818695068 251.301757812 249.945587158 247.395339966 245.023361206 243.649124146 242.83152771 242.144363403 240.88269043 246.356155396 247.573654175 248.809204102 250.353378296 252.257171631 253.807983398 254.737915039 254.754211426 254.620803833 255.591918945 258.001068115 261.441711426 265.452819824 269.101165771 270.686859131 271.217834473 271.267822266 271.498931885 271.892089844 272.412200928 272.971557617 273.519378662 273.90536499 274.213226318 274.694091797 275.2371521 275.782684326 276.3331604 277.067382812 278.040679932 279.039794922 280.47454834 282.509429932 284.432769775 285.876312256 286.87298584 287.799133301 288.923980713 290.143859863 291.304504395 292.234100342 293.070129395 294.029327393 294.877563477 295.446777344 295.744049072 295.905853271 295.972961426 295.939788818 295.974090576 296.183380127 296.517425537 296.921020508 297.386016846 297.82244873 298.25378418 298.770355225 299.231567383 299.384155273 299.213684082 299.042633057 299.164825439 299.443695068 299.715698242 300.149841309 300.553985596 300.267181396 298.801086426 297.610168457 298.837097168 299.15838623 298.375091553 297.893249512 297.105560303 296.468292236 295.647888184 294.473419189 292.91015625 291.261688232 289.900726318 288.740386963 287.672393799 286.106109619 284.899261475 283.696136475 282.965789795 283.062347412 285.204193115 287.20791626 287.500854492 285.412597656 282.668243408 281.859344482 282.387359619 282.084289551 283.7137146 284.255371094 283.735015869 282.99798584 282.45135498 281.220611572 278.612823486 278.089385986 279.615844727 280.13973999 280.368774414 280.227996826 279.604888916 278.916595459 277.618560791 274.881011963 272.644256592 271.306884766 270.108947754 268.507232666 266.486938477 263.4949646 257.737304688 251.393295288 249.886825562 247.846435547 246.01651001 244.518127441 244.499313354 244.062362671 242.457138062 241.23348999 240.100402832 235.822006226 237.369033813 238.878585815 240.165756226 242.113540649 244.189788818 245.815811157 246.4506073 246.591766357 247.581771851 249.943237305 253.412719727 257.485809326 262.634002686 268.087158203 271.380889893 272.00970459 272.111053467 272.431610107 272.847991943 273.204315186 273.562469482 273.898956299 274.29901123 274.796875 275.334472656 275.93145752 276.549682617 277.270477295 278.286224365 279.364807129 280.754455566 282.781738281 284.845031738 286.507202148 287.777801514 289.003723145 290.345733643 291.63571167 292.873443604 293.886535645 294.626342773 295.167053223 295.567016602 295.959136963 296.248687744 296.374511719 296.468688965 296.545074463 296.623168945 296.750366211 296.956939697 297.287109375 297.749420166 298.215240479 298.656036377 299.150756836 299.609619141 299.883209229 299.948913574 299.98336792 300.13583374 300.265472412 300.328430176 300.406555176 300.176696777 299.460357666 298.317474365 297.841766357 298.910949707 298.988525391 297.979431152 297.251922607 296.183959961 295.236907959 294.481079102 293.293487549 291.901885986 290.645019531 289.502593994 288.554992676 287.975585938 286.886474609 285.867706299 284.856170654 284.496337891 284.420898438 286.043731689 287.26449585 287.550811768 285.886047363 282.909332275 281.66696167 282.383178711 281.456176758 283.24899292 283.705352783 283.435333252 283.078125 282.833770752 281.93850708 280.246887207 279.896240234 280.66796875 280.70916748 280.401885986 279.828765869 278.950317383 278.161346436 276.954406738 274.573547363 272.6746521 271.731201172 271.285339355 270.752532959 269.592681885 267.209442139 262.719390869 256.719055176 253.7709198 251.465408325 248.225738525 246.483627319 245.927764893 244.686553955 243.350646973 242.121459961 241.48664856 224.412658691 226.950592041 229.461257935 231.161636353 233.373291016 236.292007446 238.909088135 240.835769653 241.748916626 243.61050415 246.809265137 250.648971558 254.995269775 261.675445557 268.139007568 271.581329346 272.362762451 272.518615723 272.814544678 273.050537109 273.334197998 273.761993408 274.179534912 274.623626709 275.062469482 275.493438721 276.134246826 276.884033203 277.815246582 279.117279053 280.448883057 282.034454346 284.100006104 286.001586914 287.406890869 288.428588867 289.448455811 290.567626953 291.639404297 292.682647705 293.562103271 294.238952637 294.807006836 295.264801025 295.635650635 295.88973999 296.09854126 296.350097656 296.521728516 296.623199463 296.839355469 297.130767822 297.460479736 297.954559326 298.54574585 299.143218994 299.778564453 300.263061523 300.372680664 300.298034668 300.303833008 300.423553467 300.476135254 300.409393311 300.477264404 300.590545654 300.104492188 298.565673828 297.622344971 298.293151855 298.801574707 298.908752441 299.935119629 300.248779297 299.874786377 298.925750732 297.508148193 295.966400146 294.708770752 293.719299316 293.200775146 292.907775879 292.00604248 291.255767822 290.39465332 290.114074707 288.976898193 288.110839844 287.63482666 287.626495361 286.820800781 284.668792725 283.158752441 283.123504639 282.140655518 283.567840576 283.839874268 283.371246338 282.758789062 282.144897461 281.034637451 279.456939697 279.55670166 280.578186035 280.756866455 280.600616455 280.375640869 279.792358398 279.098876953 277.863555908 275.385498047 273.805084229 273.203277588 272.699035645 271.996246338 271.226379395 269.596435547 265.888458252 259.554626465 255.156097412 252.207778931 250.108657837 247.959136963 245.444137573 243.932067871 243.008255005 242.329727173 240.960083008 246.314529419 247.491119385 248.6640625 250.132873535 251.955871582 253.429428101 254.295639038 254.248794556 254.024780273 254.867706299 257.02532959 260.48651123 264.66583252 268.796569824 270.603271484 271.283447266 271.304992676 271.549743652 271.959381104 272.43572998 272.968231201 273.514251709 273.878417969 274.107696533 274.513702393 275.078643799 275.653747559 276.203186035 277.008209229 278.106872559 279.201019287 280.670623779 282.623077393 284.404693604 285.76071167 286.764648438 287.727050781 288.871154785 290.06640625 291.159820557 292.078887939 293.001190186 293.992553711 294.787231445 295.331298828 295.594512939 295.641876221 295.629241943 295.650543213 295.768676758 295.994018555 296.299072266 296.737243652 297.265655518 297.718261719 298.155853271 298.737945557 299.24017334 299.378845215 299.19732666 299.002258301 299.046295166 299.316162109 299.702087402 300.192810059 300.543060303 300.377105713 299.249938965 298.790435791 299.741699219 299.328826904 298.319915771 297.783569336 297.018432617 296.287597656 295.610839844 294.329650879 292.94418335 291.425933838 290.169708252 288.825958252 287.705932617 285.895355225 283.440490723 282.379821777 280.882202148 280.302520752 281.781768799 285.428955078 286.449737549 284.209136963 281.056488037 279.93359375 279.667480469 280.249908447 282.987518311 284.050170898 283.559448242 282.685119629 282.118560791 280.900695801 278.654602051 277.334320068 278.347900391 279.092102051 279.676757812 280.008178711 279.568054199 278.909698486 277.747497559 275.493652344 273.590515137 272.136566162 270.709106445 269.180358887 267.402801514 264.885650635 260.622436523 253.40737915 250.533218384 247.938079834 246.494277954 244.921188354 244.657531738 244.148178101 242.5209198 241.227767944 240.082443237 235.838317871 237.270080566 238.656082153 239.927749634 241.747131348 243.732055664 245.198867798 245.734298706 245.799880981 246.614501953 248.928039551 252.551757812 256.524993896 261.790985107 267.355407715 271.216094971 272.019317627 272.153381348 272.451080322 272.862579346 273.220947266 273.557220459 273.888519287 274.250457764 274.66003418 275.153717041 275.76071167 276.418945312 277.23046875 278.407073975 279.547058105 280.930969238 282.877655029 284.797485352 286.315734863 287.567108154 288.872070312 290.265136719 291.537628174 292.735565186 293.734039307 294.475189209 295.00970459 295.443145752 295.889282227 296.145446777 296.167358398 296.215026855 296.325042725 296.435424805 296.589172363 296.820617676 297.175689697 297.650970459 298.129425049 298.593139648 299.121887207 299.580352783 299.801574707 299.832672119 299.884216309 300.08404541 300.314941406 300.478668213 300.513275146 300.129394531 299.487182617 298.663208008 299.29498291 299.633178711 298.780944824 297.381744385 296.786499023 295.750579834 294.863464355 294.364593506 293.194213867 291.856262207 290.66696167 289.789306641 288.747589111 287.989196777 286.713928223 284.570953369 283.671325684 282.459960938 281.783355713 282.965576172 285.782012939 286.575897217 284.950500488 281.737579346 279.95513916 279.548919678 279.962005615 282.823669434 283.664916992 283.334716797 282.803253174 282.500518799 281.602416992 279.992858887 279.213439941 279.61932373 279.864105225 279.925201416 279.821289062 279.070159912 278.286315918 277.0987854 275.060180664 273.504455566 272.396850586 271.651947021 271.126281738 270.313018799 268.435089111 264.78805542 258.223724365 254.408050537 251.569702148 248.802398682 247.027084351 246.214035034 244.910461426 243.452835083 242.167404175 241.510223389 224.39390564 226.78855896 229.208969116 230.795349121 232.858627319 235.74067688 238.24446106 240.016448975 240.905715942 242.664794922 245.878173828 249.721374512 254.002090454 260.836242676 267.472412109 271.448181152 272.421417236 272.56539917 272.844604492 273.076751709 273.360565186 273.805175781 274.223449707 274.581237793 274.923156738 275.338226318 275.992340088 276.793426514 277.861907959 279.342498779 280.745819092 282.258514404 284.175201416 285.966583252 287.3074646 288.311157227 289.394348145 290.555145264 291.612640381 292.601287842 293.437042236 294.101318359 294.676147461 295.148620605 295.548675537 295.779754639 295.907836914 296.091583252 296.260314941 296.38684082 296.622772217 296.957305908 297.34677124 297.905395508 298.535369873 299.123657227 299.750457764 300.250518799 300.354309082 300.225646973 300.246002197 300.460510254 300.581634521 300.553436279 300.626312256 300.602844238 300.016571045 298.486114502 298.888641357 299.344116211 299.484863281 299.622070312 300.831359863 300.476165771 299.785858154 298.861175537 297.214324951 295.8465271 294.687103271 293.850128174 293.116607666 292.827636719 291.757141113 289.81918335 289.339233398 288.522705078 287.514160156 287.478759766 287.317596436 287.525970459 286.765960693 284.437042236 282.175323486 281.010040283 280.925109863 283.188842773 283.750549316 283.213775635 282.455841064 281.771728516 280.688446045 279.231689453 278.809967041 279.47253418 279.754333496 279.904541016 280.067871094 279.619812012 279.005554199 277.770751953 275.722076416 274.569335938 273.899841309 273.140228271 272.35345459 271.680603027 270.295532227 267.207702637 261.166046143 255.790664673 252.301605225 250.587295532 248.426452637 245.823303223 244.2212677 243.158157349 242.486587524 241.035400391 246.28678894 247.405029297 248.51953125 249.914306641 251.698287964 253.09828186 253.823059082 253.720703125 253.443756104 254.153274536 256.151641846 259.482147217 263.913787842 268.639556885 270.520721436 271.371673584 271.385498047 271.581787109 271.952941895 272.404785156 272.951690674 273.529785156 273.893310547 274.030578613 274.343078613 274.924316406 275.541259766 276.12789917 277.040313721 278.281707764 279.502258301 280.989074707 282.778686523 284.368225098 285.644012451 286.657318115 287.612457275 288.772735596 289.994995117 291.077789307 291.996002197 292.965515137 293.93838501 294.667816162 295.171875 295.354370117 295.286224365 295.263305664 295.373321533 295.516357422 295.73348999 296.077575684 296.578521729 297.128479004 297.605194092 298.094055176 298.71395874 299.188293457 299.292022705 299.169677734 299.053588867 299.079956055 299.325744629 299.750274658 300.208343506 300.509216309 300.497558594 299.866333008 300.153564453 300.280731201 299.227325439 298.080322266 297.984222412 296.62310791 296.20513916 295.038482666 294.161529541 292.857391357 291.658843994 290.548614502 288.789367676 287.17276001 285.503601074 283.471496582 281.840270996 279.813140869 278.856842041 279.888397217 282.505859375 285.175140381 282.729309082 279.913543701 278.520233154 278.219665527 279.313171387 282.558135986 283.893218994 283.365539551 282.288574219 281.644073486 280.442260742 278.625366211 276.751312256 276.590301514 277.549224854 278.450622559 279.617797852 279.50479126 278.933837891 277.871582031 276.088256836 274.462768555 272.95791626 271.363922119 269.758911133 268.191650391 266.023193359 262.380523682 256.500091553 251.99256897 249.43586731 246.791610718 245.420761108 244.859619141 244.187774658 242.594192505 241.21144104 240.061325073 235.729797363 237.240982056 238.559158325 239.642929077 241.429031372 243.28477478 244.606643677 245.045196533 245.030822754 245.688293457 247.981811523 251.721984863 255.758483887 261.419525146 266.549438477 271.018463135 272.008239746 272.183258057 272.467803955 272.863433838 273.230621338 273.556549072 273.852661133 274.154541016 274.488464355 274.9637146 275.616333008 276.344238281 277.287261963 278.622253418 279.86529541 281.294311523 283.097045898 284.757141113 286.088500977 287.317321777 288.641143799 290.104858398 291.425567627 292.595062256 293.563781738 294.334716797 294.922943115 295.369995117 295.790496826 295.939056396 295.855041504 295.899597168 296.064117432 296.178070068 296.340240479 296.629577637 297.017181396 297.512054443 298.05859375 298.610015869 299.163391113 299.578857422 299.722900391 299.733093262 299.78036499 299.999328613 300.339263916 300.576599121 300.515625 300.081512451 299.694763184 299.400299072 300.407562256 300.263519287 298.513519287 296.785308838 296.652008057 295.099945068 294.664581299 293.761993408 292.970397949 291.687286377 290.694824219 289.994873047 288.714111328 287.474853516 286.229766846 284.592376709 283.093231201 281.039672852 280.160552979 280.807678223 282.908691406 285.218048096 283.376922607 280.514587402 278.469146729 278.258148193 279.31338501 282.620117188 283.678314209 283.270507812 282.532440186 282.141906738 281.27722168 279.916748047 278.656524658 278.383209229 278.660491943 278.952270508 279.646942139 279.200408936 278.449279785 277.246551514 275.552703857 274.22845459 273.060882568 272.084350586 271.418579102 270.802734375 269.373657227 266.201904297 259.99331665 255.964172363 253.311843872 249.106628418 247.710891724 246.501068115 245.065628052 243.579452515 242.202163696 241.532363892 224.263504028 226.642318726 228.971130371 230.400634766 232.368453979 235.175872803 237.585922241 239.181625366 240.038330078 241.686691284 244.808059692 248.885620117 253.159332275 260.156738281 266.671966553 271.271636963 272.451904297 272.593170166 272.859832764 273.095336914 273.382141113 273.838653564 274.232788086 274.506134033 274.785919189 275.196289062 275.883605957 276.810333252 278.040588379 279.680725098 281.151855469 282.625762939 284.33215332 285.927093506 287.179534912 288.219238281 289.326751709 290.475646973 291.509490967 292.450775146 293.264953613 293.97958374 294.608154297 295.078216553 295.442626953 295.615386963 295.683959961 295.838287354 296.01763916 296.154388428 296.400482178 296.782897949 297.221984863 297.807800293 298.47467041 299.115661621 299.769287109 300.228668213 300.284851074 300.149963379 300.182861328 300.418701172 300.62902832 300.719268799 300.783843994 300.643432617 300.122589111 299.26171875 299.438262939 299.934844971 300.058349609 301.084106445 301.53225708 300.173217773 299.54510498 298.226898193 297.011901855 295.698242188 294.729919434 294.08996582 293.054443359 292.010955811 291.091430664 289.787475586 288.671875 286.988220215 286.584289551 286.494537354 286.785461426 287.117218018 286.419921875 284.081939697 281.320007324 280.110656738 280.609558105 282.947967529 283.66897583 283.126617432 282.217163086 281.454040527 280.404937744 279.202758789 278.254058838 278.271942139 278.641815186 278.903015137 279.657409668 279.472808838 278.952728271 277.757568359 276.163085938 275.267242432 274.578094482 273.70425415 272.75479126 272.066192627 270.906646729 268.100402832 262.917388916 257.272766113 253.838867188 250.92729187 248.787963867 246.224700928 244.460098267 243.309112549 242.62979126 241.100631714 246.244995117 247.329299927 248.3878479 249.693069458 251.450576782 252.761291504 253.401260376 253.248214722 252.851165771 253.483825684 255.193374634 258.632629395 263.139953613 268.069091797 270.465789795 271.464202881 271.47354126 271.606658936 271.951629639 272.365386963 272.913970947 273.536773682 273.921051025 274.01675415 274.229736328 274.796051025 275.463623047 276.138885498 277.15838623 278.496643066 279.803070068 281.279968262 282.915344238 284.336914062 285.553039551 286.578308105 287.53704834 288.733978271 290.007873535 291.094390869 291.997375488 292.961791992 293.905731201 294.555328369 294.957366943 295.055999756 294.970031738 295.005279541 295.130950928 295.236114502 295.486328125 295.929718018 296.450897217 296.9921875 297.537841797 298.10559082 298.723480225 299.174621582 299.286956787 299.202392578 299.107055664 299.121063232 299.340118408 299.743011475 300.220733643 300.56451416 300.520782471 299.622375488 299.223510742 300.290039062 299.420806885 298.240997314 297.670013428 296.209106445 294.190643311 294.307617188 293.990661621 292.828491211 291.894378662 290.793487549 288.992370605 287.226867676 285.676055908 283.754150391 282.047210693 279.859863281 278.022766113 278.471588135 281.09161377 284.28616333 282.193328857 279.348052979 277.769165039 277.46206665 279.058288574 282.301177979 283.653961182 283.042053223 281.262512207 280.852600098 279.593139648 278.003417969 276.465606689 276.052825928 276.135009766 277.238525391 279.228179932 279.473449707 278.952301025 278.004760742 276.62487793 275.267059326 273.74899292 271.99130249 270.350646973 268.911865234 266.916381836 263.883117676 258.930023193 253.372528076 249.480377197 247.279785156 245.74710083 245.070983887 244.212310791 242.656295776 241.205535889 240.038116455 235.688659668 237.127929688 238.371688843 239.415298462 241.068191528 242.874099731 244.010147095 244.376495361 244.273391724 244.853652954 247.051315308 250.862731934 255.097595215 260.296905518 265.952819824 270.846740723 271.980621338 272.205749512 272.488006592 272.851654053 273.212982178 273.549194336 273.810516357 274.055511475 274.356811523 274.837310791 275.549804688 276.359100342 277.428405762 278.846801758 280.176177979 281.646453857 283.291046143 284.696685791 285.902862549 287.139282227 288.472381592 289.94732666 291.301757812 292.447265625 293.380126953 294.189178467 294.852020264 295.296691895 295.634399414 295.702545166 295.600372314 295.679992676 295.853057861 295.938201904 296.120117188 296.480773926 296.912445068 297.453155518 298.087921143 298.696166992 299.241699219 299.639221191 299.779754639 299.768951416 299.739318848 299.86541748 300.188476562 300.452178955 300.403442383 300.07913208 299.818206787 299.30380249 299.444000244 300.215820312 298.642120361 297.021789551 296.282531738 294.704772949 292.657531738 292.941772461 292.760498047 291.460998535 290.679290771 289.891235352 288.584533691 287.396026611 286.278167725 284.817901611 283.294616699 280.981384277 278.873779297 279.099365234 281.292907715 284.126342773 282.734619141 279.839294434 278.084350586 277.680297852 279.27130127 282.522155762 283.628204346 283.17086792 281.949371338 281.673095703 280.738342285 279.445800781 278.294799805 277.864349365 277.580993652 278.074768066 279.424194336 279.351470947 278.599395752 277.430633545 276.001373291 274.877471924 273.70199585 272.543243408 271.726287842 271.167602539 269.983886719 267.603912354 261.973846436 256.867675781 253.379653931 249.685256958 248.178024292 246.82699585 245.203155518 243.705108643 242.245300293 241.553192139 224.190338135 226.462982178 228.718902588 230.05291748 231.930160522 234.636413574 236.944885254 238.370269775 239.255599976 240.737930298 243.592041016 247.967041016 252.435806274 258.771759033 265.915374756 271.08706665 272.449920654 272.589477539 272.847412109 273.1015625 273.388397217 273.852294922 274.213226318 274.425811768 274.691467285 275.110168457 275.851745605 276.919494629 278.278320312 279.974853516 281.476623535 282.952667236 284.4894104 285.855651855 287.017974854 288.140350342 289.284393311 290.409576416 291.412750244 292.30657959 293.080322266 293.812286377 294.484405518 294.95892334 295.282806396 295.436157227 295.500091553 295.641174316 295.803436279 295.929931641 296.190185547 296.629577637 297.166687012 297.848175049 298.595428467 299.28805542 299.914642334 300.264709473 300.26083374 300.13067627 300.099761963 300.228668213 300.473754883 300.714141846 300.848236084 300.717376709 300.226837158 299.263092041 298.878082275 300.056671143 300.760040283 301.7003479 301.552001953 299.717712402 297.269287109 297.399841309 296.990905762 295.49407959 294.668426514 294.086883545 293.012054443 291.838470459 290.93057251 289.875549316 288.635864258 286.669067383 285.070068359 285.023773193 285.861328125 286.646820068 286.160766602 283.85244751 281.355743408 279.808166504 280.694610596 282.762817383 283.540435791 283.031860352 281.687286377 281.142547607 280.013092041 278.883850098 277.941802979 277.747344971 277.729736328 278.134857178 279.226318359 279.404602051 278.905273438 277.844268799 276.597320557 275.886627197 275.250366211 274.298400879 273.239959717 272.455993652 271.375030518 269.066772461 264.453521729 258.503997803 253.880065918 251.413757324 249.017456055 246.557449341 244.627761841 243.465362549 242.75352478 241.160812378 246.214584351 247.248825073 248.25730896 249.486038208 251.202590942 252.478469849 252.976501465 252.844482422 252.42414856 252.906738281 254.32019043 257.766113281 262.429473877 267.848754883 270.423797607 271.556488037 271.565917969 271.640869141 271.968170166 272.335754395 272.855194092 273.515075684 273.923553467 274.011566162 274.154205322 274.692077637 275.414093018 276.198364258 277.307281494 278.685577393 280.011749268 281.443267822 282.945617676 284.240905762 285.441802979 286.531097412 287.554443359 288.801635742 290.077026367 291.106689453 291.952850342 292.909698486 293.84576416 294.431213379 294.739593506 294.785095215 294.719482422 294.776855469 294.865509033 294.954742432 295.265167236 295.774719238 296.310455322 296.902404785 297.572845459 298.182495117 298.750946045 299.191375732 299.328979492 299.238098145 299.11605835 299.132171631 299.350494385 299.734802246 300.264434814 300.69354248 300.58493042 299.619293213 298.483123779 299.977325439 299.568786621 298.805633545 297.52746582 296.427764893 295.259368896 295.986663818 294.003082275 292.869140625 292.022613525 291.016815186 289.416778564 287.495025635 285.886352539 284.018981934 282.017120361 280.213104248 278.105255127 278.160736084 280.451080322 283.694549561 282.20401001 279.264312744 277.507415771 277.060272217 278.514892578 281.854888916 283.057250977 282.296112061 280.237487793 280.075775146 278.487609863 277.368133545 276.427703857 276.210083008 276.411895752 277.552856445 279.076904297 279.471343994 279.039886475 278.204284668 277.075683594 275.886505127 274.458282471 272.638580322 270.968780518 269.576416016 267.74710083 264.926300049 260.99987793 254.970916748 251.979370117 248.172775269 246.043197632 245.18913269 244.270767212 242.705032349 241.212493896 240.005630493 235.627792358 236.990081787 238.252868652 239.185195923 240.802688599 242.48034668 243.495025635 243.688949585 243.547409058 243.941497803 246.201019287 250.087417603 254.555541992 259.895324707 265.557128906 270.692565918 271.948822021 272.228515625 272.51171875 272.830535889 273.169952393 273.523406982 273.769714355 273.977325439 274.259918213 274.757415771 275.518157959 276.413726807 277.586975098 279.032226562 280.386352539 281.844085693 283.346282959 284.586914062 285.770263672 287.076080322 288.436767578 289.87612915 291.201049805 292.29385376 293.185272217 294.01864624 294.726959229 295.164733887 295.436920166 295.46786499 295.373382568 295.448638916 295.589904785 295.674346924 295.917541504 296.357055664 296.861297607 297.489837646 298.18927002 298.794250488 299.324127197 299.730285645 299.883514404 299.849609375 299.746734619 299.776580811 300.037750244 300.327880859 300.369812012 300.198822021 299.991241455 299.459320068 298.30670166 299.698577881 298.648803711 297.586730957 296.153900146 295.049865723 293.940673828 294.590148926 292.621459961 291.31930542 290.534393311 289.718780518 288.506256104 287.290527344 286.197662354 284.774261475 283.096618652 281.429229736 279.042327881 278.737457275 280.517883301 283.401123047 282.67364502 280.115875244 278.190307617 277.559661865 278.910308838 282.277526855 283.334472656 282.817840576 281.297973633 281.207824707 280.071411133 278.969970703 278.110748291 277.751525879 277.581848145 278.250457764 279.314666748 279.453552246 278.780792236 277.675415039 276.399810791 275.353912354 274.244537354 273.001190186 272.050872803 271.463317871 270.472503662 268.396820068 264.223083496 257.882507324 255.585037231 250.720550537 248.544815063 247.055389404 245.38130188 243.834091187 242.296646118 241.570343018 224.061706543 226.272521973 228.470291138 229.70010376 231.550674438 234.087142944 236.32623291 237.63243103 238.474334717 239.67376709 242.399200439 247.021774292 251.740249634 258.05178833 265.262939453 270.897613525 272.428619385 272.565032959 272.823120117 273.096557617 273.376190186 273.842498779 274.180236816 274.355194092 274.617889404 275.056854248 275.851348877 277.041015625 278.509460449 280.178222656 281.652313232 283.109283447 284.519287109 285.710266113 286.843292236 288.073913574 289.25289917 290.328918457 291.280731201 292.134216309 292.880554199 293.615539551 294.317443848 294.812744141 295.118438721 295.252441406 295.297637939 295.405761719 295.554748535 295.71484375 296.03012085 296.530609131 297.179962158 297.966461182 298.76449585 299.462768555 300.02947998 300.294372559 300.255645752 300.13684082 300.044891357 300.056152344 300.29006958 300.619995117 300.821502686 300.743499756 300.247344971 299.119628906 298.518890381 299.838043213 301.087768555 302.305328369 301.425567627 300.19833374 298.903076172 299.595947266 297.249023438 295.570709229 294.693481445 294.017120361 292.961303711 291.679901123 290.646636963 289.601379395 288.114532471 286.890838623 284.815612793 284.236724854 285.136108398 285.905731201 286.111999512 284.217285156 281.619232178 280.200286865 280.587188721 282.568481445 283.222167969 282.684906006 281.203125 280.797424316 279.453125 278.454498291 277.738067627 277.483795166 277.50479126 278.065307617 278.980133057 279.321563721 278.901489258 277.997283936 276.985076904 276.366455078 275.818908691 274.875976562 273.759246826 272.862213135 271.832733154 269.807189941 266.022338867 259.865905762 255.809677124 252.381698608 249.348983765 246.821777344 244.802368164 243.636550903 242.856948853 241.210266113 246.176635742 247.175292969 248.115524292 249.302215576 250.985565186 252.195343018 252.600387573 252.431945801 252.055114746 252.347717285 253.616271973 256.888397217 261.800140381 267.66293335 270.379547119 271.640197754 271.662414551 271.697662354 272.005187988 272.312683105 272.785095215 273.45791626 273.884674072 273.982696533 274.087158203 274.591644287 275.371917725 276.265441895 277.443664551 278.827850342 280.118164062 281.466949463 282.850280762 284.074890137 285.301452637 286.487762451 287.604217529 288.882049561 290.096862793 291.048065186 291.856201172 292.816314697 293.750762939 294.289001465 294.528686523 294.554870605 294.510681152 294.547027588 294.602874756 294.730773926 295.108612061 295.625762939 296.190093994 296.908874512 297.688964844 298.294799805 298.799926758 299.234863281 299.388885498 299.304321289 299.197875977 299.235473633 299.423156738 299.7237854 300.227996826 300.716308594 300.628143311 299.472747803 298.402801514 300.158966064 299.819458008 298.727813721 297.704284668 296.458648682 295.311004639 294.908294678 293.89465332 293.075134277 292.207641602 291.05947876 289.763183594 288.33013916 286.457305908 284.684295654 282.619232178 280.359649658 278.685577393 278.226135254 279.868377686 283.303436279 283.264831543 280.037536621 277.86050415 276.998291016 277.984039307 280.87677002 281.74810791 280.453613281 279.253387451 279.156036377 278.023010254 277.304504395 276.800079346 277.163787842 277.685424805 278.37322998 279.1612854 279.464691162 279.117736816 278.394165039 277.430053711 276.390289307 275.017578125 273.268280029 271.564147949 270.205657959 268.492828369 265.856231689 262.533599854 257.492004395 252.142608643 248.247344971 246.41343689 245.328842163 244.368408203 242.715560913 241.212280273 239.968170166 235.580184937 236.869995117 238.044708252 238.949172974 240.450363159 242.114059448 243.005889893 243.089126587 242.86819458 243.149551392 245.316101074 249.159378052 254.060653687 259.46182251 265.268859863 270.557739258 271.921112061 272.256469727 272.535522461 272.797393799 273.102325439 273.477966309 273.729309082 273.913421631 274.182281494 274.695892334 275.491149902 276.468200684 277.720184326 279.166412354 280.496307373 281.894317627 283.284332275 284.451171875 285.683410645 287.09487915 288.478515625 289.853546143 291.089416504 292.121887207 292.998413086 293.848114014 294.563140869 294.972137451 295.20123291 295.222229004 295.13885498 295.186401367 295.296905518 295.422851562 295.74029541 296.234466553 296.830932617 297.581176758 298.324707031 298.897247314 299.40713501 299.810852051 299.955780029 299.935302734 299.839813232 299.814178467 299.97833252 300.241333008 300.351196289 300.301330566 300.175231934 299.427062988 298.246551514 299.65435791 298.739990234 297.333953857 296.237609863 294.980987549 293.902191162 293.423797607 292.210998535 291.343719482 290.471252441 289.389007568 288.397735596 287.519897461 286.181396484 284.907775879 283.401763916 281.391357422 279.643859863 278.825683594 279.945343018 283.028045654 283.458618164 280.992156982 278.816833496 278.008178711 278.697845459 281.539276123 282.498809814 281.629760742 280.732910156 280.609649658 279.746124268 278.842224121 278.171112061 278.126831055 278.370819092 278.757415771 279.325561523 279.428375244 278.878845215 277.917419434 276.758880615 275.714263916 274.612854004 273.398345947 272.364898682 271.728210449 270.852416992 269.017730713 265.602355957 259.569702148 255.728759766 250.834701538 249.072219849 247.295150757 245.588287354 243.939620972 242.342651367 241.590164185 223.936035156 226.090408325 228.237289429 229.319656372 231.139511108 233.624404907 235.760696411 236.972015381 237.704711914 238.512557983 241.103179932 245.962600708 251.065048218 257.389312744 264.658599854 270.698791504 272.389343262 272.52935791 272.791717529 273.083068848 273.351776123 273.814880371 274.134857178 274.284393311 274.546325684 275.014129639 275.845672607 277.125976562 278.680877686 280.292572021 281.688995361 283.085693359 284.402526855 285.516967773 286.696411133 288.019012451 289.196563721 290.200012207 291.083007812 291.923675537 292.698272705 293.456420898 294.176025391 294.672180176 294.942596436 295.036865234 295.058502197 295.154937744 295.332336426 295.575836182 295.962158203 296.492004395 297.199798584 298.033691406 298.848907471 299.543670654 300.093536377 300.321624756 300.262207031 300.1512146 300.037475586 299.997894287 300.190948486 300.521881104 300.74899292 300.733551025 300.28237915 299.143218994 298.699645996 299.746429443 301.594604492 302.000152588 301.488677979 300.402496338 299.397247314 298.754394531 297.21194458 296.022003174 295.052856445 293.947937012 292.895141602 291.967987061 290.523895264 289.541656494 288.242706299 286.470825195 285.075408936 283.951934814 284.537353516 285.833374023 286.005584717 284.763092041 282.531188965 280.794799805 280.488830566 281.991394043 282.488830566 281.518493652 280.691680908 280.253265381 279.149902344 278.24130249 277.653564453 277.552368164 277.794921875 278.305603027 278.872497559 279.147857666 278.817932129 278.088378906 277.28225708 276.722137451 276.212341309 275.362030029 274.248535156 273.289337158 272.284362793 270.465179443 267.216003418 261.76348877 255.916900635 252.48425293 249.909408569 247.156143188 244.996047974 243.793395996 242.939407349 241.273376465 246.144515991 247.090515137 247.990127563 249.119613647 250.756210327 251.989044189 252.278869629 252.055084229 251.674468994 251.793273926 252.932113647 256.081542969 261.129394531 267.243713379 270.277893066 271.720184326 271.778503418 271.786346436 272.054840088 272.31829834 272.708831787 273.338897705 273.785430908 273.924407959 274.009094238 274.488494873 275.321044922 276.315155029 277.537139893 278.895324707 280.113128662 281.360107422 282.660736084 283.885894775 285.161834717 286.40045166 287.559265137 288.811523438 289.957336426 290.910552979 291.782562256 292.746002197 293.629058838 294.107879639 294.305786133 294.332519531 294.296691895 294.318145752 294.40927124 294.630493164 295.04901123 295.550262451 296.181335449 297.014709473 297.789733887 298.357208252 298.858551025 299.295349121 299.465911865 299.446746826 299.409362793 299.432800293 299.52130127 299.678771973 300.038421631 300.482391357 300.512634277 300.220611572 299.059112549 300.49508667 299.827148438 298.653839111 296.980712891 296.242675781 295.327178955 294.311035156 293.780883789 292.304534912 291.414154053 290.749725342 289.898895264 288.866394043 287.464538574 285.510986328 283.317962646 280.957000732 279.340148926 278.410095215 279.51461792 282.126342773 284.007904053 282.565917969 280.04788208 277.609954834 277.654907227 278.459014893 278.916625977 278.705352783 278.22277832 278.204284668 277.7628479 277.408599854 277.840606689 278.206481934 278.529327393 278.899383545 279.199462891 279.298858643 279.042907715 278.498046875 277.689697266 276.732788086 275.481201172 273.801879883 272.194793701 270.797546387 269.078735352 266.787841797 263.900115967 259.160430908 254.169448853 248.855911255 246.516479492 245.535919189 244.470550537 242.678131104 241.213668823 239.928466797 235.534790039 236.842697144 237.904251099 238.732162476 240.146179199 241.757583618 242.509506226 242.530822754 242.240341187 242.38822937 244.415603638 248.425811768 253.506317139 259.131011963 265.034515381 270.441925049 271.889526367 272.289642334 272.559387207 272.749847412 272.996826172 273.387054443 273.664459229 273.841674805 274.109008789 274.626251221 275.440612793 276.488830566 277.800262451 279.234741211 280.519592285 281.840484619 283.157867432 284.327056885 285.635375977 287.111297607 288.486297607 289.789215088 290.914703369 291.907745361 292.827514648 293.694885254 294.364746094 294.721893311 294.921539307 294.949768066 294.888397217 294.933258057 295.067718506 295.274597168 295.639892578 296.153594971 296.855773926 297.710083008 298.447387695 298.978424072 299.473052979 299.835876465 299.950805664 300.003723145 300.007385254 299.955383301 299.983306885 300.137756348 300.249267578 300.243225098 300.183044434 300.282897949 299.282470703 299.910888672 298.669677734 297.094299316 295.532775879 294.73248291 293.826812744 292.715209961 292.071380615 290.361297607 289.454986572 288.876464844 288.19152832 287.455078125 286.504394531 285.165130615 283.809906006 281.806427002 280.173065186 278.968109131 279.656829834 281.959655762 283.925537109 283.20501709 281.081329346 278.728637695 278.669769287 279.519866943 280.385070801 280.382141113 280.039916992 279.921966553 279.49710083 278.805603027 278.637908936 278.756622314 278.846496582 279.056610107 279.246582031 279.198638916 278.788543701 278.074707031 277.047546387 275.956115723 274.867492676 273.678009033 272.692962646 271.984344482 271.119628906 269.588409424 266.820068359 260.799102783 257.069213867 252.167999268 249.309127808 247.600250244 245.795196533 243.998764038 242.395874023 241.611434937 223.820632935 225.938659668 227.972900391 228.95324707 230.729736328 233.158538818 235.18031311 236.312744141 236.903869629 237.312088013 239.715682983 244.937210083 250.407470703 256.926818848 264.059509277 270.460906982 272.326385498 272.48916626 272.755096436 273.064788818 273.311218262 273.753326416 274.064331055 274.193023682 274.465423584 274.968292236 275.819976807 277.154205322 278.762329102 280.316772461 281.617767334 282.907501221 284.169769287 285.314544678 286.578277588 287.92578125 289.066772461 290.018859863 290.865264893 291.737518311 292.603668213 293.389038086 294.060089111 294.477386475 294.670654297 294.729766846 294.776000977 294.91809082 295.147460938 295.462219238 295.896728516 296.434356689 297.17086792 298.028778076 298.876403809 299.62588501 300.202941895 300.382110596 300.252197266 300.108123779 300.036682129 300.048217773 300.206420898 300.46862793 300.684112549 300.737701416 300.413604736 299.851470947 299.385803223 300.89730835 301.655853271 301.441375732 300.648010254 300.244476318 299.674560547 298.371063232 297.293670654 295.67098999 294.602050781 293.720184326 292.857971191 292.016265869 290.860931396 289.601531982 288.464263916 286.665985107 285.366271973 284.000427246 284.509307861 285.477996826 285.862579346 285.375793457 283.730224609 281.342163086 280.542785645 280.425476074 280.642486572 280.326965332 280.043029785 279.612121582 278.928771973 278.056915283 277.752502441 277.847961426 278.02355957 278.382019043 278.64654541 278.766326904 278.52444458 278.029876709 277.448608398 276.938903809 276.457855225 275.711975098 274.738983154 273.720367432 272.686096191 271.199951172 268.387634277 262.979400635 257.668182373 253.614303589 250.160934448 247.526687622 245.201370239 243.895965576 243.027206421 241.340835571 246.103713989 247.013824463 247.863174438 248.941574097 250.555358887 251.728790283 251.972442627 251.759994507 251.397628784 251.25302124 252.272521973 255.404052734 260.575500488 266.909820557 270.158416748 271.769836426 271.882232666 271.871490479 272.108551025 272.325561523 272.646911621 273.228790283 273.687774658 273.867492676 273.950042725 274.41116333 275.277099609 276.338684082 277.566925049 278.878173828 280.039276123 281.2315979 282.528991699 283.815582275 285.103149414 286.281524658 287.410552979 288.650268555 289.794464111 290.825653076 291.792388916 292.71307373 293.48324585 293.910217285 294.099182129 294.137054443 294.115753174 294.149017334 294.287445068 294.585510254 295.024536133 295.539245605 296.21875 297.005828857 297.672119141 298.246459961 298.805297852 299.246917725 299.470489502 299.569458008 299.542907715 299.498565674 299.577972412 299.74029541 300.021270752 300.379119873 300.4269104 300.235107422 299.236328125 300.221832275 299.805023193 298.049835205 297.269683838 295.979888916 294.99822998 294.020294189 292.816436768 291.646575928 290.807983398 290.375946045 289.465057373 288.683502197 287.706542969 285.959716797 283.81854248 281.272186279 279.474822998 278.836761475 278.993408203 281.033538818 284.352142334 283.91494751 281.956573486 279.572296143 277.853820801 277.261352539 277.174530029 277.378082275 277.456542969 277.54019165 277.695251465 277.859130859 278.339782715 278.746307373 279.085571289 279.11126709 278.908966064 278.718048096 278.658233643 278.428894043 277.868560791 277.0050354 275.812805176 274.316131592 272.749328613 271.317993164 269.656829834 267.425506592 264.873413086 261.142028809 254.457107544 248.969894409 246.559783936 245.597503662 244.447525024 242.670211792 241.211624146 239.875808716 235.454925537 236.735549927 237.785186768 238.516296387 239.916778564 241.385040283 242.056533813 241.942123413 241.663635254 241.658096313 243.502700806 247.715499878 253.084609985 258.871887207 264.897216797 270.381469727 271.873046875 272.317321777 272.575592041 272.688568115 272.864471436 273.256134033 273.576141357 273.780548096 274.059326172 274.565185547 275.39642334 276.488739014 277.81918335 279.239349365 280.500610352 281.768768311 283.058197021 284.283172607 285.628295898 287.032867432 288.383728027 289.690826416 290.750579834 291.714355469 292.674743652 293.529693604 294.141296387 294.478973389 294.665130615 294.689361572 294.650085449 294.711761475 294.878997803 295.158599854 295.589874268 296.162445068 296.946228027 297.78793335 298.439849854 298.927246094 299.413452148 299.766357422 299.946929932 300.11932373 300.173706055 300.099639893 300.077636719 300.156402588 300.277801514 300.308258057 300.196105957 300.312042236 299.635925293 299.778930664 298.748748779 296.469512939 295.84588623 294.571166992 293.475524902 292.411804199 291.189361572 289.719177246 288.727111816 288.37210083 287.576141357 286.888702393 286.133026123 285.069366455 283.914398193 281.930603027 279.997772217 279.054534912 279.081207275 281.066101074 284.100982666 284.294189453 282.942779541 280.720031738 278.901428223 278.513000488 278.885070801 279.290435791 279.337310791 279.41494751 279.256744385 278.91885376 278.827850342 278.977416992 279.088470459 279.087890625 278.878997803 278.59173584 278.404052734 278.065460205 277.281188965 276.142883301 275.003814697 273.917053223 272.970703125 272.217956543 271.369171143 269.938323975 267.515838623 262.917541504 257.284667969 252.423690796 249.559326172 247.802062988 245.887634277 244.04838562 242.449691772 241.627761841 223.731033325 225.760437012 227.71182251 228.625167847 230.391265869 232.717712402 234.630142212 235.61289978 236.095565796 236.249679565 238.368103027 243.92024231 249.778961182 256.436004639 263.593994141 270.208129883 272.256988525 272.456787109 272.7237854 273.045623779 273.259216309 273.666442871 273.972961426 274.097229004 274.392669678 274.938995361 275.817962646 277.169616699 278.785705566 280.282836914 281.526275635 282.723999023 283.968261719 285.170379639 286.463226318 287.752563477 288.912017822 289.970794678 290.855773926 291.738037109 292.611724854 293.333740234 293.88684082 294.21887207 294.381652832 294.462432861 294.557403564 294.702850342 294.885772705 295.180267334 295.667205811 296.291900635 297.121826172 298.040802002 298.933563232 299.705383301 300.233337402 300.348907471 300.182098389 300.027557373 299.996429443 300.104980469 300.301055908 300.506835938 300.675537109 300.755737305 300.521728516 299.985595703 299.089447021 299.727508545 300.138885498 300.289855957 300.662963867 299.980834961 299.357177734 298.34262085 296.813659668 295.253326416 294.127685547 293.434295654 292.604034424 291.767700195 290.661224365 289.430786133 288.31338501 286.557922363 284.83694458 284.142303467 283.93057251 284.86340332 285.772583008 285.625 284.346099854 282.635223389 280.682189941 279.369232178 279.175415039 279.233215332 279.413604736 279.107086182 278.505889893 277.96963501 277.79107666 277.910186768 278.05682373 278.211425781 278.125457764 278.014007568 277.924316406 277.770843506 277.503509521 277.067138672 276.575714111 275.980224609 275.144714355 274.140411377 273.132202148 271.733856201 269.231567383 264.854980469 257.916687012 253.822189331 250.529266357 247.696594238 245.303512573 243.948013306 243.121109009 241.372421265 246.062469482 246.935882568 247.732391357 248.749725342 250.346343994 251.493499756 251.732223511 251.484802246 251.141876221 250.837005615 251.61567688 254.811279297 260.100769043 266.546661377 270.071044922 271.798095703 271.97265625 271.943206787 272.159545898 272.329223633 272.596618652 273.136169434 273.607086182 273.819702148 273.901397705 274.353759766 275.264801025 276.3671875 277.572418213 278.83102417 279.963775635 281.143432617 282.460723877 283.786956787 285.051055908 286.161102295 287.284454346 288.563140869 289.720794678 290.778411865 291.778320312 292.646331787 293.335845947 293.752563477 293.950164795 293.977966309 293.954772949 294.000183105 294.169372559 294.5 294.959991455 295.501373291 296.158996582 296.833374023 297.453216553 298.099578857 298.703826904 299.144012451 299.481750488 299.689575195 299.629333496 299.538818359 299.649169922 299.810180664 300.016265869 300.319671631 300.332733154 300.131652832 299.251495361 299.909667969 299.589599609 298.440673828 297.092803955 295.577758789 294.728057861 293.620941162 292.267974854 290.958953857 290.046844482 289.261199951 288.500732422 287.811767578 287.309539795 285.864593506 283.893066406 281.957397461 280.202423096 279.481964111 279.014404297 280.221191406 283.986724854 284.609802246 283.183990479 281.408813477 279.157806396 276.475097656 275.64050293 276.286437988 276.781646729 276.819976807 277.397399902 278.112060547 278.513702393 278.953186035 279.124511719 278.834014893 278.15524292 277.579742432 277.765899658 278.121063232 277.931243896 277.219360352 276.117675781 274.703735352 273.237518311 271.779876709 270.104827881 268.080780029 265.726928711 262.047973633 256.657104492 248.98600769 246.570770264 245.583953857 244.426300049 242.697280884 241.203323364 239.819244385 235.399002075 236.573898315 237.570663452 238.304214478 239.619903564 241.051010132 241.660934448 241.447860718 241.144180298 240.93927002 242.501571655 246.869415283 252.636108398 258.604614258 264.766601562 270.357330322 271.879486084 272.339294434 272.58215332 272.62878418 272.729095459 273.110687256 273.47958374 273.727844238 274.015472412 274.520324707 275.39175415 276.519622803 277.830108643 279.225738525 280.485626221 281.720092773 282.988525391 284.270507812 285.617126465 286.928619385 288.274261475 289.625579834 290.661560059 291.595672607 292.568267822 293.384277344 293.932495117 294.259674072 294.424926758 294.428375244 294.402526855 294.487731934 294.687042236 295.010040283 295.504180908 296.12020874 296.903747559 297.681884766 298.289398193 298.79800415 299.311798096 299.707977295 300.02444458 300.28414917 300.326019287 300.25479126 300.218841553 300.19140625 300.300323486 300.419433594 300.246520996 300.226318359 299.664398193 299.647766113 298.721557617 296.937866211 295.689086914 294.23449707 293.292602539 292.083282471 290.618835449 289.053894043 288.032836914 287.229431152 286.404785156 285.577331543 285.09185791 284.382537842 283.556243896 282.398101807 280.693389893 279.682159424 279.180969238 280.410522461 283.828460693 284.684814453 283.773010254 282.238677979 279.914855957 277.631958008 277.417724609 277.962280273 278.460998535 278.770172119 278.967102051 278.912445068 278.862030029 279.015808105 279.037597656 278.768615723 278.152923584 277.511199951 277.59375 277.829498291 277.392883301 276.319793701 275.140411377 274.083312988 273.210418701 272.430999756 271.550231934 270.279510498 268.138946533 263.901641846 258.462341309 253.141525269 250.058883667 247.991333008 245.995956421 244.125869751 242.502410889 241.641494751 223.645889282 225.561355591 227.463668823 228.319320679 230.048812866 232.324142456 234.0730896 234.973449707 235.371490479 235.228057861 236.996490479 242.92930603 249.224151611 255.928085327 263.130249023 269.941772461 272.185394287 272.434875488 272.691253662 273.019317627 273.20513916 273.572570801 273.874572754 274.005462646 274.334533691 274.927886963 275.861663818 277.217071533 278.796875 280.240539551 281.444702148 282.595306396 283.821136475 285.038146973 286.304931641 287.548248291 288.796905518 290.022491455 290.955718994 291.808776855 292.628540039 293.264221191 293.7159729 294.017974854 294.186889648 294.272735596 294.369598389 294.490600586 294.638397217 294.938262939 295.499694824 296.210754395 297.068878174 297.981201172 298.865905762 299.634063721 300.146179199 300.296905518 300.205047607 300.044921875 300.006225586 300.200683594 300.475006104 300.629974365 300.69631958 300.767883301 300.605010986 300.05456543 299.08972168 298.700927734 299.570587158 300.439544678 300.630432129 299.690338135 299.076446533 298.109466553 296.480010986 294.726806641 293.463348389 292.627655029 291.824554443 290.829681396 289.905914307 288.894042969 287.935913086 286.918518066 285.43145752 284.571075439 283.752075195 283.79498291 285.410369873 285.645080566 284.76739502 283.323028564 281.14654541 278.375915527 277.605804443 277.928039551 278.479675293 278.420074463 278.113983154 277.897491455 277.754333496 277.865447998 277.908996582 277.702545166 277.198364258 276.737091064 276.854919434 277.270172119 277.43649292 277.143432617 276.658050537 276.161132812 275.485717773 274.542297363 273.541046143 272.310974121 270.069671631 265.791778564 259.724731445 254.389785767 251.401153564 247.863128662 245.425720215 244.014068604 243.214569092 241.388458252 246.02331543 246.860412598 247.606842041 248.584472656 250.148483276 251.286224365 251.50843811 251.223449707 250.879684448 250.443099976 251.06338501 254.290847778 259.644714355 266.207092285 269.982269287 271.819885254 272.064086914 272.005737305 272.196807861 272.33581543 272.548553467 273.07244873 273.547637939 273.780395508 273.872650146 274.311523438 275.267242432 276.389984131 277.559631348 278.772369385 279.899139404 281.087554932 282.41204834 283.732666016 284.962921143 286.03894043 287.201782227 288.553741455 289.726013184 290.769439697 291.764984131 292.597991943 293.232299805 293.642333984 293.825592041 293.819152832 293.791870117 293.862915039 294.060272217 294.391174316 294.871185303 295.432800293 296.024169922 296.586639404 297.229431152 297.991882324 298.642822266 299.106964111 299.563476562 299.814727783 299.690856934 299.586364746 299.712432861 299.808013916 299.932037354 300.196655273 300.157318115 299.961425781 299.32901001 299.901916504 299.452758789 298.250030518 297.343353271 295.153656006 294.260864258 292.966522217 291.85824585 290.498840332 289.293182373 287.819976807 286.902404785 286.323455811 285.922332764 285.184112549 283.898773193 282.816741943 281.618408203 280.365142822 279.526763916 280.332794189 283.723052979 284.755218506 283.887908936 282.359222412 280.111755371 276.24609375 274.665679932 275.281677246 276.06842041 276.162536621 276.650360107 277.804321289 278.391418457 278.719909668 278.734313965 277.981811523 276.793060303 276.002380371 276.390045166 277.444519043 277.881286621 277.384674072 276.34954834 275.024475098 273.640563965 272.150787354 270.445983887 268.506561279 266.222717285 262.914428711 257.148376465 248.933502197 246.591629028 245.544464111 244.386123657 242.716720581 241.181564331 239.798812866 235.372436523 236.49899292 237.433670044 238.084472656 239.377731323 240.718154907 241.27243042 241.014907837 240.677947998 240.321868896 241.677871704 246.139343262 252.098648071 258.377532959 264.691864014 270.347442627 271.898071289 272.353393555 272.573150635 272.56842041 272.602233887 272.964324951 273.378753662 273.676422119 273.973175049 274.479644775 275.400482178 276.563415527 277.832244873 279.200836182 280.47052002 281.686248779 282.932983398 284.243804932 285.565368652 286.810974121 288.173828125 289.604034424 290.674682617 291.601287842 292.564239502 293.302703857 293.764312744 294.066986084 294.201965332 294.187103271 294.208679199 294.350524902 294.581115723 294.932952881 295.474853516 296.070465088 296.75982666 297.446655273 298.071594238 298.689117432 299.278808594 299.739807129 300.160125732 300.422515869 300.39151001 300.336791992 300.294769287 300.153381348 300.225799561 300.419189453 300.164001465 300.008422852 299.695251465 299.837280273 298.750183105 296.92755127 295.955047607 293.788391113 292.858856201 291.513427734 290.293426514 288.725158691 287.436004639 285.835906982 284.566589355 283.655853271 283.129669189 283.078369141 282.992706299 282.993438721 282.154998779 280.814971924 279.881317139 280.599182129 283.441497803 284.511108398 284.062072754 282.742095947 280.569793701 277.023956299 276.037200928 276.523864746 277.404785156 278.070159912 278.432403564 278.633666992 278.750671387 278.841522217 278.724334717 278.040802002 276.971588135 276.050018311 276.30581665 277.217071533 277.360168457 276.457275391 275.279541016 274.239349365 273.406097412 272.594421387 271.670379639 270.473083496 268.438690186 264.897277832 258.687591553 253.925521851 250.169586182 248.305267334 246.137145996 244.203659058 242.561599731 241.653625488 223.571640015 225.396255493 227.213912964 228.007659912 229.749816895 231.96446228 233.5181427 234.361160278 234.691268921 234.141799927 235.623641968 241.891693115 248.710617065 255.506729126 262.609954834 269.644958496 272.105499268 272.414642334 272.64666748 272.97958374 273.152648926 273.484100342 273.779510498 273.931060791 274.294891357 274.923583984 275.917999268 277.271636963 278.77645874 280.193725586 281.366851807 282.497070312 283.687469482 284.875915527 286.115814209 287.36416626 288.731414795 290.098693848 291.064239502 291.876800537 292.651306152 293.214569092 293.594543457 293.88381958 294.04574585 294.102752686 294.180084229 294.301239014 294.480743408 294.854095459 295.493743896 296.24005127 297.058013916 297.899139404 298.752502441 299.552337646 300.118835449 300.361114502 300.350006104 300.13470459 300.029876709 300.281494141 300.63381958 300.742950439 300.712219238 300.745941162 300.622619629 300.120666504 299.304656982 298.730560303 299.702148438 300.742401123 301.218902588 299.385253906 298.515167236 297.371887207 296.166015625 294.392700195 292.877166748 291.353912354 290.264129639 289.24395752 288.248718262 287.819366455 287.292572021 287.506958008 286.78616333 285.24508667 283.889923096 283.758026123 284.91394043 285.43258667 284.885742188 283.485992432 281.308502197 277.592681885 276.295318604 276.539642334 277.331054688 277.672821045 277.579986572 277.617523193 277.619873047 277.672058105 277.591186523 276.904998779 275.850280762 275.141662598 275.326599121 276.366516113 277.204315186 277.165039062 276.719970703 276.322052002 275.787597656 274.915710449 273.911743164 272.744628906 270.582824707 266.849151611 260.142028809 254.973526001 251.581420898 248.164916992 245.585922241 244.101119995 243.298248291 241.421829224 245.99130249 246.78237915 247.498550415 248.426010132 249.962478638 251.057357788 251.314559937 250.995605469 250.600128174 250.112243652 250.499786377 253.732070923 259.241546631 265.985687256 269.87689209 271.839599609 272.150939941 272.058563232 272.222442627 272.34765625 272.535430908 273.036224365 273.511291504 273.753845215 273.875457764 274.294189453 275.272247314 276.402679443 277.526428223 278.700134277 279.836669922 281.055938721 282.34979248 283.613555908 284.818389893 285.90927124 287.144836426 288.591125488 289.821411133 290.887359619 291.889526367 292.645782471 293.165039062 293.499053955 293.627868652 293.60357666 293.608551025 293.708099365 293.877716064 294.211761475 294.791046143 295.471435547 296.056976318 296.567810059 297.197296143 297.989471436 298.697662354 299.237457275 299.723083496 299.889038086 299.724822998 299.685668945 299.817382812 299.861114502 300.022918701 300.239318848 300.038085938 299.190856934 298.667236328 299.938751221 299.243621826 297.773162842 296.546508789 294.780212402 293.664794922 292.399017334 291.276245117 290.034606934 288.494445801 286.606323242 284.978607178 283.955108643 284.430969238 284.463043213 283.571380615 282.831726074 282.50112915 281.219482422 280.162963867 280.493560791 283.494415283 284.678527832 284.155975342 282.944366455 280.608764648 276.200286865 274.026702881 274.236785889 274.988708496 275.384857178 276.061065674 276.881958008 277.894439697 278.253265381 278.054626465 276.998657227 275.100311279 273.28237915 274.626708984 276.525421143 277.576751709 277.44342041 276.512268066 275.24597168 273.89163208 272.432525635 270.729736328 268.795562744 266.587341309 263.243896484 258.064086914 249.007003784 246.640701294 245.514358521 244.32484436 242.725601196 241.149993896 239.793395996 235.359863281 236.370132446 237.287353516 237.89932251 239.122558594 240.44152832 240.891021729 240.621139526 240.20880127 239.778289795 240.990447998 245.467926025 251.580841064 258.088623047 264.524902344 270.326171875 271.916900635 272.351257324 272.540435791 272.507659912 272.496154785 272.831268311 273.272613525 273.607299805 273.934020996 274.451171875 275.412322998 276.607086182 277.821350098 279.14831543 280.433380127 281.664642334 282.894805908 284.176300049 285.446685791 286.674438477 288.089294434 289.649871826 290.812652588 291.788299561 292.710510254 293.287567139 293.612487793 293.876251221 293.997070312 294.000488281 294.100708008 294.288238525 294.513153076 294.941314697 295.607513428 296.250091553 296.878326416 297.48739624 298.087249756 298.753295898 299.402923584 299.914306641 300.334472656 300.486755371 300.357208252 300.316101074 300.301940918 300.161376953 300.267669678 300.398101807 299.926849365 298.905273438 298.627441406 299.674285889 298.493927002 296.552246094 295.235076904 293.413391113 292.26574707 291.06451416 289.820739746 288.411437988 286.824707031 284.675292969 282.506225586 281.18081665 281.511108398 281.97479248 282.190643311 282.590484619 282.887054443 281.842987061 280.738494873 280.87298584 283.064849854 284.158905029 284.037536621 283.040100098 280.810180664 276.715209961 274.930206299 275.140686035 276.19732666 277.261810303 277.774017334 278.110656738 278.412109375 278.533569336 278.216644287 277.212097168 275.555328369 273.668365479 274.531616211 276.254730225 276.996826172 276.503936768 275.408935547 274.383087158 273.529754639 272.705596924 271.756164551 270.562103271 268.662445068 265.2237854 259.803649902 253.999404907 250.357498169 248.621337891 246.325073242 244.285110474 242.614181519 241.667922974 223.516433716 225.18510437 226.975570679 227.713119507 229.469772339 231.647277832 232.96005249 233.734970093 234.026809692 233.119537354 234.255905151 240.966217041 248.194107056 255.124526978 261.927947998 269.271209717 272.004333496 272.387298584 272.580627441 272.917755127 273.099029541 273.402282715 273.689727783 273.875366211 274.279663086 274.923583984 275.96081543 277.301452637 278.711517334 280.099822998 281.260559082 282.398101807 283.534240723 284.659576416 285.913421631 287.251739502 288.713470459 290.133850098 291.106445312 291.921112061 292.686035156 293.18157959 293.482971191 293.726959229 293.84552002 293.86907959 293.977264404 294.157226562 294.400665283 294.869384766 295.598449707 296.420776367 297.268280029 298.066162109 298.877441406 299.664245605 300.241943359 300.476226807 300.41293335 300.144592285 300.029632568 300.303833008 300.653900146 300.733276367 300.671112061 300.613647461 300.387237549 299.569030762 298.878540039 299.651794434 300.347076416 300.579589844 300.308532715 298.975067139 297.925933838 296.77734375 295.549346924 294.092315674 292.286804199 290.230133057 288.275604248 286.843292236 286.826507568 286.769165039 286.401947021 286.745147705 287.158569336 285.772857666 284.120635986 283.609863281 284.542785645 285.116241455 284.768005371 283.534667969 281.283813477 277.130310059 275.126861572 274.934417725 275.850128174 276.705505371 277.053375244 277.17477417 277.261810303 277.341156006 277.105194092 276.06439209 274.482055664 272.972839355 273.634216309 275.295593262 276.718139648 277.081451416 276.764251709 276.469024658 276.038299561 275.244720459 274.253662109 273.060974121 271.059417725 267.369537354 261.57019043 255.057373047 251.820053101 248.447967529 245.811676025 244.217498779 243.368438721 241.467254639 245.962524414 246.712127686 247.388534546 248.271560669 249.822174072 250.851074219 251.113998413 250.84161377 250.332229614 249.696578979 249.980361938 253.278747559 258.854705811 265.685974121 269.765808105 271.833404541 272.196929932 272.076477051 272.222503662 272.340911865 272.533874512 273.02154541 273.47467041 273.709289551 273.8934021 274.327453613 275.29473877 276.405517578 277.475128174 278.610443115 279.756103516 281.014068604 282.273376465 283.493591309 284.719421387 285.862335205 287.145843506 288.69329834 290.028900146 291.137451172 292.042419434 292.638366699 293.016387939 293.296661377 293.449798584 293.461578369 293.471557617 293.500244141 293.619750977 294.085693359 294.980133057 295.946746826 296.714538574 297.258972168 297.7605896 298.366516113 298.993408203 299.516845703 299.89276123 299.981719971 299.908599854 299.915985107 299.947906494 299.95602417 300.127410889 300.151306152 299.810913086 298.678710938 299.867523193 300.073883057 298.783508301 296.842926025 294.945861816 293.554718018 292.724578857 291.771057129 290.600921631 289.208709717 288.22442627 286.086486816 283.597442627 282.683776855 283.087371826 283.407501221 283.735839844 283.035522461 282.301208496 281.253845215 280.669342041 280.686981201 283.29309082 284.490447998 284.018859863 282.995697021 280.860931396 276.560180664 273.577026367 273.341156006 273.705444336 274.605865479 275.368469238 276.17590332 277.239654541 277.622558594 277.321746826 275.817138672 272.5519104 270.984710693 272.15423584 275.370513916 277.000244141 277.257354736 276.528533936 275.334106445 274.060791016 272.631347656 270.900909424 268.998962402 266.629272461 263.313690186 258.254272461 250.047729492 246.778289795 245.526596069 244.207229614 242.721725464 241.095657349 239.794311523 235.28616333 236.270904541 237.117294312 237.705200195 238.877914429 240.121170044 240.509597778 240.278167725 239.814498901 239.23638916 240.360794067 244.960647583 251.203613281 257.865936279 264.254302979 270.27432251 271.915008545 272.335449219 272.510284424 272.468292236 272.4402771 272.756744385 273.202514648 273.550018311 273.910522461 274.453430176 275.429382324 276.628662109 277.78527832 279.052856445 280.356109619 281.650543213 282.885131836 284.093017578 285.3175354 286.585906982 288.076599121 289.730651855 290.970092773 291.960021973 292.753356934 293.201538086 293.481567383 293.749755859 293.86807251 293.853149414 293.911895752 294.04473877 294.268829346 294.903625488 295.894287109 296.827911377 297.622131348 298.226989746 298.659881592 299.128448486 299.668395996 300.141815186 300.507568359 300.638305664 300.487518311 300.360687256 300.284759521 300.210632324 300.307312012 300.215576172 299.639526367 298.128814697 299.698974609 299.799560547 298.037658691 295.793762207 293.826690674 292.280426025 291.387481689 290.655914307 289.331451416 287.729217529 286.662658691 284.233398438 281.220489502 280.112518311 280.374938965 280.887207031 282.128112793 282.379699707 282.478729248 281.944976807 281.309570312 281.211029053 282.902923584 283.918457031 283.951446533 283.199768066 281.149749756 276.817352295 274.218353271 273.934051514 275.140411377 276.402801514 277.144561768 277.526611328 277.993255615 278.098236084 277.65536499 276.371551514 273.602172852 271.68963623 272.336517334 274.960449219 276.306396484 276.30267334 275.45880127 274.448303223 273.606170654 272.76385498 271.770080566 270.581665039 268.640197754 265.437286377 260.274230957 255.486984253 250.80065918 248.700973511 246.539413452 244.374176025 242.650115967 241.686096191 223.440612793 225.03112793 226.744598389 227.496414185 229.212982178 231.269546509 232.459869385 233.159698486 233.353530884 232.11505127 232.985214233 240.169631958 247.756851196 254.777587891 261.274902344 268.888031006 271.893493652 272.362030029 272.509185791 272.841674805 273.053375244 273.344970703 273.624359131 273.837677002 274.2706604 274.927856445 275.970336914 277.277832031 278.606384277 279.939056396 281.102416992 282.274047852 283.364105225 284.432342529 285.737243652 287.188140869 288.676971436 290.092102051 291.110412598 291.961029053 292.675140381 293.107086182 293.371032715 293.587127686 293.69744873 293.761291504 293.93572998 294.154663086 294.442382812 295.050201416 295.985748291 297.010498047 297.956726074 298.703369141 299.317901611 299.863952637 300.232055664 300.314331055 300.269226074 300.223846436 300.268676758 300.405517578 300.543762207 300.573730469 300.560058594 300.423217773 300.0703125 299.085540771 300.117614746 300.827148438 300.770599365 299.841064453 298.815307617 297.793884277 297.073150635 296.205322266 294.879821777 293.299926758 292.153686523 289.823669434 286.914520264 285.6902771 285.604309082 285.632598877 286.260009766 286.269714355 286.209136963 285.222015381 284.190856934 283.382720947 284.204742432 284.673461914 284.404571533 283.434387207 281.381835938 277.220092773 274.364105225 273.486175537 274.336639404 275.624633789 276.447753906 276.515014648 276.817749023 276.87677002 276.512145996 275.189086914 272.53024292 270.793914795 271.436828613 274.138397217 276.040588379 276.810638428 276.737548828 276.571472168 276.258392334 275.525299072 274.501861572 273.309906006 271.22442627 267.762176514 262.048522949 256.176208496 252.453903198 248.537216187 246.044067383 244.366241455 243.419403076 241.5206604 245.930801392 246.644561768 247.287582397 248.144500732 249.608169556 250.666595459 250.928359985 250.601501465 250.036956787 249.272735596 249.559921265 252.895172119 258.514526367 265.404846191 269.654205322 271.810180664 272.21673584 272.084899902 272.204559326 272.327056885 272.528594971 272.98840332 273.416870117 273.657073975 273.915679932 274.372497559 275.313415527 276.394622803 277.422424316 278.526855469 279.67276001 280.943084717 282.175750732 283.378356934 284.662994385 285.883666992 287.211486816 288.831878662 290.239135742 291.311340332 292.050842285 292.53692627 292.912078857 293.227478027 293.390472412 293.378234863 293.358581543 293.382629395 293.606018066 294.385101318 295.6534729 296.833862305 297.710968018 298.304199219 298.695495605 299.063110352 299.4921875 299.857940674 300.053192139 300.101898193 300.065002441 299.980102539 299.861175537 299.818084717 299.767669678 299.430633545 299.134399414 298.449523926 299.080352783 299.202789307 298.080627441 296.40612793 294.24395752 292.869781494 292.123657227 290.910217285 290.398620605 289.046600342 287.42565918 284.569915771 282.810791016 282.065765381 282.377929688 283.099914551 283.425689697 282.810302734 282.23928833 281.652435303 281.722106934 281.486206055 283.276184082 284.252258301 283.246429443 282.360992432 280.882171631 277.615844727 273.624664307 272.700683594 272.899169922 274.046051025 274.864898682 275.667999268 276.53112793 276.785522461 276.271331787 275.213104248 271.886199951 269.919464111 270.231140137 274.068237305 276.022521973 276.650939941 276.246917725 275.266204834 274.109802246 272.76083374 271.048339844 269.027069092 266.544921875 263.117156982 258.140228271 249.942138672 246.789260864 245.450790405 244.16317749 242.645828247 241.026306152 239.79385376 235.213241577 236.155609131 236.985824585 237.540405273 238.676391602 239.843093872 240.142959595 239.921234131 239.409500122 238.767181396 239.792144775 244.443603516 250.942657471 257.771118164 264.071868896 270.185821533 271.888641357 272.315002441 272.481170654 272.445587158 272.424224854 272.73260498 273.16192627 273.507781982 273.897521973 274.469268799 275.4480896 276.631896973 277.747070312 278.962036133 280.277740479 281.625701904 282.854034424 283.988922119 285.212371826 286.554046631 288.087585449 289.750610352 291.015869141 291.96862793 292.665496826 293.120727539 293.472595215 293.725921631 293.754730225 293.65725708 293.703491211 293.91217041 294.345916748 295.316040039 296.601531982 297.705413818 298.560638428 299.15637207 299.488555908 299.786010742 300.151702881 300.459655762 300.698760986 300.760070801 300.523681641 300.227081299 300.091552734 300.077850342 300.048095703 299.741088867 299.310638428 298.674682617 298.870697021 298.758972168 297.302185059 295.476348877 293.316986084 291.766052246 290.826934814 289.813873291 289.179626465 287.626434326 285.92980957 282.979003906 280.727325439 279.737640381 280.067016602 280.911254883 281.711853027 281.923248291 282.15725708 282.136077881 282.167144775 281.825378418 283.098205566 283.885894775 283.510925293 282.860809326 281.295898438 277.954620361 274.094238281 273.250091553 274.263977051 275.765106201 276.717926025 277.102752686 277.529205322 277.594238281 276.968994141 275.867004395 272.865661621 270.616638184 270.570800781 273.45703125 275.149810791 275.718505859 275.258911133 274.381378174 273.589263916 272.771820068 271.740722656 270.465484619 268.501190186 265.420837402 260.830688477 255.430618286 250.817855835 248.930114746 246.625778198 244.408462524 242.675628662 241.703491211 223.343780518 224.846725464 226.511230469 227.214019775 228.972930908 230.961517334 232.010879517 232.524093628 232.663726807 231.192871094 231.807250977 239.339096069 247.328720093 254.473373413 260.683898926 268.509887695 271.779968262 272.343963623 272.444335938 272.765136719 273.00869751 273.301239014 273.568664551 273.797454834 274.254150391 274.930541992 275.964080811 277.226043701 278.501434326 279.762176514 280.929656982 282.118377686 283.1640625 284.183105469 285.548919678 287.097869873 288.590362549 290.022979736 291.134216309 292.004150391 292.655212402 293.085540771 293.375854492 293.56439209 293.64956665 293.781005859 294.055175781 294.401611328 294.884979248 295.790405273 296.980987549 298.101104736 298.970550537 299.540466309 299.931243896 300.238220215 300.37902832 300.322143555 300.344573975 300.452148438 300.460113525 300.334960938 300.289733887 300.397338867 300.493713379 300.352050781 300.039825439 299.693756104 300.200469971 300.88583374 300.569580078 300.037384033 298.284790039 297.093780518 296.456939697 295.191497803 294.536346436 293.112548828 291.183624268 288.129089355 286.192871094 285.053253174 284.952331543 285.429901123 285.863891602 285.680267334 285.593444824 285.0965271 284.881195068 283.763122559 283.865600586 284.215270996 283.729522705 282.81036377 281.331329346 278.092041016 274.120788574 272.689361572 273.14932251 274.548187256 275.839172363 276.166412354 276.384887695 276.360687256 275.82019043 274.58392334 271.609710693 269.606994629 269.842071533 272.959442139 275.079620361 276.236663818 276.527435303 276.539733887 276.368652344 275.74118042 274.71697998 273.381866455 271.279174805 267.864715576 262.572296143 256.110748291 252.490219116 248.827301025 246.112640381 244.485748291 243.495697021 241.571517944 245.899856567 246.569625854 247.189117432 248.009140015 249.436828613 250.464736938 250.747497559 250.419113159 249.719970703 248.826980591 249.200241089 252.553741455 258.210113525 265.208312988 269.531738281 271.774749756 272.220306396 272.085388184 272.177459717 272.308258057 272.515197754 272.934783936 273.338226318 273.598693848 273.931304932 274.414733887 275.306060791 276.368682861 277.383758545 278.483306885 279.613677979 280.849151611 282.045471191 283.245849609 284.610565186 285.929016113 287.30847168 288.960571289 290.388031006 291.371551514 291.999969482 292.523468018 293.012268066 293.318084717 293.349395752 293.247589111 293.292938232 293.537475586 294.084686279 295.28894043 296.751312256 297.84664917 298.576934814 299.146118164 299.52456665 299.739074707 299.955474854 300.129364014 300.16809082 300.136688232 299.969085693 299.712036133 298.58694458 298.725372314 298.408508301 297.602355957 297.704284668 298.356506348 299.309326172 298.505859375 297.265777588 296.033538818 294.597320557 293.469970703 291.80368042 290.496002197 288.838012695 287.614868164 286.448486328 284.302032471 282.59765625 282.053070068 282.135406494 282.528686523 282.758972168 282.535614014 282.312042236 282.72076416 282.411560059 282.264038086 283.859802246 284.177368164 283.003997803 282.227386475 280.86340332 277.912231445 273.897186279 272.534240723 272.517211914 273.712524414 274.567718506 275.304992676 275.575714111 275.547058105 275.278747559 274.599334717 271.828186035 269.444549561 269.373962402 272.385223389 274.649841309 275.625610352 275.548156738 274.925231934 274.045776367 272.838989258 271.150543213 269.018859863 266.270568848 262.656433105 257.870147705 249.551086426 246.749603271 245.340591431 244.102706909 242.576004028 241.014175415 239.791900635 235.16809082 236.034515381 236.826141357 237.357086182 238.446380615 239.58656311 239.800064087 239.551467896 239.013687134 238.405273438 239.256057739 244.257629395 250.760467529 257.846221924 263.869506836 270.057128906 271.83682251 272.28125 272.453521729 272.441802979 272.44644165 272.750854492 273.151275635 273.48336792 273.898284912 274.488372803 275.450714111 276.618713379 277.728973389 278.927825928 280.234802246 281.588165283 282.785491943 283.866119385 285.1328125 286.55960083 288.088653564 289.69140625 290.961730957 291.903747559 292.610137939 293.178009033 293.593170166 293.69934082 293.561218262 293.500976562 293.732727051 294.235168457 295.083557129 296.379119873 297.711730957 298.673309326 299.322937012 299.832000732 300.206726074 300.505187988 300.740509033 300.827056885 300.83984375 300.684265137 300.251831055 299.865234375 298.789672852 299.205474854 299.394165039 298.83203125 298.890075684 298.702819824 299.231842041 297.838684082 296.351348877 295.13873291 293.623901367 292.394348145 290.553955078 289.396606445 287.750946045 286.335601807 285.022613525 282.848632812 280.855804443 280.06652832 280.14553833 280.651672363 281.13458252 281.619842529 282.149078369 282.815917969 282.792144775 282.566894531 283.691040039 283.99005127 283.447509766 282.910980225 281.416595459 278.323455811 274.263122559 273.013366699 273.717712402 275.302032471 276.406005859 276.797424316 276.918548584 276.790313721 276.24130249 275.32232666 272.608856201 270.041503906 269.566253662 271.528686523 273.509674072 274.638092041 274.669067383 274.07409668 273.46887207 272.731567383 271.660919189 270.267333984 268.210266113 265.202301025 260.940002441 255.808761597 250.970413208 249.325912476 246.717193604 244.421401978 242.717788696 241.720199585 223.251174927 224.618682861 226.247558594 226.982940674 228.735870361 230.650604248 231.526016235 231.940307617 231.96484375 230.235061646 230.710952759 238.611114502 246.96786499 254.190841675 260.132995605 268.126190186 271.653686523 272.326690674 272.392669678 272.697875977 272.969146729 273.264678955 273.520751953 273.751342773 274.221343994 274.916809082 275.933197021 277.163696289 278.420196533 279.62991333 280.78036499 281.940155029 282.938079834 283.926483154 285.366027832 286.996185303 288.48840332 289.98828125 291.207946777 292.098419189 292.7371521 293.213928223 293.498687744 293.57043457 293.649505615 293.931427002 294.4324646 295.067871094 295.896942139 297.044586182 298.272613525 299.218200684 299.808044434 300.185455322 300.500640869 300.737457275 300.769226074 300.625427246 300.580657959 300.533874512 300.248748779 299.958953857 298.938415527 299.591400146 299.9453125 300.123687744 300.059967041 300.638702393 301.08605957 300.507263184 300.102935791 299.933807373 298.632080078 297.46282959 296.06048584 294.65045166 292.825042725 291.415252686 289.921508789 287.680358887 285.89352417 285.072387695 284.77633667 284.996612549 285.185028076 285.237060547 285.186218262 285.644134521 284.980987549 283.924835205 283.895721436 283.894439697 283.164611816 282.50289917 281.130096436 278.125854492 274.014648438 272.183380127 272.477020264 273.815155029 275.19921875 275.902130127 275.864776611 275.588348389 275.065368652 273.982055664 271.318359375 269.007629395 268.947357178 271.551055908 273.808959961 275.327178955 275.993652344 276.290496826 276.33694458 275.873565674 274.862640381 273.398101807 271.109741211 267.780487061 262.826080322 256.428253174 252.714538574 249.460845947 246.273651123 244.580947876 243.561981201 241.620498657 245.867630005 246.497360229 247.086654663 247.88923645 249.300140381 250.291702271 250.574890137 250.225112915 249.399215698 248.448486328 248.836303711 252.297103882 258.041748047 265.122619629 269.483612061 271.717803955 272.199401855 272.06350708 272.134643555 272.283813477 272.497039795 272.871307373 273.256958008 273.55368042 273.937469482 274.439758301 275.255371094 276.315368652 277.358184814 278.488525391 279.576904297 280.723754883 281.871917725 283.091522217 284.547149658 285.986816406 287.428588867 289.080963135 290.474029541 291.432342529 292.158569336 292.831420898 293.296539307 293.31640625 293.081298828 293.135284424 293.67565918 294.467803955 295.464538574 296.614654541 297.643096924 298.208953857 298.509460449 298.903411865 299.343444824 299.614624023 299.818328857 299.978179932 299.997436523 299.854370117 299.335632324 297.796844482 298.316497803 299.750091553 299.096862793 297.560913086 297.384246826 298.232116699 298.676513672 298.359436035 297.274414062 296.020050049 293.926391602 293.513763428 291.843200684 290.729034424 288.991821289 287.767059326 286.632568359 284.640899658 283.005004883 281.557434082 281.279541016 281.689575195 282.213348389 282.019561768 282.038574219 283.54675293 284.536621094 284.335083008 284.713470459 284.219940186 283.279083252 282.15814209 280.126739502 277.130432129 274.444458008 272.725921631 272.375183105 273.472198486 274.331726074 274.853546143 275.106262207 274.873382568 274.426300049 273.849853516 271.469024658 269.206878662 268.841156006 269.999511719 273.056304932 274.205749512 274.560668945 274.290496826 273.811523438 272.854888916 271.21307373 268.913787842 265.881774902 262.053436279 256.513763428 249.128128052 246.651245117 245.325958252 243.956130981 242.549484253 241.01651001 239.788467407 235.146408081 235.920501709 236.679946899 237.246627808 238.241821289 239.298629761 239.486068726 239.202941895 238.643356323 237.964096069 238.792007446 243.969314575 250.626190186 258.286987305 263.476745605 269.875946045 271.752441406 272.224975586 272.432312012 272.470916748 272.523803711 272.818328857 273.176757812 273.491119385 273.926940918 274.515045166 275.424591064 276.577728271 277.729522705 278.974700928 280.243560791 281.526885986 282.668823242 283.738189697 285.082489014 286.610931396 288.123291016 289.657653809 290.95602417 291.987182617 292.789764404 293.384185791 293.593353271 293.370513916 293.320587158 293.765899658 294.44708252 295.271728516 296.25378418 297.368621826 298.336486816 298.940795898 299.197967529 299.494415283 300.004241943 300.505493164 300.774383545 300.760681152 300.591796875 300.23260498 299.518280029 298.047302246 299.23626709 300.839996338 300.74230957 299.921234131 299.925415039 299.214172363 298.669036865 297.696289062 296.429229736 295.078094482 293.046539307 292.520324707 290.75769043 289.650421143 288.027740479 286.780822754 285.391265869 283.315795898 281.463653564 279.808532715 279.66506958 280.135528564 280.863220215 281.085144043 281.803833008 283.442840576 284.370025635 284.275360107 284.391052246 284.122253418 283.65725708 282.810791016 280.426818848 277.160003662 274.645843506 273.145904541 273.517120361 274.979705811 276.21182251 276.613555908 276.588104248 276.296783447 275.526000977 274.758483887 272.227539062 269.786376953 268.825622559 269.218719482 271.625091553 272.96081543 273.636810303 273.444580078 273.176757812 272.636322021 271.532531738 269.993011475 267.81729126 264.824981689 260.173309326 256.063995361 251.21913147 249.419937134 246.893341064 244.483779907 242.762084961 241.73651123 223.177490234 224.439910889 226.016723633 226.731124878 228.493225098 230.384216309 231.067718506 231.368347168 231.237670898 229.338607788 229.781723022 237.985076904 246.631851196 253.945114136 259.511871338 267.706665039 271.492523193 272.304351807 272.368865967 272.650787354 272.934295654 273.229614258 273.485534668 273.712310791 274.16708374 274.867218018 275.8644104 277.089569092 278.352630615 279.560852051 280.657409668 281.737823486 282.69631958 283.70223999 285.238983154 286.968780518 288.548675537 290.179870605 291.473205566 292.392456055 293.060241699 293.494842529 293.55090332 293.474029541 293.796508789 294.542816162 295.558563232 296.602844238 297.500640869 298.23626709 298.820587158 299.19052124 299.42980957 299.737335205 300.244903564 300.664794922 300.78894043 300.657684326 300.415008545 300.017578125 299.43548584 298.314666748 299.819030762 301.789886475 302.303100586 301.545806885 301.277557373 301.137756348 301.1065979 300.741455078 300.504516602 299.798706055 298.081237793 297.590789795 296.12612915 294.914367676 293.131866455 291.687561035 290.146789551 287.998504639 286.189208984 284.366577148 284.004730225 284.300598145 284.651306152 284.508544922 284.50769043 285.070587158 285.16494751 284.484893799 284.147705078 283.719512939 283.125030518 282.155334473 279.803497314 276.838684082 273.960784912 271.981811523 272.246826172 273.607269287 274.919372559 275.742950439 275.640960693 275.237365723 274.387664795 273.459991455 271.064575195 268.903686523 268.447387695 269.849639893 272.352203369 273.856170654 275.111999512 275.77532959 276.106201172 275.90045166 274.936553955 273.293212891 270.823669434 267.501220703 261.98727417 256.557098389 253.09324646 249.600738525 246.566421509 244.715148926 243.622741699 241.667816162 245.842926025 246.430343628 246.992782593 247.757171631 249.148498535 250.161682129 250.369171143 250.022277832 249.057327271 248.086624146 248.521957397 252.128479004 257.9609375 264.835998535 269.516113281 271.646026611 272.144958496 272.016448975 272.082946777 272.254241943 272.473327637 272.81350708 273.19052124 273.552520752 273.953857422 274.435638428 275.190093994 276.241149902 277.325134277 278.487670898 279.536346436 280.604522705 281.741760254 283.012939453 284.549407959 286.108398438 287.639556885 289.300567627 290.6590271 291.695800781 292.534729004 293.124084473 293.285675049 293.077056885 293.223724365 294.365631104 295.537231445 296.406860352 296.906402588 297.304046631 297.417449951 296.734008789 296.425476074 297.198242188 297.90447998 298.226837158 298.688537598 299.062103271 299.077728271 298.772369385 297.626190186 297.869476318 298.177856445 299.560058594 299.330596924 297.65435791 297.714752197 297.529510498 298.426879883 297.545501709 296.911376953 296.058990479 294.286254883 293.236175537 292.752990723 291.146911621 289.429962158 288.171661377 286.88684082 284.890930176 283.222717285 281.768371582 281.325317383 281.404754639 282.015441895 281.857025146 282.217834473 284.504943848 285.83392334 285.465637207 284.821289062 284.065765381 282.866882324 281.330780029 279.301177979 277.584625244 274.955841064 273.161071777 272.68572998 273.490234375 274.306854248 274.673919678 275.036254883 274.85055542 274.079223633 272.945617676 271.035552979 268.998901367 268.425140381 268.852416992 270.183624268 272.402923584 273.315490723 273.483581543 273.407531738 272.807678223 271.284881592 268.800750732 265.402648926 261.220550537 252.677688599 248.93270874 246.639892578 245.33442688 243.746841431 242.508270264 241.013061523 239.783660889 235.144668579 235.756561279 236.520980835 237.044570923 238.010253906 239.028411865 239.198928833 238.924194336 238.24887085 237.419540405 238.420455933 243.654983521 250.563110352 257.98815918 262.995605469 269.717254639 271.655700684 272.15612793 272.40725708 272.513793945 272.612457275 272.897796631 273.234008789 273.55557251 273.995117188 274.559753418 275.400817871 276.525238037 277.732391357 279.035858154 280.257385254 281.44833374 282.561981201 283.672515869 285.106262207 286.745574951 288.331481934 289.90020752 291.228668213 292.304351807 293.024230957 293.356506348 293.257324219 293.161376953 293.920532227 295.125244141 295.989044189 296.366027832 296.505096436 297.01763916 297.476196289 297.18170166 297.095275879 297.701812744 298.373657227 298.797363281 299.324249268 299.580200195 299.490478516 299.033599854 298.035186768 298.74118042 299.893005371 300.898620605 301.311584473 300.636016846 299.810180664 298.915100098 298.620056152 297.060455322 296.227111816 295.108520508 293.248962402 292.304595947 291.811462402 290.138153076 288.59274292 287.468933105 285.910430908 283.767120361 281.878387451 280.236572266 279.869720459 280.153839111 280.905578613 280.905609131 281.756530762 284.106140137 285.350524902 285.105041504 284.594177246 284.088287354 283.337799072 281.997558594 279.374664307 277.699401855 275.009185791 273.471466064 273.644226074 274.800689697 275.949645996 276.398376465 276.296447754 276.018615723 275.3800354 274.095062256 271.654846191 269.514312744 268.20690918 267.508575439 268.364868164 270.936706543 272.15222168 272.49508667 272.684814453 272.485168457 271.386566162 269.664276123 267.33480835 264.229187012 257.719146729 255.87272644 251.191268921 249.452545166 247.091049194 244.553131104 242.802825928 241.753677368 223.065658569 224.248062134 225.751159668 226.493896484 228.275115967 230.10836792 230.590026855 230.744110107 230.475616455 228.372177124 228.967376709 237.527572632 246.438522339 253.351470947 258.873199463 267.362365723 271.326568604 272.276123047 272.381317139 272.650024414 272.917510986 273.206848145 273.489135742 273.729156494 274.132415771 274.806488037 275.792755127 277.013549805 278.282104492 279.514892578 280.553741455 281.553894043 282.513061523 283.597076416 285.231658936 287.107177734 288.915771484 290.667419434 291.955810547 292.833343506 293.387359619 293.557098389 293.332183838 293.480194092 294.467254639 295.849822998 297.117919922 298.002471924 298.347991943 298.213439941 297.800048828 296.868225098 296.65927124 297.718078613 298.589294434 299.053741455 299.458618164 299.564727783 299.327880859 298.805267334 297.714172363 299.704803467 301.709259033 302.906768799 303.520172119 303.045227051 301.964202881 301.043884277 301.300720215 300.906036377 300.621551514 299.83404541 298.3152771 297.202911377 296.922912598 295.453338623 293.737762451 292.178588867 290.540405273 288.326934814 286.220153809 284.481109619 284.017852783 283.870544434 284.351776123 284.150054932 284.25869751 285.189544678 285.416503906 284.790405273 284.109893799 283.476593018 282.584564209 281.182983398 278.619171143 276.944488525 274.148712158 272.165039062 272.185058594 273.417358398 274.732269287 275.528930664 275.433227539 275.097625732 274.121063232 272.831237793 270.67401123 268.804199219 268.283355713 268.922393799 270.216064453 272.160125732 273.731689453 274.917938232 275.643310547 275.801757812 274.972900391 273.132263184 270.425109863 267.023284912 260.505065918 256.501373291 253.083999634 249.644317627 246.930114746 244.860443115 243.678817749 241.712646484 245.809631348 246.358093262 246.895019531 247.642211914 248.984008789 250.015625 250.187515259 249.764068604 248.706207275 247.739807129 248.237091064 251.998321533 257.925445557 264.193359375 269.566802979 271.581634521 272.069030762 271.943664551 272.016448975 272.208740234 272.429779053 272.758300781 273.147521973 273.574981689 273.980010986 274.422027588 275.136352539 276.162261963 277.269226074 278.446685791 279.473297119 280.497131348 281.664611816 283.009124756 284.631988525 286.318847656 288.003631592 289.680358887 290.998474121 292.05355835 292.879516602 293.331726074 293.409088135 293.361694336 294.440582275 296.511138916 297.664245605 297.997650146 297.685699463 296.781311035 296.47668457 295.377593994 294.749359131 294.347381592 294.749847412 296.362823486 297.031646729 297.083557129 297.137451172 297.176727295 297.438720703 297.572906494 297.617462158 297.334869385 296.910949707 297.163482666 297.321838379 298.55670166 298.48236084 297.503967285 297.181243896 296.203674316 295.675048828 292.254638672 292.133026123 291.434173584 289.852600098 288.364898682 286.78302002 284.815338135 283.20904541 282.015380859 281.630767822 281.929840088 282.058074951 282.260742188 282.943817139 285.606903076 286.254180908 285.598022461 283.840606689 283.624938965 282.45123291 280.50567627 279.302337646 277.935394287 275.419281006 273.80480957 273.151062012 273.436309814 274.173492432 274.53692627 274.978240967 275.132507324 273.9112854 272.591491699 270.896026611 268.965820312 268.310791016 268.287445068 267.94708252 269.230438232 271.86529541 272.573394775 272.88482666 272.686462402 271.30456543 268.70880127 264.836151123 259.217712402 251.246444702 248.157211304 246.605148315 245.18901062 243.645889282 242.438156128 241.003417969 239.777618408 235.008285522 235.677520752 236.412628174 236.879745483 237.832992554 238.76991272 238.864379883 238.542190552 237.839294434 236.972122192 238.071578979 243.723114014 250.649383545 257.141113281 262.685394287 269.620666504 271.572967529 272.080474854 272.374023438 272.552703857 272.692077637 272.968261719 273.299804688 273.654876709 274.091369629 274.617034912 275.396728516 276.483001709 277.719238281 279.050292969 280.232666016 281.358154297 282.487060547 283.65838623 285.173400879 286.935455322 288.695617676 290.320526123 291.624450684 292.617889404 293.168151855 293.305389404 293.262115479 293.72668457 295.256195068 296.809020996 297.402893066 297.127319336 296.293426514 295.337036133 295.064117432 294.966400146 294.7762146 294.584014893 294.639923096 296.437835693 297.08102417 297.339080811 297.553253174 297.890655518 298.158447266 298.424835205 298.512390137 298.545654297 298.714324951 299.438476562 299.030639648 299.270751953 298.646057129 297.286590576 296.718688965 295.388519287 294.618530273 291.358428955 291.365112305 290.62677002 289.164398193 287.81072998 286.018463135 283.909484863 282.116027832 280.678009033 280.322601318 280.920196533 281.063049316 281.255767822 282.341308594 285.113647461 285.820373535 285.320770264 284.003082275 283.867279053 283.034881592 280.976715088 279.603851318 278.162719727 275.475830078 274.095855713 273.986022949 274.761352539 275.712249756 276.179595947 276.148345947 275.966125488 275.097198486 273.953155518 271.56741333 269.394012451 268.22833252 266.994018555 265.315185547 267.626312256 270.413513184 271.386444092 272.064697266 272.27734375 271.212646484 269.349578857 266.727905273 262.68069458 257.038635254 255.709365845 251.387039185 249.620727539 247.173339844 244.636932373 242.841873169 241.771392822 222.873443604 224.034423828 225.518325806 226.23588562 228.022949219 229.8331604 230.229095459 230.125244141 229.660354614 227.542068481 228.344345093 237.207717896 246.293945312 252.350723267 258.366027832 267.093658447 271.160339355 272.235076904 272.407348633 272.67565918 272.916473389 273.196289062 273.525512695 273.79397583 274.131011963 274.748382568 275.723022461 276.923431396 278.184875488 279.43548584 280.434570312 281.386657715 282.383483887 283.547668457 285.262939453 287.32723999 289.399932861 291.231079102 292.462097168 293.19430542 293.507415771 293.388763428 293.112426758 293.753662109 295.265441895 296.835723877 297.78125 298.108551025 297.848449707 296.839508057 296.10458374 295.438751221 294.887756348 294.820068359 295.159881592 296.867523193 297.255310059 297.273223877 297.170898438 297.523681641 298.583740234 300.105621338 300.571624756 300.249420166 301.663696289 302.236633301 301.904663086 301.965301514 301.767730713 301.540100098 301.530273438 300.596130371 299.917388916 295.937133789 296.274658203 295.912811279 294.335754395 292.427398682 290.588104248 288.348999023 286.214111328 284.565124512 284.07623291 284.242218018 284.266174316 284.37701416 284.583862305 285.588439941 285.558044434 284.804656982 283.562774658 283.069580078 282.118164062 280.068206787 278.819885254 277.324859619 274.539154053 272.660705566 272.403442383 273.333953857 274.408966064 275.243103027 275.294525146 275.103210449 273.987945557 272.819152832 271.027252197 269.097229004 268.300415039 268.568664551 268.615844727 269.742462158 272.038818359 273.672271729 274.895965576 275.557525635 274.935302734 272.955932617 269.876403809 265.71975708 259.852539062 256.522125244 253.30531311 250.066558838 247.054397583 245.038269043 243.735229492 241.757751465 245.777877808 246.285552979 246.802993774 247.52772522 248.809188843 249.867614746 250.011459351 249.50553894 248.370483398 247.387893677 248.053634644 251.899215698 257.919006348 264.323486328 269.517944336 271.507476807 271.971405029 271.842254639 271.935668945 272.15335083 272.366363525 272.691192627 273.110870361 273.60446167 274.001403809 274.403808594 275.098510742 276.09161377 277.194122314 278.371520996 279.391479492 280.40814209 281.625518799 283.044647217 284.751953125 286.610900879 288.499725342 290.174133301 291.43649292 292.436828613 293.235656738 293.657989502 294.046325684 294.460388184 297.299468994 299.427429199 299.306762695 298.741333008 297.523406982 296.810821533 296.503479004 295.2550354 293.938934326 292.953582764 292.90246582 294.083068848 295.508514404 296.24822998 295.91192627 295.874969482 296.357208252 296.812530518 297.034667969 296.710205078 296.42767334 296.929443359 298.045806885 298.311309814 299.192382812 297.753997803 298.23223877 298.19833374 295.967468262 293.866424561 292.988861084 291.589202881 290.100830078 288.222869873 286.05682373 284.4425354 282.776916504 282.456939697 282.374481201 282.042236328 282.127868652 282.871704102 284.704315186 286.570343018 286.305603027 285.485046387 284.122894287 283.051116943 281.81640625 279.907836914 279.509155273 277.70324707 275.540588379 274.341674805 273.734802246 273.688934326 274.061340332 274.268737793 275.06439209 275.492523193 274.197235107 272.664245605 271.043609619 269.556152344 268.354217529 267.645568848 267.253173828 266.778686523 268.691925049 271.389190674 272.317016602 272.479766846 271.338775635 268.578491211 264.170623779 255.569030762 250.60484314 247.986831665 246.535919189 245.137207031 243.662796021 242.319519043 240.988754272 239.776092529 235.032073975 235.556671143 236.222473145 236.700897217 237.624343872 238.516418457 238.54574585 238.137390137 237.388977051 236.490707397 237.836151123 243.730194092 250.730285645 257.251586914 262.709777832 269.596282959 271.508392334 272.000946045 272.333099365 272.586273193 272.767242432 273.028839111 273.366668701 273.77230835 274.20715332 274.687286377 275.412811279 276.475219727 277.700744629 279.025878906 280.179718018 281.270294189 282.433959961 283.673400879 285.253662109 287.177581787 289.141784668 290.805603027 292.027557373 292.879974365 293.326782227 293.46673584 293.772369385 294.549194336 296.738708496 298.022125244 297.721405029 297.123016357 295.962768555 295.260284424 294.886505127 294.198944092 293.612792969 292.933441162 292.848175049 293.898010254 295.516387939 296.857940674 297.099151611 296.667510986 297.069122314 297.322906494 297.451812744 297.443908691 297.801574707 298.050872803 298.634094238 298.453399658 299.292114258 297.93057251 297.861419678 297.56350708 295.080535889 292.953613281 292.236755371 291.056762695 289.686706543 287.848358154 285.546478271 283.741973877 281.941070557 281.590148926 281.420288086 281.279937744 281.399414062 282.08581543 284.092834473 285.964904785 285.935241699 285.28692627 284.258117676 283.467041016 282.403991699 280.163726807 279.809814453 277.804718018 275.478851318 274.577056885 274.380249023 274.813751221 275.463928223 275.897338867 276.055633545 276.062316895 275.174987793 273.99987793 271.941619873 270.189849854 268.827758789 266.637817383 264.330566406 264.686218262 267.313262939 270.085083008 271.451416016 272.021087646 271.062408447 268.997192383 265.861694336 259.415130615 256.693328857 255.592605591 251.593002319 249.762466431 247.214874268 244.744476318 242.8881073 241.793685913 222.791213989 223.911392212 225.28263855 226.024414062 227.849838257 229.591674805 229.801834106 229.469848633 228.801605225 226.641494751 227.844451904 237.059066772 246.166992188 252.374847412 258.218200684 266.897247314 270.993255615 272.173675537 272.436920166 272.720153809 272.934143066 273.19833374 273.580810547 273.892425537 274.162200928 274.704223633 275.656158447 276.826080322 278.069671631 279.326446533 280.312469482 281.251922607 282.305633545 283.537231445 285.330047607 287.61038208 289.903594971 291.781646729 292.875854492 293.344909668 293.37979126 293.068817139 293.001556396 294.003417969 295.559509277 296.392608643 296.396179199 296.582550049 295.976501465 295.799224854 296.526885986 295.812866211 294.166168213 293.440734863 293.480773926 294.058837891 295.205413818 295.784606934 296.373443604 296.767364502 297.414031982 298.262451172 298.488952637 298.082641602 298.423187256 300.470550537 301.743896484 301.576812744 302.586608887 302.156219482 302.748840332 302.860961914 300.70791626 298.357391357 297.447357178 296.247711182 294.773925781 292.499816895 290.038330078 288.166534424 285.963317871 285.175476074 284.911865234 284.549987793 284.534545898 284.813446045 285.603424072 286.061340332 285.56463623 284.718505859 283.572479248 282.505859375 281.395965576 279.207519531 278.99508667 277.108093262 274.521911621 273.24206543 272.801727295 273.39163208 274.153869629 274.757385254 275.083648682 275.140258789 274.19519043 272.982849121 271.586853027 269.832122803 268.714752197 268.47668457 267.950256348 267.904510498 269.424407959 272.252960205 274.035919189 275.167236328 274.877532959 272.725463867 269.120635986 263.265136719 259.682525635 256.414611816 253.584136963 250.368026733 247.090820312 245.295852661 243.799316406 241.816116333 245.743881226 246.223098755 246.708389282 247.406906128 248.664474487 249.67956543 249.814559937 249.263580322 248.021011353 247.053482056 247.860534668 251.940322876 257.989349365 264.380249023 269.485168457 271.427001953 271.832214355 271.698883057 271.838470459 272.085174561 272.292327881 272.592712402 273.052276611 273.616851807 274.018280029 274.393218994 275.089355469 276.051391602 277.111175537 278.271697998 279.300170898 280.335693359 281.606079102 283.081787109 284.87878418 286.995727539 289.086303711 290.767791748 291.954864502 292.85647583 293.688476562 294.407958984 295.601593018 298.149963379 300.733551025 299.996002197 298.507019043 296.902587891 296.310852051 296.389831543 296.449584961 295.14654541 294.138519287 292.920318604 292.549865723 293.754058838 294.507232666 295.419189453 295.734344482 295.389251709 295.704437256 296.102813721 296.55960083 296.824035645 296.833526611 297.397796631 297.723449707 298.940032959 300.232421875 299.433258057 299.267578125 298.990356445 296.427001953 295.063659668 293.412597656 291.922637939 290.280181885 288.152435303 285.464660645 282.942382812 282.010223389 282.3046875 282.546966553 281.572387695 282.282501221 283.427978516 286.218414307 286.817810059 286.224884033 285.388397217 284.434051514 282.658752441 280.692169189 280.15826416 279.076293945 276.538635254 275.502319336 274.702056885 274.104522705 273.95690918 273.704315186 273.76940918 274.705749512 275.719329834 275.062957764 273.769104004 271.294647217 269.787750244 269.038543701 267.598876953 266.784240723 265.997741699 265.948455811 269.925079346 271.668609619 272.220855713 271.314880371 268.505554199 262.560424805 254.853271484 250.181106567 247.998336792 246.519424438 245.142822266 243.639083862 242.165328979 240.962234497 239.775146484 234.984222412 235.393341064 236.090896606 236.551055908 237.453445435 238.240020752 238.203704834 237.774047852 236.950561523 236.017440796 237.620788574 243.598129272 250.925994873 257.501281738 262.945892334 269.675689697 271.469451904 271.91595459 272.282714844 272.609313965 272.834320068 273.081970215 273.42565918 273.898651123 274.342681885 274.777954102 275.46774292 276.524017334 277.701629639 278.98815918 280.119537354 281.197143555 282.399169922 283.703643799 285.358398438 287.509429932 289.66293335 291.338653564 292.419158936 293.091674805 293.569061279 293.846618652 294.679321289 296.107910156 297.162872314 296.831970215 295.789642334 295.653442383 295.739227295 295.631408691 295.489868164 294.484191895 293.706878662 292.696716309 292.357666016 293.333770752 294.925262451 296.709960938 297.159973145 296.305389404 296.295532227 296.430877686 296.592956543 296.917572021 297.553863525 298.296234131 298.296539307 299.073059082 300.580078125 299.883148193 299.113952637 298.662628174 295.933013916 294.349761963 292.810241699 291.585662842 290.097503662 288.085876465 285.286499023 282.551696777 281.410095215 281.729614258 282.066314697 281.408660889 282.113372803 283.202636719 285.560058594 286.234436035 285.852233887 285.20993042 284.541748047 283.083068848 281.130859375 280.591369629 279.264770508 276.364471436 275.398895264 274.822479248 274.643432617 274.879669189 275.161987305 275.447937012 275.797515869 276.055267334 275.567810059 274.607849121 272.560760498 270.801361084 269.825439453 266.739685059 264.206054688 263.978271484 264.428955078 268.593261719 270.821533203 271.748474121 270.902587891 268.602996826 264.382019043 258.529205322 256.240142822 255.478637695 251.550262451 249.774505615 247.251449585 244.786849976 242.941131592 241.81867981 222.75579834 223.699935913 225.050994873 225.802108765 227.650466919 229.360397339 229.29989624 228.865707397 227.928985596 225.785369873 227.463729858 236.972213745 246.104995728 252.549865723 258.191864014 266.776916504 270.816619873 272.078338623 272.456695557 272.779266357 272.976654053 273.216796875 273.64855957 274.014801025 274.231262207 274.685760498 275.603363037 276.742523193 277.957794189 279.207275391 280.203155518 281.163482666 282.297790527 283.620483398 285.528717041 288.05380249 290.485870361 292.311523438 293.121734619 293.122650146 292.877838135 292.542053223 292.793365479 293.665283203 294.588562012 294.716491699 294.331817627 294.274230957 294.952301025 295.691253662 296.843566895 295.835723877 294.611572266 293.196746826 292.783203125 293.009307861 294.037811279 295.584655762 296.476165771 296.432281494 296.500427246 296.977050781 297.37121582 297.531890869 297.742767334 299.335388184 300.928894043 301.827087402 303.292541504 303.450408936 303.568450928 303.534240723 301.575866699 300.25112915 298.29888916 296.676147461 295.001525879 292.71194458 289.693115234 286.831634521 285.408874512 285.321105957 285.473297119 284.78515625 284.803466797 285.284423828 286.244506836 286.081512451 285.431091309 284.588378906 283.613433838 282.106140137 280.197296143 279.390991211 278.273956299 275.735076904 274.523101807 273.647338867 273.200897217 273.41796875 273.803009033 274.214019775 274.692718506 275.06137085 274.558441162 273.815765381 272.232696533 270.468902588 269.81451416 268.505432129 267.520935059 267.034454346 267.374511719 270.809448242 273.062774658 274.721618652 274.764373779 272.480102539 267.576202393 262.543151855 259.488891602 256.462371826 253.557632446 250.378875732 247.177490234 245.510452271 243.877029419 241.873947144 245.721969604 246.154846191 246.611907959 247.287033081 248.517440796 249.505371094 249.533416748 248.951644897 247.721405029 246.793701172 247.752380371 252.032196045 258.078308105 264.496673584 269.500854492 271.375762939 271.695373535 271.582061768 271.758422852 272.023132324 272.226654053 272.490509033 272.976928711 273.601104736 274.031219482 274.412658691 275.118743896 276.056030273 277.058807373 278.19152832 279.236724854 280.300384521 281.598266602 283.100952148 285.004821777 287.393096924 289.591888428 291.252685547 292.33996582 293.187316895 294.260192871 296.560974121 299.696868896 300.562408447 299.606628418 297.55178833 295.574890137 294.377349854 295.1612854 295.394622803 295.613800049 295.248718262 294.618652344 293.592987061 293.468566895 293.82232666 294.097503662 294.518554688 294.982727051 295.633270264 295.917022705 296.236480713 296.741729736 297.223632812 297.56842041 297.623718262 298.580047607 300.366271973 301.051818848 300.66192627 300.120819092 299.09664917 298.205108643 295.132049561 293.708465576 292.168487549 290.197631836 287.566894531 283.899261475 282.278533936 281.791595459 282.282836914 282.570861816 282.379852295 282.749053955 284.650543213 286.651031494 286.709533691 286.040374756 285.264251709 284.193725586 282.560546875 280.867736816 279.44744873 277.648162842 275.707244873 275.189086914 274.681518555 274.143615723 273.972106934 273.559844971 273.306182861 274.235992432 275.705993652 275.466003418 274.466888428 272.477996826 271.690307617 270.718322754 267.87121582 266.483093262 265.408325195 264.963745117 267.726379395 270.958190918 271.920776367 271.286102295 268.308929443 261.100006104 255.138717651 249.875213623 247.699432373 246.345550537 245.14175415 243.387542725 242.167541504 240.915802002 239.771652222 234.863525391 235.323059082 235.947433472 236.398193359 237.248260498 237.96005249 237.852096558 237.34274292 236.525878906 235.542053223 237.46484375 243.723922729 251.14352417 257.920532227 263.21496582 269.824249268 271.467895508 271.855499268 272.232757568 272.60736084 272.866882324 273.116973877 273.46862793 273.992614746 274.461120605 274.875854492 275.565979004 276.6171875 277.74017334 278.969573975 280.08605957 281.165802002 282.391204834 283.755767822 285.529327393 287.909851074 290.162902832 291.803863525 292.738433838 293.235778809 293.756988525 294.81854248 295.819213867 295.672454834 294.862365723 293.958221436 293.382171631 293.787109375 294.870513916 294.951385498 295.075042725 294.805114746 294.198120117 293.298156738 292.855438232 293.022064209 293.964660645 295.12411499 295.742340088 296.062194824 296.188995361 296.404449463 296.73614502 297.267730713 297.929321289 298.107666016 298.596405029 300.443572998 301.673614502 301.301605225 300.438842773 299.063690186 298.083862305 294.786621094 293.388580322 292.000915527 290.09173584 287.70993042 284.106933594 282.239318848 281.434844971 281.914215088 282.501586914 282.533508301 283.073730469 284.634307861 286.047546387 286.097320557 285.590759277 285.004760742 284.242340088 282.975982666 281.460510254 279.917053223 277.825592041 275.61151123 275.043884277 274.779907227 274.666503906 274.727966309 274.770812988 274.930847168 275.38760376 275.8722229 275.694152832 274.947814941 273.095947266 272.015533447 270.888519287 267.071350098 264.147796631 263.439453125 263.116363525 266.645263672 270.216094971 271.498626709 270.750183105 268.016571045 262.724578857 258.492584229 255.946746826 255.405456543 251.700714111 249.785858154 247.326431274 244.827453613 243.003433228 241.844665527 222.612289429 223.510314941 224.84513855 225.583389282 227.391265869 229.110366821 228.823501587 228.232269287 227.078765869 225.062744141 227.15284729 237.018630981 246.112533569 252.853881836 258.397338867 266.76550293 270.678649902 271.977508545 272.449829102 272.820343018 273.032165527 273.257873535 273.703796387 274.112182617 274.315551758 274.714141846 275.598083496 276.728118896 277.911315918 279.135162354 280.151153564 281.151519775 282.356811523 283.791351318 285.886901855 288.620330811 291.057556152 292.711273193 293.186004639 292.822509766 292.299316406 292.150970459 292.203216553 292.805267334 293.389373779 293.730743408 293.732086182 294.218048096 295.07510376 295.670562744 296.27432251 296.132202148 295.291412354 293.742126465 293.177642822 293.057647705 293.623352051 294.837738037 295.93447876 296.546386719 296.575042725 296.799255371 297.297515869 297.712249756 298.084564209 298.387634277 300.73336792 302.345397949 303.874328613 304.64263916 304.803283691 303.941040039 303.595794678 300.79296875 299.152099609 297.110351562 294.903045654 292.179931641 288.154937744 286.254547119 285.407348633 285.575897217 285.822387695 285.399902344 285.221191406 285.983184814 286.411193848 285.911346436 285.192016602 284.396026611 283.368774414 281.939544678 280.235748291 278.546691895 276.527374268 274.849853516 274.310180664 273.809448242 273.380889893 273.166900635 273.309936523 273.552398682 274.116760254 274.811126709 274.649414062 274.096405029 272.699279785 271.730224609 270.870056152 268.68850708 267.384887695 266.697357178 266.542510986 269.082366943 272.214355469 274.30847168 274.622344971 271.993865967 266.149993896 262.552398682 259.27255249 256.484436035 253.725372314 250.393829346 247.468292236 245.561737061 243.972412109 241.929824829 245.693618774 246.080337524 246.516845703 247.163406372 248.358734131 249.296234131 249.327484131 248.690734863 247.440383911 246.506469727 247.893859863 252.089431763 258.228759766 264.904907227 269.299499512 271.325958252 271.576263428 271.510009766 271.707061768 271.969970703 272.161132812 272.397644043 272.899475098 273.579162598 274.056243896 274.45614624 275.169616699 276.077789307 277.027038574 278.127593994 279.186645508 280.280273438 281.588897705 283.119842529 285.153198242 287.776428223 290.026031494 291.635620117 292.607940674 293.591552734 295.213256836 297.395324707 298.672149658 298.325408936 296.942810059 295.375701904 294.504119873 294.329803467 294.73550415 295.082946777 295.438171387 295.733398438 295.09185791 294.571411133 294.296569824 294.229125977 294.087677002 294.127716064 294.658294678 295.651611328 296.126647949 296.102600098 296.723937988 298.338531494 298.550384521 297.874847412 299.224639893 300.976226807 301.395477295 300.523010254 299.810302734 299.436096191 297.886230469 295.966125488 293.588012695 291.933074951 289.79397583 287.448699951 284.342956543 282.494171143 282.05770874 281.9659729 282.809051514 282.753723145 283.041748047 284.929901123 286.387084961 286.178955078 285.660247803 284.805145264 283.339111328 281.337463379 279.092346191 277.527252197 275.058074951 274.668487549 274.715362549 274.208282471 273.800231934 273.565124512 273.267822266 272.993804932 273.740814209 275.445251465 275.5597229 274.833068848 273.624969482 272.256896973 271.079589844 269.2762146 266.669891357 265.092071533 264.533569336 265.313598633 270.279754639 271.582702637 271.203430176 268.240539551 260.688690186 255.609848022 249.712631226 247.510253906 246.182479858 244.887298584 243.197311401 242.183105469 240.810256958 239.764083862 234.835601807 235.219955444 235.793716431 236.222686768 237.090026855 237.697158813 237.518035889 236.973937988 236.032821655 235.135192871 237.596923828 243.923477173 251.381149292 258.404205322 263.197845459 269.988250732 271.494995117 271.831481934 272.198425293 272.58795166 272.873779297 273.144287109 273.504669189 274.061065674 274.560394287 274.981170654 275.681945801 276.716827393 277.787414551 278.955810547 280.058044434 281.147125244 282.397003174 283.834594727 285.761932373 288.339538574 290.636688232 292.232147217 293.012512207 293.348327637 293.824554443 294.13381958 294.16897583 293.975708008 293.661224365 293.41015625 293.629577637 294.536132812 295.630859375 294.759155273 294.90045166 294.913299561 294.65625 294.05645752 293.556182861 293.522369385 293.951538086 294.496856689 295.239440918 295.865112305 296.051879883 296.184020996 296.833709717 298.443481445 299.106536865 298.689544678 299.571655273 300.722930908 302.083953857 301.468536377 300.953979492 300.254943848 298.329956055 296.180480957 293.701538086 292.023284912 289.742340088 287.553161621 284.625213623 282.700164795 282.003997803 281.88861084 282.836029053 282.997436523 283.59588623 284.966461182 285.835205078 285.536102295 285.053375244 284.33102417 283.196746826 281.625976562 279.607055664 278.083862305 275.734985352 274.66784668 274.567962646 274.542266846 274.394744873 274.400878906 274.393707275 274.435394287 274.841278076 275.545410156 275.576141357 274.995391846 273.801361084 272.482635498 271.066650391 268.353363037 264.736907959 263.374298096 262.88369751 264.466430664 269.749053955 271.249694824 270.587646484 267.5753479 262.069366455 258.601623535 255.779586792 255.043716431 251.817459106 250.050842285 247.397293091 244.869155884 243.061355591 241.872879028 222.518432617 223.299285889 224.600769043 225.334823608 227.146133423 228.822982788 228.35887146 227.598083496 226.214584351 224.24357605 226.967041016 237.012939453 246.154663086 253.290267944 258.425109863 266.824279785 270.578430176 271.886291504 272.424591064 272.834472656 273.079772949 273.308685303 273.748077393 274.181945801 274.400878906 274.775970459 275.628112793 276.752502441 277.909576416 279.098388672 280.123535156 281.155059814 282.414794922 283.966644287 286.299926758 289.189666748 291.570404053 293.032440186 293.252990723 292.530303955 291.207580566 290.95211792 291.308563232 291.99407959 293.086486816 294.367675781 294.691162109 295.078979492 295.47076416 295.876464844 296.262237549 296.485595703 295.494903564 294.718048096 293.920196533 293.627593994 293.896118164 294.563262939 295.420410156 296.237976074 296.41708374 296.43560791 297.147247314 297.91619873 299.389648438 299.439483643 302.310821533 302.063446045 302.664916992 303.777252197 304.829498291 304.943572998 303.678497314 302.044799805 299.552581787 297.342529297 294.67010498 292.057220459 288.584442139 286.448883057 285.74786377 285.33291626 286.027587891 285.615478516 285.605651855 286.285980225 286.342681885 285.612091064 284.834564209 283.973144531 282.756896973 281.021453857 278.731536865 276.585510254 274.252716064 273.992919922 274.182800293 273.810089111 273.189971924 272.906036377 272.852539062 273.15625 273.758514404 274.51171875 274.503112793 274.074554443 273.167266846 272.149688721 271.125549316 268.996643066 267.794586182 266.79284668 266.517547607 267.551086426 271.51663208 273.911315918 274.433685303 271.602386475 265.836853027 263.1144104 259.358123779 256.345977783 253.833892822 250.89855957 247.664001465 245.600784302 244.066253662 241.985839844 245.660614014 246.014572144 246.422943115 247.036148071 248.215011597 249.060043335 249.065032959 248.363433838 247.207382202 246.23475647 247.87411499 252.242904663 258.28012085 265.397583008 269.180358887 271.258422852 271.470733643 271.478942871 271.69619751 271.923797607 272.094024658 272.320343018 272.838317871 273.563293457 274.095428467 274.519866943 275.226257324 276.100585938 277.005249023 278.072662354 279.137237549 280.254211426 281.570281982 283.138793945 285.315948486 288.116699219 290.406982422 291.960083008 292.800567627 293.470031738 294.821502686 295.709136963 295.723510742 295.122772217 294.998474121 294.876312256 295.023010254 295.189178467 295.574005127 295.729400635 295.832641602 296.081085205 295.727600098 295.120391846 294.744293213 294.971008301 294.299102783 294.108001709 294.60635376 295.543945312 296.091827393 296.027893066 296.381011963 297.632873535 298.427368164 298.020599365 298.51260376 300.985565186 301.048278809 299.813812256 298.891540527 297.996276855 296.282623291 294.418304443 292.532562256 291.078918457 289.679718018 287.48034668 284.456268311 283.068237305 282.578582764 282.179504395 282.919555664 282.837371826 282.8984375 283.189605713 283.806854248 285.004089355 285.30279541 284.309265137 282.417816162 279.511444092 276.236022949 274.514709473 273.367523193 273.919616699 274.137329102 273.622406006 273.18081665 273.120605469 272.953704834 272.723022461 273.12210083 274.533721924 274.981903076 274.79473877 273.72366333 272.022003174 270.847412109 269.694396973 267.843322754 265.073577881 263.870483398 264.105804443 269.563110352 271.225891113 271.129272461 268.314147949 261.392883301 255.475234985 250.158630371 247.206329346 246.165176392 244.879608154 243.20715332 242.129074097 240.71925354 239.750961304 234.771820068 235.027084351 235.620620728 236.084976196 236.885513306 237.393371582 237.131530762 236.536026001 235.621154785 234.814880371 237.559539795 244.087966919 251.633300781 258.92388916 263.447875977 270.150115967 271.539642334 271.840240479 272.187530518 272.556884766 272.857757568 273.16708374 273.547454834 274.118499756 274.650787354 275.094329834 275.797485352 276.806274414 277.828796387 278.937408447 280.025482178 281.131317139 282.416412354 283.93359375 286.030761719 288.752349854 291.083312988 292.657318115 293.264282227 293.114624023 292.839111328 292.653381348 292.423095703 292.741546631 293.542053223 294.365600586 295.122192383 296.286895752 297.06451416 296.296630859 295.50012207 295.350097656 295.074493408 294.66305542 294.18258667 294.218505859 294.341217041 294.571136475 295.116027832 295.732116699 295.991607666 296.125762939 296.553588867 297.905578613 299.005889893 299.456817627 300.080200195 300.910705566 301.821838379 301.178588867 300.64364624 299.59463501 297.567565918 295.420349121 293.307830811 291.681091309 289.972625732 287.594055176 284.61328125 283.234893799 282.739471436 282.266815186 283.060546875 283.12008667 283.321136475 283.57119751 283.725402832 284.379058838 284.542480469 283.602874756 282.053009033 279.651184082 276.863983154 275.544464111 274.469787598 273.865356445 274.136901855 274.16104126 273.957885742 274.026245117 274.084381104 274.020721436 274.233062744 274.761993408 274.963806152 274.68838501 273.699066162 272.235137939 270.776916504 267.911346436 265.738647461 263.528106689 262.697418213 263.146331787 269.248077393 270.984313965 270.481170654 267.449615479 262.211303711 258.42401123 255.969192505 254.086517334 251.764373779 250.047058105 247.416381836 244.930297852 243.083511353 241.905731201 222.463897705 223.128448486 224.378692627 225.111343384 226.885604858 228.488357544 227.908432007 226.919723511 225.389694214 223.491317749 226.846878052 237.009399414 246.202346802 254.121368408 258.918548584 266.93258667 270.514160156 271.810211182 272.384979248 272.819824219 273.110015869 273.364349365 273.789245605 274.234283447 274.490570068 274.864074707 275.67868042 276.788665771 277.91696167 279.060058594 280.08303833 281.13659668 282.430023193 284.099182129 286.692779541 289.696624756 292.009979248 293.317871094 293.363189697 292.218231201 290.507507324 289.924072266 290.489868164 291.557861328 293.751220703 295.119781494 295.821166992 295.824005127 296.601989746 296.698608398 296.473602295 296.758636475 296.176086426 295.347839355 294.475708008 294.205444336 294.105010986 294.478546143 295.225402832 295.977081299 296.220672607 296.399688721 296.900390625 297.858306885 300.352325439 301.960235596 302.120605469 301.610107422 301.219085693 302.721160889 303.908294678 304.084136963 302.504821777 300.681732178 298.721588135 296.865509033 294.775939941 292.07699585 288.655487061 286.988372803 286.225891113 285.451049805 286.085021973 285.93536377 285.774871826 285.541168213 285.253234863 284.976379395 284.506378174 283.528869629 282.080718994 279.544311523 276.151184082 274.140380859 273.170715332 273.264038086 273.794281006 273.538726807 272.789031982 272.504699707 272.452484131 272.815673828 273.221618652 273.777832031 273.933105469 273.720092773 273.013427734 272.007202148 270.904998779 268.688049316 267.921142578 266.893066406 266.460083008 266.697906494 270.983520508 273.537414551 274.276123047 271.534973145 266.455780029 263.184875488 259.694366455 256.318328857 253.787857056 250.896942139 247.681442261 245.707977295 244.114074707 242.043151855 245.636749268 245.949935913 246.323196411 246.905761719 248.037109375 248.829818726 248.74055481 248.06930542 246.914382935 246.062652588 247.692565918 252.218490601 258.350952148 265.377929688 269.239257812 271.163330078 271.375244141 271.480773926 271.737701416 271.893096924 272.033996582 272.278442383 272.808959961 273.556884766 274.160095215 274.610351562 275.293273926 276.124847412 276.987792969 278.020721436 279.082366943 280.217773438 281.538360596 283.145996094 285.45022583 288.373931885 290.741546631 292.311065674 293.028900146 293.43270874 294.067474365 293.844543457 293.180755615 293.362854004 294.082550049 294.599731445 295.102661133 296.135162354 296.602050781 296.360717773 296.280303955 296.201446533 295.725891113 295.223327637 294.767333984 294.699401855 294.22756958 294.169677734 294.827972412 295.740203857 295.9012146 295.671356201 295.849304199 296.578979492 297.181854248 297.444763184 298.08770752 299.189025879 300.33416748 298.82635498 297.8309021 296.677062988 294.711181641 292.521270752 290.717498779 289.450012207 288.596252441 286.725463867 285.028442383 283.72177124 283.056854248 282.847717285 282.151977539 282.021484375 281.896453857 282.792358398 283.262878418 284.911315918 285.106903076 284.049743652 281.581115723 278.212646484 275.97833252 273.83102417 272.825073242 273.515380859 273.584472656 272.869171143 272.561065674 272.823455811 272.693481445 272.576263428 272.66104126 273.074188232 273.596557617 274.037078857 273.267852783 270.540283203 268.862518311 269.186767578 268.073974609 264.657989502 263.135955811 263.445556641 268.581787109 270.869506836 271.01473999 268.56427002 262.038604736 255.114089966 250.578536987 247.014694214 246.086883545 244.872802734 243.213500977 241.978912354 240.72315979 239.716888428 234.812103271 234.983001709 235.497085571 235.931091309 236.664993286 237.11781311 236.766662598 236.133926392 235.179718018 234.545547485 237.322250366 244.142883301 251.851104736 259.479095459 264.316375732 270.270477295 271.593078613 271.878662109 272.202972412 272.513122559 272.81463623 273.187805176 273.611877441 274.184692383 274.745574951 275.229919434 275.926513672 276.88760376 277.86050415 278.911407471 279.981628418 281.120544434 282.452758789 284.043579102 286.300445557 289.134796143 291.525634766 293.145050049 293.653808594 293.328735352 292.082275391 291.494171143 291.647644043 292.338470459 293.913238525 295.410675049 296.729827881 297.660705566 298.124816895 297.026672363 296.153076172 295.683074951 295.269836426 294.925537109 294.593780518 294.703765869 294.747894287 294.880584717 295.524536133 295.978973389 295.957214355 295.808959961 295.973510742 296.809082031 297.629455566 299.604797363 299.808807373 300.35369873 301.412414551 300.405700684 299.590332031 298.434265137 296.570098877 294.322784424 292.302764893 290.680114746 289.399291992 286.994140625 285.108306885 283.748443604 283.225952148 283.055145264 282.388916016 282.416412354 282.366394043 283.142242432 283.166015625 284.261901855 284.206451416 283.096710205 280.911193848 277.925384521 276.332580566 274.839416504 273.959503174 273.675415039 273.752807617 273.6980896 273.465209961 273.656982422 273.81338501 273.691558838 273.639312744 273.696014404 273.743865967 273.810394287 273.133178711 271.294128418 268.960510254 267.512542725 266.246582031 263.685668945 262.323730469 262.632110596 268.462799072 270.691741943 270.380767822 267.684051514 262.481872559 257.99432373 256.17678833 253.77230835 252.041000366 250.03427124 247.429290771 245.050796509 243.103851318 241.940689087 222.365371704 222.952316284 224.18359375 224.855102539 226.577163696 228.071228027 227.468688965 226.336746216 224.600311279 222.838531494 226.831817627 236.969192505 246.207565308 254.777893066 259.725708008 267.08291626 270.477752686 271.746887207 272.330108643 272.768890381 273.108642578 273.417633057 273.83581543 274.283966064 274.591369629 274.983886719 275.746887207 276.812408447 277.90423584 278.992858887 279.999145508 281.064666748 282.361724854 284.13571167 286.987884521 290.113525391 292.399139404 293.639373779 293.606536865 292.523071289 290.135406494 289.342407227 289.948303223 292.014923096 294.062957764 296.081085205 296.145690918 296.418518066 296.76348877 297.021881104 296.784637451 296.763977051 296.659973145 295.923278809 294.909881592 294.586303711 294.389129639 294.803253174 296.424530029 296.783966064 296.368927002 296.21862793 296.43359375 297.04901123 298.221130371 300.889984131 301.70703125 300.606506348 301.030578613 301.699127197 303.046295166 302.748962402 301.255310059 299.114196777 297.02444458 295.280548096 293.749359131 291.281188965 289.293579102 287.697418213 286.745758057 286.265441895 285.479949951 285.360687256 285.037536621 285.349060059 284.895721436 284.804199219 284.271881104 283.204498291 281.349578857 278.152099609 275.767028809 273.612121582 272.737762451 272.923248291 273.281555176 273.064483643 272.378143311 272.059631348 272.175628662 272.447662354 272.611083984 272.763031006 272.813140869 272.959716797 272.559844971 271.423461914 269.785369873 268.563934326 267.850524902 267.188354492 266.406494141 266.641235352 270.488708496 273.161834717 274.133514404 271.94644165 266.934570312 262.846313477 259.930328369 256.304443359 254.091781616 250.882675171 247.691711426 245.979705811 244.134613037 242.083953857 245.605651855 245.885375977 246.232025146 246.777801514 247.851013184 248.570632935 248.429275513 247.755706787 246.64932251 245.882507324 247.567169189 252.255966187 258.349884033 265.227416992 269.256286621 271.072113037 271.308105469 271.509490967 271.800445557 271.905426025 272.01083374 272.282043457 272.810211182 273.558258057 274.227355957 274.710266113 275.360015869 276.14465332 276.973602295 277.976104736 279.032714844 280.180908203 281.501098633 283.106323242 285.439422607 288.421539307 290.895294189 292.617431641 293.351013184 293.539489746 293.56930542 292.70803833 291.834991455 292.21282959 293.045654297 293.660919189 294.522796631 296.356445312 297.517364502 296.889373779 296.43145752 295.971130371 295.424957275 294.658782959 294.189971924 293.999938965 293.941833496 294.275482178 294.849609375 295.66217041 295.752960205 295.602294922 295.761688232 296.718780518 297.555267334 297.322021484 297.675689697 299.749298096 299.84954834 298.43145752 296.460662842 294.796508789 293.522735596 291.150909424 289.637115479 287.701599121 287.53692627 286.185852051 284.966125488 283.888031006 283.202209473 282.690429688 282.55380249 282.474700928 281.785430908 282.787689209 283.774658203 285.233673096 284.990264893 284.058227539 282.311859131 279.538452148 277.80645752 274.636199951 273.129882812 273.377441406 273.14263916 272.2918396 272.016357422 272.355804443 272.427581787 272.331817627 272.061889648 272.038787842 272.443084717 272.888580322 272.188934326 269.680236816 268.039764404 267.649383545 267.567871094 263.986877441 262.388580322 262.698150635 267.261413574 270.543884277 270.895324707 268.722167969 262.73840332 255.046340942 251.051315308 247.024719238 246.03288269 244.836105347 243.191970825 241.731109619 240.72807312 239.646560669 234.689956665 234.851394653 235.333312988 235.772109985 236.518157959 236.828796387 236.397460938 235.735656738 234.790344238 234.313583374 237.354003906 244.240936279 252.006851196 259.797241211 264.790466309 270.255157471 271.616821289 271.931304932 272.234527588 272.477935791 272.754882812 273.190429688 273.6769104 274.254669189 274.841918945 275.374267578 276.056945801 276.957427979 277.888702393 278.901947021 279.956695557 281.124298096 282.488494873 284.126617432 286.484161377 289.413696289 291.869354248 293.58996582 294.165527344 293.657562256 291.927093506 290.920227051 291.029174805 292.083984375 293.662994385 295.064605713 296.621948242 297.5128479 298.281402588 297.674377441 296.923187256 295.838409424 295.251098633 294.744873047 294.335968018 294.12902832 294.341400146 294.96295166 295.650817871 295.995635986 295.774749756 295.765899658 295.815155029 297.051330566 298.618865967 300.056915283 300.257263184 301.158996582 301.228546143 300.205596924 298.302368164 296.721801758 295.685394287 293.291992188 291.669311523 289.440643311 288.850311279 286.974151611 285.274230957 283.93057251 283.291809082 283.055358887 282.944671631 282.976348877 282.320068359 283.156768799 283.620269775 284.53225708 283.964752197 282.873687744 281.249938965 278.774017334 277.564300537 275.167327881 274.201141357 273.769866943 273.552886963 273.245758057 273.022918701 273.444213867 273.677429199 273.454772949 273.066589355 272.852935791 272.696929932 272.689117432 272.029144287 270.611450195 268.965698242 267.443878174 265.988220215 263.670593262 262.209014893 262.598175049 267.354370117 270.386047363 270.28994751 267.844299316 262.97442627 257.875732422 256.605316162 253.676864624 252.360137939 250.161361694 247.437088013 245.196777344 243.124298096 241.977493286 222.207397461 222.712921143 223.959594727 224.663818359 226.282958984 227.629348755 227.00289917 225.771255493 223.847351074 222.338470459 226.829116821 236.863143921 246.1381073 255.007369995 260.092895508 267.156646729 270.454223633 271.702331543 272.279724121 272.706726074 273.071899414 273.442932129 273.88067627 274.331634521 274.685791016 275.104766846 275.817779541 276.821166992 277.88168335 278.916595459 279.886688232 280.954833984 282.243988037 284.057647705 287.04309082 290.28503418 292.611999512 293.914611816 293.926055908 292.714355469 290.023254395 288.900299072 289.568969727 291.686035156 293.667663574 295.096557617 296.07611084 297.046875 297.637542725 297.619506836 296.826843262 296.637817383 296.709716797 295.983276367 295.149841309 294.867675781 295.066497803 295.824310303 297.301757812 297.696899414 296.411132812 296.122711182 296.177124023 297.308898926 298.789672852 300.987640381 301.205230713 301.450164795 302.666137695 302.647491455 302.098175049 301.014953613 300.270629883 297.884246826 296.028411865 293.462402344 292.712646484 290.936645508 289.464416504 288.123382568 286.984588623 286.245330811 285.904785156 285.845458984 284.950744629 285.313873291 285.10168457 284.902008057 284.103088379 283.070800781 281.540771484 278.983032227 277.387481689 274.413726807 273.16506958 272.953308105 272.844146729 272.523162842 271.906188965 272.066589355 271.974334717 271.984802246 272.018951416 272.129516602 272.185272217 272.15246582 271.737976074 270.906219482 269.978942871 269.051391602 267.693023682 267.431671143 266.604431152 266.786956787 269.914001465 272.833953857 274.020202637 272.203063965 267.66619873 262.625915527 260.38861084 256.481750488 254.350952148 251.103042603 247.722717285 246.406600952 244.156051636 242.091644287 245.577484131 245.810195923 246.13659668 246.657852173 247.664367676 248.298339844 248.075073242 247.393829346 246.413024902 245.730270386 247.464309692 252.204437256 258.302001953 265.129180908 269.267608643 271.032318115 271.254455566 271.533569336 271.861663818 271.952148438 272.028564453 272.317993164 272.840362549 273.564880371 274.281860352 274.803100586 275.419555664 276.160430908 276.960144043 277.932617188 278.981872559 280.138916016 281.439117432 282.995422363 285.276519775 288.288391113 290.866241455 292.789398193 293.677032471 293.754180908 292.961364746 291.751251221 290.517791748 290.789672852 291.792724609 292.64163208 294.094940186 296.337799072 297.864898682 296.958465576 296.227935791 295.691986084 295.112548828 294.390625 293.965209961 293.454559326 293.646575928 294.081756592 294.744506836 295.24230957 295.498504639 295.424255371 295.776031494 297.368286133 297.576416016 297.182098389 299.198425293 300.567047119 299.728271484 298.167266846 296.350280762 294.464019775 291.92980957 290.568572998 289.394683838 287.243652344 286.628540039 286.098266602 284.907989502 283.921356201 283.085693359 282.434936523 281.655700684 281.736999512 281.901794434 283.110778809 284.747802734 285.479522705 285.075683594 283.47354126 282.248321533 280.243438721 278.194030762 275.756500244 273.663360596 273.486907959 272.8984375 272.030639648 271.835601807 272.081573486 272.167266846 271.944580078 271.598602295 271.341156006 271.465789795 271.483642578 271.187744141 269.134246826 266.816711426 266.296508789 265.545776367 263.142028809 261.380371094 262.141571045 266.998626709 270.290039062 270.737426758 268.94317627 263.512023926 255.778823853 251.026428223 247.159439087 246.052536011 244.727508545 242.813354492 241.638595581 240.730209351 239.529342651 234.690414429 234.705169678 235.208969116 235.634765625 236.282043457 236.602249146 236.007354736 235.301971436 234.438400269 234.11479187 237.343154907 244.267807007 252.031204224 259.984832764 264.97833252 270.135131836 271.616241455 271.984771729 272.284362793 272.462921143 272.697296143 273.177642822 273.727508545 274.322540283 274.942138672 275.519897461 276.183898926 277.022003174 277.925445557 278.918670654 279.953125 281.135955811 282.51776123 284.164672852 286.547485352 289.57711792 292.088348389 293.904998779 294.633544922 294.211029053 292.046661377 290.611694336 290.33770752 290.973510742 292.468261719 294.142333984 295.949005127 296.855407715 297.632659912 298.220794678 297.617950439 296.078765869 295.147125244 294.527374268 294.152069092 293.716186523 293.782714844 294.409210205 295.202148438 295.629119873 295.666717529 295.544586182 295.709869385 297.28414917 298.659210205 299.378051758 301.186798096 301.824066162 301.27746582 300.117462158 298.344818115 296.554504395 294.263824463 292.643188477 291.434448242 289.162078857 288.283538818 287.362792969 285.744232178 284.24118042 283.431365967 282.938018799 282.179718018 282.373199463 282.465820312 283.544403076 284.365600586 284.695159912 283.939666748 282.242919922 281.053161621 279.287353516 277.704437256 275.933990479 274.585449219 274.007080078 273.4637146 272.869293213 272.968231201 273.463378906 273.564208984 273.252441406 272.683227539 272.18145752 271.765625 271.22076416 271.007324219 269.987792969 268.097290039 266.843231201 265.506469727 263.670562744 262.229034424 262.882720947 267.213592529 270.113922119 270.167205811 268.082336426 263.371704102 258.612579346 256.983734131 253.936355591 252.376296997 250.287628174 247.510635376 245.238800049 243.151199341 242.008636475 222.115142822 222.547592163 223.733261108 224.440673828 225.973464966 227.191970825 226.51461792 225.180618286 223.130142212 221.937210083 226.786987305 236.707839966 245.951553345 255.002212524 260.219024658 267.115631104 270.423400879 271.662078857 272.235565186 272.655151367 273.023681641 273.443328857 273.922851562 274.38381958 274.770355225 275.215698242 275.887695312 276.829101562 277.861450195 278.853240967 279.776519775 280.843994141 282.137329102 283.919677734 286.875061035 290.220031738 292.627532959 294.059753418 294.239807129 293.055908203 290.069702148 288.636230469 288.947113037 290.385803223 292.24810791 294.031280518 295.977844238 297.827453613 298.740570068 298.265625 296.885955811 296.384338379 296.379425049 296.236999512 295.556091309 295.156890869 294.77545166 295.45791626 296.558410645 296.970092773 296.34185791 295.953338623 296.103759766 297.311157227 299.275878906 300.488555908 300.533874512 301.28225708 302.613708496 302.105133057 301.889221191 300.567352295 298.791870117 297.109405518 295.618133545 292.968078613 291.842407227 290.97644043 289.630065918 288.425842285 287.338989258 286.346160889 285.074951172 285.082977295 284.994628906 285.679138184 285.342437744 284.998626709 284.177307129 282.676727295 281.418426514 279.635437012 277.787994385 275.638946533 274.090026855 273.433044434 272.733886719 272.171264648 272.028656006 272.217529297 272.012878418 271.79208374 271.583435059 271.559356689 271.497283936 271.277160645 271.077758789 270.48815918 269.670623779 269.020965576 268.281738281 267.500854492 266.875427246 267.218414307 269.9112854 272.56729126 273.876251221 272.524383545 268.315948486 263.337249756 260.553649902 256.893188477 254.3540802 251.379745483 248.167114258 246.561569214 244.182922363 242.038879395 245.556472778 245.747573853 246.043426514 246.503372192 247.476486206 248.014587402 247.755340576 247.073165894 246.173751831 245.593185425 247.417602539 252.150619507 258.247009277 265.098571777 269.260223389 271.014221191 271.232971191 271.551086426 271.910308838 272.003234863 272.075286865 272.377319336 272.896942139 273.58807373 274.326873779 274.885894775 275.470947266 276.16973877 276.948547363 277.893096924 278.933013916 280.092224121 281.353149414 282.819366455 284.985076904 288.013031006 290.688537598 292.802856445 293.950561523 293.929199219 292.937347412 291.321746826 289.729858398 289.64956665 290.414825439 292.00100708 293.820983887 296.789245605 297.292449951 296.610870361 295.720825195 295.720794678 294.99206543 294.193878174 293.619842529 293.142089844 293.351379395 293.78036499 294.273620605 294.709594727 294.609375 294.281219482 294.747802734 296.278167725 296.646392822 297.341491699 299.899475098 300.692321777 299.843322754 298.588592529 297.00088501 294.361907959 292.540649414 291.343292236 290.308532715 288.996887207 287.241149902 286.57989502 285.331085205 284.007568359 283.035675049 281.854217529 281.815063477 281.83416748 282.896057129 283.428161621 285.117767334 285.678283691 284.95602417 283.35824585 281.304351807 279.028442383 277.289367676 275.595916748 274.379699707 273.891174316 273.057891846 272.190460205 271.999359131 271.976348877 271.674102783 271.448669434 271.010345459 270.735046387 270.722747803 270.687957764 270.201721191 268.511352539 265.9581604 265.265808105 264.606018066 262.214172363 260.518249512 261.405914307 266.597320557 270.115661621 270.557891846 268.985992432 264.259246826 256.335754395 251.156494141 247.358413696 246.187606812 244.697891235 242.806396484 241.644958496 240.676467896 239.504165649 234.652557373 234.674682617 235.053588867 235.426971436 236.113769531 236.299102783 235.589828491 234.880783081 234.104415894 233.996307373 237.284317017 244.214828491 251.889068604 260.04397583 264.912200928 269.944061279 271.599884033 272.030090332 272.337005615 272.467376709 272.647735596 273.153045654 273.764038086 274.389465332 275.04574585 275.658294678 276.30178833 277.082427979 277.970214844 278.957092285 279.966552734 281.154174805 282.54083252 284.161529541 286.480377197 289.608551025 292.171020508 294.061950684 295.000946045 294.758148193 292.628967285 290.628265381 289.464752197 289.810821533 290.81628418 293.428344727 295.137817383 297.053375244 297.258911133 297.607818604 297.756439209 297.210144043 295.391540527 294.57208252 293.916442871 293.430725098 293.520141602 294.11932373 294.763946533 295.089538574 295.008636475 294.614318848 294.841796875 295.927459717 297.105834961 298.14239502 300.796325684 301.533874512 301.366485596 300.542724609 298.896850586 296.651489258 294.777709961 293.235626221 292.251312256 290.938354492 288.962219238 287.976623535 286.402740479 284.580993652 283.62298584 282.770935059 282.581512451 282.443786621 283.400604248 283.618774414 284.67565918 284.877227783 283.880737305 282.21282959 280.2137146 277.98223877 276.760162354 275.643798828 275.035827637 274.435974121 273.704437256 273.202087402 273.174133301 273.545410156 273.487060547 273.03125 272.314544678 271.636199951 270.928466797 270.288146973 269.982116699 269.152496338 267.361724854 266.209228516 265.088104248 263.393157959 262.213134766 262.707000732 266.873382568 269.880279541 270.040527344 268.203216553 264.029388428 259.350860596 257.184265137 254.149276733 252.717727661 250.24798584 247.504852295 245.251159668 243.204421997 242.019500732 222.021362305 222.35383606 223.484802246 224.262695312 225.662384033 226.759216309 225.991485596 224.588439941 222.49760437 221.62612915 226.741226196 236.49798584 245.684387207 254.849151611 260.261901855 266.966186523 270.38104248 271.6171875 272.1953125 272.617126465 272.974029541 273.425262451 273.961975098 274.44317627 274.846038818 275.3152771 275.952789307 276.834777832 277.842102051 278.802459717 279.677947998 280.765319824 282.076721191 283.754608154 286.523040771 289.946502686 292.452545166 294.043151855 294.537261963 293.698883057 290.810760498 288.781494141 288.206726074 289.079711914 290.555511475 293.352752686 295.249084473 298.069732666 298.345367432 298.750946045 296.756378174 296.439666748 295.931671143 295.784576416 295.431915283 294.704193115 294.440826416 294.818054199 295.339019775 295.776763916 295.635681152 295.639984131 296.097259521 296.908752441 297.709350586 299.618804932 300.533111572 301.10848999 302.244689941 302.357452393 301.473083496 300.649169922 299.289886475 297.575683594 296.155670166 294.556152344 292.386077881 291.408874512 290.092834473 288.520019531 287.573608398 286.561950684 285.756256104 285.147827148 286.136871338 285.812683105 285.49395752 285.07800293 284.085479736 282.583862305 280.764831543 278.561248779 276.984802246 275.759460449 275.123718262 274.310272217 273.319793701 272.727478027 272.577636719 272.389923096 271.849517822 271.598480225 271.299255371 271.078979492 271.026000977 270.854919434 270.359832764 269.873657227 269.193634033 268.859375 268.282592773 267.586791992 266.995697021 267.435211182 269.816772461 272.361816406 273.730316162 272.687683105 269.087341309 264.039276123 260.76940918 257.295928955 254.730072021 251.326705933 248.155075073 246.574172974 244.24319458 242.032577515 245.53062439 245.685913086 245.954193115 246.378723145 247.258773804 247.710189819 247.391967773 246.730255127 245.903671265 245.463165283 247.492126465 252.02204895 257.986297607 263.982269287 269.229766846 271.008911133 271.279937744 271.571990967 271.926361084 272.049468994 272.136199951 272.447906494 272.978027344 273.647277832 274.378143311 274.965057373 275.516418457 276.172729492 276.941741943 277.862304688 278.886444092 280.043395996 281.251220703 282.584197998 284.613067627 287.644470215 290.410064697 292.635467529 294.100585938 294.571228027 293.954315186 291.833251953 289.86328125 289.273956299 289.845672607 291.26574707 293.47668457 295.890106201 296.967803955 296.009460449 295.583770752 295.592956543 295.004547119 294.351135254 293.484527588 292.881866455 292.775024414 293.057189941 293.69519043 293.879455566 293.422943115 292.887573242 293.002868652 294.12612915 295.382171631 297.09085083 299.382476807 300.688995361 300.227752686 299.183135986 298.879486084 295.748748779 293.862091064 292.437133789 291.578033447 289.674713135 288.606048584 287.56439209 286.358551025 284.701416016 283.767791748 283.068603516 283.221008301 282.887786865 282.932403564 283.632904053 285.578155518 285.783477783 284.733764648 282.499969482 279.292266846 276.181213379 275.581451416 276.071502686 276.163696289 275.001739502 273.717498779 272.652923584 272.279052734 271.880950928 271.248809814 270.896057129 270.428588867 270.145324707 270.050720215 269.893096924 269.340759277 267.811523438 265.369812012 264.52822876 263.916900635 261.576324463 260.016571045 261.064147949 265.876617432 270.027923584 270.361206055 268.996612549 264.820831299 257.151245117 251.276977539 247.71484375 246.164047241 244.669067383 242.796691895 241.649673462 240.58052063 239.503509521 234.51083374 234.546432495 234.869903564 235.27557373 235.888870239 236.000656128 235.256149292 234.431411743 233.766372681 233.897262573 237.425598145 244.053146362 251.618011475 258.610473633 264.579040527 269.61239624 271.598175049 272.071990967 272.381896973 272.500915527 272.625152588 273.110839844 273.776428223 274.456451416 275.149993896 275.785614014 276.410675049 277.13861084 278.019012451 279.010528564 279.993835449 281.177612305 282.565002441 284.134368896 286.319885254 289.470062256 292.078979492 294.022125244 295.225891113 295.452728271 294.294189453 291.438751221 289.611846924 289.397521973 290.314086914 291.92855835 294.106567383 296.329345703 297.341217041 296.727020264 297.664764404 297.743011475 296.186035156 294.891815186 293.872802734 293.234161377 293.076629639 293.448760986 294.207733154 294.315368652 293.852111816 293.411590576 293.146575928 293.882751465 295.533874512 297.666625977 299.864624023 301.43649292 301.650268555 300.836120605 300.446624756 297.828063965 295.992797852 294.249847412 293.343780518 291.41986084 290.154083252 288.87677002 287.460449219 285.568908691 284.547210693 284.026824951 284.136413574 283.712768555 283.346740723 283.618835449 285.091247559 285.096313477 283.91027832 281.673248291 278.329193115 275.217010498 275.013885498 275.91885376 276.194915771 275.261047363 274.265777588 273.576904297 273.43069458 273.481933594 273.250244141 272.815582275 272.035766602 271.185516357 270.039550781 269.558197021 269.066925049 268.515319824 266.989074707 265.864440918 264.919433594 263.319580078 262.083618164 262.918762207 266.412963867 269.717010498 269.907531738 268.306121826 264.676025391 260.066101074 257.156494141 254.531173706 253.002914429 250.250930786 247.491897583 245.260406494 243.283355713 242.025375366 221.924179077 222.118164062 223.194030762 224.003540039 225.311294556 226.250869751 225.360626221 223.969284058 221.869644165 221.344818115 226.6668396 236.238571167 245.3072052 253.239776611 260.349365234 266.65625 270.333679199 271.564941406 272.151062012 272.595214844 272.928771973 273.382476807 273.989715576 274.512573242 274.923126221 275.411132812 276.0128479 276.822662354 277.803619385 278.744659424 279.588317871 280.726318359 282.090362549 283.6277771 286.090179443 289.49206543 292.079986572 293.808502197 294.707489014 294.598175049 293.033843994 289.996063232 288.471893311 288.829284668 290.589447021 292.29699707 294.552459717 296.808013916 297.98828125 297.368347168 296.924926758 296.217956543 295.717041016 295.653533936 295.102325439 294.233551025 293.816925049 293.845092773 294.429473877 294.606750488 294.260772705 294.244720459 294.083068848 294.692199707 296.202026367 298.160919189 300.235168457 301.577178955 302.427764893 302.659576416 302.936828613 302.073883057 300.732971191 298.800079346 297.269134521 295.100708008 293.689239502 292.390045166 291.052032471 289.324493408 288.378509521 287.602966309 287.436431885 286.804992676 286.179656982 285.879455566 285.691345215 285.163482666 284.007415771 282.038330078 279.060760498 276.077636719 275.598449707 276.038970947 276.429016113 275.532836914 274.208740234 273.451965332 273.049804688 272.501342773 271.877502441 271.499328613 271.024597168 270.707763672 270.604125977 270.436126709 269.796325684 269.428009033 269.104064941 268.72543335 268.277038574 267.575866699 266.970031738 267.500762939 269.635681152 272.230133057 273.56463623 272.804107666 269.764678955 264.869750977 261.132263184 257.74899292 255.03918457 251.380142212 248.133392334 246.583816528 244.356140137 242.040130615 245.504577637 245.623413086 245.858551025 246.233612061 247.040130615 247.405639648 247.026168823 246.429550171 245.612564087 245.3359375 247.266342163 251.812026978 257.653015137 263.502471924 269.073394775 271.02243042 271.379882812 271.616790771 271.927764893 272.073669434 272.18170166 272.491973877 273.032806396 273.686645508 274.41595459 275.020935059 275.550842285 276.170379639 276.9402771 277.850585938 278.852508545 279.999755859 281.174835205 282.416259766 284.357299805 287.362915039 290.182647705 292.345367432 293.946838379 294.958892822 294.702392578 293.652038574 291.20690918 290.098876953 290.069671631 291.252075195 293.978027344 296.417602539 297.42364502 296.783874512 295.923126221 295.514038086 295.127868652 294.444732666 293.990570068 293.023193359 292.57901001 292.743438721 292.963897705 292.911315918 292.65222168 292.228118896 292.099456787 292.703765869 294.498321533 296.214019775 299.572235107 300.969390869 301.111633301 300.971405029 300.141906738 296.781890869 296.166992188 293.568267822 292.738098145 290.803894043 289.701171875 288.641113281 287.643157959 286.317077637 284.9112854 283.819030762 283.616912842 282.994354248 282.913330078 283.682983398 285.625152588 285.811950684 284.506988525 281.693664551 276.604187012 274.065917969 274.365753174 276.582366943 277.352325439 276.698791504 274.496368408 273.085388184 272.439910889 271.821990967 270.938812256 270.538543701 269.935455322 269.621032715 269.59197998 269.267700195 268.602050781 266.862609863 264.951660156 263.944000244 263.201446533 260.912445068 259.385559082 260.973968506 266.717407227 269.979003906 270.124328613 268.871917725 265.296539307 257.96496582 251.869857788 247.987213135 246.173080444 244.506072998 242.786010742 241.652755737 240.423309326 239.503692627 234.512268066 234.375808716 234.756790161 235.095428467 235.677307129 235.744567871 234.813262939 233.989395142 233.483963013 233.781265259 237.043258667 243.802581787 251.233535767 258.145843506 264.825042725 269.261413574 271.639312744 272.124603271 272.398925781 272.538391113 272.640686035 273.067199707 273.751220703 274.487884521 275.221405029 275.867248535 276.482421875 277.184112549 278.054290771 279.042633057 280.010131836 281.188171387 282.590759277 284.131713867 286.198699951 289.213012695 291.851318359 293.803466797 295.133148193 295.779785156 295.309356689 293.858947754 291.195922852 290.224182129 290.412780762 291.977752686 294.742126465 297.115478516 297.947845459 297.521087646 297.583862305 298.089202881 296.891021729 295.09777832 294.248718262 293.425933838 292.879974365 293.192932129 293.491149902 293.389770508 293.175537109 292.830780029 292.492034912 293.276275635 295.605865479 297.073516846 299.410308838 301.05368042 302.088043213 302.39855957 301.531158447 298.555664062 297.942779541 295.183746338 294.164001465 292.266998291 291.230316162 290.124053955 288.882141113 287.393829346 285.924743652 284.980316162 284.766174316 284.026397705 283.424865723 283.687927246 285.257537842 285.341369629 284.043243408 281.308929443 276.103363037 273.254089355 273.502655029 276.099914551 277.056732178 276.684265137 274.850128174 273.956665039 273.489135742 273.278930664 272.936645508 272.573974609 271.708679199 270.72833252 269.686950684 269.011688232 268.385406494 267.859893799 266.803955078 265.621612549 264.724761963 263.322357178 262.232391357 262.945861816 266.755218506 269.599121094 269.775024414 268.298065186 265.011627197 260.684020996 257.293395996 255.047134399 253.054855347 250.337097168 247.476074219 245.266571045 243.385864258 242.031921387 221.830551147 221.951248169 222.959671021 223.751800537 224.966461182 225.720993042 224.743988037 223.355392456 221.275909424 221.114044189 226.535308838 235.883499146 244.849334717 252.685394287 260.173919678 266.157287598 270.304595947 271.536651611 272.104370117 272.580963135 272.898132324 273.323638916 273.976226807 274.555084229 274.981079102 275.478240967 276.050720215 276.787322998 277.736236572 278.67074585 279.499206543 280.68270874 282.115692139 283.595123291 285.83895874 289.097259521 291.701812744 293.426361084 294.524658203 295.10244751 294.639190674 293.096282959 290.481689453 289.729553223 290.362823486 291.901245117 294.810852051 296.720031738 297.252624512 296.784912109 296.823730469 296.071746826 295.799407959 295.368286133 295.277130127 294.035552979 293.43081665 293.5597229 293.700256348 293.403656006 293.479492188 293.338348389 293.181732178 293.612121582 295.439849854 297.285797119 297.75982666 299.491882324 301.947570801 304.449188232 305.284912109 303.087890625 302.765441895 299.870758057 298.439941406 296.242889404 294.85824585 293.52432251 292.170623779 290.692138672 289.235778809 288.411102295 288.128204346 287.156036377 286.281219482 285.973052979 285.805419922 285.293334961 284.03225708 281.652923584 277.032318115 274.45022583 274.526672363 276.390289307 277.193817139 276.758209229 274.997467041 273.991210938 273.416168213 272.8074646 272.09463501 271.681304932 271.071807861 270.377532959 270.267181396 269.935577393 269.248596191 269.071807861 269.03692627 268.595184326 268.18145752 267.467559814 266.933380127 267.549621582 269.815338135 272.13180542 273.399505615 272.812164307 270.134094238 265.690093994 261.866821289 258.178955078 255.093719482 251.630981445 248.113479614 246.590545654 244.516220093 242.051345825 245.47668457 245.558563232 245.764221191 246.092697144 246.818389893 247.073669434 246.666687012 246.113677979 245.322631836 245.21257019 247.241485596 251.556213379 257.221130371 263.062713623 268.593017578 271.002075195 271.519195557 271.688018799 271.931335449 272.087860107 272.20513916 272.498657227 273.042205811 273.6875 274.421508789 275.051147461 275.580810547 276.167877197 276.930114746 277.828735352 278.799102783 279.92956543 281.090454102 282.30569458 284.201629639 287.118286133 289.943634033 291.95199585 293.499603271 294.84475708 295.335418701 294.887573242 294.081207275 292.337921143 291.709503174 292.641448975 295.374511719 297.68661499 298.319946289 297.130889893 296.056549072 295.108215332 295.001098633 294.979064941 294.262969971 293.161712646 292.653381348 292.40057373 292.439575195 292.69052124 292.547668457 292.08102417 291.991210938 292.389953613 293.567810059 296.434417725 299.799804688 301.474578857 302.096191406 301.8409729 301.079437256 299.643890381 297.781188965 295.29977417 294.243041992 292.841644287 290.792541504 289.454467773 288.282287598 287.088745117 286.223907471 284.864715576 283.97354126 282.956848145 282.595184326 283.275054932 285.381225586 285.796691895 284.375823975 281.123931885 276.285797119 272.575469971 273.470214844 276.456359863 277.82131958 277.385620117 275.598052979 273.237426758 272.416412354 271.638153076 270.669952393 270.195922852 269.48928833 269.112548828 269.118011475 268.643127441 267.97454834 266.363006592 264.623931885 263.446502686 262.544769287 260.480682373 259.195251465 261.195343018 267.822631836 269.952880859 269.858856201 268.669616699 265.690063477 258.308319092 252.36517334 248.395233154 246.238891602 244.356155396 242.604858398 241.646987915 240.102920532 239.505783081 234.439331055 234.374023438 234.59715271 234.911468506 235.457901001 235.351486206 234.395080566 233.558959961 233.069702148 233.592605591 237.038696289 243.419769287 250.71522522 257.659057617 264.412902832 268.847961426 271.710723877 272.198181152 272.403533936 272.566955566 272.66796875 273.021057129 273.701812744 274.485137939 275.265014648 275.92276001 276.53894043 277.221679688 278.065673828 279.033447266 279.990020752 281.182403564 282.607788086 284.153259277 286.110076904 288.900695801 291.545898438 293.438415527 294.718414307 295.610534668 295.860809326 295.371185303 294.490692139 292.580291748 292.284118652 293.656829834 295.976989746 298.269470215 299.030395508 298.243865967 297.976928711 297.763153076 297.13470459 295.391082764 294.311950684 293.579315186 292.994171143 292.766967773 292.952697754 293.260772705 293.010253906 292.507873535 292.432495117 292.83291626 294.59085083 297.044769287 298.852355957 300.145599365 302.603729248 303.245117188 302.504486084 300.951660156 299.159210205 296.600952148 295.455657959 294.105499268 292.278594971 291.120849609 289.763702393 288.340423584 287.33807373 285.978485107 285.107330322 284.095947266 283.366546631 283.465393066 285.161834717 285.575408936 284.2293396 281.045593262 276.158172607 271.832977295 272.162811279 275.790924072 277.444274902 277.314849854 275.838745117 274.000305176 273.259643555 272.843963623 272.394805908 272.091217041 271.427490234 270.422424316 269.379852295 268.61730957 268.06539917 267.567810059 266.598571777 265.431762695 264.467285156 263.2784729 262.514526367 262.923980713 267.574737549 269.544250488 269.65222168 268.255493164 265.334899902 260.907653809 257.572875977 255.668228149 253.239807129 250.306411743 247.538650513 245.27053833 243.526550293 242.040939331 221.639190674 221.780349731 222.692764282 223.518707275 224.591888428 225.125564575 224.071594238 222.653930664 220.700469971 220.802780151 226.293243408 235.449645996 244.335662842 252.121170044 259.740997314 265.640045166 270.28994751 271.542907715 272.058563232 272.556915283 272.873077393 273.257049561 273.928192139 274.559112549 275.015014648 275.520568848 276.071838379 276.738739014 277.645996094 278.564727783 279.378692627 280.578521729 282.065612793 283.580474854 285.710144043 288.79776001 291.380310059 293.01348877 294.072418213 294.999420166 295.399749756 294.957855225 294.203460693 292.439544678 292.062194824 293.131164551 295.402313232 297.063781738 297.352172852 296.624542236 296.653594971 296.113952637 296.030151367 295.608642578 295.224975586 294.043701172 293.392333984 293.14440918 293.095733643 293.443725586 293.499908447 293.131652832 293.011230469 293.55267334 295.052429199 296.377197266 297.025360107 298.475830078 302.691314697 305.92288208 305.90612793 305.022827148 303.855865479 301.402496338 299.944152832 298.19934082 296.000061035 294.349700928 292.68963623 291.220306396 290.534973145 289.574493408 288.684997559 287.416381836 286.436309814 285.831420898 285.717376709 285.492492676 284.188873291 281.381408691 277.047302246 273.270477295 273.548522949 276.218414307 277.620391846 277.315979004 275.834197998 274.176513672 273.517547607 272.820526123 272.250244141 271.872131348 271.051147461 269.990631104 269.719360352 268.957733154 268.656524658 268.332305908 268.571166992 268.165588379 267.906646729 267.223602295 266.967163086 267.556762695 270.140808105 272.081573486 273.235748291 272.766448975 270.513885498 266.024627686 262.459289551 258.769775391 255.425857544 251.701141357 248.490341187 246.597824097 244.771987915 242.072250366 245.452255249 245.502532959 245.671890259 245.952362061 246.588439941 246.731719971 246.280593872 245.790878296 245.084716797 245.056106567 246.965698242 251.242996216 256.717559814 262.5078125 268.357299805 270.873046875 271.690551758 271.809112549 271.949249268 272.097961426 272.206512451 272.475097656 273.015045166 273.659088135 274.38369751 275.050292969 275.605682373 276.163848877 276.901580811 277.78338623 278.713867188 279.807434082 280.963867188 282.208129883 284.101226807 286.883605957 289.635101318 291.494293213 292.846191406 294.236999512 295.278991699 295.629058838 295.497070312 295.415466309 294.266662598 294.951477051 297.022399902 298.67074585 298.078887939 297.360656738 295.734527588 295.023834229 295.126342773 295.176239014 294.347167969 293.26940918 292.789672852 292.427978516 292.247497559 292.333068848 292.413208008 292.383239746 291.938903809 291.910644531 293.239562988 296.019348145 298.923858643 301.591278076 302.593994141 302.567749023 301.279998779 300.119903564 299.169921875 296.843292236 296.272064209 294.400787354 292.203582764 289.932525635 288.361572266 287.181091309 286.239013672 285.889831543 284.849609375 283.254638672 281.859649658 282.125854492 285.076782227 285.603820801 284.34072876 280.6746521 275.92276001 271.845367432 272.572967529 275.367218018 277.784179688 277.466125488 275.538970947 273.10949707 272.180877686 271.291046143 270.437072754 269.702056885 268.991546631 268.575958252 268.47076416 268.107574463 267.315490723 265.77835083 264.121398926 262.933013916 262.023345947 260.209655762 259.340942383 263.407409668 268.183776855 269.890594482 269.538238525 268.380767822 265.679077148 259.081390381 252.847900391 248.677871704 246.114654541 244.300918579 242.315429688 240.892166138 239.894500732 239.507614136 234.407455444 234.207443237 234.397888184 234.692657471 235.163619995 235.04296875 233.955230713 233.082962036 232.669219971 233.303543091 236.544677734 242.954986572 250.143844604 257.075622559 264.432342529 268.263824463 271.796386719 272.297607422 272.408050537 272.580749512 272.699615479 272.980560303 273.641815186 274.460540771 275.28326416 275.963745117 276.595672607 277.254455566 278.05368042 278.986663818 279.940063477 281.15637207 282.606719971 284.168121338 286.029449463 288.575408936 291.176208496 292.968383789 294.069519043 294.975189209 295.747650146 296.112609863 295.913818359 295.758789062 294.994262695 295.750671387 297.293731689 298.74710083 298.912963867 298.704589844 298.177429199 297.650085449 297.247131348 295.689025879 294.486602783 293.72354126 293.136474609 292.766296387 292.765869141 292.915008545 292.950531006 292.756896973 292.258666992 292.15826416 293.763214111 296.020996094 298.197814941 300.32321167 301.850524902 303.33984375 302.532958984 301.36618042 300.437866211 298.143737793 297.529846191 295.639251709 293.658325195 291.609436035 289.97946167 288.702819824 287.480773926 286.705749512 285.612670898 284.339447021 282.829833984 282.74697876 285.05255127 285.514984131 284.253753662 280.693328857 275.914886475 271.054229736 270.942047119 274.545013428 277.446746826 277.481750488 275.883148193 273.804351807 273.029998779 272.357025146 271.896057129 271.566131592 271.004394531 270.108703613 269.104034424 268.40838623 267.76651001 267.143981934 266.170684814 265.159515381 264.257843018 263.307861328 262.614929199 264.346496582 267.947814941 269.532043457 269.536407471 268.152069092 265.356933594 261.269927979 257.944152832 256.139038086 253.313949585 250.230773926 247.564407349 245.380096436 243.594116211 242.049057007 221.630371094 221.591506958 222.411254883 223.249862671 224.204833984 224.510940552 223.274154663 221.923324585 220.125610352 220.548431396 226.031921387 234.943771362 243.741455078 251.457427979 259.70904541 265.012756348 270.274932861 271.588897705 272.023834229 272.518127441 272.845672607 273.185943604 273.852478027 274.523651123 275.020019531 275.54196167 276.082794189 276.687957764 277.538146973 278.430786133 279.228179932 280.417419434 281.945251465 283.537017822 285.667541504 288.576538086 291.093780518 292.624328613 293.521759033 294.415802002 295.34197998 295.758026123 295.648284912 295.730224609 294.753173828 295.073455811 296.419250488 297.775695801 297.197723389 297.164855957 297.191802979 296.728759766 296.407165527 295.717224121 294.993591309 294.024963379 293.310974121 293.142944336 292.997283936 293.278625488 293.451202393 293.324493408 292.692321777 292.836669922 294.36114502 295.655456543 296.443054199 298.141387939 302.593719482 304.979858398 305.632995605 304.725494385 305.064331055 303.165771484 302.09173584 299.725799561 297.403411865 294.92880249 292.862945557 291.410491943 290.422729492 290.243164062 289.348388672 287.859405518 285.885498047 285.120391846 285.688446045 285.477508545 284.271911621 281.144287109 276.899475098 272.663299561 272.762084961 275.400085449 277.768585205 277.533599854 275.921020508 274.070892334 273.348937988 272.657501221 272.206573486 271.826599121 270.884735107 269.426300049 268.441619873 268.135742188 267.990447998 267.74029541 267.819091797 267.557006836 267.423034668 266.99307251 266.915374756 268.013427734 270.147216797 272.064147949 273.096160889 272.662780762 270.622772217 266.535430908 262.926086426 259.063079834 255.74987793 251.626647949 248.840377808 246.961242676 244.915222168 242.091140747 245.415786743 245.442001343 245.57598877 245.79914856 246.342346191 246.36781311 245.905761719 245.451858521 244.85786438 244.876525879 246.825668335 250.901992798 256.174041748 261.838226318 267.410766602 270.565643311 271.854675293 272.001983643 272.005004883 272.117614746 272.200927734 272.431243896 272.950073242 273.593383789 274.289031982 275.004302979 275.617279053 276.157897949 276.856536865 277.728637695 278.606292725 279.614562988 280.756072998 282.08102417 284.02645874 286.617156982 289.233428955 290.987945557 292.127685547 293.25982666 294.397979736 295.385040283 296.165802002 296.58682251 296.868255615 297.470245361 297.835632324 298.291229248 297.803436279 296.820587158 295.857116699 295.483215332 295.485107422 295.408508301 294.297180176 293.485778809 293.081665039 292.890777588 292.49621582 292.38470459 292.380401611 292.289428711 291.80368042 291.691986084 293.294006348 296.360961914 298.826324463 299.62878418 301.876525879 301.460601807 299.965423584 300.459259033 300.133575439 299.255096436 297.637237549 295.466644287 293.0050354 290.202911377 288.547302246 287.573944092 287.292785645 287.221557617 286.848419189 284.130950928 281.433776855 281.710418701 283.824615479 284.828460693 283.832580566 280.333953857 274.9112854 271.170654297 271.812072754 274.680297852 277.681091309 277.433868408 275.006286621 272.941497803 271.82019043 270.854095459 269.924346924 269.128082275 268.521850586 267.954589844 267.968200684 267.486114502 266.649475098 265.196624756 263.520141602 262.438049316 261.481109619 260.120178223 259.498962402 265.125976562 268.551513672 269.753875732 269.194000244 268.026092529 265.743804932 259.374023438 253.584671021 249.099517822 246.110351562 244.155197144 242.293823242 240.793807983 239.896392822 239.509078979 234.476150513 234.151443481 234.294464111 234.559188843 234.912628174 234.659103394 233.492614746 232.628204346 232.273880005 233.007492065 236.184188843 242.450073242 249.524536133 256.400421143 263.335113525 267.738922119 271.852661133 272.421356201 272.430480957 272.579345703 272.721343994 272.952423096 273.570983887 274.418365479 275.265655518 275.990936279 276.658538818 277.290130615 278.024291992 278.923858643 279.89050293 281.120758057 282.571533203 284.13458252 285.966400146 288.315460205 290.79385376 292.452850342 293.344451904 294.050354004 294.888641357 295.832763672 296.563232422 296.949493408 297.330383301 297.877380371 297.98614502 298.483642578 298.884857178 298.486358643 297.980499268 297.983062744 297.611328125 295.98739624 294.557312012 293.88293457 293.412231445 293.251800537 293.001739502 292.907989502 292.782104492 292.667541504 292.203155518 291.886230469 293.85836792 296.731750488 298.662109375 298.93560791 300.411743164 301.678192139 301.042755127 302.055450439 301.70614624 300.701721191 299.016479492 296.869995117 294.571960449 291.888793945 290.319519043 289.370849609 288.584350586 287.629089355 287.115600586 284.943115234 282.533569336 282.515319824 284.117767334 284.848907471 283.77911377 280.443756104 275.137939453 270.853820801 270.004608154 273.854614258 277.408843994 277.539489746 275.47756958 273.651245117 272.823577881 272.252441406 271.560760498 271.084991455 270.643188477 269.718109131 268.712982178 267.980377197 267.372070312 266.722076416 265.790100098 264.781799316 263.981567383 263.317779541 262.575744629 265.605621338 268.256103516 269.531921387 269.413146973 268.009490967 265.375823975 261.434051514 258.543731689 256.430511475 253.355316162 250.294769287 247.536422729 245.388504028 243.600616455 242.056152344 221.610778809 221.351226807 222.211288452 223.002593994 223.792175293 223.865310669 222.462753296 221.15826416 219.61126709 220.300506592 225.714614868 234.397598267 243.080825806 250.772888184 258.104827881 264.113647461 270.222503662 271.692260742 272.0184021 272.458190918 272.808563232 273.109161377 273.744659424 274.441680908 274.985198975 275.541564941 276.092010498 276.652069092 277.429199219 278.287353516 279.071228027 280.232055664 281.776580811 283.484344482 285.680877686 288.395690918 290.796691895 292.261688232 293.038848877 293.679779053 294.54989624 295.483123779 296.192871094 296.725860596 297.175323486 297.638214111 297.481140137 297.796569824 297.753417969 297.481292725 297.299804688 297.178436279 296.734588623 295.866638184 294.751953125 293.899505615 293.381195068 293.447509766 293.306854248 293.117431641 293.042510986 293.086914062 292.625457764 292.483551025 294.084716797 296.215637207 297.590911865 298.745422363 301.760192871 303.449493408 303.253570557 304.599121094 305.976837158 305.660766602 303.587799072 300.798065186 298.126098633 295.177947998 293.183929443 291.81552124 291.137084961 290.444122314 289.80368042 287.978546143 285.70489502 285.195861816 285.021606445 285.027252197 283.977264404 281.08190918 276.376525879 272.571624756 272.388183594 274.995483398 277.862426758 277.736450195 275.699035645 273.975891113 273.104034424 272.396942139 271.909851074 271.494140625 270.263244629 268.470611572 267.754302979 267.491149902 267.494232178 267.510101318 267.329711914 267.151611328 267.157897949 266.874084473 266.697601318 268.429046631 270.428527832 272.097625732 272.98046875 272.51574707 270.71685791 266.62197876 263.503051758 259.393615723 255.942932129 251.885345459 248.811920166 246.999053955 244.923034668 242.107559204 245.38961792 245.376037598 245.481567383 245.643295288 246.07019043 245.999954224 245.568527222 245.162765503 244.695846558 244.721542358 246.596237183 250.503265381 255.621856689 261.068756104 266.442657471 270.304077148 271.937652588 272.194702148 272.104766846 272.160247803 272.216033936 272.41305542 272.895629883 273.515197754 274.182098389 274.931121826 275.601593018 276.148071289 276.824371338 277.704559326 278.542266846 279.454071045 280.565032959 281.953643799 283.949615479 286.428527832 288.94909668 290.659423828 291.671630859 292.541259766 293.43057251 294.406555176 295.561431885 296.446960449 297.135772705 297.83480835 298.283294678 298.457427979 298.518493652 298.517822266 297.45880127 296.502685547 296.484405518 295.390594482 294.577331543 294.210723877 293.954772949 293.713806152 293.326385498 293.063781738 292.460205078 291.841552734 291.471893311 291.596313477 294.012207031 296.548126221 297.957458496 299.052642822 298.95022583 297.963409424 297.949005127 297.717254639 299.244934082 298.858306885 297.251831055 295.092529297 292.940460205 291.149353027 289.784973145 288.754882812 289.614105225 289.374603271 288.27645874 285.193450928 280.905151367 280.225952148 281.555084229 282.570953369 282.579986572 279.729827881 274.381561279 270.623687744 271.471313477 275.109771729 277.762908936 277.464050293 274.75213623 272.808776855 271.577301025 270.391326904 269.260162354 268.427307129 267.833740234 267.559326172 267.482574463 266.963531494 266.013671875 264.580200195 262.922515869 261.920166016 261.145599365 260.346405029 259.775238037 265.130065918 268.543426514 269.505706787 268.790588379 267.633636475 265.577636719 260.336547852 253.864868164 249.463851929 246.191177368 243.880981445 242.268676758 240.787902832 239.897537231 239.510162354 234.363830566 233.963668823 234.12336731 234.367904663 234.634353638 234.235351562 233.071456909 232.175643921 231.882904053 232.693359375 235.77746582 241.888336182 248.856109619 255.657211304 262.292175293 267.306762695 271.797485352 272.518249512 272.468048096 272.56942749 272.727935791 272.944641113 273.527526855 274.371368408 275.21762085 275.988708496 276.704223633 277.319091797 278.010162354 278.914703369 279.905395508 281.119232178 282.538391113 284.076477051 285.955718994 288.270965576 290.631256104 292.141601562 292.917602539 293.503204346 294.156768799 295.053344727 296.187561035 297.101593018 297.81262207 298.411712646 298.665710449 298.971679688 299.109588623 299.137512207 298.208557129 298.06463623 297.998931885 296.080566406 294.791625977 294.37286377 294.114105225 293.98815918 293.653381348 293.194000244 292.780792236 292.426086426 292.334442139 292.395904541 295.115142822 297.157043457 298.383148193 299.014190674 298.510772705 298.20111084 299.25189209 299.54901123 301.089477539 300.492553711 298.710144043 296.792816162 294.741973877 292.926361084 291.459472656 290.248535156 290.2371521 289.476348877 288.43939209 285.848602295 282.138214111 281.436645508 282.283782959 282.834014893 282.673278809 279.986785889 274.808837891 270.814086914 270.39453125 274.343505859 277.549743652 277.629974365 275.178771973 273.553070068 272.765655518 272.1199646 271.282623291 270.715515137 270.175384521 269.219299316 268.25567627 267.575866699 266.859008789 266.172698975 265.353607178 264.500305176 263.92578125 263.157653809 262.745422363 265.478363037 268.286132812 269.48928833 269.241851807 267.82723999 265.272216797 262.056732178 258.888275146 256.619476318 253.375015259 250.335159302 247.502822876 245.381393433 243.605056763 242.062301636 221.436950684 221.161239624 221.968154907 222.726196289 223.377822876 223.153503418 221.61227417 220.371688843 219.122360229 220.113922119 225.40222168 233.80770874 242.370803833 250.026504517 256.794952393 263.19732666 270.090362549 271.807067871 272.05368042 272.400146484 272.769897461 273.054473877 273.638916016 274.340301514 274.925079346 275.522064209 276.104217529 276.6456604 277.365997314 278.206420898 279.005767822 280.173065186 281.683380127 283.4480896 285.699890137 288.294372559 290.558532715 292.000396729 292.784759521 293.321502686 294.019317627 294.932556152 295.905517578 296.789520264 297.603118896 298.228942871 298.42868042 298.702087402 298.821563721 298.990905762 297.996337891 297.123931885 296.54699707 295.697479248 295.10333252 294.55859375 294.105163574 294.121673584 294.045684814 293.592956543 293.046386719 292.81942749 292.741516113 293.222473145 294.980407715 296.910430908 298.284484863 299.374633789 299.457458496 298.95803833 299.925933838 301.185150146 304.348175049 304.892913818 303.052185059 300.448730469 297.850585938 295.68560791 293.86807251 292.242095947 291.866668701 291.230102539 290.306976318 288.56262207 285.629486084 284.410888672 284.046203613 284.069274902 283.286956787 280.911468506 276.260772705 272.67678833 272.391967773 275.396789551 278.06149292 277.962402344 275.686645508 273.995452881 272.865997314 272.073150635 271.509216309 270.78918457 269.354675293 267.854675293 267.289398193 267.202514648 267.294128418 266.892486572 266.652069092 267.020477295 266.917419434 266.767028809 266.487030029 268.299987793 270.510437012 272.152679443 272.829467773 272.331756592 270.605133057 266.916625977 263.746734619 259.745788574 256.165924072 252.074752808 248.777786255 246.99206543 244.928314209 242.121643066 245.372817993 245.318939209 245.382507324 245.480819702 245.815475464 245.63822937 245.209274292 244.883377075 244.538284302 244.579849243 246.331604004 250.138198853 255.029678345 260.322143555 264.464141846 269.923736572 271.953094482 272.371948242 272.231689453 272.22833252 272.259429932 272.427978516 272.86227417 273.437774658 274.080505371 274.851715088 275.567047119 276.134552002 276.814025879 277.700958252 278.507293701 279.360992432 280.446044922 281.835571289 283.824249268 286.294403076 288.751831055 290.446685791 291.391326904 292.102325439 292.868377686 293.765136719 294.867950439 295.871917725 296.77935791 297.660705566 298.290130615 298.674530029 299.099975586 299.409759521 299.117797852 297.593566895 297.042724609 296.033233643 295.523254395 295.392913818 295.303192139 294.889373779 294.640838623 294.302001953 293.420288086 292.735839844 292.691680908 293.479400635 294.808013916 296.594787598 297.421386719 296.608978271 295.002868652 293.533081055 293.728424072 295.115966797 296.066070557 296.052307129 295.103729248 293.792144775 293.116516113 291.912414551 291.272521973 291.479492188 291.069763184 289.949584961 287.253662109 283.091552734 279.219665527 278.486419678 278.819946289 279.243804932 278.817596436 277.100494385 273.620391846 270.501220703 271.617340088 275.894714355 277.867401123 277.350463867 275.142425537 272.758056641 271.405303955 269.877532959 268.441925049 267.818115234 267.326141357 267.210357666 267.044708252 266.357543945 265.375244141 263.910583496 261.991516113 260.983825684 261.576751709 260.603637695 259.95324707 265.576446533 268.360809326 269.111297607 268.335510254 267.224365234 265.54510498 261.150634766 254.695571899 249.612823486 246.069900513 243.683837891 242.166320801 240.779541016 239.89793396 239.510848999 234.284820557 233.918533325 234.008071899 234.171585083 234.341308594 233.860595703 232.650787354 231.71333313 231.494415283 232.37310791 235.351272583 241.251419067 248.059616089 254.866836548 260.484558105 266.655914307 271.620239258 272.567260742 272.50994873 272.562255859 272.728759766 272.957183838 273.508911133 274.31741333 275.145233154 275.951873779 276.717956543 277.338684082 278.024963379 278.962615967 279.97064209 281.161834717 282.53894043 284.016204834 285.940185547 288.324859619 290.621398926 291.973876953 292.67175293 293.244506836 293.853302002 294.662841797 295.780303955 296.838378906 297.705718994 298.431793213 298.964630127 299.360015869 299.668945312 299.722686768 299.305908203 298.321655273 297.587432861 296.354919434 295.555084229 295.443847656 295.415435791 295.019104004 294.652557373 294.317199707 293.638946533 293.457489014 293.672302246 294.804992676 296.078125 297.830718994 298.225769043 297.605010986 296.275939941 294.646636963 295.785552979 296.977966309 298.148254395 298.062194824 296.929077148 295.653808594 294.764556885 293.294189453 292.431152344 291.847747803 291.229156494 290.114959717 287.778747559 284.142547607 280.670593262 279.828948975 279.918823242 279.98828125 279.315582275 277.613586426 274.409973145 270.954772949 270.858978271 275.340026855 277.740753174 277.619506836 275.496154785 273.449829102 272.719268799 271.976104736 270.880371094 270.351593018 269.805358887 268.801513672 267.816375732 267.040252686 266.297119141 265.734344482 264.796112061 263.938659668 264.076416016 263.256347656 262.526641846 265.780059814 268.197509766 269.318847656 269.013671875 267.617248535 265.276397705 262.416900635 259.434143066 256.679504395 253.312728882 250.291870117 247.508132935 245.370956421 243.60748291 242.067581177 221.310760498 220.98097229 221.759872437 222.463897705 222.931030273 222.445220947 220.759384155 219.550537109 218.62852478 219.99319458 225.094924927 233.140716553 241.576400757 249.154663086 254.501342773 262.328277588 269.854980469 271.881408691 272.109893799 272.354827881 272.734680176 273.021514893 273.549346924 274.239471436 274.852630615 275.481750488 276.106231689 276.651580811 277.334777832 278.171813965 279.023681641 280.22869873 281.68548584 283.412994385 285.688049316 288.226257324 290.39364624 291.812286377 292.625946045 293.184387207 293.905914307 294.854492188 295.863861084 296.786224365 297.655487061 298.362670898 298.884124756 299.309265137 299.678833008 299.861175537 299.412628174 297.707458496 296.530700684 296.094512939 296.112518311 296.046569824 295.711730957 295.303863525 295.034515381 294.81060791 294.066345215 293.603179932 293.986572266 295.329681396 296.640258789 298.521728516 298.968536377 298.78338623 296.851409912 294.724060059 295.753234863 297.807922363 300.066314697 301.493835449 301.080871582 299.203552246 297.4168396 295.469238281 294.280181885 293.176940918 292.59072876 291.79019165 290.236175537 287.594940186 284.302856445 282.874084473 282.379638672 282.412689209 281.703826904 279.70135498 276.130737305 272.75769043 272.398498535 276.142486572 278.242675781 278.058044434 276.340332031 274.04598999 272.787689209 271.785888672 270.946533203 270.155303955 268.265045166 267.649810791 267.3309021 266.926269531 266.715484619 266.549835205 266.152496338 266.285827637 266.861419678 266.578643799 266.366333008 268.53237915 270.552185059 272.145721436 272.637939453 272.126068115 270.528717041 267.050079346 264.174957275 259.955505371 256.369415283 252.195449829 248.918838501 246.981719971 244.931091309 242.133514404 245.349411011 245.256790161 245.288833618 245.312423706 245.526260376 245.284622192 244.846130371 244.602355957 244.32244873 244.446960449 246.140640259 249.740859985 254.36920166 259.45489502 263.239746094 269.476593018 271.902404785 272.527801514 272.376312256 272.31741333 272.329803467 272.475067139 272.845703125 273.361846924 273.981628418 274.765441895 275.518493652 276.115142822 276.818389893 277.698303223 278.478179932 279.323425293 280.413299561 281.746337891 283.677947998 286.139160156 288.574615479 290.26953125 291.186157227 291.843109131 292.5965271 293.524230957 294.601043701 295.556427002 296.44833374 297.307678223 297.937194824 298.364318848 299.022857666 299.705535889 299.748596191 298.877502441 297.701385498 297.073425293 296.745544434 296.518585205 296.529296875 296.271789551 296.397918701 295.951843262 295.589172363 295.293060303 295.281280518 295.889099121 296.478881836 297.076263428 297.963745117 296.243835449 293.313995361 291.345825195 290.719207764 291.183105469 291.965454102 292.619903564 293.170410156 293.736999512 293.65914917 294.302581787 293.461395264 292.26550293 290.790802002 287.948974609 283.939849854 280.357849121 278.367370605 277.711761475 277.912658691 277.503234863 277.342163086 276.188690186 273.451080322 270.250793457 271.292663574 275.820343018 277.524932861 276.734191895 274.433441162 272.647949219 271.211730957 269.590118408 267.976318359 267.37979126 266.97253418 266.859100342 266.612701416 265.936920166 264.984466553 263.246337891 261.214904785 260.252258301 261.490509033 260.703155518 260.622344971 265.34576416 267.955780029 268.575286865 267.820648193 266.816131592 265.44342041 261.855102539 255.073974609 250.032699585 246.013641357 243.596618652 241.887771606 240.768707275 239.897598267 239.511047363 234.201690674 233.764633179 233.847961426 233.95475769 233.999557495 233.407745361 232.17326355 231.267791748 231.132125854 232.036605835 234.933578491 240.644424438 247.297393799 253.963867188 259.524353027 265.864624023 271.312103271 272.561035156 272.558685303 272.566925049 272.73425293 272.98449707 273.505859375 274.250549316 275.046356201 275.886779785 276.702514648 277.347747803 278.063171387 279.044311523 280.064178467 281.236816406 282.583709717 283.971221924 285.910644531 288.408874512 290.660614014 291.871002197 292.502746582 293.113006592 293.790679932 294.623748779 295.69354248 296.682769775 297.520721436 298.265075684 298.84753418 299.257019043 299.682342529 300.024780273 299.972259521 299.160461426 297.733612061 296.863922119 296.481842041 296.495452881 296.624176025 296.302703857 296.192932129 295.987487793 295.68536377 296.021362305 296.01449585 295.85357666 296.511871338 297.436859131 298.583129883 297.400054932 295.125793457 292.941864014 292.368286133 293.106811523 294.30355835 294.997314453 295.104949951 295.208129883 294.669677734 294.470214844 293.532104492 292.398132324 291.208831787 289.147796631 285.502838135 281.96975708 279.802001953 279.082977295 279.265258789 278.669403076 278.45614624 277.215454102 274.335174561 270.05178833 270.518066406 275.524902344 277.582763672 277.258636475 274.987121582 273.344726562 272.642913818 271.761138916 270.766601562 270.094390869 269.403747559 268.416229248 267.457366943 266.751831055 266.255767822 265.462463379 264.510223389 263.709655762 263.849182129 263.028442383 262.664215088 265.755828857 267.910980225 269.002532959 268.718475342 267.396331787 265.265319824 262.631317139 259.705169678 256.798095703 253.322555542 250.238571167 247.517807007 245.357162476 243.607894897 242.072036743 221.295257568 220.806930542 221.528686523 222.142333984 222.47114563 221.748565674 219.870483398 218.716339111 218.177581787 219.943511963 224.791717529 232.431915283 240.695037842 248.210403442 253.391815186 261.405212402 269.478637695 271.887481689 272.176239014 272.324798584 272.704681396 273.003143311 273.475189209 274.138580322 274.763946533 275.41583252 276.086456299 276.653137207 277.316650391 278.166870117 279.097839355 280.362762451 281.792938232 283.416717529 285.637908936 288.16897583 290.305664062 291.697509766 292.521148682 293.158355713 294.002593994 295.073059082 296.167205811 297.053588867 297.796936035 298.384368896 298.87020874 299.31048584 299.800079346 300.250640869 300.14364624 298.952941895 297.169677734 296.75012207 296.951965332 296.979919434 296.981323242 296.792816162 296.741943359 296.425994873 295.795898438 295.47869873 295.425048828 296.866333008 297.927734375 299.662445068 300.061859131 298.6484375 296.035736084 294.314422607 294.486663818 295.630523682 297.071533203 298.680969238 299.106536865 298.439086914 296.726928711 295.975646973 295.020935059 293.895477295 293.085510254 291.916259766 289.501190186 286.028320312 283.699279785 282.390472412 282.33303833 281.399688721 281.388427734 279.748077393 276.42175293 272.704498291 272.097717285 276.297271729 278.088470459 277.797668457 276.059051514 274.291290283 272.871398926 271.598724365 270.537994385 269.352294922 268.000671387 267.455474854 267.244689941 266.945526123 266.739044189 266.215789795 265.94934082 266.003356934 266.532623291 266.111053467 266.585784912 268.701416016 270.507110596 272.040130615 272.423126221 271.909057617 270.428497314 267.339813232 264.533325195 260.249359131 256.641296387 252.28692627 249.161254883 246.967971802 244.931365967 242.143310547 245.315231323 245.196380615 245.189117432 245.146011353 245.230834961 244.918930054 244.513031006 244.341400146 244.14263916 244.315917969 245.822998047 249.271087646 253.643707275 258.514862061 263.002288818 268.779083252 271.723846436 272.634368896 272.526794434 272.417358398 272.435699463 272.560241699 272.841461182 273.279327393 273.879974365 274.671600342 275.466796875 276.095184326 276.82800293 277.683227539 278.440338135 279.327453613 280.483093262 281.746002197 283.540008545 285.956329346 288.395782471 290.062072754 290.954681396 291.641876221 292.488555908 293.507781982 294.630065918 295.595977783 296.476898193 297.305908203 297.956695557 298.461639404 299.15435791 299.874938965 300.107391357 299.841033936 298.779144287 298.101104736 297.86340332 297.857452393 297.886688232 297.943664551 298.176361084 299.132659912 298.518463135 298.005767822 298.263061523 298.33895874 298.433563232 299.114807129 298.466827393 296.630096436 293.996582031 291.544586182 289.911193848 289.520904541 290.083709717 291.040435791 293.569641113 295.319274902 295.758758545 294.785797119 293.128234863 290.54977417 287.171142578 284.668609619 282.002105713 279.198669434 278.029785156 277.804840088 277.581726074 277.310516357 277.106262207 276.078552246 273.369812012 269.82800293 270.123168945 274.697998047 276.475830078 275.348907471 273.186645508 272.310394287 271.039672852 269.271118164 267.980804443 267.133148193 266.634857178 266.421661377 266.08996582 265.29776001 264.3878479 262.530334473 260.433532715 259.619812012 260.861358643 260.749694824 261.231506348 264.828887939 267.298492432 267.84765625 267.24407959 266.402679443 265.276794434 262.485443115 255.291061401 250.133560181 246.038894653 243.334487915 241.668518066 240.707458496 239.896514893 239.510665894 234.196014404 233.758361816 233.67565918 233.701370239 233.68661499 233.025100708 231.733016968 230.886703491 230.81993103 231.713409424 234.460632324 239.86907959 246.39894104 252.957550049 259.560424805 264.865020752 270.755859375 272.464355469 272.614471436 272.598419189 272.770385742 273.03338623 273.499023438 274.157592773 274.921173096 275.799835205 276.679962158 277.362701416 278.117858887 279.145996094 280.182739258 281.344726562 282.687683105 283.984954834 285.916748047 288.454956055 290.660919189 291.760925293 292.336364746 292.984100342 293.780731201 294.728393555 295.815032959 296.775970459 297.644073486 298.463897705 299.143951416 299.618682861 300.058105469 300.455871582 300.526733398 300.158508301 298.733703613 297.786590576 297.516113281 297.546569824 297.859008789 298.027496338 298.139007568 298.968017578 298.590911865 298.303955078 297.550872803 297.323699951 297.685272217 298.559356689 298.302001953 297.425720215 295.562164307 293.365600586 292.068084717 291.8934021 292.651306152 293.271484375 294.71270752 295.171722412 295.257171631 294.659118652 293.63848877 292.075653076 289.94241333 287.302062988 284.245025635 281.105316162 279.375946045 279.139343262 279.000823975 278.792419434 278.811981201 277.726776123 274.375946045 268.657012939 269.08013916 274.497375488 276.619445801 276.110351562 274.246551514 273.170013428 272.509979248 271.478485107 270.679656982 270.057373047 269.231201172 268.162811279 267.29107666 266.666168213 265.999481201 265.159973145 263.992492676 263.371887207 263.483215332 262.886016846 262.87399292 265.242370605 267.323486328 268.466278076 268.33001709 267.123962402 265.213287354 262.851989746 259.825653076 256.747833252 253.29637146 250.270736694 247.492935181 245.346115112 243.606292725 242.075805664 221.233886719 220.656982422 221.295928955 221.803649902 221.977737427 221.018661499 219.015625 217.930526733 217.81262207 219.941116333 224.491867065 231.644836426 239.695571899 247.181747437 253.629058838 260.315643311 268.739227295 271.754364014 272.24130249 272.317657471 272.681518555 272.990844727 273.405426025 274.026672363 274.657684326 275.317626953 276.039459229 276.643707275 277.303253174 278.187652588 279.216430664 280.553283691 282.010314941 283.499237061 285.605804443 288.161560059 290.307861328 291.652435303 292.454498291 293.195617676 294.173095703 295.360961914 296.513427734 297.42880249 298.108642578 298.628326416 299.076141357 299.523284912 300.010192871 300.501403809 300.618286133 300.122070312 298.498962402 297.808532715 297.970733643 298.07119751 298.258911133 298.424835205 298.433502197 299.047485352 298.506286621 297.95211792 297.564666748 299.324005127 299.372650146 300.049591064 299.190856934 298.236328125 296.858276367 295.518371582 294.912872314 295.202209473 296.151885986 296.700866699 298.043182373 297.148406982 296.764434814 296.31930542 295.703430176 294.855316162 293.701660156 291.651428223 289.080047607 285.696044922 283.803161621 282.884277344 282.37979126 282.046142578 282.109771729 280.553863525 276.665283203 272.300354004 271.239440918 275.336364746 277.171417236 276.780578613 275.462738037 274.399993896 272.996429443 271.4375 269.801055908 268.858062744 267.698760986 267.409484863 267.17578125 266.9765625 266.581756592 266.034515381 265.625305176 265.816680908 266.267242432 265.683746338 266.823364258 268.61138916 270.2550354 271.784362793 272.206298828 271.701538086 270.347045898 267.745941162 264.754211426 260.366333008 256.777984619 252.49798584 249.295883179 246.987213135 244.929138184 242.151229858 245.289398193 245.138565063 245.097213745 244.968521118 244.94152832 244.557647705 244.167129517 244.085342407 243.960128784 244.225219727 245.627151489 248.804763794 252.888549805 257.492675781 263.318725586 268.025848389 271.439971924 272.630401611 272.63961792 272.495330811 272.540588379 272.64932251 272.852264404 273.222045898 273.822784424 274.617462158 275.445159912 276.110076904 276.844390869 277.666870117 278.415649414 279.357849121 280.595672607 281.844421387 283.528717041 285.933349609 288.354675293 289.912780762 290.736572266 291.432495117 292.322601318 293.379333496 294.550262451 295.607330322 296.60269165 297.561950684 298.378875732 299.044647217 299.686584473 300.189300537 300.38269043 300.335388184 300.056854248 299.1590271 298.779541016 298.73059082 299.180419922 299.723388672 299.977416992 300.051269531 299.84173584 299.519836426 298.759063721 298.661102295 299.552764893 301.522338867 300.558319092 298.054840088 294.983306885 292.281951904 290.669158936 290.221282959 291.515075684 293.635467529 295.463043213 295.963317871 295.189239502 293.402618408 290.579040527 287.345275879 284.9609375 282.502685547 280.664093018 278.850646973 278.371063232 278.798309326 278.686737061 278.357330322 277.570831299 276.315551758 273.067596436 268.540435791 267.604400635 272.92565918 274.824310303 273.797454834 272.67755127 272.118377686 270.655700684 268.983795166 267.643798828 266.71661377 266.211639404 265.908508301 265.355773926 264.38848877 263.479125977 261.829681396 259.783508301 259.033782959 259.728881836 260.66784668 261.834350586 263.900634766 266.448577881 266.97644043 266.58303833 265.953460693 265.086608887 262.538085938 256.222625732 250.115570068 245.765426636 243.04675293 241.621383667 240.387664795 239.894683838 239.509506226 234.181900024 233.59211731 233.519470215 233.539871216 233.370178223 232.536865234 231.297683716 230.524734497 230.549636841 231.440002441 234.09046936 239.134857178 245.389434814 251.840377808 258.815673828 263.932769775 269.981872559 272.28515625 272.659454346 272.658508301 272.836730957 273.090087891 273.483856201 274.073303223 274.83392334 275.748413086 276.686004639 277.39944458 278.174285889 279.2265625 280.2784729 281.441040039 282.805969238 284.104003906 285.9765625 288.498077393 290.621459961 291.650115967 292.209197998 292.85647583 293.694152832 294.726623535 295.885009766 296.905273438 297.869903564 298.779418945 299.574157715 300.175170898 300.599029541 300.785430908 300.734619141 300.499908447 300.046783447 299.225494385 299.025146484 298.96206665 299.321411133 299.880279541 300.080810547 299.981781006 299.686859131 299.475189209 299.054046631 298.719573975 299.185577393 300.574920654 300.641693115 299.101867676 296.534057617 294.538482666 293.230895996 292.48135376 293.486419678 294.979431152 295.609191895 295.64263916 295.29989624 294.363220215 292.985870361 290.892578125 288.648132324 285.888122559 283.328613281 280.995391846 279.779754639 280.043945312 280.038635254 279.98046875 279.568695068 278.35345459 274.082092285 267.165496826 267.664855957 272.615478516 274.884033203 274.63394165 273.851593018 273.203491211 272.515411377 271.379608154 270.523529053 269.824249268 268.838195801 267.810791016 266.973510742 266.349884033 265.552246094 264.793334961 263.632598877 262.92590332 263.08416748 262.743377686 263.13961792 264.236236572 266.444793701 267.767486572 267.814605713 266.79107666 265.092590332 262.858062744 260.07598877 256.612670898 253.128295898 250.226257324 247.450744629 245.319625854 243.602676392 242.079071045 221.155395508 220.468338013 221.133544922 221.502044678 221.526260376 220.33934021 218.227844238 217.216445923 217.550033569 219.978118896 224.246765137 230.895812988 238.563995361 246.034423828 253.277023315 259.551818848 267.699066162 271.443115234 272.26361084 272.338775635 272.667480469 272.978027344 273.348114014 273.93081665 274.556030273 275.217895508 275.980865479 276.628479004 277.298309326 278.217346191 279.309814453 280.692962646 282.215057373 283.67868042 285.700164795 288.269561768 290.368865967 291.637634277 292.418945312 293.226104736 294.279327393 295.471130371 296.584686279 297.508300781 298.257568359 298.869781494 299.430053711 299.984039307 300.445068359 300.795593262 300.912811279 300.610534668 300.068115234 299.235229492 299.485717773 299.296722412 299.70022583 300.148620605 300.093292236 299.961364746 299.679962158 299.462738037 299.562957764 299.999145508 299.714385986 300.26272583 299.598175049 299.374694824 297.678436279 296.864349365 296.3984375 295.907653809 296.966796875 298.17477417 297.860198975 297.205200195 296.999847412 296.849731445 297.094360352 295.81930542 293.538970947 290.819702148 288.463439941 286.027770996 284.737091064 284.426544189 283.989471436 283.712127686 283.046386719 281.340698242 276.56463623 271.493560791 269.27255249 273.619354248 275.54800415 275.422210693 274.935913086 274.354705811 272.899047852 271.062561035 269.787780762 268.769927979 267.517028809 267.362213135 267.16003418 266.992034912 266.475982666 265.965576172 265.678344727 265.6378479 266.144439697 265.670928955 266.961547852 268.286346436 269.759643555 271.419311523 271.933776855 271.491210938 270.27947998 267.929656982 265.126281738 260.417510986 256.838867188 252.547149658 249.273468018 247.078445435 244.924407959 242.157608032 245.260452271 245.085632324 245.000656128 244.793884277 244.664398193 244.207138062 243.833389282 243.83934021 243.822402954 244.16758728 245.485168457 248.375213623 252.147521973 256.449707031 261.929351807 267.471160889 271.013977051 272.546325684 272.711669922 272.559967041 272.624328613 272.726867676 272.872894287 273.211608887 273.815490723 274.606536865 275.451782227 276.151062012 276.871154785 277.662994385 278.416717529 279.39855957 280.711364746 282.023956299 283.694244385 286.129608154 288.436340332 289.840240479 290.61114502 291.324493408 292.221740723 293.262390137 294.448455811 295.587890625 296.680938721 297.669250488 298.424743652 299.032928467 299.624023438 300.086914062 300.359100342 300.534118652 300.591552734 300.423980713 300.096893311 299.877807617 299.933868408 300.120849609 300.24420166 300.257446289 300.211608887 300.050109863 299.782043457 299.516021729 300.2706604 302.613220215 301.345489502 298.572998047 296.380950928 293.961273193 292.480285645 292.988891602 294.700744629 295.588531494 295.645172119 294.798492432 293.07723999 289.796936035 287.117675781 285.318603516 283.099578857 281.666046143 280.570831299 279.388916016 279.254486084 279.776733398 279.65826416 279.219665527 278.225646973 276.13470459 272.466461182 266.895172119 266.046630859 269.611053467 272.638549805 272.815185547 272.470001221 271.981018066 270.216522217 267.907073975 266.854736328 266.141906738 265.608703613 265.2472229 264.47668457 263.384521484 262.501708984 260.965759277 258.815917969 258.360595703 258.557220459 259.945648193 261.032867432 263.092163086 265.258666992 265.905059814 265.823059082 265.459838867 264.80947876 262.672119141 256.412567139 250.431762695 245.421310425 242.809143066 241.569473267 240.093765259 239.870986938 239.507369995 234.139770508 233.539077759 233.391494751 233.292358398 233.021789551 232.129974365 230.868759155 230.196685791 230.319335938 231.230621338 233.710769653 238.338485718 244.293487549 250.717376709 257.320129395 263.158691406 269.03918457 272.04309082 272.690795898 272.728271484 272.905029297 273.143157959 273.472930908 274.022827148 274.810638428 275.752563477 276.721801758 277.474578857 278.249969482 279.280303955 280.335205078 281.504333496 282.925933838 284.326599121 286.164245605 288.656524658 290.598724365 291.538146973 292.135925293 292.832977295 293.689178467 294.737884521 295.934783936 297.007995605 298.009033203 298.881134033 299.567443848 300.11114502 300.53515625 300.683746338 300.643188477 300.574584961 300.464447021 300.305725098 300.182434082 300.091827393 300.084594727 300.236785889 300.356811523 300.208526611 299.91229248 299.731536865 299.686431885 300.033538818 301.213470459 303.287628174 302.338226318 300.57434082 298.601806641 296.589599609 294.907501221 294.537872314 295.700500488 296.585632324 296.043365479 295.571075439 294.885498047 293.319488525 291.20199585 289.494812012 287.32913208 285.481933594 283.570922852 281.660552979 280.9168396 281.193603516 281.0234375 280.879760742 280.46661377 278.116241455 273.265869141 265.898529053 266.449859619 269.621704102 272.514099121 273.460540771 273.595581055 273.27520752 272.392089844 271.116516113 270.181854248 269.371643066 268.274902344 267.256103516 266.588897705 265.981964111 265.18069458 264.408081055 263.322723389 262.555267334 262.777618408 262.19329834 262.433227539 263.23550415 265.232757568 266.823974609 267.139068604 266.341003418 264.820800781 262.855865479 259.998016357 256.526428223 252.991668701 250.139022827 247.420074463 245.271728516 243.605987549 242.082077026 221.113647461 220.268432617 220.91242981 221.154998779 221.083724976 219.662414551 217.526870728 216.572860718 217.438293457 220.075195312 224.071182251 230.107330322 237.361709595 244.811660767 251.789749146 258.894714355 266.372497559 270.984649658 272.231994629 272.370178223 272.659118652 272.964630127 273.302520752 273.849212646 274.46661377 275.132598877 275.927703857 276.624847412 277.310760498 278.251403809 279.372283936 280.773712158 282.39276123 283.953460693 285.933868408 288.455596924 290.423095703 291.608337402 292.388580322 293.264678955 294.364044189 295.526641846 296.593292236 297.496795654 298.271392822 298.914398193 299.484191895 300.002258301 300.422729492 300.732147217 300.910949707 300.836090088 300.637481689 300.531097412 300.485412598 300.473358154 300.510528564 300.475494385 300.333099365 300.137786865 299.818511963 299.519470215 299.584747314 300.086547852 300.523468018 301.007263184 301.453033447 301.258605957 299.983856201 298.959533691 298.21270752 297.926879883 298.791015625 299.34677124 298.094421387 297.563476562 297.56741333 298.143432617 297.311126709 295.643218994 293.003143311 290.690979004 288.801513672 287.095123291 286.033660889 285.588165283 285.251098633 285.003723145 284.258392334 281.446838379 276.172790527 269.142608643 268.133636475 270.363800049 273.374725342 274.377075195 274.619171143 274.310516357 272.875030518 271.294311523 269.764221191 267.8387146 267.30682373 267.080627441 267.009063721 267.022735596 266.73538208 266.154876709 265.686798096 265.523651123 265.876068115 265.378662109 266.410491943 267.773895264 268.843963623 270.805389404 271.546203613 271.226348877 270.116088867 268.168731689 265.212341309 260.546844482 256.960784912 252.595367432 249.306564331 247.169006348 244.937393188 242.162918091 245.228134155 245.030792236 244.903823853 244.61920166 244.376190186 243.863037109 243.529708862 243.608901978 243.75944519 244.1771698 245.378005981 247.94543457 251.476760864 255.497116089 260.406860352 266.837097168 270.476867676 272.371276855 272.740997314 272.605834961 272.689758301 272.794158936 272.907012939 273.248260498 273.857635498 274.632232666 275.479675293 276.201721191 276.902069092 277.667663574 278.433013916 279.442230225 280.834533691 282.285430908 284.095672607 286.539367676 288.578094482 289.813415527 290.576934814 291.33682251 292.231170654 293.244140625 294.432678223 295.611938477 296.724029541 297.549926758 297.779174805 297.807403564 298.279022217 299.273590088 299.76348877 300.182617188 300.552124023 300.729553223 300.636383057 300.297576904 300.08001709 300.092895508 300.133789062 300.166412354 300.222351074 300.136413574 299.923522949 299.965911865 300.561340332 302.037780762 301.055236816 299.293273926 297.492645264 295.198516846 293.716033936 294.379150391 296.034057617 294.965515137 293.597412109 291.41229248 288.755767822 286.763092041 285.223449707 283.916534424 282.720184326 281.851593018 280.979766846 280.120117188 280.660186768 280.730224609 280.53616333 279.715270996 277.918914795 274.896118164 271.113098145 266.517456055 265.064453125 267.72769165 271.376922607 272.466583252 272.517883301 272.017211914 269.928619385 267.259460449 266.170898438 265.396026611 264.817810059 264.489318848 263.568389893 262.277374268 261.452148438 259.973571777 257.922943115 257.305847168 257.166137695 258.122528076 259.96963501 262.260162354 263.893676758 264.680084229 264.938293457 264.847045898 264.460266113 262.675231934 256.566497803 250.253814697 245.377960205 242.681182861 241.425064087 240.026885986 239.638809204 239.503677368 234.183624268 233.406356812 233.246002197 233.097946167 232.710174561 231.676925659 230.428588867 229.937393188 230.151794434 231.088577271 233.401870728 237.552978516 243.152053833 249.49331665 255.656997681 262.443237305 267.891723633 271.721343994 272.705841064 272.802368164 272.971069336 273.188751221 273.47052002 274.017822266 274.857818604 275.802734375 276.795806885 277.577697754 278.320129395 279.294372559 280.341888428 281.541900635 283.074066162 284.64553833 286.585235596 288.973266602 290.59552002 291.433532715 292.125793457 292.921417236 293.790802002 294.825805664 296.017883301 297.090454102 298.054962158 298.781524658 298.991088867 298.877075195 299.203765869 299.946136475 300.128173828 300.326293945 300.541290283 300.640716553 300.600708008 300.391357422 300.169250488 300.123443604 300.171905518 300.083648682 299.80645752 299.492248535 299.3359375 299.626556396 300.80569458 303.122344971 302.752929688 301.286468506 299.581115723 297.741943359 295.99407959 295.427764893 296.566680908 296.731384277 296.074066162 294.782165527 293.466400146 291.985290527 290.177001953 288.478088379 287.139953613 285.837036133 284.30178833 282.750335693 282.654632568 282.523468018 282.055145264 281.223724365 280.074188232 276.879364014 271.474487305 265.363952637 265.465118408 267.597625732 271.177093506 273.001922607 273.403686523 273.103729248 272.244049072 270.84866333 269.75177002 268.725463867 267.522125244 266.623535156 266.24407959 265.627441406 264.875579834 263.885681152 262.716674805 262.265808105 262.275360107 261.885864258 261.767181396 262.281707764 263.82019043 265.639404297 266.29385376 265.735565186 264.469512939 262.724243164 259.851074219 256.273040771 252.930679321 250.079452515 247.382492065 245.250198364 243.717102051 242.085922241 221.064590454 220.094345093 220.743606567 220.888427734 220.625396729 219.020080566 216.865829468 216.085189819 217.456298828 220.245605469 223.952819824 229.332351685 236.10383606 243.434646606 250.139328003 258.146972656 264.793609619 270.34854126 272.133758545 272.40625 272.655029297 272.952880859 273.268371582 273.779815674 274.396484375 275.070648193 275.88659668 276.632720947 277.342681885 278.294128418 279.418823242 280.827972412 282.566802979 284.311096191 286.351989746 288.701141357 290.435394287 291.54284668 292.359710693 293.291748047 294.401855469 295.544464111 296.609313965 297.476989746 298.181762695 298.693450928 298.811431885 298.697662354 298.885345459 299.990753174 300.394042969 300.710968018 300.905426025 300.963531494 300.891479492 300.740478516 300.58883667 300.416625977 300.235107422 300.045440674 299.660095215 299.126678467 298.923400879 299.245788574 300.015319824 301.163116455 302.706359863 302.707092285 301.234375 300.133392334 299.359863281 298.372589111 298.325775146 298.936828613 298.84979248 298.10269165 298.063232422 297.941864014 296.610534668 294.928924561 293.148162842 291.198699951 289.695953369 288.164794922 287.517211914 286.761077881 286.427978516 285.497406006 284.078552246 280.426055908 274.891937256 268.69229126 267.444488525 269.150115967 272.429168701 273.852264404 274.596466064 274.290283203 272.888183594 271.249633789 269.512817383 267.549468994 267.007324219 266.820465088 266.791870117 266.941162109 266.746765137 265.925323486 265.4765625 265.569488525 265.65536499 265.538024902 266.380493164 267.229644775 267.734954834 269.91696167 271.022888184 270.872894287 269.940490723 268.226409912 265.307678223 260.360717773 257.118927002 252.807403564 249.452346802 247.175765991 245.102096558 242.1693573 245.202713013 244.979187012 244.811660767 244.45022583 244.101699829 243.544448853 243.231231689 243.422576904 243.755203247 244.281860352 245.389389038 247.550842285 250.680480957 254.558044434 259.295379639 265.264099121 269.668914795 272.051635742 272.705505371 272.623657227 272.730224609 272.851257324 272.970703125 273.346679688 273.958190918 274.699615479 275.530731201 276.259887695 276.937164307 277.681549072 278.446777344 279.457092285 280.961608887 282.692932129 284.8175354 287.108612061 288.74798584 289.796478271 290.590484619 291.39163208 292.231018066 293.234375 294.464385986 295.678405762 296.723571777 297.213623047 296.477630615 296.144836426 296.222625732 296.863830566 297.809326172 298.459136963 299.344543457 300.358825684 300.655792236 300.40032959 300.016357422 299.900634766 299.959747314 300.04208374 300.04486084 299.818084717 299.489562988 299.434204102 299.849334717 300.596435547 300.776428223 299.829162598 298.374725342 295.749816895 294.04486084 294.663604736 295.341064453 294.08770752 290.34072876 287.861541748 286.073516846 284.982208252 284.889526367 284.068756104 283.171905518 281.900726318 281.484375 281.329650879 281.200164795 281.431274414 281.070709229 279.177459717 276.631774902 273.127075195 269.554656982 266.973297119 265.917175293 268.098236084 271.404296875 272.847290039 273.186706543 272.04208374 269.489593506 266.498840332 265.412506104 264.58581543 263.968414307 263.639373779 262.811340332 261.476501465 260.50012207 259.026550293 257.149383545 256.15222168 255.702301025 256.370544434 259.071655273 261.323760986 262.140869141 263.159332275 263.868377686 264.117675781 264.040313721 262.524261475 257.211273193 250.026870728 245.124633789 242.335784912 241.26373291 240.011795044 239.387207031 239.486785889 234.133499146 233.380081177 233.086639404 232.907897949 232.37701416 231.299057007 230.056427002 229.67199707 230.028656006 231.041015625 233.120285034 236.830352783 242.016586304 248.20904541 254.330169678 260.910339355 266.512054443 271.230224609 272.685150146 272.87878418 273.033233643 273.232177734 273.491882324 274.072113037 274.97668457 275.928710938 276.900604248 277.671905518 278.37097168 279.269378662 280.29675293 281.55758667 283.273620605 285.123840332 287.300598145 289.384887695 290.60244751 291.354827881 292.165405273 293.064819336 293.945526123 294.954437256 296.089660645 297.089599609 297.944396973 298.45211792 298.002319336 297.316833496 297.276885986 297.640167236 298.021820068 298.466491699 299.694000244 300.574676514 300.655395508 300.406036377 300.097473145 299.97088623 300.022247314 300.047912598 299.789306641 299.287109375 298.866516113 298.923034668 299.579376221 300.955200195 301.772125244 301.03237915 299.953948975 298.311401367 296.609191895 295.865539551 295.887573242 296.011444092 294.484954834 292.997070312 291.707885742 290.954711914 290.517089844 288.997741699 287.672058105 286.013549805 285.005249023 284.148956299 283.699523926 283.859222412 283.077331543 280.939483643 278.663604736 275.039123535 269.617828369 265.639587402 265.842315674 267.787719727 271.730133057 273.354217529 273.582183838 272.969573975 271.961181641 270.434082031 269.325653076 268.164398193 266.978057861 266.221588135 265.952209473 265.421600342 264.671722412 263.534820557 262.539459229 261.909820557 261.567687988 261.361968994 261.292999268 261.372039795 261.975738525 264.012695312 265.217315674 264.967681885 264.014190674 262.482910156 259.682922363 255.958648682 252.767730713 249.97996521 247.307128906 245.229324341 243.825210571 242.106567383 220.994644165 219.95262146 220.539337158 220.635772705 220.17741394 218.385620117 216.32585144 215.753433228 217.596359253 220.479797363 223.916778564 228.6222229 234.86026001 241.98298645 248.688262939 256.207824707 262.699127197 269.366210938 271.914215088 272.440765381 272.659423828 272.948760986 273.255767822 273.730163574 274.358703613 275.045501709 275.86895752 276.650146484 277.396087646 278.351867676 279.46786499 280.868835449 282.744476318 284.749389648 286.93560791 288.963989258 290.375823975 291.400238037 292.291748047 293.257843018 294.348419189 295.48059082 296.581054688 297.444152832 298.018768311 298.187561035 297.425872803 297.024230957 297.212646484 297.61819458 298.253204346 299.129241943 300.238952637 301.052764893 300.998291016 300.745788574 300.483947754 300.294250488 300.185882568 300.113769531 299.783233643 299.088165283 298.573547363 298.745391846 299.446044922 300.785583496 302.43560791 302.643890381 301.75012207 300.576568604 299.740447998 298.200775146 297.138092041 297.621154785 297.618225098 297.169891357 296.796875 296.855407715 296.637756348 295.286071777 293.725830078 291.537872314 290.311431885 289.330688477 288.428955078 288.127746582 287.813568115 285.549682617 282.812316895 278.748168945 273.622497559 269.928436279 269.2996521 270.990966797 272.867645264 274.455169678 274.935791016 274.245056152 272.850036621 271.06237793 269.226715088 267.357147217 266.850006104 266.661956787 266.572540283 266.924224854 266.696380615 266.017486572 265.607818604 265.455474854 265.299163818 265.356719971 266.60055542 267.0859375 266.989227295 268.660339355 270.290130615 270.410064697 269.695922852 268.19128418 265.510314941 260.21862793 257.12991333 252.71572876 249.473358154 247.15814209 245.22303772 242.208694458 245.186904907 244.922470093 244.719207764 244.27684021 243.834457397 243.245010376 242.977676392 243.265289307 243.789855957 244.450119019 245.480041504 247.241119385 249.91633606 253.610870361 258.061828613 264.333190918 268.750854492 271.630523682 272.609375 272.606689453 272.733520508 272.906036377 273.064666748 273.470245361 274.061157227 274.757873535 275.561859131 276.28994751 276.957489014 277.697998047 278.444061279 279.428466797 281.061279297 283.115875244 285.507171631 287.579925537 288.89831543 289.801177979 290.591186523 291.358215332 292.128753662 293.133422852 294.434875488 295.707550049 296.732391357 297.145599365 296.377258301 295.754608154 295.641235352 295.937805176 297.002258301 297.815032959 298.32244873 299.945404053 300.422546387 300.272766113 299.993682861 299.893341064 299.912445068 299.963867188 299.971374512 299.729827881 299.355285645 299.137023926 299.289489746 299.580566406 299.975860596 300.041625977 298.473236084 295.799407959 293.78225708 294.053131104 294.755950928 293.816772461 289.733642578 287.406463623 285.63067627 285.422576904 285.314941406 284.652587891 283.980560303 283.044921875 282.336303711 281.982055664 282.649688721 280.992492676 280.487426758 277.849365234 274.328887939 270.536224365 269.078552246 268.877868652 269.306549072 271.02142334 272.797302246 275.025146484 274.370544434 272.156616211 269.054138184 266.124511719 264.738800049 263.987182617 263.440856934 263.158813477 262.104217529 260.781188965 259.651275635 258.219665527 256.434234619 255.13923645 254.465362549 255.851867676 258.64831543 260.24887085 260.400360107 261.116699219 262.518737793 263.179229736 263.473358154 262.356994629 257.278259277 250.241043091 244.795410156 242.093978882 241.105438232 239.9947052 239.333602905 239.390579224 234.070510864 233.280334473 232.859451294 232.661972046 232.038162231 230.857299805 229.667922974 229.430130005 229.964370728 231.069381714 232.97227478 236.08644104 240.903869629 246.924179077 253.001693726 260.231750488 265.490112305 270.618499756 272.609954834 272.929046631 273.075744629 273.279296875 273.54989624 274.168212891 275.113800049 276.043579102 276.950286865 277.705688477 278.390411377 279.244049072 280.254425049 281.562347412 283.460662842 285.59576416 287.900421143 289.65802002 290.595123291 291.316192627 292.1925354 293.126403809 294.018707275 295.016876221 296.085083008 296.970581055 297.703277588 298.139678955 297.84664917 297.05670166 296.261047363 296.110809326 296.637451172 297.520874023 298.606384277 300.050323486 300.344940186 300.246002197 300.108734131 300.060058594 300.089111328 300.129150391 299.963043213 299.574523926 299.178009033 298.948059082 299.065093994 299.56048584 300.289306641 300.589416504 299.540649414 298.032775879 296.257110596 295.42300415 295.22164917 294.989318848 293.656829834 292.733917236 291.589599609 291.405914307 291.074615479 289.905914307 288.582183838 287.115478516 285.943115234 285.081390381 285.588287354 283.873657227 282.788757324 279.770721436 276.45022583 272.87890625 268.226257324 267.364074707 269.227386475 271.445068359 273.325531006 275.161682129 274.492736816 273.096862793 271.707641602 270.178436279 268.917053223 267.667388916 266.549194336 266.03704834 265.658203125 265.036895752 264.324279785 263.234741211 262.332244873 261.592163086 261.041229248 260.80960083 260.938018799 260.501861572 260.418823242 261.95980835 263.727630615 263.946472168 263.393341064 262.190765381 259.369110107 255.660202026 252.579605103 249.820068359 247.216247559 245.205810547 243.837127686 242.329467773 220.887145996 219.82661438 220.348693848 220.37171936 219.747817993 217.806137085 215.844284058 215.582778931 217.845901489 220.878036499 223.975875854 227.999786377 233.703659058 240.622421265 247.387969971 254.924667358 261.13369751 268.202484131 271.574432373 272.442474365 272.672424316 272.961456299 273.274688721 273.721160889 274.357727051 275.057617188 275.867370605 276.654510498 277.432312012 278.398345947 279.494262695 280.872467041 282.84942627 285.078613281 287.346343994 289.101226807 290.255401611 291.203308105 292.146850586 293.174743652 294.279785156 295.384643555 296.478607178 297.387115479 297.960327148 298.026275635 297.0234375 296.801452637 296.778533936 296.871917725 297.287017822 298.273620605 299.265777588 300.522766113 300.765960693 300.591552734 300.358734131 300.225280762 300.179382324 300.169006348 299.985534668 299.433227539 298.909423828 298.908905029 299.265563965 299.809204102 300.880432129 301.860290527 301.123626709 300.372283936 299.249420166 297.708465576 296.382720947 296.308807373 296.605010986 297.106018066 296.70980835 297.186706543 297.025970459 295.968933105 294.617614746 292.846282959 291.428009033 290.166137695 290.296325684 288.598907471 287.540435791 284.515045166 280.599334717 276.776092529 273.172973633 272.001617432 272.320617676 273.455505371 274.780212402 276.000915527 275.801757812 274.320129395 272.761474609 270.922241211 268.864990234 267.101654053 266.858764648 266.582275391 266.335296631 266.667022705 266.586669922 265.981719971 265.583099365 265.271148682 264.927856445 265.344512939 266.376647949 266.839874268 266.638305664 267.430908203 269.155487061 269.749694824 269.369232178 268.130828857 265.408752441 260.376312256 257.023986816 252.660049438 249.457839966 247.138580322 245.240631104 242.550750732 245.149993896 244.876159668 244.622253418 244.107040405 243.569030762 242.949447632 242.752243042 243.141387939 243.879074097 244.69493103 245.604690552 247.074401855 249.180923462 252.73298645 256.904052734 263.633544922 267.999328613 271.099731445 272.479156494 272.579589844 272.731018066 272.961029053 273.171142578 273.587219238 274.140441895 274.788330078 275.56072998 276.284179688 276.955474854 277.710144043 278.445098877 279.414367676 281.151794434 283.450042725 285.993560791 287.892486572 289.014526367 289.828521729 290.592529297 291.337921143 292.133758545 293.178741455 294.488677979 295.747131348 296.767028809 297.294586182 297.179931641 296.884735107 296.264190674 296.017700195 296.659179688 298.323883057 298.948425293 299.541259766 300.040924072 300.119537354 299.994628906 299.946655273 299.868499756 299.847106934 299.937774658 299.838867188 299.493713379 299.150939941 299.061462402 299.188232422 299.357208252 299.434295654 298.595153809 296.165466309 294.085205078 293.723083496 294.655944824 294.12210083 290.537963867 287.790618896 286.329071045 286.554138184 286.681396484 285.911468506 285.111206055 284.1953125 283.819732666 283.568328857 283.836517334 282.051391602 279.200378418 275.624755859 271.689910889 269.715209961 270.182006836 271.960754395 273.264465332 274.053955078 275.848327637 276.71295166 275.898284912 272.924255371 268.723876953 265.908447266 264.171264648 263.467407227 262.687957764 262.219543457 261.51348877 260.179718018 259.065307617 257.555145264 255.798309326 254.25227356 253.567047119 254.770889282 257.675140381 259.019226074 258.715148926 258.944946289 260.828369141 261.955718994 262.791015625 262.073516846 257.164520264 249.919326782 244.903823853 241.931243896 241.021133423 239.948471069 239.329071045 239.34286499 233.996582031 233.154891968 232.770309448 232.482452393 231.718673706 230.469940186 229.322814941 229.241241455 229.963882446 231.20463562 232.919052124 235.579330444 239.675506592 245.674224854 251.69921875 259.190734863 264.741668701 269.92401123 272.508453369 272.967132568 273.10760498 273.332977295 273.629638672 274.273834229 275.225341797 276.110473633 276.950134277 277.695281982 278.389068604 279.2394104 280.24822998 281.582885742 283.605102539 285.942932129 288.283477783 289.799865723 290.572784424 291.283477783 292.189117432 293.142303467 294.088897705 295.088470459 296.057067871 296.823242188 297.485351562 297.958984375 297.985137939 297.521759033 296.675201416 296.045776367 296.250091553 296.969696045 297.800811768 298.938201904 299.719726562 300.099609375 300.157318115 300.157714844 300.1512146 300.18838501 300.098693848 299.832733154 299.514343262 299.185668945 298.946868896 299.06463623 299.372924805 299.725250244 299.166229248 297.641723633 296.043914795 295.034698486 294.995635986 294.774963379 293.746337891 292.798126221 292.05670166 292.327819824 292.295288086 291.137573242 289.690002441 288.262512207 287.35748291 286.502227783 286.511566162 284.684753418 281.560150146 277.484161377 274.182891846 271.463775635 269.517089844 270.989471436 272.998413086 274.36114502 276.033233643 276.701446533 275.967254639 273.705871582 271.606933594 269.913879395 268.51651001 267.320831299 266.258392334 265.632019043 265.254577637 264.60256958 263.974761963 262.831542969 261.799285889 261.046478271 260.557922363 260.026763916 260.252929688 259.701446533 259.143035889 260.09765625 261.92074585 262.611083984 262.651794434 261.834411621 259.123931885 255.308197021 252.412017822 249.638473511 247.142471313 245.184082031 243.825561523 242.422592163 220.87197876 219.592254639 220.171615601 220.113037109 219.299789429 217.297531128 215.458908081 215.572128296 218.199417114 221.393554688 224.220336914 227.461151123 232.620819092 239.385879517 245.981964111 253.567428589 259.893157959 266.897033691 271.152923584 272.405914307 272.689178467 272.983001709 273.307373047 273.731903076 274.36807251 275.072845459 275.848724365 276.628845215 277.440612793 278.424163818 279.501373291 280.854522705 282.86706543 285.229705811 287.519256592 289.098052979 290.107513428 291.005737305 291.96762085 293.07333374 294.246429443 295.334350586 296.384002686 297.30581665 297.978820801 298.241027832 297.935821533 297.570556641 297.14239502 296.68157959 296.732147217 297.343292236 298.098175049 299.317169189 300.098602295 300.33416748 300.215545654 300.172729492 300.153442383 300.138458252 300.052764893 299.681274414 299.252502441 299.225646973 299.370941162 299.538665771 299.931854248 300.537445068 300.403015137 299.763671875 299.130310059 297.392547607 296.101379395 295.963928223 296.283874512 297.157318115 297.38659668 298.041229248 298.012268066 296.868560791 295.699005127 294.225860596 292.946777344 291.664367676 291.405609131 289.625427246 286.5625 282.409057617 278.461303711 275.753417969 274.317352295 274.68548584 275.860870361 276.386291504 276.934082031 276.994842529 276.340698242 274.826843262 272.726379395 270.522796631 268.227935791 267.019256592 266.66607666 266.336425781 266.257110596 266.423736572 266.529022217 265.965881348 265.507171631 265.032165527 264.746704102 264.998809814 266.130310059 266.391540527 266.163543701 266.60534668 267.7918396 268.810241699 268.985626221 267.956787109 265.291564941 260.22277832 257.080230713 252.715209961 249.426376343 247.203063965 245.222457886 242.657226562 245.134460449 244.825592041 244.532897949 243.937911987 243.298202515 242.71534729 242.528610229 243.052520752 244.043502808 245.001144409 245.85269165 246.848892212 248.66192627 251.880111694 255.949783325 261.54888916 267.454193115 270.4581604 272.333190918 272.550354004 272.738616943 273.02041626 273.278930664 273.687866211 274.195739746 274.800506592 275.541870117 276.252258301 276.936035156 277.718566895 278.458679199 279.426757812 281.217285156 283.664520264 286.277618408 288.065551758 289.088104248 289.857299805 290.591674805 291.378845215 292.313598633 293.438323975 294.687683105 295.824371338 296.798553467 297.466918945 297.732177734 297.703094482 297.512084961 297.434051514 297.504608154 298.179901123 299.287414551 299.701934814 299.716918945 299.796447754 299.923614502 299.943878174 299.803100586 299.707977295 299.849487305 299.885345459 299.630218506 299.294464111 299.074920654 299.056762695 299.075958252 298.938476562 298.345397949 296.96307373 295.04019165 294.256744385 294.968933105 294.660614014 292.311004639 288.983673096 287.933990479 287.48034668 287.527984619 286.868927002 286.116516113 286.138916016 285.809326172 286.68661499 285.982818604 281.321258545 277.351806641 273.139373779 269.567138672 270.206237793 273.758789062 277.240783691 277.41696167 277.856964111 278.205749512 277.755432129 276.474853516 273.806640625 268.882415771 265.639892578 263.79119873 262.821075439 262.126281738 261.690795898 260.793792725 259.6512146 258.511138916 257.005065918 255.227981567 253.601379395 252.718307495 253.408401489 256.624816895 257.882629395 257.191253662 257.24331665 258.836639404 260.463104248 261.969848633 261.724853516 257.258056641 249.544540405 245.00944519 241.879150391 240.917999268 239.860778809 239.326141357 239.343826294 233.970748901 233.083267212 232.686935425 232.23449707 231.374481201 230.05670166 228.953735352 229.103729248 230.056335449 231.437561035 233.054031372 234.923309326 238.706756592 244.606079102 250.474319458 256.64050293 264.048126221 269.168273926 272.40032959 273.007598877 273.142700195 273.396148682 273.722259521 274.374267578 275.309112549 276.145172119 276.926544189 277.664916992 278.379394531 279.25012207 280.267883301 281.601959229 283.658111572 286.121398926 288.47744751 289.852600098 290.547302246 291.265441895 292.163848877 293.144104004 294.174499512 295.161376953 296.022888184 296.691345215 297.328216553 297.871459961 298.066802979 297.932250977 297.748962402 297.855926514 297.914733887 297.500915527 297.870849609 298.374237061 298.850891113 299.903411865 300.201416016 300.184814453 300.177429199 300.246734619 300.179107666 299.917419434 299.631866455 299.364257812 299.098754883 299.002410889 299.044677734 298.954742432 298.51159668 297.597320557 296.209442139 295.344360352 295.156890869 294.966918945 294.421722412 293.404632568 293.132629395 292.826568604 292.848236084 291.79083252 290.380340576 289.823913574 288.912322998 288.507751465 287.209442139 283.608306885 279.482177734 275.348236084 272.638275146 271.793457031 273.835571289 276.670379639 277.339202881 277.941314697 278.137451172 277.633117676 276.438171387 274.419891357 271.486328125 269.55380249 268.022613525 266.864440918 265.974609375 265.293731689 264.62979126 264.078094482 263.469726562 262.293823242 261.142150879 260.348327637 259.963256836 259.36151123 259.541534424 259.141387939 258.365722656 258.842468262 260.106170654 261.087158203 261.745849609 261.359985352 258.780975342 254.99887085 252.223266602 249.458511353 247.094528198 245.111236572 243.815994263 242.419418335 220.739486694 219.454788208 219.989761353 219.885025024 218.824920654 216.822631836 215.16394043 215.679092407 218.60017395 221.984558105 224.660736084 227.227935791 231.805328369 238.349349976 244.891052246 250.900924683 258.776092529 265.433776855 270.652862549 272.326660156 272.704406738 273.010284424 273.347167969 273.754150391 274.386535645 275.090667725 275.821777344 276.589538574 277.434631348 278.435516357 279.500610352 280.809143066 282.779388428 285.196380615 287.487854004 288.975311279 289.938903809 290.830566406 291.783905029 292.945678711 294.205169678 295.313262939 296.311828613 297.197814941 297.962921143 298.458770752 298.555023193 298.438934326 298.202667236 297.907348633 297.505584717 296.96194458 297.571624756 298.421936035 298.918457031 299.934783936 300.131408691 300.206054688 300.209350586 300.152770996 300.101470947 299.829772949 299.481842041 299.521606445 299.649658203 299.580383301 299.600982666 299.586608887 299.122619629 298.834259033 298.623291016 297.448364258 296.064727783 295.92477417 296.471038818 297.620574951 298.420898438 298.545532227 298.502868652 297.506072998 296.471435547 295.679290771 294.267974854 292.567108154 290.335571289 288.979522705 284.884002686 280.177185059 277.075500488 275.969238281 276.918670654 278.682312012 279.162811279 279.015045166 278.507751465 277.741729736 276.628051758 275.091308594 272.450714111 270.225891113 267.701324463 266.801879883 266.599700928 266.254577637 265.970397949 266.270782471 266.416412354 265.841156006 265.141204834 264.560760498 264.670440674 264.795196533 266.078704834 266.054718018 265.682342529 265.813232422 266.630157471 267.746185303 268.46395874 267.729858398 265.214508057 260.167602539 256.965362549 252.858764648 249.527130127 247.220550537 245.209701538 242.648254395 245.11505127 244.774917603 244.441513062 243.780563354 243.056655884 242.476089478 242.350189209 243.009643555 244.247543335 245.333786011 246.172454834 246.83833313 248.290115356 251.153045654 255.087478638 260.073883057 266.520202637 269.684051514 272.175354004 272.531799316 272.762329102 273.084655762 273.376831055 273.759338379 274.234802246 274.813079834 275.52355957 276.208831787 276.901550293 277.713439941 278.474517822 279.448242188 281.213165283 283.711853027 286.364227295 288.110809326 289.112915039 289.868865967 290.583190918 291.476348877 292.621063232 293.807067871 294.960296631 295.934844971 296.824523926 297.550994873 298.02355957 298.334228516 298.474395752 298.506561279 298.607177734 298.756225586 298.977661133 299.297058105 299.569641113 299.694580078 299.803283691 299.902954102 299.800506592 299.658691406 299.72277832 299.8074646 299.724212646 299.569641113 299.389007568 299.244934082 299.168487549 298.994506836 298.547180176 297.678161621 296.649017334 295.684204102 295.813903809 295.484985352 294.052947998 290.418548584 289.104797363 288.141967773 288.195556641 287.932342529 287.548797607 287.46081543 288.577636719 288.330810547 285.584564209 279.456420898 275.261138916 271.794799805 269.487182617 272.085083008 277.183898926 280.030456543 280.985595703 280.090301514 278.78894043 277.629333496 276.678314209 274.238494873 269.130279541 265.637786865 263.419189453 262.308898926 261.402404785 261.007720947 260.321960449 259.043304443 257.980529785 256.541473389 254.731414795 253.304107666 252.071243286 252.557723999 255.368499756 256.803314209 255.739028931 255.866928101 257.03137207 258.72833252 260.85458374 261.262207031 257.003692627 249.874740601 244.858840942 241.605316162 240.727264404 239.781494141 239.323394775 239.344985962 233.943313599 232.952453613 232.520370483 232.070159912 231.036178589 229.649108887 228.66998291 229.051254272 230.186950684 231.820037842 233.322921753 234.57220459 238.01651001 243.689361572 249.414459229 254.756988525 262.946075439 268.287811279 272.30380249 273.073364258 273.204406738 273.48034668 273.832977295 274.467773438 275.371459961 276.167053223 276.908935547 277.64541626 278.373443604 279.257965088 280.276794434 281.571624756 283.523162842 286.050415039 288.459197998 289.808990479 290.513641357 291.268096924 292.147827148 293.155029297 294.247558594 295.187744141 295.949676514 296.590240479 297.271331787 297.888397217 298.279693604 298.512786865 298.720489502 298.942199707 299.108795166 299.166595459 299.251190186 299.529663086 299.894378662 300.173217773 300.221069336 300.150390625 300.187469482 300.305541992 300.230072021 299.942504883 299.706604004 299.583862305 299.466369629 299.298126221 299.144378662 298.92779541 298.4453125 297.600646973 296.824371338 296.141296387 295.546112061 295.230285645 294.871856689 293.84777832 293.577667236 293.009094238 293.047943115 292.351348877 291.377716064 290.518432617 290.363830566 289.206207275 286.61807251 281.126647949 277.048370361 273.807556152 272.550445557 273.507080078 277.276397705 279.511688232 280.612518311 280.074401855 278.886474609 277.69909668 276.627563477 274.700958252 271.378082275 269.054504395 267.426300049 266.306518555 265.573120117 264.945098877 264.259490967 263.4012146 262.810394287 261.572753906 260.376861572 259.760681152 259.297149658 258.608215332 258.704925537 258.685150146 257.813232422 258.088653564 258.653015137 259.442932129 260.568969727 260.815826416 258.291015625 254.87789917 251.955718994 249.231887817 247.005126953 245.036575317 243.805969238 242.415420532 220.732879639 219.311294556 219.825927734 219.615997314 218.40184021 216.406265259 214.989486694 215.933303833 219.119796753 222.758575439 225.299865723 227.317657471 231.260482788 237.565307617 244.065368652 249.294998169 256.842651367 263.442047119 270.027374268 272.180725098 272.715026855 273.049926758 273.394134521 273.784698486 274.416656494 275.116760254 275.801879883 276.560577393 277.434783936 278.447052002 279.491851807 280.716308594 282.540344238 284.955932617 287.27041626 288.733551025 289.726501465 290.672088623 291.618103027 292.785583496 294.091918945 295.23538208 296.213348389 297.072662354 297.851470947 298.481628418 298.842132568 299.033874512 299.094543457 299.00201416 298.799621582 298.709960938 298.877807617 299.26184082 299.69921875 300.037567139 300.206054688 300.329559326 300.317962646 300.229003906 300.17565918 299.961151123 299.674041748 299.774658203 299.999145508 299.904663086 299.733093262 299.458190918 298.771331787 298.110076904 297.911254883 297.435180664 295.863433838 295.490631104 296.020111084 297.313018799 298.604736328 298.602355957 298.788787842 298.439239502 297.478515625 296.356689453 295.019073486 292.305938721 290.385467529 286.90435791 282.653076172 278.938049316 277.232177734 277.357727051 279.43460083 280.722747803 281.352478027 280.616455078 279.324066162 277.968933105 276.754241943 275.203521729 272.268798828 269.761566162 267.323913574 266.648864746 266.631195068 266.292907715 266.169616699 266.177520752 266.142486572 265.689178467 264.797637939 264.429718018 264.464935303 264.433044434 265.59362793 265.653533936 265.009216309 265.260772705 265.888336182 266.796356201 267.72265625 267.429870605 264.909332275 260.490509033 256.648712158 252.741516113 249.498428345 247.198898315 245.197311401 242.637008667 245.09437561 244.723617554 244.354064941 243.626998901 242.840591431 242.225708008 242.152008057 243.011962891 244.463577271 245.701675415 246.626205444 247.064590454 248.072494507 250.62298584 254.501281738 259.339508057 265.201538086 269.060699463 272.064880371 272.526153564 272.785736084 273.13067627 273.435302734 273.787628174 274.255706787 274.840515137 275.528320312 276.183746338 276.872283936 277.682830811 278.443756104 279.4296875 281.150482178 283.62677002 286.330749512 288.11126709 289.130004883 289.905914307 290.654571533 291.623779297 292.812438965 293.980560303 295.071014404 296.000610352 296.831695557 297.508789062 298.021575928 298.48626709 298.878479004 299.171234131 299.387908936 299.465454102 299.466369629 299.576873779 299.714172363 299.743652344 299.811248779 299.925750732 299.880706787 299.71987915 299.671722412 299.747528076 299.792572021 299.738464355 299.587982178 299.439697266 299.359405518 299.251586914 298.966033936 298.409210205 297.558898926 296.876678467 296.570800781 296.058074951 294.849761963 292.585662842 290.076873779 288.906066895 288.903778076 288.90524292 288.809783936 289.378631592 290.00592041 287.867462158 282.467376709 276.74798584 273.440063477 271.549377441 271.518554688 274.261077881 279.083862305 281.546813965 281.774993896 280.155731201 277.7293396 276.374847412 276.352661133 274.069671631 269.763305664 265.484191895 263.499450684 262.069580078 260.836547852 260.288970947 259.569519043 258.594207764 257.626068115 255.976715088 254.386108398 253.102859497 251.603530884 251.831344604 254.294647217 256.002960205 254.649917603 253.565734863 255.391418457 257.018310547 259.615661621 260.714294434 256.572387695 249.923568726 244.794631958 241.360794067 240.520965576 239.726791382 239.320297241 239.346313477 233.916641235 233.006027222 232.378875732 231.838516235 230.732025146 229.280960083 228.463577271 229.039703369 230.340942383 232.136871338 233.713638306 234.686233521 237.612258911 242.896820068 248.547836304 253.777175903 261.189208984 267.746032715 272.276397705 273.168914795 273.291412354 273.566680908 273.933685303 274.534179688 275.401611328 276.173675537 276.905029297 277.642852783 278.365142822 279.223876953 280.210021973 281.453308105 283.266876221 285.785217285 288.25894165 289.667541504 290.453125 291.287200928 292.205535889 293.225219727 294.291351318 295.186279297 295.90322876 296.554168701 297.243408203 297.862030029 298.379730225 298.847290039 299.233459473 299.54107666 299.745239258 299.818572998 299.858886719 299.964019775 300.128662109 300.229980469 300.210845947 300.153411865 300.219726562 300.326324463 300.264190674 300.049560547 299.844055176 299.69543457 299.577026367 299.460754395 299.324188232 299.167449951 298.805328369 298.114807129 297.280395508 296.563171387 296.048522949 295.563293457 295.155731201 294.407440186 293.724365234 293.209533691 293.153167725 292.905426025 292.243682861 291.501403809 290.85333252 288.69720459 283.956237793 278.295288086 274.951019287 273.129241943 273.364654541 275.529144287 279.202606201 281.144592285 281.560760498 280.437835693 278.348449707 276.920013428 276.47833252 274.563262939 271.416015625 268.584106445 266.895202637 265.769561768 265.255737305 264.550720215 263.651489258 262.819549561 262.014038086 260.774658203 259.473388672 259.046661377 258.507171631 257.610687256 257.732574463 258.334594727 257.369903564 256.714691162 257.438842773 258.023590088 259.355438232 260.219818115 257.865264893 254.706542969 251.660186768 248.980682373 246.870285034 244.976348877 243.794540405 242.410568237 220.653793335 219.221435547 219.677612305 219.390213013 217.987411499 216.04536438 214.898712158 216.293182373 219.749099731 223.642105103 226.195510864 227.862594604 231.082901001 236.964431763 243.348510742 248.644088745 254.421035767 261.581665039 269.451843262 272.000732422 272.709686279 273.089141846 273.439483643 273.814453125 274.440124512 275.13482666 275.799255371 276.562866211 277.447479248 278.447814941 279.450927734 280.591033936 282.256011963 284.626464844 287.009643555 288.487915039 289.505371094 290.525054932 291.522491455 292.700012207 293.996368408 295.114196777 296.097167969 296.960144043 297.706787109 298.321655273 298.798156738 299.197906494 299.533935547 299.716064453 299.658508301 299.550109863 299.585235596 299.758789062 300.007751465 300.204467773 300.312530518 300.357788086 300.320251465 300.23828125 300.221130371 300.133850098 299.963012695 300.008392334 300.151000977 300.09954834 299.952880859 299.663269043 298.963104248 298.170074463 297.605499268 296.87701416 295.805511475 295.1121521 295.534454346 296.571472168 298.375091553 298.890930176 299.090209961 299.236907959 298.406738281 296.475708008 294.343383789 292.316345215 289.291015625 284.430145264 280.948974609 278.911560059 278.470855713 279.344116211 281.043518066 282.206359863 282.309570312 281.270080566 279.433380127 277.574127197 276.645233154 274.962097168 272.282440186 269.433654785 266.949005127 266.689880371 266.713226318 266.312164307 266.193939209 266.127105713 265.865478516 265.347930908 264.460144043 264.199310303 264.098602295 263.891021729 264.810821533 265.174865723 263.99041748 264.858154297 265.410003662 266.113128662 266.901489258 267.046386719 264.599578857 260.532745361 256.422363281 252.617507935 249.387145996 247.187057495 245.18321228 242.623474121 245.076782227 244.686904907 244.267120361 243.490722656 242.639221191 241.983108521 241.995254517 243.061279297 244.599731445 246.130340576 247.165374756 247.478591919 248.14630127 250.257217407 254.137237549 259.06262207 264.918884277 268.814697266 272.017883301 272.528442383 272.803649902 273.150146484 273.456298828 273.792724609 274.268493652 274.867218018 275.540924072 276.17791748 276.855072021 277.639434814 278.387176514 279.404602051 281.115509033 283.541900635 286.275543213 288.104095459 289.143707275 289.967254639 290.804962158 291.825073242 292.958282471 294.050933838 295.105438232 296.023925781 296.801239014 297.404754639 297.929473877 298.487701416 298.967712402 299.352539062 299.687072754 299.878845215 299.882537842 299.852661133 299.841247559 299.81072998 299.85748291 299.962005615 299.948913574 299.782623291 299.648864746 299.667541504 299.736236572 299.686096191 299.557373047 299.486694336 299.478118896 299.414367676 299.228790283 298.911987305 298.350219727 297.666809082 296.996765137 296.400177002 295.470703125 294.054504395 291.150939941 289.773345947 289.983428955 289.300415039 289.421386719 290.448150635 290.15335083 285.474822998 278.846862793 274.798919678 272.890411377 272.412506104 272.729766846 274.819610596 278.910675049 280.833770752 280.547821045 279.053833008 275.526153564 274.738861084 275.197967529 273.462524414 269.402069092 265.084228516 263.346099854 261.838745117 260.571685791 259.445709229 258.842468262 258.219787598 257.137329102 255.518890381 254.286819458 252.761764526 251.222091675 251.494064331 253.441772461 255.225891113 253.742080688 251.296844482 253.656188965 255.460662842 258.344451904 260.050842285 256.225036621 249.646621704 244.820983887 241.250152588 240.337890625 239.691680908 239.317245483 239.347839355 233.913192749 232.90171814 232.255935669 231.650650024 230.426956177 228.922439575 228.30229187 229.04914856 230.525802612 232.583312988 234.198883057 234.981704712 237.368515015 242.308166504 247.789245605 253.000473022 260.689178467 267.628143311 272.308502197 273.281799316 273.398040771 273.655456543 274.016448975 274.586425781 275.409545898 276.159698486 276.893096924 277.631072998 278.345489502 279.162872314 280.110534668 281.327819824 283.073547363 285.534240723 288.022949219 289.484558105 290.352050781 291.28692627 292.29083252 293.322113037 294.329406738 295.196289062 295.911010742 296.547485352 297.173797607 297.756469727 298.360534668 298.960235596 299.413818359 299.721405029 299.92980957 300.046020508 300.070495605 300.068511963 300.121734619 300.191802979 300.202453613 300.166595459 300.228881836 300.346343994 300.329986572 300.171905518 299.960449219 299.748565674 299.600463867 299.537200928 299.479003906 299.370849609 299.088470459 298.559631348 297.893615723 297.186889648 296.426055908 295.862609863 295.422393799 294.950195312 293.93548584 293.482391357 293.774017334 293.014434814 292.685546875 292.04486084 290.89666748 287.17868042 281.139526367 276.419891357 273.9609375 273.590423584 274.444610596 276.09475708 279.239135742 280.766448975 280.679504395 279.780395508 276.75201416 275.857788086 275.782714844 274.185821533 270.97958374 268.083770752 266.40423584 265.383453369 264.817626953 263.886199951 262.949859619 262.275817871 261.442565918 260.265533447 259.041168213 258.311462402 257.480194092 256.749603271 256.757202148 257.755157471 256.916290283 255.088439941 256.096069336 256.855651855 258.238067627 259.469818115 257.304351807 254.378997803 251.30078125 248.735351562 246.715332031 244.920822144 243.781997681 242.404830933 220.623214722 219.056472778 219.534423828 219.153213501 217.615325928 215.718688965 214.931091309 216.738388062 220.448028564 224.511383057 227.258010864 228.789535522 231.308868408 236.644363403 242.86946106 248.335250854 253.932388306 260.665985107 268.954284668 271.810943604 272.687927246 273.123413086 273.48260498 273.842285156 274.450653076 275.13470459 275.795074463 276.573669434 277.45123291 278.415374756 279.376983643 280.465942383 282.020477295 284.32043457 286.761352539 288.265716553 289.293731689 290.376068115 291.452423096 292.665679932 293.944213867 295.018737793 295.988250732 296.842559814 297.54776001 298.116638184 298.622497559 299.088531494 299.516784668 299.814666748 299.880004883 299.865814209 299.916503906 300.010192871 300.151245117 300.298736572 300.370635986 300.375671387 300.357452393 300.314819336 300.313262939 300.311096191 300.231567383 300.177825928 300.169647217 300.117248535 300.022796631 299.770446777 299.166412354 298.399810791 297.679321289 296.887420654 295.915649414 295.054260254 295.134124756 296.181243896 298.030334473 298.972015381 299.750732422 299.37588501 298.766326904 296.443084717 294.199493408 292.30078125 287.718261719 283.18939209 280.640411377 279.833221436 279.92199707 280.535766602 281.438720703 282.250335693 282.229522705 281.194793701 278.887634277 276.946228027 276.091766357 274.674987793 272.027984619 268.058898926 266.780273438 266.690765381 266.523986816 266.012756348 265.976013184 265.894378662 265.461639404 265.0574646 264.523284912 263.980651855 263.639587402 263.4815979 264.052001953 264.467102051 263.527801514 264.244232178 265.03125 265.601745605 266.206878662 266.567840576 264.302368164 260.346191406 256.259185791 252.587127686 249.271072388 247.181289673 245.177886963 242.607528687 245.056060791 244.626098633 244.188781738 243.345108032 242.440200806 241.777755737 241.900497437 243.088912964 244.811782837 246.688644409 247.825027466 248.138504028 248.302993774 250.159240723 253.982543945 259.016296387 264.983001709 268.792510986 272.043121338 272.539306641 272.804931641 273.138397217 273.449279785 273.790039062 274.279449463 274.884399414 275.548919678 276.180999756 276.844207764 277.594207764 278.352416992 279.448974609 281.158294678 283.510894775 286.212371826 288.073516846 289.137145996 290.018981934 290.964691162 292.02532959 293.068634033 294.076660156 295.116149902 296.031219482 296.765991211 297.326507568 297.881896973 298.482177734 298.943145752 299.289794922 299.625488281 299.868469238 299.935302734 299.904052734 299.866973877 299.854980469 299.913909912 300.009277344 300.0284729 299.877227783 299.687744141 299.622619629 299.657745361 299.610595703 299.541748047 299.539550781 299.552093506 299.503936768 299.380981445 299.164825439 298.771484375 298.140930176 297.408081055 296.746124268 295.932861328 294.72946167 292.45223999 291.329498291 290.105712891 289.818084717 289.370391846 290.276519775 289.611022949 283.484893799 277.511871338 274.554962158 273.574707031 273.578277588 273.564758301 274.141601562 276.862335205 278.596221924 278.022033691 276.605285645 274.202301025 272.956054688 273.45703125 272.102203369 268.121948242 264.685089111 262.972076416 261.599700928 260.289764404 259.128723145 258.395690918 257.623535156 256.549468994 255.137908936 254.1534729 252.301986694 250.979476929 251.205245972 252.594970703 254.46661377 252.55305481 250.534164429 250.516464233 253.909454346 257.117950439 259.312286377 255.607269287 249.746505737 244.424530029 241.190612793 240.208251953 239.673187256 239.315536499 239.349395752 233.918685913 232.785247803 232.157775879 231.463867188 230.134033203 228.594268799 228.185302734 229.117385864 230.782684326 233.099075317 234.96925354 235.672424316 237.318023682 241.894668579 247.265350342 252.512008667 260.467651367 267.711425781 272.390686035 273.399383545 273.516448975 273.747039795 274.08807373 274.62890625 275.397247314 276.119934082 276.860839844 277.602478027 278.314331055 279.10144043 280.038909912 281.289489746 283.016693115 285.384643555 287.809692383 289.293395996 290.220458984 291.257171631 292.363037109 293.405334473 294.350799561 295.200561523 295.926391602 296.536712646 297.112854004 297.691711426 298.331634521 298.925170898 299.367279053 299.679656982 299.874633789 299.964019775 299.981567383 299.975250244 300.024200439 300.127105713 300.171569824 300.131225586 300.182647705 300.342681885 300.401397705 300.285461426 300.098480225 299.909332275 299.784210205 299.710357666 299.630889893 299.499633789 299.231933594 298.813323975 298.289642334 297.609558105 296.773284912 296.078582764 295.554077148 295.133270264 294.345184326 294.19934082 293.318023682 293.31640625 292.428405762 291.777954102 290.510955811 286.134399414 280.256103516 276.086578369 274.293121338 274.518493652 275.134887695 275.763580322 277.605529785 278.933105469 278.641571045 277.751464844 275.722625732 274.753051758 274.498352051 273.215209961 270.214141846 267.570373535 265.881011963 264.858978271 264.301269531 263.302642822 262.436828613 261.473632812 260.84588623 259.752929688 258.77154541 257.757171631 256.924835205 255.950714111 255.810668945 256.975280762 255.922546387 254.079696655 253.703277588 255.743362427 257.205078125 258.759246826 256.715240479 254.045501709 250.822937012 248.449203491 246.584701538 244.882522583 243.762252808 242.3984375 220.621658325 218.907714844 219.361053467 218.955459595 217.271331787 215.431488037 215.011108398 217.244598389 221.307098389 225.410858154 228.406463623 230.008255005 231.965667725 236.710723877 242.6953125 248.390945435 253.927947998 260.238647461 268.541748047 271.617492676 272.646453857 273.151123047 273.52432251 273.869598389 274.449798584 275.114227295 275.780853271 276.580169678 277.444122314 278.360961914 279.306732178 280.396484375 281.87399292 284.095184326 286.535003662 288.063690186 289.108337402 290.24407959 291.385284424 292.619598389 293.885620117 294.934906006 295.882995605 296.719482422 297.389648438 297.938995361 298.440368652 298.857025146 299.244750977 299.577270508 299.74597168 299.845428467 299.948150635 300.022827148 300.126403809 300.295776367 300.395599365 300.431396484 300.473937988 300.477416992 300.438659668 300.434936523 300.392700195 300.265045166 300.154052734 300.108612061 300.039611816 299.777099609 299.257568359 298.617736816 297.88369751 297.104034424 296.310028076 295.349578857 294.933319092 295.861999512 297.562774658 298.997680664 298.915679932 299.556488037 298.400085449 296.085876465 293.822296143 291.673828125 286.89855957 283.257904053 281.250305176 281.065368652 280.902893066 280.472930908 281.127868652 281.704498291 281.660369873 280.387512207 278.077362061 276.167755127 275.165618896 274.159515381 271.38583374 267.651367188 266.620941162 266.513641357 266.256988525 265.749145508 265.806335449 265.432342529 265.006286621 264.60546875 264.316497803 263.587188721 263.31539917 263.20690918 263.209686279 263.585266113 263.281524658 263.789154053 264.323852539 265.132965088 265.584350586 266.067260742 263.876251221 260.283782959 255.802444458 252.623260498 249.267333984 247.159088135 245.220565796 242.589981079 245.054199219 244.600357056 244.11038208 243.214630127 242.255828857 241.598007202 241.884872437 243.21395874 245.086700439 247.213241577 248.584732056 248.989242554 248.9556427 250.360366821 254.00491333 259.225372314 265.16519165 268.997650146 272.152984619 272.565704346 272.795166016 273.104522705 273.416931152 273.785430908 274.291534424 274.891296387 275.539978027 276.180023193 276.832824707 277.571777344 278.401885986 279.629150391 281.324493408 283.549835205 286.132141113 288.010772705 289.11618042 290.055206299 291.058013916 292.116394043 293.087249756 294.048034668 295.092987061 296.035522461 296.780731201 297.387420654 298.009979248 298.574035645 298.960968018 299.237213135 299.460083008 299.58883667 299.67868042 299.761932373 299.830383301 299.880493164 299.974060059 300.068145752 300.136108398 300.031890869 299.825164795 299.709838867 299.705383301 299.681549072 299.676086426 299.69519043 299.653594971 299.593200684 299.512115479 299.276153564 298.89163208 298.338562012 297.67086792 297.01361084 296.278381348 295.324005127 294.413360596 292.556030273 291.112945557 290.056243896 290.137542725 290.799407959 289.340820312 283.261413574 277.809051514 275.463500977 274.730163574 274.30480957 273.678833008 273.145263672 274.292938232 275.725402832 275.760253906 274.806121826 273.19909668 271.947753906 271.46395874 269.910888672 266.999633789 264.164398193 262.690155029 261.727081299 260.259643555 258.866668701 258.073883057 257.183746338 256.057250977 254.715774536 253.557540894 252.019668579 250.678909302 250.867462158 251.876342773 253.640975952 252.684143066 251.458251953 248.531585693 251.403671265 256.105773926 258.598083496 255.067550659 249.473678589 244.033721924 241.024871826 240.120300293 239.636627197 239.309494019 239.349090576 233.921875 232.752670288 232.005004883 231.292312622 229.866577148 228.29750061 228.090652466 229.21496582 231.184020996 233.812240601 235.789505005 236.466384888 238.002288818 241.827987671 246.979812622 252.398666382 260.53326416 267.916992188 272.529449463 273.515686035 273.647888184 273.848297119 274.158966064 274.67364502 275.373535156 276.055023193 276.79675293 277.559265137 278.276245117 279.074279785 280.064880371 281.404327393 283.136016846 285.371398926 287.647491455 289.112884521 290.092468262 291.236541748 292.406829834 293.442810059 294.357574463 295.174743652 295.881011963 296.483703613 297.105560303 297.781158447 298.423370361 298.897979736 299.269134521 299.576568604 299.739959717 299.776153564 299.820037842 299.867126465 299.917419434 299.995544434 300.047485352 300.025939941 300.093109131 300.29284668 300.403991699 300.342193604 300.227355957 300.1484375 300.082824707 299.95199585 299.781341553 299.614990234 299.321502686 298.8699646 298.343688965 297.687896729 296.86630249 296.116943359 295.552947998 295.190124512 295.048126221 294.36239624 293.663757324 293.049926758 292.898223877 292.21496582 290.566131592 286.077178955 280.498840332 276.638702393 275.105102539 275.172271729 275.36239624 275.052581787 275.644012451 276.647155762 276.745056152 276.331268311 274.959136963 273.920135498 273.148529053 271.457366943 269.489349365 267.135437012 265.375579834 264.541595459 263.935668945 262.927734375 261.888549805 260.992279053 260.137359619 259.29309082 258.337615967 257.465148926 256.471435547 255.333496094 254.873519897 256.062011719 255.658950806 254.232910156 252.24105835 253.971130371 256.337158203 258.107025146 256.264068604 253.525009155 250.334335327 248.208297729 246.452804565 244.825393677 243.72227478 242.39440918 220.532180786 218.772537231 219.209259033 218.732788086 216.953094482 215.181793213 215.165374756 217.788574219 222.18572998 226.399749756 229.620391846 231.325622559 233.032943726 237.049972534 242.783218384 248.717376709 254.382507324 260.152984619 268.242095947 271.421112061 272.576660156 273.166259766 273.561401367 273.891235352 274.435943604 275.074493408 275.754638672 276.574798584 277.42755127 278.314971924 279.294311523 280.449707031 281.88961792 284.002288818 286.344299316 287.879638672 288.975097656 290.169586182 291.325256348 292.519042969 293.768676758 294.833343506 295.773712158 296.581207275 297.249633789 297.828918457 298.345184326 298.712432861 299.022094727 299.348815918 299.587646484 299.729949951 299.838195801 299.905731201 300.007843018 300.206237793 300.372802734 300.492950439 300.610137939 300.631530762 300.540252686 300.489044189 300.446594238 300.325531006 300.205322266 300.1847229 300.119750977 299.812194824 299.265441895 298.631622314 297.90826416 297.211181641 296.58392334 295.731628418 294.959075928 295.377685547 296.624755859 297.981719971 298.687103271 298.945465088 298.705963135 296.335571289 294.347930908 291.566009521 287.16696167 283.972991943 282.381011963 281.853607178 281.2605896 279.85546875 280.056610107 280.649780273 280.381469727 279.351409912 277.246154785 275.492553711 274.24911499 273.071838379 270.883972168 267.389221191 266.359313965 266.468566895 266.162536621 265.522857666 265.462585449 264.91317749 264.367950439 264.181121826 263.719390869 263.333648682 262.949676514 262.668426514 262.401977539 262.548614502 263.093719482 263.918792725 263.716674805 264.452575684 265.035888672 265.570648193 263.468017578 260.046722412 255.387008667 252.482681274 249.343917847 247.180953979 245.192489624 242.581100464 245.038574219 244.567825317 244.033676147 243.086212158 242.088531494 241.447891235 241.864715576 243.329025269 245.38911438 247.854705811 249.496582031 249.966506958 249.851303101 250.899353027 254.365890503 259.727081299 264.554229736 269.449615479 272.307403564 272.600219727 272.788085938 273.079986572 273.391998291 273.785675049 274.307769775 274.897216797 275.523010254 276.158660889 276.806152344 277.562225342 278.50378418 279.850128174 281.543823242 283.651763916 286.075622559 287.958404541 289.135467529 290.11416626 291.082061768 292.071838379 293.027374268 294.02243042 295.102294922 296.061248779 296.840057373 297.499389648 298.125946045 298.618927002 298.954650879 299.23046875 299.414672852 299.48034668 299.588195801 299.734405518 299.801361084 299.845153809 299.960968018 300.080444336 300.163208008 300.090484619 299.909759521 299.819946289 299.780273438 299.714660645 299.724914551 299.801483154 299.804077148 299.771118164 299.686279297 299.374176025 298.907531738 298.347015381 297.706176758 297.09967041 296.474884033 295.649475098 294.847595215 293.997039795 292.565002441 291.058959961 290.652923584 291.331512451 288.757904053 282.717346191 278.358978271 276.399017334 275.538391113 274.485870361 273.207794189 272.7109375 273.656341553 274.665283203 274.924255371 274.063446045 272.710388184 271.514221191 270.473052979 268.616455078 266.074554443 263.737854004 262.569976807 261.813110352 260.317626953 258.810577393 257.820526123 256.969665527 255.614822388 254.478591919 253.123840332 251.701416016 250.543945312 250.350799561 251.124984741 252.994384766 252.236907959 251.495727539 248.91859436 249.518310547 255.270217896 257.743469238 254.617385864 248.860626221 243.996032715 240.911865234 239.993896484 239.595703125 239.30480957 239.348098755 233.888824463 232.688522339 232.023544312 231.132904053 229.621276855 228.028671265 228.010009766 229.344833374 231.548583984 234.443756104 236.7056427 237.504974365 238.806594849 242.089691162 246.901306152 252.572128296 260.378936768 268.412322998 272.665313721 273.578186035 273.744232178 273.941833496 274.222595215 274.711029053 275.356964111 276.002380371 276.739562988 277.512939453 278.24005127 279.077880859 280.152618408 281.574310303 283.311706543 285.427429199 287.539581299 288.981719971 290.051116943 291.268859863 292.42401123 293.441253662 294.368804932 295.174438477 295.853851318 296.447479248 297.151184082 297.921020508 298.550750732 298.949951172 299.278778076 299.561401367 299.675445557 299.701721191 299.802307129 299.851867676 299.802337646 299.833984375 299.96875 300.053375244 300.107879639 300.24041748 300.359283447 300.345275879 300.235137939 300.16027832 300.131134033 300.050537109 299.935577393 299.821685791 299.525634766 298.955230713 298.305541992 297.649505615 296.893127441 296.188964844 295.653747559 295.253662109 295.032867432 294.632476807 294.018341064 293.469573975 292.826049805 292.427490234 290.36529541 285.609619141 280.776397705 277.365081787 275.865142822 275.411834717 274.894073486 274.639648438 275.018768311 275.780822754 275.993286133 275.47277832 274.43371582 273.470214844 272.348419189 270.544830322 268.679962158 266.638031006 265.002593994 264.305206299 263.641662598 262.364929199 261.271331787 260.593933105 259.673706055 259.282928467 258.130645752 257.367431641 256.332946777 254.714324951 254.18586731 255.337631226 254.992355347 253.798965454 252.374145508 252.534927368 255.713928223 257.368804932 255.682937622 252.995635986 249.944259644 247.984970093 246.297485352 244.743606567 243.676467896 242.390838623 220.54296875 218.662963867 219.093292236 218.530838013 216.670181274 214.972869873 215.35369873 218.370758057 223.058639526 227.460403442 230.859558105 232.736938477 234.217987061 237.710739136 243.158279419 249.368774414 254.916854858 260.612335205 268.159393311 271.280548096 272.49609375 273.155822754 273.578125 273.899169922 274.419250488 275.041473389 275.733184814 276.562835693 277.415710449 278.31036377 279.346008301 280.595336914 282.0703125 284.086303711 286.266540527 287.760192871 288.901153564 290.161346436 291.308349609 292.453186035 293.68637085 294.772613525 295.713012695 296.481719971 297.129302979 297.71270752 298.237518311 298.620056152 298.928222656 299.256988525 299.508758545 299.650115967 299.764373779 299.868011475 299.990753174 300.197052002 300.414611816 300.580383301 300.694946289 300.680267334 300.589050293 300.541687012 300.52255249 300.434661865 300.281433105 300.198242188 300.1434021 299.89465332 299.338500977 298.604919434 297.820587158 297.161804199 296.666534424 296.024810791 295.282073975 295.213409424 296.027954102 296.743347168 297.766296387 298.813354492 297.979217529 295.925720215 294.605712891 291.276031494 287.294281006 284.857635498 283.410614014 282.31741333 280.936126709 279.859771729 279.738037109 279.900115967 279.738342285 278.35446167 276.829437256 275.342163086 273.946990967 272.674133301 270.324829102 267.135070801 266.123779297 266.368438721 266.080352783 265.237518311 264.916595459 264.547027588 264.047332764 264.07989502 263.500915527 263.14666748 262.687194824 262.049835205 261.607299805 261.888885498 263.437805176 263.572143555 263.388793945 263.829376221 264.603118896 265.007995605 263.042724609 259.679718018 255.270202637 252.357040405 249.256210327 247.16166687 245.138244629 242.574401855 245.024139404 244.51612854 243.962677002 242.969421387 241.936126709 241.293197632 241.822982788 243.468887329 245.748291016 248.534439087 250.382614136 250.950332642 251.044235229 251.78843689 254.977386475 260.515991211 265.6980896 270.154876709 272.465179443 272.641601562 272.795013428 273.07598877 273.388061523 273.794952393 274.326721191 274.904937744 275.502441406 276.116912842 276.751037598 277.521362305 278.566345215 280.008300781 281.730926514 283.732818604 286.026062012 287.913726807 289.167114258 290.189208984 291.119049072 292.0519104 293.021911621 294.057891846 295.147949219 296.102325439 296.894470215 297.558441162 298.159790039 298.593566895 298.892303467 299.156433105 299.306030273 299.365631104 299.529602051 299.711334229 299.751525879 299.786376953 299.930999756 300.086669922 300.185546875 300.138183594 299.98614502 299.91192627 299.866516113 299.771331787 299.783843994 299.912231445 299.959472656 299.936920166 299.830688477 299.492126465 298.987243652 298.390167236 297.720062256 297.167236328 296.662841797 295.905151367 295.079864502 294.45602417 293.683929443 291.755462646 291.996276855 291.419372559 286.976348877 282.187713623 279.069091797 276.870513916 276.015533447 274.7003479 273.248077393 273.028289795 273.911712646 274.788635254 274.705627441 273.71661377 272.587585449 271.343902588 269.960632324 267.98449707 265.699890137 263.603210449 262.416992188 261.458343506 260.243530273 258.677337646 257.776092529 256.690887451 255.169403076 254.109832764 252.629440308 251.108398438 250.102142334 250.022399902 250.326690674 252.154953003 252.738174438 251.373260498 248.946929932 247.299560547 254.215362549 256.938232422 254.038497925 248.472122192 244.006164551 240.854415894 239.87890625 239.558731079 239.305999756 239.346969604 233.831359863 232.659790039 231.905700684 230.992721558 229.407836914 227.783676147 227.943191528 229.506881714 231.947052002 235.112213135 237.64604187 238.650619507 239.909667969 242.634628296 247.05557251 252.997360229 261.956420898 269.111450195 272.779998779 273.602081299 273.810760498 274.026031494 274.279388428 274.741516113 275.340454102 275.962738037 276.692230225 277.453308105 278.175872803 279.037689209 280.179229736 281.676116943 283.427307129 285.446533203 287.423034668 288.864074707 290.043121338 291.312591553 292.432281494 293.426483154 294.369140625 295.187561035 295.870910645 296.48538208 297.234344482 298.009674072 298.59387207 298.959320068 299.26751709 299.511413574 299.590393066 299.649139404 299.810760498 299.864837646 299.758087158 299.779205322 299.98248291 300.124633789 300.146942139 300.2059021 300.308990479 300.320953369 300.210510254 300.132171631 300.154785156 300.148986816 300.062713623 299.929962158 299.642974854 299.06439209 298.369293213 297.685791016 296.92288208 296.249816895 295.794342041 295.40447998 295.023651123 294.783203125 294.410858154 293.201629639 293.089996338 292.335479736 289.227020264 285.08303833 281.018737793 277.748168945 276.372131348 275.496826172 274.746704102 274.669250488 275.210174561 275.743835449 275.668792725 275.133300781 274.286407471 273.068664551 271.767578125 270.08493042 268.2449646 266.282165527 264.655822754 263.531463623 262.808929443 261.515380859 260.842895508 260.15057373 259.301940918 259.054168701 258.264160156 256.879486084 255.67666626 254.211807251 253.226287842 254.48147583 254.846725464 253.076004028 251.955993652 250.896255493 254.767501831 256.721405029 255.055648804 252.641815186 249.496307373 247.753814697 246.149154663 244.655761719 243.632736206 242.386810303 220.499206543 218.520614624 218.962539673 218.341186523 216.401031494 214.799316406 215.547073364 218.956329346 223.909301758 228.560394287 232.11958313 234.143005371 235.667358398 238.59463501 243.731552124 250.142883301 257.269317627 261.358734131 268.240203857 271.184417725 272.420959473 273.134887695 273.580078125 273.893554688 274.395812988 275.019317627 275.716644287 276.541442871 277.391693115 278.288787842 279.36114502 280.703033447 282.25390625 284.200927734 286.23651123 287.673431396 288.830078125 290.130340576 291.293701172 292.439086914 293.660064697 294.727416992 295.640380859 296.392456055 297.022766113 297.578613281 298.075958252 298.461242676 298.782470703 299.11618042 299.396148682 299.583496094 299.749206543 299.900878906 300.062713623 300.279541016 300.518432617 300.687408447 300.752746582 300.69744873 300.628997803 300.606689453 300.616241455 300.564422607 300.380432129 300.214630127 300.13873291 299.948242188 299.43069458 298.683868408 297.882202148 297.216430664 296.720428467 296.236938477 295.732543945 295.455932617 295.682617188 296.389923096 297.014190674 297.07913208 296.52243042 295.470581055 294.270080566 291.263977051 287.909423828 285.260559082 284.321014404 282.818267822 281.354522705 280.489440918 280.0753479 279.991119385 279.583374023 278.147705078 276.821014404 275.444671631 273.949645996 272.385131836 269.94329834 267.093780518 266.079711914 265.875274658 265.452758789 264.817779541 264.639892578 264.21862793 263.549987793 263.599334717 263.374237061 262.790802002 262.136352539 261.674224854 260.837371826 261.73727417 263.813598633 263.153808594 263.017974854 263.248535156 264.038665771 264.468719482 262.542541504 259.396148682 255.11831665 252.252380371 249.159896851 247.1121521 245.081420898 242.566879272 245.00819397 244.476013184 243.89024353 242.865112305 241.784378052 241.157333374 241.78074646 243.597457886 246.162582397 249.210128784 251.228256226 252.164581299 252.301147461 253.010177612 255.918060303 262.387542725 266.8309021 270.821533203 272.606018066 272.694122314 272.826934814 273.096038818 273.405578613 273.815093994 274.342468262 274.899841309 275.462280273 276.039306641 276.652282715 277.438293457 278.553588867 280.076782227 281.847717285 283.783325195 285.987365723 287.875305176 289.185028076 290.256408691 291.174255371 292.083587646 293.065307617 294.098754883 295.158447266 296.11807251 296.937316895 297.593109131 298.152587891 298.551544189 298.834533691 299.05670166 299.161956787 299.214447021 299.423431396 299.656036377 299.714233398 299.764587402 299.92388916 300.09564209 300.243865967 300.259399414 300.11932373 300.026733398 299.99621582 299.908630371 299.898132324 300.01965332 300.090148926 300.073486328 299.956451416 299.627838135 299.118499756 298.483306885 297.776519775 297.260955811 296.847381592 296.134765625 295.278564453 294.640045166 294.049835205 293.415313721 292.868133545 291.254943848 285.80960083 281.717498779 279.062469482 277.655426025 276.41506958 274.815216064 273.383911133 273.318359375 274.717529297 275.23059082 274.627868652 273.398986816 272.203979492 271.083862305 269.620880127 267.46270752 265.693756104 264.016479492 262.468353271 261.363555908 259.971984863 258.726226807 257.615356445 256.439483643 254.842880249 253.476715088 251.788375854 250.44909668 249.484405518 249.625808716 249.570159912 250.720947266 252.492843628 251.252334595 248.96647644 246.585266113 252.738006592 256.207641602 253.474304199 248.032485962 243.845870972 240.901168823 239.775970459 239.535491943 239.315002441 239.345703125 233.830123901 232.499633789 231.82635498 230.858200073 229.206985474 227.562957764 227.893814087 229.6796875 232.368209839 235.786056519 238.559402466 239.799468994 241.047546387 243.570861816 247.558746338 254.831161499 263.148132324 269.697113037 272.868652344 273.596954346 273.861968994 274.103668213 274.333709717 274.766296387 275.321868896 275.921600342 276.637481689 277.360809326 278.049255371 278.918182373 280.097259521 281.673034668 283.46685791 285.421478271 287.313903809 288.780609131 290.059967041 291.357879639 292.441192627 293.397979736 294.317474365 295.154754639 295.887512207 296.566772461 297.317565918 298.029541016 298.548828125 298.905975342 299.202178955 299.410400391 299.501403809 299.60067749 299.801086426 299.878540039 299.795715332 299.816802979 300.009735107 300.130371094 300.137878418 300.170440674 300.239776611 300.254058838 300.183044434 300.145996094 300.198638916 300.211395264 300.090606689 299.900115967 299.649200439 299.16885376 298.511962891 297.786346436 296.975524902 296.304718018 295.94140625 295.618469238 295.127960205 294.708007812 294.391662598 293.917694092 293.340179443 292.004638672 288.316955566 284.537689209 280.872833252 278.739807129 277.176544189 275.637390137 274.549560547 274.523803711 275.797637939 276.003997803 275.555450439 274.785003662 273.935699463 272.776794434 271.523742676 269.91217041 268.26171875 266.3203125 264.518035889 263.383666992 261.916809082 260.916442871 260.134216309 259.705535889 259.256561279 258.971557617 257.890106201 256.509674072 254.738754272 253.525558472 252.376571655 253.058288574 254.069046021 252.478942871 251.393188477 250.467483521 253.877349854 256.17098999 254.63772583 251.926742554 249.076766968 247.493118286 245.991470337 244.564804077 243.590011597 242.38230896 220.460342407 218.424346924 218.808837891 218.138031006 216.151885986 214.626525879 215.732635498 219.597869873 224.760543823 229.680007935 233.388793945 235.577362061 237.15852356 239.751174927 244.529556274 251.936935425 258.006744385 262.05291748 268.456726074 271.127075195 272.356719971 273.112243652 273.57421875 273.879180908 274.362091064 274.993530273 275.693084717 276.493408203 277.320495605 278.210327148 279.294555664 280.71585083 282.362640381 284.271514893 286.210662842 287.605743408 288.758361816 290.062286377 291.263031006 292.441162109 293.62612915 294.636657715 295.511474609 296.26852417 296.903320312 297.439422607 297.908691406 298.294830322 298.628692627 298.967224121 299.289093018 299.547485352 299.764892578 299.942687988 300.129180908 300.358459473 300.5859375 300.726287842 300.747924805 300.7003479 300.68536377 300.69418335 300.720062256 300.701660156 300.517486572 300.306915283 300.182830811 299.992980957 299.514434814 298.806671143 298.026672363 297.330932617 296.768035889 296.394683838 296.228515625 296.093902588 295.933441162 296.131652832 296.573760986 296.384338379 295.812774658 294.934204102 293.561096191 291.003112793 287.902435303 286.221160889 285.058410645 283.219787598 281.750366211 280.844451904 281.04699707 280.559204102 279.82598877 278.211029053 276.637573242 275.665527344 274.149902344 272.2628479 269.748504639 267.25112915 266.332641602 265.982666016 265.396911621 264.731536865 264.223022461 263.876861572 263.277618408 263.095733643 262.897186279 262.470184326 261.551879883 261.106781006 260.302093506 261.554504395 263.450836182 262.700164795 262.706573486 262.768920898 263.573822021 263.971618652 262.057159424 258.96975708 254.825668335 252.277374268 249.056762695 247.049728394 245.035873413 242.558456421 244.997924805 244.456863403 243.843353271 242.7787323 241.644973755 241.033477783 241.75163269 243.704498291 246.566482544 249.733505249 251.924606323 253.315093994 253.676834106 254.455001831 257.209075928 263.667175293 268.204101562 271.433776855 272.709106445 272.743896484 272.887145996 273.142974854 273.444274902 273.843139648 274.339935303 274.852203369 275.359985352 275.883605957 276.473937988 277.298065186 278.42767334 280.024169922 281.879272461 283.822753906 285.991821289 287.877197266 289.204772949 290.299194336 291.222442627 292.136108398 293.096679688 294.05670166 295.068969727 296.07800293 296.977050781 297.637084961 298.125976562 298.487640381 298.75793457 298.953979492 299.041809082 299.092712402 299.278747559 299.540618896 299.680419922 299.762329102 299.880615234 300.051940918 300.313171387 300.473846436 300.354522705 300.191497803 300.128509521 300.040618896 299.984588623 300.056243896 300.194396973 300.232940674 300.112945557 299.76473999 299.2237854 298.577270508 297.901947021 297.412139893 297.029998779 296.425018311 295.659179688 294.994232178 294.393981934 293.935821533 293.363189697 291.466125488 285.877929688 281.545257568 279.28024292 278.227905273 276.634216309 274.512237549 272.78994751 272.917266846 274.495147705 275.305938721 274.456756592 273.122253418 271.893951416 270.590576172 269.186309814 267.16696167 265.864562988 264.216552734 262.343078613 260.991455078 259.513153076 258.300598145 257.353118896 256.152770996 254.386932373 252.682220459 251.062713623 249.776901245 249.291168213 249.022491455 248.922119141 250.08555603 252.034011841 251.030075073 248.848480225 246.580566406 252.858947754 255.383163452 252.860488892 247.86366272 243.686294556 240.76008606 239.717834473 239.525253296 239.32510376 239.344284058 233.784011841 232.444747925 231.72227478 230.760513306 229.039001465 227.38381958 227.857666016 229.934112549 232.772476196 236.404647827 239.417312622 240.901275635 242.220413208 244.601974487 248.421966553 256.386413574 264.196838379 270.199951172 272.935272217 273.577209473 273.912902832 274.184509277 274.39453125 274.790527344 275.292724609 275.85055542 276.53024292 277.192260742 277.820220947 278.677124023 279.871246338 281.514160156 283.429962158 285.370635986 287.250976562 288.788665771 290.131988525 291.422363281 292.46383667 293.377868652 294.228485107 295.070007324 295.871520996 296.618041992 297.346282959 297.979644775 298.453308105 298.806671143 299.102752686 299.333587646 299.490661621 299.611633301 299.758270264 299.828094482 299.826751709 299.869842529 299.989013672 300.078094482 300.126953125 300.166534424 300.1796875 300.189727783 300.189300537 300.190002441 300.177032471 300.145324707 300.043548584 299.880310059 299.662750244 299.252471924 298.630371094 297.910644531 297.167724609 296.556060791 296.192169189 295.859100342 295.34185791 294.828460693 294.477081299 294.189849854 293.646820068 292.141876221 288.266845703 284.324707031 281.197875977 279.567352295 277.776275635 275.266967773 273.667602539 273.731658936 275.310516357 276.145477295 275.462097168 274.361450195 273.541381836 272.438262939 271.299957275 269.728027344 268.260284424 266.34564209 264.469299316 263.053649902 261.185791016 260.253295898 259.755981445 259.451416016 258.890228271 258.706542969 257.424133301 255.658279419 254.441772461 252.871353149 251.652130127 252.234222412 253.304107666 252.207305908 250.794830322 250.236557007 253.956832886 255.558456421 254.190444946 251.362579346 248.732421875 247.205169678 245.844070435 244.479110718 243.550674438 242.377304077 220.394866943 218.282287598 218.694534302 217.977767944 215.920593262 214.478912354 215.871383667 220.165908813 225.59425354 230.769790649 234.643051147 237.036590576 238.695129395 241.099807739 245.556793213 253.296539307 258.937255859 263.025238037 268.78112793 271.115844727 272.309143066 273.094512939 273.567565918 273.861236572 274.307861328 274.935638428 275.634552002 276.385742188 277.166442871 278.043060303 279.116516113 280.586669922 282.357971191 284.27053833 286.164337158 287.554382324 288.706573486 289.990905762 291.22845459 292.434051514 293.533447266 294.462493896 295.320220947 296.085632324 296.724060059 297.263458252 297.738983154 298.160980225 298.52557373 298.864837646 299.206573486 299.512329102 299.733581543 299.899291992 300.110717773 300.356842041 300.547729492 300.654266357 300.678985596 300.703613281 300.774230957 300.841918945 300.876861572 300.845275879 300.642852783 300.448608398 300.322723389 300.107727051 299.663208008 298.999328613 298.199676514 297.473419189 296.994140625 296.808227539 296.913757324 297.015686035 296.785522461 296.451568604 296.299865723 296.003143311 295.48651123 294.773468018 293.521911621 290.827301025 287.944824219 286.644866943 284.9425354 282.713989258 280.981079102 280.01461792 280.803741455 281.111602783 280.327301025 278.337615967 276.607788086 275.536773682 274.41506958 272.232818604 269.610870361 267.584472656 266.59664917 265.903594971 265.284393311 264.68081665 264.166442871 263.733581543 262.859191895 262.44052124 262.358520508 261.922607422 261.432159424 260.63079834 260.052032471 261.562744141 263.004821777 262.310852051 262.222351074 262.313049316 263.445831299 263.471282959 261.598236084 258.704467773 254.650878906 252.209014893 249.049484253 246.982711792 244.986175537 242.549118042 245.007263184 244.417831421 243.759338379 242.694076538 241.544006348 240.921142578 241.697509766 243.771560669 246.932693481 250.176025391 252.628494263 254.2134552 254.956298828 256.012573242 258.692840576 264.608825684 269.079315186 271.735717773 272.726074219 272.766357422 272.932189941 273.174468994 273.478149414 273.85736084 274.311828613 274.766540527 275.202362061 275.66192627 276.242614746 277.089202881 278.22857666 279.852905273 281.854431152 283.88873291 286.08493042 287.961456299 289.265808105 290.322143555 291.227294922 292.135101318 293.064086914 293.978790283 294.967407227 296.021118164 296.963195801 297.612976074 298.049133301 298.377166748 298.611358643 298.781524658 298.89541626 298.977050781 299.138153076 299.388916016 299.603912354 299.732635498 299.822296143 299.98135376 300.280914307 300.506561279 300.459136963 300.309783936 300.208618164 300.082458496 300.003997803 300.088531494 300.276702881 300.331329346 300.187835693 299.834899902 299.318237305 298.733459473 298.154327393 297.693572998 297.300750732 296.783874512 296.127716064 295.411102295 294.722930908 294.280578613 293.732391357 291.762908936 286.256225586 281.734375 279.512573242 277.824279785 276.141967773 273.154541016 271.324310303 272.144439697 274.283630371 275.071777344 274.428253174 272.895690918 271.553070068 270.481048584 268.844604492 266.891540527 265.625366211 264.314605713 262.299102783 260.718109131 258.917633057 257.592407227 257.065338135 256.036895752 254.041946411 251.98638916 250.460968018 249.210830688 248.932037354 248.188064575 248.145523071 249.705230713 251.431747437 250.760681152 248.561416626 246.610733032 252.265991211 254.44960022 252.111618042 247.651779175 243.731536865 240.591812134 239.673202515 239.525238037 239.332260132 239.342712402 233.77432251 232.483306885 231.639862061 230.646072388 228.892440796 227.248718262 227.835372925 230.087295532 233.16229248 236.979064941 240.166641235 241.890975952 243.496124268 245.855010986 249.593948364 257.461853027 265.094665527 270.569641113 272.978210449 273.566253662 273.949645996 274.236755371 274.442810059 274.813018799 275.261810303 275.762054443 276.377502441 276.975006104 277.558898926 278.400268555 279.58883667 281.281280518 283.355895996 285.339202881 287.245361328 288.871459961 290.233551025 291.471679688 292.487609863 293.376342773 294.212310791 295.039337158 295.861846924 296.60723877 297.289703369 297.851898193 298.298248291 298.708831787 299.058227539 299.318603516 299.495300293 299.621490479 299.714508057 299.786468506 299.853485107 299.935241699 300.050109863 300.133758545 300.176574707 300.210968018 300.229431152 300.265655518 300.298156738 300.257965088 300.148132324 300.093933105 300.03793335 299.886413574 299.617279053 299.192962646 298.606506348 297.969818115 297.385009766 296.891052246 296.51864624 296.154937744 295.70602417 295.207183838 294.769927979 294.445098877 293.963226318 292.478912354 288.646026611 284.603607178 281.667419434 279.554748535 277.578704834 274.102294922 272.015106201 272.743011475 275.074768066 275.976837158 275.724914551 274.093841553 273.346313477 272.363952637 270.930419922 269.424530029 267.874267578 266.194213867 264.297424316 262.574401855 260.659973145 259.840240479 259.706573486 259.177642822 258.741394043 258.236297607 257.190307617 255.150787354 254.249465942 251.892562866 250.722045898 251.599746704 252.534561157 251.907699585 250.359985352 249.990783691 253.39225769 254.884460449 253.55770874 250.868118286 248.539749146 246.969512939 245.680801392 244.413970947 243.510314941 242.371780396 220.397689819 218.181060791 218.598007202 217.820617676 215.716812134 214.353942871 215.964004517 220.652770996 226.315109253 231.807174683 235.902236938 238.468002319 240.325363159 242.708587646 246.885223389 254.317443848 259.731201172 264.2628479 269.086547852 271.147857666 272.291168213 273.085205078 273.56918335 273.851226807 274.247711182 274.850646973 275.536987305 276.239532471 276.984130859 277.84387207 278.887023926 280.388244629 282.310455322 284.270446777 286.127410889 287.519165039 288.690155029 289.959869385 291.21774292 292.410980225 293.437652588 294.325531006 295.21307373 295.958831787 296.551330566 297.069030762 297.563171387 298.03717041 298.462921143 298.814331055 299.145721436 299.458618164 299.657714844 299.820678711 300.055084229 300.31338501 300.503723145 300.632202148 300.661346436 300.679351807 300.796173096 300.975341797 301.063537598 300.930877686 300.629547119 300.445831299 300.389373779 300.225952148 299.845275879 299.215240479 298.371826172 297.657470703 297.359985352 297.353881836 297.507263184 297.629211426 297.4168396 296.939849854 296.519165039 296.103515625 295.663909912 295.030487061 293.746032715 290.789978027 287.910797119 285.693450928 283.996704102 280.747894287 278.650634766 278.513946533 280.490478516 281.14666748 281.235565186 278.535247803 276.757385254 275.906707764 274.502563477 271.774475098 269.485626221 267.720977783 266.776367188 265.993591309 265.20211792 264.716674805 264.261627197 263.630981445 262.793060303 261.924499512 262.091888428 261.781860352 261.557678223 260.00100708 259.711181641 261.5340271 262.539886475 261.789093018 261.851287842 262.021453857 263.066864014 262.945343018 261.073059082 258.328674316 254.754974365 252.05480957 249.136276245 246.929244995 244.935317993 242.538772583 244.981124878 244.386566162 243.709030151 242.61882019 241.434188843 240.808258057 241.631866455 243.848068237 247.14666748 250.556304932 253.238555908 255.100479126 256.115356445 257.501556396 260.262481689 265.499328613 269.657592773 271.856262207 272.68661499 272.761444092 272.934356689 273.169464111 273.485992432 273.86151123 274.278900146 274.673919678 275.028900146 275.42578125 276.009338379 276.883728027 278.020568848 279.662384033 281.830871582 283.99395752 286.224884033 288.064666748 289.314361572 290.314178467 291.208862305 292.102172852 292.998321533 293.905059814 294.910430908 295.985473633 296.916229248 297.536529541 297.947570801 298.269744873 298.496063232 298.632904053 298.74822998 298.873382568 299.046051025 299.300048828 299.570495605 299.742584229 299.851226807 299.990203857 300.210266113 300.371551514 300.380371094 300.320770264 300.239257812 300.113067627 300.047454834 300.147369385 300.304016113 300.318481445 300.174255371 299.898803711 299.491119385 298.981964111 298.46685791 298.056060791 297.693206787 297.2394104 296.625610352 295.839904785 295.070037842 294.565155029 293.916931152 291.950134277 286.662811279 282.265045166 279.710479736 277.322937012 274.422851562 271.218231201 269.328704834 271.030334473 273.267028809 274.249481201 273.716094971 272.765411377 271.705505371 270.420471191 268.72845459 266.562988281 265.244018555 264.248504639 262.394622803 260.578643799 258.556854248 257.37310791 256.964813232 255.820327759 253.55632019 251.426864624 249.673538208 248.509521484 248.016433716 247.632629395 247.206268311 248.43762207 250.662231445 250.67237854 248.505630493 246.762390137 251.006744385 253.53213501 251.349441528 247.606506348 243.62550354 240.51071167 239.617843628 239.529220581 239.332733154 239.340988159 233.757568359 232.385787964 231.574783325 230.557540894 228.767669678 227.113067627 227.811126709 230.208999634 233.504318237 237.474960327 240.8256073 242.784942627 244.792160034 247.406616211 251.133102417 258.706329346 265.953979492 270.883666992 273.018585205 273.565124512 273.965789795 274.256530762 274.475799561 274.835601807 275.24420166 275.690795898 276.225952148 276.753479004 277.319213867 278.162017822 279.335754395 281.076202393 283.297149658 285.324615479 287.239257812 288.920623779 290.27432251 291.482025146 292.503570557 293.399353027 294.236236572 295.042053223 295.840393066 296.558929443 297.195678711 297.705749512 298.140258789 298.610198975 299.028289795 299.284423828 299.447845459 299.602813721 299.716552734 299.813903809 299.92678833 300.040557861 300.15411377 300.201812744 300.200836182 300.235595703 300.32244873 300.378387451 300.359436035 300.274749756 300.169281006 300.10446167 299.984375 299.762786865 299.498535156 299.171386719 298.690155029 298.094360352 297.561462402 297.176422119 296.90032959 296.601959229 296.21496582 295.65838623 295.006286621 294.496643066 294.038299561 292.782318115 289.25189209 285.497497559 282.31427002 279.487518311 276.310913086 272.507995605 270.082458496 271.650787354 274.259155273 275.430267334 275.015594482 274.172668457 273.38192749 272.460876465 270.767791748 268.886749268 267.442840576 265.824737549 264.126586914 262.12713623 260.190368652 259.664093018 259.654327393 259.072540283 258.590362549 257.916870117 256.619873047 254.698303223 253.128662109 251.192718506 249.579116821 250.13458252 251.690628052 251.59777832 250.069503784 249.813018799 252.362869263 254.175216675 252.913513184 250.512756348 248.328903198 246.807373047 245.520706177 244.348434448 243.4715271 242.365692139 220.280532837 218.118255615 218.444534302 217.706588745 215.535049438 214.222625732 216.081954956 221.042160034 226.98500061 232.823486328 237.006164551 239.660766602 242.009017944 244.594436646 248.528884888 255.512908936 260.555786133 265.552947998 269.367858887 271.196655273 272.284515381 273.073883057 273.568328857 273.849761963 274.202362061 274.773223877 275.436096191 276.098632812 276.824920654 277.673492432 278.673095703 280.193481445 282.282562256 284.313598633 286.110626221 287.476043701 288.642944336 289.902526855 291.179534912 292.372894287 293.359741211 294.232513428 295.135772705 295.855010986 296.410217285 296.922119141 297.442749023 297.966217041 298.451202393 298.820678711 299.148376465 299.455627441 299.63192749 299.782470703 300.005126953 300.253173828 300.460235596 300.61819458 300.643676758 300.625762939 300.7706604 301.048950195 301.177703857 300.951660156 300.558990479 300.386749268 300.389129639 300.263092041 299.907501221 299.320953369 298.529876709 297.866241455 297.624786377 297.681762695 297.884124756 298.046722412 297.88369751 297.409240723 296.906280518 296.406555176 296.016052246 295.463500977 294.232757568 291.198822021 287.773864746 284.878112793 281.683502197 278.303009033 276.252990723 277.422302246 279.451049805 280.653503418 280.388183594 278.9112854 277.043273926 275.792388916 274.588165283 271.702575684 268.74899292 267.585418701 266.861968994 266.115783691 265.183502197 264.834136963 264.37210083 263.604522705 262.75012207 261.69909668 261.576934814 261.616210938 260.891876221 259.74017334 259.30947876 260.943756104 262.048461914 261.401062012 261.515899658 261.891998291 262.506103516 262.414459229 260.555450439 257.963562012 254.652313232 251.97265625 249.079299927 246.946609497 244.905090332 242.527420044 244.955154419 244.364074707 243.663513184 242.555984497 241.356430054 240.727493286 241.563674927 243.870254517 247.302429199 250.821914673 253.714599609 255.92855835 257.140014648 258.952514648 261.887207031 266.500579834 270.156738281 271.894256592 272.599304199 272.724609375 272.880828857 273.11706543 273.460540771 273.850830078 274.246368408 274.585662842 274.862243652 275.219818115 275.825714111 276.749755859 277.875823975 279.511444092 281.831176758 284.131164551 286.383758545 288.146270752 289.315338135 290.274658203 291.172424316 292.050231934 292.915466309 293.82723999 294.878265381 295.970123291 296.859893799 297.426055908 297.809326172 298.153533936 298.42477417 298.560852051 298.668670654 298.813995361 299.014984131 299.278778076 299.566192627 299.760101318 299.898956299 300.023529053 300.122924805 300.176727295 300.212310791 300.258026123 300.231201172 300.127166748 300.078430176 300.165100098 300.272216797 300.260467529 300.135650635 299.942810059 299.640808105 299.210144043 298.757629395 298.433013916 298.155731201 297.756378174 297.137542725 296.313018799 295.524047852 294.886535645 293.944671631 291.873291016 286.897888184 282.911895752 280.119018555 277.073974609 273.821685791 269.431945801 267.059173584 268.964660645 271.338256836 272.597442627 272.531646729 272.219268799 271.766479492 270.459655762 268.676940918 266.351959229 264.85055542 263.957305908 262.526824951 260.621002197 258.525268555 257.048614502 256.5965271 255.25843811 252.992004395 250.778701782 249.108581543 247.83757019 247.220291138 246.749908447 246.175888062 247.677001953 249.665679932 250.342071533 248.769668579 247.063446045 249.710998535 252.654586792 250.704147339 247.525238037 243.342544556 240.477996826 239.586975098 239.551620483 239.339782715 239.332962036 233.736343384 232.316101074 231.522293091 230.469177246 228.658081055 226.997680664 227.775985718 230.299209595 233.800857544 237.897109985 241.479614258 243.73588562 245.979995728 249.156234741 253.039352417 260.044616699 266.831665039 271.189575195 273.060577393 273.571594238 273.962432861 274.249206543 274.491394043 274.85446167 275.243530273 275.64440918 276.091033936 276.548614502 277.123626709 277.997344971 279.169219971 280.936309814 283.257965088 285.309387207 287.212738037 288.899169922 290.232696533 291.446166992 292.515991211 293.436889648 294.255187988 295.01473999 295.781097412 296.480407715 297.086456299 297.563079834 297.996948242 298.522796631 298.998626709 299.235473633 299.381713867 299.579193115 299.744995117 299.849609375 299.970153809 300.101989746 300.207366943 300.225524902 300.204864502 300.283935547 300.430236816 300.449310303 300.328430176 300.214599609 300.179138184 300.104705811 299.879608154 299.612792969 299.429962158 299.237365723 298.856872559 298.284332275 297.766601562 297.49118042 297.349822998 297.124633789 296.718963623 296.055084229 295.215362549 294.536010742 294.08380127 293.059295654 290.032867432 286.758026123 283.294799805 279.511108398 275.71182251 271.197418213 268.026275635 269.451141357 272.499084473 273.752258301 273.727905273 273.443359375 273.278839111 272.569854736 270.748809814 268.391967773 266.754302979 265.370849609 263.796173096 261.63104248 259.886566162 259.246612549 259.351165771 258.805023193 258.282989502 257.530029297 256.291748047 254.026290894 252.312835693 250.29069519 248.291030884 249.207580566 250.663421631 251.100357056 250.074966431 249.725219727 251.49079895 253.354248047 252.285736084 250.214050293 248.098556519 246.658401489 245.382125854 244.27230835 243.43460083 242.357208252 220.263519287 218.005325317 218.345657349 217.619430542 215.378433228 214.096099854 216.105743408 221.301208496 227.545181274 233.683914185 238.021972656 240.512390137 243.508499146 246.608520508 250.465667725 256.912597656 261.543243408 266.697235107 269.656005859 271.257598877 272.281707764 273.054107666 273.559417725 273.854064941 274.18170166 274.719085693 275.348449707 275.980194092 276.70300293 277.559082031 278.51751709 280.028259277 282.264068604 284.372314453 286.102386475 287.421356201 288.558197021 289.800750732 291.092224121 292.30758667 293.280487061 294.129882812 295.025146484 295.733734131 296.283843994 296.81842041 297.385620117 297.960723877 298.484222412 298.869110107 299.197113037 299.490600586 299.640899658 299.770996094 299.96585083 300.186737061 300.39730835 300.569244385 300.615905762 300.605377197 300.78012085 301.101165771 301.222229004 300.936126709 300.514404297 300.365570068 300.401489258 300.280670166 299.91305542 299.372253418 298.705932617 298.116455078 297.837158203 297.882110596 298.164428711 298.40713501 298.272369385 297.830230713 297.3621521 296.840209961 296.466461182 295.911773682 294.663665771 292.095245361 288.303344727 284.514068604 280.76550293 276.465148926 274.522583008 275.304138184 277.633239746 278.964416504 278.877197266 277.991271973 277.155975342 275.919921875 274.25177002 271.35824585 268.376586914 267.236633301 266.730377197 266.084625244 265.133453369 264.75402832 264.228240967 263.410461426 262.386352539 261.396881104 261.52835083 261.174621582 260.544158936 259.300079346 258.838623047 260.654022217 261.431915283 261.19241333 261.236633301 261.654815674 261.989715576 261.808044434 260.074279785 257.587463379 254.418167114 251.945343018 248.975479126 246.961807251 244.923034668 242.560073853 244.937225342 244.332595825 243.626876831 242.499099731 241.290710449 240.651550293 241.482818604 243.851745605 247.367752075 250.934997559 254.099639893 256.514801025 258.04006958 260.061401367 263.476837158 267.649749756 270.68951416 271.907592773 272.464050293 272.638092041 272.756469727 272.999664307 273.386230469 273.811126709 274.196136475 274.487182617 274.702850342 275.059936523 275.738708496 276.734436035 277.838592529 279.434570312 281.864959717 284.301483154 286.564819336 288.206512451 289.279602051 290.22946167 291.133728027 292.00479126 292.84866333 293.782318115 294.906860352 295.996734619 296.806365967 297.274047852 297.600341797 297.970855713 298.305084229 298.500854492 298.616760254 298.755371094 298.963745117 299.235595703 299.51171875 299.707275391 299.847625732 299.95690918 300.000915527 300.008758545 300.090240479 300.213317871 300.245666504 300.134796143 300.044281006 300.099304199 300.213806152 300.221038818 300.071960449 299.858947754 299.631866455 299.369812012 299.101043701 298.918792725 298.742034912 298.395050049 297.80569458 297.037658691 296.238555908 295.28503418 293.540100098 290.093078613 286.428375244 283.3387146 280.698364258 278.002197266 274.191162109 269.330688477 264.755645752 265.542419434 268.357086182 270.06262207 270.7996521 271.28326416 271.352050781 270.096832275 268.325714111 266.184173584 264.539215088 263.601470947 262.483795166 260.820220947 258.550720215 256.769348145 256.147155762 254.740219116 252.480560303 250.138687134 248.428543091 247.348495483 246.631790161 246.003799438 245.208587646 245.63923645 246.923858643 249.465591431 248.784317017 247.209259033 248.784057617 251.873443604 250.089782715 247.331771851 243.035873413 240.362335205 239.572128296 239.560394287 239.375259399 239.336212158 233.729446411 232.304931641 231.458831787 230.404129028 228.579925537 226.901763916 227.776382446 230.336639404 234.016876221 238.272232056 242.07774353 244.810653687 247.236282349 250.763687134 255.086074829 261.377258301 267.841339111 271.538909912 273.106384277 273.57421875 273.933044434 274.211608887 274.483215332 274.86227417 275.251739502 275.611663818 275.969360352 276.367523193 276.985687256 277.931671143 279.120361328 280.868377686 283.227172852 285.288879395 287.177062988 288.827056885 290.138153076 291.394683838 292.539154053 293.480255127 294.240783691 294.950897217 295.709747314 296.395355225 296.979858398 297.428436279 297.867095947 298.441467285 298.948455811 299.173828125 299.314178467 299.542236328 299.735290527 299.842987061 299.95300293 300.091644287 300.203186035 300.245056152 300.272003174 300.3934021 300.524658203 300.47946167 300.281402588 300.130859375 300.105010986 300.003082275 299.765533447 299.54888916 299.386688232 299.124603271 298.744659424 298.339385986 298.055877686 297.973358154 297.918762207 297.664276123 297.214508057 296.646118164 295.964935303 295.293548584 294.420410156 292.545379639 290.327178955 287.554290771 284.332366943 280.579071045 275.967437744 270.839172363 266.704498291 266.888153076 269.593383789 271.319671631 271.636749268 272.082458496 272.913665771 272.217590332 270.739562988 267.949188232 266.07131958 264.743804932 263.427490234 261.08114624 259.33102417 258.974182129 259.211395264 258.622009277 257.991638184 257.280181885 255.812820435 253.825195312 251.658477783 249.285812378 247.202453613 247.243988037 248.180114746 250.287628174 249.989578247 249.65423584 251.033248901 252.583328247 251.610748291 249.904678345 247.910202026 246.50012207 245.242645264 244.194396973 243.403442383 242.360519409 220.252838135 217.891601562 218.252593994 217.535324097 215.248001099 213.984191895 216.060409546 221.428161621 227.919403076 234.494903564 238.989486694 241.43989563 244.614761353 248.517807007 252.523010254 258.272125244 263.090484619 267.75680542 270.016571045 271.342132568 272.27947998 273.016387939 273.532653809 273.867370605 274.196563721 274.697875977 275.275848389 275.876098633 276.617706299 277.521911621 278.448883057 279.911895752 282.244720459 284.416381836 286.100311279 287.375061035 288.46572876 289.671295166 290.962402344 292.20614624 293.177062988 293.998962402 294.873046875 295.585845947 296.144714355 296.696228027 297.320892334 297.951538086 298.495819092 298.888092041 299.225097656 299.500946045 299.64453125 299.782745361 299.971374512 300.158447266 300.33404541 300.521881104 300.623199463 300.680847168 300.864440918 301.145751953 301.215118408 300.922210693 300.537475586 300.427368164 300.490722656 300.409332275 300.057037354 299.496154785 298.854095459 298.338012695 298.106201172 298.266967773 298.670928955 298.902862549 298.701263428 298.385803223 298.104003906 297.684204102 296.964355469 296.188446045 295.270751953 292.852478027 289.332214355 285.623901367 280.90927124 276.02355957 273.286315918 273.161956787 274.878479004 276.258789062 276.648742676 276.951477051 277.16104126 275.71875 273.91607666 270.875427246 267.950378418 266.809173584 266.45211792 265.953063965 265.076293945 264.61730957 264.149475098 263.141845703 262.241516113 261.291687012 261.300689697 261.159118652 260.36895752 258.977264404 258.593109131 259.862304688 260.597991943 260.905487061 261.103790283 261.353393555 261.552124023 261.121673584 259.607727051 257.24987793 254.255065918 251.924423218 248.851806641 246.890151978 244.950057983 242.636810303 244.931381226 244.293655396 243.570495605 242.464614868 241.239456177 240.590103149 241.370651245 243.762405396 247.361480713 250.93788147 254.202835083 256.625183105 258.667724609 261.227233887 264.87689209 268.64175415 271.172241211 271.929748535 272.339111328 272.534240723 272.606536865 272.844665527 273.280487061 273.740112305 274.12689209 274.38961792 274.588989258 274.977752686 275.746887207 276.814941406 277.891723633 279.453887939 281.942016602 284.460235596 286.715667725 288.249053955 289.268371582 290.222412109 291.130157471 292.020782471 292.917144775 293.913696289 295.050842285 296.038085938 296.699462891 297.091552734 297.433380127 297.825866699 298.181365967 298.403533936 298.515716553 298.636230469 298.864593506 299.177337646 299.48236084 299.680145264 299.784057617 299.844573975 299.867919922 299.906677246 300.044525146 300.235351562 300.30078125 300.153015137 300.030670166 300.076324463 300.182647705 300.166137695 299.999053955 299.785369873 299.616210938 299.522705078 299.462585449 299.405273438 299.291442871 299.014099121 298.506317139 297.754089355 296.776397705 295.114624023 292.631286621 288.813354492 286.112762451 283.902587891 282.341033936 279.643371582 275.925445557 270.983673096 264.282501221 262.438751221 263.395812988 265.04699707 266.766418457 269.088287354 270.316009521 269.549713135 267.712646484 265.97744751 264.337036133 263.325683594 262.452362061 261.179382324 258.714691162 256.593170166 255.561218262 254.043365479 252.049560547 249.614837646 247.753875732 246.461532593 245.742675781 245.068771362 244.27973938 243.93309021 244.711044312 247.548828125 248.589004517 246.99079895 249.409973145 251.010742188 249.419845581 246.986968994 242.906982422 240.07522583 239.58454895 239.566940308 239.394577026 239.349807739 233.73664856 232.277908325 231.42010498 230.340423584 228.517868042 226.83303833 227.725067139 230.33972168 234.160507202 238.560516357 242.603988647 245.813110352 248.688827515 252.537689209 257.084716797 262.613769531 268.763031006 271.852935791 273.131958008 273.551818848 273.874786377 274.15057373 274.443634033 274.826263428 275.226989746 275.569610596 275.87399292 276.250793457 276.925201416 277.959533691 279.146179199 280.860870361 283.205657959 285.274353027 287.174804688 288.789611816 290.078674316 291.364624023 292.526947021 293.457946777 294.190063477 294.908813477 295.682891846 296.344909668 296.885803223 297.320831299 297.792144775 298.367828369 298.847290039 299.083435059 299.238342285 299.454071045 299.68637085 299.872161865 300.010620117 300.11541748 300.205566406 300.268554688 300.321594238 300.39050293 300.475769043 300.466186523 300.310821533 300.088592529 299.947540283 299.823150635 299.651519775 299.49520874 299.289489746 298.923339844 298.58380127 298.418426514 298.38583374 298.44744873 298.493621826 298.312042236 297.962677002 297.572753906 297.013916016 295.861572266 294.475494385 292.108398438 289.928833008 287.874908447 286.162200928 282.558380127 277.742736816 272.381561279 266.845184326 263.475341797 264.163238525 265.745666504 268.176239014 270.075134277 271.573822021 271.575469971 270.140838623 267.43637085 265.389953613 264.121490479 262.65411377 260.698242188 258.850952148 258.673583984 258.870758057 258.31439209 257.909393311 256.936950684 255.091033936 252.812164307 250.673431396 248.3699646 246.262374878 245.585662842 246.136184692 248.720046997 249.82989502 249.41116333 251.238204956 251.762161255 250.972518921 249.604095459 247.831481934 246.264389038 245.125701904 244.122879028 243.353851318 242.370285034 220.253143311 217.825714111 218.123153687 217.448654175 215.134246826 213.875610352 215.980422974 221.454101562 228.166397095 235.224227905 239.945007324 242.530227661 245.671875 250.151229858 254.540115356 259.493560791 264.572296143 268.636230469 270.388916016 271.444610596 272.290618896 272.978363037 273.486694336 273.867248535 274.22869873 274.698394775 275.223815918 275.801818848 276.579803467 277.560882568 278.471740723 279.903869629 282.264831543 284.447875977 286.107330322 287.357543945 288.428161621 289.609985352 290.882263184 292.114776611 293.093139648 293.926391602 294.798309326 295.503448486 296.040618896 296.579803467 297.236480713 297.887786865 298.424499512 298.824371338 299.193084717 299.480926514 299.666107178 299.845428467 300.029876709 300.172515869 300.328491211 300.554901123 300.688476562 300.750518799 300.901275635 301.123535156 301.15814209 300.870330811 300.528015137 300.443115234 300.539611816 300.574798584 300.328918457 299.687194824 298.899169922 298.413360596 298.358612061 298.699066162 299.192565918 299.403869629 299.238677979 299.090240479 298.938659668 298.542755127 298.075378418 296.998291016 295.334533691 293.347290039 291.089263916 287.265777588 282.52432251 277.272491455 272.910491943 270.520019531 269.538146973 271.660400391 273.322418213 275.013183594 275.956878662 275.427490234 273.767120361 270.327270508 267.557037354 266.4949646 266.142822266 265.859222412 265.06451416 264.554931641 263.983642578 263.001708984 262.101043701 261.192565918 260.684417725 260.406158447 259.863433838 258.777008057 258.333709717 259.223205566 259.835540771 260.423492432 260.933258057 260.959197998 261.379333496 260.450927734 259.187713623 256.957305908 254.292419434 251.80682373 248.78678894 246.798858643 244.921295166 242.694732666 244.956604004 244.277755737 243.505783081 242.43006897 241.195526123 240.542221069 241.257049561 243.619888306 247.232513428 250.802246094 254.094238281 256.550720215 259.055908203 262.170013428 266.014373779 269.001251221 271.636444092 271.960357666 272.249481201 272.444030762 272.476379395 272.682067871 273.154510498 273.650268555 274.042602539 274.298248291 274.506866455 274.942352295 275.797058105 276.934692383 277.981933594 279.547271729 282.07522583 284.605651855 286.805786133 288.24118042 289.237182617 290.203369141 291.120452881 292.055236816 293.049133301 294.106872559 295.190612793 296.016235352 296.524932861 296.888549805 297.304901123 297.752838135 298.111175537 298.331054688 298.430145264 298.544586182 298.799865723 299.154388428 299.484954834 299.684234619 299.768066406 299.800872803 299.831359863 299.890045166 300.028533936 300.239471436 300.321228027 300.172790527 300.055419922 300.106781006 300.16986084 300.117584229 300.004547119 299.822113037 299.597076416 299.513183594 299.608978271 299.748382568 299.800750732 299.64630127 299.205413818 298.391418457 297.056854248 294.54095459 291.618377686 288.797546387 286.537567139 284.916992188 283.391845703 281.59375 278.775115967 273.990112305 266.160675049 260.432220459 259.438446045 260.965667725 263.090698242 266.11630249 268.648254395 269.116485596 267.417480469 265.48348999 263.893859863 263.023651123 262.379058838 261.279876709 259.080322266 256.609863281 254.894775391 253.313491821 251.466705322 249.195465088 247.235549927 246.024108887 244.949203491 244.265350342 243.262435913 242.728012085 243.090454102 244.735549927 248.197387695 247.06817627 249.122039795 250.160079956 248.661071777 246.489440918 242.702819824 239.880935669 239.601516724 239.575592041 239.401062012 239.36340332 233.730148315 232.241668701 231.36340332 230.311187744 228.471160889 226.780807495 227.670425415 230.279983521 234.215560913 238.693740845 243.016723633 246.547592163 249.88973999 253.992950439 258.96282959 263.594970703 269.612762451 272.113769531 273.138366699 273.51083374 273.802276611 274.066558838 274.370391846 274.752410889 275.167022705 275.504821777 275.788208008 276.177459717 276.918518066 278.041778564 279.213989258 280.914245605 283.223358154 285.274261475 287.168640137 288.733215332 290.018829346 291.322143555 292.46383667 293.381011963 294.126342773 294.865081787 295.624694824 296.244384766 296.759918213 297.230102539 297.762268066 298.307647705 298.73828125 298.99319458 299.170257568 299.361602783 299.632598877 299.900970459 300.040863037 300.082794189 300.150787354 300.244232178 300.301086426 300.314971924 300.366821289 300.416107178 300.313262939 300.032287598 299.810516357 299.688110352 299.563568115 299.484313965 299.396728516 299.139343262 298.86920166 298.746887207 298.757537842 298.939331055 299.211486816 299.225372314 298.943817139 298.512481689 297.65032959 296.190185547 294.313812256 292.059539795 290.159484863 288.803894043 287.238739014 284.698181152 281.021697998 275.770996094 269.119659424 261.568206787 259.938720703 260.866088867 263.416046143 267.355316162 269.780700684 270.800872803 270.11151123 267.11227417 264.537536621 263.178070068 261.911010742 259.904968262 258.688659668 258.396911621 258.376037598 257.946960449 257.632232666 256.582336426 254.654907227 252.396774292 249.851104736 247.797851562 245.19593811 244.494491577 244.793838501 246.383880615 249.667160034 249.38470459 250.706176758 250.965301514 250.401596069 249.293579102 247.737716675 246.094467163 245.015640259 244.045318604 243.288650513 242.372360229 220.236755371 217.732955933 218.061431885 217.402938843 215.068496704 213.789413452 215.889419556 221.368560791 228.25352478 235.738250732 240.969650269 243.870178223 247.081039429 251.514312744 256.189178467 259.832275391 265.944854736 269.419158936 270.749176025 271.566162109 272.325897217 272.948303223 273.424591064 273.845367432 274.255218506 274.698028564 275.18560791 275.758117676 276.592498779 277.661987305 278.555175781 279.991943359 282.354095459 284.493377686 286.106262207 287.325683594 288.393310547 289.585388184 290.837463379 292.0362854 293.01965332 293.87512207 294.741882324 295.420227051 295.943603516 296.499908447 297.195709229 297.836853027 298.341094971 298.752441406 299.148254395 299.449523926 299.682189941 299.905975342 300.083679199 300.195922852 300.358032227 300.602844238 300.736358643 300.772705078 300.902008057 301.085968018 301.073486328 300.76260376 300.463775635 300.419616699 300.520812988 300.632965088 300.564697266 300.010009766 299.222106934 298.780883789 298.785705566 299.131011963 299.682525635 300.007537842 299.979400635 299.851531982 299.635101318 300.042602539 299.157165527 297.176300049 295.453277588 294.169830322 292.441894531 289.538208008 285.736846924 280.425872803 274.124176025 266.50604248 264.869476318 265.867553711 268.080200195 272.457244873 274.952972412 275.147247314 273.562927246 269.864868164 267.153167725 266.115631104 265.859130859 265.632995605 265.187194824 264.546813965 263.969512939 262.675109863 261.876647949 261.079833984 260.44909668 260.163024902 259.579040527 258.825042725 257.920928955 258.821075439 259.455413818 259.79574585 260.806030273 260.664245605 261.024291992 259.982574463 258.763671875 256.711517334 254.197799683 251.697280884 248.842071533 246.704238892 244.866455078 242.710601807 244.91847229 244.305511475 243.513916016 242.404220581 241.163497925 240.490829468 241.121856689 243.414703369 247.014877319 250.517028809 253.707931519 256.345611572 259.151733398 262.58392334 266.128112793 269.939575195 272.054382324 272.014251709 272.201965332 272.396972656 272.398284912 272.526794434 272.997619629 273.534667969 273.952545166 274.223937988 274.462982178 274.962005615 275.913574219 277.093444824 278.115234375 279.739349365 282.285705566 284.74887085 286.830749512 288.167297363 289.156463623 290.139923096 291.075805664 292.06338501 293.156463623 294.239654541 295.231842041 295.922607422 296.334381104 296.697418213 297.190185547 297.68081665 298.038726807 298.25189209 298.35244751 298.469787598 298.749176025 299.120056152 299.442504883 299.645599365 299.75012207 299.822570801 299.912017822 299.991851807 300.084442139 300.245513916 300.318664551 300.184020996 300.091888428 300.150421143 300.168640137 300.115203857 300.082397461 299.890258789 299.536346436 299.405517578 299.647766113 300.038757324 300.309875488 300.236480713 299.764434814 298.827972412 297.191680908 294.387420654 291.744873047 289.629364014 286.813171387 285.11114502 283.736785889 282.328979492 280.642578125 277.079467773 268.570037842 258.084106445 255.086273193 256.410491943 259.251098633 263.506103516 267.252227783 268.891357422 267.502655029 264.951751709 263.47567749 262.716674805 262.35067749 261.257110596 259.436584473 256.453857422 254.100830078 252.58757019 250.848510742 248.629119873 246.834564209 245.700042725 244.523605347 243.394271851 242.314559937 241.62538147 241.498092651 244.007293701 248.157348633 247.612304688 248.418121338 249.177871704 247.854003906 245.930999756 242.475067139 239.803817749 239.608932495 239.588653564 239.400787354 239.37538147 233.824508667 232.230026245 231.333496094 230.273712158 228.446212769 226.744369507 227.604721069 230.166442871 234.127883911 238.685470581 243.218200684 247.181808472 250.890609741 255.15927124 260.385620117 265.163024902 270.302124023 272.309814453 273.1277771 273.455718994 273.725341797 273.97958374 274.265808105 274.648681641 275.081573486 275.417816162 275.704589844 276.145629883 276.990539551 278.185058594 279.331298828 281.054382324 283.306549072 285.295562744 287.130828857 288.63192749 289.932403564 291.232757568 292.337371826 293.251953125 294.038574219 294.788818359 295.503967285 296.072784424 296.609344482 297.156158447 297.750915527 298.24798584 298.629821777 298.902984619 299.094970703 299.265258789 299.553924561 299.85559082 299.982116699 299.986724854 300.052947998 300.192016602 300.268859863 300.273895264 300.295623779 300.350769043 300.280181885 299.99987793 299.754211426 299.623382568 299.509887695 299.528320312 299.641937256 299.530639648 299.238830566 299.010650635 299.021728516 299.411865234 300.007476807 300.215576172 299.808776855 299.046661377 297.851776123 296.466522217 294.636657715 292.882019043 290.402130127 289.169219971 287.789611816 286.21987915 283.875061035 279.410400391 271.39239502 260.360412598 256.166290283 256.158203125 259.499969482 263.513214111 268.168670654 269.825714111 269.868347168 266.653442383 263.549346924 262.006256104 261.255310059 259.262481689 258.418487549 258.046966553 257.872283936 257.422454834 257.305389404 256.183349609 254.401443481 252.15675354 249.496292114 247.007263184 244.427017212 243.522216797 243.545013428 245.784118652 249.490066528 249.620605469 250.054107666 250.283218384 249.892318726 248.984771729 247.6484375 245.98147583 244.916595459 243.981124878 243.215759277 242.370651245 220.25994873 217.713912964 217.937759399 217.32220459 215.036346436 213.709533691 215.760879517 221.164154053 228.255279541 236.004425049 241.690048218 244.991088867 248.372833252 252.747055054 256.952178955 260.51083374 267.217834473 270.113739014 271.097137451 271.709899902 272.389648438 272.937011719 273.356506348 273.808959961 274.270141602 274.691558838 275.161804199 275.764099121 276.69430542 277.835296631 278.700866699 280.179870605 282.516815186 284.559783936 286.093505859 287.27243042 288.356231689 289.580810547 290.810943604 291.962158203 292.934417725 293.806365967 294.656311035 295.30090332 295.839263916 296.459442139 297.191162109 297.794158936 298.258178711 298.679473877 299.078094482 299.384368896 299.664672852 299.938079834 300.13458252 300.248291016 300.411651611 300.61340332 300.718048096 300.756591797 300.88885498 301.041870117 300.979370117 300.664337158 300.422332764 300.411529541 300.470001221 300.593902588 300.716766357 300.420898438 299.840667725 299.475036621 299.356109619 299.524658203 300.146514893 300.679656982 300.699127197 300.35949707 299.953948975 300.391906738 298.98928833 297.336914062 295.239044189 294.55670166 293.296905518 291.394042969 288.739868164 283.671661377 275.328582764 264.360168457 260.787963867 261.593597412 264.556182861 268.41003418 273.384124756 274.781402588 273.607971191 269.656890869 266.852874756 265.743438721 265.934326172 265.773376465 265.215240479 264.39743042 263.720855713 262.297027588 261.652069092 260.903625488 260.42401123 260.117828369 259.759094238 258.692199707 257.748565674 258.48828125 259.089416504 259.681030273 260.795471191 260.56539917 260.50592041 259.631317139 258.343139648 256.409484863 254.048812866 251.603378296 248.857788086 246.629623413 244.801116943 242.709335327 244.912811279 244.284698486 243.470748901 242.381942749 241.172897339 240.458297729 240.983963013 243.164550781 246.716018677 250.153594971 253.245315552 255.852920532 258.789031982 262.572631836 265.093780518 270.695861816 272.333374023 272.113464355 272.201049805 272.439697266 272.439239502 272.472595215 272.830596924 273.379180908 273.855438232 274.180480957 274.489685059 275.097839355 276.167419434 277.312347412 278.389648438 280.153259277 282.609313965 284.886627197 286.791259766 288.043914795 289.033081055 290.02243042 290.962371826 291.984100342 293.152618408 294.213989258 295.109802246 295.759490967 296.195007324 296.578521729 297.085998535 297.546539307 297.881317139 298.096679688 298.223602295 298.364807129 298.666015625 299.047393799 299.366241455 299.587097168 299.7265625 299.848968506 300.019683838 300.152709961 300.184570312 300.254852295 300.303375244 300.190826416 300.125244141 300.171569824 300.164306641 300.157714844 300.208984375 300.050445557 299.744812012 299.709197998 300.029052734 300.457061768 300.527313232 300.319122314 299.784851074 298.529449463 296.688323975 294.511779785 291.726867676 289.702178955 287.218933105 284.706268311 283.676727295 282.825073242 281.960418701 277.921325684 268.067382812 255.294876099 251.730529785 253.411758423 256.532592773 260.94128418 265.861968994 268.353240967 267.79977417 264.752532959 263.201416016 262.564422607 262.371826172 261.491790771 259.578033447 256.148284912 253.390441895 251.888549805 250.066711426 247.897064209 246.264770508 245.120742798 243.760025024 242.274490356 241.491104126 240.636428833 240.265655518 242.571090698 247.882461548 247.991607666 247.701065063 248.063018799 247.055038452 245.447952271 242.227996826 239.906509399 239.622497559 239.605575562 239.402481079 239.381622314 233.731826782 232.180770874 231.301147461 230.265457153 228.452331543 226.722686768 227.508346558 229.952545166 233.927566528 238.483596802 243.184448242 247.41645813 251.271377563 255.453552246 259.730377197 266.27923584 270.693634033 272.40020752 273.094543457 273.40246582 273.667694092 273.931549072 274.167175293 274.516571045 274.968139648 275.304260254 275.628540039 276.187194824 277.190338135 278.375946045 279.575500488 281.362487793 283.481781006 285.338562012 287.033477783 288.484710693 289.792999268 291.058532715 292.130828857 293.061248779 293.902770996 294.651947021 295.305969238 295.86026001 296.451324463 297.081451416 297.701080322 298.143341064 298.486694336 298.772003174 298.972595215 299.146728516 299.442749023 299.748382568 299.89050293 299.945159912 300.034423828 300.158050537 300.262054443 300.30090332 300.285430908 300.295715332 300.265869141 300.041687012 299.769287109 299.563598633 299.437408447 299.525878906 299.7081604 299.551940918 299.142700195 298.909484863 299.101928711 299.747772217 300.363250732 300.639038086 299.993286133 298.800140381 297.535858154 296.730743408 294.842346191 293.043701172 291.015777588 288.987121582 287.983032227 287.028106689 285.472869873 280.403808594 270.869506836 258.61038208 253.592773438 253.544006348 257.093353271 261.002929688 266.092132568 268.83404541 269.480621338 266.379638672 262.837036133 261.34185791 260.624481201 258.957061768 258.227600098 257.811950684 257.579620361 257.357116699 257.183105469 256.1277771 254.318664551 251.645065308 248.633682251 245.910827637 243.696228027 242.543243408 242.338409424 244.694091797 249.114929199 249.565155029 249.469406128 249.681304932 249.38067627 248.719009399 247.517669678 245.986740112 244.827148438 243.946456909 243.148254395 242.366226196 220.194442749 217.652053833 217.879486084 217.328079224 215.058013916 213.641540527 215.592285156 220.868164062 228.143630981 236.011367798 241.931808472 245.506378174 249.170654297 253.568054199 256.091583252 261.446899414 268.155761719 270.681549072 271.441314697 271.897125244 272.501617432 272.976135254 273.321105957 273.776245117 274.27432251 274.679748535 275.170623779 275.874603271 276.961853027 278.097167969 279.009552002 280.566497803 282.783081055 284.651245117 286.059783936 287.213043213 288.347473145 289.608428955 290.809082031 291.886413574 292.80670166 293.6875 294.527099609 295.151184082 295.737548828 296.439727783 297.154937744 297.704681396 298.159118652 298.580993652 298.966308594 299.281585693 299.609771729 299.937469482 300.191619873 300.345001221 300.472717285 300.557861328 300.603485107 300.662353516 300.769866943 300.902648926 300.880615234 300.669158936 300.495239258 300.457183838 300.421783447 300.504058838 300.753448486 300.716247559 300.352508545 299.953094482 299.590118408 299.678649902 300.376647949 301.161407471 301.077362061 300.933624268 300.606811523 300.214172363 298.558013916 297.030303955 295.50201416 294.578155518 293.743713379 292.64276123 290.573394775 284.417602539 274.158569336 261.615264893 257.609741211 258.813720703 262.21673584 266.30178833 271.612762451 274.261657715 273.831085205 270.246002197 266.659698486 265.80847168 265.955383301 265.980316162 265.336425781 264.124908447 263.462219238 262.080993652 261.485046387 260.853271484 260.481384277 260.010101318 259.38470459 258.134735107 257.56362915 258.207733154 258.725799561 259.417572021 260.664916992 260.423339844 260.093292236 259.256866455 257.917755127 256.12121582 253.878662109 251.610046387 248.795196533 246.585510254 244.736312866 242.707138062 244.973510742 244.24180603 243.438079834 242.367416382 241.197662354 240.436126709 240.859680176 242.899154663 246.333282471 249.653045654 252.58581543 255.246276855 258.036468506 262.108398438 265.046051025 270.687774658 272.379058838 272.210113525 272.244354248 272.513305664 272.555847168 272.550140381 272.743011475 273.224761963 273.75881958 274.140228271 274.540252686 275.319854736 276.513946533 277.631347656 278.812316895 280.65927124 282.92175293 284.960144043 286.72668457 287.973236084 288.967895508 289.927825928 290.808776855 291.804840088 292.996337891 294.049194336 294.912567139 295.588104248 296.091430664 296.52355957 297.031463623 297.466094971 297.75479126 297.940093994 298.088378906 298.284912109 298.632110596 299.047821045 299.385131836 299.612365723 299.728302002 299.799163818 299.956512451 300.135253906 300.16696167 300.197998047 300.239562988 300.201171875 300.19418335 300.222320557 300.179382324 300.193511963 300.333587646 300.367218018 300.298095703 300.231414795 299.875488281 299.694488525 299.178894043 298.746856689 299.191223145 298.575164795 296.932891846 294.306915283 291.862579346 289.363067627 287.046112061 284.466064453 284.002868652 282.921081543 280.879089355 275.885253906 263.00579834 252.695037842 250.812561035 253.948394775 257.046447754 259.621459961 264.274475098 267.580474854 267.545379639 264.84161377 262.993225098 262.494598389 262.460174561 261.586181641 259.599304199 255.750823975 252.929428101 251.037643433 249.326370239 247.133346558 245.404815674 244.449295044 242.935684204 241.328613281 240.741973877 239.730621338 239.227554321 241.264022827 247.453262329 248.171646118 247.138793945 247.17767334 246.480163574 245.039093018 242.183013916 239.90814209 239.638687134 239.626403809 239.410324097 239.386016846 233.703872681 232.155105591 231.244308472 230.247634888 228.475296021 226.71307373 227.395385742 229.7318573 233.615432739 238.069122314 242.824661255 247.149414062 250.832260132 255.077682495 259.354675293 265.958831787 270.575561523 272.304840088 273.041748047 273.38180542 273.662567139 273.928955078 274.109619141 274.385955811 274.846679688 275.169769287 275.532958984 276.27911377 277.445159912 278.60824585 279.898681641 281.690612793 283.649993896 285.352233887 286.924377441 288.354644775 289.65612793 290.867279053 291.89642334 292.827514648 293.683441162 294.440124512 295.101226807 295.694152832 296.337371826 297.005401611 297.600128174 298.019195557 298.352111816 298.623779297 298.826934814 299.042572021 299.367431641 299.687286377 299.860351562 299.979217529 300.078704834 300.152313232 300.270202637 300.358276367 300.325927734 300.288574219 300.281463623 300.076446533 299.753143311 299.515075684 299.402069092 299.467437744 299.610626221 299.560577393 299.389678955 299.323577881 299.185577393 299.414916992 299.889953613 300.344024658 300.452545166 299.291412354 297.934570312 296.473968506 295.002288818 292.841461182 291.065368652 288.833007812 288.264892578 286.772979736 284.02545166 277.913391113 266.53604126 256.893859863 253.165649414 254.068084717 256.983001709 259.469665527 263.418945312 267.39956665 268.919006348 266.28137207 262.420959473 260.779693604 259.951477051 258.715270996 258.095275879 257.695495605 257.688323975 257.416656494 257.340118408 256.080169678 253.9246521 251.217300415 247.986633301 245.085479736 242.991577148 241.607391357 241.207672119 243.438339233 248.687347412 249.427886963 249.077072144 249.098632812 248.964904785 248.497024536 247.435882568 245.94203186 244.729629517 243.938095093 243.093673706 242.359542847 220.193618774 217.59602356 217.784759521 217.285736084 215.100234985 213.59552002 215.406158447 220.518188477 227.879379272 235.719497681 241.702270508 245.573013306 249.40133667 253.742843628 256.136474609 261.506134033 268.369354248 270.902893066 271.675048828 272.083770752 272.628936768 273.049682617 273.341186523 273.756439209 274.256347656 274.656921387 275.176849365 276.058502197 277.320373535 278.465423584 279.481811523 281.058135986 283.078918457 284.721282959 286.005767822 287.177764893 288.370788574 289.644012451 290.802032471 291.795715332 292.645629883 293.524230957 294.375244141 295.023376465 295.674163818 296.418945312 297.067138672 297.593414307 298.068817139 298.481384277 298.85559082 299.202178955 299.552856445 299.890136719 300.184631348 300.381866455 300.479797363 300.50479126 300.550933838 300.58303833 300.597320557 300.703033447 300.797576904 300.711639404 300.554931641 300.479675293 300.414337158 300.484893799 300.74206543 300.772033691 300.398132324 299.845092773 299.224151611 299.294281006 300.320526123 301.860412598 302.419830322 301.575134277 300.714630127 299.689208984 298.48147583 296.658508301 295.451202393 293.917022705 293.522888184 292.258453369 288.375030518 281.042419434 268.389801025 258.793365479 256.946594238 258.80960083 261.693511963 264.771606445 268.570617676 273.597564697 273.827819824 271.001922607 266.982696533 265.810852051 266.057403564 266.095733643 265.214630127 263.973480225 263.179992676 261.882507324 261.597625732 260.847717285 260.233306885 259.826080322 259.007049561 257.954711914 257.362731934 257.922973633 258.391601562 259.117340088 260.503662109 260.336334229 259.750701904 258.876739502 257.534210205 255.890335083 253.843505859 251.509735107 248.667434692 246.577438354 244.696716309 242.695785522 244.916656494 244.261703491 243.430587769 242.366790771 241.240631104 240.430252075 240.739227295 242.615982056 245.902572632 248.993087769 251.783203125 254.378326416 257.070526123 261.107666016 265.302246094 270.189117432 272.240844727 272.26675415 272.303405762 272.582092285 272.661254883 272.634277344 272.713012695 273.092041016 273.641082764 274.068572998 274.548522949 275.543762207 276.869812012 278.004119873 279.253204346 281.089782715 283.143676758 284.967559814 286.647369385 287.916259766 288.905792236 289.823822021 290.642089844 291.598114014 292.776428223 293.846313477 294.726898193 295.423034668 295.969482422 296.445648193 296.963195801 297.393249512 297.635864258 297.780914307 297.96194458 298.226379395 298.621704102 299.045532227 299.3671875 299.589691162 299.711120605 299.765319824 299.903442383 300.110076904 300.147186279 300.11026001 300.131744385 300.205352783 300.301422119 300.311920166 300.214569092 300.206329346 300.354217529 300.424682617 300.307830811 299.357025146 297.97644043 297.672729492 298.540588379 298.739624023 298.642700195 298.131744385 296.634490967 294.100280762 291.686920166 289.482849121 287.233062744 286.047058105 284.37310791 282.232147217 277.698883057 269.897033691 255.869873047 251.782958984 253.628112793 258.504486084 260.198638916 259.448791504 262.970794678 266.466522217 266.984436035 264.84274292 262.947570801 262.378692627 262.395141602 261.623168945 259.343597412 255.504959106 252.247314453 249.887420654 248.286895752 246.228118896 244.49269104 243.641952515 242.32913208 240.795715332 240.188354492 239.106292725 238.449645996 241.173858643 247.005859375 248.145584106 247.123764038 246.790374756 246.112487793 244.72114563 242.160827637 239.836334229 239.657699585 239.638275146 239.422409058 239.389450073 233.658432007 232.151626587 231.254684448 230.241653442 228.507293701 226.719497681 227.256591797 229.489944458 233.225280762 237.478942871 242.099868774 246.278625488 249.82510376 253.941986084 259.373443604 265.074554443 269.983795166 272.065093994 272.975097656 273.380706787 273.679077148 273.917419434 274.054992676 274.264923096 274.688079834 274.99887085 275.388244629 276.371643066 277.69152832 278.867736816 280.188232422 281.921936035 283.726806641 285.300018311 286.82434082 288.258850098 289.520294189 290.669616699 291.656066895 292.560852051 293.409912109 294.187103271 294.899749756 295.559356689 296.248779297 296.92880249 297.490447998 297.886077881 298.206268311 298.458892822 298.669372559 298.93270874 299.287017822 299.600952148 299.79309082 299.965515137 300.081848145 300.147979736 300.28616333 300.39743042 300.350708008 300.300720215 300.282440186 300.072387695 299.754211426 299.54486084 299.43258667 299.424987793 299.590515137 299.844299316 300.048553467 299.551849365 299.116790771 299.296264648 300.53112793 301.061096191 300.700775146 299.464416504 297.952880859 296.410949707 294.932220459 293.391448975 291.59677124 290.63381958 288.356628418 285.432525635 280.232727051 271.939697266 259.931335449 255.590530396 255.324356079 257.524749756 258.960571289 259.84286499 262.140777588 265.904693604 268.24005127 265.868347168 262.270263672 260.262084961 259.34475708 258.640228271 257.965301514 257.513214111 257.427154541 257.299163818 257.201812744 255.886962891 253.679199219 250.684677124 247.493362427 244.406936646 242.259719849 240.738616943 240.293670654 243.133010864 248.096786499 249.29296875 248.973022461 248.678039551 248.691513062 248.313354492 247.341781616 245.858322144 244.648376465 243.914382935 243.044845581 242.351852417 220.196395874 217.58706665 217.71534729 217.292999268 215.175048828 213.591751099 215.190795898 220.116333008 227.487106323 235.186019897 241.017562866 244.880828857 248.779403687 253.156478882 256.853820801 261.286010742 267.985900879 270.869720459 271.820037842 272.25112915 272.744537354 273.102783203 273.370300293 273.754425049 274.194366455 274.584259033 275.130584717 276.244842529 277.669464111 278.878143311 279.975036621 281.517700195 283.330474854 284.751678467 285.937805176 287.147735596 288.379638672 289.639862061 290.750183105 291.662780762 292.457183838 293.331176758 294.199371338 294.894714355 295.622039795 296.377685547 296.964202881 297.478271484 297.962585449 298.362915039 298.733856201 299.11428833 299.476318359 299.813293457 300.157745361 300.380065918 300.45123291 300.472839355 300.562103271 300.585693359 300.529663086 300.596862793 300.724243164 300.67300415 300.53125 300.468933105 300.417175293 300.473114014 300.71496582 300.811187744 300.524200439 299.270751953 298.41897583 299.049743652 301.618835449 303.308135986 302.811279297 301.675994873 300.494934082 299.353973389 298.335174561 297.16229248 295.638977051 294.807525635 292.5262146 289.800598145 283.551361084 274.144927979 261.541717529 257.278869629 259.06362915 262.010131836 263.570892334 264.452911377 266.935211182 272.296173096 273.568603516 271.497894287 267.368804932 265.751434326 266.068237305 266.300720215 265.134216309 263.631591797 262.563415527 261.512329102 261.3934021 260.673126221 259.998901367 259.549713135 258.951202393 257.721710205 257.165649414 257.613922119 258.10949707 259.203979492 260.411499023 260.286804199 259.522186279 258.544281006 257.24597168 255.736312866 253.762741089 251.335586548 248.544372559 246.558853149 244.668701172 242.680709839 244.870361328 244.259246826 243.416305542 242.383026123 241.286331177 240.4559021 240.616912842 242.324539185 245.39050293 248.284805298 250.915435791 253.30897522 255.862762451 259.776916504 265.647735596 269.453552246 271.843811035 272.239501953 272.354125977 272.618652344 272.72946167 272.693572998 272.718200684 273.006408691 273.525634766 273.990142822 274.548065186 275.732025146 277.202178955 278.384552002 279.648925781 281.405212402 283.272583008 284.937835693 286.561065674 287.833007812 288.79699707 289.678283691 290.475189209 291.396789551 292.543518066 293.641448975 294.557495117 295.278533936 295.85458374 296.350219727 296.850830078 297.257629395 297.459411621 297.59274292 297.828094482 298.164123535 298.591125488 299.006622314 299.307525635 299.53503418 299.70300293 299.791046143 299.927581787 300.141784668 300.159332275 300.026306152 300.005767822 300.186798096 300.366516113 300.35043335 300.220123291 300.196258545 300.253204346 300.101806641 299.420532227 298.065124512 297.304626465 297.362884521 297.812164307 298.089111328 298.040252686 297.918334961 296.503509521 293.970825195 291.704376221 289.713500977 287.698883057 286.881652832 285.113586426 280.819091797 272.549316406 257.277160645 251.49810791 251.880432129 258.186065674 262.743896484 262.199523926 260.681884766 262.020446777 265.225738525 266.589508057 264.934692383 262.968780518 262.219299316 262.31842041 261.56137085 259.101470947 255.250717163 251.654220581 249.125396729 247.374191284 245.398895264 243.695892334 242.963424683 241.81362915 240.497924805 239.843231201 238.524368286 237.839401245 240.850128174 246.473937988 247.931289673 247.23979187 246.629577637 245.783462524 244.410308838 242.098846436 239.800231934 239.687072754 239.633987427 239.438415527 239.393386841 233.694503784 232.155609131 231.242507935 230.239929199 228.551147461 226.753097534 227.129074097 229.219207764 232.766601562 236.747116089 241.089447021 244.969421387 248.333328247 252.379348755 259.3934021 264.011810303 268.895294189 271.649139404 272.888183594 273.376220703 273.680633545 273.882202148 273.986328125 274.16104126 274.508178711 274.799804688 275.252655029 276.446655273 277.919433594 279.128631592 280.420837402 282.053405762 283.713134766 285.198303223 286.734039307 288.179718018 289.38494873 290.468109131 291.428588867 292.302856445 293.142730713 293.956054688 294.737823486 295.45501709 296.171325684 296.845550537 297.349273682 297.708190918 298.010070801 298.259796143 298.493255615 298.800079346 299.180755615 299.499053955 299.727233887 299.951080322 300.072357178 300.126434326 300.268707275 300.382568359 300.342926025 300.301452637 300.268585205 300.070007324 299.786834717 299.600311279 299.465240479 299.423339844 299.651794434 299.955657959 300.297943115 300.31048584 300.367279053 300.573181152 301.046936035 301.24798584 300.818206787 299.660095215 298.210174561 296.636230469 295.288787842 294.002380371 292.286834717 291.428619385 288.655609131 283.099182129 274.115875244 260.635986328 255.453948975 255.417938232 258.925048828 260.730651855 261.628479004 261.129516602 261.406585693 264.16317749 266.685333252 265.167938232 262.299621582 259.934356689 259.117462158 258.697021484 258.108551025 257.386962891 257.175170898 257.531433105 257.188079834 255.61505127 253.30519104 250.248092651 247.109069824 243.878707886 241.805679321 239.921585083 239.434646606 242.572601318 247.436035156 249.112579346 248.976699829 248.417053223 248.510894775 248.139968872 247.25932312 245.788635254 244.58807373 243.890090942 242.998092651 242.343795776 220.181182861 217.568939209 217.63760376 217.25920105 215.273605347 213.614120483 214.968460083 219.693069458 226.978378296 234.391220093 239.889480591 243.721801758 247.501495361 251.794036865 257.302429199 261.067321777 266.948822021 270.626556396 271.891418457 272.394805908 272.83190918 273.11706543 273.369415283 273.762634277 274.132751465 274.478820801 275.087524414 276.410308838 277.988250732 279.280151367 280.417449951 281.888885498 283.50302124 284.747070312 285.880096436 287.130859375 288.376312256 289.60269165 290.654327393 291.505004883 292.274536133 293.152557373 294.035369873 294.776000977 295.565429688 296.316070557 296.853179932 297.342224121 297.822875977 298.216033936 298.597991943 299.007751465 299.39151001 299.755584717 300.156738281 300.363830566 300.382659912 300.418365479 300.567993164 300.633728027 300.574951172 300.595001221 300.667419434 300.603057861 300.500457764 300.463653564 300.414581299 300.459686279 300.697601318 300.806060791 300.336273193 299.93347168 300.322387695 301.72555542 302.893035889 303.252716064 302.566986084 301.881256104 300.690582275 299.225189209 298.526763916 297.696960449 295.924041748 294.768432617 292.239990234 286.644622803 276.611999512 262.911102295 256.891906738 257.167449951 262.518127441 265.896087646 267.188873291 266.266326904 265.917510986 270.448791504 272.785919189 271.630065918 267.568572998 265.805023193 266.070709229 266.190704346 264.831298828 263.308074951 262.134460449 261.45602417 261.274078369 260.662902832 259.875518799 259.499176025 259.135528564 257.725006104 257.202697754 257.242095947 257.871154785 259.125366211 260.236755371 260.174102783 259.333984375 258.246246338 256.985687256 255.560409546 253.615707397 251.176712036 248.425476074 246.514160156 244.64263916 242.660873413 244.928070068 244.245513916 243.451721191 242.417877197 241.364868164 240.489944458 240.493972778 242.014419556 244.864273071 247.512832642 249.899398804 252.135482788 254.472564697 258.211425781 263.492523193 268.548614502 271.125335693 272.023345947 272.357391357 272.60333252 272.745330811 272.730957031 272.742279053 272.98348999 273.451416016 273.943969727 274.596313477 275.956756592 277.547088623 278.76965332 279.987976074 281.606201172 283.335418701 284.913024902 286.476348877 287.703399658 288.615478516 289.490692139 290.335906982 291.258514404 292.35043335 293.440795898 294.380737305 295.133087158 295.741668701 296.24621582 296.697418213 297.06072998 297.25100708 297.410858154 297.699249268 298.083068848 298.529296875 298.964447021 299.296447754 299.563934326 299.778076172 299.858123779 299.944488525 300.121520996 300.129882812 299.934204102 299.899597168 300.158325195 300.338806152 300.255279541 300.138336182 300.160736084 300.096374512 299.617004395 298.99987793 297.955688477 296.830230713 296.522583008 296.906463623 297.265075684 297.807189941 297.806060791 296.662780762 294.142303467 291.704101562 289.95892334 289.031524658 287.767974854 284.328521729 277.069244385 260.476501465 250.243591309 248.38822937 254.724197388 261.906036377 265.507141113 264.525115967 261.763885498 261.478515625 263.99798584 265.533477783 264.883148193 263.01071167 262.275146484 262.346466064 261.54989624 259.118591309 255.417877197 251.370956421 248.661315918 246.610931396 244.605392456 243.134063721 242.428695679 241.142578125 240.137466431 239.266693115 238.108230591 237.490814209 240.181396484 245.741500854 247.474487305 247.079940796 246.344985962 245.358337402 244.087585449 242.049087524 239.894393921 239.733627319 239.608764648 239.457901001 239.397369385 233.698074341 232.180419922 231.220596313 230.255187988 228.617752075 226.795410156 227.019393921 228.943634033 232.266342163 235.935897827 239.836166382 243.329696655 246.548309326 250.517852783 256.117431641 262.606201172 267.173522949 270.855926514 272.742980957 273.350097656 273.639129639 273.834503174 273.910797119 274.053070068 274.329162598 274.602844238 275.175964355 276.57421875 278.168365479 279.404296875 280.6144104 282.107788086 283.637329102 285.075531006 286.649963379 288.085296631 289.236328125 290.270019531 291.214538574 292.090576172 292.937347412 293.785491943 294.628631592 295.367889404 296.061035156 296.700378418 297.153991699 297.462677002 297.742584229 298.015808105 298.282745361 298.634216309 299.04989624 299.422515869 299.738555908 300.012817383 300.089691162 300.060394287 300.164367676 300.296691895 300.315124512 300.304931641 300.271636963 300.096588135 299.811462402 299.579315186 299.481384277 299.603027344 299.905212402 300.042999268 300.128204346 300.210266113 300.105499268 300.188018799 300.638763428 300.747528076 300.452056885 299.77142334 298.72845459 297.189788818 295.492492676 294.18737793 293.432250977 291.882232666 287.190612793 278.525054932 265.631988525 254.418167114 252.371887207 257.166656494 261.725646973 263.472167969 264.207763672 262.868377686 261.454711914 262.713623047 264.665893555 264.222686768 261.877075195 259.713653564 259.072052002 258.753601074 258.033691406 257.285705566 257.296936035 257.592163086 256.902160645 254.935836792 252.604156494 249.678894043 246.162658691 243.241851807 240.805953979 239.17225647 238.703201294 241.529266357 246.5730896 248.72605896 248.885269165 248.133361816 248.348510742 247.987930298 247.215454102 245.759292603 244.602767944 243.868469238 242.953567505 242.335067749 220.177734375 217.55557251 217.594909668 217.259277344 215.356384277 213.651626587 214.735290527 219.268203735 226.383605957 233.394958496 238.522857666 242.088226318 245.765228271 250.164993286 255.140991211 260.592498779 265.270812988 270.089996338 271.882995605 272.50112915 272.865997314 273.104766846 273.338409424 273.735778809 274.078552246 274.403076172 275.120605469 276.639343262 278.31451416 279.639312744 280.765777588 282.130401611 283.569610596 284.721679688 285.869873047 287.162689209 288.394287109 289.549468994 290.516021729 291.345062256 292.135986328 293.016448975 293.901062012 294.661895752 295.471374512 296.205627441 296.705871582 297.159729004 297.631439209 298.038909912 298.460754395 298.898651123 299.320281982 299.734527588 300.168182373 300.328460693 300.280456543 300.322601318 300.535247803 300.677642822 300.687286377 300.657073975 300.633605957 300.575866699 300.525970459 300.451812744 300.403991699 300.557098389 300.858215332 300.879974365 300.628814697 300.4503479 300.619232178 301.406463623 301.632446289 301.316345215 301.847320557 301.879974365 301.131896973 299.73739624 298.874298096 298.044647217 296.899688721 295.015625 290.75491333 281.822998047 268.921173096 256.674957275 253.98765564 258.54385376 265.116760254 270.018188477 270.738098145 268.009307861 265.365264893 267.880065918 271.821899414 271.269470215 267.484069824 266.048553467 265.942108154 265.816131592 264.669616699 262.956085205 261.898803711 261.391998291 261.053283691 260.423492432 259.806365967 259.550476074 258.994262695 257.818603516 256.75680542 256.820068359 257.586303711 258.814697266 259.95413208 259.957946777 259.115600586 257.930633545 256.686309814 255.345153809 253.458938599 250.995132446 248.405853271 246.440643311 244.619781494 242.636795044 244.948623657 244.297897339 243.463012695 242.455947876 241.441635132 240.528900146 240.406326294 241.722900391 244.345046997 246.739730835 248.809143066 250.776504517 253.002731323 256.584014893 261.793609619 268.00402832 270.548278809 271.695220947 272.282836914 272.523193359 272.694854736 272.733886719 272.777954102 273.02142334 273.458557129 273.981079102 274.738220215 276.24899292 277.881958008 279.128204346 280.25881958 281.721801758 283.370605469 284.910827637 286.403778076 287.56930542 288.453704834 289.327911377 290.23626709 291.217956543 292.299224854 293.337402344 294.230377197 294.963470459 295.57800293 296.095733643 296.546051025 296.919128418 297.13583374 297.31072998 297.609436035 298.004089355 298.461669922 298.932067871 299.305786133 299.62097168 299.861480713 299.897857666 299.902404785 300.03918457 300.091033936 299.943145752 299.952270508 300.216949463 300.332214355 300.159942627 300.020935059 300.02432251 299.895721436 299.293518066 298.576171875 297.906433105 297.038116455 296.801452637 296.845184326 297.28503418 297.59588623 297.519866943 296.100097656 293.839904785 291.737060547 290.461761475 290.070739746 288.341491699 282.461883545 272.035919189 253.572677612 246.317245483 247.15284729 256.386749268 264.810943604 267.554840088 265.34777832 262.359954834 260.794311523 262.969696045 264.555541992 264.647003174 263.033050537 262.208770752 262.40222168 261.590087891 259.376708984 255.733779907 251.54473877 248.429656982 246.082427979 244.219818115 242.630203247 241.754562378 240.732574463 239.700942993 238.842193604 237.820983887 237.381652832 240.427139282 244.813369751 246.92855835 246.864120483 245.958190918 244.913253784 243.855484009 241.990859985 240.142028809 239.791885376 239.57484436 239.493469238 239.400512695 233.701019287 232.135238647 231.224197388 230.284683228 228.701309204 226.86882019 226.904785156 228.66708374 231.753662109 235.108154297 238.446151733 241.600280762 244.60307312 248.637268066 253.989807129 261.617828369 265.917419434 269.751953125 272.524261475 273.277404785 273.562347412 273.781402588 273.860992432 273.972808838 274.20993042 274.502288818 275.206390381 276.777374268 278.420013428 279.671966553 280.797210693 282.145904541 283.578277588 284.997009277 286.565002441 287.990112305 289.134216309 290.150787354 291.059356689 291.94229126 292.800292969 293.648132324 294.516479492 295.260345459 295.905334473 296.498046875 296.949127197 297.276611328 297.556091309 297.822418213 298.103485107 298.500823975 298.95880127 299.361907959 299.71875 300.021240234 300.101470947 300.053009033 300.12689209 300.249267578 300.292419434 300.303283691 300.299835205 300.151275635 299.82635498 299.522521973 299.476745605 299.728302002 299.98727417 299.740936279 299.05645752 298.535369873 298.209716797 298.42590332 298.625244141 299.49899292 300.052276611 300.019897461 298.514526367 296.851013184 295.299285889 294.137939453 293.712188721 291.544433594 284.569122314 273.334747314 257.570556641 250.963516235 251.189376831 258.435882568 263.697265625 266.467987061 265.783508301 263.991241455 260.962463379 261.632568359 263.571228027 263.233428955 261.355133057 259.312988281 259.000152588 258.619781494 257.967010498 257.342224121 257.347412109 257.553436279 256.433349609 254.167190552 251.610336304 248.899291992 245.429412842 242.467605591 240.216552734 238.570861816 238.150527954 241.294708252 245.492156982 248.176681519 248.784469604 247.824859619 248.189285278 247.905441284 247.171478271 245.819381714 244.606536865 243.841552734 242.94380188 242.32510376 220.254745483 217.553009033 217.5415802 217.244857788 215.478561401 213.740875244 214.504455566 218.833297729 225.736129761 232.330932617 236.994644165 240.13394165 243.775360107 248.386413574 253.44543457 259.869140625 263.905303955 269.045043945 271.785644531 272.518310547 272.829772949 273.075164795 273.31741333 273.672302246 274.015594482 274.3878479 275.249694824 276.944519043 278.620574951 279.909698486 280.97555542 282.224090576 283.561737061 284.722320557 285.925628662 287.227203369 288.414886475 289.491790771 290.391571045 291.231384277 292.062561035 292.924804688 293.771087646 294.517333984 295.294281006 296.003509521 296.527587891 296.999664307 297.471130371 297.902740479 298.363311768 298.842163086 299.284484863 299.705169678 300.118682861 300.276031494 300.262329102 300.309082031 300.494598389 300.655456543 300.717773438 300.685668945 300.616577148 300.56942749 300.493103027 300.30557251 300.245880127 300.510437012 300.956634521 300.834655762 300.001037598 299.277618408 298.75189209 298.924041748 298.960174561 299.575195312 300.948028564 301.390167236 300.579742432 299.36114502 298.578765869 297.830657959 296.545318604 294.159545898 287.652160645 275.956481934 260.467773438 253.233230591 252.758773804 259.490875244 266.84942627 272.534912109 272.98046875 270.730712891 265.705078125 266.519226074 270.455841064 270.582855225 267.33416748 265.947692871 265.84274292 265.3828125 264.52645874 262.888763428 261.78817749 261.225402832 260.650878906 260.40246582 259.679382324 259.360992432 258.915893555 257.782043457 256.726318359 256.462005615 257.249511719 258.687591553 259.619354248 259.676361084 258.924682617 257.619659424 256.367218018 255.175933838 253.27192688 250.899276733 248.304244995 246.349197388 244.642562866 242.609054565 244.945327759 244.314346313 243.497360229 242.510177612 241.488128662 240.590026855 240.343582153 241.444351196 243.790466309 245.950408936 247.689956665 249.345870972 251.529464722 255.12953186 260.165405273 266.890045166 270.323913574 271.500671387 272.14050293 272.402313232 272.599365234 272.705322266 272.817016602 273.088165283 273.526550293 274.077087402 274.953918457 276.575927734 278.205352783 279.489013672 280.553161621 281.859588623 283.411804199 284.896606445 286.311096191 287.426574707 288.313293457 289.202728271 290.149871826 291.180084229 292.28604126 293.281707764 294.118835449 294.806640625 295.401824951 295.908843994 296.361450195 296.746643066 296.985992432 297.178466797 297.51260376 297.940612793 298.421569824 298.898590088 299.275054932 299.636138916 299.93170166 299.969238281 299.929656982 300.047637939 300.155548096 300.08114624 300.105560303 300.309875488 300.340789795 300.116088867 299.91418457 299.807495117 299.451324463 298.911437988 298.550476074 298.032287598 297.513916016 297.206573486 297.191802979 296.88961792 296.973907471 296.577453613 295.360137939 293.850982666 291.805389404 291.384307861 290.943206787 287.997314453 279.022491455 267.246276855 249.732162476 244.75680542 247.996139526 256.18548584 265.219848633 268.078765869 266.029693604 263.263946533 260.265991211 262.061248779 264.251373291 264.000915527 262.602478027 261.658874512 261.860473633 261.445556641 259.549713135 256.12979126 251.837219238 248.698608398 245.964447021 244.241958618 242.590438843 241.697845459 240.594329834 239.626358032 238.60369873 237.770050049 237.393539429 239.194671631 242.843536377 246.373718262 246.707977295 245.803237915 244.586105347 243.675445557 242.037414551 240.384857178 239.81640625 239.544113159 239.533355713 239.403106689 233.702301025 232.166305542 231.226928711 230.328445435 228.808135986 226.971557617 226.807571411 228.410568237 231.246246338 234.259963989 236.944107056 239.708526611 242.684570312 246.791122437 252.249008179 259.791503906 265.112762451 268.641418457 272.235321045 273.162780762 273.461975098 273.7159729 273.817932129 273.919677734 274.141143799 274.477294922 275.314300537 277.019744873 278.673217773 279.950378418 281.026092529 282.239318848 283.575073242 284.963256836 286.487335205 287.896087646 289.066009521 290.085449219 290.948181152 291.810638428 292.66317749 293.501373291 294.375854492 295.123962402 295.730102539 296.276397705 296.745574951 297.114532471 297.396026611 297.650665283 297.967254639 298.423339844 298.918579102 299.319763184 299.669891357 299.988067627 300.143829346 300.145568848 300.175598145 300.217773438 300.23348999 300.291534424 300.329986572 300.191955566 299.850128174 299.509124756 299.3956604 299.49621582 299.415008545 298.897094727 298.37713623 297.856933594 297.556060791 297.534667969 297.639556885 297.815734863 299.049133301 299.052307129 297.824066162 296.513702393 294.92276001 294.709503174 294.144500732 290.555267334 280.632354736 268.205963135 254.36907959 249.559051514 251.583145142 258.382659912 264.136322021 268.235412598 267.640777588 264.5730896 260.384277344 261.157592773 263.03338623 262.124786377 260.508514404 258.893432617 258.459594727 258.235473633 258.021026611 257.458251953 257.30065918 257.550598145 255.674957275 253.263626099 250.750762939 248.299224854 245.055984497 242.19921875 239.902404785 238.246185303 237.767883301 239.857757568 243.964508057 247.494735718 248.667327881 247.809204102 248.039489746 247.871902466 247.179336548 245.862335205 244.603225708 243.807998657 242.944351196 242.314056396 220.251022339 217.523345947 217.484344482 217.274688721 215.646514893 213.869018555 214.280731201 218.380737305 225.036331177 231.20652771 235.338119507 238.148376465 241.702957153 246.567840576 251.87677002 258.498168945 263.353637695 267.399627686 271.6199646 272.476043701 272.760955811 273.032226562 273.299163818 273.624389648 273.97744751 274.42755127 275.4637146 277.284759521 278.923309326 280.175048828 281.181121826 282.320465088 283.578552246 284.755828857 285.996612549 287.269134521 288.410614014 289.436035156 290.300567627 291.155487061 292.016876221 292.851196289 293.642272949 294.356140137 295.08190918 295.763977051 296.335693359 296.85760498 297.346923828 297.805023193 298.304046631 298.812957764 299.270477295 299.667755127 300.042633057 300.227081299 300.269317627 300.292755127 300.396606445 300.533966064 300.631958008 300.65133667 300.589660645 300.538360596 300.428863525 300.166015625 300.012359619 300.134765625 300.215637207 299.926422119 299.38571167 298.698547363 298.201568604 298.125732422 298.047119141 298.058105469 299.17086792 299.700378418 299.054840088 298.474945068 297.58026123 297.016052246 295.837982178 292.432922363 283.153808594 270.371307373 256.620361328 251.784790039 253.204574585 259.93359375 268.056274414 274.023284912 274.901092529 272.16796875 266.609619141 265.956298828 269.586456299 269.037384033 266.677276611 265.946289062 265.581939697 265.051727295 264.514984131 262.939117432 261.752807617 261.329193115 260.513092041 260.419281006 259.7449646 259.411956787 258.874298096 257.882873535 256.576385498 256.246673584 257.002502441 258.127563477 259.089691162 259.345916748 258.781646729 257.443389893 256.142120361 255.005142212 253.171386719 250.751739502 248.172439575 246.262542725 244.67414856 242.57749939 244.939468384 244.29524231 243.565612793 242.576507568 241.596694946 240.692504883 240.329559326 241.195922852 243.102935791 245.175643921 246.592605591 247.972488403 250.115478516 253.64163208 258.717529297 265.2059021 269.810150146 271.333709717 271.997467041 272.249572754 272.476287842 272.657684326 272.850799561 273.175811768 273.63873291 274.215820312 275.220367432 276.893005371 278.493530273 279.828216553 280.880126953 282.049926758 283.468994141 284.867523193 286.190704346 287.269592285 288.187957764 289.119934082 290.090118408 291.139007568 292.248321533 293.220062256 294.023834229 294.680389404 295.24798584 295.720367432 296.146881104 296.518737793 296.775665283 297.025268555 297.432495117 297.909332275 298.409698486 298.88180542 299.265167236 299.673797607 300.008056641 300.057067871 300.003143311 300.116088867 300.287231445 300.292236328 300.290985107 300.3671875 300.308349609 300.087982178 299.854888916 299.638519287 299.417205811 299.098205566 298.630187988 298.073120117 297.631347656 297.293151855 297.057403564 296.982818604 296.770385742 296.33392334 295.589385986 294.09173584 292.599121094 292.051483154 291.296417236 286.289093018 275.211517334 256.734985352 247.24180603 245.190338135 248.687271118 254.47857666 264.147674561 268.009887695 267.029144287 263.498748779 260.278167725 261.883087158 263.403442383 263.399291992 261.566650391 260.969238281 261.494995117 261.17791748 259.935150146 256.912780762 252.608169556 249.055435181 246.143371582 244.23324585 242.527313232 241.582748413 240.822296143 239.767929077 238.577774048 237.92515564 237.615921021 238.096939087 241.725219727 245.737136841 246.521499634 245.75592041 244.369735718 243.521102905 242.04586792 240.542160034 239.827835083 239.522537231 239.571762085 239.405731201 233.792816162 232.171279907 231.258865356 230.378387451 228.905944824 227.098449707 226.734375 228.185455322 230.647628784 233.333389282 235.577163696 237.906402588 240.894683838 245.134811401 250.679794312 257.043395996 263.460327148 267.671661377 271.896270752 273.000518799 273.331756592 273.624053955 273.771789551 273.892791748 274.122894287 274.514709473 275.479217529 277.265594482 278.915924072 280.230102539 281.291107178 282.38961792 283.628570557 284.960388184 286.417236328 287.793365479 288.995788574 290.037200928 290.856994629 291.678985596 292.526031494 293.354888916 294.220184326 294.969055176 295.549743652 296.055206299 296.534637451 296.929260254 297.216796875 297.496307373 297.880279541 298.382873535 298.897705078 299.300964355 299.649902344 299.972808838 300.18951416 300.259338379 300.257385254 300.203094482 300.176025391 300.278167725 300.346221924 300.188568115 299.857208252 299.545684814 299.325622559 299.127471924 298.938018799 298.652709961 298.161651611 297.599304199 297.305419922 297.145721436 296.94442749 297.125396729 297.89239502 298.50970459 298.046325684 296.677459717 295.345672607 294.890289307 294.085906982 288.40447998 276.329956055 260.560852051 252.198348999 249.794052124 252.381576538 257.414123535 263.771606445 268.937164307 268.491394043 264.508239746 260.183807373 261.026611328 261.992462158 261.185150146 259.078430176 258.32244873 258.488647461 258.01739502 258.13583374 257.675231934 257.530792236 257.060852051 254.920761108 252.308242798 250.163070679 247.958602905 245.458526611 242.370254517 239.876495361 238.160079956 237.728637695 238.393264771 242.546035767 246.748809814 248.480056763 248.00944519 247.913787842 247.859207153 247.181549072 245.85307312 244.592315674 243.784301758 242.933410645 242.30607605 220.242126465 217.570144653 217.488922119 217.262863159 215.819702148 214.005111694 214.089096069 217.935791016 224.299453735 230.062194824 233.712310791 236.227264404 239.755813599 244.86769104 250.458633423 256.491943359 262.377655029 265.918029785 271.341308594 272.380828857 272.656707764 272.962310791 273.271728516 273.606658936 273.996582031 274.539398193 275.744873047 277.625305176 279.211303711 280.44229126 281.426635742 282.474273682 283.641082764 284.812103271 286.057220459 287.282653809 288.399017334 289.410888672 290.254364014 291.105438232 291.982116699 292.779632568 293.519195557 294.20401001 294.886901855 295.541687012 296.157806396 296.720581055 297.235870361 297.734313965 298.269378662 298.788635254 299.252929688 299.618927002 299.948791504 300.148956299 300.231384277 300.237121582 300.287780762 300.38583374 300.492858887 300.574249268 300.56539917 300.51675415 300.423858643 300.187194824 299.916534424 299.726837158 299.595245361 299.460327148 299.132659912 298.453582764 297.939575195 297.796813965 297.620758057 297.719726562 298.267791748 299.025939941 298.711242676 297.923492432 297.443115234 296.559509277 295.452056885 290.188232422 278.452178955 262.059356689 253.961151123 251.478729248 253.588897705 259.180206299 267.696228027 274.360687256 275.579559326 272.630004883 267.901397705 267.200164795 268.802459717 267.20602417 265.699432373 265.431121826 265.37902832 265.00793457 264.699645996 263.205780029 261.869049072 261.13079834 260.338226318 260.135742188 259.398498535 259.238739014 258.94934082 257.797546387 256.404632568 255.99432373 256.53125 257.428039551 258.434173584 258.93057251 258.597351074 257.300079346 255.975448608 254.835571289 253.058517456 250.577133179 248.010604858 246.186813354 244.690795898 242.552078247 244.957946777 244.321868896 243.569076538 242.655303955 241.69694519 240.798156738 240.344787598 240.980926514 242.606292725 244.474227905 245.578430176 246.639755249 248.796646118 252.355072021 257.51159668 263.814331055 269.272583008 271.257049561 271.943511963 272.105133057 272.337005615 272.606689453 272.892547607 273.308502197 273.809509277 274.412567139 275.51361084 277.171020508 278.729187012 280.13092041 281.236358643 282.313934326 283.575439453 284.85055542 286.058166504 287.107055664 288.084411621 289.098907471 290.075561523 291.093139648 292.139801025 293.073974609 293.867279053 294.510070801 295.050994873 295.490997314 295.891357422 296.254119873 296.561004639 296.915435791 297.394622803 297.890472412 298.381439209 298.851135254 299.29284668 299.747619629 300.05456543 300.083099365 300.049102783 300.179870605 300.375396729 300.440734863 300.422698975 300.350311279 300.20526123 300.044189453 299.855194092 299.620910645 299.421905518 299.162475586 298.726226807 298.169952393 297.701660156 297.295715332 296.908782959 296.801391602 297.102539062 296.474609375 295.433685303 294.48324585 293.550231934 292.99899292 290.975128174 283.858612061 271.791442871 253.554351807 246.38899231 245.903747559 248.17767334 252.594177246 260.90927124 267.376403809 267.421905518 264.18359375 260.752197266 262.078887939 263.029541016 262.43057251 260.060394287 259.390716553 260.326538086 260.910095215 260.119598389 257.619384766 253.675430298 249.52494812 246.21257019 244.239547729 242.714706421 241.581665039 241.058746338 239.88520813 238.642288208 238.132766724 237.439468384 237.590576172 241.354293823 244.890060425 246.234588623 245.587081909 244.228271484 243.376480103 241.974578857 240.652938843 239.840362549 239.52696228 239.599777222 239.407684326 233.692428589 232.188949585 231.269592285 230.420547485 229.032455444 227.263824463 226.70350647 227.983291626 230.185150146 232.527755737 234.340591431 236.180297852 239.21723938 243.678070068 249.331604004 255.212524414 261.91217041 266.943145752 271.590942383 272.796203613 273.169311523 273.500946045 273.718658447 273.883209229 274.158416748 274.618988037 275.694702148 277.496337891 279.132476807 280.500915527 281.586547852 282.601806641 283.739807129 284.99420166 286.354644775 287.672912598 288.897521973 289.96194458 290.745056152 291.511474609 292.353759766 293.18170166 294.021972656 294.744445801 295.317321777 295.825042725 296.312438965 296.709197998 297.036468506 297.389801025 297.836791992 298.327789307 298.819915771 299.264923096 299.65234375 299.942321777 300.135223389 300.271972656 300.350402832 300.303619385 300.228668213 300.293029785 300.317718506 300.122589111 299.839202881 299.640991211 299.416625977 299.053619385 298.685272217 298.392486572 298.042816162 297.6484375 297.438568115 297.269165039 296.828643799 296.624664307 297.332672119 298.149536133 298.199890137 297.170227051 295.637268066 294.911651611 293.01171875 285.527648926 272.693817139 257.132110596 251.453369141 250.815063477 252.2447052 255.919235229 262.125030518 268.288085938 268.325927734 264.515930176 260.111816406 261.096557617 261.407684326 259.736175537 257.45614624 257.024291992 257.535400391 257.971435547 258.110351562 257.862213135 257.637786865 256.677886963 254.139770508 251.589141846 249.812561035 247.93309021 245.853744507 243.024368286 240.306564331 238.417785645 237.339752197 237.535415649 241.692901611 245.975158691 248.239746094 248.092300415 247.799087524 247.833908081 247.109024048 245.782073975 244.577987671 243.78187561 242.903137207 242.302047729 220.270278931 217.62550354 217.465713501 217.309799194 215.95552063 214.184234619 213.947799683 217.456726074 223.563919067 228.974914551 232.204071045 234.516769409 237.974502563 243.258926392 249.196731567 254.978851318 261.396484375 265.223205566 270.980560303 272.235839844 272.519042969 272.867156982 273.239959717 273.623931885 274.101928711 274.763427734 276.095733643 277.966674805 279.474151611 280.69833374 281.717834473 282.706420898 283.756958008 284.88482666 286.100067139 287.285888672 288.413391113 289.446228027 290.247131348 291.048858643 291.901184082 292.65032959 293.344726562 294.021759033 294.694915771 295.347167969 295.991699219 296.573791504 297.116088867 297.676086426 298.215820312 298.717193604 299.177062988 299.508850098 299.80178833 300.006286621 300.136138916 300.220153809 300.33694458 300.38949585 300.428955078 300.539733887 300.601928711 300.569793701 300.527404785 300.383331299 300.084564209 299.707397461 299.375335693 299.188232422 298.924591064 298.370941162 297.913635254 297.806152344 297.625732422 297.591033936 298.184387207 298.392333984 298.375946045 297.570617676 296.710601807 296.092224121 294.52331543 287.553863525 274.739349365 258.91418457 252.795318604 252.059555054 252.886474609 257.788238525 265.093109131 273.213562012 275.116424561 272.712432861 269.058441162 268.976165771 268.87789917 265.894836426 264.339874268 264.207855225 264.311676025 264.693115234 264.641967773 263.55871582 262.276184082 261.02947998 260.032531738 259.753234863 259.191101074 258.981292725 258.843780518 257.444946289 256.146118164 255.79624939 256.028533936 256.846679688 257.97756958 258.488677979 258.367645264 257.124267578 255.756240845 254.643157959 252.900421143 250.339950562 247.87802124 246.161529541 244.70010376 242.538406372 244.948974609 244.380249023 243.684295654 242.731704712 241.800445557 240.923217773 240.391387939 240.835327148 242.237609863 243.819213867 244.689910889 245.605072021 247.688568115 251.193161011 256.499816895 262.901824951 268.94631958 271.232116699 272.03527832 272.067626953 272.267425537 272.588653564 272.945892334 273.459686279 273.998809814 274.601501465 275.725128174 277.338226318 278.867706299 280.312896729 281.490905762 282.552398682 283.706359863 284.872009277 285.989257812 287.01651001 288.023406982 289.072418213 290.03112793 290.993164062 291.985443115 292.908660889 293.705505371 294.304870605 294.782867432 295.20425415 295.631347656 296.042907715 296.419555664 296.845916748 297.348846436 297.836029053 298.316741943 298.770111084 299.239776611 299.720916748 300.011962891 300.045684814 300.056518555 300.179443359 300.302703857 300.368774414 300.386474609 300.273345947 300.094207764 299.986053467 299.830841064 299.604278564 299.387268066 299.092254639 298.625915527 298.021148682 297.412994385 296.959472656 296.733703613 296.756744385 297.051116943 297.317199707 295.812927246 294.985809326 294.804595947 293.785339355 290.445709229 281.715545654 269.119354248 252.448364258 247.174484253 246.966949463 247.397521973 250.392868042 258.387359619 265.765838623 267.108947754 264.219726562 261.439880371 261.960906982 262.137329102 260.634460449 258.025390625 257.297454834 259.025756836 260.128967285 260.191925049 258.105133057 254.374008179 250.150299072 246.722244263 244.587219238 243.016677856 241.787033081 240.917953491 240.101486206 238.991348267 238.475952148 237.485534668 237.014862061 239.225021362 243.178665161 245.804428101 245.232177734 244.119888306 243.261230469 241.887023926 240.795089722 239.857131958 239.56010437 239.617614746 239.408966064 233.710998535 232.233459473 231.295669556 230.483154297 229.179962158 227.465942383 226.6824646 227.843658447 229.772674561 231.792892456 233.241821289 234.828262329 237.837936401 242.414855957 248.1668396 254.115722656 261.251861572 266.647644043 271.441009521 272.678924561 273.057159424 273.413726807 273.67565918 273.894927979 274.237457275 274.753143311 275.874786377 277.631774902 279.241271973 280.657318115 281.805206299 282.798095703 283.856567383 285.039672852 286.32800293 287.581390381 288.780548096 289.839477539 290.592071533 291.320251465 292.160430908 293.002716064 293.807037354 294.46887207 295.04776001 295.600646973 296.117706299 296.531066895 296.880889893 297.289703369 297.765472412 298.230895996 298.710327148 299.173065186 299.60760498 299.884979248 300.06262207 300.251983643 300.451080322 300.475341797 300.324829102 300.26940918 300.254730225 300.110534668 299.869812012 299.670379639 299.450958252 299.144195557 298.795562744 298.407989502 297.989257812 297.554626465 297.222869873 297.027557373 296.75793457 296.523742676 296.909362793 297.745269775 297.986785889 297.273498535 296.446929932 294.778594971 291.607299805 282.938873291 270.147491455 256.51739502 251.959762573 251.531906128 251.633453369 254.182312012 259.681671143 266.014373779 267.267578125 264.629638672 261.051391602 260.848022461 259.84197998 257.469360352 255.398666382 255.074554443 256.528930664 257.281982422 258.11618042 257.905426025 257.503570557 256.316955566 253.54637146 251.235137939 249.842071533 248.23878479 246.130859375 244.00541687 241.29977417 238.920059204 237.480209351 236.764907837 239.54335022 244.772888184 247.982269287 248.033859253 247.613449097 247.759292603 246.872085571 245.708587646 244.548812866 243.793075562 242.859939575 242.297241211 220.28994751 217.618011475 217.438598633 217.330322266 216.160720825 214.402587891 213.891555786 216.976394653 222.802047729 227.921310425 230.814819336 232.935668945 236.400878906 241.907165527 248.036758423 253.968978882 260.688049316 264.915130615 270.747161865 272.135314941 272.421478271 272.808624268 273.22555542 273.663482666 274.253540039 275.018707275 276.401550293 278.218719482 279.657714844 280.873962402 281.941070557 282.91506958 283.875793457 284.947570801 286.136993408 287.304901123 288.441864014 289.464782715 290.204925537 290.94708252 291.76473999 292.481811523 293.146514893 293.816040039 294.494506836 295.174865723 295.857147217 296.450256348 297.001190186 297.592376709 298.127105713 298.612976074 299.062866211 299.374603271 299.651275635 299.905181885 300.116973877 300.296783447 300.465393066 300.496459961 300.503997803 300.649169922 300.739227295 300.691345215 300.630187988 300.441040039 300.080993652 299.7449646 299.494842529 299.213256836 298.779998779 298.15927124 297.6847229 297.597198486 297.548400879 297.546051025 297.96395874 298.416992188 298.007995605 297.373779297 296.696899414 295.485687256 293.049499512 284.770355225 271.117462158 257.601898193 253.29750061 252.963806152 252.35597229 255.963577271 262.366851807 271.127868652 274.125244141 272.79397583 270.120727539 269.618225098 267.31930542 264.378936768 262.469421387 262.086151123 263.145568848 263.845184326 264.456939697 263.511932373 262.46496582 261.248168945 260.063079834 259.552337646 258.99319458 258.666107178 258.305877686 257.132568359 255.820663452 255.442520142 255.619430542 256.169403076 257.149688721 257.883972168 258.06072998 256.894226074 255.467834473 254.383621216 252.698776245 250.159912109 247.748397827 246.169555664 244.695556641 242.522674561 244.963119507 244.374984741 243.732376099 242.811599731 241.92388916 241.058853149 240.427062988 240.763549805 241.852523804 243.050476074 243.8777771 244.694274902 246.739379883 250.209716797 255.618026733 262.109436035 268.559020996 271.195770264 272.184631348 272.119750977 272.284362793 272.621337891 273.01373291 273.601318359 274.174987793 274.764709473 275.873046875 277.450775146 278.96887207 280.425354004 281.63848877 282.704345703 283.788238525 284.872894287 285.947021484 286.975799561 287.984619141 289.004486084 289.921264648 290.853668213 291.852874756 292.803344727 293.605529785 294.14364624 294.549255371 294.947631836 295.398284912 295.86239624 296.293884277 296.763244629 297.292327881 297.813537598 298.300079346 298.710266113 299.166107178 299.668457031 299.992034912 300.059112549 300.097229004 300.171203613 300.201019287 300.251800537 300.310028076 300.207946777 300.047027588 299.972412109 299.824127197 299.581726074 299.322418213 298.966033936 298.474151611 297.821380615 297.08404541 296.615539551 296.593902588 296.772155762 297.012298584 297.294464111 296.991729736 295.681793213 295.378265381 294.438964844 289.749847412 279.945068359 267.351318359 255.740249634 249.040130615 247.934616089 246.916152954 248.502090454 255.557373047 263.946838379 266.433959961 264.881256104 262.192840576 261.493896484 261.412872314 258.718078613 255.805801392 255.304748535 257.707946777 260.050170898 260.095916748 258.589355469 254.733230591 250.649703979 247.06086731 244.818115234 242.992095947 241.945495605 240.8722229 240.100189209 239.176239014 238.765335083 237.574142456 236.418395996 237.153015137 241.777832031 245.25479126 244.887527466 244.075866699 243.157455444 241.884124756 240.936630249 239.938186646 239.596847534 239.634353638 239.409622192 233.774780273 232.206512451 231.31930542 230.533920288 229.326431274 227.706344604 226.797851562 227.753158569 229.419540405 231.069534302 232.263320923 233.651947021 236.589538574 241.2684021 247.229034424 253.242675781 260.655731201 266.360931396 271.335845947 272.61706543 273.014770508 273.381530762 273.656280518 273.922729492 274.327423096 274.887939453 276.010559082 277.702972412 279.286773682 280.725402832 281.926696777 282.934783936 283.941925049 285.072174072 286.320739746 287.526611328 288.674316406 289.693267822 290.428466797 291.147216797 291.996063232 292.854888916 293.632171631 294.239379883 294.817352295 295.396606445 295.913452148 296.32699585 296.695739746 297.141906738 297.663085938 298.166656494 298.649017334 299.102478027 299.567504883 299.890838623 300.098327637 300.290893555 300.496673584 300.551300049 300.380249023 300.270019531 300.267181396 300.190307617 299.959625244 299.670257568 299.387817383 299.131713867 298.818908691 298.378143311 297.958312988 297.495788574 296.96975708 296.671936035 296.644378662 296.603302002 296.679626465 297.179626465 297.62210083 297.179901123 296.895568848 295.241149902 290.528900146 280.946716309 268.093719482 257.330444336 253.121963501 252.097824097 251.57081604 252.676361084 257.563049316 263.840942383 266.454498291 264.937835693 261.794525146 260.009185791 258.35824585 255.606811523 253.340179443 253.186248779 255.376480103 257.526916504 258.117919922 258.217102051 257.532012939 256.029846191 253.111114502 251.152832031 249.854492188 248.690261841 246.729614258 244.857498169 242.253326416 239.589096069 237.70526123 236.238311768 237.535293579 243.142333984 247.697998047 247.905227661 247.366439819 247.603286743 246.587554932 245.608703613 244.545883179 243.798324585 242.812438965 242.291610718 220.312408447 217.649459839 217.469711304 217.40184021 216.368682861 214.683685303 213.771911621 216.526031494 222.031463623 226.937576294 229.535232544 231.552185059 234.969116211 240.634887695 247.029602051 253.116104126 260.051727295 264.761871338 270.698181152 272.106384277 272.384613037 272.799713135 273.23260498 273.71182251 274.398956299 275.244628906 276.626800537 278.398956299 279.803710938 281.010070801 282.097259521 283.059631348 283.96887207 285.001068115 286.179626465 287.342529297 288.456298828 289.423461914 290.118347168 290.847351074 291.665344238 292.376373291 293.035949707 293.699584961 294.36706543 295.055480957 295.760101318 296.354003906 296.913787842 297.516082764 298.050628662 298.52520752 298.956634521 299.257110596 299.540039062 299.85736084 300.118621826 300.324890137 300.486816406 300.542663574 300.602874756 300.771240234 300.833648682 300.790924072 300.745605469 300.4871521 300.01675415 299.694610596 299.524597168 299.23336792 298.771118164 298.148223877 297.609375 297.444732666 297.521057129 297.637390137 297.845458984 298.161437988 298.14730835 297.404296875 296.611968994 295.408782959 291.887695312 282.451416016 267.617797852 257.073638916 254.095870972 253.695587158 252.157928467 254.32673645 260.232543945 268.935638428 273.075653076 273.383880615 271.178436279 269.656921387 267.111968994 262.916442871 260.594848633 259.989044189 261.569580078 263.557495117 264.193725586 263.579711914 262.492401123 261.273010254 259.726989746 259.270935059 258.628112793 258.273529053 257.732513428 256.527008057 255.318511963 254.918731689 255.106002808 255.508209229 256.083068848 257.121795654 257.676757812 256.622161865 255.146911621 254.116256714 252.559570312 249.969085693 247.723114014 246.171173096 244.694656372 242.504684448 245.006820679 244.440139771 243.806671143 242.923400879 242.090194702 241.208206177 240.556716919 240.695358276 241.5418396 242.509979248 242.954605103 243.950378418 245.934341431 249.441299438 254.826828003 261.465332031 268.081329346 271.177368164 272.3309021 272.211853027 272.367126465 272.698028564 273.069824219 273.696624756 274.310180664 274.899414062 275.98135376 277.543457031 279.062133789 280.50201416 281.703338623 282.754089355 283.794189453 284.840393066 285.922180176 286.972106934 287.962646484 288.918365479 289.790252686 290.723693848 291.760681152 292.736724854 293.518981934 294.002319336 294.368774414 294.755645752 295.213928223 295.707427979 296.185089111 296.692962646 297.249969482 297.807373047 298.288909912 298.652770996 299.099243164 299.632781982 300.001617432 300.111480713 300.177398682 300.2137146 300.169433594 300.207519531 300.280883789 300.207092285 300.103027344 300.060272217 299.900299072 299.616546631 299.282836914 298.842193604 298.332672119 297.661071777 296.866790771 296.409759521 296.487762451 296.71496582 296.962677002 297.283416748 297.455841064 296.616912842 295.558319092 294.187042236 288.626647949 278.545227051 266.653259277 256.379333496 250.725875854 248.891479492 246.759094238 247.133178711 253.601593018 262.139312744 265.768920898 265.502685547 262.83480835 260.724578857 259.69140625 256.629089355 253.98789978 253.956680298 256.601928711 259.510284424 260.128814697 258.519226074 255.215698242 250.944732666 247.510742188 244.796417236 243.181762695 242.074905396 240.602005005 239.447036743 238.918457031 238.869689941 237.72265625 235.936752319 236.169174194 239.288360596 244.40864563 244.658950806 244.000610352 242.989517212 241.90814209 241.15625 240.04750061 239.624557495 239.647781372 239.40977478 233.734542847 232.279602051 231.372451782 230.597045898 229.474960327 227.95413208 226.864028931 227.689315796 229.177154541 230.521026611 231.27571106 232.762649536 235.60848999 240.159835815 246.367721558 252.542007446 259.693939209 266.004058838 271.199371338 272.558990479 273.015594482 273.389129639 273.653808594 273.955169678 274.416534424 275.017089844 276.115356445 277.746398926 279.311401367 280.74798584 281.956542969 282.976318359 283.97052002 285.077789307 286.317138672 287.500549316 288.580444336 289.534698486 290.270751953 291.014007568 291.879730225 292.744049072 293.499176025 294.074157715 294.641052246 295.209625244 295.689208984 296.096160889 296.497131348 296.984954834 297.560394287 298.113067627 298.586273193 299.014648438 299.510528564 299.91317749 300.155181885 300.308898926 300.469177246 300.563201904 300.462646484 300.365814209 300.359405518 300.300720215 300.071166992 299.735992432 299.402862549 299.142486572 298.818664551 298.345153809 297.932189941 297.45880127 296.804504395 296.40713501 296.510955811 296.64263916 296.575012207 296.742767334 297.300109863 297.494720459 297.216156006 295.382751465 289.650054932 279.237365723 266.680877686 257.466064453 253.8984375 252.494033813 251.3646698 251.695602417 256.140686035 261.290161133 265.952362061 265.481018066 262.308288574 259.034790039 256.812927246 253.520294189 251.625442505 251.836654663 254.288284302 256.946228027 258.272064209 258.103485107 257.423583984 255.83291626 253.191879272 251.131088257 250.249679565 249.085861206 247.036361694 245.144668579 242.70880127 240.304031372 238.193588257 235.989257812 236.510757446 240.568984985 247.336654663 247.751251221 247.162460327 247.364318848 246.333831787 245.562026978 244.536697388 243.802139282 242.744522095 242.285964966 220.350769043 217.752532959 217.499710083 217.416809082 216.584762573 215.001022339 213.794219971 216.113998413 221.323196411 225.972747803 228.445755005 230.312561035 233.627456665 239.316360474 246.070571899 252.41998291 259.265716553 264.67300415 270.724639893 272.1199646 272.395294189 272.833404541 273.258361816 273.757263184 274.531036377 275.4324646 276.781188965 278.524414062 279.929962158 281.128723145 282.196105957 283.133392334 284.027557373 285.049224854 286.240631104 287.401092529 288.454284668 289.339599609 290.017700195 290.778900146 291.620300293 292.33404541 293.006591797 293.679260254 294.322235107 294.992584229 295.689361572 296.27230835 296.842437744 297.462585449 297.994567871 298.441223145 298.847229004 299.147033691 299.455169678 299.820587158 300.092529297 300.295623779 300.466339111 300.578338623 300.689575195 300.817047119 300.835083008 300.841369629 300.868103027 300.607788086 300.095703125 299.770233154 299.601165771 299.318969727 298.897216797 298.277679443 297.644744873 297.372314453 297.547698975 297.78427124 297.841125488 297.973052979 298.305297852 297.99206543 296.607818604 294.986633301 290.775848389 280.841583252 266.834564209 257.41204834 254.85005188 254.086074829 252.704467773 253.478225708 258.786193848 265.170257568 272.163848877 273.644073486 271.7449646 269.410003662 265.843139648 261.290924072 258.977600098 258.343902588 260.181243896 262.676025391 264.086456299 263.407348633 262.541290283 261.216522217 259.690826416 258.909118652 258.477905273 258.028045654 256.824920654 255.480758667 254.643447876 254.563934326 254.622009277 254.929489136 255.392623901 255.99256897 257.095184326 256.315032959 254.906921387 253.971343994 252.425598145 249.913452148 247.726089478 246.157119751 244.676605225 242.48298645 245.036468506 244.478866577 243.841873169 243.052261353 242.225372314 241.375930786 240.714035034 240.674362183 241.265060425 242.038711548 242.333892822 243.293807983 245.303375244 248.765136719 254.192428589 260.879425049 267.841156006 271.152496338 272.429504395 272.304748535 272.473815918 272.782836914 273.07409668 273.69354248 274.375427246 275.005096436 276.069610596 277.633544922 279.152954102 280.551208496 281.698730469 282.71383667 283.73248291 284.794494629 285.935913086 287.014373779 287.959381104 288.836700439 289.676055908 290.631011963 291.689788818 292.62109375 293.31942749 293.759246826 294.149871826 294.562438965 295.028076172 295.542938232 296.087890625 296.656921387 297.224456787 297.74810791 298.194030762 298.554412842 299.028808594 299.56817627 299.955322266 300.142089844 300.282501221 300.333557129 300.255889893 300.268676758 300.343688965 300.312896729 300.26776123 300.248413086 300.051086426 299.671539307 299.204864502 298.666656494 298.130340576 297.471221924 296.735900879 296.347167969 296.423156738 296.644622803 297.012451172 297.404541016 297.369171143 296.301391602 294.724517822 293.05291748 287.896881104 278.245544434 267.478149414 257.70513916 252.94303894 249.581222534 247.765991211 248.485809326 253.691574097 260.043701172 266.433959961 266.127929688 262.736358643 260.00604248 258.040802002 255.070999146 253.098815918 253.563858032 256.060150146 258.828277588 259.3699646 258.052215576 255.124755859 251.105484009 247.678131104 244.982559204 243.302200317 241.705627441 240.052688599 239.107772827 238.810211182 239.054977417 237.811691284 235.522872925 235.334686279 238.066467285 243.48324585 244.371246338 243.724960327 242.541305542 241.954345703 241.369888306 240.134918213 239.648071289 239.660583496 239.41204834 233.734649658 232.308898926 231.409118652 230.66835022 229.636184692 228.215164185 227.049087524 227.684631348 228.97277832 230.071517944 230.683319092 232.110336304 234.736831665 239.207122803 245.530838013 251.969436646 259.483551025 265.577606201 270.939208984 272.447631836 273.024719238 273.421539307 273.654388428 273.976654053 274.494262695 275.138824463 276.205383301 277.791931152 279.347625732 280.755981445 281.894897461 282.882415771 283.899200439 285.034393311 286.310668945 287.488250732 288.481170654 289.35559082 290.116516113 290.911590576 291.778320312 292.624420166 293.346343994 293.897399902 294.449768066 294.976074219 295.416503906 295.853668213 296.333190918 296.881500244 297.473571777 297.996032715 298.411132812 298.840209961 299.391479492 299.847229004 300.108032227 300.265533447 300.434417725 300.604064941 300.600280762 300.504241943 300.441802979 300.356933594 300.174682617 299.918273926 299.592529297 299.26361084 298.886688232 298.384918213 297.863494873 297.287963867 296.682800293 296.356903076 296.418212891 296.510192871 296.509185791 296.656433105 296.851074219 296.509399414 295.352050781 294.165649414 289.136993408 278.971282959 267.681213379 258.944030762 255.000701904 252.931884766 251.666152954 252.379226685 256.135986328 260.460174561 266.113067627 265.922515869 262.250579834 258.115203857 254.941543579 252.190734863 250.697906494 251.377426147 253.75793457 256.310791016 257.653778076 257.752166748 257.219299316 255.73135376 253.315856934 251.428985596 250.500442505 248.962402344 246.896133423 245.31401062 243.357406616 241.00453186 238.717163086 235.904144287 235.703186035 239.315628052 246.739501953 247.458892822 247.021148682 246.882797241 246.215377808 245.513824463 244.522506714 243.801574707 242.679519653 242.277679443 220.411117554 217.780075073 217.516387939 217.53503418 216.802093506 215.331481934 213.796844482 215.756561279 220.631576538 225.058944702 227.43510437 229.098693848 232.406143188 238.085876465 245.20539856 251.806411743 258.979644775 264.566223145 270.694488525 272.138763428 272.436706543 272.891571045 273.302001953 273.80947876 274.658111572 275.590118408 276.884674072 278.597442627 280.03729248 281.223022461 282.2159729 283.112670898 284.038360596 285.109161377 286.337615967 287.476196289 288.430999756 289.227722168 289.9168396 290.732269287 291.573608398 292.260681152 292.93661499 293.626098633 294.262969971 294.925384521 295.602874756 296.18057251 296.7628479 297.412597656 297.938995361 298.330413818 298.689422607 299.015197754 299.378234863 299.769592285 300.046875 300.293121338 300.518371582 300.638641357 300.690856934 300.740356445 300.78503418 300.879089355 300.935577393 300.687011719 300.267822266 300.003723145 299.795257568 299.456268311 299.010192871 298.36138916 297.699615479 297.433349609 297.59286499 297.772460938 297.740539551 297.719970703 297.896850586 297.497711182 295.622619629 294.062683105 289.746276855 280.508270264 268.257507324 258.694793701 255.662689209 254.688934326 253.730529785 254.35345459 258.352111816 264.026824951 272.1640625 273.922454834 272.162628174 268.900939941 263.442169189 259.845336914 258.204925537 257.871612549 259.556640625 262.090148926 263.269897461 262.955169678 262.502868652 261.116333008 259.568572998 258.749389648 258.374572754 257.329101562 255.816238403 254.596176147 253.964080811 254.214309692 254.213012695 254.458084106 254.817840576 255.313720703 256.486968994 255.915664673 254.707168579 253.783996582 252.296646118 249.895553589 247.741668701 246.114852905 244.646270752 242.475784302 245.036880493 244.515731812 243.900268555 243.163497925 242.354110718 241.54045105 240.899841309 240.718795776 241.076599121 241.616043091 241.877487183 242.721847534 244.793762207 248.202438354 253.576202393 260.302032471 267.622741699 271.066894531 272.423736572 272.374176025 272.547973633 272.828338623 273.023345947 273.583953857 274.348907471 275.064880371 276.145202637 277.702301025 279.210845947 280.559051514 281.642486572 282.63168335 283.669158936 284.791168213 285.996002197 287.058349609 287.91003418 288.724945068 289.571990967 290.554168701 291.605194092 292.472106934 293.085418701 293.499481201 293.919708252 294.370330811 294.85723877 295.406433105 296.01361084 296.616241455 297.174072266 297.667816162 298.113037109 298.50994873 298.984893799 299.46975708 299.87121582 300.136138916 300.317810059 300.361022949 300.305358887 300.35357666 300.446228027 300.418579102 300.378692627 300.375061035 300.182006836 299.716430664 299.128570557 298.564819336 298.077575684 297.460418701 296.767211914 296.472900391 296.595794678 296.862854004 297.18069458 297.319702148 296.870910645 295.004089355 293.658721924 291.982391357 287.068572998 278.875976562 269.553009033 260.56652832 254.487838745 251.157485962 249.326156616 250.734359741 254.172027588 259.091278076 264.847869873 265.348754883 261.973510742 259.215911865 256.566040039 253.863128662 252.898742676 254.073867798 256.230529785 258.37286377 258.474090576 258.006286621 255.183502197 251.147476196 247.782470703 244.793746948 242.84753418 241.110931396 239.649429321 238.798980713 238.495193481 238.943222046 237.841918945 235.257980347 234.620391846 237.071166992 242.43309021 243.891433716 242.932525635 241.801528931 241.999664307 241.514923096 240.170303345 239.668792725 239.683181763 239.427062988 233.768600464 232.341583252 231.485229492 230.758773804 229.804092407 228.48600769 227.297592163 227.685470581 228.843704224 229.717941284 230.242050171 231.54737854 234.059890747 238.363525391 244.840164185 251.54838562 259.767272949 265.36505127 270.5128479 272.282165527 273.008087158 273.441680908 273.643920898 273.970123291 274.537384033 275.225158691 276.278259277 277.836486816 279.384979248 280.741546631 281.770507812 282.703735352 283.773590088 284.976013184 286.280761719 287.430725098 288.341461182 289.170928955 289.977416992 290.810882568 291.653198242 292.4609375 293.141296387 293.670623779 294.214355469 294.716339111 295.161651611 295.667266846 296.233276367 296.820465088 297.395904541 297.85824585 298.24041748 298.730377197 299.313232422 299.747283936 300.035827637 300.275512695 300.477508545 300.639831543 300.633392334 300.54006958 300.474517822 300.397796631 300.272155762 300.11239624 299.80557251 299.388885498 298.993408203 298.590057373 298.043945312 297.378417969 296.832763672 296.643798828 296.706695557 296.720397949 296.67855835 296.72555542 296.562713623 295.302398682 294.033050537 293.034973145 288.828094482 280.184234619 269.971893311 261.593780518 256.464935303 253.646438599 252.477111816 253.247436523 256.564758301 259.959655762 265.169189453 265.630157471 262.122497559 256.982940674 253.687042236 250.828765869 250.025039673 251.268890381 253.798736572 255.859832764 256.86932373 257.706085205 257.153137207 255.777236938 253.492935181 251.584686279 250.193145752 248.751586914 246.795455933 245.315124512 243.615036011 241.308486938 239.175018311 236.048309326 235.175033569 238.481033325 245.940261841 247.001953125 246.542633057 246.32409668 246.190551758 245.39666748 244.490097046 243.788986206 242.634979248 242.268768311 220.440811157 217.865005493 217.62109375 217.557662964 217.019088745 215.688018799 213.96105957 215.488586426 220.008483887 224.196289062 226.547317505 228.191757202 231.369476318 237.013916016 244.33795166 251.193908691 259.090484619 264.494384766 270.523132324 272.128265381 272.472625732 272.942657471 273.349761963 273.862243652 274.760131836 275.698425293 276.931060791 278.610656738 280.080841064 281.23916626 282.140563965 283.004638672 284.012359619 285.180328369 286.433441162 287.509124756 288.363067627 289.088195801 289.804046631 290.665283203 291.490997314 292.143463135 292.807403564 293.486877441 294.140930176 294.827087402 295.51449585 296.105316162 296.712799072 297.354156494 297.861541748 298.230804443 298.573455811 298.935577393 299.369750977 299.788879395 300.081298828 300.34475708 300.551025391 300.600952148 300.59765625 300.683898926 300.847808838 300.991516113 300.967926025 300.704467773 300.393798828 300.172790527 299.92175293 299.580383301 299.179077148 298.583343506 297.992462158 297.753143311 297.7762146 297.764099121 297.673095703 297.514129639 297.30380249 296.294006348 294.492340088 292.564910889 288.947601318 281.323913574 270.711578369 261.002929688 256.971343994 255.365020752 255.069046021 255.683822632 258.831939697 263.248657227 270.969940186 273.535675049 271.908569336 267.757995605 261.407440186 258.610473633 257.819915771 257.868988037 259.885284424 261.865875244 262.47076416 262.922607422 262.622009277 261.151275635 259.73348999 258.516296387 257.887176514 256.685760498 255.102386475 253.846908569 253.401824951 253.883209229 253.896209717 254.066772461 254.288864136 254.780410767 255.850234985 255.451965332 254.428115845 253.482391357 252.173660278 249.812072754 247.710571289 246.050811768 244.607452393 242.503707886 245.064376831 244.555999756 243.982025146 243.277923584 242.484283447 241.713562012 241.101699829 240.747940063 240.903762817 241.238311768 241.542404175 242.321502686 244.371307373 247.793945312 253.085403442 259.836547852 267.730285645 270.85748291 272.296936035 272.400512695 272.589080811 272.849761963 272.987609863 273.458953857 274.287963867 275.102172852 276.224700928 277.761993408 279.239074707 280.53604126 281.562225342 282.539093018 283.614318848 284.795074463 286.032196045 287.047149658 287.807617188 288.583099365 289.460510254 290.478424072 291.527191162 292.359191895 292.929931641 293.324645996 293.745819092 294.212768555 294.733459473 295.331115723 295.975738525 296.565093994 297.104522705 297.601257324 298.062896729 298.466400146 298.902191162 299.358825684 299.814758301 300.129058838 300.290008545 300.332183838 300.346618652 300.445831299 300.535186768 300.515380859 300.518829346 300.578887939 300.418151855 299.866088867 299.141448975 298.571960449 298.18737793 297.628540039 296.924987793 296.664672852 296.827758789 297.088653564 297.261962891 297.055480957 295.725769043 293.353759766 291.92175293 290.627716064 287.454345703 279.731933594 271.642242432 262.533477783 256.887908936 253.154693604 250.904083252 252.278320312 255.915344238 258.00692749 262.157989502 263.50378418 261.035552979 258.01940918 255.207824707 253.243423462 253.05619812 254.111541748 256.119171143 257.896820068 258.433013916 257.934295654 254.838043213 250.929519653 247.193267822 244.194244385 242.01449585 240.312072754 239.303634644 238.407577515 238.109832764 238.737823486 237.769668579 235.111236572 234.012893677 236.175521851 241.377197266 243.112289429 241.645401001 241.840942383 242.084106445 241.614822388 240.161911011 239.7003479 239.712081909 239.440505981 233.782546997 232.373275757 231.536560059 230.853790283 229.979980469 228.762924194 227.588867188 227.745849609 228.726608276 229.464599609 229.881240845 231.173248291 233.498947144 237.735687256 244.31842041 251.175415039 260.364776611 265.139282227 269.922088623 272.082214355 272.975463867 273.440490723 273.629394531 273.950500488 274.55569458 275.289916992 276.345672607 277.874267578 279.39074707 280.682342529 281.611968994 282.52053833 283.661102295 284.931182861 286.227508545 287.314239502 288.153839111 288.976898193 289.845947266 290.7137146 291.527618408 292.291381836 292.93371582 293.441741943 293.977294922 294.475921631 294.948516846 295.518341064 296.14276123 296.731994629 297.286254883 297.723114014 298.122039795 298.67666626 299.252105713 299.654296875 300.000976562 300.324920654 300.515106201 300.633575439 300.645690918 300.584991455 300.541625977 300.485351562 300.424133301 300.37210083 300.123382568 299.623260498 299.144348145 298.825866699 298.390045166 297.709381104 297.062835693 296.867218018 297.075592041 297.228790283 297.173828125 297.040618896 296.367614746 294.473937988 292.975158691 291.95602417 288.653717041 281.14730835 271.889099121 263.547729492 258.281677246 255.386459351 253.950698853 254.732528687 257.088806152 259.434356689 264.090789795 264.906677246 261.280761719 256.004364014 252.527984619 249.966583252 249.545516968 250.912826538 253.386276245 255.495544434 257.044036865 257.570556641 256.790527344 255.550796509 253.394500732 251.575469971 249.922439575 248.381332397 246.749252319 245.094741821 243.457946777 241.332489014 239.463790894 236.27746582 234.870483398 237.82244873 245.06578064 246.353042603 245.661132812 246.130310059 246.217834473 245.30267334 244.461120605 243.782531738 242.586776733 242.26385498 220.484512329 217.933044434 217.70199585 217.705474854 217.190109253 216.057006836 214.219528198 215.277206421 219.381744385 223.363433838 225.775985718 227.390823364 230.462615967 236.078475952 243.503112793 250.635192871 259.0078125 264.241271973 270.160247803 272.084197998 272.501251221 272.980163574 273.39263916 273.914489746 274.841430664 275.786224365 276.967437744 278.602020264 280.074645996 281.200897217 282.031341553 282.896942139 284.006256104 285.258972168 286.492858887 287.472595215 288.241577148 288.939849854 289.699493408 290.609313965 291.432006836 292.079345703 292.737823486 293.393096924 294.05166626 294.751281738 295.437347412 296.055969238 296.693572998 297.29107666 297.753448486 298.124450684 298.490661621 298.912506104 299.421966553 299.871887207 300.168579102 300.396606445 300.533813477 300.558044434 300.596282959 300.724609375 300.913421631 301.065063477 301.046142578 300.850952148 300.590515137 300.320220947 300.027679443 299.753692627 299.455413818 298.864807129 298.185180664 297.831665039 297.860992432 297.935791016 297.949707031 297.722473145 296.85559082 295.215393066 293.823364258 291.543365479 288.575897217 282.28918457 273.047149658 263.192596436 258.419464111 256.319519043 256.304992676 257.063995361 259.221740723 262.698760986 269.995758057 272.722839355 270.991333008 265.959686279 259.983581543 257.857116699 257.625213623 258.309326172 260.134216309 261.863647461 262.531921387 262.899658203 262.287078857 260.970275879 259.408569336 258.112182617 257.282226562 256.02432251 254.682556152 253.210510254 252.964050293 253.612426758 253.638198853 253.735443115 253.832611084 254.171096802 255.182525635 254.881088257 253.948532104 253.16116333 252.035232544 249.70803833 247.68107605 245.971878052 244.559310913 242.537521362 245.09703064 244.549041748 244.03062439 243.390182495 242.597457886 241.912658691 241.303085327 240.892379761 240.678863525 240.904312134 241.219573975 242.078872681 243.997375488 247.446258545 252.73789978 259.442199707 267.698394775 270.619598389 272.103942871 272.385498047 272.600067139 272.868865967 272.98550415 273.371643066 274.221221924 275.126342773 276.306182861 277.812164307 279.243041992 280.489257812 281.472717285 282.45123291 283.574951172 284.800720215 286.036651611 286.994018555 287.688476562 288.450042725 289.358886719 290.407104492 291.445495605 292.246032715 292.7840271 293.157012939 293.578155518 294.063995361 294.635009766 295.296691895 295.967224121 296.517700195 297.0128479 297.493286133 297.946807861 298.339752197 298.747772217 299.232818604 299.761383057 300.11328125 300.25970459 300.350494385 300.426727295 300.511657715 300.560760498 300.603057861 300.705871582 300.816589355 300.643493652 299.998260498 299.168548584 298.613098145 298.36328125 297.876525879 297.164367676 296.84173584 296.972015381 296.801849365 297.06539917 295.471191406 294.39453125 293.33416748 291.720703125 289.71081543 286.744445801 280.497558594 272.341430664 263.871826172 258.315917969 253.143188477 251.752258301 253.445343018 255.274856567 256.818023682 260.533966064 262.059051514 259.773132324 256.897369385 254.118469238 252.446975708 252.546310425 253.922134399 255.522567749 256.969421387 257.971496582 257.14465332 254.928833008 250.780136108 246.529510498 243.45401001 241.131744385 239.574493408 238.921386719 238.13192749 237.832336426 238.385238647 237.539810181 234.924087524 233.551864624 235.306335449 240.181259155 241.93019104 240.541702271 241.750534058 242.293441772 241.685134888 240.115249634 239.738830566 239.747695923 239.451171875 233.804656982 232.438613892 231.625427246 230.947540283 230.161514282 229.042663574 227.906143188 227.86038208 228.566711426 229.274856567 229.661209106 230.917602539 233.045654297 237.306488037 243.842727661 250.906463623 260.304626465 264.716491699 269.213775635 271.86831665 272.926208496 273.423492432 273.622283936 273.940917969 274.560882568 275.338745117 276.410491943 277.896362305 279.357696533 280.57901001 281.44039917 282.361907959 283.589569092 284.906921387 286.155853271 287.155731201 287.943725586 288.78213501 289.712127686 290.609313965 291.393249512 292.107299805 292.710968018 293.195892334 293.735107422 294.255523682 294.77532959 295.412017822 296.076629639 296.624206543 297.124359131 297.547363281 297.997314453 298.613037109 299.179382324 299.576690674 299.998168945 300.393218994 300.559967041 300.661071777 300.70880127 300.648590088 300.594787598 300.588317871 300.613433838 300.665283203 300.498352051 299.908599854 299.274963379 298.971862793 298.704284668 298.045501709 297.205230713 296.848480225 297.278320312 297.622283936 297.776519775 296.946746826 296.672698975 295.707946777 293.788909912 291.342926025 288.06048584 281.605529785 273.048309326 264.439666748 259.720184326 256.575408936 254.922073364 255.554138184 257.022155762 258.412322998 261.235168457 263.432250977 259.486694336 254.980010986 251.523727417 249.122955322 248.880813599 250.471572876 252.450592041 254.846511841 256.712432861 257.110198975 256.797637939 255.404495239 253.190368652 251.417709351 249.61857605 248.183853149 246.681793213 244.810577393 243.011779785 241.035598755 239.564788818 236.542892456 234.832565308 237.39112854 244.053329468 245.545883179 244.774169922 245.79548645 246.486709595 245.268753052 244.423950195 243.777893066 242.536880493 242.259048462 220.532028198 218.041870117 217.741256714 217.692108154 217.441635132 216.421600342 214.544967651 215.147857666 218.764434814 222.54989624 224.932830811 226.604858398 229.620391846 235.218933105 242.757293701 250.152954102 258.776092529 263.942687988 269.513031006 272.014373779 272.526885986 273.012023926 273.43572998 273.970733643 274.911773682 275.865112305 277.001586914 278.580566406 280.032287598 281.126800537 281.92199707 282.824951172 284.035308838 285.345336914 286.511230469 287.378082275 288.095703125 288.820861816 289.630004883 290.56652832 291.378387451 292.029571533 292.687438965 293.308654785 293.970794678 294.687225342 295.371459961 296.020477295 296.681304932 297.203277588 297.59576416 297.990509033 298.433868408 298.945159912 299.524230957 299.984954834 300.276245117 300.453460693 300.541259766 300.594421387 300.688842773 300.787384033 300.908477783 301.057617188 301.099761963 300.952270508 300.645782471 300.281494141 300.007751465 299.86706543 299.660552979 298.988769531 298.092193604 297.552581787 297.75958252 298.157104492 298.524017334 297.915527344 297.198364258 296.541564941 294.162536621 291.561065674 288.785125732 282.853851318 274.555358887 265.684814453 260.426452637 257.65838623 257.062927246 257.569396973 259.902862549 261.739715576 268.333892822 271.29385376 269.701538086 263.342437744 259.171295166 257.425872803 257.719970703 258.539825439 260.012145996 261.417541504 262.173431396 262.474121094 262.417297363 260.9715271 259.051422119 257.95892334 256.739990234 255.688919067 254.283493042 252.855606079 252.723068237 253.39050293 253.429901123 253.534057617 253.481277466 253.591812134 254.390914917 254.189376831 253.319458008 252.869857788 251.948959351 249.623825073 247.623641968 245.89225769 244.507675171 242.566101074 245.086761475 244.630508423 244.110412598 243.496963501 242.707717896 242.085571289 241.489044189 241.02456665 240.642730713 240.632537842 240.97303772 241.949768066 243.931915283 247.241958618 252.509597778 259.121582031 266.548187256 270.337738037 271.797515869 272.327697754 272.584259033 272.901611328 273.034667969 273.34487915 274.14956665 275.132080078 276.383605957 277.845397949 279.21697998 280.412902832 281.385986328 282.408966064 283.598571777 284.833740234 286.018188477 286.920837402 287.583007812 288.335266113 289.256225586 290.306152344 291.29296875 292.018280029 292.493804932 292.849639893 293.312225342 293.879730225 294.536193848 295.259216309 295.931304932 296.426513672 296.845367432 297.274017334 297.724273682 298.158447266 298.60748291 299.144195557 299.708557129 300.104827881 300.317932129 300.459106445 300.500823975 300.465515137 300.485107422 300.633148193 300.740814209 300.686523438 300.402740479 299.859741211 299.204528809 298.890594482 298.78717041 298.383331299 297.700744629 297.155090332 296.917999268 294.790527344 294.692016602 294.128570557 294.173278809 293.403686523 291.536071777 288.563262939 285.883972168 280.033691406 271.310241699 261.044891357 256.265991211 254.453125 252.479949951 253.192749023 253.886566162 255.747085571 259.510467529 261.143463135 258.759033203 255.798034668 253.161636353 251.466171265 251.717697144 253.30039978 255.071426392 256.256958008 256.877593994 256.660217285 254.207702637 250.286972046 245.919464111 242.78578186 240.19241333 238.723480225 238.405807495 237.850769043 237.615859985 237.845336914 237.283569336 234.893081665 233.248168945 234.580200195 238.984909058 240.428207397 239.672149658 241.749359131 242.783554077 241.704681396 240.065643311 239.798171997 239.795516968 239.4637146 233.850631714 232.513259888 231.691574097 231.052764893 230.340560913 229.328155518 228.240020752 228.027755737 228.529953003 229.106964111 229.54196167 230.792907715 232.90222168 236.941741943 243.563323975 250.593933105 258.054229736 263.920196533 268.460784912 271.659057617 272.859222412 273.394042969 273.626403809 273.946502686 274.555725098 275.369140625 276.472869873 277.897888184 279.278839111 280.436035156 281.288085938 282.272705078 283.586090088 284.908203125 286.062713623 286.982666016 287.747894287 288.604858398 289.556762695 290.443939209 291.18270874 291.849700928 292.410614014 292.88092041 293.462890625 294.053863525 294.651397705 295.363311768 296.035339355 296.472198486 296.862640381 297.291320801 297.864501953 298.581359863 299.188262939 299.614868164 300.108764648 300.539642334 300.694854736 300.784301758 300.776702881 300.631164551 300.5753479 300.663116455 300.704650879 300.703491211 300.517364502 299.863128662 299.426330566 299.326843262 299.295837402 298.765106201 297.811676025 297.206787109 297.431945801 296.884185791 297.562225342 297.084014893 297.235717773 296.017150879 293.792633057 290.079833984 287.660766602 281.487762451 273.06918335 263.743835449 259.545318604 257.121643066 255.351394653 255.569641113 255.957336426 257.299530029 259.894195557 261.432281494 257.830047607 253.808731079 250.858840942 248.549728394 248.51411438 249.927886963 252.33215332 254.223815918 255.789505005 256.856628418 256.385925293 255.235168457 253.0912323 251.410476685 249.356292725 247.761428833 246.337844849 244.427185059 242.467605591 240.435302734 239.527603149 236.794235229 234.907302856 237.048416138 243.006484985 244.599411011 243.610290527 245.577651978 246.883590698 245.300964355 244.408554077 243.76725769 242.519989014 242.2550354 220.50894165 218.092178345 217.872848511 217.965881348 217.664733887 216.79737854 214.919433594 215.088638306 218.221694946 221.749572754 224.127166748 225.852005005 228.840682983 234.452377319 242.17225647 249.645172119 257.199768066 263.584228516 268.649414062 271.924835205 272.560211182 273.047119141 273.477142334 274.027526855 274.972564697 275.932647705 277.031616211 278.543701172 279.953430176 281.014862061 281.828338623 282.80380249 284.11416626 285.43371582 286.460845947 287.240386963 287.975402832 288.774108887 289.613861084 290.510986328 291.263336182 291.890625 292.529083252 293.126312256 293.829742432 294.606781006 295.324645996 296.002593994 296.630767822 297.029693604 297.354003906 297.842041016 298.44644165 299.083770752 299.70703125 300.148101807 300.400360107 300.561157227 300.628631592 300.672790527 300.753540039 300.803649902 300.88671875 301.006378174 300.943878174 300.582672119 300.077270508 299.404907227 299.785583496 299.982452393 299.982147217 299.479003906 298.588043213 297.908203125 298.098907471 297.730285645 298.636016846 298.350372314 298.316040039 296.924224854 294.667449951 291.047180176 288.610626221 282.921081543 274.911804199 266.774017334 261.871520996 259.019500732 257.575714111 257.495941162 258.868621826 261.071655273 266.669250488 269.788818359 268.29864502 261.981903076 258.462799072 257.083496094 257.588500977 258.289764404 259.933959961 261.01373291 261.548431396 262.336212158 262.155029297 260.88671875 259.184875488 257.764770508 256.125366211 255.07043457 253.912521362 252.652114868 252.59727478 253.088516235 253.298126221 253.373275757 253.175384521 253.142745972 253.633544922 253.378082275 252.595932007 252.716598511 251.905639648 249.554412842 247.573394775 245.819030762 244.479629517 242.587539673 245.07623291 244.64755249 244.17855835 243.619766235 242.817596436 242.227813721 241.677215576 241.177505493 240.641311646 240.516571045 240.81829834 241.912353516 243.866897583 247.038848877 252.33026123 258.819549561 265.406738281 269.95413208 271.535583496 272.288421631 272.573760986 272.930297852 273.09753418 273.353942871 274.078613281 275.103210449 276.416870117 277.848022461 279.160400391 280.325286865 281.343780518 282.465515137 283.716949463 284.904052734 285.991485596 286.847167969 287.493225098 288.20904541 289.099090576 290.125305176 291.070739746 291.753723145 292.191802979 292.559112549 293.107391357 293.797241211 294.53125 295.24407959 295.820526123 296.221374512 296.608886719 297.059020996 297.578491211 298.096984863 298.612182617 299.164703369 299.730407715 300.168182373 300.440887451 300.552520752 300.511352539 300.438201904 300.480743408 300.540618896 300.344940186 299.877044678 299.223022461 299.162536621 299.377990723 299.371917725 299.297088623 298.891143799 298.180236816 297.335479736 296.496582031 294.597259521 293.995819092 292.158599854 291.597381592 290.479217529 289.358612061 286.937652588 283.396179199 276.749664307 269.140991211 259.473175049 255.664703369 253.453231812 252.423309326 253.363967896 252.899017334 255.572250366 259.445220947 260.680267334 257.975402832 254.667755127 252.547302246 250.910064697 250.88319397 252.264221191 253.869842529 255.271987915 256.074768066 256.481536865 253.73739624 249.647186279 245.473632812 242.199432373 239.539550781 238.074920654 237.808502197 237.737854004 237.237869263 237.369995117 236.942626953 234.798675537 233.041275024 234.064453125 238.642791748 239.145370483 240.079864502 242.611099243 243.359207153 241.749801636 240.032470703 239.870025635 239.857009888 239.483123779 233.839736938 232.511154175 231.787155151 231.158279419 230.521255493 229.622787476 228.573059082 228.207122803 228.518554688 228.942626953 229.479278564 230.824356079 232.824890137 236.777587891 243.39225769 250.295455933 256.192871094 262.090393066 267.936004639 271.562866211 272.834838867 273.38079834 273.63873291 273.943481445 274.526550293 275.373443604 276.510864258 277.880371094 279.192443848 280.312561035 281.212310791 282.289825439 283.657318115 284.921691895 285.972076416 286.857757568 287.630554199 288.477172852 289.391998291 290.244506836 290.965026855 291.62298584 292.167510986 292.644012451 293.300140381 293.9972229 294.666778564 295.38772583 295.966186523 296.245117188 296.577941895 297.119415283 297.877349854 298.684051514 299.324615479 299.770111084 300.287689209 300.700927734 300.81137085 300.813873291 300.719360352 300.574127197 300.582092285 300.623779297 300.401245117 300.027496338 299.609741211 299.377685547 299.736846924 299.999908447 300.12979126 299.759185791 298.956298828 298.154937744 297.577697754 297.801483154 297.99407959 296.745788574 295.273376465 293.541473389 291.94140625 288.690002441 285.421386719 279.169921875 270.0597229 262.43737793 259.165100098 257.183776855 255.839996338 255.191467285 255.420059204 257.1925354 259.867736816 261.655822754 256.848144531 252.931243896 250.40246582 248.429489136 248.133224487 249.352218628 251.308914185 253.421585083 255.273895264 256.808105469 256.275695801 255.100204468 253.056610107 251.198486328 249.367874146 247.638137817 246.057418823 244.027053833 241.784347534 239.86882019 239.3152771 236.964233398 235.088623047 236.843826294 242.665725708 243.728485107 244.039581299 245.913619995 247.316772461 245.404159546 244.412826538 243.744567871 242.53276062 242.253952026 220.595306396 218.151260376 218.007583618 218.002197266 217.968887329 217.201507568 215.304489136 215.16947937 217.813064575 221.007354736 223.359573364 225.175079346 228.222915649 233.920318604 241.680587769 249.146697998 255.563034058 262.798217773 268.035552979 271.858123779 272.611083984 273.086486816 273.509155273 274.063751221 274.998809814 275.965484619 277.050323486 278.509338379 279.858673096 280.896575928 281.762664795 282.827575684 284.210723877 285.431732178 286.34173584 287.10546875 287.912597656 288.768218994 289.613037109 290.469787598 291.171508789 291.771911621 292.392089844 292.987091064 293.745513916 294.598571777 295.356109619 295.995178223 296.502258301 296.78427124 297.138763428 297.792053223 298.559661865 299.284729004 299.917541504 300.32723999 300.545776367 300.686828613 300.696472168 300.675354004 300.755462646 300.860076904 300.938537598 300.872833252 300.461669922 299.752471924 298.782806396 298.802307129 299.91986084 300.404815674 300.648620605 300.615722656 300.166107178 299.465881348 299.053894043 299.587982178 300.064208984 298.852172852 297.149261475 295.292388916 292.922424316 289.913726807 286.613311768 280.816375732 273.410888672 266.090942383 262.298126221 259.94619751 258.320007324 257.371856689 258.834960938 260.833618164 266.030059814 269.121826172 267.24710083 261.579803467 258.20111084 256.793243408 257.199951172 257.905029297 259.333251953 260.489898682 261.183807373 262.414672852 262.127746582 260.741668701 259.273223877 257.703308105 255.946502686 254.817550659 253.758132935 252.766357422 252.528213501 252.871124268 253.152069092 253.223724365 252.869567871 252.677078247 253.237823486 252.657623291 252.84664917 252.669692993 251.895202637 249.560745239 247.530883789 245.745300293 244.467529297 242.597488403 245.085174561 244.684448242 244.242401123 243.739639282 242.927398682 242.363067627 241.841674805 241.312576294 240.728057861 240.496704102 240.844070435 241.899978638 243.806610107 246.990814209 252.215332031 258.597930908 265.118682861 269.201019287 271.341247559 272.275268555 272.558227539 272.930419922 273.130737305 273.356506348 273.989929199 275.055603027 276.426361084 277.841186523 279.098632812 280.246002197 281.330047607 282.556427002 283.844909668 284.957458496 285.935943604 286.743347168 287.37322998 288.057006836 288.918182373 289.92276001 290.843078613 291.5284729 291.98449707 292.383911133 293.007873535 293.793884277 294.564910889 295.20803833 295.636444092 295.946655273 296.371337891 296.903045654 297.482666016 298.034759521 298.595275879 299.202911377 299.82635498 300.299926758 300.572174072 300.617797852 300.520477295 300.43258667 300.384643555 300.204956055 299.758178711 298.431976318 298.383972168 299.367675781 299.436584473 299.456634521 299.319824219 298.673797607 297.616485596 296.525909424 295.299926758 293.731689453 292.678497314 290.635772705 289.018951416 288.034820557 286.899658203 284.315307617 279.552368164 273.727813721 265.882263184 258.731842041 255.385772705 254.309692383 252.778091431 253.442764282 253.850830078 257.146911621 260.673919678 261.351898193 257.393371582 254.227996826 252.909515381 251.232177734 250.901870728 251.540969849 252.917236328 254.265655518 255.842208862 255.966659546 253.008972168 248.959732056 244.912002563 241.423477173 238.807220459 237.503479004 237.311172485 237.586044312 237.033096313 236.730026245 236.354949951 234.659988403 232.896652222 233.66418457 238.087814331 238.499160767 240.337966919 244.44770813 243.730895996 241.784591675 240.098617554 239.956268311 239.924255371 239.500152588 233.862915039 232.614273071 231.868484497 231.27835083 230.708862305 229.910369873 228.895645142 228.400878906 228.58380127 228.879730225 229.489898682 230.837387085 232.787811279 236.787734985 243.309234619 250.058654785 255.863235474 261.363220215 267.850372314 271.581848145 272.847167969 273.377563477 273.646911621 273.927764893 274.478118896 275.363372803 276.530548096 277.853393555 279.113586426 280.219360352 281.17791748 282.343994141 283.733673096 284.913421631 285.871887207 286.73034668 287.513061523 288.349395752 289.238952637 290.077972412 290.797973633 291.458496094 292.00289917 292.500640869 293.2293396 294.022521973 294.731109619 295.382659912 295.815307617 295.981414795 296.336608887 297.03314209 297.941162109 298.780975342 299.416809082 299.88861084 300.413604736 300.79196167 300.855255127 300.779663086 300.656494141 300.529876709 300.479675293 300.297668457 299.800323486 298.601074219 298.84387207 299.75479126 299.903564453 300.196258545 300.450012207 299.924865723 299.006164551 298.33001709 297.638916016 297.860412598 297.226715088 295.728363037 293.655822754 291.687805176 290.078796387 286.729034424 281.577911377 275.924835205 266.941955566 261.251739502 258.662872314 258.104614258 256.619720459 255.998275757 256.550170898 258.767364502 261.681976318 262.09753418 256.881866455 252.843490601 251.202331543 249.393096924 248.51348877 249.270874023 250.627746582 252.660720825 255.327636719 256.675750732 256.119140625 254.960220337 253.019927979 250.944091797 249.212509155 247.554626465 245.737930298 243.666687012 241.366394043 239.438659668 238.869827271 237.071228027 235.259658813 236.674102783 242.360214233 243.107818604 244.072906494 247.313491821 247.538955688 245.552078247 244.458251953 243.750198364 242.535675049 242.253631592 220.636245728 218.2784729 218.105834961 218.27116394 218.239883423 217.619567871 215.722702026 215.30796814 217.543228149 220.396743774 222.659332275 224.647216797 227.773269653 233.473388672 241.266723633 248.677612305 255.041290283 261.79019165 267.819061279 271.836486816 272.675201416 273.140289307 273.542938232 274.086120605 274.998138428 275.975372314 277.076385498 278.484466553 279.761352539 280.785308838 281.71295166 282.889343262 284.258575439 285.367584229 286.196014404 286.979980469 287.863037109 288.76373291 289.617614746 290.476043701 291.168823242 291.747589111 292.349487305 292.959533691 293.756103516 294.634490967 295.372802734 295.912475586 296.281219482 296.531890869 297.018615723 297.853759766 298.722259521 299.46697998 300.089630127 300.48336792 300.682556152 300.780822754 300.731506348 300.694580078 300.799102783 300.875823975 300.776184082 300.428344727 299.810852051 298.539398193 298.377044678 299.417114258 300.155883789 300.500946045 300.81552124 301.129638672 300.888580322 300.328613281 299.928649902 300.673065186 300.040161133 298.182800293 296.178192139 293.928344727 291.311584473 288.198425293 283.537750244 277.600341797 269.986968994 264.771850586 262.086853027 260.452911377 259.051147461 258.134765625 259.908599854 262.090942383 266.462646484 269.060913086 267.722076416 262.010742188 258.567077637 257.0206604 256.834381104 257.547088623 258.731872559 260.054473877 261.44732666 262.465789795 262.106628418 260.57333374 259.068481445 257.340362549 255.567230225 254.501449585 253.618255615 252.942672729 252.774749756 252.804519653 252.959030151 253.121780396 252.564315796 252.236587524 252.885482788 252.267730713 252.863021851 252.900436401 251.895812988 249.619415283 247.523468018 245.742965698 244.464736938 242.59828186 245.119018555 244.688308716 244.314666748 243.864654541 243.070861816 242.483963013 241.983139038 241.446746826 240.842712402 240.587203979 240.966049194 241.957763672 243.756271362 246.956451416 252.193756104 258.415557861 264.888397217 268.778076172 271.259124756 272.285461426 272.531158447 272.903289795 273.126403809 273.33380127 273.899780273 275.004272461 276.428131104 277.833465576 279.045166016 280.189941406 281.335418701 282.641479492 283.935272217 284.967346191 285.845214844 286.607910156 287.234832764 287.923339844 288.781463623 289.762176514 290.643188477 291.317749023 291.802764893 292.265228271 292.96875 293.804229736 294.548553467 295.070159912 295.359405518 295.635223389 296.1612854 296.803344727 297.421905518 297.972930908 298.582366943 299.285583496 299.971191406 300.437133789 300.676544189 300.671051025 300.488220215 300.24911499 299.956268311 299.298736572 298.36730957 297.973419189 299.401611328 299.469268799 299.320404053 298.800231934 298.596710205 298.20425415 297.189941406 295.459136963 293.972290039 292.991149902 291.766815186 289.82244873 287.49432373 286.186828613 284.658111572 280.544433594 276.953399658 272.591766357 266.913543701 259.9737854 256.344818115 253.906066895 253.822265625 255.289108276 256.936187744 259.14263916 261.970184326 261.689788818 257.655334473 254.544387817 253.730941772 252.296142578 251.856903076 252.145294189 252.752761841 253.735580444 255.501678467 255.057617188 252.320114136 248.412277222 244.390258789 240.88168335 238.359603882 237.049835205 236.896102905 237.281188965 236.720291138 235.950714111 235.775131226 234.467056274 232.77923584 233.630371094 237.244430542 238.261459351 241.099731445 245.632583618 243.762619019 241.773254395 240.149719238 240.05078125 239.987564087 239.513305664 233.925170898 232.672775269 231.982849121 231.405609131 230.90196228 230.186477661 229.220550537 228.577789307 228.650344849 228.920410156 229.575195312 230.971710205 232.866958618 236.930099487 243.268051147 249.887191772 255.636795044 261.040649414 268.070465088 271.689178467 272.867980957 273.371276855 273.642700195 273.901275635 274.421844482 275.348968506 276.541748047 277.825531006 279.044525146 280.152313232 281.160888672 282.397033691 283.780548096 284.878143311 285.757171631 286.578369141 287.361053467 288.205566406 289.100006104 289.944519043 290.655731201 291.29876709 291.848327637 292.405456543 293.203613281 294.053405762 294.739746094 295.266448975 295.575286865 295.724609375 296.16885376 297.00604248 298.010406494 298.865020752 299.496154785 299.991973877 300.491088867 300.825286865 300.886871338 300.793884277 300.612518311 300.342529297 300.040527344 299.385131836 298.359619141 297.968658447 299.762969971 299.912445068 299.872283936 299.661407471 299.274658203 299.071533203 298.682189941 298.682830811 297.878417969 297.300415039 296.332183838 294.420471191 292.176727295 290.356384277 288.29498291 283.199127197 278.67300415 274.01385498 267.540344238 262.865966797 260.677642822 259.106018066 258.351867676 257.400390625 257.929748535 260.586212158 263.039703369 263.019287109 258.435028076 253.751861572 252.051879883 250.67616272 250.439880371 250.689285278 250.94342041 252.769515991 255.504806519 256.52432251 255.947235107 254.844985962 252.789260864 250.815979004 249.193725586 247.440673828 245.512008667 243.565795898 241.085739136 239.143173218 238.415237427 237.182556152 235.618286133 236.787078857 241.539031982 242.914291382 244.417388916 248.383804321 247.477279663 245.65397644 244.486068726 243.73928833 242.539627075 242.25227356 220.681930542 218.41998291 218.269226074 218.295471191 218.505935669 218.03868103 216.169326782 215.565673828 217.372833252 219.84274292 222.026580811 224.242996216 227.420883179 233.115249634 240.938583374 248.26802063 254.598144531 261.111633301 267.904052734 271.861907959 272.7394104 273.199157715 273.580047607 274.102233887 274.980285645 275.983123779 277.113830566 278.463989258 279.671203613 280.687774658 281.695831299 282.953155518 284.259857178 285.272735596 286.057556152 286.887542725 287.837615967 288.784210205 289.642791748 290.503570557 291.185791016 291.726959229 292.306976318 292.977111816 293.796508789 294.643859863 295.298675537 295.7215271 296.018493652 296.347290039 297.02243042 298.009918213 298.911071777 299.634643555 300.224395752 300.590606689 300.773345947 300.833099365 300.77230835 300.749786377 300.801116943 300.64956665 300.230865479 299.473815918 298.532867432 298.013061523 299.199584961 299.676086426 300.090057373 299.930267334 300.055938721 299.971160889 300.147338867 300.630371094 300.479217529 300.25213623 299.286529541 297.142578125 295.064178467 292.787445068 289.840942383 285.414764404 280.898345947 275.861816406 269.663635254 265.808197021 263.482269287 261.428833008 260.39163208 259.475494385 260.836975098 264.127929688 267.601959229 269.908050537 268.231292725 263.275085449 259.115753174 257.409698486 257.279663086 257.749725342 258.780151367 260.288635254 261.600494385 262.332550049 261.962310791 260.412689209 258.817199707 256.87399292 255.372512817 254.243835449 253.686721802 253.205825806 252.983108521 252.739318848 252.838668823 253.012145996 252.356155396 251.930847168 252.331253052 252.285140991 252.952331543 253.351394653 251.841674805 249.694396973 247.510513306 245.732711792 244.471343994 242.598388672 245.161254883 244.750473022 244.406707764 243.971817017 243.227584839 242.621185303 242.117645264 241.597198486 240.988861084 240.754455566 241.104187012 242.023025513 243.75617981 247.011245728 252.193695068 258.374389648 264.757720947 268.709594727 271.429931641 272.326751709 272.510406494 272.869903564 273.095153809 273.283477783 273.83203125 274.971282959 276.439544678 277.835784912 279.018493652 280.178649902 281.373077393 282.711425781 283.978027344 284.93359375 285.729400635 286.455047607 287.101776123 287.851989746 288.743652344 289.673431396 290.468566895 291.074523926 291.591949463 292.204040527 293.023620605 293.833618164 294.422149658 294.769561768 294.989837646 295.337677002 296.010803223 296.772918701 297.445678711 298.038146973 298.716369629 299.476196289 300.09564209 300.469665527 300.674835205 300.6355896 300.258422852 299.619018555 298.296936035 297.82144165 298.044769287 298.509979248 299.570648193 298.943115234 298.458312988 298.472717285 298.42401123 298.246917725 297.315002441 295.165466309 293.350158691 292.012878418 290.753631592 288.255126953 286.100311279 284.569091797 283.000030518 279.27142334 276.686859131 273.90133667 270.082366943 263.517578125 259.607574463 256.925109863 257.786407471 258.563964844 260.204223633 262.460876465 263.410369873 261.618041992 258.924041748 256.19519043 254.854217529 253.163955688 252.726806641 253.682540894 254.162399292 255.121444702 255.29347229 253.877441406 251.594360352 247.981048584 243.873336792 240.351760864 238.016937256 236.64100647 236.379104614 236.80859375 236.387161255 235.196228027 235.124252319 233.920394897 232.612213135 233.517959595 236.272872925 238.658157349 243.535308838 245.560409546 243.492095947 241.60043335 240.224456787 240.129104614 240.046981812 239.516357422 233.881103516 232.740966797 232.077880859 231.536651611 231.083648682 230.450454712 229.539489746 228.804260254 228.714736938 228.977615356 229.721374512 231.155136108 233.038284302 237.054016113 243.36100769 249.900466919 255.731170654 261.385284424 268.616851807 271.878265381 272.868408203 273.347900391 273.61920166 273.859558105 274.383209229 275.34753418 276.559082031 277.809234619 278.993408203 280.107849121 281.159179688 282.43762207 283.786804199 284.817443848 285.634857178 286.407562256 287.170715332 288.04284668 288.970184326 289.82434082 290.506774902 291.097625732 291.687683105 292.396789551 293.259460449 294.069061279 294.616882324 294.984741211 295.272521973 295.571105957 296.165344238 297.085571289 298.135742188 299.039093018 299.676330566 300.11895752 300.512908936 300.819244385 300.955047607 300.858642578 300.444671631 299.729888916 298.329772949 297.808166504 298.032958984 298.748687744 300.058349609 299.605743408 298.826599121 298.774963379 298.723297119 298.78515625 298.453216553 298.421264648 297.184143066 296.11050415 295.377166748 293.498168945 291.033874512 289.202575684 287.133300781 282.145568848 278.627166748 275.992553711 272.349945068 267.747741699 264.318023682 261.419525146 259.96282959 259.276702881 260.061523438 262.660522461 264.336395264 263.280853271 260.320678711 255.286315918 253.313354492 252.339294434 252.171386719 253.148391724 253.135910034 254.453033447 255.867736816 256.199798584 255.669830322 254.485778809 252.537185669 250.648513794 249.129348755 247.367279053 245.279556274 243.261779785 241.103713989 238.911300659 238.128387451 237.038314819 235.925354004 236.912643433 240.396331787 242.961410522 246.543243408 248.391281128 247.235671997 245.604309082 244.479812622 243.711807251 242.545730591 242.250610352 220.759796143 218.49382019 218.476028442 218.592437744 218.718429565 218.438980103 216.616226196 215.782241821 217.240005493 219.379150391 221.46736145 223.85723877 227.144790649 232.87828064 240.679473877 247.929107666 254.361175537 260.977111816 268.263092041 271.933990479 272.791046143 273.258331299 273.627532959 274.113830566 274.959747314 276.002868652 277.15222168 278.447143555 279.596038818 280.613311768 281.727508545 282.999023438 284.224304199 285.175323486 285.972961426 286.868896484 287.875457764 288.862854004 289.703308105 290.51184082 291.144439697 291.638244629 292.254333496 293.049682617 293.872772217 294.612091064 295.118041992 295.467712402 295.834747314 296.364837646 297.207519531 298.244293213 299.117858887 299.810211182 300.352294922 300.652770996 300.801635742 300.862609863 300.839752197 300.756164551 300.528900146 299.911895752 298.535675049 298.056304932 298.231719971 298.490844727 299.080749512 298.457427979 299.070678711 299.82598877 299.612945557 299.356689453 299.476776123 299.824493408 299.846466064 299.742095947 298.846893311 296.888671875 294.767608643 292.314178467 289.02456665 284.676940918 281.363800049 278.127471924 274.479858398 270.54107666 266.704406738 264.033111572 262.023956299 261.524810791 263.322692871 266.788604736 269.393066406 270.216674805 268.541656494 264.621826172 260.364959717 258.490356445 258.102661133 259.184783936 260.212280273 261.307739258 261.842193604 262.040985107 261.553405762 260.198120117 258.510345459 256.384155273 255.081802368 254.080444336 253.632919312 253.403793335 253.110427856 252.704330444 252.804016113 252.861709595 252.169692993 251.676757812 251.878219604 252.513595581 253.596893311 253.334487915 251.777542114 249.675079346 247.47883606 245.722518921 244.472885132 242.597167969 245.146392822 244.760894775 244.495742798 244.082702637 243.39012146 242.760238647 242.226699829 241.719436646 241.11289978 240.947906494 241.297454834 242.159912109 243.792068481 247.078079224 252.299819946 258.447570801 264.906982422 268.616760254 271.648956299 272.357971191 272.52053833 272.860626221 273.074249268 273.254241943 273.82043457 274.981292725 276.45489502 277.833068848 279.010162354 280.204620361 281.439697266 282.782226562 284.011779785 284.911560059 285.660186768 286.359680176 287.017974854 287.807617188 288.70993042 289.607879639 290.365692139 290.953216553 291.55645752 292.334869385 293.193908691 293.874481201 294.256958008 294.4949646 294.774688721 295.267578125 296.05065918 296.869903564 297.560455322 298.194366455 298.902069092 299.625335693 300.132751465 300.407531738 300.548065186 300.413360596 299.79284668 298.543365479 297.902099609 298.070159912 298.834136963 299.171295166 299.127502441 298.539550781 298.761657715 298.692840576 298.743438721 298.627410889 297.759002686 296.20703125 293.605529785 291.132324219 289.686096191 286.921203613 284.912078857 283.603027344 282.496948242 279.834533691 277.528076172 275.15713501 272.230773926 268.879211426 264.198455811 261.048583984 260.728149414 261.71484375 262.445648193 263.881225586 263.533477783 261.645080566 259.278045654 257.575439453 255.465560913 254.220733643 253.086273193 255.040145874 254.782012939 255.431549072 254.030075073 253.063247681 250.880065918 247.41506958 243.352050781 239.874816895 237.516296387 236.109863281 235.668731689 235.854415894 235.610977173 234.681793213 234.39630127 233.461227417 232.406677246 233.44241333 236.075958252 239.006851196 244.368057251 245.203796387 243.045074463 241.464599609 240.305160522 240.21307373 240.095184326 239.51020813 233.976852417 232.81552124 232.201431274 231.676956177 231.26864624 230.718688965 229.832183838 228.996200562 228.846801758 229.055389404 229.842498779 231.316421509 233.221450806 237.313110352 243.508270264 250.001098633 256.165008545 261.657562256 269.17477417 272.044036865 272.85534668 273.330780029 273.598419189 273.831542969 274.393585205 275.379180908 276.590240479 277.816070557 278.975219727 280.088745117 281.187744141 282.476654053 283.765869141 284.754608154 285.555450439 286.31451416 287.085968018 287.962554932 288.876953125 289.733184814 290.427856445 291.029571533 291.747711182 292.601928711 293.447387695 294.11050415 294.513946533 294.835479736 295.221862793 295.717437744 296.425689697 297.329864502 298.337036133 299.239593506 299.813171387 300.116363525 300.411529541 300.746124268 300.91293335 300.715820312 299.993499756 298.629364014 297.91986084 297.990081787 298.870513916 299.331451416 299.389801025 298.909881592 298.798065186 298.870513916 299.188140869 299.49105835 299.467712402 299.465240479 297.244445801 294.858703613 294.010223389 292.312072754 290.114257812 288.248016357 286.587585449 283.434082031 280.911376953 278.370635986 274.802307129 270.70489502 267.105041504 263.784088135 261.983001709 261.157012939 262.262573242 264.362792969 264.822723389 263.349151611 260.897979736 256.80947876 254.779159546 254.571884155 253.364883423 255.101898193 254.765411377 255.540939331 255.820892334 256.022827148 255.465393066 253.948287964 252.277297974 250.401611328 248.940246582 247.078018188 244.791168213 242.790435791 241.067138672 238.920776367 237.852050781 237.059341431 236.137786865 236.991226196 239.97807312 242.941146851 247.307373047 248.23890686 246.871063232 245.457519531 244.43687439 243.669204712 242.521713257 242.252410889 220.794845581 218.624694824 218.58253479 218.670089722 218.949935913 218.801269531 217.060211182 216.056304932 217.169250488 218.941070557 221.01550293 223.541809082 227.023605347 232.769348145 240.575317383 247.701370239 254.436431885 260.656311035 268.682312012 272.018676758 272.818572998 273.301849365 273.669189453 274.117614746 274.961334229 276.030883789 277.172943115 278.428039551 279.535827637 280.578704834 281.768981934 283.025817871 284.183868408 285.132751465 285.991821289 286.910980225 287.922607422 288.906555176 289.721466064 290.50579834 291.163146973 291.712738037 292.454406738 293.292816162 294.007354736 294.548034668 294.94644165 295.383331299 295.938171387 296.625244141 297.49520874 298.44909668 299.283203125 299.966400146 300.460754395 300.706237793 300.845397949 300.926605225 300.890655518 300.644927979 300.059661865 298.819763184 298.052490234 298.335418701 298.987213135 298.737091064 298.667114258 298.517944336 299.44229126 299.797790527 299.930328369 299.874786377 299.667480469 300.332794189 299.666748047 298.708129883 298.162384033 296.577209473 294.824768066 292.380218506 289.430603027 286.140045166 284.003082275 281.64050293 278.218261719 274.464874268 271.301055908 267.113983154 264.668365479 264.42678833 266.107116699 268.988067627 270.500762939 270.340179443 268.440490723 264.690460205 261.676696777 260.581207275 259.676300049 260.737487793 261.106445312 261.890869141 261.77947998 261.713104248 261.050445557 259.477050781 257.881011963 256.022125244 254.690429688 253.877731323 253.43447876 253.321166992 253.230621338 252.878707886 252.78314209 252.707550049 252.081924438 251.41645813 251.642028809 252.477020264 253.797012329 253.20791626 251.69480896 249.594573975 247.42578125 245.703170776 244.478088379 242.573577881 245.113265991 244.805557251 244.583114624 244.215393066 243.559906006 242.895370483 242.342483521 241.851806641 241.25038147 241.179580688 241.494140625 242.126266479 243.836074829 247.227386475 252.41204834 258.650482178 265.172424316 268.430297852 271.786071777 272.384063721 272.557495117 272.885559082 273.076446533 273.252166748 273.84185791 275.010894775 276.458129883 277.807495117 278.982940674 280.222442627 281.502380371 282.846252441 284.032501221 284.886230469 285.611480713 286.310455322 286.976318359 287.749755859 288.619354248 289.497772217 290.270507812 290.92288208 291.65524292 292.499328613 293.279449463 293.794250488 294.06362915 294.340911865 294.757507324 295.385864258 296.238800049 297.089263916 297.757720947 298.374328613 299.065429688 299.748077393 300.192962646 300.367340088 300.365875244 300.135986328 298.92578125 298.320678711 298.509979248 299.380126953 299.749237061 299.497619629 299.28604126 299.046447754 298.922332764 298.873657227 298.951660156 298.494537354 297.674041748 295.823516846 292.866851807 290.336242676 288.523895264 285.947021484 284.323486328 283.602142334 282.101226807 279.969543457 277.948974609 274.862060547 272.12789917 270.611053467 267.848846436 264.506469727 264.010742188 264.22088623 264.417541504 264.162658691 263.39175415 261.752471924 259.681762695 257.879150391 255.946258545 254.058990479 254.094787598 255.29498291 254.751464844 254.453384399 253.48059082 252.231140137 250.040649414 247.014755249 242.831695557 239.275985718 237.14894104 235.776397705 235.001602173 235.029006958 234.76574707 234.298812866 233.668991089 233.042251587 232.302825928 233.477722168 236.222229004 239.498458862 244.162460327 244.725219727 242.676651001 241.401031494 240.406204224 240.297546387 240.136856079 239.501281738 233.967819214 232.907272339 232.31086731 231.822158813 231.471313477 230.984436035 230.104873657 229.210220337 228.94468689 229.106445312 230.090499878 231.564880371 233.517745972 237.612594604 243.691131592 250.123184204 256.829803467 261.83706665 269.706542969 272.175323486 272.842346191 273.329345703 273.596313477 273.826873779 274.426452637 275.417236328 276.621612549 277.831817627 278.96270752 280.075958252 281.231994629 282.522491455 283.737579346 284.686706543 285.496673584 286.274780273 287.071411133 287.941345215 288.800292969 289.64642334 290.401306152 291.086151123 291.935943604 292.828216553 293.56362915 294.076416016 294.481903076 294.924072266 295.438140869 296.055267334 296.813568115 297.646362305 298.547485352 299.376403809 299.876373291 300.091674805 300.335693359 300.629455566 300.727203369 300.441101074 299.103027344 298.425048828 298.485656738 299.177307129 299.616607666 299.581756592 299.398345947 299.042755127 298.841674805 298.999176025 299.600067139 299.945556641 300.42175293 299.285003662 296.517150879 293.947113037 292.685089111 291.003601074 289.206115723 287.853637695 286.198394775 284.161590576 281.567016602 277.665252686 272.95223999 268.94732666 267.066040039 265.211364746 263.856506348 263.342010498 264.666656494 265.370452881 265.122467041 263.55682373 261.163909912 258.060455322 256.001922607 254.864868164 254.992202759 255.999588013 255.458587646 255.640548706 256.173797607 255.647186279 254.758529663 253.530014038 251.974899292 250.004943848 248.705459595 246.641113281 244.36529541 242.530303955 240.953170776 239.103607178 237.87828064 237.170974731 236.419464111 237.237091064 239.980331421 243.01725769 247.106842041 247.955505371 246.480987549 245.285430908 244.389312744 243.6121521 242.505279541 242.254135132 220.900131226 218.761459351 218.731018066 218.982055664 219.145004272 219.087341309 217.463760376 216.334060669 217.150482178 218.504257202 220.543151855 223.268814087 226.991409302 232.868408203 240.662155151 247.737243652 254.790405273 260.336181641 269.12286377 272.103607178 272.833526611 273.337677002 273.6980896 274.112945557 274.98538208 276.055847168 277.180236816 278.401184082 279.473358154 280.563293457 281.802825928 283.05166626 284.158477783 285.120239258 286.038360596 286.950592041 287.922546387 288.878967285 289.686950684 290.496368408 291.230407715 291.878082275 292.692779541 293.465362549 294.019775391 294.407623291 294.839050293 295.45098877 296.173614502 296.954589844 297.828155518 298.722198486 299.502502441 300.136077881 300.574584961 300.799346924 300.92578125 300.979705811 300.878234863 300.537689209 299.407928467 298.680847168 298.687896729 299.38482666 299.652648926 299.389434814 299.352508545 299.316467285 299.37991333 299.654663086 300.182220459 300.305114746 299.80065918 298.952484131 297.844116211 297.348449707 297.306976318 296.229705811 294.688079834 292.527923584 289.662353516 287.115203857 285.432617188 282.803833008 278.922027588 275.218566895 272.854034424 270.048217773 267.65536499 267.438781738 268.751953125 270.492553711 271.280914307 270.528869629 268.088806152 265.042175293 262.648406982 261.948547363 261.61831665 261.878417969 261.792541504 261.995880127 261.751464844 261.30380249 260.437316895 258.95904541 257.512481689 255.49017334 254.272155762 253.688430786 253.446914673 253.392730713 253.306182861 252.969055176 252.769577026 252.543258667 251.822143555 251.192703247 251.494827271 252.45072937 253.551528931 253.039993286 251.557723999 249.482727051 247.367874146 245.677124023 244.486785889 242.542480469 245.158721924 244.855697632 244.651351929 244.355209351 243.739120483 243.038665771 242.441162109 241.951416016 241.43421936 241.39213562 241.698165894 242.226333618 243.996032715 247.462509155 252.673873901 258.943511963 265.432159424 268.764129639 271.873840332 272.402679443 272.616790771 272.946594238 273.102203369 273.269226074 273.879974365 275.039367676 276.443908691 277.756896973 278.927490234 280.221130371 281.548858643 282.886108398 284.023620605 284.843353271 285.569030762 286.294189453 286.968292236 287.693450928 288.502929688 289.363098145 290.167663574 290.924224854 291.77822876 292.597381592 293.258056641 293.670318604 293.993011475 294.42767334 294.958587646 295.625640869 296.488922119 297.369140625 298.035675049 298.625671387 299.288818359 299.913757324 300.272094727 300.305145264 300.152618408 299.926849365 298.61819458 298.677978516 299.227813721 299.972259521 299.827056885 299.535400391 299.27633667 299.108551025 298.998168945 298.917816162 298.335968018 297.814727783 297.35848999 295.014099121 292.204284668 290.113525391 288.231903076 286.488128662 284.930603027 283.440704346 281.600524902 279.478302002 277.37121582 274.103118896 272.058837891 271.339599609 270.415283203 267.414520264 266.753387451 266.078277588 265.188812256 264.297607422 263.054138184 261.629730225 259.63949585 257.586242676 255.472869873 254.243667603 253.658309937 254.665863037 254.274383545 253.773101807 252.581375122 251.138442993 249.175933838 246.383636475 242.601272583 238.707717896 236.830093384 235.518737793 234.36026001 233.998397827 233.869903564 233.520828247 233.010391235 232.668395996 232.144821167 233.589355469 236.552764893 242.672180176 245.09552002 244.339889526 242.466156006 241.362167358 240.49156189 240.383010864 240.166687012 239.489425659 233.96307373 232.976074219 232.414321899 231.987319946 231.67855835 231.223312378 230.352554321 229.397125244 229.067245483 229.23248291 230.346359253 231.829223633 233.90725708 238.069229126 243.988449097 250.373138428 257.501739502 262.90045166 270.204833984 272.271911621 272.83996582 273.344970703 273.610870361 273.83972168 274.466217041 275.445709229 276.641052246 277.842376709 278.938598633 280.057403564 281.275512695 282.563110352 283.699768066 284.614227295 285.447692871 286.24822998 287.071929932 287.946594238 288.742462158 289.564941406 290.397521973 291.188018799 292.113586426 292.967254639 293.568603516 294.009124756 294.572509766 295.239196777 295.877258301 296.540771484 297.295379639 298.027832031 298.76776123 299.48815918 299.94317627 300.15411377 300.335418701 300.479522705 300.438232422 300.15512085 298.689575195 298.664886475 299.017547607 299.53793335 299.402069092 299.255767822 299.13848877 299.022338867 298.949645996 299.058685303 299.051971436 299.596405029 300.33380127 298.548095703 295.871154785 293.501098633 291.712127686 290.314727783 288.679748535 287.099212646 285.109008789 283.058898926 280.239471436 275.72064209 271.424468994 269.356933594 268.484619141 267.117431641 265.837158203 265.383544922 265.665863037 265.879180908 264.959381104 263.522796631 261.57925415 258.764221191 256.684020996 255.509307861 255.176483154 255.939102173 255.449951172 255.723907471 255.801330566 255.06867981 254.180603027 253.255065918 251.707275391 249.708190918 248.276473999 246.323104858 244.080154419 242.185836792 240.840667725 238.983703613 238.093490601 237.477249146 236.75994873 237.51020813 240.182067871 245.214767456 247.550064087 247.533340454 246.112167358 245.080688477 244.310577393 243.54133606 242.491790771 242.25567627 220.946014404 218.855926514 218.938705444 219.069046021 219.403213501 219.346328735 217.785507202 216.596405029 217.136795044 218.110076904 220.048080444 222.984161377 227.006835938 233.13520813 240.898284912 247.907150269 255.005554199 261.027893066 269.578948975 272.186401367 272.849761963 273.370056152 273.720489502 274.113891602 275.022216797 276.07522583 277.177520752 278.362365723 279.406677246 280.550994873 281.836975098 283.088043213 284.154846191 285.129364014 286.093933105 286.988952637 287.904724121 288.83782959 289.654846191 290.48538208 291.270904541 291.987457275 292.804443359 293.484649658 293.931732178 294.313903809 294.905517578 295.695770264 296.53314209 297.360626221 298.259033203 299.134460449 299.821166992 300.332855225 300.692382812 300.896453857 300.97769165 300.940979004 300.785400391 300.473297119 299.157592773 299.151763916 299.41204834 299.890960693 299.651885986 299.409942627 299.362792969 299.371246338 299.320495605 299.490203857 299.67755127 300.110321045 300.507202148 298.689361572 297.285705566 296.795013428 296.792144775 295.24810791 293.575592041 291.716217041 289.113830566 286.704681396 284.920684814 281.993255615 277.741607666 274.843139648 273.732666016 271.910003662 270.384735107 269.715393066 270.298614502 271.267547607 271.304229736 270.199066162 267.926574707 265.374633789 263.645080566 262.573608398 261.636230469 262.012573242 261.820770264 261.719421387 261.292419434 260.748260498 259.647277832 258.524414062 257.217956543 255.081970215 253.876708984 253.578643799 253.588165283 253.52180481 253.409606934 252.929672241 252.687271118 252.386138916 251.44972229 250.894851685 251.420883179 253.347518921 253.603363037 252.824951172 251.379425049 249.302642822 247.281311035 245.656585693 244.490356445 242.503341675 245.153518677 244.925628662 244.737976074 244.497558594 243.914489746 243.194595337 242.536773682 242.072387695 241.612823486 241.64894104 241.853775024 242.43460083 244.141616821 247.747116089 253.077880859 259.289337158 265.527130127 269.174743652 271.941497803 272.414154053 272.705383301 273.023498535 273.138275146 273.311767578 273.932830811 275.048828125 276.402618408 277.677246094 278.852996826 280.213195801 281.587158203 282.902709961 283.992553711 284.797607422 285.547821045 286.308380127 286.981689453 287.668914795 288.439453125 289.291931152 290.143859863 291.018920898 291.942169189 292.723327637 293.334869385 293.838806152 294.400970459 294.991363525 295.502563477 296.024932861 296.782836914 297.655792236 298.36227417 298.964141846 299.595581055 300.114471436 300.300292969 300.16116333 299.77355957 299.39831543 300.023345947 300.05090332 300.054412842 299.878173828 299.550079346 299.295806885 299.142242432 299.045623779 298.993347168 298.93270874 298.865142822 298.324401855 297.151123047 293.95803833 291.31552124 290.459716797 289.632202148 288.66708374 287.130218506 284.187103271 281.761688232 279.250549316 277.233825684 274.99822998 273.652404785 273.707519531 272.40246582 269.633087158 267.740905762 267.351745605 266.089355469 264.085235596 262.493865967 261.341064453 259.603393555 257.315216064 255.24798584 253.784378052 254.130493164 254.495742798 253.804779053 252.768493652 251.150466919 249.732940674 248.276809692 245.978744507 242.39755249 238.625656128 236.412231445 235.058578491 233.706954956 233.239471436 233.15612793 233.094833374 232.476699829 232.167526245 232.576690674 234.089828491 238.520568848 243.896057129 245.744750977 244.067855835 242.338638306 241.412124634 240.537506104 240.468887329 240.186813354 239.476333618 234.05128479 233.015655518 232.534179688 232.15524292 231.882202148 231.427749634 230.584396362 229.604324341 229.192504883 229.443313599 230.518295288 232.06829834 234.344421387 238.587799072 244.407165527 250.700119019 257.776916504 264.286010742 270.630401611 272.350158691 272.86807251 273.370941162 273.624908447 273.858734131 274.500579834 275.452667236 276.630767822 277.827484131 278.891021729 280.024902344 281.309387207 282.595214844 283.670349121 284.569030762 285.421691895 286.208465576 287.050842285 287.978668213 288.77432251 289.594146729 290.496917725 291.372009277 292.29498291 293.08996582 293.638946533 294.168640137 294.974182129 295.869415283 296.615234375 297.278778076 297.974060059 298.557006836 299.075378418 299.628295898 300.063568115 300.308959961 300.377685547 300.285705566 299.769287109 299.346862793 299.823730469 299.659912109 299.506958008 299.264801025 299.000305176 298.888671875 298.953979492 299.094726562 299.162750244 299.132629395 299.302185059 299.538818359 299.851989746 297.430297852 294.740661621 292.925994873 290.97567749 289.926574707 288.80166626 287.246917725 284.741851807 282.091400146 279.062835693 275.630187988 273.024108887 272.098083496 271.383636475 269.273925781 267.511260986 267.075042725 267.053588867 265.604858398 264.627563477 263.488586426 261.927246094 259.635772705 256.793182373 255.309906006 255.505722046 255.670578003 255.003677368 254.913513184 254.747467041 254.006896973 253.482940674 252.86958313 251.324249268 249.172698975 247.416778564 245.792602539 243.71836853 241.846420288 240.705780029 239.056655884 238.346679688 237.770751953 237.51210022 238.093795776 241.715408325 246.69468689 247.831100464 247.064300537 245.701431274 244.842880249 244.15788269 243.465866089 242.457321167 242.256759644 221.008499146 219.06137085 219.192901611 219.435211182 219.608413696 219.5572052 218.065505981 216.84463501 217.105041504 217.710647583 219.557495117 222.700912476 227.12348938 233.561248779 241.295700073 248.156311035 255.076339722 262.251159668 269.962463379 272.26159668 272.862060547 273.398956299 273.740814209 274.13369751 275.073150635 276.094360352 277.155395508 278.295593262 279.342468262 280.545562744 281.882232666 283.150909424 284.189727783 285.165710449 286.153259277 287.037567139 287.924713135 288.878967285 289.730072021 290.560516357 291.344360352 292.09463501 292.89151001 293.545715332 294.034240723 294.6144104 295.448791504 296.369598389 297.240753174 298.050689697 298.926116943 299.73928833 300.221221924 300.520690918 300.791717529 300.957946777 300.923370361 300.733520508 300.159118652 299.853729248 300.381286621 300.311462402 300.173553467 299.88269043 299.470062256 299.195159912 299.178253174 299.317230225 299.416534424 299.544555664 299.981842041 300.512481689 301.141876221 299.171569824 297.691223145 297.388214111 294.811462402 293.242034912 292.562164307 291.835876465 288.902923584 286.079711914 283.809204102 281.118865967 278.10043335 276.433105469 275.516021729 273.903442383 271.932983398 271.229095459 271.399597168 271.015563965 270.848937988 269.650268555 267.958068848 265.79598999 264.121368408 262.831848145 261.819244385 261.727844238 261.490509033 261.100708008 260.417999268 259.759368896 258.847045898 258.107147217 256.875366211 254.674331665 253.40965271 253.411819458 253.633758545 253.628753662 253.468307495 252.854019165 252.57598877 252.097732544 251.264968872 250.696899414 251.883407593 253.719177246 253.711624146 252.588378906 251.140838623 249.137512207 247.207641602 245.63381958 244.485458374 242.460906982 245.170761108 244.94342041 244.821899414 244.638442993 244.106231689 243.353240967 242.673934937 242.197311401 241.838668823 241.898269653 241.931167603 242.338867188 244.276123047 248.114395142 253.510574341 259.6328125 266.095733643 269.573303223 271.99307251 272.452850342 272.790710449 273.075256348 273.17086792 273.37210083 273.993896484 275.036743164 276.33581543 277.594299316 278.798553467 280.227844238 281.630218506 282.927825928 284.006134033 284.82220459 285.581939697 286.330352783 286.99420166 287.712493896 288.532653809 289.439758301 290.373016357 291.314849854 292.224182129 292.957122803 293.624359131 294.341125488 295.103790283 295.756622314 296.260070801 296.691101074 297.30645752 298.071746826 298.712249756 299.260284424 299.825927734 300.270172119 300.339172363 300.107116699 299.478973389 299.827514648 300.282073975 300.226165771 300.033355713 299.73550415 299.409118652 299.378692627 299.268035889 299.148803711 299.092529297 299.019897461 298.782928467 298.30645752 296.452270508 293.98550415 292.892181396 292.692901611 291.802764893 290.023406982 288.517089844 285.460021973 282.305541992 279.479766846 277.357086182 275.887023926 275.155578613 274.604187012 272.612365723 270.261230469 268.960540771 268.30090332 266.332611084 263.927642822 261.623382568 260.954620361 259.038604736 256.949188232 254.95223999 253.243942261 253.178924561 253.896484375 253.010818481 251.440032959 249.55708313 248.074645996 247.11819458 245.613708496 242.423202515 238.766723633 236.326065063 234.498535156 233.268325806 232.61781311 232.378631592 232.612182617 232.020690918 231.850219727 232.608291626 234.642532349 239.143112183 243.906539917 245.289764404 243.852783203 242.382659912 241.478439331 240.607223511 240.515899658 240.196624756 239.467376709 234.100112915 233.17137146 232.667327881 232.329421997 232.079681396 231.647064209 230.784133911 229.796173096 229.333984375 229.603317261 230.701324463 232.120819092 234.853408813 239.230987549 244.894042969 251.100769043 259.07119751 265.394287109 270.887756348 272.418243408 272.930969238 273.392181396 273.620300293 273.874420166 274.532226562 275.446777344 276.592010498 277.781829834 278.839996338 280.011413574 281.34375 282.625976562 283.689361572 284.598205566 285.444030762 286.194854736 287.059356689 288.081054688 288.963043213 289.850524902 290.815185547 291.729278564 292.604522705 293.36038208 293.991333008 294.704071045 295.670318604 296.673461914 297.524719238 298.204986572 298.773803711 299.139007568 299.411132812 299.786468506 300.182830811 300.410369873 300.416473389 300.190979004 299.336273193 299.567565918 299.957672119 299.825500488 299.551116943 299.277069092 299.054138184 299.055786133 299.057983398 299.162597656 299.285888672 299.27255249 299.124420166 298.990081787 298.217193604 296.328338623 294.706237793 293.623138428 292.571685791 291.024810791 289.725341797 288.034423828 285.234588623 282.266204834 279.461242676 276.998077393 275.410369873 274.480377197 272.657897949 270.068328857 268.925323486 268.491027832 267.685058594 265.554077148 264.272094727 263.593444824 262.13293457 259.76473999 256.855224609 254.984069824 255.057571411 255.646133423 254.884674072 254.108261108 253.302444458 252.919235229 252.505981445 252.542160034 250.966445923 248.822555542 246.707122803 244.960494995 243.308914185 241.559738159 240.507843018 239.130706787 238.632781982 238.198867798 237.984146118 238.753479004 242.372055054 247.045211792 247.308792114 246.49520874 245.314239502 244.615264893 244.013839722 243.391998291 242.427108765 242.257583618 221.131622314 219.229187012 219.380004883 219.561233521 219.879852295 219.771881104 218.308685303 217.046203613 217.083892822 217.325531006 219.061569214 222.478485107 227.355636597 234.1456604 241.727783203 248.426864624 256.552398682 263.253265381 270.143127441 272.308013916 272.877197266 273.413482666 273.753082275 274.176239014 275.122589111 276.095611572 277.101776123 278.209228516 279.305938721 280.568603516 281.932128906 283.223052979 284.270263672 285.232421875 286.201171875 287.087402344 288.006011963 289.017272949 289.936401367 290.823730469 291.654266357 292.451080322 293.242980957 293.867858887 294.454376221 295.276855469 296.321258545 297.339782715 298.220855713 298.946746826 299.650238037 300.239990234 300.504760742 300.666534424 300.912536621 301.052703857 300.894683838 300.577056885 299.751922607 300.148101807 300.53414917 300.441314697 300.19140625 299.898040771 299.62701416 299.536804199 299.439178467 299.452331543 299.574584961 299.661743164 299.716094971 299.904022217 299.956665039 298.964904785 297.968536377 296.88067627 295.968994141 294.759674072 293.481445312 293.082946777 289.972503662 286.589874268 283.79095459 281.481964111 279.388397217 277.9972229 276.621551514 275.065887451 273.733856201 272.548736572 271.518005371 270.573883057 269.959686279 269.407775879 267.740020752 266.060424805 264.912384033 262.812194824 261.724029541 261.586273193 261.294616699 260.518432617 259.444396973 258.68057251 257.959228516 257.665893555 256.536010742 254.481826782 253.184829712 253.243515015 253.665588379 253.598327637 253.326278687 252.636474609 252.323989868 251.814834595 250.835708618 250.54335022 251.945022583 253.643234253 253.419494629 252.323684692 250.9400177 248.988082886 247.129623413 245.597091675 244.465576172 242.428115845 245.238937378 245.014373779 244.905548096 244.784286499 244.279190063 243.539916992 242.826019287 242.332748413 242.004135132 242.071838379 241.996017456 242.526153564 244.476379395 248.567596436 254.014923096 260.076690674 266.881652832 269.876068115 272.039733887 272.512207031 272.862518311 273.109558105 273.211547852 273.4765625 274.077850342 275.02230835 276.248840332 277.50894165 278.771636963 280.268798828 281.67666626 282.966217041 284.058654785 284.883239746 285.622253418 286.351959229 287.04598999 287.844726562 288.738616943 289.716094971 290.6925354 291.642303467 292.521484375 293.257904053 294.057952881 294.97253418 295.844360352 296.539428711 297.095184326 297.548400879 298.100708008 298.732879639 299.216827393 299.621887207 300.088775635 300.474334717 300.446380615 300.12298584 299.423034668 300.13885498 300.356079102 300.210723877 299.650604248 299.091003418 298.661071777 299.277008057 299.545532227 299.494232178 299.403686523 299.261413574 298.970062256 298.302520752 297.421142578 296.323944092 295.3722229 294.651153564 293.63949585 291.414520264 289.390991211 286.079559326 282.930450439 279.854125977 277.144989014 275.57635498 275.008666992 274.227264404 272.489776611 270.920898438 270.188049316 269.102996826 266.495178223 263.332214355 261.559051514 259.974243164 258.348999023 256.533599854 254.788986206 253.268951416 252.420654297 252.899871826 251.824905396 249.588607788 247.632827759 246.245330811 245.55696106 245.042236328 242.474304199 238.710006714 235.754318237 234.0365448 232.93309021 232.074829102 231.857025146 231.937683105 231.494689941 231.589630127 232.735870361 235.346801758 239.266845703 243.653991699 244.476333618 243.579910278 242.546310425 241.523330688 240.676116943 240.556213379 240.196456909 239.455154419 234.065551758 233.275436401 232.826095581 232.522460938 232.291732788 231.855377197 230.984298706 230.007492065 229.56237793 229.82383728 230.823287964 232.609085083 235.425064087 239.929000854 245.513031006 251.604187012 260.296600342 266.107513428 271.075714111 272.502929688 273.009857178 273.401397705 273.60446167 273.904266357 274.587585449 275.45715332 276.553192139 277.730041504 278.806335449 280.033477783 281.387786865 282.659057617 283.729431152 284.646972656 285.473388672 286.221710205 287.138275146 288.232025146 289.197845459 290.181671143 291.216430664 292.145477295 292.978820801 293.748413086 294.543518066 295.512939453 296.654083252 297.723236084 298.594848633 299.204437256 299.56729126 299.675842285 299.740478516 299.981903076 300.325653076 300.510101318 300.471008301 300.178039551 299.13973999 299.851104736 300.062927246 299.958496094 299.408874512 298.915527344 298.594390869 299.068634033 299.285614014 299.366363525 299.464569092 299.467803955 299.228302002 298.67590332 297.983184814 296.993041992 295.95980835 295.167388916 294.296173096 292.558349609 290.711303711 288.639373779 286.159851074 283.039825439 279.971435547 277.642852783 275.973693848 274.304626465 271.951171875 270.607452393 270.390838623 269.897094727 268.338500977 265.544342041 264.56539917 263.325042725 261.698883057 259.820373535 256.995605469 255.16104126 254.677780151 255.011428833 254.618560791 253.261901855 252.26473999 251.522094727 251.314880371 251.873306274 250.595413208 248.010192871 245.480789185 244.026092529 242.617492676 241.299423218 240.224395752 239.091705322 238.979125977 238.663757324 238.593582153 239.517364502 242.612457275 247.25553894 246.63710022 245.802490234 245.059814453 244.406997681 243.879699707 243.289154053 242.407165527 242.258468628 221.127441406 219.424102783 219.636169434 219.972625732 220.129211426 219.976013184 218.520446777 217.201263428 217.011520386 216.938766479 218.58996582 222.283096313 227.677124023 234.815093994 242.282150269 248.712600708 257.04977417 263.769897461 270.242614746 272.34854126 272.900177002 273.40725708 273.759429932 274.234222412 275.165588379 276.076080322 277.024719238 278.12713623 279.304718018 280.628601074 281.991241455 283.294158936 284.382293701 285.32824707 286.243286133 287.137786865 288.108856201 289.175994873 290.182678223 291.162139893 292.037506104 292.822723389 293.561157227 294.195281982 294.993652344 296.147796631 297.412017822 298.470245361 299.274536133 299.826446533 300.266662598 300.588745117 300.715606689 300.847930908 301.070922852 301.159729004 300.910064697 300.556671143 299.698150635 300.489440918 300.581481934 300.334228516 299.758178711 299.291992188 298.998657227 299.477539062 299.676940918 299.678405762 299.736450195 299.782348633 299.639312744 299.409057617 299.054656982 298.472320557 297.695617676 297.260406494 296.898040771 296.132293701 294.776428223 294.172485352 291.497558594 287.797119141 284.437133789 281.801849365 279.62991333 277.964172363 276.625823975 275.608856201 274.75100708 273.51449585 271.832000732 270.249053955 269.849914551 268.67956543 266.981170654 265.896026611 265.177886963 263.170837402 261.412994385 261.067840576 260.789642334 259.824432373 258.588867188 257.500091553 256.75479126 256.972290039 256.0652771 254.178192139 252.670074463 253.045013428 253.471923828 253.432159424 253.070678711 252.335250854 252.075698853 251.518508911 250.458511353 250.392425537 251.815353394 253.540023804 253.119277954 251.995010376 250.828170776 248.79460144 247.001068115 245.533813477 244.425674438 242.385131836 245.265213013 245.060379028 244.998962402 244.934509277 244.469985962 243.750228882 242.985671997 242.457931519 242.145935059 242.18927002 242.076950073 242.596405029 244.693099976 249.043411255 254.553833008 260.585968018 266.880584717 270.058746338 272.092590332 272.592193604 272.939971924 273.129852295 273.260375977 273.62902832 274.205688477 275.032531738 276.162109375 277.428955078 278.772460938 280.324707031 281.727386475 283.014404297 284.119995117 284.934570312 285.642852783 286.386688232 287.165161133 288.057373047 289.028991699 290.071746826 291.083740234 292.055084229 293.007781982 293.954803467 295.01184082 296.117462158 297.066070557 297.796508789 298.274505615 298.623168945 299.021331787 299.47354126 299.782104492 300.035491943 300.399353027 300.704528809 300.553009033 300.118377686 298.972412109 300.067932129 300.425384521 299.968780518 298.72088623 298.095703125 297.755432129 298.914001465 299.68951416 299.915313721 299.831054688 299.63848877 299.396484375 298.939331055 298.208587646 297.474609375 296.812988281 296.098602295 294.950073242 293.110626221 290.332061768 286.826049805 283.103820801 280.099029541 277.388458252 275.631652832 274.822723389 273.955535889 272.947662354 272.337921143 271.415008545 270.084869385 267.444549561 264.15133667 261.793945312 259.753448486 257.825378418 256.156982422 254.436096191 253.521652222 252.062438965 251.917633057 250.189971924 247.851928711 245.801361084 244.736587524 244.644927979 244.668823242 242.565811157 238.696578979 235.4737854 233.461273193 232.439559937 231.753097534 231.414871216 231.366027832 230.95552063 231.306182861 233.141708374 236.15032959 239.907089233 243.45123291 243.827545166 243.361984253 242.642410278 241.652832031 240.736862183 240.568389893 240.19619751 239.439849854 234.150787354 233.335647583 232.980026245 232.724395752 232.518447876 232.07913208 231.171661377 230.231170654 229.823165894 230.040390015 230.955703735 232.862579346 235.967056274 240.68397522 246.271713257 252.230651855 259.925170898 266.422271729 271.261566162 272.609924316 273.082580566 273.393493652 273.590087891 273.963256836 274.683105469 275.506652832 276.54083252 277.688934326 278.795257568 280.086791992 281.44241333 282.696655273 283.776000977 284.687347412 285.487823486 286.280792236 287.272705078 288.399047852 289.437316895 290.553131104 291.690246582 292.645111084 293.513824463 294.425872803 295.487365723 296.797851562 298.168823242 299.235687256 299.878662109 300.201965332 300.275695801 300.124511719 300.035827637 300.186004639 300.479095459 300.613220215 300.505310059 300.176940918 298.92755127 299.844909668 300.242614746 299.874633789 298.65838623 297.80859375 297.73348999 298.774017334 299.457061768 299.682220459 299.704376221 299.684143066 299.53704834 299.094665527 298.429229736 297.776153564 297.176544189 296.56463623 295.632720947 294.238830566 291.70703125 289.025543213 286.411376953 283.589569092 280.662872314 278.140838623 276.226226807 274.289916992 272.473419189 272.353820801 272.391113281 271.444854736 269.296661377 266.962982178 264.858551025 263.159240723 261.435546875 260.210571289 257.129974365 255.466796875 254.280441284 254.663650513 253.999298096 252.725921631 251.283325195 250.355224609 250.204559326 250.824935913 250.021881104 247.331680298 244.810073853 243.424804688 242.043746948 240.888397217 239.953491211 239.218826294 239.272476196 239.081726074 239.432861328 240.409240723 243.295944214 247.402786255 246.002639771 245.184295654 244.798904419 244.31098938 243.777008057 243.208023071 242.380340576 242.259017944 221.27696228 219.545623779 219.941177368 220.181015015 220.408935547 220.180007935 218.714202881 217.329589844 216.940612793 216.632980347 218.125213623 222.087631226 228.041137695 235.538070679 242.891799927 249.000961304 256.204437256 263.927093506 270.331268311 272.391357422 272.919433594 273.385406494 273.766204834 274.313201904 275.219299316 276.054473877 276.95501709 278.083984375 279.346252441 280.726959229 282.071380615 283.36807251 284.506774902 285.434051514 286.279144287 287.193237305 288.228912354 289.349609375 290.453369141 291.533599854 292.402832031 293.117523193 293.852539062 294.710388184 295.955322266 297.561553955 298.983642578 299.868011475 300.376373291 300.634643555 300.775054932 300.856628418 300.906707764 301.038970947 301.191009521 301.174743652 300.888580322 300.601654053 299.583679199 300.49899292 300.596740723 299.961700439 298.672454834 297.821075439 297.740203857 298.910247803 299.656402588 299.88269043 299.884918213 299.91519165 299.813690186 299.523925781 299.198425293 298.770324707 298.222076416 297.828735352 297.492828369 296.873596191 295.487976074 294.017181396 292.259033203 288.99786377 285.424377441 282.202362061 279.71496582 278.027130127 276.942871094 276.635253906 276.096954346 274.667175293 272.621063232 271.151092529 269.661193848 267.93536377 266.256713867 265.719329834 265.023590088 263.084625244 261.273986816 260.797943115 260.156555176 259.060943604 257.9296875 256.763763428 256.09552002 256.229888916 255.47076416 253.806518555 252.543533325 252.971206665 253.194839478 253.064331055 252.555862427 251.859954834 251.735061646 251.113494873 250.254837036 250.366348267 251.83203125 253.414672852 252.823898315 251.722702026 250.654098511 248.693161011 246.922821045 245.455596924 244.373550415 242.333023071 245.255554199 245.122283936 245.091674805 245.086242676 244.688140869 243.960968018 243.19367981 242.648834229 242.285064697 242.258728027 242.075317383 242.409988403 244.949325562 249.51902771 255.052230835 261.03793335 267.177612305 270.303863525 272.189605713 272.70980835 273.025390625 273.147491455 273.341430664 273.836547852 274.396057129 275.100982666 276.123199463 277.385375977 278.809204102 280.410217285 281.810089111 283.090759277 284.182678223 284.965179443 285.657440186 286.474121094 287.356140137 288.296875 289.371917725 290.601928711 291.851104736 293.051208496 294.360656738 295.763397217 297.185791016 298.354675293 299.257324219 300.272277832 300.385437012 300.134521484 299.998596191 300.079345703 300.196868896 300.373565674 300.668426514 300.852600098 300.602203369 300.08996582 298.90737915 300.278320312 300.472290039 299.320404053 298.254119873 297.278900146 296.909576416 297.322723389 299.149688721 299.939819336 300.141845703 300.027160645 299.825531006 299.541534424 299.092407227 298.490356445 297.786315918 296.943115234 295.879211426 294.276763916 291.632476807 287.838653564 283.205841064 280.153717041 277.977661133 276.529022217 275.824798584 274.553771973 274.094787598 273.8359375 272.879364014 271.217834473 268.827423096 265.705871582 262.567230225 259.620422363 257.500244141 255.556869507 254.096008301 253.236297607 251.294937134 251.11026001 249.088150024 246.558929443 244.649856567 243.380477905 243.441162109 243.633468628 242.326065063 238.655303955 234.997421265 232.781555176 231.98097229 231.420501709 231.017654419 230.79737854 230.793762207 231.030792236 233.569366455 237.033111572 241.907196045 243.424102783 243.480300903 243.155670166 242.609909058 241.811859131 240.781234741 240.564788818 240.206802368 239.420898438 234.244552612 233.454833984 233.160751343 232.947814941 232.726318359 232.282012939 231.366821289 230.48677063 230.084991455 230.219146729 231.074279785 232.837753296 236.48085022 241.438995361 247.024246216 252.778533936 260.03036499 266.784729004 271.523345947 272.760040283 273.141021729 273.365142822 273.602111816 274.090667725 274.840606689 275.617431641 276.584838867 277.675231934 278.812408447 280.180938721 281.528442383 282.761383057 283.845275879 284.728057861 285.500946045 286.385864258 287.445495605 288.549713135 289.721313477 291.119720459 292.450286865 293.52041626 294.622039795 295.88092041 297.335510254 298.78427124 300.136566162 301.366149902 301.421142578 301.143615723 300.845916748 300.523834229 300.292358398 300.32699585 300.576507568 300.699523926 300.56463623 300.166931152 298.919921875 300.282836914 300.491729736 299.412628174 298.16986084 297.174041748 296.913818359 297.443908691 299.14932251 299.770324707 299.857635498 299.84161377 299.819213867 299.62689209 299.270080566 298.815612793 298.248352051 297.552062988 296.679290771 295.297851562 293.024810791 289.859954834 286.723236084 283.977630615 281.355499268 279.288635254 277.650665283 275.882843018 274.638092041 274.54977417 274.300964355 272.716827393 270.670196533 268.551239014 265.799743652 263.0675354 261.382904053 259.466247559 257.47177124 255.636749268 254.370788574 254.207641602 253.556991577 252.290328979 250.934570312 249.456451416 249.153045654 249.764663696 249.350616455 246.980041504 244.412460327 242.705551147 241.577285767 240.606109619 239.889297485 239.506332397 239.68019104 239.519256592 240.479034424 241.460891724 245.43548584 247.361877441 245.431182861 244.742126465 244.622711182 244.284988403 243.695022583 243.108520508 242.355987549 242.25920105 221.271957397 219.781387329 220.203536987 220.605728149 220.659393311 220.384216309 218.894012451 217.415298462 216.835525513 216.390609741 217.717376709 221.946502686 228.424606323 236.229995728 243.451004028 249.311706543 255.956375122 264.092834473 270.475219727 272.457275391 272.937042236 273.351226807 273.791931152 274.437530518 275.312469482 276.079315186 276.980895996 278.131378174 279.434356689 280.876831055 282.196685791 283.456604004 284.625793457 285.514770508 286.285095215 287.243927002 288.37008667 289.557922363 290.793273926 291.998046875 292.888397217 293.62878418 294.598571777 295.996734619 297.790893555 299.544921875 300.765594482 301.448364258 301.448303223 301.371612549 301.27142334 301.146392822 301.098419189 301.164428711 301.175720215 301.032501221 300.813476562 300.570922852 299.593902588 300.747680664 300.534667969 299.254577637 298.085662842 297.271881104 297.033874512 297.62387085 299.41394043 300.016296387 299.962310791 299.967834473 300.02154541 299.879577637 299.726776123 299.564178467 299.171447754 298.709777832 298.259674072 297.38494873 295.957000732 294.056213379 292.603973389 289.791351318 286.625427246 283.514892578 281.093200684 279.518615723 278.685516357 278.316070557 277.660186768 275.973846436 273.927307129 272.233612061 270.19329834 267.541625977 266.086853027 265.211120605 264.595855713 263.28704834 261.231567383 260.517883301 259.702270508 258.737213135 257.467071533 255.958618164 255.337738037 255.323165894 254.871154785 253.641937256 252.44480896 252.692382812 252.843307495 252.524353027 252.00112915 251.402832031 251.305847168 250.744735718 250.115509033 250.452774048 252.439376831 253.20262146 252.556686401 251.498153687 250.448638916 248.681030273 246.893661499 245.333755493 244.326187134 242.270065308 245.237091064 245.159759521 245.197402954 245.254135132 244.884384155 244.164230347 243.420089722 242.848175049 242.438247681 242.320404053 242.017532349 242.434768677 245.149276733 249.746948242 255.432800293 261.357818604 267.54473877 270.608032227 272.323059082 272.819213867 273.084716797 273.170959473 273.46105957 274.070281982 274.618560791 275.258636475 276.215942383 277.45993042 278.912872314 280.545043945 281.946258545 283.209442139 284.270446777 285.022399902 285.730987549 286.594818115 287.462585449 288.375854492 289.675109863 291.36831665 293.086517334 294.667266846 296.354217529 298.067474365 300.081604004 302.626983643 304.371337891 302.870697021 302.284423828 301.432281494 300.739196777 300.472900391 300.421081543 300.571655273 300.803222656 300.8621521 300.641784668 300.268768311 299.716674805 300.380432129 300.382385254 299.149780273 297.815582275 296.71661377 296.1824646 296.216583252 297.416809082 299.136932373 299.857452393 300.04019165 299.904815674 299.651885986 299.294708252 298.798187256 298.140655518 297.294616699 296.304779053 295.028411865 292.836120605 288.871246338 283.774719238 279.788330078 277.839904785 276.718231201 275.999847412 275.367370605 274.67868042 274.296356201 273.180908203 271.746307373 270.034515381 267.262878418 263.410491943 259.88494873 257.550842285 255.316864014 253.994979858 252.915039062 251.100219727 249.909408569 248.201126099 245.632736206 244.293258667 242.644165039 241.949523926 242.557327271 241.679733276 238.425796509 234.727554321 232.333587646 231.630310059 231.117950439 230.466171265 230.280639648 230.321090698 230.936004639 235.577590942 239.903167725 243.303344727 243.377105713 243.259017944 242.969207764 242.539276123 241.908905029 240.876922607 240.575042725 240.225219727 239.399810791 234.254867554 233.565750122 233.352737427 233.178359985 232.958877563 232.503265381 231.598983765 230.771713257 230.372451782 230.452850342 231.251495361 233.131881714 236.94367981 241.935195923 247.600601196 253.36882019 260.445800781 267.288726807 271.813049316 272.895599365 273.167541504 273.343261719 273.65826416 274.26373291 275.013275146 275.76159668 276.693939209 277.735046387 278.888519287 280.320770264 281.66607666 282.879394531 283.963806152 284.809967041 285.551635742 286.491088867 287.552947998 288.645507812 290.078735352 291.869995117 293.396484375 294.588439941 295.960174561 297.516937256 299.487884521 302.034210205 303.917327881 302.814819336 302.21875 301.699890137 301.169281006 300.784729004 300.486907959 300.432922363 300.629760742 300.783355713 300.743469238 300.432769775 299.815216064 300.541687012 300.555664062 299.437957764 298.14364624 296.95715332 296.512390137 296.579071045 297.711578369 299.11340332 299.510681152 299.726928711 299.825714111 299.746368408 299.53994751 299.207763672 298.705383301 298.036834717 297.236907959 296.137207031 294.338775635 290.703155518 287.603729248 284.452697754 282.00177002 280.047576904 278.534942627 277.128631592 275.649871826 275.226654053 274.769165039 273.604309082 271.963928223 269.971282959 266.896392822 263.523712158 261.288085938 259.465240479 257.520141602 255.997161865 254.566101074 253.739776611 253.14100647 251.754898071 250.61907959 248.923339844 248.015579224 248.595855713 248.498016357 246.681884766 244.007049561 242.130233765 241.142837524 240.235122681 239.636657715 239.761901855 239.98348999 239.99697876 242.083786011 244.486755371 246.87538147 247.024185181 244.941146851 244.50894165 244.52494812 244.213195801 243.663116455 243.053497314 242.340866089 242.258804321 221.465652466 219.99937439 220.52394104 220.883728027 220.962890625 220.569229126 219.054199219 217.493469238 216.79196167 216.146896362 217.378768921 221.882080078 228.751739502 236.78453064 243.861755371 249.60484314 256.10333252 264.408447266 270.688140869 272.538085938 272.957244873 273.336486816 273.849121094 274.577636719 275.422729492 276.192474365 277.156158447 278.275695801 279.542388916 281.020355225 282.323181152 283.521728516 284.651824951 285.479064941 286.198883057 287.23034668 288.446746826 289.680908203 291.044281006 292.408691406 293.451873779 294.412994385 295.695739746 297.195068359 299.274658203 301.332641602 302.189819336 301.667510986 301.785888672 301.879089355 301.723144531 301.431274414 301.229217529 301.178283691 301.087799072 300.917602539 300.853485107 300.706939697 300.200866699 300.749023438 300.49822998 299.312316895 298.246765137 297.419555664 297.02722168 297.223724365 298.609222412 299.787658691 299.855773926 299.905822754 300.02911377 299.911865234 299.7996521 299.778015137 299.515838623 299.051513672 298.566986084 297.789123535 296.565460205 294.218658447 292.841827393 290.34753418 287.464172363 284.791290283 282.607635498 280.937713623 279.862976074 279.212646484 278.487609863 277.06741333 275.336456299 273.574890137 271.141967773 267.99822998 265.776000977 264.707855225 264.284210205 262.921081543 261.620483398 260.32043457 259.43069458 258.432891846 257.307403564 255.618164062 254.464675903 254.499176025 254.182723999 253.621337891 252.6353302 252.545135498 252.474746704 251.904953003 251.151550293 250.910324097 250.839508057 250.340576172 250.458312988 251.438049316 252.752563477 252.933258057 252.325134277 251.303085327 250.244415283 248.624404907 246.92427063 245.280487061 244.258270264 242.202865601 245.288619995 245.203918457 245.300338745 245.423187256 245.15977478 244.432800293 243.676040649 243.072006226 242.580688477 242.260467529 241.906951904 242.432693481 245.270858765 250.076156616 255.635437012 261.569885254 267.864990234 270.921600342 272.469207764 272.895019531 273.113311768 273.192779541 273.584869385 274.298461914 274.864227295 275.49621582 276.437164307 277.657043457 279.09588623 280.721496582 282.106903076 283.331604004 284.357849121 285.096191406 285.833679199 286.703674316 287.509765625 288.431732178 290.00213623 291.983337402 294.594024658 296.776153564 299.054412842 302.056060791 305.018218994 306.245300293 307.314575195 306.682189941 303.573516846 302.094024658 301.159942627 300.803466797 300.654815674 300.740386963 300.880615234 300.845001221 300.695709229 300.512420654 300.41293335 300.511657715 300.465484619 299.032775879 297.915039062 296.673400879 296.011322021 295.733978271 296.064697266 297.665924072 299.338134766 299.858154297 299.855834961 299.673095703 299.42578125 299.006408691 298.415039062 297.607849121 296.642730713 295.566680908 293.85055542 290.500732422 285.168609619 280.179229736 277.397918701 276.006896973 275.381500244 275.186584473 274.368743896 273.977172852 272.915466309 271.838195801 270.956176758 268.386108398 264.587799072 260.519958496 257.599761963 255.326782227 254.101821899 252.398880005 250.69152832 248.609039307 246.626983643 245.285476685 243.515899658 242.125350952 241.457000732 241.744506836 240.895904541 238.200790405 234.458648682 232.231933594 231.48298645 230.832260132 230.104660034 229.987411499 230.015106201 230.920639038 236.114547729 241.413482666 243.589416504 243.217315674 243.084121704 242.808639526 242.46421814 241.885375977 240.982223511 240.596252441 240.24041748 239.384292603 234.21647644 233.696212769 233.55770874 233.418701172 233.195571899 232.73840332 231.868499756 231.064834595 230.667816162 230.632446289 231.406921387 233.421234131 237.39175415 242.678314209 248.061294556 253.967407227 260.601806641 267.911773682 272.0859375 272.987579346 273.174682617 273.341003418 273.744750977 274.440307617 275.186706543 275.931335449 276.870117188 277.885009766 279.041717529 280.515045166 281.852264404 283.025939941 284.08996582 284.898223877 285.608184814 286.566101074 287.609832764 288.726867676 290.40826416 292.37600708 294.406982422 295.832000732 297.720428467 300.218353271 302.71762085 304.158966064 305.577514648 303.995269775 302.036743164 301.903167725 301.269073486 300.872619629 300.593597412 300.541503906 300.690917969 300.842346191 300.870300293 300.714141846 300.569458008 300.659606934 300.557891846 299.093353271 298.111938477 297.101623535 296.433929443 296.092071533 296.452362061 297.723083496 299.031951904 299.562591553 299.794250488 299.781433105 299.6668396 299.429168701 299.021728516 298.427337646 297.651763916 296.726837158 295.375183105 292.732086182 289.152770996 285.387420654 282.486633301 280.166870117 278.57510376 277.3074646 275.720062256 274.945739746 274.712249756 274.296630859 273.345184326 271.420715332 268.095825195 264.33505249 261.750732422 259.171447754 257.590454102 256.203552246 254.640960693 253.48777771 252.511886597 251.614059448 250.043533325 248.410491943 247.629058838 248.00680542 247.674560547 246.519470215 243.619369507 241.582748413 240.649246216 239.881790161 239.487060547 240.14050293 240.194061279 240.342407227 242.888336182 246.306396484 247.065429688 246.447341919 244.549789429 244.427627563 244.460540771 244.084777832 243.64302063 243.031112671 242.32220459 242.257904053 221.558349609 220.2215271 220.873199463 221.325790405 221.259735107 220.772171021 219.240356445 217.637619019 216.784484863 216.02571106 217.098739624 221.866226196 229.075439453 237.22869873 244.150177002 249.970474243 256.556884766 265.027130127 270.928253174 272.615020752 272.979370117 273.346710205 273.921295166 274.706451416 275.538696289 276.365356445 277.402008057 278.473175049 279.681182861 281.14743042 282.426574707 283.547821045 284.598449707 285.363220215 286.066070557 287.178649902 288.460784912 289.711791992 291.129272461 292.47366333 293.728149414 294.941558838 296.660430908 298.287750244 300.116210938 300.709503174 302.235900879 300.671051025 301.463653564 302.184326172 302.011169434 301.607055664 301.301269531 301.174499512 301.010803223 300.837677002 300.908935547 300.935150146 300.847686768 300.80090332 300.5887146 299.248260498 298.399993896 297.680175781 297.387939453 297.350921631 298.38369751 299.124908447 299.612945557 299.906951904 300.108886719 299.967712402 299.820526123 299.807800293 299.630004883 299.235778809 298.786254883 298.159942627 297.222442627 295.692138672 294.011688232 291.009063721 288.124267578 285.595489502 283.266967773 281.191558838 279.79296875 279.201293945 278.919158936 278.086151123 276.870880127 275.059936523 272.357025146 268.887939453 265.348815918 264.750457764 264.054840088 262.871612549 261.998413086 260.146484375 258.968170166 258.56729126 257.146270752 255.288375854 254.011642456 253.78944397 253.599090576 253.779586792 252.819259644 252.465789795 251.738693237 251.242233276 250.358413696 250.376480103 250.281616211 249.921722412 250.499542236 251.98248291 252.635284424 252.625869751 252.095031738 251.095397949 250.007049561 248.508834839 246.9712677 245.277893066 244.148406982 242.158477783 245.307952881 245.265274048 245.427642822 245.601989746 245.396118164 244.734313965 243.931884766 243.29119873 242.71635437 242.223602295 241.796508789 242.451019287 245.337844849 250.173873901 255.641494751 261.56539917 268.293487549 271.269500732 272.628204346 272.948242188 273.112945557 273.216888428 273.707366943 274.515838623 275.122833252 275.792510986 276.760864258 277.955322266 279.350952148 280.926452637 282.258911133 283.421813965 284.405853271 285.143463135 285.914245605 286.788909912 287.574371338 288.572540283 290.16204834 293.237030029 296.45526123 299.654785156 301.507537842 303.875152588 305.114837646 305.998016357 306.828521729 306.575805664 303.09197998 301.493255615 301.270935059 301.030578613 300.845031738 300.838989258 300.907806396 300.837921143 300.737640381 300.66619873 300.627319336 300.666229248 300.690673828 300.197967529 299.566070557 297.69329834 296.854492188 296.462554932 296.441009521 296.826538086 298.612854004 299.706085205 299.82723999 299.728973389 299.567138672 299.193267822 298.657623291 297.92666626 296.993835449 296.012115479 294.65536499 291.893737793 287.74432373 281.545257568 277.813751221 275.585357666 275.242523193 274.712402344 273.572021484 273.487060547 272.618225098 271.582427979 271.197631836 269.04486084 265.466308594 261.510192871 257.688018799 255.522644043 253.327484131 250.9790802 249.463912964 247.312393188 246.089279175 244.030456543 242.785186768 241.661987305 240.237640381 240.782287598 240.301651001 237.93536377 234.45135498 232.318023682 231.503097534 230.779159546 230.149353027 229.781982422 229.843978882 230.848434448 236.140762329 241.461425781 243.217041016 242.94102478 242.90737915 242.679275513 242.412475586 241.872756958 241.078643799 240.64440918 240.255432129 239.366287231 234.33265686 233.797561646 233.766326904 233.672210693 233.470336914 232.999511719 232.162078857 231.395904541 230.973129272 230.863952637 231.60748291 233.738204956 237.766204834 243.038009644 248.344619751 254.435455322 261.379150391 268.686279297 272.319580078 273.039459229 273.177490234 273.369415283 273.849884033 274.603851318 275.355499268 276.128479004 277.115356445 278.131622314 279.28604126 280.765472412 282.072998047 283.172332764 284.185028076 284.957244873 285.651092529 286.620819092 287.663421631 288.830841064 290.487854004 293.219543457 295.349639893 297.738555908 299.237030029 301.341094971 302.574127197 303.343170166 304.434814453 303.629180908 302.100006104 301.339050293 301.198669434 300.833404541 300.616882324 300.611846924 300.737091064 300.846008301 300.861053467 300.792541504 300.688598633 300.642456055 300.523712158 299.864471436 299.413909912 297.828216553 297.009490967 296.56161499 296.490570068 296.782653809 298.450073242 299.527252197 299.819274902 299.830078125 299.776580811 299.610137939 299.299346924 298.785858154 298.011413574 297.145904541 296.101593018 294.081085205 290.685272217 286.637664795 283.328552246 280.468780518 278.770751953 277.41595459 275.747833252 275.2059021 274.924316406 274.454650879 273.909515381 272.07699585 269.055267334 265.592468262 262.237091064 259.591949463 257.500732422 255.75340271 254.57409668 253.365951538 252.695098877 251.140808105 250.085632324 248.438644409 246.991714478 247.334136963 247.414886475 246.228088379 243.149795532 241.227783203 240.25920105 239.530273438 239.664871216 240.26864624 240.282241821 240.413742065 243.562683105 246.833892822 246.44708252 245.777664185 244.30355835 244.503387451 244.440963745 243.981338501 243.640579224 243.017486572 242.311218262 242.256744385 221.67024231 220.495391846 221.261062622 221.641983032 221.652130127 221.012069702 219.497467041 217.861160278 216.842605591 215.901565552 216.907608032 221.775436401 229.281646729 237.475311279 244.357131958 250.277862549 257.633270264 265.814483643 271.164886475 272.679748535 273.004608154 273.376342773 273.992797852 274.810272217 275.655059814 276.558990479 277.663543701 278.71282959 279.837463379 281.257629395 282.507324219 283.54498291 284.492767334 285.202819824 285.937652588 287.139648438 288.470947266 289.726043701 290.964080811 292.51083374 293.706695557 295.749511719 296.609008789 297.047149658 297.613372803 298.566497803 299.902618408 300.601745605 301.17477417 302.062591553 302.123962402 301.692230225 301.361541748 301.20010376 300.970733643 300.785980225 300.921569824 301.096405029 301.011291504 300.873535156 300.687225342 300.002105713 299.538238525 298.162994385 297.501617432 297.18157959 297.216705322 297.787261963 299.155944824 299.970458984 300.220092773 300.068145752 299.917449951 299.898345947 299.789825439 299.481414795 299.037963867 298.471405029 297.739746094 296.597808838 294.658294678 291.799224854 288.759460449 286.145935059 283.650787354 281.438293457 279.778839111 279.290740967 279.228240967 278.599609375 277.666931152 276.043243408 273.75604248 269.991516113 266.097930908 265.015014648 264.047210693 262.5262146 261.531646729 260.147064209 259.20993042 258.324249268 256.868377686 254.913116455 253.423599243 253.300964355 253.574462891 253.720016479 253.091751099 252.133682251 251.030563354 250.376052856 249.857650757 249.735656738 249.784103394 249.604095459 250.448303223 252.021530151 252.37322998 252.30947876 251.81842041 250.877044678 249.776306152 248.383346558 246.991546631 245.263748169 244.058349609 242.106613159 245.317489624 245.324890137 245.548873901 245.781143188 245.637588501 245.013092041 244.206802368 243.52104187 242.793930054 242.165817261 241.706680298 242.423202515 245.347076416 250.094696045 255.458145142 261.410949707 267.76751709 271.590606689 272.802429199 272.983856201 273.082519531 273.248779297 273.835174561 274.722564697 275.412078857 276.158813477 277.176239014 278.344268799 279.679962158 281.161529541 282.390014648 283.450744629 284.376617432 285.129852295 285.94317627 286.854614258 287.732330322 288.865814209 290.33001709 293.624664307 296.900787354 299.220367432 300.978088379 302.959503174 303.960784912 304.890930176 306.020812988 305.85824585 302.818572998 300.857421875 301.25 301.15713501 300.953399658 300.840026855 300.879669189 300.866546631 300.780944824 300.4921875 300.674987793 300.660766602 300.436218262 300.07611084 299.808166504 299.527282715 298.90045166 299.003265381 298.94909668 297.956054688 299.29586792 299.805450439 299.863800049 299.783752441 299.666870117 299.304962158 298.737609863 298.042022705 297.2059021 296.359008789 295.206512451 292.786315918 288.999053955 284.904693604 279.675506592 275.856536865 274.512329102 273.93270874 273.296630859 273.320617676 272.491668701 271.498382568 271.035064697 270.274017334 266.107543945 261.212738037 257.359191895 255.500244141 252.693984985 250.254653931 247.872497559 246.181045532 245.128616333 243.66192627 242.129470825 240.991943359 239.353744507 240.141952515 239.914840698 237.50617981 234.556350708 232.599304199 231.629837036 231.028289795 230.416488647 229.959091187 229.85395813 231.106338501 237.089691162 241.456161499 242.656799316 242.527267456 242.834289551 242.560089111 242.32963562 241.950927734 241.18182373 240.740905762 240.27432251 239.343490601 234.355743408 233.949203491 233.963989258 233.942337036 233.764312744 233.31060791 232.441680908 231.722640991 231.224822998 231.094345093 231.805725098 234.023162842 238.023422241 243.186553955 248.510513306 254.640029907 261.496124268 269.392456055 272.48840332 273.050598145 273.201293945 273.43737793 273.952606201 274.738922119 275.533050537 276.382537842 277.456298828 278.504211426 279.638916016 281.086364746 282.326690674 283.30255127 284.216888428 284.964935303 285.68081665 286.688079834 287.785369873 289.003448486 290.583129883 293.546508789 295.878631592 297.472991943 298.963623047 300.765106201 301.309692383 301.737854004 303.235626221 303.234771729 302.23638916 300.785858154 301.060455322 300.814697266 300.650909424 300.636901855 300.742950439 300.80847168 300.74420166 300.389801025 300.557434082 300.43145752 300.104248047 299.735626221 299.551361084 299.37020874 298.802459717 298.805664062 298.821472168 297.904449463 299.325775146 299.851318359 299.975585938 299.886138916 299.847900391 299.747436523 299.496124268 299.047088623 298.33505249 297.571960449 296.707977295 294.866363525 291.724304199 288.187591553 284.417724609 280.990264893 278.876464844 277.710906982 276.172027588 275.526672363 275.010437012 274.387451172 273.498291016 272.546661377 269.644287109 266.478668213 263.315307617 260.064880371 257.574005127 255.53036499 254.2265625 253.143997192 252.402114868 251.279815674 249.438110352 247.961273193 246.357543945 246.821762085 246.948699951 245.440063477 242.780319214 240.67980957 239.82232666 239.56640625 240.073440552 240.395706177 240.410125732 240.713424683 244.549835205 247.00112915 245.845245361 245.195678711 244.262252808 244.679672241 244.381729126 243.979202271 243.635925293 243.002792358 242.314086914 242.254867554 221.77722168 220.760238647 221.615692139 222.172454834 222.053009033 221.31539917 219.757156372 218.11050415 216.937469482 215.894317627 216.816482544 221.776809692 229.310760498 237.560806274 244.441940308 250.508987427 257.81942749 266.465026855 271.369445801 272.716766357 273.032440186 273.428710938 274.053955078 274.889221191 275.782409668 276.761566162 277.920654297 278.960021973 280.005462646 281.371948242 282.590545654 283.531768799 284.350769043 285.039794922 285.86151123 287.156097412 288.536834717 289.826141357 290.984161377 292.512481689 293.909057617 295.144378662 295.84866333 296.21862793 296.484924316 297.47567749 300.248626709 301.453308105 302.289672852 301.887695312 302.180206299 301.834228516 301.512207031 301.297119141 301.030975342 300.867340088 300.994873047 300.832763672 301.106140137 300.875030518 300.461029053 299.955810547 299.670898438 299.53503418 299.099822998 299.087677002 299.221069336 298.363891602 299.760192871 300.246002197 300.335235596 300.114471436 299.994415283 300.000854492 299.931243896 299.664642334 299.213989258 298.643890381 298.031951904 297.072662354 295.244049072 292.67956543 289.343994141 286.496643066 284.137451172 281.969543457 280.332336426 279.576049805 279.174407959 278.430664062 277.420440674 276.399383545 274.488830566 271.092529297 267.031311035 265.655914307 264.287902832 262.568054199 261.125 260.1355896 259.061950684 258.24105835 256.238464355 254.432830811 252.950073242 253.315811157 253.777740479 253.851669312 253.090667725 251.636749268 250.475708008 249.798812866 249.410964966 249.062911987 249.320022583 249.290802002 250.714294434 251.974105835 252.076889038 251.967773438 251.539978027 250.586669922 249.558685303 248.325698853 246.960525513 245.188537598 244.011184692 242.042251587 245.347290039 245.408462524 245.677764893 245.950256348 245.898254395 245.307830811 244.480926514 243.765106201 242.911117554 242.152908325 241.652420044 242.414916992 245.309677124 249.88130188 255.092712402 261.195404053 268.113922119 271.779876709 272.944488525 273.014556885 273.061767578 273.284118652 273.935821533 274.869537354 275.651275635 276.482421875 277.532745361 278.70324707 279.991485596 281.365631104 282.473236084 283.439880371 284.335571289 285.119384766 285.962646484 286.900268555 287.887237549 289.078186035 290.472900391 292.600372314 295.962554932 298.085113525 299.90536499 301.440643311 302.807830811 304.037231445 305.423950195 305.428527832 303.1769104 300.953979492 301.373596191 301.203948975 301.037628174 300.898803711 300.859161377 300.853118896 300.722381592 300.391448975 300.612304688 300.433654785 299.284545898 298.098358154 298.373077393 299.198791504 299.641174316 299.813354492 299.754150391 299.523040771 299.828216553 300.001831055 299.90045166 299.769470215 299.644836426 299.252075195 298.555999756 297.660461426 296.987945557 296.368682861 295.392242432 293.071990967 289.191802979 285.943145752 282.251495361 276.999816895 274.297088623 273.414611816 273.214874268 273.406463623 272.933685303 272.124328613 270.456054688 270.703186035 267.070770264 260.234649658 256.439117432 255.005508423 252.442138672 249.72505188 247.065490723 245.325881958 244.375320435 243.051116943 241.655227661 240.494857788 238.844284058 239.1328125 239.506515503 237.220397949 234.44342041 233.110671997 232.152755737 231.354919434 230.67741394 230.264160156 229.912139893 231.349563599 237.905288696 241.288543701 242.112030029 242.121292114 242.713363647 242.495391846 242.266235352 242.006744385 241.259384155 240.819595337 240.29536438 239.314422607 234.353347778 234.020980835 234.178268433 234.230041504 234.072692871 233.611755371 232.764266968 232.038635254 231.473464966 231.316101074 232.036605835 234.277526855 238.15196228 243.148223877 248.513076782 254.740692139 262.853759766 269.738555908 272.563354492 273.045196533 273.247711182 273.50692749 274.01473999 274.830749512 275.694671631 276.62512207 277.779296875 278.862884521 279.97454834 281.361694336 282.518890381 283.377685547 284.202331543 284.97052002 285.73828125 286.789123535 287.972686768 289.205230713 290.781219482 292.824981689 295.332305908 296.746826172 298.358001709 299.72467041 300.364501953 300.90802002 302.213470459 302.82434082 301.653106689 300.325866699 300.934936523 300.875061035 300.770233154 300.67300415 300.72567749 300.791351318 300.582702637 300.200927734 300.41317749 300.152587891 299.063690186 298.061462402 298.257080078 298.977752686 299.455108643 299.694000244 299.739837646 299.654876709 300.060150146 300.283599854 300.193725586 299.983184814 299.857269287 299.680633545 299.372497559 298.858978271 298.260314941 297.744476318 297.078582764 295.296020508 291.967590332 288.852783203 285.442626953 281.546020508 278.866790771 277.658050537 276.407073975 275.649230957 274.91116333 274.037078857 272.537536621 272.553375244 270.313049316 266.845703125 263.063018799 261.061462402 258.071899414 255.536224365 253.90864563 252.84967041 252.293701172 251.167556763 249.414855957 247.911712646 246.336410522 246.454467773 246.588500977 244.601959229 241.985656738 240.16204834 239.598007202 239.917678833 240.564910889 240.69203186 240.394210815 240.906906128 245.741104126 246.84828186 245.403335571 244.751327515 244.363265991 244.789855957 244.352920532 243.969100952 243.610794067 242.991729736 242.317306519 242.252090454 221.901824951 220.954666138 221.994094849 222.596557617 222.501159668 221.656280518 220.069824219 218.415725708 217.09602356 215.985946655 216.886306763 221.684677124 229.144226074 237.374176025 244.338668823 250.546737671 258.896453857 266.794769287 271.462524414 272.707977295 273.060180664 273.487640381 274.090423584 274.938781738 275.898681641 276.914916992 278.088745117 279.139343262 280.165863037 281.492706299 282.662109375 283.512176514 284.250640869 284.964630127 285.86505127 287.179077148 288.580932617 289.941650391 291.239715576 292.354980469 293.466186523 294.17376709 295.184936523 295.99697876 296.907440186 297.774383545 299.985839844 301.367492676 302.556488037 301.689483643 302.318695068 302.115661621 301.76965332 301.42175293 301.157836914 301.052185059 301.007873535 300.846160889 301.114624023 300.754608154 299.63269043 298.5597229 298.622802734 299.260467529 299.665130615 299.907470703 300.073364258 300.075500488 300.491027832 300.762481689 300.64276123 300.294128418 300.079528809 299.944702148 299.767364502 299.466278076 299.037963867 298.573638916 298.098266602 297.209442139 295.375488281 292.923919678 289.777832031 286.716552734 284.131225586 282.070922852 280.580291748 279.462402344 278.463043213 277.605895996 276.436126709 275.683074951 274.478851318 271.688964844 268.166168213 266.889953613 265.056762695 262.33972168 260.689483643 259.820526123 258.895629883 257.867797852 256.141540527 254.329452515 252.905548096 253.478103638 254.039932251 253.760543823 252.579544067 251.279754639 249.957748413 249.357574463 248.833358765 248.612304688 248.653045654 249.107711792 251.023284912 251.794921875 251.742599487 251.61517334 251.1847229 250.302978516 249.356063843 248.234298706 246.815994263 245.10635376 243.949356079 241.961517334 245.378219604 245.47315979 245.799362183 246.16217041 246.166992188 245.609146118 244.782089233 244.016723633 243.017196655 242.16734314 241.600601196 242.355606079 245.200241089 249.523574829 254.577438354 260.885955811 268.381072998 271.867248535 273.058563232 273.053863525 273.065124512 273.321166992 274.010070801 274.969238281 275.829864502 276.731811523 277.811279297 278.988220215 280.242889404 281.523345947 282.526550293 283.42779541 284.323181152 285.140533447 285.998840332 286.935302734 287.967773438 289.180450439 290.456481934 292.162414551 295.512634277 297.408477783 298.882629395 300.297546387 301.947265625 303.523498535 304.897033691 305.147216797 303.355712891 301.643585205 301.193603516 301.054290771 301.008544922 300.969726562 300.85836792 300.796569824 300.646972656 300.354644775 300.635131836 300.442779541 298.853088379 296.980651855 296.832580566 298.708740234 299.199707031 299.850341797 300.036010742 300.026245117 299.990356445 299.926177979 299.749145508 299.614685059 299.482147217 298.947570801 297.916473389 296.775909424 296.22088623 296.22277832 295.573272705 293.488891602 289.822875977 286.032745361 283.822631836 280.378234863 275.670288086 274.101593018 273.624664307 274.53112793 274.70324707 273.444213867 270.309539795 270.378417969 267.204528809 259.777832031 256.008605957 254.325653076 252.310928345 250.403625488 247.674530029 245.435119629 244.474563599 242.86390686 241.382568359 239.628311157 238.349212646 238.229553223 238.532318115 236.874282837 234.475250244 233.090270996 232.606155396 231.867752075 231.178848267 230.721160889 230.022979736 231.863006592 237.881790161 240.951187134 241.657241821 241.785385132 242.51234436 242.466369629 242.179046631 241.994308472 241.336685181 240.86378479 240.307952881 239.286605835 234.462615967 234.170791626 234.405517578 234.519790649 234.431015015 233.941452026 233.110794067 232.340301514 231.702560425 231.523117065 232.289001465 234.500015259 238.157577515 242.962753296 248.495559692 254.744598389 263.12902832 269.761505127 272.594696045 273.044677734 273.290618896 273.562225342 274.050598145 274.908599854 275.855682373 276.842010498 278.029541016 279.143981934 280.249633789 281.57333374 282.636810303 283.406982422 284.198455811 285.007141113 285.823120117 286.900634766 288.14541626 289.383209229 290.765350342 292.422607422 294.965606689 296.316925049 297.884613037 299.207397461 299.840454102 300.498077393 301.833618164 303.12612915 302.296203613 300.298797607 300.637908936 300.750335693 300.775146484 300.705688477 300.724456787 300.762817383 300.472412109 300.08807373 300.356201172 300.120544434 298.703552246 297.016601562 296.761322021 298.459899902 299.060791016 299.813873291 300.077575684 300.23550415 300.365112305 300.382385254 300.205505371 299.991271973 299.775390625 299.456542969 298.957641602 298.080749512 297.769622803 297.591522217 297.154937744 295.673858643 292.780181885 289.271057129 286.5418396 283.436706543 279.760742188 278.220611572 276.88104248 276.156219482 275.582214355 274.450042725 272.218658447 272.32220459 270.49118042 266.803192139 263.780487061 261.856292725 258.462036133 256.272583008 254.252639771 252.899597168 252.354278564 251.339767456 249.744018555 248.111709595 246.68711853 246.307266235 245.792388916 243.621276855 241.103485107 239.674606323 239.711776733 240.459213257 241.333847046 241.093734741 240.137542725 241.118743896 245.995513916 246.4581604 245.098480225 244.451690674 244.506469727 244.854919434 244.307418823 243.897262573 243.584411621 243.005508423 242.321609497 242.248672485 221.986404419 221.235794067 222.392364502 223.142944336 222.956588745 222.008666992 220.421386719 218.729446411 217.319641113 216.154632568 217.076370239 221.71496582 228.900009155 237.030914307 244.051895142 250.412322998 258.591949463 266.82144165 271.474304199 272.685455322 273.085327148 273.543670654 274.124389648 274.985412598 275.997497559 277.020141602 278.176544189 279.254608154 280.300109863 281.583312988 282.683837891 283.472106934 284.182250977 284.941497803 285.894989014 287.189788818 288.561035156 289.913726807 291.23135376 292.375366211 293.42074585 293.781433105 294.946838379 295.751068115 296.762390137 297.544586182 299.306152344 300.611999512 302.094818115 301.491333008 302.260620117 302.285736084 302.038208008 301.607849121 301.281738281 301.15713501 300.984527588 300.691101074 301.006195068 300.712493896 299.33493042 297.653198242 297.28012085 298.807525635 299.303985596 300.001708984 300.364227295 300.62298584 300.914459229 301.070404053 300.819488525 300.388214111 300.081268311 299.84854126 299.420440674 298.660339355 298.747589111 298.38180542 297.957122803 297.178222656 295.461669922 293.08013916 290.144927979 287.111907959 284.331787109 282.199768066 280.599273682 279.128814697 278.224609375 277.271942139 275.847717285 275.343170166 274.140899658 271.784179688 269.146209717 267.982055664 265.886047363 263.015289307 260.716949463 259.575012207 258.995361328 257.781219482 256.077667236 254.346389771 253.081726074 253.617645264 254.147872925 253.467178345 252.070266724 250.610336304 249.636703491 249.020690918 248.593383789 248.22543335 248.023925781 248.859237671 251.016372681 251.524520874 251.393463135 251.274246216 250.796203613 250.037353516 249.121063232 248.029312134 246.668823242 245.033493042 243.895675659 241.882949829 245.390014648 245.519104004 245.922744751 246.379928589 246.434127808 245.920059204 245.072418213 244.257354736 243.135314941 242.175552368 241.653137207 242.229751587 244.870941162 249.152236938 254.064056396 260.467346191 268.158691406 271.850006104 273.140258789 273.103851318 273.08972168 273.361236572 274.062866211 275.044158936 275.968780518 276.923461914 278.023193359 279.190368652 280.414123535 281.622192383 282.548950195 283.412872314 284.314697266 285.155914307 286.027648926 286.947052002 287.984466553 289.181396484 290.345916748 291.96005249 295.108520508 297.033996582 298.018615723 299.249816895 300.950653076 303.524597168 304.534515381 305.347229004 304.489776611 302.086212158 300.095794678 300.045623779 300.764801025 300.944030762 300.867645264 300.772033691 300.748779297 300.67276001 300.751831055 300.695007324 299.802429199 298.813995361 298.591918945 298.900665283 298.931121826 299.848602295 300.146026611 300.084899902 299.770935059 299.216247559 299.322570801 298.734954834 299.150970459 298.774078369 298.028411865 297.49319458 296.837860107 296.46963501 295.798461914 294.1434021 291.706481934 289.072753906 286.080810547 282.989196777 280.113708496 278.03616333 277.040893555 276.739044189 276.096954346 274.5262146 272.560272217 270.2918396 264.618377686 258.575164795 255.13710022 253.553512573 251.665252686 250.300964355 248.493423462 245.913314819 244.291046143 242.800979614 241.227340698 239.093719482 237.479827881 237.533462524 237.628829956 236.180969238 234.115524292 233.036621094 232.871353149 232.21031189 231.817398071 231.273956299 230.398666382 231.813293457 237.628143311 240.617492676 241.273162842 241.476577759 242.268051147 242.443130493 242.104064941 241.917129517 241.389984131 240.923797607 240.315795898 239.274154663 234.495483398 234.303268433 234.604812622 234.819091797 234.796890259 234.295730591 233.471038818 232.618545532 231.896438599 231.719512939 232.575668335 234.738494873 237.877792358 242.778808594 248.319198608 254.701034546 262.594451904 269.599945068 272.600738525 273.048095703 273.31262207 273.600646973 274.082977295 274.999725342 276.02746582 277.024414062 278.194335938 279.353088379 280.474151611 281.716644287 282.680358887 283.403991699 284.206634521 285.058288574 285.91595459 287.005981445 288.285217285 289.499908447 290.713745117 292.217468262 294.671539307 296.255493164 297.65133667 298.66595459 299.490142822 300.892272949 302.138763428 303.410064697 303.24697876 300.680938721 299.720825195 299.940673828 300.620056152 300.699127197 300.739074707 300.729980469 300.542755127 300.282531738 300.342498779 300.281616211 299.556945801 298.82321167 298.517883301 298.676361084 298.828033447 299.767852783 300.101898193 300.229858398 300.186218262 299.934020996 299.834991455 299.796722412 299.589599609 299.101379395 298.285797119 297.983001709 297.583374023 297.389648438 296.983947754 295.969512939 294.346710205 292.266937256 289.126647949 285.778503418 282.833068848 280.302612305 278.71295166 277.588684082 276.656066895 275.229888916 273.769989014 272.455780029 269.364685059 266.406799316 263.781921387 262.2215271 258.259552002 256.213684082 254.774505615 253.101806641 252.192230225 251.389907837 249.710128784 247.829818726 246.570556641 246.071960449 244.851135254 242.656463623 240.518661499 239.591644287 240.17527771 241.08152771 242.194992065 241.582183838 240.256439209 241.2240448 245.806335449 246.392776489 244.927368164 244.29699707 244.572662354 244.817001343 244.260513306 243.805740356 243.573913574 243.029800415 242.336746216 242.246154785 222.092224121 221.579040527 222.797409058 223.623596191 223.48248291 222.415390015 220.773300171 219.064285278 217.600616455 216.446456909 217.386169434 221.665435791 228.519729614 236.42388916 243.61328125 250.05708313 257.895019531 266.658996582 271.432922363 272.666259766 273.105773926 273.592987061 274.167510986 275.037902832 276.078491211 277.079467773 278.195770264 279.306854248 280.382385254 281.6121521 282.642333984 283.410125732 284.143218994 284.94821167 285.937133789 287.198303223 288.49407959 289.764190674 291.021820068 292.152709961 292.885559082 293.637573242 294.63180542 295.569000244 296.445892334 298.148681641 299.280151367 300.674316406 302.039703369 301.358764648 301.683959961 301.723693848 302.220306396 301.847076416 301.432006836 301.192047119 301.015441895 300.79006958 300.833984375 300.753326416 300.059051514 299.220733643 298.854278564 298.951690674 299.028167725 299.923492432 300.388031006 300.713989258 300.96194458 301.105407715 300.564147949 300.512145996 299.946044922 299.444915771 298.656982422 298.427520752 298.290863037 298.04888916 297.619873047 297.020751953 296.127990723 294.903106689 292.172119141 288.770080566 285.513092041 282.824707031 280.981140137 279.521759033 278.651031494 277.559539795 276.308074951 275.418670654 273.864746094 271.621887207 269.278442383 268.947662354 266.315673828 262.767852783 260.888122559 259.666290283 258.507476807 257.288146973 256.171356201 254.473297119 253.290176392 253.536849976 253.707183838 252.866973877 251.441177368 250.072952271 249.383743286 248.804626465 248.419403076 247.944961548 247.573181152 248.662826538 250.704910278 251.232635498 251.057693481 250.906021118 250.440765381 249.764038086 248.871948242 247.802230835 246.516433716 244.914505005 243.862701416 241.840362549 245.405776978 245.571640015 246.056167603 246.575698853 246.690658569 246.249938965 245.402359009 244.494384766 243.256744385 242.219696045 241.72467041 242.16418457 244.600112915 248.723007202 253.548431396 259.973907471 267.804656982 271.75604248 273.171722412 273.155059814 273.136413574 273.405853271 274.105682373 275.111633301 276.096710205 277.082977295 278.176696777 279.31036377 280.494537354 281.653594971 282.540313721 283.389923096 284.276733398 285.115447998 286.011413574 286.942352295 287.946411133 289.035705566 290.060943604 291.349884033 294.223571777 296.380096436 297.259185791 298.499633789 300.371032715 302.579986572 304.363128662 305.213867188 304.507263184 301.981628418 299.608428955 298.970153809 299.798126221 300.63885498 300.866668701 300.843566895 300.77645874 300.640808105 300.745788574 300.847045898 300.646911621 300.209259033 299.916412354 299.790588379 299.389404297 300.063781738 300.161193848 299.770599365 299.078369141 298.109222412 298.625915527 298.473968506 298.734802246 298.603790283 298.47253418 298.07699585 297.457489014 296.743896484 295.848083496 294.643585205 293.066772461 291.037414551 288.337127686 285.510650635 282.714355469 280.483612061 279.071624756 278.367889404 277.244293213 275.315307617 272.966491699 269.578643799 264.507507324 257.300170898 254.786483765 253.03666687 251.189804077 249.786895752 248.492034912 246.492141724 244.782226562 243.14402771 241.346435547 238.916229248 237.054718018 236.959243774 236.908447266 235.573928833 233.800109863 233.027633667 233.141464233 232.72505188 232.395355225 231.884490967 230.741210938 231.830764771 237.258041382 240.338027954 240.976806641 241.227340698 242.030990601 242.442901611 242.099517822 241.912536621 241.466308594 240.99180603 240.335037231 239.260559082 234.534103394 234.414627075 234.855041504 235.144271851 235.176498413 234.680038452 233.874099731 232.923538208 232.063751221 231.887161255 232.927108765 234.961242676 237.795715332 242.574493408 248.138916016 254.522613525 262.396240234 269.447357178 272.590423584 273.046966553 273.301361084 273.616607666 274.145690918 275.140930176 276.223480225 277.165100098 278.29095459 279.504882812 280.632141113 281.780700684 282.66104126 283.385955811 284.21963501 285.106170654 286.015075684 287.126342773 288.386291504 289.539337158 290.602783203 291.859466553 294.241668701 296.113800049 297.377563477 298.3855896 299.179840088 300.523834229 302.290466309 303.719329834 302.987304688 301.300689697 299.909973145 299.291992188 299.963745117 300.596618652 300.71572876 300.715789795 300.527008057 300.187591553 300.258148193 300.38583374 300.349182129 300.123657227 299.852508545 299.662750244 299.301116943 299.900665283 299.99798584 299.833953857 299.529785156 298.915466309 299.058166504 299.167572021 298.990692139 298.956512451 298.610015869 298.264160156 297.816467285 297.281524658 296.574401855 295.871612549 295.114044189 293.831359863 291.537658691 288.622802734 285.3671875 282.43359375 280.194122314 278.892333984 277.636871338 275.909088135 274.197052002 272.004150391 269.102264404 265.719818115 263.936950684 261.793945312 258.014709473 256.012969971 254.774932861 253.589706421 252.395874023 251.29977417 249.47744751 247.17880249 245.849411011 245.384628296 244.24911499 241.943023682 240.220794678 239.948120117 241.299484253 242.323745728 242.790283203 242.181350708 240.501647949 241.173416138 245.812789917 246.582550049 244.846618652 244.261856079 244.602218628 244.785491943 244.269302368 243.859725952 243.608108521 243.084396362 242.363632202 242.249313354 222.201705933 221.791671753 223.219497681 224.16456604 224.031997681 222.887466431 221.193862915 219.427886963 217.934829712 216.856231689 217.835876465 221.868682861 228.063415527 235.738739014 243.111862183 249.564620972 257.349731445 266.322296143 271.351104736 272.664978027 273.116271973 273.633422852 274.229980469 275.111297607 276.146240234 277.091369629 278.141601562 279.274047852 280.375579834 281.552734375 282.531860352 283.329162598 284.128631592 284.976806641 285.985321045 287.196014404 288.406402588 289.565246582 290.660430908 291.596466064 292.406433105 293.524993896 294.343292236 295.172821045 296.352813721 297.686279297 299.588897705 301.167388916 301.852325439 301.376037598 301.659210205 301.127105713 301.656616211 301.934753418 301.585754395 301.24609375 300.953399658 300.630462646 300.686523438 300.738250732 300.624847412 300.291534424 299.972198486 299.760925293 299.435577393 300.078857422 300.391540527 300.547698975 300.637481689 300.61706543 299.836151123 299.678375244 299.199523926 299.256500244 298.7472229 298.458587646 298.21661377 297.812530518 297.184143066 296.669006348 296.319213867 295.682647705 294.02041626 291.32699585 287.814605713 284.708251953 282.363647461 280.790130615 279.501159668 277.973480225 276.519622803 274.862548828 273.104431152 270.036224365 268.904541016 268.766662598 266.213745117 262.370574951 260.659362793 259.701446533 258.378143311 257.119506836 256.338867188 254.723495483 253.164321899 253.221862793 253.287368774 252.37638855 250.961914062 249.975189209 249.364944458 248.866928101 248.159683228 247.762771606 247.391021729 248.349105835 250.40284729 250.958251953 250.746322632 250.555587769 250.083312988 249.486785889 248.653320312 247.651428223 246.30708313 244.835876465 243.838272095 241.777526855 245.429214478 245.661224365 246.198287964 246.775375366 246.970611572 246.566452026 245.720474243 244.740020752 243.404342651 242.357009888 241.877868652 242.14125061 244.255432129 248.236450195 253.104476929 259.304656982 267.400817871 271.561706543 273.140686035 273.20526123 273.202514648 273.462921143 274.155578613 275.179321289 276.200744629 277.195770264 278.270202637 279.366485596 280.516540527 281.65927124 282.537719727 283.374725342 284.234313965 285.071777344 286.014526367 286.963043213 287.875091553 288.798980713 289.687957764 290.883056641 292.718658447 295.569671631 296.890533447 298.176513672 300.077941895 302.003967285 303.758239746 304.828308105 303.979736328 301.744171143 299.725463867 298.411682129 298.49899292 299.886566162 300.69241333 300.902893066 300.797210693 300.08581543 300.656494141 300.700256348 300.594482422 300.367645264 300.185546875 300.086425781 300.082489014 300.143768311 300.010467529 299.467559814 298.352386475 297.15713501 297.950531006 298.92666626 298.831207275 298.45880127 298.636260986 298.258605957 297.663391113 296.817840576 295.789916992 294.718841553 293.551544189 291.916931152 289.543548584 286.993469238 284.415344238 282.261474609 280.730194092 279.577880859 277.74420166 275.097473145 272.229309082 268.266235352 262.477081299 255.656555176 254.116989136 252.55140686 251.151672363 249.450134277 248.342132568 246.636123657 244.968139648 243.649383545 241.437393188 238.862411499 236.936203003 236.320526123 236.491867065 235.041641235 233.38104248 232.873123169 233.587921143 233.39906311 232.895477295 232.254470825 231.318817139 231.963058472 237.21206665 240.076538086 240.741210938 241.055511475 241.893356323 242.383117676 242.103927612 241.936645508 241.570404053 241.08744812 240.353851318 239.243499756 234.609619141 234.585968018 235.094192505 235.482040405 235.573806763 235.121566772 234.284057617 233.240158081 232.24331665 232.087280273 233.316223145 235.187713623 237.755889893 242.315917969 247.875030518 254.147140503 262.121246338 269.249511719 272.567718506 273.045288086 273.259155273 273.614196777 274.235321045 275.301818848 276.37121582 277.238342285 278.353546143 279.578765869 280.703948975 281.790985107 282.633758545 283.385223389 284.244781494 285.167266846 286.146453857 287.268463135 288.445159912 289.529998779 290.474578857 291.65612793 293.171081543 295.691223145 297.105743408 298.05770874 299.053619385 300.789489746 302.734558105 303.715789795 302.355072021 301.303863525 300.342224121 299.874938965 299.181518555 300.14553833 300.581695557 300.69317627 300.59161377 299.799865723 300.351776123 300.431121826 300.401641846 300.252166748 300.061798096 299.9034729 299.912109375 299.993408203 299.892791748 299.503479004 298.602996826 297.534881592 298.264221191 299.100219727 299.182678223 298.584014893 298.865753174 298.52923584 297.997894287 297.229125977 296.305969238 295.573699951 295.027618408 294.158203125 292.445861816 290.116882324 287.246490479 284.349914551 281.853393555 280.063201904 278.160400391 275.914428711 273.744720459 271.214294434 267.760040283 264.427154541 262.721710205 260.391601562 257.749206543 256.246490479 255.120880127 253.724349976 252.134384155 250.916000366 248.616424561 246.251190186 244.800460815 244.475967407 243.463195801 241.149520874 240.029098511 240.744567871 242.66468811 243.358032227 243.164352417 242.382141113 241.090637207 241.152786255 245.917449951 246.653457642 244.790039062 244.269500732 244.625717163 244.77305603 244.301422119 243.938781738 243.685791016 243.164199829 242.392410278 242.254623413 222.325164795 222.122573853 223.656280518 224.718292236 224.623168945 223.409942627 221.642608643 219.830886841 218.33026123 217.372955322 218.403503418 222.041229248 227.554733276 235.000411987 242.542068481 249.01171875 257.246887207 265.874816895 271.239654541 272.68057251 273.109283447 273.644836426 274.28817749 275.17565918 276.180480957 277.067260742 278.06149292 279.195068359 280.320343018 281.470581055 282.429656982 283.264129639 284.118835449 285.000030518 286.015899658 287.166259766 288.310546875 289.427062988 290.443939209 291.451599121 292.183959961 293.125701904 294.087036133 294.795928955 296.302368164 297.984161377 299.654815674 301.221374512 301.848419189 301.239868164 301.769744873 303.09475708 300.671203613 301.387786865 301.5859375 301.300628662 301.009613037 300.17791748 300.793243408 300.700897217 300.553375244 300.371032715 300.159881592 299.975128174 299.991149902 300.18963623 300.308746338 300.220611572 299.958709717 299.175170898 298.995605469 299.352111816 299.455993652 298.755279541 298.989593506 298.699127197 298.317840576 297.741363525 297.0340271 296.456420898 296.102386475 295.703948975 294.613372803 292.601043701 289.72543335 286.761535645 284.191192627 282.232055664 280.176940918 278.013671875 276.154266357 274.33895874 271.87512207 268.463165283 267.544006348 267.872528076 265.784576416 262.425506592 261.064758301 259.806335449 258.131958008 257.213165283 256.21282959 254.258056641 252.869400024 252.701568604 252.850372314 252.048950195 250.687026978 249.882415771 249.520690918 248.781234741 247.895675659 247.445129395 247.291030884 247.948532104 250.180587769 250.669143677 250.439758301 250.223312378 249.695541382 249.216766357 248.473510742 247.518264771 246.093399048 244.694168091 243.818405151 241.693649292 245.460861206 245.759933472 246.326828003 246.966506958 247.23727417 246.898605347 246.040405273 244.982192993 243.587356567 242.549407959 242.077194214 242.192474365 243.955429077 247.753692627 252.63470459 258.733184814 267.046203613 271.284210205 273.059753418 273.251831055 273.291381836 273.540466309 274.22833252 275.255554199 276.289093018 277.285858154 278.351959229 279.43270874 280.559234619 281.680450439 282.541687012 283.360412598 284.21987915 285.091491699 286.073486328 286.993774414 287.801483154 288.625366211 289.415405273 290.481323242 292.012237549 295.176849365 297.041503906 298.328094482 299.682342529 301.299316406 303.15032959 304.146514893 303.063049316 301.372070312 299.506103516 298.142333984 298.073913574 298.808837891 300.569976807 301.021118164 301.00088501 300.609741211 300.7527771 300.651580811 300.490447998 300.02230835 300.327270508 300.271331787 300.201873779 300.144775391 299.965454102 299.524169922 299.059509277 298.352172852 298.532836914 299.113647461 299.216522217 299.043395996 298.756408691 298.346801758 297.790100098 296.999694824 295.938140869 294.767822266 293.691436768 292.366149902 290.4609375 288.34197998 286.051055908 284.012542725 282.421356201 280.703063965 277.948608398 273.48324585 270.03604126 264.911956787 259.116638184 255.073928833 253.581512451 252.660324097 250.312164307 248.670059204 247.411407471 246.090621948 244.471252441 243.532913208 241.686309814 239.326400757 236.897369385 235.992370605 236.171844482 234.620040894 232.946578979 232.79057312 233.830810547 233.583465576 233.204315186 232.456436157 231.65536499 232.184326172 237.169052124 239.87852478 240.527145386 240.930206299 241.856643677 242.339309692 242.122283936 241.955383301 241.660583496 241.141036987 240.379516602 239.21937561 234.592788696 234.66569519 235.333129883 235.819519043 235.997634888 235.568740845 234.68586731 233.557754517 232.406951904 232.327560425 233.703384399 235.419921875 237.730560303 242.038894653 247.550842285 253.815261841 261.813537598 269.020843506 272.513946533 273.041107178 273.222808838 273.620666504 274.343963623 275.455444336 276.473205566 277.310821533 278.420227051 279.647216797 280.767913818 281.802825928 282.62600708 283.405181885 284.299224854 285.26763916 286.309417725 287.400695801 288.464904785 289.503295898 290.387573242 291.350952148 292.588439941 295.377075195 297.137664795 297.82800293 298.741638184 300.968658447 302.953491211 303.495849609 301.834564209 301.18170166 300.541503906 300.16027832 299.593109131 299.330383301 300.560150146 300.745758057 300.769134521 300.407012939 300.652282715 300.565429688 300.34967041 299.872741699 300.08203125 299.973449707 299.956481934 300.048217773 299.964141846 299.593658447 299.205108643 298.613067627 298.732025146 299.136169434 299.21774292 299.129760742 298.97833252 298.642913818 298.104888916 297.345947266 296.331512451 295.323699951 294.681335449 294.029449463 292.891174316 291.236755371 288.902191162 286.304077148 283.868927002 281.469024658 278.726593018 275.16003418 272.68649292 269.636657715 265.626586914 262.801147461 261.242828369 259.760009766 257.597442627 256.364959717 254.987243652 253.372619629 251.272506714 250.182113647 247.831802368 245.448364258 243.670928955 243.394638062 242.707366943 240.944351196 240.329849243 241.879348755 243.827819824 243.879592896 243.197174072 242.261917114 241.048431396 241.147506714 245.929260254 246.504180908 244.786148071 244.29624939 244.620361328 244.752304077 244.348022461 243.916488647 243.755279541 243.216629028 242.413986206 242.261154175 222.42098999 222.404083252 224.103317261 225.278579712 225.253540039 223.974731445 222.136428833 220.271560669 218.724990845 217.907546997 219.022613525 222.336364746 227.093185425 234.255981445 241.914382935 248.456588745 257.389801025 265.3777771 271.070098877 272.683959961 273.092132568 273.637542725 274.33392334 275.219238281 276.191101074 277.039703369 277.997131348 279.140411377 280.28994751 281.424194336 282.365661621 283.215667725 284.09954834 285.022613525 286.04397583 287.118530273 288.187683105 289.284973145 290.242401123 291.140472412 291.829620361 292.77734375 293.648345947 294.369232178 295.69418335 297.412719727 299.121063232 300.380126953 301.306915283 301.593109131 302.250518799 302.253051758 300.911590576 300.437591553 301.58215332 301.369445801 301.158599854 300.692077637 301.013824463 300.754821777 300.476593018 300.090423584 300.249084473 300.060424805 300.028747559 300.22644043 300.327178955 300.156890869 299.811309814 299.272735596 299.140441895 299.3543396 299.396118164 299.261749268 299.091003418 298.809967041 298.382476807 297.830108643 297.105804443 296.272003174 295.737518311 295.420288086 294.791656494 293.41519165 291.123504639 288.507080078 286.069976807 283.628997803 280.844146729 277.4765625 275.399078369 273.547332764 270.717956543 266.755310059 265.230651855 266.046813965 263.766113281 262.217102051 260.818817139 259.478668213 257.5105896 256.541381836 255.697692871 253.855987549 252.214660645 252.065261841 252.484115601 252.015975952 250.861404419 249.881103516 249.31086731 248.379165649 247.537414551 247.057937622 247.061660767 247.682846069 249.894226074 250.323822021 250.124191284 249.902359009 249.293884277 248.937545776 248.265075684 247.209716797 245.876998901 244.611282349 243.803192139 241.578613281 245.488540649 245.836151123 246.472290039 247.182983398 247.52911377 247.235702515 246.378875732 245.260955811 243.803512573 242.813873291 242.357894897 242.343505859 243.706344604 247.298233032 252.090133667 258.204040527 266.533966064 270.914337158 272.933166504 273.293640137 273.407287598 273.646087646 274.327514648 275.34475708 276.367736816 277.359283447 278.433074951 279.522644043 280.620819092 281.696044922 282.521911621 283.329681396 284.221893311 285.149108887 286.139038086 286.994049072 287.741577148 288.596405029 289.381378174 290.352386475 291.887939453 294.813018799 297.234436035 298.294769287 299.231628418 300.658111572 302.621246338 303.902618408 302.969421387 301.128997803 299.352233887 298.811523438 298.330780029 299.180419922 300.608428955 301.176116943 301.247375488 301.065246582 300.948791504 300.727233887 300.519073486 300.050842285 300.557800293 300.502838135 299.860961914 300.203613281 300.096893311 299.845397949 299.543884277 299.275848389 299.263458252 299.382293701 299.344207764 299.143676758 298.8621521 298.447753906 297.9034729 297.159790039 296.122894287 294.903594971 293.757110596 292.584991455 291.156829834 289.574188232 287.632904053 285.587158203 283.756347656 281.624908447 278.356811523 272.395935059 268.472351074 265.827697754 261.105316162 256.138031006 253.907302856 252.569061279 250.660736084 248.891693115 247.153274536 245.78717041 244.507064819 243.589981079 242.150283813 239.9815979 237.410919189 236.16355896 235.599121094 234.087219238 232.812652588 233.223175049 233.846954346 233.707977295 233.412277222 232.495849609 231.824066162 232.648147583 237.32762146 239.735153198 240.308364868 240.823913574 241.885192871 242.344223022 242.203613281 242.013641357 241.728317261 241.177871704 240.409683228 239.207458496 234.65737915 234.860122681 235.577850342 236.169067383 236.411178589 236.018600464 235.096572876 233.85836792 232.612808228 232.595275879 234.044906616 235.64604187 237.642654419 241.764129639 247.285125732 253.477630615 261.668762207 268.741210938 272.414459229 273.036773682 273.213684082 273.66104126 274.467071533 275.585540771 276.553344727 277.392059326 278.510223389 279.740692139 280.837402344 281.820129395 282.628417969 283.435119629 284.379516602 285.396728516 286.477050781 287.497344971 288.453582764 289.498962402 290.380279541 291.188232422 292.474456787 295.138885498 297.379760742 297.742370605 298.496520996 300.915435791 302.815093994 303.035186768 301.754455566 301.404052734 300.890289307 300.622406006 299.818267822 299.850769043 300.769012451 300.868927002 300.906219482 300.900756836 300.92401123 300.675018311 300.301635742 299.793548584 300.208129883 300.131103516 299.656768799 300.147674561 300.201751709 299.99798584 299.683044434 299.439880371 299.354156494 299.378631592 299.310852051 299.152160645 298.967071533 298.63684082 298.139587402 297.428985596 296.428070068 295.268737793 294.372436523 293.720245361 293.026184082 292.009521484 290.237762451 287.844329834 285.347290039 282.739013672 279.676330566 275.166503906 272.134246826 270.165771484 266.397125244 262.72354126 260.995178223 259.625335693 257.922088623 256.593475342 254.866851807 252.866104126 251.017684937 249.520767212 247.136657715 245.023010254 243.062911987 242.647323608 241.825408936 240.886672974 240.949935913 243.234283447 244.390594482 244.086593628 243.040435791 241.676116943 240.689865112 241.435043335 245.969894409 246.12713623 244.692977905 244.308944702 244.58543396 244.70880127 244.441970825 243.954421997 243.81489563 243.253204346 242.439575195 242.266998291 222.532852173 222.644287109 224.554260254 225.869537354 225.907104492 224.595199585 222.68145752 220.726196289 219.119995117 218.462371826 219.759902954 222.573379517 226.689331055 233.496841431 241.302627563 247.845626831 257.016357422 264.72479248 270.803009033 272.652069092 273.06829834 273.623748779 274.371643066 275.246520996 276.188964844 277.022247314 277.962127686 279.115844727 280.277801514 281.397125244 282.324462891 283.175445557 284.084259033 285.053161621 286.080657959 287.079925537 288.074859619 289.149169922 290.042724609 290.842590332 291.652893066 292.480682373 293.346221924 293.801757812 294.897857666 296.674316406 298.408294678 299.827758789 301.28515625 301.892669678 302.113769531 302.509979248 301.992095947 301.172027588 301.823242188 301.453186035 301.2315979 301.190795898 301.183410645 300.837158203 300.490081787 300.100463867 300.415100098 300.189361572 299.717834473 300.280670166 300.478363037 300.40020752 300.070159912 299.720855713 299.543487549 299.555786133 299.477172852 299.262573242 299.063049316 298.770141602 298.336761475 297.826171875 297.146362305 296.18560791 295.341339111 294.969207764 294.707092285 293.90536499 292.160980225 289.711456299 287.173400879 284.625640869 281.718505859 277.705657959 275.433135986 273.809906006 271.065490723 266.537963867 265.024291992 264.345825195 263.775512695 262.390594482 260.760803223 259.225280762 257.347564697 256.162872314 255.091384888 253.383117676 251.80027771 251.805206299 252.270355225 251.83656311 250.865127563 250.09312439 248.871170044 247.946258545 247.182510376 246.820541382 246.963668823 247.62310791 249.615188599 249.915481567 249.727798462 249.54119873 248.916152954 248.556274414 248.030929565 246.983795166 245.61505127 244.491424561 243.748001099 241.51133728 245.548492432 245.905670166 246.622039795 247.404312134 247.833709717 247.585449219 246.725341797 245.547744751 244.053695679 243.105743408 242.700637817 242.5418396 243.50138855 246.947555542 251.595504761 257.582366943 266.381317139 270.330322266 272.72869873 273.333343506 273.564147949 273.816741943 274.470703125 275.444122314 276.432037354 277.404449463 278.496368408 279.598205566 280.644622803 281.649932861 282.44342041 283.267425537 284.224578857 285.199462891 286.147186279 286.929534912 287.708282471 288.730834961 289.592041016 290.437164307 291.862426758 294.787506104 297.345458984 298.179595947 299.110809326 300.482208252 302.568145752 303.423400879 303.058227539 301.817474365 300.148834229 299.918273926 299.074066162 299.440368652 300.488739014 301.066253662 301.278930664 301.175201416 301.004516602 300.859405518 300.737915039 300.006530762 300.73815918 300.677093506 300.471191406 300.339172363 300.26574707 300.156677246 299.945373535 299.74407959 299.678527832 299.604431152 299.398651123 299.146972656 298.901855469 298.523773193 297.975311279 297.240386963 296.259552002 295.090820312 293.904663086 292.707611084 291.524688721 290.378295898 288.727722168 286.469451904 283.856628418 281.391418457 279.067993164 276.035797119 272.507904053 270.608764648 267.42779541 261.548431396 255.493881226 252.307739258 250.683670044 249.435394287 247.331634521 245.841064453 244.465621948 243.667617798 242.696990967 240.727142334 238.037460327 236.431152344 235.273880005 233.984863281 233.06880188 233.726516724 233.9868927 234.110321045 233.833709717 232.858581543 232.106750488 233.115844727 237.992095947 239.624069214 240.160308838 240.766479492 241.91015625 242.438873291 242.287475586 242.098999023 241.798309326 241.180206299 240.442123413 239.207275391 234.743988037 234.953460693 235.824203491 236.522567749 236.859130859 236.471679688 235.526504517 234.191070557 232.838363647 232.867706299 234.346694946 235.91368103 237.584411621 241.528686523 247.014755249 253.145812988 262.360198975 268.178405762 272.213500977 273.029937744 273.261413574 273.765899658 274.61529541 275.694061279 276.632446289 277.497161865 278.640228271 279.851593018 280.885864258 281.825744629 282.626953125 283.4737854 284.489135742 285.544311523 286.616760254 287.554260254 288.453582764 289.539520264 290.422698975 291.14944458 292.55581665 295.477966309 297.836547852 298.050476074 298.496734619 300.662719727 302.204467773 302.671722412 302.795471191 302.602386475 301.591003418 301.351135254 299.984863281 299.940917969 300.768585205 300.861450195 300.919311523 300.954681396 300.887054443 300.658843994 300.379211426 299.743041992 300.360321045 300.28994751 300.161193848 300.254058838 300.362609863 300.306610107 300.136169434 299.929473877 299.747314453 299.611846924 299.399017334 299.150085449 298.908599854 298.572570801 298.112579346 297.457336426 296.533660889 295.376159668 294.305450439 293.439605713 292.787872314 292.122161865 290.746154785 288.352722168 285.428070068 282.754821777 280.589508057 278.123413086 274.862030029 273.06463623 270.364990234 265.897888184 261.969512939 259.583618164 258.123901367 256.442108154 254.443389893 252.499145508 250.65032959 249.007232666 246.994064331 244.772994995 242.81262207 242.149642944 241.313766479 240.964889526 241.857925415 244.223083496 245.10383606 244.487930298 243.057189941 241.323974609 240.580627441 241.626861572 246.29397583 245.604309082 244.574554443 244.305450439 244.53364563 244.634048462 244.549530029 244.070297241 243.856994629 243.25428772 242.47442627 242.272766113 222.6381073 222.952911377 225.035125732 226.462402344 226.594070435 225.247787476 223.264816284 221.226959229 219.507827759 219.008392334 220.453231812 222.927780151 226.391784668 232.884155273 240.778656006 247.292816162 256.693847656 263.631439209 270.306091309 272.541412354 273.034210205 273.621063232 274.417480469 275.275024414 276.189605713 277.01940918 277.942138672 279.074554443 280.227783203 281.342651367 282.266052246 283.129150391 284.077178955 285.084320068 286.112457275 287.071594238 288.039672852 289.075958252 289.871063232 290.589782715 291.502563477 292.383270264 293.219329834 293.399597168 294.375183105 295.801391602 297.56539917 299.356872559 300.922210693 301.526763916 301.874633789 302.955505371 302.450744629 301.170898438 301.802825928 301.42767334 301.256439209 301.247253418 301.152954102 300.871612549 300.608825684 300.003875732 300.469360352 300.2550354 300.167541504 300.390899658 300.591827393 300.606384277 300.46194458 300.167663574 299.883544922 299.743377686 299.562011719 299.293731689 299.049499512 298.722381592 298.27520752 297.760681152 297.108337402 296.143127441 295.131774902 294.490020752 294.290252686 293.931640625 292.697021484 290.322509766 287.29977417 284.569915771 282.483428955 280.249481201 277.438537598 275.875396729 273.455657959 269.425323486 265.793670654 263.945739746 263.352874756 262.509857178 260.976806641 259.210876465 257.118835449 256.105041504 254.904037476 252.994796753 251.514526367 251.635803223 251.932235718 251.584365845 250.792419434 249.972930908 248.693603516 247.707229614 246.988372803 246.778884888 246.810821533 247.424453735 249.548629761 249.458831787 249.336471558 249.079818726 248.564361572 248.191757202 247.847869873 246.638931274 245.353302002 244.378555298 243.704910278 241.487609863 245.563751221 245.9896698 246.757110596 247.642562866 248.145553589 247.926773071 247.076324463 245.853912354 244.357940674 243.456329346 243.092712402 242.814300537 243.457000732 246.635559082 251.129135132 257.004333496 264.871063232 269.804626465 272.458587646 273.348022461 273.711730957 273.982757568 274.592681885 275.508331299 276.452606201 277.402740479 278.499145508 279.58416748 280.582092285 281.546417236 282.358581543 283.254211426 284.27633667 285.235839844 286.125671387 286.902923584 287.727966309 288.794189453 289.668731689 290.474334717 291.883636475 294.903503418 297.601898193 298.558563232 299.50012207 300.928497314 302.296112061 303.020233154 302.819000244 302.218170166 300.995758057 301.021453857 299.780059814 299.029083252 299.244506836 300.076507568 300.996490479 301.028198242 301.015045166 301.112701416 301.020446777 300.241760254 300.368408203 300.133361816 300.350128174 300.305053711 300.245727539 300.168518066 300.030975342 299.8878479 299.783203125 299.637145996 299.382080078 299.093505859 298.833312988 298.517333984 298.033233643 297.334014893 296.398956299 295.265808105 294.070526123 292.8515625 291.688323975 290.63772583 289.0987854 286.696258545 281.963592529 278.763793945 278.711334229 277.987701416 276.207000732 273.800323486 270.435760498 265.547821045 259.503936768 252.463012695 250.128417969 248.662094116 247.765655518 246.363189697 244.903717041 244.055007935 243.237091064 241.044754028 238.363388062 236.418930054 235.377990723 234.343795776 233.89793396 234.608642578 234.643661499 234.651855469 234.258483887 233.410552979 232.770935059 235.579330444 238.161193848 239.523147583 240.081176758 240.731719971 241.936538696 242.516418457 242.384658813 242.167449951 241.853210449 241.148254395 240.484222412 239.206924438 234.807128906 235.132720947 236.068786621 236.875259399 237.29006958 236.982635498 235.958984375 234.536224365 233.095932007 233.147583008 234.6456604 236.168548584 237.561965942 241.362197876 246.825408936 252.78163147 260.477233887 267.464447021 271.899597168 273.032440186 273.366271973 273.905212402 274.736053467 275.767425537 276.715606689 277.613708496 278.758728027 279.905853271 280.882843018 281.812805176 282.626800537 283.532318115 284.618743896 285.6640625 286.691864014 287.611572266 288.519561768 289.593383789 290.465423584 291.262878418 292.880432129 296.016265869 298.49609375 298.60546875 299.018066406 300.276367188 301.336425781 301.904266357 302.733734131 303.465789795 303.098602295 302.420532227 300.064117432 299.331298828 299.572387695 300.027832031 300.78414917 300.863769531 300.769744873 300.713134766 300.615356445 299.923675537 299.956726074 299.730621338 300.019134521 300.229034424 300.294158936 300.250061035 300.176605225 300.042388916 299.847320557 299.642150879 299.37588501 299.108459473 298.860137939 298.540924072 298.081817627 297.442321777 296.57925415 295.47869873 294.368652344 293.386291504 292.584747314 291.916442871 290.695587158 288.310241699 283.938201904 280.765228271 280.411712646 279.553192139 277.674926758 275.285430908 272.488433838 268.950408936 264.545379639 259.933288574 257.726165771 255.626052856 254.129928589 252.397033691 250.598129272 248.755737305 247.065216064 244.528594971 242.681900024 241.854751587 241.262390137 241.627059937 243.064987183 245.2003479 245.964935303 244.808197021 242.936599731 241.158721924 240.565414429 243.297302246 245.889953613 245.080932617 244.401107788 244.276351929 244.464431763 244.631378174 244.715606689 244.173416138 243.910263062 243.227310181 242.530334473 242.281570435 222.781311035 223.238998413 225.427078247 227.074447632 227.299530029 225.947891235 223.879653931 221.74331665 219.910354614 219.529891968 221.054962158 223.270233154 226.223617554 232.391387939 240.366531372 246.801132202 254.649093628 262.460601807 269.59942627 272.349273682 272.995452881 273.634674072 274.457580566 275.29776001 276.193450928 277.007995605 277.88659668 278.966217041 280.101501465 281.227233887 282.177307129 283.091827393 284.086517334 285.08480835 286.104248047 287.083648682 288.083709717 289.069946289 289.763031006 290.413391113 291.328094482 292.162109375 293.059356689 293.279876709 293.937561035 294.975067139 296.619659424 298.3855896 300.160400391 301.143432617 301.882324219 303.084075928 302.489532471 301.052185059 300.288085938 300.590576172 301.181121826 301.155273438 301.050964355 300.914550781 300.703338623 299.993743896 300.010192871 299.821105957 300.229644775 300.582672119 300.65826416 300.573883057 300.482635498 300.259979248 299.960205078 299.726531982 299.498382568 299.236785889 299.02053833 298.73928833 298.279724121 297.704376221 297.040649414 296.131439209 295.079803467 294.261779785 293.899597168 293.697998047 292.819519043 290.59185791 286.600158691 283.007202148 282.133361816 281.250091553 279.58114624 277.321044922 274.816589355 271.969940186 268.494171143 264.299530029 262.812896729 261.725189209 261.394683838 259.718322754 257.521636963 256.121765137 254.742126465 252.694290161 251.44744873 251.547225952 251.625808716 251.435958862 250.562698364 250.003921509 248.726043701 247.542541504 246.852050781 246.763931274 246.873718262 247.69543457 249.12197876 248.970703125 248.959701538 248.6847229 248.257141113 247.941665649 247.56854248 246.400848389 245.136886597 244.190841675 243.655395508 241.455307007 245.535049438 246.066192627 246.913833618 247.885955811 248.467407227 248.282897949 247.415222168 246.166503906 244.653503418 243.816360474 243.490890503 243.120635986 243.526916504 246.45463562 250.791305542 256.593536377 264.607055664 269.570556641 272.168060303 273.323028564 273.820800781 274.115142822 274.682891846 275.552825928 276.460388184 277.384033203 278.465423584 279.522491455 280.495574951 281.459503174 282.330749512 283.315856934 284.370056152 285.275238037 286.15057373 287.002593994 287.840484619 288.808441162 289.708099365 290.644195557 292.189575195 295.464782715 298.342651367 299.6378479 300.748474121 301.691375732 302.231506348 302.811798096 302.941864014 302.848693848 301.788574219 301.214294434 299.715637207 299.0887146 298.850646973 299.258514404 300.733825684 300.914123535 301.073455811 301.282196045 301.056427002 300.404754639 299.163513184 299.004486084 300.084197998 300.188446045 300.198120117 300.15032959 300.058166504 299.948028564 299.805145264 299.623718262 299.369445801 299.080657959 298.804962158 298.528533936 298.117095947 297.466583252 296.556152344 295.42074585 294.212982178 293.029602051 291.906494141 290.865814209 289.448608398 287.183563232 283.55947876 279.48727417 277.478149414 278.79901123 278.194824219 275.961273193 272.62399292 267.698577881 261.639648438 252.335174561 249.106262207 248.029922485 247.901443481 246.645858765 245.206634521 244.432815552 243.755218506 241.270278931 238.697784424 236.737808228 235.633728027 234.882583618 235.014877319 235.380523682 235.014938354 235.237243652 234.76612854 233.821792603 233.293167114 236.012802124 238.232345581 239.38444519 240.032928467 240.757553101 242.023239136 242.628921509 242.541168213 242.236572266 241.874664307 241.157577515 240.534057617 239.215454102 234.807693481 235.229141235 236.318054199 237.202758789 237.749298096 237.483764648 236.408538818 234.872848511 233.400558472 233.441223145 234.895782471 236.393478394 237.618560791 241.279693604 246.694549561 252.479675293 260.51461792 267.164154053 271.499450684 273.028320312 273.479400635 274.032806396 274.831542969 275.839782715 276.804351807 277.716247559 278.841369629 279.912261963 280.857421875 281.803039551 282.652893066 283.633605957 284.776550293 285.783569336 286.767578125 287.729125977 288.657104492 289.700256348 290.655151367 291.667724609 293.448638916 296.810455322 299.10067749 299.394714355 299.93939209 300.650146484 300.80847168 301.257019043 302.241729736 303.334442139 303.515106201 302.530487061 300.14175415 299.091369629 298.965759277 299.217498779 300.616149902 300.76461792 300.735626221 300.784942627 300.630065918 299.985473633 298.703491211 298.651397705 299.790466309 300.169403076 300.259552002 300.218658447 300.17565918 300.08001709 299.894622803 299.6534729 299.365753174 299.09085083 298.844360352 298.5519104 298.092651367 297.455535889 296.618347168 295.539520264 294.427185059 293.432006836 292.544006348 291.826751709 290.789337158 288.674072266 285.289886475 281.655426025 279.587585449 280.151794434 279.140716553 276.888031006 274.145629883 270.59765625 266.169708252 259.766479492 256.982177734 254.902069092 253.609695435 251.889892578 250.339920044 248.729354858 247.086425781 244.361236572 242.746841431 242.075714111 241.912063599 242.646514893 244.313110352 246.202941895 246.370269775 245.020507812 242.701690674 240.877044678 240.527420044 243.405334473 245.0365448 244.627502441 244.227966309 244.26625061 244.411682129 244.63381958 244.887680054 244.275863647 243.978256226 243.250091553 242.611221313 242.308303833 222.85005188 223.527755737 225.966995239 227.689437866 228.04977417 226.682922363 224.544265747 222.302062988 220.366928101 220.031112671 221.626174927 223.702514648 226.229736328 232.148178101 240.106704712 246.455307007 254.032669067 261.711242676 268.731262207 272.111206055 272.957183838 273.651641846 274.478851318 275.301727295 276.181304932 276.966430664 277.789306641 278.815826416 279.939666748 281.082946777 282.084991455 283.078582764 284.116119385 285.095947266 286.108886719 287.124481201 288.139587402 289.061889648 289.690124512 290.276031494 291.174438477 291.968200684 292.887390137 293.585174561 294.115539551 294.994018555 296.152709961 297.586120605 299.374328613 301.042541504 301.906677246 302.457611084 302.650146484 301.312530518 300.082733154 299.864929199 301.065155029 301.004425049 300.938751221 300.884765625 300.564239502 299.918334961 298.890350342 298.998199463 300.235412598 300.717834473 300.740112305 300.572052002 300.448669434 300.262939453 299.984222412 299.717437744 299.443023682 299.163116455 298.970123291 298.746520996 298.29309082 297.667602539 296.979492188 296.106811523 295.058135986 294.140899658 293.655395508 293.516387939 292.977355957 291.122558594 287.886322021 284.045654297 281.167907715 281.40447998 280.467590332 278.327880859 275.943664551 273.315093994 270.035949707 264.309692383 262.28994751 261.509521484 261.216308594 259.50479126 257.28125 255.880310059 254.586502075 252.428146362 251.494110107 251.471710205 251.396148682 251.043930054 250.384719849 249.784484863 248.523895264 247.423248291 246.83013916 246.846832275 246.846618652 247.566589355 248.542510986 248.466339111 248.580352783 248.339553833 247.971435547 247.734115601 247.26449585 246.18762207 244.916473389 244.117095947 243.583786011 241.453475952 245.610946655 246.124786377 247.068771362 248.127929688 248.802658081 248.66506958 247.789306641 246.456878662 245.011688232 244.178833008 243.890472412 243.516220093 243.846450806 246.480834961 250.643035889 256.295288086 264.246398926 269.309265137 271.915252686 273.249694824 273.891815186 274.213775635 274.754455566 275.597106934 276.482971191 277.370788574 278.417144775 279.444793701 280.415283203 281.405883789 282.346191406 283.403717041 284.451019287 285.28414917 286.198516846 287.184448242 288.007904053 288.866638184 289.917633057 291.126464844 292.862640381 296.795684814 299.436431885 300.709075928 301.762207031 302.338378906 302.509155273 302.663757324 302.833587646 303.55871582 302.469329834 301.99307251 299.958007812 299.288238525 299.013275146 299.57598877 300.605621338 300.866943359 301.113739014 301.22946167 300.738464355 299.181182861 297.838287354 298.993438721 299.986999512 300.156097412 300.210235596 300.18157959 300.095031738 299.999206543 299.841217041 299.613586426 299.364349365 299.091552734 298.816192627 298.55380249 298.175231934 297.559509277 296.686309814 295.566253662 294.34677124 293.203643799 292.146911621 291.110595703 289.842651367 287.984161377 285.19140625 281.699951172 277.04675293 278.802276611 278.879425049 276.82421875 273.514343262 268.827972412 262.857574463 253.034164429 249.042098999 248.064117432 247.5753479 247.22315979 245.74156189 244.425506592 243.856338501 241.965789795 239.469680786 237.430923462 236.515213013 235.995193481 236.375549316 236.294204712 235.745254517 235.384399414 235.122528076 234.207794189 233.779220581 236.336761475 238.308334351 239.159942627 239.979934692 240.867034912 242.267669678 242.81602478 242.598724365 242.265777588 241.88381958 241.249221802 240.547103882 239.229141235 234.913040161 235.413009644 236.551254272 237.542007446 238.227844238 237.996673584 236.875564575 235.251968384 233.726852417 233.757247925 235.155822754 236.592269897 237.966461182 241.279830933 246.546768188 252.270751953 260.321563721 266.757263184 271.001678467 273.001800537 273.573059082 274.130371094 274.902587891 275.916412354 276.884735107 277.797332764 278.872558594 279.886810303 280.829376221 281.809692383 282.717193604 283.780517578 284.959838867 285.910919189 286.871887207 287.91418457 288.869567871 289.937347412 291.080352783 292.325744629 294.207122803 297.990020752 299.914215088 300.416015625 300.800079346 301.332580566 301.13381958 301.573486328 302.437561035 303.361480713 303.799407959 303.181762695 300.483337402 299.376312256 298.96182251 299.532196045 300.490234375 300.733734131 300.843231201 300.811035156 300.28717041 298.756164551 297.505493164 298.61038208 299.763214111 300.153656006 300.28994751 300.282836914 300.219299316 300.114532471 299.925170898 299.666748047 299.382019043 299.100891113 298.841796875 298.565856934 298.108581543 297.477661133 296.656097412 295.577850342 294.446014404 293.452697754 292.528961182 291.757446289 290.931762695 289.347106934 286.673583984 283.502441406 279.473937988 280.125854492 279.668823242 277.610839844 274.892120361 271.435974121 266.997467041 259.983062744 256.665008545 254.472366333 252.857162476 251.778945923 250.136245728 248.187164307 246.896026611 244.927261353 243.364089966 242.662567139 242.852203369 244.044158936 245.422164917 246.668167114 246.36895752 244.663513184 242.516540527 240.797119141 240.627197266 243.26159668 244.5287323 244.318450928 244.145141602 244.249343872 244.432525635 244.662033081 244.996704102 244.368026733 244.018768311 243.40322876 242.633163452 242.347625732 223.002288818 223.831237793 226.454452515 228.378585815 228.796661377 227.421020508 225.264190674 222.933227539 220.872238159 220.526428223 222.132766724 224.054443359 226.342483521 232.071868896 239.961105347 246.30645752 253.420623779 261.175994873 267.752716064 271.838989258 272.91293335 273.659667969 274.474517822 275.281890869 276.144317627 276.891601562 277.660827637 278.649047852 279.760864258 280.925048828 282.000518799 283.094329834 284.17477417 285.152923584 286.177825928 287.209014893 288.194976807 289.054656982 289.655700684 290.2109375 291.053161621 291.810180664 293.237518311 294.098358154 294.775115967 295.587554932 296.301055908 297.283630371 298.847930908 300.959564209 302.079803467 303.040740967 302.54989624 301.875946045 300.624084473 300.250427246 300.964538574 300.85824585 300.851867676 300.74432373 300.120178223 298.725738525 297.769195557 299.064300537 300.265136719 300.719726562 300.748046875 300.589294434 300.423400879 300.229064941 299.982147217 299.72946167 299.42880249 299.122802734 298.925506592 298.734161377 298.304107666 297.662200928 296.952606201 296.075897217 295.005371094 294.024505615 293.474121094 293.34979248 293.101623535 291.798126221 289.099456787 285.642364502 281.250366211 281.101043701 280.643554688 278.756958008 276.503845215 274.076202393 270.937774658 264.757202148 262.327087402 261.5078125 260.430938721 259.359375 257.237609863 255.484130859 254.412246704 252.844940186 251.874435425 251.590667725 251.171173096 250.610580444 250.166412354 249.370269775 248.144943237 247.041885376 246.721740723 246.848495483 246.752075195 247.120071411 248.013244629 247.942245483 248.180480957 248.053131104 247.688369751 247.516296387 247.097290039 245.865982056 244.791702271 244.052886963 243.572570801 241.46395874 245.646377563 246.239257812 247.208389282 248.360427856 249.156890869 249.064788818 248.204299927 246.809066772 245.402557373 244.565002441 244.284561157 243.948928833 244.361343384 246.696807861 250.678817749 256.211669922 263.038482666 268.6456604 271.770050049 273.10748291 273.91305542 274.288574219 274.836273193 275.677154541 276.551879883 277.380096436 278.351531982 279.34274292 280.341644287 281.380126953 282.356842041 283.427520752 284.438568115 285.243347168 286.253753662 287.333312988 288.140594482 289.154083252 290.507263184 292.148468018 295.537689209 298.341583252 300.215637207 302.054260254 303.12588501 303.743591309 302.796783447 302.817016602 302.797576904 303.435638428 302.946624756 301.889160156 300.322143555 299.604400635 299.195007324 299.949798584 300.66192627 300.992523193 301.222412109 300.994293213 299.972717285 297.553070068 298.997131348 299.758758545 300.222625732 300.308532715 300.32043457 300.264465332 300.157684326 300.07131958 299.910461426 299.6355896 299.363494873 299.093597412 298.834472656 298.591033936 298.221862793 297.608520508 296.800109863 295.779022217 294.59085083 293.427215576 292.384643555 291.367523193 290.197784424 288.765106201 286.475006104 283.008758545 277.106414795 278.25112915 278.67956543 277.019927979 273.961456299 269.768798828 264.221435547 256.296508789 250.873321533 249.193359375 247.873123169 247.122787476 246.15296936 245.054275513 244.675018311 243.290969849 241.157958984 238.998931885 237.924194336 237.861953735 238.211380005 237.701278687 236.725006104 235.870391846 235.684570312 234.495376587 234.085403442 236.527694702 238.331130981 238.742965698 239.852371216 240.988876343 242.349624634 242.775695801 242.595657349 242.294708252 241.897109985 241.290481567 240.549957275 239.232269287 234.947967529 235.543304443 236.85194397 237.913131714 238.735900879 238.53225708 237.369766235 235.658737183 234.125488281 234.103881836 235.362426758 236.734130859 238.153320312 241.500579834 246.608108521 252.161605835 258.847991943 265.48815918 270.488098145 272.950500488 273.641784668 274.201293945 274.969116211 275.99810791 276.961273193 277.831634521 278.837249756 279.825073242 280.803955078 281.85534668 282.846496582 283.990234375 285.171691895 286.061004639 287.043304443 288.17388916 289.157012939 290.319335938 291.690551758 293.321044922 296.546844482 298.557495117 300.124694824 301.276763916 301.742340088 302.175048828 301.623413086 302.516937256 302.936035156 303.626037598 304.257507324 303.360900879 301.033294678 299.580657959 299.107574463 299.935516357 300.525543213 300.904418945 301.147369385 300.757415771 299.495758057 297.136474609 298.424102783 299.433959961 300.090911865 300.242950439 300.342376709 300.366760254 300.271575928 300.147521973 299.938232422 299.646636963 299.365966797 299.090057373 298.817718506 298.55267334 298.116241455 297.481262207 296.694213867 295.667114258 294.504852295 293.428863525 292.434783936 291.588012695 290.860198975 289.784912109 287.669525146 284.507293701 279.471343994 279.629241943 279.511138916 277.826141357 275.226104736 271.9090271 267.662322998 261.429870605 257.065155029 254.815216064 252.883544922 251.196594238 250.064193726 248.376358032 247.369369507 246.015686035 244.82043457 243.954071045 244.383102417 245.692077637 246.862564087 247.192352295 246.273712158 244.425186157 242.382354736 240.92288208 240.670684814 242.894515991 244.152801514 244.067993164 244.035232544 244.22605896 244.454040527 244.776931763 245.119827271 244.450805664 244.123016357 243.481628418 242.702148438 242.355484009 223.08682251 224.100509644 226.914367676 228.98286438 229.557113647 228.235366821 226.021026611 223.603424072 221.447189331 221.087814331 222.615036011 224.426498413 226.641021729 232.20350647 239.873245239 246.156463623 251.768371582 259.530944824 266.776855469 271.548156738 272.847198486 273.64175415 274.43460083 275.231994629 276.070281982 276.770843506 277.495330811 278.453186035 279.548339844 280.74420166 281.929718018 283.15435791 284.283325195 285.287719727 286.339355469 287.334594727 288.239257812 289.089385986 289.698974609 290.32434082 291.310180664 292.255004883 293.475524902 295.298858643 296.281951904 297.093505859 296.78918457 297.864013672 298.96875 301.066497803 302.592041016 302.67074585 301.954345703 300.793365479 300.105072021 300.666381836 301.021270752 300.911560059 300.906829834 300.492279053 299.308074951 297.296844482 298.669830322 299.772216797 300.516845703 300.731689453 300.709350586 300.577423096 300.391418457 300.19241333 299.947692871 299.676055908 299.366271973 299.078125 298.882965088 298.698730469 298.305267334 297.69631958 296.98916626 296.106506348 295.026733398 294.008453369 293.356658936 293.124816895 292.964355469 292.113555908 289.973236084 286.567749023 281.410369873 280.545471191 280.268859863 278.811828613 276.776275635 274.481323242 271.527679443 266.141571045 262.964904785 261.906799316 260.399047852 258.870513916 257.334259033 255.875823975 254.919921875 253.644332886 252.546768188 251.624359131 250.818359375 250.143508911 249.748031616 249.15625 247.80065918 246.682556152 246.657058716 246.636199951 246.437606812 246.674163818 247.466751099 247.385742188 247.721923828 247.809463501 247.457015991 247.241378784 246.909606934 245.738327026 244.536224365 244.003036499 243.502914429 241.466812134 245.664810181 246.333694458 247.371505737 248.590194702 249.511688232 249.501403809 248.654159546 247.226516724 245.777023315 244.949188232 244.654953003 244.397872925 244.928344727 247.11100769 250.897018433 256.30947876 263.054992676 267.8409729 271.801025391 272.976623535 273.875701904 274.347717285 274.941040039 275.790985107 276.636810303 277.401763916 278.28326416 279.260955811 280.309020996 281.384338379 282.374633789 283.455749512 284.482788086 285.342651367 286.378723145 287.413421631 288.272125244 289.532989502 291.245544434 294.773223877 296.933532715 298.980499268 300.629669189 301.469543457 302.365447998 302.908996582 303.170806885 303.249938965 303.424133301 303.33203125 302.3203125 300.395935059 299.558166504 299.889862061 299.907958984 300.3409729 300.876617432 301.240875244 301.350036621 300.666778564 298.889953613 296.82635498 298.449890137 299.823822021 300.37411499 300.374511719 300.361938477 300.324523926 300.223968506 300.134857178 299.960662842 299.680847168 299.412353516 299.132110596 298.861602783 298.648651123 298.333618164 297.729888916 296.926177979 295.982299805 294.87991333 293.708557129 292.655151367 291.685424805 290.513793945 289.158508301 287.218231201 284.005493164 278.971740723 276.946929932 278.112487793 277.032409668 274.571289062 271.061645508 266.384613037 261.078979492 254.9506073 250.802871704 248.858352661 247.438186646 246.968597412 246.121520996 246.055007935 245.559707642 243.424194336 241.525909424 240.181793213 240.233474731 239.958312988 239.077651978 237.566177368 236.731323242 236.107131958 234.887496948 234.235473633 236.512115479 238.208679199 237.98085022 239.590667725 241.080856323 242.394180298 242.752258301 242.524780273 242.334136963 241.904907227 241.293579102 240.519119263 239.232788086 235.01461792 235.733612061 237.087615967 238.270858765 239.204956055 239.058349609 237.919845581 236.125778198 234.564697266 234.506362915 235.585800171 236.863769531 238.534286499 241.931869507 246.834915161 252.287887573 259.246582031 264.042144775 270.599151611 272.910400391 273.674957275 274.273742676 275.061279297 276.078796387 277.004302979 277.803833008 278.759613037 279.77432251 280.819213867 281.965179443 283.034362793 284.221282959 285.399383545 286.279266357 287.270812988 288.416046143 289.398651123 290.707580566 292.451477051 296.037750244 297.087677002 298.072174072 299.885314941 300.436676025 301.144622803 301.862854004 301.883178711 302.811431885 303.344207764 303.843200684 304.00982666 302.741790771 300.292694092 300.005889893 299.922851562 300.329559326 300.709259033 301.092803955 301.198638916 300.358551025 298.406311035 296.379638672 297.983062744 299.599060059 300.284454346 300.314910889 300.372009277 300.36605835 300.270477295 300.175476074 299.950500488 299.59161377 299.292877197 299.023406982 298.766265869 298.563323975 298.194061279 297.54397583 296.760803223 295.801879883 294.654418945 293.486053467 292.443267822 291.590484619 290.836242676 289.905334473 288.16104126 285.185913086 280.711578369 278.63180542 279.07824707 277.895629883 275.659667969 272.660858154 268.826263428 264.256591797 258.732971191 255.28338623 253.323348999 251.367767334 250.541687012 249.187927246 248.406951904 247.359191895 246.568267822 245.784561157 245.976287842 247.375274658 248.260894775 247.599105835 246.161056519 244.290878296 242.400756836 241.149230957 240.805984497 242.430847168 243.365478516 243.425125122 243.877090454 244.238143921 244.487792969 244.863708496 245.28616333 244.643508911 244.163223267 243.49319458 242.762908936 242.355957031 223.257705688 224.383834839 227.390045166 229.60748291 230.353759766 229.062652588 226.81401062 224.327468872 222.091705322 221.668792725 223.07144165 224.789169312 227.105499268 232.546722412 239.901031494 246.093399048 252.289169312 258.466491699 266.871795654 271.373352051 272.770172119 273.587310791 274.37286377 275.172119141 275.980560303 276.636169434 277.337860107 278.286346436 279.372894287 280.623596191 281.932006836 283.263427734 284.414367676 285.440002441 286.482391357 287.429443359 288.32522583 289.252624512 289.910583496 290.876037598 291.553833008 292.367004395 293.616729736 294.699371338 295.754608154 296.848632812 297.4715271 298.323120117 299.725280762 301.241149902 302.259063721 301.515533447 300.620452881 300.49887085 300.446258545 300.983154297 301.266998291 301.189697266 301.02911377 300.175933838 298.361358643 296.709136963 298.330993652 299.925109863 300.704498291 300.844848633 300.766601562 300.582855225 300.381134033 300.202056885 299.937194824 299.603637695 299.282104492 299.017791748 298.830993652 298.668395996 298.334259033 297.775268555 297.084442139 296.25567627 295.30166626 294.338806152 293.548278809 293.104644775 292.808776855 292.063476562 290.276489258 287.104614258 282.434631348 279.535095215 279.67565918 278.700469971 277.053466797 274.996276855 272.282775879 268.590576172 263.861450195 262.068511963 260.621887207 258.671569824 257.682647705 256.542236328 255.578308105 254.052642822 253.193756104 251.825210571 250.428314209 249.654724121 249.231185913 248.79296875 247.400894165 246.512634277 246.481582642 246.44581604 246.053848267 246.134765625 246.706069946 246.504257202 247.287780762 247.585540771 247.259628296 247.066207886 246.611312866 245.47203064 244.451599121 243.954071045 243.388763428 241.467651367 245.671295166 246.413208008 247.532623291 248.841125488 249.874572754 249.967895508 249.119750977 247.669067383 246.186859131 245.354400635 245.046737671 244.861999512 245.557403564 247.67326355 251.351593018 256.666778564 263.149169922 268.570892334 271.902862549 272.889892578 273.814208984 274.401977539 275.049804688 275.896118164 276.699035645 277.405914307 278.23135376 279.236724854 280.339019775 281.456939697 282.496917725 283.61529541 284.680877686 285.6015625 286.632232666 287.607269287 288.474914551 289.868713379 292.154144287 295.305450439 297.388824463 299.098510742 301.212127686 301.280700684 302.165527344 302.823394775 303.16317749 303.488586426 304.647277832 303.580383301 301.77130127 300.103515625 300.447174072 300.802337646 300.751342773 300.833831787 301.071838379 301.224700928 300.676635742 300.001434326 297.287841797 296.088806152 297.60269165 299.878753662 300.438964844 300.363311768 300.347198486 300.364196777 300.29788208 300.194122314 299.998016357 299.731445312 299.487030029 299.18548584 298.872375488 298.671478271 298.426208496 297.874023438 297.066192627 296.148803711 295.129302979 293.995117188 292.925476074 292.003387451 290.84954834 289.481872559 287.782012939 284.940948486 281.142150879 276.349334717 276.804229736 276.736602783 275.004577637 272.29095459 268.519378662 263.684356689 258.80279541 253.813674927 250.235595703 249.038162231 248.289505005 247.487564087 247.411941528 247.780288696 246.979095459 244.221038818 242.643829346 242.058578491 241.088882446 239.643432617 237.792114258 236.681350708 235.840774536 234.953323364 234.116317749 236.218002319 237.922149658 237.778289795 239.233612061 241.136978149 242.409973145 242.724716187 242.484054565 242.320343018 241.928344727 241.298156738 240.520736694 239.233123779 235.04385376 235.876678467 237.3540802 238.642181396 239.662948608 239.619934082 238.478805542 236.641921997 235.053833008 234.916656494 235.837936401 237.054779053 239.01550293 242.515594482 247.23878479 252.651428223 260.111480713 265.478240967 271.180786133 272.895111084 273.698059082 274.354827881 275.162658691 276.155456543 277.016998291 277.755828857 278.692993164 279.76663208 280.895324707 282.134674072 283.273834229 284.47845459 285.665435791 286.567565918 287.5440979 288.653900146 289.68258667 291.208374023 293.661682129 296.898010254 297.864776611 298.063171387 300.145141602 300.757110596 301.800933838 302.396209717 302.663024902 302.84777832 303.818664551 303.498748779 303.294891357 301.608428955 300.823272705 300.921936035 300.807037354 300.80178833 300.926361084 301.071990967 300.415161133 299.578887939 296.844848633 295.675292969 297.329315186 299.645935059 300.346191406 300.37878418 300.42565918 300.369445801 300.265930176 300.193237305 299.949462891 299.540313721 299.225891113 298.939544678 298.691772461 298.562561035 298.281677246 297.647613525 296.864868164 295.948760986 294.821594238 293.600280762 292.518615723 291.698364258 290.942687988 290.070159912 288.599975586 285.919708252 282.463592529 278.178009033 278.125793457 277.723266602 275.9815979 273.490264893 270.150726318 265.76461792 261.004364014 256.877349854 253.827682495 252.378128052 251.339950562 250.175201416 249.243911743 248.567581177 249.338272095 247.880493164 247.73928833 247.953140259 248.366409302 246.918365479 245.33052063 243.596359253 242.214614868 241.26512146 240.967727661 242.180267334 242.871307373 242.894165039 244.775909424 244.365829468 244.530883789 244.954315186 245.381515503 244.77633667 244.321762085 243.51133728 242.767272949 242.356246948 223.253143311 224.67741394 227.852554321 230.302841187 231.145889282 229.920288086 227.631591797 225.095870972 222.807052612 222.34765625 223.550445557 225.168670654 227.674606323 233.021774292 240.0834198 246.133911133 253.530059814 260.256591797 267.593109131 271.319915771 272.695068359 273.52243042 274.312835693 275.113952637 275.881256104 276.492523193 277.1875 278.160675049 279.280853271 280.606048584 282.029052734 283.403411865 284.541168213 285.572784424 286.602203369 287.573852539 288.547393799 289.571960449 290.153900146 291.146148682 292.158752441 292.396972656 294.372436523 294.813934326 296.197174072 297.406036377 298.006652832 299.012664795 301.297851562 301.786224365 301.741760254 300.61517334 301.345581055 301.684539795 301.421386719 301.41708374 301.439453125 301.298431396 300.455932617 299.674316406 297.108398438 296.161193848 297.776977539 299.902770996 300.700042725 300.877471924 300.807159424 300.587463379 300.368865967 300.18536377 299.90057373 299.556091309 299.251342773 298.979736328 298.776580811 298.645263672 298.382598877 297.883117676 297.200653076 296.409729004 295.58883667 294.737762451 293.84262085 293.19744873 292.760314941 292.054382324 290.547821045 287.719451904 283.989654541 279.166229248 278.684448242 278.412353516 277.214202881 275.545593262 273.108001709 269.537078857 265.291809082 262.733520508 260.644042969 259.38671875 258.455596924 257.283752441 255.981826782 254.144836426 254.609603882 252.313552856 250.62828064 249.234619141 248.732696533 247.837112427 246.660446167 246.166915894 245.989761353 246.086776733 245.693710327 245.488739014 245.962615967 245.844711304 247.055969238 247.347549438 247.076004028 246.919143677 246.485122681 245.274917603 244.205856323 243.839691162 243.385360718 241.468185425 245.681259155 246.508453369 247.692764282 249.092559814 250.257217407 250.445709229 249.620162964 248.114273071 246.631332397 245.739624023 245.454956055 245.350097656 246.213699341 248.334716797 251.917831421 257.286010742 264.094848633 269.351806641 272.030944824 272.838287354 273.730407715 274.443847656 275.143188477 275.959564209 276.707397461 277.37612915 278.207763672 279.27923584 280.449890137 281.6328125 282.749694824 283.868682861 284.918823242 285.904541016 286.972686768 287.911529541 288.800170898 290.275939941 292.690917969 295.075012207 296.835571289 298.94821167 300.535247803 299.925689697 301.499176025 301.875854492 302.707611084 303.16519165 302.967102051 302.13482666 300.299926758 299.970733643 301.006652832 301.03213501 300.919372559 300.995697021 301.181060791 300.99407959 299.355865479 298.357086182 296.369842529 295.949310303 298.332183838 300.148040771 300.554870605 300.388031006 300.364776611 300.42364502 300.391296387 300.264831543 300.035247803 299.77822876 299.544403076 299.209869385 298.859130859 298.655670166 298.465393066 298.007659912 297.249328613 296.346405029 295.387237549 294.311279297 293.195098877 292.240814209 291.133514404 289.790222168 288.274658203 285.876800537 282.325286865 277.552124023 275.43359375 275.539306641 275.080841064 273.000732422 269.979370117 265.972076416 260.683166504 256.428863525 252.656768799 250.734344482 249.645294189 248.569351196 248.998519897 249.832122803 249.613296509 246.996124268 244.795028687 243.405456543 241.934783936 239.947891235 238.068511963 236.636352539 235.956848145 234.93661499 233.840270996 235.12322998 237.475769043 236.816482544 239.438873291 241.237335205 242.392990112 242.685180664 242.439346313 242.307907104 241.93359375 241.299102783 240.521972656 239.233276367 235.10446167 236.000015259 237.5809021 239.060211182 240.125869751 240.22177124 239.046203613 237.234222412 235.598556519 235.350341797 236.172332764 237.294525146 239.577606201 243.139129639 247.779937744 253.288146973 261.687408447 267.653747559 271.724365234 272.905670166 273.721710205 274.446136475 275.260772705 276.211364746 277.011077881 277.707366943 278.659942627 279.820770264 281.048583984 282.377563477 283.575286865 284.764038086 285.935516357 286.871154785 287.830108643 288.934265137 290.15524292 291.906433105 294.758056641 297.152770996 297.49395752 297.965423584 299.688537598 300.715606689 302.357330322 303.298034668 302.868225098 302.77822876 301.998352051 301.956054688 301.183532715 300.457550049 301.328918457 301.135131836 300.982849121 300.962982178 301.117279053 300.964050293 299.073242188 297.923339844 295.96774292 295.764953613 298.102355957 299.878234863 300.452301025 300.459716797 300.492553711 300.414093018 300.298187256 300.203735352 299.922912598 299.49911499 299.170349121 298.852752686 298.610198975 298.527832031 298.312988281 297.743347168 296.99899292 296.118164062 295.018829346 293.785186768 292.634490967 291.777770996 291.046844482 290.238220215 288.989532471 286.687469482 283.370697021 279.176116943 277.036407471 276.75100708 275.988616943 273.970031738 271.099304199 267.059570312 261.835388184 258.283050537 254.972427368 253.067886353 251.597824097 250.343261719 250.377792358 250.277389526 251.360046387 250.137115479 249.11026001 248.239151001 247.749206543 246.123306274 244.466262817 243.022994995 242.250549316 241.56552124 241.150390625 242.141220093 242.399368286 243.320922852 245.417282104 244.688674927 244.581054688 245.061309814 245.484832764 244.871856689 244.354415894 243.512329102 242.768035889 242.356384277 223.395645142 224.959823608 228.253662109 230.940002441 231.932861328 230.825088501 228.499145508 225.9559021 223.669677734 223.207504272 224.087234497 225.572143555 228.315261841 233.609695435 240.327087402 246.380432129 254.524749756 261.401947021 268.156341553 271.34954834 272.625732422 273.45300293 274.252807617 275.047515869 275.764160156 276.334655762 277.044403076 278.095153809 279.3046875 280.719421387 282.217163086 283.558410645 284.676513672 285.712188721 286.782897949 287.843933105 288.93927002 289.964477539 290.340209961 291.134094238 291.703033447 292.502929688 294.056610107 294.779174805 297.14263916 298.59487915 299.267364502 300.330230713 301.081085205 301.750091553 300.522186279 300.803649902 302.122497559 301.794281006 301.377380371 301.371429443 301.510864258 301.237548828 299.30480957 298.221343994 296.442626953 296.170654297 298.419342041 300.042724609 300.690948486 300.842468262 300.787078857 300.581939697 300.368652344 300.143554688 299.818267822 299.496490479 299.225982666 298.937072754 298.714782715 298.613647461 298.412689209 297.977874756 297.313812256 296.510803223 295.742462158 294.993041992 294.070892334 293.260925293 292.710601807 292.04598999 290.804962158 288.436309814 284.88873291 280.438171387 277.813323975 277.520965576 277.107666016 275.770324707 273.640411377 270.333496094 265.695037842 263.801147461 261.528503418 259.884399414 258.869171143 257.639404297 256.688079834 254.749679565 255.282897949 253.181777954 251.065032959 248.860855103 247.693481445 246.722732544 246.065063477 245.81187439 245.757919312 245.586730957 245.054519653 245.102172852 245.134841919 245.348022461 246.810882568 247.046966553 246.85899353 246.785629272 246.363464355 245.133209229 244.160125732 243.840072632 243.386444092 241.468414307 245.718185425 246.60798645 247.895553589 249.37928772 250.700073242 250.949661255 250.169006348 248.641235352 247.077941895 246.12890625 245.836456299 245.844848633 246.938522339 249.035049438 252.561569214 258.127929688 265.279571533 270.267913818 272.227783203 272.816894531 273.613189697 274.457214355 275.189025879 275.937469482 276.618286133 277.292480469 278.212646484 279.398468018 280.668334961 281.948181152 283.103546143 284.155303955 285.093109131 286.078155518 287.230377197 288.265350342 289.330352783 291.612091064 293.546051025 295.076751709 296.409362793 298.055389404 298.706420898 298.795532227 300.2578125 301.057525635 301.535217285 302.026977539 302.187316895 300.854675293 300.01373291 299.54397583 300.611480713 300.732452393 300.729736328 300.990203857 301.199890137 300.687683105 298.528503418 297.026733398 296.267486572 296.478210449 299.396759033 300.588684082 300.674072266 300.450683594 300.444458008 300.525390625 300.509613037 300.348754883 300.071533203 299.809967041 299.548400879 299.178039551 298.843841553 298.652282715 298.481445312 298.13092041 297.497161865 296.633392334 295.706085205 294.708251953 293.55682373 292.456329346 291.336700439 290.096160889 288.722839355 286.761047363 283.734771729 279.434326172 276.336578369 275.055908203 273.457092285 272.596923828 269.400299072 267.029815674 262.566986084 257.533081055 254.584899902 252.879699707 251.629165649 249.810882568 250.602539062 252.01713562 252.010253906 250.223236084 246.449020386 244.080612183 241.885238647 240.23286438 238.466323853 237.449630737 236.939956665 234.6978302 233.388290405 234.18347168 235.5728302 236.659744263 239.675872803 241.408660889 242.338973999 242.558486938 242.280914307 242.077316284 241.851776123 241.257461548 240.38873291 239.201644897 235.161178589 236.174835205 237.945800781 239.414245605 240.647171021 240.816207886 239.660507202 237.8931427 236.288742065 235.911453247 236.437011719 237.613800049 240.15473938 243.892562866 248.43359375 254.228408813 263.239440918 269.168518066 272.120758057 272.931793213 273.724578857 274.520294189 275.317321777 276.210693359 276.972442627 277.668762207 278.67288208 279.953308105 281.300842285 282.736053467 283.964508057 285.073516846 286.16607666 287.134796143 288.137542725 289.368896484 290.931427002 293.676574707 296.12677002 297.362091064 297.342926025 297.740112305 299.093048096 300.073913574 301.863769531 302.829284668 302.892822266 303.107269287 302.723327637 301.295623779 300.442321777 299.900604248 300.951385498 300.972259521 300.9347229 301.034057617 301.215515137 300.785736084 298.360046387 296.654968262 295.951690674 296.258056641 299.103912354 300.345153809 300.617614746 300.516693115 300.516143799 300.469055176 300.369445801 300.216461182 299.889343262 299.472747803 299.109832764 298.772247314 298.568267822 298.493408203 298.289733887 297.819824219 297.172241211 296.32019043 295.256256104 294.075592041 292.869140625 291.853820801 291.081054688 290.340148926 289.253936768 287.345977783 284.461700439 280.856628418 277.940551758 276.415863037 274.753295898 273.5262146 270.40725708 267.421264648 262.490234375 258.301269531 254.906143188 252.244888306 251.663269043 251.085098267 250.652053833 252.060287476 252.766098022 252.400527954 250.539962769 248.490692139 246.855361938 245.281097412 243.638717651 243.010665894 242.62713623 241.877258301 241.419326782 242.614379883 243.149581909 243.367233276 245.666519165 245.034286499 244.712493896 245.11869812 245.602111816 245.075912476 244.500488281 243.555221558 242.818328857 242.359710693 223.516372681 225.283874512 228.724945068 231.55229187 232.725570679 231.762130737 229.418258667 226.826126099 224.598175049 224.048629761 224.691604614 226.086105347 229.052764893 234.224380493 240.690826416 246.726333618 255.323425293 262.250640869 268.570922852 271.423736572 272.564941406 273.384918213 274.18069458 274.938140869 275.586669922 276.138183594 276.909729004 278.115478516 279.485565186 281.01965332 282.491882324 283.751495361 284.884674072 285.990234375 287.166381836 288.362426758 289.422607422 289.893127441 290.360809326 291.020690918 291.385070801 291.995727539 292.942565918 294.343109131 296.774810791 298.409790039 299.489227295 300.946014404 302.363098145 302.46270752 301.185638428 301.33190918 301.986114502 301.592559814 301.250579834 301.429931641 301.60256958 301.028076172 298.500793457 296.930511475 296.245117188 296.581115723 299.288543701 300.430297852 300.775665283 300.799926758 300.731872559 300.588562012 300.409576416 300.131744385 299.750366211 299.425720215 299.160064697 298.866394043 298.66583252 298.587158203 298.403045654 298.022918701 297.411895752 296.563842773 295.728729248 295.027313232 294.176574707 293.258850098 292.562774658 291.905853271 290.893890381 289.059570312 286.039093018 282.128265381 278.868865967 277.215148926 275.913726807 275.283691406 272.92791748 270.444610596 265.886749268 262.882598877 260.311401367 258.1980896 258.385498047 258.167053223 256.106872559 255.337265015 255.584014893 254.769851685 251.94972229 248.749893188 246.614135742 245.686294556 245.444274902 245.661224365 245.712814331 245.208190918 244.397613525 244.715805054 244.804107666 244.833679199 246.551116943 246.754333496 246.690261841 246.656448364 246.118804932 244.843887329 244.019485474 243.660980225 243.187362671 241.312698364 245.782180786 246.695907593 248.091247559 249.679336548 251.122695923 251.49597168 250.760025024 249.247329712 247.584976196 246.544021606 246.220916748 246.373977661 247.592391968 249.721420288 253.433609009 259.203765869 266.278320312 270.999450684 272.441345215 272.833465576 273.506134033 274.411437988 275.134124756 275.81072998 276.454376221 277.18270874 278.225952148 279.533233643 280.908721924 282.258911133 283.395782471 284.351318359 285.14654541 286.111022949 287.347808838 288.55859375 289.987518311 293.126831055 294.571075439 295.391723633 296.293457031 298.608886719 298.527862549 297.909454346 299.291687012 300.169616699 300.118133545 300.88293457 301.003448486 299.965820312 298.577758789 298.344726562 298.946533203 299.281738281 299.813690186 300.518218994 300.987304688 299.796539307 297.811981201 296.338684082 296.082366943 297.702789307 300.014648438 300.714111328 300.595062256 300.446166992 300.503692627 300.594238281 300.588623047 300.392456055 300.075714111 299.809967041 299.519470215 299.118347168 298.802520752 298.636779785 298.469940186 298.173797607 297.642669678 296.827301025 295.902130127 294.978179932 293.903991699 292.744689941 291.564819336 290.376800537 289.060974121 287.353179932 285.052612305 282.471588135 280.12411499 278.08996582 275.207672119 273.539093018 268.738616943 266.111053467 263.728851318 258.547698975 255.224746704 253.661453247 252.66947937 251.113601685 252.045349121 253.706085205 253.858200073 252.059799194 247.91960144 244.099624634 241.391815186 239.930633545 239.128433228 238.761871338 237.165924072 234.512634277 233.072006226 233.956466675 235.512802124 236.693252563 239.890823364 241.572937012 242.305969238 242.487319946 242.206771851 242.023757935 241.83744812 241.254226685 240.37979126 239.199645996 235.239379883 236.274902344 238.133255005 239.811447144 241.156051636 241.426681519 240.335876465 238.526687622 236.961547852 236.435562134 236.737640381 238.026657104 240.693115234 244.607223511 249.209060669 255.336029053 264.391021729 270.099243164 272.42578125 272.956512451 273.68963623 274.512359619 275.268341064 276.115142822 276.884552002 277.638702393 278.721923828 280.117584229 281.594818115 283.12612915 284.328704834 285.337554932 286.382324219 287.413391113 288.508666992 289.898132324 291.765075684 295.249847412 296.690612793 297.102478027 296.736297607 298.439575195 298.981506348 298.748291016 300.387878418 301.887634277 302.009552002 303.791809082 303.006958008 300.907043457 299.453948975 298.983032227 299.263000488 299.375091553 300.001861572 300.610626221 301.074584961 299.776550293 297.584655762 295.988555908 295.732940674 297.358825684 299.708831787 300.579284668 300.638275146 300.500305176 300.496337891 300.492340088 300.405426025 300.200286865 299.857025146 299.445556641 299.047698975 298.710723877 298.553619385 298.463439941 298.245178223 297.856445312 297.280212402 296.419372559 295.351104736 294.242279053 293.091003418 292.019775391 291.188446045 290.454956055 289.418395996 287.795318604 285.577606201 283.177429199 280.912872314 278.753509521 275.933746338 274.088439941 270.002471924 266.195861816 262.941192627 258.181945801 254.36164856 252.554336548 252.271591187 251.762390137 251.588806152 253.170669556 253.534347534 253.388244629 251.811950684 248.613342285 245.878997803 244.532485962 243.222686768 243.299072266 242.838272095 242.148483276 241.800964355 243.099151611 243.77520752 243.633728027 245.878067017 245.237426758 244.81149292 245.14503479 245.627532959 245.102706909 244.512237549 243.556808472 242.820648193 242.359649658 223.621612549 225.456085205 229.145278931 232.182296753 233.484725952 232.71711731 230.408416748 227.735458374 225.631973267 225.033950806 225.417602539 226.714324951 229.785644531 234.965164185 241.188583374 247.317443848 256.148132324 263.080932617 268.916992188 271.490447998 272.528533936 273.331207275 274.083251953 274.768676758 275.354431152 275.932098389 276.815673828 278.193695068 279.736297607 281.355255127 282.752166748 283.97857666 285.187194824 286.403259277 287.659545898 288.856781006 289.503234863 290.04586792 290.076080322 290.73651123 290.974822998 291.945953369 292.467559814 293.370147705 296.217895508 298.231781006 299.302947998 301.615905762 302.535003662 302.204071045 300.72467041 300.450836182 300.228393555 299.97744751 300.387756348 301.090270996 301.534545898 300.032104492 297.685089111 296.138366699 295.880523682 297.553405762 299.715057373 300.553894043 300.745117188 300.742736816 300.686706543 300.57800293 300.399902344 300.113006592 299.734313965 299.398712158 299.105560303 298.822753906 298.659881592 298.585205078 298.386108398 298.029174805 297.477844238 296.613098145 295.670684814 294.942779541 294.207366943 293.31427002 292.489379883 291.769439697 290.860290527 289.417449951 287.131866455 284.434112549 282.002716064 279.789489746 277.108978271 275.698730469 272.53326416 269.133972168 266.060913086 262.474731445 259.699554443 258.186553955 258.755279541 258.484771729 256.455871582 256.216430664 256.655334473 255.836456299 253.10798645 249.028213501 245.732910156 244.925888062 245.104690552 245.851501465 245.538497925 244.843063354 243.859008789 244.292221069 244.505386353 244.477539062 246.35836792 246.635772705 246.63671875 246.605636597 246.052993774 244.806015015 244.005889893 243.650085449 243.174728394 241.305007935 245.782455444 246.797653198 248.24230957 249.975143433 251.552185059 252.065475464 251.381347656 249.800033569 248.116699219 247.016448975 246.604507446 246.959411621 248.252365112 250.403610229 254.445343018 260.478271484 267.157043457 271.597137451 272.643096924 272.86529541 273.426513672 274.33013916 275.027252197 275.652404785 276.30355835 277.111968994 278.256958008 279.662384033 281.134521484 282.543243408 283.658813477 284.587921143 285.437164307 286.449554443 287.726409912 288.889221191 290.404541016 293.417297363 295.810424805 295.988464355 296.328399658 297.948394775 298.266357422 297.622833252 297.985595703 298.630310059 299.750061035 300.498535156 300.672058105 299.534881592 298.07925415 297.875183105 298.920806885 299.410552979 299.858612061 300.237854004 300.773040771 299.534423828 297.318206787 295.874420166 296.057128906 298.730010986 300.399993896 300.746368408 300.543304443 300.484619141 300.56439209 300.634033203 300.631866455 300.42199707 300.069122314 299.785552979 299.481628418 299.069244385 298.739349365 298.568817139 298.418212891 298.163024902 297.715118408 296.979858398 296.068969727 295.149017334 294.134307861 293.009246826 291.806488037 290.6378479 289.368408203 287.808776855 286.023834229 284.097076416 282.037475586 279.846374512 277.499023438 274.455810547 270.329528809 266.346710205 264.086486816 259.712585449 256.396209717 255.038009644 254.362243652 253.608047485 253.852523804 255.052154541 255.087600708 253.314666748 249.57093811 244.22694397 240.603317261 239.493148804 239.645355225 239.018859863 237.204498291 234.330307007 232.890365601 233.789733887 237.499679565 237.911315918 241.161117554 241.716751099 242.251739502 242.395996094 242.129852295 241.931747437 241.708511353 241.190139771 240.375274658 239.199356079 235.328536987 236.501708984 238.388046265 240.181762695 241.683441162 242.077789307 241.035995483 239.297286987 237.628860474 236.985610962 237.113113403 238.545318604 241.272872925 245.323974609 250.089157104 256.641204834 265.47857666 270.914703369 272.665710449 272.97845459 273.627929688 274.431030273 275.150817871 275.98336792 276.797027588 277.636108398 278.804016113 280.313323975 281.910247803 283.48147583 284.647094727 285.641082764 286.742095947 287.866973877 289.048950195 290.406311035 292.260986328 295.187469482 296.699737549 296.663360596 296.698699951 297.918548584 298.234863281 298.404388428 299.005859375 299.949432373 301.884979248 303.316101074 302.6980896 300.322570801 298.632202148 298.446990967 298.763671875 299.125061035 300.056243896 300.529724121 300.981750488 299.580841064 297.207672119 295.496734619 295.695037842 298.383880615 300.171142578 300.712554932 300.635772705 300.506439209 300.519683838 300.536407471 300.427368164 300.164794922 299.806182861 299.406311035 298.998321533 298.667785645 298.51864624 298.39352417 298.177246094 297.854064941 297.323455811 296.463348389 295.379638672 294.285736084 293.18359375 292.15435791 291.310180664 290.555511475 289.541748047 288.107513428 286.395843506 284.536865234 282.463409424 280.06338501 277.508422852 274.55557251 270.859893799 265.981933594 263.301147461 259.961761475 257.371276855 255.661361694 254.524108887 253.573028564 253.140670776 253.885299683 254.007736206 254.608535767 252.910720825 248.777175903 245.444656372 243.45489502 243.172363281 243.523468018 243.233184814 242.648757935 242.392822266 243.643890381 244.929855347 244.302719116 247.04776001 245.473205566 244.909210205 245.164367676 245.645599365 245.137374878 244.578155518 243.572998047 242.819290161 242.359390259 223.810653687 225.831695557 229.634414673 232.780929565 234.289794922 233.699493408 231.44960022 228.808364868 226.698501587 226.064971924 226.27822876 227.420623779 230.640563965 235.780639648 241.841567993 248.151321411 257.05670166 263.906402588 269.197387695 271.533935547 272.506988525 273.277435303 273.955413818 274.558105469 275.117950439 275.769226074 276.778778076 278.297943115 279.972259521 281.636688232 283.003845215 284.273284912 285.596618652 286.864746094 288.106689453 289.134094238 289.194671631 288.982574463 289.632324219 290.558685303 290.734313965 291.167785645 291.946868896 293.215637207 295.275848389 297.102722168 299.81048584 301.438781738 302.014587402 300.830230713 299.624389648 299.531860352 299.730987549 299.622924805 300.437744141 300.905700684 301.391876221 299.824310303 297.221710205 295.577270508 295.833435059 298.397216797 300.015869141 300.592681885 300.697357178 300.703369141 300.672454834 300.575836182 300.359527588 300.04864502 299.69317627 299.362701416 299.0574646 298.791534424 298.631561279 298.554107666 298.376556396 298.035552979 297.500335693 296.631195068 295.610900879 294.803527832 294.127868652 293.32131958 292.461547852 291.702514648 290.857574463 289.652496338 287.902679443 285.808807373 283.646575928 281.249298096 278.697296143 276.119689941 273.052276611 268.826507568 266.63104248 265.108795166 263.686401367 262.173736572 260.962677002 259.420043945 257.328369141 256.98324585 257.527618408 256.952789307 254.179855347 249.225097656 245.492431641 244.086044312 244.858856201 245.794265747 245.596084595 244.648422241 243.574188232 243.856018066 244.886489868 244.773422241 246.764160156 246.577301025 246.627120972 246.562164307 245.991363525 244.757324219 243.929382324 243.5340271 243.168319702 241.304580688 245.831451416 246.869827271 248.438919067 250.267272949 252.008651733 252.65663147 252.074188232 250.476715088 248.783462524 247.505279541 247.020401001 247.530731201 248.878036499 250.894958496 255.468780518 261.843963623 268.711975098 272.137542725 272.805206299 272.890350342 273.385070801 274.23550415 274.906860352 275.515960693 276.227050781 277.148040771 278.360687256 279.840423584 281.38772583 282.811920166 283.924377441 284.944702148 286.027435303 287.16784668 288.339752197 289.223022461 290.40322876 293.060424805 295.145141602 295.765136719 296.112304688 297.4581604 297.946228027 297.131256104 297.045257568 297.357910156 298.699493408 299.636871338 299.724639893 299.074523926 298.792999268 297.811798096 298.882232666 299.660797119 300.349365234 300.637664795 300.701141357 299.792510986 297.361846924 296.014953613 296.662109375 299.646789551 300.703521729 300.77545166 300.556396484 300.554626465 300.614501953 300.649963379 300.651519775 300.448303223 300.069152832 299.742797852 299.432281494 299.043487549 298.69909668 298.488677979 298.351654053 298.133239746 297.754943848 297.135284424 296.279724121 295.312805176 294.280059814 293.204101562 292.018157959 290.862915039 289.653137207 288.207122803 286.670227051 285.082733154 283.249969482 281.083618164 278.707672119 275.698547363 272.156188965 268.001342773 264.064361572 259.721588135 257.116027832 255.965270996 255.630599976 255.351882935 255.621032715 256.184204102 255.947631836 254.120071411 250.281616211 244.184753418 240.066101074 239.379638672 239.448394775 238.212509155 236.9637146 234.216491699 232.759872437 233.955780029 237.870254517 238.318267822 241.596298218 241.797912598 242.179534912 242.262619019 242.005401611 241.843933105 241.687637329 241.138153076 240.269683838 239.198898315 235.327423096 236.608032227 238.688415527 240.590103149 242.213729858 242.767791748 241.783843994 240.061340332 238.51423645 237.599777222 237.553619385 239.039459229 241.962005615 246.028015137 251.091751099 258.107116699 267.145965576 271.641326904 272.855194092 273.004943848 273.565185547 274.308044434 275.007141113 275.862884521 276.767486572 277.709869385 278.962646484 280.581329346 282.243011475 283.775787354 284.939117432 286.022644043 287.278747559 288.501220703 289.622070312 290.789215088 292.262817383 294.217834473 295.13949585 296.239807129 296.482177734 297.378570557 297.89654541 297.867553711 298.247711182 298.14239502 300.252655029 301.731170654 300.691345215 299.025756836 298.157440186 297.721466064 298.424804688 299.603973389 300.677276611 301.087280273 301.019592285 299.864715576 297.153961182 295.502960205 296.324890137 299.43347168 300.586151123 300.818817139 300.648101807 300.523254395 300.554473877 300.595397949 300.450653076 300.135314941 299.762634277 299.363525391 298.962463379 298.649108887 298.48147583 298.317840576 298.122406006 297.839874268 297.32623291 296.50088501 295.439147949 294.319915771 293.217712402 292.248596191 291.40057373 290.592346191 289.589508057 288.278045654 286.819915771 285.243682861 283.341583252 280.964019775 278.330596924 275.26675415 271.674346924 267.085174561 263.284118652 260.226623535 257.905487061 256.263946533 255.102081299 254.630477905 254.303314209 254.653045654 254.753677368 255.432388306 253.831756592 249.029327393 245.238494873 243.21395874 243.155029297 243.734710693 243.60484314 243.039855957 242.923065186 244.397766113 245.000106812 244.689361572 247.649993896 245.682647705 244.993530273 245.174163818 245.64151001 245.118392944 244.581115723 243.582122803 242.792816162 242.358978271 223.922042847 226.0443573 230.003921509 233.384902954 235.055358887 234.738067627 232.587860107 229.952362061 227.876068115 227.194030762 227.119384766 228.219665527 231.599441528 236.704345703 242.62260437 249.254394531 258.339813232 264.742034912 269.428222656 271.55871582 272.497436523 273.21081543 273.797851562 274.329925537 274.92276001 275.70526123 276.836700439 278.457061768 280.202270508 281.874359131 283.272857666 284.6640625 286.127655029 287.327423096 288.110229492 289.211914062 288.788513184 288.397766113 288.794189453 289.970306396 290.307037354 290.776763916 291.744934082 293.008758545 294.505218506 295.683044434 298.347503662 299.659606934 299.247619629 299.320678711 299.156585693 298.389556885 298.77935791 299.741088867 300.828826904 301.304718018 301.3515625 300.138305664 297.176025391 295.456420898 296.361419678 299.246185303 300.335998535 300.645965576 300.670043945 300.670898438 300.665710449 300.589111328 300.344024658 300.003601074 299.65737915 299.317687988 299.015411377 298.768096924 298.581207275 298.495788574 298.374633789 298.047424316 297.478942871 296.606018066 295.552215576 294.651947021 293.969085693 293.236816406 292.401031494 291.630065918 290.825408936 289.745819092 288.277404785 286.542633057 284.616943359 282.269165039 279.610321045 276.76361084 273.570098877 269.65814209 266.666900635 265.383911133 264.087097168 262.621673584 261.275421143 259.666229248 257.976013184 257.786865234 257.871337891 257.315673828 254.966720581 249.398071289 245.424865723 244.10005188 244.851211548 245.834716797 245.713989258 244.425094604 243.28326416 243.736312866 244.677185059 244.665298462 246.71762085 246.526657104 246.651290894 246.516723633 245.921157837 244.701141357 243.909072876 243.418914795 242.974334717 241.303909302 245.857498169 246.986434937 248.598709106 250.581237793 252.462005615 253.246368408 252.771575928 251.324752808 249.472763062 248.069198608 247.483230591 248.030914307 249.546691895 251.582397461 256.473846436 263.722625732 269.789550781 272.633605957 272.922821045 272.925598145 273.397979736 274.157775879 274.802947998 275.436645508 276.272277832 277.369689941 278.650787354 280.163085938 281.705444336 283.09173584 284.194213867 285.422668457 286.748962402 287.919433594 289.11050415 289.625579834 290.084777832 291.692657471 293.957641602 294.767883301 295.331390381 296.568450928 297.333129883 296.943725586 296.274505615 296.720397949 297.975341797 298.831726074 299.467926025 298.942474365 298.966217041 298.882507324 299.663299561 300.090606689 300.33895874 300.453125 300.354644775 299.489349365 297.448883057 297.41217041 299.359466553 300.44708252 300.878570557 300.727142334 300.560272217 300.604309082 300.658630371 300.666473389 300.643920898 300.460784912 300.084960938 299.693664551 299.356964111 299.034667969 298.705291748 298.424560547 298.270019531 298.072784424 297.725006104 297.212127686 296.453369141 295.46282959 294.385131836 293.354400635 292.204528809 291.063659668 289.913879395 288.571746826 287.092895508 285.541320801 283.761383057 281.670227051 279.501403809 276.837341309 273.290618896 269.056732178 264.494628906 260.493896484 258.102752686 257.216430664 256.989715576 257.225982666 257.469696045 257.259277344 256.596282959 254.542221069 250.438095093 244.003875732 240.026000977 238.868118286 238.720703125 237.736953735 236.070251465 233.6953125 232.860473633 234.251037598 238.170639038 238.622756958 241.633041382 241.819015503 242.094421387 242.100662231 241.941101074 241.787826538 241.616287231 241.113800049 240.193267822 239.192550659 235.392211914 236.726486206 238.909866333 240.992004395 242.762451172 243.487228394 242.59564209 240.945663452 239.363006592 238.281234741 238.077377319 239.523391724 242.674514771 246.712051392 252.127563477 260.549743652 268.362365723 272.306274414 273.000244141 273.047180176 273.540435791 274.201812744 274.913543701 275.836364746 276.856262207 277.923492432 279.304412842 280.987792969 282.589477539 284.032409668 285.214538574 286.474761963 287.811401367 288.768218994 290.156005859 291.102020264 291.708679199 292.116821289 293.726959229 295.009368896 295.958221436 296.941162109 297.910522461 297.896179199 297.363311768 297.003173828 298.085845947 299.029449463 299.321533203 298.078338623 297.954711914 298.821594238 299.910339355 300.491607666 300.804107666 300.832946777 300.474609375 299.260803223 296.943572998 296.417144775 298.817596436 300.2605896 300.819549561 300.791717529 300.648132324 300.553497314 300.592315674 300.638244629 300.461029053 300.123046875 299.748748779 299.326293945 298.922271729 298.627044678 298.446502686 298.27243042 298.11505127 297.833526611 297.289367676 296.508636475 295.514648438 294.393981934 293.297119141 292.373504639 291.498809814 290.611450195 289.584259033 288.328765869 286.918792725 285.371429443 283.539123535 281.297088623 278.833343506 275.908660889 272.041717529 267.487640381 263.200531006 260.048583984 257.809417725 256.265563965 255.508575439 255.425735474 255.205825806 255.454315186 255.522735596 255.863555908 254.26663208 249.495605469 245.650161743 243.585403442 243.568054199 244.26965332 243.826049805 243.254058838 243.655822754 245.056030273 245.256057739 245.160415649 247.801193237 245.809265137 245.049575806 245.176940918 245.625961304 245.108551025 244.613113403 243.582061768 242.771362305 242.352813721 224.005706787 226.334381104 230.44833374 233.907699585 235.846374512 235.777862549 233.815704346 231.130569458 229.120223999 228.371307373 228.032043457 229.077560425 232.599822998 237.644012451 243.532608032 251.898666382 259.498352051 265.630889893 269.625762939 271.574432373 272.509246826 273.144958496 273.641906738 274.138977051 274.842193604 275.811798096 277.085296631 278.748840332 280.480560303 282.12878418 283.603607178 285.20501709 286.471588135 286.388671875 287.750183105 289.287963867 288.720428467 287.769866943 288.210571289 289.222351074 289.783538818 290.644836426 292.071624756 293.275146484 293.369628906 294.149017334 295.784942627 296.873352051 297.99697876 298.786956787 298.917907715 298.940429688 299.661560059 300.15057373 300.632080078 300.902679443 300.778564453 299.512329102 296.891082764 296.179138184 298.534606934 299.987854004 300.569671631 300.626281738 300.614654541 300.607421875 300.619384766 300.559417725 300.321105957 299.994873047 299.661834717 299.288879395 298.983276367 298.752960205 298.538146973 298.442230225 298.372589111 298.054534912 297.431640625 296.556518555 295.512084961 294.566131592 293.841583252 293.134033203 292.320617676 291.527618408 290.70010376 289.640869141 288.255706787 286.650848389 284.85244751 282.632476807 280.136138916 277.338012695 273.604431152 269.651092529 266.499725342 264.992797852 263.520507812 262.161407471 260.679962158 259.270812988 258.573120117 258.595855713 258.129455566 257.381652832 254.969848633 249.695419312 245.891525269 244.444335938 245.097290039 245.929656982 245.680847168 244.251647949 243.202392578 243.672515869 244.39100647 244.570068359 246.463684082 246.475616455 246.710388184 246.560455322 245.876831055 244.657592773 243.820037842 243.359924316 242.835739136 241.294754028 245.88633728 247.084945679 248.815475464 250.884872437 252.933013916 253.852218628 253.557067871 252.135528564 250.198181152 248.790100098 248.005004883 248.590286255 250.108505249 252.302902222 257.630432129 265.608306885 271.078308105 272.981811523 272.988861084 272.997589111 273.475830078 274.163726807 274.792449951 275.452758789 276.438110352 277.70904541 279.075164795 280.542907715 281.99118042 283.266571045 284.330963135 285.723297119 287.316894531 288.667022705 289.560180664 289.93548584 290.340362549 290.582641602 292.462127686 293.467163086 294.527404785 295.938995361 295.924987793 296.930145264 296.61920166 297.412261963 298.324157715 299.775817871 299.212554932 299.231445312 299.658966064 299.746551514 299.872375488 300.164642334 300.420349121 300.488494873 300.239868164 298.76739502 299.090057373 299.278198242 300.380249023 300.832214355 300.788635254 300.578826904 300.529022217 300.634307861 300.709716797 300.700958252 300.624603271 300.427459717 300.085998535 299.677978516 299.288360596 298.991149902 298.692626953 298.37701416 298.193054199 298.011016846 297.666534424 297.153778076 296.428588867 295.482147217 294.45010376 293.476470947 292.370513916 291.253051758 290.124481201 288.81427002 287.356445312 285.785247803 283.98614502 281.921203613 279.899291992 277.557159424 274.364685059 270.155029297 266.087585449 263.051818848 260.899536133 259.869293213 259.549713135 259.803100586 259.433563232 258.534484863 257.179199219 254.686798096 250.383865356 243.565032959 240.07749939 238.537139893 238.03968811 237.621795654 235.80871582 233.289520264 232.887496948 235.602020264 238.812957764 238.954544067 241.599334717 241.812469482 241.999023438 242.009887695 241.902908325 241.706359863 241.55456543 241.04776001 240.171783447 239.145462036 235.426345825 236.959457397 239.212036133 241.406692505 243.337203979 244.222564697 243.489685059 241.8540802 240.265090942 239.053634644 238.727767944 240.116577148 243.284912109 247.382095337 253.153182983 262.963684082 269.827850342 272.776519775 273.100860596 273.128112793 273.592956543 274.214447021 274.980407715 275.957763672 277.048400879 278.242828369 279.743774414 281.384674072 282.866790771 284.190338135 285.324432373 286.722473145 288.285705566 289.463562012 290.64050293 291.467712402 292.090667725 291.623046875 292.641723633 293.765899658 295.444488525 296.702392578 297.143432617 297.472290039 296.710754395 296.494995117 296.744232178 298.103851318 298.320037842 298.230804443 299.24786377 299.804351807 300.331726074 300.736572266 300.824188232 300.59362793 300.063049316 298.330627441 298.295654297 298.152984619 299.926269531 300.646972656 300.689178467 300.610900879 300.612762451 300.610717773 300.660095215 300.651550293 300.415374756 300.084075928 299.732452393 299.305236816 298.876647949 298.57043457 298.381713867 298.21786499 298.076507568 297.792266846 297.232116699 296.447937012 295.470184326 294.393768311 293.358947754 292.471557617 291.604980469 290.718170166 289.664520264 288.389160156 286.955413818 285.349731445 283.500396729 281.357299805 279.073822021 276.297698975 272.538238525 267.599609375 263.039398193 259.987670898 258.415924072 257.315002441 256.801849365 256.474121094 256.081481934 256.168457031 256.161834717 256.090209961 254.488601685 249.920425415 246.198516846 243.990768433 244.043029785 244.860321045 244.5572052 243.730560303 244.384643555 246.108505249 246.057342529 245.671737671 247.644454956 245.8306427 245.101516724 245.191711426 245.605880737 245.125259399 244.611618042 243.544189453 242.759475708 242.306610107 224.041793823 226.613525391 230.920959473 234.523574829 236.602905273 236.832397461 235.058639526 232.395462036 230.416488647 229.558547974 228.99168396 229.970535278 233.554046631 238.593826294 244.533401489 254.066116333 261.027954102 266.398620605 269.777557373 271.590270996 272.544464111 273.135559082 273.589447021 274.098144531 274.930664062 276.058044434 277.463531494 279.109558105 280.773803711 282.385955811 283.895050049 285.664978027 287.118255615 287.451293945 288.247344971 289.631652832 289.624267578 287.636962891 287.884857178 288.562133789 289.627868652 290.600128174 291.754547119 292.791259766 293.08190918 293.731689453 294.762176514 296.466186523 297.578582764 298.589477539 299.472259521 299.529968262 299.723266602 300.256378174 300.664337158 300.713348389 300.343261719 298.470581055 298.20904541 297.772399902 299.642242432 300.480682373 300.628967285 300.586456299 300.611999512 300.625793457 300.629882812 300.52746582 300.252288818 299.951538086 299.656646729 299.273712158 298.9402771 298.711181641 298.508483887 298.398132324 298.320526123 298.029510498 297.442443848 296.583770752 295.509643555 294.525939941 293.767059326 293.071380615 292.294158936 291.505828857 290.598480225 289.457519531 288.070770264 286.514587402 284.747741699 282.611175537 280.328277588 277.742492676 274.074432373 269.454223633 266.058288574 264.441375732 262.898773193 261.813568115 260.382293701 259.445159912 259.384002686 259.175354004 258.383148193 257.316436768 254.884414673 249.916305542 246.570617676 245.024459839 245.416275024 246.277938843 245.931121826 244.076141357 243.083450317 243.879867554 244.360015869 244.611557007 246.234909058 246.464447021 246.819900513 246.613632202 245.819641113 244.604171753 243.786956787 243.166885376 242.80229187 241.226989746 245.917266846 247.189071655 249.027252197 251.228546143 253.405212402 254.561935425 254.364349365 252.938903809 251.004379272 249.522903442 248.792068481 249.102279663 250.615615845 252.969177246 258.776611328 267.502380371 271.927520752 273.224853516 273.039306641 273.093048096 273.591491699 274.242645264 274.844970703 275.512939453 276.645355225 278.052337646 279.481719971 280.87411499 282.1925354 283.327911377 284.339172363 285.699798584 287.390014648 288.592681885 289.523498535 290.057617188 290.658752441 290.440368652 291.371124268 292.586608887 293.408874512 294.262023926 295.448760986 296.644592285 297.334442139 298.17855835 298.080230713 299.204681396 298.906707764 299.490325928 299.879486084 299.948944092 299.999206543 300.253631592 300.54876709 300.647247314 300.071105957 299.773529053 300.21572876 299.852874756 300.800262451 300.860565186 300.585205078 300.374450684 300.424163818 300.609313965 300.723449707 300.721893311 300.609741211 300.375946045 300.058654785 299.671417236 299.239471436 298.927612305 298.666595459 298.37121582 298.158630371 297.980651855 297.667724609 297.150238037 296.414123535 295.49987793 294.50189209 293.546173096 292.474456787 291.414489746 290.321716309 289.012207031 287.556915283 285.985290527 284.199066162 282.156188965 280.144470215 277.888793945 274.959838867 271.208404541 267.978820801 265.739990234 264.351898193 263.632629395 263.284301758 262.835906982 261.585906982 260.072998047 257.844085693 254.692733765 250.059402466 243.044570923 239.713684082 238.017822266 237.070114136 237.024627686 234.92741394 232.925170898 232.967132568 236.189025879 239.296844482 239.341705322 241.599975586 241.816711426 241.912078857 241.913314819 241.949005127 241.662124634 241.405288696 241.01991272 240.07019043 239.108535767 235.471710205 237.018203735 239.45954895 241.847442627 243.917816162 244.984146118 244.376571655 242.80140686 241.214538574 239.852737427 239.567764282 240.683944702 243.823654175 248.00062561 254.245681763 264.925079346 270.836273193 273.112823486 273.186950684 273.242858887 273.694000244 274.319519043 275.145446777 276.124511719 277.266357422 278.582427979 280.152313232 281.699768066 283.061553955 284.252105713 285.324920654 286.748413086 288.441864014 289.630218506 290.874938965 291.796020508 292.5262146 291.803924561 292.19644165 293.493103027 294.224121094 294.8309021 295.595001221 296.308380127 296.248168945 296.078338623 296.183258057 297.464630127 298.201080322 299.072235107 299.748687744 300.137878418 300.487640381 300.794464111 300.847686768 300.636444092 299.867950439 299.4090271 299.607452393 299.21484375 300.451904297 300.628936768 300.424163818 300.386749268 300.506256104 300.597076416 300.682434082 300.642028809 300.36706543 300.041717529 299.700073242 299.284179688 298.848602295 298.520599365 298.322692871 298.163299561 298.002105713 297.723846436 297.21005249 296.434967041 295.436767578 294.387329102 293.39453125 292.499298096 291.645385742 290.831451416 289.791168213 288.477142334 287.018371582 285.378936768 283.507781982 281.430603027 279.221405029 276.459960938 272.806732178 268.087554932 263.622375488 260.85748291 259.639862061 259.003814697 258.472686768 257.826202393 257.159606934 257.137451172 257.018981934 256.188354492 254.53465271 250.360046387 246.654006958 244.312026978 244.282516479 245.230712891 244.914474487 244.212249756 245.160552979 246.761184692 246.720794678 246.190155029 247.384384155 245.757675171 245.137451172 245.204742432 245.562637329 245.084579468 244.616470337 243.533996582 242.703933716 242.269302368 224.227172852 226.888519287 231.237792969 235.071029663 237.350280762 237.882919312 236.301681519 233.720413208 231.766876221 230.730529785 229.985946655 230.850479126 234.512817383 239.482681274 245.506347656 255.64100647 262.311218262 267.078735352 269.909332275 271.607788086 272.583312988 273.157928467 273.613616943 274.156463623 275.096984863 276.342956543 277.832611084 279.445251465 281.040618896 282.604309082 284.105133057 285.930938721 287.552368164 288.36819458 289.121826172 290.113830566 290.397338867 288.583007812 288.105377197 288.898742676 289.428710938 290.112060547 291.31149292 292.458221436 293.379486084 294.063201904 294.985107422 296.674041748 297.703887939 298.845123291 299.41708374 299.518920898 299.880004883 300.438293457 300.767456055 300.71697998 299.989532471 299.490509033 299.618011475 298.941925049 300.341705322 300.714691162 300.67980957 300.608551025 300.605621338 300.630157471 300.656158447 300.532562256 300.227966309 299.925537109 299.646850586 299.270141602 298.912231445 298.665435791 298.476959229 298.357513428 298.239318848 297.970794678 297.470092773 296.642578125 295.527893066 294.491668701 293.683044434 292.975799561 292.243804932 291.516235352 290.570831299 289.342681885 287.953765869 286.436218262 284.680511475 282.601928711 280.444519043 277.952606201 274.489379883 269.54095459 265.723724365 264.247650146 262.920593262 261.814178467 260.722381592 260.329376221 260.309936523 260.027709961 259.208496094 257.487762451 254.922393799 250.29914856 247.295822144 245.691085815 245.629501343 246.533203125 245.75793457 243.88117981 243.08581543 243.96194458 244.393783569 244.770187378 246.103683472 246.604705811 246.95791626 246.652496338 245.715545654 244.559890747 243.723831177 243.117523193 242.665313721 241.171966553 245.969589233 247.285583496 249.215164185 251.563858032 253.907302856 255.266571045 255.172729492 253.845413208 252.020843506 250.40965271 249.527984619 249.593688965 250.994552612 253.50390625 260.32711792 268.053588867 272.515655518 273.375946045 273.083953857 273.207885742 273.74520874 274.369445801 274.917999268 275.596466064 276.837585449 278.34387207 279.8097229 281.123413086 282.299713135 283.320159912 284.264801025 285.451934814 286.945861816 288.2684021 289.291931152 290.12097168 291.028137207 291.929656982 292.249145508 292.367370605 292.425018311 293.354553223 294.172821045 296.054138184 297.325286865 297.379638672 297.57901001 298.413085938 299.099578857 299.663635254 299.876861572 299.951416016 300.03918457 300.298431396 300.604766846 300.75668335 300.570251465 300.535552979 300.5027771 299.988586426 300.803100586 300.700164795 300.336486816 300.106689453 300.218322754 300.506164551 300.69909668 300.725921631 300.603149414 300.335784912 300.014129639 299.651092529 299.200286865 298.862854004 298.640777588 298.40057373 298.157318115 297.949920654 297.678100586 297.191314697 296.444885254 295.544616699 294.554443359 293.58102417 292.526519775 291.540863037 290.515319824 289.23727417 287.786010742 286.201507568 284.421905518 282.399291992 280.337249756 278.064117432 275.299835205 272.081726074 269.529907227 267.932281494 266.979827881 266.441223145 266.195220947 265.457122803 263.425079346 261.486419678 258.738311768 254.690795898 249.624267578 242.581008911 239.376739502 237.553237915 236.700531006 235.46321106 234.096725464 232.723617554 233.117721558 237.570709229 239.623977661 240.598251343 241.698486328 241.849487305 241.834579468 241.7759552 241.927246094 241.603012085 241.345672607 241.027099609 239.976791382 239.093536377 235.507720947 237.239562988 239.732147217 242.25769043 244.52104187 245.734207153 245.348937988 243.825546265 242.231643677 240.94367981 240.31678772 241.263839722 244.254943848 248.603225708 255.984268188 265.561126709 271.589996338 273.342285156 273.270904541 273.387390137 273.834197998 274.483734131 275.333679199 276.28604126 277.473907471 278.893676758 280.47644043 281.913208008 283.152160645 284.25769043 285.302703857 286.642089844 288.252471924 289.649291992 290.922698975 292.103393555 293.0027771 293.475982666 293.405456543 293.083862305 292.920471191 293.267852783 293.818481445 294.871856689 295.122589111 295.394042969 296.142059326 297.278137207 298.690673828 299.493469238 299.93170166 300.180908203 300.443603516 300.758911133 300.909240723 300.839263916 300.547943115 300.41204834 300.24697876 299.658782959 300.475067139 300.363800049 300.161865234 300.185241699 300.34942627 300.514526367 300.650939941 300.615325928 300.344787598 300.021392822 299.667327881 299.260406494 298.831787109 298.48449707 298.280944824 298.135742188 297.942993164 297.646789551 297.192352295 296.454437256 295.445465088 294.420471191 293.450744629 292.521881104 291.65927124 290.924224854 289.921936035 288.582946777 287.109008789 285.441467285 283.54574585 281.516815186 279.330963135 276.52520752 272.908874512 268.787841797 264.979248047 262.508239746 261.477416992 261.166290283 260.682067871 259.63861084 258.392425537 258.197845459 257.745727539 256.289093018 254.389846802 250.74369812 247.207702637 244.583740234 244.30116272 245.07220459 244.970947266 244.641418457 245.651016235 247.75138855 247.305267334 246.961669922 247.171661377 245.652267456 245.162216187 245.209854126 245.404037476 245.006347656 244.588317871 243.613647461 242.651123047 242.248855591 224.303070068 227.246368408 231.669692993 235.629638672 238.13343811 238.889419556 237.5496521 235.113876343 233.183013916 231.992477417 231.028091431 231.72442627 235.407272339 240.300094604 247.062164307 256.404510498 263.476715088 267.687896729 270.031311035 271.620910645 272.60534668 273.196533203 273.691894531 274.270355225 275.279998779 276.61126709 278.144195557 279.718261719 281.264190674 282.77557373 284.253265381 285.989624023 287.583343506 288.625091553 289.618560791 290.608825684 291.196685791 291.220306396 290.615264893 289.873199463 289.762176514 290.163574219 290.960327148 292.34072876 293.496063232 294.620361328 295.72543335 296.872558594 298.361206055 299.036987305 299.347290039 299.601318359 300.053100586 300.550140381 300.818023682 300.808532715 300.582641602 300.569122314 300.462921143 299.859985352 300.617980957 300.729553223 300.704528809 300.616119385 300.525756836 300.54776001 300.620513916 300.524169922 300.237518311 299.926147461 299.630218506 299.272674561 298.916046143 298.637512207 298.442077637 298.327056885 298.168762207 297.895446777 297.46697998 296.675537109 295.54574585 294.484436035 293.632904053 292.885925293 292.166778564 291.500549316 290.557312012 289.285095215 287.901885986 286.407409668 284.656707764 282.631469727 280.528686523 278.030853271 274.569000244 269.902709961 265.921539307 264.381378174 263.354400635 262.258331299 261.388153076 261.121856689 260.901916504 260.750427246 259.985443115 257.721343994 254.935531616 250.610671997 248.150512695 246.354293823 246.095535278 246.279647827 245.579498291 243.852432251 243.263183594 243.854919434 244.509033203 245.43838501 246.137374878 246.736206055 247.026657104 246.668273926 245.594467163 244.487548828 243.69342041 243.127944946 242.541015625 241.140533447 245.984573364 247.398666382 249.426147461 251.916351318 254.461227417 256.044891357 256.058563232 254.761993408 252.9659729 251.463668823 250.425888062 250.095245361 251.418624878 254.146194458 261.656585693 269.281188965 272.938537598 273.450012207 273.131561279 273.345550537 273.922119141 274.520294189 275.016052246 275.706054688 277.008850098 278.556030273 280.031402588 281.279205322 282.335083008 283.286376953 284.183929443 285.211334229 286.455352783 287.784332275 288.994750977 289.979278564 291.100463867 292.276062012 293.08807373 293.600006104 293.362884521 292.829528809 293.548400879 295.122070312 296.642333984 296.539642334 297.393005371 298.619232178 299.300445557 299.603546143 299.71307373 299.80178833 299.992340088 300.297241211 300.593231201 300.761016846 300.776580811 300.686889648 300.582977295 300.526489258 300.293212891 300.506103516 300.122802734 299.840179443 299.972198486 300.384521484 300.692382812 300.735198975 300.610534668 300.331726074 299.970855713 299.598510742 299.162384033 298.805236816 298.587219238 298.407165527 298.15234375 297.881958008 297.619262695 297.175384521 296.443023682 295.562042236 294.589324951 293.6121521 292.568939209 291.637207031 290.689605713 289.49798584 288.089508057 286.472991943 284.663879395 282.643920898 280.506622314 278.143249512 275.443908691 272.683166504 270.642089844 269.4140625 268.627624512 268.156799316 267.92880249 267.127685547 264.845825195 262.707885742 259.652374268 254.596755981 248.934280396 242.372650146 239.219070435 236.890319824 235.953140259 234.945419312 233.381225586 232.449645996 233.358398438 237.692138672 239.742599487 241.646697998 241.908065796 241.893951416 241.763595581 241.687362671 241.911819458 241.650222778 241.262924194 241.044647217 239.919876099 239.083938599 235.597518921 237.407363892 240.037414551 242.667266846 245.201431274 246.549819946 246.300369263 244.912231445 243.381378174 242.039962769 241.134368896 241.888549805 244.722702026 249.169128418 257.404937744 266.801727295 272.188720703 273.480651855 273.374176025 273.582611084 274.029541016 274.693511963 275.524139404 276.437194824 277.663909912 279.157775879 280.699432373 282.022583008 283.171264648 284.27746582 285.343444824 286.568389893 287.976623535 289.410644531 290.827758789 292.126068115 293.248413086 294.000457764 294.294769287 294.31817627 293.735839844 292.585876465 292.72253418 293.43951416 294.563964844 295.231781006 296.923736572 298.375946045 299.125 299.590545654 299.867889404 300.051483154 300.347869873 300.727264404 300.962158203 300.97052002 300.853515625 300.695831299 300.527526855 300.339599609 299.889648438 300.075134277 300.005493164 300.070220947 300.231628418 300.454467773 300.620819092 300.580169678 300.333007812 300.023010254 299.649627686 299.239074707 298.817718506 298.444061279 298.226226807 298.116485596 297.90914917 297.555450439 297.102996826 296.401092529 295.423095703 294.445007324 293.511566162 292.582763672 291.710845947 291.009796143 290.047424316 288.721984863 287.260192871 285.564819336 283.630981445 281.626037598 279.419921875 276.522094727 272.929870605 269.406738281 266.486572266 264.509033203 263.738037109 263.561950684 263.016082764 261.478942871 259.646728516 259.143066406 258.320770264 256.3543396 254.200454712 251.146697998 247.754516602 244.706268311 244.289398193 245.033004761 244.821792603 244.858627319 246.282272339 248.228759766 247.663604736 247.423049927 247.058425903 245.584594727 245.170562744 245.180297852 245.308166504 244.915298462 244.558807373 243.670944214 242.621704102 242.23487854 224.36769104 227.441589355 232.089096069 236.209594727 238.878997803 239.911331177 238.830490112 236.519622803 234.660430908 233.348800659 232.102172852 232.617279053 236.226150513 241.056747437 248.12562561 257.662536621 264.578308105 268.239440918 270.16192627 271.637207031 272.623321533 273.272766113 273.818603516 274.42098999 275.461395264 276.842926025 278.3828125 279.915130615 281.430419922 282.93081665 284.37020874 285.922821045 287.378295898 288.51663208 289.641998291 290.83203125 291.875366211 292.542144775 292.842590332 292.952362061 292.202484131 291.042938232 291.400085449 292.617340088 294.219268799 295.419616699 296.820678711 298.074249268 298.715606689 299.192321777 299.468933105 299.727661133 300.150299072 300.551483154 300.789886475 300.883148193 300.905914307 300.897857666 300.812286377 300.607666016 300.156616211 300.581237793 300.62286377 300.540740967 300.430755615 300.471405029 300.545440674 300.46182251 300.227355957 299.918029785 299.5809021 299.253723145 298.937255859 298.616607666 298.376098633 298.276763916 298.117095947 297.825500488 297.41784668 296.6512146 295.541381836 294.4921875 293.622955322 292.856323242 292.107330322 291.450042725 290.53427124 289.28692627 287.924407959 286.427856445 284.673156738 282.682678223 280.572479248 277.971435547 274.392456055 270.365722656 266.548675537 264.877929688 263.98928833 263.132843018 262.374847412 261.777130127 261.216247559 261.099700928 260.573364258 257.975616455 254.72833252 250.822998047 248.787139893 247.130767822 246.458557129 246.275299072 245.153320312 243.617233276 243.27394104 243.970367432 244.719100952 245.992965698 246.383422852 246.931594849 247.051727295 246.653076172 245.478012085 244.435287476 243.659622192 243.108001709 242.452255249 241.11882019 246.002578735 247.515625 249.644302368 252.273040771 255.022460938 256.791656494 256.930389404 255.686080933 253.995040894 252.566238403 251.38772583 250.704208374 251.910598755 254.774139404 262.662109375 270.044708252 273.188812256 273.473693848 273.172332764 273.446472168 274.054443359 274.645202637 275.12713623 275.835540771 277.149749756 278.679199219 280.136810303 281.355285645 282.360809326 283.272888184 284.163879395 285.17199707 286.348419189 287.566802979 288.730285645 289.652893066 290.746612549 292.160888672 293.363067627 294.216796875 294.598632812 294.588439941 294.850341797 295.617980957 296.490264893 296.942504883 297.976318359 298.733581543 299.223724365 299.435302734 299.517242432 299.68057251 300.016845703 300.391876221 300.661132812 300.837921143 300.914398193 300.867645264 300.731292725 300.6277771 300.623901367 300.443389893 300.107635498 299.815917969 299.891052246 300.332397461 300.71194458 300.744262695 300.595794678 300.331115723 299.949371338 299.54486084 299.140899658 298.787109375 298.518432617 298.343292236 298.134307861 297.864624023 297.573028564 297.118804932 296.387176514 295.518676758 294.568847656 293.642486572 292.647613525 291.716064453 290.795623779 289.706726074 288.40625 286.816070557 284.999633789 282.952270508 280.688659668 278.117675781 275.427703857 273.047546387 271.385955811 270.376464844 269.6171875 269.153533936 268.849487305 267.781219482 265.453796387 263.361053467 260.18939209 254.241195679 247.910720825 242.792739868 239.756942749 236.95664978 235.356109619 234.977371216 233.541107178 232.591445923 234.397842407 237.580581665 239.764648438 241.355484009 241.834014893 241.889053345 241.701904297 241.648696899 241.886795044 241.643920898 241.264968872 240.976898193 239.874664307 239.07850647 235.663467407 237.522979736 240.292022705 243.088897705 245.809143066 247.326751709 247.321792603 246.065460205 244.54095459 243.121963501 242.110473633 242.512664795 245.172119141 249.742385864 258.455566406 267.680725098 272.535675049 273.531585693 273.486236572 273.790222168 274.229827881 274.884368896 275.692474365 276.577209473 277.82611084 279.340789795 280.829193115 282.082366943 283.213165283 284.348266602 285.426269531 286.609710693 287.876525879 289.173156738 290.535064697 291.744995117 292.892883301 293.918029785 294.534606934 294.799682617 294.740783691 294.207672119 294.152313232 294.693847656 295.569976807 296.452697754 297.693389893 298.590667725 299.154296875 299.525177002 299.789276123 300.038879395 300.371276855 300.711517334 300.931152344 300.983154297 300.899383545 300.768859863 300.638153076 300.479888916 300.274505615 300.06854248 300.002380371 300.040893555 300.183258057 300.421020508 300.590148926 300.527954102 300.280334473 299.985443115 299.618743896 299.2137146 298.812561035 298.434539795 298.18170166 298.058807373 297.850463867 297.465454102 296.984466553 296.298187256 295.35067749 294.379516602 293.452758789 292.591217041 291.753387451 291.044036865 290.125579834 288.872009277 287.475250244 285.799316406 283.858978271 281.830932617 279.51651001 276.437774658 272.949035645 269.987792969 267.811096191 266.412322998 265.810180664 265.573974609 264.78225708 262.819824219 260.559234619 259.71963501 258.700439453 256.259490967 254.033172607 251.850997925 248.576690674 245.117019653 244.221694946 245.078857422 244.934524536 245.293579102 247.192169189 248.082595825 247.794113159 247.455368042 246.8853302 245.538009644 245.160324097 245.148681641 245.219543457 244.861740112 244.530609131 243.646484375 242.614074707 242.219421387 224.511184692 227.792572021 232.483261108 236.75088501 239.625991821 240.928131104 240.088760376 237.955368042 236.185623169 234.80581665 233.260314941 233.548873901 236.960372925 241.758483887 248.901504517 258.602142334 265.316589355 268.60925293 270.281768799 271.674072266 272.662475586 273.369537354 273.950531006 274.558563232 275.597381592 276.994720459 278.52557373 280.033630371 281.526153564 283.057739258 284.475006104 285.894195557 287.180603027 288.283599854 289.438262939 290.667114258 291.937835693 293.047058105 293.736938477 294.127258301 294.153930664 293.590270996 293.724853516 294.595214844 295.752044678 296.669677734 297.783874512 298.359191895 298.883331299 299.306549072 299.553314209 299.803771973 300.220947266 300.609741211 300.818725586 300.917175293 300.942871094 300.916900635 300.842346191 300.697570801 300.57244873 300.515167236 300.49017334 300.442382812 300.430450439 300.500701904 300.521606445 300.412750244 300.211303711 299.910827637 299.548339844 299.230255127 298.939331055 298.588317871 298.294921875 298.183502197 298.044006348 297.773712158 297.384216309 296.644592285 295.524963379 294.413665771 293.503448486 292.790740967 292.066040039 291.395935059 290.525177002 289.361633301 288.051940918 286.559020996 284.811431885 282.835693359 280.636047363 277.756256104 274.196502686 270.870178223 267.559387207 265.784820557 265.004608154 264.26675415 263.390014648 262.197113037 261.294281006 261.12979126 260.834472656 257.918457031 254.2684021 251.312438965 249.617263794 247.753143311 246.589080811 246.275665283 245.14743042 243.573745728 243.397323608 243.933685303 244.920730591 245.891983032 246.562469482 247.082229614 247.06300354 246.579650879 245.388778687 244.411407471 243.641326904 243.016021729 242.38734436 241.099304199 246.039764404 247.605407715 249.864700317 252.662094116 255.588043213 257.577728271 257.765350342 256.601104736 255.128097534 253.782165527 252.476242065 251.482086182 252.302200317 255.447891235 264.246673584 270.504760742 273.341583252 273.512145996 273.223510742 273.526916504 274.157348633 274.76071167 275.250274658 275.987823486 277.306518555 278.8074646 280.237182617 281.438049316 282.411621094 283.277282715 284.145050049 285.178527832 286.364898682 287.48046875 288.511016846 289.369537354 290.40335083 291.858947754 293.284179688 294.443939209 295.157592773 295.572235107 295.95501709 296.439086914 296.992706299 297.566955566 298.13470459 298.599090576 298.975952148 299.199890137 299.346893311 299.613586426 300.077392578 300.499511719 300.731658936 300.917449951 301.07522583 301.026916504 300.806762695 300.664794922 300.626922607 300.48538208 300.190368652 299.890106201 299.878479004 300.281036377 300.69833374 300.736968994 300.562255859 300.322601318 299.943878174 299.502258301 299.115386963 298.778198242 298.468994141 298.275878906 298.101867676 297.846038818 297.519256592 297.046875 296.334686279 295.485717773 294.536865234 293.655426025 292.726470947 291.7918396 290.862854004 289.820800781 288.589233398 287.05657959 285.275146484 283.187683105 280.75479126 277.996002197 275.385437012 273.295654297 271.891571045 271.003051758 270.26940918 269.700408936 269.097442627 267.577667236 265.171142578 263.162445068 260.128112793 254.43762207 248.738891602 243.870071411 239.946960449 236.936676025 235.499099731 235.024749756 233.951873779 232.858337402 234.341644287 237.239013672 239.725036621 240.999679565 241.684448242 241.856689453 241.655883789 241.628829956 241.85774231 241.645233154 241.221923828 240.902832031 239.8384552 239.077072144 235.734344482 237.631271362 240.637741089 243.570007324 246.417953491 248.133560181 248.262573242 247.187606812 245.780181885 244.30305481 243.147277832 243.181793213 245.548019409 250.334487915 260.269042969 268.319488525 272.744873047 273.563659668 273.61315918 273.996063232 274.421722412 275.065948486 275.864227295 276.734619141 278.004608154 279.519744873 280.957946777 282.172973633 283.309814453 284.426116943 285.468963623 286.641967773 287.875915527 289.055175781 290.265167236 291.309814453 292.344848633 293.519622803 294.408599854 294.957611084 295.210906982 295.309204102 295.505401611 295.958007812 296.576416016 297.252990723 297.919494629 298.488372803 299.024047852 299.45489502 299.784942627 300.099700928 300.422119141 300.687927246 300.8777771 301.020721436 301.026275635 300.877319336 300.688446045 300.53137207 300.368469238 300.229217529 300.108978271 300.064331055 300.123779297 300.331604004 300.523498535 300.480957031 300.231842041 299.937835693 299.58883667 299.1902771 298.802032471 298.44342041 298.168243408 297.997070312 297.782562256 297.400360107 296.903106689 296.234405518 295.319091797 294.324707031 293.358154297 292.545715332 291.740997314 291.010406494 290.134735107 288.960327148 287.610321045 285.97467041 284.064178467 281.987792969 279.540679932 276.334625244 273.041107178 270.516845703 268.855804443 267.892822266 267.396575928 266.925109863 265.734130859 263.366455078 260.858856201 259.758148193 258.752288818 256.50668335 254.846878052 252.87638855 249.252105713 245.583557129 244.501083374 244.994979858 245.151107788 245.471893311 247.083572388 247.562637329 247.823028564 247.396331787 246.611801147 245.546966553 245.146087646 245.120925903 245.144851685 244.880386353 244.481658936 243.601516724 242.604766846 242.197647095 224.64604187 227.891326904 232.916427612 237.328811646 240.36088562 241.88104248 241.316314697 239.392974854 237.72442627 236.340454102 234.492126465 234.449920654 237.67805481 242.315795898 250.715301514 259.287780762 265.841339111 268.88381958 270.408416748 271.743530273 272.72479248 273.468200684 274.073181152 274.682952881 275.720825195 277.125152588 278.659240723 280.154998779 281.631896973 283.170928955 284.55480957 285.898834229 287.089935303 288.153076172 289.319641113 290.498779297 291.72442627 292.97857666 293.900665283 294.575683594 294.97177124 295.153991699 295.413665771 295.970733643 296.702606201 297.422637939 297.993865967 298.432189941 298.933563232 299.361419678 299.639892578 299.963867188 300.432556152 300.789428711 300.912017822 300.975158691 301.032623291 301.015472412 300.931640625 300.83190918 300.695281982 300.553741455 300.436187744 300.381317139 300.402191162 300.469299316 300.474761963 300.382049561 300.192749023 299.901000977 299.542816162 299.217102051 298.91595459 298.554290771 298.240844727 298.101989746 297.959411621 297.710113525 297.343475342 296.645233154 295.527862549 294.338195801 293.353515625 292.671783447 291.978637695 291.300262451 290.490966797 289.416656494 288.144073486 286.670501709 284.961273193 283.001037598 280.682647705 277.577453613 274.218719482 271.380187988 268.906311035 267.382171631 266.678192139 265.633880615 264.165863037 262.564727783 261.240631104 261.037994385 260.977294922 258.167633057 254.780822754 252.073364258 249.968917847 248.066375732 246.80871582 246.320755005 245.217437744 243.59312439 243.353057861 243.840789795 245.025466919 245.83392334 246.695724487 247.208816528 247.102630615 246.494110107 245.314086914 244.485610962 243.590957642 242.914413452 242.345489502 241.077209473 246.080581665 247.706787109 250.073013306 253.04586792 256.157409668 258.371551514 258.62310791 257.56842041 256.289428711 255.167160034 253.68927002 252.466186523 252.944107056 256.26751709 265.690155029 270.971832275 273.42300415 273.554229736 273.299957275 273.600128174 274.24041748 274.87677002 275.382141113 276.155059814 277.506134033 278.991821289 280.388580322 281.565093994 282.49395752 283.290161133 284.116485596 285.18359375 286.39175415 287.446777344 288.358825684 289.217407227 290.246276855 291.581298828 292.996948242 294.297698975 295.213989258 295.744659424 296.11340332 296.47177124 296.920440674 297.460327148 297.969451904 298.341674805 298.707336426 298.99822998 299.226409912 299.566040039 300.10559082 300.55947876 300.784637451 300.963287354 301.142669678 301.044586182 300.752380371 300.643005371 300.68182373 300.581787109 300.257263184 299.926940918 299.866790771 300.24130249 300.683105469 300.732147217 300.535644531 300.314147949 299.95098877 299.474945068 299.076446533 298.747802734 298.426635742 298.218994141 298.048370361 297.780761719 297.407714844 296.915374756 296.241455078 295.438293457 294.503234863 293.660430908 292.793823242 291.858795166 290.914367676 289.901855469 288.7081604 287.217407227 285.4715271 283.343811035 280.751068115 277.908416748 275.454864502 273.600402832 272.324676514 271.478179932 270.734405518 269.993499756 268.936737061 266.725830078 263.820739746 260.293670654 258.466033936 254.931762695 249.782958984 245.580078125 240.293289185 237.003631592 235.794036865 235.911071777 234.675033569 233.231246948 233.989349365 237.177078247 239.607009888 240.828262329 241.591827393 241.790756226 241.617431641 241.613357544 241.809341431 241.550628662 241.108444214 240.801071167 239.800735474 239.075546265 235.771408081 237.847015381 240.864776611 243.982147217 247.042907715 248.911346436 249.191711426 248.296707153 247.053314209 245.632980347 244.280990601 243.937744141 245.974594116 250.905380249 261.974822998 268.950286865 272.890930176 273.596252441 273.753692627 274.191802979 274.602081299 275.248565674 276.043121338 276.914916992 278.229949951 279.735595703 281.114593506 282.310058594 283.448425293 284.498687744 285.466278076 286.619903564 287.868499756 288.991912842 290.063873291 290.969573975 291.898132324 293.057983398 294.059997559 294.7996521 295.291931152 295.60458374 295.883270264 296.242523193 296.709136963 297.253234863 297.801116943 298.333557129 298.949523926 299.437591553 299.815368652 300.167114258 300.475402832 300.687561035 300.86050415 301.061340332 301.116973877 300.925384521 300.661804199 300.523986816 300.503356934 300.457519531 300.288208008 300.128112793 300.069885254 300.229309082 300.454223633 300.455108643 300.19934082 299.897521973 299.577545166 299.183349609 298.775848389 298.427459717 298.153991699 297.949127197 297.729187012 297.364257812 296.842773438 296.170959473 295.289978027 294.284332275 293.279724121 292.498962402 291.714202881 290.95010376 290.115814209 289.026702881 287.704864502 286.097045898 284.211730957 282.070709229 279.492797852 276.288391113 273.2684021 271.074493408 269.663543701 268.843353271 268.269226074 267.429077148 265.680084229 262.971008301 260.191558838 257.643493652 257.7472229 256.938873291 255.512390137 254.105239868 250.046783447 246.307922363 244.909454346 245.198501587 245.233627319 245.470458984 247.148834229 248.36076355 248.001251221 247.552978516 246.662963867 245.627075195 245.174880981 245.1302948 245.078964233 244.808044434 244.397521973 243.542221069 242.580093384 242.180831909 224.76260376 228.268722534 233.292480469 237.799621582 241.085739136 242.804840088 242.525848389 240.796813965 239.300857544 237.971191406 235.925003052 235.489395142 238.309616089 242.788085938 252.341812134 259.929351807 266.250518799 269.107696533 270.552032471 271.836853027 272.796813965 273.561218262 274.184997559 274.802825928 275.856079102 277.278015137 278.824401855 280.312225342 281.783233643 283.278594971 284.602966309 285.892028809 287.055847168 288.127929688 289.315856934 290.441314697 291.518188477 292.691040039 293.696807861 294.549499512 295.172149658 295.533905029 295.825897217 296.245361328 296.784454346 297.407073975 297.972900391 298.468353271 299.008117676 299.456298828 299.794952393 300.196685791 300.701416016 301.000732422 301.031585693 301.056030273 301.13067627 301.128692627 301.029296875 300.951477051 300.8253479 300.633514404 300.455993652 300.368652344 300.364196777 300.415283203 300.442901611 300.378082275 300.163909912 299.863250732 299.530456543 299.195922852 298.861236572 298.501556396 298.194458008 298.031677246 297.880767822 297.637634277 297.272491455 296.611663818 295.544677734 294.340087891 293.292510986 292.586029053 291.872314453 291.165405273 290.420806885 289.431182861 288.178253174 286.719421387 285.053466797 283.098999023 280.667327881 277.460693359 274.374664307 271.884918213 269.968322754 268.698303223 267.855773926 266.716430664 264.710144043 262.735809326 261.009643555 259.803466797 260.404937744 258.676330566 255.34286499 252.937362671 250.229522705 248.293655396 247.088439941 246.475021362 245.508468628 243.802032471 243.454620361 243.828887939 245.07623291 245.933868408 246.87336731 247.325698853 247.127853394 246.435333252 245.235809326 244.435684204 243.514831543 242.822128296 242.291687012 241.059814453 246.11000061 247.820755005 250.32371521 253.423934937 256.720367432 259.138549805 259.531433105 258.520721436 257.461517334 256.552185059 255.060028076 253.396743774 253.700668335 257.071105957 266.574768066 271.406951904 273.484710693 273.597869873 273.414916992 273.694213867 274.333435059 275.004302979 275.518981934 276.345214844 277.771881104 279.265472412 280.635345459 281.756134033 282.583526611 283.295257568 284.120727539 285.222167969 286.41506958 287.431854248 288.325775146 289.260864258 290.296875 291.428131104 292.609680176 293.878173828 294.844390869 295.394927979 295.806793213 296.228637695 296.700622559 297.23928833 297.766021729 298.199859619 298.58581543 298.895080566 299.155090332 299.512481689 300.057006836 300.571228027 300.861602783 301.009002686 301.099090576 300.960327148 300.683624268 300.668243408 300.794921875 300.649688721 300.197265625 299.837005615 299.830352783 300.230621338 300.664855957 300.725585938 300.512908936 300.288635254 299.949584961 299.475067139 299.043334961 298.690460205 298.370880127 298.164001465 297.983703613 297.704376221 297.291137695 296.74697876 296.073486328 295.327087402 294.45715332 293.665313721 292.842376709 291.900970459 290.929473877 289.9559021 288.80480957 287.338256836 285.595458984 283.433166504 280.746490479 277.937408447 275.630340576 273.940826416 272.721191406 271.872070312 271.127105713 270.275970459 268.868835449 264.598236084 261.441040039 258.679779053 255.703796387 253.132476807 250.700027466 246.939086914 241.048370361 237.185302734 236.43031311 236.636642456 235.438919067 233.399734497 235.216430664 237.459121704 239.419937134 240.672851562 241.486831665 241.626602173 241.520431519 241.518066406 241.7865448 241.425323486 240.990509033 240.720321655 239.746231079 239.074447632 235.773513794 237.961807251 241.197463989 244.460388184 247.719207764 249.685852051 250.086578369 249.413650513 248.360443115 247.06048584 245.620773315 244.821289062 246.458129883 251.509613037 263.032501221 269.577148438 273.052001953 273.665252686 273.927154541 274.390777588 274.789215088 275.450958252 276.231414795 277.129058838 278.52130127 280.013824463 281.31930542 282.490966797 283.599304199 284.566497803 285.463928223 286.584228516 287.81817627 288.933868408 289.974182129 290.840209961 291.705871582 292.691436768 293.577941895 294.375061035 295.032653809 295.464752197 295.788543701 296.148834229 296.623962402 297.190948486 297.798187256 298.404968262 298.96673584 299.387176514 299.768981934 300.174804688 300.520996094 300.727142334 300.89541626 301.0597229 301.07522583 300.877716064 300.630523682 300.558959961 300.630523682 300.615142822 300.37588501 300.110809326 299.987823486 300.139556885 300.398651123 300.430877686 300.153381348 299.833984375 299.559906006 299.189788818 298.739501953 298.368896484 298.116973877 297.912139893 297.693725586 297.347839355 296.798675537 296.091827393 295.22668457 294.230255127 293.219024658 292.46383667 291.702331543 290.895690918 290.083465576 289.082824707 287.801635742 286.209625244 284.324157715 282.10345459 279.409637451 276.314453125 273.602539062 271.657226562 270.35925293 269.564300537 268.89630127 267.762207031 265.53427124 261.654937744 258.58303833 256.399810791 255.574920654 256.442901611 256.365081787 254.858856201 251.189697266 247.39704895 245.866714478 245.574569702 245.31489563 245.459671021 247.788970947 248.392120361 248.26109314 247.904296875 246.896728516 245.806671143 245.252548218 245.113815308 245.028701782 244.686889648 244.31111145 243.492919922 242.54699707 242.167617798 224.884307861 228.476455688 233.711608887 238.402679443 241.844192505 243.660995483 243.611541748 242.148895264 240.864440918 239.673278809 237.530181885 236.707443237 239.008529663 243.375366211 253.250305176 260.605438232 266.649749756 269.331237793 270.736419678 271.961700439 272.879486084 273.654541016 274.289520264 274.927032471 276.030548096 277.489532471 279.049713135 280.545715332 282.005187988 283.394439697 284.622039795 285.880981445 287.070068359 288.19821167 289.42489624 290.522003174 291.450775146 292.440460205 293.408843994 294.323547363 295.005615234 295.395507812 295.703125 296.150634766 296.734649658 297.401611328 298.052429199 298.632965088 299.141357422 299.56829834 299.938934326 300.362518311 300.824249268 301.089508057 301.161865234 301.218505859 301.250030518 301.195343018 301.070739746 300.975280762 300.852966309 300.631103516 300.421325684 300.327484131 300.347167969 300.437469482 300.48916626 300.406616211 300.135406494 299.80657959 299.49911499 299.167694092 298.80355835 298.439300537 298.127563477 297.93951416 297.803497314 297.570739746 297.183990479 296.539154053 295.54385376 294.388183594 293.325561523 292.556884766 291.777099609 291.022583008 290.331848145 289.418212891 288.18862915 286.736297607 285.090148926 283.116210938 280.567657471 277.361114502 274.59677124 272.41116333 270.775512695 269.682037354 268.811187744 267.5440979 265.464996338 262.820861816 260.473449707 258.916931152 258.51953125 257.797546387 256.120391846 253.87310791 250.785690308 248.576782227 247.294128418 246.754806519 245.930618286 244.073028564 243.701095581 243.707000732 245.096893311 246.067749023 247.011535645 247.445724487 247.165130615 246.405105591 245.188140869 244.367874146 243.446792603 242.779785156 242.22567749 241.045211792 246.136535645 247.927398682 250.559768677 253.798950195 257.304931641 259.864227295 260.37121582 259.49407959 258.604919434 258.049682617 256.534301758 254.559143066 254.617584229 258.164306641 267.2265625 271.760406494 273.547149658 273.642150879 273.540435791 273.805053711 274.42288208 275.104187012 275.63961792 276.527770996 278.031951904 279.548461914 280.893218994 281.910491943 282.612121582 283.280456543 284.18182373 285.316131592 286.483398438 287.525787354 288.458587646 289.363616943 290.304779053 291.321929932 292.394226074 293.58303833 294.515960693 295.06439209 295.544921875 296.07333374 296.630981445 297.196502686 297.728881836 298.203826904 298.590820312 298.89932251 299.183135986 299.528808594 300.036621094 300.585571289 300.942871094 301.035614014 301.03237915 300.954071045 300.779876709 300.760620117 300.833435059 300.595733643 300.081695557 299.736846924 299.804443359 300.226745605 300.645233154 300.7237854 300.513183594 300.251678467 299.909454346 299.470977783 299.044128418 298.668243408 298.335357666 298.109985352 297.921386719 297.67288208 297.285491943 296.689117432 295.939941406 295.188934326 294.377349854 293.641876221 292.859924316 291.91595459 290.886047363 289.938476562 288.885040283 287.468841553 285.691467285 283.501220703 280.812652588 278.104400635 275.862854004 274.234771729 273.007537842 272.14553833 271.429718018 270.595092773 269.096466064 265.986541748 261.795074463 258.258789062 254.719558716 251.80090332 250.68800354 247.409790039 241.351928711 237.394393921 237.164077759 237.346481323 236.03225708 233.992752075 235.504760742 237.395309448 239.198669434 240.411956787 241.267745972 241.359161377 241.371383667 241.401535034 241.662979126 241.458526611 240.903396606 240.646011353 239.7059021 239.074996948 235.829986572 238.042129517 241.386001587 244.889205933 248.295455933 250.46156311 250.926345825 250.481903076 249.661071777 248.555206299 247.033996582 245.887588501 247.151626587 252.332855225 263.950439453 270.155975342 273.227966309 273.759490967 274.09866333 274.564544678 274.957489014 275.622253418 276.378417969 277.316558838 278.789916992 280.276611328 281.523406982 282.645324707 283.692749023 284.628692627 285.538482666 286.626678467 287.808776855 288.940673828 290.000915527 290.863952637 291.674835205 292.479797363 293.209564209 294.016296387 294.777008057 295.259216309 295.623168945 296.096496582 296.685852051 297.302490234 297.905975342 298.453216553 298.894287109 299.241119385 299.65737915 300.144744873 300.525177002 300.719970703 300.879394531 301.021697998 301.026367188 300.898986816 300.736083984 300.661224365 300.679138184 300.598968506 300.30847168 299.991394043 299.875396729 300.063598633 300.341491699 300.396087646 300.12600708 299.78036499 299.495361328 299.14276123 298.697479248 298.320922852 298.089233398 297.880584717 297.644897461 297.314575195 296.798675537 296.095855713 295.223571777 294.217834473 293.192016602 292.426300049 291.685394287 290.85723877 290.014343262 289.076202393 287.899291992 286.360778809 284.444122314 282.115905762 279.328521729 276.418914795 273.971954346 272.191436768 270.926574707 270.111053467 269.420196533 268.365631104 266.226013184 263.081298828 259.165618896 256.240753174 255.068572998 256.247680664 256.946929932 255.532012939 252.210113525 248.510269165 247.016342163 246.177368164 245.439849854 245.740142822 248.316436768 248.197723389 248.438568115 248.274215698 247.165618896 245.992721558 245.336685181 245.120361328 244.961334229 244.643447876 244.262039185 243.43687439 242.521652222 242.158111572 225.017227173 228.781661987 234.11390686 238.856643677 242.638946533 244.473342896 244.521224976 243.413085938 242.408233643 241.467498779 239.252532959 238.00743103 239.883361816 244.141647339 254.030334473 261.197662354 267.010803223 269.548675537 270.930511475 272.089630127 272.960388184 273.73223877 274.368499756 275.04888916 276.23248291 277.729034424 279.279083252 280.781829834 282.207458496 283.485076904 284.643737793 285.918273926 287.167541504 288.342376709 289.588409424 290.640655518 291.490539551 292.349029541 293.225494385 294.118286133 294.819610596 295.240325928 295.617675781 296.177520752 296.852386475 297.523925781 298.136383057 298.684356689 299.16494751 299.563049316 299.940643311 300.346466064 300.729034424 301.002502441 301.195281982 301.335357666 301.351348877 301.27822876 301.154602051 301.002197266 300.818145752 300.552215576 300.296325684 300.207733154 300.304534912 300.440917969 300.476715088 300.380279541 300.127502441 299.799926758 299.46887207 299.139221191 298.793395996 298.433044434 298.089019775 297.852905273 297.715576172 297.506103516 297.129577637 296.494354248 295.499420166 294.327697754 293.246887207 292.455474854 291.656066895 290.896789551 290.232086182 289.390899658 288.231201172 286.795196533 285.132629395 283.107147217 280.399688721 277.312957764 274.845550537 272.910888672 271.406463623 270.387237549 269.607910156 268.470489502 266.441375732 264.424377441 261.373046875 258.698791504 257.710601807 256.849578857 256.428100586 254.660720825 251.320846558 248.696304321 247.530380249 247.106277466 246.244247437 244.518463135 243.925262451 243.672821045 245.130264282 246.202133179 247.106582642 247.541671753 247.202835083 246.427719116 245.188659668 244.376602173 243.451721191 242.781524658 242.176254272 241.029464722 246.171875 248.01385498 250.724822998 254.205032349 257.840667725 260.540740967 261.188598633 260.418640137 259.839752197 259.483795166 258.127471924 255.850494385 255.59463501 260.305908203 267.835784912 272.107391357 273.58480835 273.673156738 273.659515381 273.927490234 274.509185791 275.192016602 275.763336182 276.73324585 278.307281494 279.825073242 281.10546875 282.006958008 282.599975586 283.268859863 284.250030518 285.422698975 286.611541748 287.69418335 288.622192383 289.421264648 290.271057129 291.287567139 292.354492188 293.442901611 294.300445557 294.873718262 295.424682617 296.008880615 296.595733643 297.166656494 297.70791626 298.219238281 298.637359619 298.95022583 299.272766113 299.63873291 300.118225098 300.655609131 301.035491943 301.092010498 301.021972656 300.984039307 300.861877441 300.789459229 300.785675049 300.512756348 300.022583008 299.689971924 299.75894165 300.175720215 300.612335205 300.725036621 300.528442383 300.229064941 299.860015869 299.434448242 299.0234375 298.64831543 298.31741333 298.068084717 297.846008301 297.601745605 297.243499756 296.639312744 295.862701416 295.106781006 294.297241211 293.568115234 292.830993652 291.947784424 290.873260498 289.87588501 288.881988525 287.522888184 285.708557129 283.512451172 280.889312744 278.236602783 275.978637695 274.379974365 273.162994385 272.309509277 271.663360596 270.987121582 269.815216064 267.328094482 264.068328857 258.754608154 254.889389038 251.691833496 249.713790894 246.900283813 240.619720459 237.549682617 237.363800049 237.392150879 236.610931396 234.727050781 235.713409424 237.334442139 238.918121338 239.996627808 240.89616394 240.987197876 241.171722412 241.255020142 241.534469604 241.476348877 240.840332031 240.581069946 239.696289062 239.075698853 235.913070679 238.203613281 241.678665161 245.288497925 248.886428833 251.192306519 251.70652771 251.426544189 250.98085022 250.141387939 248.564254761 247.119232178 248.040161133 254.618728638 264.56048584 270.7421875 273.398651123 273.8565979 274.258453369 274.726867676 275.116516113 275.779907227 276.513366699 277.506896973 279.050262451 280.516479492 281.709869385 282.760864258 283.73614502 284.684906006 285.647338867 286.724822998 287.87991333 289.012115479 290.051116943 290.874176025 291.634765625 292.351654053 293.001556396 293.801574707 294.599090576 295.108306885 295.538269043 296.099945068 296.723175049 297.319793701 297.880279541 298.392852783 298.808166504 299.142242432 299.590179443 300.134216309 300.522247314 300.679962158 300.819854736 300.985870361 301.063476562 301.01940918 300.879455566 300.748748779 300.719451904 300.612030029 300.322845459 299.959960938 299.816040039 300.006835938 300.286682129 300.367370605 300.133270264 299.776824951 299.437866211 299.0675354 298.633453369 298.262573242 298.044891357 297.839904785 297.587524414 297.26550293 296.793304443 296.107330322 295.231079102 294.235595703 293.198303223 292.392456055 291.645111084 290.833129883 289.939483643 289.000671387 287.909240723 286.432373047 284.476928711 282.082550049 279.265563965 276.501220703 274.248748779 272.626220703 271.400726318 270.565063477 269.939666748 269.201690674 267.76272583 264.974273682 261.574890137 257.058135986 255.84765625 256.491119385 257.216491699 256.135467529 252.725097656 249.552246094 248.000656128 246.798355103 245.887207031 246.205413818 248.466751099 248.12562561 248.531158447 248.531234741 247.390762329 246.201095581 245.440216064 245.128570557 244.916290283 244.611328125 244.207992554 243.379943848 242.5184021 242.147720337 225.102264404 228.947952271 234.469451904 239.496490479 243.306289673 245.191757202 245.416320801 244.53692627 243.905044556 243.243240356 241.033721924 239.441940308 240.88508606 245.919204712 254.703323364 261.815856934 267.328704834 269.755401611 271.120239258 272.21496582 273.044128418 273.810546875 274.450469971 275.200836182 276.481994629 277.991699219 279.498016357 280.982910156 282.357177734 283.566558838 284.709869385 286.008270264 287.305206299 288.518920898 289.740356445 290.748748779 291.567718506 292.367156982 293.142181396 293.962799072 294.661712646 295.126953125 295.590362549 296.207885742 296.87979126 297.513061523 298.097198486 298.6534729 299.167022705 299.573425293 299.941162109 300.307281494 300.638702393 300.920166016 301.156768799 301.312042236 301.364440918 301.352508545 301.234680176 301.019195557 300.799255371 300.54699707 300.272247314 300.155548096 300.269744873 300.414672852 300.429382324 300.333984375 300.121459961 299.807128906 299.437591553 299.094360352 298.764587402 298.414886475 298.067047119 297.802734375 297.639099121 297.41809082 297.056243896 296.440429688 295.430755615 294.212493896 293.101318359 292.301940918 291.506011963 290.768615723 290.101867676 289.297515869 288.212280273 286.814941406 285.12713623 283.080718994 280.296844482 277.356628418 275.072174072 273.362487793 271.989562988 271.017608643 270.388153076 269.599487305 268.03918457 265.783966064 263.421600342 259.136352539 257.754272461 256.592437744 256.149688721 254.752792358 251.136611938 248.795379639 247.685348511 247.436080933 246.568832397 244.912918091 244.016921997 243.807113647 245.205490112 246.313812256 247.117294312 247.589508057 247.270065308 246.474212646 245.215545654 244.408828735 243.450546265 242.80897522 242.132614136 241.011947632 246.21635437 248.106414795 251.014297485 254.620666504 258.385986328 261.169464111 261.906005859 261.305053711 261.007385254 260.852478027 259.564697266 257.186004639 256.788238525 262.220703125 268.695709229 272.429077148 273.566192627 273.671600342 273.778381348 274.056365967 274.597503662 275.276000977 275.918731689 277.009796143 278.635498047 280.098022461 281.262329102 282.072906494 282.599609375 283.286254883 284.323242188 285.540496826 286.786407471 287.89855957 288.780273438 289.468292236 290.280700684 291.351226807 292.413269043 293.368652344 294.134979248 294.763397217 295.373718262 295.945495605 296.546325684 297.145385742 297.709136963 298.260986328 298.716949463 299.026977539 299.362915039 299.781982422 300.280822754 300.79598999 301.175018311 301.221588135 301.109832764 301.033569336 300.89251709 300.775146484 300.725280762 300.452636719 299.986724854 299.640014648 299.668609619 300.074859619 300.551361084 300.700164795 300.519622803 300.208465576 299.819030762 299.385955811 298.972473145 298.606201172 298.293212891 298.038116455 297.783782959 297.508636475 297.146820068 296.558349609 295.809417725 295.060668945 294.220733643 293.456542969 292.756286621 291.970092773 290.896057129 289.81072998 288.81628418 287.507568359 285.664794922 283.477966309 280.928527832 278.266265869 275.957489014 274.361846924 273.211181641 272.424072266 271.892578125 271.466888428 270.825836182 269.242889404 266.088653564 262.296508789 256.529449463 252.811157227 248.731292725 245.666976929 239.990280151 237.701171875 236.869949341 237.218612671 237.076721191 235.70149231 236.241165161 237.369796753 238.594696045 239.535522461 240.406784058 240.554916382 240.919250488 241.068939209 241.387939453 241.440109253 240.784713745 240.549026489 239.69140625 239.076049805 235.994003296 238.446624756 241.981109619 245.772109985 249.440490723 251.901306152 252.464370728 252.306991577 252.243621826 251.65461731 250.204086304 248.543304443 249.124801636 256.74508667 265.437744141 271.304595947 273.547485352 273.943878174 274.406066895 274.878601074 275.272460938 275.934997559 276.671173096 277.746520996 279.330932617 280.748535156 281.876464844 282.842712402 283.755218506 284.735473633 285.753082275 286.839935303 288.011260986 289.139709473 290.110229492 290.854675293 291.585113525 292.289489746 292.924713135 293.699584961 294.473510742 294.999084473 295.477142334 296.064575195 296.692443848 297.264709473 297.787017822 298.309082031 298.770111084 299.121765137 299.536987305 300.086456299 300.497314453 300.64730835 300.756958008 300.945526123 301.126281738 301.160858154 300.996826172 300.815887451 300.765075684 300.664428711 300.381744385 299.982757568 299.793121338 299.963134766 300.238342285 300.331237793 300.125854492 299.785583496 299.407409668 299.016174316 298.578094482 298.187255859 297.966033936 297.786590576 297.544921875 297.225830078 296.766326904 296.06048584 295.170227051 294.215637207 293.199523926 292.349365234 291.579437256 290.799255371 289.880981445 288.920623779 287.886108398 286.464233398 284.469451904 282.046661377 279.252716064 276.546783447 274.415740967 272.903930664 271.750793457 270.947662354 270.435852051 270.097930908 269.388183594 267.581481934 264.25793457 260.85067749 257.631591797 257.674591064 257.302124023 256.146606445 253.049636841 250.468994141 248.674713135 247.386108398 246.484039307 247.021636963 248.492752075 248.211349487 248.586349487 248.639389038 247.547027588 246.295303345 245.54145813 245.171279907 244.907012939 244.575210571 244.144973755 243.317276001 242.523406982 242.137329102 225.133804321 229.219741821 234.877166748 239.989273071 244.066390991 245.955123901 246.185958862 245.521148682 245.272323608 244.952529907 242.806930542 240.968139648 241.976501465 247.606842041 255.367752075 262.46295166 267.618530273 269.945526123 271.296478271 272.332794189 273.133178711 273.903533936 274.564025879 275.416625977 276.792602539 278.276916504 279.715270996 281.143280029 282.459136963 283.654327393 284.832061768 286.159057617 287.483215332 288.718353271 289.889099121 290.852539062 291.669158936 292.45602417 293.143768311 293.863250732 294.519744873 295.013519287 295.533905029 296.162567139 296.834686279 297.473114014 298.067871094 298.664794922 299.22857666 299.648132324 299.95324707 300.25100708 300.585357666 300.89453125 301.119537354 301.23147583 301.303344727 301.356658936 301.219696045 300.954986572 300.755828857 300.556274414 300.279418945 300.119384766 300.234313965 300.395477295 300.411834717 300.309204102 300.105712891 299.804473877 299.426086426 299.060424805 298.714996338 298.357666016 298.029571533 297.772705078 297.584716797 297.333251953 296.96496582 296.353149414 295.335449219 294.101104736 292.975585938 292.157775879 291.354156494 290.632629395 289.949310303 289.158874512 288.132659912 286.777191162 285.065246582 283.024536133 280.286437988 277.464263916 275.267181396 273.673126221 272.406311035 271.534332275 271.09967041 270.754302979 269.733123779 267.724761963 264.799713135 261.72052002 258.515472412 256.970245361 255.716400146 254.337371826 250.940505981 248.836380005 247.606582642 247.457550049 246.817138672 245.373474121 244.016296387 243.994232178 245.311843872 246.382446289 247.029937744 247.454574585 247.265991211 246.54095459 245.259109497 244.408782959 243.467453003 242.823181152 242.078567505 240.994934082 246.254821777 248.205612183 251.276123047 254.983337402 258.882965088 261.744537354 262.580841064 262.170043945 262.838287354 263.638244629 262.035400391 258.846069336 258.265136719 263.414245605 269.526580811 272.676391602 273.454345703 273.600006104 273.88067627 274.19430542 274.69909668 275.383911133 276.166290283 277.42288208 279.059143066 280.362304688 281.363708496 282.132904053 282.64944458 283.37097168 284.442779541 285.686004639 286.971862793 288.089355469 288.941314697 289.569702148 290.349517822 291.457000732 292.476501465 293.31552124 294.031280518 294.713531494 295.338043213 295.872009277 296.489532471 297.115142822 297.700134277 298.327453613 298.841400146 299.103607178 299.3934021 299.880554199 300.448638916 300.943145752 301.294372559 301.356231689 301.252075195 301.123504639 300.942840576 300.825592041 300.746948242 300.4140625 299.921173096 299.561950684 299.547637939 299.942230225 300.457122803 300.63949585 300.463470459 300.171356201 299.795898438 299.34866333 298.915527344 298.544525146 298.232940674 297.989044189 297.738067627 297.440460205 297.065734863 296.494995117 295.77041626 295.013305664 294.142547607 293.331512451 292.643463135 291.943084717 290.906890869 289.7472229 288.710845947 287.42980957 285.584381104 283.421386719 280.949798584 278.275939941 275.939056396 274.334899902 273.256988525 272.547698975 272.115142822 271.860809326 271.640136719 270.923828125 268.658477783 264.863555908 261.260772705 257.267120361 251.037780762 243.285491943 239.628860474 237.750335693 236.592819214 236.762786865 236.499908447 235.863220215 236.782928467 237.394958496 238.268417358 239.044265747 239.849685669 240.129623413 240.666366577 240.8802948 241.218719482 241.300369263 240.746276855 240.535888672 239.686309814 239.075775146 236.021240234 238.566543579 242.220046997 246.204177856 250.023880005 252.62260437 253.192245483 253.135650635 254.454711914 256.01272583 253.260284424 250.199157715 250.49230957 258.049560547 266.535614014 271.8487854 273.656829834 274.003265381 274.536346436 275.027496338 275.445953369 276.117095947 276.907562256 278.092407227 279.669433594 280.987548828 282.011322021 282.910003662 283.789306641 284.779754639 285.817932129 286.920257568 288.134338379 289.278930664 290.184020996 290.848449707 291.536499023 292.257293701 292.92956543 293.690673828 294.406494141 294.940734863 295.451263428 296.014648438 296.643615723 297.222564697 297.711761475 298.23526001 298.765197754 299.117675781 299.412658691 299.890014648 300.370880127 300.598937988 300.694732666 300.880889893 301.132293701 301.218261719 301.04699707 300.867889404 300.809509277 300.670135498 300.364929199 299.970611572 299.773406982 299.939331055 300.21685791 300.288726807 300.078369141 299.759338379 299.387207031 299.002960205 298.567474365 298.130859375 297.86730957 297.713806152 297.506774902 297.192474365 296.722808838 295.9715271 295.04586792 294.137481689 293.167938232 292.280517578 291.478057861 290.723419189 289.815704346 288.849029541 287.849334717 286.47076416 284.471038818 282.063842773 279.326568604 276.651306152 274.598388672 273.162384033 272.077819824 271.29083252 270.811279297 270.618041992 270.496002197 269.761077881 267.483276367 264.12387085 261.62588501 260.152313232 258.163116455 255.444335938 253.489837646 251.275680542 249.170410156 247.876678467 247.018127441 247.340179443 248.514190674 248.371826172 248.612426758 248.558914185 247.579177856 246.275177002 245.653915405 245.205459595 244.919998169 244.460693359 244.055480957 243.247833252 242.52545166 242.12828064 225.283370972 229.500915527 235.325210571 240.52293396 244.71270752 246.561843872 246.736312866 246.326385498 247.284088135 248.337265015 245.640167236 242.659820557 243.1612854 248.635681152 256.079071045 263.119445801 267.886535645 270.114440918 271.457305908 272.445831299 273.234008789 274.026885986 274.744293213 275.730255127 277.176513672 278.594543457 279.937133789 281.259368896 282.522399902 283.763366699 285.019470215 286.329162598 287.634368896 288.883026123 290.03137207 290.959442139 291.76373291 292.533905029 293.183380127 293.84072876 294.43157959 294.904541016 295.442169189 296.095916748 296.809967041 297.512939453 298.132904053 298.751220703 299.33883667 299.719055176 299.907531738 300.147216797 300.543334961 300.91418457 301.113708496 301.181549072 301.248809814 301.285583496 301.097839355 300.824249268 300.668365479 300.469390869 300.141052246 299.960174561 300.116149902 300.359954834 300.419036865 300.298797607 300.070556641 299.783660889 299.438812256 299.054534912 298.675506592 298.287078857 297.968170166 297.728240967 297.533996582 297.279937744 296.893188477 296.241821289 295.215423584 294.01083374 292.890960693 292.040496826 291.220672607 290.506439209 289.806274414 289.016662598 288.031616211 286.703552246 284.981536865 282.969055176 280.359619141 277.652435303 275.520172119 273.969787598 272.750274658 271.927703857 271.567810059 271.438232422 270.89453125 269.660858154 267.060333252 263.683868408 261.479888916 259.333892822 256.887023926 253.240707397 250.885940552 248.762802124 247.465560913 247.146530151 246.650863647 245.457336426 243.996795654 244.069793701 245.381912231 246.382659912 246.857879639 247.212982178 247.197052002 246.560897827 245.300048828 244.354568481 243.476013184 242.846755981 242.030426025 240.979827881 246.281417847 248.292785645 251.46131897 255.344909668 259.403320312 262.287078857 263.21685791 262.921813965 264.316101074 264.991394043 263.651306152 260.598846436 259.905090332 264.479644775 270.148162842 272.7762146 273.281005859 273.487457275 273.945281982 274.322509766 274.803771973 275.514923096 276.449157715 277.825622559 279.408508301 280.537384033 281.415496826 282.173248291 282.740692139 283.554168701 284.674957275 285.877685547 287.046600342 288.104858398 289.041259766 289.739685059 290.503295898 291.541412354 292.515686035 293.328552246 294.054168701 294.744262695 295.342102051 295.856994629 296.454620361 297.040344238 297.611846924 298.294342041 298.871490479 299.120941162 299.39642334 299.892242432 300.431915283 300.873901367 301.174987793 301.266448975 301.245819092 301.166503906 301.026275635 300.911071777 300.780334473 300.356781006 299.852233887 299.521575928 299.484069824 299.850311279 300.383972168 300.603149414 300.442016602 300.146270752 299.761413574 299.304534912 298.870697021 298.495178223 298.154724121 297.891571045 297.643707275 297.361572266 297.026763916 296.482055664 295.708129883 294.890197754 294.030181885 293.235534668 292.527404785 291.832427979 290.835479736 289.656768799 288.570495605 287.288696289 285.476104736 283.357513428 280.985198975 278.335174561 275.998168945 274.371276855 273.330841064 272.684356689 272.334228516 272.181488037 272.08895874 271.70980835 270.295776367 267.791687012 264.593322754 260.178253174 253.456848145 243.080749512 239.143005371 237.886352539 236.65625 236.121368408 236.165008545 236.515625 236.776916504 237.442276001 238.007843018 238.648635864 239.34715271 239.736801147 240.429275513 240.696731567 241.014160156 241.170288086 240.728225708 240.538970947 239.708328247 239.074966431 236.037689209 238.659255981 242.507568359 246.649749756 250.579391479 253.273880005 253.868881226 253.801925659 256.526641846 257.537689209 255.857788086 252.244094849 252.180603027 259.51473999 267.531585693 272.250457764 273.688995361 274.023895264 274.634552002 275.15838623 275.613616943 276.303771973 277.170898438 278.440979004 279.972686768 281.158508301 282.073547363 282.953674316 283.838592529 284.82723999 285.851837158 286.896209717 288.063873291 289.210357666 290.174591064 290.888183594 291.527374268 292.192657471 292.91204834 293.71472168 294.398651123 294.924835205 295.450958252 295.998840332 296.626800537 297.226470947 297.688079834 298.156524658 298.695159912 299.062286377 299.323516846 299.716217041 300.185394287 300.473236084 300.622558594 300.822570801 301.062042236 301.146728516 301.005126953 300.880889893 300.840942383 300.650848389 300.343322754 299.990386963 299.802978516 299.953857422 300.222412109 300.280670166 300.064666748 299.743927002 299.345397949 298.957946777 298.557830811 298.124023438 297.813659668 297.63571167 297.418640137 297.094696045 296.655426025 295.943084717 295.00213623 294.069274902 293.106536865 292.202178955 291.367156982 290.606170654 289.702972412 288.734680176 287.754577637 286.416351318 284.491821289 282.167633057 279.511169434 276.857879639 274.82333374 273.410949707 272.380584717 271.611755371 271.132843018 270.95916748 271.057128906 270.875061035 269.703552246 267.51159668 264.812530518 262.107391357 259.136993408 255.636230469 253.666687012 251.792495728 249.851516724 248.288757324 247.586090088 248.220108032 248.626937866 248.617767334 248.646820068 248.421630859 247.461639404 246.201904297 245.730117798 245.231140137 244.906890869 244.402618408 243.97467041 243.184310913 242.510513306 242.120178223 225.392181396 229.761474609 235.620361328 241.080184937 245.36920166 247.201675415 247.011169434 246.907424927 249.096878052 249.671463013 247.887191772 244.470321655 244.41027832 249.651306152 256.611053467 263.620727539 268.0574646 270.217346191 271.573120117 272.545959473 273.335693359 274.153686523 274.94708252 276.042419434 277.504272461 278.847137451 280.094665527 281.316986084 282.555023193 283.864562988 285.127258301 286.324462891 287.566009521 288.871154785 290.101104736 291.047790527 291.797668457 292.497467041 293.145721436 293.816680908 294.390777588 294.855133057 295.409393311 296.071899414 296.801544189 297.526519775 298.130645752 298.705566406 299.272033691 299.638580322 299.83013916 300.077362061 300.473937988 300.816772461 301.028289795 301.149780273 301.245452881 301.231811523 301.005340576 300.771148682 300.665130615 300.417633057 299.999725342 299.793304443 299.994445801 300.303253174 300.410827637 300.290435791 300.054443359 299.770294189 299.415802002 299.020843506 298.648345947 298.264343262 297.928924561 297.662963867 297.456726074 297.226776123 296.851348877 296.16998291 295.131469727 293.93572998 292.790802002 291.91003418 291.097503662 290.400085449 289.6796875 288.873931885 287.917938232 286.614379883 284.91317749 282.944244385 280.497802734 277.9168396 275.850280762 274.269073486 273.060821533 272.25201416 271.909057617 271.833465576 271.527282715 270.75567627 269.115905762 266.480041504 263.436889648 260.687011719 258.062744141 253.156356812 250.634155273 248.60697937 247.334121704 246.69078064 246.379623413 245.282302856 244.153320312 244.214630127 245.386962891 246.266647339 246.610565186 246.962600708 247.071014404 246.533157349 245.300384521 244.359939575 243.498474121 242.826705933 241.978897095 240.966033936 246.31362915 248.446563721 251.750549316 255.747131348 259.86819458 262.794219971 263.798828125 263.643432617 265.283355713 266.211578369 264.708343506 262.373443604 261.520782471 266.171844482 270.673614502 272.776031494 273.082763672 273.378173828 273.998931885 274.437835693 274.914276123 275.650970459 276.700042725 278.143676758 279.649291992 280.648071289 281.451873779 282.188537598 282.831054688 283.809417725 285.018218994 286.11706543 287.061248779 287.989349365 289.041137695 289.957061768 290.782897949 291.717529297 292.626464844 293.427276611 294.130065918 294.761260986 295.307434082 295.826538086 296.412475586 296.933959961 297.453979492 298.124450684 298.820587158 299.070373535 299.402984619 299.854492188 300.271606445 300.653991699 300.983032227 301.126556396 301.177886963 301.163970947 301.071624756 300.946746826 300.768005371 300.293426514 299.783569336 299.469451904 299.41885376 299.770477295 300.319976807 300.567749023 300.43371582 300.131866455 299.722351074 299.251098633 298.813781738 298.442169189 298.088409424 297.807800293 297.549194336 297.273681641 296.975341797 296.459320068 295.645477295 294.764465332 293.905548096 293.152282715 292.434387207 291.707336426 290.722259521 289.561920166 288.431854248 287.115509033 285.340270996 283.283691406 281.016021729 278.435424805 276.147216797 274.484832764 273.438476562 272.824066162 272.563568115 272.464172363 272.369873047 272.030761719 271.021728516 269.332000732 267.170684814 262.779846191 254.486053467 242.964263916 238.952041626 238.09437561 236.742980957 235.612045288 235.635681152 236.55078125 236.804779053 237.523483276 237.864471436 238.380081177 238.977828979 239.412216187 240.212432861 240.507278442 240.836090088 241.101394653 240.688903809 240.544036865 239.753799438 239.075881958 236.071334839 238.768737793 242.770889282 247.064147949 251.135452271 253.767929077 254.376022339 254.357406616 257.572967529 258.917297363 257.498687744 254.476135254 254.139938354 261.99710083 268.44342041 272.537322998 273.679351807 274.036621094 274.722412109 275.28024292 275.771820068 276.481567383 277.411804199 278.731018066 280.201080322 281.270935059 282.112487793 282.982788086 283.883331299 284.920501709 285.938354492 286.850524902 287.859191895 288.943115234 290.038848877 290.927337646 291.58102417 292.171020508 292.916320801 293.753143311 294.38861084 294.874847412 295.40637207 295.951690674 296.576049805 297.192932129 297.630157471 298.0262146 298.579742432 298.976623535 299.287384033 299.622894287 299.99899292 300.310852051 300.558227539 300.789001465 300.985443115 301.061248779 300.960388184 300.873138428 300.845489502 300.639770508 300.339508057 300.004699707 299.812591553 299.947479248 300.205810547 300.260742188 300.060577393 299.749847412 299.319519043 298.915496826 298.537902832 298.115020752 297.77645874 297.573730469 297.339996338 296.994415283 296.579589844 295.923614502 294.987243652 294.00289917 293.013397217 292.116851807 291.288909912 290.523956299 289.617706299 288.622741699 287.592773438 286.247711182 284.438049316 282.273925781 279.750518799 277.128295898 275.072631836 273.644165039 272.643035889 271.892608643 271.424865723 271.259460449 271.430175781 271.481658936 270.878112793 269.60269165 267.669586182 264.261413574 259.931884766 255.875701904 253.934844971 252.143569946 250.256332397 248.597976685 247.807220459 248.507110596 248.646896362 248.827819824 248.731964111 248.322189331 247.17741394 246.07623291 245.713607788 245.200332642 244.867980957 244.411193848 243.875518799 243.124023438 242.489425659 242.111312866 225.37121582 229.965667725 236.00730896 241.517120361 245.98487854 247.723480225 247.238235474 247.238357544 249.908111572 250.837905884 249.434997559 246.345565796 245.733718872 251.144180298 257.098419189 264.004974365 268.16595459 270.286437988 271.666107178 272.641479492 273.434875488 274.270965576 275.13470459 276.305175781 277.750701904 279.028198242 280.204742432 281.353637695 282.579437256 283.950653076 285.165771484 286.173095703 287.309570312 288.690307617 290.080474854 291.113464355 291.848297119 292.474273682 293.107788086 293.777832031 294.33380127 294.800750732 295.368530273 296.02154541 296.73727417 297.449981689 298.026428223 298.529296875 299.094299316 299.466888428 299.749298096 300.052093506 300.375030518 300.640594482 300.897674561 301.130401611 301.263244629 301.203277588 300.928497314 300.709197998 300.654510498 300.403778076 299.913116455 299.632263184 299.836120605 300.211395264 300.383605957 300.276184082 300.040557861 299.763183594 299.383331299 298.981140137 298.617462158 298.242675781 297.896209717 297.610351562 297.388000488 297.15838623 296.784759521 296.102050781 295.074859619 293.875732422 292.691833496 291.791473389 291.003875732 290.30645752 289.549041748 288.713317871 287.765380859 286.489624023 284.848022461 282.936187744 280.631134033 278.207458496 276.242889404 274.630310059 273.396270752 272.564056396 272.197845459 272.075775146 271.886016846 271.402832031 270.425445557 268.874755859 266.691741943 262.854766846 258.646118164 253.099655151 250.546966553 248.69102478 247.271789551 246.315322876 246.102508545 245.043731689 244.34942627 244.409545898 245.39642334 246.048187256 246.302993774 246.741378784 246.942245483 246.462600708 245.263168335 244.428939819 243.506958008 242.783493042 241.925964355 240.95199585 246.341278076 248.545593262 252.006072998 256.144714355 260.33505249 263.281799316 264.295471191 264.348480225 265.826141357 267.328857422 266.023498535 263.672821045 262.996276855 267.665679932 271.155853271 272.683685303 272.875366211 273.282226562 274.061981201 274.547973633 275.023254395 275.778320312 276.900695801 278.366546631 279.789154053 280.719787598 281.484313965 282.187744141 282.895812988 284.070617676 285.325164795 286.186889648 287.098236084 287.8309021 288.982879639 290.178009033 291.142730713 292.002593994 292.812683105 293.566925049 294.2159729 294.749389648 295.229187012 295.750640869 296.333221436 296.816711426 297.286804199 297.90423584 298.549285889 298.969909668 299.401977539 299.768829346 300.014892578 300.37286377 300.803222656 301.018218994 301.091064453 301.124511719 301.073303223 300.964111328 300.759155273 300.251983643 299.713226318 299.394622803 299.354248047 299.710021973 300.260223389 300.526092529 300.414978027 300.11529541 299.694549561 299.213897705 298.763275146 298.388275146 298.034942627 297.746582031 297.481689453 297.21206665 296.929656982 296.429168701 295.612976074 294.689880371 293.788238525 293.030273438 292.309936523 291.562591553 290.58770752 289.454528809 288.28604126 286.924713135 285.193908691 283.206298828 281.005737305 278.489105225 276.287689209 274.659332275 273.628265381 273.052825928 272.851013184 272.737701416 272.562225342 272.178894043 271.305389404 270.042694092 268.359954834 264.339813232 255.625610352 242.960494995 238.832000732 238.451766968 237.07749939 235.505828857 235.4453125 236.333984375 236.73274231 237.590332031 237.825973511 238.247238159 238.710754395 239.204818726 240.013275146 240.331985474 240.69744873 240.996994019 240.668151855 240.564697266 239.783828735 239.091247559 236.184158325 238.910400391 243.097076416 247.511047363 251.701049805 254.233795166 254.729873657 254.732727051 257.752319336 260.23059082 259.381958008 256.279968262 256.242431641 263.855499268 269.307220459 272.733520508 273.649414062 274.061218262 274.811431885 275.392181396 275.91796875 276.646270752 277.615264893 278.945953369 280.350799561 281.346984863 282.158569336 283.010620117 283.901397705 285.018768311 285.990081787 286.17980957 287.6355896 288.594085693 289.822937012 290.94543457 291.677429199 292.209228516 292.959197998 293.811737061 294.372253418 294.805145264 295.339416504 295.888763428 296.503875732 297.117584229 297.53704834 297.884185791 298.414001465 298.876373291 299.258178711 299.565979004 299.842590332 300.168365479 300.520690918 300.766571045 300.91986084 301.013000488 300.957183838 300.876373291 300.828094482 300.616851807 300.301300049 299.946746826 299.761962891 299.914550781 300.180145264 300.227416992 300.037231445 299.752746582 299.323059082 298.914001465 298.53994751 298.114105225 297.746612549 297.526550293 297.293762207 296.942993164 296.527435303 295.88885498 294.953186035 293.921020508 292.886352539 291.993988037 291.186309814 290.431243896 289.542755127 288.536193848 287.428253174 286.036315918 284.335021973 282.329345703 279.92666626 277.312255859 275.284240723 273.855804443 272.870452881 272.171600342 271.746643066 271.615234375 271.797851562 271.897338867 271.512939453 270.686950684 269.176635742 265.916412354 260.825897217 256.100524902 254.181442261 252.35043335 250.542984009 248.841445923 248.259628296 248.654556274 248.547119141 248.88710022 248.740097046 248.22946167 246.95223999 245.922637939 245.562454224 245.087646484 244.808883667 244.368103027 243.770614624 243.075668335 242.471252441 242.096786499 225.559127808 230.202560425 236.33039856 242.055709839 246.571258545 248.026550293 247.197631836 247.311706543 250.020584106 251.971328735 251.024703979 247.87739563 247.075012207 252.427001953 257.654968262 264.311065674 268.244598389 270.344329834 271.752593994 272.736358643 273.528808594 274.374572754 275.295684814 276.512084961 277.926879883 279.155181885 280.293914795 281.391906738 282.566772461 283.970855713 285.057128906 285.288665771 286.937683105 288.371124268 289.937255859 291.128479004 291.921386719 292.527709961 293.131469727 293.761505127 294.271087646 294.72543335 295.282989502 295.92590332 296.648010254 297.358276367 297.904754639 298.342895508 298.84072876 299.264312744 299.663116455 300.035797119 300.262237549 300.454101562 300.764404297 301.086242676 301.248352051 301.171936035 300.862854004 300.631439209 300.602294922 300.362182617 299.811004639 299.423736572 299.605957031 300.062164307 300.323303223 300.234558105 299.999725342 299.743225098 299.37020874 298.970123291 298.594543457 298.200073242 297.843383789 297.553833008 297.3230896 297.083374023 296.704101562 296.021270752 295.016357422 293.824432373 292.597259521 291.667419434 290.889526367 290.163269043 289.373687744 288.537567139 287.593261719 286.338043213 284.777801514 282.929199219 280.704101562 278.384521484 276.547698975 274.994903564 273.812347412 272.996429443 272.552886963 272.308837891 272.123748779 271.825439453 271.242523193 270.273834229 268.582092285 264.9949646 259.294250488 253.203903198 250.473083496 248.815261841 247.344268799 246.153839111 245.92414856 244.983856201 244.500152588 244.620925903 245.448577881 245.807144165 246.086761475 246.611862183 246.811477661 246.347854614 245.229125977 244.461410522 243.506484985 242.757232666 241.881286621 240.929244995 246.377716064 248.656906128 252.19178772 256.518890381 260.774536133 263.716156006 264.829925537 264.878692627 266.470581055 268.396148682 267.874237061 265.300598145 264.502258301 269.156585693 271.586883545 272.513397217 272.646881104 273.194458008 274.129638672 274.672912598 275.136138916 275.890533447 277.040588379 278.487182617 279.838989258 280.767486572 281.536315918 282.2003479 282.954620361 284.180297852 285.539703369 286.480072021 287.187744141 287.834381104 288.974914551 290.332366943 291.435668945 292.302947998 293.012023926 293.680847168 294.265350342 294.728546143 295.123809814 295.597412109 296.203094482 296.72454834 297.183654785 297.7449646 298.356079102 298.900970459 299.391967773 299.66317749 299.768798828 300.122467041 300.65447998 300.907562256 300.969573975 301.031219482 301.040771484 300.979064941 300.769683838 300.234130859 299.668945312 299.352539062 299.331085205 299.681243896 300.209625244 300.496612549 300.40637207 300.08706665 299.656707764 299.192932129 298.736114502 298.346954346 297.984161377 297.661254883 297.389648438 297.155609131 296.882598877 296.37322998 295.59375 294.666442871 293.678924561 292.850860596 292.130279541 291.386901855 290.427398682 289.32409668 288.134094238 286.735443115 285.05291748 283.135559082 280.960845947 278.5574646 276.444061279 274.865783691 273.849884033 273.3331604 273.163787842 273.010009766 272.727294922 272.283782959 271.443481445 270.309051514 268.860534668 264.875183105 256.533325195 243.128540039 238.609741211 238.159164429 237.170547485 235.396148682 235.525390625 235.919418335 236.544250488 237.611785889 237.858352661 238.284469604 238.664413452 239.12310791 239.836044312 240.188415527 240.532852173 240.862701416 240.732925415 240.613189697 239.810806274 239.107528687 236.183013916 239.026062012 243.241394043 247.883728027 252.197891235 254.632171631 255.049804688 255.059997559 258.137878418 261.542419434 261.614654541 258.601135254 258.527130127 265.535644531 270.174072266 272.87689209 273.620941162 274.116973877 274.913238525 275.498382568 276.058227539 276.80279541 277.774749756 279.068267822 280.414550781 281.393890381 282.241210938 283.077423096 283.920623779 284.994842529 286.030731201 285.86730957 287.240142822 288.411193848 289.66305542 290.937103271 291.747436523 292.295562744 293.056884766 293.87902832 294.360443115 294.770874023 295.311981201 295.852416992 296.449157715 297.031799316 297.429382324 297.811340332 298.310668945 298.801116943 299.226318359 299.544921875 299.779571533 300.13092041 300.530853271 300.726531982 300.863586426 301.008514404 300.99041748 300.894927979 300.842468262 300.625671387 300.250701904 299.838409424 299.674102783 299.876281738 300.175292969 300.219024658 300.022247314 299.750854492 299.342193604 298.939361572 298.563354492 298.145812988 297.750762939 297.481567383 297.249603271 296.927612305 296.502655029 295.842163086 294.904846191 293.842254639 292.747344971 291.822723389 291.01675415 290.277923584 289.427429199 288.445922852 287.280273438 285.836364746 284.225006104 282.36605835 280.056182861 277.531555176 275.521759033 274.078674316 273.081390381 272.444580078 272.135437012 272.13659668 272.290771484 272.275299072 271.911712646 271.257843018 269.996368408 266.806304932 261.49508667 256.495391846 254.227218628 252.178619385 250.743591309 249.182449341 248.631958008 248.544113159 248.400665283 248.888580322 248.683074951 248.177215576 246.890487671 245.801589966 245.369277954 244.942214966 244.756515503 244.285247803 243.69670105 243.040100098 242.452255249 242.082366943 225.659072876 230.495376587 236.736419678 242.572891235 247.072189331 248.270202637 246.986801147 247.107757568 250.074966431 253.000976562 252.509048462 249.681442261 248.51991272 253.365707397 258.425170898 264.605438232 268.332489014 270.41696167 271.853088379 272.838623047 273.620513916 274.464599609 275.423950195 276.659606934 278.039245605 279.236877441 280.372894287 281.442077637 282.559265137 283.809783936 284.834106445 284.398864746 286.162658691 287.950653076 289.641784668 291.009857178 291.936584473 292.609985352 293.195556641 293.763275146 294.212341309 294.63772583 295.167877197 295.802703857 296.572113037 297.299743652 297.820404053 298.248809814 298.700042725 299.126617432 299.617980957 300.047790527 300.19140625 300.306976318 300.604614258 300.892578125 301.070953369 301.100494385 300.860931396 300.628967285 300.587585449 300.34979248 299.747619629 299.255310059 299.380828857 299.897399902 300.240356445 300.181793213 299.948577881 299.704345703 299.354003906 298.95880127 298.56463623 298.137145996 297.764099121 297.455169678 297.2003479 296.972259521 296.61618042 295.93536377 294.95022583 293.770172119 292.495819092 291.501098633 290.707366943 289.956390381 289.16796875 288.377349854 287.441864014 286.195251465 284.720123291 282.93536377 280.752166748 278.569763184 276.822357178 275.340484619 274.183105469 273.419769287 272.972351074 272.687866211 272.440948486 272.17565918 271.787445068 271.090698242 269.68081665 266.214752197 260.139709473 253.621139526 250.566177368 248.961746216 247.468170166 246.183380127 245.877655029 244.972045898 244.581710815 244.835968018 245.415878296 245.57069397 246.060882568 246.498733521 246.690338135 246.211776733 245.140609741 244.419876099 243.532562256 242.754608154 241.844085693 240.905792236 246.409866333 248.76953125 252.471679688 256.927307129 261.175567627 264.125305176 265.279815674 265.383514404 267.044067383 269.095703125 269.34753418 267.354919434 266.661468506 270.090911865 271.853881836 272.339508057 272.473693848 273.163085938 274.202880859 274.784362793 275.226715088 275.968170166 277.086425781 278.482452393 279.806152344 280.773529053 281.543151855 282.19708252 283.034729004 284.275787354 285.69229126 286.90625 287.426208496 288.20211792 289.231506348 290.412963867 291.475006104 292.413848877 293.131164551 293.73348999 294.285980225 294.734161377 295.056243896 295.44744873 296.058746338 296.621795654 297.088684082 297.642242432 298.277893066 298.88192749 299.373077393 299.597381592 299.698822021 300.051879883 300.560211182 300.809783936 300.902832031 301.007598877 301.049682617 300.984619141 300.736999512 300.200500488 299.672058105 299.360778809 299.309936523 299.613677979 300.12902832 300.471252441 300.416748047 300.050445557 299.590179443 299.145812988 298.701568604 298.315155029 297.951629639 297.567352295 297.260040283 297.064239502 296.798736572 296.25668335 295.500549316 294.59967041 293.557067871 292.659088135 291.918457031 291.160247803 290.210418701 289.159912109 287.979827881 286.565917969 284.930297852 283.060852051 280.89855957 278.631652832 276.607696533 275.074859619 274.074401855 273.589294434 273.399719238 273.177429199 272.827423096 272.390960693 271.556182861 270.388580322 268.971221924 265.045440674 257.212097168 243.895721436 238.804595947 238.042434692 236.980941772 235.192749023 235.396636963 235.784927368 236.210144043 237.57232666 237.947540283 238.421875 238.718215942 239.178665161 239.74395752 240.044067383 240.378677368 240.740722656 240.793624878 240.64125061 239.848739624 239.120834351 236.204147339 239.147918701 243.524642944 248.291152954 252.648330688 254.99949646 255.273193359 255.284194946 258.645782471 262.507324219 263.444061279 261.573547363 262.123504639 267.02444458 270.858764648 272.96661377 273.619659424 274.200408936 275.0 275.574401855 276.163635254 276.921325684 277.859832764 279.083526611 280.38381958 281.390960693 282.263336182 283.097686768 283.958374023 285.010192871 286.162353516 286.526763916 286.972473145 288.720367432 289.899047852 291.019592285 291.802185059 292.474304199 293.279388428 293.985198975 294.380706787 294.810546875 295.342987061 295.81427002 296.376159668 296.953155518 297.355438232 297.765899658 298.299743652 298.814483643 299.259063721 299.594512939 299.833831787 300.187652588 300.550994873 300.705718994 300.842285156 300.994262695 300.957885742 300.897369385 300.898651123 300.684265137 300.22366333 299.740081787 299.570098877 299.788421631 300.119689941 300.208465576 300.03527832 299.759002686 299.342926025 298.916931152 298.531433105 298.166046143 297.793792725 297.455688477 297.172851562 296.87689209 296.462127686 295.783691406 294.854888916 293.775512695 292.613616943 291.63470459 290.791748047 290.025360107 289.199035645 288.286224365 287.12991333 285.67074585 284.129089355 282.38458252 280.155731201 277.772888184 275.772460938 274.307250977 273.309020996 272.758422852 272.555938721 272.630340576 272.777313232 272.68447876 272.200256348 271.561645508 270.460205078 267.379455566 262.108337402 257.008483887 254.328262329 252.2762146 250.954696655 249.380340576 248.766143799 248.449264526 248.170928955 248.799758911 248.548141479 248.140670776 246.915710449 245.769638062 245.149017334 244.735977173 244.7109375 244.209564209 243.624359131 242.999832153 242.438171387 242.069091797 225.723648071 230.600799561 237.040130615 243.056732178 247.590118408 248.421783447 246.770950317 246.67326355 250.053207397 253.61340332 253.514007568 251.361297607 249.983398438 254.047332764 259.146331787 264.88671875 268.449645996 270.515289307 271.949493408 272.921661377 273.689849854 274.528900146 275.497161865 276.71762085 278.072479248 279.266571045 280.376922607 281.420562744 282.568969727 283.819091797 284.865600586 284.771148682 285.346618652 287.738861084 289.404083252 290.797607422 291.811218262 292.589599609 293.198791504 293.716156006 294.138916016 294.591217041 295.102233887 295.695159912 296.471374512 297.201019287 297.7137146 298.178131104 298.660369873 299.104919434 299.632171631 300.079345703 300.193847656 300.250152588 300.446289062 300.64352417 300.848419189 301.010650635 300.893829346 300.71282959 300.672973633 300.418121338 299.792816162 299.24597168 299.295074463 299.800323486 300.198272705 300.18359375 299.947387695 299.67376709 299.306396484 298.902191162 298.509613037 298.100982666 297.733001709 297.367553711 297.045135498 296.828918457 296.519317627 295.847808838 294.868347168 293.695861816 292.376647949 291.301971436 290.462646484 289.700531006 288.932434082 288.211486816 287.29397583 286.056945801 284.657897949 282.947113037 280.800689697 278.768951416 277.099029541 275.677124023 274.518341064 273.798583984 273.362335205 273.088806152 272.86340332 272.607727051 272.206451416 271.593658447 270.350341797 267.009246826 261.198242188 254.421295166 250.979125977 249.21937561 247.737609863 246.301971436 245.987106323 245.155288696 244.665863037 244.955825806 245.23336792 245.428192139 246.076644897 246.476989746 246.612762451 246.066574097 245.007141113 244.407440186 243.57232666 242.745498657 241.823379517 240.884109497 246.440887451 248.877685547 252.660018921 257.293060303 261.586120605 264.453765869 265.642028809 265.749206543 267.496520996 269.567352295 270.093200684 269.38494873 269.211608887 270.908996582 272.0206604 272.191070557 272.352111816 273.160095215 274.270782471 274.87310791 275.301696777 276.01651001 277.075897217 278.408630371 279.721160889 280.727203369 281.49017334 282.16104126 283.101135254 284.440490723 285.772521973 287.184692383 287.913116455 288.447174072 289.628875732 290.612304688 291.557983398 292.56060791 293.29284668 293.817993164 294.300628662 294.70501709 294.975219727 295.326141357 295.928924561 296.505828857 296.984191895 297.557769775 298.215087891 298.820343018 299.302856445 299.548736572 299.699005127 300.060241699 300.528533936 300.781829834 300.920806885 301.052947998 301.083190918 300.975219727 300.687988281 300.180358887 299.679870605 299.337036133 299.248657227 299.533935547 300.043395996 300.412811279 300.394958496 300.020294189 299.551391602 299.108276367 298.655639648 298.265716553 297.91696167 297.507781982 297.177001953 296.998321533 296.72857666 296.161956787 295.406280518 294.510131836 293.460540771 292.552032471 291.782806396 290.976715088 290.031616211 289.033721924 287.868927002 286.43637085 284.819335938 282.93963623 280.771270752 278.669677734 276.73727417 275.236907959 274.257598877 273.779663086 273.556945801 273.280639648 272.850250244 272.410583496 271.635620117 270.419921875 268.903167725 265.257995605 257.172729492 246.692474365 239.203155518 237.87902832 236.860992432 235.098129272 235.194839478 235.769989014 236.123382568 237.487472534 238.109436035 238.57623291 238.812438965 239.282485962 239.710922241 239.927658081 240.228027344 240.711517334 240.831863403 240.688369751 239.877548218 239.131668091 236.303833008 239.292617798 243.79359436 248.660385132 253.067337036 255.304992676 255.453811646 255.511611938 259.050140381 263.20489502 264.65322876 264.375244141 265.171630859 268.325195312 271.389404297 273.029388428 273.640380859 274.283355713 275.070281982 275.638641357 276.254943848 277.021789551 277.90927124 279.053375244 280.297790527 281.322235107 282.200073242 283.04107666 283.957275391 285.095733643 286.295837402 287.434234619 287.827087402 288.603881836 290.232055664 291.254394531 291.991577148 292.832000732 293.664245605 294.188201904 294.444885254 294.846435547 295.33190918 295.761505127 296.315826416 296.907623291 297.333068848 297.773010254 298.331970215 298.850708008 299.288574219 299.635101318 299.903106689 300.248779297 300.558959961 300.711486816 300.854003906 300.955566406 300.895568848 300.905639648 300.954772949 300.699645996 300.14743042 299.613769531 299.448150635 299.687438965 300.048797607 300.172668457 300.019958496 299.748474121 299.337738037 298.896484375 298.492462158 298.152526855 297.80657959 297.433166504 297.114624023 296.832702637 296.422851562 295.736785889 294.797302246 293.677398682 292.460510254 291.462280273 290.623474121 289.834197998 289.006713867 288.143554688 287.021942139 285.5652771 284.039123535 282.334381104 280.1925354 277.990600586 276.000701904 274.505126953 273.538513184 273.093414307 272.987335205 273.062316895 273.106964111 272.941314697 272.4296875 271.746704102 270.70489502 267.916107178 262.528961182 258.109283447 254.570587158 252.427993774 251.194793701 249.394683838 248.630874634 248.683959961 247.907394409 248.567718506 248.40802002 248.046905518 246.945373535 245.784881592 244.947311401 244.541183472 244.615966797 244.227890015 243.557449341 242.948379517 242.425262451 242.056610107 225.849838257 230.960266113 237.339416504 243.502944946 248.000701904 248.421447754 246.400985718 246.159896851 249.936340332 253.946685791 254.200668335 252.729476929 251.459014893 254.677734375 259.821289062 265.17880249 268.596588135 270.627319336 272.036499023 272.987335205 273.75213623 274.589904785 275.548187256 276.726959229 278.050567627 279.247772217 280.332611084 281.336273193 282.51864624 283.946533203 285.030761719 285.73425293 285.7081604 287.093139648 289.191680908 290.615356445 291.6612854 292.564300537 293.217315674 293.661102295 294.048339844 294.537078857 295.039886475 295.60345459 296.360931396 297.071228027 297.586456299 298.103515625 298.627716064 299.073272705 299.605224609 300.065612793 300.196960449 300.252990723 300.382537842 300.506286621 300.737182617 300.970458984 300.923950195 300.791717529 300.763031006 300.467651367 299.789459229 299.181915283 299.1612854 299.670257568 300.144897461 300.169464111 299.919036865 299.627563477 299.268585205 298.863739014 298.466003418 298.065887451 297.706573486 297.316589355 296.951782227 296.720275879 296.413146973 295.731689453 294.747253418 293.58605957 292.261993408 291.165222168 290.313018799 289.531982422 288.727966309 287.983978271 287.056274414 285.842651367 284.517242432 282.874603271 280.839385986 278.992279053 277.386291504 275.976165771 274.822937012 274.130859375 273.728820801 273.486999512 273.267211914 272.988922119 272.555969238 271.911071777 270.716918945 267.700286865 261.839599609 256.070220947 251.485107422 249.497711182 248.032440186 246.482223511 246.13734436 246.059356689 244.845275879 244.890823364 245.011138916 245.334518433 246.078842163 246.489456177 246.544876099 245.946762085 244.865280151 244.500701904 243.651489258 242.737213135 241.806518555 240.863677979 246.471054077 248.975692749 252.935638428 257.659210205 261.957305908 264.766448975 265.901702881 266.168945312 268.274658203 269.872344971 270.508880615 270.433502197 270.726043701 271.641357422 272.128875732 272.069244385 272.2684021 273.158813477 274.309020996 274.939331055 275.367858887 276.038391113 277.027374268 278.2840271 279.579315186 280.613250732 281.391021729 282.09866333 283.111236572 284.54586792 285.808746338 287.254821777 288.47869873 288.959503174 289.905700684 290.992767334 291.838867188 292.84362793 293.551239014 293.959991455 294.297576904 294.610321045 294.8565979 295.244903564 295.847961426 296.402038574 296.89553833 297.501403809 298.151885986 298.728302002 299.215698242 299.52935791 299.742370605 300.100952148 300.528594971 300.788970947 300.950195312 301.081634521 301.092132568 300.95703125 300.65524292 300.188781738 299.694519043 299.289611816 299.177764893 299.48928833 299.990905762 300.330413818 300.337554932 300.000701904 299.544036865 299.085479736 298.614776611 298.206085205 297.856750488 297.441711426 297.110168457 296.937805176 296.655578613 296.086608887 295.338867188 294.434570312 293.399169922 292.498413086 291.691986084 290.824371338 289.879638672 288.921936035 287.755432129 286.326782227 284.731964111 282.815948486 280.617126465 278.624786377 276.776916504 275.332519531 274.404785156 273.904418945 273.66229248 273.362945557 272.874359131 272.390228271 271.656219482 270.461914062 268.877441406 265.603210449 258.267700195 248.693115234 239.974472046 237.693252563 236.300033569 235.050994873 235.054244995 235.56678772 236.109146118 237.424575806 238.346496582 238.743850708 238.957641602 239.362426758 239.730484009 239.82800293 240.117416382 240.683425903 240.871078491 240.719772339 239.890686035 239.138870239 236.408843994 239.406005859 244.032867432 249.041748047 253.432876587 255.570419312 255.557388306 255.673583984 260.365631104 263.659851074 265.467712402 265.941955566 266.925384521 269.424316406 271.788757324 273.065307617 273.672607422 274.362304688 275.128051758 275.700836182 276.343933105 277.10736084 277.935150146 278.99697876 280.166137695 281.177093506 282.064331055 282.922149658 283.865844727 285.115814209 286.357971191 287.714477539 288.911315918 288.958068848 290.148284912 291.59173584 292.341369629 293.320251465 294.127410889 294.428100586 294.512786865 294.832550049 295.272399902 295.734924316 296.329467773 296.924926758 297.358398438 297.813842773 298.367248535 298.873382568 299.298248291 299.666625977 299.982116699 300.306671143 300.559295654 300.720001221 300.868560791 300.910675049 300.859161377 300.951080322 301.008209229 300.682556152 300.058410645 299.493713379 299.332489014 299.615112305 300.013549805 300.149749756 299.993255615 299.717590332 299.323455811 298.891143799 298.473419189 298.120819092 297.770141602 297.384552002 297.059112549 296.787353516 296.381195068 295.707275391 294.761444092 293.578094482 292.299804688 291.285949707 290.46975708 289.674041748 288.852844238 288.036193848 286.951660156 285.517059326 283.978363037 282.237976074 280.160827637 278.123321533 276.172821045 274.681396484 273.792388916 273.42401123 273.379150391 273.40826416 273.305267334 273.064880371 272.563659668 271.875640869 270.836273193 268.497375488 263.582580566 258.767547607 255.126647949 252.512588501 251.350860596 249.564575195 248.49760437 248.568435669 247.453170776 248.261825562 248.295959473 247.958969116 246.977279663 245.898300171 244.89390564 244.36505127 244.487197876 244.207000732 243.484130859 242.899398804 242.404159546 242.044189453 225.974075317 231.131820679 237.768325806 243.980545044 248.343612671 248.425125122 245.991394043 245.631622314 251.270690918 254.058197021 254.630783081 253.71333313 253.113586426 255.625305176 260.48046875 265.476257324 268.764801025 270.748687744 272.116394043 273.045959473 273.817901611 274.661590576 275.594451904 276.710021973 277.979553223 279.170593262 280.23626709 281.206665039 282.384155273 283.984069824 285.21081543 286.149627686 286.95111084 286.867156982 288.599517822 290.485717773 291.523925781 292.573944092 293.29888916 293.650848389 293.965270996 294.450714111 294.952453613 295.534637451 296.282012939 296.958557129 297.471221924 298.033111572 298.579711914 299.021850586 299.553253174 300.025665283 300.20123291 300.289581299 300.383575439 300.465698242 300.722076416 300.986450195 300.952667236 300.85256958 300.828704834 300.482757568 299.746398926 299.076019287 298.99420166 299.524902344 300.086212158 300.132415771 299.851867676 299.549102783 299.222106934 298.835693359 298.431182861 298.010375977 297.643310547 297.262176514 296.890350342 296.631896973 296.297271729 295.597259521 294.595581055 293.432891846 292.124694824 291.036743164 290.190612793 289.378112793 288.501098633 287.686523438 286.735839844 285.579772949 284.313934326 282.702301025 280.793395996 279.141326904 277.627838135 276.247467041 275.151733398 274.450958252 274.063568115 273.837188721 273.592895508 273.267059326 272.766784668 272.064727783 270.884338379 268.37298584 263.210876465 257.084838867 252.205657959 249.858566284 248.183685303 246.778640747 246.355957031 246.520996094 244.9269104 244.654556274 244.858001709 245.320236206 246.115570068 246.481384277 246.43927002 245.782485962 244.821014404 244.540649414 243.70854187 242.718383789 241.785919189 240.845199585 246.504943848 249.072036743 253.142562866 258.014465332 262.315490723 265.038208008 266.109863281 266.51260376 268.586608887 270.015167236 270.645172119 270.89175415 271.372589111 272.075683594 272.195373535 271.971160889 272.20513916 273.148864746 274.309967041 274.986328125 275.434875488 276.047149658 276.94543457 278.09552002 279.33505249 280.374755859 281.192718506 281.971801758 283.038360596 284.505249023 285.826446533 287.226043701 288.739501953 289.830627441 290.428985596 290.879638672 292.10269165 292.671722412 293.569732666 294.051605225 294.258605957 294.464477539 294.7237854 295.209991455 295.808685303 296.307983398 296.839599609 297.501861572 298.111114502 298.64263916 299.174133301 299.56640625 299.822753906 300.156860352 300.532836914 300.783569336 300.931213379 301.025299072 301.05368042 300.936279297 300.643310547 300.212097168 299.720977783 299.247619629 299.10647583 299.453948975 299.949676514 300.251220703 300.269165039 299.983764648 299.519622803 299.030517578 298.571289062 298.1640625 297.778839111 297.335449219 297.012878418 296.83972168 296.532714844 295.98059082 295.278411865 294.38192749 293.369049072 292.476226807 291.628814697 290.700836182 289.752288818 288.799743652 287.611175537 286.218688965 284.662811279 282.713867188 280.518188477 278.578186035 276.768218994 275.384643555 274.537994385 274.031463623 273.784820557 273.498535156 272.968322754 272.409545898 271.680511475 270.518890381 269.020721436 266.023284912 259.251098633 249.564346313 241.664031982 238.23387146 236.287063599 234.946670532 235.104263306 235.659408569 236.137283325 237.417602539 238.66545105 238.936981201 239.076599121 239.454437256 239.751190186 239.748733521 240.067749023 240.654891968 240.915023804 240.734817505 239.905502319 239.143692017 236.414291382 239.495269775 244.257675171 249.504058838 253.774719238 255.740661621 255.556091309 255.709396362 260.713256836 263.879425049 265.970916748 266.910797119 268.120269775 270.292053223 272.077880859 273.07901001 273.706695557 274.440856934 275.174438477 275.768615723 276.437530518 277.169769287 277.925964355 278.896789551 279.967559814 280.926177979 281.824951172 282.719177246 283.671386719 284.975860596 286.331970215 287.756835938 289.277770996 290.364715576 290.771942139 291.033477783 292.412384033 292.841217041 293.862457275 294.518951416 294.50680542 294.754425049 295.194030762 295.7527771 296.394104004 296.94909668 297.383544922 297.864868164 298.389862061 298.869293213 299.31463623 299.738739014 300.091033936 300.365356445 300.534423828 300.689331055 300.830657959 300.830627441 300.836883545 300.976928711 300.990203857 300.609741211 299.984588623 299.389862061 299.183380127 299.511138916 299.975372314 300.145019531 299.999847412 299.70526123 299.301086426 298.877441406 298.463226318 298.094604492 297.720672607 297.313842773 296.97756958 296.706359863 296.307189941 295.677307129 294.754882812 293.50982666 292.16986084 291.119812012 290.302062988 289.502349854 288.705108643 287.921691895 286.875274658 285.496459961 283.946868896 282.143737793 280.152832031 278.24987793 276.354034424 274.865112305 274.053161621 273.739776611 273.736114502 273.680755615 273.437866211 273.139312744 272.68572998 272.012298584 271.063568115 269.08782959 264.65914917 259.241577148 256.016601562 253.058456421 251.696777344 249.743988037 248.372665405 248.409103394 246.948242188 247.939208984 248.308227539 247.929092407 247.022796631 246.044036865 244.845657349 244.207946777 244.357284546 244.13949585 243.42250061 242.842483521 242.379806519 242.031692505 225.872894287 231.316131592 238.070510864 244.406646729 248.698318481 248.365066528 245.549758911 245.067642212 251.397964478 253.936279297 254.69342041 254.206710815 253.979949951 256.521850586 261.158569336 265.80255127 268.959228516 270.878265381 272.192016602 273.108917236 273.895050049 274.752655029 275.64654541 276.67288208 277.847503662 279.000946045 280.05065918 281.015258789 282.189178467 283.870880127 285.347045898 286.471435547 287.562286377 288.515411377 288.828216553 289.382629395 291.040588379 291.728027344 292.9609375 293.634490967 293.879577637 294.315979004 294.836730957 295.469238281 296.205718994 296.847381592 297.367614746 297.967071533 298.525695801 298.983734131 299.526794434 300.004974365 300.200195312 300.307678223 300.371917725 300.450531006 300.760131836 301.035980225 300.973632812 300.867919922 300.809326172 300.43371582 299.699981689 299.009735107 298.860229492 299.392852783 300.036407471 300.102905273 299.810150146 299.493347168 299.157653809 298.77734375 298.391387939 297.956451416 297.559997559 297.178955078 296.803833008 296.519714355 296.169525146 295.470581055 294.439056396 293.243652344 291.957244873 290.87487793 290.034454346 289.185119629 288.249298096 287.365356445 286.390930176 285.30569458 284.088043213 282.473266602 280.680114746 279.17074585 277.731567383 276.434417725 275.478851318 274.812530518 274.391296387 274.108856201 273.806152344 273.443115234 272.918182373 272.144042969 271.083557129 269.019866943 264.453552246 257.605407715 253.211471558 250.417144775 248.561416626 247.116943359 246.692871094 246.772644043 244.885360718 244.510482788 244.811569214 245.365203857 246.167922974 246.507476807 246.321334839 245.634002686 244.829101562 244.52696228 243.765304565 242.674072266 241.763214111 240.835250854 246.540176392 249.17729187 253.374908447 258.326782227 262.62612915 265.322357178 266.263153076 266.839385986 268.707092285 269.956726074 270.455383301 270.903442383 271.609588623 272.262451172 272.203460693 271.925079346 272.175567627 273.130767822 274.273590088 275.009460449 275.48739624 276.055786133 276.874206543 277.910858154 279.047851562 280.059173584 280.928253174 281.778411865 282.878967285 284.344970703 285.753662109 287.160552979 288.743621826 290.070404053 290.814849854 290.602355957 291.21963501 293.163604736 293.671234131 293.939941406 294.192199707 294.403442383 294.703308105 295.239196777 295.799377441 296.24420166 296.805938721 297.480499268 298.045318604 298.535858154 299.087005615 299.530639648 299.808746338 300.129150391 300.504211426 300.76864624 300.887390137 300.959991455 301.016174316 300.941589355 300.637359619 300.211791992 299.741149902 299.239349365 299.037811279 299.363739014 299.876800537 300.206726074 300.239349365 299.970825195 299.482116699 298.956939697 298.510406494 298.144378662 297.742156982 297.26348877 296.93649292 296.756011963 296.411315918 295.86026001 295.204071045 294.337982178 293.354522705 292.461486816 291.566162109 290.587615967 289.621185303 288.635894775 287.420074463 286.08895874 284.603485107 282.646850586 280.497253418 278.554901123 276.760864258 275.449432373 274.698303223 274.197021484 273.940795898 273.706787109 273.174957275 272.527679443 271.767608643 270.613525391 269.183868408 266.381988525 259.983947754 250.49230957 243.930450439 239.142608643 236.656478882 235.184173584 235.182006836 236.03302002 236.281906128 237.628250122 239.117889404 239.140426636 239.144165039 239.551193237 239.759490967 239.715316772 240.009857178 240.677200317 240.945343018 240.753173828 239.911346436 239.148086548 236.387512207 239.613113403 244.491394043 249.849395752 254.083831787 255.883987427 255.527313232 255.669647217 260.766479492 263.903778076 266.163635254 267.37713623 268.810180664 270.75201416 272.201660156 273.068634033 273.74331665 274.497711182 275.193878174 275.825317383 276.501403809 277.187347412 277.87689209 278.758056641 279.738189697 280.642303467 281.55847168 282.491394043 283.456542969 284.737945557 286.142028809 287.574249268 289.156219482 290.484619141 290.995819092 290.140777588 290.455505371 293.482818604 294.17364502 294.301239014 294.411437988 294.690155029 295.15512085 295.770080566 296.374603271 296.875640869 297.356536865 297.890899658 298.398010254 298.852783203 299.318450928 299.795318604 300.151000977 300.351623535 300.476470947 300.649963379 300.780303955 300.763366699 300.79574585 300.900787354 300.822784424 300.425964355 299.84765625 299.224975586 298.97744751 299.337524414 299.870239258 300.104370117 300.017486572 299.744781494 299.322540283 298.873596191 298.448181152 298.084075928 297.720184326 297.290802002 296.914489746 296.630889893 296.23260498 295.628112793 294.711883545 293.431640625 292.076904297 290.988525391 290.115631104 289.282897949 288.511077881 287.752166748 286.754058838 285.466674805 283.931182861 282.072631836 280.184631348 278.373840332 276.559661865 275.124816895 274.349395752 274.015106201 273.99395752 273.935546875 273.617462158 273.262237549 272.852996826 272.203186035 271.32901001 269.634155273 265.609680176 260.064025879 257.068847656 253.767318726 252.187637329 250.08303833 248.443817139 248.261962891 246.78678894 247.663162231 248.349853516 247.995117188 247.148834229 246.108093262 244.822189331 244.152328491 244.309646606 244.128112793 243.313995361 242.787597656 242.356430054 242.019485474 226.084106445 231.608627319 238.349029541 244.812194824 248.90675354 248.213058472 245.057067871 244.557189941 251.032012939 253.553848267 254.359954834 254.366912842 254.850723267 257.469207764 261.812957764 266.093505859 269.120147705 270.976470947 272.253753662 273.170166016 273.964141846 274.829803467 275.689239502 276.633300781 277.706939697 278.785095215 279.82421875 280.8203125 282.019256592 283.689971924 285.299468994 286.589080811 287.827545166 288.976135254 289.265625 288.347045898 289.063049316 292.191986084 293.122131348 293.470336914 293.762207031 294.204498291 294.748168945 295.378662109 296.070343018 296.68057251 297.246551514 297.897338867 298.466583252 298.951049805 299.49017334 299.953857422 300.154876709 300.283447266 300.370147705 300.511932373 300.861633301 301.07925415 300.947357178 300.817840576 300.724365234 300.318603516 299.602935791 298.912841797 298.70993042 299.242279053 299.957824707 300.093658447 299.840576172 299.5284729 299.163421631 298.755889893 298.381011963 297.967376709 297.561798096 297.152404785 296.733154297 296.421173096 296.080322266 295.407409668 294.350646973 293.092590332 291.781707764 290.665161133 289.79473877 288.931182861 287.987976074 287.07510376 286.084075928 285.046295166 283.853637695 282.215637207 280.546691895 279.113220215 277.706268311 276.518310547 275.727813721 275.11505127 274.653381348 274.317138672 273.949462891 273.567382812 273.064453125 272.269073486 271.332519531 269.626068115 265.515167236 258.609344482 254.212295532 251.121078491 249.00302124 247.422210693 246.979751587 246.92628479 244.967758179 244.461471558 244.786712646 245.441772461 246.246109009 246.580429077 246.21913147 245.528320312 244.821411133 244.508102417 243.751571655 242.619628906 241.741500854 240.826477051 246.574539185 249.277206421 253.635955811 258.659545898 262.928283691 265.510650635 266.466705322 267.054107666 268.743438721 269.76348877 270.147003174 270.699066162 271.61932373 272.275604248 272.166687012 271.901977539 272.151489258 273.08770752 274.212341309 275.01272583 275.529846191 276.076660156 276.833862305 277.767578125 278.790496826 279.752655029 280.666442871 281.577178955 282.689331055 284.155731201 285.638977051 287.113037109 288.697662354 290.143432617 291.392791748 291.87008667 291.711853027 293.167022705 293.462554932 293.775268555 294.116333008 294.385559082 294.724273682 295.268432617 295.795837402 296.220245361 296.777618408 297.421142578 297.953735352 298.421783447 298.903259277 299.280426025 299.681915283 299.994415283 300.385467529 300.69039917 300.828765869 300.886383057 300.961608887 300.921234131 300.6199646 300.191864014 299.728820801 299.218353271 298.97052002 299.273254395 299.821716309 300.178924561 300.20703125 299.948272705 299.475891113 298.930389404 298.45223999 298.097991943 297.69744873 297.200714111 296.861968994 296.681121826 296.335174561 295.789459229 295.152160645 294.301971436 293.333831787 292.418029785 291.490783691 290.478790283 289.482147217 288.45223999 287.212036133 285.92666626 284.502716064 282.602081299 280.514862061 278.552398682 276.766418457 275.554870605 274.890319824 274.406829834 274.124298096 273.895751953 273.40536499 272.75112915 271.913879395 270.769256592 269.337158203 266.487976074 260.440246582 250.829376221 245.365386963 240.488082886 237.714416504 235.596954346 235.334014893 236.496765137 236.696868896 238.194580078 239.672897339 239.336975098 239.193084717 239.633331299 239.785293579 239.668380737 239.929046631 240.688186646 240.972366333 240.768661499 239.905395508 239.150512695 236.43157959 239.750228882 244.697143555 250.173721313 254.375671387 255.994979858 255.422805786 255.528045654 260.7762146 263.845733643 266.14855957 267.512237549 269.163879395 270.953643799 272.227539062 273.057647705 273.775878906 274.528137207 275.194488525 275.864868164 276.532806396 277.175445557 277.815093994 278.618682861 279.516113281 280.376190186 281.308410645 282.270812988 283.244506836 284.504150391 285.926605225 287.380004883 288.954284668 290.372344971 291.512329102 291.770202637 291.430328369 293.545257568 293.824188232 294.025848389 294.290649414 294.636566162 295.134368896 295.75378418 296.303131104 296.790740967 297.33706665 297.918579102 298.408630371 298.856811523 299.272918701 299.6355896 300.170928955 300.307373047 300.411834717 300.625427246 300.787445068 300.77822876 300.802520752 300.838165283 300.668273926 300.264190674 299.699432373 299.046112061 298.807739258 299.222320557 299.799072266 300.066925049 300.013092041 299.764129639 299.365722656 298.906646729 298.446044922 298.063079834 297.709899902 297.266967773 296.860473633 296.573394775 296.194580078 295.594696045 294.651245117 293.340057373 291.99319458 290.895263672 289.992614746 289.124938965 288.345550537 287.582946777 286.611053467 285.419891357 283.923400879 282.048034668 280.256347656 278.511383057 276.77734375 275.45413208 274.689239502 274.301879883 274.216949463 274.145385742 273.865631104 273.521789551 273.082061768 272.447601318 271.601654053 269.991882324 266.347320557 260.630096436 257.889404297 254.524032593 252.847457886 250.417694092 248.684463501 248.17414856 246.941009521 247.661575317 248.510131836 248.110076904 247.199783325 246.166748047 244.88520813 244.178955078 244.281921387 244.077362061 243.178466797 242.728530884 242.329437256 242.007278442 226.206115723 231.75491333 238.611999512 245.203796387 249.12210083 248.028305054 244.60887146 244.073623657 250.610305786 253.089645386 254.163284302 254.770309448 255.772415161 258.37008667 262.373565674 266.353088379 269.249938965 271.048492432 272.308868408 273.230834961 274.020233154 274.883056641 275.721862793 276.608093262 277.599700928 278.596496582 279.614837646 280.652130127 281.879577637 283.535705566 285.198913574 286.605804443 287.979675293 289.273345947 290.260528564 290.325866699 289.96484375 292.300811768 292.874847412 293.246551514 293.624816895 294.116821289 294.679229736 295.282043457 295.920410156 296.512298584 297.118286133 297.809509277 298.400909424 298.907409668 299.371917725 299.711730957 300.107208252 300.267028809 300.409057617 300.614318848 300.944519043 301.058685303 300.882629395 300.777099609 300.696289062 300.266448975 299.520996094 298.806854248 298.559875488 299.102294922 299.890075684 300.096221924 299.863342285 299.565887451 299.223907471 298.805084229 298.399475098 297.977905273 297.576049805 297.15737915 296.714508057 296.382598877 296.04486084 295.398254395 294.342712402 293.032531738 291.681121826 290.527923584 289.638275146 288.79119873 287.88885498 286.941040039 285.886810303 284.806152344 283.55947876 281.904022217 280.387969971 279.020294189 277.617828369 276.549072266 275.902160645 275.358886719 274.87802124 274.4921875 274.088195801 273.725463867 273.229797363 272.453918457 271.597351074 270.044342041 266.363006592 259.379943848 255.200912476 251.919586182 249.564346313 247.731704712 247.249450684 247.009643555 245.142776489 244.483139038 244.791351318 245.441055298 246.357299805 246.677902222 246.148727417 245.437561035 244.80696106 244.464080811 243.711776733 242.551376343 241.713256836 240.816558838 246.602493286 249.366653442 253.825271606 258.970184326 263.189147949 265.684997559 266.582702637 267.19039917 268.693359375 269.498199463 269.796325684 270.404571533 271.466186523 272.115112305 272.07144165 271.887207031 272.120666504 273.006896973 274.129760742 275.001708984 275.562011719 276.107177734 276.826721191 277.680725098 278.60168457 279.512084961 280.451629639 281.405303955 282.502624512 283.968078613 285.525878906 287.091796875 288.693511963 290.195526123 291.584503174 292.299072266 292.564422607 292.786010742 293.275390625 293.644104004 294.037628174 294.368133545 294.746032715 295.270690918 295.775665283 296.223205566 296.767944336 297.354522705 297.8671875 298.350646973 298.83291626 299.186737061 299.515472412 299.797851562 300.180328369 300.5496521 300.757080078 300.816772461 300.890350342 300.866424561 300.591003418 300.161804199 299.676086426 299.152191162 298.888549805 299.189147949 299.776428223 300.149719238 300.162261963 299.908508301 299.477478027 298.9296875 298.410491943 298.042236328 297.640594482 297.122039795 296.754516602 296.572357178 296.256958008 295.738708496 295.105957031 294.258148193 293.291717529 292.340026855 291.395355225 290.358337402 289.335021973 288.274291992 287.03024292 285.776885986 284.371917725 282.516021729 280.529754639 278.581207275 276.833496094 275.719665527 275.119842529 274.651977539 274.337005615 274.060913086 273.574432373 272.949401855 272.105010986 270.952697754 269.469451904 266.528930664 260.476654053 251.420028687 246.697540283 242.949142456 238.98097229 236.258361816 235.782730103 236.571807861 237.403106689 238.863342285 240.252868652 239.481033325 239.253311157 239.700576782 239.843643188 239.617294312 239.833267212 240.666213989 241.020339966 240.793563843 239.907470703 239.151077271 236.51260376 239.856582642 244.912811279 250.496780396 254.646362305 256.050018311 255.314041138 255.558151245 260.736328125 263.724060059 265.993499756 267.437072754 269.260620117 270.964782715 272.18838501 273.053497314 273.789306641 274.517791748 275.182830811 275.88772583 276.539215088 277.150054932 277.763122559 278.507385254 279.333221436 280.154541016 281.092041016 282.059326172 283.026702881 284.301513672 285.77822876 287.284912109 288.842193604 290.242218018 291.450836182 292.214477539 292.641967773 293.053314209 293.519256592 293.808624268 294.163635254 294.559448242 295.094940186 295.699066162 296.222717285 296.733886719 297.331726074 297.931640625 298.414337158 298.893676758 299.334228516 299.74786377 300.180877686 300.262054443 300.340484619 300.589294434 300.806518555 300.831726074 300.837921143 300.812713623 300.589324951 300.192657471 299.59588623 298.890197754 298.672576904 299.136291504 299.743591309 300.041992188 299.992797852 299.74307251 299.386108398 298.943847656 298.458007812 298.046295166 297.702484131 297.237884521 296.789611816 296.490997314 296.143463135 295.565216064 294.61138916 293.277526855 291.932220459 290.813842773 289.890838623 288.999053955 288.213745117 287.448059082 286.497467041 285.385894775 283.945220947 282.10546875 280.420257568 278.738952637 277.090759277 275.861114502 275.084625244 274.62286377 274.453125 274.348937988 274.108428955 273.802246094 273.363128662 272.712341309 271.856048584 270.232452393 266.693359375 261.212127686 258.410797119 255.810668945 253.453231812 250.862442017 249.050094604 247.428253174 247.480514526 247.910461426 248.730514526 248.169952393 247.190490723 246.282287598 244.978866577 244.203781128 244.273986816 243.999435425 243.025619507 242.663116455 242.300201416 241.994903564 226.342773438 231.86831665 238.951843262 245.562820435 249.272155762 247.834106445 244.190231323 243.732711792 250.207504272 252.642608643 254.229263306 255.301177979 256.512451172 259.112670898 262.836181641 266.590515137 269.350280762 271.098327637 272.36151123 273.287567139 274.062164307 274.915313721 275.748565674 276.603851318 277.540405273 278.470550537 279.452880859 280.51348877 281.753570557 283.400970459 285.121948242 286.632629395 288.121459961 289.492767334 290.594207764 291.246368408 291.592285156 292.048461914 292.673522949 293.05758667 293.51852417 294.046264648 294.618164062 295.198364258 295.802062988 296.382141113 297.002349854 297.697937012 298.317657471 298.868133545 299.389068604 299.777709961 300.105010986 300.286651611 300.480041504 300.717834473 300.987609863 301.008087158 300.822052002 300.77557373 300.731903076 300.279785156 299.486633301 298.72857666 298.443939209 298.982696533 299.827178955 300.112060547 299.881103516 299.574584961 299.278167725 298.874694824 298.430541992 297.979034424 297.576843262 297.155426025 296.705078125 296.361236572 296.02331543 295.417419434 294.402587891 293.053894043 291.651367188 290.455322266 289.562194824 288.71774292 287.844818115 286.885986328 285.774780273 284.645568848 283.324890137 281.661071777 280.276306152 278.981842041 277.615875244 276.609375 276.033721924 275.551269531 275.0831604 274.679351807 274.253845215 273.921447754 273.445983887 272.670654297 271.844482422 270.349151611 266.780914307 260.329589844 255.880828857 253.151351929 250.179336548 248.140838623 247.565505981 246.567016602 245.667633057 244.61491394 244.845016479 245.526809692 246.465545654 246.744735718 246.104431152 245.373184204 244.787857056 244.415908813 243.668121338 242.474411011 241.675842285 240.805374146 diff --git a/Test/tas_3d_r.asc b/Test/tas_3d_r.asc deleted file mode 100644 index 3915113ff1e5ec6dfecd13bd1be048a53f09d20e..0000000000000000000000000000000000000000 --- a/Test/tas_3d_r.asc +++ /dev/null @@ -1,17 +0,0 @@ -3 -144 -3 -17 -longitude -degrees_east -0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 22.5 25.0 27.5 30.0 32.5 35.0 37.5 40.0 42.5 45.0 47.5 50.0 52.5 55.0 57.5 60.0 62.5 65.0 67.5 70.0 72.5 75.0 77.5 80.0 82.5 85.0 87.5 90.0 92.5 95.0 97.5 100.0 102.5 105.0 107.5 110.0 112.5 115.0 117.5 120.0 122.5 125.0 127.5 130.0 132.5 135.0 137.5 140.0 142.5 145.0 147.5 150.0 152.5 155.0 157.5 160.0 162.5 165.0 167.5 170.0 172.5 175.0 177.5 180.0 182.5 185.0 187.5 190.0 192.5 195.0 197.5 200.0 202.5 205.0 207.5 210.0 212.5 215.0 217.5 220.0 222.5 225.0 227.5 230.0 232.5 235.0 237.5 240.0 242.5 245.0 247.5 250.0 252.5 255.0 257.5 260.0 262.5 265.0 267.5 270.0 272.5 275.0 277.5 280.0 282.5 285.0 287.5 290.0 292.5 295.0 297.5 300.0 302.5 305.0 307.5 310.0 312.5 315.0 317.5 320.0 322.5 325.0 327.5 330.0 332.5 335.0 337.5 340.0 342.5 345.0 347.5 350.0 352.5 355.0 357.5 --1.25 1.25 1.25 3.75 3.75 6.25 6.25 8.75 8.75 11.25 11.25 13.75 13.75 16.25 16.25 18.75 18.75 21.25 21.25 23.75 23.75 26.25 26.25 28.75 28.75 31.25 31.25 33.75 33.75 36.25 36.25 38.75 38.75 41.25 41.25 43.75 43.75 46.25 46.25 48.75 48.75 51.25 51.25 53.75 53.75 56.25 56.25 58.75 58.75 61.25 61.25 63.75 63.75 66.25 66.25 68.75 68.75 71.25 71.25 73.75 73.75 76.25 76.25 78.75 78.75 81.25 81.25 83.75 83.75 86.25 86.25 88.75 88.75 91.25 91.25 93.75 93.75 96.25 96.25 98.75 98.75 101.25 101.25 103.75 103.75 106.25 106.25 108.75 108.75 111.25 111.25 113.75 113.75 116.25 116.25 118.75 118.75 121.25 121.25 123.75 123.75 126.25 126.25 128.75 128.75 131.25 131.25 133.75 133.75 136.25 136.25 138.75 138.75 141.25 141.25 143.75 143.75 146.25 146.25 148.75 148.75 151.25 151.25 153.75 153.75 156.25 156.25 158.75 158.75 161.25 161.25 163.75 163.75 166.25 166.25 168.75 168.75 171.25 171.25 173.75 173.75 176.25 176.25 178.75 178.75 181.25 181.25 183.75 183.75 186.25 186.25 188.75 188.75 191.25 191.25 193.75 193.75 196.25 196.25 198.75 198.75 201.25 201.25 203.75 203.75 206.25 206.25 208.75 208.75 211.25 211.25 213.75 213.75 216.25 216.25 218.75 218.75 221.25 221.25 223.75 223.75 226.25 226.25 228.75 228.75 231.25 231.25 233.75 233.75 236.25 236.25 238.75 238.75 241.25 241.25 243.75 243.75 246.25 246.25 248.75 248.75 251.25 251.25 253.75 253.75 256.25 256.25 258.75 258.75 261.25 261.25 263.75 263.75 266.25 266.25 268.75 268.75 271.25 271.25 273.75 273.75 276.25 276.25 278.75 278.75 281.25 281.25 283.75 283.75 286.25 286.25 288.75 288.75 291.25 291.25 293.75 293.75 296.25 296.25 298.75 298.75 301.25 301.25 303.75 303.75 306.25 306.25 308.75 308.75 311.25 311.25 313.75 313.75 316.25 316.25 318.75 318.75 321.25 321.25 323.75 323.75 326.25 326.25 328.75 328.75 331.25 331.25 333.75 333.75 336.25 336.25 338.75 338.75 341.25 341.25 343.75 343.75 346.25 346.25 348.75 348.75 351.25 351.25 353.75 353.75 356.25 356.25 358.75 -time -months since 1949-1-1 0:0 -0.0 1.0 2.0 --0.5 0.5 0.5 1.5 1.5 2.5 -latitude -degrees_north --20.0 -17.5 -15.0 -12.5 -10.0 -7.5 -5.0 -2.5 0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 --21.25 -18.75 -18.75 -16.25 -16.25 -13.75 -13.75 -11.25 -11.25 -8.75 -8.75 -6.25 -6.25 -3.75 -3.75 -1.25 -1.25 1.25 1.25 3.75 3.75 6.25 6.25 8.75 8.75 11.25 11.25 13.75 13.75 16.25 16.25 18.75 18.75 21.25 -295.741546631 295.649749756 295.751312256 296.046234131 296.723968506 297.813812256 298.468109131 299.218109131 299.934906006 300.446624756 300.069671631 299.315765381 299.210296631 299.138031006 296.938812256 293.616546631 289.309906006 296.815185547 296.821044922 297.028076172 297.455810547 298.162841797 299.080810547 299.453857422 300.006591797 300.590576172 301.028076172 300.477294922 300.123779297 300.576904297 300.793701172 299.297607422 296.684326172 293.114013672 296.684997559 296.993591309 297.309997559 297.847106934 298.829528809 299.768981934 300.196716309 300.552185059 300.806091309 301.186950684 300.554138184 300.936950684 303.392028809 304.313903809 303.354919434 301.558044434 298.462341309 295.020843506 295.364593506 295.604827881 296.028656006 296.958343506 298.165374756 299.034515381 299.499359131 299.944671631 300.507171631 300.024749756 299.102874756 298.862640381 299.438812256 297.069671631 293.714202881 289.618499756 296.067138672 296.578857422 296.934326172 297.451904297 298.321044922 299.315185547 299.914794922 300.215576172 300.537841797 301.010498047 300.655029297 299.983154297 300.115966797 300.766357422 298.781982422 296.129638672 292.926513672 296.017028809 296.741638184 297.231872559 297.856872559 298.893981934 299.927185059 300.577575684 300.765075684 300.786560059 301.235778809 300.684997559 300.380310059 302.583435059 303.997497559 302.401794434 300.325622559 297.706481934 294.938812256 295.335296631 295.612640381 296.481781006 297.712249756 298.641937256 299.380218506 299.542327881 300.005218506 300.597015381 299.597015381 298.597015381 298.138031006 298.409515381 296.956390381 294.030609131 290.077484131 295.912841797 296.580810547 296.940185547 297.832763672 298.947998047 299.715576172 300.237060547 300.199951172 300.619873047 301.030029297 300.110107422 299.582763672 299.166748047 299.942138672 298.389404297 295.953857422 292.809326172 296.011169434 296.679138184 297.214294434 298.253356934 299.503356934 300.302185059 300.751403809 300.698669434 300.854919434 301.157653809 300.099060059 299.700622559 301.411560059 303.175231934 302.079528809 300.159606934 297.325622559 294.526702881 294.684906006 295.294281006 296.679046631 298.249359131 299.116546631 299.565765381 299.737640381 300.370452881 300.263031006 297.712249756 298.065765381 297.104827881 296.680999756 295.952484131 292.915374756 289.216156006 295.547607422 296.084716797 296.672607422 297.996826172 299.379638672 300.088623047 300.393310547 300.186279297 300.799560547 300.533935547 298.205810547 299.145263672 298.117919922 298.428466797 297.451904297 294.719482422 291.383544922 295.714294434 296.409606934 297.233825684 298.581481934 299.905700684 300.636169434 300.897888184 300.602966309 300.897888184 300.831481934 298.612731934 299.770935059 300.358825684 302.059997559 301.628356934 299.477966309 296.122497559 293.475921631 294.520843506 296.229827881 297.559906006 298.766937256 299.495452881 299.374359131 298.118499756 297.712249756 297.079437256 295.679046631 297.350921631 296.954437256 296.534515381 295.216156006 292.001312256 288.684906006 294.756591797 296.004638672 297.528076172 298.807373047 299.809326172 300.280029297 300.030029297 298.184326172 297.723388672 297.190185547 296.280029297 298.289794922 298.377685547 298.285888672 296.676513672 293.459716797 290.119873047 295.268981934 296.665466309 298.405700684 299.899841309 300.755310059 300.946716309 300.585388184 298.427185059 297.636169434 297.788513184 297.200622559 299.659606934 300.595153809 302.085388184 301.481872559 298.749450684 295.194763184 296.491546631 298.081390381 298.169281006 297.264984131 298.294281006 298.231781006 297.241546631 295.618499756 294.893890381 294.472015381 294.276702881 296.520843506 298.143890381 297.929046631 295.598968506 292.735687256 289.348968506 297.428466797 298.588623047 298.211669922 297.920654297 299.049560547 298.688232422 297.469482422 295.557373047 295.016357422 294.819091797 294.973388672 297.272216797 299.502685547 299.559326172 296.957763672 293.778076172 290.362060547 297.509216309 297.847106934 297.559997559 298.720153809 300.136169434 299.290466309 297.866638184 295.895935059 295.417419434 295.849060059 296.083435059 298.999450684 302.126403809 303.143981934 302.202575684 299.642028809 296.177185059 300.473968506 299.940765381 295.661468506 293.655609131 294.544281006 295.003265381 295.186859131 295.376312256 295.114593506 295.061859131 295.110687256 297.354827881 298.850921631 298.462249756 295.929046631 293.472015381 289.059906006 299.985107422 298.951904297 294.666748047 293.227294922 294.612060547 295.178466797 295.217529297 295.326904297 295.324951172 295.528076172 296.227294922 298.449951172 300.045654297 300.033935547 297.137451172 294.145263672 289.584716797 297.782653809 295.813903809 292.946716309 293.089294434 295.003356934 295.401794434 295.434997559 295.686950684 295.972106934 296.626403809 296.888122559 299.511169434 302.665466309 303.782653809 302.851013184 300.532653809 295.901794434 299.442718506 297.227874756 293.298187256 291.378265381 292.372406006 293.925140381 295.313812256 296.177093506 296.208343506 296.143890381 296.462249756 298.493499756 298.766937256 297.895843506 296.659515381 293.847015381 288.069671631 297.424560547 295.883544922 292.795654297 291.162841797 292.303466797 294.031982422 295.436279297 296.309326172 296.600341797 296.717529297 297.662841797 299.551513672 299.709716797 299.754638672 297.487060547 293.873779297 287.791748047 294.159606934 293.403747559 291.458435059 290.667419434 292.198669434 293.929138184 295.474060059 296.556091309 297.083435059 297.591247559 298.192810059 300.601013184 302.882263184 303.718200684 303.337341309 300.737731934 294.716247559 299.341156006 297.722015381 294.864593506 292.759124756 293.040374756 294.350921631 295.604827881 296.055999756 296.395843506 296.436859131 296.487640381 297.878265381 297.388031006 296.606781006 295.819671631 293.143890381 287.901702881 297.178466797 296.246826172 294.262451172 292.522216797 292.969482422 294.457763672 295.848388672 296.408935547 296.914794922 297.188232422 297.647216797 299.223388672 298.586669922 298.869873047 296.731201172 293.004638672 287.600341797 294.688903809 294.378356934 292.593200684 291.821716309 292.800231934 294.313903809 295.782653809 296.630310059 297.376403809 297.880310059 297.946716309 299.976013184 302.366638184 302.550231934 302.393981934 300.354919434 295.413513184 300.216156006 298.325531006 295.397796631 293.319671631 293.143890381 294.022796631 295.300140381 295.761077881 295.987640381 295.763031006 295.854827881 297.169281006 296.985687256 294.278656006 291.893890381 290.499359131 287.817718506 298.990966797 296.975341797 294.399169922 292.957763672 292.998779297 294.104248047 295.606201172 296.246826172 296.696044922 296.692138672 297.324951172 298.813232422 299.039794922 296.469482422 292.817138672 290.631591797 287.879638672 296.919372559 295.476013184 293.071716309 292.319763184 292.804138184 293.851013184 295.395935059 296.220153809 296.866638184 297.007263184 296.575622559 298.362731934 300.778747559 299.811950684 298.567810059 298.399841309 296.267028809 299.620452881 297.427093506 294.854827881 292.925140381 292.962249756 294.122406006 294.989593506 295.116546631 295.368499756 295.300140381 296.020843506 297.554046631 297.626312256 294.089202881 290.636077881 288.675140381 286.286468506 298.655029297 296.035888672 293.436279297 292.237060547 292.733154297 294.186279297 295.278076172 295.545654297 295.873779297 296.180419922 297.920654297 299.262451172 299.182373047 295.416748047 291.406982422 289.313232422 286.938232422 296.663513184 295.126403809 292.972106934 291.933044434 292.518981934 293.831481934 295.138122559 295.618591309 296.169372559 296.255310059 296.192810059 298.130310059 300.169372559 299.061950684 297.893981934 297.833435059 295.419372559 297.942718506 295.977874756 294.462249756 292.516937256 292.741546631 293.919281006 293.432952881 292.389984131 293.313812256 294.339202881 296.940765381 299.073577881 298.429046631 295.583343506 292.434906006 289.374359131 286.524749756 296.965576172 294.899169922 293.250732422 291.895263672 292.551513672 293.989013672 293.641357422 292.600341797 293.485107422 294.985107422 298.711669922 300.551513672 299.680419922 296.553466797 293.059326172 290.326904297 287.600341797 295.192810059 294.128356934 292.768981934 291.495544434 292.327575684 293.749450684 293.622497559 292.897888184 293.944763184 294.876403809 296.464294434 299.130310059 301.093200684 300.874450684 300.374450684 299.136169434 295.981872559 296.932952881 295.544281006 294.831390381 292.764984131 292.095062256 292.733734131 292.227874756 291.102874756 292.139984131 293.901702881 298.020843506 300.063812256 298.901702881 297.194671631 294.007171631 291.770843506 289.366546631 295.227294922 294.156982422 293.674560547 292.237060547 291.903076172 292.793701172 292.428466797 291.406982422 292.842529297 295.608154297 299.985107422 301.699951172 300.287841797 297.742919922 294.139404297 292.227294922 290.315185547 293.226013184 292.905700684 292.890075684 291.768981934 291.700622559 292.579528809 292.317810059 291.583435059 292.727966309 294.643981934 298.208435059 300.255310059 300.601013184 301.145935059 300.958435059 300.173278809 298.276794434 298.600921631 297.020843506 295.429046631 293.458343506 292.214202881 291.888031006 292.389984131 292.821624756 294.011077881 296.180999756 298.208343506 298.733734131 299.114593506 300.198577881 298.020843506 294.612640381 289.212249756 296.240966797 295.006591797 294.160888672 293.002685547 291.985107422 291.705810547 292.207763672 292.791748047 294.871826172 298.176513672 300.237060547 300.676513672 300.977294922 300.840576172 297.887451172 294.420654297 289.938232422 294.224060059 293.315856934 293.214294434 292.559997559 291.716247559 291.563903809 292.231872559 293.292419434 295.087341309 298.436950684 301.128356934 300.583435059 299.198669434 301.630310059 302.804138184 301.208435059 297.854919434 300.007171631 298.610687256 295.563812256 293.829437256 293.372406006 292.655609131 292.372406006 291.909515381 293.456390381 296.470062256 296.395843506 295.013031006 296.167327881 299.061859131 298.319671631 294.981781006 290.774749756 298.588623047 296.627685547 294.401123047 293.469482422 292.944091797 292.065185547 292.069091797 292.131591797 294.633544922 298.324951172 298.065185547 296.881591797 298.393310547 300.244873047 298.311279297 294.395263672 290.742919922 297.462341309 295.319763184 293.606872559 292.999450684 292.518981934 291.899841309 292.028747559 292.726013184 294.997497559 298.964294434 299.913513184 297.390075684 296.050231934 299.339294434 301.970153809 300.515075684 297.265075684 300.020843506 299.407562256 296.673187256 295.448577881 296.485687256 296.298187256 295.134124756 293.772796631 294.585296631 296.380218506 294.108734131 290.239593506 289.811859131 292.251312256 294.485687256 295.389984131 294.544281006 299.541748047 298.317138672 295.750732422 294.951904297 295.760498047 296.035888672 295.903076172 295.660888672 296.946044922 298.348388672 295.455810547 291.530029297 291.430419922 293.561279297 294.321044922 294.330810547 293.860107422 299.212341309 297.638122559 295.101013184 294.386169434 295.149841309 295.530700684 295.120544434 294.934997559 296.518981934 298.313903809 295.833435059 291.977966309 291.155700684 294.204528809 297.903747559 299.009216309 297.401794434 300.054046631 300.190765381 298.755218506 298.120452881 299.415374756 299.749359131 299.165374756 299.407562256 299.858734131 299.071624756 295.126312256 290.929046631 290.044281006 292.145843506 294.960296631 296.993499756 293.718109131 300.024169922 299.750732422 298.231201172 297.821044922 299.369873047 300.129638672 299.990966797 301.391357422 302.194091797 300.789794922 296.213623047 291.903076172 291.141357422 293.299560547 295.141357422 296.192138672 293.240966797 299.913513184 299.257263184 297.589294434 297.268981934 298.702575684 299.804138184 299.794372559 300.833435059 302.204528809 301.407653809 296.546325684 293.042419434 293.915466309 297.018981934 298.823669434 298.972106934 297.126403809 299.798187256 300.255218506 300.013031006 299.749359131 299.786468506 300.042327881 299.589202881 299.770843506 300.708343506 300.514984131 298.087249756 294.841156006 294.472015381 295.112640381 293.393890381 292.366546631 288.784515381 299.912841797 300.233154297 300.311279297 300.393310547 300.563232422 300.774169922 300.192138672 300.475341797 301.860107422 301.758544922 299.252685547 295.914794922 295.447998047 296.410888672 295.016357422 293.272216797 289.028076172 299.772888184 300.192810059 300.128356934 300.048278809 300.087341309 300.524841309 300.270935059 300.757263184 302.347106934 302.559997559 300.183044434 297.946716309 299.409606934 301.069763184 298.890075684 296.903747559 294.882263184 295.946624756 297.370452881 299.317718506 299.884124756 299.507171631 299.977874756 299.333343506 298.696624756 298.876312256 299.497406006 299.628265381 296.735687256 295.434906006 294.507171631 289.407562256 287.116546631 288.452484131 295.858154297 297.317138672 299.600341797 300.621826172 300.408935547 300.852294922 300.033935547 299.203857422 299.338623047 300.219482422 300.707763672 297.977294922 296.451904297 295.475341797 291.584716797 289.946044922 289.908935547 295.374450684 297.124450684 299.517028809 300.392028809 299.892028809 300.431091309 299.985778809 299.612731934 299.911560059 300.870544434 301.767028809 300.274841309 300.253356934 298.454528809 295.405700684 295.046325684 296.806091309 294.534515381 295.044281006 296.804046631 298.671234131 299.364593506 299.708343506 299.333343506 299.214202881 298.796234131 298.296234131 299.089202881 296.825531006 294.979827881 294.827484131 290.622406006 288.950531006 291.020843506 294.815185547 295.055419922 296.885498047 299.291748047 300.233154297 300.551513672 300.059326172 299.805419922 299.283935547 298.721435547 299.830810547 297.990966797 295.987060547 295.572998047 292.752685547 292.106201172 293.375732422 294.274841309 294.642028809 296.579528809 299.106872559 299.899841309 300.337341309 300.018981934 300.013122559 299.716247559 299.538513184 300.938903809 299.903747559 299.540466309 298.165466309 295.683044434 297.210388184 299.831481934 297.630218506 297.120452881 297.192718506 298.294281006 299.427093506 299.430999756 299.225921631 299.163421631 298.585296631 298.378265381 298.511077881 297.145843506 295.698577881 295.725921631 292.856781006 289.911468506 290.337249756 298.143310547 297.362060547 297.436279297 298.946044922 300.240966797 300.201904297 299.897216797 299.819091797 299.164794922 298.856201172 298.922607422 297.787841797 296.293701172 296.043701172 294.170654297 292.633544922 293.186279297 297.784606934 296.972106934 297.075622559 298.776794434 300.067810059 300.143981934 299.929138184 299.991638184 299.507263184 299.610778809 300.067810059 299.370544434 299.212341309 298.606872559 297.347106934 297.985778809 299.749450684 299.270843506 299.546234131 299.222015381 299.044281006 299.462249756 299.304046631 299.497406006 299.182952881 298.850921631 298.911468506 298.317718506 298.089202881 297.110687256 296.577484131 294.930999756 291.514984131 290.192718506 299.670654297 299.840576172 299.615966797 299.660888672 300.114013672 300.004638672 300.178466797 299.903076172 299.451904297 299.481201172 298.752685547 298.309326172 297.248779297 296.600341797 295.672607422 293.617919922 293.239013672 299.388122559 299.626403809 299.399841309 299.507263184 300.048278809 300.042419434 300.237731934 300.134216309 299.796325684 300.120544434 299.831481934 299.710388184 299.231872559 298.770935059 298.640075684 298.741638184 299.985778809 298.561859131 299.180999756 299.313812256 299.282562256 299.302093506 299.139984131 299.368499756 299.067718506 299.128265381 299.016937256 298.343109131 298.743499756 298.007171631 297.268890381 296.313812256 294.050140381 291.620452881 298.955810547 299.500732422 299.596435547 299.655029297 299.780029297 299.696044922 299.922607422 299.660888672 299.651123047 299.670654297 298.934326172 298.989013672 298.041748047 297.141357422 296.531982422 295.207763672 294.000732422 298.665466309 299.493591309 299.704528809 299.659606934 299.733825684 299.788513184 300.048278809 299.933044434 300.061950684 300.294372559 299.876403809 300.183044434 299.558044434 299.011169434 298.913513184 298.917419434 299.837341309 298.874359131 299.026702881 299.042327881 299.180999756 299.227874756 299.376312256 299.401702881 299.118499756 299.292327881 299.120452881 298.991546631 298.788421631 297.944671631 297.501312256 296.196624756 295.280609131 293.321624756 299.256591797 299.313232422 299.168701172 299.326904297 299.565185547 299.768310547 299.811279297 299.612060547 299.807373047 299.785888672 299.582763672 299.092529297 298.006591797 297.317138672 296.069091797 295.572998047 294.543701172 298.972106934 299.370544434 299.472106934 299.501403809 299.532653809 299.878356934 300.034606934 299.882263184 300.099060059 300.267028809 300.425231934 300.241638184 299.386169434 299.102966309 298.317810059 298.276794434 298.665466309 298.860687256 299.061859131 299.186859131 299.253265381 299.177093506 299.354827881 299.263031006 299.311859131 299.430999756 299.110687256 299.329437256 298.919281006 298.638031006 298.411468506 296.706390381 295.964202881 294.567718506 299.155029297 299.280029297 299.285888672 299.309326172 299.369873047 299.633544922 299.625732422 299.793701172 300.055419922 299.850341797 299.932373047 299.242919922 298.641357422 298.127685547 296.231201172 295.631591797 294.989013672 298.911560059 299.362731934 299.604919434 299.602966309 299.522888184 299.854919434 299.911560059 299.977966309 300.120544434 300.101013184 300.536560059 300.108825684 299.741638184 299.784606934 298.595153809 298.384216309 297.960388184 298.712249756 298.923187256 299.114593506 299.272796631 299.403656006 299.329437256 299.261077881 299.382171631 299.374359131 299.233734131 299.395843506 299.233734131 299.085296631 298.307952881 297.155609131 296.358734131 294.743499756 298.953857422 299.125732422 299.190185547 299.246826172 299.444091797 299.531982422 299.610107422 299.887451172 300.041748047 299.936279297 299.973388672 299.549560547 299.072998047 297.926513672 296.344482422 295.651123047 294.809326172 298.708435059 299.190856934 299.448669434 299.528747559 299.675231934 299.811950684 299.907653809 300.085388184 300.143981934 300.130310059 300.382263184 300.210388184 300.040466309 299.501403809 298.708435059 298.550231934 297.528747559 298.770843506 299.026702881 299.081390381 299.233734131 299.583343506 299.401702881 299.534515381 299.397796631 299.358734131 299.589202881 299.520843506 299.544281006 299.407562256 298.722015381 298.124359131 297.044281006 295.397796631 298.957763672 299.213623047 299.135498047 299.199951172 299.533935547 299.541748047 299.908935547 299.908935547 299.947998047 300.211669922 300.082763672 299.875732422 299.424560547 298.256591797 297.127685547 296.071044922 295.115966797 298.735778809 299.214294434 299.333435059 299.458435059 299.765075684 299.833435059 300.198669434 300.140075684 300.130310059 300.364685059 300.419372559 300.472106934 300.261169434 299.710388184 299.366638184 298.905700684 297.806091309 298.530609131 299.022796631 299.097015381 299.298187256 299.634124756 299.407562256 299.534515381 299.300140381 299.434906006 299.597015381 299.569671631 299.841156006 299.638031006 299.380218506 298.641937256 297.807952881 296.847015381 298.672607422 299.125732422 299.094482422 299.211669922 299.522216797 299.533935547 299.989013672 299.858154297 299.990966797 300.237060547 300.168701172 300.254638672 299.830810547 299.084716797 297.764404297 296.602294922 296.061279297 298.507263184 299.136169434 299.304138184 299.511169434 299.745544434 299.757263184 300.194763184 300.073669434 300.227966309 300.409606934 300.425231934 300.677185059 300.378356934 300.261169434 299.720153809 299.018981934 298.540466309 298.682952881 299.016937256 299.071624756 299.280609131 299.540374756 299.550140381 299.497406006 299.311859131 299.597015381 299.514984131 299.882171631 300.054046631 299.530609131 299.805999756 299.169281006 298.927093506 298.042327881 298.781982422 299.035888672 299.002685547 299.133544922 299.471435547 299.760498047 300.041748047 299.994873047 300.197998047 300.141357422 300.424560547 300.502685547 299.850341797 299.655029297 298.463623047 297.731201172 297.207763672 298.636169434 299.089294434 299.204528809 299.392028809 299.679138184 299.913513184 300.149841309 300.171325684 300.403747559 300.304138184 300.599060059 300.934997559 300.419372559 300.415466309 299.892028809 299.907653809 300.022888184 298.692718506 298.934906006 299.255218506 299.389984131 299.391937256 299.526702881 299.348968506 299.259124756 299.493499756 299.475921631 299.852874756 299.915374756 299.944671631 300.688812256 299.981781006 299.093109131 297.565765381 298.762451172 298.914794922 299.153076172 299.219482422 299.373779297 299.772216797 299.920654297 300.037841797 300.121826172 300.055419922 300.360107422 300.324951172 300.078857422 300.467529297 299.717529297 299.172607422 297.526123047 298.708435059 299.028747559 299.317810059 299.403747559 299.581481934 299.911560059 299.991638184 300.179138184 300.274841309 300.233825684 300.548278809 300.735778809 300.573669434 300.901794434 300.944763184 302.167419434 302.608825684 298.472015381 298.802093506 299.341156006 299.436859131 299.565765381 299.612640381 299.364593506 299.440765381 299.388031006 299.720062256 299.811859131 299.809906006 299.571624756 297.950531006 296.532562256 296.194671631 295.466156006 298.567138672 298.742919922 299.205810547 299.268310547 299.492919922 299.739013672 299.875732422 300.244873047 299.969482422 300.155029297 300.203857422 300.322998047 300.149169922 298.914794922 298.524169922 297.428466797 295.895263672 298.628356934 298.934997559 299.386169434 299.392028809 299.640075684 299.923278809 299.964294434 300.351013184 300.204528809 300.507263184 300.518981934 300.653747559 300.599060059 299.942810059 301.210388184 301.933044434 301.792419434 298.464202881 298.915374756 299.337249756 299.268890381 299.684906006 299.616546631 299.339202881 299.514984131 299.223968506 299.831390381 299.376312256 299.229827881 298.280609131 295.247406006 295.430999756 295.813812256 295.159515381 298.559326172 298.817138672 299.215576172 299.172607422 299.584716797 299.631591797 299.780029297 300.303466797 299.713623047 300.110107422 299.944091797 300.252685547 299.633544922 297.383544922 298.067138672 297.881591797 296.440185547 298.657653809 299.028747559 299.366638184 299.220153809 299.665466309 299.911560059 299.899841309 300.317810059 300.003356934 300.518981934 300.405700684 300.974060059 300.737731934 299.567810059 301.392028809 302.255310059 301.624450684 298.348968506 298.897796631 299.452484131 299.284515381 299.579437256 299.559906006 299.315765381 299.421234131 299.276702881 299.858734131 298.472015381 298.081390381 298.132171631 296.651702881 296.499359131 295.690765381 295.108734131 298.412841797 298.799560547 299.313232422 299.149169922 299.451904297 299.541748047 299.754638672 300.240966797 299.664794922 300.016357422 299.375732422 299.528076172 299.455810547 297.977294922 298.569091797 297.951904297 297.196044922 298.491638184 298.983825684 299.427185059 299.243591309 299.583435059 299.839294434 299.852966309 300.251403809 299.952575684 300.393981934 300.063903809 300.876403809 300.913513184 299.888122559 300.919372559 301.741638184 301.897888184 298.411468506 298.847015381 299.446624756 299.270843506 299.403656006 299.559906006 299.352874756 299.327484131 299.358734131 299.817718506 298.657562256 298.614593506 298.751312256 298.579437256 297.956390381 296.046234131 294.733734131 298.424560547 298.742919922 299.223388672 299.059326172 299.252685547 299.531982422 299.780029297 300.149169922 299.748779297 299.852294922 299.227294922 299.438232422 299.203857422 298.709716797 298.742919922 298.112060547 297.655029297 298.433044434 298.870544434 299.390075684 299.339294434 299.520935059 299.862731934 299.942810059 300.194763184 299.899841309 300.183044434 299.936950684 300.575622559 300.577575684 299.934997559 299.921325684 301.126403809 302.124450684 298.470062256 298.950531006 299.423187256 299.307952881 299.399749756 299.415374756 299.243499756 299.358734131 299.296234131 299.528656006 299.192718506 299.456390381 298.942718506 298.684906006 297.991546631 297.126312256 295.389984131 298.410888672 298.809326172 299.156982422 299.117919922 299.303466797 299.520263672 299.701904297 299.989013672 299.715576172 299.658935547 299.278076172 299.520263672 298.973388672 298.606201172 298.430419922 298.551513672 298.092529297 298.311950684 298.825622559 299.304138184 299.388122559 299.583435059 299.915466309 299.921325684 299.995544434 299.755310059 299.966247559 299.905700684 300.321716309 300.058044434 299.726013184 299.552185059 300.095153809 301.722106934 298.331390381 298.960296631 299.421234131 299.438812256 299.548187256 299.378265381 299.329437256 299.548187256 299.411468506 299.538421631 299.179046631 299.452484131 299.098968506 298.882171631 298.046234131 297.327484131 296.913421631 298.182373047 298.760498047 299.147216797 299.239013672 299.465576172 299.592529297 299.819091797 299.983154297 299.692138672 299.760498047 299.403076172 299.459716797 298.979248047 298.651123047 298.221435547 298.272216797 298.350341797 298.011169434 298.651794434 299.167419434 299.382263184 299.671325684 299.927185059 299.925231934 299.931091309 299.770935059 300.028747559 299.911560059 300.171325684 299.911560059 299.726013184 299.515075684 299.640075684 300.620544434 298.300140381 298.958343506 299.473968506 299.567718506 299.647796631 299.462249756 299.485687256 299.462249756 299.184906006 299.331390381 298.973968506 299.280609131 299.143890381 298.938812256 298.341156006 297.680999756 297.448577881 298.088623047 298.711669922 299.244873047 299.389404297 299.574951172 299.653076172 299.877685547 299.899169922 299.494873047 299.561279297 299.197998047 299.174560547 298.787841797 298.485107422 298.160888672 297.883544922 298.264404297 297.862731934 298.509216309 299.116638184 299.448669434 299.763122559 299.856872559 299.876403809 299.809997559 299.556091309 299.774841309 299.686950684 299.954528809 299.753356934 299.483825684 299.341247559 299.145935059 299.837341309 298.112640381 298.968109131 299.550140381 299.622406006 299.768890381 299.694671631 299.598968506 299.429046631 299.065765381 299.134124756 299.177093506 299.313812256 298.909515381 298.940765381 298.981781006 298.550140381 295.897796631 297.889404297 298.707763672 299.383544922 299.490966797 299.709716797 299.875732422 299.942138672 299.864013672 299.418701172 299.244873047 298.994873047 298.990966797 298.662841797 298.530029297 298.653076172 298.596435547 297.780029297 297.575622559 298.429138184 299.175231934 299.577575684 299.962341309 299.993591309 299.872497559 299.765075684 299.544372559 299.581481934 299.493591309 299.790466309 299.774841309 299.579528809 299.559997559 299.825622559 300.013122559 297.966156006 298.977874756 299.511077881 299.630218506 299.796234131 299.784515381 299.573577881 299.378265381 299.016937256 298.973968506 299.294281006 299.186859131 298.905609131 299.634124756 298.472015381 295.927093506 292.889984131 297.850341797 298.778076172 299.373779297 299.526123047 299.746826172 299.996826172 300.018310547 299.758544922 299.258544922 299.022216797 299.166748047 299.188232422 298.947998047 299.436279297 299.393310547 298.764404297 296.944091797 297.403747559 298.485778809 299.274841309 299.724060059 300.079528809 300.124450684 299.927185059 299.669372559 299.388122559 299.128356934 299.278747559 299.854919434 300.015075684 300.378356934 300.778747559 301.460388184 301.140075684 297.888031006 298.884124756 299.534515381 299.899749756 299.804046631 299.813812256 299.764984131 299.284515381 298.389984131 297.901702881 298.372406006 298.995452881 298.880218506 299.145843506 297.036468506 293.684906006 290.782562256 297.992919922 298.791748047 299.373779297 299.832763672 299.828857422 300.028076172 300.242919922 299.785888672 298.959716797 298.547607422 299.307373047 299.672607422 299.344482422 299.860107422 300.080810547 298.858154297 295.322998047 297.476013184 298.579528809 299.448669434 300.071716309 300.140075684 300.229919434 300.222106934 299.679138184 298.864685059 298.210388184 299.069763184 300.177185059 299.929138184 300.470153809 302.351013184 303.300231934 300.313903809 297.665374756 298.780609131 299.542327881 299.913421631 299.833343506 299.960296631 299.487640381 297.841156006 295.891937256 295.667327881 296.847015381 297.852874756 298.585296631 297.366546631 295.423187256 292.389984131 288.263031006 298.063232422 298.877685547 299.446044922 299.901123047 299.990966797 300.250732422 299.955810547 298.604248047 297.139404297 297.246826172 298.217529297 299.121826172 299.676513672 299.946044922 300.549560547 297.946044922 293.764404297 297.530700684 298.675231934 299.587341309 300.159606934 300.272888184 300.472106934 300.011169434 298.616638184 297.370544434 297.507263184 298.784606934 300.001403809 300.157653809 300.831481934 303.794372559 303.194763184 298.899841309 297.552093506 298.944671631 299.593109131 299.708343506 299.923187256 299.780609131 298.296234131 295.651702881 295.210296631 295.614593506 295.848968506 297.876312256 299.196624756 297.641937256 295.266937256 291.923187256 287.257171631 298.192138672 299.205810547 299.614013672 299.770263672 300.221435547 300.199951172 298.842529297 296.559326172 296.471435547 296.981201172 297.174560547 298.967529297 300.424560547 300.852294922 300.653076172 298.563232422 294.531982422 297.698669434 298.983825684 299.796325684 300.128356934 300.485778809 300.384216309 299.034606934 296.874450684 297.061950684 297.755310059 298.300231934 299.657653809 300.798278809 302.390075684 304.118591309 303.200622559 299.013122559 297.575531006 298.917327881 299.591156006 299.831390381 299.811859131 298.768890381 296.921234131 297.055999756 297.581390381 297.479827881 297.524749756 298.102874756 297.923187256 296.413421631 293.876312256 291.311859131 288.057952881 298.401123047 299.313232422 299.651123047 299.891357422 300.168701172 299.209716797 297.375732422 297.858154297 298.526123047 298.369873047 298.303466797 298.965576172 299.785888672 300.049560547 299.141357422 297.074951172 294.543701172 298.052185059 299.227966309 300.015075684 300.425231934 300.472106934 299.397888184 297.675231934 298.142028809 298.657653809 298.403747559 298.536560059 299.216247559 300.370544434 302.054138184 302.700622559 300.954528809 298.173278809 297.880218506 298.962249756 299.618499756 300.065765381 299.620452881 298.153656006 298.114593506 298.825531006 298.177093506 297.557952881 297.819671631 298.055999756 297.309906006 295.069671631 292.874359131 292.464202881 291.085296631 298.815185547 299.512451172 299.737060547 300.090576172 299.979248047 298.530029297 298.551513672 299.533935547 298.807373047 298.219482422 298.463623047 298.781982422 298.920654297 298.311279297 296.828857422 295.188232422 294.512451172 298.624450684 299.614685059 300.308044434 300.780700684 300.282653809 298.651794434 298.851013184 299.749450684 298.698669434 297.956481934 298.351013184 298.977966309 299.485778809 300.036560059 299.390075684 296.870544434 295.970153809 298.294281006 299.380218506 299.868499756 300.220062256 299.786468506 299.296234131 299.288421631 298.268890381 296.843109131 297.540374756 298.315765381 297.958343506 297.421234131 295.782562256 294.597015381 294.212249756 291.975921631 299.217529297 299.830810547 299.905029297 300.215576172 300.168701172 299.758544922 299.703857422 298.852294922 297.307373047 298.137451172 299.047607422 298.756591797 298.471435547 297.686279297 296.727294922 295.735107422 295.014404297 299.325622559 300.222106934 300.663513184 300.913513184 300.329528809 299.716247559 299.872497559 298.972106934 297.216247559 298.022888184 298.815856934 298.808044434 298.909606934 298.602966309 297.845153809 296.384216309 295.981872559 299.468109131 299.913421631 300.249359131 300.472015381 299.839202881 299.458343506 299.356781006 296.595062256 294.968109131 295.583343506 298.196624756 298.645843506 298.337249756 297.436859131 296.557952881 295.335296631 292.505218506 299.957763672 300.033935547 300.010498047 300.405029297 300.262451172 300.020263672 299.780029297 297.156982422 295.553466797 296.117919922 298.852294922 299.401123047 299.197998047 298.336669922 297.699951172 296.602294922 295.117919922 300.456481934 300.800231934 300.958435059 301.099060059 300.337341309 299.843200684 299.714294434 296.905700684 294.985778809 295.747497559 298.411560059 299.157653809 299.393981934 298.819763184 298.431091309 297.319763184 296.130310059 301.372406006 300.542327881 300.682952881 300.819671631 299.927093506 299.700531006 299.684906006 297.013031006 294.981781006 293.915374756 296.128265381 298.585296631 298.835296631 298.225921631 297.446624756 295.948577881 294.255218506 301.067138672 300.569091797 300.373779297 300.737060547 300.377685547 300.223388672 300.069091797 297.565185547 295.547607422 294.522216797 296.717529297 299.162841797 299.438232422 298.807373047 298.155029297 296.918701172 295.756591797 301.862731934 301.548278809 301.352966309 301.436950684 300.401794434 299.966247559 299.878356934 297.222106934 294.946716309 294.085388184 296.325622559 298.759216309 299.452575684 299.247497559 298.880310059 297.655700684 296.561950684 302.645843506 301.067718506 300.923187256 300.919281006 299.888031006 300.192718506 299.847015381 297.819671631 296.975921631 296.050140381 296.011077881 298.485687256 298.968109131 298.800140381 298.200531006 296.427093506 295.018890381 301.690185547 300.965576172 300.608154297 300.764404297 300.317138672 300.555419922 300.131591797 298.139404297 297.293701172 296.455810547 296.455810547 298.834716797 299.270263672 299.213623047 298.735107422 297.248779297 296.115966797 302.675231934 302.147888184 301.575622559 301.413513184 300.294372559 300.302185059 299.927185059 298.020935059 297.227966309 296.390075684 296.292419434 298.425231934 299.192810059 299.563903809 299.249450684 297.778747559 296.790466309 305.319671631 301.753265381 301.192718506 301.192718506 299.850921631 300.030609131 299.192718506 296.497406006 297.632171631 298.817718506 299.067718506 299.536468506 299.229827881 298.606781006 297.591156006 296.345062256 295.272796631 302.768310547 301.281982422 300.951904297 300.971435547 300.201904297 300.324951172 299.408935547 296.684326172 297.797607422 299.186279297 299.379638672 299.783935547 299.463623047 298.961669922 298.151123047 297.166748047 296.387451172 303.753356934 302.575622559 301.823669434 301.464294434 300.134216309 300.118591309 299.118591309 296.399841309 297.882263184 299.110778809 299.071716309 299.458435059 299.407653809 299.186950684 298.474060059 297.651794434 297.050231934 306.009124756 302.809906006 301.370452881 301.329437256 300.100921631 300.013031006 300.120452881 298.462249756 298.432952881 299.489593506 299.872406006 298.930999756 298.317718506 298.239593506 297.161468506 296.468109131 295.938812256 302.828857422 301.086669922 301.067138672 301.199951172 300.350341797 300.270263672 300.156982422 298.162841797 298.457763672 299.979248047 300.158935547 299.115966797 298.617919922 298.666748047 297.760498047 297.168701172 296.867919922 303.630310059 302.220153809 301.745544434 301.509216309 300.204528809 300.077575684 300.005310059 298.186950684 298.575622559 299.737731934 299.735778809 298.821716309 298.540466309 298.747497559 297.983825684 297.686950684 297.513122559 306.438812256 303.882171631 301.622406006 301.116546631 300.272796631 299.997406006 300.729827881 300.542327881 299.641937256 299.528656006 298.876312256 297.071624756 297.448577881 298.852874756 298.415374756 297.436859131 296.206390381 302.533935547 300.080810547 300.315185547 301.004638672 300.449951172 300.272216797 300.772216797 300.239013672 299.623779297 299.989013672 299.151123047 297.264404297 297.739013672 299.215576172 298.836669922 297.887451172 296.822998047 302.893981934 301.128356934 301.026794434 301.286560059 300.280700684 299.987731934 300.679138184 300.460388184 299.817810059 299.770935059 298.854919434 297.077575684 297.661560059 299.270935059 299.040466309 298.384216309 297.509216309 306.255218506 304.159515381 302.095062256 301.473968506 300.977874756 300.395843506 300.557952881 300.325531006 299.761077881 299.784515381 299.384124756 298.655609131 298.966156006 299.352874756 298.884124756 297.993499756 296.331390381 303.123779297 299.449951172 299.930419922 301.285888672 301.026123047 300.697998047 300.772216797 300.297607422 299.871826172 300.106201172 299.686279297 298.947998047 299.227294922 299.551513672 299.006591797 298.106201172 296.571044922 302.698669434 300.794372559 300.800231934 301.509216309 300.878356934 300.278747559 300.438903809 300.257263184 299.849060059 299.860778809 299.421325684 298.753356934 299.097106934 299.632263184 299.296325684 298.628356934 297.298278809 305.048187256 303.929046631 301.554046631 300.745452881 301.073577881 300.913421631 300.848968506 299.979827881 299.770843506 300.264984131 300.190765381 300.126312256 300.216156006 299.597015381 298.802093506 297.954437256 296.360687256 303.352294922 300.002685547 299.489013672 300.471435547 301.061279297 301.213623047 301.129638672 300.135498047 299.951904297 300.516357422 300.508544922 300.414794922 300.410888672 299.635498047 298.715576172 297.780029297 296.225341797 302.761169434 301.077575684 299.874450684 300.397888184 300.876403809 300.718200684 300.634216309 299.813903809 299.686950684 300.204528809 300.151794434 300.134216309 300.268981934 299.737731934 299.069763184 298.362731934 297.022888184 304.579437256 304.362640381 301.415374756 299.659515381 300.667327881 301.014984131 300.483734131 298.339202881 298.977874756 300.161468506 300.286468506 300.038421631 299.915374756 299.770843506 299.319671631 298.368499756 296.639984131 303.403076172 300.733154297 298.938232422 299.010498047 300.625732422 301.342529297 300.891357422 298.739013672 299.295654297 300.533935547 300.635498047 300.235107422 300.035888672 299.680419922 299.063232422 297.971435547 296.199951172 302.895935059 301.071716309 298.479919434 298.567810059 300.339294434 300.841247559 300.411560059 298.224060059 298.745544434 300.095153809 300.239685059 299.966247559 299.954528809 299.819763184 299.436950684 298.544372559 296.989685059 304.772796631 304.673187256 302.343109131 300.716156006 301.042327881 300.888031006 298.929046631 297.845062256 299.805999756 300.554046631 300.405609131 300.214202881 299.940765381 299.759124756 299.290374756 298.634124756 297.202484131 303.729248047 301.274169922 299.625732422 299.531982422 300.926513672 301.254638672 299.442138672 298.242919922 299.936279297 300.926513672 300.879638672 300.504638672 300.117919922 299.606201172 298.897216797 298.028076172 296.492919922 302.694763184 300.286560059 298.499450684 298.809997559 300.626403809 300.919372559 299.112731934 297.860778809 299.436950684 300.421325684 300.476013184 300.171325684 299.952575684 299.694763184 299.216247559 298.526794434 297.159606934 304.837249756 304.055999756 302.368499756 301.182952881 301.040374756 299.782562256 295.997406006 297.116546631 301.061859131 300.913421631 300.186859131 300.171234131 300.067718506 299.929046631 299.298187256 298.716156006 297.358734131 303.789794922 301.545654297 301.076904297 300.764404297 301.082763672 300.291748047 296.578857422 297.117919922 300.864013672 301.219482422 300.701904297 300.539794922 300.258544922 299.752685547 298.895263672 298.020263672 296.483154297 301.852966309 299.952575684 300.167419434 300.321716309 300.858825684 300.067810059 296.210388184 296.927185059 300.522888184 300.710388184 300.397888184 300.270935059 300.124450684 299.831481934 299.106872559 298.390075684 297.040466309 305.130218506 303.542327881 301.714202881 300.616546631 301.118499756 298.819671631 295.057952881 297.718109131 301.386077881 300.714202881 300.364593506 300.222015381 299.862640381 299.802093506 299.372406006 298.878265381 297.567718506 303.414794922 301.250732422 300.990966797 300.371826172 301.104248047 299.307373047 295.625732422 297.514404297 301.188232422 301.026123047 300.819091797 300.569091797 300.012451172 299.574951172 298.926513672 298.098388672 296.572998047 300.993591309 300.073669434 300.526794434 299.968200684 300.860778809 299.011169434 295.194763184 297.220153809 300.747497559 300.520935059 300.616638184 300.360778809 299.893981934 299.636169434 299.059997559 298.354919434 296.958435059 303.173187256 301.151702881 300.046234131 300.186859131 300.915374756 297.145843506 294.911468506 299.929046631 301.731781006 300.870452881 300.667327881 300.245452881 299.962249756 299.653656006 299.120452881 298.718109131 297.835296631 300.625732422 298.781982422 298.920654297 299.469482422 300.655029297 297.483154297 295.332763672 299.664794922 301.490966797 300.942138672 300.985107422 300.524169922 299.985107422 299.364013672 298.668701172 297.949951172 296.780029297 298.577575684 298.042419434 298.374450684 298.808044434 300.399841309 297.263122559 294.925231934 299.159606934 300.979919434 300.554138184 300.827575684 300.345153809 299.892028809 299.429138184 298.800231934 298.171325684 297.017028809 299.743499756 298.837249756 299.620452881 300.718109131 299.641937256 295.782562256 296.343109131 301.261077881 301.663421631 301.313812256 300.708343506 300.028656006 300.098968506 299.598968506 299.108734131 298.626312256 297.874359131 297.572998047 297.838623047 299.094482422 300.377685547 299.746826172 296.028076172 296.315185547 301.158935547 301.459716797 301.166748047 300.822998047 300.078857422 299.928466797 299.326904297 298.723388672 297.979248047 296.922607422 296.179138184 297.278747559 298.671325684 300.018981934 299.464294434 295.813903809 295.997497559 300.577575684 300.921325684 300.782653809 300.624450684 299.979919434 299.897888184 299.419372559 298.913513184 298.173278809 297.079528809 299.276702881 299.370452881 300.122406006 300.362640381 298.886077881 297.352874756 299.425140381 301.743499756 301.284515381 301.440765381 300.807952881 300.288421631 300.122406006 299.280609131 299.100921631 298.626312256 297.864593506 298.283935547 299.516357422 300.438232422 300.576904297 299.125732422 297.262451172 299.270263672 301.815185547 301.186279297 301.248779297 300.762451172 300.194091797 299.946044922 299.094482422 298.772216797 298.072998047 297.049560547 296.841247559 299.011169434 300.167419434 300.392028809 298.851013184 297.077575684 299.097106934 301.354919434 300.759216309 300.915466309 300.599060059 300.124450684 299.897888184 299.222106934 299.079528809 298.335388184 297.192810059 299.325531006 299.891937256 300.321624756 300.255218506 299.960296631 300.097015381 300.790374756 301.116546631 301.198577881 301.245452881 300.550140381 300.427093506 300.091156006 299.343109131 299.143890381 298.587249756 297.829437256 299.571044922 300.426513672 300.899169922 300.600341797 300.139404297 300.104248047 300.850341797 301.309326172 301.168701172 301.166748047 300.483154297 300.338623047 300.014404297 299.235107422 298.901123047 298.166748047 297.201904297 298.862731934 299.925231934 300.470153809 300.249450684 299.868591309 299.956481934 300.638122559 300.985778809 300.880310059 300.987731934 300.419372559 300.263122559 299.981872559 299.419372559 299.313903809 298.552185059 297.452575684 299.126312256 299.659515381 300.370452881 300.712249756 300.936859131 301.001312256 300.516937256 300.768890381 301.380218506 301.100921631 300.692718506 300.464202881 299.888031006 299.427093506 299.024749756 298.593109131 297.970062256 299.670654297 300.223388672 300.947998047 301.108154297 301.211669922 301.184326172 300.678466797 300.860107422 301.344482422 301.141357422 300.678466797 300.461669922 299.893310547 299.406982422 298.940185547 298.322998047 297.485107422 299.546325684 299.778747559 300.288513184 300.511169434 300.880310059 300.952575684 300.370544434 300.620544434 301.122497559 301.056091309 300.643981934 300.393981934 299.923278809 299.587341309 299.319763184 298.729919434 297.866638184 299.091156006 299.856781006 300.514984131 300.839202881 300.888031006 300.886077881 300.868499756 301.292327881 301.319671631 300.899749756 300.907562256 300.491546631 299.821624756 299.348968506 298.819671631 298.593109131 297.948577881 299.608154297 300.401123047 301.041748047 301.254638672 301.260498047 301.121826172 300.971435547 301.274169922 301.254638672 300.951904297 300.932373047 300.559326172 299.877685547 299.395263672 298.865966797 298.455810547 297.600341797 299.509216309 299.884216309 300.380310059 300.604919434 300.854919434 300.892028809 300.735778809 301.079528809 301.048278809 300.847106934 300.874450684 300.517028809 299.933044434 299.567810059 299.231872559 298.884216309 298.077575684 299.052093506 299.993499756 300.485687256 300.778656006 300.702484131 300.651702881 301.001312256 301.198577881 301.108734131 301.005218506 300.749359131 300.241546631 299.850921631 299.384124756 298.847015381 298.610687256 297.755218506 299.662841797 300.572998047 301.004638672 301.201904297 301.030029297 300.854248047 301.135498047 301.260498047 301.069091797 301.067138672 300.867919922 300.362060547 299.914794922 299.465576172 298.990966797 298.596435547 297.555419922 299.517028809 300.202575684 300.546325684 300.651794434 300.645935059 300.657653809 300.907653809 300.968200684 300.774841309 300.802185059 300.657653809 300.274841309 299.966247559 299.643981934 299.323669434 299.054138184 298.155700684 299.093109131 299.991546631 300.550140381 300.720062256 300.688812256 300.905609131 301.341156006 301.073577881 300.985687256 300.981781006 300.575531006 300.292327881 299.874359131 299.305999756 298.815765381 298.477874756 297.684906006 299.717529297 300.500732422 300.992919922 301.088623047 300.891357422 300.969482422 301.350341797 301.155029297 300.996826172 301.076904297 300.774169922 300.481201172 300.059326172 299.508544922 299.043701172 298.555419922 297.612060547 299.651794434 300.294372559 300.714294434 300.778747559 300.587341309 300.651794434 300.987731934 300.767028809 300.626403809 300.718200684 300.511169434 300.341247559 300.034606934 299.636169434 299.304138184 299.024841309 298.282653809 299.188812256 300.106781006 300.647796631 300.708343506 300.845062256 301.098968506 301.448577881 301.116546631 300.952484131 300.712249756 300.409515381 300.370452881 299.858734131 299.368499756 298.794281006 298.251312256 297.540374756 299.740966797 300.553466797 301.057373047 301.051513672 301.004638672 301.156982422 301.449951172 301.242919922 301.004638672 300.828857422 300.637451172 300.578857422 300.098388672 299.625732422 299.117919922 298.459716797 297.588623047 299.663513184 300.339294434 300.841247559 300.823669434 300.671325684 300.802185059 301.110778809 300.827575684 300.559997559 300.419372559 300.409606934 300.462341309 300.032653809 299.694763184 299.309997559 298.890075684 298.267028809 299.216156006 299.997406006 300.384124756 300.813812256 301.382171631 301.245452881 301.130218506 300.833343506 300.837249756 300.737640381 300.401702881 300.186859131 299.682952881 299.313812256 298.624359131 298.073577881 297.376312256 299.772216797 300.514404297 300.912841797 301.184326172 301.512451172 301.373779297 301.223388672 301.024169922 300.989013672 300.936279297 300.674560547 300.412841797 299.934326172 299.561279297 299.045654297 298.426513672 297.528076172 299.661560059 300.323669434 300.724060059 300.872497559 301.181091309 301.173278809 301.067810059 300.702575684 300.569763184 300.501403809 300.403747559 300.284606934 299.880310059 299.643981934 299.210388184 298.782653809 298.171325684 299.292327881 299.901702881 300.253265381 300.827484131 301.425140381 301.214202881 301.202484131 300.778656006 300.587249756 300.575531006 300.341156006 300.134124756 299.686859131 299.141937256 298.356781006 297.940765381 297.141937256 299.815185547 300.362060547 300.740966797 301.100341797 301.447998047 301.299560547 301.276123047 301.016357422 300.879638672 300.897216797 300.658935547 300.383544922 299.955810547 299.405029297 298.807373047 298.391357422 297.479248047 299.722106934 300.257263184 300.599060059 300.815856934 301.261169434 301.239685059 301.198669434 300.747497559 300.468200684 300.419372559 300.339294434 300.222106934 299.897888184 299.536560059 299.061950684 298.749450684 298.032653809 299.413421631 300.138031006 300.573577881 301.044281006 301.380218506 301.063812256 301.061859131 300.688812256 300.569671631 300.513031006 300.315765381 300.155609131 299.583343506 298.991546631 298.264984131 297.809906006 296.905609131 299.908935547 300.539794922 300.947998047 301.188232422 301.346435547 301.096435547 301.131591797 300.926513672 300.869873047 300.840576172 300.621826172 300.375732422 299.836669922 299.317138672 298.735107422 298.352294922 297.502685547 299.813903809 300.452575684 300.882263184 301.079528809 301.267028809 301.030700684 301.042419434 300.671325684 300.462341309 300.364685059 300.267028809 300.169372559 299.747497559 299.397888184 298.968200684 298.679138184 297.960388184 299.577484131 300.405609131 300.749359131 301.180999756 301.581390381 301.241546631 300.960296631 300.491546631 300.542327881 300.470062256 300.417327881 300.233734131 299.415374756 298.796234131 298.108734131 297.579437256 296.811859131 300.071044922 300.764404297 301.006591797 301.207763672 301.508544922 301.242919922 301.086669922 300.703857422 300.768310547 300.725341797 300.656982422 300.473388672 299.740966797 299.278076172 298.686279297 298.219482422 297.565185547 299.960388184 300.645935059 300.950622559 301.177185059 301.454528809 301.110778809 300.919372559 300.468200684 300.513122559 300.386169434 300.272888184 300.188903809 299.614685059 299.290466309 298.778747559 298.440856934 297.948669434 299.593109131 300.503265381 300.923187256 301.268890381 301.436859131 301.134124756 301.001312256 300.505218506 300.397796631 300.290374756 300.388031006 300.241546631 299.497406006 298.788421631 297.995452881 297.479827881 296.616546631 300.020263672 300.789794922 301.059326172 301.197998047 301.328857422 301.151123047 301.160888672 300.637451172 300.578857422 300.475341797 300.520263672 300.500732422 299.856201172 299.285888672 298.590576172 298.158935547 297.352294922 299.921325684 300.667419434 300.991638184 301.194763184 301.286560059 300.985778809 300.933044434 300.409606934 300.423278809 300.224060059 300.183044434 300.188903809 299.651794434 299.251403809 298.645935059 298.327575684 297.698669434 299.544281006 300.350921631 300.882171631 301.399749756 301.493499756 301.100921631 300.876312256 300.399749756 300.323577881 300.307952881 300.323577881 300.052093506 299.473968506 298.759124756 297.956390381 297.557952881 296.501312256 299.834716797 300.537841797 300.953857422 301.352294922 301.422607422 301.143310547 300.992919922 300.401123047 300.393310547 300.397216797 300.416748047 300.322998047 299.862060547 299.266357422 298.520263672 298.178466797 297.166748047 299.784606934 300.477966309 300.911560059 301.351013184 301.351013184 300.958435059 300.772888184 300.169372559 300.218200684 300.143981934 300.122497559 300.001403809 299.558044434 299.124450684 298.542419434 298.325622559 297.464294434 299.737640381 300.307952881 300.747406006 301.270843506 301.421234131 301.139984131 300.800140381 300.345062256 300.198577881 300.095062256 300.175140381 299.981781006 299.524749756 298.852874756 298.009124756 297.473968506 296.509124756 299.840576172 300.295654297 300.740966797 301.287841797 301.432373047 301.240966797 300.906982422 300.344482422 300.203857422 300.110107422 300.291748047 300.240966797 299.895263672 299.401123047 298.549560547 298.024169922 297.067138672 299.815856934 300.280700684 300.638122559 301.149841309 301.263122559 300.964294434 300.581481934 299.972106934 299.921325684 299.811950684 299.923278809 299.860778809 299.558044434 299.161560059 298.462341309 298.097106934 297.270935059 299.893890381 300.528656006 301.077484131 301.339202881 301.198577881 300.975921631 300.710296631 300.423187256 300.180999756 299.983734131 300.038421631 299.891937256 299.499359131 298.895843506 298.104827881 297.337249756 296.499359131 299.865966797 300.385498047 301.055419922 301.410888672 301.321044922 301.166748047 300.834716797 300.467529297 300.172607422 299.975341797 300.156982422 300.098388672 299.791748047 299.375732422 298.612060547 297.867919922 296.961669922 299.778747559 300.339294434 300.870544434 301.136169434 301.022888184 300.788513184 300.440856934 300.046325684 299.827575684 299.597106934 299.735778809 299.718200684 299.460388184 299.075622559 298.417419434 297.839294434 297.101013184 299.870452881 300.466156006 300.956390381 301.145843506 301.235687256 301.083343506 300.712249756 300.323577881 300.050140381 300.055999756 299.973968506 299.796234131 299.522796631 298.813812256 298.087249756 297.368499756 296.526702881 299.805419922 300.346435547 301.033935547 301.324951172 301.436279297 301.268310547 300.815185547 300.412841797 300.043701172 300.031982422 300.059326172 299.965576172 299.768310547 299.190185547 298.545654297 297.793701172 296.899169922 299.608825684 300.241638184 300.809997559 300.979919434 301.036560059 300.835388184 300.450622559 300.075622559 299.755310059 299.655700684 299.663513184 299.655700684 299.483825684 298.964294434 298.321716309 297.688903809 297.063903809 299.893890381 300.509124756 300.802093506 300.866546631 301.108734131 300.882171631 300.563812256 300.220062256 299.845062256 299.948577881 299.862640381 299.743499756 299.561859131 298.845062256 298.079437256 297.356781006 296.454437256 299.860107422 300.514404297 301.035888672 301.172607422 301.362060547 301.018310547 300.666748047 300.387451172 299.848388672 299.940185547 299.955810547 299.918701172 299.764404297 299.084716797 298.447998047 297.674560547 296.783935547 299.536560059 300.216247559 300.647888184 300.688903809 300.882263184 300.601013184 300.315856934 300.042419434 299.577575684 299.591247559 299.511169434 299.597106934 299.507263184 298.880310059 298.196716309 297.462341309 296.868591309 299.702484131 300.446624756 300.841156006 300.962249756 301.061859131 300.712249756 300.384124756 300.034515381 299.718109131 299.807952881 299.829437256 299.731781006 299.315765381 298.776702881 298.098968506 297.319671631 296.563812256 299.828857422 300.643310547 301.223388672 301.358154297 301.350341797 300.899169922 300.578857422 300.256591797 299.740966797 299.846435547 300.014404297 299.977294922 299.485107422 298.901123047 298.367919922 297.608154297 296.893310547 299.362731934 300.136169434 300.642028809 300.729919434 300.808044434 300.423278809 300.151794434 299.798278809 299.354919434 299.444763184 299.466247559 299.579528809 299.196716309 298.575622559 298.038513184 297.300231934 296.780700684 299.663421631 300.249359131 300.598968506 300.829437256 300.942718506 300.739593506 300.331390381 299.778656006 299.618499756 299.655609131 299.708343506 299.761077881 299.261077881 298.733734131 298.046234131 297.255218506 296.614593506 299.879638672 300.535888672 301.039794922 301.285888672 301.272216797 301.033935547 300.615966797 300.026123047 299.674560547 299.692138672 299.949951172 300.102294922 299.457763672 298.854248047 298.248779297 297.465576172 296.897216797 299.327575684 299.942810059 300.354919434 300.569763184 300.677185059 300.468200684 300.093200684 299.538513184 299.218200684 299.239685059 299.335388184 299.575622559 299.091247559 298.448669434 297.843200684 297.099060059 296.675231934 299.661468506 300.225921631 300.639984131 300.919281006 300.782562256 300.473968506 300.071624756 299.667327881 299.561859131 299.544281006 299.583343506 299.585296631 299.171234131 298.628265381 297.960296631 297.251312256 296.468109131 299.854248047 300.500732422 301.061279297 301.399169922 301.149169922 300.815185547 300.395263672 299.934326172 299.617919922 299.516357422 299.852294922 300.018310547 299.461669922 298.826904297 298.086669922 297.350341797 296.647216797 299.472106934 299.995544434 300.323669434 300.595153809 300.509216309 300.294372559 299.903747559 299.481872559 299.173278809 299.046325684 299.220153809 299.390075684 299.009216309 298.409606934 297.684997559 296.987731934 296.374450684 299.446624756 299.972015381 300.511077881 300.862640381 300.753265381 300.358734131 299.845062256 299.464202881 299.241546631 299.343109131 299.587249756 299.417327881 299.118499756 298.495452881 297.809906006 297.284515381 296.577484131 299.582763672 300.227294922 300.856201172 301.233154297 301.063232422 300.637451172 300.160888672 299.789794922 299.342529297 299.319091797 299.817138672 299.819091797 299.406982422 298.701904297 297.860107422 297.258544922 296.586669922 299.474060059 299.856872559 300.147888184 300.421325684 300.378356934 300.214294434 299.735778809 299.335388184 298.897888184 298.804138184 299.237731934 299.282653809 299.015075684 298.335388184 297.536560059 296.956481934 296.274841309 299.397796631 299.927093506 300.415374756 300.610687256 300.552093506 300.266937256 299.694671631 299.288421631 299.075531006 299.114593506 299.341156006 299.270843506 299.175140381 298.434906006 297.663421631 297.138031006 296.417327881 299.541748047 300.203857422 300.725341797 300.869873047 300.787841797 300.438232422 299.924560547 299.551513672 299.162841797 299.145263672 299.522216797 299.535888672 299.311279297 298.508544922 297.656982422 297.039794922 296.324951172 299.575622559 299.899841309 300.061950684 300.110778809 300.153747559 300.063903809 299.485778809 299.069763184 298.778747559 298.731872559 299.075622559 299.183044434 299.126403809 298.276794434 297.419372559 296.780700684 295.977966309 299.212249756 299.864593506 300.384124756 300.614593506 300.444671631 300.149749756 299.698577881 299.206390381 298.999359131 298.934906006 299.167327881 299.235687256 299.020843506 298.233734131 297.602874756 297.011077881 295.880218506 299.393310547 300.139404297 300.658935547 300.785888672 300.633544922 300.287841797 299.858154297 299.360107422 299.053466797 299.024169922 299.346435547 299.406982422 299.028076172 298.112060547 297.440185547 296.780029297 295.713623047 299.515075684 299.948669434 300.075622559 300.097106934 300.056091309 299.862731934 299.362731934 298.874450684 298.716247559 298.733825684 299.013122559 299.190856934 299.026794434 298.056091309 297.345153809 296.602966309 295.323669434 299.227874756 299.815765381 300.126312256 300.456390381 300.364593506 300.102874756 299.798187256 299.098968506 298.864593506 298.829437256 299.139984131 299.196624756 298.772796631 298.139984131 297.450531006 296.720062256 295.604827881 299.295654297 299.944091797 300.317138672 300.610107422 300.555419922 300.240966797 299.895263672 299.203857422 298.959716797 298.953857422 299.309326172 299.356201172 298.801513672 297.971435547 297.123779297 296.311279297 295.313232422 299.589294434 299.934997559 299.897888184 300.003356934 300.001403809 299.778747559 299.458435059 298.827575684 298.643981934 298.645935059 298.958435059 299.136169434 298.757263184 297.901794434 297.077575684 296.200622559 294.946716309 299.286468506 299.930999756 300.192718506 300.446624756 300.335296631 300.013031006 299.682952881 299.057952881 298.964202881 298.880218506 298.975921631 298.964202881 298.530609131 298.126312256 297.395843506 296.520843506 295.659515381 299.215576172 299.942138672 300.362060547 300.678466797 300.539794922 300.141357422 299.719482422 299.102294922 299.035888672 298.975341797 299.182373047 299.139404297 298.623779297 298.008544922 297.028076172 296.102294922 295.276123047 299.686950684 300.079528809 300.056091309 300.120544434 300.011169434 299.706481934 299.388122559 298.841247559 298.800231934 298.643981934 298.768981934 298.901794434 298.497497559 297.907653809 296.974060059 296.007263184 295.063903809 299.055999756 299.555999756 300.014984131 300.304046631 300.218109131 299.901702881 299.493499756 298.915374756 298.714202881 298.698577881 298.977874756 299.009124756 298.454437256 297.790374756 297.243499756 296.403656006 295.397796631 298.928466797 299.602294922 300.221435547 300.586669922 300.428466797 300.022216797 299.520263672 298.926513672 298.727294922 298.705810547 299.188232422 299.213623047 298.565185547 297.729248047 296.965576172 296.098388672 295.030029297 299.503356934 299.821716309 299.995544434 300.134216309 299.976013184 299.659606934 299.302185059 298.774841309 298.558044434 298.327575684 298.722106934 298.991638184 298.472106934 297.708435059 296.915466309 296.046325684 295.011169434 299.151702881 299.393890381 299.897796631 300.161468506 300.081390381 299.782562256 299.350921631 298.913421631 298.585296631 298.653656006 298.975921631 298.886077881 298.526702881 297.663421631 296.944671631 296.003265381 294.782562256 299.016357422 299.576904297 300.155029297 300.418701172 300.278076172 299.922607422 299.395263672 298.893310547 298.572998047 298.633544922 299.117919922 299.063232422 298.610107422 297.621826172 296.721435547 295.715576172 294.410888672 299.640075684 299.784606934 299.977966309 300.081481934 299.933044434 299.624450684 299.229919434 298.761169434 298.329528809 298.159606934 298.665466309 298.882263184 298.577575684 297.624450684 296.616638184 295.675231934 294.487731934 298.975921631 299.354827881 299.864593506 300.087249756 300.003265381 299.688812256 299.200531006 298.921234131 298.675140381 298.764984131 298.987640381 298.751312256 298.550140381 297.774749756 296.856781006 295.835296631 294.602874756 298.891357422 299.580810547 300.114013672 300.311279297 300.219482422 299.885498047 299.305419922 298.906982422 298.688232422 298.785888672 299.074951172 298.893310547 298.612060547 297.699951172 296.602294922 295.447998047 294.151123047 299.485778809 299.747497559 299.964294434 300.030700684 299.944763184 299.649841309 299.128356934 298.714294434 298.339294434 298.259216309 298.679138184 298.729919434 298.550231934 297.643981934 296.456481934 295.409606934 294.278747559 298.899749756 299.282562256 299.559906006 299.813812256 299.716156006 299.524749756 299.161468506 298.850921631 298.645843506 298.602874756 299.036468506 299.007171631 298.472015381 297.559906006 296.669281006 295.563812256 294.266937256 298.906982422 299.512451172 299.832763672 300.063232422 300.024169922 299.764404297 299.276123047 298.889404297 298.727294922 298.746826172 299.160888672 299.164794922 298.596435547 297.520263672 296.410888672 295.153076172 293.832763672 299.378356934 299.638122559 299.747497559 299.856872559 299.763122559 299.579528809 299.153747559 298.751403809 298.427185059 298.284606934 298.790466309 298.958435059 298.411560059 297.347106934 296.296325684 295.177185059 294.087341309 299.003265381 299.311859131 299.481781006 299.833343506 299.528656006 299.270843506 299.110687256 298.770843506 298.684906006 298.526702881 298.714202881 298.837249756 298.384124756 297.602874756 296.581390381 295.159515381 293.688812256 299.071044922 299.512451172 299.801513672 300.127685547 299.865966797 299.528076172 299.207763672 298.838623047 298.797607422 298.803466797 298.994873047 299.084716797 298.567138672 297.602294922 296.350341797 294.795654297 293.350341797 299.477966309 299.610778809 299.688903809 299.921325684 299.636169434 299.403747559 299.149841309 298.806091309 298.640075684 298.483825684 298.622497559 298.776794434 298.265075684 297.306091309 296.245544434 294.893981934 293.776794434 298.712249756 299.054046631 299.331390381 299.663421631 299.415374756 299.161468506 298.954437256 298.452484131 298.309906006 298.366546631 298.602874756 298.671234131 298.399749756 297.630218506 296.446624756 295.046234131 293.376312256 298.791748047 299.225341797 299.674560547 299.957763672 299.717529297 299.385498047 299.082763672 298.610107422 298.459716797 298.688232422 299.004638672 299.026123047 298.588623047 297.588623047 296.188232422 294.680419922 293.117919922 299.177185059 299.280700684 299.468200684 299.679138184 299.485778809 299.317810059 299.104919434 298.694763184 298.458435059 298.493591309 298.630310059 298.661560059 298.231872559 297.233825684 296.093200684 294.809997559 293.604919434 298.782562256 299.116546631 299.409515381 299.446624756 299.331390381 299.014984131 298.729827881 298.411468506 298.020843506 298.075531006 298.534515381 298.686859131 298.403656006 297.475921631 296.165374756 294.800140381 292.809906006 298.938232422 299.313232422 299.723388672 299.705810547 299.639404297 299.254638672 298.905029297 298.690185547 298.311279297 298.457763672 298.998779297 299.121826172 298.606201172 297.371826172 295.871826172 294.446044922 292.664794922 299.206481934 299.292419434 299.458435059 299.407653809 299.368591309 299.149841309 298.909606934 298.802185059 298.354919434 298.282653809 298.671325684 298.815856934 298.290466309 297.069763184 295.833435059 294.640075684 293.210388184 298.710296631 298.981781006 299.395843506 299.341156006 299.186859131 298.700531006 298.368499756 298.122406006 297.847015381 297.952484131 298.218109131 298.542327881 298.401702881 297.657562256 296.225921631 294.430999756 292.348968506 298.938232422 299.192138672 299.600341797 299.531982422 299.530029297 299.033935547 298.637451172 298.508544922 298.252685547 298.399169922 298.701904297 298.979248047 298.588623047 297.535888672 295.879638672 294.106201172 292.295654297 299.063903809 299.089294434 299.284606934 299.212341309 299.306091309 299.015075684 298.690856934 298.604919434 298.261169434 298.171325684 298.429138184 298.755310059 298.356872559 297.300231934 295.872497559 294.358825684 292.946716309 298.616546631 298.872406006 299.253265381 299.134124756 298.905609131 298.555999756 298.360687256 297.737640381 297.559906006 297.907562256 298.083343506 298.622406006 298.337249756 297.511077881 296.134124756 294.167327881 292.243499756 298.850341797 299.031982422 299.426513672 299.344482422 299.242919922 298.893310547 298.674560547 298.192138672 298.069091797 298.451904297 298.614013672 299.053466797 298.561279297 297.475341797 295.811279297 293.860107422 292.156982422 298.888122559 298.933044434 299.138122559 299.046325684 299.085388184 298.985778809 298.851013184 298.376403809 298.120544434 298.239685059 298.390075684 298.903747559 298.399841309 297.257263184 295.772888184 294.126403809 292.860778809 298.550140381 298.893890381 299.100921631 298.917327881 298.700531006 298.268890381 298.130218506 297.690765381 297.518890381 297.731781006 297.909515381 298.653656006 298.339202881 297.499359131 296.296234131 294.266937256 292.036468506 298.793701172 299.010498047 299.252685547 299.174560547 299.035888672 298.596435547 298.492919922 298.231201172 298.184326172 298.420654297 298.485107422 299.096435547 298.649169922 297.582763672 296.020263672 293.938232422 291.867919922 298.813903809 298.942810059 299.042419434 298.976013184 298.999450684 298.761169434 298.718200684 298.472106934 298.298278809 298.294372559 298.360778809 299.052185059 298.538513184 297.325622559 295.923278809 294.194763184 292.595153809 298.179046631 298.516937256 298.727874756 298.645843506 298.565765381 298.097015381 297.788421631 297.499359131 297.223968506 297.477874756 298.003265381 298.573577881 298.483734131 297.804046631 296.466156006 294.403656006 291.845062256 298.453857422 298.676513672 298.842529297 298.848388672 298.916748047 298.494873047 298.256591797 298.123779297 298.012451172 298.301513672 298.637451172 299.045654297 298.813232422 297.912841797 296.194091797 294.004638672 291.551513672 298.474060059 298.610778809 298.663513184 298.669372559 298.976013184 298.776794434 298.565856934 298.407653809 298.145935059 298.226013184 298.591247559 299.075622559 298.727966309 297.630310059 296.009216309 294.149841309 292.200622559 298.255218506 298.438812256 298.694671631 298.509124756 298.223968506 298.028656006 297.743499756 297.296234131 296.929046631 297.313812256 298.139984131 298.526702881 298.638031006 297.968109131 296.522796631 294.720062256 291.903656006 298.555419922 298.670654297 298.867919922 298.746826172 298.608154297 298.455810547 298.285888672 298.035888672 297.809326172 298.194091797 298.842529297 299.035888672 298.934326172 298.022216797 296.248779297 294.295654297 291.549560547 298.546325684 298.622497559 298.817810059 298.655700684 298.683044434 298.772888184 298.669372559 298.378356934 297.933044434 298.108825684 298.772888184 299.071716309 298.892028809 297.735778809 295.942810059 294.243591309 292.007263184 298.048187256 298.083343506 298.333343506 298.282562256 297.927093506 297.763031006 297.356781006 296.952484131 296.866546631 297.151702881 297.921234131 298.571624756 298.925140381 298.393890381 297.141937256 295.237640381 292.034515381 298.428466797 298.350341797 298.512451172 298.512451172 298.352294922 298.250732422 297.965576172 297.822998047 297.838623047 298.047607422 298.690185547 299.121826172 299.166748047 298.352294922 296.838623047 294.842529297 291.641357422 298.425231934 298.278747559 298.581481934 298.643981934 298.587341309 298.665466309 298.481872559 298.231872559 297.942810059 297.929138184 298.544372559 299.106872559 299.069763184 297.944763184 296.331481934 294.509216309 291.880310059 297.790374756 297.975921631 297.970062256 297.934906006 297.833343506 297.675140381 297.317718506 296.780609131 296.784515381 297.243499756 298.030609131 298.741546631 298.975921631 298.659515381 297.516937256 295.237640381 292.337249756 298.322998047 298.369873047 298.239013672 298.196044922 298.270263672 298.256591797 298.039794922 297.746826172 297.840576172 298.162841797 298.865966797 299.332763672 299.219482422 298.584716797 297.151123047 294.754638672 291.828857422 298.306091309 298.294372559 298.337341309 298.434997559 298.645935059 298.759216309 298.610778809 298.163513184 297.948669434 298.083435059 298.739685059 299.370544434 299.143981934 298.081481934 296.462341309 294.169372559 291.892028809 297.546234131 297.903656006 297.743499756 297.579437256 297.452484131 297.288421631 297.298187256 296.761077881 296.690765381 297.307952881 297.966156006 298.708343506 299.167327881 299.016937256 297.936859131 295.772796631 293.075531006 298.172607422 298.377685547 298.143310547 298.018310547 297.998779297 297.959716797 298.129638672 297.826904297 297.797607422 298.221435547 298.781982422 299.252685547 299.399169922 298.944091797 297.461669922 295.139404297 292.504638672 298.024841309 298.341247559 298.345153809 298.380310059 298.483825684 298.495544434 298.683044434 298.208435059 297.960388184 298.294372559 298.796325684 299.431091309 299.460388184 298.454528809 296.647888184 294.450622559 292.493591309 297.214202881 297.321624756 297.161468506 297.227874756 297.305999756 297.196624756 297.095062256 296.690765381 296.843109131 297.393890381 297.975921631 298.872406006 299.464202881 299.112640381 298.216156006 296.530609131 293.604827881 297.879638672 297.858154297 297.610107422 297.797607422 298.002685547 297.965576172 298.024169922 297.803466797 297.930419922 298.287841797 298.770263672 299.399169922 299.729248047 299.094482422 297.711669922 295.781982422 292.903076172 297.630310059 297.823669434 297.921325684 298.325622559 298.663513184 298.638122559 298.659606934 298.222106934 298.163513184 298.497497559 298.952575684 299.692810059 299.915466309 298.661560059 296.835388184 295.046325684 292.757263184 297.347015381 297.173187256 296.944671631 296.790374756 296.827484131 297.104827881 296.942718506 296.720062256 296.938812256 297.399749756 298.417327881 299.048187256 299.380218506 299.266937256 298.597015381 297.143890381 294.757171631 297.910888672 297.764404297 297.508544922 297.457763672 297.608154297 297.967529297 297.953857422 297.881591797 298.039794922 298.281982422 299.145263672 299.528076172 299.655029297 299.379638672 298.180419922 296.237060547 293.783935547 297.776794434 297.864685059 297.923278809 298.145935059 298.450622559 298.796325684 298.731872559 298.411560059 298.327575684 298.515075684 299.460388184 299.974060059 299.925231934 298.995544434 297.319763184 295.417419434 293.323669434 296.708343506 296.511077881 296.552093506 296.458343506 296.434906006 296.823577881 296.747406006 296.790374756 296.958343506 297.372406006 298.538421631 298.960296631 299.499359131 299.761077881 299.128265381 298.177093506 296.513031006 297.199951172 297.080810547 297.201904297 297.211669922 297.293701172 297.760498047 297.832763672 298.008544922 298.059326172 298.205810547 299.147216797 299.342529297 299.805419922 300.051513672 298.871826172 297.315185547 295.645263672 297.216247559 297.286560059 297.686950684 298.040466309 298.296325684 298.694763184 298.692810059 298.634216309 298.425231934 298.489685059 299.608825684 299.907653809 300.073669434 299.671325684 297.985778809 296.341247559 294.991638184 296.350921631 296.177093506 296.157562256 296.202484131 296.485687256 296.786468506 296.798187256 296.764984131 297.013031006 297.663421631 298.454437256 299.128265381 299.811859131 299.505218506 299.282562256 298.731781006 295.614593506 296.969482422 296.795654297 296.844482422 296.985107422 297.434326172 297.805419922 297.895263672 298.022216797 298.108154297 298.444091797 299.049560547 299.520263672 300.192138672 299.938232422 299.346435547 298.569091797 295.910888672 297.028747559 297.005310059 297.349060059 297.907653809 298.567810059 298.804138184 298.768981934 298.706481934 298.575622559 298.870544434 299.622497559 300.089294434 300.540466309 299.757263184 298.538513184 297.587341309 295.517028809 295.997406006 295.991546631 295.807952881 295.657562256 296.028656006 296.370452881 296.921234131 296.796234131 296.991546631 297.819671631 298.304046631 299.288421631 299.747406006 299.802093506 300.315765381 297.374359131 290.677093506 296.656982422 296.610107422 296.535888672 296.494873047 297.055419922 297.447998047 298.045654297 298.110107422 298.133544922 298.621826172 298.924560547 299.697998047 300.141357422 300.203857422 300.576904297 298.114013672 292.369873047 296.702575684 296.872497559 297.128356934 297.477966309 298.284606934 298.567810059 298.950622559 298.874450684 298.751403809 299.204528809 299.520935059 300.239685059 300.579528809 300.222106934 300.104919434 297.739685059 292.919372559 295.151702881 295.222015381 295.352874756 295.561859131 296.171234131 296.413421631 297.007171631 296.909515381 297.245452881 298.032562256 298.491546631 299.479827881 299.456390381 300.034515381 299.434906006 293.177093506 287.636077881 295.844482422 295.846435547 296.125732422 296.492919922 297.266357422 297.520263672 298.160888672 298.242919922 298.416748047 298.938232422 299.168701172 299.934326172 299.899169922 300.440185547 299.852294922 294.416748047 289.332763672 295.878356934 296.140075684 296.761169434 297.474060059 298.518981934 298.716247559 299.097106934 299.009216309 299.044372559 299.444763184 299.614685059 300.440856934 300.386169434 300.573669434 299.839294434 295.003356934 290.944763184 295.309906006 295.116546631 294.995452881 295.114593506 295.938812256 296.425140381 296.823577881 296.786468506 297.397796631 298.011077881 298.579437256 299.550140381 299.430999756 299.772796631 296.956390381 291.077484131 290.534515381 296.155029297 295.873779297 295.854248047 296.151123047 297.112060547 297.576904297 298.016357422 298.086669922 298.545654297 299.002685547 299.258544922 299.975341797 299.912841797 300.297607422 297.865966797 292.539794922 291.858154297 296.163513184 296.220153809 296.581481934 297.194763184 298.360778809 298.800231934 299.058044434 298.913513184 299.175231934 299.477966309 299.663513184 300.522888184 300.474060059 300.544372559 298.392028809 293.751403809 292.839294434 294.647796631 294.403656006 294.604827881 294.962249756 295.856781006 296.673187256 297.104827881 297.071624756 297.532562256 298.050140381 298.706390381 299.159515381 299.450531006 299.876312256 297.266937256 295.069671631 296.815765381 295.487060547 295.147216797 295.473388672 296.074951172 297.110107422 297.864013672 298.321044922 298.369873047 298.645263672 299.041748047 299.389404297 299.549560547 299.903076172 300.459716797 298.405029297 296.844482422 297.727294922 295.417419434 295.556091309 296.327575684 297.235778809 298.351013184 299.020935059 299.356872559 299.169372559 299.263122559 299.616638184 299.942810059 300.140075684 300.362731934 300.546325684 299.007263184 298.479919434 298.409606934 294.233734131 294.175140381 294.616546631 295.264984131 296.208343506 296.925140381 297.161468506 297.122406006 297.401702881 298.132171631 298.936859131 298.886077881 299.600921631 299.341156006 296.141937256 296.251312256 298.278656006 295.094482422 294.926513672 295.455810547 296.354248047 297.502685547 298.164794922 298.385498047 298.420654297 298.479248047 298.996826172 299.651123047 299.317138672 299.977294922 299.877685547 297.129638672 297.977294922 299.260498047 294.977966309 295.343200684 296.329528809 297.520935059 298.704528809 299.208435059 299.274841309 299.118591309 299.058044434 299.610778809 300.276794434 299.837341309 300.241638184 299.987731934 298.153747559 300.186950684 300.276794434 294.337249756 294.362640381 294.315765381 294.835296631 296.093109131 297.153656006 297.417327881 297.487640381 297.757171631 298.155609131 298.591156006 298.813812256 300.145843506 298.930999756 294.911468506 295.202484131 297.138031006 295.225341797 295.145263672 295.139404297 295.979248047 297.490966797 298.502685547 298.721435547 298.772216797 298.768310547 298.891357422 299.381591797 299.373779297 300.504638672 299.489013672 295.832763672 296.422607422 298.653076172 295.059997559 295.573669434 296.061950684 297.128356934 298.561950684 299.411560059 299.485778809 299.372497559 299.345153809 299.571716309 299.985778809 299.661560059 300.612731934 299.942810059 297.216247559 298.347106934 299.919372559 293.290374756 293.501312256 294.395843506 295.708343506 296.764984131 297.645843506 297.690765381 297.608734131 298.093109131 298.470062256 298.981781006 299.196624756 299.220062256 297.040374756 295.563812256 297.304046631 297.593109131 294.121826172 294.266357422 295.293701172 297.035888672 298.276123047 299.092529297 299.147216797 298.946044922 299.164794922 299.377685547 299.910888672 299.824951172 299.590576172 297.682373047 296.006591797 297.551513672 298.520263672 293.931091309 294.751403809 296.245544434 298.091247559 299.173278809 299.819763184 299.759216309 299.382263184 299.558044434 299.870544434 300.388122559 300.149841309 299.983825684 298.755310059 297.239685059 298.005310059 298.929138184 293.313812256 293.886077881 294.761077881 295.856781006 296.569671631 297.222015381 297.429046631 297.643890381 297.989593506 298.329437256 299.282562256 299.126312256 297.518890381 295.132171631 295.653656006 298.427093506 298.401702881 294.190185547 294.715576172 295.686279297 297.110107422 298.072998047 298.768310547 298.961669922 298.947998047 299.033935547 299.276123047 300.123779297 299.647216797 297.750732422 295.590576172 295.840576172 298.348388672 298.625732422 294.028747559 295.267028809 296.548278809 298.022888184 298.864685059 299.358825684 299.520935059 299.407653809 299.364685059 299.546325684 300.436950684 300.226013184 298.759216309 297.259216309 296.956481934 298.405700684 298.628356934 293.128265381 294.065765381 294.565765381 295.966156006 297.401702881 297.516937256 297.438812256 297.962249756 298.401702881 299.007171631 299.343109131 297.682952881 297.501312256 298.206390381 298.405609131 298.960296631 298.360687256 293.996826172 294.908935547 295.489013672 297.112060547 298.875732422 299.061279297 298.766357422 299.088623047 299.321044922 299.783935547 300.051513672 298.383544922 297.721435547 298.100341797 298.424560547 298.936279297 298.483154297 293.993591309 295.376403809 296.118591309 297.827575684 299.470153809 299.442810059 299.138122559 299.407653809 299.433044434 299.774841309 300.069763184 298.724060059 298.362731934 298.729919434 298.792419434 299.042419434 298.513122559 292.927093506 293.973968506 295.772796631 296.610687256 295.001312256 293.253265381 293.345062256 293.079437256 294.495452881 297.741546631 299.624359131 298.014984131 298.405609131 299.987640381 299.643890381 298.938812256 298.036468506 293.653076172 294.735107422 296.692138672 297.633544922 296.074951172 294.117919922 293.600341797 293.811279297 295.225341797 298.258544922 300.016357422 298.834716797 298.832763672 299.600341797 299.393310547 298.832763672 298.121826172 293.952575684 295.101013184 297.108825684 298.106872559 296.434997559 294.415466309 293.915466309 293.954528809 295.212341309 298.155700684 299.892028809 298.612731934 298.813903809 299.745544434 299.515075684 298.979919434 298.155700684 293.405609131 295.245452881 294.720062256 290.268890381 287.915374756 288.534515381 291.009124756 291.505218506 291.323577881 293.165374756 295.757171631 297.423187256 299.243499756 299.233734131 298.608734131 298.587249756 297.899749756 294.080810547 295.918701172 295.383544922 290.930419922 288.098388672 288.424560547 290.879638672 291.758544922 291.768310547 293.342529297 295.864013672 298.176513672 299.901123047 298.901123047 298.233154297 298.414794922 297.955810547 294.390075684 296.138122559 295.624450684 291.212341309 288.249450684 288.692810059 291.163513184 291.968200684 291.940856934 293.599060059 295.989685059 297.804138184 299.638122559 299.286560059 298.640075684 298.556091309 297.895935059 294.466156006 294.737640381 288.516937256 284.550140381 288.337249756 292.284515381 295.518890381 295.831390381 294.030609131 291.798187256 290.208343506 293.374359131 297.921234131 298.841156006 298.770843506 298.522796631 297.761077881 294.920654297 295.059326172 288.494873047 284.459716797 288.194091797 292.309326172 295.664794922 295.934326172 294.106201172 291.834716797 290.475341797 294.727294922 299.492919922 298.725341797 298.332763672 298.364013672 297.791748047 294.907653809 295.003356934 288.796325684 285.017028809 288.696716309 292.597106934 295.821716309 296.243591309 294.579528809 292.407653809 290.944763184 294.563903809 299.216247559 299.128356934 298.706481934 298.448669434 297.671325684 295.940765381 290.153656006 281.694671631 285.427093506 295.620452881 296.548187256 295.934906006 295.899749756 295.452484131 294.220062256 291.831390381 293.050140381 295.854827881 297.847015381 298.733734131 297.653656006 296.975921631 296.000732422 289.985107422 281.203857422 285.221435547 295.203857422 296.278076172 295.969482422 295.944091797 295.410888672 294.229248047 292.213623047 294.412841797 297.235107422 297.703857422 298.223388672 297.406982422 296.887451172 295.907653809 290.011169434 282.083435059 286.352966309 295.462341309 296.278747559 296.083435059 296.362731934 296.104919434 295.157653809 292.809997559 294.436950684 297.919372559 298.302185059 298.487731934 297.604919434 296.936950684 290.014984131 283.462249756 281.489593506 290.325531006 297.368499756 295.825531006 295.776702881 296.024749756 295.761077881 296.083343506 295.673187256 296.202484131 296.684906006 297.679046631 298.550140381 297.384124756 296.909515381 289.772216797 283.346435547 281.471435547 290.362060547 296.430419922 295.348388672 295.783935547 296.170654297 295.768310547 296.010498047 296.031982422 297.360107422 297.348388672 297.442138672 298.131591797 297.067138672 296.725341797 289.544372559 283.587341309 282.280700684 290.854919434 296.436950684 295.378356934 296.120544434 296.610778809 296.311950684 296.862731934 296.681091309 297.618591309 298.872497559 298.276794434 298.425231934 297.417419434 296.876403809 280.077484131 282.286468506 289.575531006 296.653656006 297.411468506 296.389984131 297.298187256 296.712249756 296.087249756 295.804046631 295.520843506 297.643890381 298.030609131 298.073577881 298.585296631 297.841156006 297.300140381 279.797607422 282.393310547 289.744873047 296.237060547 296.326904297 296.092529297 297.438232422 296.848388672 296.108154297 295.719482422 295.697998047 298.155029297 297.871826172 297.668701172 298.239013672 297.487060547 297.045654297 279.671325684 282.761169434 289.999450684 295.970153809 295.966247559 296.255310059 297.747497559 297.134216309 296.370544434 296.208435059 296.364685059 299.020935059 299.981872559 298.474060059 298.509216309 297.899841309 297.255310059 285.393890381 290.489593506 297.216156006 298.388031006 297.169281006 297.085296631 296.501312256 296.022796631 296.321624756 294.860687256 293.452484131 296.251312256 297.628265381 298.055999756 298.270843506 297.757171631 297.227874756 285.031982422 290.582763672 297.006591797 297.313232422 296.115966797 296.922607422 296.559326172 296.008544922 296.299560547 294.750732422 293.856201172 296.473388672 296.867919922 297.444091797 297.971435547 297.428466797 296.959716797 284.679138184 290.544372559 296.604919434 296.581481934 295.845153809 297.108825684 296.811950684 296.270935059 296.513122559 295.300231934 294.755310059 298.558044434 299.315856934 298.212341309 298.274841309 297.893981934 297.304138184 296.124359131 296.981781006 298.214202881 297.206390381 296.587249756 296.997406006 296.874359131 297.145843506 296.612640381 294.659515381 293.415374756 295.372406006 297.563812256 298.276702881 298.118499756 297.624359131 297.075531006 295.660888672 296.717529297 297.477294922 295.791748047 296.014404297 296.856201172 296.828857422 297.117919922 296.586669922 294.795654297 294.127685547 295.424560547 296.770263672 297.748779297 297.869873047 297.291748047 296.813232422 295.222106934 296.487731934 296.757263184 295.036560059 295.921325684 297.003356934 297.081481934 297.288513184 296.792419434 295.337341309 295.212341309 297.694763184 298.700622559 298.226013184 298.163513184 297.718200684 297.224060059 300.368499756 299.429046631 298.159515381 296.694671631 296.399749756 296.358734131 297.016937256 296.929046631 296.098968506 295.655609131 294.864593506 296.245452881 298.413421631 298.409515381 297.923187256 297.540374756 296.946624756 298.608154297 297.744873047 296.377685547 295.631591797 296.164794922 296.332763672 297.022216797 296.944091797 296.119873047 295.901123047 295.055419922 295.889404297 297.906982422 298.067138672 297.694091797 297.219482422 296.690185547 298.968200684 297.653747559 295.864685059 295.321716309 296.095153809 296.436950684 297.267028809 297.132263184 296.370544434 296.308044434 296.034606934 297.017028809 298.272888184 298.151794434 297.968200684 297.585388184 297.101013184 300.427093506 299.973968506 297.970062256 296.038421631 295.839202881 296.243499756 296.858734131 296.714202881 296.358734131 296.202484131 296.128265381 298.208343506 299.323577881 298.458343506 297.948577881 297.401702881 296.876312256 297.992919922 297.655029297 296.385498047 295.477294922 295.731201172 296.270263672 296.887451172 296.699951172 296.405029297 296.246826172 295.832763672 297.694091797 298.944091797 298.162841797 297.780029297 297.205810547 296.637451172 298.304138184 297.528747559 296.194763184 295.337341309 295.636169434 296.276794434 297.102966309 296.933044434 296.663513184 296.532653809 296.575622559 298.278747559 298.997497559 298.286560059 297.983825684 297.429138184 296.976013184 298.472015381 297.479827881 296.255218506 295.388031006 295.575531006 296.020843506 296.624359131 296.950531006 296.229827881 295.311859131 296.442718506 299.034515381 299.091156006 298.425140381 298.063812256 297.214202881 296.725921631 296.967529297 296.283935547 295.678466797 295.270263672 295.506591797 295.989013672 296.578857422 296.930419922 296.266357422 295.354248047 296.367919922 298.817138672 298.785888672 298.166748047 297.922607422 296.975341797 296.451904297 297.007263184 296.270935059 295.716247559 295.276794434 295.538513184 296.089294434 296.772888184 297.167419434 296.495544434 295.634216309 296.808044434 299.009216309 298.845153809 298.270935059 297.987731934 297.114685059 296.698669434 296.194671631 294.886077881 295.237640381 296.085296631 295.882171631 295.733734131 296.362640381 296.841156006 296.327484131 296.147796631 297.483734131 299.091156006 298.868499756 298.573577881 297.964202881 297.198577881 296.628265381 295.947998047 294.947998047 295.289794922 296.129638672 295.912841797 295.737060547 296.270263672 296.885498047 296.428466797 296.227294922 297.588623047 298.926513672 298.602294922 298.373779297 297.703857422 296.832763672 296.358154297 295.882263184 294.976013184 295.434997559 296.274841309 296.097106934 295.954528809 296.487731934 297.089294434 296.661560059 296.532653809 297.821716309 298.909606934 298.597106934 298.349060059 297.724060059 296.976013184 296.513122559 294.950531006 294.261077881 294.716156006 296.028656006 296.182952881 296.253265381 296.710296631 297.003265381 297.509124756 298.651702881 299.124359131 299.155609131 299.143890381 298.610687256 297.772796631 297.284515381 296.458343506 295.375732422 294.694091797 294.867919922 296.063232422 296.233154297 296.219482422 296.594482422 297.024169922 297.537841797 298.574951172 298.990966797 298.969482422 298.961669922 298.274169922 297.281982422 296.865966797 296.199951172 295.423278809 294.698669434 294.940856934 296.138122559 296.374450684 296.427185059 296.819763184 297.229919434 297.724060059 298.708435059 299.018981934 298.944763184 298.886169434 298.130310059 297.235778809 296.845153809 296.181091309 293.235687256 293.733734131 294.122406006 295.024749756 295.829437256 296.247406006 296.444671631 296.948577881 298.227874756 299.323577881 299.450531006 299.278656006 298.968109131 298.358734131 297.802093506 297.216156006 296.171234131 293.615966797 294.127685547 294.301513672 295.047607422 295.813232422 296.178466797 296.436279297 296.992919922 298.194091797 299.160888672 299.256591797 299.143310547 298.748779297 297.844482422 297.194091797 296.697998047 295.797607422 293.479919434 294.009216309 294.329528809 295.130310059 295.985778809 296.409606934 296.686950684 297.167419434 298.226013184 299.183044434 299.268981934 299.128356934 298.589294434 297.630310059 297.040466309 296.493591309 295.665466309 292.764984131 293.766937256 294.206390381 294.421234131 295.350921631 296.255218506 296.930999756 298.065765381 299.272796631 299.405609131 299.472015381 299.161468506 298.702484131 298.364593506 297.805999756 297.055999756 296.235687256 292.838623047 293.973388672 294.346435547 294.500732422 295.406982422 296.307373047 296.936279297 297.854248047 299.184326172 299.319091797 299.377685547 299.055419922 298.397216797 297.848388672 297.168701172 296.369873047 295.713623047 292.466247559 293.726013184 294.327575684 294.597106934 295.614685059 296.561950684 297.227966309 298.007263184 299.087341309 299.290466309 299.395935059 299.065856934 298.239685059 297.565856934 296.872497559 296.058044434 295.487731934 294.360687256 294.458343506 294.706390381 294.819671631 295.581390381 296.321624756 297.075531006 298.550140381 299.520843506 299.384124756 299.171234131 298.960296631 298.727874756 298.225921631 297.522796631 297.014984131 296.366546631 294.321044922 294.395263672 294.367919922 294.379638672 295.301513672 296.188232422 296.908935547 298.377685547 299.504638672 299.418701172 299.164794922 298.842529297 298.389404297 297.699951172 296.709716797 296.149169922 295.721435547 293.890075684 294.044372559 294.149841309 294.235778809 295.368591309 296.415466309 297.202575684 298.390075684 299.362731934 299.321716309 299.114685059 298.796325684 298.177185059 297.272888184 296.253356934 295.763122559 295.378356934 297.009124756 296.593109131 296.626312256 296.731781006 296.862640381 296.690765381 297.366546631 299.138031006 299.546234131 299.380218506 299.218109131 299.069671631 298.593109131 297.944671631 297.565765381 297.190765381 296.360687256 297.076904297 296.315185547 295.754638672 295.721435547 295.908935547 296.024169922 296.885498047 299.086669922 299.572998047 299.428466797 299.237060547 298.949951172 298.270263672 297.346435547 296.604248047 296.201904297 295.444091797 296.815856934 295.954528809 295.304138184 295.263122559 295.470153809 295.679138184 296.778747559 298.977966309 299.472106934 299.358825684 299.159606934 298.870544434 298.017028809 296.847106934 296.104919434 295.737731934 294.993591309 298.936859131 299.038421631 298.938812256 298.651702881 297.913421631 297.491546631 298.636077881 299.835296631 299.507171631 299.237640381 299.182952881 298.964202881 298.364593506 297.841156006 297.393890381 296.905609131 296.409515381 299.086669922 299.006591797 298.766357422 298.598388672 297.555419922 296.994873047 298.385498047 299.875732422 299.518310547 299.280029297 299.270263672 298.916748047 298.049560547 297.178466797 296.442138672 295.899169922 295.233154297 298.899841309 298.821716309 298.616638184 298.433044434 296.950622559 296.128356934 297.710388184 299.778747559 299.485778809 299.224060059 299.161560059 298.780700684 297.753356934 296.638122559 295.864685059 295.268981934 294.642028809 298.669281006 298.960296631 299.130218506 299.241546631 298.659515381 298.304046631 299.206390381 299.430999756 299.177093506 299.337249756 299.165374756 298.850921631 298.333343506 297.673187256 296.880218506 296.421234131 296.272796631 298.862060547 299.059326172 299.254638672 299.574951172 298.912841797 298.256591797 299.340576172 299.639404297 299.354248047 299.463623047 299.250732422 298.783935547 297.985107422 297.045654297 296.053466797 295.555419922 295.260498047 298.593200684 298.970153809 299.321716309 299.706481934 298.864685059 298.046325684 299.306091309 299.686950684 299.255310059 299.331481934 299.102966309 298.573669434 297.636169434 296.466247559 295.392028809 294.825622559 294.558044434 298.651702881 298.837249756 298.936859131 299.159515381 299.348968506 299.358734131 299.481781006 299.208343506 299.239593506 299.319671631 299.020843506 298.833343506 298.180999756 297.356781006 296.727874756 296.229827881 295.763031006 298.893310547 298.865966797 298.961669922 299.334716797 299.594482422 299.565185547 299.780029297 299.565185547 299.567138672 299.567138672 299.112060547 298.690185547 297.770263672 296.791748047 296.010498047 295.539794922 295.078857422 298.552185059 298.708435059 298.987731934 299.472106934 299.772888184 299.809997559 299.997497559 299.554138184 299.302185059 299.345153809 298.952575684 298.458435059 297.438903809 296.145935059 295.190856934 294.636169434 294.169372559 298.600921631 298.911468506 298.929046631 298.903656006 299.196624756 299.335296631 299.319671631 299.251312256 299.145843506 298.975921631 298.987640381 298.829437256 297.999359131 297.130218506 296.458343506 295.778656006 295.218109131 299.006591797 299.100341797 299.102294922 299.156982422 299.539794922 299.666748047 299.727294922 299.699951172 299.555419922 299.301513672 299.041748047 298.582763672 297.553466797 296.645263672 295.924560547 295.289794922 294.789794922 298.554138184 298.786560059 299.089294434 299.317810059 299.708435059 299.845153809 299.806091309 299.536560059 299.229919434 299.091247559 298.860778809 298.255310059 297.077575684 295.852966309 294.925231934 294.237731934 293.714294434 298.331390381 298.401702881 298.458343506 298.595062256 298.985687256 299.208343506 299.229827881 299.143890381 298.972015381 299.098968506 299.192718506 298.604827881 297.805999756 296.923187256 295.960296631 295.294281006 294.952484131 298.815185547 298.756591797 298.780029297 298.946044922 299.463623047 299.670654297 299.731201172 299.680419922 299.475341797 299.489013672 299.203857422 298.379638672 297.459716797 296.598388672 295.619873047 294.938232422 294.635498047 298.413513184 298.444763184 298.749450684 299.112731934 299.657653809 299.851013184 299.796325684 299.563903809 299.251403809 299.354919434 299.063903809 297.981872559 296.833435059 295.743591309 294.593200684 293.852966309 293.542419434 298.222015381 298.138031006 298.145843506 298.288421631 298.692718506 299.040374756 299.130218506 299.075531006 299.003265381 299.155609131 299.104827881 298.585296631 297.817718506 296.657562256 295.651702881 294.995452881 294.503265381 298.617919922 298.518310547 298.578857422 298.840576172 299.393310547 299.680419922 299.748779297 299.645263672 299.543701172 299.643310547 299.225341797 298.418701172 297.492919922 296.328857422 295.324951172 294.666748047 294.254638672 298.429138184 298.335388184 298.579528809 299.061950684 299.747497559 300.001403809 299.936950684 299.638122559 299.364685059 299.474060059 299.058044434 297.950622559 296.700622559 295.354919434 294.184997559 293.458435059 293.114685059 297.727874756 297.597015381 297.624359131 297.850921631 298.337249756 298.735687256 298.888031006 299.122406006 299.241546631 299.282562256 299.276702881 298.981781006 298.067718506 296.710296631 295.682952881 294.729827881 293.946624756 297.985107422 298.024169922 298.264404297 298.674560547 299.207763672 299.530029297 299.596435547 299.621826172 299.674560547 299.758544922 299.504638672 298.807373047 297.649169922 296.295654297 295.350341797 294.502685547 293.856201172 297.958435059 297.974060059 298.349060059 298.987731934 299.681091309 299.942810059 299.925231934 299.763122559 299.579528809 299.565856934 299.257263184 298.274841309 296.716247559 295.200622559 294.198669434 293.368591309 292.786560059 297.720062256 297.290374756 297.266937256 297.548187256 298.128265381 298.561859131 298.804046631 299.089202881 299.270843506 299.542327881 299.567718506 299.005218506 298.055999756 296.837249756 295.604827881 294.466156006 293.616546631 297.912841797 297.826904297 298.115966797 298.547607422 299.045654297 299.401123047 299.498779297 299.485107422 299.619873047 299.928466797 299.822998047 298.774169922 297.469482422 296.233154297 295.139404297 294.266357422 293.641357422 297.851013184 297.804138184 298.261169434 298.921325684 299.608825684 299.958435059 300.017028809 299.776794434 299.640075684 299.772888184 299.556091309 298.222106934 296.288513184 294.729919434 293.573669434 292.747497559 292.321716309 297.430999756 297.104827881 297.100921631 297.233734131 297.692718506 298.194671631 298.694671631 299.112640381 299.290374756 299.606781006 299.698577881 299.296234131 298.448577881 296.942718506 295.651702881 294.610687256 293.464202881 297.748779297 297.860107422 298.117919922 298.307373047 298.619873047 299.030029297 299.408935547 299.567138672 299.678466797 299.924560547 299.832763672 298.885498047 297.756591797 296.377685547 295.348388672 294.633544922 293.746826172 297.612731934 297.811950684 298.315856934 298.804138184 299.292419434 299.643981934 299.946716309 299.907653809 299.835388184 299.880310059 299.612731934 298.171325684 296.214294434 294.808044434 293.864685059 293.143981934 292.446716309 296.997406006 296.774749756 296.647796631 296.870452881 297.555999756 298.175140381 298.727874756 299.108734131 299.362640381 299.657562256 300.071624756 300.180999756 299.077484131 299.130218506 298.624359131 296.487640381 294.177093506 297.492919922 297.752685547 297.787841797 297.977294922 298.467529297 298.996826172 299.555419922 299.717529297 299.856201172 299.971435547 300.072998047 299.932373047 298.961669922 300.127685547 299.895263672 298.106201172 295.865966797 297.356872559 297.763122559 298.116638184 298.643981934 299.245544434 299.675231934 300.091247559 300.079528809 300.101013184 300.050231934 300.020935059 299.419372559 298.313903809 300.474060059 300.735778809 298.890075684 296.274841309 296.911468506 296.573577881 296.405609131 296.708343506 297.393890381 298.104827881 298.710296631 298.970062256 299.339202881 299.882171631 300.288421631 300.046234131 298.550140381 298.651702881 298.026702881 295.290374756 292.516937256 297.528076172 297.664794922 297.586669922 297.822998047 298.367919922 299.028076172 299.690185547 299.682373047 299.971435547 300.293701172 300.268310547 300.594482422 299.803466797 300.528076172 300.211669922 297.758544922 294.969482422 297.327575684 297.720153809 297.993591309 298.561950684 299.196716309 299.796325684 300.249450684 300.001403809 300.179138184 300.374450684 300.399841309 300.802185059 301.901794434 303.511169434 304.130310059 301.821716309 298.542419434 296.405609131 296.220062256 296.300140381 296.632171631 297.210296631 297.921234131 298.595062256 298.991546631 299.366546631 299.870452881 299.538421631 298.337249756 297.302093506 297.430999756 296.339202881 293.837249756 291.186859131 297.205810547 297.379638672 297.442138672 297.688232422 298.291748047 299.018310547 299.697998047 299.739013672 300.012451172 300.225341797 299.371826172 299.199951172 299.000732422 299.780029297 298.822998047 296.496826172 293.875732422 296.987731934 297.505310059 297.903747559 298.458435059 299.118591309 299.784606934 300.290466309 300.173278809 300.372497559 300.429138184 299.517028809 299.770935059 301.645935059 303.177185059 303.577575684 301.759216309 299.272888184 296.362640381 296.143890381 296.151702881 296.462249756 297.220062256 297.825531006 298.239593506 298.876312256 299.378265381 299.831390381 298.559906006 297.718109131 297.563812256 297.286468506 295.870452881 293.108734131 289.983734131 297.338623047 297.301513672 297.264404297 297.576904297 298.483154297 299.057373047 299.406982422 299.629638672 299.942138672 300.223388672 298.596435547 298.672607422 299.156982422 299.836669922 298.625732422 296.100341797 293.207763672 297.161560059 297.485778809 297.749450684 298.308044434 299.278747559 299.868591309 300.134216309 300.161560059 300.335388184 300.450622559 298.581481934 299.216247559 301.601013184 303.356872559 303.606872559 301.893981934 299.620544434 296.065765381 295.975921631 296.091156006 296.300140381 296.847015381 297.581390381 298.196624756 299.030609131 299.575531006 300.194671631 299.690765381 298.911468506 298.876312256 297.962249756 295.837249756 292.813812256 289.124359131 297.129638672 297.127685547 297.285888672 297.590576172 298.268310547 298.856201172 299.342529297 299.822998047 300.131591797 300.690185547 299.899169922 299.895263672 300.344482422 300.446044922 298.809326172 296.063232422 292.655029297 296.899841309 297.249450684 297.636169434 298.095153809 298.936950684 299.626403809 300.099060059 300.364685059 300.470153809 300.890075684 300.099060059 300.591247559 302.745544434 303.802185059 303.528747559 301.798278809 299.065856934 295.651702881 295.714202881 296.030609131 296.288421631 296.663421631 297.585296631 298.352874756 299.147796631 299.657562256 300.235687256 300.081390381 299.567718506 299.479827881 298.386077881 296.395843506 293.368499756 289.497406006 296.750732422 296.895263672 297.307373047 297.676513672 298.133544922 298.903076172 299.453857422 299.967529297 300.274169922 300.740966797 300.203857422 300.332763672 300.940185547 300.506591797 299.254638672 296.715576172 293.162841797 296.595153809 297.042419434 297.583435059 298.081481934 298.817810059 299.630310059 300.196716309 300.554138184 300.604919434 300.893981934 300.335388184 301.188903809 303.544372559 304.177185059 303.778747559 302.155700684 299.145935059 \ No newline at end of file diff --git a/Test/tas_harvardf.txt b/Test/tas_harvardf.txt deleted file mode 100644 index 980ce6a9b5cc8c6ebc3ad1fc8f711dda74be1200..0000000000000000000000000000000000000000 --- a/Test/tas_harvardf.txt +++ /dev/null @@ -1,4385 +0,0 @@ -tas = { -268.08, -270.55, -272.72, -274.43, -275.78, -274.43, -273.32, -269.05, -269.82, -271.83, -268.68, -266.67, -275.17, -278.37, -263.9, -259.73, -261.21, -263.44, -260.04, -261.51, -264.78, -265.7, -274.08, -272.7, -264.65, -259.85, -264.09, -268.61, -269.31, -270.14, -272.08, -271.27, -265.97, -266.02, -268.77, -265.11, -264.15, -268.0, -269.51, -262.48, -261.05, -269.91, -259.67, -264.91, -270.34, -270.77, -275.05, -274.14, -275.25, -276.37, -274.07, -271.86, -271.65, -275.1, -271.11, -271.19, -273.06, -272.31, -271.98, -263.1, -267.64, -268.68, -270.52, -272.26, -275.48, -274.66, -275.96, -277.83, -278.55, -278.92, -278.67, -267.25, -265.83, -265.68, -264.92, -266.75, -268.49, -270.66, -272.83, -267.78, -270.66, -269.94, -269.94, -268.49, -272.23, -278.11, -278.1, -274.23, -274.43, -276.49, -274.93, -275.87, -274.28, -273.01, -274.02, -275.32, -277.71, -280.08, -280.54, -278.05, -282.56, -273.82, -275.37, -272.06, -274.56, -274.74, -273.4, -273.4, -274.4, -277.24, -281.42, -286.16, -285.11, -284.65, -280.04, -276.95, -276.76, -278.4, -278.7, -280.15, -282.21, -283.66, -286.39, -285.22, -282.14, -279.11, -279.49, -280.04, -280.72, -285.75, -286.5, -284.28, -285.6, -288.45, -288.35, -286.8, -286.57, -286.34, -287.22, -286.0, -287.22, -290.63, -294.87, -292.5, -283.03, -278.97, -280.35, -281.81, -283.16, -285.58, -287.04, -285.0, -282.45, -286.29, -288.55, -290.31, -285.45, -288.37, -293.18, -293.35, -290.02, -288.06, -287.49, -290.45, -292.84, -293.53, -290.23, -287.77, -289.91, -290.32, -291.03, -291.79, -290.61, -286.05, -285.18, -285.48, -286.76, -288.88, -290.06, -289.45, -291.25, -290.61, -292.88, -289.73, -289.73, -288.48, -288.48, -290.35, -289.73, -291.01, -292.23, -293.65, -294.2, -294.02, -296.63, -293.85, -291.58, -292.53, -291.63, -291.63, -292.88, -295.01, -295.45, -290.68, -288.56, -291.1, -292.17, -293.23, -295.28, -291.42, -292.54, -291.51, -290.51, -291.47, -293.28, -295.45, -294.47, -290.3, -291.6, -293.36, -293.14, -291.77, -292.76, -292.0, -292.0, -290.44, -290.35, -288.2, -289.18, -291.22, -293.59, -293.09, -288.33, -289.5, -293.03, -296.07, -295.74, -297.42, -299.28, -295.45, -296.65, -293.6, -291.87, -292.55, -286.99, -285.9, -286.15, -290.71, -292.35, -289.85, -292.38, -295.72, -297.94, -297.92, -290.7, -285.07, -285.89, -288.39, -290.88, -294.2, -296.37, -296.8, -290.93, -286.0, -289.0, -295.16, -284.77, -280.08, -283.0, -286.66, -291.65, -287.88, -284.19, -276.76, -275.56, -284.02, -289.96, -283.64, -278.65, -279.27, -282.48, -284.95, -289.58, -289.83, -287.22, -285.5, -281.29, -280.49, -284.89, -285.75, -279.21, -277.35, -276.77, -277.11, -279.15, -278.44, -280.23, -282.7, -278.09, -278.2, -278.98, -276.99, -279.69, -279.65, -276.22, -273.92, -273.7, -277.57, -282.34, -280.94, -276.09, -273.33, -270.12, -269.24, -271.94, -279.16, -277.13, -281.4, -275.43, -273.7, -271.11, -271.98, -271.98, -270.26, -269.37, -279.26, -287.31, -287.04, -277.02, -278.99, -282.19, -278.54, -274.87, -274.97, -276.18, -274.15, -273.67, -273.67, -272.68, -270.7, -269.06, -272.55, -267.27, -265.79, -267.36, -273.71, -271.48, -272.77, -270.56, -269.76, -273.65, -275.4, -273.04, -271.89, -276.46, -268.15, -270.05, -271.3, -265.77, -265.55, -267.2, -262.7, -269.9, -275.77, -273.28, -275.23, -270.08, -265.48, -268.29, -278.75, -280.95, -271.45, -271.41, -272.63, -265.31, -262.67, -265.74, -268.66, -270.23, -266.57, -267.57, -268.58, -268.57, -264.55, -263.22, -267.64, -269.39, -275.13, -271.83, -273.43, -272.56, -266.81, -269.83, -267.95, -268.3, -262.8, -262.98, -261.86, -260.94, -268.87, -267.34, -266.94, -267.27, -257.6, -268.8, -263.93, -272.29, -270.89, -265.86, -270.45, -268.23, -267.38, -269.73, -269.4, -264.46, -262.5, -262.98, -263.93, -266.81, -267.68, -262.73, -260.41, -263.21, -264.48, -266.19, -267.89, -269.29, -272.01, -271.57, -268.49, -269.2, -272.29, -274.26, -273.3, -271.63, -270.56, -265.53, -266.03, -266.73, -264.56, -271.02, -275.07, -262.29, -265.85, -270.75, -272.88, -274.03, -273.22, -273.71, -274.86, -280.21, -279.79, -279.63, -279.54, -278.55, -280.22, -273.46, -274.8, -274.63, -274.63, -276.53, -276.09, -276.22, -278.95, -280.56, -281.28, -281.1, -275.93, -277.74, -278.93, -279.92, -283.04, -282.95, -277.24, -280.79, -285.24, -286.31, -286.31, -277.42, -278.74, -283.93, -284.68, -277.96, -279.6, -283.89, -284.68, -283.96, -287.42, -286.2, -287.15, -289.17, -289.37, -285.13, -286.74, -290.7, -286.54, -290.1, -291.1, -285.45, -283.71, -285.15, -285.69, -282.53, -282.72, -281.33, -282.6, -283.56, -283.87, -284.3, -286.7, -291.48, -284.62, -283.36, -284.45, -286.84, -285.88, -283.99, -283.83, -283.67, -285.65, -284.72, -283.1, -282.1, -285.1, -288.88, -290.39, -293.13, -289.38, -289.85, -290.9, -292.76, -291.16, -288.53, -289.37, -293.8, -293.64, -289.24, -291.6, -291.1, -288.6, -289.36, -292.14, -293.75, -291.13, -293.53, -290.82, -291.56, -291.33, -287.74, -290.74, -294.08, -293.72, -295.07, -296.75, -296.94, -296.05, -296.05, -294.78, -293.53, -292.88, -293.45, -293.45, -289.77, -288.71, -291.62, -289.88, -290.73, -290.34, -289.18, -289.22, -289.97, -290.76, -289.03, -289.18, -293.92, -293.33, -290.1, -289.63, -291.92, -293.8, -293.8, -292.6, -290.32, -288.52, -289.72, -290.82, -292.11, -291.95, -290.85, -292.0, -291.02, -292.0, -292.6, -293.2, -293.2, -291.4, -291.22, -292.05, -291.4, -289.97, -288.42, -290.79, -291.92, -291.6, -292.05, -294.4, -291.01, -289.08, -291.77, -290.05, -289.86, -292.22, -293.33, -290.03, -290.78, -290.27, -288.38, -288.43, -289.21, -285.65, -284.18, -289.32, -293.74, -292.22, -284.72, -284.32, -285.84, -281.95, -278.59, -280.72, -283.82, -285.65, -282.58, -283.08, -287.4, -290.46, -286.64, -284.18, -282.73, -279.94, -286.5, -280.95, -284.59, -278.23, -279.4, -285.84, -288.8, -287.26, -275.31, -274.24, -275.97, -276.41, -276.06, -280.63, -283.62, -285.33, -284.73, -279.3, -278.94, -281.89, -279.6, -276.99, -281.52, -281.67, -277.58, -279.28, -277.82, -279.4, -278.04, -275.56, -275.14, -273.16, -274.91, -277.15, -282.32, -280.01, -273.02, -271.16, -273.19, -274.22, -276.58, -277.38, -274.16, -285.66, -287.25, -278.0, -277.67, -275.54, -274.62, -275.25, -272.83, -274.53, -277.13, -276.89, -265.78, -270.57, -276.46, -284.17, -274.13, -272.12, -269.19, -271.77, -276.57, -274.47, -276.0, -274.94, -275.35, -272.47, -271.64, -278.79, -275.1, -266.4, -271.85, -275.25, -276.18, -275.95, -271.43, -272.08, -271.95, -271.76, -274.32, -275.95, -269.93, -266.75, -267.8, -261.58, -256.52, -258.76, -259.7, -263.17, -262.96, -269.99, -272.6, -265.67, -265.48, -262.9, -258.84, -261.59, -263.84, -261.78, -258.19, -261.89, -265.46, -267.08, -270.54, -256.9, -251.76, -265.76, -262.94, -252.58, -253.63, -256.48, -261.22, -258.38, -271.05, -267.96, -258.08, -257.21, -275.46, -272.97, -265.12, -261.98, -259.68, -259.43, -261.25, -263.33, -271.11, -269.26, -266.66, -258.24, -259.08, -256.45, -260.56, -266.88, -269.08, -265.41, -264.02, -267.78, -267.87, -272.86, -276.46, -280.4, -277.61, -272.98, -265.35, -268.24, -265.18, -262.68, -260.07, -262.11, -265.07, -266.18, -269.94, -270.66, -272.46, -271.31, -274.37, -276.0, -272.83, -272.1, -272.27, -269.7, -274.89, -274.75, -276.04, -273.07, -268.14, -269.13, -270.85, -272.0, -274.41, -274.29, -278.95, -279.27, -276.46, -275.45, -274.93, -274.93, -275.67, -272.27, -274.88, -277.12, -277.14, -280.27, -276.97, -276.95, -280.68, -277.3, -274.57, -278.35, -280.87, -278.34, -278.01, -280.26, -281.48, -287.11, -283.61, -278.08, -278.14, -283.99, -278.9, -276.58, -276.34, -279.11, -288.3, -280.76, -278.85, -286.95, -284.3, -282.18, -287.68, -284.04, -280.24, -281.03, -284.24, -281.46, -279.89, -284.51, -281.87, -286.75, -284.68, -284.15, -283.22, -279.27, -283.87, -286.24, -281.56, -281.09, -282.07, -280.88, -282.59, -286.86, -291.97, -291.12, -289.58, -288.76, -288.78, -280.5, -283.09, -286.97, -290.92, -291.81, -288.48, -281.75, -286.4, -288.89, -290.11, -289.79, -291.97, -288.15, -288.58, -288.76, -288.55, -289.62, -294.22, -293.79, -294.7, -294.86, -296.56, -298.07, -296.76, -293.31, -290.42, -291.34, -291.99, -288.01, -290.95, -293.75, -294.49, -293.34, -291.99, -293.48, -293.15, -294.85, -293.22, -290.63, -291.63, -295.77, -296.72, -296.06, -296.05, -294.32, -291.01, -292.02, -295.11, -293.12, -288.96, -293.61, -293.29, -291.9, -294.6, -295.62, -297.33, -297.53, -294.0, -294.66, -295.12, -293.75, -293.52, -292.73, -293.03, -294.83, -294.11, -294.35, -295.18, -295.15, -295.7, -290.85, -286.41, -288.3, -290.0, -292.15, -291.34, -288.2, -291.5, -293.7, -292.3, -285.5, -287.82, -290.22, -291.48, -291.18, -293.03, -292.77, -288.45, -286.54, -287.57, -290.28, -292.65, -293.13, -293.58, -289.05, -286.42, -287.16, -288.9, -284.2, -284.5, -284.32, -284.81, -285.29, -286.63, -287.1, -288.19, -287.88, -286.78, -287.6, -291.31, -290.9, -286.89, -287.76, -293.08, -285.45, -283.31, -286.13, -289.02, -285.0, -285.75, -287.66, -288.81, -286.94, -286.59, -287.66, -283.81, -282.02, -278.97, -279.63, -278.63, -279.75, -278.81, -278.78, -282.45, -285.79, -287.96, -280.76, -277.09, -277.83, -280.7, -282.82, -280.09, -281.23, -281.48, -281.65, -284.67, -286.17, -285.86, -284.24, -283.17, -281.66, -281.13, -279.31, -277.78, -278.21, -282.03, -282.65, -284.12, -287.34, -279.91, -280.66, -287.27, -288.27, -284.86, -279.32, -281.35, -283.8, -276.55, -273.81, -275.12, -276.23, -280.12, -283.32, -277.93, -276.3, -280.48, -280.19, -274.3, -276.94, -278.48, -269.6, -267.25, -273.0, -270.81, -268.72, -276.13, -274.59, -273.1, -270.73, -275.3, -277.21, -278.87, -278.87, -280.06, -275.97, -269.93, -269.99, -272.48, -272.35, -263.1, -264.8, -269.6, -268.34, -268.1, -272.51, -274.15, -271.81, -268.79, -273.83, -273.86, -276.82, -276.64, -275.24, -274.43, -273.05, -274.94, -268.54, -262.34, -268.66, -274.81, -270.8, -266.8, -265.54, -262.38, -267.45, -272.85, -267.61, -266.66, -262.98, -261.84, -269.18, -278.22, -282.71, -286.9, -286.33, -280.02, -273.41, -273.12, -274.63, -274.89, -273.28, -271.17, -269.74, -269.33, -266.62, -265.47, -262.2, -264.08, -268.26, -269.14, -273.64, -268.9, -262.84, -267.54, -260.19, -255.56, -257.1, -259.45, -264.35, -268.52, -271.84, -260.71, -262.14, -262.76, -265.97, -274.69, -270.27, -272.22, -273.81, -273.96, -272.9, -269.82, -272.8, -272.05, -265.56, -261.92, -264.09, -272.33, -271.86, -268.15, -266.32, -269.27, -270.61, -273.66, -276.74, -283.29, -268.62, -266.07, -269.47, -273.6, -279.38, -276.63, -280.56, -280.63, -278.63, -276.77, -276.13, -277.43, -280.98, -276.37, -275.53, -272.74, -273.3, -276.5, -275.86, -275.55, -277.33, -275.15, -276.07, -273.66, -273.37, -275.2, -274.62, -265.95, -270.39, -275.41, -272.42, -277.09, -273.91, -277.4, -278.37, -282.11, -278.25, -276.53, -275.48, -277.96, -281.86, -282.65, -282.47, -280.73, -281.98, -278.5, -279.5, -281.19, -281.5, -284.73, -283.21, -281.8, -280.31, -279.92, -280.82, -283.78, -285.75, -286.14, -281.6, -278.87, -282.19, -282.05, -287.2, -283.34, -283.55, -283.16, -285.4, -281.47, -284.66, -282.32, -285.77, -283.33, -285.05, -289.43, -286.32, -288.18, -291.23, -287.14, -285.88, -285.77, -285.64, -287.3, -287.79, -291.13, -293.14, -291.84, -291.04, -287.06, -288.74, -291.67, -291.05, -289.66, -287.07, -288.1, -287.87, -287.61, -287.15, -287.24, -286.32, -288.78, -291.15, -293.86, -296.8, -294.92, -290.34, -289.8, -290.1, -291.86, -293.3, -292.69, -288.45, -286.53, -290.21, -293.05, -292.93, -290.78, -289.11, -291.36, -292.79, -294.27, -293.83, -291.47, -287.97, -289.54, -289.67, -291.97, -294.8, -298.18, -294.63, -293.7, -288.39, -290.51, -291.35, -292.99, -293.6, -293.6, -294.32, -294.52, -290.35, -293.75, -295.67, -295.04, -293.06, -293.82, -293.47, -295.96, -295.07, -292.18, -293.92, -293.2, -290.26, -288.48, -289.86, -291.5, -292.58, -294.65, -294.3, -292.35, -292.43, -293.5, -295.82, -296.43, -294.77, -289.74, -287.65, -292.58, -292.91, -289.94, -291.19, -286.8, -288.14, -287.55, -288.74, -288.7, -289.42, -290.75, -292.65, -289.79, -288.22, -288.58, -290.73, -291.44, -293.6, -285.3, -285.85, -284.9, -283.78, -287.73, -290.46, -291.15, -283.65, -283.44, -286.05, -285.34, -284.0, -283.87, -287.05, -290.01, -281.8, -280.99, -282.85, -284.63, -286.51, -283.43, -280.96, -281.16, -281.83, -286.01, -286.68, -289.27, -287.11, -283.35, -283.15, -284.3, -281.61, -282.6, -285.51, -286.81, -289.34, -289.27, -283.65, -280.16, -277.32, -282.75, -284.99, -284.54, -289.52, -280.38, -283.16, -286.59, -281.11, -278.09, -281.83, -287.12, -278.83, -275.82, -275.15, -276.5, -280.07, -281.97, -274.64, -272.55, -273.45, -276.45, -275.72, -269.63, -272.6, -284.67, -276.5, -270.62, -273.15, -277.12, -272.75, -271.1, -271.18, -273.88, -274.32, -275.62, -273.02, -272.2, -270.97, -269.68, -273.01, -275.2, -278.52, -269.55, -266.31, -272.61, -270.89, -271.03, -274.47, -270.65, -271.33, -267.52, -265.75, -268.46, -266.31, -265.23, -264.15, -259.96, -265.69, -269.55, -270.43, -270.13, -267.59, -264.15, -265.71, -263.81, -269.03, -270.38, -269.28, -267.58, -268.66, -267.59, -268.7, -268.33, -271.81, -272.43, -269.59, -268.36, -263.22, -259.01, -259.55, -257.52, -258.52, -261.53, -261.74, -265.48, -260.21, -265.37, -270.42, -272.03, -267.86, -263.74, -276.71, -277.78, -282.12, -265.99, -265.7, -270.46, -272.91, -277.92, -267.6, -266.62, -277.32, -266.98, -265.16, -271.14, -264.51, -259.58, -264.55, -259.74, -255.02, -256.48, -258.43, -265.18, -272.08, -274.55, -272.4, -274.15, -264.89, -256.96, -263.08, -265.17, -263.97, -265.35, -262.64, -263.13, -275.49, -279.25, -277.03, -276.29, -276.33, -277.07, -275.43, -273.62, -275.92, -266.92, -265.8, -267.93, -267.71, -264.17, -269.28, -270.34, -270.83, -269.2, -264.2, -263.48, -268.49, -273.48, -275.57, -278.47, -276.92, -271.71, -272.41, -274.39, -276.22, -275.35, -274.48, -272.68, -270.0, -272.88, -280.93, -279.45, -270.0, -271.01, -274.14, -275.05, -276.31, -279.7, -276.0, -274.92, -275.42, -276.98, -275.75, -273.51, -272.98, -273.31, -272.59, -277.8, -279.73, -276.67, -273.79, -277.24, -276.27, -275.1, -278.91, -284.81, -287.58, -288.88, -287.47, -291.65, -279.72, -283.36, -288.53, -279.97, -278.94, -276.76, -282.62, -284.71, -283.24, -280.87, -282.37, -284.88, -276.5, -282.03, -284.69, -286.02, -284.21, -286.78, -278.45, -277.78, -279.35, -284.17, -281.16, -284.13, -286.06, -292.42, -296.93, -292.63, -288.76, -288.74, -286.55, -282.9, -284.34, -285.92, -285.85, -283.44, -279.83, -286.14, -288.88, -289.35, -285.8, -289.68, -289.92, -288.96, -291.51, -291.96, -289.6, -290.39, -294.02, -293.99, -292.6, -291.89, -292.94, -291.56, -292.7, -290.61, -287.84, -288.31, -290.76, -287.85, -289.96, -289.2, -290.07, -287.2, -287.99, -288.9, -288.06, -288.22, -292.1, -292.07, -291.11, -289.58, -290.38, -292.25, -291.78, -293.5, -292.9, -288.62, -289.29, -291.0, -290.12, -293.75, -294.22, -293.06, -292.88, -292.94, -292.47, -288.58, -290.35, -290.37, -288.67, -290.77, -291.55, -291.05, -290.48, -289.95, -289.58, -288.86, -287.98, -288.92, -291.7, -291.42, -291.82, -293.73, -293.9, -295.03, -294.37, -292.9, -292.26, -289.45, -289.42, -287.38, -290.97, -291.53, -290.58, -292.38, -292.3, -290.99, -291.85, -292.73, -292.98, -293.51, -292.11, -291.35, -292.75, -290.73, -288.98, -289.82, -288.39, -288.91, -290.75, -292.7, -293.29, -292.82, -293.27, -293.95, -289.7, -286.66, -290.12, -290.9, -289.71, -288.26, -285.84, -286.51, -286.33, -287.37, -284.33, -284.5, -285.46, -285.05, -287.08, -288.58, -283.98, -281.12, -283.45, -282.73, -284.31, -289.2, -285.5, -283.24, -284.1, -285.95, -281.63, -275.76, -275.88, -277.77, -282.48, -283.7, -282.42, -281.78, -276.52, -276.53, -280.11, -283.15, -278.61, -283.93, -285.67, -279.3, -280.02, -281.37, -281.38, -281.13, -281.97, -283.15, -281.9, -281.12, -283.35, -283.77, -279.02, -279.59, -278.83, -275.23, -273.27, -272.43, -275.36, -279.84, -279.06, -283.1, -289.5, -283.7, -275.65, -272.43, -270.98, -268.33, -267.43, -267.06, -269.36, -274.3, -276.03, -274.73, -272.75, -272.02, -271.89, -274.21, -271.77, -272.38, -273.74, -266.6, -265.95, -267.27, -271.04, -280.83, -278.05, -272.01, -273.36, -272.87, -271.94, -271.53, -272.15, -270.28, -269.16, -272.27, -274.16, -273.12, -273.86, -273.79, -274.15, -278.44, -277.67, -275.2, -266.31, -266.49, -270.06, -272.83, -279.75, -268.95, -268.72, -272.37, -273.43, -279.25, -272.84, -261.15, -258.62, -265.48, -271.83, -275.02, -273.43, -273.28, -268.63, -266.17, -266.65, -270.83, -265.99, -264.14, -266.3, -265.5, -268.96, -273.33, -262.61, -257.5, -258.42, -264.61, -267.2, -274.5, -274.07, -264.25, -274.98, -266.39, -263.06, -270.7, -263.25, -261.92, -268.43, -273.2, -272.4, -272.72, -269.16, -273.3, -272.62, -269.35, -268.2, -267.25, -267.91, -268.49, -269.62, -265.61, -269.32, -272.33, -267.7, -265.4, -273.61, -279.77, -273.35, -276.71, -281.59, -270.09, -270.32, -263.75, -274.98, -280.12, -275.05, -274.11, -277.19, -272.65, -271.8, -275.84, -272.34, -269.39, -268.8, -266.81, -270.62, -271.91, -269.0, -264.98, -265.93, -270.03, -264.66, -266.96, -273.43, -270.9, -271.96, -271.55, -273.86, -266.87, -268.17, -272.47, -276.49, -277.11, -280.32, -279.28, -279.57, -273.63, -272.0, -274.42, -276.51, -279.37, -278.67, -279.3, -285.44, -276.75, -269.05, -271.25, -274.1, -277.25, -279.18, -276.53, -275.95, -280.47, -280.33, -276.9, -276.22, -277.9, -280.0, -280.72, -281.22, -280.53, -277.25, -280.01, -283.3, -278.33, -281.06, -285.53, -285.56, -281.48, -281.28, -280.38, -280.63, -281.38, -277.84, -279.16, -279.13, -279.28, -281.63, -287.43, -284.28, -284.95, -285.81, -286.15, -281.05, -282.87, -282.03, -283.65, -280.15, -282.59, -282.72, -283.98, -285.27, -283.58, -283.23, -284.37, -288.22, -287.1, -290.59, -290.51, -283.89, -283.7, -284.21, -285.0, -284.96, -285.82, -286.46, -290.03, -292.11, -295.3, -293.8, -291.55, -289.16, -286.38, -287.23, -289.11, -289.67, -291.26, -291.86, -295.85, -295.48, -291.15, -288.95, -293.78, -293.09, -290.89, -292.2, -294.13, -294.06, -293.07, -291.6, -291.81, -290.81, -288.52, -290.13, -291.12, -292.14, -293.47, -289.26, -291.13, -292.94, -293.44, -296.42, -292.72, -293.08, -295.1, -294.42, -288.35, -288.16, -288.27, -290.53, -289.46, -286.77, -289.1, -291.23, -293.8, -294.24, -289.92, -289.27, -291.78, -292.38, -293.84, -293.52, -289.45, -288.0, -288.43, -288.17, -289.33, -292.32, -294.23, -294.0, -290.52, -290.63, -289.98, -289.29, -295.75, -294.71, -288.07, -287.82, -288.18, -286.53, -288.83, -288.07, -287.57, -289.05, -289.67, -291.58, -290.07, -289.75, -289.94, -291.2, -291.42, -292.98, -286.33, -282.55, -286.03, -288.22, -289.98, -288.4, -288.39, -288.35, -289.12, -292.27, -289.71, -289.98, -289.37, -289.55, -286.69, -290.7, -290.03, -288.34, -282.8, -281.79, -283.85, -279.03, -281.8, -284.91, -281.62, -282.42, -285.3, -286.25, -279.83, -277.53, -279.28, -280.36, -284.48, -286.69, -285.47, -283.64, -287.31, -289.9, -282.12, -280.77, -284.21, -285.88, -283.84, -280.59, -278.02, -278.36, -277.95, -281.51, -277.96, -275.04, -273.6, -277.55, -276.77, -275.41, -278.0, -276.45, -276.22, -277.81, -280.15, -284.35, -286.43, -281.15, -280.14, -276.39, -276.37, -278.22, -277.6, -277.95, -277.37, -274.09, -270.91, -270.46, -269.17, -271.03, -269.76, -270.12, -270.14, -269.53, -270.95, -275.5, -273.33, -270.65, -270.65, -269.08, -274.73, -272.47, -270.65, -272.34, -272.29, -271.16, -269.88, -270.93, -273.84, -273.92, -272.15, -272.15, -272.15, -270.93, -270.89, -268.38, -270.03, -269.93, -269.93, -268.1, -271.01, -273.84, -270.49, -274.4, -272.94, -266.5, -268.38, -270.46, -269.75, -272.77, -273.98, -272.43, -268.35, -270.19, -272.66, -268.86, -261.63, -271.8, -278.67, -279.01, -273.35, -277.87, -273.47, -273.7, -272.84, -273.17, -272.28, -267.41, -273.07, -265.55, -265.02, -268.9, -269.54, -268.23, -270.32, -270.78, -268.47, -264.77, -267.82, -272.98, -270.93, -267.3, -264.21, -269.45, -272.9, -272.23, -271.53, -270.15, -272.45, -274.3, -272.46, -271.31, -271.15, -269.72, -269.06, -269.1, -272.26, -275.38, -278.33, -272.29, -264.34, -260.92, -264.04, -270.23, -273.83, -273.92, -274.86, -274.51, -273.67, -272.42, -273.77, -273.7, -274.64, -275.42, -277.45, -275.46, -275.13, -274.41, -274.25, -272.83, -272.37, -274.16, -273.19, -279.36, -279.0, -266.87, -262.34, -265.12, -270.44, -270.57, -269.77, -270.42, -272.51, -273.03, -272.95, -269.36, -269.33, -270.17, -270.96, -272.95, -277.57, -284.89, -289.3, -286.58, -287.67, -292.92, -278.8, -277.65, -277.25, -274.75, -274.34, -277.53, -279.19, -280.48, -279.27, -277.24, -277.41, -279.21, -281.38, -282.15, -280.89, -284.51, -285.86, -280.65, -280.64, -278.5, -280.38, -283.21, -279.3, -280.65, -279.63, -276.28, -276.58, -278.79, -283.91, -288.24, -287.53, -285.9, -285.58, -286.45, -287.65, -285.84, -287.15, -287.17, -284.44, -283.06, -281.43, -281.9, -281.53, -286.27, -291.08, -291.45, -285.85, -289.83, -289.46, -289.12, -288.1, -283.69, -285.92, -287.91, -286.97, -287.82, -288.28, -291.47, -292.67, -291.12, -289.21, -286.18, -285.43, -283.3, -281.84, -284.58, -284.6, -283.94, -283.31, -285.98, -289.1, -287.13, -286.72, -289.41, -289.24, -290.35, -289.8, -291.08, -291.41, -291.95, -291.85, -292.53, -292.58, -291.4, -294.68, -294.93, -294.91, -291.17, -290.24, -289.82, -291.6, -289.51, -289.74, -291.7, -292.16, -290.53, -290.15, -290.96, -288.71, -289.93, -290.55, -288.26, -289.91, -292.71, -294.63, -295.95, -296.43, -295.84, -292.93, -292.41, -294.34, -295.0, -296.04, -294.74, -290.83, -289.17, -289.8, -291.84, -294.45, -293.44, -290.73, -289.75, -289.7, -290.26, -292.55, -293.27, -293.41, -293.3, -292.65, -292.96, -294.06, -294.96, -294.04, -289.57, -287.94, -291.93, -292.85, -294.55, -292.8, -292.59, -287.15, -288.1, -289.9, -291.51, -292.92, -295.09, -295.45, -294.67, -293.69, -294.07, -293.43, -292.65, -290.19, -289.63, -289.5, -289.54, -290.73, -288.6, -293.58, -290.8, -287.33, -283.4, -284.43, -286.73, -291.1, -290.07, -290.27, -293.74, -291.6, -287.32, -287.73, -289.91, -292.85, -293.49, -290.11, -281.45, -280.73, -285.96, -290.15, -293.2, -288.63, -283.61, -287.18, -286.72, -281.01, -280.48, -280.41, -281.82, -277.97, -280.73, -288.46, -284.48, -279.71, -283.8, -284.48, -282.04, -282.25, -279.71, -280.93, -281.56, -288.43, -286.31, -281.7, -278.93, -276.4, -278.57, -284.2, -285.96, -278.78, -277.54, -282.26, -278.87, -279.22, -281.45, -278.83, -277.51, -274.26, -271.64, -273.07, -273.17, -273.9, -273.87, -271.7, -273.35, -281.21, -278.17, -275.74, -275.33, -279.43, -276.51, -274.76, -273.06, -273.29, -279.99, -275.23, -273.65, -279.0, -278.75, -272.8, -275.56, -276.16, -276.29, -275.35, -278.37, -279.51, -277.17, -281.33, -284.04, -277.56, -281.94, -284.5, -275.97, -272.79, -271.85, -272.51, -270.14, -272.15, -270.99, -272.94, -271.56, -273.67, -268.41, -273.24, -275.53, -273.78, -272.15, -266.05, -266.44, -266.62, -267.81, -268.66, -273.78, -271.96, -271.42, -263.52, -260.2, -255.79, -268.94, -269.46, -264.66, -263.05, -262.59, -262.08, -273.93, -263.13, -262.96, -269.2, -269.26, -258.98, -262.25, -270.23, -267.88, -272.63, -273.82, -271.38, -271.28, -274.51, -274.57, -280.57, -272.18, -270.36, -271.22, -267.77, -265.17, -263.27, -262.73, -268.04, -273.83, -275.4, -273.45, -272.64, -269.49, -271.48, -269.4, -270.5, -273.8, -273.23, -279.2, -271.27, -265.98, -267.98, -273.25, -273.46, -274.17, -272.33, -271.16, -269.0, -261.33, -262.23, -264.72, -268.09, -271.78, -271.63, -272.52, -277.04, -272.92, -276.25, -273.31, -270.11, -269.33, -265.53, -267.48, -267.59, -268.26, -269.18, -269.17, -272.95, -273.65, -271.99, -273.08, -278.77, -279.23, -274.71, -273.72, -274.6, -277.13, -275.85, -276.27, -275.55, -274.29, -277.91, -276.63, -282.12, -279.46, -282.18, -284.24, -281.9, -280.13, -278.77, -277.96, -281.7, -282.79, -284.61, -278.79, -278.12, -277.17, -279.06, -277.98, -279.88, -281.28, -278.26, -278.71, -281.19, -281.39, -279.52, -282.89, -281.6, -279.88, -277.8, -279.93, -283.61, -280.52, -278.69, -282.0, -283.64, -285.62, -286.74, -285.6, -285.88, -284.64, -287.4, -289.2, -287.8, -287.94, -285.68, -284.27, -285.35, -283.89, -285.09, -286.78, -287.01, -287.65, -288.91, -289.55, -287.03, -287.83, -290.56, -286.57, -286.85, -286.31, -283.34, -283.34, -286.82, -291.6, -293.03, -294.88, -294.91, -295.09, -293.94, -289.62, -289.52, -291.44, -296.91, -296.63, -287.3, -287.53, -287.85, -291.55, -292.57, -292.88, -290.71, -287.05, -286.46, -286.77, -288.8, -290.94, -289.76, -292.85, -294.68, -295.2, -292.48, -294.47, -296.64, -297.47, -296.3, -291.93, -292.67, -294.87, -294.69, -296.01, -298.73, -297.95, -293.27, -291.53, -289.98, -292.94, -288.82, -290.32, -289.87, -291.17, -293.65, -296.44, -298.18, -297.28, -293.25, -292.48, -291.88, -295.92, -296.7, -296.55, -296.55, -294.46, -295.06, -294.9, -294.54, -297.03, -298.11, -298.75, -294.53, -292.57, -293.89, -293.23, -293.1, -290.37, -291.82, -289.57, -288.71, -290.15, -294.22, -295.4, -294.83, -290.17, -291.32, -295.88, -293.8, -291.3, -290.28, -286.56, -287.46, -290.63, -292.0, -293.0, -291.72, -292.82, -294.14, -291.91, -288.35, -288.91, -290.45, -292.57, -294.11, -294.61, -294.61, -294.17, -294.98, -294.68, -295.5, -292.81, -289.83, -287.78, -288.93, -289.71, -290.72, -288.25, -284.76, -285.37, -285.05, -287.32, -287.97, -282.88, -284.8, -288.44, -287.64, -284.46, -286.76, -290.27, -291.32, -288.17, -285.12, -285.16, -288.36, -280.7, -279.35, -280.2, -275.82, -279.46, -287.39, -286.8, -286.03, -280.82, -286.42, -281.92, -278.23, -286.11, -290.55, -284.86, -277.62, -278.32, -278.73, -280.79, -281.05, -279.8, -276.68, -281.93, -279.18, -277.74, -281.76, -283.42, -288.38, -283.08, -286.79, -285.31, -276.23, -279.58, -281.93, -274.83, -271.76, -279.12, -285.98, -273.82, -271.56, -272.83, -277.13, -275.36, -271.33, -271.47, -272.82, -278.49, -284.41, -279.91, -284.67, -285.19, -287.11, -280.8, -281.53, -281.75, -275.72, -272.46, -269.75, -266.07, -270.56, -273.59, -274.43, -275.95, -279.72, -277.26, -272.6, -273.27, -276.88, -272.34, -272.06, -273.02, -274.02, -274.51, -275.85, -272.49, -271.38, -269.13, -269.93, -273.1, -269.88, -267.92, -264.25, -261.03, -267.78, -266.16, -263.07, -266.48, -273.83, -269.27, -270.57, -277.19, -281.81, -278.7, -268.82, -267.15, -271.42, -269.12, -272.76, -274.64, -274.95, -271.3, -264.67, -256.81, -258.25, -263.86, -259.27, -256.55, -258.23, -261.28, -259.6, -256.29, -257.15, -266.34, -267.26, -265.5, -258.68, -257.56, -259.85, -266.26, -272.89, -267.97, -262.47, -262.77, -265.37, -266.5, -266.27, -268.33, -262.18, -269.22, -272.8, -271.31, -269.01, -267.5, -274.51, -269.63, -270.15, -264.67, -264.43, -267.97, -269.19, -269.18, -272.16, -275.52, -280.12, -275.87, -272.94, -277.89, -276.73, -272.99, -273.85, -272.85, -271.01, -272.56, -274.13, -273.06, -278.01, -280.62, -282.73, -275.41, -272.0, -272.31, -270.12, -274.28, -279.41, -282.89, -269.11, -266.34, -270.33, -271.95, -273.04, -275.4, -281.31, -281.83, -281.78, -280.86, -279.34, -279.87, -277.54, -276.24, -275.92, -279.84, -283.63, -281.62, -282.56, -274.24, -276.69, -281.6, -286.61, -275.2, -273.88, -273.37, -273.92, -274.69, -278.31, -285.55, -285.97, -276.49, -274.79, -275.98, -281.01, -277.24, -276.14, -276.49, -277.49, -277.76, -272.97, -275.75, -277.91, -283.02, -281.08, -282.54, -282.3, -284.25, -285.68, -289.35, -290.29, -294.69, -294.69, -293.0, -279.32, -283.54, -286.21, -285.25, -285.05, -281.43, -283.22, -285.86, -287.7, -283.31, -281.17, -282.11, -282.22, -283.95, -286.03, -287.04, -285.29, -286.39, -284.39, -283.25, -284.28, -286.3, -292.11, -291.72, -287.51, -286.91, -283.9, -281.32, -283.12, -287.26, -291.45, -295.07, -290.95, -285.16, -283.15, -283.48, -287.69, -295.22, -293.9, -290.09, -289.08, -289.65, -291.85, -293.27, -290.88, -290.15, -292.45, -293.92, -293.89, -291.25, -290.93, -289.82, -290.44, -293.27, -292.67, -293.32, -291.58, -288.06, -288.25, -288.06, -289.61, -293.12, -290.87, -291.38, -291.95, -292.9, -291.72, -292.62, -290.88, -292.53, -287.85, -288.35, -289.85, -289.81, -288.63, -290.38, -290.6, -288.77, -288.08, -290.62, -291.25, -291.6, -289.28, -289.92, -293.17, -294.7, -291.52, -289.97, -289.8, -294.95, -294.06, -294.1, -292.61, -291.95, -289.74, -289.43, -288.83, -291.05, -290.36, -286.48, -286.61, -289.65, -289.07, -287.88, -289.07, -289.25, -289.67, -290.46, -290.76, -290.97, -292.6, -289.77, -289.64, -290.78, -294.81, -291.25, -291.9, -290.77, -283.29, -283.78, -285.55, -289.15, -290.53, -289.46, -290.09, -292.41, -290.27, -287.77, -286.9, -283.02, -283.82, -287.01, -289.9, -291.56, -288.94, -283.68, -285.46, -288.01, -281.33, -280.4, -282.31, -280.39, -277.14, -281.42, -284.76, -285.65, -287.24, -284.64, -282.66, -283.3, -280.3, -276.33, -275.03, -274.94, -280.68, -281.65, -283.15, -284.48, -287.23, -285.17, -279.25, -281.2, -280.65, -280.42, -285.43, -279.29, -277.66, -282.31, -283.98, -285.89, -285.29, -278.58, -271.21, -274.0, -277.18, -277.8, -278.74, -280.56, -282.27, -283.13, -276.22, -278.66, -279.23, -280.5, -280.1, -280.12, -277.8, -277.56, -279.05, -274.54, -276.88, -277.34, -272.84, -272.0, -271.57, -271.24, -269.12, -266.83, -264.81, -267.68, -271.98, -276.58, -276.6, -274.69, -273.28, -270.88, -266.36, -265.65, -268.23, -271.92, -265.23, -265.5, -263.43, -262.82, -264.0, -271.43, -271.03, -264.83, -270.04, -266.55, -270.47, -281.82, -270.78, -269.11, -267.79, -265.6, -268.6, -263.97, -266.67, -261.35, -261.01, -265.85, -262.28, -264.66, -267.26, -266.78, -265.57, -262.69, -263.69, -265.52, -266.62, -269.95, -268.28, -270.08, -268.22, -261.49, -268.45, -265.6, -265.6, -270.56, -270.48, -271.58, -271.8, -266.72, -271.58, -268.57, -263.88, -263.5, -265.62, -269.07, -269.51, -265.97, -269.21, -267.49, -266.0, -272.24, -274.4, -272.89, -270.2, -267.46, -264.84, -268.69, -271.18, -272.08, -269.93, -273.83, -275.97, -261.95, -262.77, -270.07, -271.31, -272.49, -269.6, -268.61, -262.21, -267.47, -275.48, -269.49, -261.24, -265.22, -268.87, -268.07, -272.08, -270.55, -265.07, -263.75, -264.36, -268.18, -267.21, -268.41, -270.35, -270.6, -271.2, -271.59, -271.83, -271.66, -270.5, -272.15, -273.3, -275.72, -274.78, -274.91, -275.67, -273.52, -275.57, -274.36, -274.66, -273.72, -274.67, -270.97, -268.59, -268.09, -271.11, -272.98, -274.56, -269.94, -274.23, -274.63, -274.25, -275.33, -276.44, -276.37, -276.5, -273.76, -280.33, -278.67, -278.53, -276.58, -279.19, -278.29, -278.14, -278.27, -278.08, -276.2, -274.55, -280.43, -284.24, -289.7, -289.03, -289.72, -280.0, -280.55, -279.59, -282.51, -277.88, -280.53, -288.48, -293.54, -294.64, -294.04, -286.01, -281.4, -281.74, -284.08, -287.68, -289.47, -291.94, -290.53, -283.1, -283.6, -282.37, -280.92, -283.65, -282.95, -287.75, -286.09, -286.23, -282.65, -283.44, -283.64, -284.52, -285.94, -285.84, -286.5, -284.87, -280.44, -281.68, -284.82, -286.16, -285.72, -284.97, -286.94, -287.92, -288.85, -289.97, -289.64, -290.15, -287.69, -289.08, -292.48, -294.98, -296.14, -295.43, -292.54, -292.16, -294.08, -293.91, -287.75, -289.94, -291.25, -292.15, -293.28, -295.43, -295.18, -294.25, -290.7, -294.34, -292.15, -285.47, -286.92, -291.97, -291.53, -286.64, -288.68, -289.56, -293.18, -292.42, -290.87, -287.84, -289.25, -289.12, -289.55, -290.14, -289.77, -290.63, -289.68, -290.58, -292.6, -292.84, -294.84, -296.97, -294.78, -290.26, -286.67, -287.57, -290.2, -289.96, -290.47, -292.64, -294.77, -295.05, -292.84, -294.36, -296.13, -297.59, -298.23, -299.23, -296.94, -292.52, -289.67, -291.79, -291.33, -291.48, -292.12, -292.9, -292.47, -293.7, -292.83, -293.5, -292.78, -292.35, -291.92, -288.9, -290.24, -292.9, -292.65, -290.42, -290.3, -293.0, -293.71, -287.08, -287.88, -289.36, -286.94, -286.24, -290.84, -292.97, -293.86, -293.44, -289.15, -287.41, -289.4, -284.77, -283.34, -285.95, -288.15, -289.17, -288.88, -289.11, -290.43, -290.73, -288.15, -289.55, -291.37, -284.8, -284.92, -282.97, -282.49, -281.43, -281.55, -284.56, -287.57, -290.38, -289.78, -284.78, -277.0, -274.95, -277.94, -283.41, -286.53, -287.51, -285.39, -284.12, -284.38, -283.11, -280.83, -277.57, -279.15, -281.96, -286.08, -284.2, -282.9, -290.0, -288.76, -279.81, -276.87, -274.49, -275.6, -276.44, -275.0, -283.76, -287.36, -286.4, -280.56, -277.33, -275.87, -277.02, -277.5, -276.6, -274.02, -273.31, -270.11, -271.43, -276.77, -280.2, -283.48, -272.59, -277.31, -280.6, -276.45, -271.65, -274.37, -275.3, -278.45, -284.36, -283.03, -279.52, -280.78, -274.27, -284.97, -285.38, -276.77, -275.65, -277.38, -282.78, -285.3, -277.42, -271.86, -269.75, -269.27, -272.92, -273.25, -274.88, -278.22, -272.91, -269.08, -270.11, -271.43, -272.15, -273.67, -272.93, -268.42, -269.13, -272.93, -272.15, -271.43, -269.13, -267.63, -267.63, -269.13, -268.42, -266.31, -267.53, -268.93, -268.07, -271.44, -273.24, -270.17, -266.07, -270.06, -276.01, -274.05, -273.32, -270.43, -269.93, -271.71, -271.59, -271.18, -268.82, -266.29, -268.32, -269.98, -272.75, -276.35, -276.48, -272.6, -276.18, -278.77, -279.92, -281.67, -276.18, -269.1, -271.33, -266.2, -268.35, -270.86, -264.81, -268.42, -272.21, -274.1, -269.76, -272.7, -269.25, -267.4, -268.17, -266.46, -273.36, -277.25, -273.33, -268.23, -272.94, -278.66, -281.6, -274.81, -271.9, -272.35, -275.87, -280.0, -273.84, -267.58, -270.72, -273.59, -280.47, -268.89, -265.85, -273.1, -277.27, -275.8, -282.35, -274.45, -268.95, -272.87, -275.41, -280.02, -276.57, -276.81, -271.65, -271.07, -271.78, -271.77, -273.91, -264.53, -269.67, -273.07, -272.58, -272.23, -274.53, -275.28, -278.22, -281.89, -282.44, -277.55, -277.57, -281.49, -273.2, -271.79, -271.67, -271.99, -277.93, -286.29, -282.51, -279.7, -282.13, -287.89, -287.49, -287.09, -294.01, -295.84, -292.85, -289.04, -284.15, -277.46, -273.55, -274.24, -279.08, -277.15, -274.86, -277.21, -276.66, -273.87, -276.41, -278.02, -278.21, -279.11, -282.38, -285.97, -288.12, -288.81, -286.24, -282.18, -286.95, -283.05, -280.28, -278.15, -278.42, -279.51, -287.24, -287.18, -275.26, -277.23, -277.55, -278.94, -282.73, -286.75, -289.15, -284.3, -284.34, -289.83, -290.65, -291.25, -291.91, -291.53, -291.55, -287.33, -284.26, -285.78, -289.02, -288.04, -283.56, -285.34, -288.22, -288.63, -291.81, -283.28, -284.87, -285.43, -282.4, -282.96, -286.86, -287.34, -288.84, -290.82, -292.2, -290.51, -292.63, -293.06, -291.73, -295.17, -294.02, -291.99, -292.73, -293.63, -295.12, -297.15, -298.0, -298.2, -291.91, -291.28, -290.47, -293.94, -293.5, -289.92, -286.49, -289.02, -291.86, -292.54, -292.88, -289.77, -291.86, -295.79, -292.58, -291.63, -293.21, -295.29, -294.52, -288.56, -288.28, -287.62, -289.35, -291.57, -296.36, -296.63, -295.94, -296.19, -291.83, -294.29, -295.64, -295.8, -288.41, -288.85, -289.43, -290.93, -292.54, -294.64, -296.11, -297.34, -297.55, -296.31, -296.15, -295.28, -296.72, -294.35, -291.26, -291.4, -291.33, -290.1, -285.61, -289.53, -291.06, -291.75, -287.5, -285.36, -289.21, -287.38, -284.58, -286.99, -290.59, -292.31, -288.22, -286.87, -289.48, -291.88, -294.57, -294.82, -289.05, -284.37, -288.28, -291.62, -292.29, -291.09, -287.94, -288.23, -289.23, -291.51, -292.82, -293.43, -289.84, -286.87, -286.19, -284.62, -286.04, -287.65, -282.1, -286.49, -289.92, -292.32, -288.09, -283.68, -289.99, -282.36, -282.93, -279.25, -279.88, -283.49, -283.51, -283.55, -283.95, -277.71, -276.21, -280.54, -280.72, -277.71, -280.68, -278.63, -276.11, -275.13, -273.53, -273.75, -274.77, -277.44, -278.53, -275.67, -273.57, -273.29, -273.14, -274.77, -270.19, -270.55, -273.68, -273.93, -274.94, -271.5, -277.22, -281.65, -286.75, -287.95, -278.96, -275.25, -277.15, -280.67, -271.71, -272.16, -272.25, -271.7, -275.12, -275.31, -277.0, -273.12, -274.77, -274.6, -273.15, -268.77, -264.02, -268.94, -273.94, -269.21, -269.61, -262.35, -262.88, -265.72, -266.73, -266.75, -269.53, -261.11, -266.55, -270.53, -273.36, -273.27, -275.63, -273.7, -271.05, -265.15, -266.01, -270.92, -279.13, -273.33, -274.6, -273.25, -271.0, -269.0, -267.85, -265.93, -267.59, -269.44, -266.69, -273.71, -273.78, -267.3, -266.82, -269.3, -266.78, -266.08, -265.3, -267.95, -272.25, -267.67, -264.4, -266.15, -265.24, -260.31, -259.95, -262.86, -263.77, -256.55, -259.61, -262.84, -257.73, -256.0, -255.31, -259.31, -262.44, -265.71, -259.14, -256.61, -264.75, -264.37, -270.41, -271.76, -273.08, -272.94, -273.57, -267.76, -264.55, -266.91, -262.48, -265.37, -267.79, -261.98, -262.13, -258.19, -257.95, -256.14, -255.8, -261.96, -266.85, -270.2, -272.88, -273.5, -273.63, -272.09, -267.29, -263.3, -258.86, -263.04, -266.1, -270.13, -273.2, -260.46, -262.7, -274.6, -266.36, -262.77, -272.41, -271.43, -261.57, -265.85, -273.88, -270.8, -264.16, -271.41, -277.57, -279.82, -278.85, -272.14, -272.33, -279.32, -279.3, -275.94, -277.54, -279.21, -278.85, -277.09, -280.19, -283.66, -275.13, -270.55, -270.32, -274.27, -274.07, -270.19, -270.54, -270.35, -269.41, -270.71, -271.88, -276.12, -274.36, -280.19, -278.02, -279.43, -288.87, -286.6, -273.36, -275.18, -279.85, -282.28, -284.4, -280.4, -277.29, -275.74, -280.0, -280.54, -282.04, -288.12, -288.11, -283.8, -285.28, -286.23, -281.41, -282.93, -284.31, -280.89, -287.12, -280.58, -283.64, -284.47, -284.13, -280.03, -281.26, -282.32, -283.23, -279.43, -280.16, -284.5, -289.66, -291.91, -284.04, -282.76, -281.15, -280.27, -283.22, -281.32, -284.61, -285.55, -286.61, -288.14, -285.78, -284.73, -284.9, -287.09, -286.82, -283.67, -288.69, -286.67, -287.28, -287.57, -289.39, -290.09, -291.37, -286.38, -288.18, -290.29, -286.31, -286.97, -286.8, -289.98, -288.62, -287.18, -286.47, -291.6, -294.21, -295.63, -297.1, -296.01, -292.03, -292.63, -292.37, -291.06, -292.67, -293.39, -295.16, -295.92, -295.7, -294.97, -295.85, -289.74, -290.01, -288.56, -291.79, -290.42, -290.6, -292.37, -291.03, -290.86, -291.31, -291.49, -291.14, -292.02, -292.5, -293.23, -293.18, -292.27, -293.42, -294.39, -291.72, -291.54, -292.81, -292.14, -288.41, -292.53, -295.7, -294.91, -294.6, -293.73, -294.0, -293.41, -295.14, -295.15, -295.08, -294.63, -294.62, -294.17, -294.9, -294.1, -291.94, -290.97, -292.26, -292.66, -293.99, -294.68, -290.43, -286.12, -289.3, -291.82, -293.06, -288.13, -290.1, -291.33, -285.98, -287.15, -286.6, -287.39, -289.69, -289.17, -287.85, -289.19, -288.78, -285.12, -286.27, -289.79, -286.41, -288.77, -292.25, -292.45, -290.15, -287.5, -287.68, -291.24, -292.07, -287.48, -287.04, -288.05, -285.11, -288.64, -285.78, -289.17, -288.73, -283.33, -281.21, -279.97, -278.67, -277.13, -279.65, -277.71, -277.35, -279.03, -284.32, -287.53, -284.04, -286.04, -284.2, -284.39, -283.43, -283.33, -279.79, -278.28, -276.88, -274.84, -276.01, -284.52, -274.51, -272.23, -273.06, -277.54, -285.12, -286.7, -279.93, -281.29, -278.42, -283.18, -286.58, -282.5, -285.97, -278.2, -277.17, -280.87, -278.44, -272.27, -268.95, -271.23, -273.25, -279.06, -278.35, -271.14, -270.41, -272.05, -274.62, -277.45, -282.86, -279.8, -278.74, -278.85, -277.26, -277.53, -273.05, -272.63, -276.9, -280.37, -276.13, -274.17, -274.05, -266.6, -263.13, -266.44, -265.66, -265.45, -265.52, -267.97, -268.39, -273.12, -277.55, -271.51, -266.09, -264.82, -269.31, -269.7, -278.45, -271.02, -269.29, -268.5, -266.73, -272.93, -277.69, -281.09, -275.39, -272.29, -273.17, -273.33, -277.25, -276.35, -274.25} - diff --git a/Test/tas_mytest_3d_i.asc b/Test/tas_mytest_3d_i.asc deleted file mode 100644 index 58414bf7ee14a69c22bb1b8b1f714187fc881912..0000000000000000000000000000000000000000 --- a/Test/tas_mytest_3d_i.asc +++ /dev/null @@ -1,19 +0,0 @@ -tas -K -3 -256 -128 -3 -longitude -degrees_east --180.0 -178.59375 -177.1875 -175.78125 -174.375 -172.96875 -171.5625 -170.15625 -168.75 -167.34375 -165.9375 -164.53125 -163.125 -161.71875 -160.3125 -158.90625 -157.5 -156.09375 -154.6875 -153.28125 -151.875 -150.46875 -149.0625 -147.65625 -146.25 -144.84375 -143.4375 -142.03125 -140.625 -139.21875 -137.8125 -136.40625 -135.0 -133.59375 -132.1875 -130.78125 -129.375 -127.96875 -126.5625 -125.15625 -123.75 -122.34375 -120.9375 -119.53125 -118.125 -116.71875 -115.3125 -113.90625 -112.5 -111.09375 -109.6875 -108.28125 -106.875 -105.46875 -104.0625 -102.65625 -101.25 -99.84375 -98.4375 -97.03125 -95.625 -94.21875 -92.8125 -91.40625 -90.0 -88.59375 -87.1875 -85.78125 -84.375 -82.96875 -81.5625 -80.15625 -78.75 -77.34375 -75.9375 -74.53125 -73.125 -71.71875 -70.3125 -68.90625 -67.5 -66.09375 -64.6875 -63.28125 -61.875 -60.46875 -59.0625 -57.65625 -56.25 -54.84375 -53.4375 -52.03125 -50.625 -49.21875 -47.8125 -46.40625 -45.0 -43.59375 -42.1875 -40.78125 -39.375 -37.96875 -36.5625 -35.15625 -33.75 -32.34375 -30.9375 -29.53125 -28.125 -26.71875 -25.3125 -23.90625 -22.5 -21.09375 -19.6875 -18.28125 -16.875 -15.46875 -14.0625 -12.65625 -11.25 -9.84375 -8.4375 -7.03125 -5.625 -4.21875 -2.8125 -1.40625 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.65625 14.0625 15.46875 16.875 18.28125 19.6875 21.09375 22.5 23.90625 25.3125 26.71875 28.125 29.53125 30.9375 32.34375 33.75 35.15625 36.5625 37.96875 39.375 40.78125 42.1875 43.59375 45.0 46.40625 47.8125 49.21875 50.625 52.03125 53.4375 54.84375 56.25 57.65625 59.0625 60.46875 61.875 63.28125 64.6875 66.09375 67.5 68.90625 70.3125 71.71875 73.125 74.53125 75.9375 77.34375 78.75 80.15625 81.5625 82.96875 84.375 85.78125 87.1875 88.59375 90.0 91.40625 92.8125 94.21875 95.625 97.03125 98.4375 99.84375 101.25 102.65625 104.0625 105.46875 106.875 108.28125 109.6875 111.09375 112.5 113.90625 115.3125 116.71875 118.125 119.53125 120.9375 122.34375 123.75 125.15625 126.5625 127.96875 129.375 130.78125 132.1875 133.59375 135.0 136.40625 137.8125 139.21875 140.625 142.03125 143.4375 144.84375 146.25 147.65625 149.0625 150.46875 151.875 153.28125 154.6875 156.09375 157.5 158.90625 160.3125 161.71875 163.125 164.53125 165.9375 167.34375 168.75 170.15625 171.5625 172.96875 174.375 175.78125 177.1875 178.59375 --180.703125 -179.296875 -179.296875 -177.890625 -177.890625 -176.484375 -176.484375 -175.078125 -175.078125 -173.671875 -173.671875 -172.265625 -172.265625 -170.859375 -170.859375 -169.453125 -169.453125 -168.046875 -168.046875 -166.640625 -166.640625 -165.234375 -165.234375 -163.828125 -163.828125 -162.421875 -162.421875 -161.015625 -161.015625 -159.609375 -159.609375 -158.203125 -158.203125 -156.796875 -156.796875 -155.390625 -155.390625 -153.984375 -153.984375 -152.578125 -152.578125 -151.171875 -151.171875 -149.765625 -149.765625 -148.359375 -148.359375 -146.953125 -146.953125 -145.546875 -145.546875 -144.140625 -144.140625 -142.734375 -142.734375 -141.328125 -141.328125 -139.921875 -139.921875 -138.515625 -138.515625 -137.109375 -137.109375 -135.703125 -135.703125 -134.296875 -134.296875 -132.890625 -132.890625 -131.484375 -131.484375 -130.078125 -130.078125 -128.671875 -128.671875 -127.265625 -127.265625 -125.859375 -125.859375 -124.453125 -124.453125 -123.046875 -123.046875 -121.640625 -121.640625 -120.234375 -120.234375 -118.828125 -118.828125 -117.421875 -117.421875 -116.015625 -116.015625 -114.609375 -114.609375 -113.203125 -113.203125 -111.796875 -111.796875 -110.390625 -110.390625 -108.984375 -108.984375 -107.578125 -107.578125 -106.171875 -106.171875 -104.765625 -104.765625 -103.359375 -103.359375 -101.953125 -101.953125 -100.546875 -100.546875 -99.140625 -99.140625 -97.734375 -97.734375 -96.328125 -96.328125 -94.921875 -94.921875 -93.515625 -93.515625 -92.109375 -92.109375 -90.703125 -90.703125 -89.296875 -89.296875 -87.890625 -87.890625 -86.484375 -86.484375 -85.078125 -85.078125 -83.671875 -83.671875 -82.265625 -82.265625 -80.859375 -80.859375 -79.453125 -79.453125 -78.046875 -78.046875 -76.640625 -76.640625 -75.234375 -75.234375 -73.828125 -73.828125 -72.421875 -72.421875 -71.015625 -71.015625 -69.609375 -69.609375 -68.203125 -68.203125 -66.796875 -66.796875 -65.390625 -65.390625 -63.984375 -63.984375 -62.578125 -62.578125 -61.171875 -61.171875 -59.765625 -59.765625 -58.359375 -58.359375 -56.953125 -56.953125 -55.546875 -55.546875 -54.140625 -54.140625 -52.734375 -52.734375 -51.328125 -51.328125 -49.921875 -49.921875 -48.515625 -48.515625 -47.109375 -47.109375 -45.703125 -45.703125 -44.296875 -44.296875 -42.890625 -42.890625 -41.484375 -41.484375 -40.078125 -40.078125 -38.671875 -38.671875 -37.265625 -37.265625 -35.859375 -35.859375 -34.453125 -34.453125 -33.046875 -33.046875 -31.640625 -31.640625 -30.234375 -30.234375 -28.828125 -28.828125 -27.421875 -27.421875 -26.015625 -26.015625 -24.609375 -24.609375 -23.203125 -23.203125 -21.796875 -21.796875 -20.390625 -20.390625 -18.984375 -18.984375 -17.578125 -17.578125 -16.171875 -16.171875 -14.765625 -14.765625 -13.359375 -13.359375 -11.953125 -11.953125 -10.546875 -10.546875 -9.140625 -9.140625 -7.734375 -7.734375 -6.328125 -6.328125 -4.921875 -4.921875 -3.515625 -3.515625 -2.109375 -2.109375 -0.703125 -0.703125 0.703125 0.703125 2.109375 2.109375 3.515625 3.515625 4.921875 4.921875 6.328125 6.328125 7.734375 7.734375 9.140625 9.140625 10.546875 10.546875 11.953125 11.953125 13.359375 13.359375 14.765625 14.765625 16.171875 16.171875 17.578125 17.578125 18.984375 18.984375 20.390625 20.390625 21.796875 21.796875 23.203125 23.203125 24.609375 24.609375 26.015625 26.015625 27.421875 27.421875 28.828125 28.828125 30.234375 30.234375 31.640625 31.640625 33.046875 33.046875 34.453125 34.453125 35.859375 35.859375 37.265625 37.265625 38.671875 38.671875 40.078125 40.078125 41.484375 41.484375 42.890625 42.890625 44.296875 44.296875 45.703125 45.703125 47.109375 47.109375 48.515625 48.515625 49.921875 49.921875 51.328125 51.328125 52.734375 52.734375 54.140625 54.140625 55.546875 55.546875 56.953125 56.953125 58.359375 58.359375 59.765625 59.765625 61.171875 61.171875 62.578125 62.578125 63.984375 63.984375 65.390625 65.390625 66.796875 66.796875 68.203125 68.203125 69.609375 69.609375 71.015625 71.015625 72.421875 72.421875 73.828125 73.828125 75.234375 75.234375 76.640625 76.640625 78.046875 78.046875 79.453125 79.453125 80.859375 80.859375 82.265625 82.265625 83.671875 83.671875 85.078125 85.078125 86.484375 86.484375 87.890625 87.890625 89.296875 89.296875 90.703125 90.703125 92.109375 92.109375 93.515625 93.515625 94.921875 94.921875 96.328125 96.328125 97.734375 97.734375 99.140625 99.140625 100.546875 100.546875 101.953125 101.953125 103.359375 103.359375 104.765625 104.765625 106.171875 106.171875 107.578125 107.578125 108.984375 108.984375 110.390625 110.390625 111.796875 111.796875 113.203125 113.203125 114.609375 114.609375 116.015625 116.015625 117.421875 117.421875 118.828125 118.828125 120.234375 120.234375 121.640625 121.640625 123.046875 123.046875 124.453125 124.453125 125.859375 125.859375 127.265625 127.265625 128.671875 128.671875 130.078125 130.078125 131.484375 131.484375 132.890625 132.890625 134.296875 134.296875 135.703125 135.703125 137.109375 137.109375 138.515625 138.515625 139.921875 139.921875 141.328125 141.328125 142.734375 142.734375 144.140625 144.140625 145.546875 145.546875 146.953125 146.953125 148.359375 148.359375 149.765625 149.765625 151.171875 151.171875 152.578125 152.578125 153.984375 153.984375 155.390625 155.390625 156.796875 156.796875 158.203125 158.203125 159.609375 159.609375 161.015625 161.015625 162.421875 162.421875 163.828125 163.828125 165.234375 165.234375 166.640625 166.640625 168.046875 168.046875 169.453125 169.453125 170.859375 170.859375 172.265625 172.265625 173.671875 173.671875 175.078125 175.078125 176.484375 176.484375 177.890625 177.890625 179.296875 -latitude -degrees_north --88.9277353523 -87.538705213 -86.1414721015 -84.7423855907 -83.3425960441 -81.9424662992 -80.5421464346 -79.1417096486 -77.7411958655 -76.3406287024 -74.9400230196 -73.5393886338 -72.1387322892 -70.7380587725 -69.337371575 -67.9366733026 -66.5359659402 -65.135251026 -63.7345297708 -62.3338031405 -60.9330719152 -59.5323367318 -58.1315981156 -56.7308565037 -55.3301122627 -53.9293657026 -52.5286170871 -51.1278666424 -49.7271145631 -48.3263610182 -46.9256061547 -45.5248501013 -44.1240929714 -42.7233348649 -41.3225758706 -39.9218160676 -38.5210555266 -37.120294311 -35.7195324778 -34.3187700788 -32.9180071606 -31.5172437659 -30.1164799335 -28.7157156991 -27.3149510951 -25.9141861518 -24.5134208971 -23.1126553566 -21.7118895544 -20.311123513 -18.9103572532 -17.509590795 -16.1088241568 -14.7080573564 -13.3072904104 -11.906523335 -10.5057561452 -9.10498885605 -7.7042214816 -6.30345403571 -4.90268653183 -3.50191898313 -2.10115140258 -0.700383802973 0.700383802973 2.10115140258 3.50191898313 4.90268653183 6.30345403571 7.7042214816 9.10498885605 10.5057561452 11.906523335 13.3072904104 14.7080573564 16.1088241568 17.509590795 18.9103572532 20.311123513 21.7118895544 23.1126553566 24.5134208971 25.9141861518 27.3149510951 28.7157156991 30.1164799335 31.5172437659 32.9180071606 34.3187700788 35.7195324778 37.120294311 38.5210555266 39.9218160676 41.3225758706 42.7233348649 44.1240929714 45.5248501013 46.9256061547 48.3263610182 49.7271145631 51.1278666424 52.5286170871 53.9293657026 55.3301122627 56.7308565037 58.1315981156 59.5323367318 60.9330719152 62.3338031405 63.7345297708 65.135251026 66.5359659402 67.9366733026 69.337371575 70.7380587725 72.1387322892 73.5393886338 74.9400230196 76.3406287024 77.7411958655 79.1417096486 80.5421464346 81.9424662992 83.3425960441 84.7423855907 86.1414721015 87.538705213 88.9277353523 --90.0 -88.2332202827 -88.2332202827 -86.8400886573 -86.8400886573 -85.4419288461 -85.4419288461 -84.0424908174 -84.0424908174 -82.6425311716 -82.6425311716 -81.2423063669 -81.2423063669 -79.8419280416 -79.8419280416 -78.4414527571 -78.4414527571 -77.0409122839 -77.0409122839 -75.640325861 -75.640325861 -74.2397058267 -74.2397058267 -72.8390604615 -72.8390604615 -71.4383955308 -71.4383955308 -70.0377151737 -70.0377151737 -68.6370224388 -68.6370224388 -67.2363196214 -67.2363196214 -65.8356084831 -65.8356084831 -64.4348903984 -64.4348903984 -63.0341664557 -63.0341664557 -61.6334375279 -61.6334375279 -60.2327043235 -60.2327043235 -58.8319674237 -58.8319674237 -57.4312273097 -57.4312273097 -56.0304843832 -56.0304843832 -54.6297389826 -54.6297389826 -53.2289913948 -53.2289913948 -51.8282418647 -51.8282418647 -50.4274906027 -50.4274906027 -49.0267377906 -49.0267377906 -47.6259835864 -47.6259835864 -46.225228128 -46.225228128 -44.8244715363 -44.8244715363 -43.4237139181 -43.4237139181 -42.0229553678 -42.0229553678 -40.6221959691 -40.6221959691 -39.2214357971 -39.2214357971 -37.8206749188 -37.8206749188 -36.4199133944 -36.4199133944 -35.0191512783 -35.0191512783 -33.6183886197 -33.6183886197 -32.2176254633 -32.2176254633 -30.8168618497 -30.8168618497 -29.4160978163 -29.4160978163 -28.0153333971 -28.0153333971 -26.6145686235 -26.6145686235 -25.2138035245 -25.2138035245 -23.8130381268 -23.8130381268 -22.4122724555 -22.4122724555 -21.0115065337 -21.0115065337 -19.6107403831 -19.6107403831 -18.2099740241 -18.2099740241 -16.8092074759 -16.8092074759 -15.4084407566 -15.4084407566 -14.0076738834 -14.0076738834 -12.6069068727 -12.6069068727 -11.2061397401 -11.2061397401 -9.80537250065 -9.80537250065 -8.40460516882 -8.40460516882 -7.00383775865 -7.00383775865 -5.60307028377 -5.60307028377 -4.20230275748 -4.20230275748 -2.80153519286 -2.80153519286 -1.40076760278 -1.40076760278 0.0 0.0 1.40076760278 1.40076760278 2.80153519286 2.80153519286 4.20230275748 4.20230275748 5.60307028377 5.60307028377 7.00383775865 7.00383775865 8.40460516882 8.40460516882 9.80537250065 9.80537250065 11.2061397401 11.2061397401 12.6069068727 12.6069068727 14.0076738834 14.0076738834 15.4084407566 15.4084407566 16.8092074759 16.8092074759 18.2099740241 18.2099740241 19.6107403831 19.6107403831 21.0115065337 21.0115065337 22.4122724555 22.4122724555 23.8130381268 23.8130381268 25.2138035245 25.2138035245 26.6145686235 26.6145686235 28.0153333971 28.0153333971 29.4160978163 29.4160978163 30.8168618497 30.8168618497 32.2176254633 32.2176254633 33.6183886197 33.6183886197 35.0191512783 35.0191512783 36.4199133944 36.4199133944 37.8206749188 37.8206749188 39.2214357971 39.2214357971 40.6221959691 40.6221959691 42.0229553678 42.0229553678 43.4237139181 43.4237139181 44.8244715363 44.8244715363 46.225228128 46.225228128 47.6259835864 47.6259835864 49.0267377906 49.0267377906 50.4274906027 50.4274906027 51.8282418647 51.8282418647 53.2289913948 53.2289913948 54.6297389826 54.6297389826 56.0304843832 56.0304843832 57.4312273097 57.4312273097 58.8319674237 58.8319674237 60.2327043235 60.2327043235 61.6334375279 61.6334375279 63.0341664557 63.0341664557 64.4348903984 64.4348903984 65.8356084831 65.8356084831 67.2363196214 67.2363196214 68.6370224388 68.6370224388 70.0377151737 70.0377151737 71.4383955308 71.4383955308 72.8390604615 72.8390604615 74.2397058267 74.2397058267 75.640325861 75.640325861 77.0409122839 77.0409122839 78.4414527571 78.4414527571 79.8419280416 79.8419280416 81.2423063669 81.2423063669 82.6425311716 82.6425311716 84.0424908174 84.0424908174 85.4419288461 85.4419288461 86.8400886573 86.8400886573 88.2332202827 88.2332202827 90.0 -time -days since 0000-1-1 -682565.5 682595.0 682624.5 -682550.0 682581.0 682581.0 682609.0 682609.0 682640.0 -246 236 226 249 239 232 254 245 239 259 250 245 263 254 249 265 256 247 266 255 243 267 255 243 268 260 250 269 263 252 269 265 254 269 267 255 271 269 257 271 270 259 271 272 263 271 273 266 272 273 269 272 274 271 274 275 272 274 275 273 275 276 274 276 277 274 276 277 275 277 278 276 278 279 277 279 280 278 280 280 279 281 281 280 282 282 281 283 284 283 285 285 285 287 287 286 288 288 288 290 290 289 291 291 290 292 292 291 292 292 291 292 293 292 293 293 292 293 293 292 293 294 293 294 294 293 294 294 294 295 295 295 295 296 295 296 296 296 296 297 296 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 300 300 299 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 298 298 298 298 298 299 298 298 299 299 299 300 300 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 296 296 296 296 296 296 296 296 295 295 295 295 295 294 294 294 293 293 293 291 291 292 290 290 291 289 289 290 288 288 289 288 287 288 287 286 286 286 285 285 285 284 284 283 283 282 282 281 280 280 280 278 279 279 277 277 277 275 276 276 275 275 276 274 275 275 274 274 275 274 274 274 273 274 274 273 274 274 272 273 273 271 272 272 269 272 272 266 270 270 260 266 266 252 261 261 247 259 256 245 256 253 242 254 251 237 251 248 236 249 247 237 247 246 238 248 246 239 248 245 240 248 244 239 248 245 239 247 246 239 246 246 239 245 246 239 244 245 239 244 244 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 249 240 232 254 245 239 259 251 246 263 255 249 265 256 247 266 255 243 267 255 243 268 260 250 268 263 252 268 265 255 269 266 256 270 268 258 271 270 260 271 271 263 271 273 267 271 273 269 272 274 271 273 275 272 274 275 273 275 276 274 276 277 274 276 277 275 277 278 276 278 279 277 279 280 278 280 280 279 281 281 280 282 282 281 283 284 283 285 285 285 287 287 287 288 288 288 289 290 289 291 291 290 291 291 291 292 292 291 292 292 291 292 293 292 293 293 292 293 293 293 294 294 293 294 294 294 295 295 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 300 300 299 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 298 298 298 299 298 298 299 299 299 300 299 300 300 300 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 296 296 296 296 296 296 296 295 295 295 295 295 295 294 294 294 293 293 293 291 291 292 290 290 291 289 289 290 288 288 289 288 287 287 287 286 286 286 285 285 285 284 284 283 283 282 282 281 280 280 280 278 279 279 277 277 277 276 276 277 275 276 276 275 275 276 274 275 275 274 274 275 273 274 274 273 274 274 272 273 273 271 273 273 269 272 272 266 270 270 260 266 266 253 262 261 249 259 257 247 257 254 244 255 252 238 251 249 236 249 248 237 247 246 239 248 247 240 248 245 240 248 245 239 248 245 239 247 246 239 246 246 239 245 246 239 244 245 239 244 244 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 249 240 232 254 245 239 259 251 246 263 255 249 265 255 247 266 255 243 267 255 243 268 260 249 268 262 252 268 265 255 269 266 257 270 268 258 270 270 261 271 271 263 271 272 267 271 273 269 272 274 271 273 275 272 274 275 273 275 276 274 276 277 274 276 277 275 277 278 276 278 279 277 279 280 278 280 280 279 281 281 280 282 282 281 283 284 283 285 285 285 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 291 292 291 292 292 291 292 293 292 293 293 292 293 293 293 294 294 293 294 294 294 295 295 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 299 299 299 299 299 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 298 298 298 298 298 298 298 298 298 299 299 299 299 299 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 298 298 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 295 295 295 295 294 294 294 293 293 293 291 291 292 290 290 291 289 289 290 288 288 288 287 287 287 287 286 286 286 285 285 285 284 283 283 283 282 282 281 280 281 280 278 279 279 277 278 278 276 277 277 276 276 276 275 275 276 275 275 275 274 275 275 273 274 274 273 274 274 272 273 273 271 273 273 269 272 272 266 270 270 260 266 266 254 262 261 250 260 258 248 258 255 245 256 253 239 252 249 237 249 248 237 248 246 239 248 246 240 248 245 240 248 245 240 248 246 239 247 246 239 246 246 239 245 245 239 244 245 239 244 244 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 249 240 232 254 245 239 260 251 246 264 255 249 266 255 246 266 255 243 267 256 243 267 260 249 268 262 253 268 265 255 268 266 257 269 268 259 270 269 261 270 271 264 271 272 267 271 273 269 272 274 271 273 275 272 274 275 273 275 276 274 276 277 275 276 277 275 277 278 276 278 279 277 279 280 278 280 281 279 281 281 280 282 282 281 283 284 283 285 286 285 287 287 287 288 288 288 289 289 289 290 290 290 291 291 290 291 292 291 292 292 291 292 292 292 293 293 292 293 293 293 294 294 293 294 294 294 295 295 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 299 299 299 299 299 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 298 298 298 298 298 298 298 298 298 299 299 299 299 299 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 298 298 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 295 295 295 295 294 294 294 293 293 293 291 292 291 290 290 290 289 289 289 288 288 288 287 287 287 287 286 286 286 285 285 284 284 283 283 283 282 282 281 280 281 280 279 279 279 277 278 278 277 277 277 276 276 276 275 276 276 275 275 275 274 275 275 274 274 275 273 274 274 272 274 274 271 273 273 269 272 272 266 269 270 260 265 265 254 262 261 251 260 258 249 258 256 246 256 254 240 252 250 238 250 248 238 248 246 239 248 246 240 248 246 240 248 246 240 248 246 239 247 246 239 246 247 239 245 245 239 244 245 239 244 244 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 249 240 232 254 245 240 260 251 246 264 255 249 266 255 246 266 255 243 267 256 243 267 260 248 267 262 253 268 265 256 268 266 258 269 268 259 269 269 261 270 271 264 271 272 267 271 273 269 272 274 271 273 274 272 274 275 273 275 276 274 276 276 275 276 277 275 277 278 276 278 279 277 279 280 278 280 281 279 281 281 280 282 282 281 283 284 283 285 286 285 287 287 287 288 288 288 289 289 289 290 290 290 290 291 290 291 291 291 292 292 291 292 292 292 293 293 292 293 293 293 294 294 293 294 294 294 295 295 294 295 295 295 296 296 296 296 297 296 296 297 297 297 298 297 298 298 298 298 299 299 298 299 299 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 299 299 300 299 299 299 298 298 298 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 299 299 299 299 299 299 298 298 298 298 298 298 297 298 298 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 295 295 295 295 294 294 294 293 293 293 291 292 291 290 290 290 289 289 289 288 288 288 287 287 287 287 286 286 286 285 284 284 284 283 283 282 281 282 281 280 281 280 279 279 279 278 278 278 277 277 277 276 277 277 275 276 276 275 276 276 274 275 275 274 275 275 273 274 274 272 274 274 271 273 273 269 272 272 266 269 269 260 265 265 254 262 261 252 261 258 250 259 256 245 256 254 241 253 251 239 250 248 239 248 247 239 248 247 240 248 246 240 248 246 240 248 246 239 247 246 239 246 246 239 245 246 239 244 245 239 244 244 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 249 240 232 254 245 240 260 251 247 264 255 249 266 255 246 266 255 243 267 256 244 267 259 248 267 262 253 268 265 256 268 266 258 269 268 260 269 269 262 270 271 264 271 272 267 271 273 269 272 273 271 273 274 272 274 275 273 275 276 274 276 276 275 276 277 275 277 278 276 278 279 277 279 280 278 280 281 279 281 281 280 282 283 282 283 284 283 285 286 285 287 287 287 288 288 288 289 289 289 290 290 289 290 291 290 291 291 291 291 292 291 292 292 291 293 293 292 293 293 293 293 294 293 294 294 294 295 295 294 295 296 295 295 296 296 296 296 296 296 297 297 297 298 297 297 298 298 298 299 299 298 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 299 299 298 298 298 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 299 299 299 299 299 299 298 298 298 298 298 298 297 298 298 297 297 297 296 297 297 296 296 296 295 296 296 295 295 295 295 295 295 295 294 294 294 293 293 293 292 292 291 290 290 290 289 289 289 288 288 288 287 287 287 286 286 286 285 285 284 284 284 283 283 282 281 282 281 280 281 280 279 279 279 278 278 278 277 278 277 276 277 277 276 276 276 275 276 276 274 275 275 274 275 275 273 274 274 272 274 274 271 273 273 269 271 271 266 268 268 260 265 264 255 263 260 252 261 258 250 259 257 246 257 254 242 254 252 240 251 249 240 249 248 240 249 247 240 248 247 240 248 246 240 248 246 239 246 246 239 246 246 239 245 246 238 244 245 239 244 245 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 249 240 233 255 246 240 260 252 247 264 255 249 266 255 245 266 255 243 267 256 244 267 259 248 268 262 253 268 265 256 268 267 258 269 268 260 269 270 262 270 271 264 271 272 267 271 272 269 272 273 271 273 274 272 274 275 273 275 276 274 275 276 275 276 277 275 277 278 276 278 278 277 279 279 278 280 280 279 281 281 280 282 283 282 283 284 284 285 286 285 286 287 287 288 288 288 289 289 289 290 290 289 290 291 290 291 291 290 291 292 291 292 292 291 292 293 292 293 293 293 293 294 293 294 294 294 294 295 294 295 296 295 295 296 295 296 297 296 296 297 297 297 298 297 297 298 298 298 299 299 298 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 298 298 298 297 297 298 298 298 298 298 299 299 299 299 299 299 300 299 299 299 299 299 299 299 298 298 298 298 298 298 297 298 298 297 297 297 296 297 297 296 296 296 295 296 296 295 295 295 295 295 295 295 294 294 294 293 293 293 292 292 291 290 290 290 289 289 289 288 288 288 287 287 287 286 286 286 285 285 284 284 284 283 283 282 282 282 281 280 281 280 279 280 279 278 279 278 277 278 277 277 277 277 276 276 276 275 276 276 274 275 275 274 275 275 273 274 274 272 274 273 271 273 272 269 271 271 265 268 268 259 265 263 255 263 260 253 262 259 251 260 257 247 257 255 244 254 252 242 252 250 241 251 249 240 249 248 240 248 247 240 248 247 240 248 247 239 246 247 239 245 247 239 245 246 238 244 245 238 244 245 240 243 244 241 242 243 240 242 242 239 242 241 239 241 240 246 236 226 250 240 233 255 246 240 260 252 247 264 255 249 265 255 245 266 255 243 266 257 245 267 259 248 268 263 253 268 265 256 268 267 258 269 268 260 269 270 262 270 271 264 271 272 267 271 272 269 272 273 271 273 274 272 274 275 273 275 276 274 275 276 275 276 277 275 277 278 276 278 278 277 279 279 278 280 280 279 281 281 281 282 283 282 283 284 284 285 285 285 286 287 287 288 288 287 289 289 288 289 290 289 290 290 290 290 291 290 291 292 291 292 292 291 292 293 292 293 293 292 293 294 293 294 294 294 295 295 294 295 296 295 295 296 295 296 297 296 296 297 297 297 298 297 297 298 298 298 299 298 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 298 298 298 297 297 298 298 298 298 298 299 299 299 299 299 299 300 299 299 299 299 299 299 299 298 298 299 298 298 298 297 298 298 297 297 297 296 297 297 296 296 296 295 296 296 295 295 295 295 295 295 295 294 294 294 294 293 293 292 292 291 291 291 290 289 289 289 288 288 288 287 287 287 286 286 286 285 285 285 284 284 283 283 282 282 282 281 281 281 280 279 280 279 278 279 278 278 278 277 277 277 277 276 277 276 275 276 276 274 275 275 274 275 274 273 274 274 272 274 273 271 273 272 269 271 270 264 267 267 259 265 263 256 264 261 254 262 259 252 260 257 249 258 255 246 255 253 244 253 251 242 252 250 241 250 248 240 248 248 240 248 247 240 248 247 239 246 247 239 245 246 238 245 246 238 244 245 238 244 245 240 243 244 241 242 243 240 242 242 240 242 241 239 241 240 246 236 227 250 240 233 255 246 240 261 252 247 264 255 249 265 255 245 266 255 243 266 257 245 267 259 249 268 263 253 268 265 256 268 267 258 269 268 260 269 270 262 270 271 264 271 271 267 271 272 269 272 273 271 273 274 272 274 275 273 275 275 274 275 276 275 276 277 275 277 278 276 278 278 277 278 279 278 279 280 279 280 281 281 282 282 282 283 284 284 284 285 285 286 286 286 287 288 287 288 289 288 289 289 289 290 290 289 290 291 290 291 291 290 292 292 291 292 293 292 293 293 292 293 294 293 294 294 294 294 295 294 295 296 295 295 296 295 296 297 296 296 297 297 297 298 297 297 298 298 298 299 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 298 298 299 297 297 298 297 298 298 298 299 299 299 299 300 299 300 299 299 299 299 299 299 299 298 298 299 298 298 298 297 298 298 297 297 297 296 297 297 296 296 296 295 296 296 295 295 295 295 295 295 295 294 294 294 294 294 293 293 292 292 291 291 290 289 290 289 288 288 288 287 287 287 286 286 286 285 285 285 284 284 283 283 283 282 282 281 281 281 280 280 280 279 279 279 278 278 278 277 277 277 277 276 277 276 275 276 276 275 276 275 274 275 274 272 274 273 272 274 273 271 273 271 269 271 269 264 267 266 260 265 263 257 264 261 255 263 259 253 261 258 250 259 256 247 256 254 245 254 252 244 252 250 242 250 249 241 249 248 241 248 247 240 248 247 239 246 247 239 245 246 238 244 246 238 244 245 238 244 245 239 243 244 241 242 243 240 242 242 240 242 241 239 241 240 246 236 226 250 240 233 255 246 241 261 252 247 264 255 248 265 255 245 266 255 243 266 257 246 267 260 249 268 263 253 268 265 257 269 267 259 269 268 260 269 269 262 270 270 265 271 271 267 271 272 269 272 273 271 273 274 272 274 274 273 275 275 274 275 276 275 276 277 276 277 277 276 278 278 277 278 279 278 279 280 279 280 281 281 281 282 282 283 283 284 284 285 285 286 286 286 287 287 287 288 288 288 289 289 289 289 290 289 290 291 290 291 291 290 291 292 291 292 293 292 292 293 292 293 294 293 294 294 294 294 295 294 295 296 295 295 296 295 296 297 296 296 297 297 297 298 297 297 298 298 298 299 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 297 298 298 297 297 298 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 298 299 299 298 298 298 297 298 298 297 297 297 296 297 297 296 296 296 295 296 296 295 295 295 295 295 295 295 294 294 294 294 294 293 293 293 292 291 291 290 290 290 289 288 289 288 287 287 287 286 286 286 285 285 284 284 284 283 283 283 282 282 282 281 281 280 280 280 279 279 279 278 278 278 277 277 278 277 276 277 276 275 276 275 275 276 275 274 275 274 272 274 273 271 273 272 270 273 271 268 270 268 264 267 265 260 265 263 257 264 261 256 263 260 254 261 258 251 260 256 248 256 254 246 255 252 244 252 251 242 250 250 241 249 249 241 248 248 240 248 247 239 246 247 239 245 246 238 244 246 237 244 245 238 244 245 239 243 244 241 242 243 241 242 242 240 242 241 239 241 240 246 236 227 250 240 233 255 246 241 261 252 247 264 255 248 265 255 245 266 255 244 266 257 246 267 260 249 268 263 253 268 265 257 269 267 259 269 268 260 270 269 262 270 270 265 271 271 267 271 272 269 272 272 271 273 273 272 274 274 273 275 275 274 275 276 275 276 277 276 277 277 276 278 278 277 278 279 278 279 280 279 280 281 281 281 282 282 283 283 283 284 285 285 286 286 286 287 287 287 288 288 288 288 289 288 289 290 289 290 290 290 291 291 290 291 292 291 292 292 292 292 293 292 293 294 293 294 294 294 294 295 294 295 295 295 295 296 295 296 296 296 296 297 297 297 297 297 297 298 298 298 299 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 297 298 298 297 297 298 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 298 299 299 298 298 298 297 298 298 297 297 297 296 297 297 296 296 296 295 296 296 295 295 295 295 295 295 295 294 294 294 294 294 293 293 293 292 292 292 290 290 290 289 289 289 288 287 287 287 286 286 286 285 285 284 284 284 283 283 283 282 282 282 281 281 280 280 280 279 279 279 278 278 278 277 277 278 277 276 277 276 276 276 275 275 276 275 274 275 274 273 274 273 271 273 272 270 272 270 268 270 268 263 267 265 260 265 262 257 264 261 255 263 260 253 261 258 249 259 256 248 257 254 246 255 253 245 253 251 243 250 250 242 249 249 241 248 248 240 248 247 239 246 246 238 245 246 238 244 246 237 244 245 238 244 245 239 243 244 240 242 243 241 242 242 240 242 241 239 241 240 246 237 227 250 240 233 255 246 241 261 252 247 264 255 248 265 255 244 266 255 244 266 257 247 267 259 249 268 263 253 269 265 257 269 267 259 269 268 260 270 269 262 270 270 265 271 271 267 271 272 269 272 272 271 273 273 272 274 274 273 275 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 286 286 286 287 287 287 288 288 288 288 289 288 289 290 289 290 290 290 291 291 290 291 292 291 292 292 292 292 293 292 293 294 293 294 294 294 294 295 294 295 295 295 295 296 295 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 297 298 298 297 297 298 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 298 297 296 297 297 296 296 296 296 296 296 295 295 295 295 295 295 295 294 294 294 294 294 293 293 293 292 292 292 291 290 290 289 289 289 288 287 288 287 286 286 286 285 285 284 284 284 283 283 283 282 282 282 281 281 280 280 280 279 279 279 278 278 278 277 277 278 277 277 277 276 276 277 275 275 276 275 274 275 274 273 274 273 271 273 272 269 272 269 267 270 267 263 267 264 259 266 262 255 263 260 253 262 259 252 261 258 248 259 256 247 257 254 246 255 253 245 253 252 243 251 251 242 249 250 241 248 248 240 247 247 239 246 247 238 245 246 237 244 246 237 244 245 238 244 245 239 243 244 240 242 243 241 242 241 240 242 241 239 241 240 246 237 227 250 240 233 255 246 241 261 252 247 264 255 248 265 255 244 265 255 244 266 257 247 267 259 249 268 262 253 269 265 257 270 266 259 270 267 261 270 269 263 270 270 265 271 271 267 271 272 269 272 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 279 278 279 279 279 279 280 280 280 281 281 281 282 282 283 283 283 284 284 285 285 286 286 287 287 287 287 288 288 288 289 288 289 289 289 290 290 289 290 291 290 291 291 291 292 292 292 292 293 292 293 293 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 299 297 298 298 297 297 298 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 295 295 295 295 294 294 294 294 294 294 293 293 292 292 292 291 291 291 290 289 289 288 288 288 287 286 286 286 285 285 285 284 284 284 283 283 282 282 282 281 281 281 280 280 279 279 279 278 279 279 278 278 278 277 277 277 276 276 277 275 275 276 275 274 275 274 273 275 273 272 274 271 269 272 269 266 269 266 262 267 263 258 265 261 254 263 259 251 261 258 251 261 258 247 258 256 245 256 254 244 254 253 244 253 252 243 250 251 242 249 250 241 248 249 240 247 247 239 246 247 238 244 246 237 244 245 237 244 245 237 244 245 239 243 244 240 242 243 241 241 241 240 241 241 239 241 240 246 236 227 250 240 233 255 246 241 261 252 247 264 255 248 265 255 244 265 255 244 266 257 247 267 259 249 268 262 252 269 265 257 270 266 259 270 267 261 270 269 263 270 269 265 271 271 268 271 271 269 272 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 279 278 279 280 279 280 280 280 280 281 281 281 282 282 283 283 283 284 284 285 285 286 286 286 287 287 287 288 287 288 288 288 289 289 289 289 290 289 290 291 290 291 291 291 291 292 292 292 293 292 293 293 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 299 297 298 298 297 298 298 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 295 295 295 295 294 294 294 294 294 294 293 293 293 293 292 291 291 291 290 290 290 289 288 288 287 287 286 286 286 285 285 285 284 284 283 283 283 282 282 282 281 281 281 280 279 280 279 278 279 279 278 278 278 277 277 278 276 276 277 276 275 276 275 275 276 274 273 275 273 272 274 271 269 272 269 266 269 265 262 267 263 257 265 261 253 263 259 251 262 258 248 260 257 246 258 256 244 256 254 243 254 253 243 252 252 243 250 251 243 249 251 241 248 249 240 247 247 239 245 247 238 244 246 237 244 245 236 244 245 237 243 245 239 243 244 240 242 243 241 241 241 240 241 241 239 241 240 246 237 227 250 241 233 256 246 241 261 252 247 264 255 248 265 255 244 265 255 245 266 257 248 267 259 249 268 262 252 269 265 256 270 266 259 270 267 261 270 269 263 270 269 265 271 270 268 271 271 269 272 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 279 278 279 280 279 280 280 280 281 281 281 282 282 282 283 283 284 284 284 285 285 286 286 286 287 287 287 288 287 288 288 288 289 289 289 289 290 289 290 291 290 291 291 291 291 292 292 292 293 292 293 293 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 299 298 297 298 298 297 297 298 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 297 297 297 297 297 297 297 296 297 296 296 296 296 295 295 295 295 295 295 295 294 294 294 294 294 294 294 293 293 293 293 292 292 291 290 290 290 289 289 288 288 287 287 286 286 285 285 285 284 284 284 283 283 283 282 282 281 281 281 280 280 280 280 279 279 279 278 278 278 277 277 278 276 276 277 276 276 276 275 275 276 274 274 275 273 272 274 271 269 273 269 265 269 265 261 267 263 255 264 260 252 263 259 250 262 258 248 260 257 246 259 256 244 256 255 242 254 253 242 252 252 243 250 252 243 249 251 242 248 249 240 247 247 238 245 246 238 244 245 237 243 245 236 244 245 237 243 245 239 242 244 240 242 243 241 241 241 239 241 241 239 241 240 247 237 227 250 241 233 256 246 241 261 252 247 264 255 248 265 254 244 265 255 245 266 257 248 267 260 250 268 262 252 269 265 256 270 266 259 270 267 261 270 268 263 270 269 265 271 270 268 271 271 269 272 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 279 278 279 280 279 280 281 280 281 281 281 282 282 283 283 283 284 284 284 285 285 285 286 286 287 287 287 287 287 288 288 288 288 289 289 289 290 289 290 290 290 290 291 291 291 292 292 292 293 292 293 293 293 293 294 294 294 294 294 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 299 298 297 298 298 297 297 297 297 298 298 298 298 299 299 299 299 299 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 297 298 297 297 297 297 297 296 297 296 296 296 296 295 295 295 295 294 295 294 294 294 294 294 294 294 294 293 293 293 293 292 292 291 291 291 290 289 289 288 288 288 287 287 286 286 286 285 284 284 284 283 283 283 282 282 282 281 281 281 280 280 280 279 279 279 278 278 279 277 277 278 276 277 277 276 276 277 275 275 276 274 274 275 273 272 275 272 270 273 269 265 270 264 261 267 263 255 265 260 252 263 259 250 262 258 248 261 258 246 259 256 244 256 255 242 254 253 242 252 252 243 250 252 243 249 251 241 248 249 239 247 248 238 245 247 237 244 245 237 243 245 236 243 245 237 243 244 239 242 243 240 242 243 241 241 241 239 241 241 239 241 240 247 237 227 250 241 233 256 246 241 261 252 247 264 255 248 265 254 244 265 255 245 266 256 248 267 259 251 268 261 251 270 264 256 270 266 259 271 267 261 270 268 264 270 269 266 271 270 268 271 271 269 272 272 271 272 273 272 273 274 273 274 274 274 275 276 275 276 277 276 277 277 277 278 278 278 279 279 279 280 281 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 288 289 289 289 289 289 289 290 290 290 291 291 291 292 292 292 292 292 293 293 293 293 294 294 294 294 294 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 298 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 299 298 297 298 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 298 297 297 297 297 297 297 296 296 296 296 295 295 295 295 295 294 294 294 294 294 294 294 294 294 294 293 293 293 293 292 292 292 291 291 290 290 289 289 288 288 287 287 287 286 286 285 285 285 284 283 284 283 282 282 282 281 281 281 280 280 280 279 279 280 278 278 279 277 278 278 277 277 277 276 276 277 275 275 276 274 274 275 273 273 275 272 270 273 269 266 271 266 261 268 262 255 264 260 252 263 259 250 262 258 248 260 258 246 259 257 243 256 255 242 253 253 241 251 252 243 250 252 242 249 251 241 248 250 239 246 248 238 245 247 237 244 245 236 243 245 236 243 245 237 243 244 239 242 243 240 242 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 247 264 255 247 265 254 244 265 255 246 266 256 249 267 259 251 268 261 251 269 264 256 270 266 259 271 267 261 270 268 264 270 269 266 271 270 268 271 271 270 272 272 271 272 273 272 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 285 286 286 286 287 287 287 288 288 288 288 288 289 289 289 289 289 290 290 290 291 291 291 292 292 292 292 292 293 293 293 293 294 294 294 294 294 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 299 299 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 299 298 297 298 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 298 297 297 297 297 297 297 296 296 296 295 295 295 295 294 294 294 294 294 294 294 294 294 293 294 293 293 294 293 293 293 292 292 292 291 291 290 290 289 289 288 288 287 287 286 286 286 285 285 284 284 284 284 283 283 283 281 282 282 280 281 281 279 280 280 278 279 279 277 278 278 277 277 278 276 276 277 275 275 276 274 274 276 274 273 275 272 271 274 270 268 272 267 261 268 263 255 264 260 252 263 258 250 262 258 248 261 258 246 258 257 244 256 255 241 253 253 241 251 252 243 250 253 242 249 251 241 248 250 239 246 248 237 245 247 237 243 245 236 243 245 236 243 245 237 243 244 239 242 243 240 242 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 247 264 254 247 265 254 244 265 255 246 266 256 249 266 259 251 267 261 251 269 264 256 270 266 259 271 267 262 270 268 264 270 269 266 271 270 268 271 271 270 272 272 271 272 273 272 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 281 281 282 282 282 283 283 283 283 284 284 284 285 285 285 285 286 286 286 287 287 287 287 288 288 288 288 289 289 289 289 289 290 290 290 291 291 291 292 292 292 292 292 293 293 293 293 294 294 294 294 294 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 299 298 299 299 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 297 298 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 298 297 297 297 297 296 296 296 296 296 295 295 295 295 294 294 294 294 294 294 294 294 294 293 294 293 293 294 293 293 293 293 292 292 292 291 291 290 290 289 289 288 288 287 286 286 286 285 285 285 284 284 284 283 283 283 282 282 282 280 281 281 279 280 280 278 279 279 277 278 278 277 277 278 276 276 277 275 275 276 275 275 276 274 273 275 273 272 275 271 268 272 267 264 269 264 256 264 260 252 262 258 250 261 257 248 260 257 245 258 256 244 256 255 241 253 253 241 251 252 242 250 253 242 248 252 241 248 250 239 246 248 237 244 247 236 243 245 236 243 245 236 243 245 237 243 244 239 242 243 240 242 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 247 264 254 247 265 254 245 265 255 247 265 256 249 266 259 251 267 261 251 269 263 256 270 266 259 271 267 262 270 268 264 270 269 266 271 270 268 271 271 270 272 272 271 272 273 272 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 281 281 281 282 282 283 283 283 283 284 284 284 284 285 285 285 286 286 286 287 287 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 291 291 292 292 292 292 293 293 293 293 293 294 294 294 294 294 295 295 295 295 296 296 296 296 296 296 297 297 297 298 297 297 298 298 298 299 298 299 299 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 298 298 298 297 297 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 297 297 297 297 296 297 296 296 296 295 295 295 295 294 295 294 294 294 294 293 294 294 293 294 293 293 293 293 292 293 293 292 292 292 291 291 291 290 290 289 288 288 288 286 287 286 285 286 285 284 285 284 283 283 283 282 282 282 281 281 281 279 280 280 278 279 279 277 278 278 277 277 278 276 276 277 275 276 276 275 275 276 274 274 275 273 272 275 271 270 273 268 265 269 265 259 265 261 252 262 258 249 260 256 248 260 257 245 258 256 244 256 255 241 253 253 241 251 252 242 249 253 242 248 252 241 248 250 238 246 248 237 244 247 236 243 245 235 242 245 235 243 245 237 242 244 239 242 243 240 242 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 247 264 254 247 265 254 245 265 255 247 265 256 250 266 258 251 266 260 251 269 263 256 270 266 259 271 267 262 270 268 265 270 269 267 271 270 269 271 271 270 272 272 271 272 273 272 273 273 273 274 274 274 275 275 275 276 276 276 276 277 277 277 278 278 279 279 279 280 280 281 281 281 282 282 283 283 283 283 284 284 284 284 285 285 285 286 286 286 287 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 291 291 292 292 292 293 293 293 293 293 293 294 294 294 295 294 295 295 295 295 296 295 296 297 296 296 297 297 297 298 297 298 298 298 298 299 298 299 299 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 298 298 298 297 297 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 297 297 297 296 296 297 296 296 296 296 295 295 295 294 295 294 294 294 294 293 294 293 293 294 293 293 293 293 292 293 293 292 292 292 291 292 291 290 290 290 288 289 288 287 287 286 285 286 285 284 285 284 283 283 283 282 282 282 281 281 281 280 280 280 278 279 279 278 278 279 277 277 278 276 277 277 276 276 276 275 275 275 274 274 275 273 273 275 272 271 274 270 267 270 266 261 266 262 253 262 258 249 260 256 247 259 256 245 257 256 243 255 255 241 253 253 240 251 252 242 249 253 242 248 252 241 247 250 238 245 248 237 244 247 236 243 245 235 242 245 235 242 244 237 242 244 239 242 243 240 242 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 247 264 254 247 265 255 245 265 255 248 265 256 250 265 258 251 266 259 251 268 262 256 270 266 260 271 267 263 270 268 265 270 269 267 271 270 269 271 271 270 272 272 271 272 273 272 273 274 273 274 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 280 280 281 281 281 282 282 282 283 283 283 284 284 284 284 285 285 285 286 286 286 287 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 291 291 292 292 292 293 293 293 293 293 293 294 294 294 295 294 295 296 295 295 296 295 296 297 296 296 297 297 297 298 297 298 299 298 298 299 298 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 298 298 298 297 297 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 300 299 299 299 299 299 299 298 298 298 297 298 298 297 297 297 297 297 297 296 296 297 296 296 296 296 295 295 295 294 295 294 294 294 294 293 294 293 293 293 293 292 293 293 292 293 292 292 293 292 291 292 291 290 291 290 289 289 288 287 288 287 285 286 286 284 285 285 283 284 284 282 283 283 281 281 282 280 280 281 279 279 280 278 278 279 277 277 278 276 277 277 276 276 276 275 275 275 274 274 275 273 273 275 272 272 274 271 269 271 267 263 267 263 254 262 259 249 260 256 247 258 255 245 257 255 243 255 254 241 252 253 240 251 252 242 249 253 242 248 252 241 247 251 238 245 248 236 243 246 235 242 245 235 242 244 235 242 244 237 242 243 238 242 243 240 242 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 247 264 254 247 265 255 245 265 255 248 264 257 250 265 258 251 266 259 252 267 262 256 270 265 260 271 267 263 271 269 265 270 269 267 271 270 269 271 271 271 272 272 272 273 273 272 273 274 273 274 274 274 274 275 275 275 276 275 276 276 277 277 278 278 278 279 279 280 280 281 281 281 282 282 282 283 283 283 284 284 284 284 285 285 285 286 286 286 287 286 287 287 287 288 288 288 289 289 289 290 290 290 290 291 291 291 291 291 292 292 292 293 292 293 293 293 293 294 294 294 295 294 295 296 295 295 296 295 296 297 296 296 297 297 297 298 297 298 299 298 298 299 298 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 298 298 298 297 297 297 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 300 299 299 299 299 299 299 298 298 298 297 297 298 297 297 297 297 296 297 296 296 297 296 295 296 295 295 295 295 294 294 294 294 294 293 293 294 293 292 293 293 292 293 292 292 293 292 291 293 292 291 292 291 290 291 291 289 290 289 288 288 287 286 287 286 285 285 285 283 284 284 282 283 283 281 282 282 280 280 281 279 279 280 278 278 279 277 278 278 276 277 277 276 276 276 275 275 275 274 274 275 273 274 275 273 273 274 272 270 272 269 265 268 264 254 261 259 249 258 256 247 257 255 245 257 255 243 255 254 240 252 253 240 251 252 241 249 252 242 248 252 241 247 250 238 244 248 236 243 246 235 242 245 234 242 244 235 242 244 237 242 243 238 242 243 239 241 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 256 246 241 261 252 246 264 254 247 265 255 246 265 256 248 264 256 250 265 257 251 266 259 252 267 261 255 270 265 260 271 267 263 271 269 266 270 270 268 271 270 269 271 271 271 272 272 272 273 273 273 273 274 273 274 275 274 274 275 275 275 276 276 276 276 277 277 277 278 278 279 279 280 280 281 281 281 282 282 282 283 283 283 284 284 284 284 285 285 285 286 286 286 287 287 287 287 288 288 288 288 289 289 289 290 290 290 290 291 291 291 291 291 292 292 292 293 292 293 293 293 293 294 294 294 295 294 295 296 295 295 296 295 296 297 296 297 298 297 297 298 297 298 299 298 298 299 298 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 298 297 297 297 297 296 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 297 298 297 297 297 296 296 297 296 296 296 296 295 296 295 295 295 295 294 294 294 293 294 293 293 293 293 292 293 292 292 293 292 292 293 292 291 292 292 291 292 291 290 291 291 289 290 289 288 289 288 287 287 286 285 286 285 284 285 284 282 283 283 281 282 282 280 281 281 279 280 280 278 279 279 277 278 278 276 277 277 276 276 276 275 275 276 274 274 275 274 274 275 273 273 275 272 271 273 270 265 268 265 256 261 259 249 258 255 247 257 254 245 256 255 242 254 254 240 252 253 240 251 252 241 248 252 242 248 252 241 246 250 238 244 248 236 243 246 235 242 245 234 241 244 235 242 244 236 242 243 238 241 242 239 241 242 240 241 241 239 241 241 239 241 240 247 237 227 250 241 234 255 246 241 261 252 246 264 254 247 265 255 246 265 256 248 264 256 250 264 257 251 265 259 252 266 261 255 269 265 260 271 267 263 271 269 266 271 270 268 271 270 269 271 271 271 272 273 272 273 274 273 274 274 274 274 275 274 275 275 275 275 276 276 276 276 277 277 277 278 278 279 279 280 280 281 281 281 282 282 282 283 283 283 284 284 284 284 285 285 285 286 286 286 287 287 287 287 288 288 288 289 289 289 289 290 290 290 290 291 291 291 291 291 292 292 292 293 292 293 293 293 293 294 294 294 295 294 295 296 295 295 296 295 296 297 296 297 298 297 297 298 297 298 299 298 299 299 299 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 297 297 297 297 297 296 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 297 298 297 297 297 296 296 297 296 296 296 296 295 296 295 295 295 294 294 294 294 293 293 293 293 293 292 292 293 292 292 293 292 291 293 292 291 292 291 291 292 291 290 291 291 290 290 290 288 289 288 287 288 287 286 286 285 284 285 284 283 284 283 281 282 282 280 281 281 279 280 280 278 279 279 277 278 278 276 277 277 276 276 276 275 275 276 274 275 275 274 274 275 273 273 275 273 272 273 271 266 268 265 258 262 260 250 258 255 247 256 254 245 256 254 242 254 254 241 252 253 240 250 252 241 248 252 242 248 252 241 246 250 238 244 249 236 242 247 235 241 245 234 241 244 235 242 244 236 241 243 238 241 242 239 241 242 240 241 241 239 241 241 238 241 240 247 237 227 250 241 234 255 246 241 261 252 246 264 254 247 265 255 246 265 256 249 264 256 250 264 256 250 265 258 253 266 260 254 269 264 259 271 267 263 271 269 267 271 270 268 271 270 270 271 271 271 272 273 272 273 274 273 274 275 274 274 275 275 275 276 275 275 276 276 276 276 277 277 277 278 279 279 279 280 280 281 281 281 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 287 288 288 288 289 289 289 289 290 290 290 290 290 291 291 291 291 292 292 292 293 292 293 294 293 294 295 294 294 295 294 295 296 295 296 296 296 296 297 296 297 298 297 298 298 297 298 299 298 299 299 299 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 298 298 298 297 297 297 297 297 296 297 297 297 298 298 298 299 298 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 297 297 297 297 297 296 296 297 296 296 296 295 295 296 295 294 295 294 294 294 293 293 293 293 292 293 292 292 292 292 291 292 291 291 292 291 291 292 291 290 292 291 290 291 290 289 291 290 289 290 288 288 288 287 286 287 286 284 285 284 283 284 283 281 283 282 280 281 281 279 280 280 278 279 279 277 278 278 277 277 277 276 276 276 275 275 276 275 275 275 274 274 275 274 274 275 273 272 273 271 267 268 266 257 261 259 250 257 255 247 256 254 245 255 254 242 254 254 241 252 253 241 250 252 241 248 251 242 248 251 241 245 250 237 243 248 235 242 246 234 241 245 234 241 244 235 242 243 236 241 243 238 241 242 239 241 242 239 241 241 239 241 241 238 241 240 247 237 227 250 241 234 255 246 240 261 251 246 264 254 248 264 255 247 264 256 249 263 256 250 263 256 250 264 258 252 266 259 254 269 264 259 271 267 263 271 269 267 271 270 268 271 270 270 271 271 271 272 273 272 273 274 273 274 275 274 275 275 275 275 276 275 276 276 276 276 277 277 277 278 278 279 279 279 280 280 281 281 281 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 288 289 289 289 289 290 290 290 290 290 291 291 291 292 292 292 292 293 293 293 294 293 294 295 294 294 295 294 295 296 295 296 297 296 296 297 296 297 298 297 298 298 297 298 299 298 299 299 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 298 298 298 297 297 297 297 297 296 297 297 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 297 297 297 296 296 296 296 295 296 295 295 296 295 294 295 294 294 294 293 293 293 293 292 293 292 292 292 291 291 292 291 291 292 291 290 292 291 290 291 290 290 291 290 289 291 289 289 290 288 288 288 287 286 287 286 285 285 285 283 284 283 282 283 282 281 282 281 280 280 280 278 279 279 278 278 278 277 278 277 276 277 276 275 276 276 275 275 275 274 274 275 274 274 275 273 272 273 271 267 268 266 257 260 258 250 256 254 248 255 254 245 255 253 242 254 253 241 252 253 240 251 252 241 248 251 241 247 251 240 245 250 237 243 248 235 241 246 234 241 245 234 241 244 235 242 243 236 241 243 238 241 242 239 241 242 239 241 241 239 241 241 238 241 240 247 237 227 250 241 233 255 246 240 260 251 246 263 254 248 264 255 247 264 255 249 263 255 250 263 255 249 264 257 252 265 259 254 268 264 259 271 267 263 271 269 267 271 270 269 271 270 270 271 271 271 272 273 273 273 274 273 274 275 274 275 276 275 275 276 276 276 276 276 277 277 277 278 278 278 279 279 279 280 280 280 281 281 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 288 288 289 289 289 290 290 290 290 291 291 291 291 292 292 292 292 293 293 293 294 293 294 295 294 294 296 295 295 296 295 296 297 296 296 297 296 297 298 297 298 298 297 298 299 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 298 298 298 297 297 297 296 297 296 297 297 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 295 294 295 294 294 294 293 293 293 292 292 292 292 291 292 291 291 292 291 290 292 290 290 291 290 290 291 290 289 291 290 289 290 289 289 290 288 288 289 287 286 287 286 285 286 285 283 284 283 282 283 282 281 282 281 280 280 280 279 279 279 278 279 278 277 278 277 276 277 277 276 276 276 275 275 275 274 275 275 274 274 274 274 272 272 271 267 268 265 257 259 258 251 255 255 248 255 254 246 255 253 243 253 253 241 251 253 240 250 252 241 248 251 241 247 251 239 245 250 237 242 248 235 241 246 234 240 245 234 241 244 235 241 243 236 241 243 238 241 242 238 241 242 239 241 242 239 241 241 238 241 240 247 237 228 250 241 233 255 246 240 260 251 246 263 254 248 264 255 247 264 255 249 263 255 249 262 254 249 263 256 251 265 258 254 268 263 258 270 267 263 271 269 267 271 270 269 271 270 270 271 271 271 272 273 273 273 274 274 274 275 274 275 276 275 276 276 276 276 277 277 277 277 277 278 278 278 279 279 279 280 280 280 281 281 281 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 288 288 289 289 289 290 290 290 291 291 291 291 291 292 292 292 293 293 293 293 294 293 294 295 294 295 296 295 295 296 295 296 297 296 297 297 296 297 298 297 298 298 297 298 299 298 299 299 298 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 299 299 299 298 298 297 297 297 297 296 297 296 296 297 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 297 296 297 296 296 296 295 295 296 295 295 295 294 294 295 294 294 294 293 293 293 292 292 292 291 291 292 291 291 291 290 290 291 290 290 291 290 290 291 289 289 291 289 289 290 289 288 290 288 288 289 287 286 288 286 285 286 285 284 285 283 282 283 282 281 282 281 280 281 280 279 280 279 278 279 278 277 278 278 276 277 277 276 276 276 275 276 275 275 275 275 275 274 274 274 272 272 270 266 267 265 256 258 257 251 255 255 249 255 254 245 254 253 242 253 253 241 251 253 240 250 252 240 249 251 240 247 251 238 244 249 236 242 248 235 240 246 234 240 245 234 241 244 235 241 243 236 241 242 238 241 242 238 241 242 239 241 242 239 241 241 238 241 240 247 237 228 250 241 233 255 246 240 260 251 245 263 254 248 264 255 247 264 255 249 262 255 249 261 254 249 262 255 251 265 258 255 267 263 258 270 268 263 271 270 268 271 270 269 271 271 270 272 272 272 272 273 273 273 274 274 274 275 275 275 276 275 276 276 276 276 277 277 277 277 277 278 278 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 288 289 289 289 289 290 290 290 291 291 291 292 291 292 292 292 293 293 293 293 294 293 294 295 294 295 296 295 296 296 295 296 297 296 297 297 296 298 298 297 298 298 297 298 298 298 299 299 298 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 299 299 299 299 299 299 299 298 298 298 297 297 297 296 296 296 296 296 297 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 296 296 297 296 296 296 295 295 295 295 294 295 294 294 295 294 293 294 293 293 293 292 292 292 291 291 291 291 290 291 290 290 291 290 290 291 289 289 290 289 289 290 288 288 290 288 288 289 288 287 289 287 286 288 286 285 286 285 284 285 283 282 284 282 281 282 281 280 281 280 279 280 279 278 279 278 277 278 278 277 277 277 276 277 276 276 276 276 275 275 275 275 274 273 273 270 270 269 265 265 264 256 258 257 252 255 255 249 255 254 245 254 253 242 252 253 240 251 253 239 250 252 240 249 251 240 247 251 238 244 249 236 242 248 234 240 246 234 240 245 234 240 243 235 241 243 236 241 242 238 240 242 238 241 242 238 241 242 239 241 241 238 241 240 247 237 227 250 241 233 255 245 240 260 251 245 263 253 248 264 254 248 263 255 249 262 254 249 261 253 248 262 254 250 264 258 255 267 263 258 270 267 263 271 270 268 271 270 269 271 271 270 272 272 272 272 273 273 273 274 274 274 275 275 275 276 275 276 276 276 276 277 277 277 277 277 278 278 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 291 292 292 292 293 292 293 293 293 294 294 294 294 295 294 295 296 295 296 296 295 296 297 296 297 297 296 298 297 297 298 298 297 298 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 299 299 300 299 299 299 299 299 299 299 298 298 298 297 297 297 296 296 296 296 296 296 297 298 297 298 299 298 299 299 299 299 299 299 298 299 299 298 298 298 297 298 298 297 297 297 296 296 297 296 296 296 295 295 295 295 294 295 294 294 294 294 293 294 293 293 293 292 292 292 291 291 291 290 290 290 290 290 290 289 289 290 289 289 290 288 288 290 288 288 290 288 287 289 287 287 289 287 286 288 286 285 286 285 284 285 284 283 284 283 281 283 281 280 281 280 279 280 279 278 279 278 277 279 278 277 278 277 276 277 276 276 276 276 276 275 274 275 273 272 272 269 269 268 261 262 261 256 257 257 252 255 255 249 255 254 245 253 253 243 252 253 240 251 253 239 249 251 240 248 251 240 246 250 238 244 249 236 241 247 234 240 246 234 240 245 234 240 243 235 241 243 237 241 242 238 240 242 238 241 241 238 241 242 239 241 241 238 241 240 247 237 228 250 241 233 255 245 239 260 250 245 263 253 248 263 254 248 263 255 249 261 254 249 260 252 248 261 254 250 264 258 255 267 262 258 270 267 262 271 270 268 271 271 270 271 271 271 272 272 272 272 273 273 273 274 274 274 275 275 275 276 276 276 277 276 276 277 277 277 278 278 278 278 278 279 279 279 280 280 280 281 282 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 291 292 292 292 293 292 293 293 293 294 294 294 294 295 294 295 295 295 296 296 295 297 296 296 297 297 296 298 297 297 298 298 297 298 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 300 299 299 299 299 299 299 298 298 298 297 297 297 296 296 296 296 296 296 296 297 298 297 298 299 298 298 299 299 299 299 299 298 299 299 298 298 298 297 298 298 297 297 297 296 296 296 296 296 296 295 295 295 294 294 295 294 293 294 293 293 293 293 292 292 292 292 291 291 291 291 290 290 290 290 290 290 289 289 290 288 288 290 288 288 289 287 287 289 287 287 289 287 286 288 286 286 287 285 285 286 285 284 285 284 283 284 283 282 283 282 280 282 280 279 281 279 278 280 279 278 279 278 277 278 277 277 277 276 276 276 275 275 275 274 274 272 271 271 267 267 266 259 260 260 255 257 257 252 255 255 250 254 254 246 253 253 243 252 253 239 250 253 239 249 251 240 248 251 240 246 250 237 243 248 236 241 247 235 240 246 234 239 245 234 240 243 235 241 243 237 240 242 238 240 242 238 241 241 238 241 241 239 241 241 238 241 240 247 237 228 250 241 233 255 245 239 260 250 245 262 253 248 263 254 248 263 254 249 261 253 248 260 252 247 260 253 249 263 257 254 266 261 257 270 267 262 271 270 268 271 271 270 271 271 271 272 272 272 272 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 277 277 277 278 278 278 279 278 279 280 279 280 281 280 281 282 281 282 283 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 292 292 292 292 293 292 293 293 293 294 294 294 295 295 295 295 295 295 296 296 295 297 296 296 297 297 296 298 297 297 298 298 297 298 298 298 299 299 299 299 299 299 299 300 299 300 300 300 300 300 299 300 300 299 299 299 299 299 299 299 299 300 299 299 299 299 299 299 298 298 298 297 297 297 296 296 296 296 296 296 296 297 298 297 298 299 298 298 299 299 299 299 299 298 299 299 298 298 298 297 298 298 297 297 297 296 296 296 296 296 296 295 295 295 294 294 294 294 293 294 293 293 293 292 292 292 292 292 291 291 291 290 290 290 290 289 289 290 289 289 289 288 288 289 288 288 289 287 287 289 287 287 288 286 286 288 286 285 287 285 284 286 284 284 285 283 283 284 283 282 283 282 281 282 280 279 281 279 279 280 279 278 279 278 277 278 277 277 277 276 276 276 275 275 273 272 272 270 269 269 264 264 264 258 259 259 255 257 257 252 255 255 250 254 254 246 253 253 243 252 253 240 251 253 238 249 251 239 247 250 240 245 250 237 243 248 236 241 247 235 240 246 234 239 244 234 240 243 235 241 243 237 240 242 238 240 242 238 240 241 238 241 241 239 241 241 238 241 240 247 237 228 250 241 233 254 245 239 259 250 244 262 253 248 263 254 248 262 254 249 261 252 248 259 251 247 260 252 249 263 257 254 266 261 257 269 266 262 271 270 268 271 271 270 271 271 271 272 272 272 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 277 277 278 278 278 279 279 279 280 279 280 281 281 281 282 282 282 283 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 292 292 292 293 293 293 293 293 293 294 294 294 295 295 295 295 295 295 296 296 295 297 296 296 297 297 296 298 297 297 298 298 297 298 298 298 299 299 299 299 299 299 299 300 299 300 300 299 300 300 299 300 299 299 299 299 299 299 299 299 299 300 299 299 299 299 299 299 298 298 298 297 297 297 296 296 296 296 296 297 296 297 298 297 298 299 298 298 299 299 299 299 299 298 299 299 298 299 298 297 298 297 297 297 297 296 296 296 296 296 296 295 295 295 294 294 294 293 293 293 293 292 293 292 292 292 292 291 291 291 291 290 290 290 290 289 289 289 288 288 289 288 288 289 287 287 289 287 287 288 286 286 288 286 286 287 285 285 286 284 284 286 284 283 285 283 283 284 282 282 283 281 281 282 280 280 281 279 279 280 279 278 279 278 278 278 277 277 277 276 276 275 274 274 271 270 271 266 266 266 261 261 261 257 258 258 254 256 256 252 255 255 250 254 254 247 253 253 243 252 253 240 250 253 238 248 252 239 246 250 240 245 250 238 243 248 236 241 247 235 240 246 234 239 244 234 240 243 235 241 243 237 240 242 238 240 242 238 240 241 238 241 241 238 241 240 238 241 240 247 237 228 250 241 233 254 245 239 259 249 244 262 252 248 263 253 248 262 253 249 260 252 247 259 251 246 259 252 248 263 257 254 266 261 257 269 266 262 271 270 267 271 271 270 271 272 271 272 272 272 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 278 278 278 279 279 279 280 280 280 281 281 281 282 282 282 283 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 292 292 292 293 293 293 293 293 293 294 294 294 295 295 295 295 295 295 296 296 296 297 296 296 297 297 296 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 300 299 299 300 299 299 300 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 296 297 296 297 298 297 298 299 298 299 299 299 299 299 299 298 299 299 298 299 298 298 298 297 297 297 297 296 297 296 296 296 296 295 295 295 294 294 294 293 293 293 293 292 292 292 292 292 292 291 291 291 291 290 290 290 290 289 289 289 288 288 289 287 287 288 287 287 288 286 286 288 286 286 287 285 285 287 285 284 286 284 284 285 283 283 284 283 282 283 282 281 283 281 280 282 280 280 281 279 279 280 279 278 279 278 278 278 277 277 276 275 275 273 272 272 269 268 269 263 263 263 260 260 260 256 258 258 254 256 256 252 255 255 250 254 254 247 253 253 244 252 253 240 250 253 238 247 251 239 246 249 239 245 249 238 243 248 236 241 247 235 240 246 234 239 244 234 240 243 235 241 243 237 240 242 238 240 242 238 240 241 238 241 241 238 241 240 238 241 240 247 237 228 250 240 233 254 245 238 259 249 243 261 252 247 262 253 248 262 253 248 260 251 247 258 250 246 259 251 248 263 256 254 266 261 257 269 266 262 271 270 267 271 271 270 271 272 271 272 272 272 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 278 279 279 279 280 280 280 281 281 281 281 282 282 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 290 291 291 291 292 292 292 293 293 293 293 293 294 294 294 294 295 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 300 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 296 297 296 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 297 298 297 296 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 292 292 291 291 291 291 291 291 290 290 290 290 289 289 289 288 288 288 287 287 288 287 287 288 286 286 287 285 285 287 285 285 286 284 284 285 283 283 285 283 283 284 282 282 283 281 281 282 281 280 282 280 280 281 279 279 280 278 278 278 277 277 277 276 276 274 274 274 271 270 271 266 265 266 261 261 262 258 259 260 255 257 257 253 255 255 252 255 255 250 253 254 247 253 253 244 252 253 240 249 253 238 248 252 238 245 249 239 244 249 238 243 248 236 241 247 235 240 246 234 239 244 235 240 243 236 241 243 237 240 243 237 240 242 238 240 241 238 241 241 238 241 240 238 241 240 247 237 228 250 240 233 254 244 238 258 249 243 261 252 247 262 253 248 261 252 248 260 251 246 258 249 245 259 251 247 262 255 252 266 261 257 269 265 261 271 270 267 271 271 270 271 272 271 272 272 272 273 273 273 273 274 274 274 275 275 275 277 276 276 278 277 277 278 278 278 279 279 279 280 279 280 280 280 281 281 281 281 282 282 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 290 291 291 291 292 292 292 293 293 293 293 293 294 294 294 294 295 295 295 295 295 295 296 295 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 296 297 296 295 296 296 295 296 296 296 297 298 297 298 299 298 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 297 298 297 296 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 292 292 291 291 291 290 291 290 290 290 290 290 289 289 289 288 288 288 287 287 288 287 286 287 286 286 287 285 285 286 284 284 286 284 284 285 283 283 284 283 282 284 282 282 283 281 281 282 281 280 281 280 280 280 279 279 279 278 278 277 276 276 275 274 274 272 272 272 268 267 268 263 263 264 259 260 260 257 258 258 256 256 257 254 256 255 252 254 254 250 253 254 247 253 253 244 252 254 240 249 253 238 247 252 238 244 249 239 244 249 237 242 248 236 241 247 235 240 246 234 240 244 235 240 243 236 241 243 237 239 243 237 239 242 238 240 241 238 240 241 238 241 240 238 241 240 247 237 228 250 240 233 254 244 238 258 248 242 261 251 247 261 252 248 261 252 248 259 250 246 258 249 244 259 251 247 261 255 251 266 261 257 269 265 261 271 270 267 271 271 270 271 272 271 272 273 272 273 273 273 274 274 274 274 275 275 275 277 276 276 278 277 277 278 278 278 279 279 279 280 279 280 281 280 281 281 281 281 282 282 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 291 292 292 292 293 293 293 294 293 294 294 294 294 295 295 295 295 295 295 296 295 296 296 296 296 297 296 296 297 297 297 298 297 298 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 296 296 296 295 296 296 295 296 296 296 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 297 298 297 297 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 292 292 291 291 291 290 290 290 290 290 289 289 289 289 289 288 288 288 287 287 287 286 286 287 285 286 286 285 285 286 284 284 285 284 284 285 283 283 284 283 282 283 282 282 282 281 281 282 280 280 281 280 280 280 279 279 278 277 277 275 275 275 272 272 272 269 269 269 264 264 265 261 261 263 258 258 259 257 257 258 256 256 257 254 255 255 251 254 254 250 253 254 247 253 254 244 251 254 240 248 253 238 247 252 238 244 249 238 244 249 237 242 248 236 241 247 235 240 245 234 240 244 235 240 243 236 241 243 237 239 243 237 239 241 238 240 241 238 240 241 238 241 240 238 241 240 247 237 228 250 240 233 254 244 237 258 248 242 260 251 246 261 252 248 260 251 247 259 249 245 258 248 244 258 250 246 261 254 251 266 260 257 269 265 261 270 269 267 271 271 270 271 272 271 272 273 272 273 274 273 274 274 274 274 275 275 275 277 276 276 278 277 277 279 278 278 279 279 279 280 280 280 281 280 281 281 281 281 282 282 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 291 292 292 292 293 293 293 294 293 294 294 294 294 295 295 295 296 295 295 296 295 295 296 296 296 297 296 296 297 297 297 298 297 298 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 296 296 296 295 296 296 295 296 296 296 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 299 298 298 298 298 297 298 297 297 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 291 291 290 290 290 290 290 289 289 289 288 288 288 288 288 287 287 287 286 286 287 285 285 286 284 285 286 284 284 285 284 284 284 283 283 283 283 282 282 282 281 282 281 280 281 280 280 281 279 279 279 278 278 276 276 276 272 273 273 268 269 269 265 266 266 263 262 264 260 259 261 258 257 259 257 256 257 256 256 257 254 256 256 251 254 255 249 253 255 247 252 254 244 251 254 240 248 253 238 245 252 238 243 249 238 243 248 237 241 247 236 240 246 235 240 245 234 240 244 235 240 243 236 240 243 237 239 242 237 239 241 237 240 241 238 240 241 238 241 240 238 241 240 247 237 228 250 240 232 254 244 237 258 248 241 260 250 246 261 251 248 260 251 247 258 249 244 257 248 243 258 250 246 261 254 251 266 260 256 269 264 261 270 269 267 271 271 270 271 272 271 272 273 272 273 274 273 274 275 274 274 276 275 275 277 276 276 278 277 277 279 278 278 279 279 279 280 280 280 281 280 280 281 281 281 282 282 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 289 288 289 290 289 290 291 290 291 292 291 291 292 292 292 293 293 293 294 294 293 295 294 294 295 295 295 296 295 295 296 295 295 296 296 296 296 296 296 297 297 297 298 297 298 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 298 299 299 298 299 299 299 299 299 299 299 299 298 299 299 298 299 298 298 298 297 296 296 296 295 296 296 295 296 296 296 297 298 297 298 299 298 299 299 299 299 299 299 299 299 299 298 299 298 298 299 298 297 298 297 297 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 291 290 290 290 290 290 289 289 289 289 288 288 288 287 288 287 286 287 286 286 287 285 285 286 285 285 286 285 284 285 284 284 284 284 283 283 282 281 281 281 280 281 280 279 280 279 279 279 279 278 278 277 277 275 275 275 269 270 271 266 266 267 264 264 265 261 261 263 259 258 260 258 257 258 256 255 257 255 256 257 253 255 257 251 253 256 250 253 256 247 252 255 243 249 254 240 247 253 238 244 251 238 242 249 237 242 248 236 241 247 235 240 246 235 239 245 234 240 244 235 240 243 236 240 243 237 239 242 237 239 241 237 239 241 238 240 241 238 241 240 239 241 240 247 237 228 250 240 232 253 244 237 257 247 241 260 250 245 260 251 247 259 250 246 258 248 244 257 248 243 258 250 246 261 255 251 265 259 255 269 264 261 270 269 267 271 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 275 277 276 276 278 277 277 279 278 278 279 279 279 280 280 280 280 280 280 281 281 281 282 282 282 283 282 283 284 283 284 285 284 285 285 285 286 286 286 287 288 287 288 289 289 289 290 290 290 291 291 291 292 292 291 293 292 292 293 293 293 294 294 293 295 294 294 295 295 294 296 295 295 296 296 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 298 298 298 298 299 299 298 299 299 298 299 299 298 299 299 298 299 299 298 299 299 299 299 299 298 299 299 298 298 298 298 298 297 296 296 296 295 295 295 295 296 296 296 297 297 298 299 298 299 299 299 299 299 299 299 299 299 298 299 299 298 298 299 298 297 298 297 297 297 296 296 297 295 295 296 295 294 294 293 293 293 292 292 292 291 291 291 291 291 290 290 290 290 290 289 289 289 289 288 288 288 287 288 287 286 287 286 286 287 286 285 287 286 285 286 285 284 285 285 283 284 283 282 281 280 279 279 278 277 279 278 277 279 278 277 278 277 277 275 275 275 271 272 273 267 268 269 264 264 266 262 262 263 260 260 262 259 258 260 258 256 258 257 256 258 255 256 258 253 255 258 251 253 257 249 252 256 246 250 255 243 248 254 240 246 253 238 244 251 237 242 249 236 242 249 235 241 247 235 239 246 235 239 245 234 239 244 235 240 243 236 240 243 237 239 242 237 239 241 237 239 241 238 240 241 238 240 240 238 241 239 247 237 228 250 240 232 253 243 236 257 247 240 259 250 245 260 250 247 259 249 246 258 248 243 257 248 243 258 250 246 261 255 250 266 260 256 269 264 261 270 269 267 270 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 275 277 276 276 278 277 277 279 278 278 279 279 279 280 280 280 280 280 280 281 281 281 282 282 282 283 282 283 284 283 284 285 284 285 285 285 286 287 286 287 288 287 288 289 289 289 290 290 290 291 291 291 292 292 291 293 292 292 294 293 293 294 294 293 295 294 294 295 295 294 295 295 295 296 296 295 296 296 296 296 296 296 297 297 297 297 297 298 298 297 298 298 298 298 298 298 298 299 298 298 298 299 298 298 299 298 298 299 298 299 299 298 299 299 298 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 296 297 297 298 299 298 299 299 299 299 299 298 299 299 298 298 299 299 298 298 298 298 298 298 297 297 297 296 296 297 296 296 296 295 295 294 293 293 293 292 292 292 291 291 291 291 290 290 290 290 290 290 289 289 289 289 288 288 288 287 288 287 287 288 287 286 287 287 286 287 286 285 286 285 284 284 283 282 281 280 279 278 277 276 276 276 274 275 275 273 276 275 274 275 275 274 273 273 273 269 270 270 266 267 268 263 263 265 261 261 263 260 259 261 259 258 260 259 256 259 257 256 259 255 255 259 252 253 258 251 252 257 248 251 256 245 249 255 242 247 253 239 244 252 238 243 251 237 242 249 236 242 248 235 240 247 235 239 246 235 239 245 234 239 244 236 240 243 236 240 242 237 239 242 237 239 241 237 239 241 237 240 241 238 240 240 238 241 239 247 237 228 250 240 232 253 243 236 256 246 240 259 249 244 259 250 247 259 249 245 257 247 243 257 248 243 258 250 246 261 255 251 265 260 256 269 265 261 270 269 267 270 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 275 277 276 276 278 277 277 279 278 278 279 279 279 280 280 279 280 280 280 281 281 281 282 282 282 283 282 283 284 283 284 284 284 285 285 285 286 287 286 287 288 287 288 289 289 289 290 290 290 291 291 291 292 292 292 293 292 292 294 293 293 294 294 293 295 294 294 295 295 294 295 295 295 296 296 295 296 296 296 296 296 296 297 297 297 297 297 297 297 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 299 298 299 299 298 299 299 298 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 296 297 297 298 299 298 298 299 298 299 299 298 299 299 298 298 298 298 298 298 298 298 298 298 297 297 298 296 297 297 296 296 296 295 295 295 293 294 293 292 292 292 291 291 291 291 291 290 290 290 290 290 289 289 289 289 288 288 288 288 288 287 287 288 287 287 288 287 286 286 286 285 283 284 282 280 280 278 277 277 276 274 275 273 273 273 271 273 273 271 274 274 272 273 274 272 271 272 271 268 269 269 265 265 266 262 262 264 260 260 262 259 258 261 259 257 260 258 256 260 257 256 260 254 254 259 252 252 258 249 251 257 247 250 256 244 248 255 242 245 253 239 244 252 238 242 251 237 241 249 235 241 248 235 240 247 235 239 245 235 239 246 234 239 244 236 240 243 236 240 242 237 239 242 237 239 241 237 239 241 237 240 240 238 240 240 238 241 239 247 237 228 250 240 232 253 243 236 256 246 239 258 249 243 259 249 246 258 248 245 257 247 242 257 247 243 259 251 246 262 255 251 265 259 255 269 265 262 270 269 267 270 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 276 278 277 277 279 278 278 279 279 279 280 279 279 280 280 280 281 281 281 282 281 282 282 282 283 283 283 284 284 284 285 285 285 286 287 286 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 291 293 293 292 294 293 293 294 294 293 295 294 294 295 295 294 295 295 295 296 296 295 296 296 296 296 296 296 297 296 297 297 297 297 297 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 299 299 298 299 299 298 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 296 297 297 298 299 298 298 299 298 299 299 298 298 299 298 298 298 298 298 298 298 297 298 298 297 297 298 297 297 297 296 296 296 295 295 295 293 294 293 292 293 292 291 291 291 291 291 290 290 290 290 290 290 289 289 289 288 289 288 288 289 288 287 288 287 287 287 287 286 284 284 283 280 281 279 277 277 276 274 274 273 271 272 271 270 271 270 271 272 270 272 273 270 272 273 271 270 271 270 266 268 268 263 264 265 261 261 263 260 259 262 259 258 261 259 257 260 258 256 260 256 255 260 254 253 259 252 252 259 249 250 257 246 248 256 244 246 255 241 244 253 239 243 252 238 242 250 237 240 249 235 240 248 234 239 247 235 239 245 235 239 245 234 239 244 236 240 242 237 239 242 237 239 242 237 239 241 237 239 241 237 240 240 238 240 240 238 241 239 247 237 228 250 240 232 253 243 235 256 245 238 258 248 243 259 249 245 258 248 244 257 246 242 257 248 243 259 251 247 262 255 251 265 260 256 269 266 262 270 269 267 270 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 276 278 277 277 279 278 278 279 279 279 280 279 279 280 280 280 281 281 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 287 286 286 288 288 288 289 289 289 290 290 290 291 291 291 292 292 291 293 293 292 294 293 293 294 294 293 295 294 294 295 295 294 295 295 295 295 296 295 296 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 299 298 299 299 298 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 297 297 297 298 298 298 298 299 298 299 299 298 298 298 298 298 298 298 298 298 298 297 298 298 297 297 298 297 297 297 296 296 296 295 296 295 294 294 294 293 293 292 292 292 291 291 291 291 291 290 290 290 290 289 290 290 289 290 289 288 289 288 288 288 288 287 286 286 285 282 283 282 278 279 277 274 275 274 271 272 271 269 270 269 269 270 269 270 271 269 271 272 269 271 272 269 269 270 268 265 267 267 262 263 265 260 260 263 259 258 261 259 258 261 258 257 261 258 257 260 256 254 260 253 252 259 251 251 258 248 249 257 246 247 256 243 245 254 241 243 253 239 242 252 239 241 250 237 240 249 235 239 248 234 238 247 235 238 245 235 239 245 235 239 243 236 239 242 237 239 242 237 239 241 237 239 241 237 239 240 237 240 240 238 240 240 239 241 239 247 237 228 250 240 232 253 243 235 255 245 238 257 248 242 258 248 245 257 247 244 257 246 242 257 248 243 259 251 247 262 256 251 266 261 256 269 266 262 270 269 267 270 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 279 279 279 279 279 280 280 280 281 281 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 285 287 286 286 288 288 288 289 289 289 290 290 290 291 291 291 292 292 291 293 293 292 294 293 293 294 294 293 295 294 294 295 295 294 295 295 295 295 296 295 296 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 298 298 298 297 298 298 298 298 298 298 298 299 298 299 299 298 299 299 298 299 299 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 297 297 297 298 298 298 298 299 298 298 298 298 298 298 298 298 298 298 298 298 298 297 298 298 297 297 298 297 297 297 296 297 297 295 296 296 294 295 294 293 294 293 292 292 292 292 292 291 292 292 291 291 291 290 291 290 290 290 290 289 289 288 288 287 287 287 284 285 284 280 281 281 276 278 277 273 274 273 269 271 270 268 268 268 269 269 269 269 270 268 269 270 267 269 270 267 267 268 267 264 265 266 262 262 264 260 259 262 259 258 261 260 258 261 258 258 261 257 256 260 255 254 259 252 251 258 251 250 258 248 248 257 245 245 256 243 244 254 241 243 253 239 242 251 238 241 250 237 240 249 234 239 248 234 238 246 235 238 245 235 238 244 235 239 243 236 239 242 237 239 242 236 238 241 237 239 241 237 239 240 237 240 240 238 240 240 239 241 239 247 237 228 250 240 232 253 242 235 255 245 237 257 247 241 258 248 244 257 247 243 256 246 242 257 248 243 259 252 247 262 256 251 266 262 257 269 267 263 270 269 267 270 271 270 271 272 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 278 279 279 279 279 280 280 280 281 281 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 285 287 286 286 288 288 288 289 289 289 290 290 290 291 291 290 292 292 291 293 293 292 294 293 293 294 294 293 294 294 294 295 295 294 295 295 295 295 296 295 296 296 296 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 297 298 298 297 298 297 297 298 297 298 298 297 298 298 298 298 299 298 299 299 298 299 299 298 298 299 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 297 297 297 298 298 298 298 299 298 298 298 298 298 298 298 298 298 298 298 298 298 297 298 298 297 297 298 297 297 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 293 293 292 293 293 292 292 292 291 292 291 291 290 290 289 288 288 288 285 286 286 282 284 284 279 281 281 276 277 277 272 273 273 269 270 270 268 268 269 268 267 267 268 267 267 268 268 266 268 268 266 266 267 266 263 264 265 261 261 264 260 259 262 260 259 262 260 259 262 258 258 261 256 256 260 255 254 260 253 251 259 250 249 258 247 247 256 245 245 255 242 243 254 240 242 252 239 241 251 238 241 250 236 240 249 234 238 248 234 238 246 235 238 245 234 238 243 235 238 242 236 239 241 237 239 241 236 238 241 237 239 240 238 239 240 237 240 240 238 240 240 239 241 239 247 237 228 250 240 232 252 242 234 255 244 237 256 247 240 257 247 243 257 246 243 256 246 242 257 248 243 260 252 248 262 256 251 266 262 257 269 267 263 270 270 268 270 271 270 271 271 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 278 279 279 279 279 280 280 280 281 281 281 281 282 282 282 282 283 283 283 284 284 284 285 286 285 285 287 287 286 288 288 288 289 289 289 290 290 290 291 291 290 292 292 291 293 293 292 293 293 292 294 294 293 294 294 294 295 295 294 295 295 295 295 295 295 295 296 295 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 297 298 298 298 298 299 298 299 299 298 299 299 298 298 298 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 297 297 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 297 298 298 297 298 298 297 297 297 297 297 297 297 297 297 296 296 296 295 295 295 295 295 294 294 294 293 294 294 293 294 293 293 293 293 292 292 291 291 291 290 290 289 289 288 285 285 286 282 283 283 279 280 280 275 277 277 271 273 273 268 269 270 268 267 269 267 266 267 267 266 266 267 266 265 266 266 265 265 265 265 263 263 265 261 260 264 260 259 263 260 259 263 259 259 262 258 258 261 256 256 260 255 253 259 252 251 258 250 248 257 247 246 256 244 244 255 242 242 253 240 241 252 239 241 251 237 240 250 235 239 249 234 238 248 234 237 246 235 238 245 234 237 243 235 238 241 236 238 241 236 238 241 236 238 241 237 239 240 237 239 240 237 240 240 238 240 240 239 241 239 247 237 228 250 240 232 252 242 234 254 244 236 256 246 239 257 247 242 256 246 242 256 246 242 257 248 244 260 252 248 263 257 252 267 262 257 269 268 263 270 270 268 270 271 270 271 271 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 278 279 279 279 280 280 280 280 281 281 281 282 282 282 282 282 283 283 283 284 284 284 284 286 285 285 287 287 286 288 288 287 289 289 288 290 290 289 291 291 290 292 292 291 293 292 292 293 293 292 294 294 293 294 294 294 295 295 294 295 295 295 295 295 295 295 296 295 296 296 296 296 296 296 296 296 297 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 299 299 298 299 299 298 298 298 298 298 298 297 297 297 296 296 296 295 295 295 295 296 296 297 297 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 295 295 295 295 295 295 294 295 294 294 294 294 294 292 291 292 292 291 292 291 290 290 288 288 288 284 284 285 281 282 282 277 279 279 274 276 276 270 272 273 267 268 270 266 266 268 266 266 266 266 266 265 266 265 264 265 265 264 264 264 265 262 262 264 261 260 264 261 260 263 260 259 263 259 259 263 257 258 262 255 255 260 254 253 259 252 250 258 249 247 257 247 245 256 244 243 254 241 241 253 240 241 252 238 240 251 236 239 250 235 238 249 233 237 248 234 237 246 234 238 245 234 237 242 235 238 241 236 238 240 236 238 241 236 238 240 237 239 240 237 239 240 237 240 240 238 240 240 239 241 239 247 237 228 250 240 231 252 242 234 254 244 235 256 246 238 256 247 242 256 246 242 256 246 241 257 248 244 260 253 248 263 257 252 266 262 257 269 268 263 270 270 268 270 271 270 271 271 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 278 279 280 279 280 280 280 280 281 281 281 282 282 282 282 283 283 283 283 284 284 284 284 286 285 285 287 286 286 288 288 287 289 289 288 290 290 289 291 291 290 292 292 291 293 292 292 293 293 292 294 294 293 294 294 294 294 295 294 295 295 294 295 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 297 298 298 298 299 299 298 299 299 298 298 298 298 298 298 297 297 297 296 296 295 295 295 295 295 296 295 297 297 297 298 298 297 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 295 295 296 295 295 295 295 295 294 293 294 294 293 293 292 291 291 289 288 289 285 285 286 281 282 283 278 279 280 276 277 277 272 274 275 268 270 272 266 266 269 266 265 268 266 265 266 265 265 264 266 265 264 265 265 264 264 264 265 262 263 266 261 261 265 261 260 264 260 260 263 258 259 263 257 257 262 256 255 260 254 252 259 252 249 258 249 246 257 246 244 256 243 242 254 241 241 253 240 240 252 238 240 251 236 238 250 234 238 249 234 237 248 234 237 245 234 237 244 234 237 242 234 237 241 235 237 240 236 238 241 236 238 240 237 239 240 238 239 240 238 240 239 238 240 239 239 241 239 247 237 228 250 240 231 252 242 234 254 243 235 255 245 237 256 246 241 255 246 241 256 246 241 258 249 244 260 253 248 263 257 252 266 262 258 269 268 263 270 270 268 270 271 269 271 271 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 279 279 280 280 280 280 280 281 281 281 281 282 282 282 282 283 283 283 283 283 284 284 284 286 285 285 287 286 286 288 287 287 289 288 288 290 290 289 291 290 290 292 291 291 293 292 292 293 293 292 294 294 293 294 294 294 294 295 294 295 295 294 295 295 295 295 295 295 295 296 296 296 296 296 296 296 296 296 296 296 296 297 297 296 297 297 296 297 296 297 297 296 297 297 297 297 298 297 298 298 298 298 299 298 299 299 298 298 298 298 298 298 297 297 297 296 296 295 295 295 295 296 296 295 297 297 296 298 298 297 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 296 295 295 295 294 293 294 292 292 292 289 289 289 284 284 285 281 281 283 278 279 281 276 277 278 273 275 276 270 272 274 266 267 270 265 265 268 264 264 267 264 264 265 265 265 264 265 265 264 265 265 265 264 265 267 263 263 267 262 261 266 261 261 265 259 260 263 258 258 263 256 256 262 255 254 260 253 251 258 251 249 258 249 246 257 246 244 255 243 242 254 241 240 253 239 240 251 238 239 250 235 238 250 234 237 249 233 237 248 234 237 245 234 237 244 234 237 241 234 236 239 235 237 240 236 238 240 236 238 240 237 239 240 238 239 239 238 239 239 238 240 239 239 241 239 247 237 228 250 240 231 252 242 233 253 243 234 255 245 237 255 246 240 255 245 241 256 246 241 258 249 244 260 253 248 263 258 252 266 263 258 269 268 263 270 270 267 270 271 269 271 271 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 278 278 279 279 279 280 280 280 280 280 281 281 281 281 282 282 282 282 283 283 283 283 283 284 284 284 285 285 285 287 286 286 288 287 287 289 288 288 290 289 289 291 290 290 292 291 291 292 292 292 293 293 292 294 293 293 294 294 294 294 294 294 294 295 294 295 295 295 295 295 295 295 296 296 295 296 296 296 296 296 296 296 296 296 296 296 296 297 296 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 299 298 298 299 298 298 298 298 298 298 297 297 296 296 296 295 295 295 295 296 296 295 297 297 296 298 298 297 298 298 298 298 298 298 297 298 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 296 297 297 296 296 295 295 295 293 292 293 288 288 289 283 284 285 281 281 283 278 279 281 276 277 280 275 276 278 272 274 275 268 271 273 265 266 269 264 264 268 264 264 267 264 264 265 264 264 265 265 265 265 264 266 267 264 265 268 263 263 268 262 261 267 260 261 265 258 259 263 257 258 263 256 255 261 254 253 260 252 250 258 251 248 257 248 245 256 245 243 255 242 241 253 240 240 252 239 239 251 237 239 250 235 237 250 234 237 249 233 237 248 234 237 245 234 237 243 234 237 241 233 236 239 235 237 240 236 238 240 236 238 240 237 239 239 238 239 239 238 240 239 238 240 239 239 241 239 247 237 228 250 240 231 252 242 233 253 243 234 254 244 236 255 245 239 255 245 240 255 246 241 258 249 244 260 253 248 263 258 252 265 263 258 269 268 263 270 270 267 270 271 269 271 271 270 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 280 280 280 280 281 281 281 281 281 282 282 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 289 288 288 290 289 289 290 290 290 291 291 291 292 292 292 293 293 292 293 293 293 294 294 293 294 294 294 294 295 294 295 295 295 295 295 295 295 295 295 295 296 296 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 299 298 298 299 298 298 298 298 298 298 297 297 296 297 296 295 296 295 294 296 295 295 297 297 296 298 297 297 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 295 295 296 293 293 294 288 288 290 283 284 286 280 281 283 278 280 282 277 278 281 276 277 280 274 276 278 272 274 276 268 271 273 265 266 270 264 265 268 264 265 267 265 265 266 266 266 266 266 267 267 265 266 268 264 264 269 263 263 269 261 261 267 259 260 265 257 259 264 257 257 263 255 254 261 254 252 260 252 249 258 250 247 257 247 244 256 244 242 255 241 240 253 239 239 252 238 239 251 237 238 250 235 237 250 234 237 249 233 237 247 234 237 244 234 236 242 234 236 240 233 236 239 235 237 240 236 237 240 236 238 239 237 239 239 238 239 239 238 240 239 238 240 239 239 241 239 247 237 228 250 240 231 252 242 233 253 242 233 254 244 235 254 245 238 254 245 240 255 246 241 258 249 244 261 253 248 263 258 252 266 264 258 268 267 262 270 269 266 270 270 269 271 272 270 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 280 280 280 280 280 280 281 281 281 281 282 282 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 291 293 293 292 293 293 293 293 294 293 294 294 294 294 294 294 294 295 294 295 295 295 295 295 295 295 295 295 295 296 296 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 297 297 297 297 298 297 298 298 297 298 299 298 298 299 298 298 298 298 298 298 297 297 297 297 296 295 296 295 294 296 295 295 297 296 296 298 297 297 298 298 297 298 298 298 297 297 297 297 297 297 297 297 297 297 296 296 297 297 297 297 297 297 298 298 298 297 297 298 296 296 297 294 295 296 292 292 294 287 288 290 283 284 287 280 282 284 279 280 283 278 279 282 277 278 282 276 277 281 275 276 280 273 275 277 271 273 275 269 271 273 268 269 271 266 269 270 266 268 269 267 268 268 267 268 269 266 266 270 264 264 270 263 262 269 260 261 268 258 259 265 256 257 263 256 256 262 254 253 261 253 251 260 251 248 258 249 246 257 246 244 256 244 241 254 241 239 253 239 239 252 238 238 251 236 237 250 235 237 250 234 237 249 233 236 247 233 236 244 234 236 242 233 236 239 233 235 238 236 237 240 236 237 239 236 238 239 237 239 239 238 239 239 238 240 239 238 240 239 239 241 239 247 237 228 250 240 231 252 242 233 253 242 233 254 244 234 254 245 238 254 245 239 255 246 241 258 249 244 260 253 248 263 258 253 266 264 258 268 267 262 270 269 266 270 270 269 271 271 270 272 273 271 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 279 280 280 280 280 280 281 281 281 281 282 282 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 291 292 293 292 293 293 293 293 294 293 294 294 294 294 294 294 294 295 294 294 295 295 294 295 295 295 295 295 295 296 295 295 296 296 295 296 296 295 296 295 296 296 296 296 296 296 297 297 296 297 298 297 298 298 297 298 299 297 298 299 298 298 298 298 298 298 297 297 297 297 296 295 296 295 294 296 295 294 297 296 296 298 297 297 298 298 297 297 298 298 297 297 298 297 297 297 297 296 297 297 296 296 297 296 297 298 297 297 298 298 298 296 297 297 293 294 297 288 290 294 285 287 291 282 284 287 280 282 285 279 281 284 279 280 284 279 280 284 278 279 283 278 278 283 277 278 282 275 276 279 273 275 277 272 273 275 271 272 274 269 271 272 268 271 271 267 270 270 267 268 270 266 266 271 264 263 270 262 261 269 259 260 268 257 258 266 256 257 263 256 255 262 254 253 261 253 250 260 251 247 258 248 245 257 246 243 256 243 241 255 241 239 253 239 238 252 238 238 251 236 237 250 235 237 250 233 236 249 232 236 246 233 236 243 234 236 241 233 236 239 233 235 238 236 237 240 236 237 239 236 238 239 237 238 239 238 239 239 238 239 239 238 240 239 239 241 239 247 237 228 250 240 231 252 242 233 253 242 233 253 243 234 254 244 237 254 244 239 255 246 241 258 249 244 260 253 248 263 258 251 266 263 257 268 266 261 269 269 265 270 270 268 271 271 270 272 273 271 273 274 272 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 279 280 280 280 280 280 281 281 281 281 282 282 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 288 288 288 289 289 289 290 290 290 291 291 290 291 292 291 292 292 292 293 293 293 293 293 293 294 294 294 294 294 294 294 294 294 294 295 294 294 295 295 294 295 295 295 295 295 295 296 295 295 296 295 295 296 295 295 296 295 296 296 296 296 297 296 297 298 297 298 298 297 298 299 297 298 299 298 298 298 298 298 298 298 297 297 297 296 295 296 295 294 296 295 294 297 296 296 298 297 297 298 297 297 297 297 298 297 297 298 297 297 297 297 296 297 297 296 296 297 297 297 298 297 297 297 297 298 295 296 297 289 291 295 284 287 291 281 284 288 280 282 286 280 282 285 280 281 286 280 282 286 280 281 286 280 280 285 279 279 284 278 279 283 276 278 282 275 276 279 274 275 278 273 275 276 271 273 274 269 272 273 268 270 271 267 268 271 265 265 271 264 262 270 261 261 269 259 259 268 257 258 266 256 256 263 255 254 262 254 252 261 252 249 260 250 247 258 247 244 257 245 242 256 243 240 255 240 239 254 239 238 252 238 237 251 236 237 250 235 237 250 233 236 248 232 235 246 232 235 243 233 235 241 233 235 240 233 235 238 235 237 240 236 237 239 236 237 239 237 238 239 238 239 239 238 239 239 238 240 239 239 241 239 247 237 227 250 240 231 252 242 233 253 242 232 253 243 233 254 244 237 254 244 239 255 246 241 257 249 244 260 253 247 262 257 251 265 261 255 267 264 259 269 268 264 270 270 268 271 271 270 272 273 271 273 274 272 274 275 274 275 276 275 276 277 276 277 277 277 278 278 278 278 279 279 279 279 280 280 280 280 280 280 281 281 281 282 282 282 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 289 289 289 290 290 290 290 291 291 291 291 291 292 292 292 293 293 293 293 293 293 293 294 294 294 294 294 294 294 294 294 294 294 294 295 295 294 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 296 295 296 296 296 296 297 296 297 298 297 298 298 297 298 299 297 298 299 298 298 298 298 298 298 298 297 297 297 296 295 296 295 294 296 295 294 297 296 295 297 297 297 297 297 297 297 297 298 297 297 298 297 297 297 297 296 297 297 296 297 297 297 297 297 297 297 297 297 297 293 294 296 286 289 292 282 284 289 280 282 287 280 282 286 280 283 287 281 283 288 282 283 288 282 283 288 281 281 287 280 280 285 279 280 284 278 279 283 277 278 281 276 277 279 274 276 278 273 273 276 269 271 274 267 268 272 266 268 272 265 264 272 263 262 270 260 260 268 258 258 267 257 257 266 256 255 263 255 253 261 253 251 261 251 248 260 249 246 258 246 244 257 244 241 256 242 240 254 240 238 254 239 237 253 237 237 251 236 237 250 235 236 249 232 235 248 232 235 246 232 235 243 233 235 242 233 235 240 233 235 238 235 236 240 236 237 239 236 237 239 237 238 239 238 239 239 238 239 238 238 240 239 239 241 239 247 237 227 250 240 231 252 242 233 253 242 232 253 243 233 254 244 236 254 244 238 255 246 241 257 249 244 260 253 247 262 256 250 264 261 254 267 264 259 269 268 264 270 270 267 271 271 270 272 273 271 273 274 272 274 275 274 275 276 275 276 277 276 277 277 277 278 278 278 278 279 279 279 279 279 280 280 280 280 280 281 281 281 281 282 282 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 290 291 291 291 291 292 292 292 292 293 293 293 293 293 293 293 293 293 294 294 294 294 294 294 294 294 294 294 294 294 295 295 294 295 295 295 295 295 295 295 295 295 295 295 295 296 295 296 296 296 296 297 296 297 298 297 298 298 297 298 299 297 298 299 298 298 299 298 298 298 298 297 297 297 296 295 296 295 294 296 295 294 297 296 295 297 297 297 297 297 297 297 297 298 297 297 298 297 297 297 297 297 297 297 296 297 297 297 297 297 297 297 295 296 297 290 291 294 284 286 290 281 283 288 281 283 287 282 284 288 283 285 289 283 285 290 283 286 290 283 285 289 282 283 288 281 281 286 280 280 285 278 279 283 277 279 282 276 277 280 274 276 278 273 273 277 270 271 275 267 268 273 266 267 272 265 264 272 263 261 270 260 259 267 258 258 266 257 256 266 256 254 263 254 252 261 252 250 260 250 248 259 248 245 258 246 243 257 243 241 255 242 239 254 240 238 254 239 237 253 237 236 252 236 236 250 234 235 249 232 235 247 232 235 247 232 234 244 232 234 242 233 234 240 233 234 239 235 237 240 236 236 239 236 237 239 237 238 239 238 239 239 239 239 238 238 240 239 239 241 239 247 237 227 250 240 231 252 242 233 253 242 232 253 243 232 254 244 236 254 244 238 255 246 241 257 249 243 260 252 246 262 256 250 264 261 254 267 264 259 269 267 264 270 269 267 271 271 270 272 273 271 273 274 272 274 275 274 275 276 275 276 277 276 277 277 277 278 278 278 278 279 278 279 279 279 280 280 280 280 280 281 281 281 281 282 282 282 282 282 283 283 283 284 284 284 284 285 285 286 286 285 287 287 287 288 288 288 288 289 289 289 290 290 290 291 291 291 291 292 292 292 292 292 293 293 293 293 293 293 293 293 293 293 293 294 294 294 294 294 294 294 294 294 295 294 294 295 295 294 295 295 294 295 295 295 295 295 295 296 295 296 296 296 296 297 296 297 298 297 298 298 297 298 298 297 298 299 298 298 299 298 298 298 298 297 297 297 296 295 297 295 294 297 295 294 297 296 295 297 297 297 297 297 297 297 297 298 297 297 298 297 297 297 297 297 297 297 297 297 297 297 297 296 296 297 294 295 297 288 289 293 283 285 289 283 285 289 284 286 289 286 287 291 286 288 292 286 288 292 285 287 291 284 286 289 282 284 288 281 282 287 280 281 285 278 279 284 277 279 283 276 277 281 274 275 279 272 273 278 270 271 276 267 269 273 266 266 272 264 263 272 263 260 269 260 258 267 258 257 265 257 255 264 255 253 262 253 251 261 251 249 260 249 247 259 247 245 257 245 242 256 243 240 255 241 238 254 240 237 254 238 237 253 237 236 252 235 235 250 234 235 249 232 234 247 231 234 246 231 234 244 232 233 241 233 234 240 233 234 238 236 237 240 236 236 239 236 237 239 237 238 239 238 239 239 239 239 238 238 240 238 239 241 239 247 237 227 250 240 231 252 242 233 253 242 232 253 243 232 254 244 235 254 244 238 255 246 240 257 249 243 259 252 246 261 255 249 264 260 254 268 264 259 270 267 264 270 269 267 271 271 269 272 273 271 273 274 272 274 275 274 275 276 275 276 277 276 277 277 277 277 278 278 278 279 278 279 279 279 280 280 280 280 280 281 281 281 281 281 281 282 282 282 283 283 283 283 284 283 284 285 284 285 286 285 286 287 286 287 288 288 288 289 289 289 290 290 290 291 291 291 291 292 291 292 292 292 292 293 293 293 293 293 293 293 293 293 293 293 293 293 294 294 294 294 294 294 294 294 294 295 294 294 295 294 294 295 294 295 295 295 295 295 295 296 296 295 296 297 296 297 298 296 297 298 297 298 298 297 298 299 297 298 299 298 298 298 298 297 297 297 296 296 297 295 295 297 295 294 297 296 296 297 297 297 297 297 297 297 297 298 297 297 298 297 297 297 297 297 297 297 297 297 297 297 297 296 296 297 293 294 296 287 289 293 285 287 290 288 289 291 290 291 293 290 291 293 290 291 293 290 290 293 288 289 292 285 287 291 283 284 288 281 282 287 280 281 286 278 279 285 277 278 283 275 277 281 274 275 279 272 273 278 270 270 276 267 268 274 266 265 272 264 263 271 263 260 268 261 258 266 259 256 265 257 255 264 255 252 262 253 250 261 251 248 260 249 246 259 247 244 257 245 242 256 243 240 255 241 238 254 239 237 254 237 236 253 236 235 252 235 235 251 233 234 249 232 233 247 231 234 246 231 233 243 232 233 241 233 233 240 233 233 239 236 237 240 236 236 239 235 236 239 237 238 239 238 239 239 239 239 238 238 240 238 239 241 239 247 237 227 250 240 231 252 242 233 253 242 232 253 243 232 254 244 235 254 245 238 255 247 240 257 249 243 259 251 245 261 255 249 264 260 254 267 263 258 270 267 265 270 269 267 271 271 269 272 272 271 273 274 272 274 275 274 275 276 275 276 276 276 277 277 277 277 278 278 278 279 278 279 279 279 280 280 280 280 280 280 281 281 281 281 281 282 282 282 283 283 282 283 284 283 284 285 284 285 286 285 286 287 286 287 288 287 288 289 289 289 290 290 290 291 291 290 291 291 291 292 292 292 292 292 292 293 293 293 293 293 293 293 293 293 293 293 294 293 293 294 294 294 294 294 294 294 294 294 294 294 294 295 294 294 295 294 295 295 295 295 296 295 296 297 296 297 298 296 297 298 297 298 298 297 298 299 297 298 299 298 298 298 298 298 297 297 296 296 297 295 295 297 295 295 297 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 297 298 298 297 297 297 297 297 296 296 297 293 294 297 289 290 294 290 290 293 291 292 293 292 292 294 292 292 294 292 292 294 291 291 293 290 290 293 287 288 291 283 284 288 281 282 287 279 281 286 278 279 285 276 278 283 275 276 282 273 274 280 272 272 278 269 270 276 267 267 274 265 264 272 264 262 271 263 260 268 261 258 266 259 256 265 257 254 264 255 251 262 253 249 261 251 248 260 248 245 258 246 244 257 245 243 256 244 240 255 242 238 254 239 237 254 237 236 253 235 235 252 234 234 251 233 234 250 232 233 248 231 233 246 231 233 244 232 232 242 232 233 241 233 233 239 235 237 240 236 237 240 235 236 239 237 238 239 238 239 239 239 239 238 238 240 238 239 240 239 247 237 227 250 240 231 252 242 233 253 243 232 254 244 232 254 244 235 255 245 238 255 247 240 257 249 242 259 251 244 261 254 248 264 261 255 267 265 260 270 268 265 270 269 267 271 271 269 272 272 271 273 274 272 274 275 273 275 276 275 276 276 276 277 277 277 277 278 277 278 279 278 279 279 279 280 280 280 280 280 280 281 281 281 281 281 282 282 282 282 283 282 283 283 283 284 284 284 285 285 285 286 286 286 287 288 287 288 289 289 289 290 290 290 291 291 290 291 291 291 292 292 292 292 292 292 292 292 292 293 293 293 293 293 293 293 293 293 293 293 294 293 294 294 293 294 294 294 294 294 294 294 294 294 294 295 294 295 295 295 295 296 295 296 297 296 297 298 296 297 298 297 298 299 297 298 299 297 298 299 298 298 298 298 298 297 298 297 296 297 296 295 297 295 295 297 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 298 297 298 297 296 297 297 293 295 298 291 293 296 292 293 295 293 293 295 293 293 295 292 293 295 292 292 294 291 291 293 290 290 292 287 287 290 283 285 289 281 282 287 279 280 286 277 278 285 275 277 283 274 275 282 273 274 280 271 271 278 269 269 276 266 266 274 265 263 272 264 261 270 263 260 268 261 258 266 259 256 265 257 254 264 256 252 262 253 249 261 250 247 260 248 245 258 247 244 257 247 244 257 246 243 257 242 239 255 238 237 254 236 235 253 234 234 252 234 234 251 233 233 250 231 233 248 231 232 246 231 233 244 232 232 242 232 232 241 232 233 240 235 236 240 236 237 240 235 236 239 236 238 239 238 239 239 239 239 238 238 240 238 239 240 239 247 237 227 250 240 231 252 242 233 253 243 233 254 244 233 255 245 235 255 245 238 256 247 240 257 249 242 259 251 244 260 254 247 264 261 255 268 266 262 270 268 266 270 269 268 271 271 269 272 272 271 273 273 272 274 275 273 275 275 274 276 276 276 277 277 276 277 278 277 278 278 278 279 279 279 279 280 280 280 280 280 281 281 281 281 281 282 282 282 282 283 282 283 283 283 284 284 284 285 285 285 286 286 286 287 288 287 288 289 288 288 290 290 289 291 290 290 291 291 291 292 292 291 292 292 292 292 292 292 292 293 292 293 293 293 293 293 293 293 293 293 293 293 293 293 294 294 293 294 294 293 294 294 294 294 294 294 295 295 295 295 296 295 296 297 296 297 298 296 297 298 297 298 299 297 298 299 297 298 299 298 298 298 298 298 297 297 297 296 297 296 295 297 296 295 297 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 298 298 297 298 298 296 297 298 292 295 297 291 294 297 293 295 297 294 295 296 293 294 296 293 294 295 292 293 295 291 291 293 290 290 292 287 288 290 283 285 289 281 282 287 279 280 286 277 278 285 275 276 283 274 275 282 272 273 280 271 271 277 268 268 275 266 265 274 264 263 272 263 261 270 262 260 268 261 258 266 259 255 265 257 254 263 255 251 262 253 249 261 250 247 260 247 244 258 248 245 258 248 245 258 247 244 257 243 240 256 238 237 254 235 235 252 234 234 252 233 233 251 233 233 250 231 232 247 230 232 245 231 232 244 232 232 243 232 233 242 232 233 240 234 236 240 235 237 240 235 236 239 236 238 238 238 239 239 239 239 238 238 240 238 239 240 239 247 237 227 250 240 231 252 242 233 253 243 233 254 244 233 255 245 236 255 246 238 256 248 240 257 249 241 258 251 243 260 254 247 265 261 255 269 267 262 270 269 267 270 269 268 271 271 269 272 272 271 273 273 272 274 274 273 275 275 274 276 276 275 277 277 276 277 278 277 278 278 278 279 279 279 279 279 280 280 280 280 281 280 281 281 281 282 282 281 282 283 282 283 283 283 284 284 284 285 285 285 286 286 286 287 288 287 287 289 288 288 290 289 289 290 290 290 291 291 291 292 291 291 292 292 292 292 292 292 292 292 292 292 293 292 292 293 293 293 293 293 293 293 293 293 293 293 293 293 294 293 294 294 293 294 294 294 295 295 294 295 296 295 296 297 296 297 298 296 297 298 297 298 299 297 298 299 297 298 299 298 298 298 298 298 298 298 297 297 297 296 296 297 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 298 298 298 297 298 298 294 296 297 291 293 296 291 293 297 293 295 298 294 296 297 294 295 297 293 294 296 292 293 295 291 292 293 290 290 292 288 288 291 283 285 289 281 282 287 279 280 286 277 278 285 275 276 284 274 274 282 272 273 280 270 270 277 268 268 275 266 265 273 264 263 271 263 261 269 262 260 267 260 257 266 259 255 264 257 254 263 255 251 262 252 249 261 249 246 259 248 245 258 249 246 258 249 246 258 247 244 257 245 242 256 238 237 253 235 235 252 233 234 251 233 233 251 232 232 249 231 232 247 230 231 245 231 232 244 232 232 243 232 233 241 232 232 239 234 236 240 235 237 240 235 236 239 236 238 238 238 239 238 239 239 238 238 240 238 239 240 239 247 237 227 250 240 231 252 242 233 253 243 233 255 245 233 255 246 236 256 247 238 257 248 240 258 250 241 258 251 242 260 253 246 265 261 255 269 268 263 270 270 268 271 270 268 271 271 269 272 272 271 273 273 272 274 274 273 275 275 274 276 276 275 277 277 276 277 278 277 278 278 278 279 279 279 279 279 280 280 280 280 281 280 281 281 281 281 282 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 289 288 288 290 289 289 290 290 290 291 291 290 291 291 291 292 292 291 292 292 292 292 292 292 292 292 292 292 293 292 292 293 293 292 293 293 293 293 293 293 293 293 293 294 294 293 294 294 294 295 295 294 295 296 295 296 297 296 297 298 296 298 298 297 298 299 297 299 299 298 299 299 298 298 298 298 298 298 298 297 297 298 297 296 298 296 296 298 297 296 298 297 297 297 297 297 298 297 297 298 297 298 298 298 298 298 298 298 298 298 298 297 297 298 293 295 297 291 292 295 291 292 295 292 294 297 293 296 298 294 295 297 294 295 296 293 293 295 292 292 293 290 290 292 288 288 291 283 285 289 281 282 287 279 280 286 277 278 285 275 276 284 274 274 283 272 272 281 270 270 278 268 268 275 266 265 273 264 262 271 263 261 269 261 259 267 260 257 266 258 255 264 257 253 263 255 251 262 252 248 261 249 245 259 248 245 258 249 246 258 249 246 258 248 245 257 245 243 256 240 239 254 234 235 251 233 234 251 233 233 250 232 232 249 231 231 247 231 232 246 231 231 243 231 232 243 232 233 242 232 232 240 235 236 240 235 237 240 235 237 239 236 238 238 239 239 238 239 240 238 238 240 238 239 240 239 247 237 227 250 240 231 252 242 234 254 244 234 255 245 234 256 246 236 257 247 239 257 249 240 258 250 241 258 251 242 260 253 246 265 262 255 269 268 264 271 270 268 271 270 269 271 271 269 272 272 271 273 273 272 273 274 273 275 275 274 276 276 275 277 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 281 280 281 281 281 281 282 281 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 289 291 290 290 291 291 291 291 291 291 292 292 291 292 292 292 292 292 292 292 292 292 292 292 292 292 293 292 292 293 293 292 293 293 293 293 293 293 294 294 294 295 295 295 295 296 295 296 297 296 297 298 296 298 299 297 298 299 297 298 299 297 299 299 298 298 298 298 298 298 298 297 297 298 297 296 298 297 296 298 297 296 298 297 297 298 297 297 298 298 297 298 298 298 298 298 298 298 298 298 298 298 298 296 297 298 294 295 297 293 294 295 293 294 296 293 295 296 292 294 297 294 295 297 295 295 296 293 294 295 292 292 294 291 290 292 289 289 291 286 286 289 282 283 287 279 280 286 277 278 285 275 276 284 274 274 282 272 272 281 270 270 278 268 267 275 266 264 273 264 262 271 262 261 269 261 259 267 259 257 265 258 255 264 257 253 263 255 251 262 251 247 260 249 245 259 249 246 258 250 246 258 249 246 257 247 245 257 244 243 256 241 240 254 235 235 251 234 234 250 233 233 250 232 232 248 231 231 248 231 232 247 231 231 244 231 232 243 232 233 242 232 232 240 235 236 240 235 236 240 235 237 240 236 237 238 239 239 238 239 240 238 238 240 238 239 240 239 247 237 227 250 240 231 252 243 234 254 244 234 255 246 234 256 247 237 257 248 239 258 249 241 258 250 240 259 251 241 260 253 246 265 263 256 269 268 264 271 270 269 271 270 269 271 271 269 272 272 271 273 273 272 273 274 273 275 275 274 276 276 275 277 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 280 280 281 281 281 281 282 281 282 282 282 283 283 283 283 284 284 284 285 284 285 286 286 286 287 287 287 288 288 288 289 289 288 290 290 289 290 290 290 291 291 290 291 291 291 291 292 291 291 292 291 291 292 291 291 292 292 292 292 292 292 292 292 292 293 292 292 293 293 293 293 293 293 294 294 294 295 295 295 296 296 295 296 297 296 297 298 296 298 298 297 298 299 297 298 299 297 298 299 298 298 298 298 298 298 298 297 297 298 297 296 298 297 296 298 297 296 298 297 297 298 298 297 298 298 297 298 298 298 298 298 298 298 298 298 297 297 298 296 296 297 294 295 296 295 295 296 295 296 296 295 296 296 295 295 296 295 296 296 295 295 296 294 294 295 292 292 294 291 290 292 289 289 291 286 286 289 282 283 288 280 280 286 277 278 284 275 276 283 274 274 282 273 272 280 271 270 278 268 267 276 266 265 274 264 262 272 262 261 269 260 259 266 259 256 265 258 255 265 256 252 263 254 249 262 250 247 260 249 245 259 250 246 258 250 246 258 249 246 257 247 245 256 244 243 255 241 240 254 235 235 251 234 234 250 234 233 249 232 231 248 231 231 248 231 231 247 231 231 244 231 232 243 232 233 242 233 234 241 235 237 241 235 236 240 235 237 240 236 237 238 239 239 238 240 240 238 238 240 238 239 240 239 247 237 227 250 240 231 252 243 234 254 245 235 256 246 235 257 247 238 258 249 240 258 250 241 259 251 240 259 251 241 260 254 245 266 263 257 269 268 264 271 271 269 271 271 270 271 271 269 272 272 271 273 273 272 273 274 273 275 275 274 276 276 275 277 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 280 280 281 281 281 281 282 281 282 282 282 283 283 283 283 284 283 284 285 284 285 286 285 286 287 287 287 288 288 287 289 289 288 290 289 289 290 290 290 290 290 290 291 291 290 291 291 291 291 291 291 291 291 291 291 292 291 291 292 292 291 292 292 292 292 292 292 292 293 292 293 293 293 294 294 294 295 296 295 296 296 295 297 297 296 297 298 296 298 298 296 298 298 297 298 299 297 298 299 298 298 299 298 298 298 298 297 297 298 297 296 298 297 296 298 297 296 298 297 297 298 298 297 298 298 298 298 298 298 298 297 298 297 297 298 295 296 297 294 295 296 293 294 295 295 296 296 296 296 296 296 296 296 296 296 297 296 296 296 295 295 296 294 294 295 292 292 294 291 290 292 289 289 291 286 286 290 282 283 288 280 280 286 277 278 284 275 276 283 274 274 281 273 272 280 271 270 278 269 267 275 266 265 274 264 262 272 262 260 269 260 258 266 258 256 265 257 254 265 255 251 263 253 248 261 250 246 260 250 246 259 250 246 258 250 246 257 249 245 256 247 244 256 244 243 255 240 240 253 235 235 251 236 234 250 234 232 250 233 231 249 231 231 249 231 231 247 231 232 244 231 232 243 233 233 241 234 236 242 235 237 241 235 236 240 235 237 240 236 237 238 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 252 243 234 254 245 235 256 247 236 257 248 238 258 249 240 259 251 241 259 251 240 259 251 240 260 254 245 266 264 257 269 269 265 271 271 269 271 271 270 271 271 270 272 272 270 273 273 272 273 274 273 274 275 274 276 276 275 276 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 280 280 281 281 281 281 281 281 282 282 282 282 283 282 283 284 283 284 285 284 285 286 285 286 287 287 287 288 288 287 289 288 288 289 289 289 290 290 289 290 290 290 290 291 290 290 291 291 290 291 291 290 291 291 290 291 291 290 291 291 291 292 292 291 292 292 292 292 293 293 293 294 293 294 295 294 295 296 295 296 297 295 296 297 295 297 298 296 297 298 296 298 298 297 298 298 297 299 299 298 298 299 297 298 298 297 297 297 297 297 296 298 297 296 298 297 296 298 298 297 298 298 298 298 298 298 298 298 298 297 297 297 296 296 296 295 296 296 295 295 296 294 295 296 296 296 296 297 297 297 297 297 297 296 296 297 296 296 297 295 295 296 294 294 295 293 292 294 291 290 292 289 289 291 286 286 289 282 283 288 280 280 286 277 278 284 275 276 282 274 273 281 273 271 279 271 269 277 269 267 275 267 265 274 264 262 272 262 260 269 260 258 267 258 256 266 257 254 265 255 250 262 252 248 261 250 246 260 250 246 259 251 246 258 250 246 257 249 245 256 247 244 255 244 243 254 239 239 253 236 235 251 236 234 251 234 232 250 233 231 250 231 230 249 230 231 247 231 232 244 232 233 244 233 233 242 236 237 242 236 237 241 235 236 240 235 237 240 236 237 238 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 252 243 234 255 245 236 257 247 237 258 249 239 259 250 241 260 251 241 260 251 240 259 251 240 260 254 245 266 264 257 269 269 264 271 271 269 271 271 270 271 272 270 272 272 271 273 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 280 280 280 281 281 281 281 281 282 282 282 282 283 282 283 284 283 284 285 284 285 286 285 285 287 286 286 288 287 287 288 288 288 289 289 289 289 290 289 290 290 290 290 290 290 290 291 290 290 291 290 290 291 291 290 291 291 290 291 291 290 291 291 291 292 292 292 292 293 293 293 294 294 294 295 294 295 296 295 296 297 295 296 297 295 297 297 295 297 297 296 297 298 296 298 298 297 298 298 297 298 298 297 298 298 297 297 297 297 297 296 298 296 296 298 297 296 298 297 297 298 298 297 298 298 298 298 298 298 297 297 297 296 296 296 296 296 296 296 296 296 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 296 296 297 294 294 296 294 294 296 293 292 294 291 290 293 289 288 291 285 285 289 283 283 288 280 280 286 278 278 284 275 276 282 274 273 281 272 271 279 271 269 277 269 267 275 267 265 274 265 262 272 262 260 269 260 258 267 258 256 266 256 253 264 254 250 262 252 248 260 251 247 260 251 246 259 251 246 258 250 246 257 249 245 256 247 244 255 244 242 254 241 239 253 238 236 251 237 234 251 235 232 251 233 231 250 231 230 249 231 231 247 232 232 245 233 234 244 233 234 243 236 237 243 236 237 242 235 236 240 235 237 240 236 237 238 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 243 235 255 246 236 257 248 237 259 250 239 260 251 241 260 252 241 260 252 240 260 252 240 260 255 245 266 264 257 269 269 264 271 271 269 272 272 270 271 272 270 272 272 271 273 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 280 280 280 281 281 281 281 281 282 282 282 282 283 283 283 284 283 284 285 284 285 286 285 285 287 286 286 287 287 287 288 288 288 289 289 289 289 289 289 289 290 289 289 290 290 289 290 290 289 290 290 289 290 290 290 290 291 290 291 291 290 291 291 291 292 292 292 293 293 293 294 294 294 295 295 294 295 296 295 296 297 295 296 297 295 296 297 295 296 297 295 297 297 296 297 297 296 297 297 297 297 297 297 297 297 296 296 296 297 296 296 297 296 296 298 296 296 298 297 296 299 298 297 299 298 298 298 298 298 297 297 297 296 296 296 296 296 296 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 296 296 297 294 295 296 294 294 295 292 292 294 289 289 292 288 288 291 288 287 290 285 285 289 281 281 287 278 278 285 276 276 283 274 273 281 273 271 278 271 269 277 269 267 275 267 265 274 265 262 272 262 260 269 260 258 267 258 255 266 256 252 264 254 250 262 253 248 261 252 247 260 252 247 259 251 247 258 250 246 257 248 245 256 247 244 255 244 242 254 241 239 253 239 236 251 239 235 251 236 233 250 235 232 250 231 230 249 231 231 247 233 233 246 235 235 244 234 234 243 237 238 244 236 237 242 235 236 240 235 237 240 236 237 238 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 255 246 237 257 249 238 259 250 240 260 252 242 261 252 242 261 252 240 260 252 240 260 255 245 265 263 256 269 269 263 271 271 268 272 272 270 272 272 270 272 272 271 273 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 279 280 280 280 280 281 281 281 281 281 282 282 282 283 283 283 283 284 284 284 285 285 285 286 286 285 287 287 286 287 287 287 288 288 288 288 289 288 289 289 289 289 290 289 289 290 289 289 290 290 289 290 290 289 290 290 290 290 291 290 291 291 291 291 292 291 292 292 292 293 293 293 294 294 294 295 296 294 295 296 294 296 296 294 296 296 294 295 296 295 295 296 295 295 296 295 295 296 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 296 295 295 297 296 296 298 297 297 299 298 297 299 299 298 299 298 298 297 297 297 296 296 296 296 296 296 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 296 296 297 295 295 296 295 294 295 293 293 294 292 292 293 291 291 293 290 289 292 288 287 290 284 284 288 279 279 285 276 276 283 274 273 281 273 271 279 271 269 276 269 267 275 267 265 274 265 262 272 263 260 269 260 258 267 258 255 266 256 252 264 255 250 262 254 249 260 253 248 260 252 247 258 251 247 257 250 246 256 248 245 255 246 244 254 244 242 253 242 239 253 239 236 252 238 235 251 237 233 251 235 232 250 231 230 249 231 231 248 234 234 246 236 236 246 236 236 245 237 238 244 237 237 243 235 236 241 235 237 240 236 237 239 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 256 247 237 258 249 239 260 251 240 261 252 242 261 253 242 261 253 240 260 252 239 260 256 244 264 263 255 269 269 262 271 271 267 271 272 269 272 272 270 272 273 271 272 273 272 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 279 279 279 279 279 279 280 280 280 280 280 280 281 281 281 281 281 282 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 286 287 288 287 288 288 288 288 289 288 288 289 288 289 289 289 289 290 289 289 290 290 290 290 290 290 290 290 290 291 291 290 291 291 291 292 292 291 292 292 292 293 293 294 295 295 294 295 296 294 295 295 294 295 295 294 295 295 294 294 295 294 294 295 293 293 294 293 293 293 293 293 293 293 293 293 293 293 293 293 293 294 293 293 293 293 293 294 295 295 295 296 296 295 298 297 296 299 299 298 299 299 299 298 298 298 297 297 296 296 296 296 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 296 296 297 296 296 296 295 295 295 294 294 295 294 293 294 293 292 293 292 291 292 290 289 291 287 286 289 282 281 286 278 277 284 275 273 281 273 271 279 271 268 276 269 267 275 268 265 273 265 262 272 263 260 269 260 258 267 258 255 266 256 252 264 254 250 262 254 249 261 252 247 260 252 247 258 251 246 257 249 245 256 247 244 254 245 243 254 244 241 253 242 239 252 239 236 252 238 234 252 237 233 251 235 232 250 232 230 249 232 232 248 236 234 246 238 236 246 236 236 245 237 237 245 237 238 243 235 236 241 235 237 240 236 238 239 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 256 247 238 258 250 239 260 252 241 261 253 242 262 253 242 261 253 240 260 253 239 260 256 244 263 262 253 269 269 262 270 271 265 271 272 268 271 272 270 272 273 271 272 273 271 273 274 273 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 279 279 279 280 280 280 280 280 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 286 287 287 287 287 288 288 288 288 288 288 289 289 289 289 289 289 290 290 290 290 290 290 290 290 290 291 291 291 291 291 291 291 291 291 292 292 292 292 292 293 294 294 294 295 295 294 295 295 294 294 295 294 294 294 293 293 294 293 293 293 292 292 292 292 291 292 292 292 292 294 293 294 294 294 295 295 294 295 294 294 295 293 293 294 293 293 293 293 293 293 294 294 294 296 296 295 298 299 298 299 300 300 299 298 299 297 297 297 296 296 296 296 296 296 297 296 296 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 295 294 294 294 293 294 293 292 293 292 291 293 291 289 292 288 287 290 285 283 288 279 278 285 276 274 283 274 271 280 272 268 277 270 266 275 268 265 273 266 262 272 263 260 269 261 258 267 258 255 266 256 252 264 254 250 262 253 249 261 251 247 259 251 246 258 250 245 256 247 244 255 243 242 254 243 241 253 242 240 253 242 239 252 239 235 252 238 234 252 237 233 251 235 231 250 232 231 249 233 232 248 236 235 248 238 236 247 237 236 246 237 236 245 238 238 244 236 236 241 235 237 240 236 238 239 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 256 247 238 259 250 240 261 252 241 262 253 242 262 254 242 262 253 239 260 253 239 260 257 244 263 262 252 268 268 260 270 270 263 270 271 267 271 272 269 272 273 271 272 273 271 273 274 272 274 275 274 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 279 279 279 279 279 279 280 280 280 280 280 280 280 280 281 281 281 282 283 282 283 284 283 284 285 284 285 286 285 286 286 286 287 287 287 288 288 288 288 289 289 289 289 290 290 290 290 290 290 290 290 290 290 291 291 291 291 291 291 292 292 292 292 292 292 292 292 292 293 293 293 294 294 295 294 295 295 293 294 295 293 293 294 293 293 293 291 291 292 289 290 290 290 290 290 292 292 292 294 294 295 296 296 297 298 297 298 298 298 297 298 298 296 296 297 296 295 295 295 294 293 294 293 293 293 294 295 294 297 298 298 299 300 301 299 299 300 298 297 297 296 296 296 296 296 296 297 296 296 297 297 297 297 297 297 297 297 297 296 297 297 296 296 296 296 295 295 295 295 295 295 294 294 294 293 294 293 292 293 292 291 292 291 290 291 290 288 291 287 285 289 283 281 287 279 277 285 276 273 282 273 269 278 270 266 275 268 265 273 266 262 272 264 260 269 261 258 267 258 255 266 256 253 264 254 250 262 252 248 261 251 246 259 249 245 258 248 245 256 245 243 255 242 241 254 241 240 253 242 239 252 242 239 252 239 235 252 237 233 252 235 232 251 234 231 250 232 231 249 235 234 249 238 236 248 239 237 248 238 236 246 236 235 245 237 237 244 236 236 242 235 237 240 236 238 239 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 256 248 239 259 251 240 261 253 242 262 254 242 262 254 241 262 253 239 261 254 239 260 257 244 262 262 251 266 267 257 269 269 261 269 269 264 271 271 268 272 272 270 272 273 271 273 274 272 274 275 273 275 276 275 276 277 276 277 278 277 278 278 278 278 279 279 279 279 279 279 279 279 279 279 279 279 279 279 279 279 279 280 281 280 281 282 281 282 283 283 283 284 284 284 285 285 286 286 286 287 287 287 288 288 289 289 289 290 290 290 291 290 290 291 291 290 291 291 291 291 292 292 292 293 292 293 293 293 293 293 293 292 293 293 293 294 294 294 295 295 295 294 295 295 293 293 294 292 292 293 290 290 290 287 287 287 288 288 288 291 292 291 295 296 297 297 298 299 297 298 298 298 298 298 298 298 298 298 299 298 297 298 297 298 298 298 296 298 297 296 297 297 295 296 297 295 296 298 297 298 300 298 298 300 297 297 298 296 296 296 296 296 295 297 296 296 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 296 295 295 296 295 295 295 294 294 294 293 293 293 292 292 292 291 292 291 290 291 291 289 291 289 287 290 286 284 289 284 281 287 280 277 284 275 272 280 271 267 276 268 264 273 266 262 272 264 260 269 261 258 268 258 255 266 256 253 264 253 250 262 251 248 260 250 246 259 248 245 257 247 244 256 244 242 255 241 240 253 241 240 253 242 239 253 242 238 253 237 234 253 237 233 252 235 231 251 234 231 250 233 231 249 237 235 249 239 237 249 240 237 248 239 237 247 237 236 245 237 237 244 236 236 242 235 237 240 236 238 239 239 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 256 248 239 259 251 241 261 253 242 262 254 242 263 254 241 262 254 239 261 254 239 260 257 244 262 262 250 265 265 254 267 268 258 268 269 262 270 270 267 272 272 270 272 273 271 273 274 272 274 275 273 275 276 275 276 277 276 277 278 277 278 278 278 278 279 278 278 279 278 278 279 278 278 278 278 278 278 278 278 279 278 279 280 278 280 281 279 281 282 281 282 283 283 283 283 282 285 284 284 287 286 287 289 288 289 290 289 290 291 290 291 291 290 292 292 291 292 293 292 293 294 293 294 294 294 294 294 294 294 294 294 294 294 295 294 295 296 295 295 296 295 294 294 294 292 292 293 290 290 290 286 286 286 285 285 284 289 289 288 295 296 295 297 299 299 298 298 298 298 298 298 298 299 298 298 299 298 298 299 298 298 299 298 299 300 299 299 301 300 299 301 301 297 298 299 296 296 298 296 296 298 295 296 298 296 296 297 296 295 295 296 296 295 296 296 296 297 296 296 297 297 297 297 297 297 297 297 297 296 296 296 296 295 295 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 291 291 289 290 290 288 290 288 286 289 286 283 288 283 280 285 278 274 281 272 268 277 268 265 274 266 262 272 264 260 269 261 258 268 258 255 266 255 253 264 253 250 262 251 248 261 249 246 259 247 244 258 246 243 256 243 242 255 241 240 253 241 239 253 242 239 253 240 237 253 236 233 253 235 232 252 234 231 251 233 231 251 234 232 249 239 236 249 240 237 249 240 237 249 240 237 248 238 237 246 236 235 244 236 236 242 235 237 240 236 238 239 238 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 235 257 249 239 260 252 241 262 253 242 263 255 242 263 255 240 262 254 239 261 254 239 260 258 243 262 261 249 264 265 253 266 267 256 267 268 260 269 270 265 271 272 268 272 273 271 273 273 272 274 274 273 275 276 275 276 277 276 277 278 277 278 278 278 278 279 278 278 279 278 278 279 278 278 279 278 278 278 277 278 279 277 279 279 278 280 280 279 280 281 279 282 282 280 283 282 282 285 283 283 288 285 286 290 287 288 291 288 289 291 289 291 292 290 291 293 291 292 294 292 293 294 293 293 293 293 293 293 293 294 293 293 294 293 294 294 294 294 294 293 294 294 292 292 293 290 291 291 286 287 286 284 284 283 285 286 285 291 292 291 298 299 298 298 298 298 298 298 298 299 299 298 298 300 298 298 300 299 299 300 299 299 300 299 300 302 300 301 303 302 302 302 303 299 299 301 296 297 298 295 295 297 294 295 296 295 295 296 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 296 296 297 296 297 296 296 296 295 296 295 295 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 292 290 290 291 289 290 290 288 290 289 286 289 287 285 288 284 281 286 280 276 282 275 271 278 270 265 274 267 262 272 264 260 269 261 258 267 258 255 266 255 253 265 252 250 263 250 248 261 249 246 259 247 244 258 246 243 256 244 242 255 242 241 254 242 240 254 243 239 254 239 235 253 235 233 253 234 232 252 233 231 252 233 231 251 235 233 250 239 236 250 240 237 250 241 238 249 240 238 248 239 238 247 235 235 243 237 237 243 235 237 241 236 238 239 238 239 238 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 236 257 249 239 260 252 242 262 254 242 263 255 241 263 255 239 262 254 238 261 255 239 260 258 243 262 261 248 264 263 251 265 266 254 267 267 259 269 269 263 271 271 267 272 272 270 273 273 272 274 274 273 275 276 274 276 277 276 277 278 277 278 278 278 278 279 278 278 279 278 279 279 278 279 280 278 279 279 278 279 280 278 280 280 278 281 281 279 282 281 280 283 282 281 284 282 282 287 284 284 289 286 286 290 287 287 291 287 287 292 289 288 293 290 289 294 291 290 294 291 290 292 291 290 291 291 291 291 291 291 291 291 292 292 292 292 292 292 293 291 292 292 290 290 291 287 287 287 284 284 284 284 284 283 288 288 288 295 296 294 298 299 298 298 298 298 298 298 298 298 299 298 298 300 298 298 299 299 298 300 298 298 301 299 300 302 300 301 303 302 302 304 304 301 302 304 299 299 300 297 297 298 295 296 297 295 295 295 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 295 296 296 296 296 296 296 296 295 296 295 295 296 295 295 295 294 294 294 293 293 294 292 292 293 291 291 292 290 290 291 289 290 290 288 289 289 287 289 288 285 288 286 282 286 282 278 283 277 273 278 273 269 276 268 263 273 264 260 270 261 258 268 258 255 266 255 253 265 252 250 263 249 247 261 248 245 259 247 244 258 246 243 257 244 242 256 243 242 255 244 241 255 244 240 254 238 235 253 235 233 253 233 232 252 233 232 252 234 232 251 237 234 250 240 236 250 241 237 250 242 238 250 241 238 248 241 240 248 236 235 244 237 237 243 235 237 241 236 237 239 238 238 237 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 244 236 257 249 240 260 252 242 262 254 242 263 255 240 263 255 239 263 254 238 261 255 239 260 258 243 261 261 247 263 263 250 265 265 252 267 267 258 269 269 261 270 271 265 271 272 269 273 273 271 274 274 273 275 275 274 276 277 276 277 278 277 278 278 278 278 279 278 279 279 278 280 280 279 280 281 280 281 281 279 281 281 279 282 282 280 283 282 281 283 282 281 284 283 282 286 284 283 288 285 284 290 287 286 291 288 287 291 288 287 292 289 287 293 289 287 293 290 287 292 290 287 291 289 286 289 289 285 287 288 285 287 287 285 287 287 285 287 287 286 286 287 286 285 286 285 284 284 283 284 284 283 287 287 286 292 292 292 298 299 296 298 298 298 298 299 298 299 300 299 298 299 298 297 298 298 297 298 298 297 299 298 298 300 298 299 302 300 301 303 301 301 304 303 302 303 305 300 301 302 298 298 299 296 296 297 295 295 296 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 296 295 295 296 295 295 295 294 294 294 293 293 294 292 292 293 291 291 292 290 290 291 289 290 290 288 289 290 287 289 288 286 288 286 283 287 283 279 283 278 275 279 275 271 277 270 266 275 264 260 271 261 258 268 258 255 267 255 253 265 251 250 263 249 247 261 248 245 260 247 244 258 245 243 257 245 243 256 246 244 256 246 243 256 244 240 255 238 235 254 235 233 253 233 232 252 234 232 252 235 232 251 239 235 251 241 236 251 242 237 250 242 238 250 241 239 249 242 240 249 235 234 244 237 236 244 236 237 241 236 237 239 238 238 237 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 245 236 257 249 240 260 252 242 262 254 242 263 255 240 263 255 238 263 255 238 262 256 240 261 258 243 261 260 246 263 262 249 265 264 251 266 266 255 269 269 260 270 270 263 271 271 267 272 272 271 273 274 273 274 275 274 276 277 275 277 278 277 278 278 277 278 279 278 279 280 279 280 281 280 281 282 281 282 282 281 283 283 281 284 284 282 285 284 283 286 284 283 287 285 284 289 286 285 290 288 286 292 289 287 293 290 288 293 290 288 293 290 288 294 290 288 295 291 288 294 291 287 291 290 285 289 288 284 286 287 282 285 286 281 284 285 281 284 285 282 283 285 282 283 283 281 284 284 282 287 287 286 292 292 291 297 298 296 299 300 298 299 300 298 299 300 298 298 300 298 298 298 298 297 298 298 298 298 298 298 300 298 298 300 299 299 301 300 300 302 300 300 302 302 300 302 303 299 300 301 298 298 299 296 296 297 295 295 295 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 296 295 295 296 295 294 295 294 294 294 293 293 294 292 292 293 291 291 292 290 291 291 289 290 291 289 289 290 288 289 289 286 288 287 284 287 284 280 284 280 276 280 276 272 278 272 268 276 265 261 272 261 258 268 258 256 267 256 253 266 252 250 263 249 247 261 248 245 260 246 243 259 245 243 258 245 243 257 246 243 257 247 243 257 245 241 256 240 237 255 236 234 253 235 233 253 236 234 252 238 235 252 240 236 252 241 236 251 242 237 251 243 238 250 242 239 249 242 241 249 237 236 245 238 237 244 236 237 241 236 237 239 238 238 237 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 245 236 257 249 240 261 253 242 263 254 242 263 255 239 263 255 237 263 255 238 262 256 240 261 259 243 262 260 246 263 262 248 264 263 250 266 265 254 267 267 257 269 269 261 271 271 266 272 272 270 273 273 272 274 275 274 275 276 275 277 278 276 278 278 277 279 279 278 280 280 279 281 281 280 282 282 281 282 283 282 284 284 283 285 285 284 286 285 285 288 286 285 289 287 286 291 288 287 292 289 288 294 291 289 295 292 290 294 292 290 295 292 290 296 293 290 296 294 290 296 294 290 294 292 288 292 290 287 289 288 285 287 287 283 285 286 283 285 285 282 284 284 282 284 285 283 287 287 286 291 291 291 297 296 296 301 301 299 300 301 298 299 300 298 298 299 298 298 298 298 297 298 298 298 298 298 298 300 298 299 302 299 299 302 301 300 302 301 300 302 301 299 301 301 297 298 299 297 297 298 297 297 298 296 296 297 296 295 296 295 295 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 296 295 295 295 295 294 295 294 294 294 293 293 294 292 292 293 291 291 292 290 291 291 290 290 291 289 289 290 288 289 289 287 288 287 285 287 285 282 284 281 278 281 277 273 278 273 268 276 266 261 272 262 258 269 260 257 268 258 255 266 252 250 264 249 247 261 247 245 260 246 243 259 245 243 258 245 243 257 246 243 257 247 244 257 246 243 257 241 238 255 240 237 254 236 234 253 239 236 252 241 237 253 241 236 252 242 237 252 243 237 251 243 238 250 243 239 250 243 241 249 238 236 246 239 238 245 236 237 242 236 236 238 238 238 237 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 245 236 257 250 240 261 253 243 263 254 242 263 255 238 264 255 237 263 255 238 262 257 240 262 259 243 262 260 246 263 262 247 264 263 250 266 265 253 267 267 255 269 268 259 270 271 265 272 272 269 273 273 272 274 275 273 275 276 275 276 277 276 278 278 277 279 279 278 280 280 279 281 281 280 282 282 281 283 283 282 284 284 283 285 285 284 286 286 285 287 287 286 289 288 287 291 289 288 294 291 290 295 292 290 295 293 290 295 293 291 294 293 291 295 294 292 297 295 293 298 296 294 298 296 292 297 294 291 295 293 290 292 292 289 290 290 288 289 289 288 289 289 287 289 290 288 292 292 291 295 295 294 299 299 297 300 301 298 299 301 298 298 299 297 298 298 298 297 297 298 297 298 298 298 298 298 298 301 299 299 302 299 300 303 301 301 304 303 300 302 302 298 299 300 295 296 297 294 294 296 296 296 297 296 296 297 296 295 296 296 295 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 296 295 295 296 295 295 295 295 294 295 294 294 294 293 293 294 292 292 293 291 291 292 290 291 292 290 290 291 289 290 290 288 289 289 287 288 288 285 287 286 283 285 282 279 282 278 274 279 273 269 276 266 262 273 265 260 270 264 259 268 260 256 266 253 250 264 249 247 262 247 245 260 245 243 259 244 242 258 245 243 257 246 243 257 248 244 258 247 244 258 245 242 257 242 239 255 238 236 254 241 237 253 242 237 253 242 236 253 243 237 252 243 237 251 244 238 249 243 239 250 243 241 249 239 237 246 239 238 245 236 237 242 235 236 238 238 238 237 240 240 238 239 240 238 239 240 239 247 237 227 250 240 231 253 245 236 258 250 240 261 253 243 263 255 241 263 255 238 264 255 236 263 256 238 263 257 240 262 259 243 262 260 245 263 262 247 264 263 249 266 265 252 267 267 255 268 268 257 270 270 264 271 271 268 273 273 271 274 274 273 275 276 274 276 277 276 277 278 277 279 279 278 280 280 279 281 281 280 281 282 281 282 283 282 284 284 283 285 285 284 286 286 285 287 287 286 288 288 288 290 290 289 294 291 290 295 292 290 295 293 290 294 293 291 294 293 291 295 294 292 296 295 293 297 297 294 299 297 295 299 297 295 299 297 295 297 297 295 296 296 294 294 294 293 294 294 293 294 294 294 296 295 295 297 297 296 299 299 297 299 300 298 298 299 297 297 298 297 297 297 298 297 298 298 298 298 298 298 298 298 298 299 299 300 303 300 302 304 303 303 304 304 300 301 302 297 298 299 294 294 296 293 293 295 295 295 296 296 296 296 296 295 296 296 295 296 296 296 296 296 296 296 296 296 295 296 295 295 296 295 295 296 295 295 296 295 295 296 295 295 295 295 294 295 294 294 294 293 293 294 292 292 293 291 291 292 291 291 292 290 290 291 289 290 290 288 289 289 287 288 288 286 287 286 283 285 283 279 282 279 274 279 273 269 276 267 263 273 266 262 270 265 260 268 262 257 267 253 251 264 249 247 262 247 245 260 245 243 260 245 243 259 246 243 258 248 245 259 248 244 258 248 245 258 246 243 257 245 241 257 241 237 254 242 237 253 243 237 253 243 237 253 243 237 252 244 237 250 244 237 249 244 239 250 243 241 249 242 240 248 239 238 246 237 237 242 235 236 238 238 238 237 240 240 238 239 240 239 239 240 239 247 237 227 250 240 231 253 245 236 258 250 241 261 253 243 263 255 241 264 255 237 264 255 236 264 256 237 263 258 241 263 260 244 263 261 246 264 262 247 265 263 249 266 264 252 267 266 254 268 268 257 270 270 261 271 271 267 272 273 270 273 274 272 275 276 274 276 277 275 277 278 277 278 279 278 279 280 279 280 281 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 284 286 286 286 287 288 287 290 290 289 292 291 290 295 292 290 294 293 290 294 293 291 294 294 291 295 294 292 296 295 293 297 297 295 298 298 296 298 298 296 298 298 296 298 298 296 298 298 297 297 298 296 297 297 296 297 297 296 298 297 297 298 297 296 298 298 297 298 298 297 297 297 297 297 297 297 297 297 298 297 297 298 297 298 298 298 298 298 299 300 299 301 303 301 303 305 304 303 303 304 300 300 302 297 298 299 295 295 297 294 294 295 294 295 295 296 296 296 296 295 296 296 296 296 296 296 296 296 296 296 296 295 295 296 295 295 296 295 295 296 295 295 296 295 295 295 295 295 295 295 294 295 294 294 294 293 293 294 292 292 293 292 291 292 291 291 292 290 290 291 289 290 290 288 289 290 288 288 288 286 287 287 284 285 284 280 283 279 275 279 274 270 275 269 265 273 268 263 270 267 261 268 262 258 267 253 252 265 248 248 262 247 246 261 247 244 260 247 245 260 249 246 260 249 245 259 249 245 259 248 245 259 247 243 258 246 242 257 244 239 255 244 237 254 244 237 254 244 237 253 244 237 252 245 238 250 244 237 249 244 239 250 244 241 249 242 240 248 240 238 246 237 237 242 235 236 238 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 250 240 231 253 245 236 258 250 241 261 253 243 263 255 241 264 255 237 264 256 235 264 256 237 264 258 241 264 261 246 264 261 245 264 261 247 265 263 249 266 264 250 267 266 254 268 268 257 269 269 260 271 271 267 272 273 270 273 274 272 274 275 274 276 277 275 277 278 277 278 279 278 279 280 279 280 281 280 281 281 281 282 282 281 283 283 282 283 283 283 284 284 284 285 286 285 286 287 287 288 289 288 291 291 290 293 292 290 294 293 290 295 293 291 295 294 292 296 295 293 296 296 293 297 297 294 297 297 295 297 298 295 298 298 296 298 298 297 298 298 297 298 298 297 298 298 297 298 298 297 298 297 296 298 297 296 297 297 297 297 297 297 297 297 296 296 297 297 297 297 297 297 297 298 297 297 298 297 298 298 298 300 298 300 304 300 302 304 303 302 303 304 300 301 302 298 299 299 295 296 297 293 294 295 294 294 295 296 296 296 296 296 296 296 296 296 296 296 296 296 295 295 296 295 295 296 295 295 295 295 295 295 295 295 296 295 295 295 295 295 295 295 294 294 294 293 294 293 293 293 293 292 293 292 291 292 291 290 291 290 290 291 289 290 290 289 289 290 288 288 289 286 287 287 284 285 284 281 283 279 276 279 274 271 275 271 268 273 269 264 270 267 261 268 262 258 267 253 252 265 249 248 263 248 247 262 249 247 261 250 248 261 250 247 260 250 246 260 250 246 260 249 244 259 248 242 258 247 241 257 246 240 256 245 237 254 245 237 253 245 237 252 245 238 251 245 238 250 244 237 249 245 240 250 243 241 249 242 241 248 240 239 246 237 237 242 235 236 238 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 250 240 230 253 245 236 258 250 241 261 253 243 263 255 241 264 255 237 264 256 235 264 257 237 264 259 242 265 261 246 265 261 245 265 261 246 265 263 248 266 264 251 267 266 254 268 268 257 269 269 260 271 271 266 272 273 269 273 274 272 274 275 274 276 277 275 277 278 277 278 279 278 279 280 279 280 281 279 281 281 280 282 282 281 282 282 282 283 283 282 283 284 283 284 285 285 286 286 286 287 288 288 289 290 289 292 292 290 294 293 290 295 293 291 295 294 292 296 295 293 296 296 294 296 297 294 297 297 294 297 298 295 298 298 296 298 298 296 298 298 297 298 298 297 298 298 297 298 298 297 298 298 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 296 297 297 297 297 298 297 297 298 297 298 298 298 300 298 300 303 300 301 304 303 301 302 303 300 300 301 298 298 299 296 296 297 294 295 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 296 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 294 295 295 294 294 294 293 294 293 293 293 293 292 293 292 291 292 291 290 291 290 290 291 289 289 290 289 289 290 288 288 289 287 287 287 285 285 284 281 283 280 276 279 275 272 275 272 269 273 270 266 270 266 261 268 261 257 266 253 252 265 249 249 263 249 248 262 251 249 262 251 249 262 251 248 261 251 246 260 250 246 260 249 244 260 248 242 259 248 241 258 247 240 256 246 238 254 246 237 253 246 237 252 246 238 251 246 238 251 245 238 251 245 242 251 243 241 249 242 241 248 240 239 247 237 237 242 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 250 240 230 253 245 236 258 250 241 261 253 243 263 255 242 264 255 237 264 256 235 264 257 237 265 259 242 265 261 246 265 261 246 265 261 247 265 263 249 266 264 252 268 266 254 268 268 257 269 269 260 270 270 264 272 273 269 273 274 271 274 275 273 275 276 275 277 278 276 278 279 278 279 280 278 280 281 279 281 281 280 281 282 281 282 282 281 282 282 282 283 283 283 284 285 284 285 286 286 287 288 287 289 290 289 292 292 291 294 293 291 294 293 292 295 294 292 296 295 293 296 296 293 296 296 294 297 297 294 297 298 295 298 298 296 298 298 296 298 298 296 298 298 297 298 298 297 298 298 297 298 298 297 297 297 297 297 297 297 296 296 297 296 296 296 296 296 297 296 297 297 296 297 297 297 297 297 297 299 298 298 301 299 300 303 301 301 303 303 301 301 303 299 299 300 297 297 298 296 296 297 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 296 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 294 295 294 294 294 294 293 294 293 292 293 293 292 293 292 291 292 291 290 291 290 290 291 289 289 290 289 289 290 288 288 289 287 287 287 285 285 284 282 283 280 277 279 276 272 275 273 269 273 270 266 271 264 260 267 260 257 266 254 253 265 251 251 263 251 250 263 252 250 263 252 250 262 251 248 261 251 247 261 251 246 261 250 243 260 249 241 259 249 241 258 248 240 256 247 238 254 247 238 253 247 238 253 247 239 252 246 239 251 246 241 252 245 242 251 243 241 249 242 241 248 241 239 247 237 237 242 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 250 240 230 253 245 235 258 250 241 261 253 243 263 255 242 264 255 237 264 256 235 264 258 237 265 260 244 266 261 246 266 261 246 266 262 248 266 263 251 267 265 253 268 267 256 269 269 259 270 270 261 270 270 263 272 272 268 273 274 271 274 275 273 275 276 275 277 278 276 278 278 277 279 279 278 280 280 279 281 281 280 281 281 281 281 281 281 282 282 281 282 283 282 283 284 284 285 286 286 287 288 288 289 290 290 291 292 291 293 294 293 294 295 293 295 295 293 296 295 292 296 296 293 296 296 293 296 297 294 297 297 295 297 298 296 297 298 296 297 298 296 297 298 297 297 298 297 298 298 298 298 298 298 297 297 297 296 297 297 296 296 297 296 296 296 296 296 296 296 296 297 296 297 297 296 297 297 297 299 298 299 302 301 300 303 303 301 302 304 300 301 302 299 299 300 297 297 298 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 296 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 294 295 295 294 295 294 294 294 294 293 294 293 292 293 293 292 292 292 291 292 291 290 291 290 290 291 289 289 290 289 289 290 288 288 289 287 287 287 285 285 284 282 283 280 277 279 276 273 275 273 270 272 270 266 271 263 260 268 259 257 266 255 255 265 252 253 264 252 252 264 252 251 263 252 250 262 252 248 261 252 247 261 252 246 261 252 243 260 251 242 259 250 242 258 249 241 256 249 239 255 248 239 254 248 239 254 248 240 253 247 241 253 246 242 253 245 242 250 242 241 248 242 240 248 241 239 247 237 237 242 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 250 240 230 253 245 235 258 249 241 261 253 244 263 255 242 264 255 237 264 256 235 265 258 238 266 261 244 266 262 246 266 262 247 266 262 249 267 264 252 268 266 254 269 268 257 270 269 260 270 270 262 270 270 264 272 272 268 273 273 271 274 275 273 275 276 274 277 277 276 278 278 277 278 279 278 279 280 279 280 280 280 281 281 280 281 281 280 281 281 281 282 283 282 283 284 284 285 286 286 287 289 289 290 291 291 291 292 292 293 294 293 294 295 294 295 295 292 295 295 292 296 295 292 296 296 293 296 296 294 296 296 295 296 297 296 296 297 296 297 297 296 297 298 297 297 298 297 297 297 297 297 297 297 296 297 297 296 297 297 296 296 297 296 296 296 296 296 297 296 297 297 296 296 297 296 297 297 297 299 299 299 302 302 301 303 304 301 301 303 300 300 301 298 299 299 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 296 295 296 295 295 295 295 295 295 295 295 295 295 295 295 294 294 295 294 294 295 294 294 295 294 294 295 294 294 294 294 294 294 294 293 293 293 292 293 293 292 292 292 291 292 291 290 291 290 290 291 290 289 290 289 289 290 288 288 289 287 287 287 285 285 284 283 283 280 278 279 277 273 275 273 270 272 270 267 271 263 260 268 260 259 267 258 257 267 255 256 265 253 253 264 253 252 263 253 250 262 254 249 262 254 248 262 254 247 261 253 245 261 251 243 260 251 242 258 250 241 256 250 240 256 248 240 255 248 240 255 248 241 255 247 242 254 246 242 252 244 241 250 242 240 248 241 240 247 241 239 247 238 237 243 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 250 240 230 253 244 235 257 249 241 261 253 244 263 255 242 264 255 237 264 257 235 265 258 238 266 261 244 266 262 246 267 262 247 267 263 250 267 264 253 268 266 255 269 268 258 270 269 260 270 270 263 271 271 265 271 272 267 273 273 270 274 275 272 275 276 274 276 277 276 277 278 277 278 279 278 279 280 279 280 280 279 280 280 280 281 280 280 281 281 281 282 283 282 283 284 284 285 287 286 288 289 289 290 291 291 292 293 292 293 294 293 294 295 294 295 295 294 295 295 292 295 295 292 295 295 293 295 295 293 295 295 294 295 296 295 296 296 296 296 297 296 297 297 297 297 297 297 296 297 297 296 297 297 296 297 297 296 297 297 296 296 297 296 297 297 296 296 297 296 296 297 296 296 296 296 297 297 297 299 299 299 302 302 301 302 303 300 301 302 299 299 300 298 298 299 297 297 297 297 297 297 297 297 296 297 296 296 296 296 296 296 295 295 295 295 295 295 295 295 295 295 294 295 294 294 295 294 294 295 294 294 295 294 294 295 294 294 295 294 294 294 294 294 294 294 293 293 293 292 293 293 291 292 292 291 292 291 290 291 290 290 291 290 290 290 289 289 290 288 288 288 287 287 287 286 285 284 283 283 280 278 279 277 274 275 273 270 272 270 267 271 264 262 269 261 260 268 258 258 267 256 257 265 255 255 264 255 253 263 256 252 262 257 250 262 257 250 263 255 248 262 254 246 261 252 244 259 251 242 258 250 241 258 249 240 257 249 240 256 248 241 257 248 242 255 247 242 253 245 242 252 243 241 249 241 240 247 241 240 247 241 240 247 239 238 243 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 249 240 230 253 244 235 257 249 241 261 253 244 263 255 243 264 256 238 264 257 236 265 259 239 266 261 243 267 263 246 267 263 248 267 264 251 268 265 254 269 266 256 270 268 259 270 269 261 270 270 263 271 271 265 271 272 268 273 273 270 274 275 272 275 276 274 276 277 276 277 278 277 278 279 278 279 279 279 279 280 279 280 280 279 280 280 280 281 281 281 282 283 282 283 285 284 285 287 286 288 289 289 290 291 291 292 292 292 293 294 293 294 295 294 294 295 294 295 295 294 295 295 293 294 295 293 294 294 292 293 294 292 294 295 293 295 295 294 296 296 296 297 297 297 297 297 297 296 297 296 296 296 296 295 296 297 296 296 297 296 297 297 296 297 297 296 297 297 296 296 297 296 296 297 296 297 297 296 299 300 298 301 302 299 301 302 299 300 300 298 299 299 298 298 298 297 297 297 297 297 297 297 296 296 297 296 296 296 295 295 296 295 295 295 295 295 295 295 294 295 294 294 295 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 293 294 294 293 293 293 292 293 293 291 292 292 291 291 291 290 291 291 290 290 290 290 290 289 289 289 288 288 288 287 287 287 286 285 284 283 283 280 279 278 276 274 275 273 270 272 269 267 271 265 264 270 262 261 268 259 259 267 257 258 266 256 256 264 258 255 264 260 255 264 261 255 265 259 252 264 257 249 263 254 247 261 252 243 259 250 241 258 249 241 258 249 241 258 249 241 257 249 242 256 248 242 254 246 242 253 244 241 251 242 240 248 240 239 246 241 240 247 241 240 247 238 237 242 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 249 240 230 253 244 235 257 249 240 261 253 244 263 255 243 264 256 238 265 257 236 265 260 240 266 261 243 267 263 246 268 264 249 268 264 252 268 265 255 269 267 257 270 268 260 270 269 263 271 270 265 271 271 267 272 272 269 273 273 270 274 275 272 275 275 274 276 277 276 277 278 277 278 278 278 279 279 278 279 279 279 279 279 279 280 280 280 281 281 281 282 283 282 284 285 284 286 287 286 288 289 289 290 291 291 291 292 292 292 293 293 293 294 294 294 295 294 295 296 295 295 296 295 295 295 294 294 294 293 293 294 292 294 294 292 294 295 293 295 296 295 296 297 297 297 297 297 296 296 296 296 296 296 295 296 296 295 296 296 296 297 297 296 297 297 296 297 297 296 297 297 296 297 297 296 297 297 296 298 299 297 300 301 297 300 300 297 299 299 298 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 295 295 295 294 294 295 294 294 295 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 293 293 293 293 293 293 292 292 292 291 292 292 291 291 291 290 291 291 290 290 290 290 290 289 289 289 289 289 288 287 287 286 286 285 284 283 283 280 279 278 276 274 275 272 270 272 269 267 271 265 264 270 263 261 269 261 260 268 260 260 267 261 260 266 262 259 265 263 259 266 263 258 267 261 255 266 258 250 263 255 246 261 252 242 258 250 241 257 250 241 257 250 241 257 249 241 257 249 242 255 247 242 253 245 241 252 243 241 250 241 239 248 239 238 246 240 239 246 241 240 248 238 237 243 235 235 237 238 238 237 240 240 238 239 240 239 239 240 239 247 237 226 249 240 230 253 244 235 257 249 240 261 253 244 263 255 244 264 256 239 265 257 237 266 260 240 266 262 244 267 264 247 268 264 250 268 265 253 269 266 256 269 267 258 270 268 261 270 269 264 271 270 266 271 271 268 272 272 269 273 274 271 274 275 272 275 275 274 276 276 275 277 277 277 278 278 277 278 279 278 279 279 278 279 279 279 280 280 280 281 282 281 282 283 282 284 284 284 286 286 286 288 289 289 289 290 290 290 291 291 292 293 292 293 294 293 294 295 294 295 296 295 295 296 295 295 296 295 295 296 294 295 295 294 295 295 293 295 295 293 295 296 295 296 296 296 296 297 297 296 296 296 295 295 296 295 295 296 295 295 296 296 296 296 296 297 297 296 297 297 296 297 297 296 297 297 296 297 297 296 298 299 297 299 300 297 299 300 297 298 298 298 297 297 298 297 297 298 297 297 297 297 296 297 296 296 296 295 295 295 295 295 295 294 294 295 294 294 295 294 294 295 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 293 293 293 293 293 293 292 292 292 291 291 292 291 291 291 290 290 291 290 290 290 290 289 289 289 289 289 289 288 288 288 286 286 286 284 283 283 279 278 278 275 273 274 272 270 272 269 267 271 266 264 270 264 262 269 263 261 269 263 262 268 264 263 268 266 263 268 266 263 269 266 261 269 262 256 266 259 251 263 254 244 260 251 241 257 249 240 256 250 240 255 250 241 256 250 241 255 248 242 254 246 242 253 244 241 251 242 240 249 239 238 247 238 237 245 240 239 246 241 240 248 240 239 245 236 235 237 239 238 237 240 240 238 239 240 239 240 240 239 247 236 226 249 239 230 253 244 235 257 249 240 261 253 244 263 255 244 264 256 240 265 257 238 266 260 240 266 262 244 267 264 247 268 265 250 268 265 254 269 266 257 270 267 259 270 268 262 271 269 265 271 270 267 271 271 269 272 273 270 273 274 271 274 275 272 274 275 274 276 276 275 277 277 276 277 278 277 278 278 278 278 279 278 279 279 278 280 280 280 281 282 281 282 283 283 284 284 284 285 286 286 287 288 288 289 290 290 290 291 291 291 292 292 292 294 293 293 295 294 294 295 295 295 296 296 295 296 296 296 297 296 296 297 295 296 297 295 296 296 295 295 296 295 295 296 296 295 296 297 295 296 297 295 295 296 295 295 296 295 295 295 295 295 296 295 296 296 296 297 297 296 297 297 296 297 297 296 297 297 296 297 298 296 298 299 297 299 299 298 299 298 298 298 297 298 297 297 298 297 296 297 296 296 296 296 295 296 295 295 295 295 295 295 294 294 295 294 294 295 294 294 294 294 294 294 294 294 294 293 293 294 293 293 294 293 293 294 293 294 294 294 294 294 294 293 293 293 293 293 293 292 292 292 291 291 292 291 291 291 290 290 290 290 290 290 290 289 289 289 289 289 289 288 288 288 286 286 286 283 283 283 279 278 278 275 274 274 272 270 273 270 267 272 268 265 270 267 264 270 266 264 270 266 265 270 267 266 270 268 266 270 268 265 270 267 262 269 263 257 266 258 250 262 253 242 258 249 240 255 248 239 254 249 239 254 249 240 254 249 241 254 247 241 253 245 241 252 243 240 250 241 239 248 238 237 246 238 236 245 240 238 246 242 240 248 240 239 245 236 236 237 239 239 237 240 240 238 240 240 239 240 240 239 247 236 226 249 239 230 253 244 235 257 249 240 260 253 244 263 255 245 264 256 241 265 258 239 266 260 241 267 262 244 268 265 248 268 265 251 269 266 255 269 266 258 270 267 260 270 268 263 271 270 266 271 270 268 272 271 269 272 273 271 273 274 271 274 274 273 274 275 274 275 276 275 276 277 276 277 278 277 277 278 277 278 278 278 279 279 278 280 280 280 281 282 281 282 283 283 284 284 284 285 286 286 287 288 288 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 295 295 296 295 295 297 296 296 297 296 297 297 296 297 297 296 297 297 296 296 296 296 295 295 296 295 295 297 296 296 298 296 296 298 295 295 297 295 295 296 295 295 296 295 296 296 296 296 297 296 296 297 296 296 297 296 297 297 296 297 297 296 298 299 297 299 299 298 299 298 298 298 297 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 295 295 295 294 294 295 294 294 295 294 294 294 294 294 294 293 293 294 293 293 294 293 293 294 293 293 294 293 293 294 293 293 293 293 293 293 293 293 293 293 292 292 292 291 291 291 291 291 291 290 290 290 290 289 290 290 289 289 289 288 289 289 287 288 288 286 286 286 283 283 283 279 278 278 275 274 275 273 271 273 271 268 272 269 266 271 268 266 271 268 267 272 268 267 271 269 268 271 270 267 271 270 266 271 268 263 270 263 257 266 258 249 262 252 242 257 249 239 254 247 238 252 247 238 252 248 239 252 247 240 252 245 240 252 243 240 251 241 239 249 239 238 247 237 236 245 237 236 244 239 238 246 242 240 248 240 239 245 238 238 239 239 238 237 240 240 238 240 240 239 240 240 239 247 236 226 249 239 230 253 244 235 257 248 240 260 252 244 262 255 245 264 256 242 265 258 240 266 260 241 267 262 245 268 265 248 268 266 252 269 267 256 270 267 259 270 268 262 271 269 264 271 270 267 272 271 269 272 272 270 273 273 271 273 274 272 274 274 273 274 275 274 275 276 275 276 277 276 277 277 277 277 278 277 278 278 277 279 279 278 280 280 280 281 282 281 282 283 283 284 284 284 285 286 286 287 288 288 288 289 289 289 290 290 291 292 291 292 293 293 293 294 294 293 295 294 294 296 295 295 296 296 296 297 297 297 298 297 297 298 297 298 298 296 297 298 296 295 296 295 295 295 296 296 296 298 297 297 299 296 296 298 295 296 298 295 295 297 295 295 296 295 296 296 296 296 296 296 296 297 296 296 297 296 297 297 297 298 299 297 299 299 298 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 295 295 295 294 294 295 294 294 295 294 294 294 294 294 294 293 293 294 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 292 293 292 292 292 291 291 291 291 291 291 291 290 290 290 289 290 290 289 289 289 288 289 289 287 288 288 286 286 286 283 283 284 279 279 279 276 275 276 273 272 274 271 269 272 270 267 271 270 268 272 269 268 272 270 269 272 270 269 272 271 268 272 270 267 271 268 263 270 264 257 266 258 248 261 253 243 257 249 241 254 247 239 252 246 238 251 246 238 251 245 239 250 243 239 250 241 238 249 239 238 248 238 237 246 236 235 244 236 235 244 239 238 246 241 240 248 241 239 245 238 239 239 239 238 236 240 240 238 240 240 239 240 241 239 247 236 226 249 239 230 252 243 234 256 248 240 260 252 244 262 255 245 264 256 243 265 258 241 266 260 242 267 263 245 268 265 249 268 267 253 269 267 257 270 267 260 270 268 263 271 269 266 271 270 268 272 271 270 272 272 270 273 273 271 273 274 272 274 274 273 274 275 274 275 276 275 276 276 276 276 277 276 277 277 276 277 278 277 279 279 278 280 280 280 281 282 282 282 283 283 284 284 284 285 286 286 287 287 288 288 289 289 289 290 290 291 291 291 291 293 292 292 294 293 293 294 294 294 295 295 295 296 296 296 297 296 297 297 297 297 298 297 298 298 297 298 298 296 296 297 296 296 297 296 297 297 297 298 297 298 297 297 299 296 296 299 295 295 298 295 295 297 295 295 296 295 295 296 296 296 296 296 296 296 296 297 297 297 297 299 298 299 299 299 298 298 298 297 297 298 297 297 297 296 296 297 296 296 296 296 295 296 295 295 295 295 294 295 294 294 295 294 294 294 294 294 294 294 293 294 293 293 294 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 292 292 292 292 292 291 291 291 291 290 291 291 290 290 290 289 290 290 289 289 289 288 289 289 287 288 288 286 286 286 283 284 284 279 279 280 276 276 276 274 273 274 272 271 273 271 269 272 271 270 273 271 270 273 271 270 273 271 270 273 271 269 272 271 268 272 269 264 270 265 258 267 259 250 262 254 246 258 250 243 255 247 241 253 245 239 252 245 238 250 243 238 249 241 237 248 239 237 248 238 236 246 236 235 245 235 234 244 236 235 243 239 238 246 241 240 248 241 240 245 238 239 240 239 239 237 240 240 238 240 240 239 240 241 239 247 236 226 249 239 229 252 243 234 256 248 240 260 252 244 262 255 246 264 256 244 265 258 242 266 260 243 267 263 246 268 266 250 269 267 254 269 267 258 270 268 261 271 269 264 271 270 266 272 271 269 272 271 270 272 272 271 273 273 271 273 274 272 274 274 273 274 275 274 275 276 275 275 276 276 276 277 276 276 277 276 277 278 277 278 279 278 280 280 280 281 281 282 282 283 283 284 284 284 285 285 286 286 287 288 288 289 289 289 290 290 291 291 291 291 292 292 292 293 293 293 294 294 294 295 295 295 296 295 296 297 296 297 297 297 297 298 297 298 298 297 298 298 297 298 298 297 298 299 297 298 299 297 298 299 297 297 299 297 297 298 299 297 297 299 296 296 299 295 296 298 295 295 296 295 296 296 296 296 296 296 296 297 297 297 298 298 298 298 299 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 295 294 295 294 294 295 294 294 294 294 293 294 293 293 294 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 292 292 292 292 292 292 291 291 291 290 291 291 290 290 290 289 289 290 288 289 289 288 289 289 287 288 288 285 286 286 283 284 284 279 280 280 276 276 277 274 274 275 273 272 274 272 271 273 271 271 274 271 271 274 271 271 273 272 270 273 272 270 273 272 269 273 270 265 271 266 260 267 261 256 264 257 251 261 252 246 257 248 243 254 244 240 252 243 238 250 241 237 248 239 236 246 237 235 246 236 235 245 235 235 244 234 234 243 236 235 243 239 238 245 241 240 248 241 240 245 239 239 240 239 239 236 240 240 238 240 241 239 240 241 239 247 236 226 249 239 229 252 243 234 256 248 239 260 252 244 262 254 246 264 256 244 265 258 243 266 260 243 267 262 246 268 266 252 269 267 256 269 268 259 270 268 262 271 269 264 271 270 267 272 271 269 272 272 270 272 272 271 273 273 272 273 274 272 274 274 273 274 275 274 275 275 275 275 276 275 276 276 276 276 277 276 277 277 277 278 278 278 280 280 280 281 281 282 282 282 283 284 284 284 285 285 286 286 287 287 288 288 289 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 295 295 296 295 296 297 296 297 297 297 297 298 297 298 298 298 298 298 298 298 298 298 298 298 298 298 299 298 297 299 298 297 299 297 297 299 298 298 299 299 297 299 300 296 296 299 295 296 297 295 295 296 295 296 296 296 296 297 297 297 298 298 298 298 299 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 294 294 295 294 294 295 294 293 294 293 293 294 293 293 294 293 293 293 293 293 293 292 293 293 292 293 293 292 293 293 293 293 293 293 293 293 292 292 292 292 292 291 292 292 291 291 291 290 290 291 290 290 290 289 289 290 288 289 289 288 289 289 287 288 288 285 286 286 283 284 284 279 280 280 276 277 277 275 275 276 273 273 274 272 272 274 272 272 274 272 272 274 272 271 274 272 271 273 273 271 273 273 269 273 272 267 272 269 262 268 264 258 264 259 255 262 255 251 260 250 246 257 245 242 253 243 239 250 240 237 247 238 235 245 236 234 245 235 234 245 234 235 244 234 234 243 236 236 243 239 238 246 242 240 248 241 240 245 239 239 240 239 239 236 240 240 238 240 241 239 240 241 239 247 236 226 249 239 229 252 243 234 256 247 239 259 251 244 262 254 246 264 256 245 265 258 244 265 260 244 267 262 247 268 265 253 269 268 257 270 268 260 270 268 263 271 269 265 271 270 268 272 271 269 272 272 270 272 272 271 273 273 272 273 273 272 274 274 273 274 275 274 274 275 274 275 276 275 276 276 276 276 277 276 277 277 277 278 278 278 280 280 280 281 281 282 282 282 283 283 284 284 285 285 286 286 287 287 288 288 289 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 295 295 296 295 296 296 296 296 297 296 297 298 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 297 298 298 297 298 298 296 298 297 297 298 298 298 298 299 297 298 299 296 296 298 295 295 296 295 295 296 296 296 297 297 297 298 299 298 298 299 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 296 295 296 295 295 295 294 294 295 294 294 294 293 293 294 293 293 294 293 293 293 293 292 293 292 292 293 292 292 293 292 292 293 292 292 293 292 293 293 292 293 292 292 292 292 292 292 291 292 292 291 291 291 290 290 290 290 290 290 289 289 290 288 289 289 287 289 289 287 288 288 285 287 286 283 284 284 280 280 281 277 278 278 275 276 276 274 274 275 273 273 274 273 273 274 272 272 274 273 272 274 273 272 274 274 272 274 273 270 274 273 268 273 271 265 272 269 263 268 265 260 264 259 255 262 253 250 259 247 244 255 243 241 251 239 238 247 237 235 245 235 233 244 234 234 244 234 235 243 234 234 243 236 236 243 239 239 246 242 240 248 241 240 245 239 239 240 239 239 236 240 241 238 240 241 239 240 241 239 246 236 226 249 239 229 252 243 234 255 247 239 259 251 243 262 254 246 263 256 245 265 258 246 265 260 245 266 262 247 268 265 254 269 268 258 270 268 261 270 269 264 271 269 266 271 270 268 271 271 270 272 272 271 272 272 271 272 273 272 273 273 272 274 274 273 274 275 274 274 275 274 275 275 275 276 276 275 276 277 276 277 277 277 278 278 278 280 279 280 281 281 281 282 282 283 283 284 284 285 285 286 286 287 287 287 288 288 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 294 295 296 295 296 296 296 296 297 296 297 298 297 298 298 298 298 298 298 298 298 298 298 298 299 298 298 299 298 299 299 298 299 299 298 298 299 298 298 298 297 297 298 297 297 297 296 296 297 296 295 296 296 296 297 297 297 297 298 298 298 299 299 298 299 298 298 298 298 298 298 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 294 294 294 294 294 294 293 293 294 293 293 293 293 292 293 293 292 293 292 292 293 292 292 293 292 292 293 292 292 293 292 292 293 292 292 292 292 292 292 292 292 291 292 291 291 291 291 290 290 290 289 290 290 289 289 290 288 289 289 287 288 289 287 288 288 285 287 287 283 285 285 281 282 282 278 279 279 276 276 277 274 275 275 274 274 274 273 273 274 273 273 275 273 273 274 274 272 274 274 272 274 274 271 274 273 269 274 272 267 273 271 266 272 269 264 268 264 259 263 256 253 261 249 246 257 244 242 253 239 239 248 236 236 245 235 234 244 234 234 244 234 235 243 234 235 243 236 237 243 239 239 246 242 240 247 241 240 245 239 240 240 240 239 236 240 241 238 240 241 239 240 241 239 246 236 225 249 239 229 252 242 234 255 247 239 259 251 243 261 254 246 263 256 246 265 258 246 265 260 246 266 262 248 268 265 254 269 268 259 270 268 262 270 269 264 271 269 266 271 270 268 271 271 270 272 272 271 272 272 271 272 272 272 273 273 273 274 274 273 274 275 274 274 275 274 275 275 275 275 276 275 276 276 276 277 277 277 278 278 278 280 279 280 281 281 281 282 282 283 283 284 284 284 285 286 286 287 287 287 288 288 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 298 298 298 298 298 299 299 298 299 299 298 299 299 298 299 299 299 299 299 298 299 299 298 298 299 298 298 299 297 297 298 297 296 297 297 296 297 297 296 297 298 297 298 299 298 298 299 299 298 299 298 298 298 298 298 298 297 297 298 297 297 297 296 296 296 296 296 296 295 295 295 294 294 294 294 293 294 293 293 293 293 293 293 293 292 293 292 292 293 292 292 293 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 291 291 291 291 291 291 290 290 290 289 290 290 289 289 289 288 288 289 287 288 288 287 288 288 286 287 287 284 285 285 282 283 283 279 280 279 276 277 277 275 275 275 274 274 275 274 274 275 274 273 275 274 273 275 275 273 275 275 273 275 274 272 275 274 270 274 273 269 274 273 268 274 272 267 272 268 263 266 258 255 263 250 249 259 245 244 254 241 240 249 237 237 246 235 235 244 235 235 244 235 236 243 235 236 243 237 237 244 240 239 246 242 240 247 241 240 245 239 240 239 240 239 236 240 241 238 240 241 239 240 241 239 246 236 225 249 239 229 252 242 233 255 246 238 258 250 243 261 253 246 263 256 246 264 258 247 265 259 246 266 261 248 268 264 254 270 268 260 270 269 263 270 269 265 271 269 266 271 270 268 271 271 270 272 272 271 272 272 272 272 272 272 273 273 272 274 274 273 274 275 274 274 275 274 275 275 275 275 276 275 276 276 276 277 277 277 278 278 279 279 279 280 281 281 281 282 282 283 283 284 284 284 285 286 286 287 287 287 288 288 289 290 290 290 291 291 291 292 292 292 293 293 293 294 293 294 294 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 298 298 298 299 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 298 299 299 298 298 299 298 298 298 297 297 297 298 298 298 299 298 299 299 299 299 299 299 299 299 298 298 299 298 298 298 298 297 298 297 297 297 297 296 296 296 296 296 295 295 295 294 294 294 294 293 294 293 293 293 293 292 293 292 292 293 292 292 293 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 292 291 291 291 290 291 291 290 290 290 289 290 290 289 289 289 288 288 289 287 288 288 287 288 288 286 287 287 284 286 285 283 284 284 280 281 280 277 278 278 275 276 276 274 275 275 274 274 275 274 274 275 275 274 275 275 274 275 275 274 275 275 273 275 274 271 275 274 270 275 273 269 274 273 269 274 270 266 270 261 257 264 253 251 260 246 246 256 242 242 251 239 239 247 236 237 245 236 237 245 236 237 244 236 237 244 238 238 244 240 240 246 242 240 247 241 240 245 239 240 239 240 239 237 240 241 238 240 241 239 240 241 239 246 236 225 249 239 229 251 242 233 255 246 238 258 250 242 261 253 245 263 255 246 264 257 248 265 259 247 266 260 248 268 264 255 270 267 260 270 269 263 271 269 265 271 270 267 271 270 268 271 271 270 272 272 271 272 272 272 272 272 272 272 273 272 273 274 273 274 275 274 274 275 274 275 275 275 275 275 275 276 276 276 277 277 277 278 278 279 279 279 280 281 281 281 282 282 283 283 284 284 284 285 286 286 287 287 287 288 288 289 290 289 290 291 291 291 292 292 292 293 292 293 294 293 294 294 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 298 298 298 298 298 298 298 298 298 299 298 299 299 298 299 299 298 299 299 298 299 299 299 299 299 299 299 299 298 299 299 298 298 299 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 295 295 295 294 294 294 294 293 294 293 293 293 293 292 293 292 292 293 292 292 292 292 292 292 292 291 292 292 291 292 291 292 292 291 292 292 292 292 292 292 292 292 291 292 291 291 291 290 291 291 290 290 290 289 289 289 289 289 289 288 288 288 287 288 288 287 288 288 286 287 287 285 286 286 283 285 284 281 283 281 278 279 278 276 277 276 275 275 275 275 275 275 275 275 275 275 274 276 276 274 276 276 274 276 276 274 276 275 272 276 274 271 275 274 270 275 274 270 274 271 268 272 264 259 265 254 252 261 248 247 257 244 244 253 240 241 249 238 239 247 237 238 246 237 238 245 237 238 245 238 239 245 240 240 247 242 240 247 241 240 245 240 240 239 240 239 237 241 241 238 240 241 239 240 241 239 246 236 225 249 238 229 251 242 233 254 246 238 258 249 242 260 253 245 262 255 246 264 257 248 265 258 249 266 260 249 268 264 255 270 267 260 270 269 264 271 269 266 271 270 267 271 270 269 271 271 270 272 272 271 272 272 272 272 272 272 272 273 272 273 274 273 274 274 274 274 275 274 275 275 275 275 275 275 276 276 276 277 277 277 278 278 279 279 279 280 280 281 281 281 282 283 283 284 284 284 285 286 286 287 287 287 288 288 289 289 289 290 291 290 291 292 291 292 293 292 293 294 293 294 294 294 295 295 295 296 296 296 296 297 296 297 297 297 297 298 298 298 298 298 298 298 298 298 298 299 298 298 299 298 298 299 298 298 299 298 299 299 299 299 299 299 299 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 298 297 298 297 297 297 297 296 297 296 296 296 295 295 295 294 294 294 294 293 294 293 293 293 293 292 293 292 292 293 292 292 292 292 291 292 292 291 292 291 291 292 291 291 292 291 291 292 291 292 292 291 292 291 291 291 291 291 291 290 291 291 290 290 290 289 289 289 289 289 289 288 288 288 287 288 288 287 288 287 286 287 287 285 287 286 284 285 285 282 284 282 280 281 279 277 278 277 275 276 275 275 275 275 275 275 275 275 275 276 276 275 276 276 275 277 276 275 277 276 273 276 275 272 276 274 271 275 274 271 275 272 269 274 266 262 268 256 253 262 251 250 260 245 246 254 243 243 251 240 241 248 239 240 247 238 240 246 238 240 246 239 240 246 241 240 247 242 240 247 241 240 245 240 240 239 240 240 237 241 241 238 240 241 239 240 241 239 246 236 225 248 238 229 251 242 233 254 245 237 257 249 241 260 252 244 262 255 246 263 256 248 265 258 249 265 259 249 268 263 255 270 267 261 270 269 265 271 269 266 271 270 268 271 270 269 271 271 270 272 272 271 272 272 272 272 272 272 272 273 272 273 273 273 274 274 274 274 275 274 275 275 275 275 275 275 276 276 276 277 277 277 278 278 279 279 279 280 280 281 281 281 282 283 283 284 284 284 285 286 286 286 287 287 288 288 289 289 289 290 291 290 291 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 296 297 297 297 297 297 298 297 298 298 298 298 298 298 298 299 298 298 299 298 298 299 298 298 299 298 298 299 298 299 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 299 298 298 298 297 297 298 297 296 297 296 296 296 295 295 295 294 294 295 294 293 294 293 293 293 293 292 293 292 292 293 292 292 292 292 291 292 292 291 292 291 291 292 291 291 292 291 291 292 291 291 292 291 291 291 291 291 291 291 291 290 290 291 290 290 290 289 289 289 289 289 289 288 288 288 287 288 288 287 287 287 286 287 287 285 287 286 284 286 285 283 285 283 281 282 280 278 279 277 276 277 276 276 276 275 276 276 276 276 275 276 276 275 277 277 276 277 276 275 277 276 274 277 275 273 276 274 272 276 274 271 275 273 271 275 267 265 270 257 254 262 252 252 261 246 247 256 244 245 253 242 243 250 241 242 249 240 242 247 240 241 247 240 241 247 241 241 247 242 240 247 242 241 244 241 242 241 240 240 237 241 241 238 240 241 240 240 241 239 246 236 225 248 238 228 251 241 233 254 245 237 257 249 241 260 252 244 261 254 246 263 256 248 264 257 250 266 259 250 267 263 255 270 267 261 271 269 265 271 269 267 271 270 268 271 270 269 271 271 270 272 272 271 272 272 272 272 272 272 272 273 272 273 273 273 274 274 274 274 274 274 275 275 275 275 275 275 276 276 276 277 277 278 278 278 279 279 279 280 280 281 281 281 282 283 283 284 284 284 285 286 286 286 287 287 288 288 289 289 289 290 291 290 291 292 291 292 293 292 293 294 293 294 295 294 295 296 295 296 296 296 296 297 296 297 297 297 297 297 298 297 298 298 298 298 298 298 298 299 298 298 299 298 298 299 298 298 299 298 298 299 298 298 299 298 299 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 298 297 298 297 297 297 296 296 296 295 295 295 294 294 295 294 293 294 293 293 294 293 293 293 292 292 293 292 292 292 292 291 292 291 291 291 291 291 291 291 291 291 291 291 292 291 291 291 291 291 291 291 291 291 291 291 290 290 290 290 290 290 289 289 289 289 289 289 288 288 288 287 288 288 287 287 287 286 287 287 285 286 286 284 286 285 283 285 284 282 284 282 279 281 279 277 278 276 276 277 276 276 276 276 276 276 276 277 276 277 277 276 277 277 276 278 277 275 277 276 274 277 275 272 276 274 272 276 273 271 275 268 267 271 258 255 263 253 253 262 247 248 257 246 246 254 244 245 252 242 244 250 241 243 249 241 242 248 241 242 247 242 241 247 242 241 247 242 241 244 241 242 241 240 240 238 241 241 239 240 241 240 240 241 240 246 236 225 248 238 228 251 241 232 254 245 237 257 248 240 259 251 244 261 254 246 263 255 248 264 257 250 266 259 252 267 262 255 269 266 261 271 269 265 271 269 267 271 270 268 271 270 269 271 271 270 272 272 271 272 272 272 272 273 272 272 273 272 273 273 273 274 274 274 274 274 274 275 275 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 280 281 281 282 283 283 284 284 284 285 286 286 286 287 287 288 288 289 289 289 290 291 290 291 292 291 292 293 292 293 294 293 293 295 294 294 295 295 295 296 296 296 297 296 297 297 297 297 297 298 297 297 298 297 298 298 298 298 298 298 298 299 298 298 299 298 298 299 298 298 299 298 298 299 298 299 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 298 298 298 298 297 298 297 297 297 296 296 296 295 295 296 294 294 295 294 293 294 293 293 294 293 293 293 293 292 293 292 292 292 292 292 292 291 291 291 291 291 291 291 291 291 291 291 291 291 291 291 291 291 291 291 290 291 290 290 290 290 290 290 290 290 289 289 289 289 289 289 288 288 288 287 287 288 287 287 287 286 286 286 285 286 286 285 286 285 284 285 284 282 284 283 280 282 280 278 279 277 277 277 276 276 277 276 277 276 276 277 276 277 277 276 277 277 276 278 277 276 278 276 274 277 275 273 277 275 273 276 274 272 276 269 268 272 258 257 264 254 254 262 248 249 258 247 247 256 245 246 253 244 245 251 242 244 250 242 243 249 242 242 248 242 242 248 243 241 247 242 241 244 242 242 241 241 240 238 241 241 239 240 241 240 240 241 240 246 236 225 248 238 228 250 241 232 253 244 236 256 248 240 259 251 243 261 253 245 262 255 248 263 256 250 265 259 252 267 262 255 269 266 261 271 269 266 271 269 268 271 270 269 271 270 269 271 271 270 272 272 271 272 272 272 273 273 272 272 273 272 273 273 273 274 274 274 274 274 274 275 275 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 280 281 281 282 283 282 283 284 284 285 286 286 286 287 287 288 288 289 289 289 290 291 290 291 292 291 292 293 292 292 294 293 293 295 294 294 295 295 295 296 296 296 297 296 296 297 297 297 297 298 297 297 298 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 299 299 299 299 299 299 299 298 299 298 298 298 297 297 297 296 296 297 295 295 296 295 294 295 294 294 295 294 293 294 294 293 294 293 293 293 293 292 292 292 292 292 292 291 291 291 291 291 291 291 291 291 291 291 291 290 291 291 290 291 291 290 291 290 290 290 290 290 290 289 290 289 289 289 289 288 289 288 288 288 287 287 287 287 287 287 286 286 286 285 286 285 285 286 285 284 285 284 283 285 283 281 283 281 279 281 278 278 278 277 277 277 277 277 277 277 277 276 277 277 277 278 277 277 278 277 276 278 277 275 278 276 274 277 275 273 277 274 272 276 270 269 273 260 259 265 254 254 262 248 249 259 247 248 257 246 247 255 244 246 253 243 245 251 243 244 249 243 243 249 243 242 248 243 241 247 242 241 244 242 242 241 241 240 238 241 241 239 240 241 240 240 241 240 246 236 225 248 238 228 250 241 232 253 244 236 256 247 240 258 250 243 260 253 245 262 254 247 263 256 249 265 258 252 267 261 256 269 265 260 271 268 266 271 269 268 271 270 269 271 270 270 271 271 270 272 272 271 272 272 272 273 273 272 272 273 272 273 273 273 273 274 274 274 274 274 275 275 275 275 275 276 276 276 277 277 277 278 277 278 279 279 279 280 280 280 281 281 282 283 282 283 284 284 285 286 286 286 287 287 288 288 288 289 289 289 291 290 290 292 291 291 293 292 292 294 293 293 295 294 294 296 295 295 296 296 296 297 297 296 297 297 297 297 298 297 297 298 297 297 298 297 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 299 299 299 299 299 299 299 299 298 298 298 297 297 297 296 296 297 295 295 296 295 294 295 295 294 295 294 294 294 294 294 294 293 293 293 293 293 293 292 292 292 292 292 292 291 291 291 291 291 291 291 291 291 291 290 291 291 290 291 291 290 291 290 290 290 290 290 290 289 289 289 289 289 289 288 288 288 288 288 288 287 287 287 286 286 286 286 286 285 285 285 285 285 285 284 285 284 283 285 284 282 284 282 280 282 279 279 279 277 278 278 277 277 277 277 278 277 277 278 277 278 278 277 278 277 277 279 277 276 278 276 274 278 275 273 277 273 272 276 269 269 273 261 261 266 254 255 262 250 251 260 248 249 257 247 248 256 245 247 253 244 246 251 243 244 250 243 244 249 243 243 248 243 242 247 242 242 244 242 242 241 241 241 239 241 241 239 240 241 240 240 241 240 246 236 225 248 238 228 250 241 232 253 243 235 256 247 239 258 250 242 260 252 244 261 254 247 262 255 249 264 257 252 266 261 256 269 265 260 270 268 265 271 269 268 271 270 269 271 270 270 271 271 271 272 272 271 272 272 272 273 273 272 273 273 272 273 273 273 273 273 273 274 274 274 275 275 275 275 275 276 276 276 277 277 277 278 277 278 279 278 279 280 280 280 281 281 282 283 282 283 284 284 285 286 286 286 287 287 288 288 288 289 289 289 291 290 290 292 291 291 293 292 292 294 293 293 295 294 295 296 295 295 296 296 296 297 297 296 297 297 297 297 298 297 297 298 297 297 298 297 297 298 297 298 298 298 298 298 298 298 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 299 299 299 299 299 299 299 299 298 298 298 297 297 298 296 296 297 296 295 296 295 295 296 295 295 295 295 294 294 295 294 294 294 294 293 293 293 293 293 293 292 292 292 292 292 292 291 291 291 291 291 291 291 291 290 291 291 290 290 291 290 290 290 290 290 290 289 290 289 289 289 288 289 289 288 288 288 287 288 288 287 287 287 286 286 286 285 285 285 285 285 285 285 284 284 285 284 283 285 284 282 284 282 281 282 280 279 280 278 278 278 278 278 278 278 278 278 278 278 277 278 278 277 278 278 277 279 278 276 279 277 275 278 275 274 277 273 272 275 269 269 272 262 263 266 253 256 262 251 253 260 248 249 258 247 248 256 246 247 254 244 246 252 244 245 250 244 244 249 244 243 248 243 242 247 242 242 244 242 242 241 241 241 239 241 242 240 240 241 240 240 241 240 246 236 225 248 238 228 250 240 231 252 243 235 255 246 238 257 249 241 259 252 244 260 253 247 262 254 249 264 257 251 266 260 255 268 265 259 270 268 265 271 269 269 271 270 270 271 270 270 271 271 271 271 272 271 272 272 272 273 273 272 273 273 273 273 273 273 273 273 273 274 274 274 275 275 275 275 275 275 276 276 276 277 277 277 277 278 279 278 279 280 280 280 281 281 282 283 283 284 284 284 285 286 286 286 287 287 288 288 288 289 289 289 291 290 290 292 291 291 293 292 292 294 293 293 295 294 294 296 295 295 296 296 296 297 297 296 297 297 297 297 298 297 297 298 297 297 298 297 297 298 297 297 298 297 297 298 298 298 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 300 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 299 299 299 298 298 298 297 298 298 296 296 297 296 296 296 296 295 296 296 295 295 296 295 295 295 295 294 295 295 294 294 294 293 293 294 293 293 293 292 292 292 291 292 291 291 291 291 291 291 290 291 291 290 290 290 290 290 290 290 290 289 289 290 289 289 289 288 288 289 287 288 288 287 287 287 286 287 287 286 286 286 285 285 285 285 285 284 285 284 284 284 284 283 284 284 282 284 283 281 282 281 280 281 279 279 279 278 278 278 278 278 278 278 278 278 279 278 278 279 278 278 279 278 277 279 277 276 278 275 274 277 272 271 275 266 266 271 263 264 267 254 258 263 252 253 260 250 251 259 247 249 257 246 248 255 245 246 253 244 245 251 244 245 250 244 244 249 244 243 247 242 243 244 242 242 241 242 241 239 241 242 240 240 241 240 240 241 240 246 236 225 248 238 228 250 240 231 252 243 235 255 246 238 257 249 241 259 251 243 260 252 246 261 254 248 263 256 251 266 259 255 268 264 258 270 267 264 271 269 269 271 270 270 271 270 270 271 271 271 271 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 273 273 274 274 274 275 275 275 275 275 275 276 276 276 277 277 277 277 278 278 278 279 280 280 280 281 281 282 283 283 284 284 284 285 286 286 286 287 287 287 288 288 289 289 289 290 290 290 292 291 291 293 292 292 294 293 294 295 294 294 296 295 295 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 297 298 297 297 298 297 297 298 297 298 298 298 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 300 299 300 299 299 299 299 299 298 299 299 297 298 298 296 297 297 296 296 297 297 296 296 297 296 296 297 296 295 296 296 295 295 296 294 294 295 293 294 294 293 293 294 292 293 293 292 292 292 291 291 291 291 291 290 290 291 290 290 290 290 290 290 289 290 289 289 289 289 289 289 288 288 288 287 288 288 286 287 287 286 286 287 285 286 286 285 285 285 285 284 284 284 284 284 284 284 283 284 283 283 284 283 282 283 281 281 281 280 280 280 279 279 279 279 279 279 279 279 279 279 279 278 280 279 278 280 278 277 280 277 276 279 275 274 277 271 271 274 264 266 270 265 266 269 257 261 265 252 255 261 250 251 259 248 250 258 247 249 256 245 247 253 245 246 251 245 246 250 244 245 249 244 243 247 241 243 244 242 241 241 242 242 240 241 242 240 240 241 240 240 241 240 246 236 225 248 238 228 250 240 231 252 242 234 254 245 237 257 248 240 258 250 243 259 252 246 260 253 247 262 255 250 265 258 254 268 263 258 270 267 263 271 269 268 271 270 270 271 270 271 271 271 271 271 271 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 275 275 275 275 275 275 276 276 276 277 277 277 277 278 278 278 279 280 279 280 281 281 282 283 283 283 284 284 285 286 285 286 287 287 287 288 288 289 289 289 290 290 290 292 291 291 293 292 293 294 293 294 295 294 294 296 295 295 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 297 297 298 298 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 299 299 300 300 299 300 300 299 299 299 299 299 299 299 298 299 299 297 298 298 296 297 298 297 297 298 297 297 297 298 297 297 298 297 296 297 297 295 296 297 295 295 296 294 294 295 293 293 294 293 293 294 292 292 292 291 292 291 291 291 291 290 291 290 290 290 290 290 290 289 290 289 289 289 289 288 289 288 288 288 287 287 288 286 287 287 285 286 286 285 285 286 285 285 285 284 284 284 284 284 284 284 284 283 284 283 283 283 283 282 283 282 281 282 281 280 281 280 280 280 279 280 279 280 280 279 280 280 279 280 279 279 280 279 278 280 278 276 279 275 274 277 270 270 274 264 266 270 266 267 269 261 263 267 253 257 263 250 253 260 249 251 258 247 249 257 245 248 254 245 247 252 246 247 251 246 246 250 244 244 247 241 242 244 242 242 241 242 242 240 241 242 240 241 241 240 240 241 240 246 236 225 248 238 227 249 240 231 252 242 234 254 245 237 256 247 240 258 250 242 259 251 245 260 252 247 261 254 249 264 257 253 267 262 258 269 266 262 270 269 268 271 270 270 271 271 271 271 271 271 271 271 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 275 275 275 275 275 275 276 276 276 277 277 277 277 278 278 278 279 280 279 280 281 281 282 283 282 283 284 284 284 285 285 286 286 286 287 288 287 289 289 289 290 290 290 292 291 291 293 292 292 294 294 293 295 295 294 296 295 295 296 296 296 297 297 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 299 299 300 300 299 300 300 299 299 299 300 299 299 300 298 299 299 297 298 298 297 298 298 297 298 298 298 298 298 299 298 298 299 299 297 298 299 296 297 298 295 296 297 294 295 296 294 294 295 293 293 294 292 293 293 291 292 292 291 291 291 290 291 290 290 290 289 290 290 289 289 289 288 289 288 288 289 287 287 288 286 287 288 286 286 287 285 286 286 285 285 285 284 284 285 284 284 284 284 284 284 284 283 283 283 283 283 283 282 282 283 282 281 282 281 281 281 280 280 280 280 280 280 280 280 280 281 280 280 281 280 279 281 279 278 280 278 277 279 276 275 278 270 270 274 264 266 270 266 267 270 263 266 269 258 261 265 253 255 262 249 252 260 247 250 257 246 248 254 246 247 251 247 247 251 247 248 251 244 245 248 241 242 243 242 242 242 242 242 241 242 242 241 241 241 241 240 241 240 246 236 224 248 237 227 249 240 230 251 241 233 254 244 236 256 247 239 257 249 242 258 250 244 259 251 246 261 253 248 264 256 252 267 261 257 269 265 261 270 269 267 271 271 270 271 271 271 271 271 271 271 271 272 271 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 275 275 275 275 275 276 276 276 276 277 277 277 277 278 278 278 279 280 279 280 281 280 281 282 282 283 284 283 284 285 285 285 286 286 287 287 287 289 289 289 290 290 290 292 291 291 293 292 292 294 293 293 295 294 294 296 295 295 296 296 295 296 296 296 296 297 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 297 298 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 299 300 300 299 300 300 299 299 299 298 299 299 298 298 299 298 298 299 299 298 300 300 299 299 300 300 298 299 300 297 297 299 296 296 298 295 295 297 293 294 296 293 293 295 292 292 294 291 292 293 290 291 292 290 291 290 290 290 289 289 290 289 289 289 288 289 288 288 289 287 287 288 286 287 287 285 286 287 285 285 286 284 285 285 284 284 285 284 284 284 283 283 284 283 283 283 283 283 283 283 282 282 283 282 282 282 281 281 281 281 281 281 281 281 281 281 281 280 281 280 280 281 280 279 281 280 278 280 279 277 279 276 275 278 272 271 275 265 266 271 267 268 270 265 267 270 261 264 268 257 259 265 251 254 262 248 252 259 246 249 255 246 248 252 247 248 251 248 248 251 245 246 249 241 243 244 242 243 242 243 243 241 242 242 241 241 241 241 240 241 240 246 236 224 248 237 227 249 239 230 251 241 233 253 244 236 255 246 239 257 248 241 257 250 244 258 250 245 260 252 248 263 255 251 266 259 256 269 264 260 270 268 267 271 270 270 271 271 271 271 271 271 271 271 272 271 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 275 274 275 275 275 276 276 276 276 277 277 277 277 277 278 278 278 279 279 280 281 280 281 282 282 282 283 283 284 285 284 285 286 286 287 288 287 289 289 289 290 290 290 292 291 291 293 292 292 294 293 293 295 294 294 296 295 295 296 296 295 296 296 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 300 299 300 300 299 299 300 298 299 299 298 299 299 298 298 299 300 299 300 300 299 299 299 300 299 300 302 297 298 301 296 297 301 294 295 299 293 294 298 292 292 297 291 292 296 290 291 294 290 290 292 289 290 291 289 290 290 289 290 289 289 289 288 289 289 288 288 287 287 288 286 287 287 285 286 287 285 285 286 284 285 285 284 284 285 283 284 284 283 283 284 283 283 283 283 283 283 283 282 282 283 282 282 282 281 281 282 281 281 282 281 281 281 281 281 281 281 280 280 281 280 279 281 280 279 280 279 278 279 277 276 278 273 273 276 266 267 272 268 269 271 267 268 271 264 267 270 261 263 268 255 258 265 249 253 261 247 251 257 246 249 253 247 249 251 247 248 250 246 247 250 242 244 245 243 243 243 243 243 242 242 242 241 241 241 241 240 241 240 246 236 224 247 237 227 249 239 230 251 241 232 253 243 235 255 246 238 256 248 241 257 249 243 257 250 245 259 251 247 262 254 250 265 258 254 268 263 259 270 267 266 271 270 270 271 271 271 271 271 272 271 271 272 271 272 272 272 272 272 272 273 273 273 273 273 273 273 273 274 274 274 275 274 275 275 275 276 276 276 276 276 277 277 277 277 278 278 278 279 279 279 280 280 281 282 281 282 283 283 284 285 285 286 286 286 287 288 287 289 289 289 290 290 290 292 291 291 293 292 292 294 293 293 295 294 294 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 296 296 296 297 297 296 297 297 296 297 297 297 297 297 297 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 300 299 300 300 299 300 300 299 299 299 298 299 299 299 299 299 299 299 299 300 299 300 300 301 299 299 301 298 298 301 297 297 301 295 295 299 293 293 298 291 292 296 290 291 296 289 290 295 288 289 293 288 289 292 289 290 290 289 290 290 289 289 289 289 289 288 288 288 287 288 286 287 287 286 286 286 285 285 286 284 285 285 284 284 285 283 284 284 283 283 284 283 283 283 283 283 283 283 282 282 283 282 282 283 282 282 282 282 281 282 282 281 282 282 281 281 281 280 280 281 280 279 280 280 279 280 279 278 279 278 276 278 275 274 277 270 270 273 269 270 272 268 269 271 266 268 271 263 266 269 258 262 267 251 256 263 248 252 258 246 250 254 247 250 252 247 249 250 246 248 250 242 244 245 243 244 243 243 243 242 242 242 242 241 241 241 240 241 240 246 235 224 247 237 227 249 239 230 251 241 232 253 243 235 254 245 237 256 247 240 256 248 243 256 249 244 258 250 246 261 253 249 264 256 253 268 261 258 270 266 264 270 270 269 271 271 271 271 271 272 271 271 272 271 272 272 272 272 272 272 273 273 273 273 273 273 273 273 274 274 274 275 274 275 275 275 275 276 276 276 276 277 277 277 277 278 278 278 279 279 279 280 280 280 281 282 282 283 283 284 285 285 286 287 286 288 288 288 289 289 289 290 290 290 292 291 291 293 292 292 294 293 293 295 294 294 295 295 295 296 295 295 296 296 296 296 296 296 296 296 296 296 296 296 296 297 296 297 297 296 297 297 296 297 297 297 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 299 299 298 298 299 297 298 298 298 299 298 299 300 298 300 300 300 299 298 300 298 298 301 297 296 301 295 295 299 293 293 297 291 291 295 289 289 294 289 289 294 288 288 293 287 288 293 287 288 292 289 289 290 289 289 289 289 289 288 288 288 287 288 287 287 287 286 286 286 285 286 286 285 285 285 284 284 285 284 284 284 283 283 284 283 283 284 283 283 283 283 283 283 283 283 282 283 282 282 282 282 281 282 281 281 282 282 281 281 281 280 280 281 280 280 280 279 279 280 279 278 279 278 277 279 276 275 277 272 272 275 270 270 272 269 270 272 267 269 271 265 268 270 261 265 268 255 259 265 249 254 260 247 251 255 247 250 252 247 249 250 246 248 250 243 244 246 243 244 244 243 243 243 242 243 242 241 241 241 240 241 240 246 235 224 247 237 227 249 239 229 250 240 231 252 242 234 254 245 237 255 247 240 255 247 242 256 248 243 257 249 245 260 252 248 263 255 252 267 260 258 269 264 263 270 269 269 271 271 271 271 271 272 271 272 272 271 272 272 272 272 272 272 273 273 273 273 273 273 273 274 274 274 274 275 274 275 275 275 275 276 276 276 276 276 277 277 277 278 278 278 279 279 279 280 280 280 281 282 282 283 284 284 285 285 286 287 287 288 288 288 289 289 289 290 290 290 291 291 291 293 292 292 294 293 293 294 294 294 295 295 295 295 295 295 296 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 297 296 297 297 297 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 300 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 299 299 298 298 298 297 297 298 299 299 298 299 299 299 299 298 299 297 297 299 297 296 300 296 296 300 295 294 298 293 292 297 291 290 295 289 289 293 288 288 293 288 288 293 287 287 293 286 287 292 288 288 290 288 288 290 288 288 289 288 288 288 288 287 287 287 287 287 286 286 286 285 285 285 285 284 285 285 284 284 284 283 283 284 283 283 284 283 283 283 283 283 283 283 283 282 283 282 282 282 281 281 282 281 280 281 281 280 281 281 280 280 281 280 280 280 280 279 280 279 278 279 278 277 279 276 276 277 273 273 275 271 271 272 269 270 272 268 270 271 266 269 271 263 267 269 258 263 267 251 257 262 248 253 256 247 251 253 246 250 251 245 247 249 243 244 246 243 244 244 243 244 243 242 243 242 241 242 241 240 241 240 246 235 224 247 237 227 248 239 229 250 240 231 252 242 233 254 244 236 255 246 239 255 247 241 255 247 242 256 248 244 258 250 247 262 254 251 266 258 256 269 263 262 270 268 268 271 271 271 271 271 272 271 272 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 274 274 274 274 274 274 275 275 275 275 275 276 276 276 276 277 277 277 277 278 278 279 278 279 280 280 280 281 282 282 284 284 284 285 285 286 287 286 287 288 287 289 289 289 290 290 290 291 291 291 293 292 292 294 293 293 294 294 294 295 294 294 295 295 295 296 295 295 296 295 296 296 296 296 296 296 296 296 296 296 296 296 296 296 297 296 297 297 297 297 297 297 297 298 297 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 298 299 297 298 297 297 297 297 299 299 298 298 298 298 298 297 299 297 296 299 297 296 300 296 295 299 294 293 298 292 292 296 291 290 294 289 289 293 288 288 293 287 288 292 286 287 292 285 286 291 285 286 291 286 287 290 286 287 289 287 287 288 288 287 287 287 287 287 286 286 286 285 285 285 284 284 284 284 283 284 284 283 283 284 283 283 284 283 283 283 283 283 283 283 283 282 283 282 281 282 281 279 281 280 279 280 280 280 281 281 280 280 281 280 280 280 280 279 280 279 278 279 278 277 279 277 276 277 274 274 275 271 271 273 270 271 272 269 270 272 267 270 271 265 268 270 261 265 268 253 260 264 250 255 258 248 252 253 247 250 251 245 247 249 244 245 247 244 245 245 243 244 243 242 243 242 241 242 242 240 241 240 246 235 224 247 237 226 248 238 229 250 240 231 252 242 233 253 244 236 254 245 238 254 246 240 254 246 241 255 247 243 258 249 246 261 253 250 265 257 254 269 262 261 270 268 268 271 271 271 271 272 272 271 272 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 274 274 274 274 274 274 275 275 275 275 275 275 276 276 276 276 277 277 277 278 278 279 279 279 280 280 280 282 282 282 284 284 284 286 285 286 287 286 287 288 287 289 289 288 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 294 294 295 295 295 295 295 295 296 295 295 296 296 295 296 296 295 296 296 295 296 296 296 296 296 296 296 297 296 297 297 297 297 297 297 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 298 298 298 297 297 297 298 298 298 299 298 298 298 297 298 297 297 299 297 296 300 296 295 299 295 294 298 294 293 297 292 291 295 291 290 294 289 289 293 288 288 293 287 287 292 286 286 292 284 285 291 283 284 290 282 284 290 283 284 288 285 286 288 287 287 287 287 287 287 285 285 286 282 282 284 281 281 283 282 282 283 282 281 282 283 283 283 284 283 283 283 283 283 282 283 282 282 282 282 281 281 281 278 280 279 278 279 279 279 280 280 280 280 280 280 280 280 280 279 280 279 278 279 278 278 279 277 276 277 274 274 275 272 272 273 271 271 273 270 271 272 268 270 271 266 269 271 263 267 269 257 262 265 251 256 259 249 253 255 247 251 252 246 248 250 244 246 247 244 245 245 244 244 243 242 243 243 241 242 242 240 241 240 246 235 224 247 237 226 248 238 229 250 239 230 251 241 232 253 243 235 254 245 238 254 245 240 254 245 240 254 246 242 257 248 245 260 252 249 264 256 254 268 261 260 270 267 267 271 271 271 271 272 272 271 272 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 274 274 274 274 274 274 274 275 275 275 275 275 275 276 276 276 277 277 277 278 278 279 279 279 280 280 280 282 282 282 284 284 284 285 285 286 287 286 287 288 287 288 289 288 290 290 290 291 291 291 292 292 292 293 293 293 294 294 293 295 294 294 295 295 295 295 295 295 296 295 295 296 295 295 296 296 295 296 296 295 296 296 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 298 298 298 299 298 299 299 299 299 298 299 298 297 299 297 296 300 297 295 300 296 294 299 295 294 298 294 293 297 292 291 295 291 290 294 290 289 293 288 288 293 287 287 292 285 286 291 283 284 289 282 283 289 280 282 288 280 281 287 281 282 287 285 285 287 286 286 287 284 284 286 281 281 284 279 279 282 279 279 281 280 279 280 282 282 283 284 283 283 283 283 283 282 282 282 282 282 281 280 281 280 278 279 279 277 279 278 278 279 279 279 279 279 279 279 279 280 279 280 279 279 279 278 278 279 277 277 277 275 275 275 273 273 274 272 272 273 270 271 273 269 271 272 267 270 271 264 268 270 260 264 267 253 258 261 250 254 255 247 251 252 246 248 250 244 247 248 244 246 245 244 244 244 242 243 243 241 242 242 240 241 241 246 235 224 247 237 226 248 238 228 249 239 230 251 241 232 253 243 235 253 244 237 253 245 239 253 245 240 254 245 241 256 247 244 259 251 248 263 255 253 268 261 260 270 266 266 271 271 271 271 272 272 271 272 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 274 274 274 274 274 274 274 274 274 275 275 275 275 276 276 276 277 277 278 278 278 279 279 279 281 280 281 282 282 283 284 284 284 285 285 286 287 286 287 288 287 288 289 288 290 290 289 291 291 291 292 292 291 293 293 292 294 293 293 294 294 294 295 295 295 295 295 295 295 295 295 295 295 295 295 295 295 296 296 295 296 296 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 299 299 300 300 299 300 300 299 299 298 300 298 296 301 297 296 301 296 295 300 296 294 299 295 293 298 294 292 297 292 291 295 291 290 294 290 289 294 288 288 293 287 287 292 285 286 291 283 284 289 281 283 288 279 281 286 278 280 286 279 280 286 282 282 286 285 285 287 282 283 286 279 280 284 278 278 281 278 278 280 279 279 280 282 282 282 283 283 283 283 283 283 282 282 282 281 282 281 280 281 280 278 279 279 276 278 278 276 278 278 277 278 278 278 278 278 279 279 279 279 279 279 278 278 278 277 277 277 276 275 276 274 274 275 272 273 274 271 272 273 269 271 272 268 270 272 266 269 270 262 266 268 256 259 262 251 255 257 249 253 253 246 249 250 245 247 248 244 246 246 244 245 244 242 243 243 241 242 242 240 241 241 246 235 224 247 237 226 248 238 228 249 239 230 251 241 231 252 242 234 253 244 236 253 244 238 252 244 239 253 244 240 255 247 243 258 250 247 263 255 252 268 260 258 270 265 265 271 270 271 271 271 272 271 272 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 274 274 274 274 274 274 274 274 274 275 275 275 275 276 276 276 277 277 278 278 278 279 279 280 281 281 281 282 282 283 284 284 284 285 285 285 287 286 287 288 287 288 289 288 289 290 290 291 291 291 292 292 291 293 293 292 294 293 293 294 294 294 295 294 294 295 295 295 295 295 294 295 295 295 295 295 295 295 295 295 295 295 295 296 296 295 296 296 296 296 297 296 297 297 297 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 298 300 300 300 299 298 300 298 297 301 297 296 301 296 294 299 294 292 297 294 292 297 293 292 296 292 291 295 291 290 294 290 289 294 288 288 293 287 287 291 285 286 290 283 284 289 282 283 288 279 280 286 278 278 285 278 279 285 281 281 285 284 284 286 282 282 286 279 279 283 277 278 281 277 277 279 279 279 280 282 282 282 283 283 283 283 283 283 281 281 281 280 281 281 279 280 280 278 279 278 276 278 277 276 277 277 276 277 277 277 278 278 279 279 279 279 279 279 278 278 278 278 277 277 276 276 276 275 274 275 273 273 275 271 272 274 270 271 273 268 271 272 266 269 271 263 267 269 258 261 264 253 256 258 249 253 253 247 249 251 245 248 249 245 246 246 244 245 244 242 243 243 241 242 242 240 241 241 246 235 224 247 236 226 248 238 228 249 239 229 251 240 231 252 242 234 252 243 236 252 243 237 252 243 238 252 243 239 254 246 242 257 250 247 262 254 251 267 259 258 270 265 265 271 270 270 271 271 272 271 272 272 271 272 272 272 272 273 272 273 273 273 273 273 273 273 274 274 273 274 274 274 274 274 274 275 275 275 275 276 276 277 277 277 278 278 279 280 280 280 281 281 281 283 282 283 284 284 284 285 285 285 286 286 287 288 287 288 289 288 289 290 290 291 291 291 292 292 291 293 292 292 294 293 293 294 294 294 295 294 294 295 295 294 295 295 294 295 295 294 295 295 294 295 295 294 295 295 295 295 296 295 296 296 296 296 297 296 297 297 297 298 298 298 298 299 298 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 299 299 298 298 298 299 299 299 299 298 301 298 297 302 297 296 301 296 295 300 295 293 298 295 294 299 294 292 297 292 291 295 292 290 294 291 289 294 289 288 292 287 287 291 285 286 290 284 284 289 282 283 288 280 281 286 278 279 284 278 278 284 280 280 285 283 283 285 282 282 286 279 280 284 277 278 281 277 277 280 278 278 280 281 282 282 283 283 283 282 282 282 280 281 281 280 281 280 278 280 279 277 278 278 276 278 277 276 277 277 276 277 277 277 278 278 279 279 278 279 279 279 279 278 278 278 277 277 277 276 276 275 275 276 274 274 275 272 273 274 270 272 273 269 271 272 267 270 271 264 268 269 260 264 266 254 257 259 251 255 255 248 250 252 246 248 249 245 247 246 244 245 244 242 243 243 241 242 242 240 241 241 246 235 223 247 236 226 248 238 228 249 238 229 250 240 231 252 242 233 252 243 235 252 243 236 252 242 237 252 243 238 253 245 241 256 249 245 261 254 251 267 259 257 270 265 264 271 270 270 271 271 272 271 272 272 272 272 272 272 272 273 272 273 273 273 273 273 273 273 274 273 273 274 274 274 274 274 274 275 275 275 275 276 276 277 277 277 278 278 279 280 280 280 281 281 281 283 282 283 284 284 284 285 285 285 286 286 287 288 287 288 289 288 289 290 290 291 291 291 292 291 291 292 292 292 293 293 293 294 294 294 294 294 294 295 294 294 295 295 294 295 295 294 295 295 294 295 295 294 295 295 295 295 295 295 296 296 296 296 297 296 297 298 297 298 298 298 298 299 298 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 300 299 299 299 298 301 298 297 302 297 296 301 296 294 300 295 293 299 294 293 298 293 292 297 293 291 296 292 290 295 291 289 293 289 288 292 288 287 291 286 286 290 284 284 289 282 283 288 280 281 286 278 279 285 278 278 283 279 279 284 283 283 285 283 283 286 280 280 284 277 278 282 276 278 280 277 278 280 280 281 281 281 282 282 280 281 281 279 280 280 279 280 280 278 279 279 277 278 278 276 278 277 277 278 277 277 278 277 278 278 278 279 279 278 279 279 279 279 278 278 278 277 278 277 276 277 276 275 276 275 274 276 273 273 275 271 272 274 270 271 273 268 270 272 265 269 270 262 265 267 257 259 261 252 255 255 248 250 252 246 249 249 245 247 247 244 245 244 242 243 243 241 242 242 239 241 241 246 235 223 247 236 225 247 237 227 249 238 228 250 240 230 251 241 233 252 242 235 252 242 236 251 242 236 251 242 237 252 244 239 256 248 244 261 253 250 267 259 256 270 265 264 271 270 270 271 271 272 271 272 272 272 272 272 272 272 273 272 272 273 273 273 273 273 273 274 273 273 274 274 274 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 280 280 280 281 281 281 282 282 283 284 283 284 285 285 285 286 286 287 287 287 288 289 288 289 290 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 295 295 294 295 295 295 295 295 295 296 296 296 296 297 297 297 298 297 298 298 298 298 299 298 299 300 299 299 300 299 299 300 299 300 300 299 300 300 299 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 300 299 300 299 298 301 298 297 301 296 295 300 296 294 300 295 293 299 294 292 298 293 292 297 292 290 295 291 289 294 290 288 293 289 288 292 288 287 292 287 286 290 285 285 289 283 283 288 280 281 286 279 280 285 278 278 284 279 279 284 282 281 285 284 283 285 282 283 285 280 281 283 277 278 281 277 278 280 278 279 280 278 280 280 278 280 280 278 280 280 278 279 279 277 279 278 277 278 278 277 278 277 278 278 277 278 278 278 278 279 278 279 279 278 279 279 278 279 278 278 278 278 278 277 277 277 276 275 276 275 274 276 273 273 275 272 272 274 270 271 273 269 271 272 266 269 271 263 266 268 259 260 262 254 257 257 248 252 253 246 249 250 245 247 247 244 245 245 242 243 243 241 242 243 239 241 241 246 235 223 247 236 225 247 237 227 248 238 228 250 239 230 251 241 232 251 242 234 251 241 235 251 241 236 251 241 236 252 243 238 255 247 243 260 253 249 266 258 256 270 264 263 271 270 270 271 271 272 271 272 272 272 272 272 272 272 273 272 272 273 273 273 273 273 273 273 273 273 274 273 274 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 285 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 292 293 293 293 294 293 293 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 294 295 295 295 295 295 295 296 296 296 296 297 297 297 298 297 298 298 298 298 299 298 299 300 299 299 300 299 299 300 299 300 300 299 300 299 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 300 299 299 299 298 300 298 296 300 297 295 300 295 294 299 294 293 299 294 292 298 292 291 296 291 289 295 290 288 294 290 288 293 289 287 292 288 286 291 287 286 290 285 285 289 283 283 288 281 281 286 279 279 284 278 279 284 278 279 283 281 281 284 284 284 285 283 284 285 281 282 284 279 280 282 277 278 280 277 278 279 277 278 279 277 279 279 277 279 279 277 279 279 277 279 278 277 278 277 278 278 277 278 278 277 279 279 278 279 279 278 278 278 278 278 278 278 278 278 277 278 278 277 277 277 277 277 276 277 275 275 276 274 273 275 272 272 275 271 272 274 269 271 273 267 269 271 264 267 269 261 262 264 254 257 257 248 252 253 246 249 250 245 247 247 244 245 245 242 244 243 241 242 243 239 241 241 246 235 223 246 236 225 247 237 227 248 238 228 250 239 230 251 241 232 251 241 234 251 241 234 251 241 235 250 240 235 251 242 236 254 246 242 260 252 249 266 258 255 270 264 263 271 270 269 271 271 272 271 272 272 272 272 272 272 272 273 272 272 273 273 273 273 273 273 273 273 273 274 273 274 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 280 279 280 281 281 281 282 282 282 283 283 284 285 285 285 286 286 286 287 287 288 288 288 289 290 289 290 290 290 291 291 291 292 292 292 293 293 293 293 293 293 294 294 293 294 294 293 294 294 293 294 294 294 294 294 294 294 294 294 295 294 294 295 295 295 296 296 296 296 297 296 297 297 297 298 298 298 298 299 298 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 298 299 298 299 298 296 300 297 295 300 295 294 299 294 293 299 293 292 298 292 290 296 290 289 294 290 288 293 289 287 292 288 286 291 287 285 290 287 285 289 285 284 288 283 283 287 281 282 286 280 280 285 279 279 284 279 279 283 280 280 283 283 283 285 284 284 285 283 283 284 281 282 283 279 279 281 276 277 278 275 277 277 276 277 277 276 278 278 276 278 278 277 278 278 278 278 277 278 278 277 278 279 277 279 279 277 278 278 277 278 278 277 277 277 276 277 277 276 278 277 277 277 277 277 277 276 277 276 275 276 274 274 276 273 273 275 271 272 274 270 271 273 268 270 272 265 268 270 262 263 265 256 258 259 248 253 254 246 250 251 245 247 247 244 245 245 242 244 244 241 242 243 239 241 241 246 235 223 246 236 225 247 237 227 248 238 228 250 239 229 251 240 231 251 241 233 251 241 234 250 240 234 250 240 234 251 241 235 254 246 241 259 252 248 266 258 255 269 264 262 271 270 269 272 271 272 272 272 272 272 272 272 272 272 272 272 272 273 273 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 280 279 280 281 281 281 282 282 282 283 283 284 284 284 285 286 286 286 287 287 288 288 288 289 290 289 290 291 290 291 291 291 292 292 292 293 293 293 293 293 293 294 293 293 294 294 293 294 294 293 294 294 293 294 294 294 294 294 294 294 294 294 295 295 295 296 296 296 296 297 296 297 297 297 298 298 297 298 299 298 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 298 299 298 299 298 296 300 297 295 301 295 293 299 294 292 298 292 291 297 291 290 296 290 288 294 289 287 292 287 285 291 286 284 290 286 283 289 285 283 288 285 283 287 283 282 287 282 282 287 281 282 286 280 280 285 279 279 283 280 280 283 283 283 284 284 284 285 283 284 284 282 282 283 280 280 281 276 277 277 274 276 276 275 276 276 276 277 277 276 278 277 276 278 277 277 278 277 278 278 277 278 278 277 278 278 277 277 278 276 276 276 275 276 276 275 276 276 275 277 277 276 277 277 277 277 276 277 276 275 276 275 274 276 273 273 275 272 272 274 270 271 273 268 270 272 266 268 270 262 264 266 257 258 260 248 253 254 246 250 251 245 248 248 244 246 245 242 244 244 241 242 243 239 241 241 245 235 223 246 236 225 247 237 226 248 237 227 249 239 229 251 240 231 251 240 232 250 240 233 250 240 234 250 239 233 250 240 234 253 245 240 259 251 248 265 258 255 269 264 261 271 270 269 272 271 272 272 272 272 272 272 272 272 272 272 272 272 273 273 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 280 279 280 281 281 281 282 282 282 283 283 284 284 284 285 285 285 286 287 287 288 288 288 289 290 289 290 291 290 291 291 291 292 292 292 293 293 293 293 293 293 293 293 293 293 293 293 294 293 293 294 293 293 294 294 293 294 294 294 294 294 294 295 295 295 296 296 296 296 297 296 297 298 297 298 298 297 298 299 298 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 300 299 298 299 298 298 298 299 299 299 299 298 300 297 296 300 296 295 300 294 293 298 293 292 297 292 291 296 291 289 295 290 288 294 288 286 292 286 284 290 284 282 288 283 281 286 284 281 286 284 281 286 283 282 286 282 282 286 282 282 287 281 281 285 280 280 284 280 280 283 283 283 284 284 284 285 284 284 284 282 283 283 280 280 281 276 276 277 274 274 275 274 275 274 274 276 275 275 277 276 276 277 277 276 278 277 277 278 277 278 278 277 278 278 277 276 277 276 275 275 274 273 273 272 274 274 273 276 276 275 277 276 276 277 276 277 276 275 276 275 274 276 273 273 276 272 272 275 270 271 274 268 270 273 266 268 271 263 265 267 258 259 261 249 253 255 246 250 251 245 248 248 244 246 245 242 244 244 241 242 243 239 241 241 245 235 223 246 236 225 247 237 226 248 237 227 249 238 229 250 240 231 251 240 232 250 240 233 250 239 233 249 239 232 249 240 232 253 244 240 258 251 247 265 257 254 269 264 261 271 270 268 272 271 271 272 272 272 272 272 272 272 272 272 272 272 273 273 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 279 279 280 281 281 281 282 282 282 283 283 284 284 284 285 285 285 286 287 287 288 288 288 289 290 290 290 291 291 291 291 292 292 292 292 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 294 294 293 294 294 294 294 295 294 295 295 295 296 297 296 297 297 297 298 298 297 298 299 298 299 299 298 299 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 299 299 300 298 298 299 299 299 300 300 299 300 298 298 300 296 295 299 294 293 298 293 292 297 292 291 297 291 290 296 290 289 294 289 287 293 288 286 292 286 284 289 283 281 286 282 280 285 283 280 285 283 280 285 283 282 286 283 282 286 282 282 286 281 281 285 280 281 284 280 281 283 283 282 284 284 283 284 284 283 284 282 283 283 280 281 281 276 276 277 273 274 274 273 273 273 273 275 274 274 276 275 275 277 276 276 277 276 277 277 276 277 278 276 277 277 276 275 276 275 272 273 272 270 271 270 272 272 271 275 274 274 277 276 276 277 276 276 276 275 276 275 274 276 274 273 276 272 272 275 270 271 274 268 270 273 266 268 271 263 265 267 258 260 262 250 255 256 246 250 252 245 248 248 244 246 246 242 244 244 241 242 243 239 241 241 245 235 223 246 236 224 247 236 226 248 237 227 249 238 228 250 239 230 250 240 232 250 239 232 250 239 232 249 238 231 249 239 231 252 244 239 258 250 247 265 257 254 269 264 260 271 270 268 272 271 271 272 272 272 272 272 272 272 272 272 272 272 273 272 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 278 279 279 280 280 280 281 282 282 282 283 283 283 284 284 285 285 285 286 287 287 288 288 288 289 290 290 291 291 291 291 292 292 292 292 292 293 293 292 293 293 293 293 293 293 293 293 293 293 293 293 293 294 293 293 294 293 294 294 294 295 295 295 296 296 296 297 298 297 298 298 298 299 299 298 299 299 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 300 299 299 300 298 298 299 299 298 300 299 298 300 298 297 300 296 295 300 294 293 298 292 291 297 292 290 296 290 289 295 290 289 294 289 287 293 287 285 291 284 282 288 282 280 286 282 279 285 282 280 284 283 280 285 283 281 285 282 281 285 282 282 285 281 282 285 281 282 284 281 281 283 283 283 283 284 283 284 283 283 283 282 282 282 280 281 281 277 277 278 273 274 274 272 273 272 272 274 273 274 275 274 274 276 275 275 277 276 276 277 276 276 277 276 276 276 275 275 275 274 271 272 271 269 270 269 270 270 269 274 273 272 276 275 275 276 275 276 276 275 276 275 274 276 274 273 276 272 272 275 271 271 274 269 270 273 266 268 271 263 265 267 258 260 262 249 255 256 246 250 252 245 248 248 244 246 246 242 244 244 241 242 243 239 241 241 245 235 223 246 236 224 247 236 226 248 237 226 249 238 228 250 239 230 250 239 231 250 239 231 249 239 231 248 238 230 249 239 230 252 244 238 258 250 246 265 257 254 269 263 260 271 270 268 272 271 271 272 272 272 272 272 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 278 279 279 280 280 280 281 281 282 282 282 283 283 283 284 285 285 285 286 286 287 288 288 288 289 289 290 290 291 291 291 292 291 292 292 292 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 294 293 294 295 294 295 295 295 296 297 296 297 298 297 298 299 298 299 299 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 298 298 298 298 299 299 298 299 299 297 298 300 297 298 300 298 298 300 299 299 301 298 297 300 297 296 300 296 295 299 294 293 298 293 292 297 291 290 296 290 289 294 288 287 292 287 286 291 286 285 289 284 282 287 282 280 285 282 280 285 282 280 284 282 280 284 282 281 285 282 281 285 282 282 285 282 282 285 282 282 284 282 282 283 283 283 283 284 283 283 283 283 283 282 282 282 280 281 281 277 278 278 273 274 274 272 273 272 272 273 272 273 275 273 274 276 275 275 276 275 275 276 275 275 276 275 275 276 275 274 275 273 271 272 271 269 270 269 269 269 268 272 271 271 274 273 273 275 274 275 275 274 275 274 274 276 274 273 276 272 272 275 271 271 274 269 270 273 266 268 271 262 265 267 257 260 262 249 255 256 246 250 252 245 249 249 244 246 246 242 244 244 241 242 243 239 241 241 245 235 223 246 235 224 247 236 226 247 237 226 249 238 228 250 239 230 250 239 231 250 239 231 249 238 231 248 237 229 248 238 229 252 243 237 258 250 246 265 258 253 269 263 259 271 269 267 272 271 271 272 272 272 272 272 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 278 279 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 285 286 286 287 288 288 289 289 290 290 290 291 291 291 292 292 292 293 292 293 293 293 293 293 293 293 293 293 293 293 293 293 294 293 294 295 294 295 296 295 296 297 296 297 298 297 298 298 298 298 299 298 299 299 298 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 297 298 298 298 299 299 299 300 301 299 300 302 297 299 301 297 299 301 298 299 301 298 298 301 298 297 300 297 296 300 296 295 299 293 293 298 293 292 297 291 290 296 290 289 294 288 288 293 287 286 291 286 285 290 284 283 287 283 281 286 281 279 284 281 279 284 281 280 284 282 280 284 282 281 284 282 281 284 283 283 285 284 284 285 284 284 284 284 284 284 284 284 283 283 283 283 282 282 282 280 280 279 277 277 276 274 274 273 272 273 271 272 273 272 273 274 273 274 276 274 274 276 275 275 276 275 274 276 275 274 275 274 273 274 273 271 272 271 269 269 268 268 268 268 269 269 269 273 271 272 274 272 273 274 273 275 274 273 275 273 273 276 272 272 275 271 271 274 268 269 273 265 267 270 262 264 267 256 260 261 249 256 256 246 251 253 245 249 249 243 246 246 242 244 244 241 242 243 239 241 241 245 235 223 246 235 224 246 236 225 247 237 226 249 238 228 250 239 230 250 239 230 250 238 230 249 238 230 248 237 228 248 238 228 252 243 237 257 250 246 264 257 253 269 262 258 271 269 267 272 271 271 272 272 272 272 272 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 278 279 279 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 286 286 287 287 288 288 289 289 290 290 291 291 291 292 292 292 293 293 293 293 293 293 293 293 293 293 293 293 293 294 294 295 295 295 295 297 296 296 298 296 296 298 297 297 298 297 297 297 296 297 296 296 297 296 297 297 297 297 298 298 298 298 299 298 299 299 299 299 299 299 299 299 298 299 298 297 298 297 297 298 299 298 299 301 299 300 302 299 301 303 297 300 303 297 299 301 297 298 301 298 298 301 297 297 300 296 296 300 296 295 299 294 293 298 293 292 297 292 291 296 291 290 295 289 288 293 288 287 292 286 285 290 284 283 288 283 281 286 281 280 284 281 279 284 281 280 283 282 280 284 281 280 284 282 281 284 284 284 285 285 285 285 285 285 284 284 284 284 284 284 283 282 283 282 281 281 281 279 279 278 277 277 276 274 275 274 273 273 272 272 273 272 273 274 273 274 275 274 274 276 275 275 276 275 274 276 275 274 275 274 272 274 272 271 271 270 268 269 268 268 268 268 268 267 268 270 268 270 272 270 272 273 272 273 273 272 274 273 272 275 272 272 275 271 271 274 268 269 273 265 267 270 261 264 267 252 257 260 248 255 256 246 251 253 245 249 249 243 247 246 242 244 244 241 242 243 239 241 241 245 235 222 246 235 224 246 236 225 247 236 226 248 237 228 250 238 229 250 238 230 249 238 230 248 237 229 247 236 227 248 238 228 251 243 237 257 250 246 264 257 252 269 262 258 271 269 267 272 271 271 271 272 272 272 272 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 274 274 274 274 274 275 275 275 276 276 276 277 277 278 278 279 279 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 286 286 287 288 288 289 289 290 291 290 291 292 292 292 293 292 293 293 293 293 293 293 293 293 293 293 293 294 295 295 296 296 296 297 297 297 297 297 298 297 296 297 296 295 296 296 295 296 295 294 295 294 294 294 294 294 294 294 294 295 296 296 296 297 297 297 297 297 297 297 297 297 297 297 297 297 298 298 297 298 300 297 298 300 297 298 300 296 298 301 297 299 302 297 299 301 298 299 301 298 298 301 297 297 301 297 296 301 296 295 300 295 294 299 292 291 295 292 291 296 291 290 295 289 289 294 288 287 292 286 286 290 284 283 288 283 282 286 282 280 284 281 280 284 281 280 284 282 281 284 282 281 284 282 282 284 285 285 285 286 285 285 285 285 284 283 284 283 283 283 283 282 283 282 280 280 280 279 279 278 277 278 277 275 275 274 273 274 272 273 273 272 273 274 273 274 275 274 274 276 275 274 276 275 275 275 275 273 275 273 272 273 272 270 271 271 268 269 269 268 268 268 268 266 268 267 265 268 269 267 269 271 270 272 272 271 273 272 272 274 272 272 275 271 271 274 268 269 272 264 266 269 259 262 265 251 257 259 248 255 256 246 251 253 245 249 250 243 247 247 242 244 245 241 242 243 239 241 241 245 235 222 246 235 223 246 236 225 247 236 226 248 237 227 249 238 229 250 238 229 249 238 229 248 237 228 247 236 226 248 237 227 251 243 237 257 250 246 264 257 252 269 262 258 271 269 266 271 271 270 271 272 272 271 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 273 273 274 274 274 274 274 274 275 275 275 276 276 276 277 277 278 278 279 279 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 286 287 287 288 289 289 290 290 291 291 292 292 292 292 293 293 293 293 293 293 293 294 293 293 294 294 294 297 296 295 299 298 296 299 297 296 298 297 296 297 295 295 296 295 295 296 294 296 295 294 295 293 293 294 292 292 293 292 292 293 294 293 294 295 295 295 296 296 295 295 297 296 295 296 296 296 297 297 296 297 298 297 297 298 296 297 298 296 297 298 296 298 300 298 298 301 298 298 301 299 299 302 297 297 302 298 297 302 298 297 302 295 295 300 293 292 298 292 292 297 291 291 296 290 289 294 288 287 292 286 285 290 284 283 288 282 281 285 282 281 285 282 281 284 282 281 284 282 281 284 282 282 284 284 284 285 286 285 286 286 285 285 285 285 284 284 284 283 283 283 282 281 282 281 279 280 279 279 279 278 277 277 277 275 275 274 274 274 273 273 274 272 273 274 273 274 275 274 274 275 274 275 276 275 275 276 275 274 275 274 272 273 272 271 271 271 269 270 269 268 268 268 267 266 268 267 264 267 266 264 267 268 267 269 271 270 272 272 271 274 272 272 275 271 271 274 268 268 272 264 265 269 255 259 263 250 256 259 247 255 256 246 251 253 245 249 250 243 247 247 242 244 245 240 242 243 239 241 241 245 234 222 246 235 223 246 236 225 247 236 225 248 237 227 249 238 229 249 238 229 249 237 228 248 236 227 247 236 225 247 237 227 251 243 236 257 250 246 264 257 252 269 262 258 271 269 266 271 271 270 271 271 272 271 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 273 274 274 274 274 274 274 274 275 275 275 276 276 276 277 277 277 278 278 279 279 280 280 280 281 281 281 282 282 283 283 283 284 285 285 286 287 288 289 289 290 290 291 292 291 292 293 292 293 293 293 293 292 294 293 292 295 294 292 298 296 293 300 297 294 299 296 294 298 295 294 296 295 294 296 295 294 296 295 295 296 295 296 295 294 295 294 293 294 292 292 293 292 292 292 293 293 293 294 294 294 295 296 295 295 297 296 295 296 296 295 296 296 296 296 296 296 296 297 296 296 297 296 297 297 297 298 299 297 298 300 298 299 301 300 300 303 299 299 303 299 299 303 298 298 303 296 295 301 295 294 300 293 292 298 291 291 296 290 290 295 288 288 292 285 285 289 282 282 286 282 281 285 282 281 285 282 282 285 281 281 284 282 282 284 283 283 285 286 285 286 286 286 286 286 285 285 285 285 284 284 284 283 282 283 282 280 281 280 280 280 279 279 279 278 276 276 275 275 275 274 274 274 273 274 274 273 273 274 273 273 275 273 273 275 274 274 275 274 275 276 275 275 275 274 273 274 273 271 272 272 269 270 270 269 269 269 267 266 268 266 264 267 265 263 267 265 264 267 269 268 270 271 270 273 272 271 274 271 270 274 268 268 272 262 264 267 254 258 262 250 256 259 247 255 256 246 251 253 245 249 250 243 247 247 242 244 245 240 242 243 239 241 241 245 234 222 246 235 223 246 235 224 247 236 225 248 237 227 249 237 229 249 237 228 248 237 228 247 236 227 246 235 225 247 237 227 252 243 237 258 251 246 264 257 252 269 263 258 271 269 266 271 271 270 271 271 271 271 272 272 272 272 272 272 272 273 272 273 273 272 273 273 273 273 274 274 274 274 274 274 274 275 275 275 276 276 276 277 277 277 278 278 279 279 280 280 280 281 281 281 282 282 283 283 283 285 285 285 287 287 288 289 290 291 291 291 292 292 292 293 293 293 292 294 293 292 296 294 292 299 295 292 300 295 292 299 294 293 297 293 293 295 293 293 294 293 294 295 294 295 295 294 295 295 295 296 295 294 296 294 294 295 293 293 293 293 292 293 293 293 293 294 293 293 294 295 294 294 295 295 295 296 296 295 296 296 296 296 296 296 296 297 297 297 297 297 297 298 297 298 298 298 298 300 300 300 302 301 301 303 300 301 304 300 300 304 299 299 303 298 298 303 295 294 300 293 293 299 292 292 297 290 290 294 287 287 292 283 284 288 282 282 286 281 281 285 282 281 285 282 282 285 282 282 285 282 283 285 284 284 285 286 286 286 286 286 285 286 285 285 285 285 284 284 284 283 282 282 281 280 281 280 279 279 278 277 277 276 275 275 274 275 275 274 274 274 273 274 274 273 273 274 273 273 274 273 273 274 273 274 275 274 275 275 274 275 275 274 274 274 274 272 273 272 271 272 271 270 270 270 267 267 268 266 264 267 265 263 266 264 263 266 267 266 269 270 270 272 271 271 274 271 270 274 268 268 271 261 262 266 255 258 262 249 255 259 247 255 256 246 251 253 245 249 250 243 247 247 242 244 245 240 243 243 239 241 241 245 234 222 246 235 223 246 235 224 247 236 225 248 237 227 249 237 228 249 237 228 248 236 227 247 236 226 246 235 224 247 237 226 252 243 237 258 251 246 264 258 253 269 263 258 271 269 266 271 271 270 271 271 271 271 272 272 271 272 272 272 272 273 272 273 273 272 273 273 273 274 274 274 274 274 274 274 274 275 275 275 276 276 276 277 277 277 278 278 279 279 280 280 280 281 281 281 282 282 283 283 283 285 285 286 287 288 289 290 290 291 291 292 293 292 293 293 293 293 292 295 293 291 297 294 290 298 294 291 298 293 291 296 293 293 295 293 294 294 293 294 294 294 295 294 295 295 295 294 295 295 294 296 295 294 296 295 294 295 294 294 294 294 293 293 294 293 293 294 293 293 294 294 294 294 295 295 295 295 296 296 296 296 296 296 296 296 296 297 298 298 297 298 299 299 297 298 299 299 299 302 300 300 302 301 302 302 300 301 303 299 300 304 299 300 304 297 298 303 295 296 302 293 293 299 291 292 297 289 289 294 287 287 292 284 284 288 282 282 286 282 282 285 281 281 285 282 282 286 282 282 285 283 283 285 284 284 286 286 285 286 286 285 285 285 285 284 284 284 283 283 283 282 281 281 281 279 279 278 277 278 276 275 275 274 274 274 273 274 274 274 274 274 273 273 274 273 273 274 272 273 274 272 272 274 273 273 274 273 275 275 274 275 275 274 274 274 274 273 273 273 272 272 272 271 271 271 269 268 268 266 264 267 265 263 266 264 262 266 265 264 267 270 269 271 271 271 273 271 270 274 268 267 271 260 262 265 255 258 263 249 255 259 247 255 256 246 251 253 244 250 250 243 247 247 242 244 245 240 243 244 239 241 241 245 234 222 246 235 223 246 235 224 247 236 225 248 236 226 249 237 228 249 237 227 248 236 226 247 235 225 246 234 223 247 237 226 252 244 237 258 251 246 265 258 254 269 263 258 271 270 266 271 271 270 271 271 271 271 272 272 271 272 272 272 272 273 272 273 273 272 273 273 273 274 274 274 274 274 274 275 274 275 275 275 276 276 276 277 277 277 278 278 279 279 280 280 280 281 281 281 282 282 283 283 284 285 286 286 288 288 289 290 291 292 291 292 293 292 293 293 293 293 292 294 292 290 295 292 289 295 292 290 295 292 291 294 293 293 294 294 295 295 295 295 295 296 295 295 297 296 295 296 296 295 295 296 296 295 296 295 295 296 295 294 295 294 294 294 294 294 294 294 294 294 294 294 294 294 295 295 295 295 295 296 295 296 296 296 296 296 296 296 297 297 297 298 299 300 298 299 301 298 300 302 300 300 301 301 301 301 299 301 302 298 300 303 297 299 304 296 297 302 294 295 300 292 293 298 291 291 296 289 289 294 287 287 292 284 284 288 283 283 286 282 282 286 282 282 285 282 283 286 282 283 285 282 283 285 283 283 285 283 283 285 285 284 284 285 284 284 284 283 283 282 282 282 279 279 279 276 276 276 274 275 274 273 274 273 273 273 273 274 274 273 273 274 273 273 273 272 273 274 272 272 274 272 272 274 272 273 274 273 274 274 273 274 274 273 274 274 273 273 273 273 272 272 272 270 270 270 269 267 268 267 265 267 265 263 266 263 262 266 264 263 266 269 269 270 271 270 273 271 270 274 268 267 271 261 262 266 255 258 263 250 255 259 247 254 256 246 251 253 244 250 250 243 247 247 242 244 245 240 243 244 239 241 242 245 234 222 245 234 222 246 235 224 246 235 224 248 236 226 248 237 228 248 236 227 248 236 226 246 235 224 246 234 222 247 237 226 252 244 236 258 251 246 265 259 254 269 264 259 271 270 267 271 271 270 271 271 271 271 272 272 271 272 272 272 272 273 272 273 273 272 273 273 273 274 274 274 274 274 274 275 274 275 275 275 276 276 276 276 277 277 278 278 278 279 279 279 280 281 281 281 282 282 283 284 284 285 286 286 288 289 290 290 291 292 292 293 293 293 293 293 293 293 292 294 292 290 293 291 289 293 291 289 293 292 292 294 293 294 294 295 296 295 296 296 296 297 296 296 298 296 296 297 297 296 296 296 296 295 296 295 295 296 295 294 295 294 294 294 294 294 294 294 294 294 294 294 294 294 295 296 295 295 296 295 295 296 295 295 296 295 295 296 296 296 297 297 297 298 297 299 300 298 299 301 299 300 300 300 301 301 298 300 301 297 299 303 296 298 302 294 296 301 292 294 299 290 292 297 289 290 295 288 289 293 286 286 291 285 285 289 283 283 287 283 283 286 282 283 286 282 282 285 282 282 285 281 282 285 282 283 285 283 283 284 284 284 284 285 284 284 284 283 283 281 280 281 278 277 278 275 276 275 273 274 273 272 273 272 273 273 272 273 273 273 272 273 273 272 273 272 272 273 272 272 273 272 272 273 272 272 273 272 273 273 272 273 273 272 274 273 272 273 273 272 270 271 271 268 268 269 269 267 268 268 266 267 264 263 267 263 262 266 263 262 266 268 268 270 270 270 273 271 270 274 268 267 271 262 262 266 255 257 262 250 256 259 247 253 256 246 252 254 244 250 250 243 247 247 241 245 245 240 243 244 239 241 242 245 234 222 245 234 222 246 235 223 246 235 224 247 236 226 248 236 227 248 236 227 247 235 225 246 234 223 245 234 222 247 237 226 252 244 236 258 252 246 265 259 255 269 264 260 271 270 267 271 271 270 271 271 271 271 272 272 271 272 272 272 272 273 272 273 273 272 273 273 273 274 274 274 274 274 274 275 275 275 276 275 276 276 276 276 277 277 277 278 278 279 279 279 280 281 280 281 282 282 283 284 284 285 286 287 288 289 290 290 291 292 292 293 293 293 294 293 293 293 292 293 291 290 292 290 288 291 291 289 292 292 291 293 293 293 293 295 295 294 296 296 296 297 297 297 298 297 296 297 297 296 296 296 295 295 296 295 295 296 294 294 295 294 294 295 293 294 294 293 294 295 294 294 295 294 295 297 295 295 297 295 295 296 295 295 296 295 295 296 296 297 297 297 298 298 297 300 300 297 300 301 299 301 301 299 301 302 298 300 302 296 298 302 294 296 301 293 295 300 291 293 297 289 291 296 287 289 293 287 288 292 286 286 290 284 285 289 283 283 288 283 283 286 282 283 286 282 282 285 282 282 285 281 282 284 282 283 285 283 283 285 285 284 284 284 283 284 284 282 283 282 281 281 279 278 278 277 277 277 274 275 274 273 274 273 273 273 272 273 273 272 272 273 272 272 273 271 272 273 272 272 273 271 272 273 271 272 273 272 272 272 272 272 272 272 272 272 272 272 272 271 269 270 270 268 268 269 267 267 269 267 265 267 263 263 267 262 262 266 262 262 266 267 267 269 270 270 272 270 270 274 268 267 272 262 262 267 255 257 262 251 256 260 247 253 256 246 252 254 244 250 251 243 247 247 241 245 246 240 243 244 239 241 242 245 234 222 245 234 222 246 235 223 246 235 224 247 236 225 248 236 227 248 236 226 247 235 225 246 234 223 245 234 221 247 237 226 252 244 236 258 252 245 265 259 255 269 264 260 271 270 267 271 271 270 271 271 271 271 272 272 271 272 272 272 272 273 272 273 273 272 273 273 273 274 274 274 274 274 274 275 275 275 276 275 276 277 276 276 277 277 277 278 278 278 279 279 280 281 280 281 282 282 282 284 283 285 286 286 288 289 290 290 292 292 292 293 294 293 294 294 293 294 293 292 292 290 291 290 288 290 290 288 290 290 290 291 292 292 292 294 294 294 295 295 296 296 297 297 297 298 296 298 298 296 297 296 295 296 296 295 295 296 294 294 296 293 294 295 293 293 295 293 293 294 294 294 295 294 295 296 295 295 296 295 295 296 295 295 295 295 295 296 297 297 297 297 298 299 297 299 300 299 301 300 300 301 301 299 301 302 298 300 302 296 298 301 294 296 300 291 294 298 290 292 297 289 291 295 287 289 292 286 288 291 286 287 290 284 285 289 283 284 288 283 283 287 282 282 286 281 282 285 281 282 285 281 282 284 283 283 285 284 284 285 285 284 284 285 283 284 283 282 282 282 281 281 280 279 279 278 277 277 275 275 275 273 274 274 273 274 273 272 273 272 272 272 272 271 272 272 272 273 272 272 273 272 271 273 271 271 272 271 271 272 271 271 271 271 271 271 271 271 271 271 269 269 270 266 268 269 266 266 269 265 265 268 263 263 267 261 262 266 262 262 267 266 267 269 270 270 272 270 270 273 268 268 272 263 263 268 255 258 263 251 256 260 247 253 256 246 252 254 244 250 251 242 247 248 241 245 246 240 243 244 239 242 242 245 234 222 245 234 222 246 235 223 246 235 224 247 236 225 248 236 226 247 235 225 247 234 224 246 234 222 245 233 221 247 237 226 252 244 236 258 251 245 265 260 254 269 264 260 271 269 266 271 271 270 271 272 271 271 272 272 272 272 272 272 272 272 272 273 273 272 273 273 273 274 274 274 275 274 274 275 275 275 276 275 276 277 276 276 277 277 277 278 278 278 279 279 280 281 280 281 282 282 282 284 283 284 286 286 288 289 289 290 292 292 292 294 294 293 295 294 293 294 293 292 292 290 291 290 288 289 289 288 289 289 289 290 290 290 292 293 293 293 295 295 296 297 298 297 297 298 296 297 298 295 297 296 295 297 296 294 295 295 294 294 295 293 293 295 293 293 294 293 293 294 293 294 294 294 294 295 294 295 295 294 295 295 294 294 295 294 294 296 296 295 296 296 297 297 297 298 299 299 300 300 300 301 301 299 301 302 298 300 302 297 298 301 294 296 300 292 294 299 291 293 297 290 292 296 288 290 294 287 288 292 286 287 291 285 286 290 284 284 288 283 283 287 281 282 286 281 282 285 281 282 285 282 283 286 283 283 285 285 284 285 285 284 285 284 283 284 283 282 282 281 280 280 279 277 278 277 276 276 275 275 275 274 275 275 273 274 274 273 273 273 272 273 272 271 273 272 271 273 272 271 273 271 271 273 271 271 272 271 270 271 271 270 270 271 270 270 270 270 269 270 268 269 269 265 267 269 265 266 268 264 265 268 262 263 267 260 262 266 261 262 267 266 266 269 270 269 272 270 270 273 268 268 272 264 264 269 256 259 264 251 257 260 247 254 257 246 252 254 244 250 251 242 247 248 241 245 246 240 243 244 239 242 242 245 234 221 245 234 222 245 234 223 246 235 224 247 235 225 247 236 226 247 235 225 246 234 223 245 233 221 245 233 221 247 237 226 252 244 236 257 251 245 263 258 253 269 264 260 271 269 266 271 271 270 271 272 271 271 272 272 272 272 272 272 272 272 272 273 273 272 273 273 273 274 274 274 275 274 274 275 275 275 276 276 276 277 276 276 278 277 277 279 278 278 279 279 280 281 280 281 282 282 282 284 283 284 286 286 287 289 289 290 292 292 292 294 293 294 295 294 294 295 294 293 294 293 291 291 289 289 289 288 289 289 288 289 290 290 291 291 292 293 294 294 295 296 296 296 297 297 296 296 297 295 297 296 295 297 296 295 296 295 294 294 295 293 293 295 292 293 294 292 293 293 293 293 293 293 294 294 293 294 294 293 293 294 292 293 294 293 293 294 294 293 294 295 295 296 297 297 298 299 299 300 300 301 301 300 301 302 299 300 302 298 300 302 295 297 302 293 295 300 292 294 298 291 293 297 289 291 295 288 290 293 287 288 292 286 287 291 284 285 289 283 284 288 283 284 287 283 284 287 282 283 286 282 283 286 283 283 285 285 285 285 285 285 285 284 283 284 282 281 282 279 278 279 276 275 276 275 275 275 276 275 276 276 276 276 275 275 275 273 274 274 272 273 273 272 273 273 271 273 272 271 273 271 270 272 271 270 272 271 270 271 270 270 270 270 269 269 270 269 269 269 267 268 269 265 266 269 264 265 268 263 264 268 261 263 267 260 262 266 261 262 267 265 266 269 270 269 272 270 269 273 268 268 272 264 264 269 257 260 264 251 257 261 247 254 257 246 253 255 244 250 251 242 247 248 241 245 246 240 243 244 239 242 242 245 234 221 245 234 221 245 234 222 246 235 223 247 235 224 247 235 225 247 234 224 246 233 223 245 233 221 245 233 221 247 237 226 251 243 235 257 251 244 263 258 252 269 264 260 271 269 266 271 271 270 271 272 271 271 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 274 274 274 275 274 275 275 275 275 276 276 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 282 282 282 284 283 284 286 285 287 289 289 290 291 291 292 293 293 293 295 294 294 295 295 294 295 294 293 293 293 291 291 290 290 290 289 290 290 290 291 291 291 293 294 294 296 297 296 297 297 297 296 297 296 295 297 296 295 298 296 295 296 295 294 295 295 293 294 295 293 293 294 292 292 293 292 293 293 292 293 293 292 293 293 292 293 293 292 292 293 292 292 293 292 293 293 294 295 295 296 297 297 299 299 297 300 301 299 301 302 301 300 302 304 300 301 305 296 298 303 296 297 302 293 295 299 292 294 298 290 292 296 289 291 294 288 290 293 287 288 292 286 287 290 284 285 289 283 284 288 283 284 288 282 284 287 282 283 286 283 283 285 285 285 285 285 285 285 284 284 284 281 281 281 276 276 277 274 273 274 274 273 274 276 276 276 277 277 277 276 276 276 274 274 274 273 273 273 272 273 273 271 273 272 270 272 272 270 272 271 269 271 271 269 270 270 269 269 270 269 269 269 268 268 269 266 267 269 264 266 269 263 265 268 263 264 268 260 263 267 259 262 266 260 262 267 266 266 269 269 269 272 270 269 273 268 268 272 265 265 270 257 260 265 251 257 261 247 255 258 246 253 255 244 250 251 242 247 248 241 245 246 240 243 244 239 242 242 245 234 221 245 234 221 245 234 222 246 234 223 246 235 224 247 235 225 246 234 224 246 233 222 245 233 220 245 233 220 247 237 226 251 243 235 257 250 244 263 257 252 268 264 259 271 268 265 271 271 270 271 272 271 271 272 272 272 272 272 272 272 272 272 273 273 273 273 273 273 274 274 274 275 275 275 275 275 275 276 276 276 277 276 276 278 277 277 279 278 278 279 279 279 281 280 281 282 282 282 284 283 284 286 285 287 288 288 289 291 291 291 293 293 293 294 294 294 295 294 295 295 295 294 295 294 294 294 294 292 292 292 291 292 292 292 293 293 295 295 295 297 298 297 298 299 297 297 298 296 296 297 296 295 297 296 295 297 296 294 295 295 294 294 295 293 293 294 292 292 293 292 292 293 292 292 293 292 293 293 292 293 293 292 292 293 291 292 293 292 292 293 293 294 295 296 297 296 299 298 297 301 300 298 302 302 302 301 303 305 301 302 305 299 300 305 297 299 303 295 296 301 294 295 299 292 294 298 290 292 296 289 291 294 288 289 292 287 288 291 286 287 290 284 285 289 283 285 288 282 284 287 282 283 286 283 283 285 285 285 285 285 285 285 284 284 284 281 281 281 276 276 277 272 271 273 273 272 273 276 275 276 277 277 277 277 277 277 275 275 275 273 274 274 272 273 273 271 272 272 270 272 272 270 272 271 269 271 271 269 270 269 269 269 269 268 268 268 267 268 268 266 267 268 264 266 268 263 265 268 262 264 267 260 263 267 259 262 266 261 262 267 267 267 270 269 269 272 269 269 273 268 268 272 265 265 270 258 260 266 252 257 262 248 255 258 246 253 255 244 250 251 242 247 248 241 245 246 240 243 244 239 242 242 245 234 221 245 234 221 245 234 222 245 234 223 246 235 224 246 235 224 246 233 223 245 233 221 245 232 220 245 233 220 246 236 226 251 242 234 256 250 243 262 257 251 268 264 259 270 268 265 271 271 270 271 272 271 271 272 272 272 272 272 272 272 272 272 272 273 273 273 273 273 274 274 274 275 275 275 275 275 275 276 276 276 277 276 276 278 277 277 278 278 278 279 279 279 281 280 280 282 281 282 284 283 284 286 285 286 288 288 289 291 291 291 292 292 292 294 293 294 294 294 295 295 295 295 296 295 295 295 295 295 295 295 294 294 294 294 295 295 297 297 296 298 298 297 298 298 297 297 298 297 295 298 297 295 297 296 295 297 296 295 295 295 294 294 294 293 293 294 292 293 293 292 292 293 292 292 292 292 292 293 292 292 293 292 292 293 291 292 292 291 292 292 293 293 294 296 296 295 298 298 296 301 300 298 302 301 302 302 303 304 301 302 305 300 301 304 299 300 305 296 298 303 296 297 302 294 295 299 292 293 297 289 291 294 288 289 292 287 288 291 286 287 290 285 286 290 284 285 289 283 284 287 281 282 285 282 282 285 285 285 285 285 285 285 284 284 284 280 280 281 275 275 276 271 271 272 272 270 272 275 274 275 277 277 277 277 277 277 275 275 275 273 273 274 272 273 273 271 272 272 270 271 272 269 271 271 268 271 270 268 270 269 268 269 268 268 268 268 267 267 267 265 267 267 264 266 267 262 265 267 262 264 267 260 263 266 259 262 266 263 264 268 268 267 270 269 269 272 269 269 273 268 268 272 265 265 270 259 261 266 252 257 262 248 256 259 246 253 255 244 250 251 242 247 248 240 245 246 239 243 244 239 242 242 245 234 221 245 234 221 245 234 222 245 234 223 246 234 223 246 234 223 245 233 222 245 232 221 244 232 219 244 233 220 246 236 225 250 242 234 256 249 243 261 256 250 267 263 258 270 267 264 271 271 270 272 272 271 272 272 272 272 272 272 272 272 272 272 272 273 272 273 273 273 274 274 274 275 274 275 275 275 275 276 276 276 277 276 276 278 277 277 278 278 278 279 279 279 281 280 280 282 281 282 284 283 284 285 285 286 288 288 289 290 290 290 292 292 292 293 293 293 294 293 294 294 294 295 295 295 296 296 296 296 296 296 296 297 297 297 297 297 297 297 297 298 298 297 297 298 297 296 298 297 295 297 297 295 297 297 295 297 296 295 295 295 294 294 294 293 293 293 293 293 293 292 293 293 292 293 293 292 292 293 292 292 293 292 292 293 291 292 292 291 291 292 293 293 294 296 296 296 298 298 297 299 298 298 301 300 301 301 301 303 299 301 303 300 302 304 300 301 305 299 300 305 297 299 303 295 296 300 293 294 298 290 291 295 288 290 293 287 289 291 287 288 291 287 287 290 286 287 289 284 284 287 281 282 285 281 282 285 283 284 285 284 284 285 283 283 283 280 280 281 274 275 276 271 270 272 271 270 272 274 273 274 277 277 277 277 277 277 275 275 275 272 273 273 271 272 273 270 272 272 269 271 271 269 271 271 268 270 270 267 269 268 267 268 267 267 267 267 266 267 267 265 266 267 263 265 267 262 264 267 261 263 267 260 263 266 259 262 266 265 265 268 268 268 270 269 269 272 269 269 272 268 268 272 265 265 270 259 261 266 253 258 263 249 256 259 246 253 255 244 250 251 242 247 248 240 245 246 239 243 244 239 242 242 245 234 221 245 233 221 245 234 221 245 234 222 246 234 223 245 234 223 245 233 221 245 232 220 244 231 219 244 232 220 246 235 225 250 241 233 255 248 242 261 255 250 266 262 256 270 267 263 271 271 270 272 272 271 272 272 272 272 272 272 272 272 272 272 272 273 272 273 273 273 274 274 274 275 274 274 275 275 275 276 276 276 277 276 276 278 277 277 278 278 278 279 279 279 281 280 280 282 281 281 284 283 283 285 285 286 288 288 288 290 290 290 292 292 291 292 292 292 293 293 293 294 294 294 295 294 295 296 295 296 297 296 297 297 297 297 298 298 298 298 298 298 298 298 298 299 298 298 299 298 297 298 297 296 298 297 296 297 296 295 296 295 294 294 295 294 294 294 293 294 294 293 293 294 293 293 294 293 293 293 292 292 293 291 292 292 291 292 292 291 292 293 294 295 294 296 297 296 297 298 298 299 299 299 298 298 299 297 298 298 297 299 299 297 299 301 299 301 304 298 300 304 297 298 303 295 296 300 292 294 297 291 292 295 289 291 293 288 290 292 289 290 291 289 289 291 288 288 290 285 285 288 280 282 285 280 281 284 281 282 284 282 282 284 282 282 283 279 279 280 274 274 276 270 270 272 271 270 272 275 274 275 277 277 278 277 277 277 274 275 275 272 273 273 271 272 272 270 272 272 269 271 271 268 270 270 267 270 269 267 269 267 267 268 267 266 267 267 266 266 267 264 266 266 262 265 266 261 264 267 261 263 266 260 263 266 259 262 266 265 265 268 268 268 270 269 269 272 268 269 272 267 267 272 265 265 270 260 262 266 253 258 263 249 256 259 246 253 256 243 250 252 242 247 248 240 245 246 239 243 244 239 242 242 245 234 221 245 233 220 245 234 221 245 234 222 245 234 222 245 233 222 245 232 220 244 231 219 244 231 218 244 232 219 246 235 225 250 241 233 255 248 241 260 254 249 264 260 254 269 266 262 271 271 269 272 272 271 272 272 272 272 272 272 272 272 272 272 272 273 272 273 273 273 274 274 274 275 274 274 275 275 275 276 276 276 277 276 276 278 277 277 278 278 278 279 279 279 281 280 280 282 281 281 284 283 283 285 285 286 288 288 288 290 290 290 291 291 291 292 292 292 293 293 292 293 293 293 294 294 294 295 295 295 296 296 296 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 297 298 297 297 297 296 296 296 296 295 295 296 295 295 296 295 295 295 294 295 295 294 294 295 294 294 294 293 293 294 292 293 293 292 293 293 293 294 295 294 296 296 296 297 298 297 298 298 296 297 298 295 296 296 293 294 294 293 295 295 295 296 297 296 298 300 296 298 301 295 296 301 293 295 299 293 294 297 291 293 295 291 292 294 291 291 293 291 291 292 289 290 291 287 287 290 283 284 287 279 280 284 278 279 282 278 279 282 279 279 282 278 279 281 277 277 279 273 274 276 270 270 272 271 270 272 275 275 276 277 277 278 277 277 278 275 275 276 272 273 274 271 272 272 269 271 271 268 270 270 267 270 270 267 269 268 267 268 267 267 267 267 266 267 266 265 266 266 263 265 266 261 264 266 260 263 266 261 264 266 260 263 266 259 262 266 265 265 268 268 268 270 269 269 272 268 269 272 267 267 272 265 265 270 261 262 267 254 259 264 249 256 259 246 253 256 243 250 252 242 247 248 240 245 246 239 243 244 239 242 242 245 234 221 245 233 220 245 233 221 245 233 222 245 233 222 245 233 221 244 232 219 244 231 218 244 231 218 244 232 219 246 234 224 249 240 232 254 247 240 259 253 248 263 259 253 269 265 261 271 271 269 272 272 271 272 272 272 272 272 272 272 272 272 272 272 273 272 273 273 273 274 274 273 275 274 274 275 275 275 276 276 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 280 282 281 281 283 283 283 285 285 286 288 288 288 290 290 290 291 291 291 292 292 291 293 293 292 293 294 293 294 295 294 295 296 295 296 297 296 297 297 297 298 298 297 298 298 298 299 299 299 299 299 299 300 300 299 299 300 298 299 298 297 297 297 297 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 296 295 295 296 295 295 295 295 296 295 295 296 295 295 295 296 296 296 297 297 297 299 297 298 300 296 297 298 293 295 296 291 292 294 290 292 294 291 293 295 291 294 297 292 294 298 293 295 299 293 295 298 293 294 296 294 294 295 293 293 295 292 292 293 290 291 293 287 289 291 283 285 289 280 281 286 278 279 283 277 279 282 277 279 282 277 278 281 277 278 281 276 277 279 273 274 276 270 270 272 271 270 272 275 275 276 277 277 278 276 277 277 274 274 276 272 273 274 271 272 272 269 271 271 267 270 270 267 270 269 266 269 268 266 268 267 266 267 267 265 266 266 264 266 266 263 265 266 261 264 265 260 263 266 261 263 266 260 263 266 260 262 266 265 265 268 267 267 270 268 269 272 267 268 272 266 267 271 265 265 270 261 262 267 255 259 264 250 256 260 246 253 256 243 250 252 241 247 249 240 245 246 239 243 244 239 242 242 245 234 221 245 233 220 245 233 221 245 233 221 245 233 221 244 233 221 244 231 219 244 230 217 244 230 217 244 231 219 245 234 224 249 239 231 253 246 239 258 252 247 263 259 253 268 264 260 271 270 268 272 272 271 272 272 272 272 272 272 272 272 272 272 273 272 272 273 273 273 274 274 273 274 274 274 275 275 275 276 276 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 280 282 282 281 283 283 283 285 285 285 288 288 288 290 290 290 291 291 290 292 292 291 292 293 292 293 294 293 294 295 294 295 296 295 296 297 296 297 298 297 298 298 297 299 299 298 299 299 299 300 300 299 300 300 300 300 300 299 300 300 298 298 298 298 297 297 297 297 297 297 297 298 297 297 298 297 298 298 298 298 298 299 298 299 298 298 298 298 298 297 298 297 297 298 297 299 298 297 299 299 298 300 298 298 299 296 297 298 293 295 296 291 293 295 289 292 294 289 291 295 290 292 296 291 293 296 293 294 298 295 295 297 295 295 296 294 294 296 293 293 295 290 292 294 287 289 293 284 287 291 282 284 289 279 281 285 278 279 283 277 279 282 277 279 282 277 278 282 277 278 282 276 277 280 273 274 276 269 268 272 270 269 271 274 274 275 276 276 277 275 276 276 273 274 275 272 273 274 271 272 272 269 271 271 267 270 269 267 270 268 266 269 267 266 268 267 266 267 267 265 266 266 264 265 266 262 265 266 260 263 265 259 263 265 260 263 266 260 262 265 261 262 266 264 265 268 267 267 270 267 268 271 267 268 272 266 267 271 265 265 270 262 262 267 255 259 264 250 256 260 246 253 256 243 250 252 241 247 249 240 245 246 239 243 244 239 242 242 245 234 221 245 233 220 245 233 221 244 233 221 244 233 221 244 232 220 244 231 218 244 230 217 243 230 217 244 231 219 245 234 224 248 239 230 252 245 238 257 251 246 263 258 253 268 263 259 271 269 267 272 272 271 272 272 272 272 272 272 272 272 272 272 273 272 272 273 273 273 274 273 273 274 274 274 275 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 280 282 282 281 284 283 283 285 285 285 288 288 288 290 290 289 291 291 290 292 292 291 292 293 292 293 294 293 294 295 294 295 296 295 296 297 296 297 298 297 298 298 298 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 299 299 298 298 299 299 299 299 299 299 300 299 300 300 300 299 299 299 299 299 299 299 299 298 299 299 298 298 299 299 299 299 301 300 300 300 300 299 298 299 299 294 296 297 292 294 296 290 293 296 290 292 295 291 293 296 293 294 298 295 295 297 295 295 297 295 295 296 293 294 296 290 292 297 287 290 295 284 288 293 282 285 290 280 283 288 278 280 286 278 279 284 278 280 284 278 280 283 278 279 283 277 279 283 276 278 281 273 274 276 268 267 271 267 267 269 272 272 273 274 274 275 273 274 275 272 273 274 272 273 274 270 272 272 268 271 271 267 270 269 266 269 268 266 268 267 265 267 267 265 266 267 264 266 266 263 265 266 261 264 265 259 263 265 259 262 265 259 263 266 260 262 265 261 263 266 263 264 268 266 266 269 266 267 271 266 267 271 265 266 271 265 265 270 262 262 267 256 260 265 250 256 260 245 253 256 243 250 252 241 247 249 240 245 247 239 243 244 239 242 242 245 234 221 245 233 220 245 233 220 244 233 221 244 233 221 244 232 219 243 230 217 243 230 216 243 230 217 244 231 220 245 233 224 248 238 230 252 244 237 256 250 244 261 257 251 267 263 258 271 269 266 272 272 270 272 272 272 272 272 272 272 272 272 272 273 272 272 273 273 273 274 273 273 274 274 274 275 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 280 282 282 282 284 283 283 286 285 286 288 288 288 290 290 289 291 291 290 292 292 291 292 293 292 293 294 293 294 295 294 295 296 295 297 297 296 298 298 297 298 298 298 299 299 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 299 299 299 299 299 299 300 300 300 301 300 302 303 301 301 302 301 298 300 301 296 298 299 293 296 298 292 294 298 292 294 297 294 295 298 295 296 299 295 296 298 294 295 297 293 294 297 289 293 298 287 291 297 285 289 295 283 287 293 281 285 290 280 283 288 279 281 287 279 280 286 279 281 285 279 281 285 279 280 285 278 280 284 276 278 281 272 273 276 266 265 269 266 266 268 269 269 270 272 272 273 272 273 274 272 273 274 271 273 274 270 272 272 267 271 271 266 270 269 266 269 267 265 268 267 265 267 267 264 266 267 263 265 267 262 265 266 260 264 266 258 263 265 258 262 265 258 262 265 259 262 265 261 262 266 263 263 267 265 265 268 265 266 270 265 267 271 265 266 271 264 264 270 262 262 268 256 259 265 250 256 260 245 252 256 242 250 252 241 247 249 240 245 247 239 243 244 239 242 242 245 234 221 245 233 220 244 233 220 244 233 220 244 232 220 243 231 219 243 230 216 243 229 216 243 230 217 244 231 220 245 233 223 247 237 229 251 243 236 255 249 243 260 255 250 266 262 258 270 267 264 272 271 270 272 272 272 272 272 272 272 272 272 272 273 272 272 273 273 273 274 273 273 274 274 274 275 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 280 283 282 282 284 284 284 286 286 286 288 288 288 290 290 289 291 291 290 292 292 291 292 293 292 293 294 293 294 295 294 296 296 295 297 297 296 298 298 297 298 298 297 298 298 297 298 298 298 299 298 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 299 299 299 299 298 299 299 299 300 300 300 302 303 301 301 302 302 299 301 302 297 299 301 295 297 300 293 295 299 294 295 298 296 296 298 294 296 298 293 296 298 291 294 298 288 293 298 286 291 297 285 290 296 283 288 294 282 287 293 281 285 291 280 284 289 280 282 288 280 282 287 280 282 286 280 282 286 279 281 285 277 280 284 274 276 280 271 271 274 266 265 268 265 265 267 267 267 269 271 271 272 272 273 273 272 273 274 272 273 274 269 272 272 267 270 271 266 269 269 265 268 267 264 267 267 264 266 266 263 266 266 262 265 266 261 264 266 259 263 265 257 262 265 257 262 265 257 262 265 258 261 265 259 261 266 262 262 267 263 263 267 264 265 269 264 266 271 264 265 270 264 264 269 262 262 268 256 259 265 250 256 260 245 252 257 242 250 252 241 247 249 240 245 247 239 243 245 239 242 242 245 234 220 244 233 219 244 233 220 244 232 220 244 232 220 243 231 218 243 230 216 243 229 215 243 230 217 244 231 220 245 233 223 247 236 228 250 242 234 254 248 241 259 254 248 265 260 256 269 266 262 272 271 269 272 272 271 272 272 272 272 273 272 272 273 272 272 273 273 273 274 273 273 274 274 274 275 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 280 283 282 282 285 284 284 287 286 287 289 288 288 290 290 289 291 291 290 292 292 291 293 293 292 293 294 293 294 295 294 296 296 295 297 297 296 297 298 297 298 298 296 298 297 296 297 297 296 297 297 296 297 297 297 298 298 298 298 299 299 299 300 300 300 301 300 300 300 300 300 300 300 300 300 299 299 300 299 300 300 300 300 300 300 299 299 299 299 299 299 298 298 299 298 298 299 299 299 300 300 300 300 301 302 299 301 302 298 299 301 295 298 300 294 296 299 294 295 298 295 295 297 294 296 297 290 294 297 287 292 297 286 291 296 284 290 296 284 290 296 284 288 295 283 287 293 281 286 291 281 285 290 281 284 289 281 283 288 281 283 288 281 283 287 279 280 285 276 278 282 273 275 278 269 269 273 266 265 269 265 265 269 268 267 270 271 271 272 272 273 274 273 273 274 272 272 274 269 271 272 266 270 271 265 269 269 264 268 267 263 266 266 263 266 266 262 265 266 261 265 266 260 264 266 259 263 266 257 262 265 256 261 265 255 261 265 256 261 265 259 261 266 261 261 267 262 261 266 263 264 268 263 265 270 264 264 270 264 264 269 262 262 268 257 259 265 250 255 260 245 252 257 242 249 252 241 247 249 240 245 247 239 243 245 239 242 242 245 234 220 244 233 219 244 232 220 244 232 220 243 232 219 243 230 217 242 229 215 243 229 215 243 229 217 244 231 220 245 232 223 247 236 227 249 240 233 253 246 240 258 253 247 264 260 254 268 265 261 271 270 268 272 272 271 272 272 272 272 273 272 272 273 272 273 273 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 285 285 285 287 287 287 289 289 288 290 290 289 291 291 290 292 292 291 293 293 292 294 294 293 295 295 294 296 296 295 296 297 296 297 297 297 298 298 296 297 297 295 297 296 295 296 296 295 296 296 297 296 297 297 297 298 298 298 299 299 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 299 299 299 298 299 298 298 299 299 299 299 299 299 299 300 300 300 300 301 298 299 301 295 298 300 293 296 299 294 295 297 294 295 296 293 294 296 289 293 296 287 292 297 285 291 296 285 291 297 285 291 297 284 289 295 283 288 294 283 287 292 282 285 291 281 285 290 282 285 290 280 283 288 280 282 287 277 279 284 274 276 280 270 272 276 269 268 273 268 267 272 269 269 272 271 271 273 272 273 274 275 275 276 274 274 275 272 273 274 269 271 272 266 270 270 264 268 268 263 267 267 263 266 266 263 266 266 262 265 266 260 265 266 259 264 266 258 263 265 256 262 265 255 261 265 254 261 264 255 260 265 258 260 266 260 260 266 260 260 266 261 261 267 262 263 269 263 263 269 263 263 269 262 262 268 257 259 265 250 255 260 244 252 257 242 249 252 241 247 249 239 245 247 239 243 245 239 242 242 245 233 220 244 233 219 244 232 220 244 232 220 243 231 219 242 230 217 242 229 215 243 229 215 243 229 218 244 231 221 245 232 224 247 235 227 249 239 232 252 245 239 256 251 245 263 259 253 267 264 259 271 269 266 272 272 271 272 272 272 272 273 272 272 273 272 273 273 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 285 285 285 288 287 287 289 289 289 290 290 289 291 291 290 292 291 291 293 293 292 294 294 293 295 295 294 296 296 295 296 297 296 297 297 297 297 298 297 297 297 296 297 297 296 296 297 296 296 296 296 296 296 298 296 297 298 297 298 299 298 299 300 299 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 298 299 299 299 299 299 299 299 299 299 300 298 299 300 296 297 299 294 296 299 293 295 297 294 294 296 294 294 295 290 293 296 287 292 297 286 292 297 286 292 298 286 292 298 285 291 296 285 289 295 284 288 294 283 287 292 283 286 291 283 286 291 282 284 289 279 281 286 275 277 282 271 274 278 269 271 275 270 269 274 271 270 274 273 272 275 274 274 276 275 276 276 276 276 276 275 275 276 272 273 274 268 271 272 265 269 270 264 268 268 263 267 267 262 266 266 262 265 266 261 265 266 260 264 266 259 263 266 257 262 265 255 261 265 254 261 265 253 260 264 254 260 264 257 260 266 259 259 266 258 259 266 258 260 266 260 261 267 261 262 268 262 262 268 262 261 267 257 259 265 249 255 260 244 252 257 241 249 252 241 247 249 239 245 247 239 243 245 239 242 242 245 233 220 244 233 219 244 232 219 243 232 219 243 231 218 242 230 216 242 228 215 243 229 215 244 230 218 245 231 221 245 233 224 246 234 227 248 238 231 251 244 238 255 250 244 261 256 250 267 264 258 270 269 265 272 272 270 272 273 272 272 273 272 273 273 273 273 273 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 286 285 286 288 287 288 289 288 289 290 289 289 291 290 290 292 291 291 293 292 292 294 294 293 295 295 294 296 296 295 296 297 296 297 297 297 297 298 297 298 298 297 297 298 297 297 298 297 297 297 297 297 297 298 297 296 299 297 297 299 298 298 299 298 298 299 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 299 296 297 298 295 296 298 294 295 297 294 295 296 294 294 295 292 294 296 288 293 297 287 293 298 287 292 298 287 292 298 286 291 297 286 290 296 286 289 295 285 288 294 286 288 292 285 287 290 281 283 288 277 279 284 273 275 280 269 272 277 270 271 275 273 273 276 277 276 278 277 277 279 277 277 279 278 278 278 277 277 277 276 276 276 273 274 275 268 271 272 265 269 270 263 268 267 262 266 266 262 265 266 261 265 266 260 264 265 259 264 266 258 263 266 257 262 265 255 261 265 253 260 264 252 259 264 253 259 264 256 259 266 257 259 266 257 258 265 257 258 265 258 260 266 260 261 267 261 261 268 261 261 267 257 258 265 249 254 260 245 252 256 241 249 252 240 247 249 239 245 247 239 243 245 239 242 242 245 233 220 244 232 219 244 232 219 243 232 219 243 231 218 242 229 216 242 228 214 243 229 215 244 230 219 245 231 222 246 233 225 246 234 227 248 238 231 251 243 237 255 249 244 260 254 249 266 262 256 269 268 263 272 272 270 272 273 272 272 273 272 273 273 273 273 273 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 286 284 286 288 287 288 289 288 289 290 289 289 291 290 290 292 291 291 293 292 292 294 294 293 295 295 294 295 296 295 296 297 296 297 297 297 297 298 298 298 298 298 298 299 298 298 299 298 298 299 298 299 298 298 299 298 298 299 298 299 299 299 299 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 297 298 296 296 297 295 296 297 295 295 295 295 295 295 294 294 296 290 293 297 289 293 298 288 293 298 288 293 298 287 292 298 287 291 297 287 290 296 288 290 295 288 289 292 285 286 290 279 281 286 275 277 282 271 273 278 269 272 277 272 273 277 277 277 279 280 279 280 280 280 281 280 280 280 278 278 279 277 277 277 276 276 276 274 274 275 269 271 272 265 269 269 263 267 267 262 266 266 261 265 266 261 264 266 260 264 266 259 263 266 257 262 266 256 261 265 254 260 264 253 259 264 252 259 264 252 258 264 255 258 265 256 258 265 255 257 265 255 258 265 257 258 265 258 259 266 260 260 267 261 260 267 257 258 264 249 254 260 244 251 256 241 249 252 240 247 249 239 245 247 239 243 245 239 242 242 245 233 220 244 233 219 244 232 219 243 231 219 242 230 217 242 229 216 242 228 214 243 229 216 244 230 219 245 232 223 246 233 226 247 234 227 248 237 231 250 242 236 254 248 243 259 253 248 265 261 254 269 267 261 272 272 269 272 273 272 272 273 272 273 273 273 273 273 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 285 284 286 288 287 288 289 288 289 290 289 289 291 290 290 292 291 291 293 292 292 294 293 293 295 295 295 295 296 296 296 296 296 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 300 299 299 300 299 299 300 299 299 299 299 299 299 298 298 298 298 298 298 297 297 297 296 296 296 296 296 295 296 295 295 294 295 295 292 294 296 290 293 298 288 293 298 288 293 299 288 292 299 288 292 298 289 291 296 290 290 294 287 288 292 282 283 289 276 278 284 273 274 280 271 273 278 271 273 278 274 275 279 279 279 281 281 281 282 281 281 282 280 280 281 277 278 279 276 276 277 276 276 276 274 274 274 269 271 272 265 268 269 263 266 266 262 265 266 260 265 266 260 264 266 259 263 266 258 262 266 257 262 265 255 260 265 254 259 264 253 259 264 251 258 264 251 257 263 254 257 264 256 258 265 254 257 263 253 256 264 255 257 265 257 258 266 259 259 266 260 260 267 256 257 264 249 254 260 244 251 256 241 248 252 240 246 249 239 244 247 239 243 245 239 242 242 245 233 220 244 232 219 244 232 219 243 231 219 242 230 217 241 228 215 241 228 214 243 229 216 244 230 220 246 232 224 247 234 227 247 234 228 248 237 231 250 242 236 254 247 242 259 253 248 264 260 253 268 267 260 272 272 268 272 273 271 272 273 272 273 273 273 273 274 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 285 284 286 288 286 288 289 288 289 290 289 289 291 290 290 292 291 291 293 292 292 294 293 294 295 295 295 295 295 296 296 296 296 297 297 297 297 298 297 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 299 299 299 299 298 298 298 298 297 297 297 297 296 296 296 295 296 295 295 295 295 295 294 294 296 291 293 298 289 293 298 289 293 299 289 293 299 289 292 298 290 292 296 290 290 294 285 287 292 278 281 287 274 276 283 272 273 280 272 273 279 272 274 279 274 276 280 278 279 281 280 280 282 280 280 282 279 279 281 275 276 278 274 275 276 275 275 276 273 274 274 269 270 272 265 268 268 263 266 266 261 265 266 260 264 266 259 263 266 258 262 265 258 262 265 257 261 265 255 260 265 254 259 264 252 258 263 251 257 263 251 256 263 253 256 264 255 257 264 253 256 263 251 255 264 253 256 265 255 256 265 258 258 266 260 259 266 256 257 264 249 254 260 244 251 256 241 248 252 240 246 249 239 244 247 239 243 245 239 242 242 245 233 220 244 232 218 244 232 219 243 231 218 242 230 217 241 228 215 241 228 215 243 229 217 244 230 221 246 233 225 247 234 228 248 235 230 248 237 231 250 241 236 253 247 242 259 252 248 264 260 253 268 267 260 272 272 268 272 273 271 272 273 272 273 273 273 273 274 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 281 283 285 284 286 287 286 288 289 288 289 290 289 290 291 290 290 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 300 299 299 300 299 299 300 299 299 300 299 299 299 299 299 299 299 298 298 298 298 297 298 297 297 297 296 296 296 296 295 295 295 294 294 295 295 292 294 297 291 294 298 290 293 298 289 293 299 289 292 298 290 291 296 289 290 293 283 286 291 277 280 286 274 276 283 273 274 281 273 274 281 273 275 280 274 275 280 276 277 281 278 278 281 278 278 281 276 277 280 274 275 278 272 274 276 273 274 275 272 273 274 268 270 271 264 267 267 262 265 266 261 264 266 260 264 266 259 263 265 258 262 265 257 261 265 256 260 265 255 259 264 254 258 264 252 257 263 250 256 263 251 255 263 252 255 263 254 256 263 252 255 263 250 254 263 250 253 264 253 255 265 257 257 265 259 258 266 255 256 263 249 254 260 244 250 255 241 248 252 240 246 249 239 244 247 239 243 245 239 242 242 245 233 220 244 232 218 244 232 219 243 231 218 242 229 216 241 228 215 241 228 215 243 229 217 245 231 222 247 233 226 248 235 229 248 236 231 248 238 233 250 241 237 254 246 242 259 252 248 265 260 254 268 267 260 272 272 268 272 273 271 272 273 272 273 273 273 273 274 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 281 283 285 284 286 287 286 288 289 287 289 290 288 290 291 290 291 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 300 299 299 300 299 299 299 299 299 299 299 298 298 298 298 297 298 297 297 297 296 296 297 296 295 296 295 294 295 295 295 294 295 296 292 294 297 291 293 298 290 293 298 290 292 298 290 292 296 289 290 294 283 286 291 277 280 287 275 276 283 274 275 282 274 275 281 273 275 281 273 275 279 274 275 280 275 276 280 275 276 280 274 276 279 273 274 277 271 273 275 271 273 274 269 271 273 266 269 270 264 267 267 262 265 266 261 264 266 260 263 266 258 262 265 258 261 265 257 260 264 256 260 264 254 259 264 253 258 263 252 257 263 250 256 262 250 255 262 251 254 262 253 256 262 252 255 263 251 254 263 248 252 263 251 253 264 256 256 265 258 258 265 255 256 263 249 253 260 244 250 255 241 248 252 240 246 249 239 244 247 239 243 245 239 242 242 245 233 220 244 232 218 244 232 219 243 231 218 242 229 216 241 228 214 241 228 215 243 229 218 245 231 223 247 234 227 249 236 230 249 237 232 249 238 234 250 242 237 254 246 243 259 252 249 264 260 254 269 268 260 272 272 268 272 273 271 272 273 272 273 273 273 273 274 273 273 274 273 274 275 274 274 276 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 279 281 280 281 283 282 283 285 284 286 287 286 287 288 287 289 290 288 290 291 290 291 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 300 299 299 299 299 299 299 299 298 298 298 298 297 298 297 297 297 296 296 297 296 296 296 295 295 295 295 295 294 295 296 293 294 296 292 294 297 291 293 298 290 292 297 291 292 295 288 290 294 282 285 291 278 280 287 276 277 284 275 275 283 274 275 282 273 274 280 272 274 279 273 275 279 274 275 279 274 275 279 274 275 278 272 274 276 271 273 275 270 272 273 268 270 272 266 268 270 263 266 267 262 265 266 261 264 266 260 263 266 258 262 265 257 261 264 256 260 264 255 259 264 254 259 264 253 258 263 251 257 263 250 256 262 250 254 262 251 254 261 252 255 261 252 254 263 251 253 263 248 252 263 249 252 263 255 255 264 257 257 265 254 255 263 248 252 259 243 249 255 240 247 252 239 246 249 239 244 247 239 243 245 239 242 242 245 233 220 244 232 218 243 231 218 242 230 218 241 229 216 241 227 214 241 227 215 243 229 218 245 231 223 248 235 228 250 237 232 250 238 234 251 239 235 251 242 238 254 247 243 260 252 250 265 261 257 270 269 261 272 272 268 272 273 271 272 273 272 273 274 273 273 274 273 273 274 273 274 275 274 274 275 275 275 276 275 276 277 276 276 278 277 277 279 278 278 280 279 280 281 280 281 283 282 283 285 284 286 287 286 287 288 287 289 290 288 290 291 290 291 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 297 297 298 297 298 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 299 299 299 298 298 298 297 298 297 297 297 296 296 297 296 296 296 295 295 295 295 295 295 295 295 294 294 296 293 294 297 291 293 297 291 293 296 291 292 295 286 289 294 282 285 291 279 281 287 276 277 285 276 276 284 274 275 282 273 274 281 273 274 280 273 275 280 274 275 279 274 275 279 273 275 278 272 274 276 271 273 275 269 271 273 267 270 272 265 268 269 263 266 267 262 264 266 261 263 265 260 262 265 258 261 264 257 260 264 256 260 264 255 259 263 254 259 263 252 258 263 251 256 262 250 255 262 250 254 261 250 253 260 252 254 261 252 254 263 251 253 263 248 251 263 247 250 263 254 254 264 256 256 264 254 255 262 248 252 259 244 249 255 240 247 252 239 246 249 239 244 247 239 243 245 239 242 242 245 233 220 244 232 218 243 231 218 242 230 218 241 229 216 241 227 214 241 227 215 243 229 219 246 232 224 249 235 229 251 238 233 252 239 235 252 241 237 253 243 239 255 247 244 262 254 251 266 263 258 270 269 262 272 272 268 272 273 271 272 273 272 273 274 273 273 274 273 273 274 273 274 275 274 274 275 274 275 276 275 276 277 276 276 278 277 277 278 278 278 280 279 280 281 280 281 283 282 283 285 284 285 287 286 287 288 287 289 290 288 290 291 290 291 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 296 297 298 297 298 298 297 298 298 298 298 299 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 298 299 298 298 298 297 297 297 296 296 297 296 296 296 295 296 296 295 296 295 295 295 294 294 296 294 294 296 293 293 296 292 293 295 291 292 294 285 288 293 281 284 291 279 280 287 277 278 286 276 277 285 274 275 283 273 274 281 273 274 280 274 275 281 275 276 280 274 275 279 273 274 278 272 273 276 271 272 275 269 271 274 267 269 272 265 268 269 264 266 267 262 264 266 261 263 265 259 261 265 258 260 264 257 260 264 256 259 263 254 259 263 253 258 263 251 257 262 250 256 262 249 254 261 249 253 261 249 252 260 250 253 261 252 254 263 251 252 262 248 251 262 246 250 262 252 253 263 256 256 263 253 254 262 248 251 258 243 249 254 240 247 252 239 245 249 239 244 247 239 243 245 239 242 242 244 233 220 244 232 218 243 231 218 242 230 217 241 229 215 241 227 214 241 227 215 243 229 220 246 232 225 249 236 230 251 239 234 253 240 237 253 242 238 254 244 241 257 248 245 263 256 253 268 264 258 271 270 263 272 272 268 272 273 271 272 273 272 273 274 273 273 274 273 273 274 273 274 275 274 274 275 274 275 276 275 275 277 276 276 277 277 277 278 278 278 279 279 280 281 280 281 283 282 283 285 284 285 287 286 287 288 287 289 290 288 290 291 289 291 292 291 292 293 292 293 294 293 294 295 294 295 295 295 296 296 296 296 297 296 297 297 297 298 298 297 298 298 298 298 299 298 298 299 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 298 299 298 298 298 297 297 297 297 296 297 296 296 297 296 296 296 295 297 295 295 296 294 294 296 294 294 296 293 294 296 293 293 295 291 292 294 285 288 293 281 284 290 279 281 287 278 279 286 276 277 284 274 275 282 272 273 280 272 273 280 274 275 280 275 276 281 274 275 280 273 274 278 271 273 276 270 272 275 269 271 274 267 269 272 265 268 269 264 266 267 262 264 266 260 263 265 259 261 265 258 260 264 257 259 264 256 259 263 254 258 262 252 258 262 251 257 262 249 255 261 249 254 261 249 252 260 248 251 260 250 252 261 252 253 263 251 252 262 248 250 262 246 250 262 252 253 263 255 255 263 252 254 261 247 251 258 243 248 254 240 247 252 239 245 249 239 244 246 239 243 244 239 242 242 245 233 220 244 232 218 243 231 218 242 230 217 241 228 215 240 227 214 241 227 215 243 230 220 246 233 226 250 236 231 252 240 235 254 241 238 254 243 240 256 245 242 258 249 246 264 257 254 269 265 259 271 270 264 272 272 269 272 273 271 272 273 272 273 274 273 273 274 273 273 274 273 274 275 274 274 275 274 275 276 275 275 276 276 276 277 276 277 278 277 278 279 278 279 281 280 281 283 282 283 285 284 286 287 286 287 288 287 289 290 288 290 291 289 291 292 291 292 293 292 293 294 293 293 295 294 294 295 295 296 296 295 296 297 296 297 297 297 298 298 297 298 298 298 298 299 298 298 299 298 298 299 299 298 299 299 299 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 299 298 298 298 297 297 298 297 297 297 296 297 297 296 297 296 296 297 296 295 297 295 295 296 294 294 296 294 294 296 293 293 295 291 292 295 286 288 293 281 284 290 279 281 287 277 279 285 276 277 283 273 274 280 271 272 278 272 272 278 274 275 280 275 275 281 274 275 281 272 274 278 271 273 276 270 272 275 268 270 274 266 269 271 265 267 269 264 266 267 262 264 266 260 262 265 258 260 265 257 259 264 257 259 264 256 259 263 254 258 262 251 258 261 250 257 262 249 255 261 248 254 261 248 251 260 248 250 259 249 251 261 251 252 262 250 251 261 248 250 261 246 249 262 252 253 263 254 254 262 252 253 261 247 250 258 243 248 254 240 246 252 239 245 249 239 244 246 239 243 244 239 242 242 244 233 220 244 232 218 243 231 218 242 230 217 241 228 215 240 227 214 241 227 216 243 230 221 247 233 226 250 237 232 253 240 237 255 242 239 256 244 242 257 247 244 260 251 248 265 258 255 269 265 260 271 270 265 272 273 269 272 273 271 272 273 272 273 274 273 273 274 273 273 274 273 274 275 274 274 275 274 275 276 275 275 276 276 276 277 276 276 278 277 278 279 278 279 281 280 281 283 282 283 285 284 286 287 286 288 288 287 289 290 288 290 291 289 291 292 291 292 293 292 292 294 293 293 295 294 294 295 295 295 296 295 296 297 296 297 297 296 297 298 297 298 298 297 298 299 298 298 299 298 298 299 299 298 299 299 299 299 299 299 299 299 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 299 299 299 299 299 298 298 298 298 297 298 297 297 298 297 297 297 296 297 297 296 298 296 296 297 295 295 297 295 295 296 294 294 296 293 294 296 291 292 295 286 289 294 282 285 291 279 282 287 277 279 284 274 276 281 271 272 278 269 270 276 271 271 277 273 274 279 274 275 280 273 275 280 272 274 278 271 273 277 270 272 275 268 270 274 266 268 271 265 267 268 264 265 267 262 264 266 260 262 266 258 260 265 257 259 264 256 259 264 255 259 263 253 258 262 251 257 261 249 256 261 248 254 261 248 253 260 247 251 259 247 249 259 248 250 260 250 251 262 250 251 261 248 250 261 246 249 261 251 252 262 253 254 262 251 252 260 247 250 257 243 248 254 240 246 251 239 245 249 239 244 246 239 243 244 239 242 242 244 233 220 244 232 218 243 231 218 242 230 217 241 228 215 240 226 214 241 227 216 243 230 221 247 233 227 250 237 233 253 241 238 255 243 240 257 245 243 258 249 246 261 253 250 266 260 256 270 266 261 271 271 266 272 273 269 272 273 271 272 273 272 273 274 273 273 274 273 273 274 273 274 275 274 274 275 274 274 276 275 275 276 275 275 277 276 276 277 277 277 279 278 279 280 280 281 283 282 284 285 284 286 287 286 288 288 287 289 290 288 290 291 289 291 292 291 292 293 292 292 294 293 293 295 294 294 295 295 295 296 295 296 297 296 297 297 296 297 297 297 298 298 297 298 298 298 298 299 298 298 299 299 298 299 299 299 299 299 299 299 299 299 299 299 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 299 299 299 299 299 298 298 299 298 298 298 297 297 298 297 297 298 297 298 297 297 298 297 296 298 296 296 297 295 295 297 294 294 296 293 294 296 291 293 295 286 290 294 282 286 292 280 283 288 277 279 284 273 275 280 269 271 276 267 268 274 268 269 275 271 272 277 272 273 278 272 273 278 272 273 277 271 273 277 270 272 275 268 270 274 266 268 271 264 266 268 263 265 267 262 263 266 260 261 266 258 259 265 257 259 264 256 259 264 255 258 263 252 258 262 250 257 261 249 256 261 247 254 261 247 252 260 246 250 259 246 248 258 247 249 260 249 250 261 250 251 261 248 250 261 247 249 261 249 251 261 252 253 261 250 252 260 247 250 257 243 248 254 240 246 251 239 245 248 239 244 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 218 242 230 217 241 228 215 240 226 213 241 227 216 243 230 221 247 234 227 250 238 234 254 242 238 256 244 241 258 247 244 260 250 248 263 255 252 267 261 258 270 267 263 271 271 267 272 273 270 272 273 271 272 273 272 272 274 273 273 274 273 273 274 273 274 275 274 274 275 274 274 275 275 275 276 275 275 276 276 276 277 277 277 279 278 279 280 279 281 283 282 284 285 284 286 287 286 288 288 287 289 290 288 290 291 289 291 292 290 292 293 292 292 294 293 293 294 293 294 295 294 295 296 295 296 296 296 297 297 296 297 297 297 297 298 297 298 298 298 298 299 298 298 299 299 298 299 299 298 299 299 299 299 299 299 299 299 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 299 299 299 299 298 298 299 298 298 299 298 298 298 297 298 298 297 298 298 297 298 297 297 298 297 296 298 296 295 298 295 295 297 293 294 296 290 292 296 286 290 295 283 287 292 280 284 289 278 280 285 274 275 280 269 270 276 264 266 273 265 266 273 268 269 274 270 271 276 270 271 276 271 272 276 271 272 277 270 272 275 268 270 273 266 267 270 264 266 267 263 264 266 262 263 266 260 261 265 258 259 265 256 258 264 256 259 264 254 258 263 252 257 262 250 257 261 248 255 261 247 253 261 246 251 260 246 249 258 245 247 258 245 247 259 246 248 260 249 250 260 248 249 261 247 249 261 248 251 261 251 252 261 250 251 259 247 249 257 243 247 254 240 246 251 239 245 248 239 244 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 218 242 230 217 241 228 215 240 226 213 241 227 215 243 230 221 247 234 228 250 238 235 254 242 239 256 245 242 258 248 245 261 252 250 264 257 254 268 262 259 271 268 264 271 271 268 272 273 270 272 273 271 272 273 272 272 274 272 273 274 273 273 274 273 274 275 274 274 275 274 274 275 275 274 276 275 275 276 276 276 277 277 277 279 278 279 280 279 281 283 282 284 285 284 286 287 286 288 288 287 289 290 288 290 291 289 291 292 290 292 293 292 292 294 293 293 294 293 295 295 294 296 296 295 296 296 296 297 297 296 297 297 297 297 298 297 298 298 298 298 299 298 298 299 299 298 299 299 298 299 299 299 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 299 299 300 299 298 299 299 298 298 299 298 298 299 298 298 299 298 298 299 298 299 299 298 299 298 297 299 297 297 299 296 297 298 295 295 298 292 294 298 288 292 296 286 289 295 283 287 293 282 286 291 279 282 287 275 277 282 270 272 277 264 266 272 262 263 270 263 264 269 265 265 271 266 268 273 269 270 275 270 271 275 269 271 275 267 270 273 265 267 270 264 265 267 263 264 266 262 262 266 261 260 265 258 258 265 256 258 264 255 258 263 254 258 263 252 257 262 249 256 261 247 255 260 246 252 260 245 250 259 245 248 258 244 246 258 243 245 259 244 246 259 247 248 260 248 249 260 246 249 260 249 251 261 251 251 260 249 250 259 246 249 256 242 247 254 240 246 251 239 245 248 239 244 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 218 242 230 217 241 228 215 240 226 213 241 227 215 243 230 221 247 234 228 250 238 235 254 243 240 256 246 243 259 249 247 262 253 251 266 258 256 269 263 259 271 269 265 271 272 269 272 273 270 272 273 271 272 273 272 272 274 272 273 274 273 273 274 273 274 275 274 274 275 274 274 275 275 274 276 275 275 276 276 276 278 277 277 279 278 279 280 279 282 283 282 284 285 284 286 287 286 288 288 287 289 290 288 290 291 289 291 292 290 292 293 292 293 294 293 294 294 293 295 295 294 296 296 295 296 296 295 296 297 296 297 297 297 297 298 297 298 298 298 298 298 298 298 299 299 298 299 299 298 299 299 299 299 299 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 299 299 300 299 298 299 299 298 298 299 298 298 299 298 299 299 299 299 299 299 300 299 298 299 298 298 299 297 297 299 294 296 300 291 294 299 288 292 297 286 290 295 284 288 294 283 287 292 281 284 289 278 281 285 273 275 280 266 269 274 260 261 266 259 259 264 260 260 265 263 263 268 266 267 272 268 269 274 269 270 275 267 270 273 265 267 269 263 264 267 263 263 266 262 261 265 261 259 265 259 258 265 256 258 264 254 258 263 253 257 262 251 257 261 249 256 261 247 254 260 246 252 260 244 249 259 244 247 258 243 245 257 242 244 258 243 244 259 244 246 259 248 249 260 247 249 260 249 250 261 250 250 259 248 250 258 246 249 256 242 247 254 239 246 251 239 245 248 239 244 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 241 227 215 243 230 221 247 234 228 250 238 236 253 243 241 256 247 244 259 250 248 262 255 252 266 260 256 269 265 260 272 270 267 272 272 270 272 273 271 272 273 271 272 273 272 272 273 272 272 274 273 273 274 273 273 275 274 274 275 274 274 275 275 274 276 275 275 276 276 277 278 277 278 279 278 279 281 280 282 283 282 284 285 284 286 287 286 288 288 287 289 289 288 290 291 289 291 292 290 292 293 291 293 294 292 294 294 293 295 295 294 295 296 295 296 296 295 296 297 296 297 297 297 297 298 297 298 298 298 298 298 298 298 299 299 298 299 299 298 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 301 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 299 299 300 299 299 299 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 299 299 300 298 299 300 297 297 299 294 296 300 291 294 298 289 292 297 286 290 295 285 289 294 283 287 293 282 286 291 280 283 288 277 279 283 268 271 275 258 260 264 255 256 260 256 256 261 259 259 264 263 263 268 267 268 273 268 269 274 267 269 273 264 266 269 263 263 266 262 262 265 262 261 265 261 259 265 259 258 265 256 258 264 254 257 263 252 257 262 250 257 261 248 256 260 246 254 260 245 252 260 244 249 259 243 247 258 242 244 257 241 243 258 241 243 259 244 245 259 248 249 260 247 249 260 248 250 260 249 250 259 247 249 258 245 248 256 242 247 254 239 245 251 239 244 248 239 243 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 227 215 243 229 220 246 233 228 250 238 236 253 243 241 255 247 245 258 251 249 262 255 253 265 259 256 270 266 261 272 270 268 272 272 270 272 273 271 272 273 271 272 273 272 272 273 272 272 274 273 273 274 273 273 274 274 274 275 274 274 275 275 275 276 275 276 277 276 277 278 278 278 279 279 280 281 280 282 283 282 284 285 284 286 287 286 288 288 287 289 289 288 290 291 289 290 292 290 291 293 291 293 293 292 294 294 293 295 295 294 295 295 295 296 296 295 296 297 296 297 297 297 297 298 297 297 298 298 298 298 298 298 298 298 298 299 299 298 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 299 299 300 299 298 299 300 299 299 300 299 299 300 300 300 300 300 301 299 299 301 298 298 300 296 297 300 294 296 300 291 294 298 289 293 297 287 291 295 284 288 294 283 287 293 282 287 292 281 285 290 277 280 284 268 270 274 255 258 261 251 253 257 253 253 258 256 257 262 260 261 266 265 266 271 268 268 274 267 269 273 264 266 270 263 262 266 262 261 265 262 260 265 261 258 265 259 258 265 256 257 264 253 257 263 251 257 262 250 257 261 247 256 260 246 254 260 245 251 260 243 248 259 242 245 258 241 243 257 240 242 258 240 242 258 242 244 259 247 249 260 247 249 260 247 249 260 248 249 259 247 249 257 245 248 256 242 247 253 239 245 251 239 244 248 239 243 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 227 215 242 229 220 246 233 227 249 238 235 252 242 241 255 247 245 258 250 249 262 255 253 265 259 256 270 265 261 272 270 268 272 272 270 272 273 271 272 273 272 272 273 272 272 273 273 272 274 273 273 274 273 273 274 274 274 275 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 280 281 281 282 283 283 284 285 284 286 286 286 287 288 287 288 289 288 289 290 289 290 291 290 291 292 291 292 293 292 294 294 293 294 295 294 295 295 295 296 296 295 296 297 296 297 297 297 297 298 297 297 298 298 297 298 298 298 298 298 298 299 299 298 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 300 298 300 301 299 300 302 298 299 301 296 297 300 294 296 299 291 295 298 289 292 296 287 291 295 284 288 293 284 288 293 282 286 292 280 284 288 275 277 281 263 266 268 252 256 258 250 253 256 253 254 258 257 256 261 259 259 264 264 263 268 267 267 273 267 268 273 264 266 271 262 262 266 262 260 265 262 259 266 261 258 266 259 258 265 255 257 263 252 257 263 251 257 261 249 257 261 247 256 260 245 253 260 244 251 259 242 247 259 241 245 257 240 242 257 239 241 257 239 241 258 241 243 259 247 248 260 248 249 260 247 249 259 247 249 258 246 248 257 245 248 255 242 247 253 239 245 251 239 244 248 239 243 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 227 215 242 229 220 245 233 227 248 237 235 251 242 241 254 246 244 257 249 248 261 253 253 265 259 256 270 265 261 272 269 267 272 272 270 272 272 271 272 273 272 272 273 272 272 273 273 272 274 273 273 274 273 273 274 274 274 274 274 274 275 275 275 276 276 276 277 277 278 278 278 279 280 279 281 281 281 283 283 283 284 285 284 286 286 285 287 288 287 288 289 288 289 290 289 290 291 290 291 292 291 292 293 292 293 294 293 294 294 294 295 295 294 295 296 295 296 296 296 296 297 296 297 297 297 297 298 297 297 298 298 297 298 298 298 298 299 298 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 299 299 299 297 299 298 297 299 299 298 300 301 298 301 303 298 300 302 298 299 301 296 297 300 294 296 299 291 294 298 289 293 297 287 291 295 286 290 294 284 288 292 282 285 289 277 280 283 269 271 274 255 259 261 251 255 257 253 255 259 258 257 262 260 258 263 259 259 264 262 262 266 266 265 272 266 268 273 264 265 271 262 262 267 262 260 265 262 259 266 261 258 266 259 257 265 255 257 263 252 257 262 249 257 261 248 257 261 246 255 260 244 253 259 243 250 259 242 247 258 240 244 257 240 242 257 239 240 257 238 240 258 241 243 259 247 248 260 248 249 260 247 248 259 246 248 258 246 248 257 244 248 255 242 247 253 239 245 251 239 244 248 239 243 246 239 243 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 227 214 242 229 219 245 232 226 248 236 234 250 241 239 253 244 243 255 248 247 259 252 251 265 259 257 269 264 261 271 268 266 272 271 270 272 272 271 272 273 272 272 273 272 272 273 273 272 273 273 273 274 273 273 274 274 273 274 274 274 275 275 275 276 276 277 277 277 278 279 279 279 280 280 281 282 281 283 283 283 284 285 284 286 286 285 287 288 287 288 289 288 289 290 289 290 291 290 291 292 291 292 293 292 293 293 293 294 294 294 295 295 294 295 296 295 296 296 296 296 297 296 297 297 297 297 298 297 297 298 298 297 298 298 298 298 299 298 299 299 299 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 299 300 300 298 300 299 297 300 300 297 300 301 297 301 302 298 301 303 298 300 302 297 299 301 296 298 300 293 296 299 291 295 298 289 294 297 287 292 295 286 291 294 285 288 292 280 283 286 272 274 276 257 260 262 251 255 256 251 255 257 258 258 262 262 260 265 262 261 267 260 261 266 262 261 265 265 264 270 266 266 272 264 265 271 262 262 267 262 259 265 262 259 266 261 258 266 259 258 264 255 257 263 251 257 262 249 257 261 247 257 261 245 255 260 243 253 259 242 250 259 241 247 259 240 243 257 239 241 257 238 239 257 237 239 257 240 242 259 246 247 260 247 249 260 247 248 259 246 248 258 245 248 256 244 248 255 242 247 253 239 245 251 239 244 248 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 227 214 242 228 219 244 232 226 247 235 233 249 239 238 252 243 242 254 246 245 258 250 250 263 256 255 268 262 260 271 267 265 272 270 270 272 272 271 272 273 272 272 273 272 272 273 273 272 273 273 272 274 273 273 274 274 273 274 274 274 275 275 275 276 276 277 278 278 278 279 279 279 280 280 281 282 282 283 283 283 284 285 284 286 286 285 287 288 287 288 289 288 289 290 289 290 291 290 291 292 291 292 292 292 293 293 293 294 294 293 295 295 294 295 296 295 296 296 296 296 297 296 297 297 297 297 297 297 297 298 298 297 298 298 298 298 298 298 299 299 298 299 299 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 300 299 300 299 300 300 298 300 300 297 300 300 296 300 300 296 300 301 296 300 301 297 300 301 297 300 301 297 299 301 296 298 301 294 297 299 291 295 298 289 294 298 289 293 296 287 291 295 284 287 290 277 278 281 260 265 268 250 254 256 248 252 253 254 257 258 261 261 265 265 263 270 264 264 270 261 262 268 261 261 265 263 262 267 265 264 271 264 264 271 263 261 267 262 259 266 262 259 265 261 258 265 259 258 264 255 257 262 251 257 261 248 257 261 246 256 261 244 254 260 243 252 259 242 249 259 241 246 258 240 243 257 239 240 256 238 239 256 237 238 257 240 241 258 245 246 259 247 248 259 247 248 259 246 248 257 245 248 256 244 247 255 242 247 253 239 245 250 239 244 248 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 226 214 241 228 218 244 231 225 246 235 232 248 238 236 250 241 240 253 244 243 256 248 248 261 253 253 268 261 259 270 265 263 271 269 269 272 272 271 272 273 272 272 273 272 272 273 273 272 273 273 273 273 273 273 274 274 273 274 274 274 275 275 276 276 276 277 278 278 279 279 279 280 280 280 281 282 282 283 283 283 284 284 284 286 286 285 287 287 287 288 289 288 289 290 289 290 291 290 291 291 291 292 292 292 293 293 292 294 294 293 294 295 294 295 295 295 296 296 296 296 296 296 296 297 296 297 297 297 297 297 297 297 298 298 298 298 298 298 298 299 298 299 299 299 299 300 299 300 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 299 300 300 299 300 300 299 300 300 299 300 299 299 300 299 299 300 298 299 300 297 298 299 297 298 298 296 298 298 296 298 298 297 299 299 297 300 300 297 300 301 296 298 300 293 296 299 291 295 298 290 294 297 290 293 296 288 291 294 282 284 287 272 273 275 253 257 260 246 250 253 247 251 252 256 258 259 264 263 266 267 266 272 265 265 272 262 263 270 260 260 265 262 261 266 264 263 270 264 263 270 263 261 267 262 259 265 262 259 265 261 258 265 259 257 264 255 257 262 251 257 261 248 257 261 246 256 260 244 254 260 242 251 259 241 248 259 240 245 258 239 242 257 238 240 256 237 238 256 237 238 257 240 241 258 244 245 259 246 248 259 246 248 258 245 247 257 244 248 256 243 247 255 241 247 253 240 245 250 239 244 248 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 226 213 240 226 214 241 228 218 243 231 225 245 234 231 247 236 235 249 239 238 251 242 241 255 246 246 260 252 251 266 259 258 270 265 263 271 268 267 272 272 271 272 273 272 272 273 272 272 273 273 272 273 273 273 273 273 273 274 273 274 274 274 274 275 275 276 277 277 278 278 278 279 279 280 280 281 281 281 282 282 283 283 283 284 284 284 286 286 285 287 287 287 288 289 288 289 290 289 290 290 290 291 291 291 292 292 292 293 293 292 294 294 293 294 295 294 295 295 295 295 296 295 296 296 296 296 297 296 296 297 297 297 297 297 297 297 298 297 298 298 298 298 299 298 299 299 299 299 300 299 299 300 299 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 299 299 300 299 299 300 299 299 300 298 298 299 298 298 299 298 297 298 297 297 298 297 297 298 297 297 298 296 297 298 296 299 299 296 299 299 295 297 299 293 296 298 291 294 297 291 294 297 290 294 295 287 290 292 279 280 283 267 268 270 249 254 256 244 249 251 247 251 253 256 258 259 265 264 268 268 268 274 266 267 274 263 264 272 260 260 266 262 261 265 264 263 269 264 262 269 262 260 266 261 258 265 261 258 265 261 258 265 259 258 264 256 257 262 251 257 261 248 257 261 245 255 260 244 253 260 242 250 259 241 248 259 240 245 258 239 242 257 238 239 256 237 238 256 237 237 257 239 239 258 242 243 259 246 247 259 246 248 258 245 247 257 244 248 256 243 247 255 242 247 253 240 245 250 239 244 248 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 228 215 240 227 214 240 226 214 241 228 217 243 230 224 245 233 230 246 235 233 247 237 236 250 240 239 253 245 244 258 250 250 265 257 256 269 263 262 271 267 265 271 271 271 272 273 272 272 273 272 272 273 272 272 273 273 273 273 273 273 274 273 274 274 274 275 275 275 276 277 277 278 278 279 279 280 280 280 281 281 282 282 282 283 283 283 284 284 284 286 286 286 287 287 287 288 288 288 289 290 289 290 290 290 291 291 291 292 292 291 293 293 292 294 294 293 294 294 294 295 295 294 295 296 295 296 296 296 296 296 296 296 297 297 297 297 297 297 297 298 297 298 298 298 298 299 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 299 299 299 299 299 299 299 298 299 299 298 299 298 298 299 298 297 298 297 297 297 297 297 297 297 296 297 296 297 297 296 297 298 296 298 299 295 298 298 294 296 297 292 295 297 292 294 296 291 294 295 286 288 290 275 276 278 256 260 262 247 252 253 245 249 251 248 252 253 254 257 259 264 263 267 268 268 274 267 268 275 263 264 272 260 260 267 261 261 267 263 261 268 263 261 267 261 259 265 260 258 265 261 258 265 261 258 265 259 258 264 256 257 263 252 257 261 249 257 261 246 254 260 244 252 260 242 250 259 241 247 259 240 245 258 239 242 257 238 239 256 237 238 255 237 237 256 238 238 257 241 242 258 245 246 258 246 248 258 245 248 257 244 247 255 243 247 254 242 247 253 240 245 250 239 244 248 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 229 215 240 227 214 240 226 213 240 227 217 242 230 223 244 232 228 245 234 232 246 236 234 248 239 237 252 243 243 257 249 249 263 255 254 269 261 261 271 266 265 271 271 270 272 272 272 272 273 272 272 273 272 272 273 273 273 273 273 273 274 274 274 274 274 275 275 276 277 277 277 278 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 291 293 293 292 293 294 293 294 294 294 295 295 294 295 295 295 295 296 295 296 296 296 296 297 297 296 297 297 297 297 298 297 298 298 298 298 299 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 299 299 300 299 299 299 299 298 299 299 298 299 298 298 298 298 297 298 297 297 297 297 297 297 296 296 297 296 296 297 297 297 298 296 298 298 295 298 298 294 297 297 293 295 296 292 294 296 290 293 294 283 285 287 271 272 274 253 257 258 246 251 252 245 250 252 248 252 252 252 255 257 260 262 265 267 268 273 267 268 275 264 264 272 260 260 269 262 261 268 263 261 268 262 259 265 260 257 264 259 257 264 260 257 264 260 257 264 260 258 264 257 257 263 253 257 262 249 256 261 246 254 260 244 251 259 242 249 259 241 247 258 241 245 258 239 243 257 238 240 256 238 238 255 237 237 256 237 237 256 241 241 257 244 245 258 246 248 258 245 248 257 244 247 255 243 247 254 241 247 252 240 245 250 239 244 247 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 229 216 240 227 214 240 226 213 240 227 216 242 229 222 243 231 227 244 233 230 245 234 232 247 237 236 251 242 241 256 248 248 262 254 253 268 261 260 271 266 264 272 271 270 272 272 272 272 273 272 272 273 272 272 273 273 273 273 273 273 274 274 274 274 275 275 275 276 277 277 278 278 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 285 284 285 286 286 287 287 287 288 288 288 289 289 289 290 290 290 290 291 290 291 292 291 292 293 292 293 293 293 294 294 293 294 295 294 295 295 295 295 296 295 296 296 296 296 296 297 296 297 297 297 297 298 297 298 298 298 298 299 298 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 300 299 299 300 299 299 299 299 298 299 299 298 299 298 297 298 298 297 298 297 297 297 296 297 297 296 296 297 296 296 297 297 296 297 297 297 298 295 297 298 294 297 297 294 296 296 293 294 295 290 291 293 281 282 284 269 270 271 252 256 257 247 251 253 246 251 252 247 251 252 250 254 255 258 259 262 265 266 271 267 267 274 264 264 272 261 261 270 261 260 269 262 259 267 260 257 264 258 255 262 257 255 262 259 256 263 260 257 263 260 258 264 258 257 263 254 257 262 250 256 261 246 253 260 244 251 259 243 249 258 241 248 258 240 246 258 240 244 257 238 241 255 238 238 255 237 237 255 237 236 256 239 239 257 243 244 257 245 247 258 245 248 256 244 247 255 243 247 254 241 246 252 240 245 250 239 244 247 239 243 246 239 242 244 239 242 242 244 233 220 244 232 217 243 231 217 242 230 217 241 229 216 241 227 214 240 226 213 240 227 216 241 229 222 243 231 226 243 232 229 244 233 231 246 236 234 250 241 240 255 247 247 262 253 253 268 260 260 271 266 264 272 271 270 272 272 272 272 273 272 272 273 272 273 273 273 273 273 273 274 274 274 274 274 275 275 276 276 277 277 278 278 279 279 280 280 281 281 281 282 282 282 283 283 283 283 284 285 285 285 286 286 286 287 287 287 288 288 289 289 289 289 290 290 290 291 290 291 291 291 292 292 292 293 293 293 294 294 293 294 294 294 294 295 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 298 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 300 299 299 300 299 299 299 299 298 299 298 298 299 298 297 298 297 297 298 297 296 297 296 296 297 296 296 297 296 296 297 297 296 297 297 297 298 296 297 298 295 297 297 295 296 296 294 295 295 289 290 291 279 280 282 267 268 267 255 257 257 249 253 254 247 252 253 246 251 252 248 252 254 255 257 260 263 263 268 266 266 273 264 264 273 262 261 271 261 260 269 261 258 267 258 255 262 255 253 260 255 253 259 257 255 261 260 257 263 260 258 264 258 258 263 254 257 262 250 256 261 247 253 259 244 251 259 242 249 258 241 248 258 240 246 257 240 244 256 239 242 255 238 239 254 237 237 255 236 236 255 237 237 256 241 243 257 245 247 257 244 247 256 244 247 255 243 247 254 241 246 252 240 245 249 239 244 247 239 243 246 239 242 244 239 242 242 245 233 220 244 232 217 243 231 217 242 230 217 242 229 216 241 227 215 240 226 213 240 227 216 241 229 221 242 230 225 242 231 228 243 232 230 245 235 233 249 240 239 254 246 246 261 252 252 268 259 259 271 266 264 272 271 270 272 272 272 272 273 272 272 273 272 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 278 279 279 279 280 280 281 281 281 282 282 282 283 283 283 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 290 291 291 291 292 292 292 293 293 293 294 294 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 300 299 299 299 299 298 299 298 298 299 298 297 298 297 297 298 296 296 297 296 296 297 296 296 297 296 296 297 296 296 297 297 296 297 297 297 298 296 297 297 295 297 296 294 295 294 288 289 290 278 279 280 266 266 266 256 257 257 250 253 254 248 252 254 246 251 252 247 251 253 253 256 258 262 261 265 265 265 272 265 265 273 262 262 271 260 259 269 259 256 265 256 253 261 253 251 258 253 251 258 256 254 260 259 256 262 260 258 264 258 258 263 255 257 262 250 255 261 247 253 259 244 251 258 243 250 258 242 249 258 240 247 256 239 245 255 238 242 254 238 240 254 237 238 254 235 235 254 236 236 255 239 240 255 244 247 257 244 247 256 244 247 254 242 247 253 241 246 252 241 245 249 240 244 247 239 243 246 239 242 244 239 242 242 245 233 220 244 232 217 243 231 217 243 230 217 242 229 216 241 228 215 240 227 213 240 227 215 241 228 220 242 230 225 242 230 227 243 232 229 245 234 232 248 239 238 254 245 245 260 251 251 267 259 258 271 265 264 272 270 270 272 272 272 272 273 272 272 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 278 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 285 285 285 286 286 287 287 287 287 288 288 288 289 289 289 290 289 290 290 290 291 291 291 292 292 292 293 293 292 293 293 293 294 294 294 294 294 294 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 299 299 300 299 298 299 298 298 299 298 297 299 297 297 298 296 296 297 296 296 297 296 296 297 296 296 297 297 296 297 297 296 297 297 296 297 296 296 297 294 295 295 293 294 294 287 289 289 278 278 280 267 267 268 257 258 258 252 255 255 249 252 254 247 251 253 248 252 254 253 256 258 260 260 264 266 266 272 266 265 273 262 262 272 260 258 268 258 254 263 255 252 259 253 250 258 253 251 257 256 253 259 258 256 262 259 257 263 258 257 262 255 257 262 251 255 261 247 253 259 244 251 258 243 250 258 241 248 257 240 246 255 239 245 254 238 243 253 239 241 254 237 238 254 235 235 254 235 235 254 238 239 255 243 246 256 244 247 255 243 247 254 242 246 253 241 246 252 241 245 249 240 244 247 239 243 246 239 242 244 239 242 242 245 233 220 244 232 217 243 231 217 243 230 217 242 229 217 241 228 215 240 227 213 240 227 215 241 228 220 241 229 224 241 230 226 242 231 228 244 234 231 248 238 237 253 244 244 260 251 251 267 259 259 271 265 264 272 270 270 272 272 272 272 273 272 272 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 278 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 286 286 287 287 287 287 288 288 288 289 289 289 289 289 290 290 290 291 291 291 292 292 292 293 293 292 293 293 293 293 294 294 294 294 294 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 300 299 298 299 298 298 299 298 298 299 297 297 298 296 296 297 296 296 297 296 296 297 296 296 297 297 296 297 297 296 297 296 296 297 295 295 296 293 294 294 291 293 292 287 288 288 278 280 281 269 269 270 260 261 261 254 256 256 251 253 255 249 252 255 250 253 255 254 256 258 259 259 263 264 265 270 265 265 273 261 262 271 259 256 267 256 253 261 253 250 258 252 250 257 254 251 257 256 253 259 258 255 261 258 256 262 258 257 262 255 257 262 251 255 261 247 253 259 244 251 258 242 250 257 241 248 256 239 246 255 238 245 253 238 243 253 238 241 253 237 239 253 235 236 254 234 235 254 237 238 254 242 245 255 243 247 255 242 246 254 241 246 253 241 246 252 241 245 249 240 244 247 239 243 246 239 242 244 239 242 242 245 233 220 244 232 217 243 231 217 243 230 217 242 229 217 241 228 216 241 227 214 240 227 215 240 228 219 241 229 223 241 229 225 242 231 227 244 233 230 247 237 236 253 244 243 259 251 250 267 260 259 270 265 264 272 269 270 272 272 272 272 272 272 272 273 272 272 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 278 279 279 280 280 280 281 281 281 282 282 282 282 283 283 284 284 284 285 286 286 286 287 287 287 287 288 288 288 288 288 289 289 289 290 290 290 291 291 291 292 292 292 292 292 292 293 293 293 293 293 294 294 294 294 294 294 295 295 295 296 295 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 298 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 299 299 300 299 299 300 298 298 299 298 298 299 297 297 298 296 297 298 296 296 297 296 297 297 297 297 297 297 297 297 297 297 297 295 296 296 293 294 295 291 292 293 290 291 291 287 288 288 279 281 282 271 271 273 262 263 263 256 258 258 253 255 256 250 253 256 252 254 257 255 257 259 258 259 262 262 264 269 263 264 272 261 261 270 258 256 265 255 252 259 253 249 257 253 249 257 254 250 258 256 253 260 257 255 261 258 257 262 257 257 262 254 256 262 250 255 260 247 253 259 244 251 258 242 249 257 240 248 256 239 246 254 238 245 253 238 243 252 238 241 253 237 239 253 235 236 253 234 234 253 236 237 254 241 245 255 243 246 254 241 245 253 241 246 253 242 246 252 241 245 249 240 244 247 239 243 245 239 242 244 239 242 242 245 233 220 244 232 218 244 231 217 243 230 217 242 230 217 241 229 216 241 227 214 240 227 215 240 228 218 240 229 222 241 229 224 242 230 226 243 233 229 247 237 235 252 243 242 259 250 250 267 260 258 270 264 263 272 269 269 272 271 272 272 272 272 272 273 273 272 273 273 273 273 273 274 274 274 275 275 275 276 276 277 277 277 278 279 279 280 280 280 281 281 281 281 282 282 282 283 283 284 284 284 285 286 286 286 286 287 287 287 287 288 288 288 288 289 289 289 290 290 290 291 291 291 292 292 292 292 292 292 293 293 293 293 293 293 294 294 294 294 294 295 295 295 296 295 296 296 296 296 297 297 297 297 297 297 297 297 297 298 298 298 298 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 299 299 300 299 299 300 298 298 299 298 298 299 297 298 298 297 297 298 296 296 297 296 297 297 296 297 298 297 297 298 295 296 297 294 296 297 293 295 296 291 293 294 289 291 291 286 288 288 280 281 282 272 273 274 263 264 265 258 259 260 253 256 257 251 254 257 253 255 257 255 257 259 256 258 261 260 261 268 262 263 271 259 259 269 256 254 263 254 251 259 252 249 257 252 248 257 253 250 258 255 252 260 256 254 261 257 256 262 257 257 262 254 256 262 250 255 260 246 253 259 243 251 257 241 249 256 239 248 255 238 246 254 238 244 252 237 243 252 238 241 253 237 239 253 234 236 253 233 234 253 235 237 253 240 244 254 241 245 254 240 244 253 241 245 252 242 246 251 241 245 249 240 244 247 239 243 245 239 242 244 239 242 242 245 233 220 244 232 218 244 231 217 243 231 217 242 230 217 242 229 216 241 228 214 241 228 215 240 228 218 240 229 221 240 229 224 241 230 225 243 232 228 247 236 234 252 243 242 259 250 249 266 258 257 270 263 263 271 268 268 272 271 271 272 272 272 272 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 279 279 279 280 280 281 281 281 281 282 282 282 283 283 284 284 284 285 286 286 286 286 286 287 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 291 291 292 292 292 292 292 293 293 293 293 293 294 294 294 294 295 295 295 296 295 296 296 296 296 297 296 296 297 297 297 297 297 297 298 298 298 299 298 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 298 299 299 298 299 299 298 298 299 297 297 298 297 297 297 296 297 298 294 296 297 294 297 298 294 297 298 294 297 298 293 296 296 291 293 294 288 290 291 285 287 288 280 281 282 271 273 274 261 263 266 256 259 261 254 257 259 252 255 257 253 255 257 253 255 258 255 257 261 259 259 266 261 261 269 258 257 268 255 253 261 253 250 258 251 248 257 251 248 257 253 249 258 255 252 259 256 254 261 256 255 261 256 256 262 254 256 262 250 255 260 245 253 259 242 251 257 240 249 256 238 247 255 238 246 253 237 244 252 237 242 252 237 240 253 237 239 253 234 236 253 233 234 253 234 237 253 238 243 253 240 244 253 239 243 252 241 245 252 242 246 251 241 245 249 240 244 247 239 243 245 239 242 244 239 242 242 245 233 220 244 232 218 244 231 218 243 231 218 242 230 217 242 229 217 241 228 215 241 228 215 240 228 217 240 228 221 240 229 223 241 230 225 243 232 228 247 236 233 252 243 241 258 250 249 265 256 255 269 262 262 271 267 268 272 271 271 272 272 272 272 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 277 277 277 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 284 284 284 285 285 285 286 286 286 287 287 287 287 288 288 288 289 289 289 290 290 290 291 290 291 291 291 291 292 292 292 292 292 292 293 293 293 293 293 294 294 294 295 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 299 298 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 298 299 299 298 299 299 299 299 299 300 299 300 300 298 299 300 298 298 300 297 298 299 296 297 299 294 297 299 293 297 300 292 296 298 291 295 297 290 293 295 289 291 292 286 288 289 283 285 286 276 279 280 269 270 273 259 262 266 255 259 262 253 257 259 252 255 258 253 255 257 252 255 258 255 257 260 259 259 266 260 261 269 257 256 267 254 252 261 252 250 258 250 248 256 250 248 257 252 249 257 253 251 259 255 253 260 256 255 261 256 256 262 253 256 262 249 255 260 245 253 259 242 251 257 239 249 255 238 247 254 237 246 253 237 244 252 237 241 252 237 239 252 236 239 253 234 236 253 233 235 252 234 236 252 238 242 253 239 243 252 240 244 252 242 245 252 243 247 251 241 245 249 240 244 247 239 243 245 239 242 244 239 242 242 245 233 220 244 232 218 244 231 218 243 231 218 242 230 218 242 229 217 241 228 215 241 228 215 240 228 217 240 228 220 240 229 222 241 230 224 243 232 227 246 236 233 252 243 241 258 250 248 265 255 255 269 261 261 271 267 267 272 271 271 272 272 272 272 273 273 273 273 273 273 273 274 273 274 274 275 275 275 276 276 277 277 277 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 288 289 289 289 290 290 290 290 291 291 291 291 291 292 292 292 292 292 293 293 293 293 294 294 294 294 295 295 295 295 295 295 296 295 295 296 296 296 297 296 297 297 297 297 298 298 298 299 298 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 298 298 298 299 299 299 299 299 300 299 300 300 299 300 300 298 299 301 297 299 300 296 298 300 295 297 299 293 297 300 292 297 300 290 295 298 289 293 296 288 291 293 286 290 291 284 286 288 279 281 283 273 275 277 265 266 269 258 261 264 255 258 262 254 258 260 252 256 259 253 255 258 253 256 259 257 258 262 260 261 266 261 262 269 257 256 267 254 252 262 252 251 258 251 249 257 250 248 256 251 249 257 252 250 258 254 252 260 255 255 261 255 256 262 253 256 262 248 254 260 244 253 259 241 250 257 238 249 255 237 247 254 237 245 253 237 243 252 237 241 252 236 239 252 236 238 252 234 237 253 232 235 252 233 236 252 238 242 252 238 243 252 240 244 252 244 247 252 243 247 251 241 245 249 240 244 247 239 243 245 239 242 244 239 242 242 245 233 220 244 232 218 244 231 218 243 231 218 243 230 218 242 230 218 241 229 216 241 228 215 240 228 217 240 228 219 240 229 222 241 230 224 243 232 227 246 236 233 252 243 240 258 249 248 264 255 254 268 261 261 271 268 267 272 271 271 272 272 272 272 273 273 273 273 273 273 273 274 273 274 274 275 275 275 276 276 277 277 277 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 287 288 288 288 289 289 289 289 290 290 290 291 291 291 291 291 291 292 292 292 292 292 293 293 293 294 294 294 294 295 295 295 295 295 295 296 295 295 296 296 296 297 296 297 298 297 298 298 297 298 299 298 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 298 298 298 297 297 298 299 299 299 299 299 299 299 299 300 298 299 299 298 299 300 298 299 299 297 298 300 295 298 300 293 297 300 292 297 300 291 296 299 289 294 297 287 292 295 286 290 292 284 288 289 280 283 285 276 278 280 272 274 275 266 267 269 259 262 265 256 260 263 253 259 261 253 258 260 255 257 259 256 257 260 259 260 264 261 263 267 261 263 269 257 258 268 254 253 263 253 252 259 252 250 257 251 250 257 252 250 257 252 250 258 253 252 260 255 255 261 255 256 262 252 255 261 248 254 260 244 252 258 240 250 256 238 249 255 237 247 254 236 245 253 237 243 253 236 241 252 235 239 252 235 238 252 234 237 253 232 235 252 233 236 251 237 241 252 238 242 252 241 244 252 245 248 253 243 247 251 241 245 249 240 244 247 240 243 245 239 242 244 239 242 242 245 233 220 244 232 218 244 232 218 243 231 218 243 231 218 242 230 218 242 229 216 241 228 215 240 228 217 240 228 219 241 229 221 242 231 223 243 233 227 247 237 232 252 243 240 258 249 247 264 255 254 268 261 260 271 268 268 272 271 271 272 272 272 272 273 273 273 273 273 273 273 274 273 274 274 274 275 276 276 276 277 277 277 278 279 278 279 280 280 280 281 281 281 282 282 282 283 283 284 284 284 285 285 285 285 286 286 286 287 287 287 287 288 288 288 288 289 289 289 290 290 290 291 291 291 291 291 291 292 292 292 293 293 293 293 293 294 294 294 294 295 294 294 295 294 295 295 295 295 296 296 296 297 296 297 298 297 298 299 298 299 299 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 298 298 298 297 297 298 298 298 298 298 298 298 299 300 299 298 299 298 298 298 299 298 298 299 298 298 299 298 298 299 297 298 299 295 298 299 293 297 299 292 296 299 290 295 298 288 293 296 286 291 294 284 289 292 283 287 289 279 282 284 276 278 281 273 275 278 270 272 274 263 267 270 259 264 266 256 261 264 257 259 262 258 259 261 260 260 263 262 262 266 263 264 269 261 263 270 258 260 268 256 255 264 254 253 260 253 252 258 252 252 258 253 253 259 254 253 260 255 254 261 255 255 261 253 256 262 251 255 261 247 254 260 243 252 258 240 250 256 238 249 255 236 247 254 236 245 253 236 243 253 236 241 253 235 238 252 235 238 252 233 237 252 232 235 252 233 236 251 236 240 251 238 242 252 243 246 253 245 248 253 243 247 251 241 245 249 240 244 247 240 243 245 240 242 244 239 242 242 245 233 220 244 232 218 244 232 218 244 231 218 243 231 218 242 230 218 242 229 217 241 228 216 241 228 217 240 229 218 241 229 221 242 231 223 243 233 227 247 237 232 252 243 240 258 250 247 264 256 254 268 261 260 271 269 268 272 272 272 272 272 272 272 273 273 273 273 273 273 273 274 273 274 274 274 275 276 276 276 277 277 277 278 279 278 279 280 280 280 281 281 281 282 282 283 284 283 284 284 284 285 285 285 285 286 286 286 287 287 287 287 287 288 288 288 289 289 289 290 290 290 291 290 291 291 291 291 292 292 292 293 293 293 294 293 294 294 294 294 294 294 294 295 294 295 295 295 295 296 296 296 297 296 297 298 297 298 299 298 299 299 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 298 298 298 297 297 298 298 297 298 298 298 298 299 299 298 299 299 298 298 298 298 298 298 299 298 298 299 298 299 299 298 299 299 297 299 299 296 299 300 293 297 299 291 294 298 289 294 298 286 292 296 284 290 294 283 288 292 282 286 289 279 283 286 277 280 284 275 278 281 272 274 278 268 270 274 264 267 271 261 263 267 260 261 264 261 261 264 262 262 266 263 264 268 263 264 270 261 263 270 259 260 268 257 256 264 255 254 261 254 254 260 253 253 259 255 255 260 254 254 261 255 255 261 254 255 261 253 256 261 250 255 261 247 253 259 243 252 257 239 250 256 237 248 254 236 247 253 235 244 253 235 242 253 235 241 253 234 238 252 234 237 252 233 237 252 232 236 252 233 236 251 236 239 251 239 242 252 244 247 253 245 248 253 243 246 251 241 245 249 240 244 247 240 243 245 240 242 244 239 242 242 245 233 220 244 232 218 244 232 218 244 231 218 243 231 219 242 230 219 242 230 217 241 229 216 241 228 217 241 229 218 241 230 220 242 231 223 243 233 226 247 237 232 252 243 240 258 250 247 265 256 254 268 261 260 271 269 269 272 272 272 272 272 272 272 273 273 273 273 273 273 273 274 273 274 274 275 275 276 276 276 277 277 277 278 278 278 279 280 280 280 281 281 281 282 282 283 284 283 284 284 284 285 285 285 286 286 286 286 286 287 287 287 287 288 288 288 289 289 289 290 290 290 291 290 291 291 291 291 292 292 292 293 293 293 294 293 294 294 294 294 294 294 294 295 294 295 296 295 296 296 296 296 297 297 297 298 297 298 299 298 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 298 299 299 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 299 298 299 300 298 299 300 297 300 299 295 299 298 292 296 297 290 293 297 288 292 297 285 291 296 284 289 294 283 287 292 282 286 289 279 284 287 277 281 285 274 277 282 272 272 278 270 268 275 267 267 272 264 265 270 264 263 267 264 263 267 264 264 268 264 265 270 263 265 271 261 263 270 259 261 268 257 258 265 255 256 262 254 254 261 254 254 261 255 255 261 254 255 261 254 255 261 253 256 261 252 255 261 250 254 260 247 253 258 242 251 257 239 250 255 237 248 254 235 246 253 235 244 253 235 242 253 234 240 253 234 239 252 233 237 252 233 237 252 232 236 251 233 237 251 236 239 251 239 243 252 244 247 253 244 247 253 242 246 251 241 245 249 240 244 247 240 243 245 240 242 244 239 242 242 245 233 220 244 232 218 244 232 218 244 231 219 243 231 219 243 231 219 242 230 217 241 229 216 241 229 217 241 229 218 241 230 220 242 231 222 243 233 227 247 238 233 252 243 240 258 250 247 265 257 255 268 262 261 271 270 269 272 272 272 272 272 272 272 273 273 273 273 273 273 273 274 273 274 275 275 275 276 276 276 277 277 277 278 278 278 279 280 280 280 281 281 281 282 282 283 284 283 284 284 284 285 285 285 286 286 286 286 286 287 287 287 287 288 288 288 289 289 289 290 290 290 291 290 291 291 291 292 292 292 292 293 293 293 293 293 294 294 293 294 294 294 295 295 294 295 296 295 296 297 296 297 298 297 298 299 298 298 299 298 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 299 300 300 298 298 299 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 299 299 298 299 299 297 299 300 297 300 300 295 298 298 292 295 297 290 293 296 288 291 296 286 290 295 284 288 293 283 287 291 281 285 289 279 283 286 277 280 284 274 275 281 272 271 277 271 269 274 270 268 273 267 267 271 266 265 270 266 265 269 265 265 270 264 265 271 263 264 271 261 263 270 259 261 267 257 258 265 255 256 263 254 255 262 253 255 261 254 255 262 254 255 261 253 255 261 252 255 261 251 255 260 249 254 259 246 253 258 242 251 257 238 249 255 236 248 253 235 246 253 234 244 253 233 242 253 233 240 253 233 238 252 233 238 252 232 237 252 232 236 251 233 237 250 236 240 251 242 245 253 245 247 253 244 247 252 242 246 251 241 245 249 240 244 247 240 243 245 240 242 244 239 242 242 245 234 221 244 233 219 244 232 219 244 232 219 243 231 219 243 231 219 242 230 218 242 229 216 241 229 217 241 229 217 241 230 219 242 232 222 244 234 227 247 238 233 253 244 241 259 250 248 265 257 255 269 264 262 271 270 269 272 272 272 272 272 272 273 273 273 273 273 273 273 273 274 273 274 275 275 275 276 276 276 277 277 277 278 278 278 279 280 280 280 281 281 281 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 286 287 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 291 292 292 292 293 293 293 293 294 293 294 294 294 294 295 294 295 296 295 296 297 296 297 298 296 297 298 297 298 299 298 299 300 298 299 300 299 300 300 300 300 300 300 300 300 300 300 300 299 299 300 299 299 299 300 299 300 300 299 300 300 299 300 299 299 299 299 299 299 299 298 299 299 298 299 299 299 299 298 299 299 298 299 299 298 299 299 298 299 300 297 299 301 293 297 299 291 294 297 290 292 297 289 290 294 288 289 293 287 288 292 284 287 291 281 284 288 279 282 286 277 279 283 274 275 281 273 273 278 273 272 276 272 271 275 269 269 273 267 267 271 267 267 271 266 267 271 264 265 271 262 264 270 261 263 269 259 261 267 257 259 265 255 256 264 253 255 262 254 255 261 254 255 261 253 255 261 252 254 261 251 254 260 249 254 259 248 253 258 245 252 258 242 251 256 238 249 254 236 247 253 235 245 253 233 243 253 233 241 253 233 240 253 233 239 252 232 238 252 232 237 252 232 237 251 234 238 250 238 241 251 243 246 253 245 247 253 244 247 252 242 245 251 241 244 249 240 244 247 240 243 245 240 242 244 239 242 242 245 234 221 244 233 219 244 232 219 244 232 219 244 232 219 243 231 219 242 230 218 242 229 217 241 229 217 241 229 217 241 230 219 242 232 222 244 234 227 248 239 234 253 244 241 259 251 248 266 259 256 269 265 263 271 270 270 272 272 272 272 272 272 273 273 273 273 273 273 273 273 274 273 274 275 275 275 276 276 276 277 277 277 278 278 278 279 280 280 280 281 281 281 282 282 283 284 283 284 284 284 285 285 285 286 286 286 287 286 287 288 287 288 289 288 288 289 289 289 290 290 290 291 291 291 292 292 292 293 292 293 293 293 293 294 294 294 295 295 295 296 295 296 297 296 297 298 296 298 298 297 298 299 298 299 300 298 299 300 299 299 300 299 300 300 300 300 301 300 300 300 300 300 300 299 299 299 299 299 300 300 299 300 300 299 300 300 299 300 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 299 298 298 299 296 298 299 293 296 298 292 294 297 292 293 296 291 292 295 290 291 294 288 289 293 285 288 293 282 285 289 279 282 286 277 279 283 275 276 281 275 275 279 274 274 277 272 272 276 270 270 275 268 268 273 268 268 272 266 267 271 263 265 270 261 264 269 260 263 269 259 262 267 256 259 266 254 256 264 253 254 262 253 255 261 253 255 261 253 254 261 251 254 260 249 253 259 248 252 258 247 252 257 245 252 257 242 250 256 238 248 254 236 246 253 234 244 253 233 243 253 232 241 253 232 240 253 232 239 252 232 238 252 231 238 251 232 237 250 234 238 250 239 242 251 243 247 253 245 247 253 243 246 252 242 245 250 241 244 248 240 244 247 240 243 245 240 242 244 239 242 242 245 234 221 245 233 219 244 232 219 244 232 219 244 232 220 243 231 219 242 230 218 242 230 217 242 229 217 242 229 216 241 230 218 242 232 222 244 235 227 248 239 234 254 245 242 260 251 248 266 260 257 269 266 263 272 271 270 272 272 272 272 273 272 273 273 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 280 280 280 281 281 281 282 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 287 288 289 288 289 290 289 290 291 290 291 292 291 292 292 292 292 293 293 293 294 294 294 294 294 295 296 295 296 297 296 297 298 297 298 299 297 299 299 298 299 300 298 299 300 299 299 300 299 299 300 300 300 301 300 300 301 300 300 300 300 300 300 299 299 299 300 299 300 300 300 300 300 299 300 299 299 299 299 298 299 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 299 298 298 299 297 297 299 296 296 298 295 295 297 294 295 297 293 294 296 291 292 296 289 290 294 286 288 294 282 286 291 279 283 287 277 279 284 275 277 281 275 275 279 274 274 277 272 271 276 270 270 275 270 270 274 269 269 273 266 268 271 263 265 270 261 264 269 259 263 268 258 261 266 256 259 265 254 256 265 253 255 263 252 254 261 252 255 261 251 254 260 249 253 259 247 252 258 246 251 257 245 251 256 245 251 256 242 250 256 238 248 254 235 245 252 234 244 253 232 242 253 232 241 253 231 240 253 231 239 252 231 238 252 231 238 251 232 238 250 235 239 250 239 242 251 243 247 253 244 246 253 243 245 251 242 245 250 241 244 248 240 243 247 240 243 245 240 242 244 239 242 242 245 234 221 245 233 219 244 232 219 244 232 220 244 232 220 243 232 220 242 231 218 242 230 217 242 229 216 242 230 216 242 230 218 242 232 222 244 235 228 249 240 235 254 246 242 260 252 249 266 259 256 270 266 263 272 271 270 272 272 272 272 273 272 273 273 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 276 277 277 278 278 278 279 280 280 280 281 281 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 292 293 293 293 293 293 294 294 295 295 295 296 296 297 297 298 298 297 299 299 298 299 300 298 300 300 299 300 300 299 300 300 299 300 300 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 298 298 299 300 299 300 300 300 300 299 299 299 298 298 298 298 297 297 297 297 297 298 298 298 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 299 299 298 298 299 297 297 298 296 297 298 296 296 297 294 295 297 293 294 296 290 291 295 286 289 294 283 286 292 280 283 288 277 280 285 275 278 282 274 276 279 273 274 278 272 272 276 272 272 276 271 272 276 270 271 274 267 269 272 264 266 271 261 264 269 259 263 267 257 261 266 256 260 265 254 257 265 253 255 263 252 254 261 251 254 260 250 253 260 247 252 259 245 251 257 244 250 256 244 250 256 244 250 256 242 250 255 238 247 253 235 244 252 233 243 252 232 242 253 231 240 253 231 239 252 231 239 251 230 239 251 231 239 251 233 239 250 236 240 250 239 243 251 243 247 253 243 246 252 243 245 251 242 244 250 241 244 248 240 243 246 240 243 245 240 242 244 239 242 242 245 234 221 245 233 219 245 233 220 245 232 220 244 232 220 243 232 220 243 231 218 242 230 217 242 230 216 242 230 216 242 231 217 242 232 221 244 236 228 249 241 236 255 247 243 261 252 249 267 260 255 270 266 264 272 271 270 272 272 272 273 273 272 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 276 276 277 277 278 278 278 279 280 280 280 281 281 282 283 282 283 284 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 289 290 290 291 291 291 292 292 293 293 293 294 294 294 295 295 295 297 297 297 298 298 299 299 300 300 300 301 301 300 301 301 300 301 301 299 300 301 300 300 301 300 300 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 298 298 299 300 300 300 300 300 300 299 299 299 298 298 298 297 297 297 296 296 297 297 297 297 299 299 299 299 299 300 300 299 299 300 299 299 299 299 300 299 299 299 299 299 299 298 298 299 297 298 299 296 297 298 295 296 298 294 295 297 291 293 295 287 289 294 283 286 292 280 283 289 277 281 286 276 279 283 275 277 281 274 275 279 274 274 278 273 274 278 272 274 277 271 272 275 268 270 273 265 268 272 262 265 270 259 263 267 257 261 266 255 259 265 254 257 264 253 255 263 251 254 261 251 254 260 249 253 259 246 252 258 244 250 257 243 249 255 243 249 255 243 249 255 242 249 254 238 246 253 234 244 252 232 242 252 231 241 252 231 240 252 231 239 252 230 239 251 230 239 251 231 239 250 233 240 250 237 241 250 241 245 252 243 247 253 243 245 252 243 244 251 242 244 250 241 244 248 240 243 246 240 243 245 240 242 244 239 242 242 245 234 221 245 233 219 245 233 220 245 233 220 244 232 220 244 232 220 243 231 219 242 230 217 242 230 216 242 230 216 242 231 217 242 233 221 245 236 228 249 241 236 255 247 243 261 253 249 267 260 256 270 267 264 272 271 270 272 272 272 273 273 272 273 273 273 273 273 273 274 274 274 274 275 275 275 275 276 276 276 277 277 277 278 278 278 279 280 280 281 281 281 282 283 282 283 284 283 284 285 284 285 285 285 286 286 286 287 287 287 288 288 288 289 289 290 291 291 291 292 293 293 293 294 294 294 296 295 295 298 297 297 300 299 299 302 302 301 304 303 302 302 302 301 302 302 301 301 301 301 300 301 301 300 300 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 299 299 300 300 300 300 300 300 300 299 299 299 297 298 298 296 296 297 296 296 297 296 296 297 297 297 298 299 299 299 299 299 299 300 299 299 299 299 300 299 299 299 299 299 299 298 299 299 298 298 299 297 298 299 296 297 298 295 296 297 292 294 296 288 290 294 283 287 292 279 284 290 277 282 287 276 280 284 275 278 282 275 277 280 274 275 279 274 275 279 273 274 278 271 273 277 270 271 275 267 269 273 263 266 271 259 263 267 257 261 265 255 259 264 253 257 264 252 255 262 251 254 261 249 253 260 248 253 259 245 251 258 244 250 257 242 248 255 241 248 254 242 248 254 241 248 254 238 246 253 234 244 252 232 242 252 231 241 252 231 240 251 230 239 251 230 239 250 230 239 250 230 239 250 235 242 250 239 244 251 243 246 252 243 247 252 243 244 252 242 244 251 242 244 250 241 244 248 240 243 246 240 243 245 240 242 244 239 242 242 245 234 221 245 233 220 245 233 220 245 233 221 245 233 221 244 232 220 243 231 219 243 231 217 242 230 216 242 230 216 241 231 217 242 233 221 245 237 229 250 242 237 255 248 244 261 253 249 267 260 256 270 267 265 272 272 270 272 272 272 273 273 272 273 273 273 273 273 273 274 274 274 274 275 275 275 275 276 276 276 277 277 277 278 279 279 279 280 280 281 282 281 282 283 283 283 284 284 284 285 284 285 285 285 286 286 286 287 287 287 288 288 288 289 290 290 291 291 292 292 294 294 293 296 295 294 299 297 296 302 300 298 305 302 300 306 304 300 307 305 302 306 303 300 303 302 301 302 301 302 301 301 302 300 300 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 297 298 298 296 297 297 296 296 297 295 296 297 296 296 298 297 297 299 299 299 299 299 299 299 299 299 300 299 299 299 299 299 299 299 299 299 298 299 299 297 298 299 296 297 298 295 296 298 293 295 297 290 292 295 285 289 294 280 285 291 277 282 288 276 280 285 275 278 283 275 277 281 274 275 279 273 274 279 272 274 278 271 274 278 270 273 276 268 271 275 264 268 272 260 264 268 257 261 265 255 259 264 254 257 264 252 256 262 250 254 261 248 253 260 246 252 258 245 251 258 243 250 257 242 248 255 241 247 254 241 248 253 240 247 253 238 246 253 234 243 252 232 241 252 231 240 251 230 239 251 230 239 250 229 240 250 230 240 250 230 240 249 236 242 250 241 246 251 243 247 252 243 246 252 243 244 252 242 244 251 242 244 250 241 244 248 240 243 246 240 243 245 240 242 244 239 242 242 245 234 221 245 233 220 245 233 221 245 233 221 245 233 221 244 232 221 243 232 219 243 231 217 242 230 216 242 230 215 241 231 216 242 233 221 245 237 229 250 243 237 255 248 244 261 254 250 268 261 257 271 268 265 272 272 271 272 273 272 273 273 273 273 273 273 273 273 273 274 274 274 275 275 275 275 276 276 276 277 277 277 278 278 279 279 279 280 280 281 282 282 282 283 283 283 284 284 284 285 284 285 285 285 285 286 286 287 287 287 288 288 288 289 290 290 290 293 293 292 296 295 293 299 297 295 301 299 296 303 301 297 305 302 297 305 303 298 306 304 299 306 303 300 303 302 301 301 301 302 301 301 302 301 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 299 300 299 299 299 297 297 298 296 297 297 296 296 297 296 296 297 296 296 297 298 298 299 299 299 299 299 299 300 299 299 300 299 299 299 299 299 299 298 299 299 297 298 299 296 298 299 296 297 298 294 296 297 291 294 296 287 290 294 281 286 291 277 283 288 275 280 286 275 278 283 274 277 281 273 275 279 273 275 279 272 274 279 271 274 278 271 273 277 269 272 276 265 269 273 261 265 269 257 262 266 255 259 265 253 257 264 250 255 262 249 254 261 247 253 260 246 252 259 244 251 258 242 250 256 241 248 254 240 246 253 240 247 253 240 247 253 237 246 253 234 243 253 232 241 252 231 240 251 230 239 250 230 239 249 229 240 249 229 240 249 230 240 249 236 243 250 241 246 252 243 246 252 242 245 252 242 244 251 242 244 250 242 244 249 241 243 248 241 243 246 240 243 245 240 242 244 239 242 242 245 234 221 245 233 220 245 233 221 245 233 222 245 233 222 245 233 221 244 232 219 243 231 218 242 231 216 242 231 215 241 231 216 242 234 221 245 238 229 250 243 237 255 248 244 261 254 250 267 261 257 271 269 266 272 272 271 272 273 272 273 273 273 273 273 273 273 273 274 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 280 281 281 281 282 282 282 283 283 283 284 284 284 285 284 285 285 285 285 286 286 287 287 287 288 288 289 289 290 290 290 293 293 292 296 295 293 299 297 295 300 298 295 302 300 296 303 301 296 304 301 297 306 303 300 305 303 301 302 302 302 300 300 301 301 301 302 301 300 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 301 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 298 298 299 299 298 299 298 298 299 297 297 298 299 299 299 299 299 300 299 299 300 299 299 300 299 299 299 299 299 300 298 299 299 298 299 299 297 298 299 296 297 298 295 296 298 292 294 297 288 291 295 284 288 292 279 284 289 275 280 286 274 278 284 273 277 281 273 276 280 273 275 279 272 275 279 271 274 278 271 273 277 270 272 276 266 269 274 261 266 271 257 263 267 255 260 265 252 257 264 250 255 262 247 254 261 246 253 260 245 252 259 243 251 258 242 249 256 240 247 254 239 246 252 240 246 253 239 246 253 237 245 253 234 242 253 232 240 251 231 239 250 231 239 249 230 240 249 229 240 249 229 240 249 231 240 249 237 244 250 241 247 251 242 245 252 242 245 251 242 244 251 242 244 250 242 244 249 241 243 248 241 243 246 240 243 245 240 242 244 239 242 242 245 234 221 245 234 220 245 234 221 245 234 222 245 234 222 245 233 221 244 232 220 243 232 218 242 231 217 242 231 215 241 232 216 242 234 221 245 238 229 249 243 237 255 248 244 261 254 250 268 262 258 271 269 266 272 272 271 273 273 272 273 273 273 273 273 273 273 274 274 274 274 274 275 275 275 276 276 276 277 277 278 278 278 279 279 279 280 281 281 281 282 282 282 283 283 283 284 284 284 285 284 284 285 285 285 286 286 287 287 287 288 289 289 289 290 290 291 292 292 292 295 295 293 298 296 294 299 298 295 301 299 295 302 300 296 304 300 297 305 302 299 305 302 301 303 301 302 300 300 301 301 300 302 301 300 302 301 300 301 300 300 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 301 300 300 300 299 299 299 298 298 298 298 298 298 299 298 299 299 299 299 299 299 299 299 299 300 299 299 300 299 300 300 300 300 300 299 300 300 299 299 300 299 299 300 299 299 299 298 299 299 297 298 299 296 298 299 296 297 298 295 297 298 293 295 297 289 291 295 285 288 292 282 285 289 276 281 286 274 278 284 273 277 282 273 276 280 273 275 279 272 274 278 272 274 277 270 272 276 270 272 275 267 270 274 260 266 271 256 263 268 255 261 266 252 258 265 249 255 262 247 253 260 245 252 259 244 252 258 243 251 257 241 249 256 240 247 254 238 246 252 239 246 253 239 246 254 237 244 253 234 241 252 233 240 251 232 239 249 231 239 249 230 240 248 230 240 248 229 240 248 231 240 249 237 245 251 241 246 251 242 245 251 242 244 251 242 244 251 242 244 250 242 244 249 242 243 248 241 243 246 240 242 245 240 242 243 239 242 241 245 234 221 245 234 221 245 234 222 246 234 223 246 234 222 245 233 222 244 233 220 244 232 218 243 231 217 242 231 216 241 232 217 242 234 221 245 238 228 249 242 237 254 248 244 260 254 250 268 263 258 271 269 266 273 272 271 273 273 272 273 273 273 273 273 273 274 274 274 274 274 274 275 275 275 276 276 277 277 278 278 278 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 284 285 285 285 286 286 287 287 288 288 289 289 289 290 290 291 292 292 292 295 294 293 297 296 293 298 297 294 300 299 295 301 299 296 303 300 297 304 301 299 305 303 300 303 302 302 301 300 301 301 300 302 301 300 302 301 300 302 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 301 300 300 300 298 298 299 296 297 297 296 296 297 298 298 298 299 299 299 299 299 300 300 300 300 300 300 300 299 300 300 299 300 301 299 300 300 299 299 300 299 299 300 298 299 299 297 298 299 296 298 298 296 297 298 296 297 298 295 297 297 293 295 297 289 292 295 286 289 293 283 286 290 280 283 287 275 279 284 274 278 282 273 276 280 274 276 279 274 275 278 273 274 277 270 272 275 270 272 275 267 270 274 259 266 271 256 263 269 254 261 267 252 258 265 250 256 263 247 254 260 245 252 259 244 252 258 242 251 257 241 249 256 239 248 254 238 246 253 238 246 253 238 245 254 236 243 253 234 241 252 233 239 250 232 239 249 231 240 249 231 241 248 230 241 248 230 240 248 231 241 248 237 245 251 240 246 251 241 245 251 241 244 251 242 244 250 242 244 250 242 244 249 241 243 248 241 243 246 240 243 245 240 242 243 239 242 241 245 234 222 245 234 221 245 234 222 246 234 223 246 234 223 245 234 222 245 233 220 244 232 219 243 231 217 242 231 216 241 232 217 242 234 221 244 237 228 249 242 236 254 248 243 260 254 250 268 262 257 271 269 266 273 272 271 273 273 272 273 273 273 273 273 273 274 274 274 275 274 275 275 276 276 276 277 277 278 278 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 284 286 285 285 286 287 287 287 288 288 289 289 289 290 290 291 291 292 292 295 294 292 297 296 293 298 297 294 299 298 295 300 299 296 303 300 298 304 302 299 305 303 300 304 303 302 302 300 301 300 299 301 300 299 301 300 300 302 300 300 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 299 299 300 298 298 299 298 298 298 298 298 298 298 298 299 299 299 299 300 300 300 300 300 300 299 300 300 299 299 301 299 299 300 298 299 300 299 299 299 298 299 299 298 298 298 297 297 298 296 297 298 296 297 298 295 296 297 294 295 297 291 294 296 289 292 294 286 289 292 282 285 288 280 282 285 278 280 282 277 278 280 276 277 279 276 276 278 274 275 277 272 273 276 270 272 275 264 269 273 258 266 271 255 263 269 253 262 268 251 258 266 250 256 262 248 254 260 245 253 259 244 252 258 242 251 257 241 249 256 239 247 254 237 246 253 237 246 253 237 244 253 236 242 252 234 240 251 233 239 250 232 240 249 232 241 248 231 242 248 231 241 247 230 240 247 231 241 248 237 245 250 240 246 251 241 244 251 241 244 250 242 244 250 242 244 249 242 244 248 241 243 247 241 243 246 240 243 244 240 242 243 239 242 241 245 234 222 245 234 221 246 234 223 246 235 224 246 235 224 246 234 222 245 233 221 244 232 219 243 232 217 242 231 216 241 232 217 242 234 221 244 237 228 248 242 235 253 248 243 259 254 249 267 262 257 271 269 266 273 272 271 273 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 284 286 286 285 286 287 287 287 288 288 289 289 289 290 290 290 291 291 291 294 294 292 296 296 293 297 297 294 298 298 295 300 299 296 302 300 297 304 302 299 305 303 301 304 302 301 301 301 301 299 299 301 298 299 301 299 299 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 300 299 300 300 299 300 299 299 300 299 299 300 298 298 300 298 299 299 298 299 299 298 298 299 298 298 299 298 298 298 298 298 298 297 297 298 296 297 297 295 296 297 294 295 296 293 295 296 291 293 295 288 291 294 285 288 291 282 285 287 280 282 284 279 280 282 278 278 280 277 277 279 275 275 277 272 274 276 269 272 274 264 269 273 257 265 270 254 263 268 253 261 268 251 258 266 249 256 262 248 254 260 246 253 259 244 252 258 243 251 257 241 249 256 238 247 254 237 245 253 236 245 253 236 244 253 235 241 252 233 240 250 233 239 249 233 241 249 232 242 248 232 242 248 231 242 247 230 240 247 231 241 248 237 245 250 240 246 250 240 244 250 241 244 250 242 244 250 242 244 249 242 244 248 241 243 247 241 243 246 240 243 244 240 242 243 239 242 241 245 234 222 245 234 222 246 235 223 246 235 224 246 235 224 246 235 223 245 234 221 244 233 219 243 232 218 242 232 217 241 233 218 242 235 222 244 237 227 248 242 235 253 247 242 259 254 249 267 262 257 271 269 265 273 272 271 273 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 278 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 292 293 292 295 295 293 296 297 294 298 298 294 300 299 296 302 300 297 303 302 299 304 303 301 303 302 301 301 301 301 299 300 301 298 299 303 298 299 300 299 300 301 300 300 301 300 300 301 300 300 301 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 300 299 299 300 299 300 300 299 300 299 299 300 298 298 299 297 297 299 297 298 298 298 299 299 298 299 299 298 298 298 298 298 298 298 298 298 297 297 298 296 297 297 295 296 297 294 295 296 293 295 296 291 294 295 289 292 294 286 290 292 284 287 289 282 284 286 280 281 284 279 280 282 277 278 280 275 275 278 272 273 276 268 271 274 262 267 271 255 264 268 254 262 267 252 260 267 251 257 265 249 256 262 248 255 261 246 253 259 244 252 258 243 250 257 241 248 256 238 246 254 236 244 252 236 244 252 236 243 252 235 241 252 233 240 250 232 240 249 233 242 249 233 243 248 232 243 247 232 242 247 231 241 247 231 241 247 237 245 250 240 246 250 240 244 250 241 244 250 241 244 249 242 244 249 242 244 248 241 243 247 241 243 246 241 243 244 240 242 243 239 242 241 245 234 222 245 234 222 246 235 224 246 235 225 247 235 225 246 235 223 246 234 222 244 233 220 243 232 218 242 232 217 242 233 219 242 235 222 243 237 227 247 242 234 252 247 241 258 253 248 267 261 257 271 269 265 273 272 271 273 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 277 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 292 292 291 295 295 292 297 297 293 298 297 294 299 298 295 301 300 297 303 302 299 304 303 300 303 301 301 301 301 301 299 300 302 298 300 302 298 299 300 298 299 300 300 300 301 301 300 301 301 300 301 300 300 300 300 300 301 300 300 300 300 300 300 300 299 300 300 300 300 300 299 300 300 299 300 300 300 300 299 299 300 299 299 300 299 299 299 298 298 299 298 298 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 298 298 296 297 297 295 296 297 294 295 296 293 294 295 292 294 295 290 292 294 288 291 293 286 288 291 284 286 288 282 283 286 280 281 283 277 278 280 273 275 277 270 272 275 264 269 273 259 265 270 255 262 266 253 261 265 252 259 266 250 257 263 248 256 262 247 254 260 246 253 259 244 251 257 243 250 256 241 247 255 239 245 253 236 243 252 235 243 252 236 242 252 234 240 252 232 240 250 232 241 249 233 243 249 233 243 248 233 243 247 232 242 247 231 241 247 232 241 247 237 245 249 239 246 250 240 244 250 240 244 249 241 244 249 242 244 248 242 244 248 241 243 247 241 243 245 241 243 244 240 242 243 239 242 241 245 234 222 245 234 222 246 235 224 247 236 225 247 236 225 247 236 224 246 235 222 245 233 220 243 232 219 242 232 218 242 234 219 242 235 222 243 237 226 247 241 233 252 247 241 258 253 247 266 261 257 270 268 264 272 272 270 273 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 277 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 289 289 289 290 290 290 291 290 291 292 291 294 295 292 297 297 293 298 297 293 299 298 294 300 300 296 302 302 298 303 303 299 302 301 301 301 301 301 299 300 302 298 300 302 298 299 301 299 299 301 300 300 301 301 300 301 301 300 301 301 300 301 300 300 301 300 300 300 300 300 300 300 299 300 300 300 300 300 300 300 299 299 299 300 300 300 300 300 300 299 299 300 299 299 300 299 299 299 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 298 298 297 297 297 296 296 297 294 295 296 293 294 295 292 293 294 291 293 294 289 292 293 287 290 292 285 287 289 283 285 287 281 282 284 278 279 281 272 275 277 268 272 275 265 270 273 261 266 271 256 262 266 253 260 265 252 259 264 250 257 263 248 256 262 247 254 260 245 252 259 244 251 257 243 249 256 242 247 255 239 245 253 237 243 251 236 242 251 235 241 252 234 240 251 232 240 250 233 243 250 233 244 248 233 244 247 233 243 247 232 241 246 231 240 246 232 241 247 237 245 249 239 246 249 240 244 249 240 244 249 241 244 248 242 244 248 242 244 248 242 243 246 241 243 245 241 243 244 240 242 243 239 242 241 245 234 222 245 234 222 246 235 225 247 236 226 247 236 226 247 236 225 246 235 223 245 234 221 244 232 219 243 232 219 242 234 220 242 235 222 243 237 226 246 241 232 251 247 240 257 253 247 266 262 256 270 268 263 272 272 270 273 273 272 273 273 273 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 277 279 279 279 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 289 289 289 290 289 290 291 290 291 292 291 294 295 292 297 297 293 298 298 293 299 298 294 300 300 295 302 302 297 303 302 299 303 302 300 301 302 301 300 301 301 299 301 302 299 299 302 299 299 301 300 300 301 301 300 301 301 300 301 301 300 301 301 300 301 300 300 300 300 300 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 300 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 297 298 298 297 297 297 296 296 297 295 295 296 293 294 295 292 293 294 291 292 294 290 292 293 288 290 292 286 288 290 283 285 287 281 282 284 279 280 282 276 278 280 272 274 277 270 273 275 267 270 273 261 265 269 255 261 265 252 259 263 250 258 263 249 256 262 247 254 260 245 252 259 244 250 257 243 249 256 242 246 254 240 244 252 238 242 251 236 242 251 235 241 251 233 240 251 233 241 250 233 244 249 233 245 248 234 244 247 233 243 246 232 241 246 232 240 246 233 241 247 237 246 249 239 245 249 240 244 249 240 244 249 241 244 248 242 244 248 242 244 247 242 244 246 241 243 245 241 243 244 240 242 243 239 242 241 245 234 222 245 235 223 246 236 225 247 236 227 248 237 227 247 236 225 247 235 223 245 234 221 244 233 219 243 233 219 243 234 221 242 236 223 243 237 226 246 241 232 251 246 240 257 252 246 264 260 254 269 267 262 272 271 269 273 273 272 273 273 272 273 273 273 274 274 274 275 275 275 276 276 276 277 277 277 278 278 277 279 279 278 280 280 280 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 286 287 287 287 288 288 288 289 289 289 290 289 290 291 290 291 292 291 294 296 292 297 298 293 298 298 293 299 299 293 300 300 294 302 301 296 303 301 298 302 302 300 302 303 301 300 303 301 301 302 303 299 300 302 299 299 301 299 299 300 300 300 300 300 300 301 301 300 301 301 300 301 301 300 300 301 300 300 300 299 299 300 299 300 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 299 299 298 298 299 298 298 298 298 298 298 297 297 297 296 296 297 295 295 296 294 294 295 292 293 294 291 292 293 290 291 293 289 290 292 286 288 290 281 283 286 278 280 283 278 280 282 277 279 281 276 277 279 273 275 277 270 272 274 265 268 271 259 264 268 252 259 264 250 257 262 248 255 261 247 254 261 246 252 259 244 250 257 244 248 256 243 247 254 241 244 252 238 242 251 236 241 251 235 241 251 234 241 251 233 243 250 234 245 250 234 245 248 234 244 247 234 242 246 233 241 246 232 240 246 235 243 247 238 245 249 239 245 248 240 244 248 240 244 248 241 244 248 242 244 247 242 244 247 242 244 246 241 243 245 241 243 244 240 242 243 239 242 241 245 234 222 246 235 223 246 236 225 247 237 227 248 237 228 248 237 226 247 236 224 246 234 222 244 233 220 243 233 220 243 234 221 243 236 223 243 237 226 246 241 232 250 246 240 256 252 246 264 260 254 269 267 261 272 271 268 273 273 272 273 273 272 274 274 273 274 274 274 275 275 275 276 276 276 277 277 276 278 278 277 279 279 278 280 280 279 281 281 281 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 287 288 288 288 289 289 289 290 289 290 291 290 292 293 291 295 296 291 298 299 292 299 299 293 300 299 294 301 300 294 302 300 296 302 301 297 302 302 299 302 303 301 301 303 301 301 302 302 299 300 302 299 299 301 298 298 300 299 299 299 300 300 301 300 300 301 301 300 300 301 300 300 301 300 300 300 299 299 299 298 298 299 298 298 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 296 296 296 295 295 296 294 294 295 293 293 294 291 292 293 290 291 293 289 290 292 287 288 291 283 285 287 279 281 284 277 279 281 278 280 281 278 279 280 275 276 278 272 274 275 267 270 273 261 266 270 252 259 264 249 256 262 248 254 261 247 253 261 246 251 259 245 250 257 244 248 255 243 247 254 241 244 252 238 242 251 236 242 251 235 241 251 234 242 251 235 244 250 235 246 249 235 246 248 235 245 247 234 242 246 233 240 246 233 240 246 236 243 247 238 245 248 239 244 248 240 244 248 240 244 248 242 244 247 242 244 247 242 244 247 242 244 246 241 243 244 241 243 244 240 242 243 239 242 241 245 234 223 246 235 223 247 236 226 248 237 228 248 238 228 248 237 227 247 236 225 246 235 222 245 233 220 244 233 220 243 235 222 243 236 224 243 237 226 246 241 232 250 246 239 256 252 246 264 260 253 269 266 261 271 271 267 273 273 271 273 273 272 274 274 273 274 274 274 275 275 275 276 276 276 277 277 276 278 278 277 279 279 278 280 280 279 281 281 280 282 282 282 283 283 283 284 284 284 285 285 285 286 286 286 287 287 287 288 288 288 288 289 289 289 291 289 291 292 290 292 294 291 296 297 291 299 299 293 300 300 294 301 300 294 302 301 295 302 301 296 302 301 297 302 302 298 303 303 300 302 303 302 301 303 303 299 300 302 299 299 301 299 298 300 299 299 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 299 298 298 297 297 297 298 298 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 296 296 296 295 295 296 294 294 295 293 293 294 292 292 293 291 291 293 289 290 293 287 289 291 285 286 289 281 283 285 277 279 281 278 280 281 278 279 280 276 277 278 273 274 276 268 271 274 262 266 270 253 259 264 249 256 262 248 254 261 247 252 260 247 251 259 245 250 257 244 248 255 243 246 254 241 244 252 239 243 251 237 242 251 236 242 251 235 244 250 236 245 250 236 246 249 235 246 248 235 244 247 235 242 246 234 240 246 233 240 246 236 243 247 238 244 248 239 244 247 239 244 248 240 244 248 242 244 247 242 244 247 242 244 247 242 244 245 241 244 244 241 243 244 240 242 243 239 242 241 245 234 223 246 235 224 247 236 226 248 237 228 249 238 229 249 238 228 248 237 226 246 235 223 245 234 221 244 234 221 244 235 222 243 236 224 244 238 226 246 241 232 250 246 239 256 252 246 263 258 251 268 265 259 271 270 266 273 272 271 273 273 272 274 274 273 274 274 274 275 275 275 276 276 276 277 277 276 278 278 277 279 279 278 280 280 279 281 281 280 282 282 281 283 283 283 284 285 284 285 286 285 286 287 286 287 288 287 288 289 288 289 290 289 290 291 289 292 293 290 295 296 291 298 298 292 300 300 293 302 301 295 303 301 296 303 302 297 302 301 296 302 302 297 302 302 298 303 303 301 302 304 302 301 303 302 300 301 301 299 299 300 299 299 300 299 299 300 300 300 301 300 300 300 301 301 300 300 300 300 299 299 299 297 297 297 298 298 298 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 296 296 296 295 295 296 294 294 295 293 293 294 292 292 293 291 291 293 290 290 292 288 289 292 286 287 289 283 284 286 277 279 281 278 279 280 278 279 280 277 277 278 273 275 276 269 271 274 264 267 271 256 261 266 250 257 262 249 254 261 247 252 260 247 251 258 246 250 257 245 248 255 244 247 254 243 246 253 241 244 252 238 243 251 237 244 250 237 245 250 238 246 249 237 247 249 236 246 247 235 244 246 235 242 246 234 240 246 234 240 246 236 242 246 238 244 247 238 244 247 239 244 247 240 244 247 242 244 247 242 244 247 242 245 246 242 244 245 241 244 244 241 243 244 240 242 243 239 242 241 245 235 223 246 235 224 247 237 227 248 238 229 249 239 230 249 239 229 248 237 226 247 236 224 245 234 222 244 234 221 244 235 223 244 236 224 244 238 227 247 241 232 250 246 239 256 252 246 263 259 252 267 264 258 271 270 266 272 272 271 273 273 272 274 274 273 274 275 274 275 276 275 276 277 275 277 277 276 278 278 277 279 279 278 280 280 279 281 281 280 282 283 281 283 284 283 284 285 284 285 286 285 286 287 286 287 288 287 288 289 288 289 290 289 291 292 289 294 296 290 296 297 291 298 298 292 300 299 293 301 300 294 302 301 295 302 301 296 303 301 297 303 302 298 303 303 299 303 303 301 302 304 302 300 302 301 299 300 300 299 300 300 299 299 300 300 300 300 300 300 301 301 301 301 301 301 301 300 300 300 298 298 298 296 296 296 298 297 298 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 296 296 297 295 295 296 294 294 295 293 293 294 292 292 293 291 291 293 290 290 292 289 289 292 287 288 290 284 285 287 278 280 282 276 278 279 278 279 279 277 277 278 274 275 277 271 272 274 266 268 272 261 264 268 254 258 263 250 255 262 248 253 260 247 251 258 246 250 257 246 249 256 246 248 255 245 247 254 243 246 253 241 245 251 240 245 250 240 247 249 239 248 249 239 247 248 237 246 247 236 244 246 236 242 246 234 241 246 234 240 246 236 242 246 238 243 246 237 243 246 239 243 247 241 244 247 242 244 247 242 244 247 242 245 246 242 244 245 241 244 244 241 243 243 240 242 243 239 242 241 245 235 223 246 235 224 247 237 227 248 238 230 249 239 231 249 239 229 249 238 227 247 236 225 246 235 222 245 234 222 245 235 223 244 237 225 245 239 227 247 242 233 251 247 240 256 252 246 263 260 253 268 265 260 271 271 267 272 272 271 273 273 272 274 274 273 275 275 274 275 276 275 276 277 275 277 277 276 278 278 277 279 279 278 280 280 279 281 282 280 282 283 282 283 284 283 284 285 284 285 286 285 286 287 286 287 288 287 288 289 288 289 291 289 292 293 290 295 296 291 297 297 292 299 298 292 301 300 294 301 300 294 302 301 296 302 302 297 303 302 298 303 302 299 304 303 301 303 303 301 301 303 301 300 301 300 300 300 301 300 300 301 300 300 301 300 300 301 301 300 301 301 301 301 300 300 300 300 299 299 297 296 297 296 295 296 297 297 297 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 297 297 297 297 296 297 296 295 296 295 294 295 293 293 294 292 292 293 292 291 293 290 290 292 289 290 292 287 288 290 284 285 287 281 282 283 276 278 279 276 278 278 276 277 278 275 275 277 272 273 275 268 270 273 263 265 269 258 261 265 253 256 262 250 253 260 249 252 259 248 251 258 247 250 257 247 249 255 247 248 254 246 249 254 244 247 252 242 247 250 242 247 249 241 248 248 239 246 247 237 245 246 236 243 246 235 242 245 234 241 246 234 240 245 236 242 245 237 242 245 237 242 245 239 244 247 241 244 247 242 244 247 242 244 246 242 245 246 242 244 245 241 244 244 241 243 243 240 242 243 239 242 241 245 235 223 246 236 224 247 237 228 249 239 230 250 240 231 250 240 230 249 239 228 248 237 225 246 235 223 245 235 223 245 236 224 245 237 225 246 239 228 248 243 233 251 247 240 257 253 246 264 261 254 269 267 261 272 271 268 272 272 271 273 273 272 274 274 273 275 275 274 275 276 275 276 277 275 277 277 276 278 278 277 279 279 278 280 281 279 281 282 280 282 283 282 283 284 283 284 285 284 285 286 285 286 287 286 287 288 287 288 290 288 290 291 289 292 294 290 295 297 291 296 297 291 298 297 292 300 299 294 299 300 294 301 302 297 301 303 298 302 302 299 303 302 300 302 301 301 302 301 301 300 301 300 299 300 300 301 301 302 301 301 301 300 300 301 300 300 301 301 301 301 300 300 301 299 299 299 298 297 298 296 295 296 295 295 296 298 298 298 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 297 297 296 297 296 296 296 295 295 295 294 293 294 293 292 294 292 291 293 291 291 292 289 290 292 288 288 290 285 286 288 282 283 284 277 279 280 275 277 277 275 276 277 275 275 277 273 273 275 269 271 273 265 267 270 260 261 265 256 258 263 252 254 261 250 253 259 249 251 258 248 250 257 248 250 256 249 250 254 249 251 255 246 250 253 244 249 251 243 248 248 241 247 247 239 246 246 238 244 246 236 243 245 235 242 245 234 241 245 233 241 245 235 242 245 237 242 245 236 243 245 239 245 246 241 244 247 242 244 246 242 245 246 242 245 246 242 244 245 241 244 244 241 243 243 240 242 243 239 242 241 245 235 223 246 236 225 247 237 228 249 239 231 250 240 232 250 240 231 250 239 229 248 237 226 247 236 224 246 235 224 245 236 224 245 237 226 246 240 229 249 243 234 252 248 240 258 254 246 265 263 255 270 269 262 272 272 268 272 272 271 273 273 272 274 274 273 275 275 274 275 276 274 276 276 275 277 277 276 278 278 276 279 279 278 280 281 279 281 282 281 283 283 282 284 285 283 285 286 284 286 287 285 287 288 287 288 289 288 289 290 289 291 293 289 293 296 290 295 297 291 296 297 291 298 297 291 298 299 292 298 300 294 300 301 296 301 302 298 301 302 299 302 303 300 302 302 302 300 301 302 300 300 301 299 299 301 300 300 301 300 300 301 300 300 301 300 301 301 301 301 301 300 300 301 298 298 298 297 296 296 296 295 296 296 296 296 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 296 296 296 295 295 295 294 294 295 293 292 294 292 291 293 291 291 292 290 290 291 288 289 290 286 287 289 283 284 286 279 280 282 276 277 278 275 276 277 273 274 275 272 273 275 269 270 272 267 267 270 262 262 265 257 258 262 254 254 260 252 252 258 251 251 258 249 251 258 250 250 256 252 252 255 252 252 255 250 252 254 246 250 251 244 248 248 241 246 246 240 245 245 238 243 245 237 243 245 236 242 245 234 241 245 233 241 244 234 242 244 235 243 244 236 243 244 239 245 246 241 245 246 242 244 246 242 245 246 242 245 246 242 245 244 241 244 244 241 243 243 240 242 243 239 242 241 245 235 223 246 236 225 248 238 229 249 239 232 251 241 233 251 241 232 250 240 230 249 238 227 247 236 225 246 236 225 246 236 225 246 238 226 247 240 229 249 244 234 253 249 241 259 255 247 266 264 256 270 270 263 272 272 268 272 272 271 273 273 272 274 274 273 275 275 274 275 276 274 276 276 275 277 277 275 278 278 276 279 280 278 280 281 279 282 283 281 283 284 282 284 285 283 285 286 285 286 287 286 287 288 287 288 289 288 289 291 289 293 295 290 294 296 290 295 297 290 296 296 290 298 298 291 298 298 292 297 298 293 299 300 296 300 301 298 300 302 299 300 303 301 301 303 302 299 300 302 298 299 300 298 298 300 298 299 300 299 299 299 299 300 300 300 300 301 300 301 301 299 299 300 297 297 297 296 295 296 296 295 295 297 297 297 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 296 296 296 295 295 295 294 294 294 293 293 294 292 292 293 291 291 292 290 290 291 289 289 290 287 287 289 285 285 287 282 283 284 280 280 282 278 278 279 275 275 277 273 274 275 268 270 272 266 266 269 263 262 266 258 258 262 255 254 259 253 252 258 252 252 258 251 251 258 252 251 256 253 253 256 253 253 256 252 253 255 247 251 253 244 248 249 241 245 245 239 244 244 239 243 245 238 243 245 237 242 245 234 242 244 233 241 243 233 243 244 235 243 244 236 243 244 239 245 246 241 245 246 242 244 246 242 245 246 242 245 246 242 245 244 241 244 244 241 243 243 240 242 243 239 242 241 245 235 223 246 236 225 248 238 229 249 240 232 251 241 234 252 242 233 251 241 231 249 239 228 248 237 226 247 236 226 246 237 226 246 238 227 248 241 230 250 245 235 254 250 241 260 256 248 267 265 257 271 270 263 272 272 269 272 272 271 273 273 272 274 274 273 275 275 273 275 275 274 276 276 275 277 277 275 278 278 276 279 280 278 281 281 279 282 283 281 283 284 283 284 285 284 285 286 285 286 287 286 287 289 288 288 290 289 290 292 289 293 295 288 295 296 289 295 296 290 296 296 290 297 297 291 298 298 291 297 298 293 297 299 295 298 299 297 299 301 299 300 303 301 300 302 302 299 300 300 298 298 299 297 298 299 298 298 299 299 299 299 299 300 300 300 300 300 300 300 301 299 299 299 297 297 297 295 295 295 296 295 295 298 298 298 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 298 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 296 296 296 296 295 295 295 294 294 294 293 294 293 292 293 291 291 292 290 290 291 289 289 290 287 288 289 286 286 287 284 284 285 282 282 283 279 280 281 277 277 278 274 274 276 270 270 273 266 265 268 264 263 266 259 259 265 256 257 263 255 255 262 254 254 260 253 253 259 253 253 257 255 253 256 255 254 257 253 254 256 249 252 254 244 248 249 240 245 245 239 243 244 239 243 244 239 243 245 237 243 245 234 242 244 232 242 243 233 243 243 237 244 244 237 244 244 241 247 246 241 245 246 242 244 246 242 245 246 242 245 245 241 245 244 241 244 243 241 243 243 240 242 243 239 242 241 245 235 223 246 236 226 248 238 230 250 240 233 252 242 235 252 242 234 252 241 232 250 240 229 248 238 227 247 237 227 247 237 227 247 239 228 248 241 231 250 246 236 255 251 242 261 258 249 268 267 258 272 271 264 272 272 269 272 273 271 273 273 272 274 274 273 274 275 273 275 275 274 276 276 274 277 277 275 278 278 276 279 280 278 281 282 280 282 283 281 283 284 283 284 286 284 286 287 286 287 288 287 288 289 288 289 290 289 290 292 288 293 294 288 295 295 288 295 296 289 296 296 290 297 297 290 297 297 291 297 297 293 297 298 294 297 298 295 298 300 298 299 301 299 299 300 299 299 299 299 298 298 299 297 297 298 298 298 298 299 299 299 300 300 300 300 301 301 300 301 301 299 299 300 297 297 297 296 295 295 296 296 296 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 298 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 293 292 291 292 290 290 291 289 289 290 288 288 289 286 286 288 285 285 286 283 283 284 281 280 282 278 278 279 275 275 276 272 271 273 268 267 269 264 263 266 259 260 265 257 257 264 255 256 262 255 255 261 255 254 259 255 254 257 256 254 257 255 254 257 254 255 257 250 253 254 244 249 249 240 245 245 239 243 244 239 243 244 238 243 245 236 243 245 234 243 244 232 242 243 233 244 243 237 245 244 238 244 244 241 247 246 241 245 246 242 244 246 242 245 246 242 245 245 241 245 244 241 244 243 241 243 243 240 242 242 239 242 241 245 235 224 246 236 226 248 238 230 250 240 233 252 242 235 253 243 235 252 242 233 251 240 231 249 239 229 248 238 228 247 238 228 248 239 229 249 242 232 251 246 237 256 252 243 263 260 251 269 268 259 272 272 265 272 273 269 272 273 271 273 273 272 274 274 273 274 274 273 275 275 274 276 276 274 277 277 275 278 279 277 280 280 278 281 282 280 283 284 282 284 285 283 285 286 285 286 287 286 287 288 286 289 290 287 289 291 289 290 291 288 291 292 287 293 293 288 294 295 289 295 295 289 296 296 290 297 297 292 296 297 293 296 297 293 296 297 294 297 298 295 298 299 296 299 299 297 298 298 298 298 297 298 298 298 298 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 297 296 296 297 296 296 299 298 298 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 293 292 291 292 291 290 291 289 289 290 288 288 289 287 286 288 285 285 286 283 283 284 281 281 282 279 278 280 276 275 277 273 272 273 269 267 269 264 263 266 260 260 264 258 257 263 257 256 262 256 255 260 257 255 259 257 255 258 257 255 258 256 255 258 254 255 257 250 254 254 244 249 249 240 245 245 238 243 244 238 243 245 237 244 245 236 243 245 233 243 244 232 243 243 234 245 243 238 245 244 238 245 244 241 247 246 241 245 246 242 245 246 242 245 246 241 245 245 241 245 244 241 244 243 241 243 243 240 242 242 239 242 241 245 235 224 247 236 226 248 239 230 250 241 234 252 243 236 253 244 236 253 243 235 252 241 232 250 240 230 248 239 229 248 238 228 248 240 229 250 243 233 252 247 238 257 253 244 265 262 254 271 269 261 272 272 266 272 273 269 272 273 271 273 273 272 274 274 273 274 274 273 275 275 274 276 277 274 277 278 276 279 279 277 280 281 279 281 282 280 283 284 282 284 285 283 285 286 285 287 288 287 288 289 287 289 290 288 289 291 289 290 292 289 290 291 287 292 292 287 293 293 288 294 295 289 295 296 290 295 297 291 296 297 292 296 296 293 297 296 293 298 296 294 299 298 296 299 298 297 299 298 298 299 299 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 298 298 298 299 298 298 299 298 297 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 293 292 291 292 291 290 291 290 289 290 288 288 289 287 286 288 285 285 286 283 283 284 281 281 282 279 279 280 277 276 277 274 272 274 270 267 269 266 263 266 263 259 264 260 258 262 259 257 261 259 256 260 259 256 259 259 256 259 258 256 259 257 256 258 254 256 257 250 254 254 243 249 249 240 246 246 238 243 245 238 244 245 237 244 246 235 244 245 233 243 244 232 244 243 235 246 243 238 246 244 238 245 244 241 247 246 241 245 246 241 245 246 242 245 246 241 245 245 241 245 244 241 244 243 241 243 243 240 242 242 239 242 241 245 235 224 247 237 226 249 239 231 251 241 235 253 243 237 254 244 237 254 244 236 252 242 233 251 241 231 249 239 230 248 239 229 249 240 230 250 243 234 252 248 239 258 254 245 267 264 255 271 270 262 273 273 267 273 273 269 273 273 271 273 273 272 274 274 273 274 275 273 275 276 274 276 277 275 278 278 276 279 280 277 280 281 279 282 283 281 283 284 282 284 285 284 285 286 285 287 288 287 288 289 288 289 290 289 290 291 290 290 292 290 290 291 288 291 292 288 292 293 288 293 294 289 294 294 290 295 295 291 296 296 292 297 296 293 298 296 294 298 296 294 299 297 296 298 298 297 299 299 298 299 299 299 299 300 299 299 300 299 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 300 299 299 299 299 298 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 292 291 290 291 290 289 290 289 288 289 287 287 287 285 285 286 284 283 284 282 281 282 280 279 280 277 276 277 274 272 274 271 268 269 267 263 265 265 260 264 264 259 262 263 259 261 263 258 260 262 257 260 261 257 260 260 257 260 257 257 259 254 256 257 250 254 254 243 250 250 239 246 247 238 244 245 237 244 245 237 245 246 234 244 245 232 244 243 232 245 243 236 246 243 239 246 244 239 246 244 241 247 246 241 245 246 241 245 246 241 245 246 241 245 245 241 245 244 241 244 243 241 243 243 240 242 242 239 242 241 245 235 224 247 237 227 249 239 231 251 242 235 253 244 238 255 245 238 255 245 237 253 243 235 252 242 233 250 240 231 249 240 231 249 241 231 250 244 235 253 248 240 260 255 247 268 265 256 272 271 263 273 273 267 273 273 270 273 273 271 273 273 272 274 274 273 274 275 273 275 276 274 276 277 275 278 278 276 279 280 278 281 281 279 282 283 281 283 284 282 284 285 284 285 286 285 286 288 287 288 289 288 289 290 289 290 292 290 291 293 291 291 293 291 292 293 290 292 293 289 292 292 289 293 293 290 294 293 290 296 294 292 297 295 293 297 295 294 297 296 295 298 297 296 299 298 298 299 299 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 292 291 290 291 290 289 290 289 288 289 287 287 287 286 285 286 284 283 284 282 281 282 280 279 280 278 276 278 275 272 274 272 268 269 269 264 265 267 262 264 266 261 263 266 261 262 266 260 261 265 259 261 263 258 260 261 258 260 258 257 259 254 256 257 249 254 254 242 250 250 239 247 248 237 244 246 236 244 246 235 245 246 234 244 245 232 244 243 233 245 243 237 247 243 239 247 244 240 246 245 241 247 246 241 245 246 241 245 247 241 245 246 241 245 245 241 245 244 241 244 243 241 243 243 239 242 242 239 242 241 245 235 224 247 237 227 249 240 232 251 242 236 254 245 238 256 246 239 256 246 238 254 244 236 252 243 234 251 242 233 250 241 232 250 241 232 251 244 236 254 249 241 261 257 248 269 266 257 272 272 264 273 273 268 273 273 270 273 273 271 273 274 272 274 274 273 275 275 273 275 276 274 277 277 275 278 279 276 280 280 278 281 282 279 282 283 281 283 284 282 284 285 284 285 286 285 286 287 287 287 289 288 288 290 289 289 292 290 291 293 291 292 294 292 293 294 292 293 294 292 293 293 292 292 292 291 293 292 291 295 293 292 296 294 294 296 295 295 297 296 296 298 298 298 299 299 298 299 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 297 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 292 291 291 291 290 290 290 289 288 289 288 287 287 286 285 286 284 283 284 282 281 282 280 279 280 278 276 277 275 272 274 272 269 270 270 266 266 269 264 264 268 263 263 268 263 263 267 263 262 267 261 261 264 259 261 262 259 261 259 258 260 254 256 257 248 254 254 242 251 250 239 247 248 236 244 247 235 244 246 234 245 246 233 244 245 232 244 243 233 246 243 237 248 243 239 247 244 241 247 245 241 247 246 241 245 246 241 245 247 241 245 246 241 245 245 241 244 244 241 244 243 241 243 243 239 242 242 239 242 241 246 235 224 247 237 227 249 240 232 252 243 236 255 245 239 256 247 240 256 247 240 255 246 237 253 244 236 252 243 234 251 242 233 250 242 233 251 245 236 254 249 241 262 258 248 270 267 258 273 272 265 273 273 268 273 273 270 273 273 271 274 274 272 274 274 273 275 275 273 275 276 274 277 277 275 278 279 276 280 280 278 281 282 280 282 283 281 283 284 283 284 285 284 285 286 285 286 287 287 287 289 288 288 290 289 289 291 290 290 292 291 292 293 293 293 294 293 294 294 294 294 294 294 294 294 293 294 294 293 295 294 294 296 295 295 296 296 296 297 297 297 298 298 298 299 299 298 299 299 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 298 298 298 297 298 297 297 297 297 296 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 292 291 291 291 290 290 290 289 288 289 288 287 288 286 285 286 284 283 284 282 281 282 280 279 280 278 276 277 275 272 274 273 269 270 271 267 267 270 266 265 269 265 265 269 265 264 268 264 263 267 262 262 265 260 261 263 259 261 260 258 260 254 256 257 247 254 254 242 251 251 239 248 249 236 245 247 235 244 246 234 245 246 233 244 245 232 245 243 234 247 243 237 248 243 239 247 244 241 247 245 241 246 246 241 245 247 241 245 247 241 245 246 241 245 245 241 244 244 241 244 243 240 243 243 239 242 242 239 242 241 246 235 224 247 237 227 249 240 232 252 243 237 255 246 240 257 248 241 257 248 241 256 247 239 255 245 237 253 244 236 252 243 234 251 243 234 252 245 237 255 250 242 264 260 250 270 268 259 273 272 265 273 273 268 273 273 270 273 273 271 274 274 272 274 275 273 275 275 274 275 276 274 277 278 275 278 279 277 280 280 278 281 282 280 282 283 281 283 284 283 284 285 284 285 286 285 286 287 287 287 289 288 288 290 289 289 291 290 290 292 291 291 293 292 293 294 293 294 294 294 295 295 294 295 295 295 295 295 295 296 295 295 296 296 296 297 297 297 298 297 297 298 298 298 298 299 298 299 299 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 301 300 301 301 301 301 300 301 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 298 298 297 297 297 297 297 297 296 297 297 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 291 291 290 290 290 289 288 289 288 287 288 287 285 286 285 284 284 283 281 283 280 279 280 277 276 277 275 273 274 273 270 271 271 268 268 271 267 267 270 267 266 269 266 265 269 265 264 267 263 262 265 260 261 263 259 261 260 258 260 254 256 258 248 254 254 243 252 252 239 249 249 236 245 248 235 244 246 235 244 246 233 245 245 232 245 243 234 247 243 237 247 243 239 247 245 240 247 245 241 246 246 241 245 247 241 245 247 241 245 246 241 245 245 241 244 244 241 244 243 240 243 242 239 242 242 239 242 241 246 235 224 247 237 228 250 240 233 253 243 237 256 247 241 258 248 242 258 249 242 257 248 240 256 247 239 255 245 237 253 244 235 252 243 235 252 245 238 256 250 242 265 261 252 270 268 259 273 272 266 273 273 269 273 273 270 273 274 271 274 274 272 274 275 273 275 276 274 276 276 274 277 278 275 278 279 277 280 281 278 281 282 280 282 283 281 283 284 283 284 285 284 285 286 285 286 287 287 287 288 288 288 290 289 289 290 290 290 291 291 291 293 292 292 294 293 294 294 294 295 295 295 295 295 295 296 295 295 296 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 299 298 299 299 299 299 299 299 300 300 300 300 300 300 300 301 300 300 301 300 301 301 301 301 301 301 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 298 298 297 297 297 297 297 297 296 297 296 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 291 290 290 290 289 289 289 288 287 288 287 286 286 285 284 285 283 282 283 280 279 280 277 276 277 275 273 274 273 271 271 272 269 269 271 268 268 270 268 267 269 267 266 268 265 264 266 262 262 263 260 261 260 257 259 258 257 260 254 256 258 249 255 255 245 254 252 240 250 250 237 246 248 235 244 247 235 245 246 234 245 245 233 245 243 233 247 243 237 248 243 239 248 245 240 247 245 241 246 246 241 245 247 241 245 247 241 245 246 241 245 245 241 244 244 241 244 243 240 243 242 239 242 242 239 242 241 246 235 224 247 237 228 250 241 233 253 244 238 256 247 241 259 249 243 259 250 243 258 249 242 257 248 240 256 247 239 255 245 237 253 244 236 253 246 239 257 251 243 266 263 253 271 269 260 273 273 266 273 273 269 273 273 270 273 274 271 274 274 272 275 275 273 275 276 274 276 277 274 277 278 276 279 280 277 280 281 279 281 282 280 282 283 282 283 284 283 284 285 284 285 286 285 286 287 287 287 288 288 288 289 289 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 295 295 295 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 299 299 300 300 300 300 300 300 300 301 300 300 301 301 301 301 301 301 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 299 300 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 296 297 296 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 291 290 290 290 289 289 289 288 287 288 287 286 286 285 284 285 283 282 283 280 279 280 277 276 277 275 273 274 273 271 272 272 270 270 271 269 269 271 268 268 270 267 267 268 265 265 264 261 262 261 258 260 258 256 258 255 255 258 253 256 257 250 256 256 246 254 253 241 251 250 237 247 248 236 245 247 236 245 246 235 245 245 233 245 244 235 247 243 237 248 243 239 248 245 240 247 246 241 246 247 241 245 247 241 245 247 241 245 246 241 245 245 241 244 244 240 244 243 240 243 242 239 242 242 239 242 241 246 235 225 247 238 228 250 241 234 253 244 238 257 248 242 259 250 244 260 250 244 259 250 243 258 249 242 258 248 241 256 247 239 254 245 238 254 247 239 258 252 244 267 263 254 271 270 261 273 273 267 273 273 269 273 274 270 273 274 272 274 274 272 275 275 273 275 276 274 276 277 275 278 278 276 279 280 277 280 281 279 281 282 280 282 283 282 283 284 283 284 285 284 285 286 285 286 287 287 287 288 288 288 290 289 289 290 290 290 291 291 291 292 292 292 293 293 293 294 294 294 294 294 295 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 299 299 300 300 300 300 300 300 300 301 300 300 301 301 301 301 301 301 301 300 300 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 296 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 290 290 290 290 289 289 289 288 287 288 287 286 286 285 284 285 283 282 283 280 279 280 278 276 277 275 273 274 274 272 272 273 270 271 272 270 270 271 269 269 270 268 268 269 266 266 265 263 264 261 259 261 258 256 258 254 255 257 251 256 256 250 256 256 247 255 254 241 252 251 237 248 248 237 247 247 237 246 247 236 245 246 233 245 244 235 248 243 237 248 243 239 248 245 240 248 246 241 247 247 241 245 247 241 245 247 241 245 246 241 244 245 241 244 244 240 244 243 240 243 242 239 242 242 239 242 241 246 235 225 248 238 228 250 241 234 254 245 239 257 248 243 260 251 245 261 251 245 260 251 244 259 250 243 259 250 243 258 248 241 255 247 239 255 248 240 260 254 245 267 264 254 272 270 261 273 273 267 273 273 269 273 274 271 273 274 272 274 275 273 275 275 273 275 276 274 276 277 275 278 279 276 279 280 277 281 281 279 282 282 280 282 283 282 283 284 283 284 285 284 285 286 286 286 287 287 287 289 288 288 290 289 289 290 290 290 291 291 291 292 292 292 293 293 293 293 293 294 294 294 294 295 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 298 299 299 299 299 299 299 300 300 300 300 300 300 300 300 301 300 301 301 300 301 301 301 301 300 301 301 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 296 297 296 296 296 295 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 290 290 289 290 289 289 289 288 287 288 287 286 286 285 284 285 283 282 283 280 279 280 278 276 277 275 274 275 274 272 273 273 271 271 272 270 271 271 269 270 270 269 269 269 267 268 267 264 265 264 261 263 258 257 259 254 255 257 251 256 256 249 257 256 246 256 254 240 252 251 237 249 248 237 248 247 237 246 247 236 245 246 234 246 244 235 248 244 237 248 243 238 248 245 239 248 246 240 247 247 240 246 247 241 245 247 241 245 246 241 244 245 241 244 244 240 244 243 240 243 242 239 242 242 239 242 241 246 235 225 248 238 229 251 241 234 254 245 239 258 249 244 261 251 245 261 252 246 261 252 245 261 252 245 260 251 244 259 250 242 257 248 240 256 249 241 262 256 247 268 265 255 272 271 262 273 273 267 273 273 269 273 274 271 274 274 272 274 275 273 275 275 273 275 276 274 277 277 275 278 279 276 280 280 278 281 281 279 282 282 281 282 283 282 283 284 283 284 285 284 285 286 286 286 288 287 287 289 288 288 290 289 289 290 290 290 291 291 291 292 292 292 292 293 293 293 293 294 294 294 294 294 295 295 295 295 295 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 301 300 301 301 300 301 301 301 301 301 301 301 300 300 301 300 300 300 300 300 300 300 300 300 299 300 300 299 299 300 299 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 297 298 298 297 297 297 297 297 297 297 297 297 296 296 296 296 296 295 295 295 295 294 294 294 293 292 293 292 292 292 291 291 291 290 290 290 289 289 289 288 289 288 287 288 287 286 286 285 284 285 283 282 283 280 279 280 278 276 277 275 274 275 274 272 273 273 271 272 272 270 271 271 270 271 271 270 270 270 269 269 269 267 267 266 264 264 262 260 261 256 257 258 252 257 256 248 257 255 245 256 254 239 253 250 237 250 248 236 248 247 237 247 247 237 246 246 235 247 245 236 248 244 237 248 243 238 248 245 239 248 246 240 247 247 240 246 247 240 245 247 241 245 246 241 244 245 241 244 244 240 244 243 240 243 242 239 242 242 239 242 240 246 236 225 248 238 229 251 242 235 254 246 240 258 250 244 261 252 246 262 253 246 262 253 246 262 254 247 263 256 248 262 253 245 258 250 242 258 250 243 263 258 248 269 266 256 272 271 263 273 273 267 273 274 270 273 274 271 274 275 272 274 275 273 275 276 274 276 276 274 277 278 275 279 279 277 280 280 278 281 282 279 282 282 281 282 283 282 283 284 283 284 285 285 285 286 286 286 288 287 288 289 288 288 290 290 289 290 290 290 291 291 291 292 292 292 292 293 293 293 293 294 294 294 294 294 294 295 295 295 295 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 301 300 301 301 300 301 301 301 301 301 301 301 300 301 301 300 300 300 300 300 300 300 300 300 299 300 300 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 295 296 295 295 295 295 294 294 294 293 292 293 292 292 292 291 291 291 290 290 290 289 289 289 288 289 288 287 288 287 286 286 285 284 284 283 282 282 280 279 280 278 276 277 275 274 275 274 273 273 273 272 272 272 271 271 272 270 271 271 270 271 271 270 270 270 269 269 268 267 267 264 264 263 261 261 261 257 260 259 251 258 256 243 255 253 239 253 250 237 251 248 236 249 247 236 247 247 236 247 246 235 247 245 236 248 243 237 248 244 238 248 245 239 248 246 239 247 246 240 246 247 240 245 247 240 245 246 241 244 245 241 244 244 240 244 243 240 243 242 239 242 242 239 242 240 246 236 225 248 238 229 251 242 235 255 246 241 259 250 245 262 253 247 263 253 247 262 253 246 264 256 249 264 257 249 263 255 247 260 252 244 259 252 244 264 259 249 270 267 256 272 272 263 273 273 268 273 274 270 273 274 271 274 275 272 274 275 273 275 276 274 276 277 274 277 278 276 279 279 277 280 281 278 281 282 280 282 282 281 282 283 282 283 284 283 284 285 285 285 286 286 287 288 287 288 289 288 289 290 290 289 290 291 290 291 291 291 292 292 292 292 293 293 293 293 294 294 294 294 294 294 295 295 295 295 295 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 301 300 301 301 300 301 301 301 301 301 301 301 301 301 301 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 298 299 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 297 297 296 296 296 295 296 295 295 295 294 294 293 294 293 292 293 292 291 292 291 291 291 290 290 290 289 289 289 288 288 288 287 287 287 286 286 285 284 284 283 282 282 280 279 280 278 276 277 275 274 275 274 273 274 273 272 273 272 271 272 272 271 271 272 270 271 272 271 271 271 270 270 270 269 269 267 267 266 264 264 263 260 262 260 253 259 258 243 255 253 239 253 250 237 251 248 236 249 247 236 248 246 236 247 246 236 248 245 236 248 244 237 248 244 238 248 245 238 248 246 239 247 246 239 246 246 240 245 247 240 245 246 241 244 245 241 244 244 240 243 243 240 243 242 239 242 241 239 242 240 246 236 225 248 238 229 251 242 236 255 247 241 259 251 245 262 253 247 263 254 247 263 254 247 265 257 249 266 258 250 264 257 249 262 254 246 261 254 245 266 261 251 270 268 257 272 272 264 273 273 268 273 274 270 273 274 271 274 275 272 274 275 273 275 276 274 276 277 275 278 278 276 279 280 277 280 281 279 281 282 280 282 282 281 282 283 282 283 284 283 285 285 285 286 286 286 287 287 287 287 288 288 289 290 290 289 290 291 290 291 291 291 292 292 292 292 293 293 293 293 294 294 294 294 294 294 295 295 295 295 295 296 296 296 296 296 297 297 297 297 298 298 298 298 298 298 299 299 298 299 299 299 299 299 299 300 300 299 300 300 300 300 300 300 300 301 300 301 301 300 301 301 301 301 301 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 300 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 296 297 296 296 296 296 295 296 295 294 295 294 294 293 293 293 292 293 292 291 292 291 291 291 290 290 290 289 289 289 288 288 288 287 287 287 286 286 285 284 284 283 282 282 281 279 280 278 277 278 276 275 276 274 273 274 273 272 273 272 271 272 272 271 272 272 271 272 272 271 271 272 271 271 271 270 270 269 269 268 267 267 266 262 264 262 254 259 258 242 255 253 238 253 250 238 252 248 236 250 247 235 248 246 235 247 246 236 248 245 236 248 244 237 248 244 237 248 245 238 248 246 238 247 246 239 246 246 240 245 246 240 245 246 240 244 245 241 244 244 240 243 243 240 243 242 239 242 241 239 242 240 246 236 225 248 238 230 252 243 236 256 247 242 260 251 246 263 254 248 264 254 247 264 254 247 265 257 250 267 260 251 266 259 251 263 256 247 262 256 247 267 263 252 271 269 257 272 272 264 272 273 268 273 274 270 274 274 271 274 275 272 275 275 273 275 276 274 276 277 275 278 278 276 279 280 277 280 281 279 281 282 280 282 283 281 282 283 282 284 285 283 285 285 285 286 286 285 287 287 286 287 288 288 288 289 289 290 290 291 291 291 291 292 292 292 292 292 293 293 293 293 294 294 294 294 294 294 295 295 295 295 295 295 296 296 296 296 297 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 300 300 300 300 300 300 300 301 300 301 301 300 301 301 301 301 301 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 296 297 296 296 296 296 295 296 295 294 295 294 293 293 293 292 292 293 291 291 292 291 290 291 290 290 290 289 289 289 288 288 288 287 287 286 286 286 285 284 284 283 282 282 281 279 280 278 277 278 276 275 276 274 273 274 273 272 273 273 272 272 272 271 272 272 271 272 272 271 272 272 271 271 271 271 271 270 270 270 268 269 268 264 265 264 255 260 259 242 256 253 238 254 250 238 252 248 237 250 247 235 248 246 235 248 245 236 248 244 236 248 244 237 248 244 237 248 245 238 248 245 238 246 246 239 245 246 240 245 246 240 245 246 240 244 245 240 244 244 240 243 243 240 243 242 239 242 241 239 242 240 246 236 225 248 239 230 252 243 236 256 247 242 260 252 247 263 254 248 264 255 246 264 255 247 266 258 250 268 261 253 267 261 252 265 258 249 264 258 248 269 265 253 271 270 258 272 272 264 272 273 268 273 274 270 274 274 271 274 275 272 275 276 273 275 276 274 277 277 275 278 279 276 279 280 278 280 281 279 281 282 280 282 283 281 282 283 282 284 284 283 285 286 284 286 285 284 287 287 286 287 288 287 288 289 289 290 290 291 291 291 291 292 292 292 293 293 293 293 293 293 294 294 294 294 294 294 295 295 295 295 295 295 296 296 296 296 297 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 301 301 301 301 301 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 292 291 290 291 290 289 290 289 289 289 288 288 288 287 287 286 285 286 285 284 284 283 282 282 280 280 280 278 277 278 276 275 276 274 274 275 273 273 274 273 272 273 273 272 272 273 272 272 272 272 272 272 272 272 271 271 271 270 271 271 268 269 269 264 266 266 256 261 260 243 256 253 238 254 250 238 252 248 237 250 247 235 249 246 235 248 245 235 248 244 236 248 244 237 248 244 237 248 245 238 248 245 238 246 246 239 245 246 239 245 246 240 244 246 240 244 245 240 244 244 240 243 243 240 243 242 239 242 241 239 242 240 246 236 225 248 239 230 252 243 237 256 248 243 261 252 247 264 254 248 265 255 246 265 255 246 267 258 250 269 262 253 269 263 253 267 261 251 266 262 249 270 267 254 271 270 259 272 272 264 272 273 268 273 274 270 274 275 271 274 275 272 275 276 273 275 276 274 277 277 275 278 279 276 279 280 278 280 281 279 281 282 280 282 283 281 283 283 282 284 285 283 285 286 284 286 286 284 287 286 285 288 288 287 289 289 289 290 291 290 291 291 291 292 292 292 293 293 293 293 293 293 294 294 294 294 294 294 295 295 295 295 295 295 296 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 301 301 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 297 297 296 296 296 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 290 291 290 289 290 289 288 289 288 288 287 287 287 286 285 286 284 284 284 283 282 282 280 280 280 278 277 278 276 275 277 275 274 275 274 273 274 273 272 273 273 272 273 273 272 273 272 272 272 272 272 272 271 272 272 270 271 271 268 270 270 265 267 267 257 262 261 243 257 254 238 254 250 238 252 249 236 250 247 235 249 246 235 248 245 235 248 245 236 248 244 237 248 244 237 248 245 238 248 245 238 246 246 239 245 246 239 245 246 240 244 246 240 244 245 240 244 244 240 243 243 240 242 242 239 242 241 239 242 240 246 236 225 248 239 230 252 243 237 257 248 243 261 253 248 264 255 248 265 255 246 265 255 246 267 259 249 269 263 253 270 264 254 269 264 252 269 265 251 270 268 254 272 271 259 272 273 265 272 273 268 273 274 270 274 275 272 274 275 272 275 276 273 276 277 274 277 277 275 278 279 276 279 280 278 280 281 279 281 282 280 282 283 281 283 283 282 284 285 283 285 286 285 287 287 285 287 287 285 288 288 287 289 290 289 290 291 290 291 291 291 292 292 292 293 293 293 293 294 293 294 294 294 294 294 294 294 295 295 295 295 295 295 296 296 296 296 297 296 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 290 290 289 289 290 289 288 289 288 287 287 287 287 286 285 285 284 284 284 282 282 282 280 280 280 278 277 278 276 276 277 275 274 275 274 273 274 273 273 274 273 272 273 273 273 273 272 273 273 272 272 272 271 272 272 270 271 271 268 270 270 265 267 267 257 262 261 246 258 256 239 254 251 237 252 249 236 251 248 235 249 246 235 248 246 235 248 246 236 247 244 237 248 244 238 248 245 238 248 245 238 246 246 239 245 246 239 244 246 239 244 245 240 244 244 240 244 244 240 243 243 240 242 242 239 242 241 239 242 240 246 236 225 248 239 231 252 244 237 257 249 243 261 253 248 264 255 248 265 255 245 266 255 245 268 260 251 269 263 254 270 265 254 270 265 253 270 266 253 271 269 255 272 271 260 272 273 265 272 273 268 273 274 270 274 275 272 274 275 273 275 276 273 276 277 274 277 277 275 278 278 276 279 280 277 280 281 279 281 282 280 282 282 281 283 283 282 284 285 283 285 286 285 287 287 286 288 288 286 288 288 286 289 290 288 290 291 290 291 292 291 292 293 292 293 294 293 293 294 293 294 294 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 301 300 300 300 300 300 300 301 300 300 300 300 299 300 299 299 299 299 299 299 298 299 299 299 299 300 300 300 300 300 300 299 299 300 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 295 295 295 294 294 294 293 293 293 292 292 292 291 291 291 290 290 290 289 289 289 288 288 288 288 287 287 286 286 286 285 285 284 283 284 282 282 282 280 280 280 278 278 279 276 276 277 275 274 276 274 273 275 273 273 274 273 273 274 273 273 273 272 273 273 272 273 273 271 272 272 270 271 272 268 270 270 265 268 268 258 263 263 248 258 257 239 255 252 237 252 249 236 251 248 235 249 246 235 248 246 235 248 246 236 247 244 237 248 244 238 248 244 238 247 245 238 246 246 239 245 246 239 244 246 239 244 245 240 244 244 240 244 244 240 243 243 240 242 242 239 242 241 239 242 240 246 236 225 249 239 231 253 244 238 258 249 244 262 253 248 265 255 248 266 255 245 266 255 245 268 260 251 270 263 253 270 265 254 270 266 254 271 268 253 272 270 256 272 272 261 271 273 265 272 273 268 273 274 270 274 275 272 274 275 273 275 276 273 276 277 274 276 277 275 278 278 276 279 279 277 280 280 279 281 281 280 281 282 281 283 283 282 284 284 283 285 286 285 287 287 286 288 289 287 289 290 288 290 290 288 290 291 289 292 292 291 292 292 291 293 293 292 294 294 293 294 294 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 301 301 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 299 299 299 298 299 299 299 299 299 300 300 300 300 300 299 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 297 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 295 295 295 295 294 294 294 293 293 293 292 291 292 291 290 291 290 290 290 289 289 289 288 288 288 287 287 287 286 286 286 285 285 284 283 284 282 282 282 280 280 280 278 278 279 276 276 277 275 274 276 274 274 275 274 273 274 273 273 274 273 273 274 272 273 273 272 273 273 271 272 272 270 272 272 269 271 271 266 269 269 259 264 264 249 259 257 241 256 253 238 253 250 236 251 248 234 249 247 235 248 246 235 248 246 236 246 244 237 247 244 238 248 244 238 247 245 239 247 246 239 246 246 239 244 246 239 244 245 240 244 244 240 244 244 240 243 243 240 242 242 239 242 241 239 242 240 246 236 226 249 239 231 253 244 238 258 249 244 262 254 248 265 255 248 266 255 245 266 255 244 268 260 251 269 263 253 270 266 254 270 267 254 271 268 254 272 270 257 272 272 261 271 273 266 272 273 269 273 274 270 274 275 272 275 275 273 275 276 273 276 277 274 276 277 275 277 278 276 279 279 277 280 280 278 280 281 279 281 282 280 282 283 282 284 284 283 285 286 285 287 287 286 288 289 287 290 290 288 290 290 289 290 290 288 291 290 289 293 293 292 293 294 293 293 294 293 294 294 293 294 294 294 294 295 294 295 295 295 295 296 296 296 296 296 296 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 299 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 300 301 301 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 298 299 298 298 299 299 299 299 299 299 300 300 300 300 300 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 296 295 295 295 295 294 294 294 293 293 293 292 291 292 290 290 291 290 289 290 289 288 289 288 287 288 287 287 287 286 286 286 285 285 284 283 283 282 282 282 280 280 280 278 278 279 276 276 277 275 275 276 274 274 275 274 274 275 273 273 274 273 273 274 273 273 273 272 273 273 271 272 273 270 272 272 269 271 271 266 269 269 259 265 265 250 260 258 243 257 254 239 253 251 236 252 249 235 250 247 235 248 246 236 248 246 236 246 244 237 247 244 239 248 244 239 247 245 239 247 246 239 246 246 239 244 246 239 244 245 240 244 244 240 244 244 240 243 243 240 242 242 239 242 241 239 242 240 246 236 226 249 239 231 253 244 238 258 250 245 262 254 249 265 255 248 266 255 244 267 255 244 268 260 250 269 263 253 270 266 254 270 267 254 271 269 255 272 270 258 272 272 262 271 273 266 272 273 269 273 274 271 274 275 272 275 275 273 275 276 274 276 277 274 276 277 275 277 278 276 278 279 277 279 280 278 280 281 279 281 282 280 282 283 281 284 284 283 285 285 285 287 287 286 288 288 287 290 290 289 291 291 290 291 291 290 291 291 289 293 293 292 293 293 292 293 294 293 294 294 293 294 294 294 294 295 294 295 295 295 295 296 295 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 299 298 298 298 298 299 299 299 299 299 299 300 300 300 300 300 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 296 295 295 295 295 294 294 294 293 293 293 291 291 292 290 290 291 289 289 290 289 288 289 288 287 288 287 286 287 286 285 285 285 284 284 283 283 282 282 281 280 280 280 278 278 279 276 276 277 275 275 276 274 274 275 274 274 275 274 274 274 273 274 274 273 273 274 272 273 273 271 273 273 270 272 272 269 271 271 266 269 270 260 266 266 250 260 259 245 257 255 240 254 251 237 252 249 235 250 247 235 248 247 236 248 247 236 246 245 238 247 244 239 248 244 239 248 245 239 247 246 239 246 246 239 244 246 239 244 245 239 244 244 240 244 244 240 243 243 240 242 242 239 242 241 239 242 240 246 236 226 249 239 231 253 244 238 258 250 245 263 254 249 265 256 247 266 255 244 267 255 243 268 260 250 269 263 252 269 265 254 270 267 255 271 269 256 272 270 259 272 272 262 271 273 266 272 273 269 273 274 271 274 275 272 275 275 273 275 276 274 276 277 274 276 277 275 277 278 276 278 279 277 279 280 278 280 281 279 281 282 280 282 283 281 283 284 283 285 285 285 287 287 286 288 288 288 290 290 289 291 291 290 292 292 291 292 292 291 292 293 292 293 293 292 293 293 293 294 294 293 294 294 294 294 295 294 295 295 295 295 296 295 296 296 296 296 297 297 297 297 297 297 298 298 298 298 298 298 299 299 299 299 299 299 300 300 299 300 300 300 300 300 300 300 300 300 300 300 300 300 301 300 300 300 300 300 300 300 300 300 300 300 300 299 299 299 299 298 298 298 298 298 299 299 298 299 299 299 300 300 300 300 299 299 299 299 299 299 299 299 298 298 298 298 298 298 298 298 297 297 297 297 297 297 297 296 296 296 296 296 296 296 296 296 295 295 295 295 294 294 294 293 293 293 291 291 292 290 290 291 289 289 290 288 288 289 288 287 288 287 286 287 286 285 285 285 284 284 283 283 282 282 281 280 280 280 278 278 278 276 277 277 275 275 276 275 275 276 274 274 275 274 274 275 274 274 274 273 274 274 272 273 273 272 273 273 270 272 272 269 271 271 266 270 270 260 266 266 251 261 260 246 258 255 242 255 253 238 253 250 236 250 248 235 249 247 236 247 246 237 247 245 238 247 244 240 248 244 239 248 245 239 247 246 239 246 246 239 244 246 239 244 245 239 244 244 240 243 244 241 243 243 240 242 242 239 242 241 239 241 240 diff --git a/Test/tas_mytest_3d_i.input b/Test/tas_mytest_3d_i.input deleted file mode 100644 index b9ade7553eba66362df4a72f3d60bc1ecb72c966..0000000000000000000000000000000000000000 --- a/Test/tas_mytest_3d_i.input +++ /dev/null @@ -1 +0,0 @@ -Test/tas_mytest_3d_i.asc diff --git a/Test/tas_mytest_noreorder.asc b/Test/tas_mytest_noreorder.asc deleted file mode 100644 index a1fc15bfebf384824c56c9d2ad679d21696d0a0e..0000000000000000000000000000000000000000 --- a/Test/tas_mytest_noreorder.asc +++ /dev/null @@ -1,19 +0,0 @@ -tas -K -3 -3 -128 -256 -time -days since 0000-1-1 -682565.5 682595.0 682624.5 -682550.0 682581.0 682581.0 682609.0 682609.0 682640.0 -latitude -degrees_north --88.9277353523 -87.538705213 -86.1414721015 -84.7423855907 -83.3425960441 -81.9424662992 -80.5421464346 -79.1417096486 -77.7411958655 -76.3406287024 -74.9400230196 -73.5393886338 -72.1387322892 -70.7380587725 -69.337371575 -67.9366733026 -66.5359659402 -65.135251026 -63.7345297708 -62.3338031405 -60.9330719152 -59.5323367318 -58.1315981156 -56.7308565037 -55.3301122627 -53.9293657026 -52.5286170871 -51.1278666424 -49.7271145631 -48.3263610182 -46.9256061547 -45.5248501013 -44.1240929714 -42.7233348649 -41.3225758706 -39.9218160676 -38.5210555266 -37.120294311 -35.7195324778 -34.3187700788 -32.9180071606 -31.5172437659 -30.1164799335 -28.7157156991 -27.3149510951 -25.9141861518 -24.5134208971 -23.1126553566 -21.7118895544 -20.311123513 -18.9103572532 -17.509590795 -16.1088241568 -14.7080573564 -13.3072904104 -11.906523335 -10.5057561452 -9.10498885605 -7.7042214816 -6.30345403571 -4.90268653183 -3.50191898313 -2.10115140258 -0.700383802973 0.700383802973 2.10115140258 3.50191898313 4.90268653183 6.30345403571 7.7042214816 9.10498885605 10.5057561452 11.906523335 13.3072904104 14.7080573564 16.1088241568 17.509590795 18.9103572532 20.311123513 21.7118895544 23.1126553566 24.5134208971 25.9141861518 27.3149510951 28.7157156991 30.1164799335 31.5172437659 32.9180071606 34.3187700788 35.7195324778 37.120294311 38.5210555266 39.9218160676 41.3225758706 42.7233348649 44.1240929714 45.5248501013 46.9256061547 48.3263610182 49.7271145631 51.1278666424 52.5286170871 53.9293657026 55.3301122627 56.7308565037 58.1315981156 59.5323367318 60.9330719152 62.3338031405 63.7345297708 65.135251026 66.5359659402 67.9366733026 69.337371575 70.7380587725 72.1387322892 73.5393886338 74.9400230196 76.3406287024 77.7411958655 79.1417096486 80.5421464346 81.9424662992 83.3425960441 84.7423855907 86.1414721015 87.538705213 88.9277353523 --90.0 -88.2332202827 -88.2332202827 -86.8400886573 -86.8400886573 -85.4419288461 -85.4419288461 -84.0424908174 -84.0424908174 -82.6425311716 -82.6425311716 -81.2423063669 -81.2423063669 -79.8419280416 -79.8419280416 -78.4414527571 -78.4414527571 -77.0409122839 -77.0409122839 -75.640325861 -75.640325861 -74.2397058267 -74.2397058267 -72.8390604615 -72.8390604615 -71.4383955308 -71.4383955308 -70.0377151737 -70.0377151737 -68.6370224388 -68.6370224388 -67.2363196214 -67.2363196214 -65.8356084831 -65.8356084831 -64.4348903984 -64.4348903984 -63.0341664557 -63.0341664557 -61.6334375279 -61.6334375279 -60.2327043235 -60.2327043235 -58.8319674237 -58.8319674237 -57.4312273097 -57.4312273097 -56.0304843832 -56.0304843832 -54.6297389826 -54.6297389826 -53.2289913948 -53.2289913948 -51.8282418647 -51.8282418647 -50.4274906027 -50.4274906027 -49.0267377906 -49.0267377906 -47.6259835864 -47.6259835864 -46.225228128 -46.225228128 -44.8244715363 -44.8244715363 -43.4237139181 -43.4237139181 -42.0229553678 -42.0229553678 -40.6221959691 -40.6221959691 -39.2214357971 -39.2214357971 -37.8206749188 -37.8206749188 -36.4199133944 -36.4199133944 -35.0191512783 -35.0191512783 -33.6183886197 -33.6183886197 -32.2176254633 -32.2176254633 -30.8168618497 -30.8168618497 -29.4160978163 -29.4160978163 -28.0153333971 -28.0153333971 -26.6145686235 -26.6145686235 -25.2138035245 -25.2138035245 -23.8130381268 -23.8130381268 -22.4122724555 -22.4122724555 -21.0115065337 -21.0115065337 -19.6107403831 -19.6107403831 -18.2099740241 -18.2099740241 -16.8092074759 -16.8092074759 -15.4084407566 -15.4084407566 -14.0076738834 -14.0076738834 -12.6069068727 -12.6069068727 -11.2061397401 -11.2061397401 -9.80537250065 -9.80537250065 -8.40460516882 -8.40460516882 -7.00383775865 -7.00383775865 -5.60307028377 -5.60307028377 -4.20230275748 -4.20230275748 -2.80153519286 -2.80153519286 -1.40076760278 -1.40076760278 0.0 0.0 1.40076760278 1.40076760278 2.80153519286 2.80153519286 4.20230275748 4.20230275748 5.60307028377 5.60307028377 7.00383775865 7.00383775865 8.40460516882 8.40460516882 9.80537250065 9.80537250065 11.2061397401 11.2061397401 12.6069068727 12.6069068727 14.0076738834 14.0076738834 15.4084407566 15.4084407566 16.8092074759 16.8092074759 18.2099740241 18.2099740241 19.6107403831 19.6107403831 21.0115065337 21.0115065337 22.4122724555 22.4122724555 23.8130381268 23.8130381268 25.2138035245 25.2138035245 26.6145686235 26.6145686235 28.0153333971 28.0153333971 29.4160978163 29.4160978163 30.8168618497 30.8168618497 32.2176254633 32.2176254633 33.6183886197 33.6183886197 35.0191512783 35.0191512783 36.4199133944 36.4199133944 37.8206749188 37.8206749188 39.2214357971 39.2214357971 40.6221959691 40.6221959691 42.0229553678 42.0229553678 43.4237139181 43.4237139181 44.8244715363 44.8244715363 46.225228128 46.225228128 47.6259835864 47.6259835864 49.0267377906 49.0267377906 50.4274906027 50.4274906027 51.8282418647 51.8282418647 53.2289913948 53.2289913948 54.6297389826 54.6297389826 56.0304843832 56.0304843832 57.4312273097 57.4312273097 58.8319674237 58.8319674237 60.2327043235 60.2327043235 61.6334375279 61.6334375279 63.0341664557 63.0341664557 64.4348903984 64.4348903984 65.8356084831 65.8356084831 67.2363196214 67.2363196214 68.6370224388 68.6370224388 70.0377151737 70.0377151737 71.4383955308 71.4383955308 72.8390604615 72.8390604615 74.2397058267 74.2397058267 75.640325861 75.640325861 77.0409122839 77.0409122839 78.4414527571 78.4414527571 79.8419280416 79.8419280416 81.2423063669 81.2423063669 82.6425311716 82.6425311716 84.0424908174 84.0424908174 85.4419288461 85.4419288461 86.8400886573 86.8400886573 88.2332202827 88.2332202827 90.0 -longitude -degrees_east -0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.65625 14.0625 15.46875 16.875 18.28125 19.6875 21.09375 22.5 23.90625 25.3125 26.71875 28.125 29.53125 30.9375 32.34375 33.75 35.15625 36.5625 37.96875 39.375 40.78125 42.1875 43.59375 45.0 46.40625 47.8125 49.21875 50.625 52.03125 53.4375 54.84375 56.25 57.65625 59.0625 60.46875 61.875 63.28125 64.6875 66.09375 67.5 68.90625 70.3125 71.71875 73.125 74.53125 75.9375 77.34375 78.75 80.15625 81.5625 82.96875 84.375 85.78125 87.1875 88.59375 90.0 91.40625 92.8125 94.21875 95.625 97.03125 98.4375 99.84375 101.25 102.65625 104.0625 105.46875 106.875 108.28125 109.6875 111.09375 112.5 113.90625 115.3125 116.71875 118.125 119.53125 120.9375 122.34375 123.75 125.15625 126.5625 127.96875 129.375 130.78125 132.1875 133.59375 135.0 136.40625 137.8125 139.21875 140.625 142.03125 143.4375 144.84375 146.25 147.65625 149.0625 150.46875 151.875 153.28125 154.6875 156.09375 157.5 158.90625 160.3125 161.71875 163.125 164.53125 165.9375 167.34375 168.75 170.15625 171.5625 172.96875 174.375 175.78125 177.1875 178.59375 180.0 181.40625 182.8125 184.21875 185.625 187.03125 188.4375 189.84375 191.25 192.65625 194.0625 195.46875 196.875 198.28125 199.6875 201.09375 202.5 203.90625 205.3125 206.71875 208.125 209.53125 210.9375 212.34375 213.75 215.15625 216.5625 217.96875 219.375 220.78125 222.1875 223.59375 225.0 226.40625 227.8125 229.21875 230.625 232.03125 233.4375 234.84375 236.25 237.65625 239.0625 240.46875 241.875 243.28125 244.6875 246.09375 247.5 248.90625 250.3125 251.71875 253.125 254.53125 255.9375 257.34375 258.75 260.15625 261.5625 262.96875 264.375 265.78125 267.1875 268.59375 270.0 271.40625 272.8125 274.21875 275.625 277.03125 278.4375 279.84375 281.25 282.65625 284.0625 285.46875 286.875 288.28125 289.6875 291.09375 292.5 293.90625 295.3125 296.71875 298.125 299.53125 300.9375 302.34375 303.75 305.15625 306.5625 307.96875 309.375 310.78125 312.1875 313.59375 315.0 316.40625 317.8125 319.21875 320.625 322.03125 323.4375 324.84375 326.25 327.65625 329.0625 330.46875 331.875 333.28125 334.6875 336.09375 337.5 338.90625 340.3125 341.71875 343.125 344.53125 345.9375 347.34375 348.75 350.15625 351.5625 352.96875 354.375 355.78125 357.1875 358.59375 --0.703125 0.703125 0.703125 2.109375 2.109375 3.515625 3.515625 4.921875 4.921875 6.328125 6.328125 7.734375 7.734375 9.140625 9.140625 10.546875 10.546875 11.953125 11.953125 13.359375 13.359375 14.765625 14.765625 16.171875 16.171875 17.578125 17.578125 18.984375 18.984375 20.390625 20.390625 21.796875 21.796875 23.203125 23.203125 24.609375 24.609375 26.015625 26.015625 27.421875 27.421875 28.828125 28.828125 30.234375 30.234375 31.640625 31.640625 33.046875 33.046875 34.453125 34.453125 35.859375 35.859375 37.265625 37.265625 38.671875 38.671875 40.078125 40.078125 41.484375 41.484375 42.890625 42.890625 44.296875 44.296875 45.703125 45.703125 47.109375 47.109375 48.515625 48.515625 49.921875 49.921875 51.328125 51.328125 52.734375 52.734375 54.140625 54.140625 55.546875 55.546875 56.953125 56.953125 58.359375 58.359375 59.765625 59.765625 61.171875 61.171875 62.578125 62.578125 63.984375 63.984375 65.390625 65.390625 66.796875 66.796875 68.203125 68.203125 69.609375 69.609375 71.015625 71.015625 72.421875 72.421875 73.828125 73.828125 75.234375 75.234375 76.640625 76.640625 78.046875 78.046875 79.453125 79.453125 80.859375 80.859375 82.265625 82.265625 83.671875 83.671875 85.078125 85.078125 86.484375 86.484375 87.890625 87.890625 89.296875 89.296875 90.703125 90.703125 92.109375 92.109375 93.515625 93.515625 94.921875 94.921875 96.328125 96.328125 97.734375 97.734375 99.140625 99.140625 100.546875 100.546875 101.953125 101.953125 103.359375 103.359375 104.765625 104.765625 106.171875 106.171875 107.578125 107.578125 108.984375 108.984375 110.390625 110.390625 111.796875 111.796875 113.203125 113.203125 114.609375 114.609375 116.015625 116.015625 117.421875 117.421875 118.828125 118.828125 120.234375 120.234375 121.640625 121.640625 123.046875 123.046875 124.453125 124.453125 125.859375 125.859375 127.265625 127.265625 128.671875 128.671875 130.078125 130.078125 131.484375 131.484375 132.890625 132.890625 134.296875 134.296875 135.703125 135.703125 137.109375 137.109375 138.515625 138.515625 139.921875 139.921875 141.328125 141.328125 142.734375 142.734375 144.140625 144.140625 145.546875 145.546875 146.953125 146.953125 148.359375 148.359375 149.765625 149.765625 151.171875 151.171875 152.578125 152.578125 153.984375 153.984375 155.390625 155.390625 156.796875 156.796875 158.203125 158.203125 159.609375 159.609375 161.015625 161.015625 162.421875 162.421875 163.828125 163.828125 165.234375 165.234375 166.640625 166.640625 168.046875 168.046875 169.453125 169.453125 170.859375 170.859375 172.265625 172.265625 173.671875 173.671875 175.078125 175.078125 176.484375 176.484375 177.890625 177.890625 179.296875 179.296875 180.703125 180.703125 182.109375 182.109375 183.515625 183.515625 184.921875 184.921875 186.328125 186.328125 187.734375 187.734375 189.140625 189.140625 190.546875 190.546875 191.953125 191.953125 193.359375 193.359375 194.765625 194.765625 196.171875 196.171875 197.578125 197.578125 198.984375 198.984375 200.390625 200.390625 201.796875 201.796875 203.203125 203.203125 204.609375 204.609375 206.015625 206.015625 207.421875 207.421875 208.828125 208.828125 210.234375 210.234375 211.640625 211.640625 213.046875 213.046875 214.453125 214.453125 215.859375 215.859375 217.265625 217.265625 218.671875 218.671875 220.078125 220.078125 221.484375 221.484375 222.890625 222.890625 224.296875 224.296875 225.703125 225.703125 227.109375 227.109375 228.515625 228.515625 229.921875 229.921875 231.328125 231.328125 232.734375 232.734375 234.140625 234.140625 235.546875 235.546875 236.953125 236.953125 238.359375 238.359375 239.765625 239.765625 241.171875 241.171875 242.578125 242.578125 243.984375 243.984375 245.390625 245.390625 246.796875 246.796875 248.203125 248.203125 249.609375 249.609375 251.015625 251.015625 252.421875 252.421875 253.828125 253.828125 255.234375 255.234375 256.640625 256.640625 258.046875 258.046875 259.453125 259.453125 260.859375 260.859375 262.265625 262.265625 263.671875 263.671875 265.078125 265.078125 266.484375 266.484375 267.890625 267.890625 269.296875 269.296875 270.703125 270.703125 272.109375 272.109375 273.515625 273.515625 274.921875 274.921875 276.328125 276.328125 277.734375 277.734375 279.140625 279.140625 280.546875 280.546875 281.953125 281.953125 283.359375 283.359375 284.765625 284.765625 286.171875 286.171875 287.578125 287.578125 288.984375 288.984375 290.390625 290.390625 291.796875 291.796875 293.203125 293.203125 294.609375 294.609375 296.015625 296.015625 297.421875 297.421875 298.828125 298.828125 300.234375 300.234375 301.640625 301.640625 303.046875 303.046875 304.453125 304.453125 305.859375 305.859375 307.265625 307.265625 308.671875 308.671875 310.078125 310.078125 311.484375 311.484375 312.890625 312.890625 314.296875 314.296875 315.703125 315.703125 317.109375 317.109375 318.515625 318.515625 319.921875 319.921875 321.328125 321.328125 322.734375 322.734375 324.140625 324.140625 325.546875 325.546875 326.953125 326.953125 328.359375 328.359375 329.765625 329.765625 331.171875 331.171875 332.578125 332.578125 333.984375 333.984375 335.390625 335.390625 336.796875 336.796875 338.203125 338.203125 339.609375 339.609375 341.015625 341.015625 342.421875 342.421875 343.828125 343.828125 345.234375 345.234375 346.640625 346.640625 348.046875 348.046875 349.453125 349.453125 350.859375 350.859375 352.265625 352.265625 353.671875 353.671875 355.078125 355.078125 356.484375 356.484375 357.890625 357.890625 359.296875 -246.145 246.104 246.062 246.023 245.991 245.963 245.931 245.9 245.868 245.843 245.81 245.778 245.744 245.722 245.694 245.661 245.637 245.606 245.577 245.556 245.531 245.505 245.477 245.452 245.416 245.39 245.373 245.349 245.315 245.289 245.26 245.228 245.203 245.187 245.15 245.134 245.115 245.094 245.077 245.056 245.054 245.039 245.024 245.008 244.998 245.007 244.981 244.955 244.937 244.931 244.957 244.918 244.913 244.974 244.917 244.87 244.928 244.949 244.945 244.939 244.958 244.949 244.963 245.007 245.036 245.037 245.064 245.097 245.087 245.076 245.085 245.119 245.161 245.146 245.113 245.159 245.154 245.171 245.239 245.265 245.256 245.237 245.289 245.308 245.317 245.347 245.378 245.39 245.406 245.429 245.461 245.489 245.548 245.564 245.535 245.611 245.646 245.665 245.671 245.681 245.718 245.782 245.782 245.831 245.857 245.886 245.917 245.97 245.985 246.003 246.04 246.081 246.11 246.137 246.172 246.216 246.255 246.281 246.314 246.341 246.378 246.41 246.441 246.471 246.505 246.54 246.575 246.602 246.618 246.645 246.675 246.709 246.732 246.76 246.791 246.838 246.856 246.872 246.883 246.908 246.935 246.949 246.976 247.01 247.058 247.063 247.051 247.053 247.082 247.119 247.124 247.133 247.154 247.175 247.187 247.175 247.197 247.224 247.244 247.243 247.256 247.271 247.264 247.26 247.295 247.288 247.328 247.339 247.318 247.305 247.321 247.329 247.358 247.357 247.355 247.369 247.369 247.352 247.362 247.371 247.377 247.395 247.399 247.394 247.4 247.42 247.419 247.433 247.437 247.421 247.415 247.417 247.436 247.443 247.441 247.433 247.424 247.427 247.435 247.432 247.432 247.42 247.408 247.391 247.393 247.388 247.374 247.361 247.363 247.362 247.357 247.338 247.325 247.319 247.303 247.288 247.266 247.258 247.239 247.212 247.196 247.171 247.166 247.146 247.116 247.085 247.065 247.071 247.034 246.989 246.972 246.966 246.95 246.903 246.846 246.822 246.804 246.774 246.742 246.716 246.696 246.664 246.627 246.591 246.568 246.53 246.494 246.455 246.433 246.397 246.356 246.315 246.287 246.245 246.215 246.177 247.091 247.014 246.936 246.86 246.782 246.712 246.645 246.57 246.497 246.43 246.358 246.286 246.223 246.155 246.08 246.015 245.95 245.885 245.81 245.748 245.686 245.623 245.559 245.503 245.442 245.376 245.319 245.257 245.196 245.139 245.086 245.031 244.979 244.922 244.876 244.826 244.775 244.724 244.687 244.626 244.6 244.568 244.516 244.476 244.457 244.418 244.387 244.364 244.333 244.294 244.278 244.306 244.285 244.242 244.262 244.259 244.246 244.298 244.314 244.295 244.322 244.38 244.375 244.44 244.479 244.516 244.556 244.549 244.631 244.648 244.684 244.688 244.75 244.761 244.806 244.856 244.926 244.943 245.014 245.06 245.122 245.16 245.204 245.265 245.325 245.408 245.473 245.519 245.572 245.661 245.76 245.836 245.906 245.99 246.066 246.125 246.239 246.334 246.413 246.508 246.608 246.696 246.798 246.87 246.986 247.085 247.189 247.286 247.399 247.516 247.605 247.707 247.821 247.927 248.014 248.106 248.206 248.293 248.447 248.546 248.657 248.77 248.878 248.976 249.072 249.177 249.277 249.367 249.44 249.529 249.638 249.725 249.795 249.869 249.966 250.025 250.102 250.17 250.232 250.285 250.327 250.394 250.436 250.464 250.503 250.536 250.558 250.575 250.604 250.609 250.609 250.62 250.626 250.611 250.594 250.583 250.591 250.565 250.549 250.545 250.505 250.466 250.485 250.45 250.414 250.386 250.374 250.362 250.333 250.288 250.26 250.22 250.213 250.159 250.11 250.082 250.078 250.061 250.051 250.024 250.022 250.026 250.019 250.001 250.003 250.037 250.027 250.027 250.047 250.058 250.074 250.087 250.106 250.131 250.153 250.175 250.195 250.218 250.23 250.251 250.263 250.275 250.275 250.281 250.281 250.285 250.278 250.27 250.267 250.262 250.244 250.226 250.213 250.188 250.162 250.134 250.107 250.073 250.032 249.976 249.925 249.877 249.818 249.765 249.696 249.635 249.571 249.5 249.448 249.362 249.312 249.235 249.155 249.07 248.992 248.902 248.818 248.739 248.623 248.541 248.451 248.362 248.264 248.176 248.095 248.003 247.906 247.829 247.742 247.66 247.574 247.491 247.405 247.329 247.249 247.175 247.99 247.863 247.732 247.607 247.499 247.389 247.288 247.189 247.087 246.993 246.895 246.803 246.708 246.612 246.517 246.423 246.323 246.232 246.137 246.043 245.954 245.859 245.764 245.672 245.576 245.482 245.383 245.289 245.189 245.097 245.001 244.904 244.812 244.719 244.622 244.533 244.442 244.354 244.267 244.189 244.11 244.034 243.963 243.89 243.843 243.759 243.709 243.664 243.627 243.57 243.506 243.514 243.471 243.438 243.431 243.416 243.452 243.463 243.497 243.566 243.569 243.684 243.732 243.807 243.842 243.9 243.982 244.031 244.11 244.179 244.242 244.315 244.407 244.496 244.583 244.651 244.738 244.822 244.906 244.999 245.092 245.197 245.3 245.428 245.549 245.678 245.799 245.923 246.056 246.198 246.327 246.472 246.622 246.757 246.914 247.069 247.208 247.372 247.533 247.693 247.896 248.091 248.242 248.439 248.599 248.815 249.027 249.215 249.426 249.644 249.865 250.073 250.324 250.56 250.725 251.014 251.276 251.461 251.751 252.006 252.192 252.472 252.66 252.936 253.143 253.375 253.636 253.825 254.053 254.265 254.444 254.642 254.825 254.975 255.162 255.3 255.424 255.552 255.66 255.775 255.868 255.949 256.005 256.056 256.097 256.119 256.129 256.132 256.123 256.091 256.059 256.009 255.951 255.879 255.798 255.71 255.617 255.499 255.337 255.234 255.106 254.967 254.831 254.694 254.543 254.376 254.24 254.066 253.906 253.737 253.587 253.451 253.325 253.152 253.003 252.889 252.759 252.662 252.575 252.456 252.38 252.321 252.262 252.219 252.199 252.192 252.199 252.209 252.226 252.284 252.347 252.421 252.494 252.579 252.679 252.776 252.88 252.983 253.082 253.182 253.274 253.372 253.459 253.539 253.637 253.694 253.754 253.809 253.836 253.876 253.909 253.924 253.929 253.932 253.908 253.873 253.829 253.773 253.689 253.614 253.546 253.446 253.336 253.215 253.1 252.954 252.812 252.666 252.506 252.35 252.176 252.011 251.844 251.684 251.49 251.332 251.151 250.974 250.8 250.629 250.459 250.285 250.115 249.926 249.76 249.592 249.426 249.262 249.116 248.953 248.809 248.664 248.52 248.388 248.257 248.116 249.12 248.942 248.75 248.584 248.426 248.272 248.145 248.009 247.889 247.757 247.642 247.528 247.407 247.287 247.163 247.036 246.906 246.778 246.658 246.503 246.379 246.234 246.093 245.952 245.799 245.643 245.481 245.312 245.146 244.969 244.794 244.619 244.45 244.277 244.107 243.938 243.781 243.627 243.491 243.345 243.215 243.086 242.969 242.865 242.779 242.694 242.619 242.556 242.499 242.465 242.43 242.404 242.382 242.367 242.367 242.383 242.418 242.456 242.51 242.577 242.655 242.732 242.812 242.923 243.052 243.163 243.278 243.39 243.497 243.62 243.74 243.865 243.972 244.083 244.215 244.355 244.498 244.638 244.784 244.935 245.086 245.254 245.423 245.602 245.781 245.95 246.162 246.38 246.576 246.775 246.967 247.183 247.404 247.643 247.886 248.128 248.36 248.59 248.841 249.093 249.379 249.679 249.975 250.267 250.581 250.885 251.229 251.564 251.916 252.273 252.662 253.046 253.424 253.799 254.205 254.621 254.983 255.345 255.747 256.145 256.519 256.927 257.293 257.659 258.014 258.327 258.66 258.97 259.269 259.548 259.807 260.06 260.304 260.516 260.714 260.886 261.037 261.189 261.304 261.409 261.5 261.561 261.611 261.661 261.694 261.717 261.705 261.682 261.645 261.591 261.524 261.446 261.354 261.251 261.129 260.988 260.842 260.664 260.458 260.267 260.037 259.799 259.538 259.256 258.964 258.663 258.333 258.009 257.662 257.311 256.951 256.583 256.218 255.846 255.465 255.11 254.768 254.446 254.104 253.858 253.654 253.519 253.408 253.344 253.276 253.252 253.245 253.294 253.372 253.494 253.641 253.807 253.99 254.193 254.433 254.659 254.925 255.213 255.468 255.741 256.016 256.274 256.521 256.755 256.985 257.178 257.382 257.572 257.731 257.858 257.966 258.05 258.105 258.159 258.179 258.149 258.117 258.057 257.959 257.836 257.716 257.599 257.44 257.267 257.078 256.881 256.664 256.432 256.17 255.918 255.671 255.419 255.173 254.903 254.622 254.357 254.085 253.8 253.488 253.209 252.936 252.663 252.386 252.115 251.852 251.586 251.319 251.073 250.819 250.588 250.353 250.133 249.914 249.693 249.486 249.302 250.756 250.555 250.346 250.148 249.962 249.822 249.608 249.437 249.3 249.148 248.984 248.809 248.664 248.517 248.359 248.215 248.037 247.851 247.664 247.476 247.259 247.04 246.818 246.588 246.342 246.07 245.815 245.526 245.231 244.942 244.664 244.376 244.102 243.834 243.569 243.298 243.057 242.841 242.639 242.44 242.256 242.089 241.936 241.784 241.645 241.544 241.434 241.356 241.291 241.239 241.196 241.163 241.173 241.198 241.241 241.286 241.365 241.442 241.488 241.597 241.697 241.8 241.924 242.09 242.225 242.354 242.484 242.597 242.708 242.818 242.927 243.071 243.228 243.39 243.56 243.739 243.914 244.106 244.279 244.47 244.688 244.884 245.16 245.396 245.638 245.898 246.167 246.434 246.691 246.971 247.237 247.529 247.834 248.146 248.467 248.803 249.157 249.512 249.875 250.257 250.7 251.123 251.552 252.009 252.462 252.933 253.405 253.907 254.461 255.022 255.588 256.157 256.72 257.305 257.841 258.386 258.883 259.403 259.868 260.335 260.775 261.176 261.586 261.957 262.315 262.626 262.928 263.189 263.412 263.627 263.877 264.077 264.223 264.341 264.45 264.55 264.639 264.708 264.765 264.782 264.807 264.812 264.832 264.849 264.851 264.829 264.789 264.726 264.64 264.615 264.518 264.42 264.288 264.168 264.031 263.888 263.711 263.532 263.329 263.083 262.848 262.594 262.307 261.988 261.665 261.338 260.992 260.623 260.217 259.829 259.38 258.925 258.449 257.994 257.455 256.974 256.53 256.061 255.578 255.15 254.764 254.432 254.171 253.945 253.802 253.711 253.728 253.765 253.859 254.058 254.334 254.676 255.022 255.37 255.747 256.157 256.58 257.016 257.458 257.892 258.306 258.722 259.126 259.495 259.847 260.18 260.498 260.779 260.995 261.198 261.399 261.571 261.672 261.742 261.772 261.772 261.756 261.717 261.627 261.541 261.436 261.315 261.173 260.983 260.799 260.576 260.343 260.068 259.804 259.529 259.206 258.872 258.555 258.181 257.862 257.497 257.124 256.797 256.447 256.077 255.703 255.339 254.96 254.604 254.234 253.896 253.52 253.161 252.835 252.531 252.257 251.956 251.698 251.451 251.203 250.986 251.989 251.729 251.493 251.286 251.057 250.851 250.667 250.465 250.292 250.162 250.016 249.868 249.68 249.505 249.296 249.06 248.83 248.571 248.298 248.015 247.71 247.406 247.074 246.732 246.368 246.0 245.638 245.285 244.919 244.558 244.207 243.863 243.544 243.245 242.949 242.715 242.476 242.226 241.983 241.778 241.598 241.448 241.293 241.157 241.033 240.921 240.808 240.727 240.652 240.59 240.542 240.491 240.458 240.436 240.43 240.456 240.49 240.529 240.59 240.693 240.798 240.923 241.059 241.208 241.376 241.54 241.714 241.913 242.086 242.228 242.363 242.484 242.621 242.76 242.895 243.039 243.195 243.353 243.54 243.75 243.961 244.164 244.433 244.734 245.013 245.308 245.609 245.92 246.25 246.566 246.899 247.236 247.585 247.927 248.283 248.665 249.065 249.501 249.968 250.446 250.95 251.496 252.065 252.657 253.246 253.852 254.562 255.267 256.045 256.792 257.578 258.372 259.139 259.864 260.541 261.169 261.745 262.287 262.794 263.282 263.716 264.125 264.454 264.766 265.038 265.322 265.511 265.685 265.81 265.916 265.976 266.024 266.035 266.067 266.024 265.994 265.969 265.934 265.897 265.872 265.834 265.813 265.777 265.728 265.701 265.718 265.666 265.593 265.524 265.452 265.397 265.28 265.153 265.033 264.944 264.799 264.642 264.484 264.238 263.952 263.655 263.355 263.054 262.685 262.311 261.949 261.587 261.23 260.808 260.439 259.994 259.523 259.082 258.612 258.159 257.639 257.111 256.575 256.108 255.696 255.237 254.915 254.665 254.488 254.36 254.299 254.23 254.273 254.449 254.688 255.009 255.365 255.806 256.249 256.757 257.353 257.909 258.456 259.011 259.581 260.1 260.603 261.018 261.391 261.801 262.182 262.525 262.767 262.98 263.1 263.195 263.282 263.359 263.377 263.44 263.474 263.499 263.523 263.513 263.448 263.39 263.311 263.212 263.13 262.999 262.862 262.697 262.505 262.288 262.036 261.779 261.491 261.178 260.823 260.445 260.044 259.654 259.228 258.804 258.358 257.956 257.524 257.105 256.671 256.241 255.8 255.387 254.972 254.561 254.182 253.808 253.429 253.098 252.761 252.478 252.195 252.279 251.972 251.732 251.508 251.315 251.114 250.928 250.747 250.575 250.369 250.188 250.011 249.815 249.533 249.327 249.065 248.741 248.429 248.075 247.755 247.392 247.026 246.667 246.281 245.906 245.569 245.209 244.846 244.513 244.167 243.833 243.53 243.231 242.978 242.752 242.529 242.35 242.152 241.995 241.9 241.885 241.865 241.823 241.781 241.752 241.698 241.632 241.564 241.483 241.371 241.257 241.122 240.984 240.86 240.739 240.617 240.494 240.406 240.344 240.33 240.345 240.391 240.427 240.557 240.714 240.9 241.102 241.303 241.489 241.677 241.842 241.983 242.118 242.227 242.342 242.441 242.537 242.674 242.826 242.986 243.194 243.42 243.676 243.932 244.207 244.481 244.782 245.072 245.402 245.72 246.04 246.379 246.725 247.076 247.415 247.789 248.204 248.654 249.12 249.62 250.169 250.76 251.381 252.074 252.772 253.557 254.364 255.173 256.059 256.93 257.765 258.623 259.531 260.371 261.189 261.906 262.581 263.217 263.799 264.295 264.83 265.28 265.642 265.902 266.11 266.263 266.467 266.583 266.671 266.726 266.757 266.752 266.727 266.677 266.597 266.497 266.404 266.277 266.108 266.037 265.897 265.772 265.686 265.65 265.591 265.595 265.644 265.579 265.497 265.511 265.474 265.388 265.24 265.094 264.914 264.706 264.482 264.245 263.916 263.539 263.247 262.868 262.547 262.144 261.712 261.353 260.96 260.461 259.985 259.577 259.123 258.667 258.229 257.837 257.446 257.039 256.516 256.058 255.651 255.336 255.064 254.777 254.637 254.531 254.512 254.551 254.649 254.746 254.943 255.228 255.558 255.994 256.474 257.001 257.578 258.188 258.85 259.483 260.078 260.652 261.202 261.724 262.16 262.563 262.912 263.184 263.389 263.547 263.68 263.765 263.863 263.986 264.065 264.248 264.281 264.349 264.438 264.501 264.555 264.603 264.535 264.522 264.479 264.388 264.349 264.31 264.26 264.221 264.081 263.863 263.604 263.332 263.018 262.73 262.382 261.986 261.576 261.132 260.649 260.167 259.666 259.141 258.637 258.131 257.586 257.078 256.576 256.107 255.619 255.206 254.738 254.296 253.823 253.401 252.977 252.6 252.055 251.76 251.485 251.223 250.996 250.842 250.602 250.419 250.225 250.022 249.764 249.506 249.264 248.952 248.691 248.363 248.069 247.756 247.394 247.073 246.73 246.43 246.114 245.791 245.452 245.163 244.883 244.602 244.341 244.085 243.839 243.609 243.423 243.265 243.141 243.053 243.01 243.012 243.061 243.089 243.214 243.329 243.469 243.597 243.704 243.772 243.848 243.87 243.852 243.762 243.62 243.415 243.165 242.899 242.616 242.325 242.014 241.723 241.444 241.196 240.981 240.835 240.764 240.695 240.674 240.719 240.748 240.892 241.025 241.178 241.313 241.447 241.597 241.719 241.852 241.951 242.072 242.197 242.333 242.458 242.649 242.848 243.072 243.291 243.521 243.765 244.017 244.257 244.494 244.74 244.982 245.261 245.548 245.854 246.167 246.457 246.809 247.227 247.669 248.114 248.641 249.247 249.8 250.477 251.325 252.136 252.939 253.845 254.762 255.686 256.601 257.568 258.521 259.494 260.419 261.305 262.17 262.922 263.643 264.348 264.879 265.384 265.749 266.169 266.513 266.839 267.054 267.19 267.247 267.307 267.319 267.278 267.057 267.042 267.006 266.899 266.806 266.721 266.806 266.748 266.663 266.559 266.297 266.325 266.214 266.137 266.021 265.895 265.642 265.36 264.995 264.865 264.571 264.261 263.965 263.549 263.001 262.667 262.261 261.836 261.457 261.138 260.71 260.331 260.014 259.635 259.22 258.851 258.484 258.182 257.861 257.569 257.336 257.109 256.955 256.731 256.53 256.34 256.167 256.003 255.783 255.687 255.603 255.525 255.428 255.428 255.463 255.586 255.747 255.994 256.282 256.607 257.068 257.614 258.221 258.84 259.446 260.081 260.697 261.253 261.686 262.157 262.546 262.892 263.204 263.448 263.566 263.723 263.866 263.936 264.048 264.176 264.167 264.189 264.234 264.289 264.423 264.58 264.694 264.829 265.025 265.182 265.321 265.268 265.281 265.328 265.315 265.339 265.29 265.18 265.03 264.887 264.622 264.311 263.887 263.478 263.032 262.557 262.033 261.505 260.91 260.287 259.642 259.04 258.423 257.787 257.107 256.473 255.855 255.306 254.754 254.249 253.721 253.248 252.844 252.432 251.674 251.398 251.142 250.88 250.6 250.332 250.037 249.72 249.399 249.057 248.706 248.37 248.021 247.721 247.44 247.207 246.914 246.649 246.413 246.174 245.904 245.613 245.323 245.085 244.858 244.696 244.538 244.322 244.143 243.96 243.822 243.759 243.755 243.79 243.879 244.044 244.248 244.464 244.6 244.812 245.087 245.389 245.748 246.163 246.566 246.933 247.147 247.302 247.368 247.361 247.233 247.015 246.716 246.333 245.903 245.391 244.864 244.345 243.79 243.103 242.606 242.238 241.853 241.542 241.265 241.077 240.904 240.679 240.643 240.641 240.728 240.843 240.989 241.113 241.25 241.434 241.613 241.839 242.004 242.146 242.285 242.438 242.581 242.716 242.794 242.911 243.017 243.135 243.257 243.404 243.587 243.804 244.054 244.358 244.654 245.012 245.403 245.777 246.187 246.631 247.078 247.585 248.117 248.783 249.473 250.198 251.004 252.021 252.966 253.995 255.128 256.289 257.462 258.605 259.84 261.007 262.838 264.316 265.283 265.826 266.471 267.044 267.497 268.275 268.587 268.707 268.743 268.693 268.652 268.371 268.086 267.916 267.702 267.583 267.486 267.452 267.55 267.568 267.514 267.426 267.326 267.344 267.46 267.456 267.269 267.08 266.888 266.663 266.274 265.879 265.481 265.061 264.604 264.096 263.527 263.008 262.415 261.836 261.318 260.752 260.206 259.74 259.238 258.811 258.469 258.293 258.121 257.855 257.651 257.537 257.509 257.5 257.54 257.534 257.603 257.713 257.841 257.957 258.04 258.102 258.136 258.15 258.146 258.095 257.966 257.867 257.687 257.538 257.51 257.552 257.674 257.845 258.028 258.368 258.753 259.198 259.669 260.158 260.594 261.034 261.407 261.759 262.042 262.311 262.578 262.793 262.956 263.116 263.33 263.517 263.693 263.884 264.107 264.307 264.497 264.721 264.957 265.199 265.33 265.666 265.916 266.038 266.091 266.252 266.305 266.184 266.08 266.02 265.974 265.818 265.648 265.459 265.311 265.607 265.303 264.866 264.387 263.932 263.384 262.749 262.108 261.43 260.759 260.048 259.284 258.473 257.726 256.817 256.048 255.284 254.621 254.025 253.444 252.851 252.424 252.055 251.793 251.253 250.837 250.443 250.112 249.697 249.273 248.827 248.448 248.087 247.74 247.388 247.053 246.794 246.506 246.235 246.063 245.883 245.73 245.593 245.463 245.336 245.213 245.056 244.877 244.722 244.58 244.447 244.316 244.225 244.168 244.177 244.282 244.45 244.695 245.001 245.334 245.702 246.13 246.689 247.213 247.855 248.534 249.21 249.734 250.176 250.556 250.822 250.935 250.938 250.802 250.517 250.154 249.653 248.993 248.285 247.513 246.74 245.95 245.176 244.474 243.819 243.05 242.51 242.039 241.616 241.238 240.904 240.633 240.517 240.497 240.587 240.754 240.948 241.18 241.392 241.649 241.898 242.072 242.189 242.259 242.32 242.26 242.224 242.166 242.153 242.167 242.176 242.22 242.357 242.549 242.814 243.106 243.456 243.816 244.179 244.565 244.949 245.354 245.74 246.129 246.544 247.016 247.505 248.069 248.79 249.523 250.41 251.464 252.566 253.782 255.167 256.552 258.05 259.484 260.852 263.638 264.991 266.212 267.329 268.396 269.096 269.567 269.872 270.015 269.957 269.763 269.498 269.128 268.636 268.199 268.032 267.886 267.91 268.027 268.149 268.226 268.194 268.231 268.305 268.39 268.322 268.286 268.234 268.171 268.04 267.792 267.428 266.909 266.441 266.395 266.218 265.781 265.461 264.872 264.198 263.529 262.769 262.06 261.45 260.944 260.394 259.938 259.564 259.272 259.059 258.904 258.838 258.817 258.874 258.999 259.153 259.349 259.608 259.851 260.073 260.306 260.559 260.786 260.888 260.979 261.025 260.981 260.865 260.669 260.384 260.094 259.802 259.537 259.309 259.121 258.98 258.938 258.968 259.084 259.298 259.504 259.76 260.042 260.278 260.564 260.778 260.949 261.085 261.228 261.393 261.594 261.83 262.047 262.346 262.699 263.153 263.595 264.127 264.723 265.227 265.746 266.136 266.285 266.364 266.628 266.802 266.934 267.018 267.108 267.162 267.194 267.249 267.037 266.89 266.681 266.475 266.27 266.049 265.956 266.061 266.013 265.789 265.353 264.753 264.122 263.379 262.669 261.903 261.049 260.168 259.265 258.344 257.362 256.348 255.592 254.868 254.153 253.484 252.907 252.348 252.932 252.273 251.616 251.063 250.5 249.98 249.56 249.2 248.836 248.522 248.237 248.054 247.861 247.752 247.894 247.874 247.693 247.567 247.464 247.418 247.492 247.266 247.241 246.966 246.826 246.596 246.332 246.141 245.823 245.627 245.485 245.378 245.389 245.48 245.605 245.853 246.172 246.626 247.165 247.825 248.585 249.497 250.383 251.228 251.925 252.628 253.239 253.715 254.1 254.203 254.094 253.708 253.245 252.586 251.783 250.915 249.899 248.809 247.69 246.593 245.578 244.69 243.878 242.955 242.334 241.877 241.542 241.22 240.973 240.818 240.844 240.966 241.104 241.297 241.494 241.698 241.854 241.931 241.996 242.077 242.075 242.018 241.907 241.797 241.707 241.652 241.601 241.653 241.725 241.878 242.077 242.358 242.701 243.093 243.491 243.89 244.285 244.655 245.047 245.455 245.836 246.221 246.605 247.02 247.483 248.005 248.792 249.528 250.426 251.388 252.476 253.689 255.06 256.534 258.127 259.565 262.035 263.651 264.708 266.023 267.874 269.348 270.093 270.509 270.645 270.455 270.147 269.796 269.342 268.862 268.432 268.239 268.182 268.171 268.235 268.34 268.507 268.718 268.971 269.242 269.544 269.763 269.904 269.973 270.024 269.938 269.765 269.511 269.0 268.476 267.981 267.484 266.987 266.523 266.177 265.826 265.335 265.221 264.774 264.456 264.0 263.543 263.099 263.11 262.206 261.98 261.844 261.779 261.81 261.85 261.945 262.09 262.267 262.489 262.705 262.934 263.188 263.394 263.528 263.637 263.692 263.622 263.968 263.308 262.71 262.409 262.076 261.734 261.372 261.055 260.799 260.681 260.609 260.506 260.479 260.528 260.56 260.6 260.661 260.708 260.764 260.727 260.696 260.683 260.67 260.686 260.797 260.954 261.192 261.681 262.152 262.709 263.523 264.719 265.421 265.916 266.36 266.667 266.967 267.228 267.454 267.677 267.864 268.004 268.142 268.297 268.409 268.55 268.603 268.66 268.692 268.647 268.512 268.298 268.057 267.831 267.504 267.168 267.12 266.987 266.713 266.167 265.535 264.818 264.093 263.225 262.283 261.208 260.069 258.959 258.001 257.025 256.152 255.193 254.32 253.616 256.082 255.404 254.811 254.291 253.732 253.279 252.895 252.554 252.297 252.128 251.998 251.899 251.94 252.032 252.089 252.243 252.218 252.256 252.204 252.151 252.022 251.812 251.556 251.243 250.902 250.503 250.138 249.741 249.271 248.805 248.375 247.945 247.551 247.241 247.074 246.849 246.838 247.065 247.479 248.139 248.989 249.967 250.95 252.165 253.315 254.213 255.1 255.929 256.515 256.625 256.551 256.346 255.853 255.246 254.378 253.309 252.135 250.777 249.346 247.972 246.64 245.605 244.694 243.95 243.294 242.722 242.322 242.079 241.95 241.912 241.9 241.958 242.023 242.16 242.126 242.226 242.435 242.339 242.526 242.596 242.41 242.435 242.433 242.451 242.423 242.415 242.356 242.23 242.164 242.141 242.192 242.344 242.542 242.814 243.121 243.516 243.949 244.398 244.862 245.35 245.845 246.374 246.959 247.531 248.031 248.59 249.102 249.594 250.095 250.704 251.482 252.466 253.397 254.559 255.85 257.186 258.846 260.599 262.373 263.673 265.301 267.355 269.385 270.434 270.892 270.903 270.699 270.405 269.956 269.494 269.043 268.628 268.381 268.362 268.447 268.596 268.828 269.072 269.342 269.663 270.087 270.403 270.624 270.779 270.897 270.948 270.953 270.895 270.772 270.633 270.487 270.274 269.961 269.581 269.153 268.716 268.249 267.943 267.658 267.354 266.991 266.71 266.586 266.438 266.264 266.261 266.484 266.399 265.722 266.078 265.907 265.471 265.703 266.298 266.688 266.989 267.02 266.777 266.447 266.138 265.996 266.288 266.724 266.164 265.122 264.844 264.678 264.516 264.517 264.681 264.928 265.118 265.234 265.328 265.869 266.282 266.371 266.382 266.245 265.317 264.617 263.484 263.234 262.899 262.582 262.287 262.092 261.955 261.963 262.129 262.431 262.942 263.622 264.533 265.315 265.951 266.43 266.783 267.17 267.581 268.074 268.315 268.499 268.621 268.764 268.977 269.195 269.398 269.57 269.731 269.901 270.061 270.183 270.238 270.202 270.094 269.961 269.737 269.494 269.189 268.733 268.504 268.29 267.891 267.348 266.634 265.609 264.671 263.576 262.556 261.442 260.487 259.482 258.633 257.766 256.888 261.129 260.576 260.101 259.645 259.242 258.855 258.515 258.21 258.042 257.961 257.925 257.919 257.989 258.078 258.229 258.28 258.351 258.35 258.302 258.247 257.986 257.653 257.221 256.718 256.174 255.622 255.03 254.369 253.644 252.889 252.148 251.477 250.68 249.916 249.181 248.662 248.29 248.072 248.146 248.303 248.956 249.851 251.044 252.301 253.677 254.956 256.115 257.14 258.04 258.668 259.056 259.152 258.789 258.036 257.071 255.863 254.473 253.003 251.529 250.115 248.797 247.689 246.739 245.934 245.303 244.794 244.371 243.997 243.932 243.867 243.807 243.756 243.756 243.792 243.836 243.996 244.142 244.276 244.476 244.693 244.949 245.149 245.271 245.338 245.347 245.31 245.2 244.871 244.6 244.255 243.955 243.706 243.501 243.457 243.527 243.846 244.361 244.928 245.557 246.214 246.939 247.592 248.252 248.878 249.547 250.109 250.616 250.995 251.419 251.911 252.302 252.944 253.701 254.618 255.595 256.788 258.265 259.905 261.521 262.996 264.502 266.661 269.212 270.726 271.373 271.61 271.619 271.466 271.082 270.562 270.024 269.516 269.129 269.108 269.182 269.257 269.336 269.476 269.669 269.906 270.236 270.484 270.69 270.872 271.051 271.105 271.145 271.162 271.182 271.193 271.209 271.22 271.205 271.169 271.127 271.054 270.9 270.739 270.583 270.368 270.121 269.92 269.695 269.502 269.387 269.322 269.258 269.131 269.044 269.013 269.035 269.09 269.194 269.356 269.554 269.721 269.86 269.902 269.842 269.668 269.337 268.935 268.497 268.063 267.509 267.541 267.752 268.064 267.177 267.934 268.648 269.091 269.34 269.5 269.645 269.795 269.929 269.977 269.932 269.778 269.506 269.238 268.703 266.953 265.41 264.744 264.196 263.852 263.555 263.355 263.404 263.642 264.031 264.681 265.117 265.696 266.328 266.929 267.47 267.948 268.396 268.655 268.951 269.225 269.419 269.53 269.685 269.883 270.063 270.224 270.396 270.622 270.844 270.923 270.983 271.04 271.13 271.083 271.002 270.863 270.683 270.463 270.198 269.842 269.309 269.031 268.67 268.023 267.491 266.301 265.453 264.666 263.914 263.14 262.429 261.8 267.244 266.91 266.547 266.207 265.986 265.686 265.405 265.208 265.123 264.836 264.193 264.323 264.38 264.497 264.905 265.398 265.378 265.227 265.129 265.099 263.982 263.502 263.063 262.508 261.838 261.069 260.322 259.455 258.515 257.493 256.45 255.497 254.558 253.611 252.733 251.88 251.153 250.623 250.257 250.159 250.36 250.899 251.788 253.01 254.455 256.013 257.502 258.953 260.061 261.227 262.17 262.584 262.573 262.108 261.108 259.777 258.211 256.584 255.13 253.642 252.355 251.193 250.21 249.441 248.765 248.202 247.794 247.446 247.242 247.039 246.991 246.956 247.011 247.078 247.227 247.463 247.747 248.114 248.568 249.043 249.519 249.747 250.076 250.174 250.095 249.881 249.524 249.152 248.723 248.236 247.754 247.298 246.948 246.636 246.455 246.481 246.697 247.111 247.673 248.335 249.035 249.721 250.404 250.895 251.582 252.303 252.969 253.504 254.146 254.774 255.448 256.268 257.071 258.164 260.306 262.221 263.414 264.48 266.172 267.666 269.157 270.091 270.909 271.641 272.076 272.262 272.276 272.115 271.672 271.089 270.599 270.231 269.908 269.778 269.78 269.818 269.893 269.957 270.064 270.171 270.267 270.416 270.535 270.603 270.77 270.883 270.937 270.919 270.924 270.976 271.064 271.154 271.238 271.318 271.377 271.42 271.439 271.453 271.459 271.464 271.453 271.426 271.392 271.325 271.191 271.039 270.875 270.711 270.558 270.47 270.449 270.456 270.487 270.528 270.577 270.631 270.685 270.704 270.693 270.644 270.551 270.388 270.164 269.911 269.754 269.827 269.98 270.163 270.32 270.453 270.588 270.768 270.958 271.125 271.302 271.489 271.713 271.875 271.912 271.788 271.353 270.717 270.155 269.711 267.649 266.669 265.997 265.477 265.054 264.747 264.675 264.757 265.137 265.481 265.495 265.873 266.552 267.108 267.597 268.111 268.623 269.15 269.584 269.912 270.178 270.352 270.491 270.605 270.726 270.812 270.897 270.987 271.144 271.278 271.349 271.385 271.405 271.392 271.392 271.377 271.329 271.24 271.118 270.932 270.74 270.623 270.427 270.118 269.634 269.35 269.101 268.797 268.64 268.069 267.849 267.663 270.278 270.158 270.071 269.982 269.877 269.766 269.654 269.532 269.484 269.516 269.567 269.518 269.485 269.501 269.299 269.18 269.239 269.256 269.268 269.26 269.23 269.073 268.593 268.357 267.411 266.443 264.464 263.24 263.002 263.319 261.929 260.407 259.295 258.062 256.904 255.95 255.087 254.501 254.137 253.983 254.005 254.366 254.977 255.918 257.209 258.693 260.262 261.887 263.477 264.877 266.014 266.128 265.094 265.046 265.302 265.648 263.493 261.794 260.165 258.718 257.512 256.5 255.618 254.827 254.192 253.576 253.085 252.738 252.51 252.33 252.215 252.194 252.194 252.3 252.412 252.674 253.078 253.511 254.015 254.554 255.052 255.433 255.635 255.641 255.458 255.093 254.577 254.064 253.548 253.104 252.635 252.09 251.596 251.129 250.791 250.643 250.679 250.897 251.352 251.918 252.562 253.434 254.445 255.469 256.474 257.63 258.777 260.327 261.657 262.662 264.247 265.69 266.575 267.227 267.836 268.696 269.527 270.148 270.674 271.156 271.587 271.854 272.021 272.129 272.195 272.203 272.167 272.071 271.857 271.525 271.155 270.827 270.579 270.463 270.412 270.42 270.411 270.404 270.453 270.51 270.561 270.652 270.709 270.744 270.811 270.853 270.873 270.899 270.909 270.951 270.97 270.988 271.07 271.178 271.304 271.426 271.525 271.559 271.593 271.624 271.647 271.663 271.665 271.644 271.583 271.487 271.376 271.249 271.102 270.975 270.89 270.866 270.91 270.923 270.93 270.932 270.927 270.921 270.913 270.898 270.891 270.884 270.873 270.858 270.823 270.802 270.794 270.811 270.829 270.843 270.853 270.909 271.019 271.151 271.292 271.461 271.699 271.902 272.029 272.064 271.88 271.365 270.517 269.611 268.539 267.853 267.355 267.451 266.783 266.143 266.029 266.047 266.343 266.182 266.471 266.845 267.428 268.077 268.695 269.257 269.625 269.922 270.2 270.448 270.691 270.889 271.052 271.176 271.255 271.31 271.359 271.398 271.383 271.379 271.399 271.403 271.401 271.357 271.286 271.284 271.372 271.413 271.399 271.316 271.175 271.097 271.036 270.972 270.891 270.79 270.687 270.603 270.521 270.466 270.424 270.38 271.72 271.77 271.798 271.82 271.84 271.833 271.81 271.775 271.718 271.646 271.582 271.507 271.427 271.376 271.326 271.258 271.163 271.072 271.032 271.014 271.009 271.022 271.002 270.873 270.566 270.304 269.924 269.477 268.779 268.026 267.471 266.837 265.264 264.333 263.634 261.549 260.074 259.34 259.063 259.016 259.225 259.727 260.516 262.388 263.667 264.609 265.499 266.501 267.65 268.642 269.001 269.94 270.696 270.688 270.189 269.454 268.549 268.004 266.89 265.206 263.814 262.902 262.109 261.465 260.879 260.302 259.837 259.442 259.122 258.82 258.598 258.416 258.374 258.448 258.65 258.944 259.289 259.633 260.077 260.586 261.038 261.358 261.57 261.565 261.411 261.195 260.886 260.467 259.974 259.305 258.733 258.204 257.582 257.004 256.594 256.295 256.212 256.309 256.667 257.286 258.128 259.204 260.478 261.844 263.723 265.608 267.502 268.054 269.281 270.045 270.505 270.972 271.407 271.76 272.107 272.429 272.676 272.776 272.776 272.684 272.513 272.34 272.191 272.069 271.971 271.925 271.902 271.887 271.848 271.766 271.628 271.448 271.25 271.133 271.068 271.043 271.085 271.136 271.181 271.216 271.231 271.221 271.212 271.186 271.182 271.177 271.153 271.112 271.088 271.134 271.187 271.235 271.274 271.337 271.426 271.522 271.617 271.673 271.737 271.805 271.883 271.933 271.949 271.936 271.895 271.847 271.791 271.722 271.626 271.547 271.472 271.414 271.379 271.342 271.311 271.282 271.272 271.284 271.304 271.331 271.38 271.434 271.474 271.51 271.544 271.562 271.568 271.565 271.558 271.533 271.494 271.457 271.428 271.451 271.514 271.607 271.734 271.85 271.957 272.037 272.051 271.897 271.524 271.035 270.405 269.736 269.327 269.351 269.16 267.481 267.265 267.307 267.54 267.665 267.425 268.085 268.795 269.394 269.901 270.218 270.392 270.488 270.615 270.782 271.022 271.242 271.418 271.544 271.591 271.6 271.597 271.574 271.526 271.491 271.44 271.393 271.433 271.431 271.339 271.25 271.268 271.338 271.365 271.372 271.359 271.321 271.28 271.225 271.196 271.185 271.218 271.283 271.372 271.464 271.556 271.64 271.779 271.882 271.973 272.064 272.151 272.197 272.217 272.22 272.199 272.145 272.069 271.971 271.832 271.695 271.576 271.471 271.375 271.308 271.254 271.233 271.28 271.38 271.519 271.691 271.855 271.938 271.953 271.902 271.724 271.44 271.014 270.477 269.669 268.751 267.999 267.454 266.52 265.202 264.919 264.983 265.165 264.554 265.698 266.831 268.204 269.079 269.658 270.157 270.69 271.172 271.636 272.054 272.333 272.379 272.241 271.844 271.125 270.548 270.324 269.81 269.273 268.946 268.559 268.081 267.841 267.623 267.73 267.698 266.548 265.407 265.119 264.888 264.758 264.907 265.172 265.432 265.527 266.096 266.882 266.881 267.178 267.545 267.865 268.293 267.768 268.114 268.381 268.159 267.805 267.401 267.046 266.534 266.381 264.871 264.607 264.246 263.038 263.055 263.149 264.095 265.28 266.278 267.157 268.712 269.79 271.078 271.928 272.516 272.939 273.189 273.342 273.423 273.485 273.547 273.585 273.566 273.454 273.281 273.083 272.875 272.647 272.474 272.352 272.268 272.205 272.176 272.151 272.121 272.066 272.0 271.926 271.848 271.764 271.685 271.601 271.527 271.49 271.491 271.511 271.534 271.568 271.596 271.623 271.647 271.659 271.64 271.607 271.568 271.53 271.541 271.599 271.666 271.747 271.813 271.858 271.897 271.945 272.014 272.094 272.184 272.298 272.4 272.473 272.517 272.531 272.538 272.535 272.519 272.469 272.409 272.342 272.274 272.204 272.16 272.134 272.106 272.097 272.13 272.171 272.21 272.253 272.289 272.313 272.328 272.338 272.344 272.351 272.355 272.351 272.334 272.313 272.298 272.294 272.322 272.363 272.409 272.441 272.445 272.436 272.427 272.43 272.433 272.389 272.275 272.075 271.77 271.3 270.734 270.297 269.673 269.075 268.754 268.823 268.614 268.176 268.919 269.878 270.375 270.583 270.709 270.811 270.924 271.051 271.213 271.52 271.834 272.015 272.089 272.067 271.987 271.924 271.882 271.857 271.853 271.85 271.809 271.73 271.675 271.651 271.605 271.518 271.455 271.375 271.299 271.296 271.315 271.332 271.323 271.293 271.269 271.268 271.305 271.385 271.474 271.566 271.662 271.786 271.871 271.943 272.006 272.059 272.076 272.085 272.085 272.064 272.016 271.944 271.842 271.699 271.582 271.51 271.479 271.481 271.509 271.534 271.551 271.572 271.617 271.688 271.809 272.002 272.195 272.372 272.528 272.634 272.63 272.546 272.371 272.052 271.631 271.1 270.458 269.684 269.061 268.815 268.793 268.998 269.45 270.155 270.822 271.434 271.736 271.856 271.894 271.908 271.93 271.96 272.014 272.113 272.21 272.267 272.24 272.023 271.695 271.501 271.334 271.257 271.232 271.196 271.177 271.152 271.067 270.857 270.62 270.338 269.954 269.201 268.778 268.71 268.617 268.43 268.764 269.175 269.573 269.876 270.059 270.304 270.608 270.922 271.27 271.591 271.78 271.867 271.85 271.756 271.562 271.284 270.914 270.33 269.805 269.571 269.309 268.646 267.841 268.571 269.352 270.268 270.999 271.597 272.138 272.634 272.982 273.225 273.376 273.45 273.474 273.512 273.554 273.598 273.642 273.673 273.672 273.6 273.487 273.378 273.282 273.194 273.163 273.16 273.159 273.149 273.131 273.088 273.007 272.884 272.775 272.688 272.602 272.501 272.393 272.286 272.189 272.112 272.081 272.069 272.064 272.054 272.045 272.04 272.037 272.052 272.065 272.058 272.046 272.057 272.103 272.185 272.297 272.43 272.534 272.612 272.669 272.708 272.748 272.804 272.88 272.985 273.075 273.147 273.209 273.275 273.341 273.399 273.44 273.446 273.417 273.378 273.347 273.332 273.337 273.343 273.34 273.325 273.311 273.302 273.299 273.307 273.306 273.298 273.282 273.26 273.253 273.26 273.273 273.282 273.264 273.223 273.171 273.117 273.1 273.11 273.13 273.145 273.133 273.101 273.051 272.99 272.953 272.93 272.9 272.817 272.645 272.372 271.996 271.533 271.188 270.959 270.674 270.124 269.69 269.366 269.724 270.31 270.707 270.866 270.96 271.113 271.297 271.43 271.598 272.04 272.395 272.544 272.595 272.602 272.56 272.51 272.472 272.461 272.489 272.513 272.522 272.464 272.319 272.166 272.022 271.94 271.878 271.808 271.728 271.631 271.495 271.38 271.306 271.324 271.411 271.499 271.55 271.582 271.607 271.641 271.698 272.055 272.109 272.16 272.197 272.222 272.223 272.205 272.177 272.135 272.083 272.016 271.936 271.838 271.758 271.707 271.696 271.738 271.8 271.862 271.91 271.926 271.928 271.931 271.949 272.005 272.105 272.232 272.376 272.527 272.64 272.712 272.741 272.706 272.609 272.479 272.333 272.175 272.065 272.018 272.043 272.153 272.307 272.465 272.606 272.709 272.726 272.687 272.599 272.464 272.339 272.249 272.202 272.201 272.244 272.303 272.354 272.357 272.283 272.141 271.997 271.944 272.035 272.185 272.331 272.43 272.424 272.297 272.104 271.798 271.536 271.341 271.259 271.43 271.649 271.786 271.874 271.941 271.993 272.04 272.093 272.19 272.323 272.469 272.628 272.802 272.944 273.059 273.14 273.172 273.141 273.06 272.933 272.729 272.459 272.168 271.915 271.77 271.801 271.903 272.031 272.228 272.441 272.643 272.805 272.923 272.989 273.039 273.084 273.132 273.172 273.224 273.3 273.415 273.54 273.66 273.778 273.881 273.945 273.999 274.062 274.13 274.203 274.271 274.309 274.31 274.274 274.212 274.13 274.032 273.944 273.864 273.778 273.656 273.522 273.381 273.243 273.129 273.071 273.039 273.011 272.957 272.895 272.848 272.824 272.819 272.831 272.847 272.858 272.891 272.973 273.094 273.239 273.404 273.516 273.576 273.601 273.608 273.632 273.681 273.747 273.816 273.858 273.886 273.916 273.971 274.058 274.154 274.249 274.329 274.36 274.371 274.381 274.41 274.445 274.468 274.471 274.438 274.398 274.376 274.368 274.376 274.389 274.391 274.378 274.352 274.329 274.318 274.311 274.294 274.251 274.187 274.107 274.028 273.982 273.958 273.939 273.911 273.866 273.814 273.762 273.715 273.677 273.644 273.598 273.523 273.404 273.236 273.016 272.724 272.429 272.19 271.993 271.832 271.796 271.48 270.841 270.762 270.951 271.135 271.255 271.365 271.526 271.765 272.089 272.453 272.682 272.812 272.873 272.884 272.845 272.796 272.758 272.747 272.797 272.848 272.897 272.929 272.914 272.864 272.764 272.569 272.349 272.172 272.038 271.93 271.868 271.807 271.721 271.715 271.796 271.892 271.959 271.953 271.952 271.968 272.005 272.318 272.326 272.329 272.336 272.348 272.341 272.327 272.308 272.284 272.254 272.209 272.153 272.085 272.023 271.97 271.924 271.893 271.905 271.952 272.003 272.049 272.074 272.088 272.098 272.118 272.16 272.228 272.317 272.417 272.495 272.56 272.606 272.624 272.607 272.58 272.55 272.532 272.526 272.528 272.539 272.566 272.6 272.642 272.694 272.744 272.766 272.761 272.725 272.638 272.534 272.444 272.397 272.44 272.513 272.582 272.619 272.603 272.523 272.402 272.25 272.105 272.068 272.12 272.212 272.305 272.374 272.401 272.385 272.328 272.288 272.275 272.285 272.327 272.358 272.384 272.403 272.414 272.453 272.512 272.592 272.71 272.819 272.895 272.948 272.984 273.015 273.054 273.104 273.155 273.205 273.252 273.294 273.333 273.348 273.323 273.25 273.107 272.977 272.89 272.838 272.817 272.833 272.865 272.89 272.926 272.998 273.093 273.208 273.346 273.446 273.527 273.6 273.694 273.805 273.927 274.056 274.194 274.323 274.438 274.548 274.673 274.784 274.873 274.939 274.986 275.009 275.013 275.002 274.974 274.926 274.872 274.807 274.699 274.578 274.458 274.336 274.221 274.147 274.097 274.052 273.983 273.9 273.824 273.769 273.725 273.696 273.668 273.647 273.66 273.72 273.829 273.977 274.173 274.33 274.425 274.473 274.496 274.524 274.567 274.628 274.694 274.725 274.732 274.729 274.741 274.789 274.878 274.984 275.092 275.159 275.203 275.238 275.279 275.314 275.333 275.338 275.329 275.327 275.337 275.359 275.394 275.423 275.434 275.419 275.384 275.347 275.318 275.292 275.26 275.223 275.183 275.142 275.103 275.077 275.05 275.013 274.957 274.894 274.836 274.789 274.755 274.726 274.686 274.625 274.532 274.418 274.273 274.086 273.827 273.568 273.332 273.139 272.989 272.901 272.852 272.856 272.63 272.096 271.984 271.956 272.07 272.384 272.681 272.926 273.117 273.2 273.211 273.187 273.109 272.984 272.827 272.664 272.571 272.575 272.64 272.75 272.911 273.023 273.076 273.085 273.022 272.878 272.718 272.574 272.458 272.393 272.347 272.304 272.313 272.369 272.412 272.436 272.405 272.365 272.336 272.313 272.709 272.647 272.597 272.549 272.535 272.534 272.529 272.515 272.497 272.473 272.43 272.366 272.292 272.227 272.161 272.094 272.034 272.011 272.029 272.075 272.136 272.182 272.205 272.207 272.201 272.216 272.259 272.33 272.436 272.541 272.624 272.69 272.73 272.734 272.731 272.739 272.762 272.786 272.804 272.805 272.795 272.788 272.795 272.827 272.887 272.932 272.934 272.881 272.756 272.607 272.476 272.398 272.439 272.556 272.661 272.729 272.745 272.695 272.599 272.476 272.337 272.267 272.284 272.367 272.474 272.548 272.589 272.6 272.584 272.574 272.558 272.531 272.51 272.521 272.557 272.617 272.705 272.791 272.863 272.94 273.025 273.085 273.113 273.113 273.083 273.062 273.065 273.09 273.136 273.203 273.291 273.407 273.564 273.712 273.821 273.892 273.913 273.876 273.814 273.73 273.613 273.506 273.427 273.385 273.398 273.476 273.591 273.745 273.922 274.054 274.157 274.24 274.333 274.423 274.509 274.598 274.699 274.804 274.914 275.023 275.136 275.227 275.302 275.368 275.435 275.487 275.53 275.562 275.571 275.549 275.515 275.477 275.426 275.366 275.305 275.238 275.163 275.104 275.057 275.017 274.973 274.917 274.843 274.759 274.651 274.546 274.447 274.362 274.302 274.303 274.368 274.503 274.736 274.947 275.1 275.211 275.292 275.358 275.428 275.506 275.596 275.651 275.668 275.661 275.65 275.663 275.708 275.781 275.87 275.938 275.992 276.039 276.082 276.125 276.162 276.19 276.213 276.236 276.262 276.291 276.318 276.322 276.314 276.289 276.249 276.213 276.181 276.153 276.127 276.116 276.113 276.12 276.134 276.138 276.126 276.097 276.046 275.997 275.96 275.932 275.908 275.879 275.832 275.766 275.673 275.567 275.424 275.222 274.929 274.635 274.374 274.141 273.943 273.817 273.73 273.657 273.587 273.516 273.426 273.346 273.322 273.374 273.465 273.584 273.72 273.792 273.789 273.727 273.612 273.472 273.295 273.079 272.845 272.719 272.677 272.672 272.747 272.864 272.984 273.09 273.148 273.155 273.139 273.113 273.075 273.036 272.987 272.951 272.95 272.966 272.972 272.968 272.952 272.914 272.855 272.785 273.339 273.229 273.136 273.072 273.036 273.022 272.988 272.935 272.871 272.814 272.758 272.691 272.593 272.491 272.398 272.32 272.278 272.282 272.318 272.377 272.448 272.492 272.499 272.475 272.431 272.413 272.428 272.475 272.56 272.649 272.727 272.794 272.851 272.906 272.961 273.02 273.085 273.131 273.15 273.138 273.105 273.08 273.076 273.096 273.143 273.174 273.169 273.117 273.0 272.845 272.682 272.527 272.473 272.55 272.634 272.694 272.731 272.734 272.705 272.658 272.607 272.589 272.621 272.698 272.783 272.828 272.85 272.869 272.902 272.93 272.93 272.903 272.87 272.861 272.886 272.947 273.023 273.075 273.11 273.13 273.147 273.171 273.193 273.217 273.249 273.284 273.321 273.361 273.406 273.463 273.54 273.646 273.817 273.983 274.115 274.214 274.289 274.348 274.402 274.444 274.457 274.411 274.33 274.236 274.158 274.164 274.243 274.369 274.52 274.645 274.761 274.877 275.004 275.104 275.192 275.276 275.384 275.515 275.651 275.778 275.891 275.968 276.017 276.038 276.047 276.056 276.077 276.107 276.138 276.146 276.131 276.099 276.053 276.006 275.969 275.937 275.904 275.874 275.859 275.86 275.881 275.894 275.881 275.834 275.73 275.589 275.433 275.269 275.092 274.971 274.922 274.972 275.167 275.405 275.632 275.846 276.045 276.179 276.274 276.361 276.462 276.544 276.593 276.62 276.639 276.658 276.682 276.719 276.776 276.829 276.875 276.919 276.969 277.025 277.079 277.126 277.176 277.21 277.239 277.255 277.257 277.249 277.239 277.23 277.211 277.174 277.133 277.093 277.059 277.045 277.04 277.041 277.037 277.029 277.018 277.009 276.994 276.977 276.96 276.939 276.907 276.865 276.817 276.771 276.729 276.689 276.617 276.485 276.229 275.906 275.601 275.338 275.11 274.947 274.816 274.698 274.568 274.462 274.372 274.296 274.225 274.168 274.129 274.114 274.137 274.173 274.194 274.201 274.195 274.175 274.147 274.08 273.933 273.754 273.59 273.435 273.284 273.204 273.147 273.118 273.153 273.228 273.324 273.427 273.505 273.548 273.566 273.558 273.54 273.527 273.519 273.514 273.53 273.537 273.515 273.458 273.785 273.688 273.607 273.548 273.511 273.475 273.417 273.338 273.257 273.191 273.148 273.111 273.052 272.977 272.899 272.838 272.809 272.81 272.84 272.897 272.978 273.033 273.042 273.015 272.95 272.896 272.862 272.846 272.841 272.852 272.873 272.907 272.971 273.065 273.171 273.279 273.377 273.435 273.456 273.449 273.417 273.392 273.388 273.406 273.444 273.478 273.486 273.461 273.386 273.28 273.155 272.998 272.831 272.743 272.713 272.718 272.742 272.778 272.817 272.851 272.893 272.946 273.014 273.07 273.074 273.023 272.988 272.986 273.035 273.098 273.131 273.126 273.095 273.074 273.076 273.102 273.138 273.171 273.212 273.26 273.341 273.461 273.585 273.707 273.835 273.936 274.01 274.063 274.106 274.156 274.228 274.328 274.471 274.593 274.683 274.754 274.836 274.941 275.05 275.143 275.189 275.134 275.027 274.907 274.803 274.792 274.845 274.918 275.016 275.127 275.25 275.382 275.519 275.64 275.763 275.919 276.166 276.449 276.7 276.901 277.041 277.086 277.076 277.027 276.945 276.874 276.834 276.827 276.852 276.876 276.873 276.837 276.752 276.658 276.585 276.535 276.51 276.508 276.528 276.572 276.646 276.723 276.777 276.789 276.73 276.607 276.45 276.264 276.027 275.813 275.649 275.564 275.632 275.824 276.066 276.333 276.594 276.76 276.866 276.946 277.045 277.174 277.295 277.402 277.499 277.57 277.622 277.657 277.68 277.692 277.703 277.714 277.74 277.77 277.798 277.824 277.85 277.881 277.917 277.957 278.001 278.043 278.083 278.113 278.112 278.069 278.008 277.948 277.905 277.895 277.89 277.882 277.857 277.828 277.812 277.811 277.819 277.812 277.789 277.758 277.718 277.684 277.653 277.626 277.6 277.58 277.551 277.499 277.389 277.207 276.982 276.743 276.5 276.307 276.145 275.997 275.839 275.694 275.552 275.404 275.236 275.091 274.964 274.84 274.716 274.644 274.591 274.549 274.531 274.542 274.56 274.561 274.524 274.457 274.374 274.296 274.198 274.08 273.95 273.813 273.696 273.644 273.635 273.671 273.74 273.823 273.885 273.919 273.935 273.931 273.905 273.878 273.893 273.921 273.924 273.885 273.924 273.867 273.82 273.78 273.754 273.709 273.657 273.599 273.554 273.553 273.575 273.604 273.617 273.601 273.579 273.563 273.557 273.558 273.565 273.588 273.647 273.687 273.688 273.659 273.593 273.515 273.438 273.362 273.279 273.222 273.212 273.248 273.347 273.47 273.587 273.688 273.759 273.788 273.793 273.79 273.785 273.786 273.795 273.815 273.843 273.857 273.862 273.851 273.811 273.74 273.65 273.535 273.379 273.225 273.092 273.006 272.983 273.021 273.088 273.176 273.309 273.46 273.601 273.697 273.694 273.584 273.459 273.372 273.345 273.354 273.357 273.334 273.283 273.254 273.252 273.269 273.312 273.372 273.477 273.629 273.837 274.07 274.298 274.516 274.723 274.87 274.969 275.044 275.112 275.179 275.256 275.345 275.444 275.508 275.553 275.597 275.677 275.791 275.896 275.96 275.937 275.811 275.652 275.516 275.437 275.453 275.513 275.596 275.706 275.836 275.988 276.155 276.345 276.528 276.733 277.01 277.423 277.826 278.144 278.367 278.487 278.482 278.409 278.284 278.096 277.911 277.768 277.681 277.663 277.692 277.701 277.67 277.581 277.472 277.377 277.306 277.261 277.252 277.273 277.327 277.414 277.505 277.575 277.609 277.582 277.484 277.347 277.184 276.982 276.787 276.616 276.491 276.461 276.569 276.772 277.008 277.223 277.345 277.421 277.492 277.626 277.817 278.013 278.194 278.36 278.473 278.548 278.594 278.605 278.587 278.554 278.513 278.477 278.45 278.427 278.407 278.411 278.466 278.549 278.64 278.728 278.795 278.842 278.869 278.862 278.815 278.758 278.708 278.688 278.699 278.702 278.689 278.648 278.601 278.571 278.558 278.552 278.53 278.49 278.445 278.414 278.406 278.396 278.373 278.322 278.275 278.255 278.261 278.274 278.235 278.14 277.998 277.803 277.623 277.472 277.335 277.187 277.033 276.867 276.687 276.48 276.297 276.126 275.936 275.694 275.463 275.258 275.076 274.93 274.872 274.854 274.85 274.831 274.799 274.768 274.765 274.774 274.75 274.702 274.639 274.563 274.497 274.442 274.401 274.393 274.408 274.429 274.437 274.4 274.318 274.213 274.108 274.031 274.017 274.012 273.983 274.009 273.95 273.901 273.873 273.875 273.893 273.916 273.931 273.937 273.954 273.98 274.001 274.018 274.031 274.056 274.095 274.16 274.227 274.282 274.327 274.378 274.416 274.422 274.384 274.289 274.182 274.081 273.982 273.88 273.823 273.815 273.858 273.958 274.061 274.14 274.196 274.235 274.256 274.268 274.279 274.292 274.308 274.327 274.342 274.34 274.312 274.279 274.246 274.196 274.127 274.043 273.953 273.855 273.759 273.641 273.526 273.451 273.459 273.527 273.639 273.81 273.999 274.175 274.31 274.375 274.349 274.288 274.221 274.15 274.079 273.99 273.9 273.832 273.82 273.842 273.88 273.933 273.994 274.078 274.206 274.396 274.619 274.864 275.123 275.412 275.651 275.83 275.969 276.097 276.201 276.289 276.368 276.432 276.453 276.46 276.483 276.552 276.637 276.699 276.707 276.618 276.454 276.304 276.227 276.272 276.438 276.645 276.838 277.009 277.15 277.307 277.506 277.772 278.032 278.307 278.635 279.059 279.409 279.649 279.789 279.839 279.806 279.721 279.579 279.335 279.048 278.79 278.602 278.513 278.529 278.559 278.559 278.505 278.41 278.311 278.222 278.152 278.124 278.135 278.185 278.288 278.401 278.478 278.502 278.457 278.35 278.227 278.098 277.96 277.844 277.752 277.695 277.701 277.787 277.921 278.071 278.193 278.247 278.282 278.348 278.508 278.722 278.935 279.129 279.293 279.377 279.41 279.412 279.397 279.36 279.31 279.256 279.202 279.168 279.148 279.148 279.191 279.288 279.397 279.496 279.567 279.584 279.576 279.559 279.533 279.51 279.487 279.464 279.448 279.441 279.425 279.396 279.345 279.293 279.251 279.221 279.19 279.146 279.094 279.046 279.015 278.997 278.967 278.905 278.782 278.645 278.542 278.577 278.816 279.124 279.174 279.055 278.861 278.685 278.539 278.399 278.234 278.058 277.888 277.729 277.559 277.401 277.225 276.992 276.64 276.264 275.919 275.636 275.451 275.388 275.345 275.297 275.247 275.221 275.221 275.24 275.258 275.249 275.225 275.201 275.18 275.155 275.126 275.091 275.071 275.074 275.082 275.075 275.011 274.869 274.694 274.514 274.343 274.23 274.154 274.087 274.488 274.411 274.354 274.312 274.294 274.327 274.372 274.415 274.44 274.436 274.422 274.404 274.393 274.413 274.456 274.52 274.61 274.71 274.803 274.886 274.965 275.021 275.051 275.05 275.004 274.931 274.852 274.765 274.672 274.617 274.607 274.632 274.7 274.758 274.788 274.801 274.813 274.841 274.867 274.884 274.891 274.897 274.905 274.9 274.852 274.767 274.674 274.586 274.487 274.39 274.298 274.224 274.18 274.14 274.069 273.99 273.944 273.981 274.077 274.216 274.413 274.602 274.765 274.899 275.005 275.065 275.102 275.126 275.132 275.103 275.056 275.004 274.971 274.981 275.011 275.039 275.049 275.037 275.022 275.033 275.101 275.259 275.496 275.793 276.159 276.482 276.732 276.923 277.083 277.196 277.286 277.359 277.404 277.403 277.384 277.371 277.38 277.402 277.406 277.376 277.292 277.183 277.112 277.148 277.37 277.709 278.052 278.344 278.556 278.679 278.807 278.992 279.265 279.548 279.825 280.098 280.362 280.537 280.648 280.72 280.767 280.774 280.727 280.613 280.375 280.059 279.753 279.512 279.382 279.386 279.427 279.449 279.421 279.333 279.21 279.075 278.95 278.888 278.888 278.958 279.126 279.311 279.436 279.486 279.443 279.334 279.217 279.108 279.014 278.952 278.916 278.912 278.96 279.051 279.155 279.251 279.314 279.336 279.366 279.43 279.56 279.732 279.906 280.065 280.192 280.227 280.201 280.144 280.075 280.023 279.985 279.955 279.924 279.917 279.939 279.988 280.074 280.177 280.266 280.328 280.349 280.321 280.277 280.233 280.194 280.175 280.156 280.122 280.064 280.016 279.984 279.96 279.934 279.899 279.856 279.809 279.753 279.693 279.632 279.577 279.523 279.462 279.373 279.227 278.921 278.682 278.799 279.109 279.825 280.176 280.162 280.049 279.864 279.714 279.571 279.414 279.201 278.965 278.749 278.56 278.369 278.165 277.917 277.598 277.145 276.722 276.4 276.178 276.052 276.007 275.949 275.869 275.8 275.77 275.764 275.769 275.768 275.75 275.73 275.722 275.736 275.752 275.754 275.741 275.717 275.7 275.672 275.622 275.529 275.393 275.237 275.079 274.924 274.796 274.692 274.592 275.321 275.277 275.265 275.267 275.272 275.295 275.313 275.306 275.255 275.19 275.136 275.099 275.089 275.119 275.17 275.226 275.293 275.36 275.42 275.471 275.516 275.551 275.581 275.606 275.617 275.602 275.567 275.518 275.467 275.445 275.452 275.48 275.531 275.562 275.561 275.542 275.524 275.528 275.541 275.549 275.54 275.523 275.502 275.462 275.36 275.202 275.029 274.862 274.703 274.589 274.507 274.463 274.49 274.54 274.549 274.548 274.596 274.738 274.954 275.22 275.514 275.725 275.873 275.981 276.07 276.145 276.225 276.306 276.384 276.417 276.426 276.428 276.44 276.455 276.458 276.444 276.403 276.336 276.249 276.162 276.123 276.216 276.437 276.761 277.176 277.533 277.811 278.023 278.177 278.27 278.352 278.433 278.496 278.499 278.465 278.417 278.352 278.283 278.231 278.208 278.213 278.226 278.257 278.361 278.651 279.075 279.482 279.81 280.031 280.137 280.237 280.389 280.635 280.893 281.105 281.262 281.364 281.415 281.452 281.484 281.536 281.543 281.49 281.391 281.193 280.928 280.666 280.452 280.321 280.299 280.317 280.345 280.347 280.291 280.185 280.046 279.887 279.777 279.734 279.769 279.92 280.122 280.311 280.453 280.514 280.481 280.416 280.355 280.309 280.287 280.276 280.278 280.306 280.353 280.405 280.448 280.481 280.515 280.555 280.605 280.683 280.784 280.899 281.013 281.098 281.096 281.035 280.945 280.845 280.783 280.737 280.7 280.671 280.681 280.736 280.824 280.926 280.996 281.026 281.028 281.009 280.984 280.958 280.926 280.882 280.835 280.787 280.729 280.662 280.62 280.6 280.588 280.567 280.519 280.452 280.374 280.285 280.219 280.168 280.119 280.038 279.889 279.665 279.3 278.954 278.947 279.318 280.349 280.797 281.066 281.11 281.001 280.83 280.785 280.741 280.593 280.292 279.972 279.681 279.397 279.068 278.719 278.357 277.972 277.541 277.218 276.998 276.838 276.736 276.682 276.615 276.529 276.453 276.417 276.409 276.413 276.412 276.396 276.374 276.36 276.362 276.382 276.404 276.415 276.409 276.388 276.345 276.26 276.106 275.936 275.783 275.654 275.541 275.464 275.414 275.372 276.315 276.339 276.367 276.39 276.403 276.406 276.395 276.369 276.315 276.241 276.162 276.092 276.051 276.056 276.078 276.101 276.125 276.145 276.16 276.17 276.173 276.17 276.168 276.164 276.158 276.148 276.135 276.115 276.095 276.11 276.151 276.202 276.26 276.29 276.284 276.252 276.209 276.184 276.178 276.181 276.18 276.159 276.117 276.039 275.884 275.662 275.426 275.22 275.06 274.978 274.942 274.962 275.098 275.32 275.544 275.732 275.957 276.249 276.576 276.893 277.171 277.338 277.451 277.543 277.634 277.702 277.762 277.812 277.845 277.848 277.841 277.833 277.836 277.833 277.807 277.757 277.677 277.594 277.509 277.429 277.385 277.46 277.657 277.955 278.344 278.703 278.988 279.19 279.31 279.366 279.433 279.523 279.598 279.584 279.522 279.445 279.343 279.261 279.237 279.279 279.398 279.533 279.662 279.84 280.163 280.543 280.874 281.123 281.279 281.355 281.438 281.565 281.756 281.91 282.007 282.073 282.133 282.173 282.189 282.188 282.2 282.197 282.161 282.099 281.972 281.778 281.577 281.405 281.277 281.227 281.225 281.254 281.29 281.286 281.228 281.127 280.988 280.858 280.754 280.694 280.729 280.884 281.098 281.328 281.534 281.637 281.676 281.689 281.683 281.668 281.649 281.624 281.588 281.545 281.508 281.482 281.49 281.55 281.624 281.694 281.758 281.807 281.849 281.882 281.892 281.861 281.802 281.732 281.655 281.598 281.541 281.48 281.429 281.429 281.484 281.576 281.684 281.737 281.741 281.719 281.692 281.673 281.648 281.607 281.544 281.477 281.41 281.347 281.293 281.258 281.224 281.181 281.113 281.033 280.952 280.872 280.795 280.756 280.731 280.693 280.572 280.281 279.849 279.259 278.735 278.884 279.623 280.955 281.621 282.024 282.061 281.886 281.659 281.603 281.6 281.396 281.05 280.662 280.301 279.926 279.475 279.062 278.718 278.423 278.155 277.954 277.79 277.662 277.571 277.519 277.471 277.417 277.362 277.322 277.289 277.251 277.205 277.155 277.1 277.044 277.007 277.014 277.034 277.047 277.044 277.03 276.997 276.913 276.724 276.508 276.333 276.203 276.128 276.139 276.198 276.265 277.537 277.567 277.572 277.56 277.526 277.475 277.422 277.384 277.358 277.325 277.269 277.194 277.111 277.059 277.027 277.005 276.988 276.974 276.96 276.949 276.942 276.94 276.93 276.902 276.857 276.824 276.814 276.818 276.828 276.844 276.871 276.902 276.937 276.957 276.955 276.936 276.902 276.872 276.855 276.844 276.833 276.806 276.751 276.652 276.474 276.243 276.009 275.826 275.739 275.747 275.797 275.914 276.167 276.514 276.87 277.202 277.547 277.882 278.205 278.494 278.729 278.868 278.969 279.062 279.153 279.211 279.239 279.243 279.217 279.16 279.099 279.045 279.018 279.01 278.983 278.927 278.853 278.799 278.772 278.772 278.809 278.913 279.096 279.351 279.68 279.991 280.243 280.414 280.495 280.517 280.559 280.621 280.645 280.582 280.496 280.415 280.342 280.309 280.339 280.45 280.668 280.909 281.135 281.388 281.705 281.991 282.193 282.3 282.335 282.361 282.412 282.494 282.584 282.612 282.6 282.6 282.649 282.741 282.831 282.896 282.955 283.035 283.101 283.111 283.038 282.879 282.689 282.503 282.345 282.278 282.269 282.299 282.339 282.329 282.272 282.181 282.056 281.937 281.832 281.75 281.733 281.842 282.042 282.293 282.556 282.727 282.821 282.865 282.863 282.825 282.774 282.713 282.626 282.53 282.447 282.395 282.409 282.493 282.588 282.669 282.721 282.725 282.705 282.667 282.613 282.574 282.551 282.533 282.501 282.454 282.401 282.35 282.315 282.312 282.335 282.375 282.426 282.461 282.464 282.437 282.393 282.342 282.283 282.214 282.148 282.091 282.028 281.957 281.879 281.814 281.746 281.664 281.565 281.492 281.438 281.392 281.344 281.325 281.322 281.294 281.125 280.683 280.031 279.167 278.366 278.479 279.46 281.079 282.408 282.975 283.079 282.89 282.564 282.352 282.159 281.897 281.47 281.021 280.61 280.21 279.807 279.548 279.398 279.293 279.163 279.006 278.855 278.734 278.663 278.63 278.601 278.572 278.532 278.467 278.375 278.265 278.147 278.049 277.952 277.857 277.782 277.77 277.775 277.771 277.735 277.69 277.648 277.576 277.402 277.202 277.067 277.008 277.04 277.158 277.307 277.444 278.895 278.878 278.831 278.772 278.7 278.61 278.527 278.483 278.489 278.488 278.447 278.372 278.272 278.192 278.128 278.073 278.021 277.976 277.933 277.893 277.862 277.851 277.829 277.783 277.729 277.705 277.701 277.698 277.683 277.667 277.663 277.668 277.682 277.698 277.71 277.719 277.713 277.683 277.639 277.594 277.572 277.562 277.521 277.438 277.298 277.089 276.884 276.75 276.734 276.815 276.935 277.093 277.312 277.631 278.004 278.385 278.77 279.128 279.489 279.828 280.131 280.313 280.425 280.502 280.551 280.559 280.536 280.489 280.413 280.325 280.246 280.19 280.179 280.205 280.222 280.221 280.213 280.228 280.269 280.325 280.41 280.545 280.721 280.926 281.162 281.366 281.523 281.622 281.654 281.659 281.68 281.696 281.65 281.546 281.46 281.406 281.38 281.384 281.457 281.633 281.948 282.259 282.543 282.812 283.092 283.267 283.328 283.32 283.286 283.273 283.277 283.29 283.295 283.28 283.269 283.286 283.371 283.554 283.809 284.071 284.18 284.276 284.44 284.546 284.505 284.345 284.156 283.968 283.824 283.78 283.785 283.813 283.83 283.787 283.69 283.559 283.4 283.273 283.181 283.121 283.117 283.211 283.369 283.553 283.735 283.857 283.926 283.951 283.913 283.829 283.734 283.642 283.541 283.456 283.409 283.405 283.457 283.533 283.592 283.63 283.644 283.628 283.595 283.55 283.503 283.485 283.493 283.513 283.521 283.49 283.453 283.428 283.426 283.421 283.391 283.339 283.281 283.246 283.212 283.16 283.08 282.989 282.904 282.834 282.787 282.752 282.691 282.601 282.485 282.399 282.332 282.267 282.193 282.137 282.087 282.031 281.964 281.947 281.97 281.966 281.77 281.226 280.454 279.403 278.387 278.378 279.53 281.389 283.26 284.356 284.336 284.063 283.567 283.161 282.775 282.372 281.864 281.418 281.062 280.79 280.585 280.514 280.53 280.572 280.561 280.439 280.302 280.206 280.163 280.122 280.058 279.974 279.867 279.741 279.587 279.425 279.27 279.158 279.051 278.948 278.867 278.84 278.814 278.76 278.654 278.543 278.452 278.35 278.193 278.068 278.041 278.107 278.282 278.497 278.686 278.828 280.113 280.039 279.964 279.899 279.837 279.756 279.673 279.614 279.577 279.536 279.473 279.391 279.3 279.237 279.187 279.137 279.082 279.033 278.982 278.933 278.886 278.853 278.799 278.714 278.606 278.542 278.507 278.478 278.44 278.416 278.417 278.433 278.447 278.444 278.445 278.459 278.475 278.444 278.387 278.352 278.402 278.504 278.566 278.554 278.428 278.229 278.021 277.876 277.839 277.892 277.982 278.115 278.39 278.812 279.253 279.649 279.988 280.259 280.553 280.88 281.236 281.491 281.638 281.703 281.699 281.642 281.562 281.473 281.386 281.344 281.33 281.335 281.373 281.44 281.502 281.549 281.587 281.63 281.677 281.727 281.81 281.946 282.107 282.259 282.39 282.473 282.527 282.549 282.54 282.538 282.542 282.522 282.443 282.359 282.331 282.346 282.357 282.375 282.497 282.75 283.104 283.396 283.659 283.924 284.194 284.331 284.339 284.265 284.184 284.164 284.145 284.116 284.121 284.182 284.25 284.323 284.443 284.675 285.018 285.325 285.54 285.692 285.773 285.809 285.826 285.754 285.639 285.526 285.465 285.473 285.504 285.535 285.547 285.491 285.365 285.193 284.994 284.843 284.731 284.649 284.618 284.662 284.734 284.801 284.841 284.864 284.874 284.856 284.775 284.653 284.544 284.459 284.391 284.36 284.364 284.406 284.477 284.534 284.569 284.582 284.571 284.554 284.542 284.533 284.504 284.469 284.447 284.444 284.455 284.444 284.424 284.412 284.414 284.386 284.316 284.223 284.119 284.038 283.966 283.881 283.772 283.685 283.618 283.566 283.523 283.477 283.405 283.309 283.199 283.122 283.069 283.023 282.962 282.89 282.812 282.723 282.636 282.631 282.688 282.733 282.553 282.008 281.286 280.296 279.178 279.103 280.22 282.137 284.408 285.528 285.453 285.139 284.411 283.858 283.309 282.798 282.289 281.94 281.745 281.657 281.617 281.636 281.712 281.809 281.852 281.787 281.704 281.651 281.619 281.544 281.417 281.256 281.07 280.894 280.72 280.553 280.407 280.302 280.205 280.116 280.053 280.027 279.978 279.883 279.709 279.52 279.351 279.2 279.055 278.995 279.04 279.201 279.502 279.803 280.012 280.118 281.36 281.232 281.143 281.088 281.056 281.014 280.943 280.849 280.724 280.605 280.497 280.408 280.336 280.3 280.28 280.254 280.218 280.181 280.139 280.092 280.043 280.0 279.93 279.807 279.615 279.454 279.361 279.323 279.327 279.358 279.399 279.442 279.457 279.428 279.414 279.427 279.448 279.43 279.405 279.449 279.629 279.85 280.008 280.077 280.024 279.853 279.662 279.511 279.435 279.454 279.547 279.739 280.153 280.659 281.09 281.405 281.606 281.722 281.86 282.05 282.314 282.552 282.704 282.754 282.714 282.632 282.539 282.451 282.409 282.466 282.556 282.641 282.711 282.782 282.846 282.886 282.903 282.928 282.966 283.014 283.091 283.209 283.332 283.422 283.451 283.44 283.428 283.413 283.39 283.375 283.36 283.33 283.267 283.254 283.316 283.404 283.428 283.456 283.615 283.869 284.155 284.351 284.588 284.945 285.423 285.723 285.7 285.452 285.211 285.172 285.179 285.184 285.222 285.316 285.423 285.54 285.686 285.878 286.117 286.187 286.48 286.906 287.185 287.255 287.226 287.161 287.113 287.092 287.109 287.132 287.154 287.206 287.244 287.171 287.0 286.774 286.534 286.36 286.22 286.1 285.999 285.956 285.929 285.887 285.809 285.751 285.706 285.646 285.531 285.411 285.336 285.304 285.295 285.304 285.335 285.381 285.435 285.485 285.534 285.57 285.566 285.54 285.536 285.544 285.516 285.448 285.395 285.37 285.364 285.349 285.32 285.28 285.232 285.167 285.093 285.026 284.973 284.921 284.851 284.759 284.649 284.575 284.523 284.469 284.396 284.318 284.238 284.154 284.069 283.994 283.924 283.855 283.779 283.71 283.649 283.583 283.51 283.508 283.581 283.666 283.556 283.063 282.396 281.723 280.411 280.079 281.069 283.173 285.595 286.37 286.438 286.035 285.221 284.514 283.883 283.336 282.854 282.598 282.527 282.576 282.678 282.76 282.836 282.897 282.94 282.937 282.911 282.884 282.848 282.755 282.602 282.411 282.188 281.997 281.843 281.719 281.611 281.519 281.436 281.383 281.388 281.421 281.394 281.265 280.996 280.728 280.532 280.398 280.334 280.365 280.475 280.671 280.989 281.28 281.443 281.467 282.661 282.529 282.461 282.412 282.35 282.273 282.176 282.045 281.872 281.742 281.665 281.626 281.606 281.598 281.589 281.57 281.538 281.501 281.439 281.353 281.251 281.175 281.09 280.964 280.756 280.565 280.446 280.413 280.483 280.596 280.711 280.835 280.962 281.061 281.152 281.217 281.213 281.15 281.116 281.158 281.324 281.544 281.731 281.848 281.879 281.854 281.831 281.831 281.865 281.942 282.075 282.286 282.609 282.922 283.144 283.273 283.335 283.371 283.412 283.469 283.575 283.706 283.788 283.794 283.732 283.669 283.614 283.575 283.599 283.717 283.845 283.935 283.978 284.012 284.033 284.024 283.993 284.006 284.059 284.12 284.183 284.27 284.358 284.406 284.377 284.336 284.323 284.315 284.277 284.234 284.22 284.222 284.225 284.276 284.37 284.451 284.439 284.483 284.681 284.919 285.093 285.147 285.437 286.027 286.749 287.317 287.39 286.946 286.455 286.348 286.365 286.392 286.415 286.483 286.612 286.786 286.972 287.047 287.061 287.098 287.188 287.426 287.913 288.479 288.74 288.744 288.698 288.694 288.687 288.623 288.597 288.615 288.625 288.536 288.347 288.097 287.814 287.595 287.412 287.247 287.08 286.959 286.855 286.744 286.606 286.523 286.471 286.404 286.3 286.238 286.234 286.258 286.272 286.286 286.315 286.344 286.361 286.385 286.437 286.493 286.502 286.478 286.476 286.497 286.494 286.447 286.397 286.358 286.314 286.25 286.178 286.106 286.034 285.972 285.944 285.947 285.961 285.932 285.871 285.782 285.674 285.572 285.481 285.405 285.324 285.252 285.186 285.119 285.036 284.954 284.88 284.817 284.749 284.695 284.661 284.63 284.549 284.477 284.511 284.618 284.617 284.209 283.534 282.761 281.835 280.882 282.105 283.963 286.482 288.076 287.565 287.186 286.392 285.47 284.788 284.237 283.812 283.657 283.683 283.832 284.038 284.14 284.162 284.153 284.138 284.113 284.071 284.02 283.949 283.847 283.707 283.54 283.347 283.199 283.109 283.061 283.019 282.966 282.926 282.934 283.026 283.095 283.036 282.816 282.436 282.129 281.996 282.031 282.215 282.389 282.509 282.623 282.779 282.915 282.946 282.85 283.886 283.816 283.787 283.733 283.614 283.494 283.378 283.246 283.092 283.013 283.009 283.045 283.082 283.101 283.12 283.139 283.146 283.106 282.995 282.819 282.584 282.416 282.306 282.208 282.081 281.954 281.836 281.746 281.746 281.844 282.024 282.285 282.693 283.116 283.45 283.665 283.712 283.627 283.542 283.511 283.55 283.652 283.733 283.783 283.823 283.889 283.994 284.131 284.301 284.46 284.606 284.749 284.887 284.96 284.968 284.938 284.913 284.911 284.897 284.868 284.851 284.872 284.873 284.84 284.794 284.791 284.795 284.801 284.834 284.904 284.957 284.967 284.934 284.912 284.886 284.843 284.798 284.822 284.883 284.935 284.965 285.022 285.096 285.143 285.13 285.119 285.141 285.156 285.115 285.072 285.091 285.149 285.199 285.236 285.275 285.284 285.243 285.343 285.602 285.905 286.078 286.111 286.45 287.168 287.919 288.667 288.593 288.268 287.784 287.567 287.48 287.447 287.432 287.526 287.694 287.899 288.089 288.105 287.989 287.831 287.834 288.202 288.447 288.96 289.831 290.07 290.143 290.196 290.136 289.944 289.777 289.658 289.584 289.505 289.347 289.106 288.787 288.507 288.271 288.066 287.875 287.74 287.625 287.503 287.355 287.269 287.223 287.168 287.09 287.074 287.116 287.17 287.172 287.17 287.2 287.242 287.257 287.255 287.284 287.318 287.33 287.343 287.376 287.426 287.44 287.411 287.386 287.359 287.289 287.175 287.079 287.013 286.972 286.955 286.97 286.999 286.985 286.91 286.832 286.756 286.653 286.519 286.397 286.313 286.261 286.212 286.157 286.097 286.012 285.932 285.888 285.864 285.809 285.715 285.653 285.615 285.502 285.337 285.302 285.438 285.559 285.203 284.535 283.792 282.966 282.103 283.073 284.881 287.357 289.52 289.558 288.618 287.94 286.918 286.039 285.406 285.162 285.303 285.604 285.909 286.071 286.026 285.909 285.786 285.645 285.505 285.376 285.261 285.145 285.025 284.895 284.764 284.647 284.591 284.586 284.605 284.624 284.629 284.641 284.68 284.742 284.71 284.523 284.185 283.734 283.465 283.479 283.736 284.141 284.375 284.433 284.405 284.368 284.337 284.241 284.075 285.162 285.103 285.051 284.963 284.818 284.719 284.663 284.611 284.547 284.549 284.632 284.752 284.879 285.005 285.153 285.316 285.45 285.439 285.277 284.985 284.613 284.357 284.202 284.101 284.026 283.95 283.824 283.678 283.54 283.529 283.694 284.096 284.818 285.507 285.994 286.278 286.364 286.331 286.276 286.212 286.132 286.076 286.026 285.987 285.992 286.085 286.225 286.384 286.565 286.716 286.806 286.831 286.791 286.727 286.647 286.561 286.476 286.404 286.311 286.191 286.058 285.989 285.947 285.922 285.936 285.996 286.032 286.037 286.018 285.991 285.936 285.845 285.729 285.66 285.611 285.569 285.548 285.582 285.622 285.643 285.657 285.731 285.834 285.914 285.943 285.963 285.999 286.028 286.011 286.015 286.073 286.139 286.147 286.126 286.151 286.199 286.254 286.379 286.632 286.973 287.23 287.348 287.726 288.34 289.111 289.56 289.523 289.292 288.995 288.73 288.511 288.359 288.326 288.459 288.622 288.78 288.941 289.041 289.041 288.983 288.975 289.232 289.629 289.906 290.429 290.815 291.393 291.585 291.497 291.185 290.843 290.559 290.358 290.223 290.064 289.85 289.538 289.231 288.967 288.746 288.575 288.492 288.426 288.319 288.134 288.002 287.942 287.896 287.828 287.824 287.893 287.975 287.996 287.981 288.004 288.059 288.12 288.154 288.185 288.209 288.228 288.275 288.352 288.423 288.418 288.377 288.352 288.321 288.243 288.137 288.078 288.062 288.055 288.054 288.062 288.043 287.973 287.862 287.765 287.696 287.603 287.46 287.342 287.284 287.275 287.241 287.191 287.141 287.07 286.991 286.953 286.943 286.871 286.725 286.64 286.625 286.531 286.298 286.196 286.319 286.489 286.146 285.539 284.967 283.741 283.795 284.898 286.374 289.17 291.049 291.508 290.901 290.029 288.718 287.581 287.008 287.095 287.768 288.375 288.663 288.583 288.29 287.97 287.674 287.373 287.111 286.901 286.74 286.589 286.45 286.337 286.265 286.256 286.29 286.325 286.346 286.361 286.373 286.38 286.368 286.292 286.107 285.818 285.455 285.074 284.953 285.118 285.458 285.816 285.928 285.876 285.761 285.644 285.553 285.442 285.301 286.4 286.282 286.161 286.039 285.909 285.862 285.884 285.929 285.987 286.108 286.319 286.611 286.996 287.393 287.776 288.117 288.374 288.422 288.288 288.013 287.644 287.363 287.118 286.884 286.617 286.429 286.294 286.139 285.956 285.933 286.13 286.539 287.109 287.58 287.892 288.066 288.111 288.111 288.104 288.074 288.011 287.958 287.914 287.875 287.877 287.961 288.065 288.146 288.207 288.249 288.241 288.167 288.044 287.973 287.916 287.833 287.703 287.569 287.427 287.27 287.107 287.017 286.976 286.972 287.014 287.058 287.047 286.994 286.921 286.847 286.743 286.608 286.455 286.36 286.31 286.294 286.308 286.33 286.352 286.387 286.474 286.595 286.704 286.789 286.855 286.9 286.935 286.947 286.942 286.963 286.994 286.994 286.93 286.903 287.003 287.184 287.333 287.413 287.607 287.912 288.265 288.559 288.889 289.223 289.626 289.935 290.058 290.121 289.979 289.653 289.37 289.217 289.261 289.364 289.421 289.468 289.57 289.74 289.957 290.178 290.332 290.413 290.612 290.993 290.88 290.602 291.87 292.299 292.241 291.887 291.501 291.18 290.942 290.773 290.593 290.39 290.14 289.892 289.659 289.458 289.308 289.231 289.151 288.994 288.711 288.53 288.481 288.484 288.477 288.517 288.615 288.73 288.772 288.736 288.716 288.74 288.824 288.92 289.002 289.059 289.086 289.137 289.216 289.278 289.29 289.278 289.263 289.239 289.174 289.122 289.137 289.184 289.214 289.18 289.114 289.038 288.913 288.76 288.651 288.592 288.529 288.415 288.322 288.276 288.256 288.212 288.18 288.175 288.162 288.1 288.05 288.021 287.943 287.795 287.704 287.681 287.577 287.294 287.131 287.186 287.266 286.892 286.437 286.164 285.698 285.953 287.166 288.299 290.543 292.851 294.529 294.657 292.238 291.089 289.977 289.367 289.5 290.18 290.615 290.659 290.269 289.767 289.35 289.018 288.729 288.497 288.316 288.181 288.047 287.914 287.825 287.806 287.84 287.872 287.875 287.859 287.832 287.809 287.775 287.701 287.534 287.292 287.021 286.742 286.477 286.446 286.634 286.891 287.042 286.986 286.873 286.765 286.657 286.578 286.531 286.488 287.559 287.411 287.284 287.202 287.145 287.146 287.211 287.308 287.429 287.64 288.004 288.5 289.086 289.592 290.026 290.407 290.742 290.895 290.866 290.689 290.41 290.183 289.944 289.635 289.233 288.949 288.752 288.575 288.396 288.355 288.436 288.578 288.748 288.898 289.015 289.088 289.113 289.13 289.144 289.137 289.116 289.135 289.167 289.185 289.205 289.266 289.314 289.315 289.28 289.268 289.237 289.156 289.033 288.968 288.906 288.797 288.615 288.454 288.313 288.188 288.084 288.023 287.985 287.963 287.959 287.91 287.808 287.688 287.583 287.493 287.373 287.235 287.102 287.018 286.976 286.968 286.982 286.994 287.046 287.165 287.356 287.463 287.51 287.574 287.732 287.887 287.968 287.984 287.946 287.875 287.801 287.742 287.708 287.728 287.84 288.008 288.141 288.272 288.475 288.8 289.33 289.988 290.405 290.403 290.085 290.34 290.659 291.028 291.1 290.747 290.403 290.246 290.297 290.305 290.271 290.281 290.35 290.503 290.783 291.143 291.436 291.475 291.558 291.839 292.103 291.22 291.712 292.564 292.577 292.229 291.872 291.613 291.463 291.336 291.167 290.985 290.804 290.628 290.448 290.272 290.103 289.95 289.769 289.523 289.203 289.05 289.062 289.166 289.289 289.368 289.457 289.546 289.56 289.481 289.414 289.405 289.486 289.63 289.766 289.863 289.902 289.939 289.991 290.039 290.101 290.147 290.172 290.158 290.108 290.106 290.175 290.267 290.32 290.264 290.149 290.005 289.824 289.685 289.607 289.575 289.535 289.426 289.318 289.246 289.208 289.172 289.171 289.211 289.269 289.249 289.196 289.146 289.056 288.884 288.719 288.592 288.414 288.129 287.947 287.916 287.837 287.456 287.227 287.346 287.89 288.237 289.421 290.435 292.154 294.355 295.945 295.842 295.082 293.718 292.906 292.078 291.833 291.944 292.104 292.041 291.561 290.932 290.453 290.134 289.945 289.827 289.723 289.627 289.494 289.349 289.259 289.233 289.245 289.241 289.228 289.201 289.121 289.016 288.921 288.817 288.63 288.4 288.186 287.995 287.805 287.767 287.881 288.016 288.018 287.895 287.799 287.727 287.612 287.537 287.554 287.604 288.812 288.65 288.563 288.554 288.591 288.693 288.832 288.961 289.081 289.301 289.68 290.174 290.768 291.253 291.636 291.96 292.311 292.617 292.789 292.803 292.635 292.345 291.952 291.494 290.988 290.659 290.447 290.27 290.062 289.913 289.84 289.813 289.796 289.801 289.829 289.857 289.869 289.906 289.967 290.019 290.055 290.114 290.189 290.256 290.299 290.322 290.314 290.275 290.229 290.222 290.203 290.14 290.022 289.928 289.824 289.678 289.491 289.328 289.203 289.12 289.099 289.072 289.004 288.918 288.837 288.725 288.583 288.45 288.335 288.209 288.057 287.923 287.852 287.808 287.75 287.693 287.669 287.712 287.845 288.057 288.297 288.376 288.432 288.573 288.866 289.078 289.18 289.181 289.036 288.799 288.625 288.596 288.731 288.794 288.808 288.867 289.154 289.533 289.869 290.276 291.612 293.127 293.417 293.06 291.693 290.583 290.44 291.93 292.276 292.161 291.859 291.581 291.428 291.322 291.288 291.351 291.457 291.541 291.718 292.003 292.303 292.414 292.561 292.844 292.672 293.164 293.167 292.786 292.83 292.558 292.287 292.117 292.059 291.971 291.823 291.66 291.497 291.341 291.193 291.05 290.878 290.663 290.426 290.179 289.945 289.897 289.98 290.123 290.253 290.32 290.371 290.397 290.345 290.247 290.188 290.196 290.283 290.417 290.558 290.684 290.789 290.841 290.858 290.879 290.94 291.007 291.048 291.043 291.042 291.107 291.189 291.243 291.23 291.14 290.992 290.824 290.687 290.637 290.633 290.637 290.591 290.452 290.301 290.201 290.197 290.217 290.223 290.247 290.306 290.305 290.237 290.142 290.024 289.834 289.602 289.378 289.166 288.944 288.744 288.574 288.29 287.951 288.032 288.623 289.83 290.398 290.918 291.288 293.068 295.078 295.928 295.083 294.743 294.681 294.747 294.025 293.771 293.401 293.268 293.15 292.797 292.211 291.689 291.337 291.162 291.079 291.001 290.91 290.772 290.646 290.591 290.589 290.575 290.524 290.492 290.449 290.301 290.112 289.998 289.93 289.774 289.543 289.382 289.279 289.154 289.091 289.127 289.176 289.129 289.002 288.924 288.871 288.773 288.734 288.802 288.882 289.957 289.794 289.721 289.726 289.821 290.029 290.239 290.388 290.474 290.659 290.998 291.436 291.955 292.34 292.608 292.801 293.029 293.351 293.677 293.951 294.101 293.947 293.5 292.846 292.128 291.672 291.391 291.186 290.955 290.737 290.611 290.577 290.59 290.591 290.593 290.592 290.583 290.655 290.805 290.965 291.058 291.082 291.119 291.174 291.222 291.227 291.209 291.172 291.134 291.13 291.12 291.076 290.962 290.809 290.642 290.475 290.336 290.236 290.15 290.09 290.076 290.031 289.921 289.79 289.676 289.572 289.461 289.359 289.256 289.099 288.918 288.781 288.744 288.71 288.619 288.503 288.439 288.533 288.739 289.029 289.372 289.675 290.002 290.162 290.33 290.473 290.456 290.346 290.061 289.688 289.415 289.381 289.592 289.669 289.708 289.918 290.507 291.246 292.154 292.691 293.546 294.571 295.81 295.145 293.958 292.462 291.371 292.249 293.088 293.363 293.284 292.997 292.61 292.394 292.354 292.413 292.477 292.516 292.626 292.813 293.012 293.131 293.293 293.551 293.57 293.671 293.463 293.275 293.149 292.982 292.819 292.724 292.672 292.548 292.374 292.201 292.037 291.884 291.737 291.602 291.448 291.253 291.051 290.898 290.848 290.902 290.981 291.055 291.096 291.098 291.092 291.077 291.018 290.957 290.948 291.002 291.104 291.203 291.306 291.436 291.599 291.69 291.715 291.718 291.739 291.777 291.8 291.812 291.881 291.99 292.037 291.999 291.883 291.768 291.629 291.484 291.383 291.373 291.389 291.401 291.364 291.238 291.088 290.995 291.043 291.12 291.111 291.073 291.102 291.119 291.03 290.876 290.731 290.578 290.346 290.084 289.848 289.622 289.327 288.975 288.558 288.394 288.811 289.703 290.675 291.72 291.865 291.962 293.435 294.71 295.484 294.629 294.753 295.051 295.173 294.893 294.841 294.555 294.367 294.096 293.768 293.321 292.829 292.424 292.147 291.989 291.898 291.84 291.748 291.644 291.61 291.636 291.632 291.547 291.478 291.399 291.231 291.045 290.967 290.955 290.869 290.685 290.559 290.499 290.42 290.362 290.392 290.443 290.394 290.259 290.144 290.066 289.995 290.008 290.077 290.097 290.911 290.826 290.778 290.769 290.887 291.137 291.311 291.372 291.432 291.696 292.054 292.437 292.856 293.187 293.592 293.47 293.433 293.539 293.754 293.929 294.571 294.959 294.845 294.237 293.26 292.541 292.102 291.843 291.642 291.432 291.324 291.337 291.392 291.358 291.338 291.379 291.476 291.624 291.825 292.025 292.116 292.072 292.052 292.084 292.136 292.135 292.102 292.05 292.005 292.021 292.055 292.063 291.984 291.805 291.598 291.397 291.259 291.218 291.18 291.139 291.093 290.993 290.854 290.724 290.631 290.554 290.478 290.407 290.306 290.125 289.923 289.762 289.673 289.608 289.498 289.363 289.292 289.44 289.716 290.072 290.602 291.368 291.983 293.237 293.625 292.6 292.162 291.96 291.35 290.883 290.481 290.352 290.437 290.474 290.644 291.126 292.148 294.773 295.305 295.075 295.077 295.392 295.988 295.765 294.768 293.467 292.587 292.367 293.6 294.217 294.444 294.298 293.878 293.583 293.443 293.369 293.316 293.329 293.427 293.567 293.681 293.733 293.818 293.96 294.052 293.94 293.775 293.644 293.552 293.443 293.358 293.31 293.242 293.063 292.85 292.673 292.55 292.411 292.262 292.133 292.025 291.899 291.788 291.738 291.781 291.856 291.897 291.903 291.86 291.794 291.73 291.676 291.639 291.643 291.688 291.767 291.874 291.97 292.064 292.176 292.332 292.435 292.485 292.507 292.532 292.556 292.559 292.57 292.656 292.752 292.748 292.645 292.488 292.398 292.313 292.222 292.137 292.099 292.081 292.056 292.018 291.946 291.86 291.812 291.871 291.929 291.89 291.822 291.847 291.879 291.767 291.561 291.377 291.231 290.977 290.648 290.32 289.992 289.567 289.114 288.786 288.91 289.49 290.376 291.377 291.954 292.872 292.658 293.823 295.239 294.785 294.66 294.996 295.607 295.794 295.695 295.639 295.358 295.132 294.893 294.502 294.243 293.843 293.423 293.029 292.815 292.732 292.713 292.646 292.542 292.524 292.578 292.596 292.472 292.342 292.238 292.13 292.009 291.944 291.932 291.913 291.848 291.789 291.742 291.68 291.652 291.69 291.726 291.651 291.482 291.305 291.16 291.078 291.094 291.107 291.048 291.783 291.792 291.778 291.765 291.89 292.042 292.051 292.0 292.159 292.535 292.88 293.236 293.688 294.26 295.213 294.822 294.067 293.569 292.961 292.937 293.954 294.702 295.335 295.279 294.398 293.431 292.868 292.597 292.489 292.323 292.222 292.231 292.231 292.129 292.134 292.314 292.621 292.812 292.958 293.069 293.087 293.027 293.022 293.065 293.097 293.064 292.998 292.915 292.849 292.917 293.049 293.156 293.153 292.996 292.776 292.544 292.35 292.299 292.286 292.248 292.14 291.985 291.853 291.761 291.69 291.605 291.527 291.445 291.293 291.071 290.843 290.643 290.469 290.366 290.271 290.168 290.144 290.373 290.693 291.084 291.851 293.087 294.594 296.455 296.901 295.963 295.513 295.109 294.224 292.719 292.012 291.888 291.862 291.884 292.19 292.863 295.538 296.934 297.389 296.836 296.409 296.293 296.328 296.112 295.331 294.527 293.409 292.425 293.363 294.599 295.158 295.214 294.844 294.516 294.3 294.135 294.031 294.054 294.13 294.216 294.265 294.286 294.301 294.298 294.259 294.192 294.116 294.038 293.944 293.843 293.774 293.744 293.69 293.511 293.299 293.127 293.035 292.956 292.871 292.799 292.746 292.699 292.663 292.649 292.65 292.643 292.622 292.599 292.551 292.456 292.342 292.252 292.247 292.312 292.397 292.487 292.597 292.702 292.79 292.876 292.991 293.09 293.174 293.242 293.292 293.321 293.323 293.31 293.324 293.342 293.301 293.199 293.085 293.055 293.036 292.999 292.932 292.889 292.848 292.787 292.714 292.668 292.633 292.612 292.627 292.624 292.561 292.471 292.439 292.433 292.316 292.112 291.886 291.653 291.329 290.95 290.572 290.16 289.664 289.23 289.121 289.442 290.018 290.81 291.872 292.48 293.583 293.324 294.725 296.344 295.718 295.455 295.673 296.063 296.299 296.231 296.158 295.858 295.245 295.267 295.104 295.061 294.79 294.357 293.906 293.674 293.588 293.585 293.554 293.454 293.418 293.45 293.465 293.358 293.234 293.137 293.079 292.997 292.9 292.831 292.866 292.98 293.026 292.984 292.901 292.875 292.848 292.755 292.579 292.405 292.234 292.079 291.996 291.997 291.953 291.856 292.746 292.713 292.646 292.598 292.646 292.638 292.537 292.523 292.831 293.124 293.332 293.658 294.408 296.561 297.395 295.709 293.845 292.708 291.751 291.322 291.833 293.652 294.888 295.629 295.385 294.407 293.765 293.524 293.508 293.379 293.262 293.244 293.234 293.133 293.179 293.438 293.807 293.981 294.051 294.077 294.048 294.022 294.058 294.099 294.057 293.979 293.905 293.827 293.782 293.914 294.107 294.24 294.214 294.049 293.846 293.641 293.441 293.337 293.282 293.22 293.074 292.909 292.803 292.737 292.621 292.472 292.359 292.246 292.018 291.754 291.528 291.318 291.075 290.953 290.923 290.924 291.019 291.315 291.642 292.055 293.051 294.667 296.776 299.655 299.22 298.085 297.408 297.034 296.38 295.57 295.177 294.813 294.788 294.904 295.465 296.796 298.342 298.98 299.099 298.948 298.055 298.609 297.948 297.458 296.568 295.939 294.262 293.355 292.83 294.588 295.572 295.745 295.395 295.064 294.874 294.763 294.714 294.744 294.761 294.749 294.729 294.734 294.705 294.61 294.464 294.403 294.386 294.368 294.327 294.261 294.196 294.149 294.089 293.952 293.78 293.637 293.559 293.534 293.525 293.522 293.503 293.459 293.422 293.394 293.354 293.282 293.215 293.172 293.145 293.082 292.995 292.923 292.924 292.99 293.078 293.173 293.281 293.352 293.412 293.491 293.612 293.754 293.893 294.007 294.064 294.066 294.05 293.997 293.901 293.819 293.758 293.698 293.64 293.636 293.648 293.639 293.581 293.553 293.536 293.476 293.345 293.267 293.254 293.257 293.223 293.169 293.081 292.951 292.819 292.739 292.616 292.434 292.183 291.879 291.532 291.186 290.832 290.345 289.785 289.366 289.397 289.803 290.41 291.279 292.595 293.407 294.214 293.79 295.218 296.825 297.27 296.493 296.475 296.649 296.716 296.37 296.341 296.084 295.564 295.264 295.6 295.56 295.472 295.152 294.771 294.555 294.429 294.383 294.363 294.32 294.301 294.306 294.291 294.225 294.14 294.061 293.998 293.95 293.883 293.822 293.877 294.02 294.055 293.968 293.865 293.849 293.755 293.542 293.272 293.146 293.07 293.001 292.966 292.962 292.91 292.816 293.629 293.483 293.336 293.232 293.165 293.016 292.912 293.012 293.297 293.286 293.409 294.046 295.602 299.697 298.672 295.724 293.181 291.835 290.518 289.73 289.863 291.207 294.081 295.497 296.166 295.561 294.868 294.601 294.63 294.55 294.448 294.433 294.464 294.435 294.489 294.688 294.96 295.071 295.105 295.116 295.093 295.102 295.148 295.158 295.069 294.967 294.91 294.878 294.907 295.051 295.191 295.232 295.11 294.913 294.727 294.557 294.381 294.23 294.119 294.024 293.867 293.706 293.606 293.519 293.319 293.085 292.93 292.784 292.494 292.192 291.984 291.803 291.592 291.556 291.655 291.778 291.942 292.224 292.521 293.008 294.361 296.354 299.054 301.508 300.978 299.905 298.883 298.019 297.259 296.891 297.042 297.234 297.345 297.602 298.343 299.436 300.216 300.63 301.212 300.535 298.706 298.528 298.266 297.946 297.333 295.925 295.449 294.173 293.548 294.85 295.955 296.113 295.807 295.545 295.425 295.374 295.338 295.342 295.307 295.229 295.124 295.056 294.975 294.857 294.724 294.703 294.724 294.746 294.746 294.719 294.677 294.636 294.582 294.487 294.392 294.33 294.289 294.257 294.246 294.248 294.227 294.14 294.045 293.981 293.943 293.886 293.819 293.768 293.752 293.742 293.714 293.679 293.648 293.666 293.739 293.849 293.942 293.96 294.015 294.147 294.348 294.527 294.69 294.814 294.835 294.776 294.7 294.577 294.374 294.237 294.185 294.168 294.159 294.171 294.193 294.191 294.133 294.089 294.072 294.017 293.875 293.8 293.799 293.793 293.704 293.597 293.476 293.319 293.14 292.999 292.836 292.628 292.358 292.048 291.715 291.382 290.973 290.384 289.798 289.454 289.626 290.13 290.86 291.959 293.543 294.24 294.289 292.952 294.372 296.617 298.756 297.94 297.458 297.098 296.923 296.679 296.492 296.102 295.425 294.976 295.332 295.56 295.773 295.87 295.73 295.555 295.379 295.258 295.214 295.234 295.275 295.284 295.217 295.164 295.14 295.094 294.985 294.96 294.987 295.002 294.982 294.963 294.87 294.709 294.577 294.567 294.489 294.306 294.1 294.047 294.029 293.993 293.938 293.906 293.846 293.751 294.108 293.91 293.753 293.642 293.499 293.297 293.227 293.318 293.316 293.077 293.362 294.46 298.15 300.562 298.325 295.123 293.363 292.213 290.79 289.65 289.274 290.099 292.338 295.415 296.587 296.447 295.872 295.556 295.596 295.607 295.588 295.612 295.678 295.708 295.747 295.824 295.935 296.001 296.024 296.031 296.036 296.061 296.102 296.118 296.078 296.021 295.985 295.97 295.997 296.038 296.016 295.923 295.759 295.588 295.423 295.279 295.133 294.963 294.807 294.68 294.51 294.305 294.144 294.002 293.759 293.499 293.325 293.157 292.85 292.559 292.384 292.265 292.204 292.335 292.499 292.597 292.723 292.957 293.258 293.955 295.763 298.067 302.056 303.875 302.96 301.441 300.298 299.25 298.5 298.177 298.328 298.295 298.18 298.559 299.638 300.709 302.054 301.47 301.281 299.926 298.796 297.909 297.623 297.131 296.944 296.93 296.645 296.054 295.122 295.618 296.439 296.472 296.229 296.073 296.009 295.945 295.872 295.857 295.827 295.751 295.597 295.447 295.326 295.245 295.21 295.239 295.268 295.271 295.222 295.157 295.116 295.092 295.054 295.007 294.995 295.009 294.988 294.897 294.827 294.8 294.787 294.697 294.598 294.533 294.513 294.48 294.432 294.387 294.362 294.36 294.347 294.316 294.265 294.256 294.323 294.431 294.501 294.514 294.614 294.818 295.056 295.194 295.306 295.391 295.386 295.301 295.185 295.026 294.795 294.651 294.612 294.614 294.606 294.619 294.646 294.647 294.593 294.53 294.48 294.423 294.342 294.299 294.27 294.206 294.058 293.91 293.757 293.576 293.377 293.205 292.986 292.728 292.458 292.176 291.819 291.397 290.855 290.27 289.819 289.668 290.003 290.593 291.417 292.635 294.068 294.333 292.82 291.013 291.757 294.962 298.655 299.101 298.102 297.588 297.413 297.282 296.951 296.265 295.223 294.132 294.137 295.29 296.017 296.503 296.681 296.528 296.334 296.181 296.106 296.125 296.19 296.222 296.133 296.049 296.043 296.025 295.896 295.831 295.865 295.883 295.784 295.649 295.515 295.369 295.228 295.178 295.136 295.073 295.0 294.944 294.878 294.787 294.668 294.555 294.431 294.289 294.306 294.099 293.95 293.826 293.628 293.45 293.39 293.349 293.081 293.224 294.441 297.299 300.734 299.607 296.943 294.998 294.083 293.046 291.793 290.415 289.846 290.07 291.71 294.267 296.868 297.136 296.779 296.448 296.477 296.603 296.681 296.724 296.724 296.732 296.767 296.799 296.825 296.832 296.801 296.766 296.781 296.84 296.894 296.937 296.977 296.963 296.916 296.86 296.806 296.699 296.525 296.334 296.195 296.091 295.969 295.855 295.742 295.578 295.402 295.248 295.051 294.783 294.549 294.369 294.15 293.92 293.746 293.578 293.312 293.107 293.008 292.969 293.024 293.194 293.279 293.258 293.335 293.624 294.058 295.012 297.186 300.082 305.018 305.115 303.961 302.808 301.947 300.951 300.371 300.078 299.682 299.232 299.111 299.5 300.748 301.762 303.126 302.365 302.166 301.499 300.258 299.292 297.986 297.045 296.275 296.619 297.334 297.325 296.642 296.49 296.993 296.92 296.701 296.631 296.596 296.546 296.49 296.455 296.412 296.333 296.203 296.059 295.929 295.848 295.809 295.799 295.796 295.776 295.703 295.613 295.575 295.57 295.541 295.493 295.497 295.524 295.472 295.319 295.213 295.19 295.215 295.171 295.12 295.093 295.084 295.038 294.99 294.956 294.93 294.914 294.897 294.879 294.863 294.889 294.96 295.043 295.081 295.1 295.216 295.406 295.551 295.598 295.672 295.763 295.769 295.682 295.582 295.467 295.309 295.208 295.166 295.133 295.097 295.103 295.093 295.058 295.007 294.956 294.887 294.804 294.732 294.67 294.579 294.458 294.308 294.164 293.977 293.747 293.508 293.318 293.082 292.82 292.582 292.307 291.883 291.362 290.774 290.266 289.95 289.94 290.351 290.993 291.913 293.112 294.142 293.604 291.875 289.116 289.063 292.285 297.621 299.754 298.484 297.942 297.831 297.715 297.23 296.225 295.021 293.906 293.617 295.171 296.275 297.045 297.456 297.343 297.146 297.012 296.943 296.901 296.907 296.941 296.883 296.775 296.742 296.725 296.6 296.465 296.42 296.392 296.304 296.189 296.109 296.036 295.92 295.822 295.768 295.734 295.675 295.564 295.447 295.331 295.172 294.957 294.74 294.529 294.333 294.137 293.978 293.819 293.604 293.462 293.378 293.248 293.135 294.366 296.511 299.427 299.996 297.552 295.376 294.876 294.6 293.661 292.642 292.001 291.266 291.252 292.641 294.951 297.47 297.835 297.661 297.308 297.306 297.562 297.669 297.55 297.214 297.146 297.295 297.467 297.551 297.509 297.405 297.327 297.387 297.499 297.558 297.593 297.637 297.613 297.537 297.426 297.274 297.092 296.889 296.697 296.579 296.524 296.446 296.35 296.246 296.096 295.909 295.72 295.491 295.204 294.948 294.756 294.562 294.37 294.213 294.064 293.88 293.797 293.794 293.804 293.834 293.874 293.794 293.67 293.839 294.341 294.973 296.117 298.355 302.627 306.245 305.998 304.891 304.037 303.523 303.525 302.58 302.004 301.299 300.658 300.482 300.928 301.691 302.338 303.744 302.909 302.823 301.876 301.058 300.17 298.63 297.358 296.72 297.412 298.179 297.38 296.54 296.943 297.567 297.46 297.239 297.197 297.167 297.145 297.115 297.04 296.934 296.817 296.725 296.622 296.506 296.402 296.308 296.244 296.22 296.223 296.208 296.155 296.126 296.106 296.053 295.992 295.962 295.939 295.842 295.693 295.614 295.618 295.648 295.626 295.617 295.631 295.63 295.577 295.524 295.486 295.45 295.422 295.403 295.401 295.43 295.491 295.575 295.649 295.679 295.683 295.744 295.83 295.86 295.88 296.009 296.163 296.165 296.048 295.957 295.891 295.833 295.803 295.756 295.684 295.632 295.631 295.582 295.499 295.429 295.38 295.296 295.189 295.07 294.93 294.79 294.664 294.542 294.404 294.203 293.945 293.664 293.455 293.233 292.998 292.777 292.457 291.968 291.408 290.827 290.324 290.023 290.068 290.511 291.217 292.269 293.495 294.267 293.468 291.748 287.999 286.914 289.87 295.505 299.269 298.866 298.299 298.225 298.061 297.316 296.398 295.397 294.439 294.238 295.216 296.608 297.403 297.977 297.991 297.798 297.67 297.651 297.577 297.487 297.445 297.427 297.337 297.235 297.159 297.068 296.946 296.856 296.809 296.768 296.708 296.651 296.593 296.488 296.363 296.251 296.145 296.016 295.88 295.744 295.595 295.354 295.056 294.785 294.555 294.297 294.116 293.955 293.792 293.609 293.472 293.359 293.293 293.676 295.537 297.664 299.307 298.507 295.575 294.504 295.023 295.103 294.523 294.095 293.821 293.477 293.978 295.375 297.022 297.836 298.283 298.29 297.937 297.957 298.379 298.425 297.779 296.478 296.377 297.18 297.732 298.024 298.022 297.929 297.882 298.01 298.126 298.16 298.153 298.126 298.049 297.948 297.809 297.6 297.433 297.305 297.19 297.086 297.031 296.963 296.851 296.697 296.546 296.361 296.147 295.891 295.631 295.398 295.214 295.028 294.857 294.733 294.635 294.536 294.531 294.565 294.549 294.422 294.257 294.064 293.993 294.401 295.104 295.844 297.066 299.257 304.371 307.315 306.829 306.021 305.424 304.897 304.535 304.363 303.758 303.15 302.621 302.568 302.296 302.232 302.509 302.797 303.171 303.163 302.708 301.535 300.118 299.75 298.699 297.975 298.324 298.08 297.579 297.393 297.976 298.135 297.969 297.766 297.729 297.708 297.709 297.7 297.612 297.454 297.287 297.184 297.089 296.984 296.896 296.84 296.806 296.778 296.768 296.765 296.719 296.663 296.596 296.517 296.467 296.422 296.356 296.249 296.161 296.135 296.153 296.172 296.166 296.178 296.207 296.205 296.15 296.089 296.027 295.958 295.925 295.922 295.937 295.975 296.02 296.082 296.148 296.186 296.177 296.197 296.229 296.224 296.266 296.435 296.616 296.612 296.462 296.373 296.332 296.32 296.318 296.268 296.177 296.117 296.112 296.049 295.941 295.852 295.795 295.714 295.612 295.454 295.258 295.109 294.988 294.841 294.661 294.463 294.217 293.897 293.652 293.43 293.198 292.93 292.555 292.054 291.516 290.961 290.47 290.251 290.404 290.837 291.402 292.421 293.695 294.462 293.599 291.908 287.684 285.507 287.281 292.914 297.989 298.71 298.465 298.387 298.144 297.442 296.836 296.099 295.236 294.868 295.3 296.166 297.7 298.013 298.19 298.201 298.112 298.118 298.094 297.968 297.828 297.794 297.747 297.604 297.444 297.356 297.306 297.26 297.233 297.214 297.169 297.098 297.014 296.891 296.738 296.573 296.411 296.25 296.1 295.906 295.642 295.286 294.97 294.719 294.511 294.318 294.149 294.0 293.863 293.708 293.5 293.383 293.537 294.468 296.407 297.998 298.741 296.903 294.377 294.33 295.189 296.135 296.356 296.338 296.789 295.89 296.418 297.687 298.671 298.291 298.457 298.675 298.364 298.462 299.045 299.033 297.807 296.145 295.755 296.885 297.703 298.334 298.486 298.488 298.482 298.574 298.619 298.594 298.552 298.488 298.377 298.27 298.154 297.971 297.826 297.753 297.681 297.547 297.466 297.393 297.258 297.061 296.919 296.747 296.519 296.254 296.043 295.862 295.707 295.543 295.406 295.331 295.297 295.259 295.244 295.208 295.07 294.77 294.495 294.341 294.428 294.991 295.757 296.539 297.797 300.272 302.871 306.682 306.576 305.858 305.429 305.147 305.347 305.214 304.828 304.147 303.903 303.423 303.02 302.812 302.664 302.817 303.25 303.489 303.165 302.027 300.883 300.499 299.637 298.832 299.776 299.205 298.413 298.619 298.734 298.599 298.342 298.2 298.204 298.219 298.261 298.327 298.294 298.124 297.904 297.745 297.642 297.558 297.501 297.502 297.48 297.421 297.355 297.292 297.217 297.133 297.049 296.976 296.937 296.883 296.805 296.74 296.724 296.719 296.721 296.755 296.781 296.8 296.812 296.786 296.71 296.635 296.56 296.489 296.485 296.524 296.575 296.627 296.642 296.649 296.682 296.718 296.688 296.667 296.684 296.707 296.741 296.876 297.032 297.054 296.979 296.957 296.964 296.951 296.911 296.83 296.716 296.636 296.577 296.481 296.37 296.297 296.235 296.136 296.018 295.831 295.616 295.461 295.329 295.119 294.887 294.684 294.441 294.096 293.821 293.577 293.312 292.996 292.654 292.226 291.765 291.296 290.936 290.852 291.068 291.35 291.632 292.519 293.857 294.733 293.797 292.206 287.435 284.385 285.624 290.838 296.56 298.414 298.611 298.489 298.14 297.638 297.396 296.941 296.288 295.955 295.885 295.937 296.09 297.815 298.283 298.293 298.201 298.257 298.344 298.345 298.222 298.083 298.031 297.902 297.724 297.614 297.592 297.558 297.515 297.487 297.455 297.393 297.299 297.143 296.963 296.793 296.625 296.447 296.247 295.973 295.629 295.263 295.005 294.777 294.547 294.409 294.287 294.169 294.06 293.878 293.62 293.606 294.085 295.465 296.906 297.686 297.523 296.311 295.161 294.736 295.574 296.602 297.517 297.865 297.292 296.968 297.424 298.32 298.079 297.803 298.518 299.1 299.023 299.154 299.687 299.624 298.279 296.223 295.641 296.264 297.512 298.474 298.878 298.968 298.943 298.961 298.955 298.892 298.835 298.758 298.611 298.496 298.425 298.305 298.181 298.111 298.039 297.881 297.755 297.636 297.459 297.251 297.136 296.986 296.776 296.561 296.42 296.294 296.185 296.088 296.014 295.976 295.967 295.931 295.821 295.636 295.359 294.99 294.775 294.758 294.959 295.503 296.26 297.095 298.275 300.385 302.284 303.574 303.092 302.819 303.177 303.356 304.49 304.507 303.98 303.063 302.969 303.058 302.819 302.942 302.834 302.798 303.424 304.647 302.967 302.187 301.003 300.672 299.725 299.468 299.213 298.907 299.1 299.3 299.224 298.976 298.707 298.586 298.591 298.637 298.717 298.841 298.871 298.821 298.549 298.356 298.278 298.215 298.152 298.111 298.045 297.954 297.867 297.794 297.726 297.65 297.586 297.524 297.462 297.386 297.315 297.312 297.325 297.299 297.273 297.302 297.328 297.329 297.317 297.268 297.179 297.104 297.056 297.047 297.096 297.164 297.23 297.289 297.296 297.27 297.268 297.293 297.234 297.168 297.173 297.232 297.288 297.39 297.513 297.571 297.583 297.636 297.677 297.636 297.548 297.449 297.342 297.242 297.109 296.964 296.851 296.781 296.682 296.529 296.345 296.11 295.889 295.711 295.547 295.322 295.095 294.883 294.618 294.248 293.96 293.7 293.405 293.081 292.808 292.465 292.086 291.77 291.574 291.536 291.693 291.895 292.17 293.104 294.482 295.314 294.081 292.21 287.239 284.041 285.046 289.762 294.949 297.742 298.586 298.647 298.261 297.795 297.629 297.322 297.01 296.733 296.382 295.8 295.357 295.903 296.86 298.521 298.32 298.225 298.448 298.605 298.556 298.303 298.215 298.139 298.018 297.893 297.839 297.773 297.706 297.662 297.602 297.522 297.419 297.243 297.053 296.887 296.708 296.465 296.213 295.94 295.651 295.373 295.131 294.866 294.603 294.63 294.586 294.5 294.391 294.212 294.086 294.385 295.289 296.615 297.304 296.781 296.811 296.39 295.395 295.083 295.729 296.361 296.889 296.958 296.611 296.009 296.784 297.131 297.361 296.821 298.518 299.41 299.706 299.875 300.189 300.087 299.274 296.864 295.938 296.018 297.434 298.507 299.171 299.353 299.29 299.237 299.23 299.156 299.057 298.954 298.782 298.633 298.561 298.501 298.404 298.331 298.252 298.097 297.94 297.781 297.593 297.411 297.311 297.178 297.025 296.915 296.846 296.763 296.693 296.657 296.616 296.565 296.518 296.427 296.221 295.947 295.635 295.338 295.268 295.386 295.626 296.025 296.691 297.548 298.623 300.135 301.432 302.094 301.493 300.857 300.954 301.644 302.086 301.982 301.744 301.372 301.129 301.817 302.218 302.849 303.559 303.436 303.332 303.58 302.135 300.855 299.966 299.535 299.075 298.942 299.231 299.49 299.664 299.604 299.435 299.2 298.998 298.895 298.899 298.95 299.027 299.104 299.121 299.07 298.97 298.901 298.882 298.82 298.728 298.643 298.536 298.422 298.351 298.332 298.292 298.226 298.149 298.051 297.959 297.891 297.855 297.876 297.889 297.858 297.823 297.818 297.8 297.767 297.738 297.694 297.628 297.592 297.594 297.621 297.674 297.725 297.769 297.823 297.865 297.86 297.835 297.827 297.766 297.712 297.742 297.869 297.968 298.044 298.111 298.139 298.149 298.165 298.167 298.128 298.035 297.923 297.809 297.695 297.551 297.392 297.254 297.142 296.986 296.778 296.555 296.321 296.112 295.918 295.728 295.501 295.273 295.029 294.739 294.391 294.099 293.808 293.485 293.178 292.945 292.662 292.379 292.247 292.215 292.252 292.456 292.884 293.329 294.054 295.018 295.453 293.872 291.733 286.551 283.883 284.469 289.096 294.146 297.349 298.54 298.626 298.331 297.745 297.554 297.243 297.068 297.01 296.588 295.824 295.422 295.963 296.573 298.348 298.395 298.219 298.484 298.743 298.752 298.469 298.371 298.33 298.241 298.121 298.028 297.932 297.866 297.824 297.708 297.577 297.447 297.258 297.053 296.869 296.662 296.387 296.168 295.974 295.769 295.516 295.236 294.955 294.731 295.049 295.025 294.96 294.871 294.791 294.98 295.653 296.751 297.643 297.417 296.477 296.503 296.45 295.614 295.438 295.833 296.28 296.431 296.228 295.721 295.584 295.923 296.057 295.735 295.857 297.459 299.118 299.749 300.107 300.383 300.359 299.763 297.809 297.002 296.659 297.505 298.607 299.388 299.687 299.625 299.46 299.415 299.306 299.162 299.042 298.895 298.748 298.669 298.617 298.516 298.43 298.352 298.224 298.088 297.962 297.828 297.699 297.609 297.513 297.432 297.395 297.349 297.292 297.25 297.224 297.174 297.105 297.013 296.845 296.609 296.371 296.161 296.011 296.051 296.239 296.489 296.783 297.306 298.101 299.021 299.999 300.739 301.16 301.271 301.25 301.374 301.194 300.096 299.608 299.725 299.506 299.352 300.149 300.996 301.789 302.469 302.947 302.32 301.771 300.3 300.014 298.578 298.079 298.793 298.966 299.659 299.879 299.877 299.713 299.517 299.347 299.226 299.155 299.183 299.273 299.363 299.393 299.396 299.403 299.402 299.392 299.373 299.303 299.216 299.174 299.087 298.903 298.833 298.836 298.796 298.727 298.627 298.494 298.425 298.419 298.43 298.426 298.418 298.399 298.387 298.374 298.313 298.245 298.182 298.119 298.068 298.067 298.092 298.107 298.152 298.222 298.295 298.393 298.477 298.489 298.445 298.38 298.341 298.372 298.485 298.623 298.685 298.701 298.696 298.665 298.627 298.57 298.51 298.467 298.386 298.261 298.112 297.968 297.823 297.675 297.521 297.332 297.154 296.956 296.727 296.475 296.274 296.067 295.847 295.61 295.327 295.028 294.755 294.484 294.172 293.848 293.552 293.318 293.164 293.01 292.91 293.004 293.172 293.315 293.567 294.005 294.181 294.258 294.409 294.218 292.418 290.183 285.275 283.265 284.898 289.792 294.54 297.509 298.5 298.294 298.196 298.077 297.489 296.928 296.759 296.601 296.195 295.727 296.212 296.931 297.382 298.213 298.359 298.167 298.534 298.856 298.87 298.646 298.607 298.548 298.411 298.273 298.171 298.042 297.947 297.896 297.765 297.619 297.488 297.301 297.078 296.876 296.677 296.466 296.324 296.183 295.994 295.733 295.486 295.265 295.109 295.55 295.539 295.501 295.433 295.471 295.947 296.834 297.847 298.209 296.734 295.378 295.255 295.147 295.249 295.733 296.081 296.201 295.971 295.692 295.721 295.593 295.514 295.108 295.024 295.483 296.503 297.594 298.878 299.841 300.335 300.534 300.183 298.459 297.815 298.324 298.18 298.756 299.465 299.879 299.868 299.589 299.48 299.366 299.214 299.093 298.977 298.873 298.814 298.755 298.636 298.545 298.47 298.365 298.285 298.226 298.164 298.083 298.004 297.941 297.909 297.89 297.836 297.814 297.807 297.748 297.668 297.601 297.493 297.274 297.059 296.903 296.803 296.773 296.87 297.089 297.369 297.656 298.072 298.733 299.474 300.079 300.473 300.803 301.031 301.157 301.204 301.054 300.046 298.97 298.412 298.142 298.812 299.918 301.021 301.214 301.993 301.889 300.396 300.104 299.971 299.544 298.345 297.875 297.812 298.883 299.747 299.949 299.951 299.802 299.681 299.614 299.566 299.512 299.529 299.639 299.782 299.881 299.892 299.854 299.769 299.663 299.597 299.549 299.529 299.566 299.531 299.28 299.187 299.173 299.136 299.105 299.052 298.959 298.937 298.98 299.015 298.973 298.931 298.923 298.933 298.915 298.833 298.742 298.652 298.532 298.459 298.461 298.484 298.486 298.575 298.728 298.887 299.03 299.101 299.1 299.049 298.984 298.997 299.095 299.218 299.269 299.232 299.177 299.112 299.055 299.0 298.91 298.8 298.732 298.652 298.532 298.398 298.236 298.067 297.911 297.742 297.497 297.293 297.096 296.851 296.547 296.299 296.044 295.793 295.556 295.281 295.012 294.809 294.603 294.288 294.012 293.834 293.718 293.665 293.686 293.762 293.928 294.129 294.254 294.314 294.336 294.184 293.801 293.239 292.235 290.693 287.069 284.192 284.067 287.47 292.065 296.079 298.336 298.572 298.085 298.044 298.005 297.37 296.596 296.267 296.054 295.541 295.35 296.069 297.614 298.051 298.18 297.895 297.635 298.555 298.954 298.959 298.776 298.814 298.751 298.57 298.429 298.323 298.163 298.021 297.928 297.798 297.669 297.556 297.377 297.173 297.019 296.899 296.786 296.679 296.517 296.299 296.078 295.93 295.775 295.626 296.181 296.219 296.159 296.024 296.057 296.715 297.711 298.577 298.509 296.425 294.749 293.939 294.139 294.619 295.092 295.728 295.726 295.425 295.113 294.992 295.005 295.128 295.001 295.126 295.485 296.484 297.043 297.701 298.779 300.057 300.592 300.552 299.345 298.322 298.948 299.287 298.978 299.466 299.883 299.935 299.679 299.588 299.53 299.423 299.279 299.138 299.046 299.015 298.964 298.865 298.8 298.749 298.666 298.632 298.622 298.591 298.529 298.462 298.422 298.41 298.381 298.317 298.3 298.289 298.194 298.113 298.063 297.947 297.724 297.578 297.483 297.422 297.446 297.56 297.758 298.036 298.362 298.712 299.217 299.782 300.197 300.421 300.655 300.845 300.953 301.038 301.009 300.765 299.798 298.499 298.074 298.331 299.074 299.78 299.716 299.958 300.322 299.558 300.447 301.007 300.611 298.947 298.921 298.882 299.663 299.872 299.999 300.039 299.992 300.017 300.077 300.106 300.057 300.037 300.118 300.281 300.449 300.432 300.272 300.015 299.769 299.699 299.699 299.742 299.823 299.809 299.682 299.515 299.382 299.342 299.365 299.397 299.385 299.387 299.424 299.434 299.352 299.302 299.309 299.342 299.347 299.271 299.182 299.087 298.965 298.898 298.898 298.913 298.947 299.098 299.288 299.45 299.552 299.572 299.562 299.566 299.599 299.651 299.726 299.774 299.706 299.59 299.502 299.417 299.327 299.25 299.137 299.01 298.908 298.791 298.678 298.586 298.427 298.204 298.013 297.815 297.531 297.292 297.079 296.816 296.498 296.243 295.981 295.736 295.564 295.393 295.204 295.048 294.86 294.599 294.437 294.373 294.294 294.293 294.423 294.571 294.667 294.782 294.764 294.526 294.22 294.065 293.444 292.427 290.045 286.785 284.493 284.398 287.254 291.727 295.676 297.768 298.616 298.066 297.856 297.595 297.458 296.925 296.276 295.884 295.713 295.375 295.12 295.583 296.687 297.809 297.764 297.332 297.117 298.494 299.007 299.051 298.863 298.88 298.832 298.689 298.561 298.452 298.308 298.179 298.056 297.912 297.788 297.686 297.543 297.42 297.354 297.303 297.211 297.086 296.921 296.737 296.579 296.451 296.31 296.19 297.015 297.006 296.833 296.587 296.568 297.259 298.304 299.146 298.903 297.198 294.347 292.954 292.92 293.593 294.571 295.12 295.223 294.659 294.391 294.194 294.351 294.445 294.979 295.176 295.409 295.391 296.033 297.073 298.101 299.159 300.424 300.73 300.359 299.945 299.541 299.702 299.297 299.577 299.853 299.904 299.762 299.734 299.711 299.656 299.541 299.389 299.3 299.279 299.236 299.177 299.154 299.12 299.047 299.048 299.046 299.007 298.964 298.932 298.899 298.882 298.851 298.77 298.71 298.653 298.554 298.51 298.466 298.34 298.158 298.097 298.035 297.973 298.038 298.194 298.374 298.626 298.964 299.26 299.622 300.035 300.374 300.572 300.74 300.839 300.84 300.899 300.97 300.944 300.639 299.887 298.809 299.18 299.44 299.029 299.089 299.288 299.604 299.89 300.802 301.032 300.732 299.282 299.411 299.661 300.091 300.165 300.254 300.298 300.297 300.392 300.5 300.559 300.571 300.586 300.656 300.796 300.943 300.874 300.654 300.373 300.122 300.052 300.06 300.101 300.157 300.129 299.994 299.798 299.601 299.54 299.582 299.654 299.686 299.697 299.719 299.714 299.652 299.636 299.674 299.746 299.802 299.761 299.673 299.58 299.506 299.476 299.468 299.48 299.561 299.736 299.881 299.954 299.975 299.966 299.961 300.003 300.081 300.109 300.122 300.107 299.985 299.831 299.707 299.574 299.423 299.317 299.194 299.074 298.977 298.83 298.68 298.554 298.357 298.088 297.864 297.652 297.372 297.122 296.904 296.675 296.442 296.265 296.074 295.906 295.816 295.711 295.57 295.436 295.272 295.104 295.024 294.989 294.929 295.0 295.168 295.276 295.24 295.193 295.003 294.637 294.346 294.024 293.309 290.147 286.279 284.102 284.627 287.65 292.248 297.201 299.223 299.137 298.36 297.717 297.473 297.046 296.843 296.654 296.326 296.006 295.959 295.554 295.105 295.277 295.801 296.842 297.851 297.579 296.948 298.361 298.944 299.137 298.999 298.924 298.859 298.773 298.65 298.511 298.406 298.337 298.23 298.1 298.02 297.966 297.882 297.818 297.78 297.725 297.616 297.502 297.386 297.266 297.128 296.992 296.902 296.909 297.79 297.672 297.453 297.229 297.197 297.761 298.695 299.525 299.343 297.904 294.75 292.902 292.55 293.469 294.297 294.744 294.767 294.19 293.965 293.62 293.485 293.991 294.263 294.347 294.297 294.577 295.523 296.746 297.863 298.78 300.097 300.636 300.656 300.423 300.041 299.717 299.57 299.714 299.841 299.867 299.83 299.801 299.752 299.714 299.68 299.604 299.57 299.566 299.512 299.482 299.485 299.443 299.366 299.385 299.367 299.308 299.296 299.306 299.275 299.265 299.293 299.24 299.166 299.099 299.029 298.985 298.902 298.748 298.607 298.612 298.595 298.582 298.716 298.902 299.065 299.289 299.596 299.826 300.089 300.399 300.668 300.803 300.881 300.908 300.88 300.859 300.858 300.868 300.867 300.692 300.57 300.608 300.489 299.245 298.851 299.013 299.195 299.908 300.751 300.919 300.73 299.814 299.859 300.349 300.339 300.42 300.549 300.605 300.593 300.661 300.732 300.785 300.862 300.943 301.035 301.175 301.294 301.175 300.983 300.803 300.654 300.56 300.529 300.529 300.533 300.504 300.385 300.18 299.958 299.872 299.883 299.937 299.988 300.022 300.072 300.102 300.078 300.086 300.152 300.249 300.316 300.29 300.216 300.137 300.083 300.074 300.066 300.067 300.151 300.306 300.384 300.385 300.363 300.341 300.313 300.309 300.314 300.266 300.224 300.183 300.058 299.885 299.722 299.558 299.398 299.28 299.141 299.019 298.937 298.797 298.61 298.421 298.195 297.954 297.746 297.547 297.311 297.106 296.924 296.756 296.627 296.541 296.45 296.375 296.306 296.189 296.064 295.939 295.784 295.677 295.618 295.575 295.585 295.728 295.83 295.814 295.665 295.444 295.119 294.799 294.514 293.576 291.738 287.419 285.099 285.965 288.77 292.978 297.975 301.126 300.736 299.414 298.417 297.484 297.19 296.582 296.253 296.139 296.225 296.437 296.512 296.053 295.359 295.105 295.266 295.669 297.381 298.009 297.751 298.156 298.729 299.094 299.132 299.014 298.919 298.86 298.752 298.634 298.562 298.502 298.417 298.353 298.332 298.322 298.286 298.238 298.183 298.111 298.016 297.924 297.822 297.718 297.605 297.538 297.573 297.689 298.357 298.246 298.1 297.992 297.989 298.367 299.063 299.739 299.615 298.227 296.363 294.083 293.754 293.822 294.229 294.971 294.699 294.0 293.455 293.142 292.882 293.023 293.162 293.269 293.486 294.211 295.393 296.519 297.857 298.731 299.878 300.298 300.4 300.273 300.12 299.796 299.695 299.744 299.811 299.855 299.88 299.845 299.786 299.765 299.762 299.733 299.743 299.76 299.707 299.68 299.684 299.646 299.587 299.612 299.59 299.535 299.564 299.621 299.636 299.674 299.748 299.721 299.668 299.633 299.568 299.47 299.359 299.233 299.144 299.165 299.203 299.286 299.476 299.625 299.748 299.914 300.114 300.27 300.474 300.705 300.853 300.862 300.845 300.838 300.867 300.853 300.797 300.772 300.844 300.903 301.021 301.176 301.066 300.077 299.259 299.576 299.95 300.341 300.834 300.996 300.99 300.518 300.238 300.638 300.453 300.488 300.647 300.757 300.761 300.838 300.917 300.963 301.009 301.036 301.092 301.222 301.356 301.266 301.127 301.018 300.908 300.81 300.782 300.789 300.784 300.769 300.69 300.55 300.391 300.31 300.274 300.291 300.366 300.432 300.475 300.481 300.435 300.463 300.557 300.65 300.651 300.569 300.51 300.484 300.471 300.477 300.48 300.477 300.506 300.611 300.673 300.654 300.593 300.53 300.46 300.398 300.326 300.234 300.152 300.077 299.948 299.777 299.616 299.474 299.351 299.228 299.076 298.936 298.841 298.736 298.591 298.426 298.234 298.071 297.915 297.739 297.549 297.414 297.294 297.195 297.126 297.047 296.981 296.942 296.854 296.721 296.611 296.48 296.294 296.202 296.14 296.092 296.189 296.321 296.267 296.107 295.928 295.605 295.228 294.943 294.399 293.102 289.641 288.203 289.102 291.695 295.259 298.493 299.329 300.367 299.972 298.711 297.714 297.123 296.797 296.334 296.111 296.023 296.148 296.516 296.938 296.439 295.781 295.518 295.162 295.243 296.02 297.916 298.183 297.834 298.342 298.783 299.034 299.031 298.976 298.908 298.824 298.794 298.784 298.753 298.731 298.754 298.738 298.693 298.659 298.617 298.564 298.513 298.458 298.363 298.254 298.156 298.094 298.106 298.182 298.295 298.859 298.805 298.704 298.643 298.698 298.993 299.492 299.955 299.818 298.689 297.032 295.509 294.507 294.098 294.088 294.299 294.228 293.942 293.647 293.351 292.775 292.579 292.653 292.79 293.082 293.955 295.303 296.529 297.887 299.18 299.934 300.08 300.016 299.994 299.995 299.924 299.803 299.811 299.857 299.914 299.974 299.961 299.931 299.924 299.881 299.822 299.851 299.899 299.848 299.784 299.768 299.75 299.727 299.728 299.711 299.703 299.778 299.861 299.932 300.008 300.055 300.012 299.992 300.002 299.955 299.871 299.815 299.761 299.709 299.73 299.826 299.971 300.096 300.133 300.193 300.272 300.3 300.339 300.446 300.553 300.602 300.642 300.696 300.738 300.781 300.722 300.647 300.749 300.776 300.797 301.001 301.247 301.279 300.996 300.734 300.606 300.662 300.877 301.072 301.181 301.2 300.987 300.773 300.701 300.355 300.24 300.071 300.57 300.777 300.914 301.075 301.143 301.099 301.032 301.022 301.11 301.252 301.246 301.178 301.091 300.97 300.903 300.921 300.95 300.931 300.887 300.829 300.757 300.694 300.638 300.586 300.578 300.629 300.658 300.645 300.602 300.537 300.578 300.686 300.756 300.682 300.583 300.558 300.575 300.571 300.546 300.553 300.569 300.562 300.636 300.704 300.7 300.604 300.514 300.44 300.369 300.29 300.195 300.084 299.958 299.802 299.664 299.547 299.443 299.342 299.224 299.089 298.964 298.864 298.784 298.709 298.623 298.503 298.402 298.286 298.141 298.007 297.928 297.841 297.771 297.713 297.594 297.49 297.409 297.264 297.138 297.052 296.909 296.69 296.641 296.615 296.591 296.719 296.788 296.643 296.448 296.281 295.917 295.514 295.105 294.221 292.273 290.567 291.753 295.398 298.445 298.933 298.678 299.151 299.672 298.938 297.798 297.35 296.925 296.599 296.419 296.267 296.154 296.095 296.468 296.846 296.621 296.234 296.02 295.552 295.323 295.775 296.752 297.779 297.614 297.74 298.322 298.732 298.926 298.976 298.92 298.858 298.927 298.99 299.018 299.085 299.15 299.104 299.026 299.024 299.001 298.952 298.919 298.887 298.818 298.77 298.738 298.714 298.723 298.751 298.8 299.295 299.247 299.144 299.107 299.237 299.517 299.858 300.129 299.978 299.062 297.084 296.248 295.419 294.519 294.128 294.108 294.17 294.275 294.082 293.78 293.057 292.743 292.401 292.428 292.891 293.714 294.889 296.272 297.944 299.723 300.121 300.093 299.901 299.893 299.947 299.944 299.903 299.926 299.962 300.009 300.068 300.08 300.087 300.096 300.052 299.981 299.99 300.024 299.957 299.845 299.801 299.823 299.849 299.799 299.765 299.791 299.858 299.898 299.969 300.057 300.083 300.046 300.059 300.111 300.142 300.136 300.129 300.113 300.105 300.168 300.3 300.437 300.47 300.408 300.367 300.305 300.161 300.107 300.123 300.118 300.09 300.269 300.512 300.666 300.492 300.391 300.355 300.673 300.641 300.086 300.61 301.065 301.175 301.028 300.914 300.867 300.993 301.241 301.225 300.994 300.688 299.797 299.534 299.793 299.489 298.767 299.774 300.536 300.687 300.868 301.027 301.045 300.96 300.954 300.984 301.034 301.124 301.167 301.164 301.125 301.031 301.008 301.053 301.082 301.025 300.96 300.886 300.817 300.789 300.789 300.77 300.747 300.71 300.675 300.659 300.653 300.638 300.675 300.733 300.742 300.646 300.568 300.548 300.551 300.494 300.41 300.393 300.426 300.451 300.482 300.523 300.509 300.409 300.348 300.318 300.271 300.178 300.072 299.965 299.856 299.748 299.647 299.544 299.445 299.359 299.274 299.187 299.101 298.987 298.896 298.853 298.82 298.731 298.652 298.569 298.473 298.41 298.355 298.257 298.163 298.074 297.924 297.795 297.694 297.558 297.481 297.42 297.268 297.074 297.088 297.088 297.072 297.196 297.245 297.119 296.952 296.731 296.325 295.831 295.119 293.884 292.106 292.821 295.314 297.857 298.009 298.109 298.424 299.1 298.896 298.073 297.648 297.388 297.056 296.856 296.609 296.361 296.275 296.058 296.273 296.575 296.666 296.526 296.307 296.117 295.752 295.698 295.991 296.491 296.859 297.304 298.022 298.55 298.887 299.03 298.998 298.93 299.008 299.07 299.099 299.183 299.235 299.206 299.194 299.262 299.245 299.219 299.223 299.206 299.2 299.232 299.24 299.188 299.175 299.191 299.235 299.466 299.47 299.482 299.563 299.723 299.893 300.053 300.168 299.997 299.078 297.137 295.912 295.734 294.983 294.658 294.606 294.828 294.85 294.745 294.274 293.695 292.964 292.44 292.247 292.496 293.326 294.641 296.398 298.176 299.977 300.244 300.134 299.96 299.912 299.868 299.803 299.801 299.881 299.949 300.028 300.136 300.163 300.186 300.244 300.313 300.281 300.21 300.123 300.001 299.868 299.831 299.912 300.02 299.957 299.903 299.928 299.944 299.902 299.93 300.003 300.049 300.057 300.097 300.177 300.283 300.318 300.29 300.26 300.318 300.441 300.572 300.677 300.675 300.548 300.366 300.153 299.774 299.479 299.423 298.972 298.907 299.717 300.413 300.627 300.675 300.612 300.635 300.752 300.746 300.656 300.753 300.949 301.005 301.015 301.073 301.114 301.222 301.35 300.677 299.356 298.529 297.812 297.318 297.362 297.449 299.09 300.216 300.503 300.583 300.731 300.807 300.752 300.684 300.78 300.862 300.893 300.943 301.026 301.072 301.073 301.041 301.05 301.083 301.092 301.054 301.016 300.962 300.89 300.849 300.847 300.832 300.789 300.705 300.663 300.701 300.77 300.794 300.798 300.783 300.724 300.632 300.588 300.568 300.544 300.485 300.416 300.383 300.398 300.414 300.392 300.347 300.272 300.17 300.14 300.126 300.074 299.955 299.838 299.748 299.68 299.63 299.563 299.464 299.357 299.287 299.239 299.183 299.125 299.026 298.912 298.856 298.826 298.748 298.68 298.625 298.562 298.52 298.471 298.373 298.275 298.188 298.071 297.989 297.94 297.883 297.858 297.794 297.65 297.54 297.568 297.535 297.518 297.655 297.676 297.564 297.416 297.156 296.77 296.164 295.109 293.257 292.833 294.787 297.109 298.11 298.254 298.443 299.039 298.893 298.186 297.89 297.763 297.644 297.41 297.243 296.964 296.573 296.253 296.079 296.144 296.484 296.649 296.65 296.521 296.456 296.237 295.932 295.836 295.734 296.152 297.036 297.637 298.708 299.093 299.261 299.261 299.204 299.218 299.204 299.169 299.182 299.186 299.185 299.231 299.298 299.268 299.289 299.345 299.329 299.336 299.384 299.379 299.292 299.287 299.329 299.389 299.447 299.569 299.69 299.815 299.889 299.982 300.102 300.137 299.854 298.772 297.177 295.875 295.389 295.633 295.652 295.544 295.74 295.662 295.242 294.71 293.879 292.911 292.691 292.333 292.385 293.064 294.302 295.952 299.133 300.051 300.257 300.166 300.042 299.964 299.847 299.708 299.659 299.72 299.783 299.877 300.032 300.09 300.138 300.259 300.474 300.507 300.372 300.177 300.009 299.907 299.89 299.992 300.153 300.135 300.11 300.142 300.122 300.039 300.048 300.116 300.18 300.179 300.171 300.214 300.334 300.361 300.332 300.35 300.459 300.553 300.618 300.671 300.636 300.413 300.136 299.927 299.398 299.828 300.139 300.068 300.278 300.38 300.512 300.666 300.661 300.434 300.443 300.695 300.847 300.7 300.652 300.727 300.859 301.113 301.282 301.229 300.994 300.667 300.001 298.357 297.027 296.339 295.874 296.015 297.412 299.278 299.853 299.989 300.526 300.628 300.665 300.643 300.668 300.761 300.789 300.775 300.826 300.911 300.947 300.964 300.979 300.985 300.975 300.957 300.936 300.942 300.921 300.866 300.818 300.791 300.755 300.698 300.622 300.613 300.673 300.729 300.701 300.666 300.631 300.557 300.481 300.483 300.482 300.478 300.527 300.567 300.567 300.565 300.556 300.518 300.446 300.347 300.245 300.185 300.119 300.021 299.868 299.708 299.566 299.445 299.357 299.314 299.245 299.151 299.081 299.067 299.034 298.995 298.932 298.833 298.762 298.718 298.657 298.61 298.564 298.496 298.415 298.354 298.3 298.263 298.232 298.174 298.141 298.129 298.11 298.095 298.026 297.923 297.911 297.917 297.859 297.883 298.041 297.998 297.9 297.824 297.648 297.404 296.704 295.333 293.295 294.106 296.903 297.977 298.434 299.071 298.845 298.609 298.184 297.961 297.948 298.008 297.887 297.669 297.601 297.366 296.935 296.648 296.467 296.262 296.224 296.366 296.675 296.648 296.679 296.532 296.217 295.896 295.785 296.248 297.004 298.441 299.142 299.445 299.555 299.548 299.495 299.472 299.43 299.361 299.293 299.252 299.252 299.285 299.269 299.229 299.284 299.337 299.254 299.206 299.214 299.197 299.17 299.202 299.238 299.304 299.409 299.543 299.629 299.691 299.725 299.909 300.065 299.969 299.336 297.626 297.439 296.357 295.704 295.917 296.127 296.092 295.901 295.753 295.499 294.609 293.423 292.652 292.548 292.413 292.38 292.46 293.42 295.589 298.518 299.842 300.212 300.222 300.045 299.971 299.938 299.849 299.723 299.672 299.649 299.688 299.825 299.91 299.986 300.119 300.355 300.459 300.38 300.212 300.09 300.045 300.029 300.084 300.185 300.167 300.147 300.159 300.13 300.091 300.156 300.287 300.375 300.303 300.201 300.169 300.256 300.305 300.347 300.427 300.501 300.511 300.52 300.488 300.258 299.793 298.926 298.618 300.023 300.282 300.356 300.425 300.472 300.382 300.465 300.691 300.436 299.285 298.853 299.802 300.647 300.594 300.49 300.519 300.738 301.02 301.056 300.738 299.973 298.89 297.288 296.37 296.267 296.082 296.057 296.662 299.359 300.38 300.8 300.803 300.293 300.624 300.627 300.682 300.795 300.833 300.786 300.725 300.747 300.78 300.768 300.759 300.77 300.737 300.688 300.655 300.643 300.637 300.62 300.591 300.562 300.522 300.459 300.385 300.314 300.301 300.334 300.342 300.251 300.187 300.16 300.113 300.059 300.083 300.113 300.145 300.254 300.398 300.498 300.551 300.579 300.572 300.52 300.425 300.33 300.252 300.161 300.045 299.879 299.662 299.44 299.231 299.059 299.013 298.973 298.881 298.789 298.797 298.793 298.775 298.743 298.657 298.57 298.517 298.488 298.463 298.437 298.385 298.293 298.232 298.215 298.223 298.22 298.192 298.186 298.179 298.154 298.144 298.098 298.041 298.083 298.084 298.05 298.129 298.262 298.17 298.147 298.173 298.034 297.856 297.463 295.371 293.231 294.842 298.036 298.178 298.535 298.87 298.612 297.977 297.941 298.119 298.196 298.266 298.237 297.854 297.829 297.814 297.697 297.648 297.439 296.841 296.493 296.598 296.682 296.657 296.871 296.788 296.602 296.418 296.5 297.095 298.162 299.04 299.495 299.654 299.686 299.667 299.632 299.655 299.648 299.568 299.419 299.334 299.328 299.329 299.268 299.245 299.271 299.253 299.143 299.089 299.043 299.002 299.054 299.107 299.116 299.198 299.433 299.499 299.539 299.586 299.686 299.916 299.98 299.712 297.797 297.869 297.573 296.813 296.103 296.236 296.103 296.028 295.671 295.602 295.424 294.281 292.888 292.228 292.081 292.383 292.289 291.842 292.736 295.293 298.006 299.52 300.05 300.136 299.818 299.73 299.839 299.885 299.807 299.748 299.668 299.623 299.71 299.82 299.912 300.027 300.191 300.31 300.321 300.258 300.213 300.235 300.239 300.246 300.255 300.198 300.11 300.026 299.934 299.943 300.081 300.292 300.441 300.369 300.252 300.208 300.269 300.354 300.446 300.512 300.466 300.438 300.433 300.249 299.619 298.543 298.321 298.678 300.051 300.226 300.211 299.969 299.32 299.15 299.033 300.198 300.076 298.098 296.981 298.814 300.209 300.368 300.022 300.051 300.007 300.242 300.405 299.181 297.553 296.826 296.089 295.949 296.478 297.703 298.73 299.647 300.447 300.832 300.861 300.7 300.506 300.443 300.485 300.582 300.65 300.596 300.513 300.453 300.414 300.357 300.293 300.252 300.234 300.201 300.18 300.189 300.212 300.212 300.192 300.162 300.125 300.055 299.945 299.826 299.717 299.644 299.623 299.625 299.569 299.478 299.425 299.378 299.299 299.274 299.293 299.335 299.443 299.644 299.85 300.004 300.08 300.076 300.005 299.886 299.784 299.749 299.702 299.634 299.507 299.285 299.045 298.821 298.604 298.492 298.409 298.288 298.167 298.16 298.136 298.082 298.036 297.97 297.893 297.855 297.856 297.845 297.846 297.835 297.788 297.771 297.808 297.867 297.888 297.897 297.965 298.04 298.076 298.11 298.113 298.092 298.127 298.118 298.1 298.187 298.261 298.151 298.181 298.224 297.977 297.764 297.027 295.39 293.239 295.09 298.219 298.276 298.521 298.693 298.108 297.749 298.155 298.474 298.776 298.927 299.291 298.603 298.495 298.955 299.202 299.892 299.615 298.139 297.241 297.039 296.89 296.831 297.351 297.332 297.216 297.292 297.901 298.685 299.129 299.436 299.6 299.644 299.645 299.638 299.669 299.741 299.743 299.647 299.478 299.406 299.396 299.368 299.291 299.283 299.295 299.281 299.279 299.275 299.165 299.046 299.08 299.121 299.132 299.235 299.521 299.578 299.649 299.712 299.817 299.948 299.861 298.587 298.316 298.178 297.617 297.035 296.56 296.742 296.724 296.381 295.849 295.762 295.776 294.748 293.003 292.099 291.991 291.939 291.804 291.472 292.692 295.281 298.263 298.759 299.782 299.924 299.49 299.355 299.494 299.63 299.724 299.793 299.736 299.658 299.705 299.78 299.867 299.996 300.129 300.209 300.239 300.231 300.246 300.301 300.321 300.319 300.303 300.24 300.132 300.006 299.9 299.952 300.106 300.291 300.423 300.386 300.31 300.281 300.344 300.446 300.535 300.561 300.485 300.481 300.385 299.956 298.297 297.902 298.51 299.228 300.054 300.033 299.651 298.721 298.254 297.816 297.915 299.566 299.808 298.373 296.833 298.592 299.916 300.186 300.327 300.558 300.738 300.368 299.164 297.838 298.997 298.45 297.603 298.332 299.397 300.015 300.4 300.704 300.879 300.789 300.585 300.336 300.123 300.108 300.19 300.257 300.197 300.082 300.023 299.987 299.921 299.852 299.784 299.713 299.669 299.672 299.68 299.695 299.721 299.741 299.729 299.676 299.587 299.469 299.319 299.17 299.048 298.916 298.811 298.773 298.745 298.633 298.533 298.449 298.32 298.211 298.187 298.247 298.385 298.577 298.773 298.916 298.968 298.96 298.895 298.776 298.683 298.688 298.689 298.661 298.575 298.369 298.14 297.931 297.696 297.486 297.316 297.152 296.995 296.937 296.868 296.763 296.69 296.667 296.653 296.653 296.645 296.602 296.555 296.489 296.445 296.532 296.691 296.881 297.014 297.067 297.191 297.352 297.475 297.609 297.756 297.873 297.995 298.024 298.0 298.055 298.134 298.042 298.053 298.067 297.796 297.603 296.945 295.271 293.172 294.652 298.145 298.265 298.722 299.707 298.18 297.919 298.351 299.065 299.501 300.122 301.115 300.657 300.303 300.494 300.833 301.961 301.547 299.461 297.785 297.521 297.379 297.315 297.83 298.659 298.776 298.847 299.005 299.226 299.398 299.49 299.538 299.564 299.571 299.598 299.684 299.714 299.667 299.582 299.522 299.533 299.523 299.454 299.359 299.384 299.462 299.538 299.615 299.586 299.444 299.316 299.326 299.34 299.35 299.423 299.679 299.74 299.81 299.808 299.861 299.956 299.818 298.725 299.75 299.56 297.335 296.71 296.824 297.224 298.339 297.633 296.579 296.719 297.368 296.278 294.126 292.704 292.39 291.911 291.692 291.596 293.479 295.889 298.339 298.661 299.516 299.966 299.434 299.137 299.151 299.294 299.57 299.738 299.686 299.611 299.682 299.715 299.771 299.909 300.041 300.082 300.113 300.127 300.135 300.153 300.173 300.184 300.191 300.201 300.205 300.187 300.158 300.217 300.31 300.367 300.35 300.273 300.208 300.207 300.313 300.419 300.515 300.603 300.633 300.541 300.205 299.299 297.821 298.07 299.38 299.972 299.878 299.736 299.091 298.096 297.279 296.717 296.673 297.693 299.527 299.199 298.709 298.901 299.791 300.086 300.271 300.503 300.677 300.133 299.004 298.993 299.759 299.824 299.879 300.148 300.589 300.714 300.746 300.775 300.727 300.579 300.374 300.107 299.84 299.816 299.89 299.927 299.837 299.737 299.69 299.64 299.562 299.522 299.469 299.395 299.353 299.361 299.337 299.29 299.248 299.239 299.218 299.152 299.036 298.918 298.773 298.623 298.498 298.336 298.157 298.044 298.007 297.924 297.829 297.742 297.63 297.533 297.514 297.573 297.669 297.724 297.766 297.79 297.787 297.798 297.795 297.759 297.72 297.722 297.694 297.639 297.538 297.324 297.079 296.867 296.636 296.399 296.208 296.054 295.901 295.819 295.735 295.634 295.582 295.593 295.63 295.665 295.639 295.551 295.412 295.251 295.237 295.399 295.646 295.957 296.158 296.204 296.222 296.316 296.461 296.737 297.098 297.425 297.712 297.829 297.819 297.87 298.051 298.031 298.016 298.065 297.985 297.839 297.268 295.905 293.168 293.766 296.673 297.801 298.973 299.293 298.48 298.116 298.74 299.785 300.445 302.484 303.489 302.89 301.814 301.801 301.919 301.883 300.937 299.378 297.994 297.851 298.391 298.828 298.95 299.015 299.053 299.064 299.066 299.151 299.255 299.328 299.36 299.42 299.483 299.562 299.664 299.625 299.549 299.52 299.587 299.644 299.632 299.568 299.507 299.583 299.724 299.847 299.878 299.795 299.716 299.702 299.75 299.743 299.735 299.724 300.038 300.021 300.016 299.932 300.023 300.127 299.768 298.409 299.097 299.331 296.911 296.428 296.834 297.568 298.55 298.427 297.182 297.555 297.576 296.646 295.382 294.498 293.568 293.24 293.294 294.012 294.808 296.479 298.434 299.553 300.271 300.561 299.849 299.289 299.061 299.075 299.389 299.588 299.557 299.542 299.676 299.725 299.784 299.898 299.985 300.004 300.047 300.078 300.044 300.031 300.055 300.092 300.125 300.194 300.301 300.367 300.339 300.332 300.341 300.308 300.205 300.094 300.047 300.103 300.268 300.379 300.519 300.706 300.741 300.345 299.758 298.367 298.045 298.834 299.749 299.827 299.55 299.409 298.661 297.755 296.91 296.182 296.011 296.854 298.9 299.641 299.2 298.931 299.389 300.082 300.202 299.861 300.471 300.35 300.084 299.987 300.223 300.374 300.439 300.555 300.674 300.595 300.543 300.556 300.56 300.529 300.424 300.218 299.972 299.891 299.878 299.867 299.83 299.804 299.759 299.669 299.548 299.484 299.419 299.354 299.331 299.31 299.249 299.178 299.106 299.038 298.971 298.889 298.785 298.7 298.575 298.405 298.228 298.064 297.89 297.765 297.727 297.699 297.652 297.602 297.549 297.508 297.481 297.474 297.485 297.466 297.445 297.438 297.421 297.383 297.353 297.326 297.31 297.314 297.284 297.213 297.083 296.885 296.677 296.485 296.283 296.106 295.966 295.845 295.729 295.681 295.649 295.614 295.576 295.597 295.684 295.789 295.814 295.754 295.659 295.567 295.628 295.82 296.01 296.242 296.451 296.416 296.306 296.261 296.334 296.628 297.019 297.339 297.582 297.733 297.74 297.79 298.087 298.149 298.137 298.283 298.405 298.21 297.784 296.695 293.845 293.211 295.053 298.049 299.447 300.253 300.114 299.333 299.484 300.26 301.375 303.116 303.397 302.675 301.698 301.087 300.888 300.426 299.65 298.66 298.077 298.331 298.888 298.846 298.652 298.553 298.571 298.611 298.634 298.744 298.889 299.006 299.074 299.18 299.297 299.415 299.544 299.554 299.549 299.595 299.683 299.721 299.749 299.772 299.781 299.847 299.968 300.093 300.155 300.141 300.15 300.193 300.208 300.221 300.264 300.228 300.482 300.379 300.32 300.197 300.239 300.151 299.431 297.602 297.561 297.654 297.163 296.929 297.398 297.624 297.875 298.021 297.445 297.322 297.182 297.341 297.091 296.214 296.434 296.019 296.361 296.548 296.595 297.076 299.115 301.522 302.613 302.038 300.596 299.581 299.188 299.057 299.245 299.44 299.487 299.54 299.695 299.801 299.912 300.02 300.056 300.089 300.147 300.165 300.099 300.076 300.107 300.15 300.172 300.222 300.312 300.35 300.255 300.16 300.116 300.088 300.044 299.986 299.972 300.06 300.248 300.375 300.579 300.817 300.687 299.877 298.432 297.973 298.51 299.171 299.498 299.535 299.296 299.379 299.277 298.914 297.323 296.217 295.734 296.463 299.003 299.813 299.85 299.849 300.064 300.144 300.145 300.204 300.339 300.305 300.188 300.156 300.309 300.375 300.363 300.388 300.451 300.446 300.485 300.555 300.604 300.634 300.609 300.506 300.385 300.332 300.281 300.241 300.231 300.227 300.176 300.075 299.942 299.85 299.77 299.71 299.681 299.614 299.534 299.489 299.454 299.364 299.273 299.189 299.092 299.006 298.884 298.7 298.469 298.284 298.132 298.026 297.975 297.945 297.907 297.856 297.817 297.814 297.792 297.755 297.741 297.739 297.748 297.777 297.757 297.631 297.508 297.427 297.391 297.407 297.419 297.388 297.275 297.121 296.974 296.839 296.708 296.629 296.574 296.527 296.502 296.543 296.598 296.644 296.657 296.675 296.773 296.912 297.009 297.043 297.062 297.081 297.206 297.346 297.394 297.461 297.605 297.559 297.441 297.352 297.278 297.377 297.563 297.646 297.647 297.749 297.768 297.813 298.127 298.222 298.209 298.421 298.673 298.466 298.298 297.731 295.83 293.482 294.151 296.981 299.896 301.69 301.863 301.021 300.232 300.429 300.878 300.515 300.455 300.683 300.123 299.394 299.22 298.881 298.252 298.471 298.402 298.431 298.544 298.351 298.105 298.026 298.068 298.139 298.208 298.36 298.545 298.696 298.8 298.934 299.058 299.164 299.315 299.459 299.579 299.681 299.756 299.831 299.954 300.076 300.11 300.124 300.219 300.369 300.521 300.561 300.554 300.543 300.509 300.565 300.694 300.716 300.513 300.427 300.333 300.157 300.038 299.811 299.134 297.704 297.384 297.715 297.322 298.046 297.723 298.58 299.225 298.513 298.088 297.676 299.198 299.899 299.382 299.572 299.8 298.924 298.826 297.957 297.421 297.964 298.467 300.558 301.345 301.055 300.776 299.976 299.357 299.076 299.168 299.359 299.478 299.552 299.654 299.804 299.959 300.09 300.194 300.277 300.304 300.272 300.214 300.183 300.17 300.169 300.164 300.179 300.215 300.22 300.138 300.021 299.914 299.855 299.855 299.831 299.824 299.9 300.051 300.182 300.418 300.643 300.403 299.223 298.384 299.402 299.571 299.128 299.286 299.276 299.142 299.268 299.546 299.69 299.15 297.417 296.065 296.441 298.949 299.754 300.036 300.146 300.161 300.01 299.965 300.097 300.266 300.246 300.198 300.21 300.32 300.362 300.347 300.365 300.444 300.504 300.564 300.615 300.659 300.71 300.723 300.699 300.692 300.712 300.698 300.683 300.665 300.645 300.612 300.551 300.457 300.384 300.32 300.26 300.21 300.129 300.043 299.991 299.95 299.877 299.822 299.776 299.698 299.608 299.497 299.358 299.183 299.016 298.881 298.781 298.693 298.618 298.55 298.467 298.387 298.39 298.397 298.39 298.398 298.401 298.397 298.407 298.384 298.271 298.167 298.098 298.038 298.006 297.995 297.967 297.885 297.785 297.694 297.613 297.553 297.567 297.605 297.643 297.711 297.799 297.871 297.951 298.041 298.067 298.106 298.174 298.225 298.276 298.324 298.336 298.361 298.394 298.342 298.278 298.276 298.211 298.131 298.058 297.874 297.762 297.778 297.732 297.593 297.667 297.732 297.794 298.071 298.182 298.179 298.39 298.71 298.655 298.775 298.655 296.936 294.982 293.926 296.395 299.835 302.137 302.706 301.792 300.864 299.47 298.297 297.209 297.618 298.471 298.197 297.59 297.31 297.02 297.674 297.905 298.213 298.184 298.029 297.828 297.7 297.685 297.731 297.788 297.841 297.969 298.147 298.315 298.451 298.583 298.693 298.791 298.967 299.189 299.364 299.478 299.556 299.7 299.906 300.097 300.218 300.312 300.401 300.437 300.373 300.274 300.267 300.377 300.498 300.521 300.585 300.628 300.221 300.235 300.132 299.961 299.191 298.679 298.45 298.357 298.232 297.53 298.557 298.311 298.94 300.366 300.976 300.986 299.189 299.749 300.567 300.692 300.689 300.969 301.475 301.591 299.629 299.053 296.609 296.244 296.63 298.055 298.573 299.293 299.829 300.042 299.434 298.938 298.995 299.252 299.414 299.504 299.593 299.771 299.937 300.073 300.233 300.331 300.318 300.26 300.221 300.166 300.118 300.115 300.158 300.194 300.206 300.196 300.161 300.024 299.807 299.639 299.621 299.604 299.582 299.617 299.672 299.716 299.866 299.998 299.86 299.163 299.368 299.469 298.943 298.54 299.046 299.109 299.046 299.149 299.494 299.915 299.94 299.137 297.666 296.827 297.956 299.523 300.026 300.085 299.771 299.468 299.524 299.845 300.157 300.169 300.15 300.182 300.264 300.325 300.364 300.424 300.525 300.594 300.634 300.65 300.666 300.701 300.722 300.726 300.735 300.744 300.737 300.732 300.726 300.724 300.725 300.7 300.639 300.603 300.568 300.526 300.497 300.471 300.413 300.33 300.251 300.207 300.179 300.15 300.108 300.061 299.993 299.915 299.837 299.738 299.635 299.56 299.508 299.465 299.427 299.356 299.243 299.227 299.252 299.267 299.273 299.253 299.213 299.18 299.159 299.12 299.09 299.068 299.015 298.947 298.887 298.836 298.784 298.726 298.673 298.634 298.635 298.69 298.757 298.816 298.885 298.94 298.951 298.969 299.037 299.027 298.986 298.953 298.919 298.914 298.887 298.782 298.631 298.564 298.471 298.355 298.266 298.16 298.081 298.03 297.852 297.676 297.661 297.64 297.527 297.583 297.656 297.723 297.988 298.176 298.21 298.351 298.657 298.831 299.148 299.261 298.043 296.25 294.563 295.788 297.12 299.243 301.972 302.746 300.856 297.844 295.475 294.707 295.406 295.749 296.158 296.787 297.561 297.572 297.777 297.821 297.795 297.703 297.543 297.385 297.281 297.259 297.275 297.304 297.341 297.426 297.556 297.703 297.831 297.949 298.087 298.242 298.442 298.637 298.774 298.861 298.934 299.061 299.276 299.561 299.9 300.103 300.074 299.801 299.355 299.038 298.801 299.25 299.866 299.622 299.619 299.473 299.059 299.236 299.251 299.329 298.667 299.868 299.08 299.309 298.677 298.427 298.482 299.192 300.232 301.052 301.395 301.048 300.334 299.85 299.728 299.843 300.228 301.112 302.096 302.594 301.877 298.95 295.003 293.314 293.997 294.983 296.381 297.493 298.375 298.473 298.595 298.345 298.547 298.966 299.229 299.381 299.512 299.686 299.831 299.956 300.113 300.188 300.174 300.136 300.072 299.999 300.005 300.082 300.209 300.334 300.354 300.253 300.096 299.896 299.451 299.417 299.422 299.387 299.322 299.283 299.205 299.129 299.141 299.169 299.205 299.378 299.437 299.32 298.458 298.762 298.922 298.998 298.993 299.093 299.404 299.831 300.142 299.857 299.338 298.613 299.296 299.828 299.99 299.771 299.078 298.352 299.06 299.544 299.945 300.031 300.058 300.095 300.158 300.224 300.298 300.391 300.51 300.589 300.632 300.652 300.644 300.625 300.61 300.603 300.611 300.596 300.562 300.536 300.513 300.513 300.528 300.52 300.463 300.442 300.434 300.415 300.406 300.417 300.395 300.338 300.269 300.239 300.207 300.162 300.138 300.144 300.115 300.068 300.052 300.019 299.959 299.915 299.907 299.924 299.94 299.911 299.822 299.809 299.838 299.86 299.865 299.849 299.835 299.823 299.825 299.825 299.813 299.799 299.786 299.775 299.729 299.669 299.629 299.581 299.541 299.516 299.499 299.495 299.491 299.488 299.497 299.515 299.486 299.435 299.4 299.323 299.229 299.14 299.024 298.906 298.795 298.647 298.458 298.359 298.261 298.16 298.104 298.018 297.926 297.883 297.811 297.684 297.645 297.623 297.538 297.591 297.689 297.785 298.037 298.307 298.416 298.501 298.699 298.962 299.353 299.65 299.2 298.26 297.339 295.879 296.053 296.9 299.315 300.676 299.688 297.065 294.749 293.995 294.063 293.83 294.777 296.713 297.499 297.481 297.449 297.457 297.342 297.149 296.982 296.843 296.775 296.77 296.753 296.739 296.755 296.781 296.84 296.935 297.046 297.182 297.368 297.572 297.761 297.854 297.926 298.013 298.123 298.245 298.489 298.891 299.365 299.483 299.261 298.843 298.274 297.543 297.61 298.79 300.154 299.224 298.483 298.403 300.495 300.222 299.91 299.902 299.939 300.074 299.203 298.506 298.359 297.546 297.504 297.754 299.433 300.662 300.523 299.814 298.826 298.431 298.167 298.589 299.183 300.971 301.841 302.568 301.461 297.963 293.533 291.346 291.545 292.282 293.961 295.199 295.75 295.799 296.165 296.963 297.678 298.409 298.912 299.165 299.276 299.374 299.492 299.628 299.765 299.835 299.899 299.943 299.859 299.785 299.822 299.89 300.05 300.367 300.425 300.102 299.617 299.294 298.911 299.098 299.162 299.092 298.966 298.842 298.667 298.565 298.572 298.613 298.891 299.372 299.457 298.8 298.473 298.693 298.874 298.918 298.933 299.02 299.261 299.638 300.027 300.04 299.858 299.706 299.805 300.002 299.926 299.216 298.109 297.157 298.352 299.276 299.744 299.888 299.948 299.999 300.071 300.135 300.194 300.265 300.349 300.392 300.422 300.448 300.461 300.427 300.376 300.336 300.332 300.331 300.323 300.314 300.289 300.252 300.229 300.208 300.171 300.146 300.132 300.115 300.087 300.05 300.02 300.001 299.984 299.971 299.948 299.909 299.883 299.906 299.91 299.892 299.883 299.854 299.795 299.743 299.732 299.771 299.815 299.823 299.785 299.79 299.819 299.85 299.882 299.915 299.946 299.962 299.978 300.007 300.016 299.997 299.982 299.986 299.946 299.882 299.827 299.764 299.703 299.653 299.582 299.517 299.485 299.453 299.412 299.433 299.436 299.382 299.274 299.138 299.009 298.893 298.737 298.589 298.492 298.4 298.265 298.166 298.071 297.996 298.01 297.964 297.838 297.751 297.754 297.716 297.683 297.663 297.623 297.686 297.819 297.959 298.167 298.449 298.625 298.65 298.533 298.57 298.892 299.436 299.562 299.346 299.257 297.802 296.227 295.724 297.068 298.382 298.308 297.285 296.305 295.638 294.958 294.5 296.14 296.757 297.115 297.121 297.116 297.028 296.753 296.486 296.323 296.234 296.277 296.328 296.277 296.186 296.122 296.087 296.095 296.151 296.248 296.401 296.604 296.816 296.98 297.028 297.082 297.218 297.48 297.741 298.124 298.672 299.209 299.246 299.042 297.987 297.473 297.625 298.837 299.742 300.281 300.29 299.977 300.159 299.827 299.805 299.59 299.453 299.244 298.784 298.081 297.266 297.274 296.911 297.181 298.232 299.268 300.121 299.81 298.892 297.831 296.461 296.35 297.001 298.879 300.142 301.079 301.28 299.965 297.949 293.728 290.719 289.911 290.669 292.48 293.716 294.045 293.782 294.085 295.04 296.649 297.559 298.35 298.771 298.892 298.908 298.987 299.118 299.224 299.318 299.491 299.641 299.632 299.616 299.597 299.536 299.745 300.298 300.308 299.421 299.0 298.576 298.55 298.63 298.726 298.626 298.474 298.333 298.13 298.078 298.187 298.363 298.787 299.297 299.32 298.597 298.424 298.743 298.952 298.336 298.865 298.783 298.97 299.396 299.826 299.905 299.856 299.827 299.864 299.9 299.749 299.323 298.626 297.951 298.533 299.263 299.679 299.783 299.805 299.841 299.91 299.961 299.998 300.035 300.072 300.076 300.069 300.069 300.085 300.086 300.059 300.014 299.971 299.949 299.944 299.951 299.95 299.909 299.86 299.819 299.796 299.761 299.722 299.695 299.657 299.59 299.551 299.544 299.52 299.482 299.476 299.477 299.454 299.444 299.45 299.455 299.445 299.415 299.368 299.324 299.317 299.364 299.409 299.428 299.433 299.457 299.477 299.498 299.536 299.568 299.592 299.61 299.617 299.647 299.668 299.648 299.596 299.563 299.511 299.446 299.383 299.3 299.22 299.158 299.073 299.013 299.013 299.012 298.977 299.013 299.058 299.041 298.934 298.779 298.616 298.477 298.356 298.28 298.247 298.202 298.084 297.987 297.908 297.85 297.853 297.787 297.615 297.486 297.508 297.572 297.653 297.758 297.828 297.868 297.962 298.092 298.276 298.493 298.553 298.34 297.975 297.526 297.568 297.924 298.597 299.175 299.461 298.256 295.893 294.964 295.898 296.357 296.83 296.999 296.691 296.028 296.028 296.281 296.523 296.876 296.965 296.809 296.64 296.429 296.135 295.916 295.761 295.697 295.804 295.878 295.81 295.675 295.524 295.422 295.38 295.392 295.444 295.576 295.764 295.969 296.177 296.304 296.411 296.594 296.972 297.439 298.047 298.84 299.675 299.972 299.651 298.958 299.061 299.356 299.158 299.329 299.227 299.421 299.569 299.819 298.654 298.05 298.441 298.25 297.773 296.843 296.406 296.034 296.02 296.059 296.204 298.198 298.99 299.097 299.436 297.996 296.677 294.797 294.464 294.362 295.749 296.782 299.644 300.12 300.459 297.717 295.116 291.183 289.521 290.221 292.989 294.379 294.664 294.053 293.723 294.257 295.684 296.877 297.667 298.141 298.339 298.347 298.39 298.483 298.577 298.733 298.982 299.21 299.37 299.523 299.513 299.406 299.709 300.231 299.357 298.065 297.956 297.906 298.032 298.073 298.17 298.021 297.821 297.661 297.471 297.46 297.629 297.877 298.383 298.891 298.674 298.204 298.247 298.627 298.495 297.815 298.324 298.306 298.303 298.939 299.542 299.652 299.673 299.729 299.784 299.769 299.615 298.735 298.474 298.927 299.114 299.382 299.604 299.637 299.624 299.614 299.636 299.681 299.731 299.778 299.81 299.81 299.786 299.743 299.694 299.678 299.671 299.651 299.599 299.545 299.502 299.475 299.475 299.471 299.434 299.386 299.349 299.305 299.251 299.214 299.193 299.146 299.108 299.085 299.031 298.957 298.93 298.93 298.907 298.875 298.861 298.852 298.83 298.821 298.821 298.822 298.85 298.914 298.975 299.017 299.063 299.103 299.098 299.086 299.093 299.103 299.125 299.156 299.159 299.139 299.119 299.083 299.033 299.004 298.956 298.893 298.829 298.751 298.674 298.612 298.543 298.499 298.51 298.525 298.511 298.551 298.603 298.603 298.53 298.406 298.275 298.169 298.095 298.046 298.015 297.962 297.834 297.773 297.774 297.764 297.694 297.558 297.384 297.257 297.253 297.356 297.532 297.772 298.0 298.082 298.156 298.281 298.449 298.455 298.165 297.583 296.616 296.64 296.688 296.944 297.396 297.856 298.051 297.819 296.414 295.468 295.261 295.584 295.953 296.051 296.033 296.072 296.131 296.317 296.561 296.733 296.655 296.439 296.227 296.02 295.798 295.613 295.468 295.42 295.478 295.498 295.426 295.292 295.09 294.915 294.818 294.776 294.771 294.856 295.005 295.187 295.449 295.699 295.87 296.056 296.447 296.992 297.771 298.88 300.127 300.42 299.858 299.851 299.564 298.856 298.375 298.32 298.08 298.241 298.806 298.728 296.981 297.27 297.093 297.343 296.547 294.946 294.244 294.597 293.926 294.286 295.675 295.967 296.427 298.205 297.886 296.283 294.711 293.523 291.93 292.541 293.862 296.167 297.781 299.17 300.134 299.245 296.066 291.965 290.084 291.515 294.701 296.034 295.341 294.756 294.656 294.969 295.814 296.571 296.997 297.408 297.671 297.706 297.72 297.777 297.902 298.154 298.467 298.758 299.101 299.463 299.609 299.648 300.029 299.875 297.976 297.305 296.83 297.038 297.514 297.631 297.702 297.413 297.084 296.867 296.736 296.767 296.925 297.164 297.701 298.18 297.616 297.19 297.315 297.759 297.674 297.358 297.151 296.452 297.421 298.209 299.092 299.295 299.426 299.567 299.667 299.645 299.482 299.151 298.735 298.831 299.217 299.344 299.399 299.382 299.369 299.364 299.363 299.412 299.487 299.544 299.548 299.519 299.482 299.432 299.357 299.288 299.239 299.2 299.162 299.141 299.115 299.076 299.043 299.044 299.023 298.972 298.916 298.871 298.814 298.763 298.736 298.702 298.656 298.615 298.571 298.51 298.452 298.41 298.389 298.371 298.344 298.314 298.287 298.288 298.305 298.317 298.33 298.385 298.464 298.547 298.642 298.701 298.699 298.682 298.685 298.68 298.685 298.709 298.712 298.659 298.612 298.571 298.537 298.517 298.471 298.401 298.332 298.26 298.175 298.097 298.029 297.982 297.963 297.952 297.941 297.972 298.01 298.039 298.065 298.052 298.01 297.964 297.918 297.851 297.8 297.752 297.659 297.634 297.678 297.69 297.588 297.438 297.299 297.199 297.174 297.262 297.422 297.664 298.011 298.26 298.36 298.393 298.382 298.04 297.584 295.994 295.746 296.527 296.579 296.656 296.757 296.905 296.961 296.777 296.306 295.947 295.662 295.64 295.74 295.902 296.076 296.204 296.31 296.427 296.474 296.447 296.281 296.095 295.927 295.775 295.612 295.457 295.346 295.304 295.287 295.23 295.148 295.027 294.795 294.548 294.399 294.327 294.302 294.348 294.439 294.569 294.822 295.114 295.325 295.523 295.877 296.397 297.217 298.453 299.48 299.289 300.454 300.082 299.17 298.198 297.893 297.784 297.984 297.67 297.527 297.704 296.243 295.98 295.578 295.154 294.78 293.555 292.87 293.47 293.514 293.236 292.255 293.866 295.064 295.132 295.966 294.418 292.521 291.151 290.569 291.343 292.437 293.568 295.3 296.843 299.255 298.858 296.052 292.62 291.04 293.635 295.589 294.966 294.088 293.817 294.122 294.661 295.485 296.058 296.4 296.746 297.014 297.1 297.167 297.261 297.412 297.694 298.056 298.433 298.919 299.405 299.748 300.039 300.457 299.694 297.673 297.363 296.523 296.801 297.207 297.293 297.296 296.959 296.616 296.41 296.347 296.473 296.665 296.842 297.155 297.335 296.526 295.459 295.165 296.207 295.824 295.014 293.958 293.986 296.324 297.475 298.49 298.798 299.006 299.193 299.305 299.252 298.948 298.774 298.604 298.459 299.043 299.144 299.147 299.094 299.081 299.092 299.094 299.132 299.185 299.21 299.178 299.118 299.069 299.043 299.035 298.991 298.928 298.863 298.805 298.787 298.778 298.748 298.69 298.668 298.648 298.606 298.545 298.495 298.442 298.388 298.347 298.315 298.266 298.206 298.164 298.144 298.098 298.042 298.026 298.021 297.986 297.948 297.928 297.908 297.896 297.884 297.855 297.861 297.929 298.025 298.146 298.25 298.305 298.328 298.345 298.32 298.278 298.248 298.225 298.174 298.128 298.078 298.012 297.962 297.896 297.809 297.73 297.666 297.572 297.469 297.393 297.338 297.288 297.254 297.244 297.252 297.285 297.353 297.46 297.534 297.589 297.649 297.699 297.702 297.712 297.723 297.678 297.625 297.625 297.639 297.63 297.58 297.52 297.471 297.47 297.474 297.428 297.424 297.646 297.915 297.846 297.567 297.261 296.965 296.233 294.787 295.304 296.801 296.977 296.977 296.92 296.774 296.647 296.555 296.435 296.321 296.279 296.263 296.284 296.44 296.581 296.621 296.55 296.47 296.357 296.193 295.998 295.849 295.712 295.573 295.423 295.3 295.209 295.14 295.045 294.934 294.819 294.664 294.411 294.165 293.988 293.877 293.836 293.858 293.913 294.021 294.263 294.544 294.762 294.987 295.332 295.762 296.479 297.589 298.539 299.665 299.167 299.0 297.802 297.236 297.106 297.018 296.623 296.209 296.428 296.459 295.327 294.998 294.728 294.261 293.665 292.725 292.124 291.804 291.843 292.753 292.133 292.989 293.413 293.708 293.588 292.533 290.717 289.637 289.395 290.309 291.578 292.738 294.243 296.272 297.637 297.252 295.104 293.17 293.57 295.463 295.645 293.597 290.341 289.734 290.538 292.311 294.053 294.85 295.471 295.933 296.278 296.475 296.663 296.847 297.03 297.301 297.693 298.156 298.742 299.291 299.801 300.31 300.527 299.179 298.541 297.812 296.906 296.845 297.192 297.057 296.909 296.734 296.594 296.488 296.423 296.596 296.828 296.972 296.918 296.497 295.3 293.972 293.35 293.606 292.867 292.204 291.316 292.892 295.372 296.813 297.786 298.141 298.415 298.658 298.738 298.556 297.916 298.028 298.473 298.636 298.756 298.862 298.902 298.833 298.805 298.816 298.834 298.862 298.872 298.859 298.844 298.803 298.739 298.699 298.705 298.693 298.667 298.641 298.587 298.518 298.469 298.427 298.371 298.335 298.317 298.293 298.233 298.155 298.088 298.035 297.984 297.952 297.917 297.857 297.779 297.742 297.697 297.641 297.616 297.613 297.59 297.575 297.571 297.523 297.489 297.482 297.457 297.419 297.44 297.501 297.61 297.776 297.924 298.02 298.063 298.046 298.0 297.947 297.885 297.802 297.723 297.636 297.527 297.44 297.361 297.268 297.178 297.106 297.003 296.886 296.795 296.722 296.654 296.617 296.615 296.607 296.618 296.67 296.763 296.861 296.978 297.129 297.307 297.467 297.587 297.656 297.661 297.631 297.612 297.633 297.739 297.901 298.057 298.145 297.988 297.382 296.653 296.114 296.09 296.242 296.035 294.563 293.76 294.038 294.326 293.893 294.944 296.891 297.235 297.283 297.334 297.233 297.097 297.021 296.984 296.914 296.879 296.864 296.829 296.797 296.734 296.602 296.402 296.24 296.093 295.955 295.83 295.694 295.526 295.344 295.158 295.014 294.888 294.756 294.61 294.512 294.411 294.27 294.07 293.87 293.669 293.491 293.379 293.372 293.418 293.535 293.784 294.03 294.243 294.483 294.822 295.166 295.719 296.593 297.16 297.961 298.177 298.781 297.623 297.215 296.468 296.288 296.205 294.191 295.259 295.311 294.311 294.02 293.621 292.967 292.399 291.771 290.91 290.496 290.729 291.147 291.434 291.589 291.923 292.168 291.933 291.079 289.45 287.702 287.244 288.997 289.675 290.804 292.842 294.401 295.467 295.093 293.792 293.737 295.319 295.963 294.798 291.412 287.862 287.406 287.791 288.984 290.419 292.586 294.055 294.729 295.324 295.649 295.905 296.135 296.425 296.784 297.239 297.756 298.395 299.014 299.646 300.236 300.319 298.747 298.74 298.089 297.265 297.285 296.89 296.983 296.801 296.757 296.772 296.715 296.645 296.863 297.089 296.802 294.791 294.597 293.732 292.991 292.013 291.132 290.336 290.114 290.46 292.693 294.651 296.099 296.943 297.295 297.608 297.927 298.042 297.66 296.776 297.493 298.077 298.259 298.347 298.448 298.524 298.517 298.529 298.554 298.591 298.649 298.671 298.656 298.652 298.637 298.569 298.489 298.425 298.377 298.371 298.401 298.407 298.343 298.276 298.219 298.164 298.11 298.068 298.038 297.989 297.892 297.808 297.747 297.661 297.567 297.508 297.442 297.335 297.263 297.201 297.122 297.057 297.049 297.043 297.045 297.047 296.983 296.942 296.953 296.957 296.919 296.911 296.933 297.013 297.219 297.426 297.569 297.633 297.646 297.639 297.628 297.603 297.517 297.414 297.31 297.199 297.09 296.976 296.841 296.692 296.563 296.425 296.29 296.183 296.088 296.01 295.975 295.976 295.962 295.956 295.963 295.973 296.032 296.153 296.321 296.568 296.888 297.124 297.266 297.375 297.468 297.526 297.635 297.879 298.112 298.186 297.987 297.101 295.536 294.17 293.025 293.134 293.57 292.942 291.442 291.219 293.175 295.032 295.787 296.629 297.199 297.373 297.482 297.616 297.579 297.46 297.346 297.2 296.979 296.874 296.878 296.856 296.699 296.532 296.372 296.203 296.043 295.892 295.763 295.632 295.463 295.272 295.082 294.896 294.732 294.576 294.423 294.293 294.227 294.14 294.01 293.845 293.67 293.455 293.234 293.066 293.012 293.021 293.114 293.329 293.533 293.719 293.949 294.284 294.604 295.054 295.702 296.214 296.824 297.13 297.115 296.944 296.158 295.648 295.611 295.038 294.308 295.987 294.908 293.781 292.816 292.268 291.858 291.276 290.601 290.399 288.838 288.992 289.43 289.853 290.101 290.28 290.198 289.794 289.68 288.596 287.537 286.629 287.241 288.606 289.701 290.793 292.204 293.005 292.94 293.117 293.659 295.759 295.189 293.077 288.756 286.074 285.631 286.329 287.934 289.105 290.077 291.151 292.452 294.413 294.848 295.08 295.279 295.659 296.128 296.626 297.138 297.806 298.506 299.205 299.764 299.785 299.191 298.643 298.04 297.807 297.596 296.974 296.77 297.103 297.051 297.012 296.963 297.012 297.181 297.262 297.065 294.692 293.996 292.678 291.767 290.754 289.686 288.524 288.232 289.632 291.803 293.639 294.95 295.879 296.305 296.643 296.994 297.206 296.988 296.221 296.838 297.457 297.663 297.79 297.903 297.975 298.033 298.117 298.175 298.222 298.334 298.426 298.465 298.481 298.47 298.418 298.352 298.27 298.193 298.159 298.157 298.152 298.134 298.102 298.048 297.984 297.921 297.846 297.784 297.738 297.644 297.549 297.482 297.39 297.26 297.177 297.11 297.013 296.936 296.862 296.755 296.64 296.594 296.552 296.508 296.473 296.404 296.348 296.343 296.378 296.398 296.41 296.423 296.46 296.616 296.798 296.938 297.008 297.009 296.997 297.016 297.077 297.075 297.012 296.929 296.822 296.675 296.516 296.345 296.165 295.987 295.804 295.623 295.461 295.332 295.246 295.2 295.177 295.136 295.107 295.077 295.021 295.016 295.09 295.222 295.483 295.928 296.298 296.57 296.808 297.011 297.198 297.485 297.83 297.644 296.879 295.641 293.651 290.016 288.011 287.848 289.29 291.219 291.918 291.448 291.349 293.766 295.851 296.856 297.272 297.44 297.584 297.739 297.809 297.644 297.712 297.545 297.276 296.898 296.707 296.727 296.792 296.663 296.52 296.344 296.188 296.006 295.82 295.633 295.43 295.246 295.094 294.951 294.764 294.573 294.412 294.264 294.116 294.01 293.911 293.796 293.646 293.467 293.259 293.033 292.803 292.661 292.599 292.627 292.79 292.996 293.191 293.391 293.673 293.995 294.43 294.939 295.119 294.913 295.159 295.495 295.13 294.675 294.473 294.33 294.162 293.991 294.003 293.895 292.305 291.647 290.959 290.499 290.035 289.209 289.047 287.615 287.767 288.172 288.365 288.223 288.152 287.567 287.449 287.48 286.725 286.186 286.098 286.58 287.564 288.641 289.454 289.933 290.203 291.149 291.912 294.303 294.786 293.403 289.797 286.763 284.982 285.423 286.554 287.48 288.142 288.906 289.773 291.329 292.556 293.997 294.456 294.64 294.994 295.411 295.84 296.313 297.038 297.754 298.391 298.828 298.529 298.575 298.132 297.918 297.806 297.52 296.577 296.334 296.475 297.317 297.294 297.283 297.405 297.32 297.055 295.471 294.129 292.159 290.636 289.822 288.255 286.921 285.947 286.488 288.667 290.023 291.415 293.111 294.277 295.028 295.567 296.012 296.359 296.369 296.223 296.47 296.744 296.818 297.0 297.16 297.24 297.334 297.467 297.56 297.609 297.73 297.874 298.008 298.131 298.174 298.163 298.133 298.073 298.011 297.981 297.95 297.882 297.865 297.846 297.781 297.704 297.673 297.602 297.509 297.44 297.362 297.274 297.212 297.156 297.064 296.998 296.938 296.84 296.756 296.681 296.572 296.439 296.345 296.239 296.125 296.046 295.989 295.927 295.898 295.93 295.978 295.997 296.002 296.021 296.098 296.182 296.239 296.262 296.196 296.127 296.233 296.384 296.494 296.484 296.41 296.299 296.162 296.028 295.893 295.736 295.533 295.303 295.058 294.814 294.618 294.496 294.407 294.303 294.172 294.09 294.03 293.945 293.874 293.876 293.955 294.212 294.754 295.281 295.741 296.134 296.422 296.779 297.289 297.571 296.313 293.284 289.419 286.692 284.107 283.739 285.937 290.021 292.797 293.877 293.984 292.58 293.671 295.824 296.943 297.35 297.446 297.591 297.752 297.829 297.709 297.822 297.683 297.455 296.081 295.686 296.324 296.755 296.77 296.65 296.413 296.173 295.973 295.801 295.63 295.445 295.277 295.126 294.963 294.749 294.547 294.372 294.195 293.982 293.813 293.689 293.579 293.433 293.267 293.091 292.884 292.598 292.358 292.209 292.15 292.227 292.426 292.635 292.825 293.043 293.337 293.746 294.165 293.972 293.297 293.482 293.443 293.468 292.916 292.91 292.944 292.857 292.828 292.869 293.075 291.414 290.808 290.047 289.293 288.494 288.224 287.426 286.448 286.633 286.887 286.783 286.057 285.465 283.899 284.343 284.456 285.028 284.966 284.908 285.331 286.359 287.643 288.282 288.362 288.547 289.785 291.273 293.461 293.128 290.579 287.118 285.223 284.89 285.315 286.681 287.528 288.196 288.904 289.983 290.106 291.113 292.565 293.684 294.05 294.394 294.723 295.07 295.524 296.239 296.776 297.057 297.192 296.688 296.933 296.634 296.504 296.663 296.1 295.36 295.589 295.434 295.813 296.992 297.456 297.369 296.871 295.726 294.395 294.173 291.597 289.019 287.494 286.1 284.912 284.323 284.931 287.13 288.517 289.391 290.332 291.632 292.836 293.851 294.655 295.207 295.392 295.573 295.798 295.848 295.79 295.938 296.123 296.26 296.399 296.556 296.686 296.8 296.926 297.066 297.249 297.497 297.643 297.715 297.755 297.725 297.667 297.668 297.678 297.619 297.573 297.519 297.408 297.291 297.285 297.243 297.147 297.066 297.027 296.975 296.93 296.883 296.799 296.729 296.656 296.533 296.411 296.335 296.257 296.163 296.074 295.975 295.877 295.824 295.797 295.741 295.687 295.661 295.632 295.592 295.576 295.618 295.69 295.69 295.634 295.56 295.429 295.358 295.566 295.718 295.817 295.783 295.685 295.583 295.525 295.472 295.386 295.244 295.023 294.783 294.517 294.222 293.928 293.705 293.529 293.367 293.21 293.106 293.019 292.914 292.802 292.761 292.813 293.057 293.65 294.338 295.02 295.612 296.085 296.666 297.261 297.098 294.398 288.354 284.741 282.183 281.381 283.312 288.023 291.501 293.366 294.412 294.839 293.506 292.948 295.174 296.604 296.951 297.023 297.181 297.376 297.506 297.15 296.619 297.303 297.468 296.948 296.804 296.817 296.819 296.742 296.573 296.349 296.135 295.991 295.864 295.719 295.548 295.369 295.172 294.967 294.762 294.572 294.362 294.136 293.903 293.726 293.584 293.456 293.296 293.137 292.994 292.829 292.567 292.307 292.083 291.895 291.793 291.891 292.066 292.254 292.436 292.68 293.024 293.353 293.041 292.228 291.92 291.578 291.312 291.234 291.262 291.426 291.659 291.894 292.023 292.208 290.75 290.376 289.261 287.82 286.606 286.086 284.57 284.302 284.641 284.891 284.815 284.443 282.942 282.279 282.494 283.068 283.722 283.888 283.921 284.008 284.701 286.317 287.089 287.181 287.574 288.755 291.479 292.266 290.55 287.345 285.319 283.917 284.069 284.653 285.911 286.869 287.932 288.905 289.3 289.818 290.056 291.059 291.755 293.415 293.936 294.281 294.565 294.887 295.285 295.115 294.541 294.387 294.512 294.307 294.1 293.971 294.142 293.84 293.851 294.092 294.483 294.986 295.682 296.617 296.301 295.004 293.354 293.334 293.404 290.479 288.035 286.187 284.569 283.603 283.602 283.441 284.187 285.46 286.08 286.826 287.839 288.871 290.501 291.894 292.786 293.072 293.489 294.143 294.644 294.719 294.768 294.904 295.091 295.266 295.421 295.566 295.779 295.982 296.149 296.346 296.633 296.827 296.98 297.135 297.212 297.154 297.15 297.191 297.175 297.119 297.047 296.915 296.747 296.689 296.639 296.558 296.495 296.482 296.459 296.429 296.373 296.257 296.162 296.087 295.981 295.86 295.789 295.739 295.684 295.636 295.6 295.576 295.579 295.59 295.572 295.54 295.49 295.396 295.31 295.267 295.294 295.355 295.317 295.197 295.052 294.981 294.987 295.034 295.092 295.072 294.971 294.839 294.721 294.661 294.603 294.503 294.363 294.193 294.007 293.777 293.495 293.166 292.875 292.629 292.438 292.29 292.172 292.057 291.949 291.872 291.847 291.9 292.154 292.9 293.795 294.676 295.46 296.17 296.801 297.052 295.997 292.287 285.582 281.882 280.45 281.338 284.569 290.022 292.283 293.267 293.943 294.528 294.787 294.659 295.53 296.219 296.298 296.158 296.336 296.222 296.149 296.42 296.817 296.941 296.927 296.802 296.675 296.617 296.614 296.542 296.425 296.295 296.166 296.053 295.917 295.742 295.545 295.359 295.158 294.957 294.782 294.598 294.367 294.132 293.928 293.746 293.565 293.396 293.218 293.048 292.902 292.763 292.571 292.367 292.138 291.866 291.591 291.557 291.647 291.793 291.917 292.071 292.302 292.546 292.16 291.257 290.799 289.708 289.45 289.633 289.901 290.17 290.549 290.793 291.017 291.059 289.899 289.465 288.501 286.902 284.979 283.597 282.811 282.598 283.005 283.223 283.209 282.777 282.01 281.792 282.058 282.579 283.057 283.202 283.086 283.036 283.768 284.911 286.224 286.239 287.293 289.614 291.07 290.791 287.171 284.961 283.1 282.72 283.172 283.981 285.111 286.117 287.549 288.81 289.421 289.37 290.138 290.653 291.996 292.868 293.363 293.732 293.917 293.945 293.54 292.631 291.618 291.745 291.727 291.863 291.687 291.704 291.704 291.737 291.805 292.599 293.55 294.805 295.378 295.558 294.725 293.659 291.922 291.721 291.536 289.359 286.9 284.658 283.0 282.497 282.101 281.601 281.762 282.306 282.93 283.104 283.206 283.775 285.169 287.744 288.999 289.192 289.823 291.706 293.067 293.552 293.691 293.757 293.905 294.071 294.213 294.347 294.591 294.88 295.129 295.387 295.706 295.902 296.069 296.28 296.453 296.429 296.414 296.445 296.443 296.387 296.335 296.241 296.073 295.94 295.863 295.809 295.77 295.708 295.645 295.613 295.594 295.501 295.406 295.339 295.278 295.204 295.152 295.106 295.052 295.017 295.013 295.021 295.043 295.097 295.151 295.19 295.204 295.182 295.153 295.12 295.086 295.081 295.06 294.986 294.866 294.773 294.727 294.678 294.607 294.505 294.365 294.179 293.978 293.794 293.654 293.515 293.396 293.279 293.112 292.885 292.625 292.334 292.073 291.825 291.61 291.434 291.287 291.163 291.114 291.165 291.182 291.274 291.617 292.541 293.57 294.524 295.331 295.837 295.761 295.823 293.567 287.048 282.672 280.353 280.254 282.371 286.151 290.736 292.484 292.868 293.272 293.908 294.53 295.004 295.384 295.596 295.468 294.376 294.603 295.473 296.365 296.51 296.472 296.468 296.507 296.476 296.44 296.439 296.423 296.333 296.237 296.135 295.992 295.85 295.72 295.571 295.409 295.275 295.121 294.942 294.75 294.549 294.336 294.14 293.953 293.734 293.524 293.36 293.21 293.039 292.877 292.721 292.53 292.361 292.178 291.94 291.632 291.478 291.447 291.488 291.527 291.553 291.633 291.758 291.496 290.328 289.518 289.051 288.505 288.595 288.74 288.826 288.789 288.992 289.417 289.763 288.866 288.684 287.812 286.323 283.955 282.684 282.066 282.053 281.557 281.768 282.015 282.457 282.305 282.283 281.966 282.18 282.848 282.69 282.435 281.854 283.069 283.819 284.865 285.89 287.222 289.375 289.95 287.949 284.669 282.503 281.666 281.852 281.901 283.045 284.195 286.139 287.461 289.379 290.448 290.277 290.799 291.332 291.419 291.255 291.466 291.763 291.95 291.873 290.093 288.813 288.798 289.629 289.702 289.363 289.483 289.714 289.959 290.462 291.384 292.051 292.999 293.785 294.439 294.187 293.053 291.982 290.628 289.711 288.563 286.938 284.315 280.544 279.271 279.835 279.97 279.478 279.251 279.48 279.854 280.099 280.154 279.788 280.179 281.545 284.905 285.943 286.033 289.073 291.037 291.917 292.366 292.585 292.708 292.852 293.03 293.204 293.427 293.709 293.995 294.311 294.708 294.978 295.149 295.313 295.463 295.482 295.5 295.545 295.562 295.519 295.486 295.438 295.327 295.189 295.107 295.061 295.013 294.89 294.764 294.69 294.666 294.6 294.51 294.435 294.382 294.338 294.302 294.258 294.204 294.164 294.146 294.137 294.151 294.233 294.331 294.421 294.501 294.601 294.701 294.764 294.775 294.782 294.806 294.809 294.769 294.691 294.585 294.448 294.306 294.187 294.047 293.827 293.551 293.263 293.033 292.811 292.614 292.413 292.201 291.967 291.747 291.561 291.385 291.177 290.961 290.724 290.542 290.461 290.501 290.622 290.635 290.77 291.22 292.263 293.287 294.15 294.793 294.091 294.547 293.313 288.142 283.053 280.84 280.015 280.942 283.204 286.624 290.677 292.106 292.348 292.54 292.954 293.434 293.882 294.244 294.495 294.561 294.582 294.801 295.211 295.692 295.935 295.96 296.027 296.132 296.148 296.139 296.127 296.06 295.937 295.849 295.747 295.561 295.402 295.325 295.238 295.096 294.966 294.838 294.674 294.465 294.272 294.111 293.969 293.804 293.598 293.428 293.31 293.184 293.018 292.869 292.727 292.534 292.363 292.209 292.022 291.726 291.483 291.325 291.265 291.275 291.224 291.133 291.044 290.856 290.078 288.617 288.19 288.027 287.762 287.672 287.706 287.173 287.227 287.495 288.33 287.465 287.707 287.31 285.922 284.431 283.087 282.378 282.135 281.28 281.325 281.631 282.374 282.547 282.571 282.809 282.92 282.152 282.554 281.656 281.815 283.221 283.617 283.974 284.85 286.848 288.276 287.254 283.94 282.002 280.664 280.571 280.98 281.484 282.336 283.82 285.809 288.578 290.006 290.153 289.611 289.341 288.758 286.976 285.81 285.878 286.256 286.663 286.898 286.428 286.113 286.538 286.813 287.219 287.046 287.233 287.699 289.032 290.071 290.943 291.296 290.975 290.446 289.75 288.627 287.897 287.069 287.454 286.744 285.884 283.396 279.552 276.953 276.687 277.528 277.949 277.371 277.234 277.357 277.145 277.388 277.978 277.84 277.398 277.814 279.676 282.251 283.823 286.081 288.337 289.544 290.461 291.157 291.525 291.688 291.906 292.147 292.385 292.655 292.925 293.195 293.557 293.904 294.134 294.28 294.385 294.45 294.502 294.554 294.589 294.569 294.537 294.503 294.457 294.377 294.297 294.221 294.143 294.03 293.906 293.788 293.679 293.557 293.461 293.399 293.369 293.355 293.334 293.292 293.232 293.177 293.134 293.103 293.1 293.159 293.221 293.279 293.347 293.482 293.659 293.853 294.038 294.22 294.343 294.43 294.474 294.459 294.361 294.213 294.068 293.961 293.816 293.579 293.285 292.97 292.691 292.366 292.012 291.636 291.365 291.15 290.988 290.857 290.754 290.641 290.498 290.256 290.062 290.007 290.07 290.102 290.046 290.229 290.797 291.97 292.932 293.634 292.441 294.03 292.728 288.525 283.225 280.548 279.655 280.25 281.867 283.719 286.311 290.009 291.319 291.491 291.532 291.766 292.068 292.367 292.674 292.931 293.087 293.167 292.711 293.682 294.858 295.315 295.347 295.352 295.403 295.469 295.511 295.519 295.438 295.312 295.279 295.249 295.135 294.999 294.913 294.784 294.568 294.383 294.253 294.12 293.963 293.834 293.722 293.608 293.462 293.308 293.183 293.07 292.915 292.763 292.652 292.555 292.4 292.257 292.133 291.982 291.722 291.457 291.226 291.072 291.047 290.997 290.835 290.591 290.329 289.983 288.695 287.739 287.29 286.669 286.106 285.895 285.504 285.676 285.886 286.457 285.511 285.96 285.865 285.184 284.463 283.408 283.1 282.529 281.69 281.405 281.93 282.042 281.572 282.38 282.754 282.837 282.021 282.475 281.737 281.834 282.888 282.994 282.957 283.255 284.131 285.193 283.092 280.358 279.199 278.851 279.389 280.12 281.33 281.982 283.568 286.687 288.331 287.867 285.475 283.485 283.261 282.717 282.188 281.717 281.545 281.734 282.265 282.912 283.339 283.903 284.917 285.111 284.706 284.466 286.047 286.882 287.768 288.341 287.997 286.289 283.859 281.716 279.945 278.545 278.246 278.876 279.732 280.498 280.034 276.75 273.728 272.592 273.901 275.157 274.862 274.103 274.998 275.887 275.576 275.632 276.529 276.718 276.007 275.585 275.857 277.0 280.378 282.989 285.511 286.993 288.342 289.574 290.378 290.638 290.866 291.111 291.368 291.685 292.003 292.241 292.456 292.745 293.009 293.204 293.354 293.476 293.546 293.581 293.612 293.642 293.655 293.66 293.665 293.642 293.568 293.457 293.332 293.236 293.152 293.03 292.851 292.659 292.552 292.498 292.476 292.461 292.418 292.34 292.241 292.133 292.05 291.989 291.961 291.968 291.973 291.988 292.036 292.163 292.347 292.594 292.889 293.232 293.494 293.715 293.897 294.034 294.056 293.996 293.894 293.786 293.644 293.421 293.145 292.828 292.515 292.144 291.714 291.257 290.941 290.699 290.485 290.273 290.153 290.099 290.036 289.842 289.64 289.564 289.565 289.488 289.439 289.735 290.427 291.553 292.273 292.217 292.682 292.314 289.57 283.815 280.507 279.063 279.428 280.877 282.45 283.993 285.823 288.929 290.015 290.166 290.179 290.405 290.728 291.018 291.19 291.348 291.504 291.184 289.817 292.443 294.068 294.73 294.728 294.637 294.602 294.687 294.798 294.862 294.821 294.696 294.666 294.678 294.65 294.549 294.427 294.249 294.01 293.82 293.692 293.578 293.472 293.38 293.268 293.135 292.979 292.832 292.692 292.556 292.408 292.289 292.191 292.1 292.0 291.923 291.839 291.723 291.551 291.38 291.182 290.986 290.855 290.759 290.584 290.335 290.079 289.838 289.387 287.832 286.466 285.784 284.899 283.44 283.471 283.754 284.019 284.684 283.318 283.819 283.893 283.899 283.571 283.736 283.426 282.759 282.213 282.015 282.058 282.128 282.283 282.749 283.042 282.898 281.896 281.785 281.902 282.896 282.932 282.913 282.595 281.86 281.434 280.905 279.22 278.367 278.03 278.371 279.254 280.66 281.2 282.65 283.837 285.983 285.585 282.467 278.847 277.512 277.809 278.359 279.069 279.062 279.28 279.513 279.71 280.119 280.698 282.341 283.392 283.737 283.677 284.003 284.373 285.114 284.329 282.462 279.022 275.212 271.791 269.119 267.351 266.653 267.478 269.553 271.642 272.341 271.31 269.141 265.882 266.914 270.082 272.231 272.128 272.059 273.652 275.156 275.009 274.823 275.825 276.0 275.382 275.243 274.512 274.297 275.67 280.114 282.714 284.415 286.051 287.633 288.728 289.099 289.449 289.843 290.198 290.514 290.85 291.134 291.337 291.565 291.806 292.018 292.205 292.371 292.474 292.527 292.569 292.648 292.726 292.794 292.842 292.86 292.831 292.756 292.643 292.527 292.434 292.31 292.13 291.918 291.783 291.692 291.629 291.566 291.491 291.395 291.293 291.186 291.086 290.993 290.917 290.868 290.825 290.799 290.808 290.877 290.993 291.165 291.412 291.791 292.185 292.57 292.942 293.295 293.523 293.625 293.632 293.573 293.46 293.277 293.036 292.744 292.438 292.092 291.675 291.204 290.81 290.489 290.179 289.855 289.633 289.516 289.409 289.212 288.983 288.858 288.806 288.788 288.952 289.389 290.024 290.753 290.866 291.154 291.456 289.376 284.869 281.064 278.861 278.484 279.434 280.988 282.283 283.416 284.42 285.88 287.366 287.618 287.803 288.155 288.574 289.182 289.491 289.622 289.537 289.087 288.88 291.537 293.265 293.985 293.963 293.858 293.799 293.917 294.09 294.204 294.216 294.12 294.065 294.053 294.039 293.974 293.858 293.695 293.506 293.341 293.186 293.024 292.874 292.763 292.647 292.525 292.398 292.249 292.086 291.942 291.839 291.747 291.63 291.515 291.459 291.442 291.384 291.286 291.197 291.128 291.001 290.829 290.66 290.522 290.354 290.16 289.971 289.802 289.605 289.113 288.022 285.841 283.696 282.38 281.84 282.047 282.017 282.619 280.957 281.272 281.957 282.817 282.832 283.036 282.81 282.536 282.02 281.857 282.261 282.872 283.428 284.651 284.93 283.19 282.792 282.788 283.111 283.428 283.633 283.683 283.275 282.126 281.71 280.226 278.486 277.712 277.805 278.798 279.777 280.73 281.431 280.992 282.051 281.321 279.456 276.748 274.799 274.555 275.464 276.399 276.871 277.655 278.228 277.824 277.323 277.074 278.002 279.643 281.594 282.329 282.825 282.921 282.232 280.819 277.069 272.036 267.246 256.735 253.554 252.448 255.74 256.379 257.705 260.567 262.533 263.872 261.045 259.473 258.732 259.974 263.518 268.879 270.611 271.34 273.708 274.604 274.227 273.956 274.554 275.367 275.187 274.712 273.933 273.415 274.102 278.036 280.484 282.261 284.013 285.587 286.469 286.696 287.184 287.984 288.765 289.159 289.482 289.79 290.096 290.377 290.638 290.863 291.064 291.253 291.414 291.541 291.637 291.716 291.792 291.859 291.901 291.916 291.948 291.97 291.943 291.832 291.707 291.563 291.387 291.16 290.977 290.824 290.701 290.588 290.479 290.358 290.245 290.142 290.033 289.915 289.819 289.759 289.703 289.642 289.605 289.636 289.75 289.914 290.129 290.447 290.828 291.212 291.607 292.048 292.484 292.797 292.985 293.063 293.05 292.951 292.774 292.535 292.25 291.93 291.532 291.068 290.639 290.295 289.955 289.607 289.248 288.958 288.699 288.438 288.184 288.061 288.067 288.252 288.701 289.159 289.456 289.35 288.498 289.295 288.872 285.577 281.922 278.963 277.778 277.754 278.828 280.251 281.41 282.055 282.473 283.163 283.402 283.935 283.952 283.86 283.884 286.281 286.888 286.779 286.254 285.552 288.014 290.613 292.125 292.912 292.949 292.863 292.843 292.96 293.167 293.347 293.443 293.451 293.43 293.406 293.386 293.355 293.269 293.123 292.942 292.755 292.566 292.361 292.154 291.999 291.882 291.8 291.743 291.65 291.521 291.391 291.279 291.156 291.013 290.896 290.87 290.875 290.826 290.741 290.686 290.653 290.572 290.459 290.366 290.263 290.12 289.966 289.82 289.703 289.625 289.461 288.464 286.457 282.966 280.882 279.813 279.86 280.213 280.36 279.34 279.475 280.202 281.618 282.501 282.301 282.239 282.312 282.039 282.218 282.944 284.704 286.218 286.651 286.387 283.807 283.263 283.775 284.748 285.118 285.578 285.625 285.381 285.077 283.825 281.555 278.82 277.913 277.582 278.687 279.658 280.536 281.071 280.487 279.2 277.352 275.261 273.44 272.89 273.575 274.73 275.538 276.016 276.415 276.634 276.142 274.423 273.822 274.191 275.925 278.775 280.643 281.96 280.879 277.699 272.549 260.477 253.573 249.732 247.242 246.389 247.174 249.04 250.726 252.943 254.488 256.888 258.316 256.266 255.665 255.386 256.345 259.608 264.198 267.849 270.415 272.402 272.612 272.49 272.948 274.095 274.679 274.369 273.572 273.297 273.215 273.625 277.041 279.072 280.73 282.421 283.756 283.857 281.964 283.559 285.191 286.475 287.218 287.782 288.275 288.723 289.061 289.368 289.653 289.914 290.124 290.322 290.515 290.69 290.796 290.863 290.914 290.929 290.886 290.873 290.896 290.907 290.835 290.722 290.588 290.427 290.21 290.032 289.88 289.752 289.621 289.482 289.335 289.202 289.094 288.981 288.854 288.742 288.67 288.607 288.516 288.42 288.387 288.488 288.649 288.846 289.104 289.445 289.772 290.123 290.562 291.138 291.636 292.023 292.281 292.434 292.438 292.346 292.178 291.921 291.629 291.278 290.876 290.46 290.127 289.781 289.41 288.952 288.532 288.137 287.795 287.53 287.498 287.662 288.033 288.563 288.739 288.486 287.652 285.583 285.152 284.14 281.82 278.993 276.955 276.254 276.955 278.114 279.362 280.558 281.125 281.344 281.411 281.375 281.126 281.086 281.391 281.44 282.001 282.54 282.895 282.825 283.042 285.643 288.424 290.175 291.424 291.898 291.987 291.991 292.051 292.242 292.456 292.617 292.705 292.725 292.711 292.686 292.676 292.639 292.536 292.371 292.179 292.007 291.818 291.605 291.395 291.227 291.095 291.003 290.941 290.874 290.791 290.67 290.534 290.414 290.33 290.299 290.282 290.249 290.216 290.197 290.171 290.119 290.064 290.015 289.929 289.799 289.648 289.537 289.464 289.443 289.373 288.578 286.754 283.062 280.303 278.857 278.023 278.105 278.686 278.41 278.837 279.482 280.365 281.219 281.254 281.652 282.721 283.547 284.505 285.607 286.57 286.818 286.71 286.179 285.004 284.911 285.234 285.48 285.678 285.783 285.812 285.797 285.604 284.828 282.571 279.244 277.503 277.311 278.357 279.22 279.715 279.177 277.849 275.625 273.139 271.795 271.549 272.413 273.578 274.305 274.486 274.7 274.815 274.512 273.155 271.218 269.432 269.331 270.984 273.99 277.079 277.921 275.885 269.897 257.277 250.244 246.317 244.757 245.19 245.904 246.967 247.935 248.891 249.581 251.157 253.155 253.143 254.453 253.453 254.31 253.906 256.925 261.049 264.506 267.415 269.633 270.261 270.921 272.338 273.836 274.296 273.977 273.487 273.321 273.406 274.531 276.739 278.368 279.578 280.703 281.625 281.391 278.764 279.487 281.7 283.009 284.005 284.941 285.877 286.761 287.353 287.809 288.207 288.572 288.814 289.012 289.237 289.498 289.707 289.821 289.902 289.956 289.938 289.876 289.811 289.747 289.657 289.562 289.455 289.324 289.16 289.034 288.922 288.8 288.636 288.452 288.274 288.121 287.997 287.863 287.719 287.591 287.497 287.435 287.365 287.292 287.232 287.27 287.394 287.571 287.808 288.158 288.467 288.758 289.088 289.589 290.098 290.61 291.099 291.543 291.744 291.797 291.747 291.584 291.358 291.095 290.778 290.341 289.904 289.477 289.052 288.596 288.176 287.753 287.358 287.091 287.161 287.433 287.837 288.009 287.517 286.613 284.765 282.936 282.379 281.171 278.99 276.53 275.13 274.706 275.728 277.073 278.164 279.302 280.148 280.162 280.076 279.792 279.192 279.12 279.517 279.792 279.987 280.15 280.247 280.191 280.534 281.581 284.515 287.173 288.977 290.387 291.03 291.256 291.349 291.545 291.746 291.892 291.987 292.041 292.044 292.007 291.976 291.965 291.923 291.828 291.684 291.543 291.366 291.132 290.875 290.655 290.449 290.263 290.168 290.13 290.092 290.002 289.905 289.841 289.798 289.743 289.711 289.714 289.745 289.765 289.755 289.726 289.683 289.606 289.494 289.357 289.2 289.076 288.989 288.964 288.984 288.596 287.48 285.204 281.782 279.888 278.472 278.161 278.226 279.515 278.993 279.014 279.527 280.163 280.669 281.722 282.412 284.537 285.834 286.254 286.306 286.225 286.04 285.66 285.303 285.107 284.99 285.076 284.956 284.734 284.507 284.376 284.341 283.833 282.58 278.818 277.342 277.106 277.571 278.226 277.919 276.632 274.329 271.69 269.567 269.487 271.519 272.73 273.565 273.679 273.208 273.248 273.384 272.79 271.324 269.329 267.059 264.756 264.283 266.161 268.57 268.067 263.006 255.87 251.498 248.388 247.153 247.996 248.687 248.178 247.398 246.916 246.759 247.766 249.326 250.904 251.752 252.48 252.423 252.778 253.822 257.786 260.728 264.011 266.753 267.741 268.961 270.188 271.415 272.879 273.181 272.915 272.618 272.492 272.934 274.703 276.097 277.244 277.744 277.949 278.357 279.068 278.711 277.478 277.047 277.106 278.972 281.142 282.325 283.735 285.053 286.024 286.67 287.093 287.356 287.557 287.786 288.09 288.406 288.589 288.708 288.805 288.885 288.882 288.816 288.711 288.57 288.432 288.286 288.134 287.98 287.869 287.755 287.611 287.42 287.212 287.03 286.876 286.745 286.591 286.437 286.33 286.282 286.281 286.283 286.256 286.182 286.128 286.179 286.314 286.519 286.858 287.182 287.477 287.762 288.133 288.583 289.11 289.674 290.269 290.674 290.903 291.01 291.015 290.913 290.746 290.493 290.078 289.555 289.07 288.61 288.17 287.756 287.335 286.911 286.645 286.8 287.093 287.196 286.56 284.46 282.393 280.488 279.731 279.024 277.864 276.032 273.91 272.125 272.37 273.428 275.16 276.993 278.208 278.699 278.623 278.645 278.024 277.282 277.186 277.446 277.748 277.764 277.783 277.843 277.862 278.025 278.707 279.999 282.186 285.151 287.739 289.262 290.11 290.485 290.744 290.986 291.174 291.328 291.463 291.523 291.505 291.435 291.394 291.361 291.307 291.201 291.057 290.858 290.601 290.331 290.119 289.908 289.691 289.555 289.488 289.427 289.33 289.254 289.212 289.179 289.118 289.104 289.143 289.21 289.24 289.243 289.229 289.181 289.087 288.976 288.859 288.712 288.518 288.326 288.201 288.276 288.368 288.098 287.208 285.429 282.506 281.092 280.451 279.868 282.126 281.034 280.221 280.333 280.494 280.687 281.486 282.264 284.335 285.466 285.598 285.485 285.388 285.264 284.805 284.309 284.05 284.058 283.474 283.358 282.5 281.694 281.124 280.675 280.334 279.73 277.1 276.189 276.079 276.316 276.135 274.896 273.127 270.536 269.715 270.206 272.085 274.261 274.82 274.142 273.145 272.711 273.028 273.318 272.917 272.144 271.03 268.965 265.542 262.439 260.432 258.084 255.295 252.695 251.783 251.88 254.724 256.387 256.185 254.479 252.594 250.393 248.502 247.133 248.486 250.734 252.278 253.445 253.193 253.364 253.443 255.289 258.564 261.715 264.221 266.078 267.352 268.301 269.103 270.085 271.218 271.746 271.838 271.582 271.498 272.124 273.444 274.526 275.315 275.097 273.483 272.396 276.036 277.988 278.799 278.802 278.251 276.947 276.349 277.552 279.434 282.472 284.097 285.083 285.541 285.785 285.985 286.202 286.473 286.816 287.057 287.217 287.338 287.469 287.523 287.508 287.43 287.289 287.116 286.925 286.735 286.566 286.436 286.327 286.219 286.089 285.927 285.777 285.644 285.5 285.265 285.043 284.916 284.893 284.957 285.02 285.029 284.963 284.908 284.985 285.164 285.4 285.7 286.015 286.311 286.605 286.955 287.346 287.754 288.221 288.771 289.32 289.721 290.005 290.161 290.182 290.096 289.921 289.62 289.158 288.697 288.213 287.715 287.215 286.777 286.373 286.157 286.379 286.523 286.027 283.793 280.373 278.22 276.836 276.109 275.543 274.524 272.818 270.189 268.023 268.845 271.109 273.252 275.485 277.184 277.788 277.45 277.022 276.413 275.751 275.41 275.555 275.739 275.891 275.917 275.895 275.788 275.881 276.353 276.996 278.018 279.49 283.441 286.778 288.42 289.313 289.75 290.05 290.339 290.597 290.795 290.909 290.952 290.928 290.901 290.885 290.855 290.772 290.636 290.444 290.202 289.933 289.71 289.484 289.246 289.057 288.924 288.802 288.67 288.585 288.537 288.505 288.477 288.491 288.524 288.567 288.601 288.628 288.635 288.594 288.504 288.409 288.314 288.173 287.961 287.711 287.497 287.511 287.719 287.813 287.501 286.45 285.175 284.286 283.695 283.303 284.008 284.352 283.987 283.723 283.494 283.293 283.276 283.86 284.713 284.821 283.841 284.123 284.434 284.194 283.339 282.418 281.581 282.312 282.248 281.304 279.292 276.604 276.286 275.923 274.911 274.382 273.62 273.451 273.37 273.068 272.466 271.113 269.555 269.079 270.182 273.759 277.184 279.084 278.911 276.862 274.293 273.656 273.912 274.718 274.495 274.284 273.267 271.338 268.357 263.396 259.438 255.086 251.731 250.813 253.628 258.186 261.906 264.811 265.22 264.148 260.909 258.387 255.557 253.602 253.692 254.172 255.915 255.275 253.887 252.899 253.851 256.936 260.204 262.446 264.418 265.189 266.089 266.333 266.495 267.445 268.827 270.035 270.956 271.198 271.035 270.456 270.31 272.56 272.966 272.229 270.036 268.472 272.508 276.207 278.195 278.879 278.68 278.112 276.804 275.434 276.337 280.124 282.037 283.25 283.761 283.986 284.199 284.422 284.664 285.0 285.275 285.472 285.595 285.691 285.709 285.665 285.584 285.476 285.34 285.194 285.053 284.93 284.819 284.732 284.663 284.603 284.503 284.372 284.237 284.072 283.806 283.535 283.373 283.351 283.473 283.621 283.707 283.724 283.734 283.862 284.074 284.302 284.527 284.785 285.088 285.461 285.873 286.296 286.632 286.984 287.364 287.854 288.263 288.622 288.944 289.2 289.284 289.243 289.06 288.686 288.188 287.609 287.019 286.467 286.055 285.74 285.629 285.793 285.526 284.066 280.423 277.402 274.812 273.098 272.474 271.705 270.553 268.521 266.36 265.23 265.677 269.17 272.158 274.551 276.059 276.396 276.064 275.607 275.112 274.516 274.112 274.074 274.127 274.382 274.567 274.529 274.351 274.194 274.475 274.999 275.441 276.589 279.784 284.051 286.319 287.744 288.491 288.917 289.298 289.615 289.839 289.969 290.068 290.152 290.232 290.286 290.294 290.207 290.043 289.863 289.674 289.439 289.195 288.928 288.641 288.394 288.217 288.078 287.968 287.912 287.883 287.875 287.892 287.913 287.912 287.892 287.907 287.96 288.011 288.009 287.928 287.817 287.695 287.537 287.373 287.173 286.949 286.805 286.702 286.465 285.413 284.209 282.729 282.193 282.204 283.265 282.566 283.915 284.61 284.755 284.679 284.49 284.252 284.177 284.22 284.066 283.625 283.051 282.659 282.561 281.337 279.511 278.213 279.538 280.243 279.028 276.181 274.066 272.575 271.845 271.171 270.624 270.501 270.251 269.828 268.54 266.895 266.517 266.973 268.878 271.961 277.241 280.03 281.547 280.834 278.596 275.725 274.665 274.789 275.231 275.306 275.072 274.249 272.597 270.063 265.047 260.966 256.41 253.412 253.948 258.504 262.744 265.507 267.555 268.079 268.01 267.376 265.766 263.947 262.139 260.044 259.091 258.007 256.818 255.747 255.572 257.147 259.143 262.461 263.881 264.163 264.298 264.085 263.928 263.332 264.151 265.706 267.263 268.386 269.045 270.274 270.703 270.378 270.292 269.579 268.266 264.912 265.828 270.609 273.8 275.961 276.824 277.02 277.032 276.737 275.539 275.056 278.09 279.846 281.084 281.67 281.921 282.156 282.399 282.644 282.952 283.188 283.344 283.433 283.501 283.512 283.478 283.421 283.358 283.284 283.206 283.136 283.061 282.94 282.816 282.714 282.647 282.602 282.516 282.415 282.33 282.212 282.058 281.964 281.981 282.118 282.319 282.455 282.518 282.556 282.687 282.914 283.188 283.44 283.719 284.02 284.363 284.694 285.011 285.292 285.609 285.974 286.387 286.76 287.109 287.457 287.829 288.097 288.193 288.143 287.898 287.421 286.847 286.268 285.752 285.321 285.029 284.906 284.835 284.044 281.071 277.874 274.537 271.069 269.557 269.013 268.527 267.531 266.253 265.103 264.297 264.825 268.009 271.165 273.538 274.832 274.955 274.516 274.111 273.695 273.147 272.684 272.496 272.554 272.781 273.137 273.264 273.045 272.903 273.012 273.34 273.615 274.389 276.557 280.694 283.208 284.974 286.139 286.87 287.472 287.984 288.417 288.678 288.876 289.036 289.173 289.25 289.25 289.108 288.873 288.689 288.557 288.399 288.198 287.979 287.754 287.532 287.346 287.195 287.098 287.075 287.086 287.131 287.225 287.29 287.295 287.236 287.19 287.2 287.236 287.261 287.215 287.105 286.951 286.79 286.672 286.552 286.404 286.195 285.801 285.106 282.668 281.056 279.914 279.348 279.264 280.038 280.048 281.957 283.184 283.888 284.156 284.019 283.246 283.004 283.279 282.867 282.451 281.816 280.692 280.868 279.092 276.236 275.978 277.806 278.194 277.289 275.581 274.366 273.47 272.573 271.812 271.471 271.617 271.293 270.123 267.604 266.047 265.064 265.917 269.307 273.264 277.417 280.986 281.775 280.548 278.022 275.76 274.924 274.706 274.628 274.457 274.428 273.716 272.532 270.8 266.766 263.091 259.251 256.533 257.046 260.199 262.2 264.525 265.348 266.03 267.029 267.422 267.109 266.434 265.769 266.434 264.848 262.158 260.534 259.51 259.445 260.674 261.97 263.41 263.533 263.392 263.054 262.494 261.623 261.559 261.794 262.567 263.41 264.588 265.466 266.108 267.071 267.205 264.618 264.508 262.477 259.117 261.105 267.428 270.436 272.624 273.514 273.961 274.571 275.005 275.081 273.457 275.208 277.499 278.708 279.501 279.899 280.144 280.337 280.507 280.689 280.755 280.751 280.746 280.813 280.889 280.929 280.95 280.985 281.016 281.006 280.961 280.899 280.771 280.617 280.518 280.497 280.515 280.53 280.535 280.542 280.557 280.577 280.614 280.685 280.824 281.05 281.228 281.368 281.471 281.625 281.879 282.18 282.465 282.723 282.961 283.175 283.396 283.639 283.965 284.333 284.69 285.021 285.341 285.63 285.968 286.326 286.699 286.913 286.968 286.85 286.503 286.063 285.617 285.196 284.729 284.31 283.907 283.355 281.604 278.226 274.811 271.267 269.71 268.885 268.468 268.009 266.966 266.259 264.792 264.193 264.927 266.886 269.689 271.883 273.09 273.028 272.609 272.349 272.12 271.685 271.124 270.717 270.606 270.786 271.125 271.435 271.48 271.485 271.554 271.678 271.812 272.136 273.104 275.873 278.699 280.486 282.007 283.286 284.352 285.304 286.179 286.761 287.121 287.337 287.46 287.51 287.493 287.357 287.146 287.002 286.901 286.75 286.552 286.387 286.276 286.152 285.98 285.819 285.77 285.87 286.009 286.17 286.374 286.529 286.608 286.575 286.49 286.436 286.398 286.377 286.328 286.225 286.071 285.949 285.895 285.861 285.842 285.76 285.375 284.486 281.859 279.934 278.52 277.769 277.507 277.861 277.61 279.572 281.409 282.359 282.944 282.996 282.361 282.227 282.158 281.331 280.506 279.908 280.158 279.447 277.527 274.515 273.831 274.636 275.757 275.596 276.072 276.582 276.456 275.367 274.68 275.11 275.895 275.82 274.698 272.926 269.611 267.728 268.098 271.021 274.054 277.857 280.09 280.156 279.054 276.605 274.806 274.063 273.717 273.399 273.122 272.896 272.765 272.219 271.283 269.088 266.116 263.506 260.941 259.621 259.449 260.682 261.764 262.36 263.264 263.499 264.184 264.22 264.881 265.503 266.128 265.349 263.504 262.059 261.143 260.68 261.352 261.69 261.618 261.645 261.752 261.63 261.341 260.955 259.974 259.753 259.62 259.885 260.52 261.51 261.213 260.235 259.778 258.575 257.3 255.657 255.074 256.138 261.548 265.548 267.699 268.828 269.769 271.062 272.291 273.001 272.597 273.539 274.456 275.699 276.837 277.557 277.889 278.064 278.143 278.118 277.996 277.908 277.937 278.104 278.237 278.266 278.276 278.335 278.435 278.489 278.557 278.632 278.67 278.625 278.578 278.555 278.552 278.581 278.673 278.796 278.916 279.088 279.257 279.46 279.676 279.938 280.198 280.403 280.551 280.678 280.881 281.13 281.394 281.648 281.894 282.092 282.285 282.468 282.725 283.001 283.303 283.644 284.038 284.401 284.689 284.949 285.232 285.545 285.761 285.818 285.649 285.265 284.851 284.445 284.041 283.58 282.98 281.927 279.599 276.096 273.023 270.861 269.981 269.177 268.309 267.572 266.902 266.057 264.926 264.291 265.392 266.691 268.188 269.467 269.109 270.473 270.392 270.29 269.998 269.536 268.906 268.707 268.636 268.516 268.745 269.145 269.4 269.645 269.74 269.768 269.802 270.032 270.478 271.287 272.827 275.411 277.205 278.887 280.459 281.786 282.9 283.724 284.202 284.483 284.645 284.725 284.767 284.749 284.669 284.569 284.415 284.087 283.745 283.566 283.535 283.493 283.314 283.146 283.384 283.936 284.446 284.909 285.304 285.578 285.776 285.863 285.828 285.763 285.694 285.634 285.556 285.443 285.294 285.214 285.203 285.23 285.33 285.385 285.155 284.255 282.387 279.667 278.22 277.462 277.06 276.998 277.655 277.854 279.158 280.112 280.609 280.861 280.882 280.863 280.127 279.301 279.302 279.509 279.076 277.648 275.058 273.368 272.825 273.13 273.663 274.38 276.164 277.352 277.821 277.784 277.681 277.763 277.867 277.525 276.476 274.824 272.639 271.377 271.404 272.797 275.848 278.206 278.789 277.729 275.526 274.202 273.199 272.71 272.588 272.204 271.894 271.553 271.706 271.766 271.352 270.316 268.648 267.252 265.862 264.274 262.971 262.02 261.479 260.794 260.266 260.278 260.752 261.44 262.193 262.835 262.736 261.974 261.036 259.773 258.759 257.975 257.393 257.655 258.924 259.278 259.682 259.639 259.603 259.039 258.349 257.825 257.5 257.551 257.6 257.688 257.359 256.439 256.009 255.137 254.786 254.117 253.582 253.907 255.494 259.504 261.64 262.858 264.221 266.385 268.519 269.979 269.4 268.739 270.33 272.156 273.291 274.365 274.96 275.3 275.444 275.428 275.385 275.455 275.63 275.863 275.979 275.957 275.939 275.998 276.147 276.288 276.444 276.608 276.737 276.777 276.768 276.761 276.766 276.833 277.007 277.282 277.603 277.896 278.178 278.434 278.679 278.934 279.226 279.461 279.638 279.771 279.941 280.157 280.4 280.634 280.847 281.022 281.173 281.334 281.525 281.758 282.013 282.32 282.682 283.066 283.337 283.576 283.834 284.175 284.44 284.566 284.548 284.334 283.99 283.608 283.25 282.898 282.308 281.13 279.074 275.695 273.484 271.754 270.823 269.349 268.246 267.348 266.523 265.906 265.192 264.963 266.077 267.353 267.916 268.253 267.17 267.12 267.892 267.543 267.299 266.905 266.471 266.223 266.014 266.02 266.299 266.67 267.021 267.351 267.548 267.852 268.148 268.408 268.464 268.501 268.793 270.15 273.374 275.179 276.935 277.995 278.702 279.269 279.611 279.937 280.301 280.616 280.878 280.991 280.911 280.687 280.311 279.661 279.209 279.166 279.336 279.449 279.398 279.458 280.09 281.227 282.286 283.162 283.86 284.338 284.712 284.97 285.032 285.032 285.022 285.025 284.991 284.902 284.764 284.702 284.701 284.742 284.862 284.97 284.894 284.174 282.084 280.25 279.313 279.058 278.515 277.984 278.459 277.261 276.475 276.246 276.2 276.56 277.616 277.912 277.13 277.585 277.935 277.703 276.539 275.707 274.668 273.92 273.515 273.377 273.487 273.891 275.002 276.699 277.386 277.466 277.434 277.464 277.35 276.734 275.349 273.797 272.815 272.467 272.847 275.025 276.713 277.755 277.629 276.375 274.739 272.956 271.948 271.514 271.344 271.084 270.591 270.481 270.42 270.46 270.097 269.55 269.116 268.891 268.353 267.58 266.467 265.226 263.998 262.97 262.061 261.883 262.079 261.961 261.494 260.725 260.006 259.216 258.019 256.897 255.798 254.668 254.228 254.544 256.195 257.575 257.879 257.586 257.315 256.949 256.534 256.157 255.557 255.317 255.327 255.523 255.5 255.006 254.326 253.554 253.037 252.551 252.66 252.569 252.308 252.463 252.335 253.034 256.297 261.079 263.684 265.972 267.03 266.111 266.347 268.001 269.057 270.155 271.208 272.082 272.683 273.048 273.296 273.6 273.941 274.235 274.38 274.362 274.335 274.371 274.485 274.659 274.866 275.075 275.237 275.333 275.385 275.449 275.555 275.72 275.996 276.345 276.707 277.019 277.341 277.591 277.811 278.014 278.253 278.486 278.695 278.873 279.04 279.244 279.453 279.665 279.862 280.038 280.166 280.299 280.44 280.629 280.862 281.156 281.486 281.803 282.022 282.187 282.391 282.687 283.034 283.266 283.366 283.332 283.122 282.832 282.556 282.302 281.827 280.709 279.058 276.162 274.32 272.996 271.589 269.521 268.544 267.309 266.387 266.003 265.788 265.101 266.272 267.251 267.989 267.099 266.78 266.124 266.088 266.015 265.769 265.159 264.933 264.643 264.467 264.156 264.241 264.512 264.879 265.107 265.284 265.528 265.951 266.319 266.373 266.358 266.36 267.021 268.253 270.905 272.798 273.006 273.36 273.861 274.443 274.979 275.64 276.347 276.85 277.109 277.089 276.773 276.228 275.698 275.619 275.826 276.094 276.33 276.515 276.779 277.412 278.366 279.42 280.595 281.739 282.592 283.293 283.849 284.061 284.147 284.213 284.319 284.408 284.42 284.319 284.249 284.233 284.279 284.408 284.581 284.678 284.366 283.714 282.988 282.558 282.301 281.855 280.877 278.917 277.175 275.641 274.666 274.027 273.577 273.625 273.897 274.444 274.956 275.419 275.541 275.502 275.189 274.715 274.137 273.584 273.143 272.898 273.058 273.717 274.496 275.598 275.539 275.006 274.752 275.142 274.433 273.187 272.678 272.47 272.518 273.187 274.371 275.898 276.475 276.678 276.353 275.198 273.457 271.464 270.473 269.961 269.621 269.186 268.845 268.728 268.677 268.326 267.713 267.417 267.503 267.8 267.545 266.984 266.59 265.533 264.556 264.251 263.403 263.03 262.137 261.413 259.691 258.041 256.566 255.208 254.118 253.162 252.547 252.91 253.731 254.854 255.466 255.946 255.473 255.248 254.952 254.789 254.436 254.096 253.995 254.102 253.327 252.694 252.442 252.311 251.665 251.19 251.152 250.312 250.661 250.684 250.128 249.106 249.042 250.873 254.951 258.803 260.683 262.567 263.729 264.086 264.064 264.495 266.088 267.979 269.53 270.642 271.386 271.892 272.325 272.721 273.008 273.163 273.211 273.257 273.331 273.438 273.628 273.85 274.074 274.258 274.405 274.538 274.698 274.89 275.12 275.439 275.762 276.063 276.319 276.591 276.837 277.057 277.239 277.394 277.565 277.737 277.919 278.095 278.306 278.528 278.738 278.924 279.074 279.195 279.312 279.473 279.674 279.928 280.161 280.38 280.576 280.782 280.999 281.236 281.471 281.744 282.041 282.275 282.385 282.299 282.023 281.735 281.465 281.03 279.868 278.346 275.751 273.936 272.676 271.347 269.303 268.144 266.928 265.824 265.385 265.042 264.82 265.563 266.186 266.395 265.879 265.816 265.331 264.897 264.759 264.478 264.108 263.932 263.497 263.057 262.758 262.664 262.6 262.628 262.723 262.906 263.156 263.525 263.916 264.119 264.221 264.275 264.428 264.574 264.884 265.354 266.021 266.84 267.908 269.64 271.789 272.656 273.273 273.562 273.567 273.486 273.244 272.942 272.746 272.933 273.357 273.817 274.294 274.669 275.063 275.587 276.147 276.767 277.612 278.801 280.01 281.148 282.111 282.663 283.035 283.31 283.505 283.662 283.786 283.781 283.719 283.668 283.698 283.855 284.106 284.361 284.39 284.255 284.05 283.893 283.654 283.057 281.748 278.705 277.378 276.286 275.282 274.237 273.341 272.701 272.534 272.726 273.161 273.805 274.342 274.702 274.682 274.208 273.622 272.869 272.292 272.031 272.19 272.653 273.085 273.237 273.109 272.941 272.809 272.758 272.648 272.31 272.118 271.981 272.017 272.042 272.157 272.924 273.807 274.238 274.07 273.463 272.102 269.911 268.616 267.984 267.463 267.167 266.892 266.563 266.352 266.184 265.977 265.483 264.952 264.753 264.842 264.843 264.935 264.883 264.647 264.001 263.399 262.431 260.634 258.718 256.629 255.071 253.863 253.243 252.447 251.466 250.91 251.232 252.296 253.164 254.221 254.059 254.244 253.784 253.244 253.269 253.522 253.236 252.915 252.399 250.979 250.255 249.725 250.404 250.301 249.787 249.45 248.67 248.892 249.435 248.662 248.03 248.064 249.193 250.803 253.814 256.429 257.533 258.548 259.713 259.722 260.494 263.052 265.74 267.932 269.414 270.376 271.003 271.478 271.872 272.146 272.31 272.424 272.548 272.684 272.824 273.053 273.333 273.589 273.78 273.904 274.031 274.197 274.407 274.652 274.971 275.284 275.54 275.748 275.923 276.126 276.316 276.467 276.566 276.66 276.829 277.054 277.299 277.529 277.741 277.887 278.001 278.11 278.259 278.435 278.603 278.748 278.881 279.059 279.285 279.529 279.751 279.977 280.199 280.453 280.732 281.043 281.297 281.403 281.368 281.149 280.707 280.134 279.324 278.05 275.652 273.144 271.515 270.371 269.393 267.603 266.42 265.294 264.485 264.143 264.325 264.447 264.916 264.927 264.39 264.119 263.62 263.275 263.154 263.151 263.261 263.273 262.898 262.389 261.807 261.432 260.936 260.605 260.482 260.46 260.606 260.659 260.921 261.288 261.459 261.546 261.59 261.467 261.218 261.134 261.381 262.458 265.12 266.997 268.677 269.587 270.156 270.158 270.092 270.069 270.065 269.935 269.805 269.822 270.415 271.151 271.845 272.59 273.176 273.744 274.349 274.787 275.148 275.59 276.304 277.302 278.595 279.882 280.785 281.509 282.102 282.48 282.771 283.004 283.133 283.17 283.143 283.151 283.285 283.558 283.786 283.808 283.735 283.559 283.366 283.042 282.296 280.454 278.223 277.457 276.782 276.068 274.989 273.705 272.899 272.517 272.375 272.686 273.151 273.735 274.105 274.144 273.8 273.181 272.561 272.016 271.836 271.999 272.279 272.44 272.416 272.181 271.82 271.577 271.405 271.212 271.04 270.656 270.217 269.929 269.49 269.054 268.724 268.882 269.13 269.763 269.402 268.122 267.0 266.075 265.7 265.694 265.865 265.625 265.244 264.851 264.539 264.337 263.894 263.476 263.201 262.993 262.948 262.969 263.011 263.033 262.602 261.567 260.06 258.025 255.806 253.988 253.099 252.899 253.056 252.546 251.718 250.883 250.902 251.857 252.727 253.086 254.095 253.658 254.13 253.179 252.421 252.062 251.295 251.1 250.692 249.464 247.872 247.065 247.675 248.493 248.492 248.342 247.411 247.153 247.332 247.766 247.901 247.575 247.873 248.858 250.236 252.657 254.585 255.225 256.396 257.116 258.103 260.9 264.352 266.98 268.628 269.617 270.269 270.734 271.127 271.43 271.663 271.893 272.115 272.334 272.564 272.851 273.164 273.4 273.557 273.662 273.785 273.941 274.124 274.337 274.576 274.87 275.114 275.283 275.388 275.479 275.577 275.659 275.75 275.868 276.061 276.297 276.535 276.754 276.957 277.122 277.24 277.349 277.477 277.648 277.794 277.91 278.018 278.161 278.39 278.621 278.839 279.062 279.326 279.58 279.839 280.116 280.412 280.574 280.486 280.112 279.411 278.205 276.74 275.026 271.842 269.575 268.012 266.686 265.675 264.854 263.929 263.071 262.202 262.718 263.675 263.942 263.988 263.088 262.344 261.424 260.817 260.83 260.992 261.289 261.67 261.491 261.145 260.606 260.015 259.48 259.19 258.907 258.75 258.638 258.662 258.684 258.712 258.686 258.889 258.761 258.571 258.255 258.046 258.07 258.879 260.623 264.055 265.872 267.106 267.202 266.141 264.62 263.84 263.458 264.322 265.757 265.977 266.81 268.3 269.476 270.494 271.507 272.253 272.904 273.551 274.012 274.384 274.785 275.226 275.74 276.58 277.755 278.833 279.798 280.573 281.15 281.657 282.075 282.348 282.549 282.637 282.708 282.924 283.206 283.255 283.181 282.998 282.685 282.289 281.263 280.237 279.253 278.204 277.54 276.82 276.163 275.385 274.606 274.046 273.713 273.472 273.49 273.436 273.689 273.957 273.972 273.565 273.121 272.823 272.356 272.082 271.976 271.881 271.822 271.638 271.291 270.854 270.391 269.878 269.59 269.271 268.984 267.907 267.259 266.499 266.125 265.908 265.64 265.638 265.484 265.084 264.685 264.164 263.738 263.603 264.016 264.217 264.315 264.249 263.957 263.601 263.326 263.024 262.717 262.564 262.495 262.379 262.219 262.275 262.209 261.659 260.969 259.391 257.297 255.305 253.957 253.564 254.074 254.112 253.922 253.3 252.264 251.541 252.145 253.683 255.04 255.295 254.666 254.496 253.896 252.9 251.918 251.11 249.909 248.609 247.312 246.181 245.326 245.435 245.913 246.492 246.636 246.091 245.787 245.841 246.363 246.646 247.223 247.123 247.438 249.038 250.734 252.88 253.661 255.038 255.965 257.216 259.869 263.633 266.441 268.157 269.154 269.7 269.993 270.276 270.595 270.987 271.467 271.861 272.181 272.464 272.738 273.01 273.177 273.281 273.363 273.499 273.707 273.896 274.061 274.211 274.398 274.618 274.782 274.876 274.922 274.954 274.987 275.049 275.158 275.312 275.507 275.696 275.895 276.113 276.322 276.497 276.625 276.764 276.93 277.122 277.256 277.332 277.403 277.545 277.777 278.001 278.219 278.461 278.775 279.082 279.369 279.621 279.792 279.599 278.832 277.451 275.684 272.743 269.846 267.807 266.234 265.065 263.91 262.918 262.038 261.617 261.389 261.255 261.776 262.675 262.116 261.273 260.36 259.548 259.164 258.645 258.68 258.979 259.434 259.957 259.908 259.586 259.061 258.514 258.181 258.019 257.566 257.362 256.95 256.844 256.516 256.439 256.585 256.527 256.169 255.792 255.28 255.012 255.077 256.11 258.948 260.828 262.173 262.838 262.537 261.676 260.491 259.838 260.665 261.537 262.208 263.29 264.994 267.178 268.788 270.028 271.115 271.852 272.464 273.102 273.632 274.117 274.661 275.123 275.543 276.035 276.658 277.406 278.279 279.023 279.7 280.444 281.066 281.514 281.857 282.046 282.254 282.65 282.86 282.829 282.706 282.451 282.119 281.644 280.853 280.076 279.156 277.763 277.695 277.397 276.65 276.061 275.368 274.865 274.568 274.332 274.307 274.173 274.061 273.704 273.56 273.268 272.954 272.693 272.428 272.167 271.674 271.249 270.939 270.67 270.437 269.924 269.26 268.442 267.976 267.981 267.644 266.855 266.171 265.413 264.739 264.171 263.791 263.419 263.499 263.346 262.972 262.69 262.57 262.417 262.468 262.343 262.299 262.395 262.527 262.484 262.452 262.379 262.351 262.372 262.46 262.395 262.318 262.346 262.402 261.86 261.495 260.327 259.026 257.708 256.602 256.06 256.231 256.119 255.523 255.071 253.87 252.917 252.753 254.162 254.782 254.751 254.274 253.805 253.011 251.825 250.19 249.088 248.201 246.627 246.089 245.129 244.375 244.475 244.291 244.782 244.968 244.471 244.507 244.466 244.904 245.207 245.742 246.153 246.969 248.29 249.645 251.629 252.669 254.362 255.631 256.99 259.55 263.284 266.195 267.929 268.849 269.097 268.937 268.869 269.096 269.815 270.826 271.64 272.089 272.37 272.562 272.727 272.827 272.85 272.874 272.968 273.175 273.405 273.574 273.696 273.815 273.98 274.162 274.3 274.369 274.348 274.256 274.212 274.249 274.374 274.586 274.833 275.031 275.214 275.389 275.574 275.792 275.984 276.162 276.297 276.392 276.465 276.543 276.653 276.793 277.018 277.32 277.654 277.979 278.313 278.642 278.884 278.889 278.428 277.084 275.046 272.3 268.302 266.022 264.527 263.894 262.973 261.862 260.748 260.067 260.395 260.862 261.017 261.386 261.008 260.057 259.08 258.242 257.74 257.293 257.671 257.927 257.61 257.606 257.764 257.975 257.977 257.744 257.413 257.194 256.628 255.659 255.005 254.75 254.805 255.021 254.862 254.85 254.503 253.865 253.485 252.824 252.189 251.97 252.174 252.895 253.573 253.854 253.666 253.376 253.662 254.319 255.81 258.063 258.684 259.425 261.16 263.615 266.478 268.564 269.947 271.025 271.739 272.337 272.998 273.572 274.114 274.735 275.215 275.634 276.066 276.453 276.915 277.537 278.108 278.716 279.477 280.146 280.752 281.27 281.568 281.933 282.281 282.228 282.04 281.657 281.221 280.901 280.442 279.593 278.488 278.023 277.409 277.859 278.112 277.804 276.882 276.176 275.668 275.305 274.854 274.674 274.537 274.269 273.769 273.306 272.994 272.723 272.576 272.332 271.945 271.449 270.896 270.539 270.196 269.702 269.128 268.427 267.818 267.38 267.133 266.717 266.142 265.396 264.586 263.987 263.467 262.821 262.309 262.07 261.839 261.6 261.727 261.813 261.458 261.364 260.991 260.718 260.579 260.621 260.82 261.179 261.28 261.257 261.492 261.586 261.623 261.561 261.55 261.59 261.446 261.178 260.91 260.129 260.05 259.51 258.828 258.373 257.897 256.969 256.257 255.272 254.266 253.736 255.121 255.432 254.453 253.773 252.768 251.44 249.589 247.852 246.559 245.633 245.285 244.03 243.662 243.051 242.864 242.801 243.144 243.649 243.533 243.59 243.668 244.055 244.433 244.426 245.054 246.122 247.488 248.569 249.811 251.114 253.608 255.352 257.226 259.803 262.836 265.457 267.128 267.781 267.578 266.726 264.598 265.987 267.328 269.243 270.924 271.71 272.031 272.179 272.284 272.391 272.411 272.39 272.41 272.528 272.751 272.949 273.065 273.152 273.265 273.452 273.615 273.672 273.597 273.388 272.682 272.956 273.182 273.415 273.686 273.917 274.092 274.316 274.583 274.86 275.093 275.216 275.318 275.421 275.541 275.672 275.808 275.983 276.197 276.494 276.857 277.234 277.599 277.885 277.945 277.562 276.604 274.816 272.416 269.019 265.864 264.103 262.86 261.756 260.979 260.194 259.6 259.7 260.58 260.751 260.483 260.107 259.568 258.726 257.987 256.96 256.758 256.803 256.925 256.296 255.8 255.562 255.536 256.045 255.915 255.679 255.539 255.16 254.135 253.003 252.607 252.741 253.395 254.385 254.049 253.397 252.763 251.903 251.211 250.622 249.908 249.645 249.454 249.466 249.178 249.085 248.864 249.119 249.65 251.022 252.723 255.633 256.385 257.397 260.413 263.611 266.657 268.906 270.218 271.191 271.892 272.522 273.269 273.91 274.497 275.129 275.575 275.965 276.321 276.626 277.014 277.477 277.906 278.39 278.951 279.571 280.3 280.868 281.281 281.806 281.95 281.738 281.195 279.818 278.613 278.655 278.625 278.003 277.368 277.305 277.841 278.34 278.514 278.391 277.894 277.24 276.531 275.576 275.106 275.036 274.978 275.064 274.706 274.236 273.741 273.122 272.661 272.062 271.599 271.01 270.429 269.935 269.489 268.992 268.522 267.834 267.326 266.973 266.635 266.212 265.609 264.818 263.968 263.441 262.688 262.126 261.402 260.837 260.572 260.29 260.26 260.318 260.244 259.972 259.513 258.918 258.557 258.525 258.551 258.715 259.08 259.437 259.578 259.599 259.344 259.101 259.119 259.377 259.55 259.935 260.12 260.192 260.096 260.129 259.37 258.474 258.433 257.971 256.878 256.075 255.842 255.502 255.293 254.03 253.481 252.581 251.15 249.557 247.633 245.801 244.65 244.293 243.516 242.785 242.129 241.655 241.383 241.227 241.346 241.437 241.686 242.15 242.697 243.237 243.755 243.856 244.675 246.055 247.412 248.999 250.603 252.045 253.853 255.621 257.47 259.434 261.586 263.425 264.846 265.454 265.171 263.821 261.441 261.795 264.068 266.089 268.658 270.296 271.022 271.305 271.443 271.556 271.636 271.656 271.681 271.768 271.914 272.105 272.236 272.331 272.435 272.581 272.783 272.898 272.836 272.622 272.31 271.569 271.392 271.742 272.017 272.152 272.403 272.753 273.184 273.6 273.977 274.279 274.461 274.591 274.729 274.917 275.134 275.317 275.5 275.774 276.174 276.634 276.905 276.9 276.511 275.398 273.514 271.563 268.075 264.873 263.097 261.742 260.775 260.337 259.965 259.618 259.628 260.003 260.081 259.279 259.069 258.601 258.511 257.958 257.272 256.763 256.155 255.646 255.006 254.44 253.919 253.53 253.55 253.717 253.297 252.847 252.402 251.689 250.96 250.758 250.936 251.671 252.937 253.437 252.96 251.999 251.175 250.02 249.303 249.074 248.776 248.692 248.383 247.802 247.389 247.16 247.592 248.478 249.329 251.121 252.825 253.987 255.13 256.889 261.057 264.707 267.467 269.621 270.76 271.618 272.325 272.981 273.76 274.413 275.023 275.651 276.101 276.506 276.803 277.032 277.349 277.699 278.076 278.486 278.893 279.462 280.12 280.692 281.27 281.571 281.591 281.414 280.92 279.549 278.089 277.334 276.751 276.466 276.428 276.8 278.206 278.746 278.953 278.72 278.253 277.623 276.786 275.547 274.873 274.851 275.133 275.493 275.719 275.706 275.445 274.534 273.074 272.039 271.341 270.735 270.145 269.621 269.113 268.576 267.955 267.559 267.21 266.859 266.422 265.909 265.247 264.489 263.639 263.159 262.22 261.691 261.008 260.289 259.446 259.129 258.867 258.811 258.677 258.726 258.301 257.592 257.373 257.049 256.769 256.593 256.61 256.454 256.148 255.751 255.505 255.251 255.418 255.734 256.13 256.913 257.619 258.105 258.589 258.519 258.052 258.006 257.934 257.145 256.66 256.482 255.967 255.058 253.877 253.063 252.231 251.138 249.733 248.075 246.245 244.737 243.38 242.644 242.125 241.662 240.992 240.495 239.628 239.094 238.916 238.862 239.326 239.982 240.727 241.045 241.27 241.966 243.291 245.56 247.78 249.832 252.017 253.706 255.052 256.184 257.259 258.534 260.073 261.486 262.708 263.361 263.162 260.294 258.68 258.259 258.755 262.297 264.864 267.792 269.332 270.043 270.309 270.389 270.42 270.462 270.519 270.614 270.769 270.953 271.132 271.272 271.411 271.572 271.719 271.848 271.843 271.657 271.323 270.923 270.46 269.912 269.398 269.655 269.991 270.255 270.684 271.497 272.313 272.973 273.431 273.794 274.043 274.232 274.398 274.584 274.857 275.232 275.616 275.903 275.923 275.271 273.78 271.968 269.332 266.253 263.092 261.671 260.509 259.924 259.755 259.668 259.62 259.287 258.883 258.897 258.757 258.452 257.962 257.71 256.931 256.167 255.616 254.987 254.635 254.092 253.49 252.597 251.97 251.666 251.358 250.949 250.367 249.645 249.326 249.22 249.63 250.205 250.795 251.471 252.485 252.642 252.417 251.563 249.941 248.659 247.734 247.268 247.404 247.253 246.744 246.192 245.727 245.794 247.139 249.49 251.186 252.017 252.726 253.486 255.343 258.498 262.49 266.034 268.357 270.207 271.189 271.954 272.699 273.346 274.045 274.6 275.167 275.802 276.31 276.78 277.062 277.282 277.548 277.845 278.203 278.539 278.953 279.554 280.196 280.773 281.028 281.112 281.127 281.059 280.886 280.428 279.616 278.348 276.59 276.053 276.21 277.164 278.529 279.086 279.125 278.734 278.055 277.322 276.271 275.279 274.426 274.079 273.911 274.197 275.063 275.466 275.56 274.982 273.597 272.443 271.466 270.723 270.051 269.592 269.118 268.471 267.968 267.483 267.045 266.613 266.09 265.356 264.477 263.568 262.811 262.104 261.513 260.794 260.322 259.57 258.842 258.396 258.074 257.821 257.776 257.615 257.353 257.065 256.965 256.597 256.147 255.561 254.895 254.101 253.39 252.929 252.247 251.654 251.371 251.545 251.837 252.608 253.675 254.374 254.733 255.216 255.125 255.184 254.838 254.929 254.208 253.737 253.009 252.32 251.594 250.88 250.041 249.176 248.277 247.118 245.557 244.645 243.441 241.95 241.457 240.238 239.354 238.844 238.349 237.48 237.055 236.936 236.897 237.411 238.037 238.363 238.698 239.47 241.158 243.424 246.979 249.613 252.01 253.858 255.088 255.948 256.596 257.179 257.844 258.738 259.652 260.189 260.128 258.466 255.704 254.72 254.889 256.529 261.261 264.593 267.171 268.36 268.861 268.971 268.903 268.877 269.021 269.184 269.337 269.469 269.603 269.784 269.914 269.945 269.932 269.847 269.663 269.382 269.004 268.512 268.055 267.554 266.977 266.312 265.501 265.087 266.958 268.006 268.874 270.271 271.436 272.394 273.083 273.515 273.84 274.12 274.39 274.646 274.798 274.554 273.67 272.19 270.408 266.832 263.365 261.256 259.842 258.744 258.351 258.618 258.682 259.067 258.796 258.511 258.24 257.153 256.56 256.138 255.749 256.223 255.53 254.838 254.143 253.723 253.092 252.456 251.602 250.885 249.934 249.312 248.32 248.04 247.9 248.112 248.558 249.705 250.44 250.919 251.154 251.375 251.576 251.736 251.501 250.713 248.732 247.22 246.317 246.048 246.045 245.895 245.537 245.121 244.724 245.474 247.792 250.764 251.65 252.037 252.473 253.749 256.612 260.616 263.696 266.85 268.739 270.123 270.948 271.672 272.564 273.251 273.888 274.345 274.848 275.448 276.01 276.594 276.952 277.234 277.474 277.769 278.111 278.426 278.878 279.465 280.154 280.608 280.801 280.842 280.81 280.819 280.839 280.661 280.14 279.092 277.549 276.135 276.412 277.685 278.899 279.111 278.834 277.982 276.999 275.817 275.213 274.599 273.85 272.946 272.591 272.664 273.769 274.467 274.833 274.795 274.037 272.889 271.484 270.688 269.893 269.268 268.643 268.108 267.486 266.964 266.358 265.937 265.298 264.388 263.385 262.277 261.477 260.781 260.18 259.651 259.043 258.594 258.22 257.624 257.184 256.97 256.691 256.439 256.153 256.037 255.82 255.258 254.74 254.043 253.313 252.588 251.889 251.038 249.887 249.125 248.661 248.43 248.699 249.055 249.525 250.15 250.65 250.945 251.105 251.147 250.93 250.78 250.287 249.647 248.96 248.412 247.981 247.415 247.015 246.384 245.979 245.614 245.042 244.669 243.633 242.557 241.745 240.782 240.142 239.133 238.23 237.533 236.959 236.321 235.992 236.164 236.431 236.419 236.738 237.431 238.999 241.526 244.221 246.996 250.223 252.06 253.315 254.12 254.542 254.687 254.693 254.691 254.597 254.241 254.438 254.932 253.132 251.801 251.692 252.811 257.267 260.178 262.78 264.34 264.875 265.045 265.258 265.603 266.023 266.382 266.488 266.529 266.558 266.527 266.584 266.597 266.401 266.04 265.592 264.999 264.572 264.315 263.984 263.491 262.786 262.131 261.661 261.532 261.144 261.609 264.197 265.955 267.488 269.061 270.325 271.42 272.168 272.539 272.725 272.656 272.122 270.974 269.723 267.627 264.087 261.541 260.02 258.893 257.768 257.179 257.071 256.938 257.309 257.645 257.477 256.318 256.012 255.095 255.704 255.062 254.385 254.44 253.8 252.967 252.533 251.801 251.283 250.398 249.485 248.604 247.83 247.282 246.739 247.06 248.562 249.318 249.696 250.073 250.314 250.515 250.541 250.549 250.527 250.282 249.493 247.819 245.649 244.47 243.873 244.026 244.57 245.158 245.562 245.125 245.034 246.196 249.54 250.681 251.444 251.947 252.541 254.469 257.29 261.007 263.611 266.056 267.534 268.218 268.583 269.227 270.675 272.06 273.171 273.762 274.322 274.889 275.489 276.1 276.574 277.05 277.411 277.753 277.999 278.254 278.596 279.086 279.801 280.225 280.482 280.525 280.485 280.497 280.609 280.665 280.369 279.677 278.451 277.239 277.553 278.373 279.199 278.909 278.155 276.793 275.1 272.552 271.886 271.828 271.469 271.036 270.896 271.044 271.295 272.478 273.625 273.724 273.268 272.189 271.188 270.202 269.341 268.602 267.975 267.315 266.649 266.014 265.375 264.984 264.388 263.479 262.502 261.452 260.5 259.651 259.065 258.511 257.981 257.626 257.137 256.549 256.057 255.615 255.169 254.843 254.387 254.042 253.556 252.992 252.481 252.05 251.467 250.849 250.067 249.326 248.287 247.374 246.611 246.082 245.964 246.143 246.213 246.722 247.061 247.511 247.678 247.782 247.193 246.53 245.919 245.474 244.912 244.39 243.873 243.352 242.832 242.601 242.398 242.423 242.474 242.566 242.326 241.68 240.896 240.302 239.915 239.507 238.532 237.629 236.908 236.492 236.172 235.599 235.274 235.378 235.634 236.515 237.924 240.182 242.644 244.795 246.449 247.92 249.571 250.282 250.438 250.384 250.059 249.624 248.934 247.911 248.739 249.783 250.7 250.688 249.714 248.731 251.038 253.457 254.486 255.626 256.533 257.212 257.173 258.268 259.251 259.984 260.44 260.477 260.423 260.526 260.64 260.71 260.64 260.336 259.982 259.961 260.027 260.1 260.07 259.67 258.65 257.026 255.881 255.504 255.373 255.785 256.737 259.563 261.741 263.29 265.319 266.0 266.83 267.536 267.779 267.431 266.726 265.22 261.698 259.872 258.457 257.631 256.805 255.932 256.067 256.17 256.058 255.83 255.757 255.537 254.926 254.004 253.565 252.927 253.068 252.871 252.197 252.256 251.742 251.002 250.361 249.84 248.85 247.862 246.946 246.3 245.592 245.45 245.77 247.643 248.52 249.111 249.351 249.431 249.371 249.267 249.145 249.02 248.905 248.512 247.21 243.97 242.487 241.683 241.762 242.349 243.971 246.594 246.806 246.282 246.347 248.608 249.741 250.518 251.108 251.721 252.857 254.481 257.074 259.493 261.57 262.869 263.608 263.914 264.278 265.199 266.299 269.077 271.795 272.888 273.728 274.278 274.796 275.244 275.734 276.237 276.775 277.268 277.687 278.039 278.334 278.756 279.266 279.789 280.053 280.118 280.042 279.984 280.06 280.197 280.228 280.008 279.618 279.228 279.077 279.161 279.299 278.718 277.58 276.002 273.282 270.985 269.919 269.445 269.207 268.999 268.966 269.556 269.788 271.69 272.257 272.022 270.54 269.68 269.134 268.511 267.812 266.863 266.363 265.778 265.197 264.58 263.911 263.246 262.53 261.83 260.966 259.974 259.027 258.22 257.555 257.005 256.541 255.977 255.519 255.138 254.716 254.479 254.11 253.477 252.682 251.986 251.427 250.779 250.139 249.615 249.195 248.629 247.897 247.133 246.228 245.399 244.605 244.22 244.242 244.233 244.24 244.587 244.818 244.796 244.983 244.794 244.194 243.454 242.786 242.199 241.423 240.882 240.352 239.875 239.276 238.708 238.626 238.767 238.71 238.697 238.655 238.426 238.201 237.935 237.506 237.22 236.874 236.181 235.574 235.042 234.62 234.087 233.985 234.344 234.883 235.995 237.862 240.233 242.059 243.405 244.081 244.1 244.227 244.185 244.004 243.565 243.045 242.581 242.373 242.793 243.87 245.58 246.939 247.41 246.9 245.667 243.285 243.081 242.964 242.96 243.129 243.896 246.692 248.693 249.564 250.492 250.829 251.42 252.256 253.183 254.062 254.635 254.981 255.361 255.976 256.695 257.367 257.711 257.304 255.272 254.247 253.411 252.904 252.774 252.802 252.795 252.767 252.742 253.105 254.4 254.538 256.757 258.201 257.73 257.186 257.048 256.77 256.262 256.106 255.545 255.146 254.419 254.156 253.951 254.397 254.301 254.226 253.938 253.586 252.876 252.195 252.403 251.848 251.211 250.652 250.396 249.896 249.657 249.162 248.407 247.539 246.923 246.299 245.466 244.352 243.548 243.246 243.35 244.054 246.524 247.463 247.932 248.011 247.838 247.552 247.411 247.334 247.272 247.209 246.911 245.991 243.275 241.745 241.291 241.439 242.696 244.083 246.784 247.364 247.763 248.23 248.852 249.51 250.079 250.644 251.4 252.597 254.169 255.889 257.437 258.538 259.09 258.923 258.887 258.546 259.691 261.79 264.321 269.293 271.795 273.29 273.964 274.363 274.575 274.884 275.271 275.83 276.371 276.874 277.197 277.505 277.87 278.328 278.769 279.209 279.426 279.505 279.499 279.504 279.563 279.605 279.568 279.505 279.473 279.471 279.465 279.043 278.658 277.766 276.39 274.627 272.154 270.231 269.374 268.841 268.425 268.311 268.354 269.039 270.718 271.08 270.847 268.863 268.04 266.817 265.958 265.37 264.952 264.624 264.121 263.52 262.923 261.992 261.215 260.434 259.784 258.816 257.923 257.149 256.434 255.798 255.228 254.731 254.386 254.287 254.153 253.558 253.124 252.629 251.788 251.063 250.461 249.674 249.109 248.429 247.754 247.236 246.835 246.265 245.405 244.493 243.696 243.134 242.63 242.59 242.527 242.715 243.017 242.992 243.182 243.302 242.848 242.014 241.132 240.192 239.54 238.807 238.36 238.017 237.516 237.149 236.83 236.412 236.326 235.754 235.474 234.997 234.728 234.459 234.451 234.556 234.443 234.475 234.116 233.8 233.381 232.947 232.813 233.069 233.898 235.015 236.376 238.211 239.958 241.089 241.935 241.885 241.392 240.603 240.066 240.026 240.077 239.714 239.377 239.219 239.757 239.947 240.293 241.048 241.352 240.62 239.99 239.629 239.143 238.952 238.832 238.61 238.805 239.203 239.974 241.664 243.93 245.365 246.698 247.942 249.372 250.508 251.259 252.004 252.844 253.78 254.745 255.57 256.067 255.812 253.154 251.884 251.132 250.915 250.722 250.808 250.812 250.207 249.409 249.238 249.543 249.411 249.709 250.598 250.656 250.818 251.234 251.698 252.244 252.43 252.77 252.697 252.32 252.268 252.549 252.392 251.996 251.535 251.392 251.934 251.029 249.832 249.458 248.705 248.335 247.783 247.454 247.189 246.694 246.167 245.438 244.719 244.061 243.598 243.129 242.772 242.246 241.895 241.904 242.124 242.402 243.612 245.134 245.292 244.909 244.793 244.86 244.802 244.272 244.892 244.778 244.364 242.814 242.593 242.711 242.878 243.646 244.043 244.226 245.212 246.905 247.722 248.32 248.845 249.199 249.825 250.852 252.057 253.188 254.11 254.599 255.32 254.429 253.259 252.876 253.347 254.81 257.569 259.231 265.101 269.754 272.195 273.397 274.017 274.342 274.587 274.929 275.309 275.648 275.75 275.667 275.52 275.447 275.639 276.147 276.753 277.49 278.052 278.476 278.731 278.86 278.917 278.91 278.934 278.952 279.04 279.118 278.498 278.429 278.121 277.445 276.525 275.371 274.068 272.385 270.0 268.852 268.287 267.646 267.599 267.871 269.276 269.694 269.187 267.649 266.297 265.266 264.528 263.944 263.447 262.933 262.438 261.92 260.984 260.252 259.62 259.034 258.361 257.306 256.152 255.139 254.252 253.601 253.304 253.103 252.762 252.302 252.02 251.701 251.108 250.449 249.777 249.211 248.51 247.838 247.348 246.462 246.024 245.7 245.121 244.449 243.642 242.963 242.429 241.755 241.698 241.583 241.582 241.787 241.945 242.075 241.706 241.111 240.312 239.574 238.723 238.075 237.503 237.05 236.641 236.11 235.776 235.519 235.059 234.499 234.037 233.461 232.782 232.334 232.232 232.318 232.599 233.111 233.09 233.037 233.028 232.873 232.791 233.223 233.727 234.609 235.381 236.294 237.701 239.078 239.643 239.948 240.233 239.931 239.493 239.38 238.868 238.537 238.018 237.553 236.89 236.957 236.937 237.004 237.185 237.394 237.55 237.701 237.75 237.886 238.094 238.452 238.159 238.042 237.879 237.693 238.234 239.143 240.488 242.949 245.516 247.447 248.735 249.538 250.114 250.509 251.233 252.408 253.524 254.116 253.945 252.769 251.786 248.968 248.273 248.376 248.284 248.645 248.304 248.021 247.511 247.123 247.179 247.372 247.673 247.939 248.349 248.783 249.108 249.74 249.9 250.301 250.293 250.581 250.689 250.115 250.064 250.077 250.0 250.323 249.75 248.882 247.87 246.861 246.128 245.566 245.046 244.604 244.141 243.651 243.092 242.482 241.869 241.448 241.2 240.971 240.898 240.689 240.206 239.818 239.146 238.791 238.406 238.396 240.36 241.224 241.347 240.448 239.849 241.268 241.268 242.078 242.276 242.541 242.903 242.138 240.797 239.304 238.449 238.744 240.682 241.42 245.045 246.856 247.874 248.434 248.764 249.988 251.296 251.972 252.322 252.869 252.335 251.219 249.999 249.245 249.561 250.743 252.894 255.911 259.747 264.655 268.282 270.433 271.688 272.583 273.212 273.692 274.033 274.138 273.865 273.177 272.358 271.279 270.517 270.797 272.141 273.854 275.056 276.085 276.882 277.335 277.619 277.747 277.872 278.005 278.204 278.394 277.69 277.869 277.931 277.881 277.577 277.0 276.023 274.65 273.056 270.184 267.947 267.253 266.784 266.483 266.67 267.843 268.074 267.568 265.546 264.606 263.917 263.201 262.545 262.023 261.481 261.146 261.577 261.491 260.861 259.729 258.557 257.166 255.702 254.465 253.567 252.718 252.071 251.604 251.222 250.979 250.679 250.544 250.102 249.484 249.291 248.932 248.016 247.22 246.632 245.743 244.949 244.524 243.76 242.936 242.329 241.814 241.143 240.733 240.594 240.822 241.059 240.918 240.872 240.602 240.053 239.649 239.304 238.921 238.406 237.809 237.311 236.896 236.379 235.669 235.002 234.36 233.707 233.268 232.933 232.44 231.981 231.63 231.483 231.503 231.63 232.153 232.606 232.871 233.141 233.588 233.831 233.847 233.987 234.644 235.015 235.745 236.725 237.566 237.792 238.069 238.466 239.128 239.645 239.448 238.721 238.04 237.07 236.701 235.953 235.356 235.499 235.794 236.43 237.164 237.364 236.87 236.593 236.656 236.743 237.077 237.171 236.981 236.861 236.3 236.287 236.656 237.714 238.981 242.328 244.386 245.757 246.324 245.962 246.744 247.971 249.22 250.788 251.488 249.994 248.849 247.823 246.643 246.036 246.058 246.484 246.344 245.887 245.986 245.738 245.507 245.793 245.864 245.824 245.681 245.84 246.051 245.95 245.712 245.949 246.355 246.825 247.069 247.159 247.485 247.577 247.656 247.662 247.277 246.265 245.558 244.829 244.24 243.607 243.045 242.601 242.16 241.808 241.364 241.008 240.363 239.868 239.484 239.44 239.472 239.344 239.051 238.623 237.949 237.034 236.123 235.434 235.102 234.98 235.281 235.516 235.973 236.879 238.602 239.261 239.893 239.914 239.124 239.018 237.851 236.369 235.799 235.181 235.262 236.635 240.329 242.191 245.303 246.847 247.468 248.14 249.47 250.582 251.031 251.47 250.582 250.571 249.733 248.735 247.864 247.013 247.081 248.162 250.577 253.841 256.553 258.566 261.504 264.551 266.553 267.852 268.835 269.705 270.1 269.939 269.347 266.288 264.591 264.214 264.538 265.152 266.378 270.249 272.744 273.721 274.37 274.881 275.494 276.088 276.625 277.076 277.43 276.733 277.005 277.219 277.385 277.443 277.257 276.651 275.626 274.206 272.403 269.23 266.779 265.998 265.408 265.092 265.074 264.658 263.987 263.142 262.214 261.576 260.912 260.481 260.21 260.12 260.346 260.604 260.703 260.75 260.668 259.946 258.123 256.371 255.852 254.771 253.408 252.558 251.831 251.494 251.205 250.867 250.351 250.022 249.626 249.022 248.188 247.633 246.75 246.004 245.069 244.265 243.394 242.274 241.329 240.796 240.498 240.137 239.701 239.626 239.768 239.885 240.101 240.1 239.447 239.108 238.799 238.408 238.132 237.851 237.738 237.586 237.281 236.809 235.854 235.029 233.998 233.239 232.618 232.075 231.753 231.421 231.118 230.832 230.779 231.028 231.355 231.868 232.21 232.725 233.399 233.583 233.708 234.11 234.652 235.237 235.384 235.87 236.731 236.681 236.636 237.45 238.762 239.019 238.213 237.737 237.622 237.025 235.463 234.945 234.977 235.025 235.911 236.637 237.346 237.392 237.219 236.763 236.121 235.612 235.506 235.396 235.193 235.098 235.051 234.947 235.184 235.597 236.258 237.245 238.216 239.211 240.265 241.305 242.504 244.07 246.245 247.848 248.606 248.346 247.194 245.532 244.809 244.382 244.209 243.997 244.199 244.351 244.052 243.733 243.325 243.085 242.802 242.885 242.839 242.919 243.021 242.872 242.748 243.003 243.003 243.529 243.854 244.13 244.282 244.17 244.128 244.052 243.547 243.167 242.561 242.154 241.866 241.576 241.306 240.952 240.774 240.483 240.196 239.783 239.341 238.781 238.238 238.059 238.003 237.798 237.624 237.355 236.764 235.782 234.98 234.347 233.984 233.91 234.109 234.456 236.002 236.421 237.324 239.043 238.961 238.697 238.288 237.68 237.031 235.027 234.019 233.989 233.961 235.097 236.982 238.986 241.4 244.092 246.077 247.339 248.524 249.723 250.567 250.067 249.447 250.287 250.299 249.532 247.973 246.373 245.355 244.954 245.578 247.125 249.028 250.947 253.517 254.749 256.587 257.403 258.074 258.664 260.001 261.592 262.85 263.939 265.237 266.16 266.748 267.348 268.331 269.483 270.29 271.029 271.811 272.644 273.591 274.463 275.267 275.887 276.39 275.481 275.813 276.118 276.35 276.512 276.529 276.247 275.548 274.561 273.315 271.865 268.692 265.948 264.964 264.534 263.87 263.136 262.389 261.38 260.518 260.017 259.386 259.195 259.341 259.499 259.775 259.953 260.622 261.232 261.834 261.033 259.97 259.072 258.648 257.675 256.625 255.368 254.295 253.442 252.595 251.876 251.125 250.327 249.57 248.922 248.146 247.206 246.176 245.209 244.28 243.262 242.315 241.491 240.742 240.188 239.843 239.267 238.842 238.604 238.578 238.642 238.991 239.176 238.918 238.81 238.495 238.11 237.832 237.616 237.238 237.033 236.72 236.387 235.611 234.766 233.87 233.156 232.379 231.857 231.415 231.018 230.466 230.105 230.149 230.416 230.677 231.179 231.817 232.395 232.895 233.204 233.412 233.834 234.258 234.766 235.123 235.685 236.107 235.841 235.957 236.94 237.166 237.204 236.964 236.07 235.809 234.927 234.097 233.381 233.541 233.952 234.675 235.439 236.032 236.611 237.077 236.5 236.165 235.636 235.445 235.525 235.397 235.195 235.054 235.104 235.182 235.334 235.783 236.383 236.938 237.617 238.428 239.129 240.969 242.814 244.401 245.631 246.537 246.998 246.199 244.377 243.524 242.892 242.337 242.084 241.929 241.737 241.542 241.273 241.007 240.758 240.777 241.025 241.237 241.288 241.411 241.26 240.838 240.365 239.803 240.258 240.284 240.24 240.347 240.62 240.67 240.768 240.464 240.155 239.638 239.647 239.788 239.661 239.668 239.426 239.072 238.797 238.548 238.058 237.661 237.07 236.732 236.676 236.874 236.867 236.563 235.809 235.293 234.655 234.249 233.872 233.674 233.685 233.965 234.548 234.37 234.538 235.258 236.916 237.351 237.23 237.021 235.588 235.033 234.537 233.513 233.617 234.429 236.753 239.774 241.416 242.888 244.366 245.508 246.723 247.901 249.24 250.644 249.647 249.404 250.2 250.559 249.844 248.372 246.606 245.105 243.72 243.04 243.275 244.142 245.398 246.845 248.392 251.185 252.657 253.504 254.101 254.147 254.009 253.917 254.761 257.879 261.186 263.946 265.977 267.294 268.314 269.129 269.836 270.55 271.307 272.137 272.958 273.749 274.458 275.018 273.802 274.316 274.704 275.024 275.246 275.334 275.266 274.925 274.29 273.484 272.573 271.389 269.925 267.726 265.314 264.106 263.446 262.698 262.142 261.406 261.064 260.974 261.195 263.407 265.126 265.13 265.576 265.346 264.829 263.901 263.092 262.26 261.324 260.249 259.019 257.883 256.803 256.003 255.226 254.467 253.641 252.994 252.155 250.721 250.086 249.705 248.438 247.677 245.639 243.933 242.728 241.625 240.636 239.731 239.106 238.524 238.108 237.821 237.77 237.925 238.133 238.476 238.765 238.87 239.055 238.943 238.738 238.385 237.845 237.37 236.73 235.951 235.196 234.682 234.299 233.521 233.095 232.612 231.938 231.366 230.797 230.281 229.987 229.782 229.959 230.264 230.721 231.274 231.884 232.254 232.456 232.496 232.859 233.411 233.822 234.208 234.495 234.887 234.953 234.937 234.698 234.513 234.33 234.216 233.695 233.29 232.925 232.724 232.45 232.591 232.858 233.231 233.4 233.993 234.727 235.701 235.863 236.516 236.551 236.334 235.919 235.785 235.77 235.567 235.659 236.033 236.497 236.572 237.332 237.569 237.793 238.364 239.057 240.079 241.406 242.842 244.075 244.831 245.188 245.091 244.067 243.352 242.678 242.195 241.841 241.533 241.226 241.027 240.828 240.657 240.586 240.604 240.778 241.003 240.973 240.747 240.384 239.907 239.479 239.129 238.728 238.796 238.479 238.604 238.726 238.86 238.844 238.459 238.629 238.703 238.746 238.969 239.204 238.781 238.023 237.411 236.903 236.26 235.748 235.601 235.286 235.316 235.467 235.625 235.554 234.744 234.24 233.52 233.172 233.147 233.025 232.877 232.798 232.769 232.745 233.022 233.006 233.774 235.242 235.639 235.829 235.498 234.773 234.067 233.564 233.927 234.667 235.852 238.955 241.66 242.582 243.419 244.511 245.558 246.55 247.458 248.488 248.961 249.338 249.657 249.898 250.114 249.217 247.611 245.881 243.86 241.951 240.339 239.486 239.919 241.065 242.625 244.283 245.541 246.693 247.689 248.339 248.886 250.468 251.933 252.158 252.377 253.816 258.125 261.835 264.55 266.437 267.75 268.662 269.443 270.109 270.709 271.364 271.991 272.639 273.268 272.195 272.749 273.238 273.641 273.892 274.061 274.11 274.046 273.812 273.408 272.885 272.317 271.669 270.958 270.28 269.563 268.582 267.261 266.999 266.597 265.877 266.717 267.823 268.184 268.552 268.543 268.361 267.956 267.298 266.449 265.259 263.894 262.141 260.4 258.715 257.191 255.739 254.65 253.742 252.553 252.684 252.237 252.738 252.493 252.034 251.432 250.662 249.666 246.924 244.711 243.09 241.498 240.266 239.228 238.45 237.839 237.491 237.382 237.394 237.616 237.439 237.486 237.574 237.723 237.812 237.842 237.77 237.54 237.284 236.943 236.355 235.775 235.124 234.396 233.669 233.01 232.477 232.021 231.495 230.956 230.794 230.321 230.015 229.844 229.854 229.912 230.023 230.399 230.741 231.319 231.655 231.824 232.107 232.771 233.293 233.779 234.085 234.235 234.116 233.84 233.388 233.072 232.89 232.76 232.86 232.887 232.967 233.118 233.358 234.398 234.342 233.989 235.216 235.505 235.713 236.241 236.783 236.777 236.805 236.733 236.544 236.21 236.123 236.109 236.137 236.282 236.697 237.403 238.392 239.075 239.227 239.296 239.718 240.253 240.785 241.413 242.212 242.941 243.404 243.638 243.618 243.481 243.398 243.454 243.289 243.055 242.742 242.474 242.226 242.046 241.783 241.611 241.702 241.621 241.404 241.164 240.954 240.634 240.434 240.218 239.848 239.627 239.337 238.828 238.647 238.622 238.653 238.323 237.88 237.871 237.739 237.753 237.769 237.632 236.826 235.574 235.09 234.787 234.495 234.399 234.247 234.025 233.554 233.092 232.811 232.685 232.191 232.141 232.121 231.909 231.579 231.593 231.705 231.794 231.676 231.483 231.353 231.391 231.694 231.871 232.155 232.551 232.999 233.477 234.301 235.988 237.778 239.402 240.699 241.72 242.695 243.746 244.869 245.577 246.305 247.17 248.142 248.945 248.975 249.268 249.113 248.623 247.547 245.927 243.945 241.733 239.732 238.207 237.077 236.626 237.415 239.017 240.963 243.015 244.883 246.308 247.189 247.676 248.023 248.707 250.546 250.513 250.979 253.163 257.055 261.01 263.743 265.468 266.782 267.741 268.507 269.18 269.759 270.351 270.969 271.564 270.798 271.318 271.78 272.151 272.433 272.631 272.761 272.839 272.855 272.808 272.686 272.48 272.221 271.921 271.583 271.226 270.87 270.544 270.29 270.116 270.028 269.979 269.953 269.891 269.754 269.506 269.111 268.575 267.848 266.976 265.905 264.68 263.159 261.117 258.945 257.243 255.867 253.566 251.297 250.534 251.458 251.496 251.373 251.252 251.03 250.761 250.672 250.342 249.466 247.549 244.736 244.007 242.571 241.264 241.174 240.85 240.181 240.427 239.195 238.097 237.591 237.015 236.418 235.937 235.523 235.258 235.111 234.924 234.893 234.799 234.66 234.467 233.92 233.461 233.042 232.668 232.168 231.85 231.59 231.306 231.031 230.936 230.921 230.848 231.106 231.35 231.863 231.813 231.831 231.963 232.184 232.648 233.116 235.579 236.013 236.337 236.528 236.512 236.218 235.123 234.183 233.956 233.79 233.956 234.251 235.602 236.189 237.571 237.692 237.581 237.239 237.177 237.459 237.395 237.334 237.37 237.395 237.442 237.523 237.59 237.612 237.572 237.487 237.425 237.418 237.628 238.195 238.863 239.929 240.337 240.363 240.334 240.278 240.279 240.486 240.841 241.355 241.721 242.011 242.31 242.707 243.036 243.054 243.024 242.886 242.826 242.896 242.855 242.812 242.768 242.707 242.624 242.635 242.369 241.829 241.388 240.951 240.544 240.392 240.227 240.011 240.007 239.865 239.653 239.371 238.916 238.334 237.526 236.658 236.237 235.87 235.824 235.047 234.591 234.368 234.045 233.961 234.007 233.801 233.959 233.599 233.266 232.717 232.683 232.574 232.071 231.825 231.757 231.631 231.337 230.846 230.927 231.476 231.351 231.204 231.003 230.931 231.027 231.305 231.836 232.627 233.5 235.835 237.78 239.297 239.933 240.53 241.073 241.81 242.578 243.26 243.861 244.632 245.555 246.305 247.202 248.101 248.222 248.345 248.153 247.68 246.68 245.288 243.594 241.667 239.644 237.872 236.435 235.557 235.205 235.504 236.684 238.631 240.825 242.794 244.416 245.694 246.523 247.017 247.495 247.635 248.452 249.163 249.958 251.832 255.556 258.912 261.848 263.972 265.37 266.487 267.403 268.192 268.912 269.576 270.206 269.079 269.657 270.105 270.446 270.73 270.901 271.048 271.151 271.213 271.285 271.305 271.339 271.315 271.286 271.203 271.129 271.015 270.895 270.737 270.558 270.361 270.124 269.859 269.538 269.194 268.791 268.336 267.821 267.244 266.583 265.823 264.938 263.868 262.519 260.828 258.837 257.031 255.391 253.656 250.516 248.532 248.919 248.947 248.966 248.848 248.561 248.506 248.77 248.784 248.589 248.197 248.157 247.882 247.453 247.006 246.474 245.742 244.813 242.844 241.725 241.354 239.225 237.153 236.169 235.335 234.62 234.013 233.552 233.248 233.041 232.897 232.779 232.612 232.407 232.303 232.145 232.577 232.608 232.736 233.142 233.569 235.578 236.115 236.141 237.09 237.905 237.882 237.628 237.258 237.212 237.169 237.328 237.992 238.161 238.232 238.308 238.331 238.209 237.922 237.476 235.573 235.513 237.5 237.87 238.171 238.813 239.297 239.624 239.743 239.765 239.725 239.607 239.42 239.199 238.918 238.595 238.268 238.008 237.864 237.826 237.858 237.948 238.109 238.346 238.665 239.118 239.673 240.253 240.675 240.801 240.857 240.971 240.865 240.644 240.669 240.886 241.118 241.227 241.291 241.474 241.791 241.977 242.014 241.851 241.785 241.799 241.865 241.751 241.725 241.743 241.573 241.404 241.393 241.196 240.662 239.869 238.98 238.393 238.16 237.915 237.953 238.032 238.012 238.122 237.961 237.668 237.347 236.729 235.966 235.269 235.144 234.781 234.549 234.553 234.535 234.621 234.644 234.65 234.486 234.465 234.267 233.756 233.193 232.75 232.372 232.169 231.86 231.803 231.802 231.789 231.763 231.734 231.476 231.536 231.465 231.648 231.799 232.39 233.972 234.732 236.213 236.867 238.936 239.996 240.497 240.928 241.446 242.091 242.781 243.385 243.994 244.527 245.041 245.582 246.139 246.713 247.804 247.512 247.195 246.631 245.823 244.694 243.198 241.608 239.861 238.16 236.66 235.5 234.827 234.738 235.242 236.236 237.718 239.54 241.187 242.774 244.069 244.97 245.595 246.11 246.768 247.383 247.273 247.412 248.272 249.655 251.612 255.149 258.484 261.606 263.495 264.886 266.023 266.916 267.747 268.493 266.788 267.426 268.081 268.507 268.796 268.999 269.027 269.019 268.914 268.801 268.709 268.578 268.506 268.309 268.241 268.314 268.564 268.722 268.943 268.986 268.997 268.872 268.67 268.381 268.026 267.634 267.224 266.816 266.403 265.953 265.46 264.847 264.118 263.179 261.956 260.463 258.728 257.018 255.461 253.909 251.404 249.518 247.3 246.585 246.581 246.611 246.762 247.063 247.209 246.991 247.068 247.612 247.992 248.172 248.146 247.931 247.474 246.929 246.374 245.737 244.89 243.179 241.778 239.288 238.066 237.071 236.176 235.306 234.58 234.064 233.664 233.63 233.518 233.442 233.478 233.589 234.09 234.643 235.347 236.15 237.033 239.903 241.413 241.461 241.456 241.289 240.951 240.617 240.338 240.077 239.879 239.735 239.624 239.523 239.384 239.16 238.743 237.981 237.778 236.816 236.66 236.693 237.911 238.318 238.623 238.955 239.342 240.598 241.647 241.355 241.0 240.828 240.673 240.412 239.997 239.536 239.044 238.649 238.38 238.247 238.284 238.422 238.576 238.744 238.937 239.14 239.337 239.481 239.664 239.887 240.055 240.241 240.354 240.356 240.446 240.514 240.539 240.567 240.534 240.517 240.445 240.323 240.074 239.81 239.592 239.355 239.048 238.83 238.703 238.472 238.183 238.156 238.012 237.635 237.468 237.097 236.55 236.336 236.377 236.443 236.558 236.641 236.693 236.697 236.533 236.347 236.165 235.718 235.372 235.421 235.632 235.679 235.557 235.419 235.052 235.095 234.715 234.644 234.561 234.509 234.406 234.285 234.09 233.726 233.18 232.693 232.44 232.353 232.276 232.139 232.104 232.067 231.966 231.788 231.765 231.958 232.452 233.232 235.187 236.912 238.017 238.775 239.564 240.19 240.702 241.415 242.071 242.704 243.301 243.84 244.275 244.598 244.835 244.983 245.953 246.861 246.715 246.217 245.504 244.643 243.617 242.41 241.011 239.461 238.029 236.747 235.471 234.72 234.379 234.506 235.142 236.124 237.409 238.905 240.355 241.623 242.714 243.681 244.349 244.948 245.416 245.789 245.781 246.073 246.647 247.221 248.257 249.702 251.78 253.97 257.737 260.622 262.381 263.883 264.926 265.856 263.9 264.873 265.727 266.223 266.587 266.629 266.545 266.271 265.882 265.403 264.836 264.171 262.56 261.1 260.689 261.393 262.039 262.738 263.512 264.259 264.821 265.297 265.69 265.679 265.744 265.578 265.545 265.443 265.277 265.087 264.809 264.46 264.04 263.473 262.791 261.97 260.855 259.616 258.344 257.118 256.106 255.27 254.215 252.738 252.859 252.266 251.007 249.711 248.784 249.41 249.122 248.418 247.701 247.139 247.124 247.24 247.08 246.864 246.708 246.521 246.235 245.804 245.255 244.409 243.483 242.433 241.377 240.181 238.985 238.643 238.088 237.244 236.273 236.076 236.222 236.553 238.521 239.143 239.267 239.907 241.907 243.303 243.589 243.217 242.657 242.112 241.657 241.273 240.977 240.741 240.527 240.308 240.16 240.081 240.033 239.98 239.852 239.591 239.234 239.439 239.676 239.891 241.161 241.596 241.633 241.599 241.6 241.698 241.908 241.834 241.684 241.592 241.487 241.268 240.896 240.407 239.85 239.347 238.978 238.711 238.664 238.718 238.812 238.958 239.077 239.144 239.193 239.253 239.389 239.529 239.595 239.646 239.736 239.837 239.889 239.914 239.843 239.729 239.601 239.489 239.311 239.057 238.713 238.438 238.159 237.806 237.432 237.212 237.029 236.783 236.555 236.397 236.166 235.817 235.506 235.235 235.003 234.93 234.98 235.072 235.212 235.393 235.471 235.558 235.553 235.458 235.423 235.281 235.173 235.34 235.419 235.377 235.223 235.033 234.714 234.535 234.525 234.525 234.474 234.276 234.104 233.908 233.807 233.46 233.339 233.189 233.089 233.023 232.924 232.798 232.717 232.565 232.549 232.561 232.41 233.173 233.157 233.861 234.867 236.682 236.915 237.81 238.302 239.247 240.023 240.959 241.216 241.983 242.774 243.581 243.961 244.198 244.793 245.14 245.818 245.599 245.152 244.452 243.481 242.384 241.145 239.764 238.483 237.386 236.322 235.344 234.659 234.377 234.362 234.679 235.332 236.328 237.552 238.86 240.082 241.228 242.225 243.097 243.714 244.334 244.988 245.435 245.422 246.016 246.674 246.71 246.742 247.711 248.677 250.019 251.393 253.407 256.5 258.93 261.0 262.534 259.16 261.142 262.048 262.914 263.244 263.314 263.117 262.656 262.053 261.221 259.218 255.569 254.853 255.139 255.61 255.475 255.114 255.046 255.779 256.336 257.151 257.965 258.308 259.081 259.374 260.337 261.151 261.855 262.485 262.538 262.672 262.675 262.524 262.357 262.074 261.725 261.262 260.714 260.051 259.312 258.598 257.743 256.938 256.208 255.383 254.45 253.532 252.655 251.873 251.011 250.16 249.178 248.063 247.178 246.79 246.63 246.345 245.958 245.803 245.756 245.587 245.232 244.888 244.659 244.371 243.891 243.112 241.93 240.428 239.145 238.499 238.261 238.658 239.007 239.498 242.672 243.896 243.907 243.654 243.451 243.424 243.377 243.217 242.941 242.527 242.121 241.785 241.477 241.227 241.056 240.93 240.824 240.766 240.732 240.758 240.867 240.989 241.081 241.137 241.237 241.409 241.573 241.717 241.798 241.819 241.812 241.817 241.849 241.894 241.889 241.857 241.791 241.627 241.359 240.987 240.555 240.13 239.737 239.412 239.205 239.123 239.179 239.282 239.362 239.454 239.551 239.633 239.701 239.752 239.759 239.738 239.687 239.616 239.57 239.539 239.515 239.416 239.224 238.993 238.805 238.629 238.454 238.188 237.881 237.578 237.277 236.941 236.595 236.288 235.986 235.672 235.357 235.08 234.761 234.498 234.274 234.107 234.064 234.12 234.176 234.265 234.409 234.461 234.563 234.764 234.776 234.861 234.953 234.898 234.995 234.966 234.967 235.328 235.514 235.601 235.466 235.514 234.908 234.007 233.977 233.87 233.668 233.599 233.518 233.502 233.498 233.405 233.253 233.04 232.997 232.726 232.467 232.438 232.61 233.58 234.719 236.192 236.83 237.355 237.664 237.602 237.08 236.696 237.617 238.935 239.592 241.584 242.487 242.908 243.372 243.681 243.924 244.011 243.998 243.836 243.48 242.999 242.296 241.501 240.607 239.659 238.849 238.085 237.464 236.971 236.53 236.236 236.163 236.379 236.727 237.3 238.081 238.94 239.802 240.71 241.591 242.459 243.245 243.847 244.268 244.725 245.104 246.382 247.96 247.718 247.493 247.21 247.088 247.874 248.173 249.887 250.533 251.993 253.373 254.971 257.492 254.169 254.457 256.657 257.148 258.064 258.254 258.14 257.87 256.514 252.678 251.246 250.605 250.181 249.875 249.713 250.159 250.579 251.051 251.026 251.156 251.277 251.87 252.365 252.848 253.585 253.865 254.696 255.074 255.291 256.223 256.413 256.566 257.211 257.278 257.165 257.258 257.004 256.572 256.225 255.607 255.068 254.617 254.038 253.474 252.86 252.112 251.349 250.704 250.09 249.42 248.661 247.854 247.055 246.48 246.112 245.783 245.358 244.913 244.586 244.37 244.228 244.12 244.076 244.001 243.725 242.933 241.645 240.542 239.672 240.08 240.338 241.1 243.535 244.368 244.162 245.096 245.745 245.29 244.476 243.828 243.48 243.259 243.084 242.907 242.834 242.713 242.512 242.268 242.031 241.893 241.857 241.885 241.91 241.937 242.023 242.268 242.35 242.394 242.41 242.393 242.339 242.306 242.252 242.18 242.094 241.999 241.912 241.835 241.764 241.702 241.656 241.617 241.52 241.371 241.172 240.919 240.666 240.429 240.212 240.013 239.836 239.744 239.711 239.73 239.751 239.759 239.785 239.844 239.891 239.868 239.798 239.648 239.428 239.246 239.084 238.903 238.675 238.385 238.174 237.976 237.766 237.529 237.286 237.075 236.839 236.528 236.169 235.862 235.571 235.208 234.842 234.649 234.503 234.278 234.102 234.065 234.035 234.026 234.189 234.428 234.564 234.712 234.927 235.046 235.147 235.361 235.53 235.674 235.901 236.036 236.133 236.305 236.352 236.388 236.378 236.257 236.016 235.793 235.783 235.732 235.919 236.14 236.165 235.932 235.644 235.918 236.21 236.131 235.944 235.153 234.77 234.943 235.086 235.501 235.664 235.849 236.118 236.377 236.72 237.147 237.662 238.208 237.075 237.124 236.158 235.594 236.139 235.999 237.735 238.643 239.793 242.479 242.664 242.694 242.616 242.446 242.203 241.977 241.668 241.364 240.996 240.635 240.321 239.928 239.807 239.615 239.443 239.506 239.554 239.719 240.015 240.44 240.948 241.43 241.907 242.299 242.853 243.361 243.896 244.331 244.656 244.993 246.041 247.766 248.183 247.873 247.426 247.242 246.925 247.002 247.846 247.938 249.436 249.48 251.979 252.143 248.856 248.97 248.986 248.934 249.007 250.048 249.942 249.551 249.128 248.933 248.157 247.987 247.998 247.699 247.51 247.206 247.015 247.025 247.159 247.358 247.715 247.987 248.395 248.678 249.1 249.464 249.613 250.033 250.134 250.116 250.432 250.254 250.027 250.241 249.919 249.545 249.875 249.924 249.647 249.747 249.474 248.861 248.472 248.032 247.864 247.652 247.607 247.525 247.332 246.987 246.489 245.931 245.448 245.039 244.721 244.41 244.088 243.855 243.675 243.521 243.376 243.261 243.157 242.99 242.541 241.802 241.841 241.751 241.749 242.611 244.448 245.633 245.56 245.204 244.725 244.34 244.068 243.853 243.58 243.362 243.156 242.969 242.809 242.679 242.56 242.495 242.466 242.443 242.443 242.383 242.339 242.344 242.439 242.516 242.629 242.816 242.776 242.752 242.725 242.685 242.558 242.487 242.396 242.263 242.101 242.01 241.913 241.776 241.687 241.649 241.629 241.613 241.518 241.402 241.255 241.069 240.88 240.697 240.507 240.332 240.188 240.044 239.928 239.828 239.749 239.715 239.668 239.617 239.565 239.48 239.319 239.145 239.018 238.874 238.667 238.402 238.1 237.815 237.603 237.413 237.191 236.931 236.743 236.656 236.567 236.381 236.122 235.933 235.805 235.594 235.322 235.126 235.103 235.096 235.075 235.079 235.258 235.479 235.636 235.72 235.868 235.959 235.981 236.086 236.192 236.223 236.303 236.457 236.573 236.714 236.894 237.02 237.118 237.144 237.106 236.985 236.775 236.602 236.489 236.378 236.333 236.333 236.314 236.354 236.364 236.379 236.311 236.279 236.098 236.154 235.905 235.714 235.447 235.254 235.168 235.091 235.174 235.292 235.428 235.574 235.764 236.033 236.356 236.676 236.89 237.353 237.574 237.539 238.285 239.036 239.449 239.792 240.125 240.537 240.874 241.2 241.462 241.67 241.856 241.994 241.984 241.967 242.018 242.01 241.979 241.948 241.974 242.027 242.069 242.122 242.179 242.234 242.318 242.542 242.616 242.862 243.055 243.317 243.611 243.81 244.011 244.156 244.282 244.44 245.604 246.492 246.949 246.52 245.923 245.805 246.017 246.494 246.792 247.28 248.173 248.247 246.516 246.56 246.571 246.592 246.641 246.778 246.789 246.75 246.651 246.64 246.605 246.536 246.519 246.346 246.182 246.165 246.087 246.033 246.053 246.188 246.164 246.173 246.239 246.115 246.11 246.191 246.07 246.014 246.039 245.765 245.421 245.378 245.125 244.795 244.904 245.009 244.859 244.795 244.821 244.425 244.034 243.996 244.006 243.846 243.686 243.732 243.626 243.343 243.036 242.907 242.703 242.475 242.228 242.183 242.161 242.099 242.049 241.991 242.037 242.046 241.975 241.887 241.884 241.908 241.954 242.0 242.084 242.293 242.784 243.359 243.731 243.763 243.492 243.045 242.677 242.466 242.339 242.383 242.546 242.642 242.61 242.539 242.464 242.412 242.33 242.266 242.179 242.104 242.1 242.104 242.122 242.204 242.287 242.385 242.541 242.599 242.596 242.525 242.484 242.439 242.281 242.207 242.13 242.005 241.941 241.903 241.949 241.927 241.912 241.887 241.858 241.809 241.787 241.663 241.534 241.388 241.219 241.014 240.836 240.697 240.533 240.379 240.228 240.117 240.068 240.01 239.929 239.833 239.729 239.613 239.471 239.371 239.3 239.18 238.978 238.75 238.493 238.286 238.145 238.012 237.866 237.695 237.53 237.409 237.407 237.384 237.314 237.277 237.203 237.184 237.092 236.977 236.821 236.75 236.807 236.926 236.939 236.969 237.073 237.185 237.182 237.172 237.204 237.22 237.204 237.217 237.217 237.158 237.14 237.154 237.13 237.098 237.061 236.999 236.925 236.832 236.746 236.687 236.62 236.577 236.56 236.493 236.469 236.351 236.243 236.236 236.064 235.944 235.955 235.947 235.964 235.973 235.917 235.718 235.572 235.464 235.349 235.257 235.193 235.093 235.1 235.13 235.163 235.254 235.415 235.573 235.757 236.019 236.313 236.614 236.897 237.265 237.491 237.565 237.397 237.309 237.718 238.415 239.015 238.079 238.291 240.453 240.734 240.983 241.083 241.325 241.408 241.7 241.666 241.854 241.805 241.889 241.88 241.957 242.072 242.194 242.342 242.452 242.535 242.686 242.518 241.781 241.011 241.029 241.979 242.853 242.911 243.049 243.505 244.018 244.518 244.921 245.421 245.747 246.043 246.413 245.536 245.598 245.584 245.544 245.514 245.527 245.451 245.341 245.326 245.334 245.189 245.137 245.143 245.142 244.887 244.88 244.873 244.836 244.728 244.698 244.669 244.506 244.356 244.301 244.155 243.881 243.684 243.597 243.334 243.047 242.809 242.681 242.336 242.094 241.931 241.879 241.605 241.361 241.25 241.191 241.025 240.912 240.854 240.901 240.76 240.592 240.511 240.478 240.362 240.075 239.881 239.804 239.907 239.908 239.836 239.8 239.894 240.142 240.385 240.542 240.653 240.795 240.937 241.156 241.37 241.515 241.615 241.685 241.705 241.75 241.785 241.773 241.6 241.465 241.401 241.362 241.412 241.478 241.523 241.653 241.812 241.909 241.885 241.873 241.951 242.007 241.994 241.917 241.913 241.937 241.955 242.014 242.099 242.167 242.237 242.266 242.295 242.334 242.32 242.308 242.077 242.024 241.932 241.844 241.788 241.706 241.662 241.603 241.65 241.644 241.645 241.551 241.425 241.459 241.476 241.44 241.3 241.17 241.101 240.997 240.863 240.741 240.712 240.683 240.655 240.677 240.688 240.666 240.619 240.574 240.513 240.437 240.354 240.271 240.156 240.031 239.904 239.753 239.569 239.452 239.331 239.262 239.196 239.165 239.067 239.041 239.058 239.084 239.079 238.937 238.82 238.744 238.742 238.711 238.566 238.428 238.368 238.367 238.3 238.16 238.093 238.064 238.022 237.95 237.913 237.923 237.877 237.83 237.827 237.847 237.811 237.734 237.673 237.634 237.574 237.454 237.413 237.388 237.381 237.4 237.401 237.386 237.42 237.435 237.427 237.422 237.101 237.063 237.068 236.898 236.531 236.547 236.554 236.336 236.139 236.159 236.175 236.135 236.021 236.237 236.704 236.652 236.507 236.382 236.543 236.452 236.367 236.283 236.125 236.01 235.949 235.871 235.574 235.336 235.226 235.288 235.394 235.463 235.572 235.758 235.97 236.148 236.422 238.015 238.598 238.903 239.068 239.203 239.424 239.586 239.737 239.97 240.135 240.51 241.713 241.92 242.017 242.292 242.564 242.474 242.256 242.01 242.02 242.27 242.662 243.105 243.435 243.615 243.898 244.267 244.499 244.658 244.86 245.071 245.189 245.329 244.471 244.448 244.426 244.386 244.325 244.207 244.163 244.103 243.956 243.747 243.646 243.663 243.639 243.388 243.197 243.207 243.214 243.192 242.813 242.806 242.797 242.786 242.605 242.315 242.294 242.269 242.166 241.888 241.669 241.621 241.569 241.425 241.264 241.105 241.021 240.918 240.727 240.521 240.338 240.208 240.12 239.994 239.879 239.776 239.718 239.673 239.618 239.587 239.572 239.585 239.602 239.609 239.622 239.639 239.658 239.687 239.734 239.792 239.816 239.828 239.84 239.857 239.938 240.048 240.135 240.17 240.162 240.115 240.066 240.032 240.099 240.15 240.224 240.305 240.406 240.492 240.538 240.607 240.676 240.737 240.781 240.877 240.982 241.079 241.182 241.259 241.337 241.39 241.466 241.57 241.661 241.728 241.798 241.853 241.875 241.884 241.897 241.905 241.928 241.934 241.852 241.837 241.709 241.688 241.616 241.555 241.405 241.346 241.263 241.265 241.222 241.108 240.991 240.903 240.84 240.785 240.746 240.728 240.689 240.668 240.733 240.794 240.832 240.871 240.915 240.945 240.972 241.02 241.094 241.146 241.175 241.155 241.139 241.12 241.102 241.069 241.042 241.003 240.975 240.887 240.795 240.688 240.608 240.537 240.537 240.481 240.405 240.306 240.172 240.052 239.9 239.722 239.535 239.376 239.193 238.96 238.809 238.71 238.642 238.587 238.46 238.3 238.193 238.121 238.088 238.033 237.984 237.946 237.938 237.935 237.916 237.904 237.915 237.983 238.001 237.995 237.99 238.146 238.293 238.287 238.281 238.277 238.576 238.645 238.651 238.659 238.717 238.878 238.941 238.967 238.954 238.982 239.066 239.132 239.123 239.071 239.107 239.167 239.196 239.082 239.073 239.087 239.123 239.069 238.923 238.842 238.795 238.804 238.773 238.659 238.603 238.575 238.567 238.579 238.581 238.52 238.508 238.57 238.657 238.765 238.891 239.005 239.219 239.243 239.278 239.634 239.689 239.799 239.939 240.009 240.06 240.118 240.12 240.465 240.625 240.859 241.043 241.248 241.525 241.811 242.152 242.464 242.685 242.871 243.089 243.317 243.527 243.691 243.814 243.936 244.062 244.148 244.188 244.212 244.271 244.368 242.678 242.67 242.697 242.717 242.726 242.722 242.646 242.576 242.549 242.508 242.438 242.32 242.165 242.168 242.183 242.129 241.979 241.731 241.639 241.645 241.65 241.653 241.647 240.892 240.794 240.788 240.78 240.769 240.707 240.388 240.094 240.027 240.012 239.995 239.948 239.861 239.781 239.727 239.692 239.673 239.637 239.596 239.559 239.535 239.525 239.525 239.529 239.552 239.56 239.567 239.576 239.589 239.606 239.626 239.638 239.634 239.609 239.575 239.544 239.523 239.527 239.56 239.597 239.625 239.648 239.669 239.7 239.739 239.798 239.87 239.956 240.051 240.129 240.213 240.298 240.383 240.469 240.516 240.556 240.568 240.565 240.575 240.596 240.644 240.741 240.82 240.864 240.924 240.992 241.087 241.141 241.178 241.18 241.148 241.158 241.249 241.29 241.294 241.298 241.299 241.257 241.254 241.19 241.138 241.114 241.048 241.02 241.027 241.045 240.977 240.903 240.801 240.72 240.646 240.581 240.549 240.536 240.539 240.544 240.565 240.613 240.641 240.688 240.72 240.735 240.753 240.769 240.794 240.812 240.817 240.791 240.796 240.8 240.813 240.852 240.92 240.988 241.071 241.121 241.145 241.137 241.119 241.09 241.045 240.932 240.814 240.689 240.564 240.475 240.396 240.317 240.236 240.116 239.839 239.525 239.329 239.14 238.967 238.833 238.708 238.551 238.495 238.385 238.273 238.186 238.12 238.03 238.015 238.005 237.989 237.953 237.97 237.971 237.97 237.97 237.97 237.981 238.358 238.369 238.369 238.37 238.371 238.476 238.807 238.994 239.086 239.09 239.097 239.263 239.475 239.648 239.782 239.886 239.997 240.059 240.102 240.141 240.179 240.21 240.224 240.222 240.224 240.236 240.228 240.199 240.192 240.184 240.185 240.204 240.205 240.178 240.139 240.105 240.085 240.089 240.087 240.08 240.084 240.106 240.145 240.222 240.3 240.311 240.36 240.467 240.524 240.636 240.654 240.819 240.842 240.839 240.92 241.026 241.142 241.285 241.412 241.549 241.679 241.767 241.816 241.862 241.902 241.966 242.044 242.14 242.244 242.337 242.4 242.432 242.437 242.457 242.521 242.594 242.656 242.705 242.716 241.214 241.212 241.203 241.182 241.15 241.096 241.026 241.014 241.017 241.013 241.003 240.989 240.962 240.916 240.81 240.719 240.723 240.728 240.73 240.676 240.581 240.423 240.103 239.895 239.896 239.898 239.898 239.898 239.897 239.895 239.871 239.639 239.387 239.334 239.329 239.326 239.323 239.32 239.317 239.316 239.309 239.305 239.306 239.315 239.325 239.332 239.333 239.34 239.375 239.395 239.401 239.401 239.402 239.41 239.422 239.438 239.458 239.493 239.533 239.572 239.6 239.618 239.634 239.648 239.661 239.683 239.712 239.748 239.796 239.857 239.924 239.988 240.047 240.095 240.137 240.167 240.187 240.197 240.196 240.196 240.207 240.225 240.24 240.255 240.274 240.295 240.308 240.316 240.335 240.354 240.38 240.41 240.442 240.484 240.534 240.547 240.55 240.519 240.521 240.522 240.389 240.38 240.375 240.27 240.193 240.172 240.07 239.977 239.92 239.875 239.838 239.801 239.746 239.706 239.696 239.691 239.686 239.708 239.754 239.784 239.811 239.849 239.878 239.891 239.906 239.911 239.905 239.907 239.906 239.906 239.9 239.873 239.879 239.924 239.968 240.006 240.053 240.098 240.109 240.115 240.103 240.07 239.969 239.859 239.837 239.829 239.82 239.815 239.824 239.827 239.805 239.733 239.583 239.463 239.413 239.368 239.315 239.26 239.204 239.146 239.071 238.953 238.922 238.913 238.905 238.898 238.891 238.853 238.65 238.478 238.455 238.455 238.454 238.455 238.456 238.457 238.459 238.47 238.452 238.436 238.425 238.413 238.415 238.42 238.428 238.52 238.625 238.644 238.648 238.654 238.675 238.697 238.718 238.756 238.91 239.01 239.044 239.054 239.066 239.075 239.087 239.116 239.154 239.228 239.351 239.461 239.548 239.617 239.663 239.695 239.708 239.718 239.73 239.733 239.736 239.738 239.741 239.753 239.786 239.848 239.929 239.99 240.034 240.099 240.143 240.254 240.36 240.372 240.488 240.495 240.559 240.581 240.624 240.651 240.685 240.72 240.726 240.741 240.77 240.825 240.895 240.967 241.028 241.087 241.124 241.154 241.177 241.199 241.218 241.23 241.233 241.228 241.211 241.206 241.212 241.212 239.928 239.876 239.819 239.799 239.793 239.794 239.794 239.792 239.788 239.784 239.778 239.776 239.775 239.772 239.764 239.751 239.717 239.647 239.529 239.504 239.504 239.504 239.506 239.508 239.509 239.51 239.511 239.511 239.511 239.51 239.507 239.504 239.487 239.391 239.343 239.344 239.345 239.346 239.348 239.349 239.349 239.348 239.347 239.346 239.344 239.343 239.341 239.333 239.336 239.35 239.363 239.375 239.382 239.386 239.389 239.393 239.397 239.401 239.403 239.406 239.408 239.409 239.41 239.41 239.412 239.427 239.441 239.451 239.464 239.483 239.5 239.513 239.516 239.51 239.501 239.489 239.476 239.467 239.455 239.44 239.421 239.4 239.384 239.366 239.343 239.314 239.287 239.274 239.261 239.243 239.219 239.207 239.207 239.207 239.215 239.229 239.232 239.233 239.233 239.233 239.202 239.2 239.199 239.199 239.193 239.145 239.109 239.094 239.084 239.079 239.077 239.076 239.074 239.075 239.076 239.076 239.076 239.075 239.076 239.091 239.108 239.121 239.132 239.139 239.144 239.148 239.151 239.151 239.143 239.137 239.132 239.125 239.105 239.078 239.049 239.022 239.006 239.008 239.01 239.012 239.014 239.022 239.038 239.052 239.065 239.077 239.087 239.096 239.1 239.103 239.097 239.054 238.99 238.94 238.939 238.938 238.938 238.937 238.937 238.936 238.937 238.939 238.942 238.945 238.946 238.948 238.973 239.001 238.991 238.994 238.996 238.998 239.0 239.002 239.005 239.007 239.01 239.013 239.016 239.019 239.022 239.025 239.028 239.042 239.056 239.065 239.073 239.082 239.091 239.101 239.107 239.113 239.122 239.132 239.142 239.152 239.165 239.18 239.195 239.214 239.245 239.275 239.303 239.337 239.372 239.409 239.443 239.473 239.505 239.542 239.578 239.609 239.645 239.685 239.716 239.743 239.774 239.812 239.847 239.89 239.949 240.006 240.044 240.114 240.228 240.259 240.259 240.26 240.261 240.261 240.26 240.251 240.207 240.177 240.163 240.16 240.162 240.163 240.164 240.171 240.177 240.181 240.183 240.179 240.171 240.163 240.155 240.145 240.131 240.116 240.1 240.082 240.061 240.038 240.006 239.968 235.535 235.455 235.399 235.372 235.36 235.286 235.213 235.168 235.146 235.145 235.008 235.032 234.984 234.864 234.836 234.772 234.812 234.69 234.69 234.653 234.511 234.512 234.439 234.407 234.476 234.364 234.285 234.202 234.196 234.182 234.14 234.184 234.133 234.071 233.997 233.971 233.943 233.917 233.913 233.919 233.922 233.889 233.831 233.83 233.784 233.774 233.758 233.736 233.729 233.737 233.73 233.825 233.732 233.704 233.658 233.695 233.698 233.701 233.702 233.793 233.692 233.711 233.775 233.735 233.735 233.769 233.783 233.805 233.851 233.84 233.863 233.925 233.881 233.977 233.968 233.963 234.051 234.1 234.066 234.151 234.245 234.255 234.216 234.333 234.356 234.353 234.463 234.495 234.534 234.61 234.593 234.657 234.744 234.807 234.808 234.913 234.948 235.015 235.044 235.104 235.161 235.239 235.329 235.327 235.392 235.426 235.472 235.508 235.598 235.663 235.734 235.771 235.774 235.83 235.913 235.994 236.021 236.038 236.071 236.184 236.183 236.204 236.304 236.409 236.414 236.388 236.432 236.513 236.581 236.657 236.546 236.599 236.668 236.738 236.863 236.808 236.773 236.824 236.892 237.027 237.067 236.992 237.014 237.025 237.059 237.112 237.154 237.193 237.271 237.245 237.214 237.267 237.29 237.278 237.273 237.313 237.375 237.428 237.341 237.322 237.349 237.391 237.404 237.44 237.489 237.609 237.577 237.471 237.46 237.484 237.478 237.573 237.505 237.526 237.492 237.524 237.64 237.653 237.485 237.497 237.476 237.55 237.67 237.58 237.475 237.484 237.543 237.565 237.569 237.529 237.535 237.448 237.461 237.524 237.516 237.484 237.422 237.411 237.488 237.472 237.462 237.39 237.369 237.356 237.4 237.356 237.376 237.304 237.305 237.277 237.29 237.244 237.223 237.198 237.208 237.173 237.166 237.111 237.037 237.083 237.075 237.069 236.97 236.905 236.915 236.889 236.869 236.797 236.719 236.7 236.764 236.674 236.62 236.597 236.568 236.546 236.502 236.418 236.401 236.341 236.327 236.272 236.197 236.11 236.135 236.081 236.05 235.992 235.93 235.849 235.822 235.838 235.73 235.689 235.628 235.58 236.843 236.736 236.574 236.499 236.37 236.271 236.156 236.035 235.921 235.757 235.678 235.557 235.393 235.323 235.22 235.027 234.983 234.851 234.705 234.675 234.546 234.376 234.374 234.207 234.151 233.964 233.919 233.765 233.758 233.592 233.539 233.406 233.38 233.28 233.155 233.083 232.952 233.006 232.902 232.785 232.753 232.689 232.66 232.5 232.445 232.483 232.386 232.316 232.305 232.278 232.242 232.23 232.181 232.155 232.152 232.156 232.18 232.135 232.166 232.171 232.189 232.233 232.207 232.28 232.309 232.342 232.373 232.439 232.513 232.511 232.614 232.673 232.741 232.816 232.907 232.976 233.016 233.171 233.275 233.336 233.455 233.566 233.696 233.798 233.949 234.021 234.171 234.303 234.415 234.586 234.666 234.86 234.953 235.133 235.229 235.413 235.543 235.734 235.877 236.0 236.175 236.275 236.502 236.608 236.726 236.959 237.018 237.24 237.407 237.523 237.631 237.847 237.962 238.042 238.204 238.447 238.567 238.659 238.769 238.91 239.026 239.148 239.293 239.406 239.495 239.613 239.75 239.857 239.97 240.039 240.169 240.27 240.363 240.413 240.491 240.603 240.726 240.787 240.833 240.88 240.942 241.0 241.062 241.071 241.129 241.159 241.167 241.251 241.246 241.2 241.247 241.286 241.238 241.233 241.285 241.179 241.199 241.241 241.165 241.145 241.08 241.096 241.087 240.989 240.965 240.871 240.908 240.814 240.829 240.857 240.765 240.697 240.631 240.702 240.64 240.527 240.519 240.6 240.62 240.518 240.524 240.551 240.468 240.52 240.545 240.521 240.498 240.554 240.525 240.505 240.549 240.511 240.575 240.589 240.67 240.563 240.626 240.666 240.687 240.711 240.655 240.789 240.772 240.672 240.809 240.783 240.634 240.81 240.786 240.598 240.743 240.736 240.499 240.539 240.623 240.591 240.404 240.416 240.356 240.221 240.185 240.172 239.989 239.91 239.952 239.774 239.666 239.619 239.47 239.475 239.292 239.195 239.256 238.97 238.988 238.9 238.807 238.692 238.552 238.496 238.376 238.267 238.165 238.084 237.994 237.86 237.794 237.694 237.617 237.51 237.369 237.27 237.241 237.128 236.99 236.87 237.904 237.785 237.571 237.434 237.287 237.117 236.986 236.826 236.68 236.521 236.413 236.222 236.091 235.947 235.794 235.621 235.497 235.333 235.209 235.054 234.87 234.757 234.597 234.398 234.294 234.123 234.008 233.848 233.676 233.519 233.391 233.246 233.087 232.859 232.77 232.687 232.52 232.379 232.256 232.158 232.005 232.024 231.906 231.826 231.722 231.64 231.575 231.522 231.459 231.42 231.363 231.333 231.301 231.244 231.255 231.243 231.221 231.224 231.227 231.259 231.27 231.296 231.319 231.372 231.409 231.485 231.537 231.625 231.692 231.787 231.868 231.983 232.078 232.201 232.311 232.414 232.534 232.667 232.826 232.98 233.161 233.353 233.558 233.766 233.964 234.178 234.406 234.605 234.855 235.094 235.333 235.578 235.824 236.069 236.318 236.551 236.852 237.088 237.354 237.581 237.946 238.133 238.388 238.688 238.91 239.212 239.46 239.732 240.037 240.292 240.638 240.865 241.197 241.386 241.679 241.981 242.22 242.508 242.771 243.097 243.241 243.525 243.794 244.033 244.258 244.491 244.697 244.913 245.124 245.311 245.492 245.647 245.8 245.969 246.11 246.266 246.364 246.503 246.593 246.663 246.74 246.815 246.86 246.897 246.922 246.942 246.935 246.928 246.896 246.855 246.806 246.753 246.685 246.609 246.492 246.385 246.262 246.133 245.99 245.825 245.646 245.435 245.251 245.085 244.833 244.63 244.436 244.254 244.044 243.849 243.652 243.471 243.274 243.097 242.919 242.723 242.595 242.443 242.311 242.198 242.124 242.094 242.037 242.049 242.068 242.099 242.119 242.187 242.328 242.442 242.598 242.67 242.877 242.973 243.184 243.275 243.492 243.738 243.76 244.112 244.031 244.388 244.354 244.654 244.806 244.783 245.0 244.941 245.116 245.255 245.008 245.313 245.311 245.248 245.245 245.202 245.036 245.037 244.841 244.801 244.566 244.567 244.248 244.285 244.099 243.968 243.785 243.532 243.379 243.227 242.996 242.802 242.508 242.339 242.103 241.884 241.65 241.505 241.296 241.089 240.835 240.627 240.379 240.238 240.045 239.768 239.613 239.418 239.232 239.068 238.879 238.656 238.559 238.372 238.253 238.045 238.732 238.516 238.304 238.084 237.899 237.705 237.54 237.357 237.247 237.045 236.88 236.701 236.551 236.398 236.223 236.085 235.931 235.772 235.635 235.427 235.276 235.095 234.911 234.693 234.559 234.368 234.172 233.955 233.701 233.54 233.292 233.098 232.908 232.662 232.482 232.234 232.07 231.839 231.651 231.464 231.292 231.133 230.993 230.858 230.761 230.646 230.558 230.469 230.404 230.34 230.311 230.274 230.265 230.248 230.242 230.24 230.255 230.285 230.328 230.378 230.421 230.483 230.534 230.597 230.668 230.759 230.854 230.948 231.053 231.158 231.278 231.406 231.537 231.677 231.822 231.987 232.155 232.329 232.522 232.724 232.948 233.178 233.419 233.672 233.942 234.23 234.52 234.819 235.144 235.482 235.82 236.169 236.523 236.875 237.203 237.542 237.913 238.271 238.642 239.06 239.414 239.811 240.182 240.59 240.992 241.407 241.847 242.258 242.667 243.089 243.57 243.982 244.46 244.889 245.288 245.772 246.204 246.65 247.064 247.511 247.884 248.291 248.66 249.042 249.504 249.849 250.174 250.497 250.779 251.063 251.324 251.551 251.745 251.918 252.07 252.218 252.355 252.438 252.538 252.609 252.661 252.695 252.719 252.732 252.734 252.699 252.674 252.624 252.576 252.502 252.426 252.324 252.199 252.054 251.89 251.727 251.539 251.316 251.093 250.835 250.56 250.288 249.968 249.631 249.278 248.876 248.482 248.055 247.625 247.198 246.782 246.389 245.979 245.559 245.165 244.742 244.376 244.035 243.719 243.432 243.189 242.958 242.815 242.696 242.633 242.604 242.684 242.797 242.963 243.165 243.378 243.686 243.988 244.377 244.762 245.162 245.545 245.894 246.334 246.749 247.14 247.666 247.969 248.411 248.708 249.012 249.273 249.528 249.707 249.89 250.009 250.092 250.171 250.18 250.203 250.173 250.021 249.958 249.874 249.724 249.669 249.374 249.335 249.077 248.9 248.555 248.376 248.063 247.771 247.451 247.145 246.818 246.44 246.107 245.711 245.355 245.005 244.578 244.212 243.816 243.438 243.059 242.7 242.359 241.982 241.64 241.296 241.016 240.707 240.425 240.166 239.928 239.643 239.415 239.185 238.949 240.146 239.917 239.62 239.378 239.123 238.878 238.676 238.446 238.242 238.01 237.833 237.624 237.453 237.248 237.09 236.886 236.665 236.518 236.282 236.114 235.889 235.677 235.458 235.164 234.913 234.634 234.341 234.0 233.687 233.37 233.022 232.71 232.377 232.038 231.719 231.374 231.036 230.732 230.427 230.134 229.867 229.621 229.408 229.207 229.039 228.892 228.768 228.658 228.58 228.518 228.471 228.446 228.452 228.475 228.507 228.551 228.618 228.701 228.808 228.906 229.032 229.18 229.326 229.475 229.636 229.804 229.98 230.162 230.341 230.521 230.709 230.902 231.084 231.269 231.471 231.679 231.882 232.08 232.292 232.518 232.726 232.959 233.196 233.47 233.764 234.073 234.431 234.797 235.176 235.574 235.998 236.411 236.859 237.29 237.749 238.228 238.736 239.205 239.663 240.126 240.647 241.156 241.683 242.214 242.762 243.337 243.918 244.521 245.201 245.809 246.418 247.043 247.719 248.295 248.886 249.44 250.024 250.579 251.135 251.701 252.198 252.648 253.067 253.433 253.775 254.084 254.376 254.646 254.863 255.042 255.227 255.35 255.44 255.503 255.539 255.539 255.504 255.47 255.417 255.348 255.3 255.244 255.195 255.161 255.096 255.051 254.996 254.942 254.878 254.829 254.761 254.695 254.627 254.533 254.43 254.314 254.172 254.019 253.851 253.665 253.443 253.18 252.898 252.582 252.232 251.858 251.435 250.986 250.532 250.087 249.586 249.078 248.565 248.047 247.554 247.083 246.605 246.057 245.557 245.15 244.759 244.429 244.157 243.954 243.75 243.641 243.608 243.706 243.854 244.054 244.302 244.666 245.09 245.63 246.161 246.749 247.362 247.902 248.475 249.098 249.628 250.199 250.755 251.24 251.669 252.063 252.397 252.712 252.98 253.184 253.359 253.477 253.63 253.652 253.689 253.742 253.737 253.719 253.677 253.623 253.546 253.436 253.291 253.129 252.922 252.679 252.449 252.162 251.87 251.538 251.135 250.764 250.37 249.953 249.52 249.058 248.593 248.11 247.632 247.111 246.616 246.084 245.616 245.11 244.642 244.181 243.731 243.316 242.864 242.448 242.114 241.747 241.429 241.068 240.803 240.45 241.758 241.385 241.051 240.718 240.442 240.121 239.843 239.587 239.299 239.028 238.77 238.516 238.24 237.96 237.697 237.393 237.118 236.829 236.602 236.299 236.001 235.745 235.351 235.043 234.659 234.235 233.861 233.408 233.025 232.537 232.13 231.677 231.299 230.857 230.47 230.057 229.649 229.281 228.922 228.594 228.298 228.029 227.784 227.563 227.384 227.249 227.113 226.998 226.902 226.833 226.781 226.744 226.723 226.713 226.719 226.753 226.795 226.869 226.972 227.098 227.264 227.466 227.706 227.954 228.215 228.486 228.763 229.043 229.328 229.623 229.91 230.186 230.45 230.719 230.984 231.223 231.428 231.647 231.855 232.079 232.282 232.503 232.738 233.0 233.311 233.612 233.941 234.296 234.68 235.122 235.569 236.019 236.472 236.983 237.484 237.997 238.532 239.058 239.62 240.222 240.816 241.427 242.078 242.768 243.487 244.223 244.984 245.734 246.55 247.327 248.134 248.911 249.686 250.462 251.192 251.901 252.623 253.274 253.768 254.234 254.632 254.999 255.305 255.57 255.741 255.884 255.995 256.05 256.043 256.004 255.947 255.879 255.801 255.687 255.58 255.495 255.437 255.379 255.321 255.263 255.173 255.097 255.053 254.996 254.952 254.883 254.923 254.926 254.961 255.01 255.027 255.098 255.116 255.157 255.155 255.13 255.095 255.05 254.937 254.776 254.535 254.238 253.908 253.578 253.199 252.775 252.313 251.878 251.384 250.888 250.395 249.856 249.357 248.844 248.36 247.952 247.528 247.087 246.647 246.249 245.822 245.443 245.137 244.884 244.652 244.532 244.486 244.502 244.543 244.754 245.093 245.511 246.098 246.671 247.257 247.953 248.626 249.355 250.074 250.807 251.498 252.125 252.697 253.189 253.644 253.974 254.27 254.555 254.727 254.851 254.938 255.032 255.1 255.135 255.15 255.168 255.215 255.262 255.292 255.296 255.323 255.356 255.359 255.341 255.296 255.206 255.076 254.934 254.725 254.437 254.129 253.791 253.426 253.035 252.561 252.168 251.683 251.167 250.685 250.144 249.597 249.059 248.521 247.965 247.416 246.824 246.282 245.744 245.22 244.693 244.19 243.732 243.285 242.874 242.48 242.114 242.51 242.057 241.661 241.272 240.891 240.51 240.143 239.8 239.486 239.199 238.864 238.546 238.204 237.852 237.518 237.132 236.767 236.397 236.007 235.59 235.256 234.813 234.395 233.955 233.493 233.071 232.651 232.173 231.733 231.298 230.869 230.429 230.056 229.668 229.323 228.954 228.67 228.464 228.302 228.185 228.091 228.01 227.943 227.894 227.858 227.835 227.811 227.776 227.776 227.725 227.67 227.605 227.508 227.395 227.257 227.129 227.019 226.905 226.808 226.734 226.704 226.682 226.798 226.864 227.049 227.298 227.589 227.906 228.24 228.573 228.896 229.221 229.539 229.832 230.105 230.353 230.584 230.784 230.984 231.172 231.367 231.599 231.868 232.162 232.442 232.764 233.111 233.471 233.874 234.284 234.686 235.097 235.527 235.959 236.409 236.876 237.37 237.92 238.479 239.046 239.661 240.336 241.036 241.784 242.596 243.49 244.377 245.349 246.3 247.322 248.263 249.192 250.087 250.926 251.707 252.464 253.192 253.869 254.376 254.73 255.05 255.273 255.454 255.557 255.556 255.527 255.423 255.314 255.26 255.206 255.222 255.236 255.273 255.315 255.38 255.394 255.465 255.421 255.469 255.493 255.525 255.504 255.403 255.378 255.368 255.372 255.459 255.555 255.63 255.795 255.916 256.013 256.066 256.082 256.073 255.982 255.75 255.569 255.378 255.083 254.749 254.342 253.842 253.293 252.759 252.221 251.642 251.015 250.464 249.835 249.249 248.659 248.124 247.681 247.214 246.904 246.655 246.357 246.08 245.769 245.549 245.323 245.093 244.959 244.892 244.844 244.843 244.977 245.22 245.564 245.997 246.482 247.034 247.624 248.307 249.083 249.858 250.604 251.375 252.149 252.837 253.449 253.975 254.415 254.79 255.05 255.309 255.421 255.442 255.444 255.46 255.397 255.409 255.512 255.53 255.602 255.772 255.808 255.918 256.051 256.172 256.338 256.528 256.632 256.714 256.779 256.826 256.812 256.684 256.52 256.328 256.106 255.827 255.473 255.137 254.737 254.249 253.761 253.155 252.594 252.008 251.42 250.808 250.197 249.568 248.946 248.319 247.685 247.045 246.432 245.816 245.199 244.607 244.01 243.495 243.006 242.531 241.942 241.448 241.015 240.621 240.278 239.921 239.551 239.203 238.924 238.542 238.137 237.774 237.343 236.974 236.536 236.134 235.736 235.302 234.881 234.431 233.989 233.559 233.083 232.628 232.176 231.713 231.268 230.887 230.525 230.197 229.937 229.672 229.43 229.241 229.104 229.051 229.04 229.049 229.117 229.215 229.345 229.507 229.68 229.934 230.087 230.209 230.299 230.337 230.34 230.28 230.166 229.953 229.732 229.49 229.219 228.944 228.667 228.411 228.185 227.983 227.844 227.753 227.689 227.685 227.685 227.746 227.86 228.028 228.207 228.401 228.578 228.804 228.996 229.21 229.397 229.604 229.796 230.007 230.231 230.487 230.772 231.065 231.396 231.723 232.039 232.34 232.619 232.924 233.24 233.558 233.858 234.191 234.536 234.873 235.252 235.659 236.126 236.642 237.234 237.893 238.527 239.297 240.061 240.946 241.854 242.801 243.826 244.912 246.065 247.188 248.297 249.414 250.482 251.427 252.307 253.136 253.802 254.357 254.733 255.06 255.284 255.512 255.674 255.709 255.67 255.528 255.558 255.588 255.729 255.938 256.2 256.468 256.711 256.952 257.117 257.249 257.315 257.317 257.36 257.215 257.135 257.06 257.026 256.839 256.676 256.556 256.551 256.659 256.996 257.086 256.882 256.659 256.416 256.108 255.803 255.456 255.053 254.649 254.111 253.563 252.967 252.338 251.674 251.089 250.503 249.924 249.23 248.736 248.215 247.78 247.344 246.994 246.643 246.448 246.407 246.5 246.518 246.55 246.564 246.566 246.576 246.629 246.658 246.695 246.735 246.816 246.913 247.112 247.347 247.729 248.191 248.682 249.181 249.741 250.354 251.004 251.689 252.32 252.935 253.477 253.901 254.297 254.585 254.847 255.011 255.134 255.221 255.298 255.404 255.529 255.657 255.93 256.047 256.21 256.411 256.671 256.948 257.186 257.432 257.69 257.86 257.92 258.079 258.296 258.459 258.556 258.692 258.683 258.604 258.368 258.013 257.745 257.332 256.871 256.404 255.939 255.449 254.864 254.237 253.557 252.913 252.273 251.628 250.91 250.17 249.452 248.675 247.906 247.129 246.451 245.734 245.045 244.376 243.689 243.089 242.24 241.664 241.144 240.678 240.209 239.814 239.41 239.014 238.643 238.249 237.839 237.389 236.951 236.526 236.033 235.621 235.18 234.79 234.438 234.104 233.766 233.484 233.07 232.669 232.274 231.883 231.494 231.132 230.82 230.55 230.319 230.152 230.029 229.964 229.964 230.056 230.187 230.341 230.526 230.783 231.184 231.549 231.947 232.368 232.772 233.162 233.504 233.801 234.017 234.161 234.216 234.128 233.928 233.615 233.225 232.767 232.266 231.754 231.246 230.648 230.185 229.773 229.42 229.177 228.973 228.844 228.727 228.567 228.53 228.519 228.584 228.65 228.715 228.847 228.945 229.067 229.193 229.334 229.562 229.823 230.085 230.372 230.668 230.973 231.225 231.473 231.703 231.896 232.064 232.243 232.407 232.613 232.838 233.096 233.401 233.727 234.125 234.565 235.054 235.599 236.289 236.962 237.629 238.514 239.363 240.265 241.215 242.232 243.381 244.541 245.78 247.053 248.36 249.661 250.981 252.244 254.455 256.527 257.573 257.752 258.138 258.646 259.05 260.366 260.713 260.766 260.776 260.736 260.696 260.674 260.523 260.338 260.124 259.986 259.904 259.866 259.981 260.123 260.037 259.739 259.553 259.549 259.878 260.124 259.855 259.659 259.52 259.261 258.867 258.604 258.297 257.963 257.495 256.847 256.264 255.631 254.988 254.336 253.671 252.962 252.307 251.651 251.033 250.511 249.934 249.407 248.945 248.642 248.379 248.175 248.031 247.966 248.058 248.137 248.315 248.488 248.757 248.971 249.249 249.482 249.7 249.848 249.937 249.986 249.964 249.879 249.831 249.806 249.794 249.868 249.849 249.963 250.174 250.462 250.816 251.197 251.599 251.99 252.343 252.699 253.064 253.391 253.694 253.965 254.202 254.443 254.657 254.893 255.156 255.447 255.785 256.107 256.499 256.933 257.377 257.767 258.175 258.563 258.942 259.448 260.028 260.242 260.097 260.218 260.345 260.454 260.487 260.505 260.487 260.412 260.104 259.599 259.052 258.952 258.491 257.973 257.426 256.927 256.277 255.591 254.827 254.035 253.27 252.498 251.732 250.893 250.03 249.156 248.243 247.422 246.592 245.8 245.031 244.273 243.547 242.868 242.388 241.658 240.939 240.322 239.778 239.236 238.767 238.405 237.964 237.42 236.972 236.491 236.017 235.542 235.135 234.815 234.546 234.314 234.115 233.996 233.897 233.781 233.593 233.304 233.007 232.693 232.373 232.037 231.713 231.44 231.231 231.089 231.041 231.069 231.205 231.438 231.82 232.137 232.583 233.099 233.812 234.444 235.112 235.786 236.405 236.979 237.475 237.897 238.272 238.561 238.694 238.685 238.484 238.069 237.479 236.747 235.936 235.108 234.26 233.333 232.528 231.793 231.07 230.521 230.072 229.718 229.465 229.275 229.107 228.943 228.88 228.92 228.978 229.055 229.106 229.232 229.443 229.603 229.824 230.04 230.219 230.453 230.632 230.864 231.094 231.316 231.523 231.72 231.887 232.087 232.328 232.595 232.868 233.148 233.441 233.757 234.104 234.506 234.917 235.35 235.911 236.436 236.986 237.6 238.281 239.054 239.853 240.944 242.04 243.122 244.303 245.633 247.06 248.555 250.141 251.655 256.013 257.538 258.917 260.231 261.542 262.507 263.205 263.66 263.879 263.904 263.846 263.724 263.458 263.092 262.791 262.694 262.736 262.874 262.99 263.136 263.245 263.324 263.296 263.046 262.831 262.581 262.302 262.05 261.729 261.644 261.484 261.047 260.209 259.683 259.774 259.593 259.047 258.773 258.055 257.306 256.501 255.667 254.914 254.188 253.498 252.853 252.324 251.796 251.388 251.171 250.991 250.878 250.906 250.905 250.995 251.181 251.403 251.71 252.068 252.378 252.732 253.087 253.359 253.568 253.742 253.829 253.824 253.702 253.451 253.155 252.76 252.38 251.973 251.671 251.422 251.208 251.073 251.079 251.167 251.287 251.439 251.739 252.089 252.495 252.925 253.361 253.763 254.178 254.572 254.971 255.324 255.726 256.147 256.533 257.019 257.523 258.002 258.65 259.435 259.963 260.862 261.757 261.797 261.531 261.759 262.083 262.344 262.59 262.857 263.045 263.098 262.955 262.729 262.425 262.048 261.433 260.672 260.234 259.792 259.648 259.457 259.135 258.677 257.893 257.082 256.124 255.215 254.343 253.44 252.518 251.533 250.495 249.448 248.484 247.582 246.615 245.688 244.854 243.941 243.15 244.416 243.503 242.502 241.678 240.99 240.361 239.792 239.256 238.792 238.42 238.072 237.836 237.621 237.465 237.597 237.56 237.322 237.354 237.343 237.284 237.426 237.043 237.039 236.545 236.184 235.777 235.351 234.934 234.461 234.09 233.711 233.402 233.12 232.972 232.919 233.054 233.323 233.714 234.199 234.969 235.79 236.706 237.646 238.559 239.417 240.167 240.826 241.48 242.078 242.604 243.017 243.218 243.184 242.825 242.1 241.089 239.836 238.446 236.944 235.577 234.341 233.242 232.263 231.276 230.683 230.242 229.881 229.661 229.542 229.479 229.49 229.575 229.721 229.842 230.09 230.346 230.518 230.701 230.823 230.956 231.074 231.251 231.407 231.607 231.806 232.037 232.289 232.576 232.927 233.316 233.703 234.045 234.347 234.646 234.896 235.156 235.362 235.586 235.838 236.172 236.437 236.738 237.113 237.554 238.077 238.728 239.568 240.317 241.134 242.11 243.147 244.281 245.621 247.034 248.564 250.204 253.26 255.858 257.499 259.382 261.615 263.444 264.653 265.468 265.971 266.164 266.149 265.993 265.736 265.485 265.284 265.183 265.194 265.213 265.282 265.41 265.501 265.67 265.798 265.807 265.595 265.417 265.232 265.044 264.839 264.554 264.207 263.823 263.272 262.841 262.332 261.737 261.005 260.419 259.815 259.231 258.791 258.939 258.541 258.158 257.487 257.115 257.011 256.84 255.361 255.102 254.998 254.996 255.038 255.16 255.314 255.545 255.824 256.186 256.566 256.93 257.313 257.644 257.942 258.194 258.326 258.418 258.927 258.02 257.238 256.734 256.212 255.676 255.178 254.736 254.359 254.106 253.962 253.9 253.926 254.109 254.399 254.779 255.243 255.758 256.246 256.71 257.158 257.571 257.925 258.203 258.422 258.652 258.852 259.118 259.349 259.644 260.221 261.201 261.532 261.669 261.778 262.278 262.712 263.111 263.548 264.125 264.664 265.101 265.465 265.798 266.024 266.044 265.901 265.702 265.383 264.999 264.571 264.092 263.676 263.23 262.562 262.023 261.87 261.544 260.895 259.755 258.775 257.721 256.732 255.643 254.398 253.201 252.082 250.997 249.943 248.928 247.982 247.051 246.201 245.316 248.426 247.715 246.869 246.139 245.468 244.961 244.444 244.258 243.969 243.655 243.723 243.73 243.598 243.724 243.923 244.088 244.143 244.241 244.268 244.215 244.053 243.803 243.42 242.955 242.45 241.888 241.251 240.644 239.869 239.135 238.338 237.553 236.83 236.086 235.579 234.923 234.572 234.686 234.982 235.672 236.466 237.505 238.651 239.799 240.901 241.891 242.785 243.736 244.811 245.813 246.548 247.182 247.416 247.149 246.279 244.969 243.33 241.6 239.709 237.906 236.18 234.828 233.652 232.763 232.11 231.547 231.173 230.918 230.793 230.824 230.837 230.972 231.155 231.316 231.565 231.829 232.068 232.121 232.609 232.863 232.838 233.132 233.421 233.738 234.023 234.278 234.5 234.738 234.961 235.188 235.42 235.646 235.914 236.169 236.393 236.592 236.734 236.864 237.055 237.295 237.614 238.027 238.545 239.039 239.523 240.117 240.684 241.264 241.889 242.513 243.182 243.938 244.821 245.888 247.119 248.543 250.199 252.244 254.476 256.28 258.601 261.574 264.375 265.942 266.911 267.377 267.512 267.437 267.185 266.924 266.775 266.706 266.809 266.913 267.036 267.1 267.095 267.045 267.05 267.029 266.835 266.733 266.702 266.66 266.611 266.583 266.555 266.464 266.303 266.092 265.847 265.529 265.129 264.815 264.59 264.315 263.962 263.519 263.034 262.492 261.816 261.528 261.437 261.249 261.006 261.015 260.906 260.132 259.32 260.262 260.006 259.844 260.599 261.475 262.062 262.435 262.398 262.286 262.54 263.051 263.737 264.125 264.117 263.238 261.875 261.477 261.149 260.912 260.935 261.198 261.503 261.768 261.931 262.2 263.077 263.752 264.006 264.238 264.369 263.583 263.189 262.246 262.326 262.276 262.121 261.832 261.494 261.196 260.967 260.856 260.843 260.845 261.035 261.161 261.451 261.409 261.732 262.166 262.692 263.369 264.127 264.771 265.323 265.886 266.659 267.211 267.579 267.844 268.032 268.116 268.119 268.052 267.926 267.795 267.625 267.396 266.926 266.376 265.91 265.534 265.058 264.498 263.807 262.782 261.313 259.985 258.281 256.902 255.648 254.499 253.413 252.552 251.722 250.863 250.087 249.159 253.506 253.085 252.636 252.099 251.581 251.204 250.943 250.76 250.626 250.563 250.649 250.73 250.926 251.144 251.381 251.633 251.851 252.007 252.031 251.889 251.618 251.234 250.715 250.144 249.525 248.856 248.06 247.297 246.399 245.389 244.293 243.152 242.017 240.904 239.676 238.707 238.017 237.612 237.369 237.318 238.002 238.807 239.91 241.048 242.22 243.496 244.792 245.98 247.236 248.689 249.89 250.891 251.271 250.832 249.825 248.333 246.548 244.603 242.685 240.895 239.217 237.838 236.59 235.608 234.737 234.06 233.499 233.046 232.902 232.825 232.788 232.867 233.038 233.221 233.518 233.907 234.344 234.853 235.425 235.967 236.481 236.944 237.392 237.766 238.023 238.152 238.158 237.878 237.796 237.756 237.731 237.643 237.584 237.562 237.619 237.966 238.153 238.534 239.016 239.578 240.155 240.693 241.273 241.962 242.675 243.285 243.824 244.255 244.723 245.172 245.548 245.975 246.458 247.152 248.04 249.125 250.492 252.181 254.14 256.242 258.527 262.124 265.172 266.925 268.12 268.81 269.164 269.261 269.05 268.626 268.242 268.014 268.108 268.317 268.493 268.563 268.512 268.406 268.283 268.159 267.99 267.907 267.854 267.786 267.77 267.771 267.73 267.682 267.704 267.728 267.697 267.669 267.708 267.818 267.903 267.952 267.983 268.001 267.891 267.694 267.32 266.94 266.615 266.261 265.881 265.584 265.272 264.93 264.799 264.927 265.256 265.737 266.281 266.818 267.356 267.807 268.148 268.337 268.401 268.331 268.083 267.719 267.309 266.41 264.814 264.602 264.613 264.835 263.844 265.512 266.824 267.579 268.023 268.378 268.699 268.993 269.249 269.407 269.476 269.447 269.319 269.227 268.698 267.157 265.945 265.022 263.954 263.123 262.603 262.228 262.038 262.005 262.086 261.967 261.629 261.802 262.175 262.599 263.226 264.001 264.82 265.385 265.835 266.3 267.008 267.589 267.978 268.292 268.584 268.801 268.98 269.108 269.164 269.159 269.158 269.165 269.149 269.079 268.915 268.662 268.192 267.74 267.192 266.411 265.238 264.297 263.285 261.902 260.88 258.674 257.486 256.525 255.758 255.098 254.556 254.061 259.131 258.872 258.605 258.378 258.089 257.866 257.771 257.846 258.287 257.988 257.141 257.252 257.501 257.921 258.404 258.924 259.479 259.797 259.985 260.044 258.61 258.146 257.659 257.076 256.4 255.657 254.867 253.964 252.958 251.84 250.717 249.493 248.209 246.924 245.674 244.606 243.689 242.897 242.308 241.895 241.828 242.09 242.635 243.571 244.602 245.855 247.407 249.156 250.764 252.538 253.993 255.159 255.454 255.078 253.942 252.379 250.518 248.637 246.791 245.135 243.678 242.415 241.268 240.16 239.207 238.364 237.736 237.306 236.942 236.778 236.788 236.93 237.054 237.313 237.613 238.069 238.588 239.231 239.929 240.684 241.439 241.935 242.678 243.038 243.187 243.148 242.963 242.779 242.574 242.316 242.039 241.764 241.529 241.362 241.28 241.28 241.501 241.932 242.516 243.139 243.893 244.607 245.324 246.028 246.712 247.382 248.001 248.603 249.169 249.742 250.334 250.905 251.51 252.333 254.619 256.745 258.05 259.515 261.997 263.855 265.536 267.024 268.325 269.424 270.292 270.752 270.954 270.965 270.772 270.496 270.206 269.945 269.818 269.924 270.016 270.047 270.008 269.898 269.714 269.495 269.312 269.167 269.042 268.887 268.829 268.798 268.729 268.687 268.804 268.936 269.05 269.154 269.246 269.38 269.556 269.764 269.984 270.145 270.266 270.365 270.441 270.464 270.436 270.364 270.209 270.001 269.797 269.597 269.417 269.307 269.295 269.365 269.517 269.706 269.872 270.028 270.177 270.268 270.299 270.26 270.112 269.856 269.52 269.042 268.455 268.018 267.737 267.69 267.964 268.484 268.999 269.529 270.108 270.573 270.959 271.292 271.61 271.824 271.939 271.926 271.665 271.174 270.451 269.273 268.117 267.101 266.119 265.293 264.557 263.906 263.633 263.605 263.559 263.617 263.378 263.654 263.912 264.254 264.757 265.174 265.695 266.196 266.549 266.923 267.468 267.921 268.261 268.552 268.858 269.135 269.36 269.51 269.627 269.704 269.752 269.775 269.803 269.837 269.862 269.901 269.93 269.916 269.833 269.621 269.146 268.373 267.372 266.099 264.546 263.532 262.634 261.791 261.42 260.297 259.895 259.462 265.035 264.897 264.767 264.692 264.525 264.254 264.072 263.87 263.477 262.996 262.685 262.71 262.946 263.215 263.198 263.448 264.316 264.79 264.978 264.912 264.579 264.825 264.413 264.432 263.335 262.292 260.485 259.524 259.56 258.816 257.32 255.657 254.33 253.002 251.699 250.474 249.414 248.548 247.789 247.265 246.98 246.901 247.056 247.559 248.422 249.594 251.133 253.039 255.086 257.085 258.963 260.386 259.73 259.355 259.373 259.393 256.117 253.99 252.249 250.68 249.332 248.167 247.229 246.368 245.531 244.84 244.318 243.843 243.563 243.392 243.309 243.268 243.361 243.508 243.691 243.988 244.407 244.894 245.513 246.272 247.024 247.601 248.061 248.345 248.511 248.513 248.496 248.319 248.139 247.875 247.551 247.285 247.015 246.825 246.695 246.547 246.608 246.835 247.239 247.78 248.434 249.209 250.089 251.092 252.128 253.153 254.246 255.984 257.405 258.456 260.269 261.975 263.033 263.95 264.56 265.438 266.536 267.532 268.443 269.307 270.174 270.859 271.389 271.789 272.078 272.202 272.228 272.188 272.067 271.892 271.693 271.493 271.29 271.192 271.139 271.086 271.011 270.872 270.676 270.448 270.201 269.981 269.84 269.747 269.615 269.599 269.641 269.726 269.842 269.891 269.948 270.009 270.09 270.163 270.231 270.32 270.457 270.632 270.827 271.033 271.266 271.467 271.616 271.711 271.731 271.675 271.583 271.466 271.323 271.217 271.145 271.099 271.07 271.055 271.049 271.058 271.077 271.097 271.103 271.096 271.054 270.965 270.825 270.632 270.342 270.053 269.799 269.639 269.618 269.706 269.797 269.924 270.207 270.546 270.921 271.279 271.663 271.963 272.182 272.32 272.305 272.028 271.299 269.914 269.076 268.112 267.469 267.307 266.768 265.824 265.441 265.174 264.957 264.124 264.509 264.84 265.575 266.045 266.453 266.941 267.306 267.459 267.618 267.83 268.186 268.66 269.047 269.342 269.57 269.736 269.868 269.964 270.045 270.099 270.131 270.149 270.165 270.154 270.107 270.09 270.254 270.481 270.709 270.904 271.016 270.941 270.698 270.282 269.602 268.839 268.087 267.355 266.549 265.953 265.557 265.269 270.442 270.381 270.357 270.347 270.326 270.274 270.186 270.057 269.876 269.717 269.621 269.596 269.676 269.824 269.988 270.15 270.27 270.255 270.135 269.944 269.612 269.261 268.848 268.264 267.739 267.307 266.656 265.865 264.865 263.933 263.159 262.443 260.91 260.232 259.191 256.641 254.757 253.777 253.0 252.512 252.399 252.572 252.997 254.831 256.386 257.462 258.706 260.045 261.377 262.614 263.595 265.163 266.279 265.959 265.075 264.012 262.606 261.618 259.792 257.043 255.213 254.116 253.243 252.542 251.969 251.548 251.175 250.906 250.594 250.295 250.059 249.887 249.9 250.001 250.123 250.373 250.7 251.101 251.604 252.231 252.779 253.369 253.967 254.435 254.64 254.741 254.745 254.701 254.523 254.147 253.815 253.478 253.146 252.782 252.48 252.271 252.162 252.288 252.651 253.288 254.228 255.336 256.641 258.107 260.55 262.964 264.925 265.561 266.802 267.681 268.319 268.95 269.577 270.156 270.742 271.305 271.849 272.25 272.537 272.734 272.877 272.967 273.029 273.065 273.079 273.069 273.058 273.053 273.041 273.003 272.911 272.762 272.545 272.342 272.173 272.019 271.865 271.745 271.641 271.505 271.286 271.031 270.819 270.711 270.629 270.594 270.58 270.583 270.666 270.743 270.806 270.856 270.87 270.874 270.871 270.872 270.906 271.014 271.17 271.36 271.611 271.857 272.064 272.224 272.327 272.355 272.352 272.332 272.302 272.282 272.26 272.228 272.176 272.11 272.042 271.981 271.937 271.937 271.953 271.972 271.993 272.002 271.989 271.946 271.859 271.741 271.596 271.448 271.308 271.212 271.146 271.111 271.137 271.189 271.306 271.496 271.776 272.056 272.285 272.469 272.587 272.548 272.26 271.745 270.996 270.237 269.682 269.383 269.136 267.641 267.317 267.012 266.741 266.735 266.453 266.601 267.435 268.21 268.58 268.711 268.664 268.616 268.699 268.984 269.393 269.719 270.001 270.246 270.454 270.588 270.682 270.729 270.719 270.705 270.709 270.716 270.716 270.656 270.55 270.473 270.514 270.685 270.95 271.215 271.454 271.613 271.694 271.706 271.644 271.526 271.381 271.216 271.018 270.847 270.693 270.558 271.89 271.873 271.879 271.898 271.917 271.915 271.889 271.837 271.752 271.656 271.573 271.508 271.469 271.468 271.495 271.54 271.593 271.617 271.616 271.6 271.598 271.639 271.711 271.796 271.853 271.797 271.62 271.312 270.756 269.982 269.039 267.892 266.512 265.49 264.742 264.048 262.946 261.189 260.689 260.468 260.533 260.379 261.956 263.148 264.197 265.095 265.954 266.832 267.841 268.763 269.613 270.302 270.694 270.576 269.984 268.895 267.174 265.917 265.113 263.46 261.912 261.252 260.656 259.694 259.484 259.767 260.365 260.305 258.054 256.193 255.863 255.637 255.731 256.165 256.83 257.502 257.777 259.071 260.297 259.925 260.03 260.446 260.602 261.379 261.496 262.854 263.129 262.594 262.396 262.121 261.814 261.669 262.36 260.477 260.515 260.322 258.848 259.247 260.111 261.687 263.239 264.391 265.479 267.146 268.362 269.828 270.836 271.59 272.189 272.536 272.745 272.891 273.052 273.228 273.399 273.547 273.657 273.689 273.679 273.649 273.621 273.62 273.64 273.673 273.707 273.743 273.776 273.789 273.772 273.723 273.65 273.54 273.364 273.159 272.953 272.761 272.57 272.421 272.303 272.194 272.053 271.902 271.747 271.611 271.539 271.517 271.519 271.554 271.61 271.66 271.721 271.784 271.847 271.902 271.941 271.966 271.995 272.05 272.127 272.23 272.384 272.555 272.717 272.859 272.984 273.059 273.114 273.157 273.196 273.229 273.251 273.263 273.261 273.242 273.219 273.191 273.156 273.135 273.127 273.126 273.13 273.135 273.138 273.132 273.111 273.076 273.039 273.002 272.955 272.905 272.849 272.789 272.724 272.688 272.675 272.686 272.733 272.804 272.882 272.956 273.026 273.05 273.003 272.861 272.585 272.22 271.784 271.315 270.598 269.877 268.956 268.62 268.582 268.493 268.354 268.713 269.146 269.409 269.503 269.461 269.349 269.44 269.722 270.081 270.487 270.811 271.072 271.29 271.468 271.572 271.628 271.654 271.644 271.619 271.586 271.549 271.501 271.445 271.377 271.318 271.293 271.332 271.397 271.464 271.547 271.651 271.75 271.836 271.919 271.977 272.01 272.019 272.008 271.981 271.949 271.921 272.29 272.317 272.339 272.353 272.351 272.335 272.315 272.281 272.225 272.156 272.08 272.001 271.916 271.855 271.831 271.84 271.879 271.931 271.985 272.03 272.072 272.125 272.198 272.298 272.421 272.518 272.567 272.561 272.464 272.285 272.043 271.721 271.23 270.618 269.924 269.168 268.288 267.746 267.628 267.711 267.917 268.412 269.111 269.697 270.2 270.57 270.884 271.19 271.539 271.853 272.114 272.31 272.4 272.305 272.065 271.649 270.856 269.752 268.641 267.672 266.943 266.648 266.361 266.004 265.578 265.365 265.139 264.716 263.92 262.09 261.363 261.041 261.385 261.658 261.837 262.9 264.286 265.394 266.108 266.422 266.785 267.289 267.912 268.686 269.392 269.739 269.762 269.6 269.447 269.25 269.021 268.741 268.178 267.464 267.164 266.757 265.488 264.042 265.478 267.654 269.169 270.099 270.915 271.641 272.306 272.777 273.113 273.342 273.481 273.532 273.564 273.596 273.665 273.759 273.857 273.944 274.003 274.024 274.037 274.061 274.117 274.2 274.283 274.362 274.441 274.498 274.528 274.518 274.468 274.403 274.335 274.253 274.113 273.932 273.734 273.527 273.311 273.137 272.987 272.852 272.699 272.55 272.421 272.314 272.253 272.275 272.329 272.401 272.508 272.639 272.774 272.907 273.048 273.165 273.245 273.295 273.327 273.353 273.383 273.425 273.495 273.578 273.66 273.743 273.835 273.919 274.002 274.076 274.139 274.177 274.199 274.221 274.259 274.31 274.366 274.42 274.461 274.474 274.465 274.44 274.406 274.375 274.348 274.32 274.287 274.254 274.22 274.182 274.128 274.063 273.99 273.913 273.83 273.767 273.724 273.699 273.698 273.711 273.724 273.729 273.713 273.67 273.599 273.495 273.32 273.081 272.774 272.391 271.904 271.447 271.121 270.816 270.243 269.964 269.819 269.897 270.045 270.185 270.195 270.151 270.225 270.465 270.715 270.996 271.339 271.676 271.92 272.093 272.245 272.345 272.413 272.457 272.479 272.474 272.461 272.436 272.403 272.361 272.306 272.239 272.151 272.054 271.975 271.917 271.894 271.901 271.921 271.944 272.003 272.063 272.111 272.153 272.183 272.206 272.229 272.256 272.559 272.576 272.582 272.573 272.54 272.51 272.481 272.454 272.432 272.407 272.374 272.333 272.283 272.233 272.198 272.188 272.203 272.235 272.284 272.337 272.382 272.399 272.404 272.408 272.43 272.468 272.51 272.559 272.614 272.659 272.691 272.706 272.685 272.61 272.508 272.4 272.304 272.276 272.309 272.391 272.529 272.665 272.78 272.869 272.935 272.978 273.019 273.061 273.106 273.132 273.138 273.128 273.095 273.042 272.975 272.888 272.743 272.524 272.235 271.896 271.591 271.441 271.336 271.199 270.939 270.513 269.922 269.214 268.461 267.936 267.85 268.07 268.617 269.175 269.707 270.205 270.63 270.888 271.076 271.262 271.523 271.813 272.086 272.32 272.488 272.563 272.595 272.601 272.59 272.568 272.514 272.414 272.214 271.9 271.499 271.002 270.488 270.599 271.181 271.724 272.121 272.426 272.666 272.855 273.0 273.101 273.187 273.271 273.374 273.486 273.613 273.754 273.927 274.099 274.258 274.406 274.536 274.635 274.722 274.811 274.913 275.0 275.07 275.128 275.174 275.194 275.194 275.183 275.171 275.16 275.137 275.093 274.998 274.847 274.664 274.458 274.229 274.045 273.898 273.767 273.603 273.425 273.267 273.138 273.049 273.044 273.086 273.168 273.314 273.503 273.714 273.929 274.153 274.323 274.445 274.528 274.577 274.6 274.618 274.643 274.681 274.716 274.744 274.771 274.807 274.869 274.953 275.038 275.122 275.185 275.234 275.282 275.355 275.442 275.524 275.593 275.634 275.634 275.619 275.599 275.58 275.567 275.553 275.532 275.494 275.44 275.378 275.307 275.216 275.127 275.044 274.969 274.898 274.841 274.796 274.754 274.708 274.661 274.61 274.559 274.495 274.417 274.325 274.211 274.052 273.859 273.63 273.344 272.944 272.549 272.223 271.96 271.791 271.79 271.584 270.988 270.796 270.993 271.003 271.017 271.199 271.449 271.7 271.966 272.219 272.412 272.551 272.643 272.727 272.769 272.787 272.807 272.833 272.879 272.93 272.97 272.99 272.969 272.923 272.853 272.737 272.606 272.483 272.382 272.324 272.312 272.326 272.346 272.383 272.409 272.432 272.451 272.468 272.488 272.512 272.536 272.75 272.689 272.629 272.568 272.508 272.468 272.446 272.442 272.471 272.514 272.553 272.586 272.609 272.607 272.588 272.557 272.513 272.478 272.463 272.467 272.501 272.538 272.567 272.581 272.579 272.569 272.562 272.567 272.598 272.659 272.728 272.802 272.879 272.929 272.967 273.008 273.073 273.169 273.282 273.399 273.516 273.578 273.602 273.597 273.577 273.566 273.565 273.572 273.574 273.552 273.511 273.456 273.402 273.382 273.381 273.376 273.35 273.277 273.163 273.001 272.796 272.679 272.617 272.559 272.448 272.282 272.082 271.868 271.659 271.563 271.582 271.689 271.878 272.044 272.175 272.272 272.35 272.418 272.503 272.61 272.76 272.896 272.988 273.039 273.051 273.045 273.045 273.048 273.047 273.045 273.041 273.037 273.03 273.032 273.028 273.002 272.951 272.91 272.895 272.906 272.932 272.957 272.978 273.005 273.047 273.128 273.243 273.387 273.583 273.79 273.996 274.192 274.391 274.565 274.727 274.879 275.027 275.158 275.28 275.392 275.498 275.574 275.639 275.701 275.769 275.825 275.865 275.888 275.897 275.887 275.865 275.826 275.743 275.609 275.445 275.261 275.058 274.908 274.807 274.733 274.644 274.516 274.357 274.188 274.001 273.882 273.834 273.856 273.977 274.169 274.385 274.623 274.908 275.148 275.327 275.454 275.547 275.604 275.649 275.697 275.76 275.818 275.859 275.881 275.892 275.931 275.993 276.065 276.146 276.218 276.287 276.355 276.433 276.5 276.551 276.584 276.59 276.577 276.564 276.556 276.558 276.556 276.541 276.508 276.444 276.366 276.286 276.207 276.124 276.048 275.982 275.924 275.875 275.841 275.809 275.769 275.701 275.617 275.528 275.442 275.358 275.283 275.207 275.126 275.023 274.896 274.726 274.502 274.182 273.85 273.553 273.316 273.167 273.122 273.107 273.1 272.794 272.314 272.246 272.308 272.513 272.807 273.07 273.263 273.345 273.329 273.28 273.219 273.147 273.064 272.976 272.893 272.814 272.81 272.863 272.951 273.067 273.136 273.168 273.169 273.12 273.03 272.92 272.818 272.738 272.707 272.71 272.733 272.778 272.82 272.848 272.863 272.863 272.852 272.831 272.797 272.997 272.864 272.729 272.602 272.496 272.44 272.424 272.446 272.524 272.612 272.692 272.767 272.834 272.867 272.874 272.858 272.815 272.755 272.697 272.648 272.625 272.641 272.668 272.7 272.721 272.728 272.729 272.734 272.77 272.837 272.905 272.971 273.033 273.076 273.108 273.143 273.204 273.291 273.398 273.516 273.648 273.744 273.811 273.862 273.913 273.95 273.966 273.962 273.933 273.875 273.802 273.725 273.668 273.663 273.679 273.681 273.639 273.562 273.462 273.332 273.169 273.057 273.015 273.016 273.025 273.008 272.975 272.926 272.859 272.835 272.847 272.868 272.868 272.855 272.842 272.84 272.868 272.931 273.01 273.083 273.141 273.168 273.175 273.177 273.201 273.248 273.291 273.313 273.301 273.259 273.223 273.214 273.261 273.366 273.479 273.573 273.642 273.675 273.698 273.722 273.725 273.69 273.628 273.565 273.54 273.593 273.694 273.834 274.03 274.23 274.422 274.602 274.789 274.957 275.117 275.272 275.446 275.614 275.772 275.918 276.058 276.164 276.255 276.344 276.438 276.501 276.533 276.539 276.522 276.492 276.458 276.416 276.351 276.257 276.139 276.001 275.842 275.727 275.655 275.614 275.578 275.504 275.379 275.211 274.991 274.796 274.667 274.608 274.631 274.745 274.908 275.117 275.406 275.673 275.89 276.063 276.206 276.306 276.393 276.488 276.615 276.75 276.862 276.942 277.004 277.045 277.084 277.128 277.185 277.245 277.304 277.359 277.414 277.452 277.473 277.48 277.476 277.468 277.458 277.447 277.428 277.392 277.338 277.271 277.186 277.115 277.058 277.009 276.957 276.9 276.836 276.768 276.703 276.661 276.631 276.6 276.554 276.495 276.438 276.386 276.344 276.314 276.284 276.254 276.213 276.154 276.05 275.882 275.61 275.32 275.049 274.809 274.627 274.519 274.419 274.308 274.16 273.966 273.825 273.808 273.91 274.06 274.166 274.214 274.218 274.19 274.125 274.024 273.883 273.739 273.588 273.411 273.228 273.12 273.064 273.045 273.075 273.138 273.214 273.281 273.314 273.3 273.262 273.218 273.182 273.159 273.154 273.156 273.169 273.188 273.204 273.221 273.231 273.213 273.17 273.102 273.387 273.256 273.111 272.964 272.831 272.757 272.733 272.751 272.818 272.898 272.968 273.029 273.082 273.117 273.144 273.167 273.188 273.19 273.178 273.153 273.111 273.067 273.021 272.981 272.952 272.945 272.957 272.984 273.033 273.09 273.143 273.189 273.232 273.279 273.333 273.396 273.48 273.567 273.655 273.747 273.848 273.942 274.026 274.104 274.185 274.237 274.257 274.249 274.212 274.151 274.067 273.98 273.932 273.929 273.917 273.882 273.835 273.781 273.716 273.624 273.501 273.414 273.382 273.389 273.422 273.442 273.44 273.423 273.394 273.381 273.378 273.371 273.348 273.331 273.329 273.345 273.371 273.392 273.401 273.393 273.365 273.343 273.341 273.369 273.437 273.507 273.562 273.601 273.617 273.614 273.621 273.661 273.766 273.905 274.033 274.13 274.201 274.274 274.355 274.446 274.52 274.512 274.431 274.308 274.202 274.214 274.32 274.484 274.694 274.884 275.066 275.249 275.451 275.622 275.78 275.935 276.117 276.304 276.482 276.646 276.803 276.921 277.022 277.107 277.17 277.187 277.175 277.15 277.12 277.099 277.079 277.05 276.994 276.914 276.82 276.713 276.596 276.508 276.454 276.431 276.426 276.4 276.331 276.214 276.033 275.843 275.678 275.548 275.453 275.445 275.507 275.623 275.827 276.059 276.279 276.486 276.684 276.832 276.967 277.115 277.31 277.516 277.708 277.881 278.032 278.123 278.18 278.224 278.266 278.302 278.328 278.34 278.337 278.327 278.319 278.315 278.317 278.317 278.305 278.275 278.217 278.145 278.074 278.008 277.942 277.893 277.856 277.826 277.788 277.735 277.671 277.598 277.516 277.461 277.429 277.406 277.379 277.349 277.323 277.306 277.305 277.319 277.337 277.355 277.37 277.379 277.362 277.297 277.122 276.848 276.56 276.301 276.082 275.931 275.793 275.635 275.422 275.232 275.096 275.019 275.006 275.017 275.012 274.985 274.935 274.897 274.864 274.813 274.731 274.656 274.582 274.48 274.311 274.131 273.961 273.797 273.631 273.518 273.453 273.423 273.413 273.426 273.445 273.476 273.523 273.557 273.575 273.579 273.578 273.573 273.562 273.557 273.557 273.549 273.523 273.478 273.664 273.576 273.48 273.379 273.273 273.203 273.162 273.151 273.177 273.234 273.3 273.367 273.426 273.469 273.505 273.547 273.612 273.677 273.728 273.764 273.776 273.751 273.702 273.642 273.571 273.528 273.509 273.506 273.499 273.484 273.473 273.471 273.492 273.55 273.63 273.722 273.833 273.934 274.016 274.088 274.159 274.223 274.279 274.334 274.395 274.443 274.476 274.491 274.483 274.444 274.37 274.266 274.167 274.11 274.055 273.986 273.911 273.861 273.818 273.772 273.719 273.676 273.656 273.654 273.654 273.644 273.629 273.622 273.626 273.639 273.647 273.643 273.619 273.598 273.596 273.611 273.625 273.62 273.604 273.59 273.602 273.658 273.745 273.85 273.953 274.015 274.051 274.083 274.146 274.235 274.344 274.467 274.615 274.736 274.832 274.903 274.969 275.061 275.163 275.261 275.317 275.268 275.151 275.007 274.914 274.98 275.145 275.334 275.524 275.692 275.864 276.043 276.231 276.378 276.513 276.671 276.908 277.171 277.412 277.615 277.775 277.86 277.909 277.935 277.926 277.877 277.815 277.763 277.738 277.741 277.738 277.71 277.632 277.522 277.409 277.311 277.235 277.188 277.163 277.163 277.194 277.22 277.21 277.151 277.019 276.849 276.679 276.521 276.359 276.232 276.17 276.174 276.251 276.398 276.581 276.792 277.034 277.24 277.42 277.607 277.848 278.111 278.369 278.613 278.836 278.974 279.063 279.124 279.166 279.173 279.148 279.095 279.012 278.937 278.885 278.857 278.855 278.862 278.852 278.822 278.766 278.708 278.661 278.625 278.594 278.563 278.526 278.487 278.446 278.409 278.367 278.316 278.247 278.186 278.139 278.104 278.071 278.039 278.016 278.005 278.016 278.047 278.084 278.123 278.161 278.206 278.246 278.262 278.22 278.076 277.862 277.624 277.379 277.199 277.052 276.912 276.738 276.527 276.31 276.109 275.933 275.821 275.738 275.658 275.572 275.506 275.443 275.363 275.262 275.184 275.127 275.077 275.007 274.909 274.777 274.614 274.417 274.243 274.084 273.943 273.822 273.76 273.737 273.744 273.771 273.795 273.816 273.831 273.859 273.889 273.899 273.889 273.853 273.811 273.77 273.729 273.842 273.781 273.728 273.676 273.607 273.55 273.508 273.483 273.491 273.556 273.655 273.772 273.899 273.993 274.061 274.118 274.185 274.255 274.323 274.389 274.456 274.488 274.485 274.461 274.418 274.371 274.317 274.251 274.158 274.073 274.023 274.018 274.072 274.168 274.274 274.374 274.468 274.534 274.586 274.629 274.674 274.711 274.742 274.766 274.791 274.813 274.836 274.854 274.862 274.826 274.752 274.649 274.517 274.386 274.265 274.161 274.053 273.973 273.92 273.893 273.883 273.895 273.923 273.955 273.977 273.97 273.951 273.941 273.947 273.943 273.928 273.901 273.86 273.832 273.827 273.84 273.859 273.874 273.904 273.963 274.091 274.264 274.44 274.604 274.739 274.831 274.909 275.0 275.141 275.302 275.455 275.586 275.694 275.767 275.84 275.916 275.998 276.079 276.155 276.211 276.211 276.115 275.983 275.863 275.836 275.958 276.125 276.286 276.437 276.577 276.735 276.915 277.129 277.317 277.507 277.747 278.092 278.441 278.731 278.946 279.068 279.084 279.053 278.997 278.897 278.758 278.619 278.507 278.448 278.441 278.429 278.39 278.302 278.197 278.105 278.04 278.004 277.985 277.984 278.011 278.075 278.135 278.152 278.109 277.984 277.815 277.644 277.477 277.29 277.122 276.989 276.898 276.864 276.925 277.071 277.272 277.521 277.752 277.954 278.155 278.425 278.711 278.998 279.277 279.542 279.712 279.813 279.869 279.881 279.836 279.758 279.66 279.538 279.438 279.366 279.324 279.314 279.335 279.357 279.366 279.344 279.31 279.28 279.255 279.231 279.198 279.152 279.102 279.057 279.031 279.0 278.953 278.878 278.798 278.724 278.662 278.612 278.58 278.563 278.563 278.59 278.635 278.685 278.736 278.782 278.824 278.864 278.901 278.939 278.93 278.848 278.696 278.498 278.35 278.24 278.145 278.006 277.802 277.556 277.29 277.022 276.822 276.66 276.51 276.35 276.21 276.071 275.904 275.695 275.522 275.387 275.282 275.202 275.136 275.055 274.958 274.857 274.779 274.704 274.619 274.515 274.432 274.368 274.321 274.284 274.272 274.27 274.274 274.295 274.31 274.299 274.25 274.155 274.056 273.977 273.913 274.109 274.059 274.015 273.973 273.934 273.911 273.898 273.898 273.927 273.995 274.091 274.207 274.343 274.461 274.56 274.651 274.746 274.842 274.942 275.046 275.15 275.221 275.265 275.283 275.266 275.218 275.145 275.046 274.921 274.834 274.811 274.858 274.977 275.114 275.225 275.309 275.371 275.402 275.41 275.397 275.374 275.357 275.34 275.322 275.293 275.262 275.244 275.244 275.252 275.227 275.167 275.082 274.968 274.847 274.688 274.508 274.329 274.21 274.141 274.123 274.158 274.237 274.327 274.417 274.494 274.537 274.556 274.561 274.556 274.527 274.478 274.422 274.383 274.394 274.426 274.466 274.501 274.532 274.588 274.683 274.841 275.013 275.187 275.355 275.533 275.695 275.856 276.027 276.223 276.371 276.473 276.553 276.632 276.716 276.804 276.885 276.961 277.004 277.017 277.011 276.972 276.885 276.797 276.767 276.856 277.048 277.266 277.474 277.664 277.826 278.005 278.23 278.521 278.79 279.05 279.331 279.669 279.973 280.201 280.351 280.415 280.384 280.298 280.166 279.968 279.738 279.516 279.333 279.225 279.221 279.236 279.222 279.158 279.068 278.984 278.915 278.864 278.847 278.856 278.9 279.004 279.113 279.164 279.132 278.992 278.808 278.633 278.477 278.331 278.202 278.088 277.998 277.95 277.987 278.099 278.26 278.446 278.599 278.741 278.91 279.147 279.412 279.688 279.963 280.232 280.402 280.486 280.504 280.454 280.352 280.236 280.127 280.037 279.99 279.964 279.951 279.965 280.008 280.054 280.085 280.077 280.025 279.956 279.882 279.815 279.771 279.737 279.704 279.665 279.621 279.563 279.492 279.401 279.317 279.243 279.176 279.118 279.079 279.059 279.06 279.101 279.168 279.225 279.25 279.231 279.163 279.106 279.194 279.432 279.74 279.789 279.658 279.484 279.364 279.265 279.157 278.99 278.775 278.543 278.312 278.088 277.896 277.697 277.468 277.18 276.91 276.652 276.393 276.134 275.94 275.767 275.598 275.452 275.369 275.299 275.24 275.215 275.209 275.195 275.17 275.132 275.099 275.07 275.041 275.007 274.985 274.976 274.978 274.965 274.902 274.797 274.66 274.488 274.357 274.26 274.182 274.626 274.565 274.52 274.48 274.451 274.453 274.469 274.488 274.515 274.56 274.617 274.687 274.778 274.876 274.981 275.094 275.23 275.374 275.52 275.658 275.786 275.867 275.923 275.964 275.991 275.989 275.952 275.887 275.8 275.748 275.753 275.803 275.929 276.044 276.11 276.145 276.167 276.174 276.16 276.12 276.055 276.002 275.963 275.922 275.851 275.762 275.691 275.644 275.612 275.57 275.505 275.418 275.304 275.17 274.999 274.8 274.603 274.502 274.477 274.515 274.619 274.753 274.888 275.017 275.139 275.225 275.29 275.339 275.369 275.373 275.363 275.349 275.348 275.379 275.417 275.446 275.453 275.447 275.457 275.507 275.617 275.762 275.931 276.128 276.383 276.625 276.842 277.024 277.165 277.238 277.311 277.392 277.497 277.614 277.716 277.797 277.832 277.804 277.756 277.707 277.669 277.639 277.636 277.71 277.923 278.243 278.582 278.894 279.158 279.341 279.52 279.736 280.014 280.277 280.516 280.749 280.988 281.159 281.271 281.347 281.394 281.391 281.322 281.177 280.926 280.642 280.376 280.155 280.022 280.033 280.098 280.145 280.118 280.017 279.895 279.783 279.702 279.674 279.684 279.74 279.877 280.03 280.115 280.113 279.998 279.828 279.667 279.539 279.435 279.36 279.304 279.267 279.259 279.308 279.395 279.498 279.598 279.67 279.75 279.865 280.045 280.26 280.488 280.716 280.933 281.053 281.091 281.066 280.97 280.842 280.722 280.626 280.577 280.581 280.601 280.625 280.656 280.695 280.725 280.732 280.693 280.611 280.512 280.406 280.299 280.23 280.188 280.159 280.122 280.067 280.003 279.937 279.868 279.813 279.761 279.703 279.632 279.567 279.516 279.496 279.536 279.594 279.604 279.544 279.325 279.24 279.438 279.778 280.535 280.835 280.769 280.611 280.451 280.339 280.211 280.049 279.806 279.546 279.309 279.091 278.883 278.685 278.436 278.122 277.719 277.343 277.038 276.816 276.643 276.483 276.294 276.104 275.943 275.849 275.79 275.766 275.773 275.785 275.781 275.766 275.746 275.737 275.729 275.714 275.684 275.652 275.635 275.624 275.59 275.49 275.334 275.154 274.964 274.837 274.757 274.696 275.441 275.396 275.392 275.4 275.412 275.429 275.448 275.451 275.425 275.401 275.397 275.413 275.468 275.566 275.682 275.797 275.927 276.057 276.184 276.302 276.411 276.482 276.539 276.596 276.659 276.704 276.718 276.703 276.68 276.686 276.722 276.796 276.901 276.95 276.95 276.927 276.909 276.905 276.893 276.861 276.797 276.74 276.692 276.637 276.53 276.378 276.226 276.091 275.969 275.874 275.788 275.705 275.629 275.533 275.388 275.253 275.176 275.206 275.314 275.479 275.695 275.875 276.011 276.115 276.205 276.278 276.346 276.41 276.473 276.511 276.531 276.542 276.559 276.59 276.622 276.641 276.631 276.592 276.553 276.541 276.585 276.694 276.87 277.115 277.456 277.779 278.03 278.194 278.291 278.354 278.42 278.51 278.64 278.759 278.841 278.873 278.837 278.76 278.693 278.66 278.673 278.722 278.804 278.963 279.304 279.744 280.152 280.476 280.699 280.829 280.958 281.115 281.319 281.523 281.71 281.876 282.011 282.074 282.112 282.159 282.241 282.263 282.2 282.064 281.825 281.558 281.308 281.092 280.936 280.914 280.971 281.048 281.076 281.013 280.906 280.799 280.716 280.669 280.643 280.646 280.715 280.834 280.942 281.014 281.016 280.938 280.841 280.756 280.691 280.659 280.641 280.628 280.627 280.652 280.696 280.751 280.805 280.848 280.907 280.995 281.133 281.282 281.428 281.569 281.694 281.749 281.741 281.691 281.597 281.484 281.372 281.28 281.221 281.205 281.221 281.269 281.341 281.393 281.399 281.365 281.29 281.206 281.111 281.009 280.894 280.797 280.722 280.663 280.603 280.542 280.488 280.442 280.394 280.344 280.286 280.215 280.133 280.063 280.013 279.999 280.027 280.009 279.869 279.523 279.27 279.324 279.765 280.861 281.395 281.638 281.608 281.455 281.307 281.271 281.187 281.044 280.701 280.343 280.033 279.74 279.438 279.153 278.854 278.523 278.129 277.783 277.524 277.343 277.197 277.068 276.936 276.798 276.672 276.587 276.537 276.513 276.508 276.51 276.498 276.477 276.457 276.45 276.444 276.427 276.393 276.36 276.338 276.308 276.233 276.1 275.931 275.761 275.616 275.55 275.518 275.491 276.489 276.489 276.52 276.563 276.607 276.629 276.632 276.619 276.578 276.525 276.483 276.475 276.524 276.617 276.717 276.806 276.888 276.957 277.022 277.082 277.139 277.184 277.222 277.254 277.29 277.319 277.339 277.348 277.363 277.399 277.475 277.578 277.672 277.706 277.695 277.665 277.645 277.643 277.631 277.602 277.559 277.513 277.453 277.361 277.192 276.975 276.753 276.549 276.368 276.251 276.177 276.146 276.187 276.279 276.372 276.447 276.574 276.777 277.02 277.266 277.496 277.632 277.703 277.746 277.792 277.836 277.874 277.896 277.898 277.88 277.853 277.826 277.809 277.816 277.832 277.842 277.827 277.782 277.73 277.689 277.675 277.735 277.885 278.132 278.504 278.863 279.144 279.353 279.505 279.579 279.647 279.741 279.852 279.906 279.912 279.887 279.825 279.774 279.767 279.821 279.953 280.118 280.313 280.581 280.988 281.385 281.7 281.913 282.023 282.082 282.173 282.31 282.491 282.645 282.761 282.843 282.91 282.954 282.983 283.011 283.077 283.098 283.041 282.922 282.719 282.491 282.271 282.059 281.866 281.775 281.771 281.833 281.925 281.97 281.959 281.912 281.838 281.737 281.61 281.483 281.405 281.451 281.573 281.732 281.895 281.98 282.002 281.991 281.959 281.933 281.908 281.879 281.847 281.835 281.848 281.875 281.891 281.909 281.954 282.033 282.144 282.239 282.317 282.382 282.439 282.463 282.452 282.41 282.339 282.263 282.181 282.093 281.995 281.915 281.886 281.922 282.025 282.108 282.127 282.094 282.017 281.936 281.853 281.756 281.633 281.515 281.412 281.317 281.21 281.113 281.035 280.971 280.899 280.819 280.74 280.667 280.611 280.584 280.57 280.569 280.552 280.383 280.011 279.418 278.934 279.204 280.051 281.382 282.052 282.398 282.372 282.182 281.996 281.961 281.934 281.74 281.361 280.928 280.533 280.143 279.725 279.388 279.116 278.878 278.614 278.36 278.14 277.966 277.831 277.753 277.69 277.628 277.57 277.52 277.478 277.436 277.386 277.333 277.276 277.223 277.176 277.16 277.162 277.163 277.157 277.142 277.113 277.052 276.907 276.719 276.55 276.419 276.344 276.359 276.414 276.468 277.8 277.819 277.83 277.832 277.821 277.785 277.747 277.729 277.73 277.732 277.719 277.701 277.702 277.74 277.787 277.829 277.861 277.889 277.925 277.97 278.019 278.054 278.066 278.054 278.024 278.01 278.025 278.063 278.118 278.174 278.25 278.32 278.371 278.39 278.389 278.379 278.373 278.365 278.345 278.314 278.276 278.24 278.176 278.049 277.82 277.559 277.319 277.124 276.986 276.925 276.919 276.991 277.19 277.445 277.692 277.919 278.168 278.42 278.673 278.916 279.132 279.241 279.287 279.311 279.348 279.385 279.391 279.358 279.279 279.192 279.114 279.045 278.993 278.975 278.963 278.939 278.891 278.84 278.806 278.795 278.812 278.889 279.042 279.286 279.639 279.975 280.25 280.474 280.632 280.704 280.768 280.837 280.886 280.883 280.857 280.829 280.804 280.819 280.895 281.049 281.301 281.595 281.91 282.243 282.589 282.867 283.062 283.152 283.171 283.213 283.31 283.448 283.599 283.693 283.736 283.755 283.789 283.839 283.883 283.901 283.921 283.958 283.957 283.866 283.671 283.457 283.245 283.027 282.823 282.717 282.702 282.77 282.917 283.028 283.052 283.001 282.876 282.707 282.521 282.339 282.213 282.244 282.365 282.542 282.756 282.921 283.012 283.038 283.017 282.988 282.952 282.9 282.834 282.807 282.82 282.849 282.859 282.857 282.884 282.949 283.037 283.097 283.133 283.163 283.204 283.228 283.226 283.207 283.169 283.117 283.05 282.968 282.854 282.745 282.675 282.661 282.727 282.825 282.886 282.88 282.809 282.709 282.593 282.461 282.303 282.172 282.056 281.933 281.772 281.622 281.512 281.433 281.366 281.297 281.23 281.172 281.138 281.124 281.118 281.11 281.047 280.76 280.215 279.474 278.739 278.951 279.93 281.477 282.665 283.144 283.184 283.001 282.732 282.534 282.314 282.008 281.549 281.082 280.664 280.281 279.928 279.732 279.641 279.577 279.453 279.251 279.032 278.839 278.695 278.621 278.576 278.544 278.53 278.529 278.514 278.475 278.395 278.298 278.209 278.133 278.071 278.046 278.036 278.03 278.023 277.992 277.923 277.807 277.6 277.395 277.27 277.23 277.287 277.428 277.587 277.72 279.235 279.239 279.226 279.201 279.148 279.053 278.962 278.928 278.975 279.036 279.05 279.026 278.988 278.97 278.956 278.937 278.911 278.902 278.919 278.957 279.011 279.043 279.033 278.987 278.924 278.915 278.963 279.044 279.146 279.227 279.28 279.294 279.269 279.244 279.239 279.25 279.258 279.224 279.163 279.101 279.074 279.078 279.038 278.918 278.677 278.4 278.162 277.997 277.932 277.96 278.042 278.185 278.376 278.608 278.868 279.129 279.404 279.672 279.95 280.23 280.501 280.657 280.725 280.748 280.756 280.742 280.682 280.579 280.436 280.313 280.219 280.152 280.108 280.089 280.076 280.057 280.025 280.011 280.033 280.087 280.181 280.321 280.515 280.765 281.086 281.362 281.573 281.717 281.781 281.791 281.803 281.82 281.826 281.813 281.803 281.81 281.855 281.965 282.135 282.378 282.736 283.126 283.481 283.776 284.032 284.19 284.252 284.258 284.277 284.348 284.426 284.499 284.566 284.629 284.685 284.735 284.78 284.827 284.921 285.019 284.995 285.01 285.096 285.116 284.976 284.738 284.504 284.302 284.173 284.151 284.203 284.314 284.474 284.541 284.487 284.337 284.103 283.895 283.729 283.603 283.541 283.557 283.61 283.689 283.796 283.898 283.958 283.975 283.938 283.878 283.816 283.742 283.649 283.614 283.653 283.726 283.776 283.768 283.779 283.831 283.908 283.958 283.99 284.025 284.07 284.094 284.112 284.13 284.14 284.104 284.042 283.968 283.877 283.786 283.709 283.662 283.691 283.766 283.802 283.769 283.659 283.523 283.369 283.184 282.964 282.792 282.648 282.501 282.314 282.156 282.051 281.982 281.932 281.882 281.826 281.768 281.714 281.693 281.699 281.725 281.699 281.418 280.819 279.959 279.127 279.152 280.072 281.666 283.186 284.179 284.27 284.036 283.589 283.181 282.749 282.241 281.641 281.177 280.842 280.626 280.558 280.65 280.79 280.888 280.849 280.655 280.427 280.221 280.058 279.951 279.864 279.795 279.753 279.75 279.742 279.707 279.614 279.509 279.43 279.378 279.357 279.34 279.295 279.23 279.125 278.986 278.822 278.639 278.425 278.288 278.286 278.407 278.622 278.847 279.032 279.166 280.52 280.501 280.486 280.471 280.433 280.356 280.278 280.235 280.244 280.257 280.233 280.18 280.12 280.086 280.058 280.025 279.982 279.957 279.953 279.967 279.994 280.01 279.99 279.94 279.891 279.905 279.971 280.064 280.183 280.278 280.335 280.342 280.297 280.254 280.248 280.268 280.277 280.21 280.111 280.039 280.065 280.153 280.179 280.097 279.871 279.589 279.336 279.169 279.12 279.146 279.214 279.331 279.576 279.899 280.188 280.421 280.614 280.797 281.026 281.291 281.587 281.805 281.927 281.957 281.895 281.771 281.612 281.44 281.288 281.212 281.178 281.161 281.159 281.188 281.232 281.276 281.309 281.344 281.388 281.442 281.528 281.666 281.852 282.073 282.327 282.519 282.637 282.68 282.661 282.634 282.626 282.628 282.627 282.627 282.653 282.717 282.846 283.034 283.274 283.575 283.965 284.329 284.647 284.939 285.215 285.324 285.325 285.303 285.343 285.426 285.469 285.466 285.464 285.538 285.647 285.753 285.818 285.852 285.938 285.99 286.031 286.162 286.296 286.358 286.332 286.142 285.927 285.778 285.774 285.864 285.967 286.082 286.215 286.226 286.085 285.828 285.504 285.283 285.132 285.024 284.946 284.919 284.899 284.864 284.821 284.824 284.833 284.798 284.695 284.603 284.538 284.479 284.411 284.403 284.47 284.568 284.624 284.591 284.585 284.629 284.703 284.753 284.796 284.845 284.894 284.913 284.937 284.977 285.031 285.036 284.998 284.944 284.888 284.83 284.785 284.781 284.843 284.88 284.84 284.734 284.562 284.373 284.165 283.93 283.66 283.453 283.288 283.136 282.972 282.85 282.758 282.669 282.568 282.477 282.396 282.324 282.269 282.277 282.346 282.45 282.504 282.314 281.834 281.067 280.032 279.961 280.623 282.196 284.04 285.201 285.301 285.086 284.491 283.957 283.402 282.817 282.217 281.842 281.668 281.67 281.842 282.049 282.19 282.24 282.171 282.011 281.843 281.691 281.55 281.445 281.352 281.263 281.174 281.125 281.092 281.051 280.972 280.875 280.799 280.752 280.745 280.729 280.664 280.541 280.316 280.052 279.804 279.588 279.399 279.313 279.365 279.547 279.865 280.176 280.386 280.496 281.84 281.769 281.72 281.686 281.665 281.651 281.626 281.588 281.527 281.448 281.358 281.27 281.197 281.166 281.147 281.131 281.121 281.124 281.136 281.154 281.178 281.188 281.182 281.156 281.121 281.119 281.162 281.237 281.345 281.441 281.504 281.542 281.558 281.562 281.583 281.602 281.572 281.453 281.328 281.289 281.404 281.574 281.676 281.673 281.514 281.281 281.076 280.936 280.868 280.861 280.914 281.054 281.362 281.691 281.922 282.053 282.108 282.146 282.239 282.39 282.602 282.798 282.935 282.976 282.882 282.704 282.521 282.362 282.273 282.29 282.344 282.397 282.438 282.477 282.522 282.563 282.595 282.626 282.659 282.697 282.761 282.879 283.026 283.172 283.303 283.378 283.407 283.404 283.386 283.385 283.405 283.435 283.474 283.532 283.634 283.781 283.99 284.221 284.478 284.764 285.074 285.338 285.641 286.023 286.475 286.722 286.748 286.642 286.568 286.61 286.642 286.62 286.584 286.627 286.725 286.84 286.92 286.896 286.851 286.18 285.867 286.527 287.434 287.714 287.757 287.574 287.38 287.285 287.355 287.469 287.544 287.633 287.75 287.736 287.54 287.224 286.87 286.662 286.509 286.364 286.222 286.147 286.083 285.979 285.826 285.734 285.664 285.566 285.415 285.315 285.287 285.298 285.309 285.348 285.429 285.508 285.513 285.464 285.458 285.498 285.548 285.579 285.632 285.713 285.794 285.812 285.825 285.869 285.942 285.973 285.965 285.943 285.94 285.935 285.951 286.004 286.091 286.095 286.016 285.867 285.64 285.396 285.128 284.834 284.509 284.267 284.088 283.943 283.809 283.705 283.605 283.486 283.331 283.202 283.104 283.026 282.971 283.0 283.108 283.258 283.393 283.34 283.013 282.582 281.464 280.797 281.22 282.727 284.702 285.804 286.167 286.025 285.466 284.878 284.306 283.76 283.279 283.083 283.095 283.237 283.433 283.528 283.518 283.432 283.3 283.177 283.076 282.985 282.897 282.846 282.819 282.783 282.702 282.625 282.581 282.551 282.489 282.39 282.303 282.26 282.267 282.266 282.191 282.004 281.65 281.291 281.029 280.863 280.757 280.708 280.754 280.931 281.294 281.646 281.844 281.894 283.158 283.058 282.989 282.933 282.895 282.885 282.854 282.785 282.669 282.562 282.487 282.434 282.399 282.391 282.397 282.416 282.453 282.488 282.518 282.541 282.565 282.591 282.608 282.607 282.572 282.538 282.539 282.584 282.688 282.806 282.926 283.074 283.274 283.461 283.605 283.658 283.523 283.267 283.074 283.017 283.136 283.312 283.427 283.467 283.43 283.356 283.297 283.258 283.227 283.206 283.223 283.307 283.482 283.65 283.727 283.713 283.637 283.578 283.575 283.629 283.74 283.857 283.942 283.971 283.899 283.774 283.661 283.59 283.586 283.657 283.734 283.781 283.787 283.766 283.738 283.7 283.67 283.689 283.729 283.776 283.845 283.964 284.09 284.185 284.217 284.202 284.198 284.207 284.22 284.245 284.299 284.38 284.489 284.619 284.777 284.96 285.172 285.399 285.665 285.936 286.166 286.382 286.742 287.279 287.811 288.286 288.442 288.252 287.977 287.877 287.876 287.868 287.818 287.809 287.88 288.011 288.134 288.064 287.859 287.636 287.24 286.972 287.827 288.911 289.278 289.156 288.954 288.842 288.843 288.834 288.815 288.847 288.939 288.933 288.743 288.429 288.09 287.896 287.745 287.576 287.379 287.258 287.153 287.007 286.78 286.586 286.44 286.303 286.15 286.075 286.098 286.174 286.257 286.316 286.374 286.41 286.383 286.369 286.416 286.491 286.552 286.574 286.617 286.693 286.784 286.826 286.864 286.924 286.996 287.017 287.026 287.05 287.094 287.131 287.177 287.249 287.329 287.303 287.198 287.042 286.847 286.595 286.27 285.886 285.486 285.216 285.021 284.873 284.743 284.636 284.532 284.425 284.287 284.165 284.06 283.958 283.858 283.846 283.942 284.122 284.342 284.447 284.233 283.693 282.938 281.638 281.908 282.982 284.882 286.678 287.04 287.117 286.743 286.076 285.507 285.006 284.708 284.732 284.872 285.0 285.036 284.958 284.838 284.697 284.545 284.448 284.383 284.329 284.272 284.275 284.312 284.332 284.28 284.193 284.131 284.085 284.016 283.938 283.908 283.938 284.012 284.016 283.884 283.583 283.091 282.693 282.52 282.543 282.683 282.746 282.782 282.878 283.097 283.291 283.346 283.284 284.327 284.283 284.271 284.244 284.176 284.093 283.989 283.866 283.738 283.673 283.658 283.673 283.704 283.756 283.835 283.934 284.044 284.127 284.165 284.162 284.134 284.132 284.153 284.168 284.135 284.076 284.016 283.971 283.985 284.104 284.327 284.646 285.124 285.596 285.943 286.121 286.05 285.785 285.534 285.385 285.371 285.427 285.447 285.421 285.371 285.339 285.325 285.309 285.289 285.274 285.274 285.296 285.339 285.352 285.3 285.198 285.076 284.997 284.963 284.96 284.994 285.04 285.072 285.078 285.034 284.976 284.931 284.907 284.908 284.922 284.913 284.878 284.817 284.755 284.687 284.614 284.569 284.598 284.647 284.687 284.728 284.81 284.898 284.957 284.965 284.971 285.007 285.058 285.106 285.167 285.268 285.397 285.544 285.664 285.784 285.911 286.061 286.279 286.568 286.871 287.135 287.413 287.867 288.501 288.768 289.464 289.63 289.649 289.411 289.173 289.055 288.992 288.934 288.941 289.012 289.14 289.279 289.21 288.943 288.594 288.411 288.72 288.604 288.958 290.365 290.485 290.372 290.242 290.15 290.039 289.908 289.818 289.815 289.802 289.65 289.378 289.066 288.874 288.729 288.565 288.352 288.181 288.035 287.86 287.589 287.362 287.206 287.079 286.944 286.902 286.957 287.06 287.145 287.182 287.209 287.219 287.205 287.245 287.345 287.456 287.524 287.543 287.586 287.668 287.755 287.811 287.883 287.976 288.062 288.107 288.157 288.229 288.311 288.363 288.418 288.475 288.47 288.362 288.233 288.122 288.0 287.763 287.412 286.988 286.561 286.244 285.994 285.808 285.659 285.568 285.483 285.392 285.265 285.127 284.998 284.883 284.772 284.741 284.846 285.071 285.366 285.512 285.302 284.686 283.745 282.166 282.167 283.26 285.36 287.302 288.383 288.456 288.307 287.667 286.99 286.508 286.455 286.798 287.132 287.255 287.089 286.833 286.618 286.429 286.204 286.016 285.898 285.832 285.791 285.78 285.789 285.785 285.721 285.624 285.552 285.496 285.429 285.394 285.435 285.533 285.619 285.554 285.324 284.941 284.436 284.134 284.136 284.385 284.734 284.859 284.845 284.797 284.757 284.697 284.587 284.451 285.635 285.628 285.617 285.565 285.447 285.318 285.212 285.133 285.082 285.106 285.173 285.254 285.358 285.529 285.762 286.031 286.3 286.484 286.547 286.48 286.32 286.199 286.11 286.029 285.966 285.956 285.94 285.911 285.917 285.977 286.164 286.585 287.301 287.9 288.283 288.477 288.459 288.259 288.023 287.81 287.647 287.54 287.423 287.314 287.251 287.245 287.239 287.213 287.177 287.175 287.169 287.131 287.033 286.924 286.824 286.734 286.65 286.565 286.487 286.417 286.355 286.328 286.321 286.317 286.311 286.281 286.228 286.156 286.063 285.972 285.872 285.757 285.635 285.555 285.497 285.448 285.422 285.444 285.473 285.488 285.501 285.552 285.608 285.651 285.681 285.738 285.823 285.916 286.015 286.146 286.309 286.477 286.617 286.692 286.768 286.872 287.043 287.271 287.544 287.83 288.138 288.509 289.049 289.622 290.156 290.641 290.875 290.923 290.828 290.535 290.265 290.064 289.974 290.001 290.051 290.11 290.184 290.175 290.039 289.823 289.663 289.899 290.232 290.148 290.772 290.996 291.512 291.451 291.33 291.169 290.983 290.804 290.658 290.554 290.402 290.172 289.885 289.688 289.548 289.397 289.176 288.975 288.8 288.61 288.366 288.172 288.041 287.936 287.829 287.809 287.882 288.005 288.105 288.13 288.124 288.106 288.116 288.194 288.296 288.372 288.397 288.444 288.543 288.661 288.764 288.848 288.945 289.042 289.132 289.233 289.365 289.497 289.595 289.64 289.682 289.696 289.607 289.413 289.261 289.172 289.071 288.844 288.542 288.193 287.783 287.408 287.097 286.87 286.725 286.632 286.543 286.449 286.309 286.148 286.024 285.945 285.868 285.831 285.924 286.15 286.436 286.477 286.162 285.497 283.848 282.605 282.972 284.313 286.936 288.378 289.739 290.168 290.227 289.5 288.677 288.38 288.729 289.47 289.953 289.984 289.57 289.092 288.739 288.47 288.151 287.838 287.621 287.501 287.415 287.329 287.264 287.212 287.131 287.022 286.946 286.913 286.9 286.901 286.941 286.985 286.954 286.788 286.54 286.246 285.945 285.869 286.056 286.383 286.651 286.647 286.507 286.316 286.089 285.903 285.77 285.683 287.111 287.033 286.929 286.811 286.674 286.586 286.554 286.56 286.611 286.746 286.935 287.178 287.509 287.91 288.34 288.752 289.135 289.414 289.577 289.609 289.47 289.213 288.901 288.575 288.315 288.271 288.325 288.409 288.455 288.498 288.657 288.973 289.385 289.658 289.8 289.853 289.809 289.668 289.485 289.293 289.113 288.982 288.864 288.781 288.789 288.871 288.921 288.899 288.827 288.79 288.733 288.632 288.485 288.355 288.259 288.18 288.085 287.99 287.896 287.793 287.673 287.581 287.527 287.501 287.488 287.431 287.314 287.156 286.983 286.858 286.73 286.578 286.408 286.315 286.275 286.248 286.208 286.195 286.222 286.281 286.386 286.491 286.566 286.621 286.688 286.789 286.901 287.006 287.126 287.268 287.401 287.497 287.554 287.612 287.729 287.914 288.174 288.416 288.654 288.934 289.369 289.898 290.406 290.789 291.102 291.468 291.796 292.103 292.126 291.745 291.31 290.97 290.84 290.864 290.874 290.855 290.848 290.888 290.927 290.945 290.937 291.02 291.254 291.592 291.033 290.141 291.77 292.214 292.153 291.973 291.775 291.583 291.384 291.214 291.039 290.832 290.59 290.409 290.27 290.125 289.909 289.694 289.509 289.328 289.113 288.94 288.825 288.744 288.681 288.689 288.769 288.897 289.017 289.045 289.012 288.968 288.988 289.097 289.185 289.215 289.228 289.318 289.454 289.596 289.73 289.86 289.985 290.088 290.181 290.316 290.489 290.654 290.776 290.838 290.868 290.85 290.712 290.514 290.35 290.21 290.016 289.767 289.533 289.311 289.004 288.646 288.335 288.117 287.969 287.828 287.703 287.598 287.466 287.312 287.209 287.148 287.051 286.939 286.945 287.11 287.324 287.234 286.891 286.309 284.664 283.65 284.442 285.91 288.197 289.889 291.499 291.982 291.859 291.393 290.708 290.516 290.864 291.54 291.894 291.789 291.249 290.678 290.278 290.007 289.72 289.403 289.154 288.995 288.884 288.778 288.71 288.671 288.582 288.438 288.366 288.369 288.406 288.402 288.378 288.318 288.176 287.998 287.85 287.729 287.634 287.688 287.889 288.092 288.132 287.975 287.778 287.567 287.317 287.139 287.076 287.095 288.486 288.384 288.274 288.174 288.089 288.077 288.088 288.089 288.123 288.331 288.696 289.142 289.663 290.163 290.637 291.083 291.526 291.869 292.088 292.171 292.079 291.851 291.546 291.176 290.794 290.631 290.621 290.661 290.661 290.621 290.599 290.596 290.602 290.595 290.573 290.547 290.514 290.453 290.352 290.22 290.092 290.051 290.043 290.06 290.132 290.234 290.274 290.233 290.138 290.079 290.019 289.932 289.793 289.656 289.52 289.385 289.236 289.134 289.066 288.996 288.898 288.781 288.674 288.58 288.481 288.341 288.154 287.944 287.748 287.631 287.513 287.361 287.171 287.086 287.071 287.072 287.051 287.059 287.138 287.273 287.445 287.553 287.61 287.663 287.785 287.973 288.145 288.285 288.386 288.445 288.465 288.454 288.454 288.52 288.657 288.87 289.157 289.399 289.683 290.155 290.931 291.765 292.261 292.263 291.709 292.091 292.526 293.003 293.248 292.893 292.345 291.898 291.706 291.675 291.635 291.585 291.536 291.527 291.581 291.677 291.747 291.802 291.992 292.341 292.412 290.456 291.43 292.642 292.69 292.481 292.263 292.082 291.928 291.766 291.59 291.421 291.258 291.125 290.993 290.838 290.618 290.411 290.236 290.072 289.873 289.699 289.588 289.53 289.526 289.559 289.616 289.699 289.788 289.811 289.765 289.717 289.776 289.943 290.068 290.123 290.156 290.241 290.344 290.438 290.557 290.727 290.906 291.057 291.19 291.349 291.533 291.702 291.832 291.917 291.954 291.916 291.765 291.585 291.408 291.193 290.889 290.604 290.39 290.225 290.02 289.775 289.563 289.394 289.226 289.039 288.881 288.763 288.626 288.458 288.322 288.205 288.029 287.861 287.83 287.966 288.084 287.892 287.599 287.226 286.422 285.372 286.331 287.981 289.394 291.218 292.417 292.768 292.716 292.459 292.104 292.362 292.584 292.884 293.066 292.965 292.487 291.867 291.406 291.129 290.927 290.706 290.517 290.393 290.326 290.268 290.241 290.226 290.139 289.993 289.931 289.942 289.93 289.846 289.745 289.641 289.51 289.423 289.395 289.38 289.317 289.3 289.359 289.401 289.304 289.134 289.004 288.872 288.641 288.472 288.437 288.479 289.789 289.691 289.626 289.604 289.65 289.731 289.751 289.691 289.658 289.9 290.321 290.806 291.339 291.804 292.232 292.657 293.145 293.59 293.905 294.062 294.022 293.803 293.438 292.968 292.453 292.142 291.974 291.871 291.761 291.65 291.538 291.434 291.355 291.316 291.283 291.265 291.268 291.287 291.287 291.257 291.237 291.269 291.313 291.358 291.422 291.472 291.482 291.446 291.395 291.365 291.322 291.233 291.059 290.867 290.67 290.468 290.27 290.151 290.085 290.037 289.962 289.839 289.693 289.535 289.356 289.171 288.977 288.782 288.605 288.477 288.349 288.206 288.043 287.963 287.941 287.947 287.979 288.081 288.232 288.399 288.55 288.646 288.727 288.831 289.003 289.205 289.383 289.5 289.539 289.53 289.503 289.499 289.54 289.593 289.7 289.937 290.319 290.708 291.208 291.906 293.677 295.25 295.187 294.218 292.117 291.623 291.804 293.476 294.0 293.918 293.52 293.058 292.691 292.48 292.352 292.289 292.257 292.193 292.171 292.209 292.296 292.474 292.832 293.32 292.841 293.483 293.545 293.053 293.052 292.835 292.613 292.46 292.363 292.257 292.134 292.025 291.937 291.845 291.704 291.52 291.305 291.142 291.016 290.901 290.753 290.598 290.474 290.395 290.375 290.391 290.406 290.431 290.469 290.497 290.511 290.547 290.68 290.883 291.036 291.126 291.187 291.256 291.311 291.359 291.463 291.649 291.848 292.03 292.217 292.412 292.571 292.668 292.735 292.804 292.822 292.773 292.657 292.525 292.35 292.111 291.806 291.539 291.31 291.121 290.952 290.815 290.68 290.531 290.352 290.177 290.013 289.848 289.634 289.414 289.239 289.091 288.9 288.749 288.728 288.803 288.762 288.48 288.318 288.349 288.471 287.1 287.31 288.49 290.003 292.122 293.212 293.269 293.434 293.228 293.142 293.148 294.175 294.221 294.198 294.089 293.783 293.233 292.722 292.353 292.115 291.945 291.828 291.793 291.804 291.754 291.695 291.646 291.552 291.442 291.413 291.423 291.367 291.218 291.11 291.059 291.004 290.947 290.944 290.951 290.867 290.772 290.737 290.705 290.582 290.438 290.346 290.265 290.105 289.947 289.876 289.854 290.915 290.751 290.662 290.675 290.813 290.97 291.016 290.962 290.956 291.229 291.624 292.028 292.419 292.738 293.013 293.264 293.654 294.166 294.634 295.001 295.226 295.133 294.718 294.07 293.344 292.918 292.672 292.503 292.336 292.209 292.136 292.126 292.165 292.193 292.189 292.164 292.148 292.206 292.291 292.363 292.407 292.424 292.432 292.441 292.464 292.488 292.504 292.516 292.539 292.527 292.464 292.337 292.131 291.896 291.656 291.429 291.215 291.059 290.948 290.857 290.745 290.592 290.428 290.271 290.117 289.977 289.846 289.712 289.557 289.392 289.239 289.1 288.97 288.877 288.8 288.742 288.774 288.963 289.198 289.437 289.721 290.079 290.408 290.488 290.583 290.781 290.765 290.714 290.603 290.475 290.388 290.38 290.423 290.465 290.655 291.08 291.691 292.451 293.662 294.758 296.127 296.691 296.7 295.139 293.727 292.642 292.196 293.405 294.295 294.535 294.409 294.06 293.578 293.21 293.002 292.925 292.93 292.912 292.916 292.959 293.057 293.279 293.664 294.127 293.862 294.174 293.824 293.519 293.34 293.178 293.013 292.896 292.848 292.793 292.704 292.617 292.55 292.469 292.329 292.14 291.931 291.809 291.732 291.664 291.576 291.446 291.305 291.179 291.096 291.087 291.082 291.071 291.071 291.142 291.249 291.385 291.573 291.754 291.887 291.978 292.071 292.167 292.235 292.298 292.416 292.584 292.745 292.902 293.115 293.322 293.436 293.465 293.472 293.48 293.442 293.365 293.283 293.199 293.057 292.858 292.627 292.412 292.187 291.977 291.816 291.696 291.539 291.357 291.205 291.098 290.939 290.712 290.423 290.193 290.021 289.878 289.714 289.564 289.46 289.364 289.167 288.973 289.069 289.381 289.5 288.603 287.996 288.56 290.025 292.059 293.536 293.562 293.817 293.739 293.82 293.979 295.155 295.312 295.264 295.073 294.902 294.524 294.01 293.552 293.221 293.016 292.912 292.914 292.94 292.83 292.689 292.57 292.448 292.365 292.383 292.45 292.457 292.385 292.37 292.401 292.342 292.205 292.14 292.144 292.127 292.08 292.072 292.056 291.938 291.77 291.636 291.538 291.426 291.302 291.201 291.089 291.908 291.714 291.596 291.601 291.788 291.96 291.969 291.904 291.987 292.304 292.618 292.88 293.092 293.236 293.348 293.115 293.329 293.658 294.211 294.758 295.453 295.78 295.611 294.975 294.05 293.503 293.245 293.113 292.984 292.856 292.833 292.921 293.065 293.126 293.142 293.144 293.155 293.225 293.322 293.405 293.443 293.441 293.426 293.398 293.378 293.376 293.399 293.437 293.48 293.458 293.381 293.252 293.061 292.828 292.561 292.303 292.091 291.942 291.811 291.679 291.511 291.32 291.147 291.014 290.912 290.811 290.714 290.609 290.444 290.245 290.078 289.945 289.824 289.733 289.646 289.565 289.594 289.851 290.182 290.553 291.12 291.87 292.376 293.22 293.547 292.825 292.423 292.217 291.859 291.656 291.351 291.188 291.149 291.263 291.668 292.326 293.321 296.038 296.898 297.153 297.362 297.102 296.663 296.24 295.009 293.766 293.493 293.084 294.318 294.8 294.958 294.8 294.375 294.016 293.802 293.7 293.691 293.715 293.753 293.812 293.879 293.985 294.188 294.428 294.519 294.301 294.026 293.809 293.672 293.555 293.467 293.43 293.445 293.401 293.301 293.194 293.119 293.063 292.954 292.802 292.612 292.49 292.413 292.353 292.279 292.17 292.048 291.935 291.859 291.83 291.8 291.759 291.756 291.874 292.048 292.22 292.379 292.528 292.663 292.784 292.927 293.048 293.128 293.19 293.278 293.399 293.526 293.671 293.887 294.064 294.154 294.174 294.161 294.123 294.034 293.921 293.836 293.772 293.66 293.5 293.306 293.11 292.891 292.686 292.542 292.417 292.232 292.039 291.927 291.861 291.693 291.434 291.152 290.947 290.746 290.551 290.377 290.2 289.97 289.708 289.485 289.498 289.774 290.14 290.303 289.962 289.297 289.001 290.339 292.63 293.365 293.577 294.103 294.349 294.634 294.787 295.43 295.49 295.736 295.719 295.648 295.54 295.142 294.681 294.26 294.02 293.929 293.925 293.845 293.623 293.437 293.322 293.224 293.153 293.185 293.298 293.42 293.46 293.516 293.582 293.542 293.4 293.33 293.364 293.434 293.435 293.409 293.346 293.2 293.027 292.873 292.736 292.595 292.447 292.294 292.122 292.828 292.675 292.568 292.564 292.711 292.753 292.665 292.61 292.79 293.024 293.168 293.327 293.569 293.757 293.825 292.839 292.082 291.927 292.047 292.629 294.294 295.309 295.861 295.748 294.889 294.157 293.853 293.791 293.781 293.694 293.689 293.791 293.946 294.019 294.089 294.174 294.248 294.291 294.329 294.351 294.358 294.369 294.369 294.317 294.228 294.212 294.236 294.255 294.241 294.19 294.126 294.039 293.903 293.683 293.41 293.143 292.937 292.8 292.663 292.526 292.354 292.16 291.996 291.88 291.778 291.653 291.528 291.393 291.183 290.965 290.798 290.656 290.507 290.428 290.401 290.398 290.497 290.815 291.216 291.69 292.45 293.396 294.407 295.35 295.879 295.332 294.966 294.672 294.242 293.171 292.588 292.474 292.556 292.88 293.449 294.207 296.547 297.088 297.865 297.494 297.343 296.736 296.699 296.482 295.958 295.444 294.224 292.92 293.736 294.741 295.211 295.292 295.033 294.777 294.599 294.474 294.406 294.399 294.389 294.372 294.36 294.381 294.445 294.513 294.507 294.411 294.291 294.164 294.014 293.9 293.877 293.928 293.981 293.94 293.847 293.743 293.656 293.607 293.544 293.455 293.312 293.183 293.091 293.016 292.929 292.83 292.742 292.683 292.647 292.593 292.527 292.476 292.523 292.682 292.856 292.997 293.112 293.25 293.411 293.582 293.765 293.887 293.949 293.964 293.979 294.066 294.22 294.394 294.568 294.66 294.706 294.717 294.703 294.657 294.563 294.437 294.312 294.234 294.149 294.012 293.79 293.566 293.361 293.183 293.036 292.907 292.755 292.6 292.481 292.368 292.193 291.985 291.782 291.552 291.265 290.997 290.83 290.654 290.354 290.026 289.874 289.971 290.178 290.511 290.857 290.693 290.28 289.736 290.805 293.627 294.424 294.502 294.828 295.257 295.755 295.752 295.627 295.472 295.206 295.815 296.029 296.173 295.995 295.621 295.182 294.95 294.866 294.835 294.676 294.384 294.173 294.09 294.085 294.091 294.149 294.252 294.379 294.46 294.521 294.574 294.603 294.607 294.637 294.696 294.755 294.712 294.579 294.39 294.184 294.031 293.887 293.734 293.564 293.38 293.185 292.998 293.695 293.53 293.384 293.303 293.288 293.202 293.121 293.178 293.384 293.357 293.305 293.467 293.847 294.819 294.134 292.653 291.494 290.92 290.612 290.628 291.439 293.859 295.371 296.113 295.833 295.053 294.663 294.624 294.728 294.727 294.738 294.826 294.954 295.017 295.088 295.161 295.188 295.186 295.196 295.201 295.175 295.174 295.188 295.155 295.07 295.039 295.042 295.015 294.951 294.909 294.865 294.789 294.652 294.44 294.187 293.956 293.785 293.648 293.501 293.355 293.182 293.003 292.855 292.744 292.624 292.461 292.291 292.107 291.85 291.623 291.458 291.299 291.098 291.03 291.086 291.188 291.372 291.729 292.145 292.645 293.52 294.588 295.832 297.739 297.473 296.747 296.317 296.255 296.114 295.691 295.377 295.139 295.478 296.016 296.81 297.99 298.557 298.072 298.063 297.965 297.74 298.44 297.919 297.379 296.941 296.702 294.831 293.268 292.586 294.208 295.309 295.605 295.465 295.259 295.108 294.999 294.941 294.925 294.875 294.805 294.771 294.811 294.846 294.833 294.754 294.69 294.637 294.559 294.411 294.299 294.288 294.351 294.418 294.401 294.36 294.311 294.246 294.196 294.147 294.089 293.987 293.878 293.786 293.703 293.599 293.484 293.391 293.33 293.272 293.192 293.13 293.121 293.22 293.383 293.539 293.667 293.794 293.948 294.12 294.299 294.48 294.598 294.66 294.678 294.672 294.764 294.942 295.114 295.198 295.177 295.153 295.119 295.072 295.01 294.94 294.837 294.687 294.597 294.535 294.418 294.179 293.968 293.82 293.675 293.481 293.333 293.207 293.065 292.866 292.681 292.529 292.405 292.241 291.969 291.651 291.391 291.234 290.992 290.609 290.239 290.121 290.222 290.4 290.816 291.542 291.688 291.236 290.268 291.452 294.26 295.587 295.74 295.936 296.257 296.625 296.429 296.019 295.706 295.424 295.428 296.312 296.451 296.565 296.413 296.039 295.786 295.674 295.633 295.508 295.241 295.008 294.89 294.898 294.993 295.089 295.162 295.212 295.277 295.343 295.402 295.502 295.62 295.69 295.709 295.706 295.635 295.449 295.2 294.949 294.779 294.626 294.475 294.335 294.189 294.019 293.848 294.365 294.141 293.932 293.764 293.612 293.482 293.473 293.593 293.593 293.257 293.262 293.772 294.679 295.819 294.169 292.423 291.648 291.029 290.338 289.465 289.612 291.196 294.491 295.914 296.563 296.188 295.78 295.694 295.815 295.885 295.935 296.018 296.09 296.085 296.057 296.023 295.95 295.903 295.911 295.926 295.881 295.854 295.871 295.888 295.872 295.862 295.84 295.781 295.71 295.683 295.625 295.504 295.306 295.101 294.9 294.738 294.629 294.516 294.376 294.22 294.022 293.807 293.632 293.499 293.346 293.141 292.934 292.711 292.411 292.168 292.003 291.848 291.688 291.748 291.936 292.114 292.295 292.605 292.979 293.514 294.622 295.96 297.72 299.237 298.964 298.358 297.885 297.651 297.378 297.106 297.138 297.38 297.837 298.496 299.101 299.914 300.125 299.885 300.145 299.689 299.093 298.982 298.235 297.897 297.911 297.143 295.595 293.818 292.723 294.152 295.505 295.883 295.789 295.623 295.538 295.477 295.451 295.451 295.406 295.339 295.312 295.343 295.332 295.272 295.194 295.155 295.134 295.095 294.968 294.832 294.772 294.784 294.855 294.911 294.959 294.987 294.971 294.897 294.808 294.724 294.651 294.576 294.487 294.391 294.276 294.157 294.051 293.96 293.868 293.799 293.79 293.837 293.939 294.058 294.18 294.315 294.491 294.675 294.839 294.999 295.158 295.255 295.303 295.316 295.341 295.456 295.602 295.703 295.684 295.599 295.543 295.488 295.392 295.312 295.265 295.197 295.064 294.972 294.898 294.756 294.501 294.348 294.261 294.135 293.905 293.733 293.594 293.42 293.16 292.968 292.837 292.715 292.518 292.255 292.003 291.784 291.529 291.108 290.646 290.322 290.276 290.423 290.762 291.499 292.637 292.73 291.723 290.242 291.275 294.525 296.709 297.103 297.236 297.151 297.195 296.934 296.532 296.072 295.586 295.19 295.787 296.333 296.845 297.148 296.96 296.674 296.5 296.402 296.288 296.094 295.91 295.771 295.733 295.858 295.981 296.014 295.956 295.992 296.083 296.176 296.281 296.368 296.385 296.33 296.245 296.138 295.964 295.753 295.539 295.353 295.167 295.01 294.923 294.852 294.727 294.563 294.722 294.479 294.26 294.067 293.876 293.75 293.726 293.699 293.371 293.161 293.727 294.549 296.108 295.672 293.976 292.742 292.338 292.084 290.974 289.811 289.398 290.224 292.58 295.759 296.949 297.102 296.838 296.683 296.776 296.905 297.008 297.09 297.09 296.971 296.823 296.691 296.59 296.554 296.547 296.537 296.484 296.447 296.485 296.567 296.618 296.607 296.559 296.48 296.395 296.345 296.244 296.073 295.86 295.694 295.559 295.455 295.368 295.26 295.124 294.969 294.744 294.469 294.239 294.074 293.897 293.671 293.442 293.196 292.881 292.644 292.501 292.405 292.397 292.602 292.828 292.967 293.09 293.36 293.748 294.426 295.881 297.517 300.218 301.341 300.765 299.725 299.207 298.666 298.386 298.058 297.828 297.742 298.05 298.605 299.395 300.416 301.277 300.437 300.757 300.716 300.074 298.748 298.404 297.868 297.896 297.472 296.308 294.872 293.44 294.694 295.958 296.243 296.149 296.096 296.1 296.065 296.015 295.999 295.952 295.889 295.852 295.814 295.762 295.735 295.753 295.77 295.754 295.699 295.561 295.37 295.249 295.236 295.355 295.492 295.574 295.61 295.601 295.495 295.355 295.235 295.179 295.136 295.07 294.993 294.899 294.793 294.693 294.605 294.528 294.507 294.537 294.588 294.642 294.728 294.844 294.984 295.169 295.352 295.523 295.701 295.876 295.929 295.905 295.866 295.876 295.947 296.023 296.059 296.01 295.913 295.839 295.765 295.66 295.593 295.555 295.5 295.39 295.283 295.164 294.992 294.758 294.621 294.513 294.362 294.14 293.969 293.805 293.597 293.352 293.218 293.087 292.907 292.665 292.454 292.241 291.977 291.559 291.055 290.672 290.511 290.578 290.753 291.27 292.302 293.538 293.311 291.288 289.704 290.082 292.939 296.12 297.915 298.01 297.894 297.677 297.636 297.323 296.535 295.522 294.599 294.651 296.023 297.019 297.632 297.699 297.477 297.29 297.113 296.902 296.738 296.654 296.617 296.601 296.665 296.733 296.717 296.599 296.572 296.628 296.702 296.755 296.781 296.779 296.736 296.614 296.42 296.208 296.028 295.877 295.721 295.567 295.443 295.37 295.297 295.165 294.972 294.922 294.665 294.425 294.202 293.997 293.868 293.755 293.561 293.321 293.921 295.256 296.739 297.163 294.862 293.661 293.542 293.913 293.663 292.468 290.816 290.314 290.413 292.284 294.994 297.33 297.813 297.706 297.521 297.644 297.87 298.009 298.055 297.944 297.703 297.485 297.328 297.271 297.243 297.174 297.113 297.106 297.151 297.234 297.318 297.346 297.29 297.196 297.086 296.98 296.886 296.76 296.609 296.451 296.337 296.249 296.171 296.061 295.905 295.73 295.55 295.317 295.048 294.817 294.641 294.45 294.214 293.977 293.735 293.463 293.3 293.229 293.204 293.259 293.447 293.564 293.569 293.639 293.991 294.544 295.487 297.336 299.488 302.718 302.574 301.31 300.365 299.84 299.49 299.18 299.054 298.742 298.497 298.497 299.018 299.939 300.8 301.742 301.145 301.801 302.357 301.864 300.388 299.006 298.248 297.363 296.711 296.248 295.123 294.564 295.57 296.576 296.709 296.624 296.686 296.723 296.692 296.644 296.627 296.576 296.504 296.449 296.376 296.316 296.329 296.394 296.375 296.303 296.223 296.103 295.935 295.825 295.823 295.965 296.091 296.149 296.164 296.131 296.006 295.848 295.718 295.659 295.623 295.576 295.531 295.478 295.386 295.293 295.22 295.168 295.167 295.192 295.22 295.269 295.393 295.534 295.667 295.836 296.037 296.23 296.416 296.582 296.59 296.511 296.428 296.378 296.361 296.36 296.365 296.341 296.236 296.125 296.024 295.932 295.881 295.829 295.761 295.652 295.526 295.38 295.217 295.036 294.867 294.684 294.49 294.296 294.128 293.932 293.712 293.518 293.42 293.279 293.075 292.851 292.661 292.374 291.998 291.535 291.092 290.806 290.767 290.925 291.122 291.748 292.917 294.048 293.298 291.551 289.181 288.601 290.86 294.786 297.872 298.401 298.291 298.083 298.127 297.926 296.964 295.605 294.561 294.309 295.925 297.097 297.819 298.076 297.993 297.877 297.742 297.534 297.361 297.292 297.299 297.299 297.273 297.262 297.227 297.126 297.042 297.02 297.033 297.044 297.03 297.024 297.007 296.901 296.669 296.44 296.272 296.151 296.045 295.959 295.889 295.79 295.634 295.437 295.201 294.95 294.689 294.428 294.187 294.0 293.853 293.657 293.501 293.766 295.125 296.809 298.022 296.832 293.958 293.41 294.366 295.411 295.065 294.142 293.428 291.929 291.978 293.657 295.751 297.877 298.412 298.432 298.265 298.464 298.779 298.881 298.782 298.452 298.14 297.959 297.871 297.888 297.862 297.756 297.692 297.781 297.921 298.01 298.03 297.98 297.852 297.706 297.563 297.428 297.321 297.23 297.156 297.081 297.005 296.929 296.846 296.7 296.498 296.276 296.055 295.825 295.601 295.397 295.21 294.976 294.716 294.476 294.256 294.054 293.997 294.023 294.053 294.069 294.111 294.076 294.009 294.169 294.704 295.513 296.798 298.784 302.034 304.159 303.343 301.738 300.908 300.498 300.892 300.524 300.789 300.969 300.915 300.663 300.276 300.65 301.333 302.175 301.863 302.396 303.298 302.829 301.888 299.949 298.142 297.003 296.495 296.078 295.394 295.232 296.453 297.253 297.253 297.191 297.302 297.32 297.265 297.223 297.226 297.193 297.118 297.032 296.953 296.908 296.925 296.949 296.876 296.791 296.734 296.687 296.609 296.552 296.534 296.565 296.604 296.639 296.665 296.633 296.514 296.379 296.267 296.187 296.095 296.025 295.99 295.956 295.872 295.799 295.759 295.744 295.752 295.771 295.792 295.857 296.004 296.148 296.28 296.488 296.758 296.961 297.081 297.143 297.129 297.062 296.971 296.862 296.748 296.674 296.654 296.639 296.555 296.437 296.322 296.246 296.193 296.104 295.989 295.87 295.745 295.592 295.434 295.253 295.033 294.808 294.609 294.425 294.243 294.054 293.874 293.713 293.599 293.449 293.259 293.071 292.829 292.442 292.016 291.627 291.219 290.916 290.92 291.234 291.505 292.151 293.343 294.45 293.524 291.506 288.206 287.202 288.946 293.323 297.502 298.546 298.612 298.539 298.632 298.217 297.287 296.028 295.078 294.667 295.698 297.14 297.825 298.21 298.218 298.159 298.155 298.177 298.045 297.893 297.818 297.815 297.721 297.614 297.543 297.493 297.41 297.353 297.341 297.339 297.266 297.182 297.109 296.999 296.807 296.625 296.491 296.387 296.316 296.249 296.145 295.939 295.703 295.468 295.222 294.888 294.65 294.403 294.209 294.101 293.912 293.703 293.733 294.447 295.989 297.403 297.721 295.79 293.382 293.63 295.122 296.73 296.622 295.949 295.138 294.107 294.742 295.977 297.294 297.986 298.666 298.965 298.848 299.144 299.574 299.567 298.991 298.002 297.847 297.985 298.067 298.28 298.38 298.361 298.332 298.423 298.551 298.594 298.549 298.453 298.298 298.14 297.997 297.867 297.792 297.762 297.751 297.701 297.6 297.49 297.349 297.154 296.949 296.746 296.535 296.312 296.118 295.913 295.689 295.417 295.162 294.949 294.775 294.651 294.667 294.731 294.74 294.617 294.514 294.482 294.573 294.974 295.67 296.654 298.169 300.137 303.917 305.578 304.435 303.236 302.213 301.834 302.139 302.29 302.735 302.953 302.815 302.204 301.336 300.808 301.134 301.623 301.883 302.663 302.868 302.893 302.01 301.885 300.253 298.086 296.744 296.183 296.142 296.924 297.693 297.919 297.801 297.798 297.906 297.88 297.787 297.712 297.688 297.63 297.537 297.429 297.355 297.333 297.358 297.384 297.357 297.337 297.332 297.306 297.257 297.215 297.145 297.029 296.998 297.044 297.105 297.103 297.017 296.925 296.838 296.736 296.604 296.506 296.452 296.403 296.323 296.272 296.262 296.275 296.306 296.362 296.419 296.5 296.641 296.777 296.922 297.165 297.449 297.619 297.67 297.624 297.568 297.498 297.41 297.275 297.13 297.037 296.989 296.934 296.86 296.759 296.649 296.557 296.457 296.319 296.183 296.085 295.971 295.81 295.625 295.382 295.11 294.889 294.716 294.526 294.34 294.22 294.122 293.968 293.805 293.639 293.44 293.205 292.921 292.542 292.16 291.841 291.449 291.164 291.251 291.683 291.842 292.323 293.486 294.764 293.878 291.709 287.871 286.351 287.712 292.202 297.211 298.547 298.859 298.771 298.817 298.207 297.535 296.767 295.852 295.341 295.509 296.469 297.823 298.163 298.133 298.105 298.2 298.505 298.544 298.382 298.222 298.193 298.098 297.922 297.772 297.71 297.663 297.605 297.576 297.559 297.456 297.324 297.205 297.076 296.915 296.781 296.68 296.592 296.504 296.375 296.167 295.855 295.6 295.373 295.139 294.933 294.712 294.488 294.351 294.288 294.045 293.912 294.235 295.272 296.366 297.127 297.123 295.653 293.787 294.536 296.287 297.661 297.513 296.855 297.053 296.329 297.115 298.269 298.747 298.484 298.972 299.36 299.257 299.619 300.175 300.111 298.877 297.317 297.057 297.522 297.932 298.513 298.847 298.96 298.925 298.898 298.95 298.959 298.906 298.807 298.709 298.61 298.523 298.441 298.368 298.308 298.248 298.143 298.019 297.886 297.708 297.463 297.277 297.115 296.929 296.709 296.531 296.327 296.096 295.854 295.667 295.518 295.412 295.363 295.388 295.383 295.266 294.985 294.835 294.924 295.239 295.869 296.673 297.723 299.236 301.366 302.815 303.995 303.629 303.235 302.824 303.126 303.41 303.719 303.716 303.496 303.035 302.672 301.904 301.257 301.573 302.517 302.811 302.848 302.778 303.107 303.792 303.316 301.731 299.029 298.104 297.465 297.278 298.376 298.591 298.488 298.334 298.405 298.453 298.393 298.309 298.235 298.157 298.026 297.884 297.811 297.766 297.773 297.814 297.865 297.891 297.919 297.932 297.871 297.793 297.733 297.639 297.487 297.438 297.489 297.57 297.583 297.523 297.447 297.361 297.269 297.161 297.061 296.975 296.878 296.781 296.737 296.739 296.763 296.825 296.927 297.047 297.2 297.36 297.506 297.649 297.846 298.029 298.12 298.142 298.107 298.025 297.928 297.836 297.719 297.64 297.59 297.529 297.398 297.274 297.146 297.009 296.874 296.732 296.583 296.45 296.354 296.227 296.046 295.842 295.576 295.3 295.101 294.952 294.756 294.595 294.525 294.439 294.221 294.028 293.854 293.613 293.31 293.086 292.797 292.445 292.119 291.85 291.713 291.851 292.149 292.096 292.508 293.77 295.22 294.288 292.31 287.898 285.871 286.479 290.936 296.236 298.451 298.923 298.843 298.696 298.247 297.904 297.497 296.895 296.417 296.179 296.171 296.507 298.128 298.397 298.041 298.094 298.541 298.781 298.723 298.533 298.416 298.34 298.186 298.025 297.943 297.891 297.8 297.706 297.625 297.536 297.444 297.36 297.246 297.096 296.971 296.863 296.751 296.64 296.469 296.215 295.9 295.68 295.449 295.186 295.068 294.879 294.687 294.581 294.513 294.269 294.346 295.084 296.254 296.505 296.293 295.963 295.739 294.871 295.631 297.065 298.125 298.281 297.633 297.259 297.341 297.948 299.03 298.913 298.885 299.11 299.669 299.682 300.058 300.599 300.535 299.204 297.277 296.261 296.675 297.749 298.72 299.233 299.414 299.367 299.269 299.279 299.268 299.202 299.103 299.058 299.028 298.999 298.948 298.847 298.738 298.63 298.487 298.352 298.206 298.01 297.743 297.556 297.396 297.217 297.036 296.881 296.696 296.497 296.333 296.233 296.143 296.077 296.035 295.966 295.815 295.575 295.273 295.222 295.438 295.877 296.615 297.525 298.595 299.879 301.421 302.219 302.037 302.1 302.236 301.653 302.296 303.247 302.987 302.355 301.835 301.754 302.795 302.734 302.242 302.438 302.936 303.344 303.819 301.998 302.723 303.007 302.698 300.691 299.322 298.32 298.201 298.691 299.125 299.154 299.024 298.95 298.967 298.894 298.808 298.77 298.765 298.695 298.58 298.414 298.311 298.3 298.332 298.367 298.39 298.398 298.409 298.414 298.395 298.354 298.307 298.232 298.101 298.04 298.059 298.104 298.107 298.059 297.972 297.866 297.761 297.68 297.594 297.503 297.405 297.315 297.273 297.285 297.339 297.412 297.52 297.66 297.856 298.046 298.188 298.304 298.416 298.48 298.516 298.556 298.568 298.503 298.411 298.323 298.24 298.197 298.163 298.085 297.913 297.742 297.571 297.393 297.219 297.075 296.941 296.816 296.686 296.499 296.282 296.068 295.84 295.617 295.442 295.295 295.098 294.936 294.822 294.664 294.392 294.214 294.043 293.78 293.474 293.33 293.09 292.724 292.432 292.363 292.347 292.43 292.59 292.718 293.464 294.889 296.077 294.682 292.562 287.628 285.394 285.86 289.972 294.991 298.117 298.885 298.697 298.623 298.29 298.166 297.813 297.535 297.384 296.994 296.353 295.846 296.192 297.764 298.77 298.329 298.545 298.945 299.017 298.837 298.558 298.469 298.398 298.301 298.188 298.09 297.964 297.83 297.699 297.599 297.518 297.446 297.348 297.226 297.11 296.987 296.831 296.702 296.545 296.325 296.064 295.853 295.59 295.297 295.275 295.159 295.01 294.933 294.941 294.904 295.316 296.379 297.369 297.018 295.337 295.26 295.631 294.951 294.759 296.297 297.027 297.674 298.221 297.608 296.727 297.521 298.244 298.705 298.486 299.138 299.723 300.025 300.456 300.785 300.684 299.946 297.64 296.111 296.046 297.856 298.942 299.541 299.721 299.68 299.577 299.561 299.511 299.41 299.334 299.319 299.284 299.235 299.174 299.083 298.993 298.903 298.772 298.624 298.459 298.26 298.016 297.822 297.651 297.496 297.39 297.29 297.142 296.985 296.882 296.82 296.732 296.624 296.472 296.245 295.981 295.725 295.571 295.717 296.055 296.541 297.279 298.205 299.204 300.202 301.144 301.7 301.903 301.339 300.786 300.326 300.299 300.681 301.301 301.304 301.182 301.404 302.602 303.466 303.334 303.361 303.626 303.843 303.499 301.956 301.296 300.907 300.323 299.026 298.078 298.231 299.072 299.493 299.591 299.525 299.455 299.438 299.387 299.241 299.142 299.122 299.118 299.062 298.977 298.876 298.801 298.814 298.851 298.873 298.869 298.853 298.857 298.894 298.935 298.907 298.866 298.823 298.755 298.685 298.648 298.637 298.617 298.583 298.504 298.384 298.248 298.18 298.12 298.067 298.021 297.969 297.945 297.962 298.022 298.096 298.189 298.318 298.515 298.677 298.759 298.8 298.864 298.904 298.928 298.958 298.989 298.957 298.888 298.805 298.695 298.618 298.553 298.456 298.293 298.114 297.925 297.739 297.582 297.44 297.289 297.142 296.98 296.762 296.518 296.294 296.086 295.893 295.714 295.542 295.328 295.127 294.937 294.731 294.509 294.358 294.183 293.941 293.692 293.532 293.281 292.984 292.885 292.999 293.078 293.217 293.629 294.176 294.968 295.958 296.312 294.417 292.193 287.183 285.271 284.898 289.363 294.467 297.684 298.566 298.566 298.663 298.11 298.066 297.735 297.518 297.384 297.082 296.263 295.513 295.721 297.096 299.087 298.753 298.562 298.97 299.204 299.122 298.8 298.69 298.644 298.54 298.369 298.228 298.094 297.964 297.833 297.716 297.605 297.503 297.377 297.246 297.138 297.022 296.868 296.752 296.623 296.435 296.178 295.938 295.674 295.423 295.64 295.59 295.504 295.475 295.608 295.894 296.602 297.712 298.336 297.476 295.064 294.887 295.49 295.075 294.9 295.5 296.153 296.923 297.618 297.756 297.665 297.584 297.977 298.177 297.98 298.209 299.306 299.972 300.527 300.735 300.643 300.128 298.022 296.637 296.25 297.915 299.109 299.745 299.93 299.875 299.74 299.675 299.59 299.501 299.491 299.495 299.448 299.382 299.314 299.238 299.17 299.095 298.973 298.827 298.669 298.493 298.283 298.103 297.967 297.88 297.837 297.765 297.663 297.56 297.474 297.396 297.286 297.124 296.863 296.578 296.337 296.169 296.165 296.426 296.814 297.295 297.974 298.774 299.567 300.276 300.846 301.169 301.269 301.199 301.06 300.935 300.638 299.721 299.91 300.342 300.542 300.89 301.591 303.099 303.515 303.799 304.258 304.01 303.295 301.184 300.442 299.454 298.632 298.157 297.955 299.248 299.749 299.932 299.868 299.789 299.785 299.815 299.769 299.657 299.59 299.537 299.413 299.324 299.287 299.258 299.226 299.259 299.289 299.298 299.315 299.318 299.273 299.334 299.391 299.334 299.287 299.282 299.291 299.256 299.2 299.143 299.095 299.075 299.025 298.933 298.824 298.77 298.733 298.691 298.648 298.617 298.619 298.655 298.716 298.789 298.88 298.992 299.15 299.244 299.256 299.242 299.28 299.329 299.357 299.368 299.367 299.342 299.286 299.193 299.052 298.964 298.892 298.795 298.639 298.474 298.302 298.129 297.962 297.781 297.594 297.424 297.242 297.026 296.791 296.549 296.293 296.076 295.869 295.659 295.428 295.208 294.995 294.819 294.69 294.532 294.343 294.172 294.009 293.802 293.617 293.565 293.751 293.945 294.129 294.464 295.062 295.376 295.446 295.42 294.882 292.897 290.82 286.058 283.915 285.159 290.039 294.656 297.36 298.144 298.306 298.518 298.507 297.943 297.473 297.163 296.827 296.469 296.065 296.086 296.538 297.828 299.259 299.171 298.612 298.954 299.262 299.256 299.013 298.93 298.843 298.673 298.473 298.336 298.192 298.041 297.906 297.8 297.712 297.627 297.49 297.319 297.186 297.078 296.955 296.854 296.75 296.589 296.34 296.12 295.918 295.74 296.154 296.162 296.12 296.07 296.25 296.828 297.705 298.673 298.941 297.182 294.966 294.199 294.484 294.805 294.913 295.35 295.683 295.838 296.079 297.21 297.743 298.089 297.763 297.65 297.983 298.065 298.322 299.16 300.159 300.5 300.575 300.326 298.466 297.521 296.97 297.501 299.167 299.819 300.046 299.964 299.776 299.702 299.649 299.601 299.612 299.621 299.603 299.579 299.542 299.454 299.362 299.265 299.147 299.043 298.933 298.8 298.634 298.501 298.423 298.383 298.328 298.231 298.167 298.113 297.996 297.858 297.723 297.547 297.291 297.119 297.033 297.006 297.086 297.33 297.646 298.028 298.557 299.139 299.676 300.125 300.524 300.785 300.873 300.833 300.815 300.875 300.75 299.941 299.292 299.875 300.16 300.622 301.351 302.421 302.53 303.182 303.361 302.742 301.608 300.458 299.901 298.983 298.447 297.721 298.822 299.804 300.138 300.181 300.051 300.039 300.1 300.167 300.175 300.145 300.134 300.086 299.89 299.716 299.623 299.566 299.545 299.595 299.635 299.667 299.739 299.795 299.636 299.748 299.815 299.718 299.665 299.678 299.706 299.68 299.633 299.571 299.516 299.51 299.479 299.401 299.31 299.278 299.239 299.168 299.088 299.086 299.144 299.235 299.335 299.426 299.497 299.549 299.605 299.63 299.627 299.636 299.678 299.709 299.723 299.72 299.695 299.672 299.608 299.492 299.359 299.315 299.261 299.15 298.995 298.843 298.684 298.522 298.335 298.104 297.877 297.676 297.444 297.214 296.987 296.73 296.413 296.163 295.936 295.708 295.507 295.355 295.197 295.068 294.975 294.796 294.631 294.563 294.49 294.325 294.316 294.494 294.73 294.89 295.15 295.49 295.717 295.395 294.741 293.898 292.671 291.279 287.958 284.673 284.174 287.739 292.092 295.808 297.488 297.856 298.025 298.364 298.357 297.815 297.278 296.863 296.379 295.875 295.806 296.326 297.087 297.887 299.247 299.315 298.572 299.061 299.318 299.274 299.042 298.98 298.866 298.677 298.544 298.47 298.318 298.139 297.991 297.895 297.814 297.736 297.601 297.437 297.332 297.269 297.175 297.064 296.957 296.821 296.63 296.481 296.357 296.234 296.856 296.946 296.904 296.76 296.878 297.622 298.561 299.323 299.198 297.095 294.776 293.613 293.707 294.198 294.656 295.074 295.27 295.251 295.147 295.392 296.186 296.891 297.135 297.247 297.611 297.999 297.587 297.734 298.734 300.047 300.464 300.541 299.694 298.606 297.801 297.871 299.251 299.859 300.07 299.982 299.82 299.802 299.811 299.801 299.758 299.715 299.717 299.745 299.735 299.686 299.633 299.554 299.443 299.367 299.287 299.181 299.05 298.959 298.919 298.898 298.82 298.71 298.649 298.586 298.411 298.24 298.122 297.997 297.865 297.877 297.941 298.01 298.136 298.337 298.547 298.768 299.075 299.411 299.74 300.036 300.292 300.487 300.594 300.617 300.651 300.77 300.775 300.62 299.964 299.182 299.593 299.818 299.985 300.064 300.142 300.483 301.033 300.293 300.823 301.329 300.951 299.263 298.764 298.425 299.91 300.332 300.488 300.444 300.348 300.371 300.422 300.475 300.521 300.525 300.522 300.497 300.371 300.185 299.999 299.843 299.78 299.834 299.903 299.982 300.091 300.151 300.171 300.181 300.149 300.059 299.993 299.961 299.947 299.926 299.894 299.846 299.832 299.89 299.874 299.762 299.612 299.556 299.504 299.451 299.441 299.514 299.618 299.728 299.842 299.928 299.964 299.958 299.919 299.911 299.94 300.001 300.04 300.031 300.027 300.026 299.988 299.928 299.842 299.725 299.615 299.569 299.496 299.365 299.196 299.033 298.867 298.699 298.477 298.21 297.964 297.733 297.445 297.194 296.979 296.73 296.407 296.185 296.002 295.83 295.724 295.679 295.582 295.47 295.362 295.206 295.105 295.098 295.061 295.019 295.188 295.455 295.576 295.716 295.953 295.994 295.528 294.841 293.884 292.776 290.53 287.387 284.851 284.454 287.278 291.87 295.691 297.648 298.0 297.696 297.786 297.761 297.649 297.359 297.005 296.678 296.251 295.709 295.631 295.898 296.509 297.656 299.046 299.239 298.635 299.065 299.339 299.291 299.03 298.962 298.866 298.71 298.61 298.539 298.408 298.274 298.169 298.062 297.951 297.846 297.721 297.635 297.608 297.589 297.5 297.386 297.287 297.176 297.017 296.912 296.861 296.831 297.71 297.788 297.682 297.447 297.487 298.227 299.156 299.832 299.494 297.702 294.584 292.933 292.697 293.298 294.056 294.663 294.926 294.745 294.527 294.572 294.892 295.098 295.391 295.689 295.987 296.081 296.355 296.864 297.787 299.225 300.306 300.641 300.575 300.05 298.938 298.374 299.53 299.964 300.069 299.975 299.867 299.852 299.865 299.879 299.828 299.786 299.814 299.85 299.843 299.872 299.901 299.856 299.748 299.687 299.601 299.499 299.423 299.362 299.32 299.301 299.265 299.173 299.102 299.015 298.84 298.73 298.677 298.613 298.581 298.684 298.781 298.865 299.039 299.24 299.376 299.488 299.628 299.786 299.982 300.186 300.327 300.433 300.542 300.612 300.637 300.673 300.706 300.699 300.597 300.146 299.33 299.851 299.941 299.331 299.091 299.376 299.581 300.006 300.922 301.135 300.972 299.375 299.125 299.604 300.492 300.737 300.794 300.759 300.727 300.712 300.688 300.688 300.727 300.72 300.68 300.647 300.599 300.473 300.311 300.168 300.131 300.188 300.249 300.307 300.365 300.352 300.307 300.262 300.223 300.193 300.153 300.09 300.018 300.02 300.021 300.002 300.058 300.198 300.216 300.093 299.912 299.812 299.759 299.778 299.91 300.026 300.081 300.11 300.158 300.209 300.236 300.26 300.283 300.287 300.297 300.319 300.305 300.255 300.24 300.244 300.192 300.096 299.987 299.854 299.723 299.643 299.53 299.367 299.165 298.968 298.778 298.599 298.382 298.136 297.909 297.691 297.426 297.203 297.021 296.822 296.592 296.465 296.369 296.28 296.237 296.216 296.137 296.031 295.925 295.832 295.792 295.804 295.793 295.876 296.109 296.312 296.318 296.431 296.486 296.134 295.249 294.359 293.491 290.195 286.302 284.264 284.702 287.704 292.244 296.835 299.67 299.367 298.373 297.478 297.224 297.038 297.009 297.21 297.062 296.797 296.566 295.952 295.475 295.642 296.032 296.709 298.848 299.315 298.056 298.767 299.16 299.308 299.125 299.021 298.93 298.8 298.667 298.568 298.479 298.418 298.363 298.268 298.181 298.104 298.02 297.988 297.985 297.961 297.887 297.819 297.749 297.651 297.512 297.453 297.49 297.581 298.447 298.44 298.289 298.072 298.087 298.66 299.489 300.207 300.004 298.374 294.64 292.848 292.358 292.855 293.556 294.183 294.594 294.336 294.152 293.916 293.873 294.249 294.312 294.487 294.557 294.792 295.555 296.482 297.516 299.025 300.182 300.601 300.655 300.345 299.72 298.851 299.894 300.129 300.122 300.024 299.917 299.802 299.758 299.796 299.827 299.853 299.927 299.97 299.953 300.011 300.041 299.982 299.891 299.86 299.793 299.727 299.739 299.719 299.67 299.65 299.652 299.608 299.568 299.511 299.391 299.313 299.252 299.179 299.188 299.325 299.417 299.496 299.676 299.813 299.876 299.943 300.064 300.183 300.326 300.479 300.577 300.63 300.691 300.737 300.743 300.726 300.724 300.739 300.716 300.582 300.56 300.769 300.769 299.572 298.966 298.962 299.108 299.923 300.807 300.983 300.935 300.002 300.056 300.677 300.804 300.824 300.848 300.909 300.962 300.931 300.878 300.861 300.895 300.879 300.82 300.757 300.695 300.623 300.558 300.521 300.531 300.551 300.559 300.559 300.534 300.476 300.412 300.34 300.282 300.274 300.254 300.192 300.129 300.16 300.17 300.149 300.208 300.345 300.383 300.316 300.22 300.153 300.133 300.198 300.372 300.446 300.416 300.364 300.367 300.412 300.458 300.534 300.633 300.642 300.589 300.5 300.384 300.283 300.253 300.256 300.211 300.114 299.995 299.853 299.711 299.601 299.466 299.298 299.081 298.873 298.688 298.528 298.364 298.19 298.01 297.829 297.643 297.503 297.376 297.259 297.163 297.103 297.039 296.978 296.923 296.86 296.787 296.711 296.623 296.564 296.548 296.562 296.607 296.773 296.96 297.033 296.955 296.938 296.705 296.088 295.056 293.778 291.872 287.648 285.376 286.207 288.987 292.981 298.462 301.287 301.541 300.267 298.641 297.234 297.034 296.736 296.68 296.78 296.964 297.265 297.218 296.653 295.857 295.7 295.702 295.874 297.885 299.335 298.352 298.433 298.897 299.269 299.278 299.155 299.05 298.938 298.814 298.746 298.718 298.692 298.622 298.57 298.557 298.533 298.469 298.424 298.375 298.311 298.276 298.268 298.215 298.129 298.059 298.088 298.189 298.325 298.978 298.927 298.798 298.689 298.753 299.128 299.786 300.505 300.505 298.797 296.438 293.898 293.334 293.022 293.522 294.219 294.704 294.129 293.716 293.431 293.234 293.426 293.579 293.724 293.883 294.373 295.444 296.495 297.547 298.962 300.092 300.391 300.406 300.246 300.1 299.903 300.173 300.23 300.192 300.127 299.996 299.834 299.779 299.817 299.87 299.935 300.041 300.102 300.092 300.115 300.083 299.987 299.945 299.979 299.966 299.951 300.013 300.021 299.988 299.973 299.942 299.885 299.891 299.913 299.847 299.747 299.654 299.577 299.615 299.77 299.889 299.992 300.119 300.116 300.092 300.154 300.309 300.41 300.51 300.613 300.7 300.783 300.842 300.846 300.808 300.791 300.763 300.73 300.716 300.693 300.746 300.869 300.861 300.028 299.217 299.532 299.936 300.33 300.802 300.963 301.034 300.611 300.53 301.087 300.833 300.594 300.636 300.839 300.971 300.983 301.021 301.061 301.06 301.022 300.986 300.946 300.881 300.823 300.789 300.767 300.727 300.706 300.711 300.72 300.689 300.65 300.625 300.589 300.518 300.46 300.4 300.339 300.322 300.364 300.368 300.34 300.343 300.38 300.397 300.391 300.387 300.382 300.411 300.487 300.595 300.613 300.586 300.56 300.585 300.638 300.676 300.723 300.789 300.765 300.648 300.473 300.279 300.166 300.126 300.12 300.101 300.055 299.983 299.88 299.746 299.619 299.487 299.335 299.15 298.995 298.869 298.753 298.613 298.489 298.357 298.212 298.092 298.025 297.946 297.879 297.842 297.772 297.689 297.633 297.579 297.501 297.444 297.39 297.286 297.233 297.239 297.268 297.377 297.574 297.667 297.602 297.443 297.227 296.735 295.94 294.67 293.26 290.088 288.696 289.607 292.156 296.088 299.047 300.686 301.725 301.062 299.463 297.936 297.059 296.841 296.65 296.587 296.732 297.025 297.305 297.704 297.199 296.497 296.28 295.732 295.546 296.627 299.072 298.994 297.998 298.534 299.044 299.308 299.274 299.195 299.106 299.021 299.03 299.081 299.121 299.117 299.114 299.087 299.012 298.911 298.852 298.789 298.737 298.735 298.719 298.656 298.593 298.61 298.696 298.794 298.897 299.473 299.413 299.312 299.279 299.403 299.668 300.152 300.741 300.774 299.324 297.081 295.516 294.925 293.965 293.952 294.341 294.748 294.341 293.783 293.52 293.077 292.88 292.994 293.136 293.412 294.114 295.415 296.624 297.859 299.321 300.085 300.169 300.097 300.109 300.157 300.201 300.221 300.211 300.202 300.172 300.047 299.969 299.982 300.01 299.989 300.05 300.154 300.207 300.203 300.206 300.151 300.053 300.034 300.079 300.082 300.072 300.09 300.101 300.144 300.19 300.135 300.063 300.098 300.155 300.108 300.036 300.001 299.998 300.109 300.288 300.414 300.491 300.513 300.412 300.336 300.335 300.378 300.416 300.471 300.505 300.565 300.743 300.87 300.861 300.744 300.583 300.472 300.543 300.527 300.592 300.769 300.906 300.919 300.784 300.616 300.49 300.526 300.709 300.926 301.117 301.216 301.075 300.982 301.02 300.475 300.063 299.868 300.548 300.854 300.899 301.026 301.117 301.075 301.026 301.063 301.126 301.132 301.062 300.985 300.92 300.864 300.842 300.854 300.869 300.831 300.78 300.787 300.807 300.758 300.636 300.524 300.457 300.481 300.556 300.586 300.562 300.48 300.41 300.389 300.414 300.455 300.473 300.52 300.585 300.613 300.599 300.599 300.617 300.661 300.692 300.706 300.7 300.69 300.666 300.565 300.388 300.18 300.08 300.033 300.008 299.994 299.995 299.977 299.934 299.841 299.718 299.604 299.502 299.385 299.288 299.214 299.128 298.987 298.891 298.808 298.717 298.649 298.614 298.544 298.476 298.431 298.345 298.265 298.216 298.154 298.078 298.022 297.94 297.805 297.809 297.877 297.942 298.087 298.259 298.242 298.048 297.804 297.474 296.835 295.804 294.218 292.159 290.697 292.347 296.184 299.263 299.705 298.756 300.002 300.625 299.712 298.278 297.565 297.092 296.961 296.82 296.776 296.886 296.948 297.169 297.475 297.361 297.016 296.741 296.005 295.605 296.12 296.994 298.428 297.361 297.657 298.558 299.133 299.322 299.367 299.318 299.248 299.285 299.374 299.476 299.596 299.624 299.531 299.397 299.32 299.292 299.258 299.242 299.255 299.212 299.151 299.122 299.163 299.242 299.324 299.407 299.836 299.766 299.708 299.74 299.914 300.142 300.46 300.827 300.761 299.58 297.339 296.858 296.71 295.124 294.497 294.571 294.881 294.963 294.409 294.119 293.449 293.193 292.767 292.766 293.252 293.988 295.019 296.303 298.027 299.88 300.237 300.123 299.971 300.06 300.158 300.185 300.15 300.153 300.167 300.131 300.026 300.053 300.125 300.13 300.078 300.134 300.202 300.226 300.245 300.269 300.244 300.192 300.158 300.152 300.148 300.126 300.06 300.053 300.146 300.259 300.272 300.252 300.291 300.309 300.266 300.276 300.325 300.393 300.54 300.701 300.792 300.825 300.819 300.746 300.629 300.48 300.286 300.191 300.178 300.177 300.167 300.433 300.714 300.793 300.39 300.201 300.088 300.283 300.188 299.8 300.407 300.901 300.955 300.864 300.765 300.734 300.904 301.093 301.072 300.964 300.786 299.777 299.581 299.865 299.261 298.331 299.409 300.412 300.696 300.769 300.877 300.925 300.878 300.899 301.019 301.161 301.218 301.147 301.061 301.013 301.009 300.994 300.956 300.911 300.831 300.763 300.778 300.832 300.82 300.711 300.605 300.547 300.584 300.683 300.731 300.693 300.565 300.469 300.443 300.468 300.492 300.49 300.509 300.531 300.508 300.483 300.483 300.503 300.509 300.493 300.489 300.48 300.474 300.485 300.439 300.317 300.139 300.044 299.978 299.92 299.877 299.868 299.858 299.836 299.784 299.685 299.597 299.54 299.481 299.411 299.371 299.33 299.231 299.158 299.119 299.084 299.053 299.022 298.954 298.879 298.812 298.748 298.706 298.675 298.603 298.535 298.473 298.363 298.249 298.33 298.436 298.521 298.671 298.759 298.613 298.349 298.125 297.793 297.018 295.652 293.707 291.601 292.558 296.304 299.743 298.591 298.522 299.323 300.468 299.18 298.176 297.851 297.642 297.362 297.356 297.137 296.995 297.063 296.714 296.778 297.034 297.335 297.213 296.828 296.484 295.948 295.905 296.302 296.415 296.283 296.606 298.044 298.917 299.328 299.48 299.462 299.428 299.498 299.575 299.66 299.799 299.813 299.716 299.641 299.663 299.645 299.616 299.639 299.679 299.649 299.61 299.58 299.579 299.639 299.73 299.811 299.951 299.947 300.024 300.16 300.334 300.508 300.699 300.84 300.592 299.49 297.553 297.099 297.16 295.742 295.239 295.116 295.525 295.651 295.202 294.764 294.208 293.491 292.953 292.766 293.002 293.653 294.653 296.193 298.139 300.081 300.357 300.172 300.022 300.089 300.151 300.177 300.187 300.22 300.229 300.183 300.093 300.108 300.147 300.138 300.127 300.177 300.201 300.205 300.272 300.322 300.301 300.269 300.262 300.27 300.286 300.269 300.164 300.127 300.176 300.257 300.35 300.451 300.497 300.469 300.434 300.478 300.515 300.56 300.695 300.811 300.855 300.887 300.955 300.913 300.727 300.438 299.769 299.336 299.14 298.928 298.92 299.815 300.569 300.689 300.557 300.413 300.356 300.342 300.258 300.352 300.652 300.924 300.887 300.77 300.736 300.843 301.147 301.199 300.415 299.073 298.36 297.585 297.208 297.154 296.944 298.296 299.607 300.247 300.528 300.638 300.688 300.662 300.631 300.736 300.879 300.997 301.047 301.005 300.96 300.957 300.99 300.958 300.896 300.859 300.837 300.796 300.803 300.838 300.822 300.755 300.694 300.647 300.643 300.703 300.728 300.669 300.551 300.504 300.511 300.522 300.522 300.533 300.534 300.526 300.509 300.486 300.453 300.433 300.401 300.35 300.334 300.341 300.34 300.328 300.286 300.202 300.076 299.983 299.909 299.835 299.767 299.725 299.674 299.625 299.574 299.502 299.43 299.382 299.342 299.3 299.295 299.298 299.252 299.192 299.165 299.15 299.128 299.089 299.035 298.978 298.919 298.881 298.872 298.864 298.821 298.8 298.763 298.688 298.651 298.736 298.799 298.876 299.029 298.989 298.775 298.598 298.572 298.257 297.259 295.561 293.109 292.448 294.7 298.073 298.789 298.75 298.852 300.509 300.226 298.467 297.978 298.028 297.983 297.827 297.791 297.62 297.201 296.894 296.724 296.762 297.067 297.279 297.177 296.946 296.787 296.47 296.017 295.952 295.858 295.962 296.442 297.303 298.858 299.32 299.496 299.515 299.568 299.686 299.741 299.78 299.903 299.942 299.897 299.873 299.878 299.821 299.808 299.868 299.935 299.928 299.883 299.802 299.723 299.78 299.884 299.956 300.004 300.119 300.284 300.423 300.487 300.638 300.76 300.684 300.233 299.034 297.891 296.668 296.305 296.062 295.865 295.732 295.979 295.996 295.629 295.09 294.315 293.39 293.261 292.915 292.908 293.194 294.317 295.987 298.968 299.982 300.209 300.084 300.048 300.129 300.188 300.247 300.306 300.326 300.346 300.343 300.293 300.24 300.206 300.17 300.167 300.211 300.236 300.284 300.393 300.391 300.315 300.274 300.301 300.358 300.397 300.383 300.297 300.249 300.218 300.203 300.304 300.475 300.551 300.563 300.604 300.64 300.634 300.661 300.784 300.814 300.78 300.794 300.859 300.716 300.441 300.155 299.347 299.568 299.851 299.845 300.283 300.542 300.66 300.642 300.431 300.153 300.121 300.282 300.386 300.431 300.565 300.675 300.659 300.713 300.785 300.811 300.757 300.359 299.579 297.923 296.655 295.989 295.497 295.503 296.417 298.153 299.215 299.659 300.34 300.48 300.531 300.524 300.559 300.661 300.749 300.816 300.868 300.881 300.873 300.876 300.895 300.897 300.906 300.951 300.977 300.901 300.838 300.813 300.763 300.713 300.697 300.672 300.614 300.614 300.619 300.577 300.502 300.529 300.566 300.538 300.489 300.54 300.575 300.58 300.598 300.586 300.519 300.449 300.406 300.36 300.341 300.35 300.334 300.244 300.143 300.06 299.988 299.911 299.841 299.775 299.715 299.669 299.615 299.561 299.504 299.455 299.374 299.281 299.206 299.167 299.138 299.118 299.084 299.026 298.996 298.982 298.959 298.921 298.891 298.864 298.833 298.824 298.831 298.829 298.82 298.833 298.826 298.812 298.859 298.902 298.91 298.987 299.139 299.028 298.872 298.887 299.035 298.683 297.507 295.6 293.247 293.745 296.206 298.305 298.903 299.828 299.968 299.161 298.517 298.197 298.164 298.216 298.022 297.846 297.976 297.969 297.632 297.434 297.34 297.381 297.332 297.197 297.255 297.012 296.957 296.703 296.27 296.048 295.997 296.264 296.776 298.197 299.04 299.393 299.514 299.556 299.664 299.78 299.825 299.88 300.07 300.169 300.143 300.075 299.983 299.92 299.934 299.983 300.012 300.004 299.949 299.833 299.733 299.769 299.85 299.935 300.007 300.174 300.326 300.392 300.357 300.488 300.524 300.252 299.518 298.035 298.158 297.069 296.296 296.189 296.052 295.992 295.957 295.775 295.667 295.009 293.852 293.176 293.01 292.951 292.782 292.781 293.639 295.685 298.591 299.687 299.912 299.806 299.789 299.963 300.099 300.179 300.23 300.264 300.33 300.401 300.404 300.359 300.309 300.24 300.18 300.229 300.322 300.43 300.525 300.476 300.367 300.296 300.285 300.326 300.351 300.343 300.315 300.292 300.233 300.176 300.229 300.325 300.38 300.463 300.6 300.633 300.646 300.709 300.777 300.719 300.656 300.613 300.445 299.993 299.103 298.69 299.824 299.958 300.063 300.243 300.492 300.556 300.558 300.524 300.104 299.064 298.704 299.557 300.349 300.402 300.35 300.302 300.379 300.615 300.63 300.287 299.496 298.406 296.845 295.968 295.952 295.733 295.695 296.325 298.818 299.926 300.452 300.475 299.89 300.275 300.368 300.503 300.631 300.679 300.719 300.765 300.81 300.841 300.845 300.828 300.842 300.899 300.955 301.008 300.99 300.823 300.668 300.589 300.541 300.511 300.519 300.513 300.437 300.396 300.386 300.352 300.299 300.344 300.386 300.356 300.297 300.35 300.399 300.413 300.429 300.406 300.331 300.26 300.228 300.181 300.138 300.111 300.068 299.966 299.855 299.759 299.684 299.623 299.579 299.55 299.495 299.431 299.404 299.38 299.321 299.267 299.184 299.067 298.953 298.877 298.794 298.725 298.682 298.635 298.596 298.584 298.589 298.581 298.56 298.523 298.491 298.517 298.548 298.556 298.56 298.572 298.565 298.582 298.684 298.717 298.732 298.843 298.991 298.926 298.899 298.977 299.0 298.603 297.768 295.318 293.474 294.678 297.621 298.651 299.001 300.08 300.207 298.469 298.103 298.453 298.707 298.404 298.135 298.176 298.624 299.35 299.658 299.548 299.57 299.255 298.598 298.076 297.763 297.337 297.275 297.007 296.747 296.554 296.603 297.042 297.963 298.777 299.287 299.479 299.57 299.657 299.794 299.879 299.91 299.98 300.197 300.304 300.243 300.124 300.019 299.992 299.993 299.978 299.967 300.007 299.983 299.884 299.78 299.739 299.747 299.84 299.955 300.1 300.255 300.337 300.316 300.361 300.227 299.865 298.047 298.741 298.425 297.323 296.431 296.404 296.184 296.126 295.809 295.766 295.545 294.614 293.412 292.831 292.508 292.757 292.668 292.426 293.457 296.021 298.304 299.475 299.732 299.492 299.287 299.575 299.833 299.917 299.943 300.05 300.172 300.285 300.342 300.345 300.321 300.254 300.19 300.266 300.378 300.449 300.479 300.466 300.416 300.351 300.296 300.289 300.301 300.301 300.305 300.303 300.292 300.278 300.293 300.269 300.27 300.366 300.504 300.54 300.585 300.649 300.631 300.574 300.53 300.343 299.73 298.629 298.425 298.665 299.66 299.826 299.958 299.875 299.413 299.438 299.093 299.864 299.736 298.061 297.017 298.823 300.124 300.252 299.873 299.794 299.743 299.924 299.985 298.756 297.136 296.38 295.675 295.765 296.258 297.359 298.384 299.433 300.261 300.647 300.629 300.364 300.075 300.069 300.229 300.458 300.615 300.599 300.612 300.664 300.67 300.651 300.64 300.617 300.626 300.684 300.7 300.683 300.61 300.426 300.264 300.193 300.166 300.114 300.079 300.046 299.966 299.876 299.819 299.769 299.692 299.669 299.69 299.701 299.699 299.765 299.836 299.866 299.859 299.825 299.755 299.676 299.604 299.533 299.459 299.388 299.326 299.277 299.199 299.102 299.005 298.916 298.843 298.789 298.698 298.592 298.552 298.524 298.419 298.32 298.238 298.137 298.033 297.959 297.872 297.799 297.767 297.709 297.657 297.646 297.679 297.693 297.67 297.611 297.553 297.585 297.635 297.665 297.686 297.728 297.791 297.89 298.04 298.131 298.214 298.355 298.517 298.57 298.616 298.595 298.363 298.034 297.118 295.342 293.389 294.996 298.614 298.971 299.093 300.094 299.203 298.741 298.725 300.338 301.03 299.593 300.089 300.534 300.766 301.798 302.88 302.876 302.478 301.539 300.107 299.178 298.496 298.043 298.3 297.875 297.415 297.335 297.796 298.542 298.96 299.248 299.389 299.469 299.583 299.741 299.925 300.009 300.031 300.092 300.266 300.321 300.244 300.142 300.073 300.041 300.006 299.966 300.007 300.114 300.136 300.084 299.999 299.865 299.777 299.814 299.983 300.078 300.219 300.295 300.302 300.285 300.092 298.79 299.236 299.893 298.512 297.452 296.593 296.736 296.834 296.554 295.974 295.815 295.71 294.842 293.147 292.492 292.432 292.259 292.203 292.334 293.672 296.014 297.551 299.054 299.686 299.336 298.867 299.178 299.514 299.632 299.707 299.844 299.96 300.098 300.227 300.235 300.211 300.183 300.189 300.298 300.359 300.328 300.281 300.311 300.313 300.28 300.266 300.281 300.282 300.269 300.272 300.3 300.33 300.346 300.318 300.255 300.267 300.359 300.442 300.475 300.542 300.595 300.575 300.582 300.48 300.041 298.33 297.92 298.486 299.018 299.507 299.551 299.409 298.658 298.17 298.144 298.112 299.414 299.551 298.257 296.761 298.518 299.853 300.062 300.082 300.208 300.36 299.957 298.703 297.505 298.424 297.983 297.329 298.102 299.104 299.709 300.171 300.586 300.82 300.689 300.424 300.162 300.005 300.002 300.109 300.288 300.376 300.308 300.323 300.382 300.365 300.343 300.34 300.301 300.251 300.224 300.147 300.058 299.985 299.848 299.699 299.596 299.511 299.406 299.317 299.248 299.172 299.07 298.982 298.912 298.814 298.731 298.738 298.807 298.894 298.992 299.085 299.127 299.101 299.035 298.925 298.774 298.605 298.523 298.483 298.436 298.369 298.317 298.228 298.108 297.995 297.87 297.724 297.594 297.451 297.304 297.234 297.197 297.081 296.951 296.855 296.769 296.679 296.609 296.529 296.45 296.395 296.332 296.304 296.328 296.373 296.385 296.363 296.297 296.206 296.183 296.197 296.222 296.246 296.338 296.504 296.699 296.91 297.108 297.31 297.531 297.766 297.919 297.974 297.887 297.643 297.468 296.764 295.054 293.333 294.749 298.638 299.071 299.13 300.513 300.266 299.533 300.533 302.266 302.616 303.067 303.91 304.082 303.719 303.705 303.365 303.344 302.857 301.668 300.277 299.389 299.25 299.203 299.075 299.103 298.903 298.747 298.848 299.082 299.248 299.303 299.29 299.373 299.528 299.713 299.948 300.085 300.115 300.164 300.339 300.397 300.307 300.195 300.128 300.098 300.107 300.138 300.194 300.236 300.265 300.315 300.339 300.188 300.038 299.978 300.138 300.156 300.191 300.153 300.161 300.211 300.078 299.205 300.84 300.899 298.546 297.444 296.918 297.268 298.443 297.906 296.809 297.051 297.284 295.927 293.883 293.276 292.833 292.158 291.886 292.396 294.805 295.854 297.324 298.72 300.034 299.627 298.923 298.948 299.186 299.364 299.584 299.695 299.749 299.909 300.148 300.16 300.132 300.146 300.19 300.258 300.275 300.215 300.131 300.089 300.032 300.0 300.042 300.076 300.072 300.07 300.097 300.151 300.192 300.189 300.123 300.111 300.19 300.301 300.357 300.398 300.485 300.588 300.663 300.624 300.298 299.385 297.808 297.99 299.177 299.538 299.265 299.277 298.916 297.809 297.174 296.957 297.102 297.828 299.37 298.978 298.46 298.676 299.663 299.903 299.973 300.131 300.29 299.731 298.651 298.61 299.434 299.599 299.646 299.878 300.345 300.579 300.713 300.819 300.792 300.611 300.387 300.185 300.07 300.041 300.064 300.128 300.111 299.991 299.96 299.983 299.971 299.99 300.005 299.947 299.838 299.74 299.614 299.494 299.39 299.225 299.046 298.89 298.754 298.646 298.544 298.444 298.353 298.295 298.241 298.193 298.133 298.071 298.083 298.163 298.266 298.338 298.372 298.362 298.297 298.186 298.02 297.82 297.619 297.553 297.547 297.515 297.415 297.318 297.213 297.099 297.02 296.927 296.797 296.681 296.581 296.458 296.391 296.368 296.322 296.229 296.127 296.012 295.896 295.806 295.711 295.631 295.575 295.559 295.586 295.638 295.611 295.608 295.589 295.547 295.431 295.33 295.268 295.262 295.187 295.228 295.342 295.518 295.768 296.091 296.394 296.703 297.075 297.273 297.295 297.263 297.212 297.045 296.475 295.122 293.167 293.887 297.475 298.709 299.603 300.674 301.489 300.788 300.842 302.748 303.905 304.875 305.283 304.859 304.02 303.624 302.958 301.909 301.226 300.39 299.346 298.521 299.048 299.002 298.766 298.7 298.697 298.694 298.734 298.833 298.899 298.932 298.983 299.159 299.354 299.531 299.79 300.0 300.071 300.139 300.324 300.357 300.24 300.116 300.082 300.13 300.225 300.32 300.329 300.278 300.328 300.479 300.577 300.452 300.328 300.241 300.249 300.278 300.3 300.226 300.268 300.307 300.048 299.394 300.742 301.312 298.714 297.802 297.554 297.929 299.107 299.006 297.629 298.619 298.659 297.106 295.534 295.606 294.591 293.763 293.858 295.115 296.078 296.512 297.685 299.186 301.213 300.806 299.579 299.065 298.947 299.099 299.466 299.577 299.6 299.784 300.083 300.131 300.155 300.199 300.177 300.148 300.169 300.179 300.105 299.948 299.811 299.754 299.769 299.753 299.754 299.787 299.811 299.826 299.85 299.857 299.839 299.87 299.96 300.071 300.175 300.272 300.424 300.613 300.705 300.401 299.8 298.36 298.033 298.871 299.617 299.402 299.0 299.054 298.594 297.733 296.914 296.512 296.434 297.009 298.802 299.455 299.061 298.828 299.301 299.912 299.956 299.657 300.161 300.019 299.79 299.763 300.091 300.284 300.346 300.452 300.618 300.638 300.636 300.648 300.648 300.613 300.506 300.349 300.232 300.183 300.124 300.07 299.988 299.875 299.816 299.793 299.773 299.803 299.813 299.762 299.674 299.57 299.448 299.332 299.183 298.977 298.808 298.673 298.533 298.43 298.321 298.178 298.043 298.002 297.976 297.937 297.894 297.86 297.868 297.919 297.986 298.003 297.942 297.84 297.743 297.64 297.5 297.357 297.227 297.14 297.069 296.969 296.802 296.706 296.657 296.619 296.613 296.632 296.644 296.666 296.691 296.663 296.648 296.66 296.681 296.672 296.617 296.523 296.423 296.354 296.296 296.26 296.219 296.191 296.202 296.207 296.126 296.097 296.051 296.031 295.849 295.73 295.579 295.545 295.389 295.35 295.337 295.393 295.567 295.909 296.208 296.498 296.941 297.136 297.133 297.185 297.21 296.831 296.442 295.919 293.95 293.128 295.558 298.806 300.346 302.169 302.904 302.329 301.236 302.687 304.065 304.474 303.95 303.258 302.432 301.781 301.265 300.399 299.869 299.412 298.218 297.919 298.461 298.346 298.067 297.982 298.015 298.083 298.161 298.255 298.365 298.474 298.6 298.79 298.97 299.14 299.426 299.714 299.848 299.921 300.042 300.023 299.923 299.863 299.919 300.02 300.138 300.258 300.332 300.341 300.407 300.513 300.516 300.403 300.37 300.351 300.243 300.308 300.419 300.419 300.398 300.216 299.741 298.832 299.921 300.636 299.438 298.051 298.296 298.108 298.69 299.457 299.605 300.057 299.378 298.142 297.667 297.074 297.045 296.021 296.732 297.157 297.831 297.437 298.559 300.575 303.288 303.122 300.955 299.56 299.065 299.002 299.298 299.461 299.537 299.71 299.952 300.051 300.149 300.211 300.145 300.094 300.104 300.105 300.003 299.823 299.688 299.623 299.564 299.515 299.545 299.6 299.579 299.523 299.509 299.546 299.641 299.67 299.67 299.736 299.918 300.112 300.372 300.665 300.703 300.027 298.601 297.969 298.749 299.331 299.582 299.256 298.889 299.056 299.069 298.774 297.444 296.579 296.092 296.562 298.806 299.694 299.814 299.768 299.901 299.993 300.048 300.148 300.254 300.229 300.169 300.154 300.243 300.315 300.379 300.46 300.517 300.5 300.506 300.523 300.553 300.611 300.597 300.515 300.454 300.421 300.332 300.229 300.14 300.064 300.007 299.963 299.939 299.954 299.947 299.915 299.876 299.788 299.687 299.615 299.511 299.338 299.222 299.136 298.99 298.871 298.767 298.63 298.472 298.412 298.369 298.308 298.23 298.174 298.151 298.153 298.185 298.201 298.138 298.036 297.957 297.874 297.756 297.666 297.609 297.505 297.384 297.267 297.124 297.064 297.078 297.11 297.138 297.205 297.31 297.425 297.514 297.566 297.624 297.685 297.743 297.804 297.831 297.831 297.854 297.885 297.894 297.874 297.78 297.65 297.568 297.496 297.403 297.352 297.299 297.2 297.057 296.914 296.782 296.684 296.581 296.499 296.429 296.358 296.399 296.663 296.856 297.0 297.316 297.461 297.462 297.592 297.634 297.123 296.956 296.873 295.582 293.214 293.875 298.075 301.368 303.082 303.808 303.648 302.067 302.322 302.364 301.313 300.826 301.131 300.701 299.843 299.545 299.008 298.405 298.449 298.01 297.861 297.935 297.724 297.487 297.419 297.455 297.551 297.67 297.78 297.928 298.078 298.192 298.343 298.506 298.673 298.944 299.245 299.42 299.492 299.511 299.479 299.467 299.51 299.61 299.717 299.84 300.005 300.199 300.229 300.177 300.129 300.082 300.079 300.199 300.301 300.183 300.196 300.247 300.164 299.927 299.64 299.311 298.89 299.925 299.81 299.031 298.634 298.297 298.596 299.572 300.08 299.809 300.257 301.187 300.796 299.865 299.41 298.852 298.198 298.662 298.383 298.226 298.583 298.302 300.642 302.338 302.753 301.772 300.289 299.373 299.045 299.144 299.324 299.479 299.631 299.781 299.936 300.063 300.091 300.044 300.038 299.984 299.88 299.766 299.652 299.564 299.51 299.437 299.402 299.433 299.465 299.481 299.477 299.396 299.326 299.417 299.451 299.388 299.403 299.593 299.806 300.123 300.498 300.517 299.61 298.844 299.763 300.058 299.39 299.398 299.138 298.954 299.058 299.286 299.457 299.149 297.712 296.452 296.491 298.821 299.74 300.078 300.102 299.998 299.893 299.964 300.202 300.363 300.294 300.26 300.29 300.342 300.372 300.426 300.493 300.516 300.496 300.52 300.554 300.592 300.66 300.682 300.651 300.621 300.59 300.523 300.454 300.399 300.341 300.287 300.238 300.217 300.222 300.206 300.18 300.175 300.12 300.049 300.014 299.975 299.87 299.799 299.744 299.634 299.545 299.485 299.411 299.313 299.241 299.185 299.137 299.06 298.976 298.932 298.912 298.92 298.965 298.956 298.89 298.833 298.756 298.638 298.545 298.507 298.442 298.383 298.353 298.324 298.303 298.308 298.314 298.288 298.266 298.278 298.313 298.354 298.418 298.524 298.628 298.72 298.818 298.9 298.969 299.073 299.148 299.153 299.104 298.951 298.758 298.624 298.526 298.41 298.323 298.225 298.106 297.984 297.846 297.713 297.629 297.552 297.467 297.417 297.354 297.311 297.445 297.525 297.539 297.689 297.783 297.806 297.995 298.155 297.792 297.796 297.908 296.482 294.468 293.736 297.113 301.221 302.981 304.157 304.052 302.696 301.177 299.683 298.155 298.515 299.081 298.677 297.827 297.327 297.041 297.266 297.473 297.725 297.612 297.377 297.121 297.001 296.989 297.033 297.124 297.237 297.331 297.467 297.612 297.707 297.836 297.993 298.156 298.374 298.605 298.743 298.781 298.706 298.642 298.687 298.832 299.069 299.32 299.521 299.671 299.75 299.612 299.46 299.487 299.695 299.818 299.991 300.175 300.283 300.312 300.226 300.008 298.905 298.129 298.675 298.703 299.214 298.915 299.271 298.453 299.073 300.444 300.723 300.911 300.354 301.159 301.824 301.534 301.436 301.054 300.146 300.323 298.936 299.014 297.605 297.4 297.426 299.102 300.574 301.286 301.032 300.589 299.725 298.955 298.928 299.167 299.371 299.5 299.615 299.822 299.93 299.9 299.88 299.886 299.763 299.613 299.549 299.495 299.484 299.528 299.526 299.467 299.425 299.423 299.603 299.728 299.496 299.127 299.054 299.144 299.132 299.142 299.264 299.389 299.623 299.909 299.863 299.378 299.755 299.912 299.606 298.91 299.043 299.022 299.095 299.163 299.366 299.682 299.77 299.113 297.723 296.783 297.904 299.655 300.236 300.23 299.834 299.503 299.594 299.998 300.307 300.25 300.219 300.283 300.367 300.366 300.369 300.414 300.469 300.492 300.536 300.595 300.638 300.652 300.642 300.615 300.58 300.528 300.481 300.455 300.431 300.396 300.367 300.331 300.289 300.281 300.261 300.227 300.219 300.208 300.173 300.15 300.145 300.104 300.067 300.042 300.016 299.991 299.969 299.945 299.918 299.868 299.832 299.837 299.834 299.782 299.758 299.751 299.735 299.756 299.763 299.721 299.668 299.629 299.566 299.507 299.487 299.469 299.45 299.444 299.439 299.411 299.367 299.316 299.251 299.148 299.042 298.973 298.946 298.956 299.018 299.115 299.247 299.377 299.47 299.522 299.571 299.575 299.511 299.425 299.298 299.137 299.008 298.892 298.742 298.623 298.508 298.386 298.276 298.15 298.028 297.955 297.885 297.803 297.799 297.8 297.742 297.781 297.803 297.768 297.838 297.948 298.002 298.163 298.388 298.3 298.427 298.65 297.911 296.541 295.111 296.862 298.326 299.657 302.399 303.727 302.097 298.699 296.108 294.952 295.837 296.119 296.356 296.778 297.406 297.314 297.231 297.335 297.287 297.088 296.819 296.611 296.533 296.533 296.561 296.613 296.693 296.778 296.901 297.029 297.121 297.206 297.297 297.398 297.543 297.677 297.746 297.735 297.587 297.482 297.584 297.901 298.455 298.934 299.174 299.192 299.094 298.806 298.317 298.663 299.4 299.304 299.459 299.427 299.282 299.636 299.664 299.695 298.627 299.699 298.871 299.232 298.669 298.62 298.646 299.292 300.58 301.674 302.084 301.822 301.412 301.229 301.277 301.366 301.65 302.088 302.604 301.851 300.412 298.511 296.276 295.126 295.562 296.534 298.602 299.581 299.954 299.541 299.166 298.512 298.445 298.805 299.088 299.232 299.322 299.526 299.643 299.649 299.663 299.617 299.499 299.43 299.387 299.289 299.397 299.642 299.708 299.611 299.591 299.652 299.905 299.987 299.415 298.938 298.685 298.796 298.819 298.819 298.887 298.993 299.144 299.275 299.426 299.737 299.904 299.872 298.827 298.798 298.842 298.95 299.163 299.286 299.465 299.704 299.858 299.511 299.032 298.45 299.326 300.06 300.365 300.186 299.53 298.603 299.205 299.683 300.136 300.177 300.176 300.219 300.272 300.27 300.266 300.298 300.369 300.405 300.427 300.451 300.461 300.415 300.367 300.345 300.333 300.28 300.232 300.199 300.153 300.126 300.133 300.126 300.078 300.065 300.061 300.037 300.022 300.035 300.02 299.993 300.0 300.017 300.013 299.993 299.989 300.0 299.99 299.983 300.018 300.028 300.02 300.043 300.085 300.083 300.086 300.084 300.043 300.034 300.039 300.02 299.982 299.98 299.979 299.967 299.944 299.911 299.855 299.783 299.736 299.718 299.656 299.574 299.51 299.419 299.299 299.21 299.172 299.149 299.168 299.227 299.314 299.424 299.511 299.56 299.57 299.519 299.4 299.266 299.132 298.986 298.86 298.74 298.605 298.514 298.418 298.306 298.217 298.126 298.022 297.961 297.927 297.864 297.873 297.902 297.847 297.826 297.827 297.805 297.881 298.067 298.155 298.234 298.403 298.474 298.647 299.012 299.235 299.307 298.815 296.916 296.893 297.294 299.69 301.117 300.118 297.454 294.843 293.947 294.25 294.415 295.133 296.525 297.187 297.132 297.004 296.957 296.764 296.507 296.325 296.202 296.114 296.079 296.055 296.043 296.069 296.142 296.241 296.337 296.422 296.478 296.487 296.471 296.494 296.566 296.64 296.688 296.671 296.721 296.998 297.489 298.167 298.636 298.814 298.815 298.668 298.254 297.842 299.295 300.408 299.444 298.307 298.247 299.911 299.779 299.648 299.837 299.674 299.8 298.759 297.839 297.696 297.06 297.287 297.931 299.883 301.302 301.469 301.179 300.406 300.206 300.117 300.543 300.836 302.399 303.245 303.34 301.678 298.201 294.647 292.942 293.366 294.538 296.59 297.742 298.311 298.033 297.642 297.597 297.601 298.115 298.56 298.813 298.87 298.955 299.064 299.169 299.252 299.193 299.171 299.237 299.125 298.923 299.139 299.531 299.552 299.561 299.844 299.956 300.043 299.741 298.897 298.653 298.392 298.408 298.378 298.345 298.385 298.59 298.826 298.972 299.327 300.0 300.196 299.661 298.775 298.871 298.999 299.059 299.133 299.273 299.468 299.684 299.842 299.727 299.563 299.527 299.851 300.284 300.382 299.934 298.915 297.535 298.613 299.44 299.929 300.042 300.08 300.115 300.148 300.175 300.193 300.204 300.216 300.2 300.165 300.135 300.123 300.084 300.042 300.021 300.023 299.985 299.938 299.898 299.834 299.78 299.777 299.786 299.759 299.744 299.75 299.753 299.751 299.759 299.748 299.718 299.705 299.745 299.764 299.743 299.712 299.714 299.706 299.704 299.753 299.802 299.82 299.836 299.87 299.896 299.908 299.897 299.845 299.816 299.815 299.815 299.805 299.799 299.795 299.773 299.716 299.67 299.608 299.511 299.424 299.404 299.329 299.214 299.132 299.078 298.996 298.919 298.879 298.904 298.984 299.065 299.103 299.181 299.281 299.352 299.391 299.359 299.233 299.061 298.878 298.719 298.594 298.482 298.369 298.302 298.219 298.108 298.034 297.976 297.872 297.788 297.787 297.781 297.794 297.818 297.803 297.819 297.853 297.861 297.941 298.176 298.274 298.205 298.08 298.098 298.473 298.795 299.264 300.422 300.415 298.676 296.659 295.972 297.523 298.666 298.375 297.331 296.299 295.699 295.502 294.953 296.151 296.427 296.673 296.644 296.62 296.491 296.15 295.915 295.823 295.746 295.675 295.624 295.539 295.454 295.427 295.453 295.485 295.517 295.574 295.653 295.654 295.587 295.558 295.669 295.853 296.09 296.415 296.809 297.311 297.884 298.493 298.895 299.124 298.486 297.767 297.912 298.911 299.633 300.264 300.216 299.699 299.654 298.67 298.749 298.722 298.75 298.494 298.038 297.302 296.351 296.429 296.227 296.719 297.861 299.114 300.439 300.954 300.644 299.59 298.302 298.345 298.897 300.447 301.531 302.504 302.533 301.043 299.252 295.786 292.368 292.068 293.231 294.908 295.994 296.609 296.257 296.044 296.209 296.824 297.28 297.894 298.29 298.344 298.306 298.369 298.512 298.63 298.607 298.69 298.857 298.745 298.584 298.869 299.239 299.143 299.39 300.049 300.298 300.128 299.056 298.377 298.162 298.043 297.989 297.958 297.932 297.863 298.044 298.39 298.704 299.296 300.13 300.45 299.275 298.723 299.188 299.6 299.052 299.302 299.124 299.228 299.537 299.819 299.826 299.794 299.819 299.976 300.194 300.206 299.835 299.058 298.264 298.732 299.354 299.747 299.847 299.895 299.925 299.938 299.951 299.949 299.923 299.889 299.857 299.806 299.763 299.749 299.732 299.7 299.667 299.65 299.619 299.589 299.578 299.56 299.495 299.438 299.407 299.387 299.345 299.32 299.323 299.342 299.343 299.338 299.323 299.301 299.323 299.366 299.386 299.37 299.376 299.378 299.365 299.367 299.392 299.403 299.402 299.421 299.472 299.503 299.5 299.47 299.433 299.393 299.364 299.347 299.322 299.306 299.286 299.219 299.158 299.107 299.029 298.93 298.889 298.814 298.697 298.592 298.549 298.499 298.43 298.365 298.427 298.574 298.698 298.729 298.801 298.909 298.988 299.046 299.062 298.997 298.886 298.752 298.618 298.491 298.357 298.184 298.059 297.949 297.823 297.721 297.635 297.489 297.355 297.358 297.451 297.557 297.686 297.83 297.943 298.016 298.041 298.102 298.279 298.259 297.938 297.575 297.263 297.228 297.487 298.291 298.942 299.614 298.668 296.166 295.124 296.111 296.787 296.937 296.948 296.564 296.028 296.129 296.215 296.367 296.574 296.543 296.361 296.161 295.895 295.553 295.379 295.28 295.215 295.213 295.16 295.017 294.872 294.785 294.741 294.713 294.678 294.669 294.759 294.817 294.807 294.86 295.123 295.483 295.958 296.64 297.315 297.992 298.729 299.545 300.087 299.99 299.169 299.338 299.597 298.989 298.781 298.514 298.642 298.649 298.74 297.094 296.47 296.938 296.928 296.552 295.794 295.476 295.139 295.078 295.109 295.389 297.564 298.663 299.064 300.255 299.595 298.434 296.722 296.555 296.651 297.828 298.556 300.952 301.366 302.055 299.549 296.978 293.107 291.893 292.481 294.538 295.428 295.866 295.423 295.035 295.344 296.141 296.563 297.187 297.61 297.688 297.65 297.686 297.786 297.911 297.97 298.094 298.284 298.339 298.418 298.747 299.011 298.909 299.324 299.552 300.31 300.21 298.535 297.857 297.599 297.648 297.555 297.496 297.459 297.288 297.378 297.709 298.046 298.765 299.759 299.925 299.072 298.785 299.491 299.946 299.596 299.539 298.99 298.676 299.095 299.627 299.746 299.781 299.83 299.886 299.983 299.991 299.797 299.168 299.1 299.136 299.379 299.612 299.642 299.653 299.667 299.647 299.592 299.54 299.499 299.473 299.446 299.406 299.364 299.326 299.305 299.284 299.26 299.239 299.214 299.19 299.183 299.19 299.143 299.068 299.016 299.003 298.958 298.915 298.914 298.939 298.917 298.896 298.891 298.877 298.874 298.907 298.944 298.956 298.969 298.986 298.983 298.962 298.966 298.97 298.962 298.971 299.029 299.063 299.057 299.025 298.984 298.915 298.848 298.802 298.762 298.744 298.74 298.686 298.583 298.5 298.421 298.33 298.283 298.235 298.161 298.071 298.021 297.991 297.957 297.901 297.943 298.072 298.19 298.24 298.317 298.409 298.476 298.542 298.589 298.601 298.604 298.594 298.507 298.383 298.227 297.996 297.813 297.687 297.547 297.358 297.179 296.996 296.852 296.859 297.029 297.283 297.607 297.962 298.186 298.304 298.344 298.361 298.323 298.029 297.712 296.55 296.492 296.493 296.681 297.012 297.428 297.678 297.632 296.508 295.421 295.109 295.685 295.773 295.841 295.824 295.896 295.997 296.262 296.527 296.584 296.35 296.038 295.73 295.425 295.137 294.965 294.863 294.842 294.894 294.814 294.643 294.471 294.294 294.155 294.103 294.072 294.021 294.063 294.141 294.203 294.363 294.747 295.232 295.849 296.692 297.468 298.319 299.386 300.509 300.716 300.227 300.098 299.674 298.817 297.979 297.382 296.785 297.022 297.587 297.334 295.533 295.846 295.689 295.955 295.235 293.827 293.317 293.624 293.047 293.249 294.619 295.081 295.933 298.084 298.33 297.568 296.57 295.685 294.264 294.778 295.993 297.943 299.159 300.438 301.706 301.089 298.148 294.304 292.651 293.486 295.701 296.567 295.888 295.222 294.996 295.157 295.546 296.049 296.426 296.773 296.866 296.893 296.923 296.976 297.168 297.385 297.561 297.767 298.056 298.386 298.758 299.022 299.102 299.186 299.117 300.367 300.105 298.21 297.556 297.305 297.439 297.223 296.97 296.805 296.683 296.833 297.063 297.205 297.812 298.956 299.006 298.682 298.453 299.468 300.422 300.334 299.852 298.217 297.983 298.429 299.27 299.54 299.667 299.777 299.848 299.857 299.775 299.59 298.991 299.183 299.218 299.311 299.399 299.376 299.366 299.382 299.366 299.293 299.226 299.17 299.11 299.048 298.998 298.962 298.922 298.877 298.849 298.832 298.818 298.813 298.802 298.776 298.74 298.697 298.633 298.578 298.567 298.558 298.538 298.54 298.563 298.531 298.492 298.473 298.463 298.448 298.446 298.458 298.472 298.489 298.513 298.539 298.569 298.598 298.623 298.638 298.645 298.679 298.69 298.653 298.592 298.554 298.487 298.402 298.331 298.268 298.208 298.157 298.077 297.959 297.873 297.815 297.766 297.731 297.692 297.635 297.553 297.477 297.432 297.409 297.374 297.375 297.453 297.567 297.67 297.736 297.788 297.85 297.962 298.065 298.142 298.215 298.267 298.21 298.142 298.065 297.908 297.725 297.572 297.389 297.103 296.865 296.739 296.699 296.756 296.905 297.14 297.496 297.986 298.362 298.536 298.547 298.43 298.02 297.624 296.452 296.202 296.456 296.466 296.551 296.599 296.617 296.6 296.406 295.95 295.541 295.236 295.239 295.357 295.554 295.753 295.909 296.107 296.346 296.414 296.253 295.931 295.654 295.412 295.182 294.943 294.771 294.692 294.691 294.691 294.562 294.399 294.227 293.973 293.754 293.682 293.672 293.614 293.606 293.66 293.748 293.979 294.391 294.898 295.535 296.36 297.108 298.055 299.31 300.183 299.863 300.827 300.044 298.735 297.616 297.252 296.786 296.652 296.283 296.154 296.238 294.732 294.571 294.234 293.788 293.413 292.28 291.766 292.394 292.52 292.305 291.358 292.954 294.35 294.787 296.18 295.42 294.323 293.292 292.643 293.236 294.25 295.184 296.601 298.144 300.702 300.493 298.062 294.997 293.271 294.979 296.586 296.731 296.011 294.989 294.775 294.967 295.23 295.563 295.863 296.079 296.117 296.189 296.25 296.305 296.556 296.891 297.176 297.491 297.973 298.447 298.939 299.412 299.748 299.415 299.296 300.573 300.188 298.426 297.535 297.146 297.269 297.028 296.672 296.407 296.357 296.644 296.867 296.848 297.207 298.155 298.33 298.683 298.421 299.465 299.285 298.548 297.43 296.328 296.993 297.776 298.816 299.208 299.429 299.61 299.747 299.681 299.457 299.101 298.957 298.584 299.13 299.152 299.15 299.108 299.091 299.101 299.09 299.023 298.94 298.853 298.772 298.711 298.668 298.649 298.627 298.57 298.521 298.484 298.444 298.435 298.443 298.427 298.369 298.321 298.263 298.187 298.131 298.124 298.115 298.114 298.146 298.166 298.153 298.121 298.095 298.084 298.063 298.046 298.062 298.078 298.07 298.075 298.123 298.175 298.224 298.275 298.31 298.338 298.354 298.327 298.252 298.204 298.143 298.057 297.974 297.902 297.803 297.694 297.58 297.479 297.409 297.363 297.325 297.274 297.209 297.134 297.051 296.959 296.873 296.802 296.741 296.7 296.74 296.847 296.976 297.036 297.097 297.206 297.39 297.556 297.684 297.781 297.829 297.833 297.885 297.94 297.889 297.731 297.604 297.473 297.231 297.007 296.955 297.057 297.211 297.226 297.218 297.347 297.794 298.26 298.313 298.053 297.691 297.45 296.784 295.411 295.788 296.702 296.755 296.713 296.639 296.458 296.298 296.196 296.08 295.964 295.905 295.869 295.893 296.055 296.178 296.207 296.193 296.18 296.045 295.81 295.565 295.418 295.276 295.114 294.906 294.729 294.626 294.567 294.478 294.338 294.183 293.985 293.681 293.449 293.36 293.328 293.273 293.247 293.266 293.341 293.593 294.005 294.491 295.073 295.776 296.363 297.22 298.439 299.249 300.632 299.714 298.783 297.112 296.392 296.184 295.751 295.1 294.705 295.05 294.981 293.827 293.476 293.293 292.859 292.266 291.387 290.827 290.554 290.758 291.811 291.365 292.237 292.81 293.389 293.702 293.308 292.303 291.669 291.434 292.251 293.344 294.164 295.456 297.53 299.016 298.71 296.929 295.105 294.713 295.609 296.043 296.074 294.485 293.657 293.746 294.422 294.872 295.156 295.422 295.554 295.553 295.654 295.794 295.941 296.192 296.519 296.9 297.35 297.919 298.494 299.211 300.007 300.363 299.89 300.531 301.047 300.639 298.625 297.64 296.944 296.829 296.758 296.644 296.511 296.418 296.707 297.076 297.278 297.432 297.578 297.639 297.878 297.184 297.244 296.517 295.871 294.741 294.706 295.96 297.177 298.248 298.705 299.022 299.299 299.496 299.372 298.958 298.286 298.61 298.866 298.978 298.967 298.909 298.86 298.844 298.842 298.818 298.766 298.692 298.61 298.568 298.554 298.519 298.481 298.447 298.382 298.323 298.281 298.226 298.182 298.168 298.154 298.117 298.089 298.045 297.966 297.867 297.814 297.776 297.747 297.751 297.794 297.807 297.77 297.721 297.72 297.71 297.702 297.749 297.777 297.73 297.675 297.681 297.709 297.751 297.821 297.886 297.931 297.983 298.007 297.974 297.938 297.884 297.791 297.673 297.585 297.485 297.37 297.248 297.134 297.026 296.923 296.823 296.737 296.653 296.568 296.486 296.394 296.285 296.185 296.11 296.062 296.072 296.143 296.245 296.329 296.434 296.571 296.742 296.946 297.153 297.308 297.379 297.467 297.599 297.701 297.705 297.638 297.598 297.596 297.617 297.613 297.679 297.828 297.864 297.427 296.856 296.509 296.794 297.294 297.328 296.02 295.075 295.219 295.417 294.378 295.449 296.939 297.082 297.087 297.099 296.961 296.797 296.7 296.643 296.586 296.563 296.542 296.493 296.443 296.348 296.193 296.02 295.886 295.728 295.573 295.445 295.296 295.119 294.936 294.739 294.573 294.435 294.304 294.15 294.009 293.85 293.634 293.371 293.199 293.081 292.997 292.953 292.933 292.904 292.929 293.152 293.537 293.989 294.521 295.096 295.512 296.217 297.228 297.91 298.658 298.334 298.461 296.942 296.229 295.237 294.863 294.665 292.658 293.941 293.902 292.715 292.412 292.083 291.513 291.065 290.656 289.814 289.397 289.65 290.138 290.627 291.057 291.586 292.001 292.023 291.681 290.68 289.441 289.162 290.938 291.42 292.267 294.105 295.639 296.87 296.793 295.654 295.208 295.172 295.643 295.571 294.782 292.997 292.734 292.798 293.405 293.848 294.407 294.95 295.133 295.19 295.254 295.404 295.618 295.859 296.155 296.602 297.125 297.664 298.312 299.225 300.216 300.639 300.344 301.061 301.248 300.748 299.499 297.816 297.125 296.625 296.524 296.603 296.643 296.51 296.72 297.229 297.622 296.884 297.801 297.86 297.3 296.111 294.859 293.947 293.501 292.926 293.623 295.167 296.565 297.552 298.037 298.427 298.786 299.047 298.859 298.081 297.983 298.264 298.529 298.643 298.637 298.573 298.541 298.552 298.566 298.553 298.563 298.563 298.528 298.493 298.463 298.394 298.318 298.272 298.218 298.163 298.136 298.116 298.059 297.997 297.949 297.912 297.881 297.84 297.787 297.714 297.636 297.574 297.527 297.482 297.456 297.433 297.385 297.314 297.291 297.267 297.238 297.261 297.3 297.277 297.244 297.262 297.279 297.294 297.336 297.384 297.408 297.449 297.492 297.523 297.571 297.589 297.533 297.384 297.228 297.115 297.024 296.929 296.789 296.638 296.495 296.359 296.255 296.163 296.058 295.935 295.822 295.703 295.593 295.522 295.477 295.46 295.487 295.55 295.627 295.733 295.849 295.965 296.177 296.442 296.666 296.829 297.022 297.173 297.251 297.308 297.388 297.464 297.618 297.909 298.085 298.107 297.979 297.364 296.169 295.122 294.321 294.841 295.887 295.761 293.798 292.61 294.073 295.628 296.285 296.795 297.198 297.398 297.525 297.614 297.489 297.316 297.154 296.93 296.661 296.543 296.54 296.514 296.357 296.18 296.018 295.873 295.714 295.55 295.411 295.251 295.014 294.808 294.655 294.495 294.306 294.135 293.98 293.821 293.68 293.515 293.323 293.143 293.004 292.857 292.744 292.717 292.698 292.639 292.615 292.755 293.053 293.449 293.933 294.419 294.729 295.297 296.146 296.684 297.717 297.383 296.841 296.297 295.163 294.481 294.365 293.762 292.942 294.59 293.424 292.071 291.189 290.619 290.293 289.821 289.331 289.18 287.751 288.028 288.593 289.164 289.687 290.098 290.092 289.742 289.973 289.399 288.85 288.284 288.962 290.154 291.23 292.279 293.658 294.572 294.742 294.765 294.67 295.257 295.3 294.885 293.466 291.708 291.59 292.057 293.133 293.578 293.724 293.935 294.345 295.048 295.033 295.024 295.128 295.342 295.706 296.215 296.719 297.215 297.963 298.944 299.809 299.993 300.453 300.701 300.818 300.452 300.052 299.049 297.892 297.333 296.909 296.68 296.575 296.509 296.679 297.174 297.777 297.562 297.994 297.227 296.332 295.377 294.01 292.685 291.712 290.976 292.572 294.296 295.633 296.679 297.237 297.652 298.011 298.335 298.26 297.77 297.583 297.816 297.998 298.105 298.14 298.113 298.082 298.093 298.109 298.116 298.194 298.282 298.313 298.29 298.245 298.177 298.122 298.115 298.077 298.002 297.943 297.909 297.85 297.783 297.729 297.694 297.645 297.588 297.545 297.507 297.419 297.34 297.294 297.25 297.173 297.115 297.059 296.978 296.914 296.86 296.79 296.726 296.723 296.726 296.732 296.761 296.772 296.767 296.775 296.8 296.814 296.83 296.852 296.894 296.99 297.057 297.033 296.883 296.689 296.582 296.551 296.54 296.434 296.301 296.177 296.043 295.904 295.772 295.616 295.433 295.275 295.121 294.97 294.842 294.74 294.672 294.658 294.69 294.735 294.806 294.892 294.997 295.208 295.479 295.743 296.016 296.352 296.571 296.692 296.835 296.995 297.127 297.414 297.9 297.94 297.388 296.445 294.831 291.654 289.804 289.572 290.905 293.173 294.352 293.43 292.79 294.626 296.166 296.826 297.128 297.381 297.622 297.848 297.917 297.827 297.736 297.588 297.291 296.806 296.497 296.402 296.384 296.241 296.07 295.892 295.758 295.602 295.422 295.241 295.033 294.815 294.674 294.573 294.393 294.158 293.975 293.817 293.626 293.449 293.282 293.125 292.986 292.832 292.666 292.542 292.486 292.413 292.336 292.305 292.389 292.596 292.926 293.363 293.8 294.082 294.564 295.222 295.546 295.841 295.479 295.192 294.374 293.631 293.293 293.194 292.97 292.76 292.621 292.211 290.361 289.719 289.054 288.725 288.411 287.729 287.626 286.336 286.781 287.469 287.811 287.848 288.086 287.71 287.553 287.594 286.994 286.974 287.363 287.977 288.877 290.124 291.121 291.609 291.889 292.926 293.294 294.47 294.659 294.363 293.319 291.985 290.955 291.406 292.328 292.827 293.009 293.21 293.482 294.199 294.362 294.632 294.783 294.708 294.828 295.207 295.658 296.055 296.646 297.573 298.512 299.047 298.8 299.291 299.464 299.66 299.771 300.02 299.052 298.51 298.15 297.745 297.18 296.743 296.656 296.726 297.041 296.947 297.084 296.746 295.728 294.42 293.498 292.312 291.004 290.315 289.927 291.025 292.558 294.239 295.298 296.137 296.727 297.146 297.572 297.744 297.592 297.39 297.282 297.229 297.346 297.429 297.457 297.442 297.456 297.478 297.481 297.544 297.648 297.743 297.82 297.856 297.854 297.84 297.834 297.792 297.724 297.647 297.555 297.465 297.4 297.364 297.348 297.315 297.266 297.226 297.192 297.095 296.994 296.943 296.928 296.877 296.833 296.787 296.706 296.631 296.573 296.491 296.371 296.302 296.27 296.242 296.216 296.205 296.197 296.191 296.195 296.212 296.232 296.255 296.285 296.323 296.318 296.247 296.09 295.892 295.812 295.959 296.06 296.01 295.893 295.763 295.614 295.458 295.32 295.167 294.99 294.809 294.609 294.392 294.181 293.983 293.825 293.731 293.697 293.679 293.709 293.773 293.847 293.981 294.207 294.499 294.863 295.315 295.669 295.956 296.245 296.454 296.687 297.134 297.611 296.913 294.837 291.693 289.169 286.161 285.559 287.423 290.995 293.691 295.165 295.902 294.81 295.003 296.314 296.889 297.157 297.353 297.578 297.822 297.972 297.881 297.89 297.841 297.694 296.683 296.027 296.265 296.473 296.362 296.176 295.915 295.709 295.571 295.421 295.254 295.067 294.89 294.73 294.557 294.312 294.099 293.938 293.768 293.531 293.315 293.128 292.953 292.779 292.628 292.5 292.4 292.281 292.127 292.009 291.951 291.979 292.133 292.433 292.837 293.251 293.548 293.974 294.439 294.297 294.088 293.792 293.209 292.871 292.108 291.902 291.856 291.687 291.461 291.319 291.344 289.455 288.727 288.033 287.436 286.825 286.663 285.93 285.023 285.391 285.91 286.018 285.546 285.286 284.107 284.625 284.613 285.108 285.274 285.744 286.403 287.46 288.882 289.764 289.979 290.32 291.459 292.431 293.532 293.638 292.986 291.202 290.177 290.517 291.075 292.295 292.848 293.048 293.153 293.774 293.318 293.664 294.018 294.411 294.392 294.477 294.77 295.006 295.215 295.965 297.014 297.65 297.852 297.536 297.935 297.953 298.21 298.728 298.515 297.824 298.046 298.2 297.987 297.622 297.3 296.851 296.563 296.368 296.673 297.236 295.273 293.656 292.177 291.034 290.114 289.206 288.68 288.802 289.725 290.711 291.707 293.025 294.339 295.375 296.102 296.708 297.079 297.155 296.984 296.574 296.306 296.332 296.428 296.534 296.579 296.618 296.656 296.694 296.761 296.865 296.999 297.172 297.28 297.323 297.326 297.289 297.232 297.21 297.192 297.103 296.984 296.903 296.843 296.799 296.799 296.793 296.766 296.723 296.655 296.58 296.527 296.503 296.462 296.423 296.381 296.307 296.233 296.195 296.143 296.038 295.944 295.898 295.861 295.816 295.795 295.776 295.732 295.669 295.652 295.667 295.692 295.716 295.708 295.634 295.512 295.347 295.12 295.045 295.281 295.374 295.32 295.185 295.034 294.885 294.758 294.654 294.534 294.394 294.221 294.01 293.782 293.576 293.356 293.128 292.939 292.812 292.737 292.738 292.767 292.758 292.751 292.889 293.152 293.527 294.048 294.578 295.092 295.562 295.937 296.413 296.99 297.077 295.138 290.41 287.276 284.697 283.527 285.177 289.294 292.188 293.972 295.307 296.161 296.224 294.92 295.949 296.656 296.888 297.076 297.288 297.537 297.746 297.7 297.171 297.384 297.396 297.038 296.695 296.563 296.481 296.36 296.174 295.958 295.787 295.673 295.517 295.319 295.099 294.879 294.65 294.429 294.244 294.105 293.934 293.722 293.487 293.289 293.078 292.85 292.612 292.45 292.34 292.259 292.146 291.998 291.854 291.725 291.643 291.723 291.96 292.308 292.717 293.039 293.411 293.74 293.398 292.948 292.265 291.477 290.958 290.775 290.645 290.667 290.695 290.679 290.534 290.471 288.876 288.372 287.229 285.836 284.675 284.233 282.979 282.849 283.316 283.767 283.909 283.742 282.552 282.239 282.7 283.235 283.748 283.931 284.241 284.581 285.569 287.394 288.34 288.703 289.371 290.249 291.848 292.398 292.076 290.893 289.495 288.478 288.998 289.906 291.138 291.791 292.351 292.905 293.014 293.316 293.05 293.47 293.202 293.918 294.19 294.445 294.497 294.536 295.294 295.862 296.19 296.467 296.731 296.474 296.411 296.636 297.19 296.851 296.514 296.677 297.17 297.273 297.18 297.495 296.509 295.302 294.474 295.708 296.017 293.541 291.688 290.356 289.203 288.248 287.854 287.099 287.247 288.034 288.639 289.026 289.86 290.703 292.732 294.081 294.866 295.296 295.674 295.97 295.872 295.574 295.324 295.269 295.376 295.479 295.54 295.578 295.667 295.802 295.949 296.118 296.32 296.419 296.463 296.501 296.509 296.448 296.435 296.454 296.401 296.298 296.234 296.171 296.092 296.096 296.107 296.06 295.972 295.943 295.924 295.889 295.842 295.784 295.737 295.707 295.677 295.628 295.595 295.565 295.514 295.462 295.462 295.493 295.516 295.506 295.47 295.393 295.285 295.226 295.22 295.217 295.2 295.155 295.077 294.978 294.859 294.742 294.699 294.702 294.686 294.555 294.399 294.24 294.084 293.946 293.827 293.695 293.556 293.422 293.263 293.097 292.965 292.813 292.601 292.376 292.169 292.011 291.952 291.913 291.812 291.698 291.77 291.975 292.314 292.98 293.752 294.475 295.076 295.647 296.228 296.553 295.84 292.935 287.412 284.27 282.84 283.553 286.331 291.034 292.923 293.938 294.773 295.561 295.985 295.858 296.064 296.312 296.393 296.48 296.685 296.755 296.682 296.659 296.613 296.581 296.539 296.389 296.253 296.195 296.183 296.095 295.998 295.917 295.842 295.705 295.506 295.277 295.05 294.842 294.641 294.47 294.345 294.184 293.948 293.695 293.484 293.312 293.114 292.9 292.669 292.445 292.242 292.091 291.996 291.932 291.829 291.677 291.521 291.508 291.612 291.831 292.189 292.495 292.809 293.06 292.636 292.187 291.38 289.912 289.406 289.394 289.503 289.789 289.995 289.891 289.719 289.389 288.192 287.576 286.405 284.567 282.506 281.22 280.727 280.856 281.464 281.878 282.116 281.941 281.41 281.435 282.004 282.739 283.226 283.292 283.431 283.623 284.547 285.925 287.338 287.481 288.584 290.237 291.229 291.209 289.942 288.648 287.329 287.14 287.672 288.582 289.69 290.38 291.378 292.244 292.686 292.428 292.898 292.826 293.09 293.34 293.647 293.963 294.038 294.084 294.42 294.475 294.314 294.637 294.842 295.002 294.932 295.289 295.492 295.299 294.923 295.346 295.637 296.447 296.896 297.216 295.352 294.033 292.975 293.789 293.793 291.941 290.079 288.295 287.133 286.588 286.198 285.109 284.742 285.235 286.16 286.411 286.723 287.604 289.153 290.685 291.724 291.968 292.78 294.347 295.114 295.028 294.681 294.372 294.305 294.369 294.427 294.446 294.505 294.654 294.822 295.019 295.256 295.351 295.38 295.439 295.515 295.47 295.437 295.445 295.423 295.351 295.319 295.29 295.227 295.224 295.231 295.17 295.046 295.002 294.987 294.953 294.905 294.855 294.797 294.761 294.755 294.712 294.651 294.611 294.593 294.586 294.632 294.74 294.866 294.927 294.942 294.935 294.905 294.881 294.879 294.872 294.842 294.779 294.712 294.644 294.569 294.471 294.402 294.338 294.233 294.037 293.845 293.643 293.425 293.198 293.013 292.829 292.663 292.537 292.419 292.297 292.204 292.126 292.014 291.859 291.654 291.405 291.254 291.142 291.025 290.937 291.0 291.186 291.556 292.429 293.395 294.18 294.745 295.11 295.209 295.168 293.513 288.662 284.716 282.665 282.75 284.772 287.787 291.491 292.93 293.533 294.087 294.747 295.283 295.537 295.63 295.648 295.57 294.89 295.074 295.591 296.097 296.015 295.881 295.855 295.894 295.84 295.807 295.828 295.837 295.761 295.711 295.693 295.628 295.479 295.336 295.21 295.089 294.966 294.834 294.682 294.48 294.243 294.01 293.794 293.58 293.363 293.177 293.033 292.884 292.653 292.385 292.135 291.957 291.878 291.798 291.686 291.546 291.475 291.45 291.5 291.717 291.944 292.175 292.377 292.125 291.386 290.389 289.49 288.62 288.531 288.555 288.748 288.714 288.585 288.506 288.398 287.455 286.889 285.577 283.656 281.181 280.113 279.738 280.067 279.809 280.237 280.678 281.59 281.73 281.914 281.889 282.267 283.055 283.055 282.938 282.771 284.027 284.98 285.978 286.706 287.629 289.476 290.115 289.148 287.302 285.888 285.482 285.837 286.014 287.115 288.263 289.824 290.518 291.501 292.045 291.778 292.215 292.427 292.335 292.005 292.142 292.479 292.782 293.059 292.545 292.108 292.06 292.882 293.044 292.841 293.391 294.002 294.187 294.138 294.71 294.89 294.912 294.779 295.241 295.383 294.166 293.035 291.956 291.343 290.08 288.69 286.729 283.199 282.146 283.434 284.162 283.059 282.091 282.266 283.04 283.59 283.978 284.453 285.387 286.638 288.188 288.853 289.271 292.267 293.831 294.158 294.029 293.72 293.44 293.386 293.432 293.453 293.429 293.486 293.6 293.785 294.076 294.242 294.286 294.32 294.394 294.394 294.387 294.42 294.445 294.38 294.325 294.284 294.23 294.218 294.236 294.216 294.137 294.069 294.003 293.921 293.842 293.776 293.677 293.578 293.51 293.432 293.34 293.278 293.257 293.237 293.257 293.368 293.564 293.772 293.938 294.103 294.236 294.306 294.351 294.413 294.484 294.508 294.469 294.408 294.337 294.242 294.15 294.041 293.892 293.658 293.426 293.167 292.881 292.575 292.349 292.124 291.897 291.674 291.52 291.389 291.294 291.26 291.253 291.21 291.081 290.82 290.619 290.475 290.379 290.363 290.42 290.592 291.0 292.008 293.005 293.716 294.124 293.469 293.84 292.771 288.957 284.92 282.94 282.146 283.24 285.425 288.35 291.343 292.379 292.814 293.154 293.541 293.889 294.167 294.333 294.416 294.433 294.496 294.634 294.873 295.148 295.266 295.264 295.302 295.356 295.312 295.307 295.34 295.342 295.282 295.261 295.238 295.141 295.043 295.017 294.995 294.918 294.825 294.729 294.573 294.334 294.141 294.018 293.885 293.655 293.396 293.204 293.066 292.92 292.75 292.57 292.362 292.108 291.932 291.804 291.685 291.553 291.462 291.389 291.35 291.418 291.533 291.659 291.792 291.669 290.923 289.558 288.778 288.366 288.061 287.976 287.989 287.475 287.396 287.291 287.52 286.504 286.133 285.092 283.13 281.511 280.375 280.067 280.146 279.665 279.87 280.323 281.42 282.066 282.502 282.836 283.061 282.389 282.945 282.18 282.582 284.136 284.766 285.107 285.613 287.116 288.439 287.779 285.503 284.245 283.329 283.571 284.302 285.005 285.943 287.357 288.912 290.364 290.853 290.897 290.511 290.566 290.365 289.227 288.317 288.267 288.646 289.252 290.033 290.327 289.929 290.159 290.402 291.016 291.065 291.597 292.287 293.432 293.712 294.145 294.086 293.012 291.607 290.529 289.65 289.137 288.828 288.654 288.06 287.661 285.421 281.578 278.673 278.627 280.911 281.567 280.239 279.063 279.461 279.971 280.663 281.355 282.002 282.487 283.329 284.418 285.443 286.542 289.127 291.538 292.446 292.891 293.026 292.788 292.585 292.544 292.529 292.435 292.443 292.519 292.634 292.869 293.091 293.184 293.218 293.297 293.359 293.395 293.451 293.512 293.453 293.358 293.28 293.219 293.192 293.198 293.2 293.168 293.107 293.013 292.886 292.747 292.614 292.461 292.3 292.17 292.077 291.993 291.932 291.89 291.826 291.787 291.835 291.982 292.228 292.48 292.747 293.004 293.221 293.37 293.545 293.754 293.969 294.054 294.072 294.049 293.973 293.858 293.709 293.536 293.315 293.081 292.812 292.513 292.176 291.907 291.632 291.338 291.003 290.759 290.575 290.455 290.389 290.393 290.41 290.378 290.209 290.006 289.859 289.786 289.807 289.869 290.049 290.492 291.507 292.419 293.021 291.928 293.238 292.077 288.803 284.542 282.274 281.501 281.946 283.62 285.749 288.445 290.819 291.507 291.669 291.8 292.006 292.222 292.419 292.56 292.617 292.625 292.702 292.299 293.257 294.292 294.666 294.613 294.473 294.365 294.348 294.419 294.513 294.567 294.565 294.58 294.574 294.523 294.509 294.524 294.485 294.359 294.287 294.241 294.141 293.975 293.881 293.818 293.707 293.504 293.31 293.141 292.955 292.726 292.582 292.484 292.353 292.135 291.959 291.812 291.659 291.474 291.373 291.298 291.23 291.21 291.236 291.257 291.265 291.179 290.726 289.596 288.574 287.824 287.25 286.886 286.714 286.23 286.278 286.198 286.181 285.165 285.069 284.383 283.078 281.975 280.887 280.911 280.652 280.136 280.154 280.92 281.28 281.409 282.534 282.997 283.12 282.416 282.976 282.373 282.444 283.713 284.026 284.096 284.339 284.943 285.849 284.143 281.97 281.105 280.995 281.661 282.75 284.149 285.081 286.502 288.508 289.206 288.697 287.179 286.134 286.077 285.61 285.083 284.538 284.325 284.604 285.497 286.758 287.554 287.875 288.804 289.169 288.987 288.833 290.634 291.429 291.882 291.544 290.555 288.404 285.528 282.939 280.947 279.237 278.971 280.184 281.147 281.606 281.488 279.17 275.925 274.014 275.993 278.371 277.665 275.721 275.63 276.998 277.643 278.141 279.289 280.048 280.167 280.469 280.99 281.546 283.437 285.779 288.623 290.117 291.237 292.01 292.122 291.916 291.827 291.757 291.588 291.59 291.698 291.778 291.854 292.02 292.154 292.249 292.374 292.472 292.499 292.522 292.583 292.591 292.546 292.499 292.464 292.426 292.392 292.349 292.281 292.202 292.117 291.994 291.823 291.635 291.462 291.286 291.12 290.989 290.895 290.814 290.732 290.61 290.495 290.43 290.438 290.571 290.762 291.015 291.328 291.744 292.069 292.362 292.656 293.0 293.241 293.411 293.533 293.606 293.563 293.448 293.291 293.092 292.874 292.622 292.332 291.967 291.607 291.264 290.93 290.57 290.269 290.012 289.784 289.572 289.475 289.472 289.5 289.446 289.274 289.134 289.084 289.153 289.29 289.538 290.002 290.892 291.617 291.416 291.926 291.524 289.081 284.442 281.869 280.614 280.909 282.143 283.81 286.018 287.924 289.816 290.232 290.21 290.265 290.482 290.754 290.956 290.932 290.879 290.972 290.877 289.723 292.109 293.476 293.934 293.761 293.457 293.209 293.216 293.383 293.558 293.676 293.722 293.751 293.767 293.78 293.838 293.869 293.834 293.762 293.76 293.741 293.663 293.544 293.465 293.353 293.199 293.044 292.955 292.845 292.687 292.496 292.365 292.239 292.087 291.929 291.814 291.665 291.461 291.236 291.148 291.087 291.005 290.938 290.917 290.865 290.771 290.658 290.473 290.019 288.838 287.232 286.552 285.868 284.571 284.592 284.818 284.774 284.908 283.81 283.914 283.556 282.993 282.191 282.128 281.712 281.135 280.863 280.906 281.063 281.399 282.113 283.074 283.596 283.321 282.366 282.32 282.466 283.401 283.347 283.425 283.367 282.83 282.534 282.138 280.671 279.802 279.376 279.78 280.917 282.655 283.7 285.588 286.512 287.209 286.618 283.956 281.14 280.256 280.499 280.776 281.019 280.873 281.198 281.667 282.314 283.295 284.332 286.162 287.239 287.79 287.983 288.265 288.357 288.656 287.191 284.569 280.632 276.33 272.694 270.147 268.094 266.681 267.681 269.972 271.889 273.048 273.069 270.06 266.942 267.54 272.35 274.802 272.952 271.424 273.024 275.41 275.974 276.226 277.651 278.535 278.575 278.771 278.876 278.867 279.761 282.833 285.367 287.246 288.902 290.238 290.746 290.696 290.789 290.932 290.86 290.836 290.943 291.047 291.081 291.188 291.31 291.401 291.499 291.605 291.645 291.659 291.711 291.753 291.741 291.714 291.702 291.685 291.645 291.579 291.478 291.367 291.289 291.186 291.017 290.792 290.623 290.47 290.302 290.116 289.993 289.891 289.796 289.676 289.55 289.431 289.344 289.325 289.353 289.447 289.672 290.128 290.558 290.912 291.25 291.664 292.026 292.329 292.623 292.937 293.114 293.141 293.062 292.893 292.67 292.421 292.138 291.78 291.368 290.974 290.595 290.199 289.807 289.444 289.103 288.788 288.617 288.587 288.613 288.573 288.383 288.213 288.16 288.309 288.604 288.955 289.408 290.058 290.267 290.428 290.767 288.902 284.747 281.853 280.124 279.675 280.388 281.686 283.241 285.162 286.41 287.5 288.164 287.8 288.066 288.506 288.912 289.227 289.258 289.209 289.103 288.93 288.895 291.16 292.467 292.902 292.7 292.405 292.148 292.135 292.315 292.516 292.689 292.809 292.862 292.901 292.954 293.054 293.115 293.145 293.18 293.222 293.173 293.063 292.943 292.842 292.7 292.547 292.433 292.346 292.244 292.159 292.113 292.021 291.865 291.708 291.63 291.548 291.362 291.105 290.868 290.768 290.679 290.585 290.528 290.515 290.456 290.329 290.207 290.167 290.079 289.622 288.587 286.706 284.856 283.671 283.093 283.295 283.097 283.402 281.806 281.931 282.398 282.993 282.59 282.38 281.923 281.62 281.085 280.906 281.256 282.086 283.203 284.634 284.966 283.571 283.142 283.157 283.544 283.619 283.619 283.688 283.465 282.747 282.515 281.437 279.829 279.083 279.139 280.044 281.194 282.523 283.859 283.874 284.685 283.608 281.127 278.295 276.42 276.087 276.639 277.365 277.748 278.74 279.567 279.555 279.488 279.511 280.579 282.558 284.698 286.22 287.028 286.773 285.433 283.099 278.525 273.335 268.206 260.561 257.132 256.517 257.33 257.466 258.944 261.594 263.548 264.44 263.744 262.437 261.252 262.866 267.748 270.705 268.947 269.357 272.098 274.48 274.305 274.29 275.883 277.129 277.307 277.416 277.711 277.658 278.221 280.303 282.434 284.35 286.304 287.844 288.353 288.31 288.674 289.347 289.785 289.905 290.07 290.238 290.34 290.455 290.556 290.592 290.611 290.718 290.831 290.924 291.01 291.044 291.01 290.95 290.896 290.857 290.833 290.799 290.723 290.606 290.524 290.431 290.278 290.025 289.834 289.674 289.502 289.283 289.125 288.999 288.893 288.794 288.704 288.602 288.505 288.419 288.322 288.252 288.303 288.612 289.066 289.489 289.902 290.349 290.72 291.027 291.363 291.805 292.218 292.448 292.532 292.5 292.356 292.155 291.908 291.598 291.197 290.771 290.303 289.78 289.251 288.82 288.441 288.127 287.937 287.849 287.779 287.656 287.448 287.323 287.353 287.581 288.0 288.398 288.741 288.921 288.268 289.009 288.524 285.426 281.989 279.802 278.685 278.693 279.345 280.556 281.943 283.188 284.132 284.753 284.818 285.001 285.06 285.149 285.287 286.725 286.978 286.828 286.221 285.559 287.73 289.949 291.084 291.608 291.5 291.253 291.057 291.006 291.155 291.367 291.578 291.783 291.906 291.991 292.073 292.189 292.275 292.351 292.432 292.487 292.454 292.385 292.312 292.195 292.039 291.905 291.824 291.725 291.612 291.542 291.507 291.379 291.226 291.141 291.159 291.093 290.92 290.697 290.481 290.313 290.153 290.032 289.979 289.946 289.887 289.786 289.699 289.701 289.74 289.671 288.821 287.138 284.496 282.46 281.04 280.981 281.429 281.391 280.173 279.998 280.693 282.155 282.887 282.479 282.157 282.149 281.804 281.757 282.341 284.093 285.56 286.048 285.835 283.725 283.166 283.62 284.366 284.676 285.091 285.258 285.162 285.053 284.118 282.284 279.919 279.265 279.001 280.039 281.023 282.055 283.077 282.789 281.56 279.482 277.048 274.951 273.961 274.293 275.105 275.865 276.372 277.177 277.776 277.579 276.311 275.712 275.967 277.743 281.022 283.875 285.473 284.025 280.233 274.116 265.632 257.571 254.369 252.198 251.453 251.96 253.122 253.898 255.001 256.465 258.282 259.72 259.545 259.165 258.663 260.678 264.318 267.105 267.066 268.485 271.384 272.658 271.951 272.473 274.638 275.65 275.72 275.748 276.172 276.407 276.881 278.713 280.194 281.853 283.869 285.347 285.428 283.938 285.29 286.674 287.67 288.161 288.6 288.99 289.254 289.418 289.542 289.59 289.584 289.665 289.791 289.922 290.047 290.126 290.135 290.116 290.083 290.014 289.939 289.881 289.816 289.703 289.618 289.543 289.427 289.199 289.007 288.853 288.705 288.511 288.346 288.214 288.104 288.022 287.985 287.933 287.839 287.699 287.537 287.387 287.294 287.343 287.608 287.966 288.393 288.858 289.276 289.601 289.951 290.396 290.926 291.337 291.649 291.861 291.944 291.849 291.638 291.335 290.918 290.467 289.942 289.359 288.779 288.368 288.01 287.697 287.43 287.23 287.006 286.744 286.541 286.6 286.85 287.234 287.709 287.978 288.021 287.582 286.269 285.855 284.642 282.177 279.551 277.827 277.287 277.695 278.551 279.756 280.932 281.782 282.462 282.768 282.822 282.57 282.566 282.814 282.777 283.109 283.294 283.374 283.297 283.375 285.486 287.649 289.022 289.956 290.256 290.195 290.073 290.052 290.214 290.428 290.626 290.829 290.984 291.097 291.185 291.288 291.383 291.475 291.568 291.668 291.737 291.789 291.799 291.671 291.483 291.317 291.211 291.125 291.052 290.989 290.877 290.689 290.561 290.537 290.558 290.493 290.395 290.294 290.102 289.842 289.608 289.462 289.355 289.205 289.052 288.951 288.942 289.019 289.146 289.227 288.711 287.401 284.421 281.783 280.161 278.874 279.042 279.644 278.968 279.055 279.682 280.815 281.843 281.945 282.136 282.816 283.443 284.106 285.114 285.965 286.234 286.097 285.536 284.379 284.262 284.532 284.695 284.877 285.096 285.341 285.575 285.515 284.849 282.834 279.988 278.669 278.792 279.98 280.88 281.224 280.939 279.771 277.484 275.348 273.808 273.129 273.59 274.518 275.172 275.412 275.497 275.637 275.267 274.102 272.508 271.197 270.839 272.382 275.771 279.41 280.404 277.913 271.94 260.636 254.418 250.964 249.559 249.794 250.815 251.532 252.098 252.494 252.932 253.646 255.386 256.575 257.122 257.184 258.105 259.106 261.42 263.784 265.211 267.117 269.274 270.068 270.607 272.354 274.55 275.227 274.946 275.206 275.527 275.649 276.156 277.589 278.892 280.063 281.469 282.739 282.755 280.765 281.655 283.502 284.507 285.186 285.92 286.687 287.346 287.795 288.108 288.278 288.329 288.389 288.477 288.583 288.722 288.872 288.96 289.027 289.083 289.076 289.001 288.921 288.849 288.735 288.623 288.536 288.446 288.286 288.144 288.036 287.922 287.752 287.583 287.448 287.331 287.232 287.196 287.167 287.077 286.898 286.715 286.593 286.493 286.402 286.441 286.647 286.99 287.404 287.869 288.233 288.557 288.869 289.273 289.713 290.198 290.664 291.062 291.172 291.081 290.844 290.453 290.008 289.503 288.974 288.427 287.991 287.591 287.219 286.893 286.627 286.284 285.893 285.663 285.942 286.513 287.109 287.421 287.213 286.72 285.378 284.071 283.461 282.028 279.733 277.486 276.263 276.005 276.799 278.01 279.011 280.151 280.859 281.023 281.25 281.207 280.849 280.793 280.996 280.984 280.943 280.909 280.667 280.614 280.94 281.876 284.044 286.04 287.439 288.576 289.076 289.223 289.295 289.496 289.712 289.887 290.05 290.207 290.323 290.399 290.47 290.546 290.625 290.708 290.825 290.942 291.051 291.118 291.067 290.943 290.794 290.643 290.532 290.464 290.403 290.269 290.12 290.051 290.045 289.991 289.906 289.863 289.833 289.628 289.318 289.041 288.845 288.626 288.358 288.102 287.92 287.901 287.996 288.179 288.4 288.314 287.632 286.044 282.966 280.808 279.099 278.737 278.826 279.657 279.081 279.181 279.881 280.738 281.31 282.167 282.792 284.37 285.351 285.82 285.935 285.852 285.591 285.053 284.542 284.206 283.965 283.94 283.881 283.91 284.043 284.229 284.254 283.779 282.673 279.316 278.456 278.812 279.569 280.467 280.074 278.664 276.45 274.183 272.638 272.55 273.365 274.445 275.135 275.362 274.894 274.747 274.55 273.668 272.015 270.082 268.026 266.704 266.845 269.12 271.392 270.87 266.536 259.931 255.454 252.372 251.189 251.583 252.382 252.245 251.633 251.571 251.365 251.666 252.477 253.951 254.922 255.351 255.84 256.62 258.352 259.963 261.983 263.857 265.837 267.511 268.925 270.391 272.391 274.301 274.769 274.712 274.924 275.01 274.911 275.582 276.656 277.637 278.16 278.727 279.676 280.59 280.412 279.588 279.474 279.471 280.712 282.464 283.371 284.462 285.578 286.396 286.82 286.919 286.955 287.018 287.109 287.26 287.475 287.61 287.705 287.802 287.899 287.909 287.886 287.849 287.755 287.593 287.428 287.28 287.13 287.022 286.952 286.875 286.754 286.611 286.497 286.388 286.269 286.182 286.134 286.06 285.915 285.775 285.732 285.695 285.595 285.504 285.579 285.787 286.071 286.442 286.797 287.133 287.412 287.71 288.055 288.493 288.982 289.499 289.854 290.021 290.01 289.816 289.47 289.057 288.613 288.124 287.611 287.124 286.679 286.31 285.994 285.569 285.114 284.892 285.415 286.199 286.706 286.465 284.968 283.312 281.776 281.22 280.466 279.084 277.389 275.525 274.221 274.145 275.29 276.74 278.396 279.521 279.991 279.927 279.928 279.403 278.755 278.525 278.621 278.634 278.448 278.426 278.289 278.229 278.337 278.741 279.755 281.348 283.728 285.956 287.307 288.037 288.315 288.521 288.776 289.03 289.278 289.485 289.634 289.74 289.822 289.879 289.922 289.972 290.054 290.131 290.202 290.275 290.343 290.361 290.318 290.196 290.051 289.944 289.839 289.686 289.567 289.517 289.494 289.401 289.32 289.284 289.241 289.043 288.775 288.501 288.192 287.827 287.491 287.19 286.919 286.781 286.81 286.99 287.354 287.686 287.768 287.264 285.782 282.909 281.293 280.518 279.945 281.96 281.066 280.411 280.599 280.873 281.211 281.825 282.567 284.275 285.105 285.321 285.287 285.21 285.005 284.331 283.603 283.097 282.874 282.243 282.213 281.673 281.309 281.046 280.693 280.444 279.987 277.614 277.215 277.727 278.353 278.116 276.879 275.039 272.879 271.464 271.793 273.507 275.529 276.095 275.764 275.053 274.64 274.669 274.524 273.732 272.743 271.651 269.451 266.888 263.475 261.568 260.36 258.61 256.894 255.591 255.418 257.167 258.436 258.383 257.414 255.919 254.182 252.676 251.696 252.379 253.247 254.733 255.554 255.57 255.191 255.998 257.4 259.277 261.157 263.342 265.384 267.075 268.491 269.897 271.445 272.717 273.604 274.297 274.455 274.387 274.037 274.45 275.23 275.909 275.914 275.16 275.167 278.123 279.553 280.152 280.126 279.629 278.632 278.178 279.176 280.857 283.177 284.537 285.244 285.371 285.35 285.379 285.441 285.565 285.799 285.975 286.097 286.21 286.361 286.432 286.464 286.471 286.416 286.248 286.036 285.836 285.671 285.565 285.517 285.496 285.467 285.42 285.386 285.34 285.246 285.081 284.931 284.787 284.628 284.496 284.501 284.534 284.503 284.456 284.563 284.762 285.017 285.303 285.582 285.851 286.095 286.343 286.631 286.912 287.232 287.675 288.25 288.705 288.972 288.985 288.754 288.445 288.112 287.736 287.212 286.681 286.184 285.759 285.346 284.901 284.514 284.451 285.152 285.809 285.765 284.085 281.343 279.153 278.042 277.575 277.107 276.12 274.372 272.788 271.583 271.744 273.202 275.017 276.867 278.414 279.091 279.157 278.937 278.111 277.311 276.745 276.528 276.381 276.37 276.279 276.223 276.111 276.069 276.253 276.506 277.07 278.238 281.743 284.77 286.231 286.972 287.329 287.656 288.019 288.364 288.619 288.815 288.998 289.17 289.27 289.329 289.385 289.47 289.544 289.602 289.658 289.738 289.791 289.793 289.74 289.664 289.589 289.486 289.307 289.129 288.997 288.899 288.8 288.733 288.674 288.591 288.462 288.312 288.084 287.678 287.185 286.777 286.43 286.088 285.899 285.911 286.117 286.587 287.137 287.592 287.551 286.576 285.218 284.126 283.401 283.028 283.926 284.101 283.828 283.441 283.065 282.903 283.098 283.691 284.391 284.594 284.003 284.258 284.542 284.242 283.197 282.053 280.911 281.25 281.053 280.214 278.329 276.103 276.158 275.915 275.138 274.809 274.41 274.335 274.376 274.082 273.266 271.474 269.618 268.226 269.517 273.836 277.276 279.203 279.239 277.606 275.644 275.019 275.21 275.798 275.311 275.075 274.259 272.499 269.593 264.163 259.939 256.166 253.593 253.166 255.324 258.925 261.726 263.697 264.136 263.772 262.125 259.682 257.563 256.141 256.136 256.565 257.089 257.022 255.957 255.42 256.55 257.93 260.062 262.263 264.667 265.666 267.054 267.685 268.339 269.297 270.67 271.964 273.345 273.91 273.498 272.538 272.219 273.77 274.197 273.745 272.686 272.134 274.862 277.675 279.141 279.669 279.511 279.078 278.126 277.036 277.941 280.913 282.463 283.342 283.539 283.5 283.508 283.546 283.631 283.859 284.064 284.212 284.324 284.444 284.477 284.469 284.471 284.492 284.438 284.335 284.225 284.129 284.039 283.978 283.947 283.931 283.923 283.945 283.983 283.975 283.863 283.675 283.461 283.246 283.096 283.152 283.278 283.352 283.367 283.502 283.735 283.989 284.249 284.487 284.723 284.976 285.238 285.53 285.767 286.016 286.335 286.835 287.247 287.54 287.682 287.645 287.522 287.372 287.146 286.702 286.122 285.556 285.067 284.609 284.253 284.081 284.251 284.869 285.016 283.728 280.741 277.949 275.703 274.438 273.826 273.393 272.679 270.703 267.773 266.759 266.821 271.135 273.782 275.971 277.051 277.57 277.816 277.544 276.863 275.976 275.256 274.871 274.596 274.442 274.288 274.066 273.602 273.424 273.472 273.767 273.889 274.781 277.705 281.681 283.781 285.094 285.817 286.292 286.761 287.191 287.534 287.777 288.004 288.229 288.401 288.521 288.621 288.728 288.828 288.922 289.006 289.063 289.072 289.068 289.068 289.095 289.12 289.119 289.043 288.892 288.723 288.561 288.431 288.326 288.184 288.004 287.881 287.803 287.644 287.268 286.795 286.351 285.92 285.479 285.291 285.303 285.497 285.939 286.459 286.825 285.886 284.951 283.377 282.735 282.674 283.459 283.205 284.294 284.685 284.511 284.159 283.918 283.886 283.99 284.122 284.088 283.867 283.467 283.083 282.976 281.626 279.651 277.925 278.774 279.287 277.982 275.217 273.254 271.833 271.054 270.854 270.814 270.955 270.052 268.657 267.165 265.899 265.364 265.64 267.364 270.989 276.67 279.512 281.145 280.766 278.933 276.647 275.781 275.744 276.004 276.145 275.977 275.43 273.752 271.32 265.746 260.866 256.158 253.544 254.068 257.525 260.731 263.472 266.468 268.235 268.937 268.288 266.014 263.841 261.29 260.46 259.96 259.434 258.412 257.3 257.193 258.767 260.586 262.661 264.363 265.37 265.879 265.605 265.554 265.544 266.963 268.551 269.971 271.421 272.077 272.547 272.553 272.322 272.456 272.004 271.214 269.637 270.166 273.065 275.285 276.888 277.611 277.826 277.896 277.723 276.751 276.416 278.754 280.063 280.964 281.297 281.357 281.431 281.517 281.626 281.831 281.988 282.071 282.103 282.116 282.083 282.047 282.064 282.168 282.274 282.329 282.366 282.385 282.334 282.238 282.144 282.073 282.048 282.105 282.246 282.423 282.529 282.472 282.334 282.173 282.046 282.077 282.174 282.229 282.226 282.276 282.478 282.788 283.117 283.479 283.803 284.089 284.342 284.592 284.812 285.052 285.345 285.692 285.979 286.171 286.26 286.281 286.296 286.311 286.247 285.961 285.403 284.851 284.355 283.931 283.654 283.635 283.836 284.111 283.454 280.522 277.815 274.986 272.866 271.339 270.321 269.712 268.878 266.947 265.898 264.77 265.184 269.549 272.831 275.024 276.118 276.154 275.971 275.679 274.929 274.115 273.556 273.161 272.761 272.499 272.387 272.116 271.572 271.214 271.166 271.422 271.451 271.916 273.82 277.636 280.042 281.768 282.966 283.791 284.523 285.202 285.864 286.298 286.633 286.898 287.127 287.31 287.458 287.567 287.66 287.782 287.913 288.008 288.03 288.061 288.132 288.227 288.305 288.387 288.459 288.448 288.365 288.249 288.14 288.03 287.862 287.601 287.362 287.18 286.962 286.648 286.349 285.997 285.542 285.082 284.864 284.793 284.86 285.156 285.516 285.644 282.909 281.738 280.515 279.839 280.116 280.992 281.081 282.943 283.773 284.062 284.038 283.951 283.511 283.448 283.657 283.338 283.035 282.404 281.131 281.461 279.607 276.864 276.333 277.564 277.704 276.76 275.014 273.503 272.163 270.942 270.005 270.395 270.859 270.518 269.08 267.665 266.45 265.465 265.842 269.227 272.998 277.339 280.613 281.561 280.68 278.642 276.745 275.993 275.669 275.555 275.462 275.725 275.016 273.728 271.637 268.176 263.416 259.5 257.093 256.983 258.961 261.628 264.208 265.784 267.641 268.491 268.326 267.268 266.454 265.952 266.113 265.169 264.091 261.235 259.894 259.868 261.682 263.04 264.336 264.823 265.122 264.959 264.628 264.272 264.565 264.859 265.8 266.896 268.096 269.055 269.644 270.313 270.491 269.365 269.102 267.76 265.627 266.397 270.365 272.488 274.146 274.892 275.226 275.66 275.982 275.989 274.753 275.934 277.508 278.331 278.833 279.074 279.221 279.331 279.42 279.517 279.541 279.493 279.41 279.329 279.266 279.253 279.327 279.511 279.751 279.927 280.056 280.156 280.193 280.161 280.153 280.185 280.256 280.42 280.669 280.938 281.136 281.182 281.152 281.103 281.075 281.104 281.15 281.182 281.184 281.218 281.376 281.636 281.969 282.366 282.762 283.097 283.405 283.681 283.942 284.191 284.42 284.621 284.821 284.951 285.028 285.046 285.09 285.182 285.208 285.052 284.631 284.168 283.728 283.346 283.075 283.033 283.016 282.74 280.719 277.754 275.005 272.098 270.007 268.953 268.481 267.394 266.548 265.751 264.783 264.014 265.18 269.022 271.844 273.568 273.941 273.813 273.543 273.247 272.717 271.983 271.37 270.986 270.646 270.509 270.373 270.103 269.709 269.401 269.244 269.086 268.861 268.827 269.722 272.291 274.953 276.74 278.346 279.786 280.992 282.069 283.076 283.775 284.278 284.697 285.129 285.474 285.76 285.972 286.116 286.255 286.385 286.455 286.476 286.54 286.673 286.811 286.888 286.979 287.169 287.389 287.545 287.628 287.647 287.615 287.523 287.3 286.965 286.638 286.303 285.978 285.752 285.476 285.075 284.687 284.474 284.348 284.302 284.5 284.741 284.669 281.667 279.955 278.469 278.084 278.19 278.817 278.729 280.72 282.239 282.742 283.04 283.2 282.861 282.911 282.811 281.998 280.977 280.164 280.591 279.917 278.084 275.544 274.839 275.167 275.934 275.644 275.919 276.1 275.791 274.545 273.855 274.344 275.34 275.525 274.497 272.615 269.622 267.598 267.788 271.445 274.361 277.941 280.074 280.438 279.78 277.751 276.331 275.473 275.133 274.785 274.361 274.094 274.173 273.443 272.082 270.075 267.355 263.513 261.003 259.47 259.843 261.13 262.868 263.991 264.573 264.508 264.516 264.63 264.938 265.481 265.923 265.63 264.907 263.432 261.432 261.656 262.098 263.019 263.281 263.349 263.557 263.523 263.489 263.593 263.325 263.159 263.068 263.524 264.335 265.592 266.479 266.846 266.803 266.407 265.72 264.427 262.801 262.724 265.898 268.95 270.598 271.436 271.909 272.661 273.49 273.97 273.526 274.088 274.556 275.267 275.909 276.298 276.46 276.525 276.522 276.438 276.335 276.288 276.314 276.419 276.501 276.547 276.651 276.858 277.128 277.312 277.532 277.773 277.991 278.123 278.25 278.374 278.511 278.739 279.053 279.38 279.622 279.753 279.811 279.897 280.013 280.142 280.232 280.296 280.343 280.382 280.475 280.646 280.89 281.247 281.736 282.151 282.491 282.754 282.956 283.096 283.248 283.437 283.673 283.843 283.883 283.858 283.854 283.997 284.138 284.143 283.919 283.486 283.035 282.632 282.363 282.274 282.059 281.322 278.7 276.037 273.881 271.973 270.148 269.227 267.423 266.487 266.199 265.783 264.945 264.312 265.796 268.058 271.012 272.094 271.661 271.531 271.103 270.978 270.491 269.586 268.891 268.404 268.077 267.916 267.839 267.857 267.811 267.67 267.428 267.188 267.005 266.823 266.947 267.376 268.873 271.324 273.282 275.182 276.833 278.127 279.122 279.931 280.565 281.141 281.76 282.29 282.782 283.25 283.622 283.816 283.875 283.732 283.574 283.623 283.875 284.133 284.216 284.267 284.6 285.317 285.958 286.482 286.843 287.008 287.068 286.978 286.678 286.302 285.903 285.557 285.311 285.028 284.625 284.287 284.071 283.918 283.865 284.024 284.189 283.981 282.383 279.549 278.258 277.68 277.56 278.008 278.67 278.901 279.915 280.57 280.81 281.15 281.296 281.417 280.427 279.375 279.604 279.81 279.265 277.826 275.735 274.47 273.96 274.201 274.585 275.036 276.195 277.057 277.444 277.447 277.409 277.55 277.741 277.583 276.619 274.884 272.514 271.177 271.73 273.326 276.033 278.137 278.886 278.348 276.752 275.723 274.959 274.434 274.286 273.936 273.541 273.346 273.382 273.279 272.914 271.574 269.781 268.169 266.092 263.419 262.141 261.407 261.455 260.962 260.384 260.184 260.112 261.051 261.795 262.308 262.251 262.122 261.281 259.487 257.83 256.848 256.882 258.435 260.321 260.898 261.164 261.579 261.927 262.133 261.699 261.436 261.383 261.288 261.751 262.237 263.315 263.063 263.78 263.782 263.937 262.722 261.243 260.995 261.97 264.545 266.17 266.997 267.662 268.826 270.151 271.099 270.407 270.002 270.86 271.674 272.042 272.538 272.807 272.909 272.93 272.949 273.041 273.268 273.603 273.972 274.249 274.416 274.598 274.823 275.073 275.284 275.522 275.772 276.001 276.173 276.354 276.56 276.777 277.091 277.444 277.838 278.209 278.502 278.708 278.9 279.089 279.257 279.375 279.448 279.523 279.609 279.728 279.884 280.1 280.398 280.823 281.233 281.524 281.738 281.9 282.014 282.14 282.295 282.472 282.622 282.667 282.678 282.731 282.898 283.056 283.108 283.022 282.727 282.304 281.894 281.617 281.498 281.241 280.386 278.138 275.367 273.805 272.722 271.816 270.082 267.89 266.834 266.011 265.703 265.078 264.996 266.35 268.579 270.089 270.549 268.969 268.181 269.106 268.664 267.864 266.799 265.441 265.268 265.071 264.902 265.38 265.413 265.271 265.284 265.235 265.222 265.208 265.18 265.083 264.963 265.042 265.951 269.363 271.272 272.992 273.881 274.408 274.982 275.537 276.151 276.764 277.26 277.799 278.388 278.913 279.118 279.101 278.73 278.503 278.715 279.245 279.809 280.105 280.392 280.967 282.047 283.421 284.631 285.496 285.995 286.34 286.526 286.405 286.077 285.658 285.339 285.111 284.85 284.454 284.107 283.814 283.562 283.482 283.602 283.742 283.467 281.456 279.962 279.313 279.271 278.91 278.698 279.52 278.513 277.632 277.024 276.715 276.817 277.955 278.323 277.16 277.699 278.163 277.805 276.364 275.612 274.668 273.865 273.675 273.77 274.007 274.436 275.261 276.684 277.315 277.482 277.539 277.63 277.62 277.259 276.11 274.634 273.461 273.002 273.354 275.162 276.701 277.633 277.699 276.92 275.858 274.753 273.92 273.47 273.069 272.777 272.438 272.364 272.461 272.57 272.218 271.575 270.801 269.826 268.834 267.4 265.905 264.163 262.714 261.633 261.158 261.027 261.097 260.848 260.009 259.035 258.115 256.983 256.004 254.98 253.809 252.931 252.843 253.752 255.286 256.809 258.06 258.764 259.636 259.765 259.82 260.211 259.466 259.465 259.171 259.592 260.065 261.061 261.856 262.222 261.794 260.392 259.76 259.625 259.584 259.933 259.766 259.983 261.43 264.257 265.765 267.06 267.421 266.196 265.982 267.085 267.488 267.6 268.088 268.788 269.407 269.988 270.517 271.074 271.657 272.191 272.626 272.904 273.162 273.411 273.644 273.856 274.079 274.307 274.505 274.681 274.865 275.125 275.454 275.861 276.302 276.754 277.17 277.521 277.839 278.097 278.314 278.467 278.576 278.663 278.768 278.9 279.062 279.253 279.457 279.708 280.002 280.352 280.603 280.784 280.922 281.039 281.139 281.267 281.401 281.515 281.557 281.555 281.593 281.723 281.911 282.018 282.008 281.863 281.537 281.222 281.011 280.894 280.628 279.747 278.052 275.413 274.383 273.432 272.566 270.256 268.416 266.684 265.433 265.4 265.688 265.354 267.136 268.072 268.742 268.564 268.113 267.232 266.461 265.696 264.486 263.735 263.169 263.132 262.9 262.723 262.874 262.847 262.761 262.826 262.866 262.726 262.826 262.864 262.841 262.676 262.55 262.904 263.944 266.617 268.557 268.76 269.22 269.925 270.597 271.233 272.001 272.809 273.419 273.902 274.28 274.378 274.212 273.983 274.246 274.858 275.598 276.385 276.915 277.421 278.156 279.099 280.224 281.644 283.123 284.192 285.013 285.696 285.97 285.929 285.566 285.198 284.957 284.753 284.442 284.1 283.748 283.397 283.277 283.386 283.573 283.567 283.249 282.824 282.62 282.522 282.278 281.539 280.385 278.885 277.418 276.037 274.93 274.218 274.094 274.263 274.646 275.009 275.476 275.479 275.399 275.044 274.568 274.137 273.753 273.553 273.464 273.704 274.266 274.85 275.839 275.883 275.478 275.179 275.496 274.987 274.247 273.852 273.596 273.404 273.582 274.493 275.967 276.438 276.628 276.478 275.783 274.498 273.149 272.348 271.768 271.524 271.3 270.93 270.768 270.749 270.74 270.141 270.112 269.868 269.481 268.919 268.24 266.685 264.666 263.571 263.033 261.992 261.408 259.842 258.358 256.813 254.942 253.687 252.528 251.524 250.859 250.402 251.202 252.052 253.313 254.779 256.002 256.684 256.793 256.855 256.996 257.13 257.472 257.52 257.59 257.501 257.574 258.072 258.462 258.26 258.015 257.749 257.597 257.922 258.124 257.726 256.982 256.665 257.065 258.733 261.004 261.835 262.49 262.941 263.301 263.284 263.201 263.039 263.622 264.979 266.487 267.811 268.856 269.664 270.359 270.927 271.401 271.751 272.078 272.381 272.643 272.87 273.081 273.309 273.539 273.792 274.053 274.349 274.689 275.085 275.581 276.043 276.461 276.807 277.106 277.376 277.614 277.795 277.922 278.028 278.144 278.287 278.458 278.678 278.901 279.105 279.301 279.492 279.686 279.843 279.989 280.136 280.255 280.316 280.349 280.379 280.428 280.472 280.522 280.578 280.683 280.836 280.951 280.946 280.764 280.508 280.356 280.254 279.994 279.047 277.586 275.131 274.305 273.463 272.352 270.79 268.165 266.551 265.433 265.294 265.608 266.155 266.559 266.365 266.077 265.504 264.952 264.211 263.405 263.02 262.249 261.885 261.776 261.568 261.375 261.282 261.124 260.87 260.647 260.539 260.513 260.493 260.456 260.582 260.736 260.798 260.721 260.663 260.622 260.951 261.351 261.852 262.527 263.7 265.816 268.112 269.051 269.801 270.174 270.321 270.397 270.328 270.252 270.292 270.751 271.614 272.619 273.716 274.555 275.323 276.141 276.88 277.635 278.58 279.739 281.049 282.57 284.004 284.829 285.3 285.326 285.063 284.776 284.509 284.267 283.988 283.644 283.27 283.145 283.274 283.562 283.702 283.705 283.665 283.678 283.628 283.334 282.499 280.382 279.29 277.962 276.524 275.141 273.934 273.25 273.013 273.146 273.471 274.096 274.577 274.822 274.78 274.542 274.161 273.698 273.246 272.869 273.202 273.577 273.957 274.0 273.804 273.651 273.553 273.45 273.345 273.17 273.203 273.275 273.104 272.97 273.097 273.706 274.42 274.701 274.563 274.186 273.215 271.457 270.545 270.085 269.912 269.728 269.425 268.887 268.392 267.949 267.436 267.112 266.653 266.38 266.281 265.868 265.168 264.223 263.233 262.125 261.185 259.736 257.469 255.607 253.52 252.191 250.829 249.967 249.123 248.55 248.429 249.393 250.676 252.339 254.572 254.865 255.509 255.31 254.984 255.161 255.467 255.637 255.997 256.204 255.753 255.53 255.536 256.273 256.214 256.013 256.246 256.365 256.593 256.442 255.626 254.902 254.472 254.815 255.283 256.877 258.283 258.301 258.182 259.962 260.227 260.049 259.988 260.857 262.508 264.509 266.412 267.893 268.843 269.564 270.111 270.565 270.948 271.291 271.612 271.893 272.172 272.445 272.758 273.093 273.424 273.74 274.015 274.302 274.623 275.06 275.548 275.974 276.317 276.564 276.782 276.97 277.148 277.3 277.432 277.566 277.721 277.905 278.116 278.359 278.525 278.633 278.713 278.832 278.991 279.126 279.21 279.259 279.3 279.358 279.431 279.485 279.5 279.502 279.56 279.682 279.865 279.987 279.979 279.889 279.745 279.579 279.33 278.82 277.8 275.52 273.703 272.78 271.989 270.659 268.354 267.011 265.789 264.889 264.794 265.337 265.273 264.866 264.248 263.497 262.816 262.428 261.501 260.395 260.021 260.215 260.294 260.171 260.01 259.684 259.554 259.104 258.817 258.591 258.388 258.248 258.134 258.1 258.095 258.434 258.753 258.817 258.599 258.301 258.112 258.261 258.901 260.709 262.1 263.662 264.957 266.134 266.689 266.893 267.086 267.291 267.215 267.287 267.414 267.818 268.654 269.815 271.317 272.569 273.614 274.566 275.256 275.843 276.475 277.202 278.105 279.435 281.23 282.654 283.634 284.124 284.218 284.205 284.086 283.934 283.747 283.457 283.155 283.041 283.195 283.436 283.477 283.435 283.335 283.271 283.171 282.818 281.63 280.04 279.337 278.461 277.405 276.197 275.14 274.264 273.718 273.517 273.644 273.986 274.38 274.643 274.667 274.395 273.958 273.465 273.023 272.968 273.174 273.431 273.489 273.26 273.03 272.824 272.766 272.719 272.643 272.51 272.515 272.392 272.244 271.961 271.708 271.607 271.486 271.378 271.416 270.98 270.214 269.489 268.68 268.245 268.262 268.26 267.874 267.443 266.754 266.071 265.39 264.538 263.549 262.837 262.421 262.27 262.3 261.877 261.355 260.509 259.078 257.456 255.399 253.34 251.625 250.698 250.025 249.546 248.881 248.514 248.133 248.513 250.44 252.171 253.365 254.992 255.176 255.506 255.058 254.678 254.28 254.371 254.566 254.641 254.574 254.227 253.909 254.253 254.775 254.775 255.121 254.987 254.867 254.443 254.13 253.61 252.857 252.884 253.323 253.828 254.972 254.906 254.362 257.371 257.905 257.809 258.416 259.64 261.477 263.738 265.81 267.397 268.269 268.896 269.42 269.94 270.436 270.811 271.133 271.425 271.747 272.135 272.556 272.987 273.379 273.736 273.994 274.217 274.453 274.744 275.169 275.567 275.88 276.083 276.221 276.349 276.487 276.64 276.796 276.954 277.083 277.237 277.425 277.649 277.856 277.955 278.005 278.052 278.128 278.21 278.28 278.337 278.41 278.537 278.638 278.708 278.749 278.778 278.828 278.92 279.057 279.198 279.235 279.146 278.929 278.563 277.819 276.733 275.341 272.841 270.91 269.866 268.915 267.119 265.644 264.473 263.733 262.684 263.091 263.257 263.367 263.089 262.563 261.986 261.292 260.128 259.366 258.608 258.35 258.445 258.186 258.189 257.963 257.547 257.151 256.885 256.764 256.529 256.289 255.755 255.521 255.57 255.642 255.683 255.764 255.796 255.758 255.753 255.971 256.314 257.418 259.513 260.544 261.395 261.813 261.422 260.634 260.637 260.821 262.219 264.018 264.314 264.695 265.48 266.487 267.863 269.827 271.381 272.532 273.505 274.202 274.785 275.379 275.91 276.447 277.255 278.516 279.855 281.124 282.015 282.539 282.933 283.21 283.311 283.316 283.195 283.056 283.075 283.32 283.389 283.284 283.078 282.803 282.532 281.949 281.298 280.733 279.922 279.415 278.77 278.07 277.262 276.403 275.765 275.302 274.98 274.801 274.761 274.814 274.88 274.728 274.401 274.026 273.657 273.444 273.463 273.545 273.482 273.279 272.844 272.357 272.252 272.12 271.976 271.761 271.478 271.38 271.117 270.849 270.434 270.178 269.914 269.554 269.055 268.584 268.084 267.57 267.135 266.638 266.282 266.32 266.346 266.194 265.825 265.371 264.744 264.121 263.178 262.006 261.342 260.78 260.262 259.934 259.714 259.313 258.893 258.322 257.024 255.075 253.186 251.837 251.377 251.269 250.913 250.472 249.928 249.352 249.271 250.689 253.148 255.102 256.0 255.939 255.671 255.646 255.011 254.664 254.208 253.74 253.488 253.366 253.144 252.85 252.9 253.102 253.59 253.724 253.373 252.866 252.499 252.397 251.89 251.779 251.197 251.368 252.378 253.068 252.245 252.554 255.661 256.264 256.266 257.315 259.004 261.166 263.562 265.574 266.925 267.429 267.762 268.366 269.202 270.098 270.618 270.959 271.259 271.615 272.137 272.63 273.062 273.408 273.681 273.936 274.145 274.349 274.563 274.826 275.138 275.384 275.556 275.677 275.797 275.924 276.067 276.212 276.341 276.434 276.534 276.704 276.911 277.108 277.209 277.214 277.215 277.259 277.345 277.418 277.466 277.522 277.642 277.811 277.916 277.969 278.012 278.108 278.238 278.373 278.499 278.595 278.491 277.983 276.977 275.578 273.237 270.562 268.738 267.379 265.687 264.607 263.526 262.301 261.563 260.896 260.591 261.411 261.816 261.817 261.606 261.17 260.473 259.698 258.789 258.102 257.451 256.93 256.779 256.422 255.931 255.668 255.459 255.328 255.161 254.56 254.018 253.27 252.796 252.377 252.318 252.71 253.089 253.065 253.113 253.002 253.057 253.047 253.55 255.156 256.383 257.501 258.17 258.152 257.617 257.059 257.608 259.08 260.353 261.191 261.814 262.624 264.103 266.109 268.179 270.132 271.363 272.259 273.054 273.666 274.233 274.875 275.407 275.885 276.448 277.145 277.965 278.94 279.755 280.45 281.203 281.85 282.292 282.551 282.651 282.776 283.105 283.331 283.339 283.18 282.834 282.501 282.142 281.673 281.208 280.61 279.497 279.257 278.967 278.432 277.774 277.145 276.718 276.406 276.212 275.95 275.712 275.464 275.162 274.771 274.394 274.084 273.813 273.677 273.564 273.487 273.25 272.937 272.395 271.896 271.561 271.283 270.88 270.767 270.68 270.524 270.182 269.752 269.326 268.917 268.517 268.023 267.426 266.895 266.404 265.881 265.376 265.003 264.656 264.518 264.469 264.297 264.127 263.796 263.427 262.654 261.911 261.255 260.624 259.951 259.345 259.117 259.072 259.0 258.46 258.489 257.535 256.529 255.376 254.288 253.758 253.799 253.386 252.451 252.332 251.309 250.628 250.943 253.136 254.765 255.459 255.45 255.004 254.885 254.619 253.999 253.557 253.141 252.512 252.695 252.402 252.294 252.354 252.192 252.396 252.134 251.273 251.018 250.65 250.598 250.34 250.136 250.064 250.542 251.34 251.598 251.663 252.272 254.524 255.102 255.509 256.802 258.473 260.682 263.016 264.782 265.734 265.68 265.534 266.226 267.763 269.388 270.496 271.057 271.43 271.798 272.291 272.777 273.107 273.305 273.438 273.617 273.866 274.108 274.332 274.525 274.725 274.918 275.088 275.225 275.318 275.378 275.447 275.544 275.663 275.799 275.952 276.112 276.275 276.409 276.485 276.508 276.517 276.531 276.538 276.548 276.587 276.664 276.769 276.868 276.967 277.077 277.202 277.326 277.473 277.659 277.828 277.853 277.545 276.543 274.874 272.564 269.239 266.947 264.931 263.962 262.817 261.517 260.393 259.42 259.322 259.363 260.06 260.727 261.127 261.068 260.495 259.6 258.829 258.064 257.529 256.88 255.899 255.073 254.597 254.277 254.103 254.014 253.81 253.565 252.931 251.542 250.742 250.213 250.074 250.362 250.311 250.719 250.779 250.633 250.618 250.366 250.236 250.163 250.114 250.547 250.997 251.704 252.073 252.342 252.744 253.681 255.561 257.979 258.84 259.557 260.483 261.771 264.248 267.045 268.964 270.477 271.465 272.185 272.831 273.346 273.85 274.486 275.028 275.516 276.032 276.483 277.029 277.755 278.376 278.994 279.742 280.415 281.052 281.593 281.929 282.371 282.801 282.831 282.681 282.353 281.939 281.602 281.277 280.738 280.071 279.746 278.806 278.919 278.912 278.634 278.111 277.527 277.103 276.797 276.614 276.398 276.18 275.897 275.448 274.931 274.435 274.021 273.692 273.455 273.252 273.031 272.816 272.574 272.091 271.566 271.085 270.716 270.352 270.094 270.057 269.824 269.372 268.725 268.164 267.667 267.321 266.864 266.307 265.77 265.383 264.859 264.542 264.305 263.531 263.384 263.054 262.574 262.127 261.631 261.081 260.698 259.905 259.262 258.957 258.715 258.64 258.697 258.754 258.62 258.235 258.017 257.971 257.282 257.527 256.946 256.311 255.86 255.496 254.847 254.224 253.422 252.661 252.77 254.453 255.541 255.641 255.724 254.914 254.108 253.262 252.726 252.29 251.755 251.614 251.141 251.28 251.168 251.34 251.39 251.3 250.916 250.182 249.521 249.007 248.756 248.729 248.187 248.376 249.188 250.175 250.343 251.085 251.762 253.573 254.63 255.426 256.474 257.826 259.639 261.479 262.82 263.366 262.971 261.655 263.081 264.974 267.581 269.761 270.875 271.482 271.897 272.275 272.684 272.941 273.065 273.139 273.262 273.522 273.802 274.03 274.201 274.344 274.509 274.664 274.776 274.819 274.773 274.356 274.629 274.828 274.991 275.195 275.413 275.606 275.8 275.955 276.039 276.049 276.001 275.953 275.933 275.958 276.02 276.081 276.149 276.225 276.334 276.479 276.648 276.818 276.927 276.877 276.527 275.731 274.212 272.189 269.314 266.01 264.077 262.827 261.676 260.527 259.521 258.665 258.612 259.184 259.525 259.861 260.278 260.298 259.919 259.35 257.898 257.005 256.354 255.784 254.721 253.592 252.521 251.66 252.011 251.837 251.752 251.756 251.211 249.841 248.652 248.343 248.378 248.982 249.28 249.25 249.073 248.842 248.475 248.239 248.028 247.657 247.462 247.216 247.284 247.352 247.669 248.033 248.606 249.438 251.029 253.107 256.152 257.186 258.324 260.166 262.751 265.709 267.989 269.354 270.469 271.248 271.862 272.5 273.039 273.581 274.261 274.807 275.31 275.77 276.136 276.578 277.124 277.657 278.255 278.843 279.453 280.193 280.815 281.386 282.106 282.427 282.416 282.068 281.174 280.247 279.993 279.917 279.446 278.97 278.842 278.638 278.828 278.862 278.751 278.412 277.993 277.529 276.919 276.588 276.296 276.148 276.056 275.798 275.388 274.841 274.233 273.639 273.067 272.683 272.315 272.036 271.709 271.427 271.004 270.643 270.175 269.805 269.404 269.231 268.838 268.275 267.522 266.978 266.549 266.258 265.975 265.573 265.256 264.818 264.301 263.936 263.642 262.809 261.917 261.186 260.66 260.19 259.887 259.331 258.851 258.689 258.418 258.228 258.095 257.965 258.109 258.034 257.967 258.021 258.136 258.11 258.116 258.118 258.272 257.654 256.869 257.044 256.712 255.79 255.274 255.328 255.505 255.868 255.821 256.174 255.801 254.747 253.302 252.265 251.283 250.935 250.619 250.044 250.086 249.438 249.415 249.744 249.71 249.477 248.616 247.832 247.137 246.994 247.065 247.086 246.896 247.369 248.407 249.244 250.378 250.652 251.589 253.141 254.303 255.206 256.081 257.16 258.392 259.647 260.559 260.859 260.192 258.583 259.166 261.575 264.258 267.483 269.704 270.878 271.513 271.912 272.2 272.43 272.564 272.686 272.853 273.082 273.363 273.59 273.766 273.912 274.05 274.212 274.333 274.363 274.319 274.212 273.737 273.609 273.865 274.068 274.245 274.587 275.003 275.396 275.656 275.764 275.754 275.677 275.616 275.59 275.605 275.633 275.637 275.653 275.74 275.911 276.083 276.067 275.834 275.318 274.221 272.529 270.87 267.82 264.784 262.884 261.411 260.39 259.453 258.694 258.159 258.161 258.477 259.094 259.126 259.453 259.113 258.74 258.155 257.301 256.081 255.215 254.288 253.345 252.412 251.423 250.325 249.875 249.805 249.375 249.039 248.757 247.982 247.047 246.675 246.729 247.263 247.961 248.189 247.889 247.247 246.898 246.516 246.305 246.198 245.94 245.782 245.411 245.081 245.01 245.152 246.012 247.268 248.447 250.493 252.391 253.873 255.222 256.829 260.087 263.662 266.294 268.262 269.327 270.184 270.922 271.583 272.327 272.932 273.535 274.271 274.886 275.475 275.902 276.182 276.537 276.979 277.487 278.051 278.497 279.083 279.817 280.546 281.278 281.76 282.012 282.12 281.866 280.914 279.896 279.213 278.657 278.295 278.111 278.171 278.757 278.977 279.016 278.842 278.534 278.098 277.594 276.79 276.297 276.019 275.966 276.062 276.055 275.872 275.545 274.762 273.696 272.853 272.181 271.636 271.186 270.728 270.422 270.109 269.718 269.219 268.802 268.416 268.163 267.811 267.256 266.624 266.222 266.037 265.632 265.294 264.945 264.551 263.886 263.303 262.928 262.365 261.515 260.916 260.253 259.84 259.664 259.247 258.974 258.674 258.397 258.047 257.812 257.695 257.513 257.387 257.286 257.342 257.458 257.675 257.862 257.905 258.217 258.103 257.752 257.706 257.571 257.11 256.857 256.808 256.676 256.524 256.2 256.023 255.647 255.069 254.007 252.919 251.522 250.355 249.456 248.923 248.41 248.439 247.961 247.912 248.112 247.83 247.179 246.251 245.448 245.023 244.773 244.529 244.361 244.927 246.016 247.359 248.568 250.277 252.06 253.171 253.885 254.653 255.454 256.168 257.137 258.198 259.143 259.72 259.758 257.643 256.4 256.241 257.058 260.851 264.124 267.512 269.603 270.687 271.258 271.562 271.747 271.876 272.012 272.203 272.448 272.712 272.983 273.188 273.345 273.466 273.54 273.591 273.595 273.516 273.342 273.107 272.803 272.424 272.043 272.451 273.017 273.421 273.889 274.626 275.169 275.431 275.501 275.489 275.432 275.369 275.313 275.267 275.276 275.344 275.392 275.313 274.977 274.088 272.547 270.995 268.752 265.975 263.08 261.457 259.96 258.983 258.398 258.023 257.706 257.451 257.605 258.165 258.329 258.27 258.124 257.561 256.751 255.653 254.61 253.862 253.22 252.344 251.311 250.219 249.376 248.775 248.307 247.822 247.2 246.298 245.872 245.718 245.901 246.126 246.346 246.715 247.357 247.325 247.038 246.473 245.867 245.39 244.896 244.676 244.539 244.134 243.828 243.603 243.344 243.353 244.779 247.623 249.786 250.958 251.655 252.263 253.636 255.95 259.859 263.698 266.012 267.839 268.83 269.649 270.522 271.302 272.129 272.743 273.366 274.137 274.835 275.56 276.044 276.393 276.714 277.091 277.573 277.99 278.431 279.089 279.824 280.444 280.814 281.071 281.301 281.46 281.515 281.298 280.668 279.619 278.383 277.864 277.752 278.127 278.846 279.088 279.038 278.724 278.217 277.655 276.969 276.241 275.526 275.38 275.097 275.175 275.568 275.694 275.576 274.964 273.744 272.697 271.766 270.928 270.04 269.687 269.38 269.104 268.713 268.256 267.816 267.457 267.291 266.974 266.589 266.244 265.952 265.658 265.255 264.63 264.259 263.651 262.95 262.437 261.889 261.271 260.843 260.134 259.756 259.707 259.654 259.351 259.211 258.871 258.376 257.872 257.58 257.688 257.427 257.175 257.297 257.347 257.301 257.531 257.638 257.504 257.532 257.424 257.219 257.153 256.791 256.798 256.386 256.276 256.119 255.947 255.67 255.465 254.759 254.181 253.483 252.506 251.315 250.205 249.153 248.016 247.629 246.992 246.358 246.336 246.687 246.571 245.849 244.8 243.671 243.063 242.813 242.682 242.747 243.364 244.82 246.568 249.338 251.36 252.766 253.534 254.008 254.754 255.523 256.162 257.019 257.746 258.321 258.7 258.752 257.747 255.575 255.069 255.848 257.632 261.626 264.813 267.67 269.177 269.996 270.46 270.705 270.836 271.064 271.329 271.602 271.856 272.077 272.256 272.302 272.232 272.122 271.974 271.778 271.524 271.191 270.777 270.467 270.211 269.901 269.663 269.647 270.081 271.551 272.224 272.696 273.613 274.274 274.726 274.969 275.041 275.078 275.079 275.034 274.911 274.629 273.98 272.8 271.191 269.543 266.448 263.406 261.489 260.04 258.706 257.659 257.084 256.801 256.84 256.753 256.801 257.056 256.62 256.414 256.039 255.308 255.24 254.412 253.347 252.265 251.467 250.603 249.745 248.934 248.173 247.347 246.867 245.745 245.352 244.99 245.115 245.378 246.081 246.429 246.679 246.843 246.972 247.018 247.02 246.781 245.97 245.094 244.286 243.702 243.595 243.771 243.999 243.994 243.695 242.803 243.09 245.434 248.533 249.662 250.169 250.388 250.868 252.121 255.807 259.604 263.11 265.174 266.662 267.434 268.064 269.034 269.965 270.997 271.767 272.535 273.396 274.2 275.077 275.675 276.209 276.63 277.037 277.483 277.833 278.319 278.962 279.629 280.094 280.365 280.53 280.635 280.768 280.948 280.991 280.709 279.864 278.66 277.581 277.582 278.371 279.057 279.088 278.769 278.041 277.212 276.372 275.867 275.322 274.758 274.095 273.953 274.0 274.608 274.948 274.995 274.688 273.81 272.689 271.221 270.288 269.558 269.012 268.617 268.408 267.98 267.576 267.04 266.752 266.666 266.35 265.982 265.627 265.422 265.037 264.603 264.078 263.401 262.82 262.276 261.474 260.992 260.594 260.151 259.706 259.451 259.178 259.073 258.805 258.622 258.314 257.947 257.422 257.357 257.417 257.299 257.531 257.592 257.553 257.551 257.061 256.678 256.317 256.03 255.833 255.731 255.777 255.551 255.404 255.235 255.1 254.96 254.845 254.486 253.948 253.53 253.255 252.87 252.542 251.873 250.825 249.765 248.596 248.007 247.334 246.822 246.454 246.307 246.072 245.385 244.476 243.395 242.647 242.15 241.855 242.076 242.663 243.954 245.785 247.88 250.137 252.401 253.388 254.609 255.432 255.864 256.09 256.188 256.289 256.354 256.259 256.507 256.939 256.443 256.248 256.491 257.675 260.152 262.107 264.261 265.916 266.806 267.379 267.916 268.497 269.088 269.634 269.992 270.232 270.345 270.278 270.108 269.791 269.344 268.792 268.148 267.577 267.354 267.419 267.511 267.648 267.632 267.532 267.684 267.995 268.152 268.462 269.354 269.959 270.827 271.745 272.468 273.142 273.531 273.573 273.414 273.0 272.138 270.726 269.339 267.341 264.077 261.829 260.577 259.646 258.371 257.223 256.524 255.967 256.16 256.279 256.22 255.301 254.926 254.305 254.64 253.792 253.07 252.657 251.743 250.599 249.709 248.715 247.953 247.242 246.483 245.709 245.105 244.75 244.19 244.464 245.593 246.042 246.247 246.403 246.448 246.49 246.583 246.7 246.734 246.497 245.82 244.475 243.308 242.512 242.162 242.361 242.92 243.568 243.792 243.479 243.079 243.613 246.627 247.691 248.292 248.603 248.846 249.477 250.896 255.029 258.466 261.132 262.672 263.327 263.626 264.217 265.65 267.157 268.729 269.826 270.914 271.928 272.945 273.916 274.668 275.408 276.002 276.653 277.17 277.609 278.02 278.504 279.09 279.481 279.796 279.954 279.997 280.085 280.293 280.487 280.402 279.925 278.952 278.075 278.25 278.757 279.247 278.879 278.153 276.972 275.555 273.602 272.866 272.609 272.228 271.655 271.567 271.942 272.561 273.096 273.801 273.699 273.133 272.029 271.007 269.982 269.067 268.385 268.065 267.767 267.372 266.859 266.297 266.256 265.999 265.552 265.181 264.876 264.672 264.324 263.975 263.47 262.81 262.014 261.443 260.846 260.137 259.674 259.302 259.257 258.89 258.741 258.59 258.283 257.992 257.909 257.632 257.305 257.183 257.34 257.202 257.188 256.902 256.433 255.675 254.921 254.14 253.546 253.111 253.192 253.316 253.493 253.395 253.19 253.091 253.057 253.02 252.789 252.537 252.277 251.975 251.707 251.324 250.966 250.595 250.022 249.351 248.498 247.675 247.415 246.949 246.589 245.792 244.851 244.249 243.463 242.707 241.825 241.314 241.262 241.912 242.852 244.383 245.976 247.739 249.11 250.54 251.812 252.911 253.832 254.267 254.489 254.535 254.39 254.2 254.033 254.847 255.512 256.365 256.947 257.216 257.302 258.163 259.137 259.932 260.826 261.495 262.108 262.529 263.583 264.659 265.61 266.347 266.693 266.724 266.592 266.281 265.85 265.433 265.235 265.229 265.368 265.559 265.799 265.983 266.079 265.807 265.195 264.921 265.162 264.988 264.757 264.798 265.468 266.451 267.176 268.008 268.09 268.551 268.917 268.566 268.049 267.24 265.67 262.431 260.674 259.444 258.762 258.238 257.285 256.975 256.55 256.262 256.34 256.278 255.686 255.0 253.42 252.694 251.769 251.684 251.088 250.209 249.723 249.053 248.119 247.201 246.444 245.643 244.819 244.13 243.553 242.771 242.598 243.004 244.588 245.408 246.033 246.248 246.172 246.0 245.899 245.906 245.969 245.975 245.702 244.626 242.558 241.551 240.942 240.908 241.187 242.227 244.03 243.992 243.219 243.015 245.057 245.993 246.421 246.958 247.354 247.683 248.383 250.347 252.533 255.225 256.519 257.149 257.291 257.745 258.874 260.316 262.567 265.877 267.721 269.265 270.38 271.479 272.363 273.225 274.006 274.8 275.563 276.252 276.879 277.348 277.779 278.189 278.633 278.943 279.137 279.201 279.242 279.421 279.661 279.829 279.821 279.647 279.424 279.315 279.326 279.199 278.592 277.511 276.05 273.668 271.69 270.617 270.042 269.786 269.514 269.394 270.19 270.801 272.016 272.483 272.235 271.294 270.611 269.988 269.152 268.515 267.86 267.568 267.144 266.722 266.173 265.734 265.462 265.16 264.793 264.408 263.886 263.535 263.235 262.832 262.294 261.573 260.775 260.266 259.753 259.293 259.283 259.054 258.972 258.707 258.236 257.917 257.53 257.28 256.937 256.582 256.183 256.128 256.08 255.887 255.615 254.936 254.167 253.264 252.308 251.589 251.235 251.153 251.131 251.429 251.585 251.575 251.418 251.41 251.198 250.944 250.816 250.649 250.402 250.005 249.708 249.173 248.823 248.01 247.332 246.98 246.682 246.519 246.228 245.44 244.602 243.621 242.656 241.943 241.15 240.944 240.887 240.965 241.627 242.647 244.044 245.692 247.375 247.953 248.239 248.491 248.613 248.777 249.029 249.496 249.92 250.36 250.744 251.147 251.851 252.876 254.105 254.859 255.532 256.135 256.147 255.444 255.636 255.876 256.101 256.495 257.008 258.109 258.768 259.242 260.064 260.63 261.212 261.891 262.395 262.72 262.868 262.974 263.174 263.554 264.064 264.487 264.754 264.673 263.915 263.525 263.651 263.716 263.817 263.819 263.41 262.828 262.211 262.041 262.29 261.444 261.814 262.147 261.471 260.199 259.39 258.639 258.135 257.972 257.668 257.315 256.602 256.344 255.973 256.041 255.971 256.019 255.477 255.202 253.87 252.644 252.218 251.099 250.179 249.271 248.391 247.607 246.995 246.434 245.586 244.708 244.026 243.445 242.815 241.924 241.099 240.562 240.387 240.749 243.123 244.214 244.907 245.28 245.336 245.172 244.98 244.892 244.828 244.801 244.568 243.679 241.963 240.744 240.125 239.857 240.369 241.208 243.422 243.912 244.086 244.342 244.963 245.634 246.126 246.393 246.414 246.579 247.407 248.673 249.833 250.908 251.514 250.613 249.772 248.324 250.16 256.059 258.859 263.108 266.107 268.349 269.653 270.741 271.446 272.158 272.777 273.537 274.259 274.994 275.551 276.049 276.487 276.929 277.322 277.755 278.066 278.282 278.439 278.59 278.781 278.95 279.07 279.2 279.351 279.454 279.428 278.789 278.404 277.594 276.306 274.532 272.337 270.571 269.566 268.826 268.207 268.228 268.828 269.825 270.889 271.067 270.777 268.961 268.966 268.097 267.362 266.989 266.804 266.599 266.171 265.79 265.354 264.796 264.51 263.992 263.633 263.323 262.717 262.539 262.332 261.799 261.142 260.377 259.473 259.041 258.772 258.338 258.131 258.264 257.89 257.424 257.19 256.62 256.292 255.813 255.091 254.655 254.401 254.319 253.925 253.679 253.305 252.604 251.61 250.751 250.163 249.813 249.842 249.854 250.25 250.5 250.193 249.922 249.619 249.356 249.368 249.213 249.194 249.129 248.94 248.705 248.276 247.417 246.707 245.481 244.81 244.412 244.007 243.619 243.15 242.78 241.986 241.103 240.519 240.221 240.029 240.33 240.95 241.858 243.065 244.313 245.422 246.863 248.261 248.366 247.749 246.855 245.879 245.445 245.238 245.65 246.199 246.654 247.208 247.755 248.577 249.252 250.047 251.19 252.21 252.725 253.05 253.49 253.667 253.935 254.181 254.227 254.328 254.571 255.127 256.017 257.069 257.889 258.411 259.027 259.743 260.382 260.765 261.204 261.623 262.082 262.609 263.088 263.423 263.475 262.548 261.898 262.104 262.442 262.422 262.551 262.581 261.751 260.807 260.182 260.06 258.932 258.109 258.155 257.251 256.149 255.695 255.644 255.605 255.12 255.391 255.344 255.065 255.127 255.186 254.718 254.23 254.017 253.754 253.812 252.509 251.028 250.072 249.001 248.021 247.113 246.315 245.552 244.878 244.304 243.315 242.437 241.718 241.162 240.627 240.065 239.451 238.911 238.687 238.748 239.398 240.855 242.659 243.264 243.457 243.478 243.376 243.156 242.831 242.847 242.605 241.912 240.49 239.894 239.574 239.399 239.896 240.002 240.036 241.057 243.442 244.472 245.06 245.208 244.836 244.284 243.848 243.834 245.001 246.552 247.023 246.749 244.456 242.66 242.532 243.856 246.527 251.292 255.383 260.005 264.23 267.329 269.165 270.439 271.332 271.944 272.512 273.0 273.494 273.839 274.106 274.303 274.475 274.737 275.18 275.678 276.307 276.87 277.37 277.746 277.993 278.161 278.286 278.449 278.599 278.781 278.879 278.075 278.065 277.829 277.217 276.255 274.96 273.457 271.529 269.219 267.509 266.994 266.638 266.74 267.071 268.353 267.911 267.513 267.444 266.843 266.209 265.864 265.622 265.432 265.16 264.782 264.5 263.939 263.71 263.372 262.926 262.555 262.266 261.91 261.592 261.046 260.348 259.761 259.047 258.311 257.757 257.465 257.367 256.879 256.51 255.658 255.151 254.698 254.026 253.825 252.812 252.397 252.157 251.645 251.217 250.685 250.248 249.679 248.899 248.299 247.959 247.933 248.239 248.69 249.086 248.962 248.752 248.381 248.184 247.761 247.638 247.555 247.441 247.367 247.078 246.641 246.323 245.793 244.96 244.026 243.425 242.706 242.13 241.583 241.228 240.68 240.162 239.675 239.592 239.948 240.745 241.879 243.234 244.223 245.2 246.203 246.668 247.192 247.599 246.918 246.123 245.281 244.532 243.455 243.214 243.585 243.991 244.312 244.584 244.706 245.117 245.584 246.308 247.397 248.51 249.552 250.469 251.276 251.792 252.144 252.35 252.179 252.276 252.428 252.513 253.058 253.767 254.524 255.811 256.553 257.569 258.347 258.994 259.474 259.617 260.136 260.818 261.384 261.757 261.884 261.558 261.485 260.696 260.825 261.211 260.981 261.025 260.55 260.016 259.194 258.398 257.919 257.298 256.862 256.275 255.77 255.365 255.141 255.168 255.03 254.811 254.707 254.719 254.49 253.703 253.331 253.211 253.163 253.141 252.484 251.395 250.031 248.491 247.081 245.993 245.096 244.364 243.556 242.775 242.017 241.244 240.569 239.967 239.427 239.047 238.773 238.305 237.871 237.454 237.176 237.211 237.533 237.935 239.708 240.577 240.627 240.026 239.34 239.627 239.368 239.497 239.348 239.226 239.004 238.141 237.064 235.835 235.291 235.805 237.733 238.426 242.003 243.365 243.5 242.881 242.082 241.656 242.378 243.675 244.293 243.687 242.7 241.237 240.144 239.692 241.137 243.533 246.528 251.05 255.166 259.309 263.289 266.197 268.262 269.925 271.015 271.716 272.208 272.475 272.497 272.258 271.869 271.165 270.599 270.797 271.881 273.467 274.524 275.407 276.165 276.656 276.954 277.099 277.247 277.431 277.675 277.917 277.048 277.281 277.393 277.36 276.997 276.306 275.15 273.51 271.625 268.365 265.315 264.331 264.206 264.148 264.737 265.739 266.247 265.988 265.506 265.088 264.919 264.725 264.467 264.258 263.982 263.926 264.076 263.849 263.483 263.084 262.778 262.275 261.568 261.041 260.558 259.963 259.297 258.507 257.48 256.925 256.471 256.333 255.677 254.739 254.442 254.249 253.129 252.313 251.658 250.673 249.851 249.496 248.634 247.987 247.493 247.109 246.163 245.429 245.056 245.459 245.854 246.131 246.73 247.036 246.896 246.795 246.749 246.682 246.338 246.057 245.738 245.512 245.28 244.791 244.365 244.08 243.718 243.309 242.617 242.044 241.577 241.143 240.649 240.259 239.822 239.598 239.712 240.175 241.299 242.665 243.828 244.391 245.104 245.965 246.37 246.369 246.274 246.161 245.331 244.466 243.639 243.223 243.172 243.155 243.568 244.043 244.283 244.301 244.289 244.222 244.501 244.909 245.867 247.016 248.001 248.675 249.17 249.852 250.256 250.543 250.744 250.955 251.195 251.351 251.697 252.188 252.847 253.453 254.667 255.459 256.398 256.791 256.727 257.167 257.562 258.103 259.266 260.006 259.36 259.028 258.998 258.939 259.043 259.256 259.264 258.831 258.318 258.097 257.662 257.299 257.212 256.9 256.243 255.659 255.271 255.084 254.668 254.094 253.858 253.863 253.832 253.512 253.169 253.102 253.116 253.175 252.929 252.23 250.975 249.66 248.103 246.766 245.411 244.258 243.295 242.464 241.902 241.389 240.992 240.296 239.687 239.155 238.726 238.373 237.922 237.482 237.017 236.556 236.145 235.938 235.879 235.885 235.934 235.983 235.753 235.41 235.424 236.103 236.376 236.601 236.43 235.796 235.638 234.99 233.885 233.314 233.064 233.467 234.796 237.91 239.054 241.787 242.474 241.603 241.113 241.581 242.431 242.534 242.039 241.922 241.406 240.528 239.301 238.802 239.417 241.024 243.163 246.628 250.946 253.714 255.611 257.019 259.711 262.893 265.445 267.045 268.331 269.024 269.261 269.069 266.98 266.335 266.14 266.354 266.731 267.599 270.428 272.775 273.655 274.181 274.574 275.06 275.553 276.001 276.4 276.759 275.956 276.143 276.32 276.457 276.504 276.303 275.719 274.638 272.961 270.937 267.626 264.686 263.978 263.439 263.374 263.528 263.686 263.671 263.671 263.393 263.32 263.322 263.278 263.308 263.318 263.158 263.256 263.028 262.886 262.743 262.193 261.886 261.362 260.81 260.027 259.362 258.608 257.611 256.75 255.951 255.333 254.714 254.212 253.526 252.871 251.893 251.193 250.291 249.286 248.37 247.798 247.007 245.911 245.085 244.407 243.879 243.242 242.468 242.199 242.37 243.024 244.005 244.857 245.145 245.314 245.315 245.095 244.811 244.427 244.027 243.667 243.566 243.262 242.79 242.53 242.186 241.846 241.56 241.299 240.888 240.606 240.235 239.882 239.53 239.566 239.918 240.459 241.082 242.324 243.358 243.88 244.087 244.488 244.808 245.021 244.664 244.425 244.291 243.596 243.023 243.011 243.299 243.523 243.735 244.27 244.86 245.231 245.072 245.033 245.079 244.995 245.199 245.575 246.177 246.798 247.386 247.877 248.289 248.598 248.841 249.182 249.38 249.395 249.565 249.744 250.083 250.418 250.862 251.363 251.869 252.374 252.926 253.603 254.335 254.745 255.595 256.402 256.989 257.191 257.077 256.833 256.797 256.829 256.854 256.656 256.674 256.635 256.248 255.726 255.236 255.007 254.799 254.624 254.376 254.046 253.794 253.288 252.955 252.926 252.51 252.55 252.527 252.387 252.378 252.286 251.903 251.155 249.834 248.622 247.086 245.696 244.778 243.917 243.205 242.282 241.767 241.181 240.693 240.291 239.871 239.364 238.752 238.272 237.757 237.346 236.889 236.326 235.814 235.324 234.993 234.822 234.736 234.658 234.545 234.275 234.631 234.362 234.362 235.118 235.039 234.796 234.34 233.874 233.666 232.668 232.238 232.4 232.585 233.552 234.75 236.081 237.698 239.441 240.147 240.374 240.983 241.344 241.343 241.607 241.615 241.459 240.778 239.34 238.476 238.524 239.189 240.341 242.141 244.413 246.826 249.198 251.604 252.062 253.736 254.696 255.808 257.11 259.129 261.407 263.295 264.77 266.276 267.216 267.727 268.189 269.033 270.068 270.755 271.325 271.955 272.675 273.504 274.228 274.877 275.354 275.714 274.867 275.004 275.14 275.28 275.409 275.459 275.259 274.669 273.637 272.152 270.414 267.313 264.429 263.116 262.884 262.697 262.324 262.209 262.229 262.213 262.084 262.232 262.515 262.615 262.576 262.745 262.527 262.664 262.874 263.14 262.433 261.767 261.293 260.938 260.253 259.542 258.705 257.733 256.757 255.811 254.874 254.186 253.226 252.377 251.652 250.722 249.579 248.291 247.202 246.262 245.196 244.427 243.696 242.992 242.26 241.806 240.806 240.217 239.902 239.876 240.307 241.3 242.253 242.709 243.357 243.615 243.458 243.012 242.468 241.784 241.366 241.086 241.104 241.067 240.953 240.841 240.706 240.508 240.224 239.953 239.889 239.637 239.487 239.665 240.073 240.565 241.334 242.195 242.79 243.164 243.197 243.04 243.057 242.937 242.702 242.517 242.382 242.401 242.215 242.251 242.627 242.838 243.233 243.605 243.826 244.557 244.914 244.971 244.822 244.935 245.151 245.234 245.315 245.44 245.887 246.484 247.018 247.586 247.807 248.26 248.632 248.766 248.631 248.498 248.373 248.444 248.684 249.05 249.553 249.617 249.903 250.497 250.583 251.67 252.97 253.958 254.603 255.032 255.52 255.375 254.58 254.31 254.206 254.058 253.846 253.717 253.587 253.488 253.221 252.837 252.56 252.455 252.404 252.265 252.025 251.888 251.737 251.477 251.267 250.909 251.232 250.771 250.324 249.887 249.602 248.961 248.158 247.274 246.212 244.695 244.02 243.54 242.916 242.434 241.894 241.296 240.617 240.036 239.448 239.008 238.368 237.972 237.691 237.52 237.141 236.508 235.705 235.27 234.704 234.267 233.905 233.623 233.446 233.357 233.426 232.977 232.612 232.478 233.284 233.528 233.352 233.256 232.422 231.982 231.802 231.737 232.042 232.739 234.292 236.179 237.023 237.462 237.686 237.619 238.01 238.628 239.933 240.675 240.909 241.145 241.487 241.298 240.243 239.129 238.717 238.59 238.868 239.781 241.158 242.738 244.404 246.094 247.894 250.655 252.37 253.246 254.103 254.646 255.043 256.217 258.599 261.54 263.938 266.063 267.65 268.805 269.681 270.223 270.651 271.142 271.731 272.397 273.061 273.702 274.245 274.613 273.678 273.917 274.083 274.239 274.383 274.448 274.381 274.074 273.445 272.495 271.386 270.085 268.593 266.645 264.466 263.146 262.632 262.598 262.883 262.707 262.919 262.946 262.924 264.346 265.606 265.478 265.78 265.756 265.242 264.236 263.236 262.282 261.372 260.502 259.701 259.141 258.685 258.335 257.755 256.975 256.062 255.338 254.481 253.058 252.234 251.6 250.135 249.208 247.244 245.586 244.494 243.522 242.543 241.607 240.739 239.922 239.172 238.571 238.246 238.16 238.418 238.92 239.589 240.304 241.005 241.308 241.332 241.036 240.435 239.869 239.439 239.143 238.911 238.921 239.104 238.984 239.057 239.131 239.092 239.219 239.506 239.762 240.141 240.269 240.396 240.692 241.094 241.582 242.181 242.382 242.262 241.676 241.324 241.159 240.877 240.797 240.923 241.149 241.265 241.566 241.877 242.148 242.649 243.04 243.254 243.731 244.212 244.641 244.859 245.294 245.472 245.47 245.46 245.74 246.205 247.022 247.34 248.22 248.507 248.655 248.544 248.449 248.684 248.568 248.409 248.262 248.174 247.428 247.78 247.807 248.011 248.371 248.978 250.0 251.166 252.071 252.573 252.896 253.252 253.336 253.065 252.673 252.387 252.107 251.918 251.844 251.787 251.732 251.641 251.527 251.43 251.414 250.974 250.87 251.127 250.938 250.834 250.482 249.864 249.355 249.257 248.761 247.912 248.086 247.655 247.026 245.895 244.62 244.328 243.563 242.914 242.183 241.532 241.472 241.221 240.409 239.634 238.913 238.166 237.82 237.47 237.307 237.217 237.128 236.786 235.797 235.225 234.672 234.156 233.56 233.06 232.578 232.33 232.131 231.886 231.764 231.453 231.54 232.268 232.158 232.124 231.858 231.674 231.434 231.127 231.539 232.185 232.981 235.443 237.404 237.51 237.642 237.661 237.582 237.406 238.206 239.603 240.052 240.578 241.296 241.859 241.783 241.061 240.209 239.267 238.296 237.609 237.498 238.114 239.446 240.968 242.762 244.472 246.123 247.496 248.505 249.287 249.968 251.329 253.015 253.523 255.17 257.717 261.51 264.984 267.325 268.815 269.795 270.404 270.892 271.285 271.652 272.084 272.543 273.001 273.398 272.693 272.971 273.21 273.406 273.53 273.606 273.589 273.469 273.177 272.685 272.065 271.451 270.822 270.216 269.749 269.248 268.463 267.354 267.214 266.873 266.413 266.755 267.575 267.948 268.256 268.286 268.198 267.911 267.323 266.445 265.233 263.82 261.976 260.419 259.143 258.366 257.813 257.37 256.916 255.923 255.659 254.992 254.847 254.069 253.304 252.535 251.691 250.663 248.18 246.136 244.794 243.545 242.338 241.208 240.294 239.435 238.703 238.151 237.768 237.729 237.34 237.48 237.705 238.194 238.717 239.175 239.464 239.565 239.528 239.315 238.87 238.415 238.128 237.852 237.878 238.093 238.347 238.633 238.979 239.272 239.68 239.983 240.194 240.282 240.41 240.394 240.138 240.256 240.502 241.091 241.048 240.69 240.581 240.565 240.527 240.627 240.671 240.806 240.968 241.15 241.419 241.801 242.393 242.923 243.656 244.385 245.161 245.651 246.282 247.192 247.084 247.149 247.789 248.316 248.467 248.493 248.514 248.627 248.647 248.547 248.401 248.171 247.907 247.453 246.948 246.787 246.941 247.481 248.405 248.615 248.362 248.387 248.631 249.049 249.591 250.081 250.409 250.765 250.986 251.121 250.982 250.786 250.529 250.404 250.216 250.373 250.072 249.936 249.74 249.43 249.07 248.779 248.946 248.944 248.873 248.913 249.302 249.252 248.953 248.34 247.439 246.916 246.31 245.319 244.977 244.345 243.769 242.972 242.427 242.035 241.409 240.935 240.723 240.681 240.211 239.375 238.653 238.108 237.618 237.463 237.327 237.108 236.706 236.152 235.67 235.18 234.45 233.987 233.987 233.347 232.436 232.099 231.979 231.786 231.54 231.215 230.917 230.731 230.729 230.739 230.844 231.101 231.419 231.699 232.254 233.37 234.529 235.489 236.213 236.743 236.933 237.218 237.535 237.585 237.879 238.707 239.459 240.618 241.871 242.301 242.583 242.371 241.721 240.635 239.323 237.874 236.405 235.502 235.321 236.12 237.791 239.597 241.622 243.656 245.32 246.699 247.795 248.53 249.061 249.861 251.611 251.917 253.278 255.701 259.68 263.921 266.541 268.152 269.407 270.216 270.753 271.126 271.419 271.726 272.051 272.365 271.984 272.218 272.431 272.594 272.706 272.764 272.772 272.732 272.636 272.485 272.277 272.021 271.748 271.499 271.25 270.984 270.692 270.386 270.114 269.88 269.717 269.599 269.544 269.532 269.532 269.489 269.319 269.003 268.466 267.767 266.824 265.639 264.013 261.96 260.098 258.842 258.089 256.715 255.088 254.08 254.233 253.799 253.076 252.479 252.207 251.908 251.598 251.1 250.288 248.72 246.384 245.784 244.694 243.438 243.133 242.573 241.529 241.295 239.858 238.393 237.535 236.765 236.238 235.989 235.904 236.048 236.277 236.543 236.794 236.964 237.071 237.183 237.038 237.059 237.171 237.477 237.771 238.199 238.664 239.082 239.519 239.997 240.342 240.414 240.713 240.907 241.119 241.224 241.173 241.153 241.148 241.435 241.627 243.297 243.405 243.262 242.895 242.431 242.18 242.141 242.614 243.099 243.644 244.398 245.056 246.109 246.761 247.751 248.229 248.083 247.563 248.361 248.392 248.198 248.126 248.211 248.372 248.618 248.828 248.887 248.889 248.8 248.568 248.262 247.939 247.663 247.662 247.91 248.235 248.28 248.412 248.437 248.523 248.754 248.89 248.976 249.104 249.22 249.251 249.274 249.393 249.534 249.546 249.476 249.277 249.022 248.835 248.686 248.613 248.599 248.542 248.404 248.385 248.303 247.995 247.716 247.469 247.04 246.844 246.403 245.922 245.722 245.305 244.962 244.67 244.081 243.302 242.758 242.803 242.129 241.312 240.673 239.789 239.122 238.619 238.088 237.775 237.581 237.553 237.549 237.353 236.86 236.174 235.964 235.927 235.431 234.926 234.433 233.907 232.978 232.034 231.884 232.198 232.042 231.724 231.49 231.349 231.349 231.488 231.8 232.286 232.659 234.359 235.634 236.416 236.542 236.661 236.67 236.852 237.048 237.19 237.543 237.812 238.09 238.48 239.018 240.04 241.74 242.301 242.483 242.364 242.13 241.435 240.433 238.958 237.271 235.545 234.253 233.817 234.341 235.555 237.403 239.409 241.625 243.673 245.417 246.73 247.653 248.341 248.724 249.298 250.12 251.061 252.439 254.674 258.696 262.359 265.089 267.132 268.554 269.593 270.313 270.803 271.168 271.463 271.728 271.12 271.369 271.55 271.67 271.756 271.77 271.741 271.661 271.533 271.387 271.213 271.062 270.903 270.75 270.588 270.481 270.381 270.29 270.167 270.041 269.908 269.775 269.652 269.536 269.413 269.242 269.014 268.718 268.33 267.815 267.139 266.294 265.217 263.728 261.921 260.106 258.653 257.439 256.096 253.703 252.241 252.374 251.956 251.393 250.795 250.36 250.07 250.075 249.99 249.83 249.667 249.49 249.115 248.687 248.097 247.436 246.573 245.492 243.965 242.546 241.693 239.543 237.535 236.511 235.703 235.175 234.87 234.833 234.907 235.089 235.26 235.618 235.925 236.138 236.419 236.76 237.512 237.984 238.594 239.433 240.479 242.084 242.888 243.563 244.55 245.741 245.996 245.806 245.813 245.917 245.929 245.97 246.294 245.89 245.037 244.529 244.153 243.365 242.871 242.399 243.15 243.775 244.93 245.0 245.256 246.057 246.721 247.305 247.664 247.794 247.823 248.001 248.261 248.439 248.531 248.586 248.612 248.647 248.732 248.74 248.683 248.548 248.408 248.296 248.308 248.35 248.51 248.731 248.909 248.981 248.92 248.862 248.833 248.815 248.771 248.734 248.67 248.541 248.452 248.53 248.627 248.662 248.652 248.622 248.551 248.395 248.221 248.016 247.779 247.487 247.026 246.696 246.363 245.84 245.476 245.26 244.802 244.44 244.186 243.782 243.551 243.462 243.199 243.098 242.966 242.5 241.944 241.063 241.247 240.805 240.113 239.528 238.884 238.388 238.007 237.769 237.668 237.668 237.544 237.31 237.101 236.764 236.004 235.54 235.281 234.888 234.138 233.651 233.471 233.054 232.826 232.273 231.722 231.803 231.904 232.043 232.03 232.608 233.903 234.28 234.967 235.386 236.575 237.12 237.264 237.371 237.459 237.501 237.699 237.938 237.937 237.947 238.019 238.137 238.38 239.13 241.191 242.274 242.272 242.075 241.749 241.376 240.775 239.725 238.138 236.643 235.397 234.591 234.446 234.775 235.61 237.003 238.773 240.862 242.873 244.572 245.842 246.654 247.264 247.788 248.39 249.342 249.851 250.631 252.161 253.987 256.33 259.822 263.03 265.583 267.209 268.435 269.374 269.984 270.473 270.852 269.588 269.938 270.28 270.473 270.562 270.582 270.465 270.267 269.993 269.664 269.35 268.997 268.603 268.017 267.575 267.45 267.684 267.844 268.082 268.203 268.306 268.298 268.255 268.152 268.009 267.827 267.617 267.396 267.124 266.791 266.341 265.736 264.968 263.946 262.611 261.087 259.443 258.024 256.856 255.743 253.971 252.535 250.896 250.467 250.237 249.991 249.813 249.725 249.654 249.411 249.385 249.621 249.565 249.428 249.293 249.113 248.726 248.177 247.495 246.749 245.975 244.773 243.142 240.569 239.316 238.481 237.822 237.391 237.048 236.844 236.674 236.787 236.913 236.991 237.237 237.51 238.094 238.753 239.517 240.409 241.461 244.487 246.306 246.834 247.001 246.848 246.458 246.393 246.583 246.653 246.504 246.127 245.604 245.081 244.628 244.318 244.068 243.425 242.894 243.321 243.367 243.634 244.303 244.689 245.16 245.672 246.19 246.962 247.423 247.455 247.396 247.553 247.904 248.274 248.531 248.639 248.559 248.422 248.322 248.229 248.177 248.141 248.047 247.959 247.929 247.995 248.11 248.17 248.214 248.221 248.197 248.179 248.221 248.28 248.301 248.241 248.193 248.131 248.011 247.868 247.75 247.6 247.381 247.118 246.953 246.758 246.403 246.096 245.865 245.421 244.955 244.646 244.188 243.615 243.234 242.849 242.312 242.032 241.897 241.65 241.522 241.473 241.402 241.499 241.395 241.122 240.769 240.063 239.514 239.281 239.242 239.025 238.698 238.601 238.324 238.204 238.001 237.79 237.371 237.21 236.915 236.639 236.301 235.954 235.518 234.86 233.947 233.195 232.931 232.753 232.609 232.397 232.361 232.754 232.709 232.989 233.447 234.039 235.472 236.473 236.551 236.81 237.208 237.534 237.806 238.155 238.346 238.376 238.288 238.22 238.003 237.701 237.523 237.277 238.959 241.687 242.458 242.362 242.047 241.641 241.171 240.495 239.475 238.345 237.076 235.964 235.385 235.089 235.079 235.335 236.097 237.355 238.983 240.67 242.215 243.579 244.675 245.529 246.044 246.485 246.963 247.505 248.268 248.901 249.963 251.334 252.919 254.913 257.804 260.068 262.719 264.788 266.202 267.604 268.397 269.018 266.82 267.516 268.139 268.439 268.662 268.64 268.501 268.21 267.817 267.335 266.728 265.862 264.382 262.725 262.069 262.211 262.482 262.974 263.372 264.029 264.676 265.012 265.335 265.357 265.376 265.272 265.276 265.265 265.213 265.093 264.821 264.47 264.014 263.393 262.652 261.746 260.569 259.355 258.238 257.205 256.337 255.714 254.768 253.877 253.957 253.392 252.363 251.491 251.033 251.238 250.706 250.054 249.469 249.077 248.973 248.977 248.885 248.784 248.667 248.48 248.24 247.982 247.698 247.337 246.74 245.94 245.066 244.053 243.006 242.666 242.36 241.539 240.396 239.978 239.98 240.182 241.715 242.372 242.612 243.296 245.435 246.875 247.065 246.447 245.845 245.403 245.098 244.927 244.847 244.79 244.786 244.693 244.575 244.401 244.228 244.145 244.035 243.877 244.776 245.417 245.667 245.878 247.048 247.65 247.801 247.644 247.384 247.172 247.058 246.885 246.612 246.663 246.897 247.166 247.391 247.547 247.579 247.462 247.177 246.952 246.89 246.916 246.945 246.977 247.023 247.149 247.2 247.19 247.202 247.236 247.183 247.123 247.04 246.987 246.961 246.906 246.745 246.529 246.35 246.269 246.14 245.909 245.605 245.457 245.336 245.058 244.728 244.518 244.293 243.902 243.518 243.196 242.761 242.222 241.795 241.353 240.898 240.647 240.407 240.135 240.226 240.362 240.336 240.484 240.57 240.53 240.362 239.97 239.671 239.852 239.833 239.459 239.212 238.717 238.385 237.996 237.635 237.503 237.424 237.145 236.646 236.25 236.008 235.581 235.225 234.668 234.239 233.516 233.062 232.79 233.37 233.11 233.479 233.927 233.526 233.594 233.561 234.184 234.948 236.406 236.12 236.559 236.591 237.187 237.646 238.209 238.255 239.272 239.446 239.765 239.691 239.496 239.895 240.454 242.303 242.285 242.036 241.69 241.122 240.471 239.598 238.532 237.47 236.428 235.506 234.93 234.722 234.691 234.94 235.465 236.279 237.458 238.872 240.21 241.476 242.587 243.493 244.213 244.83 245.44 245.983 246.576 247.454 247.946 248.949 249.652 250.652 251.857 253.153 255.22 256.719 258.224 259.993 261.974 264.223 265.602 260.799 262.918 263.902 264.897 265.224 265.437 265.421 265.202 264.825 264.229 262.681 259.415 258.529 258.493 258.602 258.424 257.994 257.876 258.613 259.351 260.066 260.684 260.908 261.27 261.434 262.057 262.417 262.631 262.852 262.858 262.856 262.724 262.483 262.191 261.834 261.36 260.816 260.22 259.47 258.759 258.107 257.369 256.721 256.171 255.558 254.884 254.175 253.354 252.583 251.762 250.965 250.283 249.681 249.099 248.678 248.417 248.133 247.825 247.809 248.009 248.092 248.034 247.905 247.751 247.459 247.002 246.353 245.546 244.599 243.728 243.108 242.914 242.961 242.941 243.017 245.215 246.695 247.045 247.256 247.403 247.362 247.024 246.447 245.778 245.196 244.751 244.452 244.297 244.262 244.27 244.296 244.309 244.305 244.276 244.266 244.249 244.226 244.238 244.366 244.689 245.034 245.237 245.473 245.683 245.809 245.831 245.758 245.652 245.585 245.538 245.547 245.627 245.807 245.993 246.201 246.295 246.275 246.202 246.076 245.923 245.802 245.77 245.785 245.898 246.044 246.108 246.167 246.282 246.393 246.436 246.426 246.348 246.222 246.109 245.978 245.795 245.59 245.366 245.222 245.066 244.799 244.448 244.213 244.136 244.014 243.78 243.543 243.372 243.154 242.775 242.4 242.15 241.777 241.334 241.095 240.892 240.531 240.275 240.042 239.763 239.767 239.917 239.936 239.972 240.125 240.161 240.149 240.085 239.925 239.803 239.585 239.386 239.262 239.039 238.727 238.242 238.182 237.98 236.92 236.47 236.041 235.806 235.742 235.278 235.153 234.926 234.368 233.98 233.526 233.619 233.161 232.494 232.464 232.913 234.805 236.45 237.432 237.869 238.209 238.204 237.758 236.703 235.949 236.664 237.801 238.306 240.2 240.811 241.005 241.256 241.526 241.765 241.888 241.904 241.895 241.647 241.309 240.738 240.096 239.264 238.408 237.595 236.822 236.266 235.85 235.686 235.821 236.027 236.485 237.131 237.907 238.761 239.657 240.559 241.43 242.236 242.926 243.504 244.111 244.752 245.407 246.039 247.179 247.974 248.479 249.171 250.158 250.636 251.649 252.013 253.771 254.408 255.964 256.868 257.883 259.57 257.069 257.285 258.462 258.688 259.804 260.274 260.831 260.94 260.173 257.719 257.039 256.693 256.24 255.947 255.78 255.969 256.177 256.605 256.984 257.184 257.156 257.293 257.573 257.944 258.544 258.888 259.434 259.705 259.826 260.076 259.998 259.851 259.683 259.369 259.124 258.781 258.291 257.865 257.304 256.715 256.264 255.683 255.056 254.638 254.19 253.558 252.914 252.286 251.611 250.973 250.402 249.892 249.381 248.965 248.692 248.511 248.349 248.189 248.039 247.914 247.799 247.613 247.366 247.162 247.021 246.543 245.661 244.774 243.61 244.04 244.073 244.417 246.543 247.307 247.107 247.55 247.831 247.309 246.637 246.003 245.431 244.941 244.55 244.304 244.262 244.363 244.506 244.573 244.602 244.626 244.62 244.585 244.534 244.464 244.412 244.433 244.454 244.488 244.531 244.581 244.712 244.811 244.909 244.994 245.05 245.102 245.137 245.162 245.171 245.16 245.146 245.175 245.253 245.337 245.44 245.541 245.654 245.73 245.714 245.562 245.369 245.149 244.947 244.894 244.846 244.822 244.885 244.979 245.07 245.138 245.163 245.152 245.22 245.287 245.256 245.114 244.904 244.74 244.626 244.452 244.237 244.02 243.873 243.749 243.572 243.327 243.097 242.921 242.731 242.444 242.174 241.988 241.735 241.402 241.171 241.095 241.043 240.978 240.884 240.764 240.611 240.487 240.479 240.409 240.325 240.342 240.352 240.421 240.519 240.527 240.399 240.141 239.871 239.505 239.022 238.591 238.004 237.589 237.506 237.109 237.039 237.029 237.03 237.08 236.944 237.01 237.267 237.278 237.231 236.765 236.445 236.537 236.638 236.919 237.045 237.192 237.368 237.534 237.714 237.93 238.183 238.455 237.091 237.057 235.716 235.124 235.207 234.849 236.387 236.91 237.967 240.658 240.877 241.047 241.07 241.064 240.916 240.686 240.429 240.061 239.676 239.285 238.979 238.696 238.631 238.651 238.692 238.867 239.075 239.401 239.703 240.073 240.464 240.949 241.439 241.96 242.422 242.895 243.397 243.938 244.498 245.122 246.378 248.007 248.249 248.499 249.577 249.931 250.798 250.904 251.465 251.57 253.312 253.38 255.585 255.729 252.168 252.424 253.142 253.926 253.999 255.487 255.431 255.809 256.064 255.873 255.709 255.593 255.479 255.405 255.044 254.087 253.772 253.677 253.936 254.149 254.531 255.047 255.668 256.139 256.431 256.619 256.68 256.798 256.748 256.613 256.526 256.273 255.959 255.66 255.308 254.999 254.878 254.707 254.379 254.046 253.525 252.996 252.642 251.927 251.363 250.868 250.513 250.214 249.905 249.604 249.294 248.985 248.719 248.497 248.313 248.14 247.988 247.905 247.872 247.859 247.834 247.759 247.603 247.364 246.883 246.324 246.13 245.795 245.578 245.914 247.313 248.384 248.391 248.239 247.956 247.533 247.064 246.495 245.802 245.184 244.742 244.509 244.428 244.503 244.68 244.79 244.855 244.817 244.785 244.773 244.752 244.709 244.634 244.631 244.634 244.662 244.777 244.864 244.954 245.061 245.119 245.145 245.164 245.174 245.177 245.192 245.205 245.21 245.18 245.149 245.121 245.13 245.114 245.12 245.129 245.171 245.205 245.231 245.2 245.088 244.942 244.736 244.541 244.365 244.208 244.152 244.179 244.204 244.22 244.275 244.389 244.533 244.662 244.746 244.839 244.922 244.939 244.878 244.715 244.542 244.377 244.216 244.049 243.828 243.6 243.404 243.237 243.068 242.885 242.708 242.567 242.433 242.26 242.102 242.006 241.869 241.676 241.624 241.652 241.574 241.405 241.368 241.322 241.167 241.107 241.07 240.923 240.73 240.667 240.557 240.242 239.992 239.734 239.312 239.035 238.848 238.692 238.519 238.352 238.194 237.953 237.823 237.52 237.279 237.205 236.987 236.89 236.885 237.108 237.215 237.324 237.215 237.092 236.994 236.896 236.776 236.763 236.779 236.787 236.788 236.801 236.851 236.915 236.998 236.941 237.157 237.102 236.88 237.48 238.038 238.31 238.55 238.791 239.053 239.329 239.583 239.803 239.947 240.063 240.13 240.192 240.154 240.239 240.179 240.139 240.121 240.156 240.174 240.141 240.145 240.201 240.329 240.492 240.703 240.924 241.188 241.496 241.873 242.318 242.802 243.312 243.87 244.519 245.232 246.671 247.715 248.306 248.398 247.904 247.908 248.226 248.802 249.107 249.685 250.721 250.835 249.309 249.559 250.059 250.17 250.357 250.801 250.818 250.97 251.219 251.191 251.387 251.593 251.55 251.701 251.817 251.764 252.041 252.36 252.376 252.718 253.003 253.055 253.24 253.314 253.355 253.375 253.313 253.323 253.296 253.128 252.992 252.931 252.768 252.58 252.412 252.223 251.956 251.66 251.301 250.823 250.334 249.944 249.496 249.077 248.732 248.54 248.329 248.099 247.91 247.831 247.738 247.648 247.518 247.436 247.342 247.259 247.215 247.171 247.179 247.182 247.109 246.872 246.588 246.334 246.215 246.191 246.218 246.487 246.884 247.317 247.539 247.477 247.236 246.871 246.481 246.112 245.701 245.314 245.06 244.799 244.623 244.525 244.461 244.441 244.382 244.353 244.307 244.261 244.269 244.301 244.348 244.442 244.55 244.716 244.888 244.997 245.12 245.286 245.382 245.485 245.602 245.628 245.646 245.642 245.626 245.606 245.563 245.404 245.308 245.22 245.145 245.079 245.029 244.961 244.916 244.907 244.92 244.907 244.868 244.809 244.757 244.711 244.616 244.487 244.357 244.31 244.282 244.274 244.277 244.307 244.314 244.275 244.235 244.259 244.243 244.195 244.14 244.1 244.08 244.082 244.057 243.999 243.873 243.708 243.49 243.295 243.122 242.975 242.842 242.645 242.429 242.176 241.997 241.85 241.622 241.367 241.263 241.222 241.036 240.77 240.629 240.538 240.288 240.05 239.983 239.925 239.626 239.529 239.519 239.371 239.244 239.191 239.079 238.956 238.89 238.876 238.883 238.853 238.783 238.738 238.478 238.144 238.076 237.762 237.395 237.367 237.141 236.967 236.976 236.898 236.861 236.87 237.322 237.553 237.48 237.661 237.821 237.72 237.655 237.723 237.646 237.566 237.492 237.41 237.356 237.318 237.248 237.237 237.266 237.3 237.384 237.581 237.56 237.608 237.368 237.05 237.367 237.91 238.319 237.31 237.461 239.516 239.791 239.924 239.921 240.061 240.047 240.097 240.078 240.13 240.217 240.353 240.575 240.823 241.089 241.36 241.671 241.991 242.342 242.72 243.275 243.655 242.884 242.384 243.453 244.526 244.3 244.108 244.677 245.581 246.484 247.027 247.711 248.178 248.545 249.072 247.6 247.802 247.991 248.305 248.621 248.701 248.93 249.326 249.42 249.453 249.621 249.762 249.775 249.786 250.051 250.047 250.034 250.161 250.288 250.248 250.251 250.337 250.306 250.231 250.295 250.335 250.292 250.239 250.271 250.226 250.139 250.079 249.98 249.82 249.638 249.459 249.232 248.981 248.735 248.449 248.208 247.985 247.754 247.493 247.205 246.97 246.807 246.658 246.5 246.264 246.094 245.981 245.987 245.942 245.858 245.789 245.759 245.819 245.862 245.853 245.782 245.709 245.609 245.562 245.514 245.397 245.303 245.269 245.301 245.404 245.552 245.654 245.604 245.458 245.285 245.081 244.843 244.615 244.407 244.311 244.285 244.213 244.085 243.981 243.979 243.969 243.897 243.806 243.86 243.939 243.916 243.954 244.07 244.173 244.276 244.368 244.451 244.644 244.776 244.872 245.076 245.103 245.137 245.118 245.109 245.125 245.085 245.006 244.915 244.862 244.88 244.808 244.687 244.643 244.611 244.575 244.461 244.403 244.411 244.368 244.285 244.21 244.228 244.207 244.139 244.128 244.077 243.999 243.902 243.779 243.665 243.591 243.599 243.595 243.544 243.469 243.355 243.224 243.175 243.146 243.109 243.017 242.857 242.667 242.594 242.572 242.56 242.481 242.294 242.134 242.005 241.902 241.74 241.506 241.321 241.178 241.072 240.877 240.697 240.525 240.414 240.255 240.1 240.001 239.932 239.829 239.691 239.563 239.518 239.501 239.459 239.421 239.451 239.442 239.452 239.458 239.498 239.482 239.402 239.186 239.12 239.099 238.804 238.529 238.523 238.517 238.417 238.405 238.404 238.295 238.077 238.086 238.062 237.777 237.635 237.655 237.58 237.534 237.473 237.913 238.634 238.536 238.3 238.208 238.369 238.105 237.868 237.814 237.388 236.937 236.708 236.447 236.258 236.103 235.908 235.755 235.692 235.647 235.637 235.644 235.71 235.882 236.179 238.323 239.03 239.375 239.541 239.756 239.966 240.118 240.134 240.267 240.323 240.79 242.29 242.562 242.739 242.971 242.817 242.479 242.15 241.953 242.175 242.602 243.123 243.672 244.115 244.453 244.893 245.486 245.928 246.214 246.501 246.827 247.055 247.295 245.795 245.888 245.996 246.137 246.325 246.539 246.626 246.717 246.893 247.091 247.173 247.215 247.251 247.326 247.397 247.416 247.429 247.437 247.511 247.505 247.492 247.476 247.539 247.564 247.536 247.503 247.508 247.518 247.493 247.451 247.42 247.382 247.307 247.216 247.142 247.095 247.005 246.87 246.715 246.585 246.453 246.297 246.149 245.991 245.844 245.681 245.521 245.382 245.243 245.126 245.016 244.917 244.827 244.73 244.648 244.588 244.603 244.607 244.603 244.592 244.578 244.549 244.546 244.537 244.523 244.49 244.461 244.424 244.409 244.413 244.458 244.486 244.48 244.437 244.389 244.311 244.158 244.014 243.88 243.777 243.695 243.663 243.643 243.641 243.636 243.611 243.584 243.574 243.608 243.686 243.755 243.815 243.857 243.91 243.978 244.019 244.123 244.163 244.322 244.354 244.5 244.512 244.578 244.581 244.613 244.612 244.616 244.588 244.559 244.531 244.482 244.398 244.311 244.262 244.208 244.145 244.055 243.975 243.876 243.771 243.697 243.624 243.557 243.484 243.423 243.314 243.178 243.026 242.88 242.745 242.622 242.562 242.524 242.502 242.478 242.436 242.384 242.328 242.285 242.292 242.298 242.315 242.325 242.309 242.274 242.252 242.234 242.209 242.149 242.071 241.977 241.916 241.849 241.771 241.651 241.482 241.36 241.261 241.178 241.088 240.959 240.827 240.663 240.495 240.344 240.222 240.149 239.996 239.864 239.779 239.753 239.745 239.754 239.809 239.838 239.83 239.823 239.769 239.724 239.72 239.716 239.714 239.497 239.461 239.465 239.47 239.41 239.351 239.353 239.368 239.35 239.315 239.328 239.335 239.323 239.239 239.21 239.238 239.258 239.2 239.188 239.199 239.246 239.234 239.126 239.04 238.968 238.945 238.902 238.804 238.767 238.722 238.658 238.619 238.585 238.522 238.524 238.581 238.66 238.742 238.801 238.851 239.009 238.996 238.963 239.229 239.23 239.319 239.418 239.521 239.617 239.724 239.758 240.055 240.198 240.446 240.696 240.971 241.295 241.586 241.914 242.231 242.508 242.776 243.079 243.386 243.692 243.982 244.229 244.455 244.687 244.91 245.066 245.203 245.381 245.588 243.999 244.048 244.126 244.204 244.285 244.374 244.408 244.421 244.484 244.553 244.637 244.744 244.787 244.827 244.869 244.93 245.051 245.197 245.239 245.251 245.26 245.267 245.271 245.38 245.389 245.381 245.371 245.357 245.346 245.32 245.272 245.25 245.229 245.206 245.184 245.111 245.037 244.976 244.921 244.883 244.825 244.744 244.656 244.565 244.479 244.414 244.348 244.272 244.194 244.123 244.045 243.981 243.946 243.938 243.914 243.89 243.868 243.842 243.808 243.784 243.782 243.793 243.798 243.802 243.802 243.789 243.783 243.778 243.767 243.745 243.75 243.739 243.712 243.669 243.612 243.541 243.466 243.392 243.289 243.208 243.109 243.053 243.031 243.017 243.003 242.992 243.006 243.03 243.084 243.164 243.217 243.253 243.254 243.227 243.25 243.403 243.482 243.493 243.511 243.512 243.555 243.557 243.573 243.582 243.582 243.544 243.534 243.614 243.671 243.646 243.602 243.542 243.493 243.437 243.38 243.317 243.248 243.184 243.124 243.076 243.04 243.0 242.948 242.899 242.842 242.788 242.729 242.663 242.604 242.534 242.471 242.415 242.357 242.302 242.247 242.201 242.157 242.116 242.065 242.012 241.978 241.96 241.945 241.932 241.92 241.891 241.838 241.774 241.747 241.732 241.719 241.698 241.666 241.591 241.498 241.464 241.437 241.409 241.374 241.318 241.231 241.197 241.125 241.046 240.963 240.873 240.802 240.79 240.78 240.751 240.624 240.513 240.495 240.491 240.488 240.485 240.472 240.016 239.999 240.0 240.002 240.004 239.996 239.965 239.927 239.904 239.908 239.913 239.913 239.921 239.955 239.997 240.019 240.021 240.017 240.017 240.02 240.048 240.096 240.141 240.173 240.185 240.181 240.179 240.195 240.239 240.281 240.315 240.369 240.407 240.411 240.402 240.406 240.432 240.48 240.517 240.535 240.545 240.56 240.581 240.629 240.685 240.673 240.7 240.816 240.836 240.922 240.986 241.026 241.063 241.075 241.158 241.257 241.358 241.457 241.543 241.648 241.778 241.901 242.007 242.123 242.236 242.357 242.495 242.642 242.786 242.923 243.049 243.163 243.26 243.351 243.453 243.579 243.705 243.834 243.94 242.396 242.45 242.502 242.562 242.614 242.65 242.676 242.718 242.762 242.803 242.842 242.888 242.941 243.003 243.061 243.084 243.104 243.124 243.151 243.204 243.283 243.386 243.527 243.594 243.601 243.605 243.607 243.608 243.606 243.603 243.606 243.717 243.825 243.837 243.826 243.816 243.806 243.795 243.782 243.762 243.722 243.676 243.633 243.59 243.551 243.51 243.472 243.435 243.403 243.354 243.289 243.216 243.148 243.094 243.045 242.998 242.954 242.944 242.944 242.933 242.903 242.86 242.812 242.745 242.68 242.635 242.587 242.537 242.52 242.533 242.536 242.54 242.546 242.522 242.505 242.492 242.457 242.427 242.407 242.38 242.356 242.341 242.322 242.311 242.314 242.317 242.322 242.337 242.364 242.392 242.414 242.44 242.474 242.53 242.611 242.633 242.702 242.763 242.767 242.768 242.818 242.821 242.819 242.793 242.771 242.759 242.704 242.651 242.622 242.614 242.605 242.58 242.547 242.522 242.518 242.523 242.525 242.511 242.489 242.471 242.452 242.438 242.425 242.404 242.38 242.356 242.329 242.3 242.266 242.228 242.184 242.14 242.111 242.092 242.077 242.064 242.052 242.037 242.02 242.006 241.984 241.96 241.93 241.901 241.885 241.872 241.862 241.854 241.849 241.844 241.835 241.817 241.786 241.75 241.718 241.688 241.648 241.596 241.534 241.463 241.378 241.278 241.254 241.247 241.242 241.237 241.234 241.197 240.996 240.794 240.766 240.766 240.767 240.768 240.768 240.769 240.77 240.697 240.547 240.472 240.429 240.405 240.407 240.413 240.42 240.413 240.382 240.344 240.312 240.288 240.266 240.247 240.231 240.217 240.206 240.2 240.191 240.182 240.179 240.179 240.183 240.19 240.201 240.223 240.26 240.295 240.334 240.377 240.413 240.444 240.472 240.496 240.52 240.544 240.57 240.594 240.615 240.632 240.65 240.689 240.744 240.78 240.813 240.87 240.888 240.975 241.055 241.065 241.067 241.066 241.064 241.064 241.114 241.131 241.149 241.188 241.218 241.268 241.332 241.4 241.465 241.532 241.596 241.661 241.727 241.796 241.867 241.939 242.007 242.07 242.121 242.167 242.202 242.245 242.297 242.343 241.611 241.628 241.641 241.654 241.668 241.686 241.703 241.72 241.737 241.754 241.771 241.794 241.819 241.845 241.873 241.906 241.941 241.977 242.009 242.02 242.025 242.032 242.041 242.049 242.056 242.062 242.068 242.072 242.076 242.079 242.082 242.086 242.107 242.329 242.423 242.419 242.415 242.411 242.405 242.398 242.394 242.391 242.387 242.382 242.377 242.372 242.366 242.357 242.361 242.37 242.372 242.371 242.366 242.36 242.352 242.344 242.335 242.325 242.314 242.306 242.302 242.297 242.292 242.286 242.278 242.269 242.264 242.259 242.255 242.254 242.254 242.252 242.251 242.252 242.254 242.256 242.257 242.258 242.258 242.259 242.259 242.259 242.258 242.257 242.255 242.252 242.249 242.246 242.249 242.255 242.261 242.267 242.273 242.282 242.308 242.348 242.355 242.356 242.356 242.356 242.36 242.36 242.359 242.359 242.353 242.307 242.269 242.249 242.235 242.219 242.198 242.181 242.168 242.158 242.148 242.137 242.128 242.12 242.111 242.097 242.082 242.069 242.057 242.044 242.032 242.019 242.007 241.995 241.978 241.958 241.937 241.916 241.891 241.864 241.835 241.806 241.789 241.781 241.773 241.765 241.757 241.75 241.746 241.742 241.737 241.73 241.722 241.713 241.698 241.677 241.649 241.603 241.548 241.515 241.513 241.511 241.509 241.507 241.506 241.505 241.504 241.505 241.506 241.507 241.508 241.508 241.458 241.226 241.18 241.175 241.173 241.172 241.171 241.172 241.172 241.173 241.175 241.176 241.178 241.181 241.183 241.182 241.148 241.111 241.078 241.048 241.024 241.003 240.986 240.973 240.962 240.953 240.948 240.945 240.943 240.942 240.943 240.943 240.927 240.911 240.9 240.891 240.882 240.876 240.873 240.872 240.869 240.865 240.861 240.86 240.859 240.857 240.856 240.857 240.854 240.849 240.844 240.839 240.842 240.852 240.866 240.882 240.897 240.939 241.016 241.036 241.036 241.036 241.118 241.123 241.124 241.123 241.118 241.117 241.12 241.132 241.148 241.161 241.178 241.221 241.26 241.293 241.324 241.351 241.372 241.391 241.412 241.433 241.452 241.468 241.487 241.51 241.532 241.553 241.57 241.59 223.821 223.731 223.646 223.572 223.516 223.441 223.344 223.251 223.177 223.066 222.873 222.791 222.756 222.612 222.518 222.464 222.365 222.207 222.115 222.021 221.924 221.831 221.639 221.63 221.611 221.437 221.311 221.295 221.234 221.155 221.114 221.065 220.995 220.887 220.872 220.739 220.733 220.654 220.623 220.622 220.532 220.543 220.499 220.46 220.395 220.398 220.281 220.264 220.253 220.253 220.237 220.26 220.194 220.194 220.196 220.181 220.178 220.255 220.251 220.242 220.27 220.29 220.312 220.351 220.411 220.441 220.485 220.532 220.509 220.595 220.636 220.682 220.76 220.795 220.9 220.946 221.008 221.132 221.127 221.277 221.272 221.466 221.558 221.67 221.777 221.902 221.986 222.092 222.202 222.325 222.421 222.533 222.638 222.781 222.85 223.002 223.087 223.258 223.253 223.396 223.516 223.622 223.811 223.922 224.006 224.042 224.227 224.303 224.368 224.511 224.646 224.763 224.884 225.017 225.102 225.134 225.283 225.392 225.371 225.559 225.659 225.724 225.85 225.974 225.873 226.084 226.206 226.343 226.429 226.51 226.638 226.6 226.718 226.676 226.915 226.919 227.041 226.997 227.219 227.279 227.312 227.322 227.449 227.523 227.516 227.52 227.578 227.741 227.805 227.766 227.788 227.945 227.96 227.869 227.915 227.998 228.08 228.007 227.956 228.085 228.145 228.073 228.096 228.184 228.112 228.098 228.203 228.161 228.136 228.235 228.242 228.166 228.171 228.223 228.181 228.151 228.17 228.142 228.11 228.126 228.044 228.032 228.027 228.002 227.966 227.928 227.894 227.884 227.871 227.819 227.814 227.813 227.741 227.728 227.693 227.625 227.622 227.58 227.553 227.543 227.503 227.467 227.486 227.371 227.337 227.317 227.31 227.252 227.208 227.132 227.11 227.095 227.035 226.981 226.955 226.867 226.806 226.802 226.722 226.655 226.57 226.536 226.488 226.449 226.368 226.304 226.229 226.142 226.108 226.07 225.977 225.892 225.83 225.774 225.723 225.63 225.51 225.46 225.366 225.313 225.288 225.159 225.102 225.012 224.878 224.765 224.71 224.641 224.593 224.453 224.413 224.394 224.264 224.19 224.062 223.936 225.939 225.76 225.561 225.396 225.185 225.031 224.847 224.619 224.44 224.248 224.034 223.911 223.7 223.51 223.299 223.128 222.952 222.713 222.548 222.354 222.118 221.951 221.78 221.592 221.351 221.161 220.981 220.807 220.657 220.468 220.268 220.094 219.953 219.827 219.592 219.455 219.311 219.221 219.056 218.908 218.773 218.663 218.521 218.424 218.282 218.181 218.118 218.005 217.892 217.826 217.733 217.714 217.652 217.596 217.587 217.569 217.556 217.553 217.523 217.57 217.626 217.618 217.649 217.753 217.78 217.865 217.933 218.042 218.092 218.151 218.278 218.42 218.494 218.625 218.761 218.856 219.061 219.229 219.424 219.546 219.781 219.999 220.222 220.495 220.76 220.955 221.236 221.579 221.792 222.123 222.404 222.644 222.953 223.239 223.528 223.831 224.101 224.384 224.677 224.96 225.284 225.456 225.832 226.044 226.334 226.614 226.889 227.246 227.442 227.793 227.891 228.269 228.476 228.782 228.948 229.22 229.501 229.761 229.966 230.203 230.495 230.601 230.96 231.132 231.316 231.609 231.755 231.868 232.094 232.302 232.46 232.578 232.779 232.906 233.099 233.231 233.33 233.398 233.557 233.644 233.715 233.824 233.901 233.958 233.981 234.032 234.12 234.126 234.118 234.104 234.099 234.089 234.099 234.051 234.039 233.977 233.914 233.86 233.808 233.761 233.683 233.604 233.488 233.365 233.361 233.283 233.147 232.981 232.859 232.8 232.742 232.617 232.444 232.365 232.24 232.136 232.044 231.956 231.902 231.764 231.776 231.769 231.67 231.63 231.656 231.592 231.593 231.53 231.577 231.538 231.574 231.557 231.541 231.559 231.571 231.576 231.583 231.54 231.57 231.548 231.553 231.503 231.504 231.443 231.471 231.386 231.396 231.378 231.334 231.272 231.233 231.175 231.127 231.063 230.997 230.908 230.849 230.782 230.684 230.583 230.515 230.446 230.333 230.238 230.164 230.09 229.979 229.902 229.769 229.684 229.535 229.444 229.327 229.198 229.09 228.969 228.849 228.735 228.608 228.48 228.362 228.219 228.087 227.959 227.831 227.673 227.544 227.399 227.251 227.104 226.951 226.789 226.642 226.463 226.273 226.09 227.973 227.712 227.464 227.214 226.976 226.745 226.511 226.248 226.017 225.751 225.518 225.283 225.051 224.845 224.601 224.379 224.184 223.96 223.733 223.485 223.194 222.96 222.693 222.411 222.211 221.968 221.76 221.529 221.296 221.134 220.912 220.744 220.539 220.349 220.172 219.99 219.826 219.678 219.534 219.361 219.209 219.093 218.963 218.809 218.695 218.598 218.445 218.346 218.253 218.123 218.061 217.938 217.879 217.785 217.715 217.638 217.595 217.542 217.484 217.489 217.466 217.439 217.47 217.5 217.516 217.621 217.702 217.741 217.873 218.008 218.106 218.269 218.476 218.583 218.731 218.939 219.193 219.38 219.636 219.941 220.204 220.524 220.873 221.261 221.616 221.994 222.392 222.797 223.219 223.656 224.103 224.554 225.035 225.427 225.967 226.454 226.914 227.39 227.853 228.254 228.725 229.145 229.634 230.004 230.448 230.921 231.238 231.67 232.089 232.483 232.916 233.292 233.712 234.114 234.469 234.877 235.325 235.62 236.007 236.33 236.736 237.04 237.339 237.768 238.071 238.349 238.612 238.952 239.2 239.468 239.744 239.968 240.14 240.349 240.584 240.787 240.888 241.053 241.192 241.327 241.441 241.486 241.53 241.58 241.609 241.608 241.599 241.553 241.5 241.432 241.354 241.262 241.153 241.007 240.834 240.665 240.495 240.279 240.06 239.847 239.583 239.323 239.025 238.726 238.471 238.151 237.801 237.477 237.14 236.774 236.426 236.111 235.757 235.398 235.114 234.838 234.542 234.329 234.049 233.872 233.68 233.485 233.391 233.336 233.27 233.276 233.282 233.351 233.403 233.52 233.641 233.799 233.956 234.132 234.322 234.46 234.625 234.828 235.0 235.19 235.349 235.481 235.599 235.766 235.896 235.992 236.108 236.173 236.233 236.253 236.253 236.262 236.237 236.188 236.107 236.047 235.98 235.911 235.823 235.725 235.618 235.499 235.378 235.224 235.077 234.903 234.752 234.583 234.419 234.241 234.075 233.894 233.701 233.518 233.316 233.112 232.903 232.67 232.428 232.176 231.912 231.669 231.425 231.181 230.944 230.698 230.446 230.196 229.944 229.707 229.461 229.209 228.971 228.719 228.47 228.237 228.953 228.625 228.319 228.008 227.713 227.496 227.214 226.983 226.731 226.494 226.236 226.024 225.802 225.583 225.335 225.111 224.855 224.664 224.441 224.263 224.004 223.752 223.519 223.25 223.003 222.726 222.464 222.142 221.804 221.502 221.155 220.888 220.636 220.372 220.113 219.885 219.616 219.39 219.153 218.955 218.733 218.531 218.341 218.138 217.978 217.821 217.707 217.619 217.535 217.449 217.403 217.322 217.328 217.286 217.293 217.259 217.259 217.245 217.275 217.263 217.31 217.33 217.402 217.417 217.535 217.558 217.705 217.692 217.966 218.002 218.271 218.295 218.592 218.67 218.982 219.069 219.435 219.561 219.973 220.181 220.606 220.884 221.326 221.642 222.172 222.597 223.143 223.624 224.165 224.718 225.279 225.87 226.462 227.074 227.689 228.379 228.983 229.607 230.303 230.94 231.552 232.182 232.781 233.385 233.908 234.524 235.071 235.63 236.21 236.751 237.329 237.8 238.403 238.857 239.496 239.989 240.523 241.08 241.517 242.056 242.573 243.057 243.503 243.981 244.407 244.812 245.204 245.563 245.892 246.187 246.444 246.66 246.866 247.056 247.192 247.309 247.406 247.493 247.518 247.557 247.582 247.554 247.548 247.509 247.451 247.419 247.377 247.302 247.216 247.152 247.065 246.949 246.84 246.696 246.542 246.372 246.15 245.915 245.664 245.377 245.061 244.712 244.356 243.914 243.494 242.994 242.473 241.964 241.378 240.789 240.193 239.552 238.887 238.223 237.57 237.044 236.3 235.73 235.178 234.693 234.242 233.851 233.451 233.042 232.73 232.6 232.498 232.525 232.61 232.788 233.09 233.439 233.816 234.281 234.766 235.3 235.827 236.353 236.816 237.329 237.734 238.215 238.63 239.045 239.359 239.656 239.988 240.2 240.418 240.627 240.802 240.94 241.039 241.094 241.113 241.165 241.143 241.138 241.108 241.032 240.989 240.859 240.722 240.571 240.4 240.193 240.011 239.791 239.564 239.288 239.015 238.721 238.414 238.088 237.751 237.383 237.028 236.659 236.25 235.861 235.46 235.03 234.65 234.252 233.783 233.324 232.86 232.432 231.97 231.549 231.162 230.795 230.401 230.053 229.7 229.32 230.73 230.391 230.049 229.75 229.47 229.213 228.973 228.736 228.493 228.275 228.023 227.85 227.65 227.391 227.146 226.886 226.577 226.283 225.973 225.662 225.311 224.966 224.592 224.205 223.792 223.378 222.931 222.471 221.978 221.526 221.084 220.625 220.177 219.748 219.3 218.825 218.402 217.987 217.615 217.271 216.953 216.67 216.401 216.152 215.921 215.717 215.535 215.378 215.248 215.134 215.068 215.036 215.058 215.1 215.175 215.274 215.356 215.479 215.647 215.82 215.956 216.161 216.369 216.585 216.802 217.019 217.19 217.442 217.665 217.969 218.24 218.506 218.718 218.95 219.145 219.403 219.608 219.88 220.129 220.409 220.659 220.963 221.26 221.652 222.053 222.501 222.957 223.482 224.032 224.623 225.254 225.907 226.594 227.3 228.05 228.797 229.557 230.354 231.146 231.933 232.726 233.485 234.29 235.055 235.846 236.603 237.35 238.133 238.879 239.626 240.361 241.086 241.844 242.639 243.306 244.066 244.713 245.369 245.985 246.571 247.072 247.59 248.001 248.344 248.698 248.907 249.122 249.272 249.428 249.524 249.549 249.552 249.54 249.471 249.382 249.26 249.148 248.993 248.843 248.681 248.541 248.404 248.269 248.163 248.064 247.976 247.901 247.844 247.818 247.838 247.838 247.878 247.91 247.951 248.019 248.083 248.18 248.253 248.345 248.364 248.335 248.268 248.115 247.913 247.631 247.304 246.911 246.458 245.903 245.287 244.661 243.968 243.258 242.466 241.626 240.769 239.905 238.958 237.999 237.118 236.278 235.492 234.772 234.202 233.693 233.271 232.923 232.785 232.785 232.936 233.183 233.497 233.947 234.441 234.98 235.662 236.369 237.134 237.876 238.586 239.219 239.792 240.345 240.853 241.322 241.719 242.074 242.428 242.688 242.917 243.113 243.292 243.421 243.534 243.67 243.785 243.929 244.112 244.265 244.38 244.52 244.657 244.768 244.781 244.737 244.613 244.518 244.334 244.074 243.816 243.488 243.159 242.754 242.38 241.952 241.476 240.997 240.487 240.009 239.473 238.917 238.374 237.813 237.234 236.683 236.104 235.547 235.01 234.463 233.899 233.373 232.859 232.368 231.93 231.551 231.14 233.159 232.718 232.324 231.964 231.647 231.27 230.962 230.651 230.384 230.108 229.833 229.592 229.36 229.11 228.823 228.488 228.071 227.629 227.192 226.759 226.251 225.721 225.126 224.511 223.865 223.154 222.445 221.749 221.019 220.339 219.662 219.02 218.386 217.806 217.298 216.823 216.406 216.045 215.719 215.431 215.182 214.973 214.799 214.627 214.479 214.354 214.223 214.096 213.984 213.876 213.789 213.71 213.642 213.596 213.592 213.614 213.652 213.741 213.869 214.005 214.184 214.403 214.684 215.001 215.331 215.688 216.057 216.422 216.797 217.202 217.62 218.039 218.439 218.801 219.087 219.346 219.557 219.772 219.976 220.18 220.384 220.569 220.772 221.012 221.315 221.656 222.009 222.415 222.887 223.41 223.975 224.595 225.248 225.948 226.683 227.421 228.235 229.063 229.92 230.825 231.762 232.717 233.699 234.738 235.778 236.832 237.883 238.889 239.911 240.928 241.881 242.805 243.661 244.473 245.192 245.955 246.562 247.202 247.723 248.027 248.27 248.422 248.421 248.425 248.365 248.213 248.028 247.834 247.571 247.297 247.009 246.744 246.475 246.213 245.967 245.71 245.483 245.287 245.108 244.983 244.89 244.844 244.846 244.838 244.818 244.886 244.956 245.069 245.241 245.491 245.825 246.226 246.525 246.831 247.12 247.42 247.71 247.986 248.233 248.463 248.648 248.757 248.863 248.888 248.895 248.791 248.626 248.348 247.975 247.58 247.107 246.597 245.981 245.327 244.603 243.862 242.98 242.094 241.222 240.369 239.56 238.807 238.151 237.57 237.029 236.56 236.103 235.798 235.591 235.59 235.746 236.113 236.444 236.906 237.447 238.036 238.642 239.222 239.783 240.364 240.859 241.295 241.702 242.038 242.291 242.438 242.514 242.462 242.352 242.203 242.046 241.916 241.815 241.808 241.867 242.034 242.236 242.477 242.81 243.196 243.687 244.166 244.686 245.118 245.464 245.738 246.065 246.226 246.313 246.305 246.201 246.003 245.729 245.398 244.978 244.564 244.129 243.605 243.033 242.466 241.905 241.341 240.776 240.245 239.719 239.14 238.547 237.971 237.388 236.844 236.292 235.741 235.176 234.636 234.087 233.624 235.18 234.63 234.073 233.518 232.96 232.46 232.011 231.526 231.068 230.59 230.229 229.802 229.3 228.824 228.359 227.908 227.469 227.003 226.515 225.991 225.361 224.744 224.072 223.274 222.463 221.612 220.759 219.87 219.016 218.228 217.527 216.866 216.326 215.844 215.459 215.164 214.989 214.899 214.931 215.011 215.165 215.354 215.547 215.733 215.871 215.964 216.082 216.106 216.06 215.98 215.889 215.761 215.592 215.406 215.191 214.968 214.735 214.504 214.281 214.089 213.948 213.892 213.772 213.794 213.797 213.961 214.22 214.545 214.919 215.304 215.723 216.169 216.616 217.06 217.464 217.786 218.066 218.309 218.52 218.714 218.894 219.054 219.24 219.497 219.757 220.07 220.421 220.773 221.194 221.643 222.136 222.681 223.265 223.88 224.544 225.264 226.021 226.814 227.632 228.499 229.418 230.408 231.45 232.588 233.816 235.059 236.302 237.55 238.83 240.089 241.316 242.526 243.612 244.521 245.416 246.186 246.736 247.011 247.238 247.198 246.987 246.771 246.401 245.991 245.55 245.057 244.609 244.19 243.85 243.566 243.364 243.233 243.12 243.097 243.171 243.259 243.475 243.725 244.014 244.284 244.652 244.92 245.169 245.435 245.776 246.138 246.627 247.148 247.618 248.016 248.359 248.643 248.93 249.191 249.401 249.528 249.67 249.762 249.817 249.84 249.732 249.544 249.286 248.968 248.618 248.169 247.767 247.258 246.752 246.262 245.709 245.25 244.737 244.283 243.783 243.098 242.558 242.031 241.501 241.026 240.551 240.148 239.801 239.427 239.121 238.73 238.426 238.249 238.216 238.274 238.365 238.616 238.859 239.21 239.69 240.325 240.87 241.377 241.816 242.197 242.508 242.713 242.762 242.672 242.433 242.013 241.53 240.95 240.321 239.659 238.992 238.418 237.971 237.591 237.362 237.256 237.314 237.528 237.854 238.363 238.957 239.669 240.482 241.408 242.373 243.327 244.126 244.759 245.459 245.969 246.404 246.648 246.818 246.866 246.656 246.444 246.082 245.746 245.245 244.753 244.367 243.86 243.448 242.969 242.49 241.949 241.399 240.802 240.204 239.552 238.909 238.244 237.586 236.945 236.326 235.761 236.313 235.613 234.973 234.361 233.735 233.16 232.524 231.94 231.368 230.744 230.125 229.47 228.866 228.232 227.598 226.92 226.337 225.771 225.181 224.588 223.969 223.355 222.654 221.923 221.158 220.372 219.551 218.716 217.931 217.216 216.573 216.085 215.753 215.583 215.572 215.679 215.933 216.293 216.738 217.245 217.789 218.371 218.956 219.598 220.166 220.653 221.042 221.301 221.428 221.454 221.369 221.164 220.868 220.518 220.116 219.693 219.268 218.833 218.381 217.936 217.457 216.976 216.526 216.114 215.757 215.489 215.277 215.148 215.089 215.169 215.308 215.566 215.782 216.056 216.334 216.596 216.845 217.046 217.201 217.33 217.415 217.493 217.638 217.861 218.111 218.416 218.729 219.064 219.428 219.831 220.272 220.726 221.227 221.743 222.302 222.933 223.603 224.327 225.096 225.956 226.826 227.735 228.808 229.952 231.131 232.395 233.72 235.114 236.52 237.955 239.393 240.797 242.149 243.413 244.537 245.521 246.326 246.907 247.238 247.312 247.108 246.673 246.16 245.632 245.068 244.557 244.074 243.733 243.501 243.378 243.473 243.651 243.931 244.296 244.705 245.177 245.679 246.232 246.725 247.174 247.562 247.886 248.061 248.483 248.892 249.268 249.544 249.865 250.09 250.304 250.389 250.46 250.466 250.413 250.301 250.119 249.925 249.755 249.517 249.195 248.802 248.336 247.833 247.295 246.716 246.139 245.571 244.966 244.376 243.792 243.272 242.888 242.506 242.316 242.147 242.008 242.024 241.883 241.806 241.841 241.786 241.776 241.781 241.709 241.615 241.401 241.251 240.98 240.761 240.59 240.53 240.556 240.686 240.864 241.056 241.266 241.558 241.795 241.975 242.123 242.252 242.228 242.013 241.652 241.121 240.58 239.98 239.309 238.592 237.885 237.238 236.641 236.15 235.7 235.403 235.266 235.262 235.443 235.816 236.305 236.847 237.551 238.249 239.172 240.225 241.445 242.501 243.735 244.977 246.034 246.819 247.448 248.026 248.303 248.388 248.47 248.295 248.05 247.727 247.402 247.022 246.471 246.01 245.524 244.938 244.362 243.789 243.079 242.366 241.59 240.836 240.016 239.182 238.37 237.632 236.972 236.904 236.096 235.371 234.691 234.027 233.354 232.664 231.965 231.238 230.476 229.66 228.802 227.929 227.079 226.215 225.39 224.6 223.847 223.13 222.498 221.87 221.276 220.7 220.126 219.611 219.122 218.629 218.178 217.813 217.55 217.438 217.456 217.596 217.846 218.199 218.6 219.12 219.749 220.448 221.307 222.186 223.059 223.909 224.761 225.594 226.315 226.985 227.545 227.919 228.166 228.254 228.255 228.144 227.879 227.487 226.978 226.384 225.736 225.036 224.299 223.564 222.802 222.031 221.323 220.632 220.008 219.382 218.764 218.222 217.813 217.543 217.373 217.24 217.169 217.15 217.137 217.105 217.084 217.012 216.941 216.836 216.792 216.784 216.843 216.937 217.096 217.32 217.601 217.935 218.33 218.725 219.12 219.508 219.91 220.367 220.872 221.447 222.092 222.807 223.67 224.598 225.632 226.699 227.876 229.12 230.416 231.767 233.183 234.66 236.186 237.724 239.301 240.864 242.408 243.905 245.272 247.284 249.097 249.908 250.021 250.075 250.053 249.936 251.271 251.398 251.032 250.61 250.208 250.093 250.013 249.754 249.37 248.783 248.638 248.691 248.808 249.035 249.308 249.474 249.459 249.337 249.117 249.821 250.608 251.415 251.537 251.595 251.616 251.526 251.597 251.793 251.516 251.246 250.828 250.427 249.963 249.534 249.044 248.561 248.128 247.737 247.198 246.626 246.025 245.383 244.768 244.236 243.884 243.6 243.408 243.306 243.282 243.362 243.479 243.643 243.889 244.115 244.419 244.674 244.846 244.899 244.939 244.892 244.784 244.551 244.324 243.931 243.59 243.178 242.616 242.272 241.83 241.393 241.159 240.969 240.83 240.703 240.616 240.569 240.455 240.326 240.157 239.95 239.705 239.462 239.207 238.952 238.708 238.511 238.348 238.222 238.019 237.882 237.773 237.747 237.758 237.911 238.192 238.598 239.511 240.687 240.847 240.429 241.098 241.761 242.563 243.231 243.699 244.516 245.417 246.209 246.88 247.729 249.584 249.923 250.394 250.448 250.198 249.887 249.471 249.018 248.507 247.925 247.356 246.685 245.932 245.177 244.369 243.494 242.64 241.749 240.906 240.038 239.256 238.474 237.705 237.312 236.25 235.228 234.142 233.12 232.115 231.193 230.235 229.339 228.372 227.542 226.641 225.785 225.063 224.244 223.491 222.839 222.338 221.937 221.626 221.345 221.114 220.803 220.548 220.301 220.114 219.993 219.944 219.941 219.978 220.075 220.246 220.48 220.878 221.394 221.985 222.759 223.642 224.511 225.411 226.4 227.46 228.56 229.68 230.77 231.807 232.823 233.684 234.495 235.224 235.738 236.004 236.011 235.719 235.186 234.391 233.395 232.331 231.207 230.062 228.975 227.921 226.938 225.973 225.059 224.196 223.363 222.55 221.75 221.007 220.397 219.843 219.379 218.941 218.504 218.11 217.711 217.326 216.939 216.633 216.391 216.147 216.026 215.902 215.894 215.986 216.155 216.446 216.856 217.373 217.908 218.462 219.008 219.53 220.031 220.526 221.088 221.669 222.348 223.208 224.049 225.034 226.065 227.194 228.371 229.559 230.731 231.992 233.349 234.806 236.34 237.971 239.673 241.467 243.243 244.953 248.337 249.671 250.838 251.971 253.001 253.613 253.947 254.058 253.936 253.554 253.09 252.643 252.488 252.555 252.802 253.191 253.587 253.8 253.819 253.736 253.69 253.702 253.647 253.548 253.299 252.805 252.334 252.004 251.677 251.561 251.546 251.595 251.593 251.725 252.65 252.953 252.938 253.167 252.66 252.243 251.905 251.293 250.812 250.321 249.826 249.231 248.628 248.146 247.711 247.292 246.953 246.67 246.521 246.579 246.773 246.956 247.181 247.482 247.804 248.192 248.485 248.676 248.816 248.897 248.905 248.786 248.596 248.286 247.896 247.377 246.81 246.145 245.461 244.775 244.032 243.399 242.73 242.195 241.735 241.319 240.927 240.607 240.28 240.013 239.798 239.687 239.528 239.41 239.413 239.472 239.606 239.756 240.029 240.267 240.592 240.907 241.148 241.583 242.155 242.422 244.21 244.917 244.335 243.545 243.828 244.338 244.658 244.91 245.261 245.87 246.534 246.954 247.363 247.714 248.065 248.404 248.801 249.186 249.585 250.539 252.175 252.634 252.693 252.133 251.659 251.133 250.444 249.695 248.894 248.04 247.201 246.372 245.373 244.487 243.611 242.665 241.687 240.738 239.674 238.513 239.716 238.368 236.996 235.624 234.256 232.985 231.807 230.711 229.782 228.967 228.344 227.844 227.464 227.153 226.967 226.847 226.832 226.829 226.787 226.741 226.667 226.535 226.293 226.032 225.715 225.402 225.095 224.792 224.492 224.247 224.071 223.953 223.917 223.976 224.22 224.661 225.3 226.196 227.258 228.406 229.62 230.86 232.12 233.389 234.643 235.902 237.006 238.022 238.989 239.945 240.97 241.69 241.932 241.702 241.018 239.889 238.523 236.995 235.338 233.712 232.204 230.815 229.535 228.446 227.435 226.547 225.776 224.933 224.127 223.36 222.659 222.027 221.467 221.016 220.543 220.048 219.557 219.062 218.59 218.125 217.717 217.379 217.099 216.908 216.816 216.886 217.076 217.386 217.836 218.404 219.023 219.76 220.453 221.055 221.626 222.133 222.615 223.071 223.55 224.087 224.692 225.418 226.278 227.119 228.032 228.992 229.986 231.028 232.102 233.26 234.492 235.925 237.53 239.253 241.034 242.807 245.64 247.887 249.435 251.025 252.509 253.514 254.201 254.631 254.693 254.36 254.163 254.229 254.605 255.013 255.46 255.939 256.38 256.704 256.85 256.862 256.894 257.01 257.092 257.137 257.198 257.133 256.939 256.632 256.413 256.327 256.203 256.131 256.305 256.296 256.176 255.903 255.269 254.772 254.277 254.025 254.508 255.194 255.558 255.037 254.586 254.326 254.237 254.062 252.281 251.82 251.513 251.278 251.095 250.993 251.025 251.107 251.27 251.488 251.737 251.997 252.202 252.356 252.485 252.53 252.463 252.581 253.036 251.88 251.079 250.654 250.179 249.625 249.009 248.46 247.873 247.358 246.873 246.469 246.113 245.845 245.627 245.458 245.285 245.176 244.975 244.776 244.58 244.345 244.143 243.983 243.826 243.674 243.553 243.547 243.679 243.998 244.605 246.256 246.476 246.728 246.889 246.788 246.484 246.533 246.832 247.361 247.844 248.266 248.942 249.897 250.991 252.2 253.391 254.108 254.491 254.721 255.028 255.12 255.28 255.52 255.898 255.896 256.043 256.062 255.961 255.033 254.279 253.449 252.55 251.628 250.698 249.77 248.787 247.81 246.809 245.878 244.808 243.592 242.399 241.103 244.937 243.92 242.929 241.892 240.966 240.17 239.339 238.611 237.985 237.528 237.208 237.059 236.972 237.019 237.013 237.009 236.969 236.863 236.708 236.498 236.239 235.883 235.45 234.944 234.398 233.808 233.141 232.432 231.645 230.896 230.107 229.332 228.622 228.0 227.461 227.228 227.318 227.863 228.79 230.008 231.326 232.737 234.143 235.577 237.037 238.468 239.661 240.512 241.44 242.53 243.87 244.991 245.506 245.573 244.881 243.722 242.088 240.134 238.148 236.227 234.517 232.936 231.552 230.313 229.099 228.192 227.391 226.605 225.852 225.175 224.647 224.243 223.857 223.542 223.269 222.984 222.701 222.478 222.283 222.088 221.947 221.882 221.866 221.775 221.777 221.685 221.715 221.665 221.869 222.041 222.336 222.573 222.928 223.27 223.703 224.054 224.426 224.789 225.169 225.572 226.086 226.714 227.421 228.22 229.078 229.971 230.85 231.724 232.617 233.549 234.45 235.489 236.707 238.007 239.442 240.968 242.66 244.47 246.346 247.877 249.681 251.361 252.729 253.713 254.207 254.367 254.77 255.301 255.914 256.6 257.199 257.658 258.003 258.26 258.471 258.647 258.835 259.016 259.191 259.368 259.485 259.615 259.767 259.866 259.819 259.808 259.795 259.792 259.901 260.038 260.192 260.242 260.043 259.766 259.411 259.136 258.804 258.627 258.462 258.176 257.932 257.831 257.854 257.914 257.66 257.681 257.631 256.617 255.88 256.699 256.043 255.409 256.38 257.0 257.307 257.46 257.492 257.666 258.026 258.455 258.83 258.766 258.501 257.245 255.3 254.982 254.77 254.594 254.764 255.098 255.44 255.615 255.762 255.955 256.632 257.25 257.448 257.489 257.373 256.247 255.165 253.434 252.555 251.666 250.674 249.62 248.627 247.6 246.821 246.343 246.0 245.936 246.134 245.727 245.864 246.165 246.878 247.489 247.969 248.562 249.277 250.028 250.806 251.599 252.663 253.795 254.922 256.072 257.455 258.582 259.432 260.101 260.688 260.99 261.128 261.273 261.336 261.141 260.888 260.439 259.667 258.981 258.688 258.171 257.255 256.119 254.657 253.555 252.497 251.533 250.649 249.721 248.886 247.967 247.022 245.963 250.407 249.779 249.224 248.711 248.194 247.757 247.329 246.968 246.632 246.439 246.294 246.167 246.105 246.113 246.155 246.202 246.208 246.138 245.952 245.684 245.307 244.849 244.336 243.741 243.081 242.371 241.576 240.695 239.696 238.564 237.362 236.104 234.86 233.704 232.621 231.805 231.26 231.083 231.309 231.966 233.033 234.218 235.667 237.159 238.695 240.325 242.009 243.508 244.615 245.672 247.081 248.373 249.171 249.401 248.779 247.501 245.765 243.775 241.703 239.756 237.975 236.401 234.969 233.627 232.406 231.369 230.463 229.62 228.841 228.223 227.773 227.421 227.145 227.024 226.991 227.007 227.123 227.356 227.677 228.041 228.425 228.752 229.075 229.282 229.311 229.144 228.9 228.52 228.063 227.555 227.093 226.689 226.392 226.224 226.23 226.342 226.641 227.105 227.675 228.315 229.053 229.786 230.641 231.599 232.6 233.554 234.513 235.407 236.226 236.96 237.678 238.31 239.009 239.883 240.885 241.977 243.161 244.41 245.734 247.075 248.52 249.983 251.459 253.114 253.98 254.851 255.772 256.512 257.32 258.22 258.944 259.492 259.853 260.064 260.191 260.315 260.378 260.489 260.637 260.83 261.101 261.326 261.551 261.768 261.738 261.89 262.122 262.393 262.813 263.245 263.562 263.777 263.884 263.945 263.972 263.948 263.758 263.513 263.234 262.944 262.675 262.504 262.457 262.327 261.938 261.602 261.365 261.174 261.191 261.394 261.693 262.069 262.459 262.829 263.171 263.485 263.738 263.721 263.605 263.398 263.018 262.675 262.394 261.956 259.882 259.561 259.623 259.843 258.93 260.941 262.21 262.87 263.578 264.085 264.484 264.811 265.01 264.915 264.553 263.873 262.934 262.014 260.567 257.672 254.86 253.132 251.543 250.165 249.082 248.165 247.455 247.314 247.391 247.307 246.638 247.377 248.413 249.459 250.321 251.246 252.252 253.169 254.079 255.024 256.126 257.22 258.264 259.29 260.473 261.474 262.335 263.087 263.851 264.508 265.056 265.546 265.98 266.188 266.193 265.975 265.484 264.815 263.937 262.797 261.348 260.436 259.776 258.933 258.081 256.128 254.995 254.002 253.159 252.436 251.74 251.065 256.927 256.436 255.928 255.507 255.125 254.778 254.473 254.191 253.945 253.351 252.351 252.375 252.55 252.854 253.29 254.121 254.778 255.007 255.002 254.849 253.24 252.685 252.121 251.457 250.773 250.027 249.155 248.21 247.182 246.034 244.812 243.435 241.983 240.622 239.386 238.349 237.565 236.964 236.644 236.711 237.05 237.711 238.595 239.751 241.1 242.709 244.594 246.609 248.518 250.151 251.514 252.747 253.568 253.743 253.156 251.794 250.165 248.386 246.568 244.868 243.259 241.907 240.635 239.316 238.086 237.014 236.078 235.219 234.452 233.92 233.473 233.115 232.878 232.769 232.868 233.135 233.561 234.146 234.815 235.538 236.23 236.785 237.229 237.475 237.561 237.374 237.031 236.424 235.739 235.0 234.256 233.497 232.884 232.391 232.148 232.072 232.204 232.547 233.022 233.61 234.224 234.965 235.781 236.704 237.644 238.594 239.483 240.3 241.057 241.758 242.316 242.788 243.375 244.142 245.919 247.607 248.636 249.651 251.144 252.427 253.366 254.047 254.678 255.625 256.522 257.469 258.37 259.113 259.879 260.537 261.064 261.463 261.802 262.062 262.243 262.392 262.476 262.617 262.793 262.959 263.223 263.496 263.749 263.982 264.181 264.336 264.563 264.825 265.153 265.489 265.859 266.253 266.695 267.083 267.398 267.677 267.918 268.061 268.128 268.141 268.094 268.013 267.911 267.802 267.695 267.626 267.566 267.516 267.466 267.438 267.469 267.558 267.7 267.842 267.962 268.072 268.152 268.154 268.052 267.829 267.408 266.878 266.279 265.638 264.918 264.418 264.216 264.38 265.147 265.968 266.697 267.427 268.152 268.717 269.16 269.493 269.688 269.604 269.268 268.634 267.454 265.862 263.98 261.785 258.442 256.207 254.279 252.685 251.492 250.661 250.124 249.881 249.937 249.593 248.985 249.937 251.185 252.288 253.281 254.357 255.495 256.427 257.326 258.246 259.344 260.429 261.42 262.347 263.228 264.012 264.7 265.287 265.875 266.405 266.89 267.342 267.835 268.281 268.631 268.909 269.09 269.081 268.903 268.569 267.979 267.188 266.211 264.968 263.483 262.442 261.675 260.836 260.157 258.772 258.052 257.389 264.06 263.594 263.13 262.61 261.928 261.275 260.684 260.133 259.512 258.873 258.366 258.218 258.192 258.397 258.425 258.919 259.726 260.093 260.219 260.262 260.349 260.174 259.741 259.709 258.105 256.795 254.501 253.392 253.629 253.277 251.79 250.139 248.688 247.388 245.982 244.891 244.065 243.349 242.869 242.695 242.783 243.158 243.732 244.53 245.557 246.885 248.529 250.466 252.523 254.54 256.189 256.952 256.092 256.136 256.854 257.302 255.141 253.445 251.877 250.459 249.197 248.037 247.03 246.071 245.205 244.338 243.503 242.757 242.172 241.681 241.267 240.939 240.679 240.575 240.662 240.898 241.296 241.728 242.282 242.892 243.451 243.862 244.15 244.357 244.442 244.339 244.052 243.613 243.112 242.542 241.914 241.303 240.779 240.367 240.107 239.961 239.873 239.901 240.083 240.327 240.691 241.189 241.842 242.623 243.533 244.533 245.506 247.062 248.126 248.902 250.715 252.342 253.25 254.03 254.703 255.368 256.079 256.611 257.098 257.655 258.425 259.146 259.821 260.48 261.159 261.813 262.374 262.836 263.254 263.576 263.852 264.087 264.33 264.54 264.702 264.833 264.953 265.082 265.228 265.381 265.545 265.715 265.853 265.972 266.122 266.293 266.496 266.735 267.034 267.36 267.692 268.024 268.372 268.676 268.95 269.21 269.481 269.733 269.961 270.138 270.268 270.334 270.359 270.347 270.306 270.26 270.226 270.206 270.197 270.198 270.21 270.227 270.247 270.246 270.225 270.196 270.153 270.086 269.993 269.86 269.649 269.386 269.086 268.754 268.347 267.981 267.706 267.602 267.696 267.939 268.211 268.541 268.963 269.383 269.754 270.082 270.385 270.543 270.509 270.263 269.653 268.647 267.156 264.846 262.621 260.833 259.231 258.004 255.804 254.083 253.213 252.787 252.488 250.967 251.468 252.319 253.687 254.933 255.955 256.913 257.894 258.822 259.729 260.715 262.002 263.188 264.173 264.962 265.629 266.147 266.56 266.902 267.287 267.657 268.004 268.357 268.733 269.112 269.5 269.86 270.237 270.512 270.691 270.778 270.742 270.568 270.297 269.928 269.369 268.75 268.139 267.472 266.672 265.915 265.263 264.659 270.461 270.208 269.942 269.645 269.271 268.888 268.51 268.126 267.707 267.362 267.094 266.897 266.777 266.766 266.824 266.933 267.083 267.157 267.116 266.966 266.656 266.157 265.64 265.013 264.114 263.197 262.328 261.405 260.316 259.552 258.895 258.147 256.208 254.925 253.567 250.901 249.295 248.644 248.335 248.391 248.717 249.369 250.143 251.937 253.297 254.317 255.513 256.913 258.272 259.494 259.832 260.511 261.447 261.506 261.286 261.067 260.592 259.869 258.498 256.492 254.979 253.969 253.116 252.42 251.806 251.194 250.635 250.153 249.645 249.147 248.678 248.268 247.929 247.701 247.737 247.907 248.156 248.427 248.713 249.001 249.312 249.605 249.97 250.278 250.509 250.547 250.412 250.057 249.565 249.012 248.457 247.846 247.293 246.801 246.455 246.306 246.156 246.093 246.134 246.38 246.726 247.317 248.151 249.254 251.899 254.066 255.641 256.405 257.663 258.602 259.288 259.929 260.605 261.198 261.816 262.463 263.119 263.621 264.005 264.311 264.605 264.887 265.179 265.476 265.803 266.094 266.353 266.591 266.824 267.01 267.161 267.293 267.417 267.499 267.552 267.589 267.642 267.704 267.776 267.857 267.943 268.015 268.066 268.107 268.185 268.312 268.485 268.707 269.001 269.284 269.532 269.753 269.956 270.125 270.272 270.42 270.607 270.784 270.952 271.107 271.237 271.341 271.403 271.425 271.417 271.411 271.418 271.434 271.462 271.5 271.533 271.554 271.554 271.52 271.459 271.377 271.27 271.182 271.11 271.046 270.977 270.888 270.774 270.632 270.437 270.225 270.022 269.83 269.641 269.55 269.518 269.486 269.492 269.629 269.788 269.972 270.247 270.53 270.735 270.848 270.77 270.402 269.741 268.692 267.031 265.231 263.566 261.954 260.3 257.073 255.913 255.176 254.992 254.773 254.008 254.696 256.017 257.372 258.458 259.421 260.472 261.559 262.612 263.67 264.95 266.065 266.92 267.573 268.073 268.36 268.573 268.74 268.906 269.086 269.285 269.498 269.72 269.907 270.118 270.357 270.676 270.981 271.24 271.453 271.632 271.736 271.788 271.802 271.768 271.69 271.581 271.448 271.272 271.087 270.898 270.699 272.326 272.257 272.185 272.105 272.004 271.893 271.78 271.654 271.493 271.327 271.16 270.993 270.817 270.679 270.578 270.514 270.478 270.454 270.423 270.381 270.334 270.305 270.29 270.275 270.223 270.09 269.855 269.479 268.739 267.699 266.372 264.794 262.699 261.134 259.893 258.776 256.843 254.421 253.932 253.928 254.383 254.917 257.269 258.007 258.937 259.731 260.556 261.543 263.09 264.572 265.945 267.218 268.156 268.369 267.986 266.949 265.271 263.905 263.354 262.378 261.396 260.688 260.052 259.266 258.98 259.09 259.008 258.776 257.2 255.563 255.041 254.598 254.361 254.436 254.79 255.006 255.076 256.552 257.05 256.204 255.956 256.103 256.557 257.633 257.819 258.896 258.592 257.895 257.35 257.247 257.39 257.016 256.694 254.649 254.033 253.421 251.768 252.289 253.53 254.525 255.323 256.148 257.057 258.34 259.498 261.028 262.311 263.477 264.578 265.317 265.841 266.251 266.65 267.011 267.329 267.619 267.887 268.057 268.166 268.245 268.332 268.45 268.597 268.765 268.959 269.12 269.25 269.35 269.436 269.506 269.576 269.646 269.71 269.738 269.743 269.734 269.722 269.727 269.754 269.797 269.841 269.876 269.911 269.94 269.983 270.066 270.187 270.364 270.627 270.899 271.147 271.366 271.556 271.681 271.777 271.867 271.966 272.057 272.137 272.203 272.255 272.288 272.316 272.339 272.365 272.399 272.436 272.468 272.496 272.515 272.528 272.533 272.531 272.514 272.484 272.442 272.374 272.29 272.209 272.136 272.069 272.013 271.961 271.901 271.813 271.711 271.607 271.502 271.391 271.3 271.227 271.158 271.094 271.062 271.036 271.003 270.99 271.034 271.122 271.227 271.322 271.295 271.125 270.757 270.007 268.882 267.494 265.856 263.938 261.911 259.481 257.899 257.466 257.31 257.113 257.914 259.042 260.067 260.956 261.837 263.097 264.347 265.553 266.729 267.799 268.55 269.119 269.552 269.892 270.089 270.225 270.342 270.45 270.549 270.634 270.709 270.781 270.849 270.929 271.042 271.221 271.417 271.589 271.732 271.858 271.95 272.025 272.1 272.195 272.284 272.363 272.421 272.452 272.45 272.429 272.389 272.489 272.457 272.435 272.415 272.387 272.362 272.344 272.327 272.304 272.276 272.235 272.174 272.078 271.978 271.886 271.81 271.747 271.702 271.662 271.617 271.565 271.537 271.543 271.589 271.692 271.807 271.881 271.887 271.754 271.443 270.985 270.349 269.366 268.202 266.897 265.434 263.442 261.582 260.666 260.239 260.153 260.612 261.359 262.053 263.025 264.263 265.553 266.697 267.757 268.636 269.419 270.114 270.682 270.903 270.87 270.627 270.09 269.045 267.4 265.918 265.223 264.915 264.762 264.673 264.566 264.494 264.241 263.943 263.584 262.798 261.79 261.112 260.977 260.656 260.336 261.028 262.251 263.253 263.77 263.927 264.093 264.408 265.027 265.814 266.465 266.795 266.821 266.659 266.322 265.875 265.378 264.725 263.631 262.461 261.711 261.176 259.531 258.466 260.257 261.402 262.251 263.081 263.906 264.742 265.631 266.399 267.079 267.688 268.239 268.609 268.884 269.108 269.331 269.549 269.755 269.946 270.114 270.217 270.286 270.344 270.417 270.515 270.627 270.749 270.878 270.976 271.048 271.098 271.138 271.173 271.207 271.239 271.259 271.249 271.22 271.181 271.132 271.101 271.092 271.098 271.114 271.133 271.153 271.173 271.203 271.248 271.311 271.414 271.608 271.86 272.128 272.387 272.648 272.833 272.969 273.075 273.172 273.249 273.309 273.358 273.397 273.424 273.444 273.464 273.489 273.515 273.542 273.561 273.563 273.55 273.532 273.516 273.508 273.51 273.511 273.504 273.477 273.421 273.342 273.25 273.153 273.079 273.026 272.986 272.949 272.91 272.864 272.804 272.72 272.629 272.544 272.468 272.409 272.38 272.355 272.327 272.273 272.198 272.122 272.057 272.014 271.997 271.971 271.893 271.66 271.159 270.404 269.368 267.896 266.394 265.243 264.078 261.936 260.672 260.232 260.88 261.684 262.384 263.085 263.955 265.249 266.49 267.656 268.622 269.444 270.015 270.424 270.716 270.964 271.152 271.307 271.438 271.542 271.594 271.605 271.594 271.572 271.573 271.608 271.68 271.808 271.945 272.073 272.182 272.278 272.333 272.362 272.378 272.407 272.462 272.519 272.565 272.593 272.589 272.565 272.529 272.755 272.724 272.691 272.647 272.581 272.509 272.444 272.393 272.369 272.381 272.407 272.437 272.457 272.45 272.425 272.385 272.33 272.28 272.236 272.195 272.151 272.104 272.059 272.024 272.018 272.054 272.11 272.176 272.241 272.264 272.232 272.134 271.914 271.574 271.153 270.653 270.027 269.452 268.954 268.542 268.242 268.159 268.24 268.457 268.781 269.087 269.368 269.656 270.017 270.389 270.749 271.097 271.441 271.675 271.82 271.891 271.883 271.786 271.62 271.341 270.981 270.747 270.698 270.725 270.694 270.523 270.16 269.513 268.649 268.036 267.819 267.904 268.263 268.682 269.123 269.579 269.962 270.143 270.243 270.331 270.475 270.688 270.928 271.165 271.369 271.463 271.474 271.433 271.351 271.24 271.07 270.803 270.306 269.599 268.731 267.753 266.777 266.872 267.593 268.156 268.571 268.917 269.197 269.428 269.626 269.778 269.909 270.031 270.162 270.282 270.408 270.552 270.736 270.931 271.12 271.296 271.457 271.573 271.666 271.753 271.853 271.949 272.036 272.116 272.192 272.254 272.309 272.362 272.424 272.483 272.527 272.551 272.546 272.517 272.474 272.424 272.37 272.322 272.29 272.273 272.261 272.25 272.249 272.255 272.253 272.245 272.247 272.277 272.382 272.574 272.821 273.093 273.373 273.596 273.776 273.922 274.052 274.153 274.242 274.33 274.418 274.475 274.503 274.515 274.523 274.533 274.552 274.575 274.596 274.607 274.612 274.614 274.616 274.622 274.633 274.645 274.646 274.62 274.568 274.493 274.394 274.313 274.255 274.216 274.19 274.171 274.149 274.108 274.036 273.942 273.844 273.75 273.661 273.6 273.56 273.528 273.488 273.424 273.339 273.236 273.11 273.009 272.939 272.887 272.818 272.664 272.382 271.931 271.175 270.261 269.32 268.392 267.518 267.099 266.102 264.263 263.843 264.471 265.083 265.933 267.161 268.259 269.171 269.879 270.476 270.898 271.216 271.462 271.673 271.838 271.972 272.069 272.129 272.138 272.132 272.125 272.133 272.176 272.245 272.333 272.434 272.523 272.592 272.647 272.691 272.715 272.729 272.737 272.751 272.781 272.815 272.845 272.86 272.847 272.823 272.792 273.065 273.046 273.019 272.98 272.918 272.842 272.765 272.698 272.651 272.65 272.676 272.72 272.779 272.82 272.834 272.82 272.769 272.707 272.655 272.617 272.595 272.581 272.557 272.518 272.458 272.4 272.355 272.325 272.318 272.339 272.37 272.406 272.441 272.442 272.406 272.327 272.181 272.001 271.811 271.617 271.421 271.281 271.184 271.127 271.116 271.148 271.197 271.258 271.342 271.445 271.566 271.71 271.897 272.084 272.251 272.395 272.501 272.518 272.476 272.381 272.236 272.135 272.106 272.12 272.139 272.128 272.084 272.014 271.925 271.858 271.836 271.862 271.934 272.019 272.104 272.186 272.262 272.308 272.349 272.391 272.457 272.538 272.615 272.68 272.717 272.708 272.685 272.666 272.665 272.681 272.684 272.652 272.541 272.349 272.111 271.839 271.548 271.373 271.32 271.35 271.424 271.49 271.534 271.559 271.574 271.59 271.608 271.621 271.637 271.674 271.744 271.837 271.962 272.09 272.215 272.333 272.446 272.546 272.641 272.736 272.839 272.922 272.987 273.046 273.109 273.17 273.231 273.288 273.344 273.388 273.419 273.439 273.445 273.445 273.443 273.44 273.433 273.415 273.392 273.37 273.348 273.335 273.334 273.348 273.345 273.296 273.246 273.226 273.277 273.427 273.635 273.877 274.163 274.404 274.6 274.76 274.898 275.005 275.1 275.197 275.316 275.425 275.502 275.55 275.571 275.585 275.621 275.679 275.756 275.815 275.848 275.856 275.838 275.813 275.798 275.794 275.797 275.792 275.767 275.719 275.64 275.553 275.471 275.393 275.316 275.259 275.21 275.161 275.106 275.049 274.991 274.931 274.863 274.8 274.739 274.681 274.618 274.557 274.492 274.416 274.314 274.201 274.089 273.981 273.867 273.746 273.588 273.366 273.008 272.562 272.06 271.511 270.873 270.313 269.825 269.478 268.889 268.056 267.902 268.258 269.09 269.847 270.48 271.019 271.494 271.796 271.997 272.141 272.272 272.361 272.415 272.432 272.413 272.397 272.402 272.43 272.513 272.619 272.726 272.82 272.89 272.924 272.937 272.94 272.944 272.952 272.96 272.97 272.99 273.02 273.051 273.077 273.095 273.102 273.097 273.083 273.311 273.259 273.205 273.153 273.099 273.053 273.009 272.969 272.934 272.918 272.916 272.934 272.977 273.032 273.08 273.11 273.109 273.072 273.024 272.974 272.929 272.898 272.873 272.846 272.809 272.77 272.735 272.705 272.682 272.667 272.659 272.655 272.659 272.672 272.689 272.704 272.715 272.71 272.688 272.646 272.577 272.496 272.421 272.357 272.309 272.291 272.285 272.282 272.279 272.291 272.326 272.39 272.502 272.629 272.745 272.832 272.866 272.83 272.761 272.657 272.519 272.421 272.385 272.395 272.437 272.473 272.501 272.527 272.56 272.611 272.675 272.739 272.791 272.819 272.834 272.85 272.862 272.877 272.9 272.919 272.937 272.957 272.979 273.005 273.032 273.06 273.085 273.106 273.116 273.109 273.092 273.068 273.034 272.995 272.957 272.913 272.847 272.77 272.695 272.626 272.565 272.529 272.507 272.497 272.509 272.544 272.583 272.605 272.623 272.662 272.725 272.797 272.879 272.96 273.044 273.133 273.234 273.336 273.435 273.529 273.621 273.69 273.752 273.818 273.895 273.964 274.02 274.062 274.093 274.116 274.142 274.178 274.225 274.273 274.318 274.357 274.39 274.403 274.403 274.397 274.391 274.392 274.396 274.399 274.386 274.32 274.227 274.145 274.117 274.182 274.322 274.518 274.787 275.047 275.274 275.47 275.649 275.783 275.901 276.022 276.177 276.341 276.491 276.615 276.706 276.757 276.805 276.863 276.929 276.972 276.986 276.971 276.923 276.869 276.825 276.793 276.776 276.769 276.755 276.726 276.671 276.597 276.515 276.428 276.335 276.259 276.194 276.138 276.087 276.045 276.007 275.969 275.922 275.87 275.811 275.747 275.674 275.618 275.574 275.534 275.487 275.43 275.362 275.283 275.179 275.065 274.911 274.697 274.38 274.03 273.688 273.355 272.994 272.658 272.316 271.955 271.542 271.163 270.896 270.793 270.94 271.263 271.628 271.984 272.337 272.597 272.775 272.891 272.965 272.998 273.001 272.972 272.917 272.862 272.83 272.817 272.831 272.869 272.927 272.989 273.066 273.126 273.165 273.193 273.22 273.243 273.256 273.266 273.282 273.306 273.334 273.361 273.382 273.388 273.376 273.352 273.753 273.666 273.573 273.484 273.402 273.345 273.301 273.265 273.23 273.207 273.196 273.198 273.217 273.258 273.309 273.364 273.418 273.443 273.443 273.425 273.382 273.324 273.257 273.186 273.109 273.054 273.022 273.003 272.991 272.978 272.965 272.953 272.949 272.961 272.983 273.01 273.05 273.089 273.123 273.151 273.166 273.156 273.135 273.112 273.095 273.085 273.074 273.054 273.016 272.978 272.948 272.937 272.976 273.05 273.103 273.117 273.105 273.075 273.032 272.962 272.867 272.809 272.8 272.833 272.892 272.943 272.98 273.012 273.047 273.086 273.14 273.199 273.258 273.302 273.338 273.37 273.399 273.413 273.407 273.385 273.351 273.336 273.347 273.376 273.429 273.488 273.544 273.593 273.633 273.645 273.638 273.624 273.621 273.635 273.652 273.66 273.642 273.587 273.522 273.453 273.385 273.331 273.277 273.211 273.145 273.136 273.158 273.197 273.273 273.37 273.468 273.561 273.655 273.732 273.811 273.904 274.027 274.154 274.271 274.375 274.465 274.529 274.59 274.662 274.753 274.83 274.883 274.915 274.936 274.957 274.991 275.039 275.099 275.148 275.188 275.225 275.266 275.311 275.36 275.406 275.454 275.49 275.51 275.502 275.455 275.369 275.26 275.148 275.042 275.009 275.058 275.186 275.404 275.641 275.875 276.116 276.363 276.548 276.694 276.836 277.025 277.235 277.435 277.607 277.746 277.826 277.879 277.921 277.954 277.96 277.942 277.901 277.832 277.759 277.692 277.634 277.585 277.564 277.56 277.556 277.544 277.514 277.474 277.426 277.37 277.315 277.259 277.201 277.133 277.062 276.993 276.925 276.856 276.805 276.765 276.732 276.698 276.665 276.634 276.607 276.586 276.578 276.576 276.574 276.561 276.511 276.401 276.212 275.883 275.489 275.11 274.775 274.477 274.258 274.053 273.822 273.509 273.208 272.955 272.768 272.688 272.744 272.862 273.016 273.2 273.358 273.481 273.575 273.647 273.707 273.765 273.805 273.797 273.734 273.64 273.527 273.394 273.306 273.271 273.271 273.307 273.372 273.428 273.472 273.505 273.532 273.561 273.596 273.65 273.71 273.762 273.805 273.839 273.852 273.842 273.815 274.064 273.973 273.875 273.78 273.69 273.624 273.569 273.521 273.486 273.489 273.526 273.581 273.649 273.704 273.748 273.789 273.836 273.881 273.923 273.962 273.99 273.976 273.928 273.852 273.745 273.639 273.549 273.475 273.405 273.348 273.303 273.268 273.256 273.275 273.307 273.347 273.394 273.439 273.483 273.524 273.561 273.578 273.58 273.574 273.568 273.569 273.568 273.559 273.533 273.487 273.425 273.357 273.321 273.341 273.37 273.369 273.338 273.317 273.299 273.272 273.24 273.226 273.233 273.258 273.302 273.35 273.393 273.436 273.477 273.509 273.543 273.58 273.628 273.669 273.698 273.72 273.741 273.753 273.759 273.766 273.792 273.849 273.921 273.993 274.054 274.09 274.124 274.168 274.23 274.288 274.334 274.372 274.417 274.458 274.479 274.475 274.435 274.373 274.313 274.253 274.181 274.083 273.955 273.798 273.642 273.589 273.614 273.692 273.819 273.951 274.073 274.185 274.29 274.368 274.45 274.564 274.744 274.947 275.135 275.296 275.424 275.497 275.548 275.594 275.647 275.689 275.722 275.749 275.776 275.801 275.825 275.85 275.872 275.884 275.896 275.917 275.966 276.04 276.125 276.217 276.322 276.406 276.461 276.484 276.461 276.389 276.295 276.194 276.078 276.002 275.992 276.06 276.214 276.397 276.592 276.808 277.042 277.221 277.367 277.509 277.699 277.905 278.103 278.283 278.449 278.565 278.654 278.726 278.778 278.783 278.752 278.688 278.584 278.469 278.359 278.27 278.213 278.217 278.255 278.299 278.334 278.336 278.318 278.284 278.238 278.191 278.141 278.087 278.02 277.949 277.874 277.795 277.709 277.645 277.607 277.587 277.581 277.577 277.568 277.553 277.538 277.533 277.533 277.531 277.513 277.468 277.39 277.271 277.07 276.807 276.511 276.214 275.92 275.699 275.512 275.328 275.108 274.887 274.686 274.515 274.388 274.327 274.283 274.243 274.22 274.216 274.212 274.204 274.211 274.253 274.318 274.392 274.449 274.455 274.411 274.326 274.206 274.107 274.037 273.988 273.946 273.907 273.867 273.828 273.803 273.815 273.856 273.924 274.024 274.113 274.18 274.223 274.233 274.213 274.18 274.135 274.193 274.097 274.005 273.931 273.875 273.838 273.797 273.751 273.712 273.729 273.794 273.892 274.015 274.112 274.182 274.234 274.284 274.332 274.384 274.443 274.513 274.555 274.559 274.524 274.442 274.34 274.239 274.139 274.027 273.931 273.849 273.78 273.73 273.721 273.732 273.754 273.785 273.814 273.842 273.87 273.891 273.899 273.894 273.879 273.861 273.851 273.85 273.854 273.867 273.867 273.845 273.809 273.776 273.756 273.754 273.763 273.736 273.672 273.624 273.607 273.624 273.663 273.712 273.757 273.809 273.862 273.914 273.971 274.028 274.064 274.086 274.102 274.114 274.118 274.113 274.114 274.134 274.176 274.234 274.313 274.438 274.578 274.706 274.81 274.889 274.939 274.985 275.038 275.111 275.176 275.219 275.247 275.275 275.298 275.302 275.282 275.232 275.172 275.114 275.048 274.938 274.769 274.558 274.33 274.139 274.098 274.156 274.27 274.421 274.559 274.683 274.803 274.927 275.049 275.201 275.417 275.73 276.042 276.305 276.512 276.66 276.718 276.727 276.71 276.673 276.633 276.608 276.604 276.625 276.651 276.659 276.651 276.636 276.638 276.657 276.693 276.758 276.838 276.934 277.055 277.206 277.339 277.441 277.504 277.511 277.454 277.373 277.283 277.186 277.116 277.078 277.08 277.136 277.248 277.407 277.595 277.782 277.898 277.988 278.091 278.251 278.438 278.637 278.842 279.062 279.243 279.386 279.492 279.551 279.542 279.487 279.397 279.254 279.106 278.977 278.888 278.872 278.944 279.043 279.131 279.187 279.19 279.165 279.126 279.075 279.029 278.982 278.933 278.874 278.819 278.763 278.698 278.613 278.532 278.474 278.44 278.433 278.439 278.44 278.436 278.431 278.431 278.42 278.394 278.325 278.221 278.114 278.022 277.946 277.861 277.74 277.586 277.385 277.189 277.011 276.841 276.658 276.486 276.32 276.16 276.001 275.873 275.751 275.617 275.458 275.317 275.194 275.074 274.956 274.884 274.851 274.842 274.844 274.845 274.837 274.826 274.816 274.811 274.792 274.745 274.665 274.572 274.493 274.437 274.426 274.46 274.519 274.583 274.634 274.644 274.624 274.581 274.506 274.426 274.355 274.284 274.465 274.393 274.335 274.295 274.28 274.271 274.254 274.221 274.167 274.132 274.131 274.162 274.231 274.316 274.401 274.491 274.591 274.686 274.77 274.846 274.923 274.981 275.015 275.02 274.985 274.925 274.853 274.764 274.658 274.556 274.467 274.396 274.359 274.358 274.368 274.387 274.417 274.44 274.451 274.45 274.436 274.419 274.396 274.362 274.308 274.248 274.202 274.182 274.197 274.229 274.255 274.27 274.274 274.256 274.194 274.133 274.079 274.016 273.977 273.997 274.102 274.254 274.399 274.531 274.658 274.76 274.841 274.912 274.973 274.999 274.998 274.98 274.96 274.961 274.985 275.022 275.073 275.123 275.166 275.219 275.312 275.423 275.539 275.655 275.782 275.899 275.997 276.078 276.146 276.18 276.191 276.189 276.19 276.193 276.181 276.144 276.07 275.981 275.881 275.764 275.587 275.354 275.118 274.923 274.842 274.931 275.097 275.28 275.461 275.597 275.721 275.856 276.031 276.232 276.482 276.793 277.177 277.504 277.751 277.927 278.039 278.072 278.051 277.98 277.848 277.707 277.6 277.54 277.542 277.586 277.619 277.624 277.614 277.624 277.654 277.695 277.742 277.799 277.891 278.036 278.252 278.458 278.61 278.702 278.724 278.672 278.593 278.512 278.438 278.393 278.368 278.36 278.377 278.433 278.532 278.651 278.746 278.767 278.764 278.794 278.895 279.05 279.241 279.464 279.729 279.947 280.095 280.176 280.179 280.121 280.044 279.955 279.845 279.748 279.691 279.686 279.761 279.891 280.012 280.104 280.148 280.14 280.113 280.074 280.018 279.958 279.892 279.815 279.718 279.634 279.559 279.486 279.4 279.323 279.266 279.229 279.216 279.213 279.2 279.176 279.149 279.142 279.139 279.094 278.93 278.611 278.314 278.107 278.21 278.601 278.745 278.693 278.558 278.392 278.232 278.077 277.913 277.767 277.624 277.477 277.307 277.142 276.967 276.765 276.503 276.249 276.021 275.81 275.609 275.477 275.383 275.302 275.246 275.25 275.273 275.296 275.324 275.341 275.327 275.278 275.204 275.144 275.133 275.168 275.249 275.327 275.379 275.385 275.323 275.202 275.062 274.923 274.786 274.691 274.618 274.546 274.968 274.939 274.928 274.924 274.924 274.928 274.931 274.917 274.867 274.806 274.748 274.704 274.686 274.714 274.776 274.864 274.984 275.105 275.216 275.315 275.411 275.478 275.521 275.542 275.542 275.522 275.482 275.416 275.318 275.218 275.133 275.071 275.046 275.058 275.073 275.091 275.117 275.135 275.135 275.114 275.074 275.041 275.019 274.994 274.936 274.851 274.773 274.719 274.698 274.698 274.698 274.692 274.68 274.657 274.584 274.479 274.403 274.388 274.428 274.539 274.763 275.019 275.245 275.432 275.59 275.698 275.786 275.865 275.933 275.965 275.975 275.983 276.003 276.031 276.056 276.075 276.094 276.096 276.076 276.054 276.079 276.192 276.365 276.559 276.762 276.915 277.02 277.079 277.091 277.067 277.04 277.022 277.019 277.008 276.966 276.892 276.771 276.636 276.493 276.335 276.138 275.932 275.769 275.705 275.812 276.058 276.343 276.611 276.843 276.995 277.125 277.278 277.49 277.729 277.992 278.277 278.595 278.847 279.028 279.155 279.237 279.267 279.248 279.171 279.001 278.785 278.596 278.471 278.433 278.492 278.578 278.652 278.699 278.716 278.722 278.724 278.728 278.769 278.87 279.04 279.303 279.557 279.74 279.849 279.885 279.853 279.8 279.752 279.72 279.717 279.726 279.736 279.743 279.758 279.788 279.819 279.816 279.767 279.722 279.721 279.796 279.926 280.09 280.283 280.508 280.674 280.765 280.788 280.737 280.654 280.576 280.51 280.46 280.454 280.499 280.585 280.721 280.854 280.946 280.997 281.008 280.986 280.945 280.884 280.788 280.685 280.584 280.481 280.366 280.269 280.186 280.111 280.036 279.97 279.919 279.885 279.864 279.841 279.8 279.742 279.681 279.641 279.565 279.406 278.894 278.342 278.229 278.304 279.082 279.502 279.602 279.576 279.436 279.277 279.126 278.983 278.831 278.679 278.52 278.347 278.137 277.921 277.678 277.389 277.019 276.682 276.403 276.187 276.047 275.984 275.916 275.842 275.808 275.839 275.891 275.959 276.047 276.095 276.081 276.019 275.944 275.913 275.926 275.972 276.032 276.049 276.021 275.95 275.824 275.663 275.493 275.338 275.196 275.11 275.057 275.014 275.82 275.818 275.862 275.918 275.961 275.97 275.964 275.933 275.864 275.793 275.723 275.656 275.603 275.598 275.628 275.679 275.747 275.818 275.888 275.953 276.013 276.051 276.072 276.083 276.092 276.104 276.106 276.086 276.039 275.981 275.928 275.887 275.869 275.867 275.849 275.822 275.802 275.799 275.795 275.781 275.755 275.733 275.717 275.693 275.635 275.537 275.436 275.348 275.276 275.224 275.186 275.162 275.171 275.177 275.131 275.088 275.121 275.25 275.464 275.745 276.096 276.402 276.627 276.781 276.885 276.931 276.967 277.002 277.032 277.05 277.076 277.114 277.152 277.173 277.18 277.178 277.155 277.102 277.025 276.955 276.981 277.156 277.402 277.664 277.921 278.089 278.177 278.196 278.142 278.061 277.997 277.962 277.942 277.887 277.789 277.661 277.495 277.338 277.188 277.044 276.91 276.816 276.779 276.837 277.085 277.464 277.833 278.144 278.383 278.526 278.659 278.824 279.05 279.279 279.498 279.715 279.937 280.095 280.205 280.294 280.373 280.377 280.333 280.236 280.051 279.824 279.615 279.453 279.372 279.411 279.515 279.648 279.779 279.846 279.864 279.858 279.862 279.904 279.993 280.13 280.347 280.577 280.774 280.927 281.033 281.066 281.065 281.06 281.067 281.089 281.107 281.106 281.082 281.046 281.012 280.971 280.904 280.834 280.796 280.808 280.89 281.005 281.123 281.239 281.358 281.443 281.48 281.472 281.418 281.346 281.271 281.202 281.158 281.186 281.279 281.413 281.58 281.696 281.751 281.761 281.737 281.692 281.626 281.531 281.393 281.26 281.152 281.065 280.987 280.924 280.867 280.815 280.756 280.682 280.602 280.522 280.447 280.398 280.353 280.302 280.236 280.106 279.862 279.297 278.603 278.367 278.48 279.595 280.271 280.575 280.676 280.591 280.361 280.159 279.908 279.955 279.779 279.541 279.298 279.019 278.679 278.348 278.016 277.666 277.272 276.952 276.73 276.618 276.63 276.673 276.669 276.655 276.669 276.709 276.787 276.902 277.031 277.088 277.075 277.013 276.938 276.901 276.885 276.872 276.838 276.771 276.689 276.593 276.452 276.291 276.134 275.992 275.884 275.852 275.851 275.846 277.154 277.17 277.217 277.272 277.301 277.278 277.226 277.164 277.09 277.014 276.923 276.826 276.743 276.728 276.753 276.789 276.812 276.821 276.829 276.835 276.823 276.787 276.739 276.688 276.652 276.646 276.652 276.653 276.644 276.628 276.625 276.633 276.65 276.655 276.629 276.59 276.561 276.563 276.574 276.58 276.575 276.563 276.541 276.493 276.386 276.24 276.099 275.98 275.876 275.802 275.758 275.764 275.875 276.059 276.245 276.41 276.639 276.945 277.285 277.625 277.967 278.219 278.399 278.524 278.597 278.611 278.602 278.581 278.544 278.509 278.484 278.464 278.447 278.428 278.401 278.362 278.296 278.209 278.127 278.084 278.131 278.276 278.473 278.713 278.96 279.139 279.255 279.307 279.274 279.195 279.14 279.116 279.075 278.966 278.816 278.649 278.453 278.286 278.161 278.095 278.115 278.194 278.298 278.457 278.749 279.11 279.445 279.718 279.915 280.034 280.155 280.312 280.546 280.782 280.983 281.143 281.259 281.317 281.354 281.392 281.442 281.421 281.336 281.207 281.015 280.82 280.652 280.513 280.41 280.39 280.447 280.569 280.751 280.9 280.997 281.057 281.111 281.161 281.208 281.262 281.359 281.528 281.742 281.971 282.19 282.312 282.364 282.376 282.367 282.353 282.331 282.293 282.228 282.159 282.101 282.046 281.981 281.925 281.898 281.905 281.953 282.003 282.039 282.069 282.11 282.152 282.17 282.16 282.119 282.065 282.0 281.934 281.885 281.904 281.984 282.107 282.263 282.368 282.401 282.384 282.331 282.261 282.188 282.108 282.011 281.924 281.853 281.787 281.713 281.644 281.58 281.517 281.439 281.345 281.236 281.121 281.014 280.961 280.931 280.899 280.799 280.518 280.045 279.186 278.333 278.252 278.766 280.393 281.241 281.729 281.808 281.604 281.247 281.049 280.955 280.842 280.581 280.219 279.86 279.467 279.012 278.626 278.301 278.009 277.716 277.519 277.426 277.445 277.561 277.68 277.769 277.82 277.851 277.896 277.973 278.07 278.162 278.172 278.113 278.019 277.912 277.852 277.817 277.787 277.737 277.67 277.58 277.459 277.262 277.047 276.884 276.793 276.81 276.919 277.041 277.126 278.762 278.786 278.797 278.776 278.712 278.606 278.501 278.42 278.353 278.282 278.185 278.07 277.958 277.911 277.91 277.917 277.904 277.882 277.861 277.842 277.804 277.736 277.646 277.538 277.429 277.366 277.335 277.317 277.303 277.298 277.311 277.343 277.396 277.432 277.441 277.435 277.435 277.447 277.451 277.444 277.428 277.416 277.392 277.32 277.166 276.984 276.825 276.703 276.618 276.58 276.592 276.694 276.962 277.32 277.669 277.988 278.315 278.621 278.923 279.211 279.474 279.658 279.804 279.93 280.037 280.081 280.075 280.032 279.953 279.859 279.761 279.671 279.596 279.536 279.473 279.407 279.342 279.306 279.305 279.346 279.434 279.542 279.681 279.837 280.005 280.166 280.3 280.382 280.376 280.32 280.29 280.278 280.228 280.102 279.94 279.761 279.548 279.373 279.281 279.305 279.486 279.736 279.972 280.202 280.481 280.774 281.041 281.264 281.43 281.526 281.632 281.783 282.005 282.207 282.357 282.459 282.522 282.555 282.579 282.567 282.559 282.569 282.519 282.384 282.189 282.019 281.88 281.754 281.628 281.56 281.578 281.691 281.906 282.103 282.237 282.326 282.405 282.462 282.486 282.482 282.492 282.601 282.797 283.037 283.278 283.413 283.465 283.462 283.421 283.372 283.322 283.265 283.188 283.12 283.073 283.043 283.015 282.978 282.949 282.925 282.898 282.869 282.844 282.836 282.856 282.875 282.874 282.86 282.834 282.806 282.777 282.752 282.74 282.756 282.792 282.843 282.93 283.012 283.052 283.038 282.965 282.865 282.78 282.72 282.683 282.647 282.592 282.515 282.4 282.284 282.179 282.08 281.982 281.897 281.812 281.72 281.632 281.589 281.573 281.543 281.385 280.938 280.24 279.134 278.016 277.886 278.49 279.988 281.832 282.558 282.755 282.57 282.165 281.88 281.671 281.43 281.035 280.587 280.166 279.756 279.355 279.084 278.909 278.79 278.7 278.652 278.644 278.665 278.755 278.867 278.946 279.0 279.056 279.124 279.197 279.26 279.289 279.252 279.179 279.096 279.021 278.985 278.954 278.911 278.834 278.725 278.586 278.403 278.133 277.906 277.815 277.862 278.041 278.278 278.509 278.681 280.317 280.283 280.241 280.194 280.1 279.939 279.762 279.63 279.561 279.515 279.435 279.326 279.207 279.135 279.098 279.06 278.993 278.917 278.853 278.802 278.745 278.671 278.565 278.431 278.287 278.206 278.172 278.167 278.188 278.217 278.251 278.294 278.352 278.398 278.424 278.436 278.447 278.448 278.415 278.361 278.315 278.31 278.289 278.21 278.043 277.844 277.673 277.559 277.522 277.561 277.662 277.835 278.097 278.465 278.878 279.28 279.639 279.91 280.175 280.442 280.698 280.874 281.01 281.129 281.223 281.239 281.201 281.127 281.015 280.897 280.785 280.688 280.613 280.579 280.563 280.551 280.546 280.569 280.629 280.727 280.877 281.02 281.147 281.258 281.372 281.493 281.583 281.612 281.553 281.471 281.424 281.397 281.343 281.227 281.083 280.925 280.744 280.624 280.606 280.719 281.02 281.355 281.637 281.874 282.129 282.386 282.604 282.776 282.931 283.058 283.171 283.279 283.394 283.485 283.567 283.654 283.763 283.865 283.951 283.971 283.81 283.819 283.947 283.984 283.871 283.69 283.536 283.401 283.313 283.312 283.391 283.546 283.772 283.934 284.003 284.021 284.014 284.005 283.986 283.952 283.928 283.984 284.094 284.216 284.303 284.322 284.305 284.268 284.215 284.168 284.127 284.086 284.026 283.971 283.941 283.922 283.898 283.869 283.832 283.795 283.748 283.709 283.688 283.69 283.708 283.718 283.709 283.688 283.675 283.68 283.695 283.717 283.744 283.752 283.743 283.73 283.741 283.783 283.82 283.817 283.748 283.64 283.545 283.478 283.432 283.378 283.301 283.198 283.066 282.942 282.832 282.731 282.629 282.551 282.476 282.393 282.297 282.254 282.262 282.277 282.137 281.613 280.796 279.504 278.17 277.822 278.428 279.856 281.666 283.324 283.806 283.693 283.207 282.766 282.347 281.885 281.341 280.896 280.544 280.269 280.072 280.02 280.072 280.189 280.328 280.383 280.382 280.386 280.394 280.39 280.388 280.392 280.416 280.464 280.505 280.521 280.493 280.448 280.421 280.416 280.435 280.443 280.399 280.303 280.128 279.901 279.651 279.397 279.147 279.042 279.117 279.342 279.681 279.975 280.178 280.293 281.618 281.526 281.445 281.367 281.261 281.102 280.93 280.78 280.657 280.554 280.435 280.312 280.203 280.151 280.124 280.083 279.999 279.887 279.777 279.678 279.588 279.499 279.379 279.228 279.071 279.006 279.024 279.098 279.216 279.31 279.372 279.419 279.468 279.494 279.501 279.501 279.492 279.451 279.377 279.307 279.294 279.346 279.361 279.295 279.117 278.887 278.673 278.518 278.449 278.472 278.555 278.701 279.01 279.482 279.975 280.417 280.766 280.976 281.181 281.427 281.718 281.941 282.097 282.196 282.216 282.141 282.031 281.922 281.828 281.763 281.713 281.696 281.728 281.769 281.803 281.837 281.882 281.932 281.991 282.071 282.197 282.323 282.427 282.507 282.591 282.662 282.684 282.642 282.532 282.43 282.366 282.324 282.266 282.177 282.085 282.001 281.93 281.932 282.029 282.217 282.492 282.752 283.004 283.273 283.604 283.895 284.105 284.253 284.37 284.475 284.555 284.603 284.622 284.644 284.71 284.832 285.019 285.127 285.166 285.057 284.834 284.866 285.031 285.211 285.347 285.299 285.199 285.122 285.161 285.308 285.478 285.649 285.812 285.892 285.868 285.765 285.609 285.487 285.396 285.322 285.265 285.265 285.284 285.282 285.22 285.128 285.051 284.988 284.922 284.863 284.814 284.773 284.739 284.713 284.687 284.669 284.644 284.592 284.549 284.521 284.503 284.496 284.499 284.518 284.552 284.551 284.529 284.512 284.519 284.554 284.599 284.644 284.679 284.684 284.671 284.66 284.661 284.662 284.65 284.621 284.563 284.486 284.41 284.337 284.252 284.153 284.046 283.933 283.806 283.684 283.568 283.45 283.323 283.217 283.116 283.004 282.884 282.849 282.91 283.011 282.947 282.457 281.677 280.359 278.805 278.343 278.846 280.328 282.511 284.329 284.827 284.775 284.138 283.557 282.978 282.396 281.838 281.482 281.28 281.197 281.222 281.347 281.536 281.745 281.935 282.033 282.078 282.072 282.017 281.954 281.901 281.856 281.812 281.807 281.826 281.833 281.802 281.759 281.751 281.784 281.848 281.85 281.772 281.624 281.363 281.034 280.721 280.465 280.301 280.293 280.449 280.746 281.152 281.477 281.652 281.689 282.908 282.724 282.595 282.497 282.398 282.274 282.118 281.94 281.738 281.554 281.387 281.252 281.163 281.152 281.155 281.137 281.065 280.955 280.844 280.765 280.726 280.683 280.579 280.417 280.232 280.173 280.229 280.363 280.553 280.693 280.774 280.828 280.869 280.872 280.855 280.809 280.716 280.591 280.466 280.396 280.45 280.595 280.703 280.716 280.587 280.388 280.193 280.028 279.912 279.904 279.992 280.18 280.566 281.058 281.518 281.889 282.13 282.224 282.32 282.474 282.706 282.915 283.06 283.133 283.113 283.005 282.897 282.825 282.804 282.828 282.889 282.953 282.999 283.026 283.052 283.088 283.151 283.223 283.294 283.368 283.457 283.522 283.548 283.545 283.532 283.512 283.472 283.41 283.329 283.264 283.216 283.175 283.129 283.092 283.079 283.094 283.154 283.263 283.403 283.558 283.751 283.979 284.273 284.664 285.205 285.665 285.931 285.99 285.923 285.894 285.899 285.892 285.881 285.918 286.008 286.159 286.329 286.324 286.173 285.289 284.399 284.771 285.734 286.15 286.471 286.589 286.606 286.633 286.806 287.02 287.175 287.295 287.372 287.353 287.241 287.055 286.812 286.635 286.524 286.445 286.378 286.341 286.303 286.23 286.095 285.963 285.869 285.791 285.693 285.602 285.542 285.514 285.503 285.501 285.532 285.569 285.543 285.458 285.389 285.357 285.35 285.333 285.341 285.389 285.433 285.435 285.43 285.433 285.465 285.514 285.577 285.64 285.691 285.714 285.734 285.763 285.794 285.767 285.689 285.604 285.535 285.478 285.404 285.316 285.208 285.102 284.997 284.881 284.719 284.542 284.376 284.219 284.055 283.923 283.817 283.723 283.631 283.613 283.696 283.827 283.812 283.401 282.711 281.822 279.937 279.097 279.527 281.03 283.322 285.029 285.712 285.617 284.996 284.399 283.816 283.258 282.772 282.545 282.496 282.563 282.715 282.881 283.04 283.189 283.335 283.427 283.46 283.44 283.369 283.307 283.274 283.25 283.214 283.21 283.248 283.289 283.293 283.246 283.215 283.231 283.298 283.319 283.253 283.081 282.742 282.354 282.061 281.891 281.858 281.915 282.034 282.259 282.626 282.953 283.109 283.086 284.17 283.968 283.821 283.687 283.534 283.364 283.164 282.938 282.696 282.513 282.383 282.306 282.298 282.357 282.415 282.43 282.362 282.244 282.137 282.077 282.09 282.116 282.066 281.945 281.777 281.683 281.685 281.793 282.01 282.215 282.393 282.567 282.744 282.849 282.867 282.779 282.54 282.256 282.02 281.874 281.89 282.07 282.254 282.363 282.358 282.31 282.283 282.264 282.245 282.265 282.354 282.517 282.783 283.079 283.33 283.503 283.57 283.562 283.579 283.641 283.757 283.876 283.969 284.028 284.038 284.012 284.006 284.035 284.114 284.211 284.259 284.26 284.224 284.184 284.158 284.155 284.19 284.27 284.382 284.507 284.626 284.652 284.598 284.493 284.351 284.251 284.182 284.143 284.129 284.119 284.1 284.084 284.077 284.087 284.116 284.175 284.283 284.414 284.541 284.677 284.885 285.187 285.597 286.128 286.472 287.118 287.552 287.583 287.378 287.181 287.09 287.056 287.07 287.168 287.305 287.483 287.634 287.566 287.31 286.938 286.163 285.347 285.708 286.951 287.562 287.828 287.98 288.121 288.275 288.356 288.393 288.432 288.44 288.363 288.197 287.973 287.72 287.557 287.466 287.402 287.326 287.235 287.132 287.008 286.852 286.738 286.664 286.592 286.478 286.377 286.34 286.355 286.384 286.44 286.511 286.557 286.506 286.398 286.338 286.318 286.297 286.286 286.313 286.362 286.427 286.466 286.5 286.537 286.585 286.644 286.724 286.816 286.898 286.934 286.967 287.015 287.034 286.963 286.873 286.802 286.742 286.652 286.537 286.417 286.294 286.186 286.077 285.956 285.781 285.572 285.378 285.205 285.021 284.858 284.74 284.663 284.598 284.54 284.552 284.632 284.667 284.407 283.863 283.06 281.689 279.987 280.473 281.519 283.509 285.611 286.608 286.766 286.345 285.705 285.156 284.633 284.249 284.172 284.259 284.392 284.51 284.585 284.649 284.72 284.77 284.785 284.785 284.762 284.69 284.634 284.634 284.666 284.683 284.688 284.718 284.762 284.772 284.721 284.702 284.752 284.862 284.898 284.809 284.578 284.156 283.772 283.596 283.644 283.863 284.025 284.1 284.175 284.332 284.489 284.519 284.403 285.315 285.17 285.038 284.876 284.66 284.432 284.183 283.926 283.702 283.597 283.548 283.537 283.62 283.791 283.967 284.099 284.136 284.058 283.92 283.755 283.628 283.595 283.58 283.537 283.484 283.448 283.413 283.417 283.499 283.679 283.953 284.311 284.749 285.079 285.23 285.196 284.956 284.626 284.32 284.095 284.002 284.086 284.201 284.272 284.271 284.27 284.314 284.372 284.416 284.448 284.493 284.56 284.651 284.721 284.752 284.747 284.722 284.722 284.756 284.812 284.885 284.948 285.001 285.049 285.109 285.18 285.259 285.345 285.434 285.432 285.368 285.273 285.175 285.133 285.12 285.129 285.166 285.232 285.328 285.434 285.515 285.479 285.363 285.203 285.04 284.965 284.941 284.948 284.977 285.0 285.023 285.053 285.084 285.085 285.096 285.153 285.288 285.44 285.573 285.712 285.99 286.403 286.865 287.327 286.389 287.451 288.368 288.625 288.517 288.284 288.153 288.128 288.198 288.342 288.519 288.718 288.883 288.871 288.69 288.371 287.951 287.739 287.093 286.867 288.515 288.976 289.273 289.493 289.575 289.52 289.44 289.383 289.323 289.21 289.039 288.81 288.539 288.362 288.27 288.214 288.121 287.986 287.848 287.715 287.591 287.522 287.481 287.426 287.305 287.218 287.234 287.313 287.412 287.465 287.501 287.51 287.438 287.335 287.279 287.264 287.263 287.266 287.3 287.369 287.451 287.511 287.581 287.667 287.76 287.84 287.933 288.034 288.103 288.125 288.141 288.151 288.106 288.007 287.941 287.914 287.878 287.762 287.623 287.497 287.373 287.239 287.113 286.998 286.841 286.626 286.415 286.224 286.018 285.82 285.668 285.563 285.439 285.277 285.2 285.251 285.368 285.263 284.859 284.171 283.019 280.923 281.027 282.11 284.062 286.0 287.804 288.119 287.962 287.372 286.725 286.19 286.002 286.297 286.711 286.962 286.937 286.793 286.708 286.654 286.545 286.423 286.343 286.29 286.21 286.129 286.103 286.115 286.119 286.088 286.076 286.092 286.105 286.095 286.114 286.179 286.261 286.215 286.028 285.717 285.289 285.001 285.01 285.306 285.75 285.967 286.002 285.967 285.927 285.856 285.71 285.517 286.578 286.463 286.305 286.116 285.913 285.737 285.549 285.366 285.239 285.232 285.263 285.33 285.529 285.887 286.3 286.693 286.988 287.043 286.875 286.523 286.09 285.839 285.71 285.668 285.681 285.7 285.688 285.638 285.606 285.7 285.934 286.352 286.936 287.346 287.519 287.488 287.27 287.01 286.761 286.535 286.344 286.267 286.237 286.211 286.164 286.127 286.111 286.102 286.1 286.107 286.106 286.094 286.06 286.006 285.938 285.88 285.87 285.926 285.997 286.057 286.1 286.137 286.18 286.241 286.338 286.433 286.493 286.511 286.461 286.342 286.196 286.058 285.973 285.992 286.038 286.094 286.153 286.201 286.243 286.279 286.285 286.199 286.066 285.938 285.862 285.865 285.895 285.937 285.985 286.016 286.044 286.081 286.112 286.104 286.109 286.178 286.339 286.482 286.602 286.783 287.166 287.66 288.107 288.11 287.75 288.247 289.122 289.619 289.642 289.438 289.32 289.316 289.425 289.588 289.74 289.889 290.031 290.101 290.08 289.937 289.642 289.404 289.192 288.6 288.828 289.266 290.261 290.594 290.731 290.616 290.454 290.307 290.144 289.972 289.793 289.577 289.29 289.066 288.94 288.868 288.768 288.645 288.544 288.47 288.409 288.367 288.345 288.305 288.213 288.185 288.261 288.396 288.501 288.506 288.502 288.489 288.427 288.342 288.307 288.317 288.337 288.34 288.387 288.467 288.545 288.609 288.718 288.867 289.025 289.121 289.209 289.286 289.321 289.311 289.303 289.278 289.176 289.043 288.974 288.958 288.916 288.798 288.693 288.615 288.485 288.273 288.084 287.941 287.775 287.529 287.273 287.06 286.876 286.695 286.536 286.402 286.217 285.985 285.873 285.936 286.087 286.009 285.679 285.127 282.863 282.023 282.256 283.295 285.752 287.247 288.854 289.405 289.575 288.975 288.244 287.952 288.299 289.03 289.512 289.664 289.493 289.181 288.928 288.73 288.486 288.219 288.018 287.898 287.8 287.677 287.581 287.532 287.509 287.466 287.433 287.423 287.44 287.46 287.483 287.496 287.458 287.305 287.068 286.784 286.491 286.438 286.661 287.046 287.392 287.465 287.407 287.307 287.18 287.018 286.843 286.696 287.926 287.753 287.548 287.364 287.252 287.188 287.098 286.996 286.969 287.107 287.327 287.61 288.054 288.62 289.19 289.697 290.114 290.285 290.22 289.947 289.492 289.097 288.798 288.577 288.396 288.294 288.226 288.169 288.162 288.27 288.456 288.701 288.964 289.101 289.098 288.975 288.734 288.488 288.266 288.064 287.88 287.76 287.673 287.606 287.554 287.519 287.476 287.421 287.375 287.358 287.326 287.272 287.213 287.178 287.148 287.131 287.163 287.227 287.269 287.283 287.286 287.305 287.343 287.401 287.476 287.509 287.473 287.378 287.24 287.105 286.98 286.888 286.869 286.911 286.951 286.989 287.038 287.087 287.138 287.193 287.244 287.23 287.179 287.14 287.156 287.179 287.19 287.198 287.196 287.166 287.119 287.08 287.072 287.084 287.124 287.209 287.335 287.429 287.574 287.844 288.362 288.857 289.134 289.212 289.288 289.632 290.114 290.609 290.832 290.667 290.499 290.441 290.522 290.641 290.749 290.853 290.959 291.048 291.113 291.128 291.01 290.798 290.615 290.486 289.383 288.347 290.326 291.246 291.502 291.354 291.119 290.909 290.716 290.541 290.376 290.187 289.913 289.666 289.518 289.433 289.338 289.247 289.209 289.204 289.171 289.099 289.063 289.054 289.054 289.103 289.219 289.346 289.393 289.343 289.315 289.317 289.319 289.303 289.319 289.357 289.38 289.405 289.477 289.563 289.622 289.686 289.816 289.998 290.18 290.285 290.365 290.415 290.404 290.369 290.35 290.328 290.233 290.094 290.003 289.951 289.87 289.764 289.698 289.643 289.471 289.183 288.946 288.781 288.595 288.304 288.027 287.835 287.698 287.545 287.392 287.256 287.052 286.818 286.735 286.824 286.921 286.792 286.573 286.262 284.815 283.91 284.124 284.871 286.706 288.62 290.089 290.369 290.609 290.366 289.906 289.912 290.403 291.02 291.286 291.263 291.0 290.639 290.324 290.09 289.87 289.61 289.384 289.229 289.115 288.974 288.851 288.782 288.761 288.71 288.649 288.605 288.608 288.626 288.616 288.569 288.466 288.328 288.185 288.04 287.956 288.063 288.32 288.579 288.67 288.565 288.429 288.311 288.219 288.14 288.074 288.019 289.067 288.912 288.797 288.731 288.713 288.677 288.59 288.488 288.549 288.916 289.4 289.904 290.486 291.058 291.57 292.01 292.399 292.612 292.628 292.453 292.08 291.702 291.38 291.094 290.797 290.559 290.394 290.306 290.308 290.369 290.423 290.435 290.376 290.255 290.108 289.939 289.727 289.505 289.294 289.108 288.975 288.901 288.83 288.758 288.707 288.69 288.643 288.558 288.466 288.428 288.393 288.356 288.347 288.371 288.38 288.376 288.394 288.415 288.411 288.399 288.413 288.442 288.456 288.454 288.431 288.363 288.242 288.096 287.975 287.913 287.863 287.838 287.875 287.923 287.923 287.905 287.925 288.006 288.109 288.229 288.37 288.447 288.461 288.471 288.537 288.581 288.561 288.494 288.406 288.311 288.188 288.075 288.04 288.084 288.14 288.195 288.239 288.325 288.547 288.939 289.423 289.503 289.195 288.789 288.72 289.624 290.397 291.197 291.875 291.938 291.724 291.518 291.451 291.491 291.568 291.669 291.764 291.798 291.848 291.921 291.937 291.811 291.661 291.524 291.041 289.063 289.965 291.592 291.932 291.739 291.466 291.259 291.125 291.0 290.861 290.693 290.448 290.224 290.094 290.032 289.96 289.889 289.887 289.929 289.923 289.837 289.793 289.81 289.883 289.987 290.103 290.186 290.167 290.087 290.051 290.071 290.131 290.194 290.272 290.344 290.398 290.446 290.509 290.565 290.598 290.672 290.818 290.998 291.157 291.243 291.312 291.36 291.357 291.32 291.299 291.282 291.207 291.09 290.984 290.888 290.774 290.671 290.593 290.499 290.282 290.007 289.794 289.636 289.433 289.159 288.93 288.771 288.601 288.374 288.169 287.997 287.785 287.595 287.569 287.671 287.67 287.52 287.518 287.57 287.29 286.024 286.112 286.922 287.913 289.763 290.786 290.758 290.289 290.18 290.165 291.334 291.968 292.356 292.475 292.384 292.089 291.652 291.263 291.001 290.869 290.74 290.589 290.454 290.345 290.21 290.083 290.001 289.944 289.837 289.71 289.605 289.564 289.566 289.56 289.533 289.478 289.447 289.442 289.437 289.419 289.485 289.595 289.664 289.617 289.517 289.448 289.394 289.327 289.284 289.253 289.197 290.019 289.971 290.022 290.099 290.134 290.092 290.023 289.988 290.18 290.667 291.231 291.782 292.312 292.711 293.032 293.318 293.639 293.915 294.06 294.043 293.809 293.426 293.013 292.624 292.262 292.0 291.812 291.698 291.652 291.638 291.608 291.543 291.4 291.203 291.006 290.831 290.672 290.525 290.376 290.244 290.17 290.161 290.13 290.062 289.991 289.96 289.903 289.801 289.671 289.61 289.585 289.581 289.608 289.644 289.64 289.603 289.549 289.492 289.436 289.411 289.446 289.465 289.423 289.34 289.228 289.088 288.94 288.821 288.774 288.768 288.764 288.784 288.863 288.907 288.879 288.838 288.879 289.017 289.176 289.35 289.558 289.681 289.712 289.726 289.826 289.942 289.914 289.764 289.565 289.427 289.285 289.149 289.076 289.07 289.062 289.055 289.089 289.253 289.572 289.964 289.893 290.046 288.983 288.398 287.77 287.637 288.583 291.22 292.542 293.047 292.979 292.691 292.44 292.349 292.367 292.456 292.534 292.497 292.474 292.528 292.61 292.59 292.564 292.574 291.728 292.192 292.301 292.048 292.214 291.969 291.713 291.564 291.506 291.427 291.314 291.176 290.985 290.81 290.724 290.697 290.66 290.605 290.613 290.677 290.722 290.69 290.661 290.67 290.738 290.831 290.914 290.961 290.955 290.915 290.901 290.931 291.014 291.129 291.252 291.358 291.429 291.464 291.487 291.498 291.525 291.634 291.787 291.935 292.044 292.122 292.196 292.261 292.287 292.27 292.25 292.223 292.156 292.044 291.919 291.784 291.647 291.529 291.399 291.247 291.054 290.865 290.687 290.497 290.259 290.038 289.865 289.699 289.426 289.111 288.858 288.67 288.489 288.365 288.362 288.385 288.212 288.085 288.402 289.022 289.628 288.169 287.272 287.392 288.789 290.447 290.99 290.777 290.642 290.409 290.666 291.199 293.199 293.435 293.45 293.387 293.222 292.82 292.372 292.046 291.941 291.907 291.819 291.705 291.589 291.45 291.302 291.18 291.059 290.895 290.73 290.606 290.549 290.557 290.595 290.643 290.679 290.719 290.779 290.815 290.769 290.712 290.67 290.609 290.536 290.542 290.568 290.555 290.476 290.41 290.329 290.2 290.865 290.856 290.956 291.064 291.106 291.11 291.134 291.208 291.473 291.956 292.462 292.876 293.122 293.186 293.253 293.363 293.607 293.926 294.24 294.537 294.707 294.525 294.072 293.522 293.039 292.785 292.626 292.521 292.454 292.419 292.389 292.36 292.292 292.147 291.968 291.784 291.618 291.522 291.452 291.385 291.325 291.308 291.294 291.263 291.228 291.218 291.18 291.092 290.962 290.882 290.837 290.811 290.809 290.802 290.75 290.654 290.516 290.392 290.301 290.254 290.247 290.205 290.118 290.018 289.917 289.804 289.699 289.63 289.614 289.613 289.618 289.643 289.703 289.721 289.687 289.655 289.73 289.936 290.183 290.453 290.793 291.044 291.129 290.964 290.984 291.24 291.231 291.022 290.66 290.444 290.242 290.043 289.871 289.763 289.69 289.656 289.699 289.911 290.154 290.34 290.361 290.076 289.632 288.794 288.211 287.885 288.105 290.615 292.843 293.737 293.901 293.697 293.409 293.225 293.142 293.144 293.183 293.146 293.108 293.131 293.196 293.199 293.217 293.299 292.961 293.122 292.875 292.674 292.522 292.338 292.172 292.067 292.002 291.917 291.815 291.712 291.587 291.465 291.389 291.36 291.341 291.315 291.325 291.38 291.444 291.44 291.411 291.396 291.438 291.515 291.572 291.607 291.643 291.679 291.718 291.771 291.868 292.007 292.138 292.236 292.294 292.315 292.311 292.305 292.363 292.497 292.619 292.705 292.785 292.898 292.999 293.064 293.094 293.1 293.081 293.028 292.943 292.829 292.7 292.572 292.466 292.355 292.201 292.024 291.853 291.686 291.47 291.224 290.997 290.847 290.678 290.448 290.116 289.813 289.575 289.39 289.231 289.144 289.08 288.928 288.586 288.591 289.303 290.337 290.857 289.8 287.97 287.553 288.714 290.401 291.36 291.108 291.172 291.413 291.679 292.007 293.654 294.042 294.169 294.136 294.138 293.924 293.538 293.197 293.015 292.908 292.774 292.642 292.536 292.425 292.3 292.174 292.002 291.796 291.647 291.579 291.565 291.573 291.617 291.69 291.769 291.826 291.886 291.914 291.877 291.835 291.791 291.713 291.619 291.619 291.639 291.613 291.509 291.413 291.281 291.083 291.738 291.738 291.809 291.877 291.921 291.961 292.004 292.098 292.392 292.833 293.194 293.345 293.123 292.823 292.53 292.218 292.523 292.714 293.056 293.699 294.598 295.102 294.999 294.416 293.68 293.322 293.184 293.158 293.196 293.226 293.265 293.292 293.258 293.175 293.073 292.946 292.786 292.7 292.666 292.62 292.519 292.453 292.439 292.441 292.434 292.411 292.373 292.308 292.206 292.115 292.036 291.962 291.886 291.796 291.663 291.505 291.345 291.231 291.155 291.105 291.049 290.947 290.847 290.779 290.732 290.665 290.609 290.567 290.511 290.47 290.476 290.504 290.512 290.506 290.496 290.485 290.561 290.824 291.162 291.534 291.998 292.409 292.474 292.511 292.512 292.355 292.375 292.153 291.596 291.452 291.14 290.843 290.59 290.413 290.276 290.211 290.324 290.876 291.146 291.134 291.021 290.737 290.559 289.97 289.222 288.562 288.899 289.873 292.952 294.127 294.576 294.549 294.324 294.118 293.963 293.863 293.841 293.817 293.778 293.762 293.763 293.716 293.661 293.651 293.634 293.47 293.247 293.058 292.959 292.898 292.827 292.744 292.642 292.533 292.434 292.353 292.277 292.207 292.145 292.106 292.098 292.11 292.134 292.166 292.194 292.181 292.148 292.137 292.196 292.263 292.282 292.289 292.35 292.476 292.596 292.697 292.811 292.94 293.036 293.093 293.134 293.158 293.151 293.141 293.191 293.288 293.349 293.372 293.435 293.575 293.69 293.744 293.761 293.778 293.762 293.701 293.61 293.507 293.4 293.307 293.239 293.15 293.005 292.834 292.661 292.456 292.191 291.933 291.768 291.662 291.462 291.176 290.851 290.578 290.304 290.053 289.893 289.814 289.627 289.296 288.935 289.191 290.129 291.255 291.811 291.099 288.944 287.098 288.419 290.254 291.077 291.252 291.632 292.363 292.63 292.693 293.07 292.991 294.114 294.585 294.749 294.825 294.604 294.307 294.023 293.801 293.625 293.509 293.422 293.325 293.226 293.115 292.923 292.706 292.582 292.566 292.589 292.564 292.549 292.594 292.71 292.809 292.89 292.934 292.933 292.933 292.916 292.854 292.752 292.716 292.683 292.601 292.451 292.307 292.134 291.924 292.604 292.612 292.629 292.651 292.686 292.675 292.655 292.737 293.06 293.387 293.507 293.38 292.878 292.299 291.208 290.508 290.135 290.023 290.07 290.811 293.034 294.639 295.4 295.342 294.55 294.019 293.906 294.003 294.173 294.279 294.364 294.402 294.348 294.28 294.246 294.205 294.092 293.996 293.944 293.886 293.769 293.686 293.66 293.626 293.533 293.438 293.36 293.28 293.177 293.093 293.02 292.934 292.807 292.646 292.457 292.275 292.136 292.063 292.017 291.982 291.901 291.765 291.665 291.62 291.574 291.491 291.432 291.378 291.263 291.172 291.169 291.186 291.144 291.163 291.23 291.271 291.344 291.654 292.038 292.403 292.888 293.452 293.728 293.707 293.909 293.466 293.421 292.886 292.406 292.184 291.83 291.653 291.503 291.328 291.174 291.053 291.31 291.554 292.159 291.703 291.385 290.975 290.734 290.307 289.784 289.628 289.429 289.762 292.202 294.154 294.972 295.172 295.006 294.82 294.662 294.52 294.432 294.391 294.334 294.271 294.212 294.139 294.048 293.965 293.88 293.762 293.625 293.519 293.474 293.455 293.406 293.326 293.224 293.134 293.051 292.975 292.92 292.909 292.895 292.875 292.87 292.903 292.945 292.976 292.992 292.979 292.959 292.962 293.013 293.044 293.032 293.029 293.133 293.345 293.549 293.706 293.83 293.895 293.915 293.922 293.955 293.981 293.968 293.937 293.937 293.972 293.993 294.005 294.07 294.191 294.283 294.318 294.317 294.329 294.316 294.271 294.194 294.114 294.026 293.931 293.828 293.725 293.609 293.476 293.312 293.086 292.817 292.566 292.388 292.232 291.993 291.708 291.421 291.14 290.82 290.537 290.404 290.282 289.959 289.517 289.282 289.692 290.539 291.55 292.276 291.665 289.552 287.007 288.104 290.841 292.125 292.239 292.568 293.013 293.398 293.224 292.664 292.479 292.838 294.513 295.174 295.512 295.465 295.218 294.866 294.574 294.397 294.33 294.3 294.207 294.098 293.991 293.839 293.666 293.574 293.573 293.597 293.544 293.489 293.502 293.639 293.814 293.948 294.007 293.983 293.926 293.849 293.763 293.694 293.645 293.562 293.437 293.265 293.08 292.881 292.698 293.389 293.334 293.264 293.215 293.182 293.107 293.086 293.214 293.495 293.557 293.389 293.069 292.542 292.151 290.952 289.924 289.342 288.9 288.636 288.781 289.996 293.096 294.958 295.758 295.483 294.933 294.854 295.073 295.361 295.471 295.527 295.544 295.481 295.385 295.334 295.313 295.235 295.114 295.019 294.935 294.833 294.773 294.727 294.637 294.462 294.326 294.233 294.13 293.999 293.926 293.875 293.806 293.688 293.524 293.331 293.153 293.016 292.925 292.851 292.78 292.65 292.482 292.376 292.334 292.261 292.143 292.079 292.03 291.891 291.772 291.748 291.727 291.638 291.713 291.878 291.987 292.095 292.451 292.823 293.118 293.629 294.413 294.942 295.75 295.144 294.174 293.781 293.638 293.525 293.126 292.777 292.481 292.383 292.162 291.968 291.81 292.255 292.367 292.397 292.503 291.996 291.946 291.168 290.777 290.645 290.6 290.112 290.164 291.043 293.59 295.154 295.534 295.396 295.24 295.127 295.014 294.905 294.855 294.801 294.725 294.638 294.591 294.537 294.451 294.316 294.204 294.117 294.046 293.99 293.94 293.874 293.801 293.735 293.684 293.63 293.566 293.527 293.559 293.592 293.598 293.582 293.597 293.627 293.649 293.66 293.66 293.653 293.654 293.678 293.694 293.716 293.793 293.986 294.218 294.419 294.581 294.692 294.705 294.658 294.624 294.645 294.659 294.635 294.592 294.552 294.534 294.546 294.597 294.68 294.756 294.797 294.796 294.771 294.765 294.76 294.743 294.697 294.635 294.563 294.458 294.302 294.169 294.058 293.943 293.789 293.587 293.348 293.085 292.808 292.557 292.301 292.048 291.786 291.499 291.204 290.974 290.847 290.605 290.177 289.747 289.656 290.062 290.704 291.573 292.543 292.26 290.153 287.437 288.166 290.923 293.433 293.634 293.83 293.82 294.034 293.703 293.101 292.831 292.996 293.624 295.474 295.817 296.007 295.926 295.588 295.255 295.072 295.043 295.075 294.994 294.866 294.748 294.642 294.55 294.499 294.482 294.48 294.475 294.474 294.514 294.666 294.865 294.991 295.012 294.926 294.806 294.67 294.545 294.457 294.367 294.239 294.101 293.98 293.812 293.616 293.456 294.06 293.887 293.716 293.595 293.483 293.371 293.376 293.499 293.551 293.332 293.112 293.002 292.793 292.203 291.309 290.49 289.948 289.569 288.947 288.207 288.472 290.482 294.203 295.648 296.193 295.906 295.864 296.167 296.513 296.585 296.593 296.609 296.581 296.479 296.384 296.312 296.213 296.097 295.988 295.883 295.774 295.713 295.64 295.511 295.32 295.213 295.136 295.025 294.873 294.798 294.742 294.656 294.527 294.375 294.199 294.035 293.901 293.771 293.642 293.519 293.345 293.147 293.036 293.007 292.937 292.807 292.738 292.687 292.529 292.392 292.349 292.307 292.254 292.454 292.693 292.804 292.892 293.243 293.561 293.853 294.599 295.696 296.66 296.609 295.849 295.185 294.947 294.632 294.343 294.087 293.648 293.346 293.219 293.059 292.887 293.238 293.476 293.617 294.372 294.057 292.943 292.468 291.947 291.745 292.072 291.755 291.311 290.96 291.4 293.725 295.414 295.826 295.703 295.618 295.59 295.534 295.442 295.409 295.369 295.283 295.168 295.102 295.04 294.952 294.837 294.748 294.679 294.618 294.541 294.444 294.361 294.304 294.281 294.273 294.248 294.202 294.191 294.239 294.276 294.29 294.289 294.299 294.311 294.312 294.3 294.286 294.277 294.298 294.355 294.442 294.574 294.755 294.972 295.12 295.246 295.378 295.484 295.454 295.364 295.295 295.276 295.24 295.19 295.143 295.089 295.032 295.035 295.106 295.204 295.252 295.264 295.251 295.214 295.191 295.19 295.189 295.166 295.116 295.052 294.944 294.769 294.614 294.474 294.324 294.133 293.95 293.746 293.496 293.177 292.897 292.644 292.387 292.087 291.807 291.571 291.366 291.113 290.726 290.31 290.022 290.059 290.401 290.983 291.97 293.268 293.119 290.717 287.321 287.446 290.423 294.115 294.963 295.209 294.57 294.277 294.089 293.828 293.476 293.055 293.243 294.681 295.55 296.106 296.463 296.372 296.077 295.875 295.79 295.778 295.712 295.608 295.493 295.4 295.374 295.357 295.324 295.315 295.39 295.486 295.595 295.748 295.891 295.925 295.836 295.664 295.529 295.389 295.253 295.131 294.977 294.807 294.676 294.608 294.484 294.317 294.176 294.477 294.219 294.018 293.884 293.727 293.587 293.564 293.57 293.474 293.48 293.754 294.003 293.665 292.805 291.994 291.558 292.015 291.686 290.386 289.08 288.829 289.73 292.44 295.73 296.726 296.79 296.786 297.054 297.429 297.508 297.497 297.477 297.444 297.387 297.306 297.198 297.073 296.96 296.843 296.719 296.581 296.482 296.392 296.269 296.086 295.959 295.855 295.734 295.586 295.503 295.42 295.301 295.151 295.023 294.895 294.776 294.662 294.517 294.356 294.204 294.022 293.816 293.7 293.679 293.626 293.487 293.393 293.309 293.126 292.987 292.96 292.977 293.05 293.293 293.465 293.485 293.546 293.868 294.195 294.71 295.997 297.195 298.288 297.047 296.219 295.997 295.751 295.569 295.173 294.796 294.369 293.802 293.4 293.28 293.585 294.098 295.299 294.699 294.814 294.779 294.343 293.37 293.216 293.009 293.275 292.791 292.458 292.341 292.617 294.595 295.971 296.245 296.151 296.178 296.208 296.163 296.096 296.072 296.022 295.926 295.803 295.695 295.603 295.535 295.469 295.379 295.282 295.198 295.107 294.993 294.9 294.849 294.856 294.863 294.836 294.795 294.789 294.813 294.837 294.87 294.925 294.966 294.981 294.973 294.948 294.924 294.93 294.995 295.129 295.304 295.476 295.626 295.743 295.829 295.937 296.065 296.155 296.105 296.009 295.928 295.861 295.753 295.654 295.587 295.536 295.477 295.469 295.527 295.63 295.697 295.723 295.722 295.691 295.657 295.635 295.622 295.595 295.527 295.435 295.313 295.136 294.962 294.779 294.568 294.332 294.152 293.969 293.746 293.469 293.209 292.926 292.612 292.268 292.024 291.815 291.569 291.192 290.809 290.542 290.414 290.446 290.685 291.353 292.596 294.117 293.761 290.441 286.495 285.866 288.834 292.9 295.57 296.069 295.373 294.704 294.606 294.607 294.178 293.485 292.751 293.029 294.868 296.042 296.76 297.025 296.909 296.737 296.548 296.351 296.255 296.21 296.154 296.078 296.063 296.062 296.055 296.091 296.225 296.374 296.503 296.62 296.696 296.657 296.498 296.265 296.092 295.932 295.776 295.609 295.43 295.265 295.149 295.078 294.959 294.813 294.672 294.671 294.382 294.187 294.046 293.846 293.697 293.65 293.65 293.797 294.467 295.265 295.56 294.589 293.389 293.086 293.751 294.063 293.668 292.248 290.556 290.589 290.363 292.062 294.753 297.175 297.603 297.655 297.797 298.109 298.258 298.271 298.182 298.019 297.96 297.979 297.963 297.851 297.707 297.548 297.39 297.25 297.129 297.023 296.903 296.724 296.551 296.41 296.284 296.145 296.041 295.944 295.839 295.738 295.674 295.622 295.565 295.471 295.294 295.082 294.887 294.695 294.495 294.367 294.322 294.263 294.141 294.052 293.971 293.83 293.746 293.756 293.797 293.873 294.007 294.02 293.932 294.034 294.454 294.994 295.955 297.791 299.275 300.116 297.613 296.485 296.907 296.762 296.446 296.353 296.302 295.694 294.898 294.375 293.938 294.116 294.775 296.282 295.755 296.197 297.143 296.775 296.218 295.276 294.505 293.37 293.082 293.379 293.496 294.219 295.752 296.703 296.784 296.735 296.852 296.88 296.835 296.81 296.802 296.737 296.648 296.572 296.471 296.361 296.282 296.206 296.07 295.92 295.802 295.701 295.591 295.5 295.453 295.462 295.447 295.404 295.364 295.343 295.323 295.327 295.377 295.477 295.532 295.549 295.549 295.54 295.538 295.573 295.673 295.854 296.036 296.159 296.218 296.26 296.374 296.516 296.643 296.693 296.641 296.561 296.479 296.377 296.243 296.116 296.016 295.947 295.909 295.904 295.955 296.075 296.162 296.185 296.161 296.111 296.062 296.016 295.978 295.933 295.85 295.735 295.594 295.408 295.213 295.006 294.786 294.565 294.387 294.2 293.991 293.742 293.467 293.142 292.794 292.462 292.228 291.99 291.711 291.357 291.075 290.913 290.853 290.845 291.021 291.72 293.039 294.559 293.824 291.138 285.822 284.316 287.225 291.5 295.287 296.36 295.977 295.428 295.33 295.393 295.142 294.093 292.879 292.572 294.453 295.929 296.844 297.35 297.462 297.421 297.235 296.924 296.783 296.754 296.744 296.716 296.716 296.732 296.762 296.847 296.991 297.135 297.24 297.293 297.291 297.22 297.061 296.807 296.57 296.349 296.133 295.918 295.754 295.636 295.549 295.443 295.283 295.118 294.943 294.73 294.462 294.273 294.103 293.869 293.761 293.781 293.931 294.543 295.85 296.836 296.393 294.716 293.731 294.368 295.12 296.081 295.097 294.031 293.353 292.297 291.901 293.131 295.073 297.638 298.229 298.363 298.384 298.628 298.87 298.914 298.693 298.188 298.026 298.241 298.459 298.482 298.322 298.117 297.939 297.829 297.713 297.579 297.439 297.263 297.069 296.922 296.818 296.696 296.58 296.5 296.459 296.44 296.419 296.378 296.316 296.206 296.004 295.764 295.542 295.347 295.175 295.055 294.993 294.925 294.827 294.751 294.687 294.607 294.599 294.634 294.644 294.612 294.548 294.408 294.314 294.614 295.277 296.148 297.562 299.545 301.333 300.71 298.566 297.476 297.774 297.545 298.149 297.686 297.984 297.413 296.674 295.801 294.975 294.994 295.588 297.094 296.849 297.406 298.595 298.41 298.232 297.103 295.683 294.149 293.732 294.063 294.62 295.42 296.67 297.423 297.407 297.402 297.524 297.513 297.473 297.513 297.527 297.45 297.358 297.3 297.201 297.071 296.959 296.847 296.681 296.512 296.382 296.282 296.204 296.145 296.096 296.06 296.013 295.968 295.938 295.907 295.858 295.849 295.9 296.003 296.043 296.052 296.068 296.102 296.151 296.223 296.328 296.491 296.658 296.758 296.792 296.827 296.982 297.13 297.215 297.211 297.151 297.065 296.959 296.832 296.733 296.636 296.527 296.419 296.37 296.363 296.404 296.517 296.594 296.576 296.487 296.394 296.359 296.314 296.257 296.198 296.11 295.982 295.832 295.652 295.447 295.238 295.04 294.861 294.694 294.509 294.311 294.069 293.774 293.431 293.086 292.762 292.465 292.163 291.883 291.61 291.361 291.204 291.194 291.291 291.477 292.028 293.131 294.623 294.057 291.427 285.051 282.722 285.515 290.472 295.316 296.577 296.632 296.196 296.159 296.227 296.491 295.186 293.679 292.739 293.936 295.834 296.719 297.294 297.632 297.807 297.793 297.598 297.479 297.42 297.384 297.394 297.433 297.452 297.483 297.581 297.683 297.764 297.815 297.778 297.659 297.524 297.358 297.085 296.788 296.532 296.316 296.121 295.991 295.89 295.78 295.615 295.436 295.252 295.037 294.776 294.557 294.37 294.18 293.977 293.936 294.055 294.432 295.559 297.118 297.781 296.396 294.332 293.732 294.691 295.821 296.146 296.076 295.978 295.249 294.552 294.811 295.402 296.419 297.481 298.429 298.884 298.87 299.076 299.43 299.484 298.811 297.426 297.023 297.936 298.555 298.842 298.798 298.622 298.44 298.345 298.238 298.076 297.909 297.739 297.563 297.443 297.386 297.321 297.236 297.196 297.191 297.155 297.067 296.964 296.853 296.706 296.528 296.336 296.158 295.992 295.857 295.76 295.689 295.603 295.514 295.437 295.371 295.325 295.356 295.373 295.299 295.118 294.946 294.839 294.906 295.449 296.321 297.412 298.984 300.766 302.19 302.236 299.903 300.249 299.986 299.306 299.28 299.589 299.655 299.121 298.408 297.565 296.62 296.153 296.301 296.789 297.472 298.007 299.267 299.489 299.303 299.81 298.348 295.785 294.762 294.985 295.725 296.821 297.784 297.994 297.973 298.052 298.136 298.097 298.068 298.133 298.131 298.026 297.905 297.82 297.714 297.586 297.471 297.368 297.247 297.118 297.002 296.896 296.833 296.785 296.71 296.599 296.546 296.543 296.551 296.535 296.498 296.486 296.508 296.564 296.583 296.583 296.604 296.674 296.769 296.868 296.974 297.089 297.228 297.364 297.471 297.561 297.706 297.815 297.847 297.786 297.679 297.546 297.403 297.278 297.218 297.174 297.1 296.966 296.895 296.877 296.892 296.933 296.948 296.873 296.741 296.652 296.643 296.622 296.578 296.507 296.394 296.25 296.087 295.889 295.686 295.498 295.327 295.152 294.992 294.831 294.649 294.406 294.088 293.732 293.376 293.006 292.646 292.337 292.096 291.867 291.615 291.501 291.579 291.779 291.879 292.142 292.942 294.495 294.415 292.016 285.016 281.707 283.85 289.712 295.097 296.741 297.064 296.652 296.698 296.875 296.798 296.043 294.871 293.763 293.773 295.115 296.745 296.84 297.268 297.772 298.076 298.161 298.159 298.093 297.994 298.017 298.094 298.101 298.117 298.209 298.228 298.193 298.159 298.056 297.829 297.619 297.435 297.156 296.868 296.664 296.516 296.374 296.25 296.099 295.908 295.684 295.5 295.298 295.059 294.918 294.703 294.491 294.301 294.157 294.155 294.402 295.068 296.603 298.002 298.109 296.583 294.274 294.218 295.079 295.824 296.419 297.047 297.827 298.07 296.808 296.72 297.064 297.776 297.797 298.702 299.309 299.31 299.523 299.984 300.002 298.698 297.024 296.801 297.571 298.439 299.034 299.198 299.089 298.857 298.712 298.62 298.461 298.295 298.161 298.037 297.966 297.961 297.952 297.888 297.837 297.794 297.705 297.593 297.478 297.342 297.16 297.0 296.858 296.721 296.574 296.45 296.354 296.272 296.181 296.105 296.056 296.02 296.003 295.995 295.912 295.722 295.468 295.383 295.451 295.696 296.37 297.34 298.47 299.868 301.448 301.668 300.671 300.602 301.453 301.367 300.612 300.674 301.167 301.221 300.38 299.828 299.357 298.386 297.586 297.284 297.864 298.323 299.013 300.33 300.946 301.616 301.439 299.66 296.873 296.466 296.674 296.873 298.074 298.359 298.432 298.468 298.633 298.684 298.653 298.665 298.751 298.706 298.529 298.343 298.249 298.178 298.104 298.033 297.967 297.897 297.81 297.698 297.561 297.463 297.378 297.27 297.144 297.131 297.181 297.222 297.233 297.216 297.188 297.166 297.161 297.128 297.087 297.085 297.161 297.29 297.433 297.565 297.661 297.783 297.954 298.119 298.257 298.364 298.412 298.393 298.281 298.112 297.953 297.823 297.724 297.666 297.629 297.578 297.483 297.432 297.42 297.399 297.322 297.239 297.115 296.976 296.891 296.88 296.867 296.837 296.771 296.659 296.526 296.364 296.14 295.945 295.794 295.651 295.477 295.32 295.152 294.939 294.641 294.303 293.939 293.565 293.176 292.854 292.611 292.412 292.174 291.991 291.985 292.089 292.173 292.2 292.423 293.122 294.55 294.752 292.937 285.876 281.773 283.039 288.932 294.846 297.0 297.417 297.065 296.955 296.844 296.922 296.796 296.457 295.819 295.37 295.306 296.17 296.649 296.916 297.508 298.023 298.445 298.617 298.602 298.48 298.467 298.553 298.559 298.567 298.642 298.579 298.433 298.296 298.124 297.878 297.689 297.547 297.326 297.101 296.958 296.845 296.709 296.56 296.35 296.092 295.838 295.641 295.406 295.155 295.147 294.886 294.638 294.481 294.401 294.442 294.885 295.897 297.501 298.348 297.848 295.977 294.952 295.075 295.471 296.602 296.763 297.638 298.741 298.345 297.988 297.253 297.352 297.198 297.753 298.822 299.679 299.8 300.01 300.445 300.423 298.885 297.213 296.779 297.142 298.203 299.095 299.534 299.517 299.245 299.022 298.928 298.782 298.629 298.526 298.463 298.451 298.484 298.496 298.424 298.341 298.258 298.159 298.069 297.963 297.823 297.631 297.471 297.347 297.236 297.116 297.001 296.914 296.842 296.763 296.713 296.694 296.681 296.631 296.502 296.281 296.018 295.835 295.938 296.174 296.533 297.241 298.221 299.275 300.376 301.448 301.786 301.464 301.175 302.29 302.556 302.095 302.04 301.852 301.848 301.307 301.285 300.922 300.16 299.374 298.848 298.969 299.725 301.298 301.081 302.363 302.535 302.015 299.248 297.997 297.579 297.704 298.361 298.716 298.883 298.934 299.008 299.141 299.165 299.167 299.229 299.339 299.272 299.094 298.841 298.7 298.66 298.628 298.58 298.526 298.467 298.401 298.318 298.198 298.076 297.976 297.888 297.814 297.82 297.855 297.871 297.873 297.864 297.817 297.758 297.71 297.646 297.574 297.552 297.643 297.79 297.974 298.168 298.319 298.446 298.598 298.748 298.873 298.931 298.909 298.827 298.675 298.491 298.352 298.276 298.222 298.146 298.089 298.047 297.978 297.926 297.903 297.839 297.671 297.507 297.358 297.229 297.127 297.071 297.042 297.022 296.969 296.867 296.758 296.612 296.38 296.204 296.081 295.943 295.745 295.577 295.374 295.109 294.79 294.48 294.138 293.783 293.432 293.171 292.97 292.781 292.537 292.43 292.486 292.554 292.559 292.874 293.479 294.197 295.007 294.84 293.205 286.778 282.356 282.95 288.243 293.824 296.999 297.348 297.218 297.278 297.112 297.121 297.039 297.551 297.408 296.73 296.368 296.004 295.876 296.455 297.527 298.123 298.546 298.95 299.049 298.952 298.858 298.926 298.927 298.889 298.863 298.723 298.522 298.341 298.148 297.939 297.797 297.691 297.517 297.36 297.245 297.105 296.905 296.739 296.522 296.26 296.018 295.803 295.555 295.332 295.462 295.18 294.938 294.854 294.869 295.05 295.79 297.045 298.236 298.213 296.84 295.799 295.691 295.671 295.876 296.699 297.022 297.62 298.266 298.751 297.368 296.785 296.625 297.165 297.481 298.991 299.861 300.251 300.501 300.796 300.732 299.991 297.618 296.872 296.682 297.907 299.002 299.716 299.815 299.577 299.349 299.257 299.116 298.967 298.865 298.814 298.821 298.869 298.888 298.824 298.752 298.679 298.581 298.481 298.363 298.216 298.039 297.903 297.805 297.734 297.676 297.592 297.516 297.463 297.413 297.354 297.291 297.203 297.03 296.784 296.532 296.347 296.365 296.625 296.955 297.361 298.051 298.947 299.826 300.635 301.372 301.879 302.184 302.063 301.888 301.689 301.491 301.359 301.376 301.24 301.593 301.893 301.527 301.143 301.043 300.96 301.066 301.241 301.786 301.75 302.463 302.204 300.83 299.321 298.787 298.589 298.845 299.037 299.192 299.307 299.361 299.456 299.568 299.563 299.573 299.648 299.719 299.639 299.467 299.264 299.127 299.105 299.073 299.022 298.984 298.951 298.907 298.868 298.814 298.719 298.64 298.59 298.544 298.494 298.451 298.413 298.394 298.381 298.326 298.246 298.2 298.154 298.111 298.13 298.246 298.384 298.568 298.771 298.938 299.062 299.179 299.277 299.373 299.412 299.341 299.199 299.033 298.891 298.802 298.765 298.735 298.671 298.635 298.61 298.527 298.43 298.346 298.227 298.022 297.84 297.703 297.602 297.524 297.442 297.384 297.341 297.246 297.108 296.979 296.82 296.589 296.416 296.258 296.059 295.819 295.638 295.42 295.165 294.92 294.66 294.339 294.02 293.738 293.492 293.312 293.194 293.066 293.027 293.158 293.365 293.66 294.323 295.028 295.424 295.335 294.431 292.662 286.536 282.597 282.365 287.799 293.273 296.622 297.314 297.367 297.781 297.567 297.392 297.081 297.247 297.224 297.041 297.118 297.6 296.821 296.742 297.405 298.053 298.624 299.16 299.424 299.376 299.197 299.218 299.216 299.117 298.947 298.759 298.578 298.423 298.238 298.044 297.901 297.776 297.597 297.467 297.353 297.188 296.976 296.819 296.623 296.387 296.154 295.93 295.715 295.576 295.897 295.667 295.5 295.494 295.598 295.986 296.981 298.273 298.821 297.8 296.105 296.527 296.844 296.274 296.262 296.474 296.785 296.827 296.886 296.756 296.925 296.824 296.654 297.192 297.3 297.996 299.413 300.144 300.618 300.913 300.911 300.394 298.253 297.287 296.732 297.506 298.8 299.659 299.88 299.746 299.588 299.509 299.396 299.289 299.207 299.146 299.148 299.197 299.225 299.193 299.148 299.078 298.966 298.856 298.734 298.598 298.461 298.363 298.304 298.269 298.216 298.127 298.051 297.995 297.939 297.862 297.753 297.596 297.354 297.139 297.019 297.022 297.208 297.495 297.828 298.259 298.926 299.65 300.267 300.775 301.271 301.723 302.011 302.124 302.18 302.319 302.261 301.684 301.659 301.77 302.251 302.114 301.875 301.882 301.907 302.08 302.592 302.259 301.742 300.522 301.186 300.725 299.624 299.157 298.918 299.472 299.417 299.347 299.469 299.553 299.64 299.795 299.939 299.941 299.941 299.953 299.908 299.83 299.749 299.663 299.618 299.632 299.605 299.553 299.527 299.49 299.372 299.389 299.462 299.41 299.356 299.315 299.239 299.123 299.034 298.98 298.956 298.935 298.883 298.812 298.774 298.753 298.742 298.782 298.893 298.997 299.14 299.295 299.391 299.472 299.568 299.641 299.704 299.74 299.668 299.527 299.381 299.285 299.224 299.204 299.205 299.189 299.189 299.176 299.083 298.941 298.787 298.609 298.417 298.261 298.134 298.044 297.991 297.913 297.832 297.743 297.567 297.354 297.168 296.97 296.715 296.512 296.31 296.069 295.829 295.656 295.451 295.24 295.071 294.83 294.539 294.309 294.148 293.953 293.874 293.958 294.06 294.126 294.413 294.859 295.303 295.623 295.735 295.499 294.736 293.222 291.177 285.095 281.739 283.293 288.967 294.08 296.597 297.049 297.274 297.89 298.323 297.711 297.069 296.795 296.626 296.636 297.272 298.964 298.745 297.968 297.6 298.105 298.653 299.283 299.652 299.647 299.421 299.377 299.348 299.226 299.013 298.833 298.675 298.512 298.314 298.138 297.995 297.858 297.69 297.565 297.447 297.302 297.148 297.019 296.839 296.623 296.4 296.19 296.03 295.962 296.434 296.292 296.211 296.24 296.421 297.01 298.101 299.218 299.191 296.868 295.439 295.813 295.836 296.132 296.486 296.759 296.764 296.638 296.384 296.44 296.218 296.072 296.114 296.729 297.178 297.124 297.707 298.953 300.122 300.611 300.836 300.711 299.129 298.274 297.343 296.962 298.71 299.55 299.866 299.845 299.73 299.65 299.583 299.547 299.512 299.459 299.456 299.491 299.501 299.481 299.45 299.384 299.282 299.202 299.114 299.008 298.899 298.842 298.813 298.789 298.717 298.613 298.525 298.441 298.33 298.231 298.124 297.991 297.842 297.792 297.854 298.01 298.244 298.449 298.722 299.134 299.739 300.24 300.589 300.857 301.146 301.431 301.607 301.692 301.834 302.116 302.286 301.724 301.127 303.095 302.253 302.51 302.956 303.084 302.458 303.041 302.671 301.516 300.615 300.804 301.332 300.451 299.532 298.39 298.94 299.53 299.519 299.601 299.728 299.804 299.964 300.197 300.363 300.346 300.307 300.251 300.147 300.077 300.052 300.036 300.048 300.079 300.066 300.026 300.005 299.954 299.712 299.778 299.908 299.889 299.854 299.827 299.76 299.667 299.616 299.581 299.532 299.495 299.442 299.384 299.36 299.342 299.324 299.348 299.433 299.531 299.661 299.77 299.797 299.844 299.941 300.011 300.024 300.02 299.959 299.859 299.758 299.693 299.667 299.678 299.703 299.702 299.681 299.62 299.506 299.36 299.181 298.981 298.81 298.669 298.533 298.433 298.365 298.229 298.065 297.898 297.664 297.428 297.22 297.001 296.731 296.531 296.344 296.143 295.966 295.828 295.654 295.486 295.342 295.139 294.964 294.886 294.842 294.739 294.786 294.998 295.22 295.403 295.751 296.111 296.151 295.796 295.24 294.394 293.01 291.5 287.987 283.811 282.722 286.634 291.397 295.54 297.003 296.923 297.306 297.907 298.356 297.849 297.211 296.837 296.503 296.205 296.585 298.153 299.432 298.773 297.955 298.01 298.244 299.383 299.784 299.812 299.598 299.476 299.383 299.257 299.112 298.981 298.799 298.58 298.37 298.226 298.092 297.97 297.851 297.746 297.646 297.544 297.436 297.3 297.131 296.957 296.783 296.63 296.531 296.492 297.171 297.122 297.069 297.058 297.268 297.957 298.971 299.808 299.43 296.659 294.888 294.166 294.612 295.291 295.495 296.176 296.66 296.71 296.379 295.932 295.717 295.799 296.03 296.407 296.735 296.547 296.531 297.17 298.499 300.068 300.637 300.905 300.239 299.266 298.098 297.572 298.878 299.585 299.917 299.948 299.838 299.764 299.749 299.765 299.734 299.658 299.632 299.641 299.645 299.666 299.682 299.665 299.61 299.553 299.476 299.392 299.32 299.284 299.27 299.253 299.177 299.063 298.957 298.847 298.689 298.573 298.491 298.434 298.446 298.56 298.722 298.911 299.118 299.283 299.503 299.821 300.221 300.505 300.716 300.907 301.098 301.229 301.301 301.362 301.512 301.77 302.038 302.22 301.657 300.671 300.912 301.992 302.451 302.49 302.65 302.55 301.954 300.62 301.346 302.122 301.986 300.228 299.731 298.779 299.662 299.723 299.88 300.053 300.15 300.221 300.433 300.701 300.824 300.729 300.639 300.585 300.543 300.474 300.375 300.262 300.191 300.194 300.197 300.201 300.2 300.155 300.107 300.105 300.146 300.131 300.107 300.1 300.091 300.095 300.098 300.065 299.982 299.918 299.841 299.77 299.754 299.755 299.751 299.79 299.899 300.005 300.123 300.22 300.224 300.242 300.322 300.388 300.38 300.351 300.299 300.226 300.135 300.087 300.091 300.13 300.153 300.118 300.045 299.935 299.779 299.627 299.442 299.248 299.097 298.968 298.829 298.717 298.585 298.346 298.1 297.875 297.62 297.395 297.199 296.994 296.764 296.619 296.496 296.382 296.297 296.2 296.073 295.952 295.829 295.723 295.694 295.707 295.656 295.651 295.8 296.018 296.227 296.484 296.672 296.56 295.961 295.287 294.328 293.028 290.32 286.934 284.137 283.483 286.201 291.024 294.913 296.691 296.835 296.992 297.372 297.511 297.752 297.645 297.286 297.007 296.601 296.004 296.059 297.075 298.72 299.015 297.996 297.755 298.201 299.373 299.784 299.845 299.7 299.561 299.423 299.265 299.123 298.999 298.828 298.642 298.499 298.38 298.244 298.135 298.069 297.999 297.929 297.86 297.748 297.591 297.46 297.347 297.222 297.167 297.18 297.2 298.029 298.041 297.981 297.899 298.066 298.703 299.54 300.185 299.737 297.718 294.82 293.441 293.197 293.742 294.718 295.348 295.923 295.983 296.237 295.785 295.654 295.368 295.609 295.717 295.867 295.697 296.095 296.75 297.809 299.235 300.531 300.964 301.053 300.523 299.317 298.422 299.262 299.759 300.01 300.023 299.906 299.868 299.901 299.943 299.899 299.821 299.782 299.771 299.783 299.845 299.906 299.938 299.937 299.89 299.813 299.756 299.735 299.705 299.668 299.619 299.509 299.375 299.257 299.147 299.015 298.936 298.913 298.945 299.084 299.285 299.467 299.635 299.81 299.966 300.136 300.333 300.521 300.667 300.848 301.039 301.164 301.178 301.174 301.2 301.297 301.422 301.608 301.847 301.935 301.388 300.438 301.172 301.171 301.052 301.313 301.876 300.793 300.499 301.685 301.794 301.593 299.977 299.623 299.741 300.151 300.256 300.438 300.55 300.551 300.61 300.789 301.001 301.09 301.003 300.92 300.895 300.914 300.817 300.641 300.454 300.307 300.25 300.253 300.29 300.308 300.283 300.267 300.287 300.344 300.372 300.37 300.361 300.369 300.408 300.424 300.388 300.314 300.27 300.19 300.09 300.044 300.064 300.091 300.158 300.289 300.382 300.461 300.522 300.526 300.511 300.532 300.57 300.599 300.61 300.552 300.422 300.265 300.203 300.225 300.282 300.284 300.211 300.127 300.015 299.853 299.697 299.515 299.331 299.175 299.043 298.904 298.77 298.585 298.335 298.108 297.897 297.647 297.453 297.297 297.146 297.023 296.972 296.917 296.871 296.84 296.765 296.688 296.632 296.552 296.526 296.561 296.551 296.448 296.578 296.805 296.972 297.111 297.287 297.147 296.578 295.735 294.88 293.751 290.163 286.082 283.668 283.797 286.807 291.402 296.01 297.932 297.605 297.33 297.107 297.252 297.196 297.286 297.591 297.405 297.24 296.976 296.336 295.904 296.535 298.225 299.218 299.378 298.266 297.907 299.185 299.652 299.808 299.691 299.558 299.438 299.284 299.104 298.989 298.886 298.791 298.716 298.617 298.51 298.443 298.42 298.361 298.297 298.241 298.127 298.009 297.955 297.905 297.808 297.848 297.966 298.034 298.876 298.934 298.866 298.753 298.877 299.318 299.931 300.501 300.245 298.589 295.16 293.481 292.783 293.178 293.92 294.476 294.91 295.15 295.556 295.432 295.102 295.277 295.225 294.994 294.752 295.103 296.113 296.952 297.971 299.486 300.485 300.891 300.998 300.766 300.099 298.918 299.699 300.008 300.151 300.126 300.008 299.991 300.063 300.129 300.111 300.055 300.005 299.966 299.971 300.03 300.084 300.135 300.192 300.185 300.158 300.157 300.168 300.119 300.043 299.949 299.802 299.651 299.54 299.455 299.378 299.37 299.422 299.524 299.707 299.918 300.09 300.224 300.352 300.461 300.575 300.692 300.792 300.913 301.071 301.191 301.176 301.088 301.011 300.971 301.031 301.158 301.282 301.432 301.586 301.586 301.582 301.823 301.803 300.288 300.083 300.624 300.105 300.446 301.421 301.377 301.251 300.388 300.438 300.829 300.632 300.664 300.767 300.818 300.79 300.819 300.912 301.032 301.162 301.195 301.157 301.12 301.114 301.028 300.898 300.764 300.605 300.446 300.383 300.384 300.372 300.37 300.409 300.48 300.594 300.678 300.673 300.616 300.572 300.576 300.568 300.542 300.536 300.569 300.556 300.49 300.44 300.449 300.461 300.492 300.585 300.652 300.69 300.72 300.737 300.725 300.71 300.711 300.758 300.784 300.659 300.423 300.181 300.101 300.125 300.175 300.15 300.074 300.001 299.897 299.728 299.582 299.429 299.278 299.139 299.003 298.866 298.738 298.562 298.377 298.228 298.08 297.892 297.782 297.705 297.635 297.612 297.602 297.559 297.539 297.549 297.48 297.429 297.411 297.351 297.333 297.35 297.313 297.291 297.542 297.743 297.783 297.806 297.729 297.253 296.515 295.695 294.421 292.229 287.491 284.997 285.632 288.227 292.109 296.577 299.024 298.839 298.275 297.511 297.003 297.079 297.033 297.105 297.212 297.335 297.48 297.468 296.958 296.244 296.342 297.235 298.244 299.993 299.432 298.51 298.937 299.509 299.845 299.748 299.557 299.466 299.385 299.253 299.202 299.176 299.11 299.006 298.937 298.904 298.902 298.889 298.793 298.702 298.646 298.58 298.536 298.546 298.535 298.475 298.595 298.764 298.849 299.626 299.705 299.634 299.552 299.664 299.864 300.238 300.737 300.665 299.054 296.868 294.059 293.009 293.058 293.628 294.205 294.586 294.868 295.157 294.704 294.234 294.036 294.044 294.025 293.9 294.559 296.047 296.98 298.071 299.297 300.473 300.74 300.746 300.592 300.334 299.935 300.038 300.204 300.299 300.296 300.206 300.197 300.28 300.358 300.357 300.313 300.253 300.187 300.158 300.173 300.196 300.248 300.345 300.382 300.38 300.364 300.328 300.276 300.227 300.149 300.006 299.905 299.857 299.821 299.77 299.789 299.872 299.985 300.148 300.327 300.483 300.591 300.653 300.706 300.799 300.896 300.958 301.053 301.16 301.175 301.033 300.918 300.838 300.786 300.867 301.052 301.157 301.192 301.246 301.301 301.369 301.453 301.428 300.591 299.865 300.25 300.666 300.983 301.417 301.371 301.43 301.09 300.906 301.305 300.903 300.713 300.717 300.809 300.883 300.917 300.975 301.056 301.219 301.335 301.312 301.231 301.182 301.15 301.13 301.086 300.893 300.644 300.506 300.466 300.451 300.512 300.614 300.718 300.846 300.906 300.842 300.731 300.677 300.669 300.645 300.637 300.665 300.714 300.761 300.79 300.787 300.76 300.722 300.697 300.732 300.792 300.82 300.843 300.858 300.878 300.888 300.878 300.859 300.785 300.588 300.332 300.13 300.074 300.062 300.058 300.007 299.922 299.833 299.721 299.575 299.471 299.378 299.285 299.198 299.1 299.005 298.925 298.815 298.715 298.641 298.542 298.411 298.371 298.336 298.283 298.279 298.273 298.225 298.213 298.251 298.181 298.12 298.101 298.043 298.019 298.036 298.046 298.163 298.398 298.43 298.301 298.203 297.833 297.126 296.38 295.414 293.909 290.105 288.247 288.848 291.307 294.767 296.935 298.171 298.508 298.186 297.796 297.298 296.837 296.794 296.799 296.819 296.956 297.221 297.477 297.863 297.47 296.803 296.565 296.453 297.121 299.241 300.44 299.554 298.32 299.169 299.723 299.794 299.622 299.58 299.591 299.568 299.596 299.605 299.538 299.438 299.42 299.419 299.408 299.359 299.25 299.163 299.135 299.14 299.138 299.143 299.124 299.116 299.288 299.463 299.544 300.203 300.233 300.146 300.119 300.242 300.232 300.379 300.769 300.789 299.459 297.255 295.205 294.038 293.623 293.896 294.105 294.389 295.066 294.775 294.441 293.817 293.431 293.392 293.311 293.381 294.105 295.712 296.981 298.259 299.7 300.511 300.589 300.484 300.359 300.216 300.131 300.206 300.313 300.371 300.396 300.373 300.415 300.518 300.586 300.548 300.504 300.46 300.397 300.334 300.328 300.358 300.412 300.473 300.48 300.451 300.383 300.28 300.262 300.269 300.231 300.136 300.117 300.119 300.093 300.047 300.081 300.169 300.276 300.4 300.546 300.683 300.773 300.802 300.845 300.926 300.978 300.923 300.895 300.91 300.889 300.813 300.853 300.909 300.922 300.995 301.008 300.985 301.015 300.953 301.01 301.159 301.232 301.256 301.181 301.065 300.965 301.021 301.267 301.439 301.511 301.603 301.535 301.392 301.352 300.779 300.343 299.99 300.583 300.906 300.943 301.033 301.131 301.25 301.351 301.364 301.303 301.249 301.245 301.263 301.248 301.071 300.848 300.737 300.722 300.76 300.862 300.945 300.988 301.04 301.04 300.943 300.852 300.871 300.864 300.817 300.786 300.761 300.753 300.795 300.858 300.852 300.772 300.692 300.625 300.64 300.717 300.756 300.756 300.716 300.745 300.8 300.811 300.72 300.589 300.427 300.265 300.157 300.096 300.024 299.955 299.872 299.777 299.684 299.593 299.505 299.437 299.379 299.331 299.292 299.223 299.156 299.119 299.09 299.066 299.054 299.011 298.928 298.907 298.873 298.817 298.813 298.816 298.781 298.764 298.769 298.693 298.641 298.614 298.559 298.587 298.666 298.752 298.947 299.09 298.937 298.671 298.462 297.92 297.134 296.287 295.023 292.685 290.78 291.932 295.284 298.216 298.407 298.301 298.35 298.119 297.98 297.799 297.533 297.117 296.95 297.05 296.974 297.005 297.194 297.467 297.774 297.767 297.429 297.016 296.347 296.426 298.18 299.731 299.589 297.868 298.146 299.16 299.56 299.603 299.671 299.731 299.762 299.83 299.869 299.857 299.848 299.861 299.83 299.78 299.746 299.707 299.686 299.713 299.77 299.79 299.779 299.75 299.769 299.915 300.029 300.094 300.382 300.349 300.297 300.361 300.476 300.314 300.322 300.625 300.658 299.565 297.273 295.785 295.585 294.838 294.563 294.479 294.803 295.824 295.458 294.818 293.845 293.56 293.144 293.143 293.448 294.122 295.304 296.793 298.425 300.149 300.475 300.417 300.294 300.225 300.173 300.206 300.33 300.358 300.376 300.431 300.493 300.58 300.687 300.726 300.654 300.632 300.618 300.569 300.522 300.555 300.603 300.613 300.558 300.505 300.473 300.418 300.323 300.309 300.293 300.237 300.22 300.297 300.325 300.296 300.293 300.345 300.397 300.453 300.561 300.687 300.781 300.833 300.863 300.927 300.98 300.941 300.734 300.577 300.557 300.602 300.571 300.707 300.935 301.096 300.833 300.846 300.691 300.79 300.63 300.178 300.692 301.191 301.247 301.155 301.004 300.858 300.912 301.19 301.298 301.238 301.028 300.032 299.824 300.138 299.512 298.471 299.491 300.569 300.898 300.917 301.015 301.129 301.195 301.278 301.353 301.357 301.286 301.232 301.203 301.172 301.1 301.011 300.97 300.986 301.036 301.079 301.059 301.008 301.008 301.023 300.992 300.985 301.046 300.986 300.873 300.801 300.763 300.726 300.745 300.8 300.785 300.684 300.581 300.511 300.521 300.585 300.609 300.588 300.522 300.51 300.559 300.585 300.504 300.422 300.358 300.282 300.188 300.095 300.011 299.941 299.876 299.807 299.733 299.656 299.578 299.505 299.443 299.387 299.337 299.256 299.177 299.145 299.148 299.134 299.138 299.14 299.111 299.099 299.087 299.081 299.12 299.149 299.132 299.105 299.072 299.013 298.984 298.958 298.927 299.035 299.181 299.31 299.485 299.513 299.277 298.963 298.681 298.119 297.317 296.238 294.498 292.107 292.866 297.141 299.789 298.65 298.239 298.246 298.466 298.396 298.246 298.243 298.102 297.617 297.61 297.505 297.251 297.297 297.006 297.084 297.31 297.763 297.7 297.311 296.863 296.44 296.776 297.716 298.192 297.093 297.265 298.544 299.249 299.54 299.705 299.766 299.791 299.86 299.93 299.986 300.024 299.987 299.921 299.896 299.933 299.939 299.954 300.029 300.153 300.232 300.263 300.251 300.229 300.265 300.294 300.322 300.252 300.182 300.205 300.35 300.413 300.269 300.345 300.581 300.415 299.328 297.171 296.373 296.476 295.934 295.42 295.225 296.425 297.302 296.558 295.339 294.429 293.7 293.096 292.997 293.307 294.046 295.035 296.742 298.434 300.093 300.333 300.235 300.186 300.179 300.153 300.209 300.318 300.32 300.357 300.474 300.61 300.695 300.753 300.748 300.679 300.661 300.644 300.616 300.623 300.688 300.736 300.718 300.603 300.551 300.562 300.568 300.535 300.495 300.397 300.288 300.337 300.465 300.487 300.466 300.518 300.551 300.534 300.541 300.629 300.696 300.732 300.772 300.84 300.891 300.878 300.785 300.159 299.752 299.698 299.584 299.594 300.201 300.848 301.011 301.106 301.115 301.006 300.834 300.687 300.793 301.014 301.183 301.153 301.051 300.939 300.852 300.907 301.029 300.456 299.305 298.501 297.685 297.222 297.176 296.891 298.209 299.618 300.463 300.812 300.842 300.932 301.029 301.071 301.155 301.235 301.22 301.098 301.005 300.928 300.863 300.861 300.894 300.924 300.953 300.974 300.947 300.883 300.822 300.837 300.911 300.961 301.0 301.014 300.895 300.764 300.713 300.726 300.727 300.769 300.841 300.876 300.838 300.744 300.661 300.662 300.679 300.626 300.564 300.497 300.443 300.448 300.453 300.391 300.349 300.334 300.291 300.197 300.132 300.092 300.075 300.065 300.018 299.966 299.892 299.773 299.678 299.609 299.536 299.473 299.397 299.317 299.257 299.227 299.171 299.128 299.11 299.089 299.084 299.113 299.155 299.197 299.215 299.205 299.185 299.155 299.148 299.164 299.157 299.138 299.26 299.408 299.516 299.623 299.581 299.365 299.124 298.894 298.39 297.496 296.119 293.73 292.809 295.116 299.514 298.935 298.332 298.275 299.014 298.782 298.256 298.219 298.34 298.226 298.017 298.06 297.963 297.557 297.235 296.939 297.015 297.402 297.582 297.587 297.376 297.101 296.657 296.321 296.559 296.606 296.945 297.411 297.953 299.212 299.534 299.659 299.688 299.722 299.806 299.895 299.971 299.985 299.914 299.879 299.913 299.967 299.954 299.998 300.127 300.282 300.346 300.373 300.354 300.285 300.261 300.256 300.262 300.108 300.028 300.045 300.135 300.145 300.224 300.452 300.534 300.018 298.805 297.524 296.767 296.432 296.546 296.238 295.977 296.784 297.697 296.97 295.777 294.607 293.404 293.444 293.279 293.117 293.593 294.811 296.426 299.047 299.961 300.138 300.045 300.114 300.169 300.138 300.153 300.229 300.238 300.315 300.477 300.632 300.68 300.697 300.7 300.704 300.679 300.626 300.605 300.681 300.751 300.773 300.757 300.662 300.583 300.586 300.634 300.678 300.655 300.534 300.386 300.389 300.496 300.543 300.578 300.639 300.601 300.558 300.594 300.673 300.675 300.695 300.75 300.756 300.645 300.538 300.473 299.854 300.148 300.489 300.499 300.748 300.749 300.801 300.874 300.875 300.755 300.712 300.753 300.738 300.701 300.755 300.837 300.872 300.915 300.885 300.744 300.492 300.176 299.674 298.221 296.931 296.138 295.577 295.456 296.179 297.772 298.942 299.86 300.608 300.698 300.832 300.951 300.975 301.002 301.019 300.955 300.824 300.771 300.709 300.631 300.629 300.713 300.792 300.853 300.868 300.818 300.777 300.776 300.814 300.9 300.972 300.994 300.942 300.833 300.766 300.779 300.834 300.868 300.909 300.954 300.99 300.982 300.894 300.781 300.75 300.731 300.633 300.533 300.466 300.386 300.337 300.3 300.199 300.109 300.062 300.017 299.96 299.955 299.966 299.973 299.952 299.908 299.875 299.816 299.681 299.602 299.561 299.499 299.427 299.392 299.336 299.271 299.222 299.142 299.05 298.98 298.921 298.891 298.902 298.917 298.917 298.929 298.94 298.954 298.976 299.009 299.042 299.068 299.085 299.147 299.23 299.303 299.38 299.346 299.252 299.204 299.177 298.745 297.667 295.992 293.764 294.228 297.267 298.994 298.743 298.434 298.631 298.903 298.536 298.18 298.344 298.48 298.279 298.12 298.172 297.981 297.662 297.509 297.54 297.649 297.886 297.886 297.793 297.457 297.249 296.816 296.445 296.445 296.549 297.031 297.806 298.837 299.407 299.556 299.567 299.573 299.64 299.707 299.78 299.851 299.897 299.905 299.927 299.958 299.998 300.035 300.158 300.322 300.412 300.365 300.298 300.226 300.15 300.131 300.137 300.151 300.037 299.996 300.006 300.03 300.03 300.269 300.46 300.249 299.435 297.714 298.584 297.414 296.5 296.575 296.417 296.221 296.369 296.411 296.342 295.636 294.261 293.479 293.5 293.451 293.043 293.046 294.066 295.796 298.506 299.68 299.819 299.66 299.783 299.986 300.053 300.101 300.176 300.221 300.313 300.439 300.54 300.589 300.629 300.685 300.774 300.796 300.771 300.78 300.864 300.901 300.902 300.889 300.77 300.597 300.53 300.575 300.687 300.718 300.632 300.493 300.429 300.504 300.603 300.69 300.691 300.598 300.596 300.689 300.754 300.755 300.799 300.801 300.529 300.06 299.408 299.158 300.381 300.534 300.581 300.597 300.535 300.498 300.589 300.687 300.461 299.633 299.335 300.059 300.625 300.553 300.477 300.49 300.609 300.703 300.564 300.12 299.308 298.361 297.108 296.443 296.245 295.881 295.833 296.361 298.535 299.642 300.342 300.618 300.157 300.572 300.695 300.825 300.853 300.818 300.799 300.756 300.668 300.665 300.655 300.602 300.588 300.673 300.763 300.829 300.809 300.724 300.696 300.732 300.766 300.816 300.877 300.883 300.814 300.782 300.796 300.839 300.882 300.88 300.858 300.805 300.7 300.602 300.481 300.344 300.27 300.241 300.168 300.093 300.037 299.948 299.871 299.808 299.685 299.549 299.457 299.388 299.352 299.37 299.371 299.35 299.298 299.224 299.164 299.089 298.94 298.868 298.85 298.806 298.743 298.729 298.679 298.612 298.58 298.513 298.409 298.318 298.247 298.208 298.183 298.152 298.136 298.198 298.248 298.28 298.345 298.409 298.455 298.522 298.599 298.635 298.697 298.79 298.847 298.848 298.912 299.027 299.113 298.753 297.721 295.446 293.876 295.193 298.183 298.62 298.585 298.705 298.831 298.578 298.219 298.428 298.812 298.805 298.502 298.204 298.176 298.294 298.599 299.009 299.7 300.158 299.796 299.524 298.645 297.907 297.874 297.592 297.348 297.146 297.047 297.486 298.396 299.151 299.545 299.561 299.525 299.556 299.647 299.702 299.75 299.795 299.85 299.92 299.952 299.96 300.028 300.168 300.317 300.436 300.456 300.381 300.304 300.246 300.183 300.1 300.045 300.037 300.048 300.105 300.201 300.281 300.304 300.406 300.335 299.959 298.315 299.705 300.106 298.262 296.977 296.799 296.436 296.4 296.219 296.123 295.953 295.64 294.245 293.338 293.132 293.324 293.087 292.819 293.603 295.479 297.952 299.463 299.519 299.127 299.088 299.433 299.681 299.83 299.961 300.134 300.311 300.435 300.489 300.542 300.607 300.694 300.842 300.975 301.049 301.101 301.146 301.124 301.086 301.042 300.903 300.703 300.597 300.595 300.657 300.686 300.651 300.574 300.54 300.649 300.771 300.817 300.74 300.684 300.725 300.787 300.804 300.86 300.876 300.65 299.912 298.82 298.681 299.152 300.311 300.441 300.334 299.962 299.255 299.312 299.248 300.002 299.956 298.56 297.653 299.221 300.292 300.371 300.09 300.1 300.004 299.994 299.918 298.726 297.297 296.709 296.161 296.171 296.581 297.553 298.397 299.246 299.988 300.481 300.715 300.73 300.581 300.515 300.554 300.634 300.631 300.552 300.547 300.556 300.469 300.418 300.404 300.362 300.35 300.418 300.468 300.483 300.434 300.319 300.266 300.28 300.275 300.265 300.274 300.267 300.261 300.294 300.329 300.378 300.437 300.419 300.349 300.222 299.989 299.794 299.652 299.502 299.364 299.324 299.305 299.29 299.265 299.174 299.071 298.98 298.861 298.745 298.645 298.551 298.489 298.484 298.465 298.438 298.402 298.313 298.205 298.079 297.892 297.78 297.731 297.676 297.617 297.604 297.559 297.507 297.479 297.394 297.276 297.175 297.086 297.038 297.016 296.978 296.964 297.051 297.104 297.12 297.2 297.296 297.379 297.517 297.697 297.79 297.938 298.105 298.128 298.127 298.262 298.392 298.413 298.166 297.165 295.371 293.9 295.394 297.73 298.401 298.505 299.018 299.067 298.4 298.389 298.82 299.636 299.795 299.579 298.686 298.726 299.502 301.1 302.845 302.891 302.304 301.612 300.787 299.764 299.003 299.697 299.158 298.304 298.248 298.065 298.595 298.94 299.311 299.524 299.526 299.541 299.612 299.7 299.779 299.841 299.852 299.847 299.913 299.955 299.985 300.108 300.247 300.315 300.346 300.369 300.388 300.424 300.461 300.419 300.229 300.056 299.998 300.206 300.301 300.475 300.634 300.654 300.544 300.29 298.938 299.819 301.709 300.572 298.489 297.371 297.298 297.147 296.9 296.434 296.177 296.104 296.097 294.083 293.182 293.011 292.692 292.625 292.742 293.987 295.425 297.565 299.563 299.585 298.923 298.574 298.909 299.253 299.482 299.674 299.963 300.232 300.393 300.447 300.523 300.616 300.72 300.877 301.064 301.178 301.222 301.215 301.158 301.073 300.979 300.881 300.798 300.724 300.667 300.634 300.617 300.59 300.565 300.602 300.739 300.834 300.835 300.785 300.848 300.913 300.908 300.887 300.939 300.776 300.231 298.536 298.052 298.688 299.412 300.174 300.191 299.758 298.672 298.086 298.247 298.4 299.538 299.671 298.623 297.28 298.854 299.972 300.16 300.249 300.415 300.469 300.01 298.89 297.769 298.67 298.331 297.777 298.419 299.289 299.715 300.016 300.336 300.57 300.629 300.68 300.705 300.623 300.49 300.436 300.456 300.421 300.296 300.272 300.279 300.141 300.0 299.913 299.811 299.748 299.793 299.789 299.746 299.7 299.603 299.521 299.487 299.452 299.412 299.384 299.378 299.457 299.551 299.591 299.644 299.739 299.707 299.602 299.46 299.217 299.0 298.856 298.702 298.518 298.446 298.422 298.418 298.415 298.342 298.225 298.099 297.955 297.834 297.721 297.592 297.475 297.422 297.368 297.335 297.346 297.299 297.202 297.082 296.923 296.801 296.718 296.635 296.57 296.562 296.539 296.507 296.46 296.351 296.256 296.177 296.044 295.941 295.882 295.797 295.692 295.692 295.691 295.685 295.753 295.851 295.978 296.198 296.472 296.665 296.923 297.178 297.237 297.268 297.432 297.563 297.566 297.482 296.777 295.167 294.021 295.197 296.958 298.063 298.311 299.066 298.876 298.647 298.829 299.418 299.652 300.157 301.068 300.727 300.889 301.965 303.343 304.149 303.891 302.435 300.921 300.013 299.726 299.799 299.725 299.054 298.71 298.579 298.657 298.786 298.954 299.123 299.225 299.271 299.365 299.493 299.612 299.753 299.875 299.912 299.906 299.968 300.018 300.066 300.193 300.283 300.328 300.375 300.415 300.416 300.476 300.582 300.629 300.474 300.29 300.191 300.469 300.507 300.63 300.743 300.733 300.574 300.397 299.591 301.79 302.907 300.249 298.083 297.532 297.712 297.916 297.858 297.049 297.309 297.311 296.909 294.692 293.612 293.553 292.837 292.484 293.222 295.33 296.866 299.324 299.999 300.087 299.246 298.745 298.909 299.226 299.522 299.775 300.008 300.178 300.265 300.326 300.435 300.564 300.702 300.845 300.931 300.952 300.936 300.922 300.87 300.763 300.664 300.669 300.712 300.673 300.603 300.576 300.569 300.538 300.517 300.57 300.691 300.791 300.841 300.879 300.992 301.065 301.058 301.006 300.873 300.428 299.474 298.056 298.335 299.385 299.891 299.883 299.898 299.292 297.821 297.272 297.42 297.68 298.163 299.535 299.26 298.808 298.952 299.761 299.975 300.06 300.189 300.255 299.821 298.998 299.064 299.772 299.925 299.903 300.043 300.43 300.554 300.593 300.646 300.626 300.586 300.609 300.616 300.541 300.442 300.381 300.369 300.327 300.208 300.156 300.119 299.96 299.793 299.632 299.424 299.255 299.246 299.182 299.076 299.01 298.913 298.807 298.729 298.679 298.662 298.659 298.677 298.792 298.925 298.968 298.99 299.052 298.984 298.856 298.737 298.561 298.377 298.226 298.064 297.889 297.849 297.823 297.78 297.748 297.678 297.573 297.454 297.3 297.143 297.004 296.851 296.698 296.613 296.54 296.508 296.577 296.606 296.548 296.446 296.316 296.221 296.131 296.032 295.969 295.963 295.944 295.922 295.884 295.814 295.789 295.767 295.619 295.453 295.323 295.157 294.908 294.768 294.729 294.7 294.683 294.721 294.848 295.095 295.426 295.677 295.969 296.248 296.412 296.496 296.655 296.833 296.964 296.945 296.461 295.323 293.897 294.372 296.281 297.721 298.685 299.715 299.173 298.949 299.542 301.098 301.637 303.297 304.177 303.954 303.533 303.908 304.004 303.358 302.158 300.918 299.619 298.392 298.521 298.517 298.448 298.328 298.291 298.337 298.436 298.521 298.58 298.629 298.678 298.789 298.975 299.171 299.347 299.549 299.731 299.841 299.924 300.014 300.046 300.069 300.18 300.28 300.374 300.462 300.461 300.376 300.409 300.553 300.719 300.714 300.62 300.522 300.684 300.676 300.696 300.712 300.671 300.56 300.494 299.945 302.303 303.52 301.664 298.423 297.743 298.085 299.39 300.352 298.221 298.79 299.276 297.709 296.202 295.44 295.052 294.361 294.085 294.98 296.64 297.928 299.373 299.714 300.523 300.015 299.446 299.266 299.371 299.65 299.999 300.151 300.17 300.154 300.205 300.281 300.38 300.517 300.643 300.63 300.559 300.514 300.537 300.528 300.464 300.422 300.495 300.555 300.531 300.5 300.526 300.493 300.429 300.424 300.527 300.63 300.746 300.868 300.936 300.968 301.046 301.1 300.944 300.462 299.811 298.533 298.232 298.987 299.653 299.652 299.47 299.627 298.999 297.74 297.034 297.027 297.388 297.502 299.1 299.665 299.304 299.028 299.436 299.991 300.029 299.718 300.168 300.23 300.235 300.265 300.517 300.704 300.7 300.691 300.776 300.745 300.697 300.67 300.615 300.612 300.606 300.526 300.431 300.43 300.402 300.364 300.347 300.305 300.27 300.234 300.116 299.994 299.836 299.606 299.381 299.295 299.161 298.994 298.86 298.71 298.56 298.444 298.357 298.348 298.373 298.393 298.469 298.598 298.645 298.634 298.635 298.578 298.505 298.443 298.34 298.214 298.084 297.928 297.811 297.832 297.837 297.794 297.744 297.648 297.547 297.469 297.379 297.256 297.152 297.045 296.918 296.869 296.863 296.893 296.995 297.102 297.103 297.024 296.896 296.794 296.684 296.56 296.465 296.415 296.362 296.31 296.251 296.212 296.214 296.179 296.076 295.894 295.702 295.498 295.192 295.0 294.904 294.866 294.727 294.719 294.781 294.984 295.274 295.573 295.809 296.026 296.256 296.274 296.269 296.43 296.661 296.529 296.246 295.954 294.451 293.855 295.34 298.695 299.291 300.312 300.119 300.228 300.714 301.543 303.127 304.527 304.984 304.793 303.914 303.208 302.584 301.437 300.627 299.862 298.287 297.436 297.771 297.696 297.636 297.705 297.815 297.894 297.957 298.012 298.046 298.091 298.173 298.331 298.552 298.776 298.999 299.25 299.47 299.632 299.794 299.908 299.937 299.968 300.104 300.214 300.286 300.344 300.356 300.372 300.477 300.626 300.784 300.848 300.822 300.749 300.738 300.756 300.768 300.746 300.614 300.423 300.352 300.124 301.546 303.045 302.237 300.471 299.335 298.388 299.439 301.96 300.89 300.988 300.489 299.619 298.161 297.286 296.377 295.655 296.216 296.91 298.522 299.662 300.05 300.263 301.007 301.163 300.786 299.809 299.539 299.58 299.905 300.1 300.117 300.109 300.185 300.198 300.215 300.307 300.449 300.446 300.387 300.366 300.427 300.443 300.42 300.412 300.457 300.48 300.469 300.464 300.452 300.306 300.166 300.187 300.383 300.441 300.487 300.608 300.687 300.704 300.851 300.952 300.583 299.752 298.539 298.013 298.491 298.737 299.389 299.41 299.195 299.537 299.478 298.91 297.624 297.224 297.351 297.182 299.088 299.907 300.002 299.923 300.079 300.19 300.226 300.281 300.391 300.583 300.718 300.72 300.732 300.845 300.877 300.842 300.8 300.743 300.703 300.671 300.607 300.626 300.63 300.548 300.471 300.501 300.469 300.415 300.437 300.441 300.415 300.395 300.36 300.303 300.211 300.062 299.897 299.8 299.67 299.525 299.393 299.242 299.102 298.983 298.832 298.743 298.725 298.704 298.68 298.765 298.83 298.832 298.815 298.798 298.782 298.76 298.706 298.657 298.602 298.513 298.445 298.468 298.466 298.443 298.41 298.329 298.244 298.201 298.167 298.122 298.114 298.108 298.066 298.086 298.143 298.212 298.325 298.445 298.496 298.471 298.391 298.31 298.204 298.062 297.905 297.794 297.69 297.589 297.484 297.4 297.332 297.257 297.155 297.019 296.859 296.642 296.382 296.216 296.119 296.072 295.97 295.931 295.968 296.055 296.218 296.459 296.603 296.71 296.899 296.803 296.605 296.666 296.851 296.536 296.403 296.362 295.454 293.553 294.179 297.807 300.761 302.595 302.843 301.841 300.586 301.446 302.295 302.462 302.366 302.14 301.346 300.454 300.246 299.732 299.18 298.824 297.638 297.228 297.274 297.16 297.044 297.14 297.278 297.373 297.446 297.508 297.564 297.65 297.775 297.921 298.105 298.296 298.532 298.836 299.097 299.291 299.49 299.648 299.74 299.841 300.016 300.108 300.163 300.255 300.406 300.531 300.591 300.603 300.643 300.717 300.743 300.734 300.414 300.522 300.605 300.623 300.387 300.07 300.04 300.06 301.278 301.964 301.905 301.744 300.929 300.733 302.311 302.121 301.707 301.205 300.534 300.533 300.235 297.76 297.025 296.443 297.591 298.284 298.969 300.062 299.191 299.598 301.453 302.706 302.436 300.88 299.932 299.601 299.733 299.953 300.023 300.04 300.12 300.143 300.139 300.183 300.323 300.389 300.389 300.401 300.491 300.54 300.521 300.47 300.422 300.414 300.417 300.415 300.404 300.246 300.012 299.917 300.085 300.081 300.017 300.096 300.268 300.394 300.591 300.646 300.077 298.783 298.377 299.2 299.081 298.667 299.353 299.363 299.178 299.439 299.677 299.656 299.414 298.609 298.384 297.217 299.221 300.073 300.364 300.388 300.392 300.309 300.327 300.478 300.592 300.658 300.74 300.748 300.709 300.767 300.807 300.787 300.732 300.687 300.672 300.666 300.619 300.63 300.656 300.621 300.545 300.522 300.475 300.443 300.489 300.477 300.429 300.412 300.419 300.411 300.384 300.323 300.24 300.198 300.145 300.086 300.036 299.958 299.89 299.827 299.703 299.583 299.527 299.474 299.396 299.42 299.47 299.495 299.497 299.482 299.462 299.441 299.402 299.387 299.39 299.378 299.374 299.398 299.385 299.35 299.324 299.28 299.229 299.191 299.131 299.074 299.071 299.1 299.116 299.14 299.183 299.235 299.313 299.381 299.426 299.449 299.431 299.384 299.305 299.181 298.998 298.829 298.685 298.55 298.405 298.293 298.202 298.111 298.01 297.913 297.792 297.649 297.495 297.363 297.284 297.248 297.188 297.167 297.199 297.195 297.198 297.361 297.445 297.464 297.6 297.545 297.351 297.381 297.496 297.059 296.942 297.01 295.777 294.094 293.667 297.504 301.761 303.634 304.203 303.965 302.944 301.038 300.351 299.27 299.204 299.651 299.175 298.488 298.258 297.942 297.779 297.524 297.231 297.021 296.873 296.686 296.538 296.613 296.74 296.848 296.956 297.021 297.083 297.19 297.33 297.456 297.588 297.717 297.906 298.216 298.506 298.729 298.937 299.136 299.312 299.5 299.713 299.858 300.025 300.233 300.378 300.276 300.104 300.017 300.123 300.227 300.247 300.282 299.851 299.986 300.055 300.121 299.569 299.086 299.694 300.639 301.138 301.044 301.965 301.577 301.827 302.345 302.063 301.61 300.607 301.45 301.282 301.108 301.577 299.492 298.476 298.141 298.745 299.375 298.783 298.648 298.236 299.375 301.259 302.707 302.644 301.86 300.537 299.587 299.458 299.663 299.77 299.777 299.812 299.895 299.948 299.993 300.108 300.226 300.263 300.281 300.409 300.575 300.633 300.594 300.504 300.485 300.473 300.46 300.557 300.51 300.135 299.727 299.707 299.745 299.695 299.77 300.004 300.173 300.32 300.281 299.405 298.802 299.417 299.676 298.457 298.518 299.316 299.371 299.317 299.452 299.678 299.883 300.016 299.788 299.125 297.787 298.364 300.076 300.623 300.714 300.548 300.221 300.157 300.4 300.606 300.574 300.572 300.589 300.577 300.583 300.587 300.582 300.589 300.578 300.576 300.589 300.559 300.527 300.533 300.524 300.462 300.413 300.382 300.378 300.407 300.38 300.334 300.309 300.299 300.29 300.276 300.235 300.182 300.184 300.169 300.132 300.103 300.094 300.096 300.112 300.119 300.099 300.073 300.03 299.964 299.941 299.947 299.974 300.002 299.977 299.94 299.921 299.912 299.905 299.912 299.923 299.95 299.986 299.979 299.937 299.893 299.856 299.807 299.747 299.658 299.575 299.519 299.498 299.52 299.549 299.565 299.595 299.65 299.666 299.663 299.665 299.648 299.6 299.529 299.414 299.218 299.019 298.86 298.725 298.595 298.512 298.455 298.396 298.315 298.25 298.181 298.118 298.064 297.973 297.899 297.862 297.796 297.761 297.807 297.808 297.727 297.788 297.807 297.744 297.808 297.863 297.803 297.879 298.018 297.691 297.6 297.689 296.787 295.466 294.82 297.818 299.783 301.352 304.013 305.117 303.176 299.46 297.294 296.473 297.088 297.121 297.156 297.443 297.851 297.395 297.257 297.18 296.937 296.678 296.436 296.229 296.142 296.224 296.31 296.382 296.491 296.554 296.602 296.681 296.787 296.872 296.948 297.005 297.099 297.329 297.585 297.816 298.037 298.269 298.536 298.838 299.147 299.417 299.699 299.887 299.724 299.225 298.566 298.486 299.262 299.263 299.12 299.143 299.386 299.089 299.09 299.305 298.879 300.118 300.2 301.086 301.107 301.301 301.768 302.587 303.293 303.874 302.665 301.219 301.031 302.666 302.614 302.245 302.428 301.948 302.691 302.594 301.76 299.457 296.851 296.036 296.858 297.678 299.984 301.234 301.75 301.124 300.403 299.123 298.771 298.963 299.166 299.258 299.265 299.339 299.431 299.514 299.663 299.845 299.908 299.913 300.057 300.329 300.565 300.717 300.753 300.742 300.715 300.698 300.858 300.957 300.216 299.595 299.375 299.495 299.525 299.601 299.795 299.922 300.028 300.008 299.786 299.92 300.156 300.09 299.071 299.442 299.38 299.32 299.417 299.575 299.736 299.885 299.962 299.856 299.613 299.156 299.76 300.491 300.914 300.962 300.637 299.959 299.811 300.07 300.462 300.483 300.449 300.423 300.391 300.381 300.369 300.369 300.41 300.4 300.36 300.344 300.321 300.252 300.228 300.238 300.227 300.211 300.193 300.164 300.135 300.128 300.121 300.106 300.071 300.054 300.041 300.0 299.949 299.947 299.919 299.852 299.81 299.841 299.863 299.881 299.928 299.973 299.984 299.972 299.962 299.954 299.941 299.949 299.975 299.967 299.958 299.976 299.998 299.988 299.978 299.978 299.982 299.987 299.969 299.922 299.852 299.792 299.729 299.658 299.588 299.537 299.482 299.451 299.488 299.523 299.529 299.557 299.621 299.64 299.64 299.643 299.622 299.561 299.475 299.355 299.162 298.96 298.801 298.682 298.575 298.491 298.436 298.381 298.312 298.263 298.205 298.153 298.146 298.115 298.08 298.086 298.062 298.008 298.038 298.044 297.916 297.898 297.906 297.844 297.84 297.927 297.95 298.032 298.192 298.178 298.285 298.517 298.38 298.276 298.951 298.14 298.433 298.563 300.823 302.244 301.334 298.816 296.229 295.371 295.501 295.317 295.301 296.428 297.196 297.08 296.875 296.768 296.505 296.184 295.981 295.867 295.82 295.842 295.855 295.881 295.973 296.03 296.064 296.107 296.15 296.17 296.171 296.15 296.152 296.27 296.464 296.693 296.951 297.273 297.722 298.241 298.739 299.058 299.249 299.241 298.818 297.835 297.622 298.889 299.438 298.878 298.519 298.7 300.897 299.728 298.701 298.731 299.652 300.827 300.886 300.507 300.741 300.906 301.54 302.156 303.45 304.643 303.777 302.721 301.699 302.647 302.105 302.357 302.66 304.449 305.923 304.98 303.449 298.958 294.724 294.314 295.518 296.864 298.96 300.133 300.577 300.372 299.764 298.834 298.11 298.17 298.4 298.618 298.632 298.605 298.684 298.807 298.999 299.215 299.321 299.372 299.496 299.687 300.01 300.421 300.716 300.772 300.811 300.806 300.88 300.835 299.926 299.46 299.188 299.213 299.233 299.319 299.456 299.58 299.754 299.867 299.982 300.405 300.501 299.93 299.826 299.798 299.655 299.49 299.545 299.662 299.782 299.915 299.968 299.906 299.907 299.97 300.246 300.762 301.07 301.105 300.617 299.175 299.273 299.721 300.168 300.26 300.263 300.229 300.192 300.202 300.185 300.144 300.132 300.113 300.049 300.004 299.995 299.952 299.926 299.926 299.918 299.911 299.901 299.863 299.807 299.8 299.807 299.804 299.784 299.77 299.763 299.743 299.704 299.674 299.628 299.549 299.493 299.528 299.566 299.575 299.575 299.591 299.6 299.611 299.641 299.67 299.69 299.71 299.728 299.74 299.754 299.768 299.767 299.757 299.755 299.76 299.752 299.723 299.683 299.626 299.546 299.476 299.405 299.331 299.273 299.246 299.209 299.188 299.225 299.258 299.268 299.287 299.337 299.393 299.462 299.53 299.554 299.518 299.444 299.336 299.182 298.999 298.825 298.684 298.553 298.432 298.346 298.272 298.188 298.116 298.015 297.926 297.943 297.987 298.002 298.052 298.107 298.061 298.046 298.028 297.917 297.896 297.942 297.954 298.005 298.172 298.218 298.144 298.007 298.065 298.608 298.908 299.022 300.47 301.314 300.07 298.515 297.425 298.612 299.607 299.274 298.318 297.216 296.416 295.944 295.253 296.103 296.438 296.748 296.648 296.506 296.31 295.971 295.744 295.647 295.554 295.433 295.353 295.3 295.294 295.351 295.378 295.387 295.397 295.41 295.402 295.35 295.261 295.207 295.293 295.484 295.758 296.137 296.635 297.291 298.019 298.653 298.954 299.033 298.675 298.06 297.62 298.293 299.344 299.935 300.057 299.838 299.746 301.656 300.139 299.571 299.702 300.347 300.771 300.57 300.103 300.505 300.622 301.53 302.749 303.568 304.803 304.829 303.908 303.046 302.098 301.889 301.473 302.937 305.285 305.906 305.633 303.254 299.926 295.753 294.487 294.913 296.398 298.213 299.36 299.74 299.249 299.13 298.623 297.911 297.605 297.679 297.884 297.908 297.821 297.882 298.027 298.2 298.372 298.53 298.706 298.854 298.899 299.222 299.841 300.353 300.398 300.524 300.336 300.629 300.001 299.386 299.133 298.925 298.78 298.771 298.897 299.01 299.179 299.455 299.661 299.982 300.649 300.816 300.056 299.613 299.93 300.182 299.678 299.982 299.716 299.639 299.814 300.022 300.029 300.109 300.22 300.335 300.643 300.819 300.564 299.836 298.996 299.14 299.543 299.884 299.96 299.984 299.982 299.948 299.937 299.901 299.818 299.75 299.734 299.693 299.657 299.662 299.657 299.647 299.63 299.581 299.548 299.543 299.53 299.499 299.469 299.438 299.426 299.439 299.416 299.383 299.37 299.354 299.306 299.269 299.222 299.158 299.163 299.224 299.278 299.288 299.283 299.289 299.295 299.291 299.307 299.352 299.402 299.426 299.439 299.444 299.426 299.396 299.389 299.393 299.402 299.412 299.392 299.35 299.293 299.22 299.145 299.068 298.981 298.884 298.819 298.771 298.745 298.763 298.803 298.847 298.895 298.94 299.004 299.107 299.208 299.278 299.305 299.286 299.236 299.17 299.05 298.89 298.727 298.552 298.387 298.262 298.15 298.005 297.875 297.726 297.585 297.565 297.627 297.646 297.69 297.793 297.816 297.857 297.941 298.014 298.058 298.094 298.094 298.185 298.43 298.437 298.079 297.656 297.254 297.283 297.732 298.555 299.213 300.402 300.376 298.091 296.867 297.481 297.677 297.537 297.651 297.297 296.546 296.557 296.514 296.53 296.588 296.457 296.217 296.002 295.772 295.512 295.399 295.305 295.174 295.021 294.892 294.782 294.718 294.694 294.658 294.623 294.589 294.569 294.565 294.512 294.414 294.369 294.543 294.848 295.245 295.805 296.498 297.295 298.132 298.877 299.227 299.096 298.724 298.297 298.794 298.802 299.485 300.058 300.76 301.088 301.595 301.441 300.29 300.44 300.742 300.58 299.841 300.037 299.934 299.799 299.834 300.596 302.861 303.534 303.941 304.944 304.084 302.749 301.015 300.567 300.649 302.074 303.088 305.023 304.725 304.599 301.185 297.808 295.631 295.202 295.908 297.927 298.373 298.201 297.708 297.393 297.448 297.435 296.877 296.887 297.104 297.211 297.162 297.216 297.331 297.473 297.657 297.866 298.116 298.338 298.413 298.781 299.475 299.953 299.845 299.271 299.933 300.45 299.278 298.699 298.454 298.371 298.159 298.148 298.278 298.361 298.583 298.865 298.989 299.479 300.616 301.13 299.971 299.357 299.875 300.305 300.11 300.512 299.904 299.409 299.524 299.88 299.912 299.968 300.068 300.114 300.294 300.388 300.512 299.678 299.352 299.354 299.556 299.743 299.727 299.717 299.729 299.676 299.604 299.556 299.496 299.426 299.399 299.363 299.318 299.289 299.274 299.27 299.273 299.254 299.23 299.217 299.196 299.168 299.139 299.094 299.06 299.055 299.021 298.981 298.97 298.959 298.902 298.864 298.836 298.777 298.756 298.805 298.875 298.913 298.917 298.928 298.944 298.94 298.935 298.977 299.037 299.073 299.077 299.056 299.003 298.941 298.93 298.919 298.912 298.929 298.926 298.887 298.831 298.753 298.653 298.56 298.469 298.36 298.264 298.191 298.144 298.143 298.197 298.285 298.382 298.461 298.534 298.634 298.739 298.848 298.949 298.996 299.008 299.02 298.986 298.896 298.784 298.627 298.434 298.272 298.112 297.902 297.734 297.566 297.361 297.173 297.135 297.128 297.163 297.285 297.435 297.637 297.901 298.189 298.341 298.369 298.305 298.317 298.444 298.278 298.143 296.778 296.229 296.222 296.504 296.903 297.47 297.94 298.268 297.496 296.444 295.938 296.044 295.918 296.105 296.156 296.203 296.27 296.441 296.506 296.359 296.048 295.8 295.589 295.364 295.12 294.975 294.867 294.788 294.723 294.572 294.396 294.251 294.128 294.024 293.952 293.882 293.807 293.801 293.785 293.744 293.793 294.078 294.511 295.058 295.806 296.657 297.574 298.575 299.588 299.859 299.644 298.934 299.111 298.762 298.909 299.622 301.084 301.7 302.305 302.0 300.648 300.663 300.63 301.219 300.309 298.815 298.285 298.632 298.081 298.315 299.917 300.708 301.576 303.596 303.678 302.505 301.255 300.271 298.792 299.29 300.733 302.765 303.856 305.064 305.977 304.348 300.066 297.072 296.152 296.967 298.791 298.326 297.138 296.383 296.101 296.065 295.863 295.806 295.916 296.31 296.584 296.667 296.72 296.768 296.994 297.36 297.625 297.837 298.106 298.359 298.786 299.356 299.59 299.224 298.419 300.322 300.619 298.752 298.202 297.94 297.914 297.685 297.609 297.645 297.7 297.992 298.185 298.092 298.588 300.166 300.889 300.147 299.477 299.667 299.801 300.507 301.142 299.957 299.055 299.198 299.727 299.8 299.821 299.917 299.994 300.08 300.081 299.946 299.2 299.456 299.396 299.477 299.562 299.498 299.443 299.429 299.366 299.282 299.251 299.226 299.16 299.106 299.057 299.015 298.983 298.94 298.912 298.916 298.937 298.939 298.916 298.861 298.804 298.793 298.765 298.715 298.676 298.648 298.617 298.595 298.565 298.51 298.466 298.431 298.391 298.381 298.399 298.431 298.464 298.478 298.49 298.528 298.589 298.62 298.664 298.722 298.762 298.752 298.697 298.599 298.484 298.433 298.398 298.373 298.379 298.366 298.321 298.268 298.192 298.087 297.999 297.923 297.824 297.72 297.621 297.538 297.5 297.519 297.568 297.641 297.739 297.843 297.961 298.094 298.26 298.409 298.492 298.535 298.582 298.615 298.627 298.631 298.58 298.416 298.254 298.092 297.894 297.761 297.624 297.387 297.041 296.87 296.84 296.885 297.009 297.222 297.447 297.676 297.936 298.233 298.467 298.588 298.622 298.39 298.037 297.171 296.53 296.196 296.154 296.262 296.31 296.385 296.475 296.371 295.951 295.56 295.217 295.214 295.384 295.612 295.853 296.096 296.309 296.357 296.205 295.975 295.717 295.532 295.345 295.113 294.849 294.696 294.621 294.589 294.52 294.312 294.099 293.931 293.756 293.579 293.452 293.348 293.237 293.228 293.266 293.322 293.48 293.813 294.299 294.957 295.877 296.808 297.867 299.141 300.238 300.723 301.024 300.324 299.506 299.417 299.935 300.831 301.532 301.552 301.426 301.489 300.244 299.981 299.69 299.385 298.975 297.794 297.094 297.463 297.591 297.203 295.937 298.357 300.251 300.793 302.045 300.682 299.114 297.884 297.109 297.576 298.8 299.871 301.402 303.166 305.661 304.893 301.494 298.681 296.701 298.175 299.347 298.937 297.621 296.309 295.964 295.925 295.491 295.112 295.054 295.35 295.732 296.025 296.237 296.395 296.808 297.354 297.682 297.882 298.267 298.699 299.131 299.525 299.679 299.294 299.05 301.726 301.406 298.924 298.126 297.797 297.806 297.597 297.445 297.372 297.433 297.753 297.832 297.553 297.908 299.466 300.329 300.63 299.824 300.333 298.952 298.689 299.172 298.965 298.472 298.77 299.564 299.778 299.808 299.898 300.001 299.945 299.849 299.445 299.257 298.755 299.262 299.263 299.294 299.237 299.163 299.123 299.078 299.018 298.98 298.937 298.866 298.823 298.792 298.768 298.753 298.711 298.665 298.638 298.617 298.588 298.554 298.502 298.439 298.433 298.415 298.358 298.287 298.264 298.243 298.2 298.137 298.101 298.066 298.01 297.956 297.967 297.978 297.979 298.005 298.023 298.023 298.06 298.157 298.222 298.274 298.341 298.408 298.414 298.358 298.24 298.087 298.012 297.971 297.943 297.92 297.87 297.808 297.75 297.676 297.586 297.506 297.426 297.321 297.213 297.098 296.984 296.901 296.854 296.818 296.819 296.886 296.974 297.085 297.231 297.411 297.557 297.661 297.745 297.841 297.955 298.076 298.193 298.256 298.184 298.077 297.967 297.856 297.803 297.755 297.618 297.342 297.152 297.112 297.149 297.253 297.393 297.464 297.462 297.518 297.893 298.282 298.496 298.422 298.325 297.848 296.842 296.321 296.486 296.444 296.406 296.349 296.177 296.041 295.966 295.9 295.849 295.848 295.877 295.93 296.048 296.189 296.308 296.316 296.155 295.915 295.67 295.415 295.249 295.111 294.961 294.8 294.69 294.589 294.477 294.307 294.098 293.909 293.733 293.498 293.271 293.104 292.968 292.853 292.84 292.912 293.051 293.291 293.613 294.083 294.769 295.733 296.639 297.752 299.198 300.284 302.351 301.706 300.95 299.974 299.806 300.249 300.476 300.173 299.718 300.198 300.402 299.675 299.357 299.076 298.515 297.926 297.073 296.457 296.06 296.126 296.923 296.275 297.447 298.299 299.152 299.553 298.722 297.024 296.028 295.618 296.156 297.269 298.44 299.944 302.092 303.588 303.052 301.081 299.107 298.043 297.86 298.094 298.85 297.618 296.605 296.284 296.471 296.02 295.534 295.134 294.933 294.959 295.282 295.733 296.229 296.914 297.507 297.884 298.164 298.671 299.193 299.683 300.147 300.377 300.321 301.619 302.893 301.632 298.96 298.047 297.621 297.626 297.548 297.521 297.548 297.593 297.776 297.861 297.76 298.099 299.054 299.929 300.479 299.846 299.667 297.844 297.286 297.691 297.969 297.696 298.222 299.171 299.516 299.63 299.79 299.931 299.767 299.42 298.657 298.747 298.99 299.091 299.063 299.049 299.021 298.97 298.926 298.883 298.831 298.777 298.715 298.666 298.66 298.632 298.581 298.538 298.508 298.477 298.442 298.376 298.295 298.241 298.194 298.128 298.089 298.067 298.03 297.968 297.929 297.896 297.843 297.764 297.733 297.707 297.643 297.56 297.562 297.576 297.577 297.595 297.608 297.589 297.588 297.635 297.663 297.701 297.775 297.872 297.922 297.913 297.843 297.736 297.693 297.67 297.632 297.562 297.467 297.378 297.294 297.188 297.07 296.971 296.871 296.753 296.658 296.544 296.413 296.294 296.196 296.116 296.095 296.142 296.18 296.243 296.356 296.503 296.621 296.739 296.87 297.031 297.217 297.415 297.605 297.755 297.791 297.771 297.73 297.685 297.655 297.687 297.762 297.824 297.812 297.831 297.882 297.909 297.82 297.629 297.42 297.437 297.849 298.144 297.747 297.307 297.057 296.922 295.664 296.179 296.74 296.71 296.713 296.793 296.694 296.542 296.43 296.389 296.386 296.395 296.399 296.377 296.328 296.261 296.167 296.024 295.855 295.674 295.482 295.263 295.087 294.941 294.805 294.681 294.566 294.422 294.253 294.074 293.919 293.727 293.486 293.193 292.979 292.804 292.645 292.531 292.517 292.572 292.709 292.978 293.282 293.732 294.416 295.347 296.137 297.196 298.526 299.64 301.618 301.714 301.949 300.583 300.301 299.875 299.786 299.545 297.269 298.903 299.397 298.371 298.343 298.109 297.372 296.777 296.205 295.191 294.65 294.914 295.453 295.913 296.248 296.676 297.11 297.343 296.866 295.281 293.462 292.968 294.556 295.101 296.243 298.199 299.726 300.798 300.449 299.204 298.439 297.148 297.205 297.563 298.103 297.17 297.106 297.157 297.621 297.313 296.571 296.181 295.862 295.378 295.213 295.456 296.094 297.016 297.629 298.047 298.407 298.903 299.404 300.008 300.68 301.161 301.86 303.308 303.253 301.316 299.575 298.058 297.72 297.591 297.546 297.637 297.784 297.772 297.764 297.936 298.157 297.73 299.588 300.673 300.252 299.742 298.708 297.348 296.795 297.388 296.881 297.26 297.829 298.71 299.052 299.236 299.481 299.665 299.466 298.66 298.428 298.459 298.699 298.81 298.77 298.722 298.739 298.747 298.734 298.699 298.668 298.645 298.614 298.587 298.585 298.554 298.496 298.442 298.398 298.358 298.327 298.277 298.184 298.102 298.032 297.94 297.853 297.803 297.773 297.728 297.663 297.61 297.554 297.455 297.368 297.317 297.262 297.179 297.152 297.157 297.155 297.145 297.144 297.134 297.124 297.12 297.103 297.105 297.141 297.224 297.32 297.387 297.402 297.386 297.395 297.381 297.316 297.177 297.024 296.917 296.837 296.723 296.561 296.418 296.286 296.155 296.061 295.949 295.809 295.65 295.509 295.406 295.378 295.426 295.462 295.517 295.605 295.693 295.752 295.842 295.95 296.082 296.271 296.499 296.738 296.984 297.163 297.254 297.305 297.35 297.36 297.422 297.618 297.941 298.14 298.239 298.229 297.903 297.345 297.044 296.924 297.473 298.231 297.894 296.594 295.433 295.758 296.285 296.518 296.807 296.958 297.041 297.168 297.328 297.262 297.139 297.002 296.797 296.535 296.391 296.375 296.398 296.269 296.086 295.925 295.808 295.689 295.564 295.443 295.273 295.046 294.824 294.618 294.412 294.243 294.095 293.951 293.808 293.67 293.478 293.23 292.964 292.782 292.592 292.386 292.231 292.191 292.203 292.293 292.533 292.833 293.282 293.941 294.772 295.409 296.332 297.603 298.496 301.427 301.44 301.04 300.57 299.482 298.926 298.861 298.227 297.4 299.596 298.754 297.294 296.814 296.48 296.166 295.549 294.88 294.536 292.825 293.132 293.738 294.336 294.774 295.002 294.903 294.67 294.776 293.749 292.713 291.842 292.386 293.689 294.858 296.0 297.403 298.126 297.851 297.417 296.727 296.764 297.0 297.567 298.063 296.797 296.71 297.387 298.421 298.605 298.375 298.03 297.563 296.625 296.028 295.683 295.933 296.786 297.417 297.884 298.272 298.701 299.239 299.979 300.699 301.077 302.42 302.811 302.567 301.847 300.948 299.171 298.268 298.184 297.964 297.845 297.841 297.741 297.673 297.95 298.524 298.636 300.064 300.04 299.287 298.847 298.162 297.307 296.792 294.811 295.969 296.898 297.493 298.26 298.567 298.786 299.038 299.214 299.038 298.748 298.291 298.217 298.318 298.382 298.337 298.275 298.28 298.293 298.304 298.305 298.334 298.383 298.413 298.403 298.386 298.377 298.375 298.373 298.321 298.239 298.169 298.117 298.044 297.959 297.881 297.803 297.716 297.639 297.585 297.534 297.457 297.388 297.323 297.2 297.045 296.952 296.89 296.804 296.733 296.715 296.705 296.675 296.659 296.656 296.642 296.614 296.588 296.566 296.549 296.58 296.702 296.823 296.9 296.945 296.984 296.963 296.856 296.639 296.424 296.326 296.309 296.278 296.124 295.952 295.79 295.633 295.505 295.384 295.245 295.076 294.858 294.644 294.515 294.521 294.586 294.661 294.739 294.785 294.792 294.812 294.828 294.854 294.982 295.173 295.419 295.761 296.119 296.367 296.572 296.79 296.921 297.064 297.368 297.853 298.119 297.999 297.532 296.545 294.687 293.872 293.758 294.352 296.307 297.73 297.206 295.882 296.036 296.533 296.785 297.016 297.153 297.328 297.577 297.695 297.698 297.616 297.573 297.361 296.884 296.523 296.39 296.382 296.233 296.02 295.854 295.772 295.644 295.501 295.374 295.205 294.961 294.747 294.556 294.323 294.111 293.943 293.772 293.558 293.396 293.248 293.078 292.868 292.674 292.466 292.24 292.035 291.936 291.904 291.949 292.124 292.391 292.807 293.413 294.169 294.748 295.55 296.674 297.572 299.982 299.927 299.772 298.986 298.139 297.508 297.214 297.012 296.991 297.249 297.212 295.671 295.253 294.727 294.393 294.092 293.3 293.113 291.415 291.688 292.179 292.427 292.5 292.712 292.18 292.057 292.077 291.281 290.937 290.976 291.409 292.39 293.524 294.35 294.929 295.178 295.686 295.469 295.976 296.319 296.85 298.143 297.942 296.855 297.187 298.041 298.546 298.602 298.891 298.972 298.998 297.982 296.743 296.39 296.132 296.452 296.94 297.409 297.83 298.386 299.09 299.852 300.359 300.934 301.575 301.676 301.881 301.88 301.39 299.7 299.026 298.392 298.417 298.161 297.973 297.72 297.514 297.722 297.916 298.35 298.852 298.183 297.143 296.889 296.577 296.23 295.248 293.242 294.76 296.132 296.874 297.385 297.789 298.16 298.471 298.644 298.574 298.382 298.049 297.813 297.741 297.83 297.826 297.761 297.704 297.668 297.662 297.696 297.775 297.883 297.978 298.023 298.029 298.036 298.047 298.055 298.03 297.971 297.895 297.826 297.774 297.71 297.638 297.571 297.506 297.418 297.333 297.28 297.227 297.158 297.083 296.972 296.829 296.72 296.632 296.52 296.421 296.383 296.361 296.313 296.27 296.242 296.202 296.15 296.135 296.126 296.098 296.085 296.177 296.288 296.377 296.446 296.477 296.418 296.243 295.938 295.624 295.499 295.601 295.672 295.567 295.401 295.236 295.076 294.935 294.827 294.726 294.596 294.347 294.031 293.768 293.656 293.681 293.724 293.774 293.801 293.773 293.714 293.639 293.585 293.63 293.738 293.927 294.278 294.76 295.162 295.546 295.965 296.305 296.646 297.143 297.73 297.721 297.112 295.207 292.913 290.518 289.946 290.78 293.154 295.528 297.049 298.149 297.951 296.932 296.943 296.988 297.133 297.237 297.4 297.651 297.815 297.757 297.718 297.754 297.71 297.275 296.467 296.403 296.422 296.241 296.05 295.852 295.705 295.554 295.409 295.273 295.098 294.901 294.755 294.617 294.391 294.149 293.933 293.697 293.423 293.274 293.176 293.05 292.821 292.593 292.402 292.21 291.959 291.763 291.662 291.65 291.753 291.944 292.251 292.731 293.501 294.146 294.894 295.852 296.445 298.475 298.327 297.65 297.354 296.422 295.966 295.847 295.698 295.494 295.571 296.022 294.602 294.128 293.463 292.877 292.287 292.154 291.184 289.922 290.147 290.54 290.588 290.038 289.693 288.155 288.584 288.655 289.294 289.464 289.63 290.093 291.052 292.171 292.69 292.863 293.184 293.868 294.28 295.021 295.703 297.094 297.311 296.611 296.638 297.026 298.012 298.503 298.789 299.09 299.751 298.916 298.687 297.766 297.014 296.574 296.3 296.519 296.906 297.362 298.104 298.939 299.635 299.954 300.607 300.715 300.495 300.691 301.132 300.58 299.055 298.711 298.376 298.008 298.147 298.305 297.897 297.304 296.856 297.198 298.316 297.149 296.178 295.064 294.768 294.825 294.688 293.576 292.562 293.481 294.776 295.488 295.957 296.565 297.222 297.74 298.032 298.098 297.957 297.62 297.184 297.034 297.106 297.146 297.108 297.041 296.979 296.953 296.989 297.084 297.201 297.314 297.412 297.478 297.5 297.479 297.432 297.442 297.47 297.467 297.418 297.384 297.343 297.272 297.184 297.13 297.056 296.965 296.893 296.851 296.785 296.704 296.616 296.519 296.413 296.297 296.17 296.08 296.045 296.023 295.977 295.913 295.868 295.829 295.789 295.773 295.771 295.757 295.725 295.722 295.755 295.805 295.859 295.872 295.795 295.599 295.266 294.87 294.703 294.881 294.95 294.869 294.734 294.595 294.457 294.336 294.244 294.165 294.071 293.861 293.559 293.254 293.041 292.951 292.907 292.902 292.919 292.872 292.762 292.645 292.561 292.528 292.542 292.667 292.988 293.503 294.011 294.56 295.172 295.779 296.386 297.018 297.372 296.586 294.491 291.759 289.471 288.312 289.16 291.819 293.648 295.451 296.865 297.715 298.736 297.638 296.964 297.022 297.155 297.297 297.397 297.561 297.738 297.765 297.185 297.178 297.054 296.727 296.331 296.158 296.114 296.074 295.962 295.804 295.642 295.511 295.387 295.249 295.074 294.907 294.761 294.599 294.377 294.163 293.959 293.743 293.528 293.394 293.261 293.086 292.831 292.613 292.451 292.282 291.987 291.699 291.504 291.397 291.415 291.542 291.72 292.008 292.658 293.324 294.077 294.968 295.535 297.526 296.927 295.858 295.188 294.966 294.709 294.687 294.73 294.668 294.693 295.053 293.72 293.434 292.628 291.354 290.23 289.824 288.129 287.68 287.999 288.327 288.349 288.167 286.832 286.255 286.449 286.988 287.697 288.123 288.426 288.52 289.324 290.692 291.22 291.41 291.816 292.242 293.177 293.895 294.855 295.819 295.643 294.929 295.286 295.969 296.869 297.506 298.439 299.237 299.376 299.556 298.945 298.813 297.079 296.384 296.003 296.104 296.407 296.84 297.684 298.543 300.043 300.392 300.214 299.689 299.354 299.225 299.737 299.361 298.475 297.923 297.571 297.374 297.404 297.992 297.498 296.294 295.215 296.542 296.924 295.292 293.928 292.787 292.314 292.38 292.528 291.716 291.836 293.083 294.172 294.017 294.056 294.219 295.692 296.598 297.073 297.209 297.178 297.021 296.669 296.456 296.272 296.186 296.143 296.131 296.107 296.076 296.107 296.256 296.41 296.511 296.564 296.613 296.631 296.606 296.557 296.584 296.643 296.676 296.651 296.645 296.645 296.612 296.539 296.494 296.44 296.353 296.242 296.17 296.102 296.021 295.935 295.848 295.732 295.597 295.471 295.407 295.398 295.417 295.44 295.432 295.421 295.421 295.415 295.387 295.375 295.379 295.371 295.323 295.296 295.297 295.3 295.269 295.191 295.034 294.76 294.47 294.354 294.326 294.303 294.191 294.062 293.927 293.788 293.663 293.549 293.436 293.329 293.204 293.019 292.799 292.599 292.446 292.332 292.254 292.192 292.051 291.872 291.722 291.624 291.544 291.537 291.664 291.989 292.544 293.182 293.927 294.77 295.662 296.372 296.767 296.393 294.613 291.274 288.874 287.467 287.92 289.836 293.222 294.603 295.719 296.49 297.018 297.273 297.164 296.846 296.88 297.089 297.306 297.328 297.398 297.352 296.953 296.53 296.34 296.199 295.995 295.811 295.723 295.753 295.774 295.73 295.649 295.55 295.438 295.302 295.144 294.975 294.821 294.659 294.486 294.329 294.208 294.053 293.874 293.696 293.528 293.339 293.15 292.953 292.752 292.559 292.361 292.063 291.757 291.493 291.282 291.202 291.293 291.386 291.481 291.81 292.322 292.984 293.82 294.448 296.688 296.208 294.475 293.78 293.748 293.719 293.85 294.09 294.087 294.017 293.948 292.858 292.604 291.825 290.264 288.276 286.915 286.193 285.894 286.189 286.22 286.214 285.963 285.409 285.407 285.748 286.226 286.746 286.985 287.339 287.574 288.379 289.236 290.535 290.423 291.137 291.867 292.591 293.086 293.702 293.539 293.003 293.148 293.726 294.618 295.699 296.471 297.479 298.407 298.766 298.4 298.706 297.979 296.522 295.813 295.487 295.664 296.016 296.466 296.964 298.075 299.157 298.989 298.558 298.481 298.335 298.527 298.874 298.579 297.58 297.443 296.711 296.697 296.612 296.608 295.623 294.492 293.823 294.163 294.667 292.922 291.312 289.841 289.025 289.431 289.662 289.114 288.903 289.973 291.498 292.259 292.604 292.842 294.012 294.658 295.244 295.375 295.462 296.128 296.319 296.102 295.738 295.341 295.132 295.08 295.058 295.005 295.027 295.302 295.589 295.742 295.729 295.671 295.611 295.552 295.512 295.51 295.528 295.546 295.541 295.525 295.528 295.545 295.544 295.499 295.431 295.335 295.215 295.131 295.075 295.016 294.95 294.868 294.747 294.596 294.439 294.351 294.343 294.403 294.51 294.59 294.632 294.678 294.713 294.708 294.733 294.808 294.898 294.935 294.957 294.97 294.937 294.848 294.767 294.651 294.456 294.209 294.053 293.928 293.792 293.613 293.441 293.258 293.076 292.913 292.757 292.592 292.451 292.36 292.271 292.156 292.041 291.935 291.831 291.715 291.563 291.319 291.104 290.946 290.835 290.731 290.747 290.92 291.258 291.868 292.649 293.578 294.566 295.386 295.74 295.737 294.538 290.911 287.987 286.431 286.765 288.956 291.52 293.757 294.903 295.63 295.975 296.191 296.383 296.546 296.569 296.604 296.722 296.651 296.577 296.572 296.447 296.08 295.778 295.634 295.599 295.519 295.451 295.427 295.42 295.355 295.291 295.239 295.166 295.045 294.919 294.807 294.706 294.592 294.458 294.336 294.268 294.199 294.045 293.852 293.672 293.499 293.332 293.204 293.076 292.852 292.617 292.413 292.184 291.909 291.615 291.316 291.101 291.129 291.177 291.182 291.216 291.429 291.849 292.51 293.259 294.892 295.118 294.284 293.269 293.194 293.201 293.117 293.054 293.012 292.961 292.895 292.016 291.768 290.83 289.244 286.843 285.69 285.053 285.072 284.367 284.481 284.565 285.175 285.321 285.576 285.333 285.451 286.265 286.245 286.346 286.562 287.603 288.411 289.574 290.243 290.444 291.23 291.79 291.916 291.651 290.82 290.691 291.199 291.538 292.846 294.226 295.679 296.357 296.476 296.443 296.086 296.336 295.926 295.471 294.934 294.773 295.03 295.464 295.912 296.188 296.998 297.176 297.337 297.03 296.659 297.162 297.697 298.045 297.831 297.016 296.56 296.092 295.486 295.409 294.987 294.063 292.565 291.543 291.561 291.047 289.914 288.198 285.415 284.677 286.14 287.115 286.705 286.08 286.59 287.797 288.998 289.791 290.348 291.009 291.799 292.68 292.924 293.08 294.903 295.683 295.704 295.42 294.969 294.49 294.262 294.141 294.025 294.008 294.339 294.738 294.993 295.027 294.943 294.804 294.652 294.566 294.526 294.492 294.484 294.492 294.414 294.338 294.34 294.388 294.328 294.212 294.101 294.011 293.936 293.876 293.824 293.77 293.696 293.586 293.433 293.244 293.093 293.033 293.054 293.158 293.283 293.373 293.461 293.549 293.622 293.719 293.878 294.071 294.268 294.422 294.528 294.556 294.499 294.423 294.322 294.175 293.97 293.784 293.588 293.389 293.172 292.962 292.736 292.517 292.292 292.078 291.86 291.669 291.514 291.416 291.323 291.239 291.174 291.122 291.039 290.895 290.666 290.471 290.301 290.149 290.032 290.053 290.203 290.504 291.184 292.132 293.201 294.146 294.006 294.308 293.572 290.56 287.221 285.861 285.968 287.583 289.698 292.173 293.904 294.532 294.991 295.179 295.268 295.386 295.633 295.785 295.86 295.925 296.006 295.991 295.917 295.729 295.404 295.194 295.125 295.114 295.039 295.008 295.005 294.958 294.839 294.768 294.706 294.584 294.425 294.344 294.31 294.274 294.183 294.076 293.988 293.94 293.863 293.731 293.594 293.493 293.386 293.267 293.164 293.038 292.834 292.651 292.501 292.291 292.021 291.726 291.394 291.043 290.968 290.984 290.98 290.9 290.888 291.007 291.356 292.081 292.573 293.661 293.759 293.311 292.991 292.908 292.828 292.011 291.838 291.68 291.968 290.861 290.661 289.906 288.249 286.827 285.604 284.952 284.776 284.005 284.018 284.076 284.912 285.473 285.822 286.028 286.085 285.48 285.905 285.075 285.756 287.436 288.128 288.685 289.348 289.804 290.307 290.236 289.501 289.08 288.463 288.802 289.696 290.311 291.428 292.947 294.268 295.019 294.343 294.199 293.822 294.348 294.606 294.27 293.561 293.522 293.746 294.233 294.664 295.271 295.335 295.453 295.239 295.502 295.451 295.639 295.924 296.9 296.545 295.838 295.452 294.523 293.049 291.888 290.776 289.746 288.948 288.576 288.785 288.611 286.613 283.538 280.898 281.364 284.003 285.433 284.921 283.809 283.791 284.437 285.424 286.625 287.464 288.124 288.759 289.344 289.778 290.145 292.172 294.02 294.613 294.792 294.707 294.29 293.9 293.655 293.474 293.357 293.548 293.843 294.071 294.177 294.207 294.128 293.969 293.842 293.767 293.683 293.633 293.623 293.503 293.354 293.293 293.326 293.247 293.101 292.976 292.891 292.791 292.692 292.597 292.496 292.377 292.262 292.125 291.957 291.782 291.681 291.651 291.708 291.85 291.971 292.077 292.178 292.294 292.427 292.604 292.824 293.129 293.391 293.608 293.771 293.873 293.882 293.841 293.77 293.648 293.469 293.253 293.046 292.831 292.61 292.374 292.134 291.85 291.587 291.351 291.144 290.923 290.735 290.561 290.401 290.263 290.213 290.183 290.114 289.961 289.766 289.552 289.367 289.294 289.341 289.472 289.767 290.554 291.636 292.719 292.471 293.494 292.478 289.688 286.264 284.841 284.928 286.157 288.064 290.15 292.122 293.648 293.998 293.998 293.957 293.957 293.974 294.029 294.131 294.234 294.343 294.534 294.276 294.741 295.128 294.981 294.749 294.54 294.366 294.265 294.277 294.321 294.326 294.273 294.238 294.167 294.007 293.824 293.73 293.66 293.56 293.45 293.369 293.312 293.279 293.255 293.227 293.213 293.209 293.142 293.032 292.922 292.809 292.7 292.61 292.499 292.263 292.008 291.761 291.46 291.029 290.833 290.782 290.765 290.685 290.581 290.469 290.456 290.909 291.395 292.288 293.385 293.099 292.543 292.006 291.757 291.091 290.931 290.647 290.524 289.602 289.431 288.894 287.819 286.769 285.633 285.43 284.997 284.301 283.871 284.242 284.55 284.785 285.4 285.615 285.935 285.361 285.845 285.083 285.148 286.805 287.156 287.416 287.859 287.979 288.563 287.595 286.028 285.696 286.028 287.095 288.165 289.331 290.166 291.664 292.567 292.306 292.316 292.301 291.674 291.566 291.276 291.264 291.003 290.827 290.79 291.199 292.095 292.852 293.347 294.17 294.557 294.578 293.917 294.808 294.768 295.016 294.16 292.433 290.188 287.554 284.77 282.451 280.842 280.508 281.324 282.289 282.854 282.921 280.816 277.6 275.862 278.127 281.641 282.804 281.993 281.119 281.482 281.802 282.202 283.515 284.791 285.595 286.146 286.497 286.717 287.112 288.77 291.327 292.601 293.415 293.905 293.932 293.698 293.516 293.35 293.125 293.105 293.197 293.261 293.259 293.314 293.321 293.237 293.134 293.071 292.976 292.886 292.856 292.791 292.672 292.586 292.557 292.455 292.302 292.158 292.04 291.91 291.791 291.667 291.501 291.302 291.165 291.037 290.875 290.665 290.528 290.455 290.462 290.56 290.648 290.699 290.738 290.839 290.984 291.177 291.425 291.806 292.126 292.402 292.647 292.888 293.02 293.096 293.148 293.167 293.054 292.881 292.706 292.503 292.275 292.034 291.782 291.466 291.176 290.946 290.75 290.517 290.275 290.025 289.756 289.482 289.342 289.269 289.204 289.09 288.9 288.682 288.523 288.551 288.691 288.87 289.221 290.067 291.005 291.473 292.138 291.763 289.692 285.56 283.57 283.194 284.429 286.409 288.251 290.139 291.606 292.927 293.103 292.77 292.601 292.555 292.512 292.36 292.307 292.456 292.884 293.201 292.327 293.807 294.535 294.486 294.154 293.79 293.482 293.415 293.509 293.586 293.614 293.606 293.566 293.468 293.308 293.144 293.008 292.86 292.709 292.64 292.608 292.582 292.572 292.607 292.631 292.648 292.653 292.611 292.549 292.5 292.467 292.43 292.372 292.264 292.066 291.889 291.7 291.413 290.945 290.678 290.564 290.506 290.414 290.282 290.061 289.793 289.848 290.333 290.834 292.401 292.323 291.969 291.256 289.819 289.787 289.876 289.601 289.542 288.464 288.313 287.936 287.293 286.402 286.26 285.864 285.185 284.651 284.352 284.266 284.535 284.803 285.221 285.606 285.775 285.038 284.951 284.995 286.137 286.18 286.281 286.436 285.885 285.705 285.629 284.303 283.699 283.803 284.737 286.034 287.517 288.429 290.296 291.406 290.336 290.385 289.291 287.718 286.899 287.167 287.294 287.909 287.902 287.945 287.911 287.774 288.303 289.332 291.089 292.442 293.297 293.744 293.523 292.526 292.24 290.755 287.652 283.154 278.452 274.739 271.117 267.618 266.835 268.258 270.712 273.047 274.555 274.912 273.411 269.987 269.664 274.48 278.218 278.922 277.742 278.1 279.388 279.63 279.715 281.093 282.608 283.267 283.651 284.137 284.131 284.332 285.513 287.815 289.725 291.124 292.161 292.697 292.82 292.977 293.102 292.964 292.809 292.76 292.711 292.563 292.489 292.462 292.401 292.321 292.294 292.244 292.167 292.107 292.066 291.979 291.872 291.777 291.656 291.506 291.354 291.221 291.098 291.004 290.89 290.707 290.463 290.313 290.191 290.034 289.795 289.638 289.562 289.556 289.582 289.584 289.569 289.563 289.647 289.782 289.952 290.176 290.497 290.767 290.993 291.216 291.5 291.738 291.953 292.168 292.375 292.431 292.39 292.306 292.166 291.95 291.724 291.473 291.155 290.845 290.597 290.365 290.091 289.802 289.511 289.191 288.86 288.631 288.468 288.33 288.199 288.011 287.793 287.681 287.822 288.101 288.364 288.749 289.463 289.962 290.523 290.713 289.204 285.764 283.172 282.008 282.353 284.109 286.339 288.097 289.37 289.978 291.062 291.459 290.723 290.967 291.195 291.24 291.136 291.128 291.353 291.66 291.87 291.713 293.101 293.799 293.783 293.359 292.902 292.528 292.501 292.653 292.746 292.78 292.792 292.72 292.588 292.444 292.341 292.233 292.112 292.024 292.018 291.996 291.946 291.917 291.946 291.952 291.945 291.967 291.999 292.009 292.016 292.018 291.967 291.898 291.828 291.755 291.66 291.477 291.173 290.719 290.444 290.293 290.202 290.073 289.893 289.634 289.302 289.139 289.431 290.032 290.595 290.936 291.468 290.395 289.339 288.672 288.636 288.115 288.243 286.666 286.558 286.919 287.507 286.745 286.27 285.68 285.237 284.509 284.15 284.377 284.813 285.284 285.983 286.286 285.541 285.349 285.314 285.679 285.813 285.879 285.973 285.831 285.12 285.196 284.411 282.874 282.39 282.884 284.427 285.588 286.761 288.128 288.599 289.625 288.98 286.904 284.43 283.189 283.258 283.973 284.858 285.261 286.221 286.645 285.693 284.878 284.514 285.624 287.266 289.538 291.394 292.643 292.258 289.801 286.645 281.823 275.956 270.371 262.059 258.914 257.602 257.074 257.412 258.695 261.003 263.193 265.685 266.774 266.091 264.772 265.808 270.541 274.465 275.219 274.843 276.433 277.997 277.964 278.027 279.519 280.938 281.192 281.438 281.97 282.071 282.2 282.825 284.708 286.762 288.507 289.711 290.323 290.592 291.123 291.798 292.114 292.063 292.054 292.046 291.906 291.769 291.703 291.63 291.528 291.506 291.516 291.501 291.45 291.396 291.3 291.165 291.023 290.897 290.769 290.633 290.506 290.4 290.306 290.163 289.956 289.701 289.532 289.378 289.185 288.931 288.791 288.718 288.674 288.606 288.537 288.509 288.517 288.574 288.676 288.808 288.976 289.185 289.374 289.563 289.771 290.035 290.288 290.541 290.831 291.161 291.403 291.535 291.602 291.608 291.531 291.397 291.199 290.919 290.604 290.319 290.011 289.659 289.296 288.964 288.617 288.279 287.995 287.745 287.522 287.346 287.153 286.971 286.943 287.173 287.57 287.855 288.149 288.426 288.465 288.956 288.603 286.254 283.548 281.664 281.421 282.098 283.7 285.645 287.077 288.016 288.388 288.818 288.904 289.12 289.216 289.203 289.166 289.836 289.927 290.026 289.967 289.671 290.938 292.297 292.901 293.016 292.586 292.028 291.616 291.531 291.666 291.787 291.862 291.913 291.863 291.749 291.645 291.595 291.538 291.474 291.442 291.432 291.381 291.321 291.305 291.329 291.329 291.352 291.447 291.534 291.55 291.534 291.494 291.397 291.299 291.24 291.217 291.149 291.012 290.807 290.511 290.254 290.059 289.928 289.76 289.485 289.16 288.878 288.735 288.811 289.168 289.801 290.069 290.3 290.114 288.523 286.988 286.669 286.891 286.471 285.366 284.837 285.431 286.786 287.159 286.209 285.593 285.186 284.508 284.259 284.584 285.603 286.245 286.411 286.343 285.253 284.896 285.102 285.342 285.494 285.691 285.805 285.717 285.688 285.022 284.046 282.38 282.333 282.38 283.989 285.251 286.428 287.814 287.54 286.562 284.884 282.653 280.949 280.64 281.25 282.381 283.411 284.321 285.058 284.943 283.997 281.684 280.766 280.909 282.524 285.737 288.74 290.573 288.375 283.551 276.612 268.921 260.468 256.62 253.961 252.795 253.298 254.096 254.85 255.663 256.971 258.419 260.426 261.872 262.298 262.087 263.482 266.704 271.301 272.854 273.733 275.516 276.622 276.626 276.943 278.686 279.863 279.793 279.779 280.332 280.58 280.599 280.981 282.364 284.191 286.07 287.173 287.3 286.6 287.886 289.099 289.973 290.276 290.548 290.805 290.894 290.86 290.858 290.825 290.7 290.598 290.571 290.557 290.534 290.525 290.491 290.421 290.332 290.232 290.102 289.949 289.806 289.68 289.549 289.374 289.168 288.932 288.728 288.501 288.249 287.988 287.889 287.845 287.797 287.706 287.65 287.641 287.616 287.545 287.542 287.647 287.776 287.883 287.955 288.06 288.212 288.417 288.69 288.982 289.314 289.685 290.025 290.261 290.459 290.626 290.784 290.821 290.734 290.527 290.237 289.955 289.634 289.276 288.872 288.505 288.123 287.757 287.405 287.117 286.856 286.637 286.411 286.279 286.37 286.713 287.138 287.272 287.3 287.199 286.488 286.31 285.182 283.224 281.186 280.014 280.238 281.82 283.092 284.468 285.566 286.36 287.049 287.373 287.509 287.572 287.685 287.815 287.757 287.894 288.011 288.091 288.238 288.307 289.34 290.728 291.655 292.144 291.988 291.493 291.032 290.826 290.893 290.999 291.082 291.132 291.117 291.065 291.008 290.969 290.922 290.871 290.833 290.803 290.78 290.79 290.847 290.884 290.885 290.916 291.011 291.058 291.039 291.015 290.996 290.904 290.762 290.625 290.526 290.464 290.434 290.421 290.311 290.076 289.841 289.672 289.459 289.087 288.67 288.399 288.368 288.383 288.49 288.809 289.123 289.309 288.977 287.514 286.584 285.07 284.816 285.075 284.0 284.142 284.571 285.245 285.773 285.222 285.097 285.644 285.071 285.19 285.588 286.061 286.082 285.911 285.612 284.976 284.804 284.902 284.999 285.078 285.163 285.293 285.492 285.478 285.027 284.069 282.413 281.4 282.046 283.712 285.004 285.497 285.55 284.515 282.409 280.177 278.938 278.912 279.833 281.065 281.854 282.317 282.818 283.22 282.714 280.748 278.303 276.465 276.024 277.272 280.426 283.672 284.418 281.042 274.145 262.911 256.675 253.233 251.785 251.479 252.06 252.964 253.696 254.086 254.689 255.365 256.32 257.658 259.02 259.946 260.453 261.429 264.033 267.114 270.048 271.91 273.903 275.066 275.609 276.635 278.316 279.213 279.201 279.291 279.576 279.462 279.129 279.522 280.79 282.232 283.629 284.626 284.57 283.007 284.046 285.642 286.568 287.105 287.719 288.436 289.06 289.417 289.652 289.746 289.641 289.458 289.343 289.285 289.287 289.362 289.417 289.431 289.418 289.391 289.298 289.159 289.017 288.874 288.713 288.538 288.377 288.211 287.984 287.687 287.365 287.075 286.941 286.886 286.85 286.8 286.764 286.711 286.582 286.386 286.319 286.434 286.623 286.754 286.762 286.759 286.806 286.919 287.177 287.485 287.791 288.051 288.285 288.485 288.75 289.103 289.577 289.885 290.017 289.979 289.784 289.532 289.232 288.883 288.438 287.999 287.575 287.178 286.803 286.523 286.276 286.038 285.787 285.734 285.969 286.332 286.465 286.15 285.777 284.907 284.109 283.773 282.533 280.6 278.888 278.387 278.653 280.442 282.016 283.204 284.247 285.117 285.739 286.429 286.667 286.418 286.47 286.835 286.802 286.629 286.418 286.331 286.265 286.584 287.125 288.428 289.763 290.693 291.153 291.053 290.727 290.459 290.436 290.473 290.495 290.499 290.507 290.502 290.476 290.433 290.389 290.351 290.321 290.306 290.332 290.399 290.485 290.504 290.48 290.483 290.53 290.539 290.525 290.535 290.563 290.487 290.316 290.106 289.921 289.871 289.899 289.955 289.889 289.678 289.445 289.252 288.996 288.608 288.183 287.885 287.845 287.836 287.846 287.971 288.184 288.133 288.111 287.479 286.495 285.024 284.237 283.952 284.509 283.931 283.752 283.89 284.121 284.191 284.881 284.981 285.165 285.417 285.558 285.565 285.431 285.192 284.835 284.506 284.272 284.103 284.177 284.085 284.007 284.032 284.189 284.272 283.977 283.287 281.704 281.388 282.11 283.046 284.258 284.079 282.812 280.599 278.461 277.076 277.232 278.471 279.922 280.903 281.261 280.936 281.355 281.75 280.981 278.651 276.253 274.523 273.286 272.91 274.124 275.329 274.159 268.39 261.542 256.892 253.988 252.759 253.205 253.589 252.886 252.356 252.158 252.704 253.731 255.069 256.305 257.063 257.576 258.32 259.051 260.392 262.024 264.668 267.655 270.385 271.933 273.734 274.751 276.097 277.66 278.488 278.919 279.228 279.174 278.463 278.225 278.651 279.501 280.177 280.844 281.719 282.483 282.133 281.168 281.25 281.41 282.435 283.99 284.889 286.039 287.132 287.903 288.277 288.256 288.071 287.954 287.902 287.924 288.052 288.144 288.178 288.189 288.231 288.212 288.133 288.032 287.918 287.765 287.593 287.442 287.294 287.056 286.736 286.391 286.084 285.887 285.775 285.716 285.705 285.695 285.6 285.41 285.211 285.195 285.344 285.554 285.71 285.717 285.629 285.572 285.571 285.741 286.031 286.331 286.554 286.723 286.872 287.096 287.469 288.063 288.595 288.957 289.151 289.171 289.007 288.761 288.438 287.994 287.487 287.013 286.565 286.141 285.824 285.596 285.38 285.191 285.291 285.575 285.637 285.065 283.53 282.149 281.253 281.139 280.621 279.396 277.965 276.75 275.977 276.437 277.984 279.97 282.084 283.309 283.945 284.441 285.187 285.291 285.101 285.285 285.573 285.61 285.189 284.92 284.658 284.544 284.647 285.067 285.955 286.947 288.399 289.758 290.296 290.363 290.152 289.999 289.967 289.967 289.988 290.034 290.067 290.066 290.029 289.998 289.985 289.984 289.989 290.014 290.06 290.119 290.144 290.142 290.147 290.168 290.169 290.147 290.121 290.092 290.001 289.844 289.648 289.455 289.387 289.363 289.334 289.231 289.071 288.88 288.65 288.35 288.014 287.678 287.402 287.278 287.224 287.224 287.288 287.448 287.616 287.635 287.318 286.785 285.861 285.136 284.537 285.478 284.863 283.795 283.758 283.61 283.383 283.763 283.925 284.485 284.79 284.805 284.719 284.588 284.396 283.973 283.529 283.204 283.071 282.677 282.584 282.038 281.653 281.381 281.144 281.082 280.911 279.701 279.748 280.554 281.341 281.447 280.426 278.748 276.776 275.753 275.969 277.358 279.344 280.536 280.473 279.855 279.86 280.489 280.844 280.015 278.514 277.422 275.304 273.162 270.52 266.506 264.36 261.615 258.793 257.279 257.167 258.544 259.491 259.934 259.18 257.788 255.964 254.327 253.478 254.353 255.684 257.064 257.569 257.496 257.372 258.135 259.475 261.525 264.427 267.439 269.715 271.229 272.549 273.514 274.667 275.974 277.067 278.086 278.6 278.431 277.606 277.272 277.56 277.973 278.014 277.477 277.706 280.249 281.25 281.404 281.101 280.545 279.535 279.166 280.438 282.128 284.434 285.809 286.543 286.651 286.515 286.436 286.407 286.428 286.559 286.671 286.719 286.736 286.795 286.815 286.777 286.704 286.614 286.49 286.338 286.195 286.057 285.843 285.58 285.306 285.046 284.806 284.646 284.567 284.555 284.527 284.393 284.19 284.021 284.023 284.164 284.342 284.471 284.535 284.527 284.503 284.525 284.673 284.916 285.144 285.318 285.47 285.617 285.741 285.962 286.402 287.054 287.608 288.005 288.186 288.154 288.005 287.77 287.428 286.951 286.484 286.005 285.526 285.101 284.845 284.672 284.622 284.863 284.97 284.445 282.453 279.32 277.794 277.339 277.356 277.142 276.401 275.279 274.049 273.189 273.53 275.536 277.723 279.879 281.59 282.525 283.057 283.684 283.832 283.828 283.949 284.235 284.263 284.056 283.561 283.307 282.857 282.764 283.039 283.56 284.38 285.452 287.468 289.149 289.712 289.759 289.587 289.519 289.515 289.533 289.556 289.581 289.6 289.607 289.603 289.606 289.618 289.629 289.64 289.672 289.737 289.843 289.905 289.928 289.924 289.896 289.828 289.718 289.586 289.493 289.377 289.211 288.996 288.893 288.826 288.75 288.631 288.509 288.333 288.048 287.722 287.438 287.17 286.871 286.668 286.597 286.66 286.815 287.029 287.343 287.626 287.526 287.117 286.647 285.906 285.833 285.863 285.773 285.41 284.914 284.543 284.205 283.866 283.896 284.148 284.11 283.563 283.572 283.613 283.369 282.757 282.081 281.35 281.541 281.418 280.765 279.061 277.032 277.047 276.899 276.377 276.261 276.131 276.422 276.665 276.565 276.173 274.892 273.622 273.173 274.317 276.919 279.435 281.044 281.439 281.128 280.057 279.738 280.075 281.047 280.804 280.49 279.451 277.633 274.878 269.538 264.869 260.788 257.61 256.947 259.064 262.518 265.117 266.849 268.056 267.696 265.093 262.367 260.233 258.786 258.352 258.832 259.222 259.903 258.869 258.835 259.909 260.837 263.323 266.107 268.752 270.299 271.4 271.518 271.832 272.621 273.927 275.336 276.871 277.667 277.42 276.436 275.848 276.308 276.52 276.154 275.399 275.433 277.439 279.581 280.468 280.644 280.269 279.676 278.684 277.813 278.869 282.003 283.647 284.617 284.852 284.748 284.681 284.657 284.673 284.811 284.961 285.053 285.09 285.133 285.127 285.065 284.982 284.913 284.848 284.778 284.72 284.658 284.517 284.314 284.088 283.854 283.559 283.325 283.189 283.152 283.152 283.063 282.913 282.806 282.831 282.956 283.108 283.247 283.366 283.426 283.452 283.489 283.602 283.786 283.969 284.168 284.364 284.539 284.651 284.802 285.064 285.584 286.055 286.416 286.668 286.841 286.89 286.818 286.61 286.227 285.785 285.315 284.842 284.387 284.145 284.06 284.124 284.287 283.881 282.431 278.817 276.134 274.28 273.671 273.774 273.775 273.452 272.52 270.355 269.244 270.677 273.087 275.843 278.134 279.538 280.424 281.191 281.781 282.147 282.368 282.623 282.937 283.003 282.758 282.312 281.842 281.319 281.052 281.125 281.432 281.969 283.052 285.16 287.44 288.467 288.899 288.913 288.88 288.876 288.871 288.852 288.842 288.847 288.867 288.886 288.903 288.912 288.902 288.885 288.911 289.018 289.229 289.356 289.4 289.388 289.368 289.314 289.21 289.086 289.035 288.968 288.821 288.583 288.46 288.382 288.286 288.102 287.894 287.633 287.314 287.075 286.857 286.58 286.164 285.897 285.824 285.952 286.224 286.541 286.875 286.821 286.766 286.42 286.161 286.112 286.006 285.376 285.625 285.645 285.433 285.116 284.673 284.215 283.894 283.72 283.477 283.07 282.506 282.106 281.94 281.021 279.544 278.152 278.983 279.635 278.561 276.078 274.45 273.27 272.663 272.572 272.677 272.758 272.704 272.3 271.494 269.143 268.692 269.928 272.002 274.685 278.682 280.723 282.206 282.25 281.704 280.65 279.9 279.991 280.559 281.112 281.147 280.654 278.964 276.259 271.66 265.868 261.594 258.814 258.81 262.01 265.896 270.018 272.535 274.023 274.361 273.214 271.128 268.936 265.17 264.027 263.249 262.699 261.74 261.072 260.834 262.091 264.128 266.789 268.988 270.493 271.268 271.016 270.574 270.249 271.151 272.234 273.575 275.06 276.043 276.399 275.683 275.343 275.419 274.863 274.339 273.547 273.81 275.875 277.321 278.328 278.757 278.812 278.7 278.412 277.521 277.215 279.789 281.249 282.269 282.632 282.611 282.602 282.631 282.683 282.836 283.001 283.099 283.116 283.107 283.081 283.025 282.969 282.944 282.936 282.929 282.935 282.947 282.875 282.702 282.473 282.216 281.904 281.661 281.53 281.535 281.651 281.729 281.733 281.717 281.742 281.833 281.931 282.007 282.076 282.14 282.185 282.26 282.374 282.578 282.811 283.053 283.252 283.404 283.494 283.644 283.913 284.315 284.669 284.897 285.04 285.217 285.425 285.525 285.491 285.286 284.94 284.538 284.104 283.689 283.455 283.435 283.47 283.335 282.321 279.096 276.209 273.455 271.585 270.787 270.725 270.732 270.772 269.682 268.942 268.27 268.703 271.617 274.022 276.538 278.061 278.915 279.556 279.991 280.167 280.284 280.54 280.939 281.136 281.127 280.991 280.675 279.99 279.335 278.975 279.05 279.398 280.299 282.065 284.245 285.771 286.583 286.934 287.103 287.263 287.414 287.545 287.604 287.635 287.642 287.637 287.636 287.633 287.606 287.561 287.589 287.737 288.048 288.253 288.364 288.403 288.434 288.426 288.375 288.309 288.312 288.303 288.22 288.049 287.965 287.913 287.789 287.488 287.125 286.739 286.397 286.234 286.079 285.796 285.344 285.097 285.053 285.207 285.484 285.768 285.953 284.669 284.437 284.082 283.852 284.217 284.763 283.73 284.346 284.767 284.886 284.768 284.405 283.73 283.165 283.125 282.585 282.118 281.396 280.197 280.236 278.732 276.151 275.767 277.387 277.788 276.985 275.598 274.527 273.549 272.762 272.388 272.392 272.398 272.098 271.239 269.273 268.134 267.444 269.3 272.321 275.861 279.163 281.352 282.31 282.23 281.66 280.381 279.738 279.583 279.826 280.327 281.236 280.388 278.877 276.649 273.322 268.08 264.556 262.217 261.694 263.571 267.189 270.738 272.98 274.901 275.58 275.116 274.125 273.076 272.164 272.164 270.97 269.996 268.334 266.669 266.03 266.463 267.602 269.393 270.501 271.281 271.304 270.849 269.96 269.85 269.661 270.193 271.142 272.357 273.756 274.489 274.479 274.141 273.865 273.104 271.875 270.718 271.065 273.456 274.817 275.944 276.504 276.776 277.053 277.214 277.108 275.914 277.109 278.697 279.61 280.136 280.328 280.445 280.529 280.572 280.636 280.683 280.667 280.568 280.4 280.297 280.286 280.36 280.498 280.631 280.704 280.752 280.801 280.839 280.793 280.68 280.547 280.388 280.276 280.256 280.303 280.407 280.523 280.591 280.634 280.65 280.68 280.715 280.778 280.843 280.919 281.005 281.091 281.176 281.314 281.554 281.805 282.033 282.197 282.322 282.491 282.708 282.948 283.192 283.345 283.515 283.718 284.013 284.24 284.358 284.325 284.111 283.794 283.422 283.059 282.817 282.747 282.533 281.901 279.709 276.383 273.812 271.456 269.671 268.904 269.155 269.068 268.642 268.227 267.638 267.169 267.729 270.176 272.453 274.692 276.299 277.382 278.088 278.33 278.234 278.033 277.782 277.855 278.131 278.374 278.704 278.317 277.914 277.614 277.232 276.88 276.824 277.147 278.191 280.168 281.434 282.474 283.145 283.695 284.301 284.868 285.371 285.634 285.748 285.788 285.81 285.818 285.812 285.777 285.724 285.765 285.931 286.277 286.575 286.782 286.896 286.939 286.917 286.868 286.877 287.018 287.173 287.269 287.241 287.201 287.179 287.094 286.824 286.475 286.086 285.714 285.518 285.332 285.032 284.66 284.478 284.472 284.641 284.859 285.016 284.953 283.159 282.175 281.32 281.356 281.619 282.531 281.342 282.635 283.323 283.486 283.535 283.434 282.81 282.503 282.155 281.183 280.068 279.208 279.391 278.547 276.586 274.14 273.612 274.414 275.639 275.759 276.039 276.39 276.218 275.4 274.995 275.397 276.142 276.297 275.336 273.619 270.364 269.15 270.991 273.456 276.386 279.015 280.616 281.27 281.195 280.388 279.351 278.354 278.148 278.211 278.338 278.535 278.911 277.991 276.951 275.013 272.457 268.41 266.302 264.772 264.453 266.266 268.009 270.731 272.168 272.63 272.712 272.794 273.384 273.644 273.922 273.536 272.723 271.294 269.789 269.122 269.061 269.908 270.217 270.34 270.529 270.199 269.65 269.408 268.68 267.935 267.542 267.998 268.888 269.992 271.093 271.689 271.784 271.622 270.036 268.463 266.755 266.538 269.425 271.97 273.315 274.076 274.481 274.996 275.546 275.77 275.284 275.699 276.12 276.764 277.338 277.742 277.953 278.031 277.971 277.756 277.577 277.461 277.361 277.313 277.357 277.464 277.652 277.917 278.207 278.385 278.57 278.769 278.992 279.141 279.171 279.113 279.02 278.982 279.043 279.158 279.272 279.396 279.468 279.529 279.563 279.586 279.632 279.708 279.797 279.873 279.919 279.951 280.01 280.132 280.406 280.693 280.931 281.067 281.14 281.206 281.3 281.462 281.697 281.968 282.205 282.426 282.671 282.953 283.207 283.351 283.297 283.041 282.708 282.399 282.206 282.086 281.625 280.511 277.598 274.53 271.953 270.54 269.634 269.104 267.697 267.269 266.996 266.481 265.987 265.95 266.941 269.026 271.071 273.058 274.305 275.534 276.118 276.576 276.353 276.342 275.85 275.538 275.565 275.862 276.043 275.965 275.75 275.659 275.636 275.303 275.069 275.165 275.556 276.151 277.158 278.369 278.893 279.842 280.831 281.697 282.37 282.805 283.018 283.124 283.18 283.204 283.21 283.2 283.143 283.11 283.134 283.271 283.496 283.808 284.124 284.29 284.265 284.214 284.471 285.012 285.523 285.949 286.181 286.24 286.266 286.271 286.158 285.917 285.59 285.244 285.02 284.812 284.531 284.239 284.053 284.005 284.141 284.331 284.424 284.171 283.124 281.01 280.111 279.808 280.2 280.795 280.543 280.682 281.147 281.309 281.284 281.382 281.331 281.13 279.803 278.619 278.82 278.995 278.274 276.527 274.253 273.171 272.738 273.165 274.09 275.124 276.429 277.194 277.62 277.769 277.862 278.061 278.243 278.088 277.171 275.548 273.375 272.429 272.868 274.78 276.934 278.508 279.324 279.433 278.888 278.077 277.246 276.829 276.821 276.638 276.608 276.757 277.043 277.156 277.161 275.957 274.953 273.384 271.613 268.571 266.935 265.918 265.365 265.705 266.61 267.901 269.058 270.121 271.178 271.745 272.163 271.909 270.991 269.702 268.299 267.247 267.722 268.231 268.542 268.44 268.089 267.927 267.958 267.74 266.981 266.257 266.087 265.776 265.349 266.098 267.031 268.166 269.146 269.278 268.905 267.544 265.231 265.024 265.794 268.494 270.036 270.938 271.528 272.283 273.108 273.64 272.928 272.533 273.052 273.57 273.604 274.074 274.489 274.569 274.392 274.197 274.219 274.375 274.597 274.846 275.072 275.267 275.52 275.85 276.243 276.548 276.822 277.099 277.386 277.628 277.732 277.706 277.618 277.616 277.745 277.952 278.179 278.39 278.52 278.591 278.622 278.628 278.65 278.703 278.768 278.834 278.902 278.943 279.015 279.143 279.375 279.64 279.831 279.958 280.034 280.083 280.122 280.209 280.396 280.74 281.066 281.315 281.509 281.725 281.949 282.119 282.191 282.112 281.906 281.701 281.576 281.479 280.936 279.656 277.064 273.663 271.481 270.225 269.385 268.224 267.306 266.153 265.318 264.975 264.658 265.127 266.724 268.573 270.401 271.95 272.893 273.485 273.98 274.258 274.632 274.597 274.44 273.943 273.713 273.957 274.425 274.329 274.12 274.231 274.318 274.167 273.876 273.787 273.744 273.807 274.113 274.822 276.562 277.526 278.497 278.856 279.007 279.147 279.243 279.413 279.514 279.453 279.347 279.22 279.049 278.884 278.754 278.494 278.472 278.887 279.574 280.106 280.332 280.576 281.185 282.083 283.084 284.025 284.681 285.019 285.253 285.447 285.504 285.387 285.09 284.807 284.647 284.509 284.282 284.031 283.811 283.659 283.701 283.865 283.986 283.724 282.141 280.925 280.61 280.695 280.587 280.489 280.425 279.369 278.376 277.593 277.13 277.22 278.092 278.126 276.839 276.944 277.325 277.108 275.735 274.85 273.993 273.264 272.923 272.953 273.433 274.31 275.533 276.758 277.316 277.534 277.736 277.962 278.058 277.798 276.781 275.422 274.377 273.852 274.455 276.001 276.995 277.742 277.969 277.574 276.946 276.168 275.493 275.342 275.445 275.666 275.537 275.907 275.792 275.92 275.719 275.427 275.147 274.781 274.262 273.598 272.296 270.449 267.88 266.519 265.956 267.2 268.976 269.618 269.657 269.41 268.901 267.758 265.96 263.342 261.982 261.58 262.011 263.275 264.622 264.69 265.042 265.375 265.796 266.06 265.896 265.719 265.211 264.708 264.75 265.015 265.656 266.89 267.982 268.948 268.767 267.873 266.047 264.346 263.946 264.3 264.31 264.757 266.142 268.591 269.537 270.333 270.445 269.134 268.827 269.658 269.651 269.454 269.541 269.903 270.366 270.87 271.38 271.885 272.411 272.911 273.362 273.673 273.97 274.269 274.63 274.995 275.34 275.677 275.976 276.247 276.434 276.518 276.549 276.609 276.811 277.086 277.359 277.583 277.727 277.788 277.814 277.814 277.804 277.825 277.873 277.948 278.03 278.11 278.194 278.308 278.473 278.688 278.84 278.944 278.998 279.025 279.03 279.117 279.322 279.66 280.026 280.23 280.349 280.481 280.715 280.93 281.052 281.073 280.991 280.915 280.895 280.881 280.504 279.306 277.269 274.016 272.057 270.54 269.21 267.842 266.808 265.342 264.503 264.378 264.763 265.157 267.848 269.432 270.921 271.953 272.691 272.977 272.927 272.925 272.985 272.751 272.215 271.835 271.705 271.984 272.456 272.235 272.082 272.317 272.387 272.305 272.202 272.156 272.185 272.114 272.204 272.515 273.5 275.135 276.069 276.197 276.144 276.133 275.747 275.552 275.52 275.565 275.564 275.499 275.379 275.239 275.026 274.742 274.969 275.475 276.208 276.852 277.311 277.822 278.553 279.283 279.953 280.779 281.927 282.963 283.743 284.329 284.647 284.825 284.813 284.611 284.405 284.241 284.052 283.848 283.643 283.455 283.444 283.617 283.822 283.828 283.568 283.189 282.948 282.763 282.568 281.991 280.642 279.175 277.606 276.295 275.127 274.364 274.121 274.015 273.961 274.149 274.539 274.522 274.523 274.31 274.183 273.794 273.282 272.844 272.734 273.32 274.209 274.997 275.834 275.921 275.699 275.687 276.34 276.059 275.463 274.936 274.619 274.596 274.936 275.802 276.341 276.628 276.754 276.645 276.092 275.166 274.249 273.947 273.95 274.15 274.415 274.503 274.588 274.252 273.916 273.767 273.563 273.608 273.831 273.828 273.569 272.786 271.822 270.456 269.586 268.802 268.878 267.319 267.112 265.843 263.442 261.407 259.984 259.171 258.463 258.201 258.567 259.116 260.365 261.677 262.648 263.645 264.121 264.912 265.178 265.024 264.596 264.284 264.055 264.047 264.288 265.057 265.886 266.316 266.214 265.785 263.766 263.776 263.353 262.813 262.29 262.327 262.965 263.861 265.292 265.695 265.887 266.061 266.631 266.667 266.5 266.058 265.724 265.922 266.549 267.559 268.906 269.968 270.776 271.406 271.99 272.406 272.75 273.061 273.396 273.812 274.183 274.518 274.823 275.152 275.479 275.728 275.902 276.034 276.241 276.502 276.752 276.941 277.058 277.111 277.147 277.16 277.147 277.137 277.166 277.231 277.318 277.424 277.528 277.635 277.748 277.857 277.934 277.978 278.028 278.077 278.108 278.177 278.339 278.595 278.936 279.182 279.319 279.402 279.548 279.79 279.998 280.114 280.099 280.04 280.052 280.109 279.95 278.937 277.304 274.408 272.734 271.132 269.404 267.777 266.56 265.399 264.448 264.591 265.183 267.293 268.825 270.215 271.33 271.933 272.401 272.515 272.455 271.923 271.202 270.469 270.067 269.706 269.385 269.483 269.576 269.701 269.648 269.819 269.953 269.884 269.6 269.507 269.9 269.979 269.659 269.842 270.278 271.272 272.254 272.804 273.068 273.418 273.716 273.688 273.166 273.039 272.93 272.814 272.777 272.835 272.924 272.96 273.239 273.666 274.334 274.998 275.509 276.013 276.561 277.015 277.448 278.004 278.753 279.652 280.886 282.2 283.033 283.652 284.104 284.253 284.161 283.896 283.656 283.493 283.35 283.227 283.239 283.441 283.747 283.866 283.84 283.751 283.669 283.54 283.222 282.489 280.327 279.233 277.928 276.54 274.934 273.486 272.689 272.183 271.982 272.165 272.661 273.242 273.647 273.809 273.81 273.539 273.064 272.523 272.171 272.727 273.452 273.991 274.177 274.071 273.976 273.995 274.046 274.291 274.4 274.355 274.311 274.29 274.245 274.32 274.827 275.091 275.204 274.962 274.675 274.16 273.072 272.674 272.385 272.263 272.233 271.774 271.703 271.358 270.875 270.327 269.865 269.657 270.246 271.002 271.498 271.63 271.269 270.583 269.037 267.206 265.895 264.379 262.916 261.291 259.845 258.61 257.857 257.426 257.083 256.793 257.021 257.41 258.49 260.581 261.949 262.574 262.832 262.812 263.171 263.085 263.287 262.921 262.872 262.526 262.568 262.34 263.015 262.768 262.371 262.426 262.217 262.391 262.51 261.725 261.51 261.508 261.907 262.069 262.734 263.801 262.883 262.475 265.109 265.384 264.993 264.441 264.248 264.381 264.878 265.785 267.382 268.698 269.682 270.387 271.018 271.534 271.928 272.252 272.564 272.996 273.42 273.799 274.131 274.451 274.813 275.115 275.359 275.551 275.764 276.01 276.232 276.4 276.503 276.558 276.592 276.606 276.587 276.541 276.529 276.577 276.664 276.766 276.882 276.98 277.057 277.123 277.198 277.26 277.306 277.325 277.313 277.353 277.517 277.775 278.041 278.263 278.368 278.467 278.616 278.854 279.082 279.208 279.256 279.236 279.187 279.089 278.73 277.854 275.704 273.458 271.741 270.256 268.612 267.365 266.408 265.578 265.242 265.48 267.005 268.345 269.721 270.498 270.796 270.95 270.902 270.87 269.552 268.544 268.958 268.357 268.205 267.794 267.392 267.383 266.956 266.898 267.347 267.615 267.731 267.717 267.752 267.814 267.865 268.009 268.062 267.958 268.191 268.465 268.854 269.468 270.2 270.136 270.229 270.524 270.894 271.137 271.129 271.192 271.416 271.424 271.636 271.756 272.003 272.287 272.713 273.378 274.074 274.753 275.3 275.605 275.817 276.046 276.431 277.046 277.898 279.011 280.128 281.242 282.257 282.791 283.093 283.167 283.085 282.994 282.907 282.865 282.949 283.231 283.481 283.479 283.371 283.214 283.127 283.032 282.685 281.518 280.043 279.414 278.48 277.331 275.85 274.337 273.149 272.477 272.247 272.185 272.403 272.802 273.201 273.381 273.19 272.789 272.378 271.906 272.029 272.578 273.05 273.416 273.518 273.349 273.104 272.866 272.788 272.871 272.996 272.899 272.875 272.888 272.85 272.761 272.726 272.451 272.269 272.282 272.028 271.386 270.884 270.325 269.943 269.749 269.611 269.486 268.749 268.377 267.95 267.557 267.153 266.853 266.66 266.983 267.369 267.569 267.484 267.334 266.677 265.699 264.34 262.469 260.595 258.978 258.205 257.82 257.625 257.72 257.589 257.2 256.834 257.28 258.103 259.676 261.618 261.636 261.819 261.724 261.413 261.274 261.232 261.62 261.998 261.532 261.125 260.689 260.717 260.888 260.659 261.065 260.819 260.761 260.977 261.395 261.216 260.431 260.399 260.622 260.644 261.529 260.311 259.7 263.686 264.087 263.521 262.899 262.921 263.354 263.989 265.005 266.678 267.856 268.811 269.608 270.388 271.1 271.568 271.909 272.198 272.553 272.972 273.362 273.729 274.064 274.391 274.653 274.878 275.083 275.31 275.59 275.821 275.982 276.067 276.1 276.1 276.072 276.021 275.963 275.926 275.937 275.995 276.073 276.177 276.313 276.417 276.496 276.56 276.628 276.684 276.715 276.717 276.721 276.819 277.01 277.234 277.458 277.655 277.797 277.959 278.166 278.41 278.59 278.632 278.505 278.22 277.647 276.774 275.569 273.029 270.894 269.38 268.014 267.16 266.364 265.721 265.432 264.931 266.184 267.506 268.741 269.623 269.923 269.823 269.639 268.735 267.573 267.051 266.699 266.678 266.244 266.541 266.425 266.062 265.628 265.476 265.926 266.435 266.595 266.677 266.489 266.412 266.366 266.376 266.337 266.485 266.579 266.92 267.189 267.477 268.002 268.961 268.945 268.597 268.237 268.191 267.948 268.048 268.312 269.292 270.071 270.318 270.521 270.868 271.263 271.688 272.543 273.574 274.301 274.753 274.969 275.099 275.22 275.371 275.594 276.057 276.77 277.497 278.369 279.454 280.442 281.28 281.922 282.226 282.34 282.35 282.41 282.664 283.063 283.18 283.046 282.759 282.456 282.217 281.687 281.203 280.692 279.612 279.107 278.42 277.673 276.706 275.625 274.548 273.815 273.607 273.417 273.334 273.392 273.418 273.167 272.906 272.505 272.06 272.067 272.218 272.39 272.501 272.807 272.821 272.658 272.397 272.073 271.786 271.599 271.438 271.063 271.294 271.25 271.062 270.922 270.523 270.226 269.762 269.434 268.059 267.651 267.389 267.135 267.094 267.251 267.584 267.721 267.585 267.237 266.809 266.495 266.116 265.743 265.808 265.811 265.751 265.805 266.049 265.948 265.946 265.431 264.208 262.086 259.989 258.344 257.872 257.869 258.309 258.54 258.29 257.905 257.547 257.75 259.185 260.737 261.878 262.013 261.728 261.586 261.068 260.798 260.518 260.32 260.146 260.147 260.136 259.821 259.575 259.666 259.701 259.806 259.479 259.225 259.211 259.718 259.505 259.359 258.871 258.672 259.387 259.884 258.198 258.187 262.174 262.622 262.161 261.814 261.814 262.258 263.133 264.267 265.634 266.716 267.544 268.47 269.599 270.754 271.438 271.833 272.076 272.309 272.688 273.089 273.487 273.837 274.109 274.317 274.492 274.679 274.893 275.139 275.379 275.533 275.606 275.628 275.606 275.517 275.399 275.296 275.239 275.218 275.251 275.346 275.481 275.624 275.726 275.764 275.809 275.9 276.037 276.123 276.121 276.089 276.106 276.262 276.491 276.72 276.959 277.225 277.479 277.711 277.913 278.067 278.015 277.573 276.713 275.61 273.582 271.111 269.261 268.05 266.924 265.911 265.108 264.433 264.215 264.245 264.552 265.937 266.967 267.748 267.923 268.071 268.116 268.278 267.475 266.505 265.946 265.517 265.374 265.131 265.199 264.958 264.967 264.928 265.187 265.08 265.119 264.873 264.789 264.529 264.361 264.481 264.527 264.618 264.892 265.205 265.366 265.576 266.058 266.315 266.715 267.313 267.545 267.258 266.611 266.413 266.791 267.569 268.2 268.787 269.251 269.711 270.473 271.373 272.254 273.374 274.209 274.642 274.873 274.978 275.057 275.162 275.292 275.45 275.696 276.065 276.494 277.058 277.763 278.594 279.638 280.554 281.213 281.597 281.745 281.975 282.432 282.716 282.753 282.571 282.145 281.772 281.454 281.143 280.797 280.253 278.929 278.506 278.114 277.58 277.053 276.448 275.839 275.199 274.919 274.732 274.409 274.154 273.803 273.31 272.853 272.452 272.176 271.974 272.013 271.85 271.878 272.095 272.25 272.207 271.91 271.509 270.947 270.538 269.801 269.788 269.764 269.513 269.227 268.865 268.228 267.701 267.324 266.949 266.78 266.621 266.359 266.124 266.08 266.333 266.597 266.776 266.862 266.73 266.452 266.143 265.859 265.934 265.955 266.057 266.068 266.071 265.942 265.843 265.582 265.379 264.312 263.146 261.57 260.181 259.557 259.885 260.134 260.012 259.934 259.333 258.732 258.78 260.212 261.106 261.793 261.821 261.491 261.295 260.79 260.157 259.702 259.431 258.968 259.21 259.062 258.896 258.995 258.507 258.378 258.132 257.511 257.348 257.119 257.522 257.281 257.238 257.334 257.683 258.456 258.869 258.385 258.755 260.963 261.275 260.68 260.382 260.722 261.388 262.375 263.39 264.166 264.71 265.465 266.441 268.039 269.733 270.895 271.527 271.886 272.124 272.441 272.863 273.267 273.593 273.806 273.949 274.088 274.254 274.457 274.677 274.88 275.01 275.098 275.129 275.065 274.86 274.616 274.429 274.316 274.292 274.354 274.475 274.627 274.767 274.883 274.973 275.047 275.149 275.262 275.364 275.414 275.446 275.501 275.608 275.818 276.068 276.36 276.646 276.946 277.216 277.385 277.37 277.029 276.101 274.68 272.495 269.11 267.458 266.196 265.503 264.561 263.787 263.094 262.635 262.881 263.215 263.928 264.734 265.27 265.735 265.897 265.634 266.166 266.198 266.39 266.125 264.956 264.312 264.167 264.075 263.981 263.853 263.895 263.975 263.885 263.144 262.753 262.442 262.405 262.732 262.708 262.825 262.814 262.74 262.976 263.179 263.292 263.48 263.74 264.146 264.638 264.975 265.207 265.225 265.03 265.058 265.726 267.062 267.118 267.473 268.292 269.182 270.575 272.014 272.991 273.759 274.273 274.622 274.884 275.05 275.198 275.413 275.638 275.867 276.107 276.307 276.593 277.035 277.485 278.025 278.798 279.551 280.326 280.965 281.302 281.785 282.136 282.1 281.869 281.49 281.035 280.688 280.405 280.013 279.453 279.15 278.057 277.97 277.897 277.618 277.175 276.515 276.166 275.902 275.743 275.529 275.243 274.757 274.214 273.552 273.156 272.816 272.448 271.985 271.792 271.598 271.499 271.681 271.872 271.827 271.494 270.789 270.155 269.352 268.858 268.77 267.839 267.549 267.357 267.102 267.019 266.802 266.649 266.69 266.691 266.514 266.469 266.368 265.875 265.983 265.904 265.994 266.116 266.085 265.953 265.859 265.633 265.773 265.98 266.096 266.301 266.191 265.816 265.383 265.052 265.008 264.693 263.845 263.557 262.676 262.09 261.866 261.864 261.418 261.014 260.49 260.054 260.289 261.308 261.891 261.996 261.719 261.101 260.518 259.824 259.061 258.737 258.433 258.567 258.324 258.241 257.868 257.781 257.288 257.12 257.213 256.541 256.163 256.105 256.122 255.88 255.484 255.876 256.542 257.284 257.639 258.167 258.485 259.42 259.666 259.271 259.445 260.329 261.122 261.777 262.197 262.565 262.736 262.821 264.424 265.784 267.725 269.661 270.756 271.403 271.825 272.176 272.608 272.989 273.267 273.443 273.567 273.725 273.921 274.129 274.32 274.467 274.574 274.637 274.61 274.46 274.162 273.602 273.511 273.377 273.26 273.22 273.29 273.463 273.717 273.98 274.176 274.303 274.374 274.459 274.559 274.658 274.761 274.875 275.036 275.244 275.517 275.849 276.195 276.512 276.726 276.688 276.28 275.471 274.081 272.215 269.225 266.587 265.154 263.939 263.172 262.648 262.06 261.738 261.998 262.731 263.127 263.479 263.722 263.897 263.907 264.314 263.493 263.426 263.612 263.671 263.399 262.981 262.547 262.415 262.957 262.672 262.522 262.763 262.932 262.196 261.426 261.103 260.97 261.398 260.991 261.227 261.386 261.08 260.898 261.069 261.229 261.445 261.617 261.803 261.996 262.237 262.623 262.901 263.323 263.517 263.925 264.515 265.96 265.971 266.189 267.377 268.739 270.434 271.827 272.667 273.353 273.819 274.165 274.519 274.848 275.212 275.687 276.046 276.355 276.579 276.71 276.888 277.176 277.516 278.013 278.599 279.173 279.973 280.643 281.252 281.92 282.054 281.907 281.403 280.441 279.457 279.232 279.203 278.884 278.454 278.241 277.753 277.791 277.754 277.62 277.262 276.818 276.385 275.865 275.641 275.433 275.295 275.084 274.693 274.117 273.759 273.222 272.611 272.019 271.583 271.299 271.025 271.072 271.051 270.885 270.263 269.355 268.265 268.001 267.699 267.517 267.307 267.007 266.85 266.859 266.666 266.6 266.631 266.713 266.524 266.257 266.163 266.08 265.453 265.397 265.284 265.202 265.184 265.133 265.076 265.065 265.187 265.215 265.336 265.215 265.134 264.831 264.67 264.526 264.515 264.7 264.642 264.457 264.194 264.086 263.27 262.471 262.532 262.173 261.548 261.184 261.447 261.6 261.842 261.779 261.751 261.292 260.418 259.444 258.589 257.93 257.467 257.307 257.146 256.868 256.238 256.142 256.078 256.171 256.339 256.213 255.698 255.091 254.904 254.742 254.587 254.412 254.92 255.578 255.982 256.688 256.107 256.456 257.328 257.976 258.573 259.384 260.31 260.902 261.216 261.294 261.241 261.01 260.473 261.373 263.422 264.8 267.06 269.116 270.425 271.243 271.787 272.206 272.556 272.767 272.918 273.064 273.23 273.446 273.664 273.845 273.976 274.053 274.082 274.002 273.788 273.475 273.11 272.437 272.109 272.06 271.743 271.536 271.634 272.001 272.492 272.895 273.202 273.456 273.642 273.777 273.904 274.063 274.256 274.45 274.677 274.999 275.43 275.869 276.086 275.991 275.492 274.363 272.797 271.257 268.123 265.933 264.446 263.066 262.26 261.701 261.255 261.133 261.423 261.968 262.268 262.487 263.024 263.077 263.158 263.039 263.071 262.776 262.39 262.261 261.923 261.738 261.612 261.611 261.582 261.749 261.439 261.27 261.242 260.948 260.454 260.225 260.245 260.48 260.463 260.037 260.142 259.874 259.584 259.42 259.46 259.688 259.922 260.206 260.425 260.597 260.77 260.952 261.496 262.186 262.693 263.51 264.224 264.506 264.578 264.929 266.44 268.32 270.088 271.529 272.358 273.017 273.489 273.868 274.322 274.778 275.296 275.941 276.451 276.906 277.159 277.248 277.341 277.509 277.785 278.244 278.703 279.307 280.102 280.874 281.593 281.964 282.081 282.017 281.587 280.62 279.557 278.81 278.254 277.942 277.738 277.654 277.848 277.91 277.865 277.672 277.341 276.877 276.361 275.588 275.237 275.098 275.103 275.14 275.061 274.811 274.512 273.778 272.763 272.13 271.559 271.079 270.708 270.378 269.991 269.426 268.471 267.855 267.65 267.455 267.409 267.362 267.081 266.82 266.662 266.582 266.336 266.255 266.293 266.312 266.013 265.749 265.523 265.238 264.818 264.732 264.681 264.717 264.834 264.754 264.617 264.555 264.547 264.397 264.125 263.973 263.632 263.308 262.956 262.889 262.939 263.206 263.559 263.512 263.58 263.407 262.955 262.923 262.9 262.474 262.336 262.415 262.466 262.333 262.041 261.713 261.304 260.748 259.759 258.681 257.5 256.764 255.959 255.618 255.288 254.913 254.433 254.329 254.346 254.473 254.723 254.258 253.856 253.383 252.995 252.694 252.428 252.845 253.644 254.053 254.145 254.75 255.337 256.216 256.983 257.787 258.596 259.175 260.028 260.75 261.1 261.13 261.038 259.803 258.917 258.699 259.136 261.721 263.684 266.48 268.875 270.274 271.091 271.594 271.911 272.065 272.144 272.269 272.454 272.671 272.912 273.098 273.23 273.294 273.269 273.145 272.88 272.492 271.99 271.406 270.711 269.854 269.016 269.065 269.218 269.22 269.532 270.36 271.19 271.853 272.358 272.855 273.254 273.548 273.794 274.032 274.335 274.698 275.032 275.228 275.116 274.292 272.75 271.287 269.061 266.54 264.356 263.125 261.89 260.998 260.524 260.376 260.492 260.718 261.135 261.45 261.698 261.931 262.11 262.163 262.081 261.855 261.657 261.606 261.537 261.443 261.232 260.967 260.897 260.928 260.724 260.459 260.12 259.46 259.278 259.12 259.11 259.199 259.308 259.424 259.356 258.931 258.583 258.183 258.044 257.937 258.042 258.208 258.578 258.951 259.308 259.571 259.733 260.031 260.769 261.8 262.699 263.045 263.132 263.134 263.277 264.057 265.982 268.444 270.091 271.424 272.212 272.837 273.387 273.838 274.348 274.798 275.313 275.98 276.591 277.228 277.619 277.82 277.923 278.057 278.278 278.589 279.025 279.78 280.598 281.186 281.456 281.594 281.698 281.745 281.677 281.306 280.578 279.473 278.272 277.747 277.484 277.552 278.024 278.057 277.909 277.591 277.105 276.512 275.82 275.065 274.388 274.121 273.988 274.195 274.558 274.649 274.503 273.933 272.813 272.185 271.497 271.026 270.604 270.267 269.719 268.442 267.754 267.289 267.331 267.245 267.176 267.16 267.009 266.792 266.573 266.335 266.257 265.97 266.17 266.194 265.976 265.806 265.463 264.917 264.64 264.223 264.166 264.262 264.372 264.228 264.149 263.984 263.97 263.721 263.462 263.18 262.563 262.134 261.899 261.788 261.753 261.869 262.276 262.465 262.492 262.541 262.503 262.622 262.287 262.417 262.155 262.128 262.107 261.962 261.553 261.05 260.437 259.647 258.847 257.959 256.755 256.096 255.338 254.465 254.012 253.424 252.95 252.906 253.082 253.29 253.164 252.869 252.215 251.8 251.515 251.447 251.494 251.874 252.547 253.194 254.61 255.283 255.584 256.655 257.528 257.871 258.129 258.383 259.208 259.985 260.573 260.834 260.977 260.405 258.52 257.711 257.754 258.515 261.48 263.437 266.692 268.582 269.681 270.35 270.717 270.884 271.084 271.333 271.597 271.844 272.054 272.22 272.268 272.187 272.011 271.719 271.262 270.625 269.863 268.963 268.101 267.281 266.465 265.733 265.113 264.855 266.209 267.064 267.756 268.981 270.127 271.21 272.125 272.802 273.311 273.668 273.907 274.039 274.016 273.586 272.542 271.021 269.562 266.715 263.825 262.02 260.919 259.799 259.052 258.861 258.924 259.727 260.022 260.468 260.867 260.579 260.456 260.398 260.213 260.974 260.866 260.685 260.446 260.389 260.412 260.133 260.032 259.839 259.617 259.449 258.867 258.791 258.524 258.305 258.309 258.508 258.577 258.535 258.387 258.472 258.255 257.817 257.399 256.817 256.768 256.654 256.615 256.889 257.267 257.815 258.201 258.455 258.596 259.059 260.154 261.658 262.067 262.158 262.105 262.211 262.472 264.474 266.854 269.093 270.366 271.327 271.891 272.417 273.041 273.553 274.135 274.619 275.144 275.759 276.377 277.123 277.655 278.102 278.357 278.546 278.733 278.968 279.46 280.199 280.852 281.202 281.327 281.33 281.294 281.308 281.354 281.228 280.757 279.754 278.642 277.73 277.505 277.795 278.382 278.211 277.703 276.905 276.064 275.189 274.584 273.982 273.46 272.831 272.819 272.983 273.816 274.096 274.075 273.72 272.96 272.152 271.277 270.855 270.436 269.936 268.958 268.136 267.491 267.203 266.926 266.946 266.977 266.992 267.023 266.941 266.924 266.667 266.424 266.271 266.178 266.127 265.894 265.432 264.913 264.547 264.219 263.877 263.734 263.631 263.605 263.41 263.142 263.002 262.675 262.297 262.081 261.883 261.512 261.456 261.392 261.225 261.329 261.131 261.029 261.248 261.273 261.217 261.116 261.151 260.97 260.972 260.887 260.742 260.573 260.413 260.198 259.477 258.959 258.524 258.107 257.666 256.972 256.23 255.323 254.499 253.789 253.301 253.316 253.478 253.618 253.537 253.222 252.702 252.065 251.805 251.636 251.547 251.472 251.591 251.624 251.825 252.314 253.182 254.77 255.836 256.953 257.316 257.382 257.316 257.488 257.721 257.976 257.918 258.168 258.676 257.798 256.85 256.592 256.97 259.334 260.687 262.855 264.995 266.215 267.009 267.7 268.373 269.02 269.626 270.044 270.349 270.515 270.481 270.322 270.005 269.544 268.956 268.184 267.237 266.428 265.784 265.163 264.569 263.99 263.587 263.215 263.041 262.856 263.097 264.383 265.541 266.639 267.938 269.13 270.323 271.234 271.647 271.751 271.545 270.87 269.636 268.476 266.759 264.065 261.834 260.717 260.042 258.966 258.008 257.572 257.701 258.591 259.768 260.471 260.116 260.001 259.392 260.007 259.438 259.026 259.056 258.997 258.861 258.986 258.97 258.916 258.774 258.55 258.24 257.999 257.963 257.601 257.686 258.067 258.192 258.283 258.32 258.166 257.973 257.727 257.519 257.257 256.746 256.182 255.681 255.449 255.261 255.263 255.61 256.114 256.754 257.17 257.344 257.71 258.398 260.208 260.818 261.116 261.453 261.751 262.25 262.964 265.68 267.673 269.056 269.839 270.19 270.445 270.761 271.538 272.57 273.67 274.304 274.906 275.472 276.082 276.762 277.332 277.92 278.375 278.843 279.187 279.512 279.907 280.39 280.842 281.067 281.147 281.106 281.0 280.922 280.967 280.95 280.601 279.905 278.903 278.135 278.065 278.306 278.647 278.125 277.198 275.85 274.482 272.53 271.61 271.318 271.065 270.674 271.027 271.587 272.233 272.699 273.167 273.013 272.56 271.738 271.078 270.36 269.796 269.249 268.657 267.99 267.494 267.294 266.715 266.739 266.582 266.476 266.735 266.747 266.696 266.587 266.529 266.416 266.142 265.865 265.462 265.006 264.368 264.047 263.55 263.278 262.859 262.793 262.75 262.386 262.242 262.101 261.877 261.652 261.485 261.598 261.393 261.274 261.053 260.651 260.513 260.338 260.033 260.063 259.727 259.691 259.569 259.733 259.409 259.051 259.185 259.273 259.068 258.817 258.51 257.881 257.512 257.218 256.875 256.536 256.065 255.471 254.871 254.183 253.599 253.574 253.778 254.04 254.148 253.707 253.287 252.85 252.484 252.27 251.932 251.626 251.396 251.171 250.818 250.428 250.628 251.065 251.95 253.108 254.18 254.967 254.97 254.884 254.922 254.936 254.728 254.268 254.781 255.343 256.12 256.428 256.15 255.716 256.887 258.063 258.646 259.294 260.14 261.198 261.84 263.211 264.454 265.515 266.363 266.781 266.913 266.856 266.52 265.963 265.317 264.597 263.906 263.561 263.319 263.131 262.952 262.579 261.988 261.15 260.496 260.3 260.207 260.229 260.553 261.81 262.91 263.77 264.868 265.311 265.924 266.554 266.427 266.0 265.414 264.242 261.742 260.248 259.359 258.827 258.47 257.501 257.224 257.091 257.303 257.873 258.851 259.577 259.984 259.328 259.045 258.675 259.014 258.641 258.087 258.212 258.028 257.898 257.768 257.754 257.621 257.561 257.29 257.07 256.739 256.689 256.755 257.614 258.001 258.156 258.058 257.718 257.341 256.862 256.514 256.331 256.096 255.605 254.833 254.33 254.002 253.778 253.997 254.475 255.511 256.931 257.076 257.127 257.623 259.068 259.72 260.236 260.826 261.278 261.583 262.1 263.251 264.788 266.118 266.725 266.794 266.72 266.936 267.527 267.598 268.842 272.155 273.711 274.642 275.225 275.777 276.252 276.757 277.258 277.819 278.381 278.91 279.438 279.858 280.237 280.502 280.679 280.708 280.66 280.558 280.456 280.467 280.486 280.376 280.068 279.657 279.226 278.98 278.872 278.766 278.014 276.737 275.142 272.973 270.794 269.607 269.008 268.904 268.804 269.097 269.832 270.469 271.73 272.15 272.007 271.423 270.906 270.488 269.874 269.428 269.072 268.332 267.74 267.51 266.892 266.55 266.216 266.035 265.966 266.155 265.925 266.017 265.982 265.966 265.841 265.689 265.348 265.057 264.605 264.181 264.08 263.599 263.096 262.441 261.924 261.699 261.397 261.292 261.193 261.08 260.904 260.853 260.848 260.673 260.663 260.423 260.402 260.419 260.136 259.753 259.552 259.271 258.909 258.749 258.516 258.112 257.959 257.765 257.703 257.34 256.874 256.384 256.022 255.49 255.082 254.674 254.482 254.178 253.807 253.642 253.621 253.78 253.72 253.852 253.761 253.467 252.867 252.376 252.049 252.016 251.837 251.584 251.436 251.044 250.611 250.144 249.655 249.235 248.861 248.75 249.028 249.225 249.398 249.695 249.916 250.299 250.611 250.823 251.312 252.073 252.937 253.873 254.661 254.753 254.337 253.241 253.156 253.1 253.204 253.621 254.421 256.07 257.085 257.605 258.609 259.38 260.33 261.358 261.776 261.764 261.461 261.105 260.893 260.949 261.158 261.364 261.522 261.389 260.357 259.83 259.489 259.232 259.082 259.139 258.874 258.645 258.334 258.513 259.131 259.028 259.94 260.327 259.766 258.711 258.147 257.785 257.537 257.659 257.469 257.134 256.412 256.013 255.58 255.801 255.945 256.683 257.226 258.248 258.444 258.396 259.132 258.989 258.716 258.068 257.546 257.302 257.249 257.214 256.829 256.512 256.417 256.489 256.421 256.034 255.708 255.589 255.498 255.721 257.374 257.801 257.905 257.645 257.099 256.585 256.044 255.619 255.311 255.039 254.732 254.095 253.518 253.145 253.046 253.375 254.33 255.357 256.877 257.272 257.513 258.009 258.726 259.59 260.162 260.59 261.017 261.362 261.798 262.536 263.156 263.577 263.643 262.905 262.565 261.923 262.615 264.272 264.923 268.695 272.216 274.043 274.847 275.449 275.819 276.202 276.568 277.09 277.619 278.169 278.597 278.969 279.267 279.511 279.675 279.83 279.911 279.927 279.908 279.899 279.883 279.792 279.62 279.473 279.405 279.322 279.148 278.524 277.924 276.855 275.327 273.634 271.437 269.842 268.947 268.447 268.283 268.3 268.715 269.815 270.87 271.126 270.905 269.785 269.979 269.671 269.194 269.104 269.037 268.571 267.819 267.33 266.652 266.152 265.949 265.625 265.678 265.687 265.477 265.608 265.583 265.507 265.141 264.798 264.46 264.523 264.316 263.719 263.501 263.374 262.897 262.359 262.092 261.577 261.528 261.301 260.684 260.449 260.424 260.481 260.233 259.999 259.876 259.806 259.679 259.745 259.398 259.191 258.993 258.628 258.478 258.375 257.887 257.282 256.74 256.125 255.947 255.567 255.373 255.082 254.69 254.272 253.877 253.41 253.185 252.67 252.544 252.445 252.635 252.819 253.092 253.091 252.58 252.07 251.441 250.962 250.687 250.861 250.865 250.792 250.563 250.385 250.166 249.748 249.231 248.733 247.693 246.614 245.733 245.492 245.425 245.892 246.571 247.296 248.151 248.787 249.617 249.969 250.23 250.786 251.321 251.137 250.941 250.886 250.634 250.547 250.473 250.566 250.979 251.485 252.206 253.211 254.212 255.201 255.881 256.619 257.483 258.203 258.463 258.692 258.934 259.241 259.614 259.908 260.098 260.071 259.097 258.719 258.67 258.785 258.582 258.449 258.37 257.6 256.84 256.568 256.702 256.213 255.788 255.949 255.475 254.956 255.015 255.354 255.653 255.745 255.909 255.807 255.387 255.285 255.181 254.896 254.889 255.366 256.126 257.566 257.576 257.183 257.581 257.35 257.335 256.767 256.513 256.345 256.05 255.781 255.439 255.114 254.974 255.016 255.063 254.998 254.844 254.793 254.777 254.921 255.196 256.001 256.9 256.762 256.29 255.724 255.195 254.722 254.403 254.05 253.873 253.446 253.007 252.94 253.058 253.471 254.276 254.958 255.731 256.54 257.538 258.235 258.821 259.3 259.724 260.091 260.35 260.529 261.1 261.472 261.545 261.306 260.132 258.392 257.606 257.643 258.746 261.179 262.602 264.731 268.487 272.525 274.054 274.956 275.547 275.946 276.351 276.734 277.126 277.365 277.517 277.609 277.666 277.786 278.013 278.275 278.641 278.919 279.101 279.196 279.179 279.099 279.006 278.953 278.905 278.901 278.818 278.03 277.771 277.27 276.367 275.296 274.138 272.959 271.551 269.85 268.922 268.569 268.477 268.505 268.689 268.997 268.688 268.564 269.051 269.021 268.859 268.725 268.595 268.166 267.557 267.152 267.02 266.286 266.003 265.817 265.638 265.524 265.569 265.455 265.271 265.032 264.561 264.43 264.199 263.981 263.587 263.334 263.147 262.791 262.47 261.923 261.782 261.616 261.175 261.159 260.406 260.163 260.118 260.01 259.826 259.55 259.499 259.55 259.361 259.412 259.239 258.981 258.666 258.274 258.028 257.329 256.686 256.024 255.689 255.07 254.818 254.501 254.244 254.08 253.878 253.688 253.579 253.412 253.244 253.045 252.971 252.692 252.545 252.466 252.134 251.637 251.28 250.61 250.073 249.975 249.882 249.881 250.093 249.973 250.004 249.784 249.37 249.156 248.793 247.837 246.723 245.686 244.926 244.086 244.1 244.444 245.024 245.691 246.354 247.131 247.753 248.066 248.294 248.577 248.696 248.795 248.836 248.763 248.607 248.691 248.815 248.962 249.219 249.498 249.859 250.417 251.121 251.92 253.151 253.773 254.788 255.687 256.403 256.819 257.067 257.377 257.835 258.199 258.482 258.512 258.292 258.148 257.649 257.891 258.139 258.069 258.03 257.579 257.065 256.299 255.564 255.242 254.753 254.458 254.209 254.126 254.163 254.305 254.68 254.792 254.796 254.676 254.661 254.468 254.123 254.223 254.625 255.202 256.203 256.685 256.752 256.773 256.517 256.231 256.137 255.696 255.379 254.864 254.341 254.038 253.794 253.707 253.795 253.964 254.111 254.22 254.207 254.3 254.315 254.274 254.227 254.15 253.936 254.817 254.934 254.567 253.913 253.286 253.055 253.068 253.063 252.781 252.801 252.914 253.041 253.272 253.595 253.884 254.229 255.183 255.795 257.157 257.841 258.41 258.8 259.21 259.275 259.715 260.049 259.967 259.634 258.908 257.308 255.639 254.598 254.554 255.286 257.201 260.051 262.014 263.74 266.94 270.502 272.834 274.284 275.069 275.614 276.014 276.209 276.144 275.79 275.302 274.87 274.629 274.853 275.441 276.489 277.125 277.573 277.842 277.905 277.864 277.771 277.758 277.844 277.997 278.088 277.449 277.504 277.436 277.204 276.718 276.041 275.08 273.809 272.352 270.216 268.616 267.95 267.521 267.385 267.795 267.921 267.851 267.693 268.282 268.283 268.277 268.181 267.907 267.423 267.158 266.917 266.861 266.533 266.267 266.144 265.876 265.655 265.299 264.928 264.747 264.67 264.465 264.099 263.64 263.315 262.95 262.687 262.136 261.552 261.432 261.558 260.892 260.544 260.369 259.863 259.579 259.759 259.385 259.007 258.951 259.136 258.994 258.916 258.874 258.949 258.844 258.306 257.733 256.825 255.816 255.102 254.683 254.283 253.913 253.758 253.618 253.687 253.633 253.434 253.447 253.588 253.634 253.666 253.472 253.195 252.843 252.475 251.739 251.031 250.476 249.958 249.637 249.384 249.365 249.521 249.311 248.871 248.694 248.726 248.524 248.145 247.801 247.401 246.66 246.065 245.444 245.105 244.859 244.851 245.097 245.416 245.63 246.096 246.459 246.589 246.809 247.088 247.294 247.53 247.685 247.607 247.466 247.334 247.272 247.344 247.468 247.738 248.032 248.184 248.561 249.003 249.564 250.179 251.434 252.435 253.557 254.006 254.065 254.555 255.098 255.638 256.245 256.487 256.308 256.178 256.377 256.36 256.416 256.757 257.112 257.011 256.666 256.552 256.183 255.794 255.692 255.357 254.69 254.087 253.851 253.773 253.517 253.246 253.18 253.198 253.184 253.123 253.145 253.417 253.79 254.291 254.858 255.09 255.102 255.122 255.026 255.169 254.988 254.752 254.349 253.874 253.48 253.206 253.109 252.896 252.777 252.742 252.82 252.938 253.047 253.268 253.401 253.508 253.513 253.33 252.925 252.349 251.929 251.669 251.28 251.295 251.499 251.786 251.976 252.238 252.168 252.411 252.782 253.141 253.252 253.186 253.23 253.382 253.853 254.79 255.601 257.092 257.389 257.668 258.107 258.3 258.476 258.326 258.556 258.908 257.722 256.106 254.216 252.97 252.631 253.31 254.797 257.299 259.963 261.684 263.034 264.016 265.872 268.575 270.749 271.981 272.902 273.248 273.127 272.691 271.311 270.785 270.725 270.913 271.403 272.119 273.807 275.09 275.486 275.446 275.385 275.722 276.163 276.597 276.985 277.282 276.939 277.067 277.143 277.165 277.081 276.811 276.237 275.327 273.856 272.16 269.742 267.905 267.034 266.697 266.793 266.893 267.188 267.432 267.501 267.587 267.576 267.468 267.224 266.993 266.874 266.767 266.579 266.111 265.684 265.671 265.379 265.538 265.357 265.345 264.999 264.795 264.433 263.891 263.482 263.207 262.668 262.05 261.674 261.107 260.631 260.001 259.74 259.3 258.977 258.777 258.825 258.692 258.135 257.955 257.722 257.725 257.819 257.782 257.883 257.798 257.445 257.133 256.527 255.481 254.596 253.847 253.211 252.856 252.652 252.766 252.943 253.206 253.404 253.321 253.393 253.522 253.629 253.598 253.432 253.064 252.524 251.905 251.242 250.376 249.799 249.358 249.021 248.805 248.867 248.781 248.379 247.946 247.707 247.543 247.423 247.042 246.683 246.513 246.167 245.812 245.661 245.852 245.794 245.835 245.93 246.278 246.533 246.28 246.275 246.276 246.321 246.475 246.755 247.106 247.436 247.458 247.147 246.691 246.315 246.154 246.183 246.302 246.482 246.779 247.117 247.422 247.732 248.141 248.609 249.207 249.804 250.508 251.312 252.087 252.619 253.647 254.452 254.66 254.673 254.681 254.8 254.931 255.004 255.135 255.207 255.361 255.47 255.326 255.11 254.889 254.84 254.673 254.451 254.163 253.811 253.587 253.324 253.191 253.221 253.11 253.335 253.552 253.648 253.86 254.106 254.329 254.428 254.213 254.123 253.703 253.24 253.321 253.224 253.153 252.812 252.574 252.25 252.008 251.882 251.784 251.702 251.505 251.393 251.517 251.81 252.097 252.321 252.424 252.478 252.416 252.078 251.577 251.198 250.954 250.843 250.924 251.216 251.704 251.85 251.936 252.001 252.05 252.179 252.258 252.684 252.805 252.782 252.866 253.131 253.614 254.161 254.804 255.517 256.07 256.557 256.713 256.468 256.817 258.236 258.688 257.535 255.996 254.167 252.636 251.881 252.032 252.754 253.989 255.618 257.227 259.088 260.982 261.757 262.576 262.954 263.427 264.014 265.075 266.102 266.68 267.533 269.02 269.965 270.391 270.804 271.446 272.184 272.766 273.0 273.3 273.805 274.569 275.267 275.887 276.366 276.722 276.458 276.576 276.658 276.72 276.764 276.738 276.527 275.994 275.112 273.732 272.039 269.424 267.375 266.543 266.518 266.46 266.406 266.604 266.875 266.996 266.97 266.933 266.967 266.915 266.698 266.487 266.366 266.586 266.823 266.962 266.41 266.38 266.601 266.377 266.13 266.079 265.594 264.811 264.052 263.21 262.402 261.607 260.837 260.302 260.052 259.711 259.309 258.839 258.593 258.334 257.921 257.749 257.564 257.363 257.166 257.203 256.757 256.726 256.576 256.405 256.146 255.821 255.319 254.643 253.964 253.402 252.964 252.723 252.597 252.528 252.775 252.983 253.11 253.231 253.306 253.41 253.468 253.326 253.071 252.556 252.001 251.152 250.358 249.858 249.411 248.833 248.593 248.419 248.16 247.896 247.537 247.183 246.988 246.852 246.83 246.722 246.657 246.482 245.99 245.758 245.713 245.538 245.596 245.714 245.681 245.931 245.758 245.579 245.153 245.147 245.217 245.508 245.931 246.244 246.569 246.817 246.651 246.38 246.103 245.924 245.878 245.987 246.137 246.356 246.693 246.98 247.249 247.566 247.952 248.039 248.28 248.739 248.809 249.87 250.843 251.827 252.524 252.799 253.262 253.577 253.367 253.405 253.533 253.594 253.587 253.573 253.549 253.546 253.429 253.281 253.158 253.097 253.163 253.262 253.344 253.595 253.713 253.58 253.528 253.352 253.83 253.79 253.631 253.72 253.917 253.881 253.684 253.508 253.285 252.569 252.394 252.287 252.123 251.905 251.675 251.389 251.191 251.044 250.948 250.896 250.804 250.661 250.488 250.463 250.475 250.688 250.939 251.474 251.522 251.457 251.306 251.075 250.876 250.533 249.934 250.391 250.931 251.208 250.975 251.089 251.187 251.477 251.81 251.789 251.876 252.196 252.248 252.343 252.763 252.899 253.309 253.77 254.195 254.34 254.186 254.364 255.072 256.005 257.95 258.48 257.639 256.15 254.486 252.773 251.478 250.753 250.485 250.893 251.797 253.024 254.522 256.115 257.831 260.176 261.485 262.207 262.606 262.508 262.173 262.454 263.481 265.094 267.243 269.017 270.286 271.211 271.885 272.26 272.356 272.631 273.203 273.9 274.578 275.25 275.819 276.212 275.712 275.98 276.161 276.322 276.469 276.571 276.54 276.29 275.775 274.918 273.672 272.253 270.809 269.082 267.551 266.698 266.641 266.787 267.218 267.435 267.501 267.55 267.557 268.013 268.429 268.3 268.532 268.701 268.611 268.286 267.774 267.23 267.086 266.84 266.392 266.055 265.654 265.175 264.467 263.585 262.549 261.889 261.737 261.555 261.563 261.534 260.944 260.654 259.862 259.223 258.821 258.488 258.208 257.923 257.614 257.242 256.82 256.462 256.247 255.994 255.796 255.443 254.919 254.564 254.214 253.883 253.612 253.391 253.089 252.871 252.805 252.739 252.704 252.879 252.969 252.93 252.854 252.636 252.335 251.86 251.403 250.91 250.376 249.736 249.063 248.612 248.225 247.945 247.763 247.445 247.058 246.821 246.779 246.764 246.847 246.848 246.636 246.446 246.087 245.587 245.208 244.843 244.648 244.425 244.252 244.076 243.881 243.852 243.617 243.574 243.593 243.802 244.073 244.518 244.913 245.373 245.457 245.282 245.044 244.984 244.972 245.155 246.059 246.521 246.773 246.926 247.01 246.567 246.55 246.477 246.61 246.952 247.479 248.245 249.151 250.054 250.72 251.245 251.636 252.18 252.396 252.599 252.745 252.842 252.886 252.953 252.972 252.942 252.836 252.718 252.611 252.544 252.428 252.4 252.832 252.809 252.708 252.431 251.934 251.607 251.791 252.093 251.691 252.297 252.545 252.575 252.069 251.575 251.683 251.303 251.085 250.9 250.683 250.669 250.896 250.703 250.543 250.473 250.538 250.599 250.613 250.483 250.331 250.056 249.767 249.25 249.699 249.89 250.262 250.184 250.038 249.588 249.212 248.88 248.671 249.15 250.201 250.219 250.024 250.151 250.067 250.316 250.728 250.981 251.068 251.201 251.413 251.771 252.783 253.468 253.621 253.853 254.005 253.797 253.318 253.618 254.587 255.592 256.729 257.522 257.109 255.675 254.172 252.549 250.902 249.275 248.197 247.743 247.811 248.545 249.83 251.446 253.203 254.972 256.516 257.84 258.756 259.486 260.414 260.976 260.685 261.518 263.055 265.91 268.778 270.268 271.069 271.626 271.947 272.297 272.699 273.14 273.704 274.298 274.876 275.362 274.739 275.145 275.486 275.788 276.038 276.258 276.369 276.337 276.106 275.643 274.896 274.036 273.063 272.214 271.517 270.984 270.489 269.914 269.911 269.817 269.636 269.815 270.141 270.147 270.429 270.51 270.552 270.507 270.255 269.76 268.844 267.735 266.989 266.638 266.164 265.682 265.009 263.99 263.528 263.282 263.094 263.438 263.814 263.451 263.005 262.54 262.048 261.432 260.598 259.836 259.455 259.089 258.726 258.392 258.109 257.871 257.586 257.25 257.003 256.531 256.029 255.619 255.106 254.622 254.213 253.896 253.638 253.43 253.298 253.152 252.959 252.839 252.804 252.783 252.77 252.687 252.576 252.324 252.076 251.735 251.306 250.84 250.282 249.784 249.32 248.653 248.024 247.573 247.391 247.291 247.062 246.964 246.811 246.874 246.847 246.752 246.438 246.054 245.694 245.055 244.398 243.859 243.574 243.283 243.202 243.083 243.086 243.263 243.274 243.397 243.353 243.455 243.701 243.925 244.017 244.016 243.997 244.153 244.349 244.5 244.582 244.666 244.845 244.927 244.885 244.968 245.143 245.668 246.495 247.005 246.896 246.818 247.069 247.62 248.318 248.999 249.654 250.347 250.925 251.329 251.61 251.861 252.199 252.684 252.71 253.084 253.134 253.219 253.178 253.03 252.754 252.357 252.044 251.748 251.777 251.717 251.659 251.538 251.386 251.167 250.775 250.417 249.998 249.61 249.716 249.579 249.562 249.368 249.328 249.421 249.219 249.195 249.148 249.355 249.489 249.684 249.743 249.758 249.802 249.864 249.794 249.725 249.211 248.487 248.043 247.82 247.551 247.56 248.312 248.502 247.564 247.027 247.377 248.138 248.692 249.087 249.142 249.149 249.264 249.295 249.396 249.524 249.656 249.766 249.997 250.314 250.761 251.367 252.02 252.89 253.297 253.475 253.376 252.848 252.728 253.283 254.06 255.621 257.192 256.56 255.749 254.685 253.412 252.016 250.278 248.4 246.87 245.844 245.291 245.414 246.182 247.475 249.193 251.211 253.077 254.764 256.054 257.096 257.875 258.765 259.862 259.68 260.529 262.122 265.401 268.398 269.723 270.536 271.183 271.637 271.996 272.353 272.755 273.24 273.759 274.249 273.72 274.14 274.542 274.916 275.245 275.525 275.741 275.874 275.9 275.802 275.558 275.167 274.722 274.308 273.911 273.537 273.162 272.834 272.567 272.362 272.23 272.132 272.082 272.064 272.098 272.153 272.146 272.04 271.784 271.419 270.805 269.917 268.66 267.431 266.605 265.813 265.261 264.858 264.244 263.789 263.919 263.572 263.154 262.7 262.311 261.789 261.401 261.192 260.905 260.423 259.796 259.681 259.418 259.117 259.204 259.125 258.815 258.688 258.128 257.428 256.847 256.169 255.508 254.929 254.458 254.067 253.735 253.534 253.373 253.224 253.122 253.012 252.862 252.708 252.543 252.386 252.098 251.815 251.519 251.113 250.745 250.341 249.922 249.604 249.291 249.108 248.859 248.663 248.349 247.949 247.683 247.623 247.424 247.695 247.567 247.12 246.674 246.135 245.489 245.102 244.716 244.292 243.856 243.736 243.673 243.88 243.962 243.855 243.97 243.934 243.841 243.829 243.707 243.673 243.807 243.994 244.07 244.215 244.41 244.621 244.836 244.956 244.891 244.655 244.51 244.461 244.483 244.615 245.054 245.335 245.769 246.089 246.488 247.096 247.702 248.287 248.799 249.35 249.879 250.24 250.604 251.027 251.394 251.618 251.687 251.944 252.138 252.217 252.313 252.413 252.379 252.228 252.093 251.891 251.731 251.53 251.316 251.069 250.862 250.633 250.396 250.168 249.93 249.807 249.663 249.385 248.99 248.912 249.171 248.969 248.75 248.563 248.283 248.144 248.148 248.214 248.248 248.159 248.241 248.01 247.986 247.11 246.317 246.38 246.968 247.048 246.914 246.881 246.843 246.257 245.64 245.436 246.117 247.37 247.542 247.613 247.671 247.761 247.938 248.144 248.395 248.686 249.281 249.59 249.821 250.233 250.728 251.326 251.888 252.353 252.521 252.391 252.071 251.788 251.962 252.547 253.562 255.933 255.48 254.804 253.976 253.185 252.197 251.047 249.642 248.082 246.658 245.498 244.705 244.407 244.701 245.56 247.076 248.845 250.88 252.551 253.933 255.153 256.109 256.895 257.624 258.186 258.779 260.081 262.548 265.769 267.68 268.966 269.933 270.657 271.226 271.681 272.066 272.456 272.862 273.289 272.686 273.132 273.541 273.912 274.254 274.502 274.717 274.863 274.937 274.973 274.935 274.878 274.764 274.622 274.434 274.276 274.134 274.02 273.876 273.73 273.565 273.4 273.236 273.096 272.98 272.829 272.638 272.423 272.206 271.934 271.546 271.023 270.29 269.155 267.792 266.63 265.888 265.41 265.031 264.324 263.717 263.389 263.018 262.707 262.222 261.851 261.516 261.237 261.104 260.933 260.806 260.795 260.665 260.504 260.411 260.237 259.954 259.619 259.09 258.434 257.978 257.15 256.083 255.393 254.818 254.289 253.833 253.481 253.175 252.87 252.564 252.356 252.17 252.082 251.822 251.45 251.265 250.836 250.459 250.255 250.116 250.458 250.5 250.448 250.714 251.023 251.016 250.705 250.403 250.181 249.894 249.615 249.549 249.122 248.543 248.013 247.467 246.706 245.963 245.135 244.804 244.505 244.886 244.677 244.391 244.36 244.394 244.509 244.719 244.921 245.025 245.076 245.097 245.13 245.205 245.312 245.382 245.387 245.396 245.449 245.416 245.233 245.011 244.858 244.812 244.787 244.791 244.845 244.975 245.295 245.741 246.172 246.497 246.743 247.024 247.371 247.756 248.112 248.375 248.602 249.056 249.477 249.727 249.773 250.065 250.368 250.576 250.713 250.919 251.028 250.992 250.957 250.858 250.633 250.391 250.089 249.692 249.368 249.186 248.998 248.924 248.857 248.801 248.736 248.56 248.27 247.905 247.464 247.92 247.813 247.401 247.259 247.04 246.693 246.44 246.22 246.031 245.851 245.52 245.129 244.832 244.507 243.691 243.467 243.724 244.104 244.012 243.894 244.37 244.684 244.971 244.477 243.845 244.187 244.638 244.768 244.716 245.42 246.297 246.793 246.809 248.061 248.702 249.334 249.89 250.271 250.545 250.854 251.169 251.327 251.231 250.981 250.891 250.92 251.082 251.517 253.502 254.408 253.833 253.06 252.232 251.248 250.31 249.401 248.125 246.941 245.892 245.087 244.51 244.218 244.301 245.042 246.232 247.629 249.204 250.664 251.982 253.025 253.921 254.666 255.493 256.565 257.008 257.968 259.345 261.246 263.841 265.981 267.535 268.724 269.596 270.296 270.907 271.375 271.833 272.284 271.2 271.734 272.311 272.745 273.061 273.31 273.382 273.398 273.293 273.132 272.956 272.725 272.48 271.994 271.602 271.535 271.946 272.203 272.524 272.688 272.804 272.812 272.766 272.663 272.516 272.332 272.126 271.909 271.702 271.491 271.226 270.873 270.41 269.75 268.81 267.746 266.796 266.113 265.602 265.133 264.453 263.829 263.249 262.769 262.313 262.021 261.892 261.655 261.353 260.959 260.664 260.565 260.423 260.336 260.287 260.174 259.958 259.676 259.346 258.931 258.489 257.884 257.122 255.993 255.314 254.78 254.171 253.592 253.143 252.677 252.237 251.931 251.677 251.416 251.193 250.895 250.697 250.543 250.392 250.366 250.453 251.438 251.982 252.022 251.974 251.795 251.525 251.233 250.958 250.669 250.324 249.915 249.459 248.971 248.466 247.942 247.386 246.504 245.845 245.348 244.834 244.478 244.773 244.665 244.57 244.612 244.77 245.438 245.993 245.892 245.834 245.934 246.068 246.202 246.314 246.382 246.383 246.267 246.048 245.807 245.571 245.428 245.335 245.32 245.365 245.442 245.441 245.527 245.719 245.975 246.269 246.527 246.743 246.926 247.089 247.238 247.352 247.479 247.634 247.838 247.975 247.996 247.975 248.112 248.355 248.506 248.527 248.587 248.764 248.879 248.843 248.94 249.03 248.849 248.663 248.478 248.208 248.001 247.89 247.819 247.756 247.71 247.691 247.601 247.338 247.026 246.76 246.395 246.179 246.109 245.999 245.757 245.526 245.65 245.679 245.455 245.391 244.915 244.107 243.601 242.833 242.12 241.594 241.633 242.047 242.252 241.993 241.848 242.269 242.888 243.211 243.354 243.363 243.688 243.632 243.753 244.161 244.64 244.98 246.339 246.858 247.436 248.163 248.793 249.311 249.779 250.108 250.249 250.211 250.091 249.845 249.684 249.661 249.556 251.152 252.983 253.235 252.836 252.161 251.366 250.409 249.468 248.473 247.464 246.379 245.475 244.632 244.014 243.62 243.469 243.772 244.511 245.529 246.734 247.996 249.188 250.216 251.086 251.853 252.499 253.079 253.644 254.467 254.599 255.605 257.323 258.773 260.45 262.564 264.361 265.888 267.208 268.1 269.067 269.807 270.465 268.388 269.232 270.07 270.583 271.059 271.224 271.279 271.11 270.824 270.425 269.876 269.121 267.576 266.15 265.837 266.456 266.935 267.666 268.316 269.087 269.765 270.134 270.514 270.623 270.717 270.605 270.529 270.428 270.347 270.279 270.116 269.94 269.696 269.369 268.986 268.464 267.723 266.901 266.207 265.584 265.036 264.603 264.039 263.574 263.446 263.067 262.506 261.99 261.552 261.379 261.024 260.506 260.093 259.751 259.522 259.334 259.116 258.925 258.782 258.597 258.368 258.061 257.677 257.095 256.487 255.85 255.183 254.391 253.634 253.238 252.885 252.331 251.878 251.642 251.495 251.421 251.883 251.945 251.815 251.832 252.439 252.753 252.635 252.373 252.077 251.743 251.393 251.058 250.746 250.44 250.124 249.728 249.336 248.96 248.58 248.18 247.722 247.288 247.056 246.811 246.551 246.358 246.764 246.718 246.464 246.235 246.104 246.137 246.383 246.562 246.696 246.873 247.012 247.107 247.117 247.03 246.858 246.611 246.303 246.087 246.061 246.077 246.079 246.116 246.168 246.246 246.357 246.466 246.559 246.662 246.739 246.831 246.917 246.981 247.102 247.212 247.155 247.036 246.984 247.06 247.099 247.03 246.936 247.015 247.08 247.098 247.047 247.065 247.053 246.987 246.883 246.952 247.015 246.917 246.845 246.824 246.763 246.719 246.688 246.604 246.548 246.516 246.387 246.224 246.065 245.93 245.783 245.565 245.518 245.979 246.078 245.723 245.328 244.582 243.984 243.311 242.37 242.102 241.748 241.25 240.398 239.97 239.996 240.125 240.144 240.514 240.755 240.932 241.099 241.238 242.014 241.86 242.19 242.549 242.427 241.955 242.285 243.159 243.836 245.234 245.65 246.48 246.932 247.649 248.238 248.724 248.96 249.867 249.908 250.15 250.132 250.07 250.297 250.555 251.468 251.286 250.885 250.362 249.661 248.908 248.068 247.223 246.338 245.534 244.76 244.116 243.597 243.27 243.091 243.126 243.556 244.316 245.215 246.227 247.243 248.187 249.035 249.804 250.422 250.968 251.45 251.921 252.08 251.475 252.313 253.11 254.585 255.711 256.675 258.077 259.555 261.166 262.917 264.454 266.022 267.216 262.979 264.855 265.792 266.849 267.37 267.762 267.865 267.78 267.501 267.023 265.72 263.265 262.543 262.552 263.114 263.185 262.846 262.626 263.337 264.039 264.87 265.69 266.025 266.535 266.622 266.917 267.05 267.34 267.746 267.93 268.169 268.226 268.191 268.131 267.957 267.73 267.43 267.046 266.568 266.067 265.571 265.008 264.469 263.972 263.471 262.945 262.414 261.808 261.122 260.451 259.983 259.631 259.257 258.877 258.544 258.246 257.931 257.62 257.443 257.3 257.124 256.894 256.622 256.315 255.916 255.452 254.881 254.189 253.378 252.658 252.268 252.285 252.514 252.477 252.451 253.348 253.719 253.643 253.54 253.415 253.203 252.933 252.626 252.309 251.968 251.615 251.274 250.906 250.556 250.223 249.902 249.541 249.08 248.685 248.34 248.053 247.809 247.586 247.348 247.047 246.754 246.636 246.577 246.527 246.476 246.464 246.605 246.736 246.932 247.082 247.209 247.326 247.446 247.542 247.59 247.455 247.213 246.963 246.741 246.612 246.499 246.477 246.489 246.481 246.507 246.58 246.678 246.745 246.83 246.907 246.96 247.001 246.978 246.983 247.019 246.972 246.893 246.749 246.574 246.458 246.301 246.086 245.889 245.824 245.727 245.568 245.47 245.57 245.556 245.37 245.226 245.235 245.263 245.232 245.304 245.394 245.324 245.273 245.23 245.109 244.992 244.898 244.802 244.782 244.809 244.703 244.641 244.535 244.393 244.303 244.095 244.02 243.798 243.421 242.637 241.764 241.619 241.465 239.856 239.724 239.436 238.764 238.605 238.218 238.541 239.02 238.997 239.399 239.401 240.031 240.019 239.941 240.181 240.644 241.758 242.786 242.932 243.402 244.045 244.681 245.152 245.465 245.411 245.936 246.707 247.103 248.587 249.127 249.405 249.618 249.729 249.819 249.841 249.741 249.531 249.136 248.625 248.012 247.429 246.818 246.198 245.595 245.04 244.585 244.199 243.906 243.712 243.642 243.704 243.953 244.399 244.973 245.636 246.323 247.015 247.722 248.385 249.012 249.522 249.936 250.307 250.608 251.326 251.322 251.094 251.066 252.005 252.441 253.534 253.819 255.156 255.791 257.273 258.504 259.866 261.763 257.668 257.917 259.725 260.142 261.57 262.049 262.572 262.826 261.987 260.505 259.853 259.683 259.489 259.273 259.358 259.694 259.93 260.389 260.554 260.769 261.132 261.867 262.459 262.926 263.503 263.747 264.175 264.533 264.754 265.126 265.212 265.308 265.51 265.409 265.292 265.215 264.909 264.6 264.302 263.876 263.468 263.043 262.543 262.057 261.598 261.073 260.555 260.074 259.608 259.188 258.764 258.343 257.918 257.534 257.246 256.986 256.686 256.367 256.142 255.975 255.756 255.468 255.147 254.907 254.707 254.428 253.949 253.319 252.596 252.847 252.863 252.952 253.597 253.797 253.552 253.603 253.712 253.419 253.119 252.824 252.557 252.325 252.095 251.818 251.54 251.185 250.796 250.441 250.083 249.696 249.294 248.916 248.564 248.257 247.971 247.688 247.457 247.26 247.076 246.859 246.69 246.637 246.627 246.651 246.71 246.82 246.958 247.027 247.052 247.063 247.103 247.128 247.165 247.203 247.27 247.266 247.197 247.071 246.942 246.811 246.69 246.613 246.545 246.439 246.321 246.219 246.149 246.104 246.084 246.047 245.992 245.932 246.027 246.219 246.33 246.364 246.301 246.164 246.124 246.057 245.943 245.806 245.699 245.597 245.476 245.326 245.224 245.163 245.049 244.819 244.585 244.47 244.359 244.165 244.072 244.119 244.035 243.838 243.882 243.845 243.568 243.577 243.665 243.564 243.645 243.778 243.642 243.594 243.486 243.259 243.104 242.766 242.469 242.198 241.666 241.279 240.999 240.958 240.789 240.615 240.533 240.406 240.417 240.451 240.319 240.209 240.539 240.686 240.771 240.547 240.356 240.615 240.875 240.987 241.287 241.58 241.853 242.297 242.738 243.232 243.836 244.478 244.327 244.475 244.036 243.686 244.276 244.333 245.473 246.085 246.788 248.452 248.564 248.606 248.574 248.417 248.162 247.866 247.573 247.267 246.976 246.708 246.459 246.261 246.095 246.021 245.995 246.05 246.139 246.315 246.553 246.785 247.053 247.353 247.656 247.967 248.265 248.538 248.753 248.969 249.123 249.349 250.242 251.806 251.404 250.888 250.812 250.826 251.162 251.302 252.208 252.302 253.839 253.88 255.81 255.917 253.614 253.822 254.39 254.974 255.057 256.176 256.111 256.428 256.557 256.501 256.522 256.415 256.462 256.484 256.346 256.318 256.304 256.482 256.893 257.296 257.749 258.179 258.77 259.063 259.394 259.746 259.956 260.249 260.366 260.418 260.547 260.361 260.219 260.376 260.223 260.168 260.491 260.533 260.346 260.284 260.047 259.68 259.396 258.97 258.704 258.329 257.964 257.587 257.25 256.957 256.712 256.409 256.121 255.89 255.736 255.56 255.345 255.176 255.005 254.836 254.643 254.384 254.116 253.971 253.784 253.482 253.161 252.87 252.717 252.67 252.9 253.351 253.334 253.208 253.04 252.825 252.588 252.324 251.995 251.723 251.498 251.303 251.095 250.877 250.587 250.303 250.037 249.764 249.487 249.217 248.938 248.556 248.192 247.942 247.734 247.516 247.241 247.066 246.919 246.786 246.656 246.606 246.562 246.517 246.56 246.614 246.652 246.668 246.653 246.58 246.494 246.435 246.405 246.428 246.474 246.541 246.561 246.533 246.463 246.348 246.212 246.067 245.947 245.782 245.634 245.528 245.438 245.373 245.327 245.317 245.311 245.354 245.475 245.615 245.756 245.854 245.862 245.863 245.883 245.868 245.812 245.754 245.733 245.673 245.565 245.422 245.269 245.092 244.885 244.641 244.39 244.207 244.053 243.892 243.724 243.623 243.577 243.432 243.247 243.2 243.173 243.075 243.124 243.337 243.53 243.562 243.489 243.318 243.128 242.917 242.606 242.381 242.219 242.009 241.851 241.635 241.336 241.001 240.676 240.385 240.126 239.936 239.71 239.608 239.603 239.728 239.753 239.916 240.612 240.68 240.65 240.584 240.478 240.374 240.391 240.444 240.509 240.632 240.803 241.044 241.326 241.685 242.056 242.484 242.898 243.4 243.769 244.002 244.635 245.331 245.786 246.171 246.585 246.908 247.166 247.382 247.556 247.716 247.846 247.959 248.025 248.067 248.105 248.097 248.079 248.11 248.123 248.099 248.07 247.966 247.86 247.711 247.666 247.563 247.539 247.474 247.382 247.362 247.359 247.396 247.472 247.678 247.872 248.064 249.114 250.058 250.531 250.278 249.928 249.946 250.109 250.587 250.927 251.414 252.382 252.484 250.161 250.529 251.401 251.581 251.82 252.454 252.49 252.715 253.093 253.084 253.305 253.584 253.558 253.725 253.834 253.788 254.092 254.351 254.354 254.73 255.039 255.094 255.426 255.75 255.943 256.166 256.369 256.641 256.778 256.839 256.961 257.119 257.13 257.024 257.08 256.965 256.649 256.422 256.259 255.802 255.387 255.27 255.118 254.826 254.651 254.755 254.652 254.418 254.255 254.292 254.198 254.049 253.879 253.844 253.763 253.616 253.459 253.272 253.171 253.059 252.9 252.699 252.56 252.426 252.297 252.174 252.035 251.949 251.906 251.895 251.896 251.842 251.778 251.695 251.558 251.379 251.141 250.94 250.828 250.654 250.449 250.244 250.007 249.776 249.559 249.356 249.121 248.872 248.653 248.474 248.265 248.031 247.848 247.569 247.264 247.097 246.91 246.611 246.485 246.363 246.119 246.053 245.991 245.921 245.877 245.82 245.716 245.594 245.478 245.389 245.314 245.236 245.188 245.189 245.216 245.259 245.3 245.3 245.263 245.229 245.141 245.007 244.865 244.821 244.829 244.821 244.807 244.788 244.756 244.716 244.689 244.756 244.898 245.042 245.113 245.158 245.224 245.307 245.336 245.32 245.239 245.139 245.028 244.932 244.788 244.621 244.42 244.242 244.138 243.981 243.787 243.568 243.437 243.334 243.186 243.014 242.903 242.848 242.796 242.764 242.796 242.86 242.956 243.056 243.065 243.008 242.878 242.818 242.705 242.488 242.261 242.04 241.811 241.56 241.292 241.036 240.874 240.595 240.318 240.216 239.948 239.618 239.559 239.391 239.221 239.219 239.23 239.254 239.262 239.311 239.373 239.38 239.925 240.265 240.191 240.183 240.291 240.243 240.141 240.211 240.258 240.353 240.445 240.628 240.859 241.116 241.352 241.647 241.957 242.238 242.561 242.83 242.788 242.838 242.822 242.714 242.954 243.433 243.871 242.811 243.083 245.432 245.771 245.861 245.844 245.859 245.847 245.798 245.714 245.628 245.519 245.374 245.227 245.085 244.974 244.853 244.792 244.769 244.786 244.84 244.966 244.896 244.237 243.902 244.518 245.274 245.573 246.105 246.751 247.395 247.959 248.426 248.788 249.017 249.349 249.909 247.527 247.697 247.863 248.165 248.448 248.537 248.827 249.461 249.601 249.644 250.067 250.368 250.379 250.394 250.899 250.897 250.883 251.103 251.38 251.327 251.38 251.631 251.701 251.627 251.885 252.075 252.195 252.287 252.498 252.547 252.595 252.807 252.716 252.66 252.715 252.859 252.742 252.618 252.587 252.623 252.483 252.357 252.252 252.277 252.209 252.055 251.973 251.945 251.924 251.807 251.697 251.603 251.61 251.51 251.336 251.177 250.995 250.899 250.752 250.577 250.34 250.16 249.969 249.913 249.896 249.812 249.708 249.624 249.554 249.561 249.619 249.694 249.675 249.595 249.483 249.303 249.138 248.988 248.795 248.693 248.681 248.624 248.509 248.383 248.326 248.234 248.029 247.802 247.651 247.518 247.21 246.984 246.639 246.401 246.188 245.866 245.738 245.472 245.275 245.133 244.844 244.806 244.757 244.701 244.658 244.604 244.56 244.488 244.435 244.411 244.486 244.436 244.368 244.377 244.409 244.409 244.355 244.36 244.429 244.461 244.42 244.407 244.501 244.541 244.527 244.508 244.464 244.416 244.391 244.371 244.377 244.411 244.531 244.645 244.742 244.781 244.762 244.682 244.598 244.5 244.414 244.313 244.174 243.995 243.868 243.751 243.676 243.565 243.374 243.224 243.098 242.974 242.807 242.605 242.45 242.336 242.28 242.195 242.154 242.138 242.187 242.23 242.202 242.13 242.05 241.96 241.885 241.82 241.778 241.668 241.55 241.353 241.127 241.003 240.868 240.588 240.394 240.374 240.222 239.874 239.788 239.784 239.594 239.414 239.412 239.409 239.127 239.09 239.09 239.047 238.989 238.993 238.998 238.921 238.835 238.829 238.741 238.714 238.75 239.12 239.795 239.849 239.722 239.668 239.799 239.647 239.381 239.239 239.139 238.839 238.587 238.385 238.135 238.005 237.944 237.981 237.912 237.728 237.572 237.315 237.151 237.175 237.333 239.45 239.982 240.068 240.14 240.152 240.101 240.039 239.771 239.651 239.471 239.792 241.558 241.639 241.57 241.688 241.727 241.485 241.392 241.481 241.779 242.219 242.743 243.243 243.687 244.038 244.484 245.023 245.444 245.823 246.225 246.557 246.822 247.156 245.201 245.304 245.426 245.586 245.812 246.044 246.113 246.274 246.566 246.93 247.054 247.091 247.177 247.468 247.664 247.681 247.692 247.723 248.167 248.155 248.133 248.113 248.49 248.84 248.812 248.778 248.919 249.161 249.296 249.273 249.307 249.452 249.473 249.458 249.426 249.527 249.498 249.387 249.271 249.267 249.344 249.256 249.16 249.057 249.049 249.136 249.079 248.975 248.852 248.787 248.842 248.858 248.795 248.667 248.544 248.425 248.406 248.304 248.172 248.011 247.878 247.748 247.723 247.726 247.742 247.711 247.681 247.624 247.573 247.531 247.523 247.511 247.479 247.426 247.368 247.281 247.208 247.13 247.001 246.923 246.894 246.924 246.971 246.992 246.961 246.816 246.669 246.516 246.307 246.093 245.877 245.615 245.353 245.137 244.916 244.792 244.536 244.452 244.206 244.16 244.019 244.006 243.929 243.909 243.82 243.787 243.724 243.693 243.66 243.641 243.591 243.515 243.447 243.452 243.451 243.467 243.476 243.498 243.507 243.506 243.533 243.572 243.651 243.709 243.765 243.752 243.712 243.668 243.628 243.583 243.529 243.488 243.48 243.532 243.568 243.578 243.521 243.439 243.362 243.351 243.32 243.274 243.2 243.073 242.91 242.818 242.768 242.735 242.669 242.561 242.419 242.344 242.303 242.274 242.223 242.137 242.067 242.005 241.955 241.909 241.869 241.842 241.791 241.738 241.685 241.625 241.584 241.472 241.317 241.122 241.059 241.043 240.863 240.638 240.52 240.518 240.517 240.253 239.932 239.929 239.928 239.927 239.564 239.487 239.486 239.484 239.365 239.15 239.104 239.098 239.057 238.913 238.803 238.745 238.735 238.699 238.672 238.668 238.662 238.665 238.603 238.534 238.459 238.414 238.308 238.108 237.925 237.816 237.755 237.731 237.675 237.6 237.53 237.506 237.498 237.492 237.449 237.455 237.392 237.301 237.299 237.244 237.357 237.142 236.868 237.021 236.729 236.8 236.796 236.901 236.976 237.089 237.096 237.553 237.752 238.051 238.332 238.643 239.029 239.436 239.91 240.371 240.8 241.226 241.686 242.155 242.614 243.042 243.379 243.649 243.932 244.221 244.46 244.628 244.802 244.996 243.896 243.948 244.014 244.101 244.217 244.366 244.486 244.581 244.715 244.86 245.038 245.296 245.51 245.562 245.601 245.708 245.98 246.407 246.562 246.574 246.584 246.591 246.598 246.961 246.999 246.992 246.982 246.968 246.987 247.078 247.169 247.176 247.158 247.139 247.203 247.221 247.199 247.187 247.181 247.159 247.181 247.162 247.112 247.05 246.983 246.929 246.947 246.962 246.89 246.799 246.704 246.63 246.586 246.577 246.559 246.514 246.441 246.349 246.263 246.187 246.162 246.17 246.171 246.157 246.115 246.051 245.972 245.892 245.819 245.745 245.743 245.733 245.723 245.703 245.677 245.657 245.634 245.597 245.534 245.456 245.334 245.28 245.278 245.264 245.189 245.106 245.033 244.915 244.836 244.694 244.611 244.491 244.379 244.191 244.117 244.053 244.003 243.954 243.84 243.84 243.661 243.65 243.534 243.419 243.36 243.167 243.118 243.128 243.108 243.016 242.914 242.822 242.78 242.782 242.809 242.823 242.847 242.827 242.783 242.757 242.755 242.745 242.737 242.718 242.674 242.62 242.551 242.474 242.395 242.317 242.239 242.207 242.186 242.182 242.189 242.182 242.158 242.107 242.025 241.919 241.856 241.851 241.864 241.886 241.913 241.904 241.865 241.814 241.811 241.829 241.864 241.905 241.945 241.952 241.974 242.011 242.035 242.042 242.026 241.978 241.93 241.91 241.824 241.719 241.583 241.417 241.296 241.289 241.285 241.235 240.923 240.575 240.487 240.488 240.489 240.49 240.47 239.705 239.674 239.673 239.672 239.669 239.566 239.179 238.942 238.849 238.839 238.827 238.776 238.727 238.71 238.71 238.71 238.711 238.734 238.766 238.789 238.796 238.799 238.781 238.714 238.627 238.538 238.465 238.416 238.387 238.355 238.318 238.335 238.368 238.386 238.411 238.434 238.448 238.454 238.429 238.383 238.344 238.328 238.33 238.396 238.458 238.399 238.487 238.635 238.571 238.609 238.665 238.643 238.681 238.647 238.698 238.753 238.846 238.994 239.118 239.281 239.513 239.768 240.043 240.351 240.656 240.942 241.24 241.543 241.832 242.111 242.373 242.615 242.832 243.008 243.158 243.309 243.465 243.637 243.793 243.027 243.121 243.215 243.298 243.368 243.419 243.496 243.562 243.623 243.679 243.735 243.799 243.877 243.972 244.066 244.114 244.135 244.156 244.183 244.243 244.356 244.516 244.772 244.915 244.923 244.928 244.931 244.931 244.929 244.924 244.937 245.102 245.223 245.241 245.222 245.21 245.197 245.183 245.178 245.221 245.192 245.138 245.081 245.036 244.986 244.935 244.905 244.923 244.95 244.921 244.866 244.801 244.736 244.697 244.669 244.643 244.62 244.643 244.674 244.691 244.7 244.696 244.695 244.677 244.646 244.607 244.559 244.508 244.48 244.468 244.465 244.471 244.473 244.478 244.487 244.49 244.485 244.466 244.426 244.374 244.326 244.258 244.148 244.058 244.011 243.949 243.896 243.863 243.838 243.818 243.803 243.748 243.705 243.655 243.584 243.573 243.503 243.389 243.385 243.386 243.187 243.175 243.168 242.974 242.836 242.802 242.665 242.541 242.452 242.387 242.345 242.292 242.226 242.176 242.133 242.079 242.03 241.979 241.926 241.881 241.844 241.823 241.807 241.786 241.763 241.742 241.713 241.676 241.645 241.61 241.564 241.515 241.473 241.436 241.397 241.361 241.324 241.277 241.232 241.193 241.159 241.13 241.112 241.102 241.113 241.13 241.157 241.186 241.222 241.25 241.265 241.259 241.232 241.218 241.22 241.223 241.207 241.18 241.151 241.113 241.051 240.926 240.898 240.898 240.897 240.898 240.905 240.859 240.528 240.183 240.128 240.13 240.131 240.131 240.131 240.13 240.129 239.96 239.571 239.341 239.201 239.109 239.092 239.088 239.086 239.043 238.955 238.888 238.85 238.827 238.811 238.8 238.792 238.782 238.776 238.774 238.771 238.77 238.777 238.783 238.79 238.798 238.811 238.815 238.811 238.826 238.852 238.89 238.922 238.953 238.989 239.028 239.069 239.104 239.138 239.167 239.2 239.241 239.278 239.349 239.425 239.468 239.51 239.599 239.593 239.685 239.778 239.785 239.783 239.783 239.817 239.864 239.94 239.969 240.018 240.105 240.184 240.302 240.442 240.563 240.682 240.813 240.956 241.103 241.269 241.437 241.6 241.766 241.94 242.144 242.33 242.487 242.63 242.754 242.857 242.939 241.341 241.372 241.388 241.422 241.467 241.521 241.572 241.62 241.668 241.713 241.758 241.816 241.874 241.93 241.986 242.043 242.084 242.092 242.039 242.033 242.04 242.051 242.072 242.091 242.108 242.122 242.134 242.143 242.151 242.158 242.163 242.169 242.209 242.551 242.657 242.648 242.637 242.623 242.608 242.59 242.581 242.574 242.567 242.558 242.549 242.539 242.527 242.56 242.637 242.695 242.711 242.709 242.707 242.696 242.681 242.661 242.637 242.609 242.577 242.552 242.538 242.523 242.505 242.483 242.476 242.504 242.538 242.566 242.588 242.597 242.598 242.598 242.597 242.574 242.542 242.503 242.461 242.428 242.385 242.333 242.27 242.203 242.158 242.107 242.042 241.962 241.883 241.84 241.778 241.694 241.579 241.511 241.488 241.455 241.453 241.464 241.467 241.468 241.468 241.468 241.313 241.305 241.305 241.304 241.295 241.227 241.172 241.141 241.119 241.099 241.077 241.06 241.045 241.029 241.012 240.995 240.98 240.966 240.952 240.929 240.906 240.884 240.864 240.845 240.835 240.826 240.817 240.805 240.784 240.756 240.727 240.697 240.661 240.622 240.579 240.535 240.511 240.502 240.494 240.485 240.476 240.469 240.466 240.463 240.459 240.454 240.45 240.444 240.436 240.425 240.41 240.38 240.344 240.321 240.322 240.323 240.323 240.324 240.324 240.325 240.326 240.331 240.336 240.34 240.343 240.346 240.287 240.032 239.979 239.974 239.971 239.969 239.967 239.966 239.965 239.965 239.964 239.963 239.963 239.963 239.963 239.949 239.849 239.773 239.72 239.685 239.659 239.641 239.629 239.623 239.616 239.61 239.611 239.613 239.617 239.623 239.629 239.628 239.604 239.581 239.573 239.567 239.558 239.556 239.557 239.56 239.562 239.562 239.563 239.567 239.572 239.573 239.576 239.58 239.576 239.565 239.552 239.537 239.535 239.541 239.55 239.562 239.577 239.627 239.719 239.744 239.744 239.744 239.943 239.955 239.955 239.954 239.947 239.95 239.967 240.007 240.058 240.096 240.134 240.201 240.262 240.312 240.365 240.439 240.505 240.563 240.635 240.725 240.807 240.883 240.96 241.035 241.101 241.161 241.21 241.273 diff --git a/Test/tas_mytest_reorder.asc b/Test/tas_mytest_reorder.asc deleted file mode 100644 index 8d2339656dafef3f2953bd0d03392774fd145086..0000000000000000000000000000000000000000 --- a/Test/tas_mytest_reorder.asc +++ /dev/null @@ -1,19 +0,0 @@ -tas -K -3 -3 -256 -128 -time -days since 0000-1-1 -682565.5 682595.0 682624.5 -682550.0 682581.0 682581.0 682609.0 682609.0 682640.0 -longitude -degrees_east -0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.65625 14.0625 15.46875 16.875 18.28125 19.6875 21.09375 22.5 23.90625 25.3125 26.71875 28.125 29.53125 30.9375 32.34375 33.75 35.15625 36.5625 37.96875 39.375 40.78125 42.1875 43.59375 45.0 46.40625 47.8125 49.21875 50.625 52.03125 53.4375 54.84375 56.25 57.65625 59.0625 60.46875 61.875 63.28125 64.6875 66.09375 67.5 68.90625 70.3125 71.71875 73.125 74.53125 75.9375 77.34375 78.75 80.15625 81.5625 82.96875 84.375 85.78125 87.1875 88.59375 90.0 91.40625 92.8125 94.21875 95.625 97.03125 98.4375 99.84375 101.25 102.65625 104.0625 105.46875 106.875 108.28125 109.6875 111.09375 112.5 113.90625 115.3125 116.71875 118.125 119.53125 120.9375 122.34375 123.75 125.15625 126.5625 127.96875 129.375 130.78125 132.1875 133.59375 135.0 136.40625 137.8125 139.21875 140.625 142.03125 143.4375 144.84375 146.25 147.65625 149.0625 150.46875 151.875 153.28125 154.6875 156.09375 157.5 158.90625 160.3125 161.71875 163.125 164.53125 165.9375 167.34375 168.75 170.15625 171.5625 172.96875 174.375 175.78125 177.1875 178.59375 180.0 181.40625 182.8125 184.21875 185.625 187.03125 188.4375 189.84375 191.25 192.65625 194.0625 195.46875 196.875 198.28125 199.6875 201.09375 202.5 203.90625 205.3125 206.71875 208.125 209.53125 210.9375 212.34375 213.75 215.15625 216.5625 217.96875 219.375 220.78125 222.1875 223.59375 225.0 226.40625 227.8125 229.21875 230.625 232.03125 233.4375 234.84375 236.25 237.65625 239.0625 240.46875 241.875 243.28125 244.6875 246.09375 247.5 248.90625 250.3125 251.71875 253.125 254.53125 255.9375 257.34375 258.75 260.15625 261.5625 262.96875 264.375 265.78125 267.1875 268.59375 270.0 271.40625 272.8125 274.21875 275.625 277.03125 278.4375 279.84375 281.25 282.65625 284.0625 285.46875 286.875 288.28125 289.6875 291.09375 292.5 293.90625 295.3125 296.71875 298.125 299.53125 300.9375 302.34375 303.75 305.15625 306.5625 307.96875 309.375 310.78125 312.1875 313.59375 315.0 316.40625 317.8125 319.21875 320.625 322.03125 323.4375 324.84375 326.25 327.65625 329.0625 330.46875 331.875 333.28125 334.6875 336.09375 337.5 338.90625 340.3125 341.71875 343.125 344.53125 345.9375 347.34375 348.75 350.15625 351.5625 352.96875 354.375 355.78125 357.1875 358.59375 --0.703125 0.703125 0.703125 2.109375 2.109375 3.515625 3.515625 4.921875 4.921875 6.328125 6.328125 7.734375 7.734375 9.140625 9.140625 10.546875 10.546875 11.953125 11.953125 13.359375 13.359375 14.765625 14.765625 16.171875 16.171875 17.578125 17.578125 18.984375 18.984375 20.390625 20.390625 21.796875 21.796875 23.203125 23.203125 24.609375 24.609375 26.015625 26.015625 27.421875 27.421875 28.828125 28.828125 30.234375 30.234375 31.640625 31.640625 33.046875 33.046875 34.453125 34.453125 35.859375 35.859375 37.265625 37.265625 38.671875 38.671875 40.078125 40.078125 41.484375 41.484375 42.890625 42.890625 44.296875 44.296875 45.703125 45.703125 47.109375 47.109375 48.515625 48.515625 49.921875 49.921875 51.328125 51.328125 52.734375 52.734375 54.140625 54.140625 55.546875 55.546875 56.953125 56.953125 58.359375 58.359375 59.765625 59.765625 61.171875 61.171875 62.578125 62.578125 63.984375 63.984375 65.390625 65.390625 66.796875 66.796875 68.203125 68.203125 69.609375 69.609375 71.015625 71.015625 72.421875 72.421875 73.828125 73.828125 75.234375 75.234375 76.640625 76.640625 78.046875 78.046875 79.453125 79.453125 80.859375 80.859375 82.265625 82.265625 83.671875 83.671875 85.078125 85.078125 86.484375 86.484375 87.890625 87.890625 89.296875 89.296875 90.703125 90.703125 92.109375 92.109375 93.515625 93.515625 94.921875 94.921875 96.328125 96.328125 97.734375 97.734375 99.140625 99.140625 100.546875 100.546875 101.953125 101.953125 103.359375 103.359375 104.765625 104.765625 106.171875 106.171875 107.578125 107.578125 108.984375 108.984375 110.390625 110.390625 111.796875 111.796875 113.203125 113.203125 114.609375 114.609375 116.015625 116.015625 117.421875 117.421875 118.828125 118.828125 120.234375 120.234375 121.640625 121.640625 123.046875 123.046875 124.453125 124.453125 125.859375 125.859375 127.265625 127.265625 128.671875 128.671875 130.078125 130.078125 131.484375 131.484375 132.890625 132.890625 134.296875 134.296875 135.703125 135.703125 137.109375 137.109375 138.515625 138.515625 139.921875 139.921875 141.328125 141.328125 142.734375 142.734375 144.140625 144.140625 145.546875 145.546875 146.953125 146.953125 148.359375 148.359375 149.765625 149.765625 151.171875 151.171875 152.578125 152.578125 153.984375 153.984375 155.390625 155.390625 156.796875 156.796875 158.203125 158.203125 159.609375 159.609375 161.015625 161.015625 162.421875 162.421875 163.828125 163.828125 165.234375 165.234375 166.640625 166.640625 168.046875 168.046875 169.453125 169.453125 170.859375 170.859375 172.265625 172.265625 173.671875 173.671875 175.078125 175.078125 176.484375 176.484375 177.890625 177.890625 179.296875 179.296875 180.703125 180.703125 182.109375 182.109375 183.515625 183.515625 184.921875 184.921875 186.328125 186.328125 187.734375 187.734375 189.140625 189.140625 190.546875 190.546875 191.953125 191.953125 193.359375 193.359375 194.765625 194.765625 196.171875 196.171875 197.578125 197.578125 198.984375 198.984375 200.390625 200.390625 201.796875 201.796875 203.203125 203.203125 204.609375 204.609375 206.015625 206.015625 207.421875 207.421875 208.828125 208.828125 210.234375 210.234375 211.640625 211.640625 213.046875 213.046875 214.453125 214.453125 215.859375 215.859375 217.265625 217.265625 218.671875 218.671875 220.078125 220.078125 221.484375 221.484375 222.890625 222.890625 224.296875 224.296875 225.703125 225.703125 227.109375 227.109375 228.515625 228.515625 229.921875 229.921875 231.328125 231.328125 232.734375 232.734375 234.140625 234.140625 235.546875 235.546875 236.953125 236.953125 238.359375 238.359375 239.765625 239.765625 241.171875 241.171875 242.578125 242.578125 243.984375 243.984375 245.390625 245.390625 246.796875 246.796875 248.203125 248.203125 249.609375 249.609375 251.015625 251.015625 252.421875 252.421875 253.828125 253.828125 255.234375 255.234375 256.640625 256.640625 258.046875 258.046875 259.453125 259.453125 260.859375 260.859375 262.265625 262.265625 263.671875 263.671875 265.078125 265.078125 266.484375 266.484375 267.890625 267.890625 269.296875 269.296875 270.703125 270.703125 272.109375 272.109375 273.515625 273.515625 274.921875 274.921875 276.328125 276.328125 277.734375 277.734375 279.140625 279.140625 280.546875 280.546875 281.953125 281.953125 283.359375 283.359375 284.765625 284.765625 286.171875 286.171875 287.578125 287.578125 288.984375 288.984375 290.390625 290.390625 291.796875 291.796875 293.203125 293.203125 294.609375 294.609375 296.015625 296.015625 297.421875 297.421875 298.828125 298.828125 300.234375 300.234375 301.640625 301.640625 303.046875 303.046875 304.453125 304.453125 305.859375 305.859375 307.265625 307.265625 308.671875 308.671875 310.078125 310.078125 311.484375 311.484375 312.890625 312.890625 314.296875 314.296875 315.703125 315.703125 317.109375 317.109375 318.515625 318.515625 319.921875 319.921875 321.328125 321.328125 322.734375 322.734375 324.140625 324.140625 325.546875 325.546875 326.953125 326.953125 328.359375 328.359375 329.765625 329.765625 331.171875 331.171875 332.578125 332.578125 333.984375 333.984375 335.390625 335.390625 336.796875 336.796875 338.203125 338.203125 339.609375 339.609375 341.015625 341.015625 342.421875 342.421875 343.828125 343.828125 345.234375 345.234375 346.640625 346.640625 348.046875 348.046875 349.453125 349.453125 350.859375 350.859375 352.265625 352.265625 353.671875 353.671875 355.078125 355.078125 356.484375 356.484375 357.890625 357.890625 359.296875 -latitude -degrees_north --88.9277353523 -87.538705213 -86.1414721015 -84.7423855907 -83.3425960441 -81.9424662992 -80.5421464346 -79.1417096486 -77.7411958655 -76.3406287024 -74.9400230196 -73.5393886338 -72.1387322892 -70.7380587725 -69.337371575 -67.9366733026 -66.5359659402 -65.135251026 -63.7345297708 -62.3338031405 -60.9330719152 -59.5323367318 -58.1315981156 -56.7308565037 -55.3301122627 -53.9293657026 -52.5286170871 -51.1278666424 -49.7271145631 -48.3263610182 -46.9256061547 -45.5248501013 -44.1240929714 -42.7233348649 -41.3225758706 -39.9218160676 -38.5210555266 -37.120294311 -35.7195324778 -34.3187700788 -32.9180071606 -31.5172437659 -30.1164799335 -28.7157156991 -27.3149510951 -25.9141861518 -24.5134208971 -23.1126553566 -21.7118895544 -20.311123513 -18.9103572532 -17.509590795 -16.1088241568 -14.7080573564 -13.3072904104 -11.906523335 -10.5057561452 -9.10498885605 -7.7042214816 -6.30345403571 -4.90268653183 -3.50191898313 -2.10115140258 -0.700383802973 0.700383802973 2.10115140258 3.50191898313 4.90268653183 6.30345403571 7.7042214816 9.10498885605 10.5057561452 11.906523335 13.3072904104 14.7080573564 16.1088241568 17.509590795 18.9103572532 20.311123513 21.7118895544 23.1126553566 24.5134208971 25.9141861518 27.3149510951 28.7157156991 30.1164799335 31.5172437659 32.9180071606 34.3187700788 35.7195324778 37.120294311 38.5210555266 39.9218160676 41.3225758706 42.7233348649 44.1240929714 45.5248501013 46.9256061547 48.3263610182 49.7271145631 51.1278666424 52.5286170871 53.9293657026 55.3301122627 56.7308565037 58.1315981156 59.5323367318 60.9330719152 62.3338031405 63.7345297708 65.135251026 66.5359659402 67.9366733026 69.337371575 70.7380587725 72.1387322892 73.5393886338 74.9400230196 76.3406287024 77.7411958655 79.1417096486 80.5421464346 81.9424662992 83.3425960441 84.7423855907 86.1414721015 87.538705213 88.9277353523 --90.0 -88.2332202827 -88.2332202827 -86.8400886573 -86.8400886573 -85.4419288461 -85.4419288461 -84.0424908174 -84.0424908174 -82.6425311716 -82.6425311716 -81.2423063669 -81.2423063669 -79.8419280416 -79.8419280416 -78.4414527571 -78.4414527571 -77.0409122839 -77.0409122839 -75.640325861 -75.640325861 -74.2397058267 -74.2397058267 -72.8390604615 -72.8390604615 -71.4383955308 -71.4383955308 -70.0377151737 -70.0377151737 -68.6370224388 -68.6370224388 -67.2363196214 -67.2363196214 -65.8356084831 -65.8356084831 -64.4348903984 -64.4348903984 -63.0341664557 -63.0341664557 -61.6334375279 -61.6334375279 -60.2327043235 -60.2327043235 -58.8319674237 -58.8319674237 -57.4312273097 -57.4312273097 -56.0304843832 -56.0304843832 -54.6297389826 -54.6297389826 -53.2289913948 -53.2289913948 -51.8282418647 -51.8282418647 -50.4274906027 -50.4274906027 -49.0267377906 -49.0267377906 -47.6259835864 -47.6259835864 -46.225228128 -46.225228128 -44.8244715363 -44.8244715363 -43.4237139181 -43.4237139181 -42.0229553678 -42.0229553678 -40.6221959691 -40.6221959691 -39.2214357971 -39.2214357971 -37.8206749188 -37.8206749188 -36.4199133944 -36.4199133944 -35.0191512783 -35.0191512783 -33.6183886197 -33.6183886197 -32.2176254633 -32.2176254633 -30.8168618497 -30.8168618497 -29.4160978163 -29.4160978163 -28.0153333971 -28.0153333971 -26.6145686235 -26.6145686235 -25.2138035245 -25.2138035245 -23.8130381268 -23.8130381268 -22.4122724555 -22.4122724555 -21.0115065337 -21.0115065337 -19.6107403831 -19.6107403831 -18.2099740241 -18.2099740241 -16.8092074759 -16.8092074759 -15.4084407566 -15.4084407566 -14.0076738834 -14.0076738834 -12.6069068727 -12.6069068727 -11.2061397401 -11.2061397401 -9.80537250065 -9.80537250065 -8.40460516882 -8.40460516882 -7.00383775865 -7.00383775865 -5.60307028377 -5.60307028377 -4.20230275748 -4.20230275748 -2.80153519286 -2.80153519286 -1.40076760278 -1.40076760278 0.0 0.0 1.40076760278 1.40076760278 2.80153519286 2.80153519286 4.20230275748 4.20230275748 5.60307028377 5.60307028377 7.00383775865 7.00383775865 8.40460516882 8.40460516882 9.80537250065 9.80537250065 11.2061397401 11.2061397401 12.6069068727 12.6069068727 14.0076738834 14.0076738834 15.4084407566 15.4084407566 16.8092074759 16.8092074759 18.2099740241 18.2099740241 19.6107403831 19.6107403831 21.0115065337 21.0115065337 22.4122724555 22.4122724555 23.8130381268 23.8130381268 25.2138035245 25.2138035245 26.6145686235 26.6145686235 28.0153333971 28.0153333971 29.4160978163 29.4160978163 30.8168618497 30.8168618497 32.2176254633 32.2176254633 33.6183886197 33.6183886197 35.0191512783 35.0191512783 36.4199133944 36.4199133944 37.8206749188 37.8206749188 39.2214357971 39.2214357971 40.6221959691 40.6221959691 42.0229553678 42.0229553678 43.4237139181 43.4237139181 44.8244715363 44.8244715363 46.225228128 46.225228128 47.6259835864 47.6259835864 49.0267377906 49.0267377906 50.4274906027 50.4274906027 51.8282418647 51.8282418647 53.2289913948 53.2289913948 54.6297389826 54.6297389826 56.0304843832 56.0304843832 57.4312273097 57.4312273097 58.8319674237 58.8319674237 60.2327043235 60.2327043235 61.6334375279 61.6334375279 63.0341664557 63.0341664557 64.4348903984 64.4348903984 65.8356084831 65.8356084831 67.2363196214 67.2363196214 68.6370224388 68.6370224388 70.0377151737 70.0377151737 71.4383955308 71.4383955308 72.8390604615 72.8390604615 74.2397058267 74.2397058267 75.640325861 75.640325861 77.0409122839 77.0409122839 78.4414527571 78.4414527571 79.8419280416 79.8419280416 81.2423063669 81.2423063669 82.6425311716 82.6425311716 84.0424908174 84.0424908174 85.4419288461 85.4419288461 86.8400886573 86.8400886573 88.2332202827 88.2332202827 90.0 -246.145 247.091 247.99 249.12 250.756 251.989 252.279 252.055 251.674 251.793 252.932 256.082 261.129 267.244 270.278 271.72 271.779 271.786 272.055 272.318 272.709 273.339 273.785 273.924 274.009 274.488 275.321 276.315 277.537 278.895 280.113 281.36 282.661 283.886 285.162 286.4 287.559 288.812 289.957 290.911 291.783 292.746 293.629 294.108 294.306 294.333 294.297 294.318 294.409 294.63 295.049 295.55 296.181 297.015 297.79 298.357 298.859 299.295 299.466 299.447 299.409 299.433 299.521 299.679 300.038 300.482 300.513 300.221 299.059 300.495 299.827 298.654 296.981 296.243 295.327 294.311 293.781 292.305 291.414 290.75 289.899 288.866 287.465 285.511 283.318 280.957 279.34 278.41 279.515 282.126 284.008 282.566 280.048 277.61 277.655 278.459 278.917 278.705 278.223 278.204 277.763 277.409 277.841 278.206 278.529 278.899 279.199 279.299 279.043 278.498 277.69 276.733 275.481 273.802 272.195 270.798 269.079 266.788 263.9 259.16 254.169 248.856 246.516 245.536 244.471 242.678 241.214 239.928 246.104 247.014 247.863 248.942 250.555 251.729 251.972 251.76 251.398 251.253 252.273 255.404 260.576 266.91 270.158 271.77 271.882 271.871 272.109 272.326 272.647 273.229 273.688 273.867 273.95 274.411 275.277 276.339 277.567 278.878 280.039 281.232 282.529 283.816 285.103 286.282 287.411 288.65 289.794 290.826 291.792 292.713 293.483 293.91 294.099 294.137 294.116 294.149 294.287 294.586 295.025 295.539 296.219 297.006 297.672 298.246 298.805 299.247 299.47 299.569 299.543 299.499 299.578 299.74 300.021 300.379 300.427 300.235 299.236 300.222 299.805 298.05 297.27 295.98 294.998 294.02 292.816 291.647 290.808 290.376 289.465 288.684 287.707 285.96 283.819 281.272 279.475 278.837 278.993 281.034 284.352 283.915 281.957 279.572 277.854 277.261 277.175 277.378 277.457 277.54 277.695 277.859 278.34 278.746 279.086 279.111 278.909 278.718 278.658 278.429 277.869 277.005 275.813 274.316 272.749 271.318 269.657 267.426 264.873 261.142 254.457 248.97 246.56 245.598 244.448 242.67 241.212 239.876 246.062 246.936 247.732 248.75 250.346 251.493 251.732 251.485 251.142 250.837 251.616 254.811 260.101 266.547 270.071 271.798 271.973 271.943 272.16 272.329 272.597 273.136 273.607 273.82 273.901 274.354 275.265 276.367 277.572 278.831 279.964 281.143 282.461 283.787 285.051 286.161 287.284 288.563 289.721 290.778 291.778 292.646 293.336 293.753 293.95 293.978 293.955 294.0 294.169 294.5 294.96 295.501 296.159 296.833 297.453 298.1 298.704 299.144 299.482 299.69 299.629 299.539 299.649 299.81 300.016 300.32 300.333 300.132 299.251 299.91 299.59 298.441 297.093 295.578 294.728 293.621 292.268 290.959 290.047 289.261 288.501 287.812 287.31 285.865 283.893 281.957 280.202 279.482 279.014 280.221 283.987 284.61 283.184 281.409 279.158 276.475 275.641 276.286 276.782 276.82 277.397 278.112 278.514 278.953 279.125 278.834 278.155 277.58 277.766 278.121 277.931 277.219 276.118 274.704 273.238 271.78 270.105 268.081 265.727 262.048 256.657 248.986 246.571 245.584 244.426 242.697 241.203 239.819 246.023 246.86 247.607 248.584 250.148 251.286 251.508 251.223 250.88 250.443 251.063 254.291 259.645 266.207 269.982 271.82 272.064 272.006 272.197 272.336 272.549 273.072 273.548 273.78 273.873 274.312 275.267 276.39 277.56 278.772 279.899 281.088 282.412 283.733 284.963 286.039 287.202 288.554 289.726 290.769 291.765 292.598 293.232 293.642 293.826 293.819 293.792 293.863 294.06 294.391 294.871 295.433 296.024 296.587 297.229 297.992 298.643 299.107 299.563 299.815 299.691 299.586 299.712 299.808 299.932 300.197 300.157 299.961 299.329 299.902 299.453 298.25 297.343 295.154 294.261 292.967 291.858 290.499 289.293 287.82 286.902 286.323 285.922 285.184 283.899 282.817 281.618 280.365 279.527 280.333 283.723 284.755 283.888 282.359 280.112 276.246 274.666 275.282 276.068 276.163 276.65 277.804 278.391 278.72 278.734 277.982 276.793 276.002 276.39 277.445 277.881 277.385 276.35 275.024 273.641 272.151 270.446 268.507 266.223 262.914 257.148 248.934 246.592 245.544 244.386 242.717 241.182 239.799 245.991 246.782 247.499 248.426 249.962 251.057 251.315 250.996 250.6 250.112 250.5 253.732 259.242 265.986 269.877 271.84 272.151 272.059 272.222 272.348 272.535 273.036 273.511 273.754 273.875 274.294 275.272 276.403 277.526 278.7 279.837 281.056 282.35 283.614 284.818 285.909 287.145 288.591 289.821 290.887 291.89 292.646 293.165 293.499 293.628 293.604 293.609 293.708 293.878 294.212 294.791 295.471 296.057 296.568 297.197 297.989 298.698 299.237 299.723 299.889 299.725 299.686 299.817 299.861 300.023 300.239 300.038 299.191 298.667 299.939 299.244 297.773 296.547 294.78 293.665 292.399 291.276 290.035 288.494 286.606 284.979 283.955 284.431 284.463 283.571 282.832 282.501 281.219 280.163 280.494 283.494 284.679 284.156 282.944 280.609 276.2 274.027 274.237 274.989 275.385 276.061 276.882 277.894 278.253 278.055 276.999 275.1 273.282 274.627 276.525 277.577 277.443 276.512 275.246 273.892 272.433 270.73 268.796 266.587 263.244 258.064 249.007 246.641 245.514 244.325 242.726 241.15 239.793 245.963 246.712 247.389 248.272 249.822 250.851 251.114 250.842 250.332 249.697 249.98 253.279 258.855 265.686 269.766 271.833 272.197 272.076 272.223 272.341 272.534 273.022 273.475 273.709 273.893 274.327 275.295 276.406 277.475 278.61 279.756 281.014 282.273 283.494 284.719 285.862 287.146 288.693 290.029 291.137 292.042 292.638 293.016 293.297 293.45 293.462 293.472 293.5 293.62 294.086 294.98 295.947 296.715 297.259 297.761 298.367 298.993 299.517 299.893 299.982 299.909 299.916 299.948 299.956 300.127 300.151 299.811 298.679 299.868 300.074 298.784 296.843 294.946 293.555 292.725 291.771 290.601 289.209 288.224 286.086 283.597 282.684 283.087 283.408 283.736 283.036 282.301 281.254 280.669 280.687 283.293 284.49 284.019 282.996 280.861 276.56 273.577 273.341 273.705 274.606 275.368 276.176 277.24 277.623 277.322 275.817 272.552 270.985 272.154 275.371 277.0 277.257 276.529 275.334 274.061 272.631 270.901 268.999 266.629 263.314 258.254 250.048 246.778 245.527 244.207 242.722 241.096 239.794 245.931 246.645 247.288 248.145 249.608 250.667 250.928 250.602 250.037 249.273 249.56 252.895 258.515 265.405 269.654 271.81 272.217 272.085 272.205 272.327 272.529 272.988 273.417 273.657 273.916 274.372 275.313 276.395 277.422 278.527 279.673 280.943 282.176 283.378 284.663 285.884 287.211 288.832 290.239 291.311 292.051 292.537 292.912 293.227 293.39 293.378 293.359 293.383 293.606 294.385 295.653 296.834 297.711 298.304 298.695 299.063 299.492 299.858 300.053 300.102 300.065 299.98 299.861 299.818 299.768 299.431 299.134 298.45 299.08 299.203 298.081 296.406 294.244 292.87 292.124 290.91 290.399 289.047 287.426 284.57 282.811 282.066 282.378 283.1 283.426 282.81 282.239 281.652 281.722 281.486 283.276 284.252 283.246 282.361 280.882 277.616 273.625 272.701 272.899 274.046 274.865 275.668 276.531 276.786 276.271 275.213 271.886 269.919 270.231 274.068 276.023 276.651 276.247 275.266 274.11 272.761 271.048 269.027 266.545 263.117 258.14 249.942 246.789 245.451 244.163 242.646 241.026 239.794 245.9 246.57 247.189 248.009 249.437 250.465 250.747 250.419 249.72 248.827 249.2 252.554 258.21 265.208 269.532 271.775 272.22 272.085 272.177 272.308 272.515 272.935 273.338 273.599 273.931 274.415 275.306 276.369 277.384 278.483 279.614 280.849 282.045 283.246 284.611 285.929 287.308 288.961 290.388 291.372 292.0 292.523 293.012 293.318 293.349 293.248 293.293 293.537 294.085 295.289 296.751 297.847 298.577 299.146 299.525 299.739 299.955 300.129 300.168 300.137 299.969 299.712 298.587 298.725 298.409 297.602 297.704 298.357 299.309 298.506 297.266 296.034 294.597 293.47 291.804 290.496 288.838 287.615 286.448 284.302 282.598 282.053 282.135 282.529 282.759 282.536 282.312 282.721 282.412 282.264 283.86 284.177 283.004 282.227 280.863 277.912 273.897 272.534 272.517 273.713 274.568 275.305 275.576 275.547 275.279 274.599 271.828 269.445 269.374 272.385 274.65 275.626 275.548 274.925 274.046 272.839 271.151 269.019 266.271 262.656 257.87 249.551 246.75 245.341 244.103 242.576 241.014 239.792 245.868 246.497 247.087 247.889 249.3 250.292 250.575 250.225 249.399 248.448 248.836 252.297 258.042 265.123 269.484 271.718 272.199 272.064 272.135 272.284 272.497 272.871 273.257 273.554 273.937 274.44 275.255 276.315 277.358 278.489 279.577 280.724 281.872 283.092 284.547 285.987 287.429 289.081 290.474 291.432 292.159 292.831 293.297 293.316 293.081 293.135 293.676 294.468 295.465 296.615 297.643 298.209 298.509 298.903 299.343 299.615 299.818 299.978 299.997 299.854 299.336 297.797 298.316 299.75 299.097 297.561 297.384 298.232 298.677 298.359 297.274 296.02 293.926 293.514 291.843 290.729 288.992 287.767 286.633 284.641 283.005 281.557 281.28 281.69 282.213 282.02 282.039 283.547 284.537 284.335 284.713 284.22 283.279 282.158 280.127 277.13 274.444 272.726 272.375 273.472 274.332 274.854 275.106 274.873 274.426 273.85 271.469 269.207 268.841 270.0 273.056 274.206 274.561 274.29 273.812 272.855 271.213 268.914 265.882 262.053 256.514 249.128 246.651 245.326 243.956 242.549 241.017 239.788 245.843 246.43 246.993 247.757 249.148 250.162 250.369 250.022 249.057 248.087 248.522 252.128 257.961 264.836 269.516 271.646 272.145 272.016 272.083 272.254 272.473 272.814 273.191 273.553 273.954 274.436 275.19 276.241 277.325 278.488 279.536 280.605 281.742 283.013 284.549 286.108 287.64 289.301 290.659 291.696 292.535 293.124 293.286 293.077 293.224 294.366 295.537 296.407 296.906 297.304 297.417 296.734 296.425 297.198 297.904 298.227 298.689 299.062 299.078 298.772 297.626 297.869 298.178 299.56 299.331 297.654 297.715 297.53 298.427 297.546 296.911 296.059 294.286 293.236 292.753 291.147 289.43 288.172 286.887 284.891 283.223 281.768 281.325 281.405 282.015 281.857 282.218 284.505 285.834 285.466 284.821 284.066 282.867 281.331 279.301 277.585 274.956 273.161 272.686 273.49 274.307 274.674 275.036 274.851 274.079 272.946 271.036 268.999 268.425 268.852 270.184 272.403 273.315 273.484 273.408 272.808 271.285 268.801 265.403 261.221 252.678 248.933 246.64 245.334 243.747 242.508 241.013 239.784 245.81 246.358 246.895 247.642 248.984 250.016 250.188 249.764 248.706 247.74 248.237 251.998 257.925 264.193 269.567 271.582 272.069 271.944 272.016 272.209 272.43 272.758 273.148 273.575 273.98 274.422 275.136 276.162 277.269 278.447 279.473 280.497 281.665 283.009 284.632 286.319 288.004 289.68 290.998 292.054 292.88 293.332 293.409 293.362 294.441 296.511 297.664 297.998 297.686 296.781 296.477 295.378 294.749 294.347 294.75 296.363 297.032 297.084 297.137 297.177 297.439 297.573 297.617 297.335 296.911 297.163 297.322 298.557 298.482 297.504 297.181 296.204 295.675 292.255 292.133 291.434 289.853 288.365 286.783 284.815 283.209 282.015 281.631 281.93 282.058 282.261 282.944 285.607 286.254 285.598 283.841 283.625 282.451 280.506 279.302 277.935 275.419 273.805 273.151 273.436 274.173 274.537 274.978 275.133 273.911 272.591 270.896 268.966 268.311 268.287 267.947 269.23 271.865 272.573 272.885 272.686 271.305 268.709 264.836 259.218 251.246 248.157 246.605 245.189 243.646 242.438 241.003 239.778 245.778 246.286 246.803 247.528 248.809 249.868 250.011 249.506 248.37 247.388 248.054 251.899 257.919 264.323 269.518 271.507 271.971 271.842 271.936 272.153 272.366 272.691 273.111 273.604 274.001 274.404 275.099 276.092 277.194 278.372 279.391 280.408 281.626 283.045 284.752 286.611 288.5 290.174 291.436 292.437 293.236 293.658 294.046 294.46 297.299 299.427 299.307 298.741 297.523 296.811 296.503 295.255 293.939 292.954 292.902 294.083 295.509 296.248 295.912 295.875 296.357 296.813 297.035 296.71 296.428 296.929 298.046 298.311 299.192 297.754 298.232 298.198 295.967 293.866 292.989 291.589 290.101 288.223 286.057 284.443 282.777 282.457 282.374 282.042 282.128 282.872 284.704 286.57 286.306 285.485 284.123 283.051 281.816 279.908 279.509 277.703 275.541 274.342 273.735 273.689 274.061 274.269 275.064 275.493 274.197 272.664 271.044 269.556 268.354 267.646 267.253 266.779 268.692 271.389 272.317 272.48 271.339 268.578 264.171 255.569 250.605 247.987 246.536 245.137 243.663 242.32 240.989 239.776 245.744 246.223 246.708 247.407 248.664 249.68 249.815 249.264 248.021 247.053 247.861 251.94 257.989 264.38 269.485 271.427 271.832 271.699 271.838 272.085 272.292 272.593 273.052 273.617 274.018 274.393 275.089 276.051 277.111 278.272 279.3 280.336 281.606 283.082 284.879 286.996 289.086 290.768 291.955 292.856 293.688 294.408 295.602 298.15 300.734 299.996 298.507 296.903 296.311 296.39 296.45 295.147 294.139 292.92 292.55 293.754 294.507 295.419 295.734 295.389 295.704 296.103 296.56 296.824 296.834 297.398 297.723 298.94 300.232 299.433 299.268 298.99 296.427 295.064 293.413 291.923 290.28 288.152 285.465 282.942 282.01 282.305 282.547 281.572 282.283 283.428 286.218 286.818 286.225 285.388 284.434 282.659 280.692 280.158 279.076 276.539 275.502 274.702 274.105 273.957 273.704 273.769 274.706 275.719 275.063 273.769 271.295 269.788 269.039 267.599 266.784 265.998 265.948 269.925 271.669 272.221 271.315 268.506 262.56 254.853 250.181 247.998 246.519 245.143 243.639 242.165 240.962 239.775 245.722 246.155 246.612 247.287 248.517 249.505 249.533 248.952 247.721 246.794 247.752 252.032 258.078 264.497 269.501 271.376 271.695 271.582 271.758 272.023 272.227 272.491 272.977 273.601 274.031 274.413 275.119 276.056 277.059 278.192 279.237 280.3 281.598 283.101 285.005 287.393 289.592 291.253 292.34 293.187 294.26 296.561 299.697 300.562 299.607 297.552 295.575 294.377 295.161 295.395 295.614 295.249 294.619 293.593 293.469 293.822 294.098 294.519 294.983 295.633 295.917 296.236 296.742 297.224 297.568 297.624 298.58 300.366 301.052 300.662 300.121 299.097 298.205 295.132 293.708 292.168 290.198 287.567 283.899 282.279 281.792 282.283 282.571 282.38 282.749 284.651 286.651 286.71 286.04 285.264 284.194 282.561 280.868 279.447 277.648 275.707 275.189 274.682 274.144 273.972 273.56 273.306 274.236 275.706 275.466 274.467 272.478 271.69 270.718 267.871 266.483 265.408 264.964 267.726 270.958 271.921 271.286 268.309 261.1 255.139 249.875 247.699 246.346 245.142 243.388 242.168 240.916 239.772 245.694 246.08 246.517 247.163 248.359 249.296 249.327 248.691 247.44 246.506 247.894 252.089 258.229 264.905 269.299 271.326 271.576 271.51 271.707 271.97 272.161 272.398 272.899 273.579 274.056 274.456 275.17 276.078 277.027 278.128 279.187 280.28 281.589 283.12 285.153 287.776 290.026 291.636 292.608 293.592 295.213 297.395 298.672 298.325 296.943 295.376 294.504 294.33 294.736 295.083 295.438 295.733 295.092 294.571 294.297 294.229 294.088 294.128 294.658 295.652 296.127 296.103 296.724 298.339 298.55 297.875 299.225 300.976 301.395 300.523 299.81 299.436 297.886 295.966 293.588 291.933 289.794 287.449 284.343 282.494 282.058 281.966 282.809 282.754 283.042 284.93 286.387 286.179 285.66 284.805 283.339 281.337 279.092 277.527 275.058 274.668 274.715 274.208 273.8 273.565 273.268 272.994 273.741 275.445 275.56 274.833 273.625 272.257 271.08 269.276 266.67 265.092 264.534 265.314 270.28 271.583 271.203 268.241 260.689 255.61 249.713 247.51 246.182 244.887 243.197 242.183 240.81 239.764 245.661 246.015 246.423 247.036 248.215 249.06 249.065 248.363 247.207 246.235 247.874 252.243 258.28 265.398 269.18 271.258 271.471 271.479 271.696 271.924 272.094 272.32 272.838 273.563 274.095 274.52 275.226 276.101 277.005 278.073 279.137 280.254 281.57 283.139 285.316 288.117 290.407 291.96 292.801 293.47 294.822 295.709 295.724 295.123 294.998 294.876 295.023 295.189 295.574 295.729 295.833 296.081 295.728 295.12 294.744 294.971 294.299 294.108 294.606 295.544 296.092 296.028 296.381 297.633 298.427 298.021 298.513 300.986 301.048 299.814 298.892 297.996 296.283 294.418 292.533 291.079 289.68 287.48 284.456 283.068 282.579 282.18 282.92 282.837 282.898 283.19 283.807 285.004 285.303 284.309 282.418 279.511 276.236 274.515 273.368 273.92 274.137 273.622 273.181 273.121 272.954 272.723 273.122 274.534 274.982 274.795 273.724 272.022 270.847 269.694 267.843 265.074 263.87 264.106 269.563 271.226 271.129 268.314 261.393 255.475 250.159 247.206 246.165 244.88 243.207 242.129 240.719 239.751 245.637 245.95 246.323 246.906 248.037 248.83 248.741 248.069 246.914 246.063 247.693 252.218 258.351 265.378 269.239 271.163 271.375 271.481 271.738 271.893 272.034 272.278 272.809 273.557 274.16 274.61 275.293 276.125 276.988 278.021 279.082 280.218 281.538 283.146 285.45 288.374 290.742 292.311 293.029 293.433 294.067 293.845 293.181 293.363 294.083 294.6 295.103 296.135 296.602 296.361 296.28 296.201 295.726 295.223 294.767 294.699 294.228 294.17 294.828 295.74 295.901 295.671 295.849 296.579 297.182 297.445 298.088 299.189 300.334 298.826 297.831 296.677 294.711 292.521 290.717 289.45 288.596 286.725 285.028 283.722 283.057 282.848 282.152 282.021 281.896 282.792 283.263 284.911 285.107 284.05 281.581 278.213 275.978 273.831 272.825 273.515 273.584 272.869 272.561 272.823 272.693 272.576 272.661 273.074 273.597 274.037 273.268 270.54 268.863 269.187 268.074 264.658 263.136 263.446 268.582 270.87 271.015 268.564 262.039 255.114 250.579 247.015 246.087 244.873 243.214 241.979 240.723 239.717 245.606 245.885 246.232 246.778 247.851 248.571 248.429 247.756 246.649 245.883 247.567 252.256 258.35 265.227 269.256 271.072 271.308 271.509 271.8 271.905 272.011 272.282 272.81 273.558 274.227 274.71 275.36 276.145 276.974 277.976 279.033 280.181 281.501 283.106 285.439 288.422 290.895 292.617 293.351 293.539 293.569 292.708 291.835 292.213 293.046 293.661 294.523 296.356 297.517 296.889 296.431 295.971 295.425 294.659 294.19 294.0 293.942 294.275 294.85 295.662 295.753 295.602 295.762 296.719 297.555 297.322 297.676 299.749 299.85 298.431 296.461 294.797 293.523 291.151 289.637 287.702 287.537 286.186 284.966 283.888 283.202 282.69 282.554 282.475 281.785 282.788 283.775 285.234 284.99 284.058 282.312 279.538 277.806 274.636 273.13 273.377 273.143 272.292 272.016 272.356 272.428 272.332 272.062 272.039 272.443 272.889 272.189 269.68 268.04 267.649 267.568 263.987 262.389 262.698 267.261 270.544 270.895 268.722 262.738 255.046 251.051 247.025 246.033 244.836 243.192 241.731 240.728 239.647 245.577 245.81 246.137 246.658 247.664 248.298 248.075 247.394 246.413 245.73 247.464 252.204 258.302 265.129 269.268 271.032 271.254 271.534 271.862 271.952 272.029 272.318 272.84 273.565 274.282 274.803 275.42 276.16 276.96 277.933 278.982 280.139 281.439 282.995 285.277 288.288 290.866 292.789 293.677 293.754 292.961 291.751 290.518 290.79 291.793 292.642 294.095 296.338 297.865 296.958 296.228 295.692 295.113 294.391 293.965 293.455 293.647 294.082 294.745 295.242 295.499 295.424 295.776 297.368 297.576 297.182 299.198 300.567 299.728 298.167 296.35 294.464 291.93 290.569 289.395 287.244 286.629 286.098 284.908 283.921 283.086 282.435 281.656 281.737 281.902 283.111 284.748 285.48 285.076 283.474 282.248 280.243 278.194 275.757 273.663 273.487 272.898 272.031 271.836 272.082 272.167 271.945 271.599 271.341 271.466 271.484 271.188 269.134 266.817 266.297 265.546 263.142 261.38 262.142 266.999 270.29 270.737 268.943 263.512 255.779 251.026 247.159 246.053 244.728 242.813 241.639 240.73 239.529 245.556 245.748 246.043 246.503 247.476 248.015 247.755 247.073 246.174 245.593 247.418 252.151 258.247 265.099 269.26 271.014 271.233 271.551 271.91 272.003 272.075 272.377 272.897 273.588 274.327 274.886 275.471 276.17 276.949 277.893 278.933 280.092 281.353 282.819 284.985 288.013 290.689 292.803 293.951 293.929 292.937 291.322 289.73 289.65 290.415 292.001 293.821 296.789 297.292 296.611 295.721 295.721 294.992 294.194 293.62 293.142 293.351 293.78 294.274 294.71 294.609 294.281 294.748 296.278 296.646 297.341 299.899 300.692 299.843 298.589 297.001 294.362 292.541 291.343 290.309 288.997 287.241 286.58 285.331 284.008 283.036 281.854 281.815 281.834 282.896 283.428 285.118 285.678 284.956 283.358 281.304 279.028 277.289 275.596 274.38 273.891 273.058 272.19 271.999 271.976 271.674 271.449 271.01 270.735 270.723 270.688 270.202 268.511 265.958 265.266 264.606 262.214 260.518 261.406 266.597 270.116 270.558 268.986 264.259 256.336 251.156 247.358 246.188 244.698 242.806 241.645 240.676 239.504 245.531 245.686 245.954 246.379 247.259 247.71 247.392 246.73 245.904 245.463 247.492 252.022 257.986 263.982 269.23 271.009 271.28 271.572 271.926 272.049 272.136 272.448 272.978 273.647 274.378 274.965 275.516 276.173 276.942 277.862 278.886 280.043 281.251 282.584 284.613 287.644 290.41 292.635 294.101 294.571 293.954 291.833 289.863 289.274 289.846 291.266 293.477 295.89 296.968 296.009 295.584 295.593 295.005 294.351 293.485 292.882 292.775 293.057 293.695 293.879 293.423 292.888 293.003 294.126 295.382 297.091 299.382 300.689 300.228 299.183 298.879 295.749 293.862 292.437 291.578 289.675 288.606 287.564 286.359 284.701 283.768 283.069 283.221 282.888 282.932 283.633 285.578 285.783 284.734 282.5 279.292 276.181 275.581 276.072 276.164 275.002 273.717 272.653 272.279 271.881 271.249 270.896 270.429 270.145 270.051 269.893 269.341 267.812 265.37 264.528 263.917 261.576 260.017 261.064 265.877 270.028 270.361 268.997 264.821 257.151 251.277 247.715 246.164 244.669 242.797 241.65 240.581 239.504 245.505 245.623 245.859 246.234 247.04 247.406 247.026 246.43 245.613 245.336 247.266 251.812 257.653 263.502 269.073 271.022 271.38 271.617 271.928 272.074 272.182 272.492 273.033 273.687 274.416 275.021 275.551 276.17 276.94 277.851 278.853 280.0 281.175 282.416 284.357 287.363 290.183 292.345 293.947 294.959 294.702 293.652 291.207 290.099 290.07 291.252 293.978 296.418 297.424 296.784 295.923 295.514 295.128 294.445 293.991 293.023 292.579 292.743 292.964 292.911 292.652 292.228 292.099 292.704 294.498 296.214 299.572 300.969 301.112 300.971 300.142 296.782 296.167 293.568 292.738 290.804 289.701 288.641 287.643 286.317 284.911 283.819 283.617 282.994 282.913 283.683 285.625 285.812 284.507 281.694 276.604 274.066 274.366 276.582 277.352 276.699 274.496 273.085 272.44 271.822 270.939 270.539 269.935 269.621 269.592 269.268 268.602 266.863 264.952 263.944 263.201 260.912 259.386 260.974 266.717 269.979 270.124 268.872 265.297 257.965 251.87 247.987 246.173 244.506 242.786 241.653 240.423 239.504 245.477 245.559 245.764 246.093 246.818 247.074 246.667 246.114 245.323 245.213 247.241 251.556 257.221 263.063 268.593 271.002 271.519 271.688 271.931 272.088 272.205 272.499 273.042 273.688 274.422 275.051 275.581 276.168 276.93 277.829 278.799 279.93 281.09 282.306 284.202 287.118 289.944 291.952 293.5 294.845 295.335 294.888 294.081 292.338 291.71 292.641 295.375 297.687 298.32 297.131 296.057 295.108 295.001 294.979 294.263 293.162 292.653 292.401 292.44 292.691 292.548 292.081 291.991 292.39 293.568 296.434 299.8 301.475 302.096 301.841 301.079 299.644 297.781 295.3 294.243 292.842 290.793 289.454 288.282 287.089 286.224 284.865 283.974 282.957 282.595 283.275 285.381 285.797 284.376 281.124 276.286 272.575 273.47 276.456 277.821 277.386 275.598 273.237 272.416 271.638 270.67 270.196 269.489 269.113 269.118 268.643 267.975 266.363 264.624 263.447 262.545 260.481 259.195 261.195 267.823 269.953 269.859 268.67 265.69 258.308 252.365 248.395 246.239 244.356 242.605 241.647 240.103 239.506 245.452 245.503 245.672 245.952 246.588 246.732 246.281 245.791 245.085 245.056 246.966 251.243 256.718 262.508 268.357 270.873 271.691 271.809 271.949 272.098 272.207 272.475 273.015 273.659 274.384 275.05 275.606 276.164 276.902 277.783 278.714 279.807 280.964 282.208 284.101 286.884 289.635 291.494 292.846 294.237 295.279 295.629 295.497 295.415 294.267 294.951 297.022 298.671 298.079 297.361 295.735 295.024 295.126 295.176 294.347 293.269 292.79 292.428 292.247 292.333 292.413 292.383 291.939 291.911 293.24 296.019 298.924 301.591 302.594 302.568 301.28 300.12 299.17 296.843 296.272 294.401 292.204 289.933 288.362 287.181 286.239 285.89 284.85 283.255 281.86 282.126 285.077 285.604 284.341 280.675 275.923 271.845 272.573 275.367 277.784 277.466 275.539 273.109 272.181 271.291 270.437 269.702 268.992 268.576 268.471 268.108 267.315 265.778 264.121 262.933 262.023 260.21 259.341 263.407 268.184 269.891 269.538 268.381 265.679 259.081 252.848 248.678 246.115 244.301 242.315 240.892 239.895 239.508 245.416 245.442 245.576 245.799 246.342 246.368 245.906 245.452 244.858 244.877 246.826 250.902 256.174 261.838 267.411 270.566 271.855 272.002 272.005 272.118 272.201 272.431 272.95 273.593 274.289 275.004 275.617 276.158 276.857 277.729 278.606 279.615 280.756 282.081 284.026 286.617 289.233 290.988 292.128 293.26 294.398 295.385 296.166 296.587 296.868 297.47 297.836 298.291 297.803 296.821 295.857 295.483 295.485 295.409 294.297 293.486 293.082 292.891 292.496 292.385 292.38 292.289 291.804 291.692 293.294 296.361 298.826 299.629 301.877 301.461 299.965 300.459 300.134 299.255 297.637 295.467 293.005 290.203 288.547 287.574 287.293 287.222 286.848 284.131 281.434 281.71 283.825 284.828 283.833 280.334 274.911 271.171 271.812 274.68 277.681 277.434 275.006 272.941 271.82 270.854 269.924 269.128 268.522 267.955 267.968 267.486 266.649 265.197 263.52 262.438 261.481 260.12 259.499 265.126 268.552 269.754 269.194 268.026 265.744 259.374 253.585 249.1 246.11 244.155 242.294 240.794 239.896 239.509 245.39 245.376 245.482 245.643 246.07 246.0 245.569 245.163 244.696 244.722 246.596 250.503 255.622 261.069 266.443 270.304 271.938 272.195 272.105 272.16 272.216 272.413 272.896 273.515 274.182 274.931 275.602 276.148 276.824 277.705 278.542 279.454 280.565 281.954 283.95 286.429 288.949 290.659 291.672 292.541 293.431 294.407 295.561 296.447 297.136 297.835 298.283 298.457 298.518 298.518 297.459 296.503 296.484 295.391 294.577 294.211 293.955 293.714 293.326 293.064 292.46 291.842 291.472 291.596 294.012 296.548 297.957 299.053 298.95 297.963 297.949 297.717 299.245 298.858 297.252 295.093 292.94 291.149 289.785 288.755 289.614 289.375 288.276 285.193 280.905 280.226 281.555 282.571 282.58 279.73 274.382 270.624 271.471 275.11 277.763 277.464 274.752 272.809 271.577 270.391 269.26 268.427 267.834 267.559 267.483 266.964 266.014 264.58 262.923 261.92 261.146 260.346 259.775 265.13 268.543 269.506 268.791 267.634 265.578 260.337 253.865 249.464 246.191 243.881 242.269 240.788 239.898 239.51 245.373 245.319 245.383 245.481 245.815 245.638 245.209 244.883 244.538 244.58 246.332 250.138 255.03 260.322 264.464 269.924 271.953 272.372 272.232 272.228 272.259 272.428 272.862 273.438 274.081 274.852 275.567 276.135 276.814 277.701 278.507 279.361 280.446 281.836 283.824 286.294 288.752 290.447 291.391 292.102 292.868 293.765 294.868 295.872 296.779 297.661 298.29 298.675 299.1 299.41 299.118 297.594 297.043 296.033 295.523 295.393 295.303 294.889 294.641 294.302 293.42 292.736 292.692 293.479 294.808 296.595 297.421 296.609 295.003 293.533 293.728 295.116 296.066 296.052 295.104 293.792 293.117 291.912 291.273 291.479 291.07 289.95 287.254 283.092 279.22 278.486 278.82 279.244 278.818 277.1 273.62 270.501 271.617 275.895 277.867 277.35 275.142 272.758 271.405 269.878 268.442 267.818 267.326 267.21 267.045 266.358 265.375 263.911 261.992 260.984 261.577 260.604 259.953 265.576 268.361 269.111 268.336 267.224 265.545 261.151 254.696 249.613 246.07 243.684 242.166 240.78 239.898 239.511 245.349 245.257 245.289 245.312 245.526 245.285 244.846 244.602 244.322 244.447 246.141 249.741 254.369 259.455 263.24 269.477 271.902 272.528 272.376 272.317 272.33 272.475 272.846 273.362 273.982 274.765 275.518 276.115 276.818 277.698 278.478 279.323 280.413 281.746 283.678 286.139 288.575 290.27 291.186 291.843 292.597 293.524 294.601 295.556 296.448 297.308 297.937 298.364 299.023 299.706 299.749 298.878 297.701 297.073 296.746 296.519 296.529 296.272 296.398 295.952 295.589 295.293 295.281 295.889 296.479 297.076 297.964 296.244 293.314 291.346 290.719 291.183 291.965 292.62 293.17 293.737 293.659 294.303 293.461 292.266 290.791 287.949 283.94 280.358 278.367 277.712 277.913 277.503 277.342 276.189 273.451 270.251 271.293 275.82 277.525 276.734 274.433 272.648 271.212 269.59 267.976 267.38 266.973 266.859 266.613 265.937 264.984 263.246 261.215 260.252 261.491 260.703 260.622 265.346 267.956 268.575 267.821 266.816 265.443 261.855 255.074 250.033 246.014 243.597 241.888 240.769 239.898 239.511 245.315 245.196 245.189 245.146 245.231 244.919 244.513 244.341 244.143 244.316 245.823 249.271 253.644 258.515 263.002 268.779 271.724 272.634 272.527 272.417 272.436 272.56 272.841 273.279 273.88 274.672 275.467 276.095 276.828 277.683 278.44 279.327 280.483 281.746 283.54 285.956 288.396 290.062 290.955 291.642 292.489 293.508 294.63 295.596 296.477 297.306 297.957 298.462 299.154 299.875 300.107 299.841 298.779 298.101 297.863 297.857 297.887 297.944 298.176 299.133 298.518 298.006 298.263 298.339 298.434 299.115 298.467 296.63 293.997 291.545 289.911 289.521 290.084 291.04 293.57 295.319 295.759 294.786 293.128 290.55 287.171 284.669 282.002 279.199 278.03 277.805 277.582 277.311 277.106 276.079 273.37 269.828 270.123 274.698 276.476 275.349 273.187 272.31 271.04 269.271 267.981 267.133 266.635 266.422 266.09 265.298 264.388 262.53 260.434 259.62 260.861 260.75 261.232 264.829 267.298 267.848 267.244 266.403 265.277 262.485 255.291 250.134 246.039 243.334 241.669 240.707 239.897 239.511 245.289 245.139 245.097 244.969 244.942 244.558 244.167 244.085 243.96 244.225 245.627 248.805 252.889 257.493 263.319 268.026 271.44 272.63 272.64 272.495 272.541 272.649 272.852 273.222 273.823 274.617 275.445 276.11 276.844 277.667 278.416 279.358 280.596 281.844 283.529 285.933 288.355 289.913 290.737 291.432 292.323 293.379 294.55 295.607 296.603 297.562 298.379 299.045 299.687 300.189 300.383 300.335 300.057 299.159 298.78 298.731 299.18 299.723 299.977 300.051 299.842 299.52 298.759 298.661 299.553 301.522 300.558 298.055 294.983 292.282 290.669 290.221 291.515 293.635 295.463 295.963 295.189 293.403 290.579 287.345 284.961 282.503 280.664 278.851 278.371 278.798 278.687 278.357 277.571 276.316 273.068 268.54 267.604 272.926 274.824 273.797 272.678 272.118 270.656 268.984 267.644 266.717 266.212 265.909 265.356 264.388 263.479 261.83 259.784 259.034 259.729 260.668 261.834 263.901 266.449 266.976 266.583 265.953 265.087 262.538 256.223 250.116 245.765 243.047 241.621 240.388 239.895 239.51 245.26 245.086 245.001 244.794 244.664 244.207 243.833 243.839 243.822 244.168 245.485 248.375 252.148 256.45 261.929 267.471 271.014 272.546 272.712 272.56 272.624 272.727 272.873 273.212 273.815 274.607 275.452 276.151 276.871 277.663 278.417 279.399 280.711 282.024 283.694 286.13 288.436 289.84 290.611 291.324 292.222 293.262 294.448 295.588 296.681 297.669 298.425 299.033 299.624 300.087 300.359 300.534 300.592 300.424 300.097 299.878 299.934 300.121 300.244 300.257 300.212 300.05 299.782 299.516 300.271 302.613 301.345 298.573 296.381 293.961 292.48 292.989 294.701 295.589 295.645 294.798 293.077 289.797 287.118 285.319 283.1 281.666 280.571 279.389 279.254 279.777 279.658 279.22 278.226 276.135 272.466 266.895 266.047 269.611 272.639 272.815 272.47 271.981 270.217 267.907 266.855 266.142 265.609 265.247 264.477 263.385 262.502 260.966 258.816 258.361 258.557 259.946 261.033 263.092 265.259 265.905 265.823 265.46 264.809 262.672 256.413 250.432 245.421 242.809 241.569 240.094 239.871 239.507 245.228 245.031 244.904 244.619 244.376 243.863 243.53 243.609 243.759 244.177 245.378 247.945 251.477 255.497 260.407 266.837 270.477 272.371 272.741 272.606 272.69 272.794 272.907 273.248 273.858 274.632 275.48 276.202 276.902 277.668 278.433 279.442 280.835 282.285 284.096 286.539 288.578 289.813 290.577 291.337 292.231 293.244 294.433 295.612 296.724 297.55 297.779 297.807 298.279 299.274 299.763 300.183 300.552 300.73 300.636 300.298 300.08 300.093 300.134 300.166 300.222 300.136 299.924 299.966 300.561 302.038 301.055 299.293 297.493 295.199 293.716 294.379 296.034 294.966 293.597 291.412 288.756 286.763 285.223 283.917 282.72 281.852 280.98 280.12 280.66 280.73 280.536 279.715 277.919 274.896 271.113 266.517 265.064 267.728 271.377 272.467 272.518 272.017 269.929 267.259 266.171 265.396 264.818 264.489 263.568 262.277 261.452 259.974 257.923 257.306 257.166 258.123 259.97 262.26 263.894 264.68 264.938 264.847 264.46 262.675 256.566 250.254 245.378 242.681 241.425 240.027 239.639 239.504 245.203 244.979 244.812 244.45 244.102 243.544 243.231 243.423 243.755 244.282 245.389 247.551 250.68 254.558 259.295 265.264 269.669 272.052 272.706 272.624 272.73 272.851 272.971 273.347 273.958 274.7 275.531 276.26 276.937 277.682 278.447 279.457 280.962 282.693 284.818 287.109 288.748 289.796 290.59 291.392 292.231 293.234 294.464 295.678 296.724 297.214 296.478 296.145 296.223 296.864 297.809 298.459 299.345 300.359 300.656 300.4 300.016 299.901 299.96 300.042 300.045 299.818 299.49 299.434 299.849 300.596 300.776 299.829 298.375 295.75 294.045 294.664 295.341 294.088 290.341 287.862 286.074 284.982 284.89 284.069 283.172 281.901 281.484 281.33 281.2 281.431 281.071 279.177 276.632 273.127 269.555 266.973 265.917 268.098 271.404 272.847 273.187 272.042 269.49 266.499 265.413 264.586 263.968 263.639 262.811 261.477 260.5 259.027 257.149 256.152 255.702 256.371 259.072 261.324 262.141 263.159 263.868 264.118 264.04 262.524 257.211 250.027 245.125 242.336 241.264 240.012 239.387 239.487 245.187 244.922 244.719 244.277 243.834 243.245 242.978 243.265 243.79 244.45 245.48 247.241 249.916 253.611 258.062 264.333 268.751 271.631 272.609 272.607 272.734 272.906 273.065 273.47 274.061 274.758 275.562 276.29 276.957 277.698 278.444 279.428 281.061 283.116 285.507 287.58 288.898 289.801 290.591 291.358 292.129 293.133 294.435 295.708 296.732 297.146 296.377 295.755 295.641 295.938 297.002 297.815 298.322 299.945 300.423 300.273 299.994 299.893 299.912 299.964 299.971 299.73 299.355 299.137 299.289 299.581 299.976 300.042 298.473 295.799 293.782 294.053 294.756 293.817 289.734 287.406 285.631 285.423 285.315 284.653 283.981 283.045 282.336 281.982 282.65 280.992 280.487 277.849 274.329 270.536 269.079 268.878 269.307 271.021 272.797 275.025 274.371 272.157 269.054 266.125 264.739 263.987 263.441 263.159 262.104 260.781 259.651 258.22 256.434 255.139 254.465 255.852 258.648 260.249 260.4 261.117 262.519 263.179 263.473 262.357 257.278 250.241 244.795 242.094 241.105 239.995 239.334 239.391 245.15 244.876 244.622 244.107 243.569 242.949 242.752 243.141 243.879 244.695 245.605 247.074 249.181 252.733 256.904 263.634 267.999 271.1 272.479 272.58 272.731 272.961 273.171 273.587 274.14 274.788 275.561 276.284 276.955 277.71 278.445 279.414 281.152 283.45 285.994 287.892 289.015 289.829 290.593 291.338 292.134 293.179 294.489 295.747 296.767 297.295 297.18 296.885 296.264 296.018 296.659 298.324 298.948 299.541 300.041 300.12 299.995 299.947 299.868 299.847 299.938 299.839 299.494 299.151 299.061 299.188 299.357 299.434 298.595 296.165 294.085 293.723 294.656 294.122 290.538 287.791 286.329 286.554 286.681 285.911 285.111 284.195 283.82 283.568 283.837 282.051 279.2 275.625 271.69 269.715 270.182 271.961 273.264 274.054 275.848 276.713 275.898 272.924 268.724 265.908 264.171 263.467 262.688 262.22 261.513 260.18 259.065 257.555 255.798 254.252 253.567 254.771 257.675 259.019 258.715 258.945 260.828 261.956 262.791 262.074 257.165 249.919 244.904 241.931 241.021 239.948 239.329 239.343 245.134 244.826 244.533 243.938 243.298 242.715 242.529 243.053 244.044 245.001 245.853 246.849 248.662 251.88 255.95 261.549 267.454 270.458 272.333 272.55 272.739 273.02 273.279 273.688 274.196 274.801 275.542 276.252 276.936 277.719 278.459 279.427 281.217 283.665 286.278 288.066 289.088 289.857 290.592 291.379 292.314 293.438 294.688 295.824 296.799 297.467 297.732 297.703 297.512 297.434 297.505 298.18 299.287 299.702 299.717 299.796 299.924 299.944 299.803 299.708 299.849 299.885 299.63 299.294 299.075 299.057 299.076 298.938 298.345 296.963 295.04 294.257 294.969 294.661 292.311 288.984 287.934 287.48 287.528 286.869 286.117 286.139 285.809 286.687 285.983 281.321 277.352 273.139 269.567 270.206 273.759 277.241 277.417 277.857 278.206 277.755 276.475 273.807 268.882 265.64 263.791 262.821 262.126 261.691 260.794 259.651 258.511 257.005 255.228 253.601 252.718 253.408 256.625 257.883 257.191 257.243 258.837 260.463 261.97 261.725 257.258 249.545 245.009 241.879 240.918 239.861 239.326 239.344 245.115 244.775 244.442 243.781 243.057 242.476 242.35 243.01 244.248 245.334 246.172 246.838 248.29 251.153 255.087 260.074 266.52 269.684 272.175 272.532 272.762 273.085 273.377 273.759 274.235 274.813 275.524 276.209 276.902 277.713 278.475 279.448 281.213 283.712 286.364 288.111 289.113 289.869 290.583 291.476 292.621 293.807 294.96 295.935 296.825 297.551 298.024 298.334 298.474 298.507 298.607 298.756 298.978 299.297 299.57 299.695 299.803 299.903 299.801 299.659 299.723 299.807 299.724 299.57 299.389 299.245 299.168 298.995 298.547 297.678 296.649 295.684 295.814 295.485 294.053 290.419 289.105 288.142 288.196 287.932 287.549 287.461 288.578 288.331 285.585 279.456 275.261 271.795 269.487 272.085 277.184 280.03 280.986 280.09 278.789 277.629 276.678 274.238 269.13 265.638 263.419 262.309 261.402 261.008 260.322 259.043 257.981 256.541 254.731 253.304 252.071 252.558 255.368 256.803 255.739 255.867 257.031 258.728 260.855 261.262 257.004 249.875 244.859 241.605 240.727 239.781 239.323 239.345 245.094 244.724 244.354 243.627 242.841 242.226 242.152 243.012 244.464 245.702 246.626 247.065 248.072 250.623 254.501 259.34 265.202 269.061 272.065 272.526 272.786 273.131 273.435 273.788 274.256 274.841 275.528 276.184 276.872 277.683 278.444 279.43 281.15 283.627 286.331 288.111 289.13 289.906 290.655 291.624 292.812 293.981 295.071 296.001 296.832 297.509 298.022 298.486 298.878 299.171 299.388 299.465 299.466 299.577 299.714 299.744 299.811 299.926 299.881 299.72 299.672 299.748 299.793 299.738 299.588 299.44 299.359 299.252 298.966 298.409 297.559 296.877 296.571 296.058 294.85 292.586 290.077 288.906 288.904 288.905 288.81 289.379 290.006 287.867 282.467 276.748 273.44 271.549 271.519 274.261 279.084 281.547 281.775 280.156 277.729 276.375 276.353 274.07 269.763 265.484 263.499 262.07 260.837 260.289 259.57 258.594 257.626 255.977 254.386 253.103 251.604 251.831 254.295 256.003 254.65 253.566 255.391 257.018 259.616 260.714 256.572 249.924 244.795 241.361 240.521 239.727 239.32 239.346 245.077 244.687 244.267 243.491 242.639 241.983 241.995 243.061 244.6 246.13 247.165 247.479 248.146 250.257 254.137 259.063 264.919 268.815 272.018 272.528 272.804 273.15 273.456 273.793 274.268 274.867 275.541 276.178 276.855 277.639 278.387 279.405 281.116 283.542 286.276 288.104 289.144 289.967 290.805 291.825 292.958 294.051 295.105 296.024 296.801 297.405 297.929 298.488 298.968 299.353 299.687 299.879 299.883 299.853 299.841 299.811 299.857 299.962 299.949 299.783 299.649 299.668 299.736 299.686 299.557 299.487 299.478 299.414 299.229 298.912 298.35 297.667 296.997 296.4 295.471 294.055 291.151 289.773 289.983 289.3 289.421 290.448 290.153 285.475 278.847 274.799 272.89 272.413 272.73 274.82 278.911 280.834 280.548 279.054 275.526 274.739 275.198 273.463 269.402 265.084 263.346 261.839 260.572 259.446 258.842 258.22 257.137 255.519 254.287 252.762 251.222 251.494 253.442 255.226 253.742 251.297 253.656 255.461 258.344 260.051 256.225 249.647 244.821 241.25 240.338 239.692 239.317 239.348 245.056 244.626 244.189 243.345 242.44 241.778 241.9 243.089 244.812 246.689 247.825 248.139 248.303 250.159 253.983 259.016 264.983 268.793 272.043 272.539 272.805 273.138 273.449 273.79 274.279 274.884 275.549 276.181 276.844 277.594 278.352 279.449 281.158 283.511 286.212 288.074 289.137 290.019 290.965 292.025 293.069 294.077 295.116 296.031 296.766 297.327 297.882 298.482 298.943 299.29 299.625 299.868 299.935 299.904 299.867 299.855 299.914 300.009 300.028 299.877 299.688 299.623 299.658 299.611 299.542 299.54 299.552 299.504 299.381 299.165 298.771 298.141 297.408 296.746 295.933 294.729 292.452 291.329 290.106 289.818 289.37 290.277 289.611 283.485 277.512 274.555 273.575 273.578 273.565 274.142 276.862 278.596 278.022 276.605 274.202 272.956 273.457 272.102 268.122 264.685 262.972 261.6 260.29 259.129 258.396 257.624 256.549 255.138 254.153 252.302 250.979 251.205 252.595 254.467 252.553 250.534 250.516 253.909 257.118 259.312 255.607 249.747 244.425 241.191 240.208 239.673 239.316 239.349 245.054 244.6 244.11 243.215 242.256 241.598 241.885 243.214 245.087 247.213 248.585 248.989 248.956 250.36 254.005 259.225 265.165 268.998 272.153 272.566 272.795 273.105 273.417 273.785 274.292 274.891 275.54 276.18 276.833 277.572 278.402 279.629 281.324 283.55 286.132 288.011 289.116 290.055 291.058 292.116 293.087 294.048 295.093 296.036 296.781 297.387 298.01 298.574 298.961 299.237 299.46 299.589 299.679 299.762 299.83 299.88 299.974 300.068 300.136 300.032 299.825 299.71 299.705 299.682 299.676 299.695 299.654 299.593 299.512 299.276 298.892 298.339 297.671 297.014 296.278 295.324 294.413 292.556 291.113 290.056 290.138 290.799 289.341 283.261 277.809 275.464 274.73 274.305 273.679 273.145 274.293 275.725 275.76 274.806 273.199 271.948 271.464 269.911 267.0 264.164 262.69 261.727 260.26 258.867 258.074 257.184 256.057 254.716 253.558 252.02 250.679 250.867 251.876 253.641 252.684 251.458 248.532 251.404 256.106 258.598 255.068 249.474 244.034 241.025 240.12 239.637 239.309 239.349 245.039 244.568 244.034 243.086 242.089 241.448 241.865 243.329 245.389 247.855 249.497 249.967 249.851 250.899 254.366 259.727 264.554 269.45 272.307 272.6 272.788 273.08 273.392 273.786 274.308 274.897 275.523 276.159 276.806 277.562 278.504 279.85 281.544 283.652 286.076 287.958 289.135 290.114 291.082 292.072 293.027 294.022 295.102 296.061 296.84 297.499 298.126 298.619 298.955 299.23 299.415 299.48 299.588 299.734 299.801 299.845 299.961 300.08 300.163 300.09 299.91 299.82 299.78 299.715 299.725 299.801 299.804 299.771 299.686 299.374 298.908 298.347 297.706 297.1 296.475 295.649 294.848 293.997 292.565 291.059 290.653 291.332 288.758 282.717 278.359 276.399 275.538 274.486 273.208 272.711 273.656 274.665 274.924 274.063 272.71 271.514 270.473 268.616 266.075 263.738 262.57 261.813 260.318 258.811 257.821 256.97 255.615 254.479 253.124 251.701 250.544 250.351 251.125 252.994 252.237 251.496 248.919 249.518 255.27 257.743 254.617 248.861 243.996 240.912 239.994 239.596 239.305 239.348 245.024 244.516 243.963 242.969 241.936 241.293 241.823 243.469 245.748 248.534 250.383 250.95 251.044 251.788 254.977 260.516 265.698 270.155 272.465 272.642 272.795 273.076 273.388 273.795 274.327 274.905 275.502 276.117 276.751 277.521 278.566 280.008 281.731 283.733 286.026 287.914 289.167 290.189 291.119 292.052 293.022 294.058 295.148 296.102 296.894 297.558 298.16 298.594 298.892 299.156 299.306 299.366 299.53 299.711 299.752 299.786 299.931 300.087 300.186 300.138 299.986 299.912 299.867 299.771 299.784 299.912 299.959 299.937 299.831 299.492 298.987 298.39 297.72 297.167 296.663 295.905 295.08 294.456 293.684 291.755 291.996 291.419 286.976 282.188 279.069 276.871 276.016 274.7 273.248 273.028 273.912 274.789 274.706 273.717 272.588 271.344 269.961 267.984 265.7 263.603 262.417 261.458 260.244 258.677 257.776 256.691 255.169 254.11 252.629 251.108 250.102 250.022 250.327 252.155 252.738 251.373 248.947 247.3 254.215 256.938 254.038 248.472 244.006 240.854 239.879 239.559 239.306 239.347 245.008 244.476 243.89 242.865 241.784 241.157 241.781 243.597 246.163 249.21 251.228 252.165 252.301 253.01 255.918 262.388 266.831 270.822 272.606 272.694 272.827 273.096 273.406 273.815 274.342 274.9 275.462 276.039 276.652 277.438 278.554 280.077 281.848 283.783 285.987 287.875 289.185 290.256 291.174 292.084 293.065 294.099 295.158 296.118 296.937 297.593 298.153 298.552 298.835 299.057 299.162 299.214 299.423 299.656 299.714 299.765 299.924 300.096 300.244 300.259 300.119 300.027 299.996 299.909 299.898 300.02 300.09 300.073 299.956 299.628 299.118 298.483 297.777 297.261 296.847 296.135 295.279 294.64 294.05 293.415 292.868 291.255 285.81 281.717 279.062 277.655 276.415 274.815 273.384 273.318 274.718 275.231 274.628 273.399 272.204 271.084 269.621 267.463 265.694 264.016 262.468 261.364 259.972 258.726 257.615 256.439 254.843 253.477 251.788 250.449 249.484 249.626 249.57 250.721 252.493 251.252 248.966 246.585 252.738 256.208 253.474 248.032 243.846 240.901 239.776 239.535 239.315 239.346 244.998 244.457 243.843 242.779 241.645 241.033 241.752 243.704 246.566 249.734 251.925 253.315 253.677 254.455 257.209 263.667 268.204 271.434 272.709 272.744 272.887 273.143 273.444 273.843 274.34 274.852 275.36 275.884 276.474 277.298 278.428 280.024 281.879 283.823 285.992 287.877 289.205 290.299 291.222 292.136 293.097 294.057 295.069 296.078 296.977 297.637 298.126 298.488 298.758 298.954 299.042 299.093 299.279 299.541 299.68 299.762 299.881 300.052 300.313 300.474 300.355 300.191 300.129 300.041 299.985 300.056 300.194 300.233 300.113 299.765 299.224 298.577 297.902 297.412 297.03 296.425 295.659 294.994 294.394 293.936 293.363 291.466 285.878 281.545 279.28 278.228 276.634 274.512 272.79 272.917 274.495 275.306 274.457 273.122 271.894 270.591 269.186 267.167 265.865 264.217 262.343 260.991 259.513 258.301 257.353 256.153 254.387 252.682 251.063 249.777 249.291 249.022 248.922 250.086 252.034 251.03 248.848 246.581 252.859 255.383 252.86 247.864 243.686 240.76 239.718 239.525 239.325 239.344 245.007 244.418 243.759 242.694 241.544 240.921 241.698 243.772 246.933 250.176 252.628 254.213 254.956 256.013 258.693 264.609 269.079 271.736 272.726 272.766 272.932 273.174 273.478 273.857 274.312 274.767 275.202 275.662 276.243 277.089 278.229 279.853 281.854 283.889 286.085 287.961 289.266 290.322 291.227 292.135 293.064 293.979 294.967 296.021 296.963 297.613 298.049 298.377 298.611 298.782 298.895 298.977 299.138 299.389 299.604 299.733 299.822 299.981 300.281 300.507 300.459 300.31 300.209 300.082 300.004 300.089 300.277 300.331 300.188 299.835 299.318 298.733 298.154 297.694 297.301 296.784 296.128 295.411 294.723 294.281 293.732 291.763 286.256 281.734 279.513 277.824 276.142 273.155 271.324 272.144 274.284 275.072 274.428 272.896 271.553 270.481 268.845 266.892 265.625 264.315 262.299 260.718 258.918 257.592 257.065 256.037 254.042 251.986 250.461 249.211 248.932 248.188 248.146 249.705 251.432 250.761 248.561 246.611 252.266 254.45 252.112 247.652 243.732 240.592 239.673 239.525 239.332 239.343 244.981 244.387 243.709 242.619 241.434 240.808 241.632 243.848 247.147 250.556 253.239 255.1 256.115 257.502 260.262 265.499 269.658 271.856 272.687 272.761 272.934 273.169 273.486 273.862 274.279 274.674 275.029 275.426 276.009 276.884 278.021 279.662 281.831 283.994 286.225 288.065 289.314 290.314 291.209 292.102 292.998 293.905 294.91 295.985 296.916 297.537 297.948 298.27 298.496 298.633 298.748 298.873 299.046 299.3 299.57 299.743 299.851 299.99 300.21 300.372 300.38 300.321 300.239 300.113 300.047 300.147 300.304 300.318 300.174 299.899 299.491 298.982 298.467 298.056 297.693 297.239 296.626 295.84 295.07 294.565 293.917 291.95 286.663 282.265 279.71 277.323 274.423 271.218 269.329 271.03 273.267 274.249 273.716 272.765 271.706 270.42 268.728 266.563 265.244 264.249 262.395 260.579 258.557 257.373 256.965 255.82 253.556 251.427 249.674 248.51 248.016 247.633 247.206 248.438 250.662 250.672 248.506 246.762 251.007 253.532 251.349 247.607 243.626 240.511 239.618 239.529 239.333 239.341 244.955 244.364 243.664 242.556 241.356 240.727 241.564 243.87 247.302 250.822 253.715 255.929 257.14 258.953 261.887 266.501 270.157 271.894 272.599 272.725 272.881 273.117 273.461 273.851 274.246 274.586 274.862 275.22 275.826 276.75 277.876 279.511 281.831 284.131 286.384 288.146 289.315 290.275 291.172 292.05 292.915 293.827 294.878 295.97 296.86 297.426 297.809 298.154 298.425 298.561 298.669 298.814 299.015 299.279 299.566 299.76 299.899 300.024 300.123 300.177 300.212 300.258 300.231 300.127 300.078 300.165 300.272 300.26 300.136 299.943 299.641 299.21 298.758 298.433 298.156 297.756 297.138 296.313 295.524 294.887 293.945 291.873 286.898 282.912 280.119 277.074 273.822 269.432 267.059 268.965 271.338 272.597 272.532 272.219 271.766 270.46 268.677 266.352 264.851 263.957 262.527 260.621 258.525 257.049 256.597 255.258 252.992 250.779 249.109 247.838 247.22 246.75 246.176 247.677 249.666 250.342 248.77 247.063 249.711 252.655 250.704 247.525 243.343 240.478 239.587 239.552 239.34 239.333 244.937 244.333 243.627 242.499 241.291 240.652 241.483 243.852 247.368 250.935 254.1 256.515 258.04 260.061 263.477 267.65 270.69 271.908 272.464 272.638 272.756 273.0 273.386 273.811 274.196 274.487 274.703 275.06 275.739 276.734 277.839 279.435 281.865 284.301 286.565 288.207 289.28 290.229 291.134 292.005 292.849 293.782 294.907 295.997 296.806 297.274 297.6 297.971 298.305 298.501 298.617 298.755 298.964 299.236 299.512 299.707 299.848 299.957 300.001 300.009 300.09 300.213 300.246 300.135 300.044 300.099 300.214 300.221 300.072 299.859 299.632 299.37 299.101 298.919 298.742 298.395 297.806 297.038 296.239 295.285 293.54 290.093 286.428 283.339 280.698 278.002 274.191 269.331 264.756 265.542 268.357 270.063 270.8 271.283 271.352 270.097 268.326 266.184 264.539 263.601 262.484 260.82 258.551 256.769 256.147 254.74 252.481 250.139 248.429 247.348 246.632 246.004 245.209 245.639 246.924 249.466 248.784 247.209 248.784 251.873 250.09 247.332 243.036 240.362 239.572 239.56 239.375 239.336 244.931 244.294 243.57 242.465 241.239 240.59 241.371 243.762 247.361 250.938 254.203 256.625 258.668 261.227 264.877 268.642 271.172 271.93 272.339 272.534 272.607 272.845 273.28 273.74 274.127 274.39 274.589 274.978 275.747 276.815 277.892 279.454 281.942 284.46 286.716 288.249 289.268 290.222 291.13 292.021 292.917 293.914 295.051 296.038 296.699 297.092 297.433 297.826 298.181 298.404 298.516 298.636 298.865 299.177 299.482 299.68 299.784 299.845 299.868 299.907 300.045 300.235 300.301 300.153 300.031 300.076 300.183 300.166 299.999 299.785 299.616 299.523 299.463 299.405 299.291 299.014 298.506 297.754 296.776 295.115 292.631 288.813 286.113 283.903 282.341 279.643 275.925 270.984 264.283 262.439 263.396 265.047 266.766 269.088 270.316 269.55 267.713 265.977 264.337 263.326 262.452 261.179 258.715 256.593 255.561 254.043 252.05 249.615 247.754 246.462 245.743 245.069 244.28 243.933 244.711 247.549 248.589 246.991 249.41 251.011 249.42 246.987 242.907 240.075 239.585 239.567 239.395 239.35 244.957 244.278 243.506 242.43 241.196 240.542 241.257 243.62 247.233 250.802 254.094 256.551 259.056 262.17 266.014 269.001 271.636 271.96 272.249 272.444 272.476 272.682 273.155 273.65 274.043 274.298 274.507 274.942 275.797 276.935 277.982 279.547 282.075 284.606 286.806 288.241 289.237 290.203 291.12 292.055 293.049 294.107 295.191 296.016 296.525 296.889 297.305 297.753 298.111 298.331 298.43 298.545 298.8 299.154 299.485 299.684 299.768 299.801 299.831 299.89 300.029 300.239 300.321 300.173 300.055 300.107 300.17 300.118 300.005 299.822 299.597 299.513 299.609 299.748 299.801 299.646 299.205 298.391 297.057 294.541 291.618 288.798 286.538 284.917 283.392 281.594 278.775 273.99 266.161 260.432 259.438 260.966 263.091 266.116 268.648 269.116 267.417 265.483 263.894 263.024 262.379 261.28 259.08 256.61 254.895 253.313 251.467 249.195 247.236 246.024 244.949 244.265 243.262 242.728 243.09 244.736 248.197 247.068 249.122 250.16 248.661 246.489 242.703 239.881 239.602 239.576 239.401 239.363 244.918 244.306 243.514 242.404 241.163 240.491 241.122 243.415 247.015 250.517 253.708 256.346 259.152 262.584 266.128 269.94 272.054 272.014 272.202 272.397 272.398 272.527 272.998 273.535 273.953 274.224 274.463 274.962 275.914 277.093 278.115 279.739 282.286 284.749 286.831 288.167 289.156 290.14 291.076 292.063 293.156 294.24 295.232 295.923 296.334 296.697 297.19 297.681 298.039 298.252 298.352 298.47 298.749 299.12 299.443 299.646 299.75 299.823 299.912 299.992 300.084 300.246 300.319 300.184 300.092 300.15 300.169 300.115 300.082 299.89 299.536 299.406 299.648 300.039 300.31 300.236 299.764 298.828 297.192 294.387 291.745 289.629 286.813 285.111 283.737 282.329 280.643 277.079 268.57 258.084 255.086 256.41 259.251 263.506 267.252 268.891 267.503 264.952 263.476 262.717 262.351 261.257 259.437 256.454 254.101 252.588 250.849 248.629 246.835 245.7 244.524 243.394 242.315 241.625 241.498 244.007 248.157 247.612 248.418 249.178 247.854 245.931 242.475 239.804 239.609 239.589 239.401 239.375 244.913 244.285 243.471 242.382 241.173 240.458 240.984 243.165 246.716 250.154 253.245 255.853 258.789 262.573 265.094 270.696 272.333 272.113 272.201 272.44 272.439 272.473 272.831 273.379 273.855 274.18 274.49 275.098 276.167 277.312 278.39 280.153 282.609 284.887 286.791 288.044 289.033 290.022 290.962 291.984 293.153 294.214 295.11 295.759 296.195 296.579 297.086 297.547 297.881 298.097 298.224 298.365 298.666 299.047 299.366 299.587 299.727 299.849 300.02 300.153 300.185 300.255 300.303 300.191 300.125 300.172 300.164 300.158 300.209 300.05 299.745 299.709 300.029 300.457 300.527 300.319 299.785 298.529 296.688 294.512 291.727 289.702 287.219 284.706 283.677 282.825 281.96 277.921 268.067 255.295 251.731 253.412 256.533 260.941 265.862 268.353 267.8 264.753 263.201 262.564 262.372 261.492 259.578 256.148 253.39 251.889 250.067 247.897 246.265 245.121 243.76 242.274 241.491 240.636 240.266 242.571 247.882 247.992 247.701 248.063 247.055 245.448 242.228 239.907 239.622 239.606 239.402 239.382 244.974 244.242 243.438 242.367 241.198 240.436 240.86 242.899 246.333 249.653 252.586 255.246 258.036 262.108 265.046 270.688 272.379 272.21 272.244 272.513 272.556 272.55 272.743 273.225 273.759 274.14 274.54 275.32 276.514 277.631 278.812 280.659 282.922 284.96 286.727 287.973 288.968 289.928 290.809 291.805 292.996 294.049 294.913 295.588 296.091 296.524 297.031 297.466 297.755 297.94 298.088 298.285 298.632 299.048 299.385 299.612 299.728 299.799 299.957 300.135 300.167 300.198 300.24 300.201 300.194 300.222 300.179 300.194 300.334 300.367 300.298 300.231 299.875 299.694 299.179 298.747 299.191 298.575 296.933 294.307 291.863 289.363 287.046 284.466 284.003 282.921 280.879 275.885 263.006 252.695 250.813 253.948 257.046 259.621 264.274 267.58 267.545 264.842 262.993 262.495 262.46 261.586 259.599 255.751 252.929 251.038 249.326 247.133 245.405 244.449 242.936 241.329 240.742 239.731 239.228 241.264 247.453 248.172 247.139 247.178 246.48 245.039 242.183 239.908 239.639 239.626 239.41 239.386 244.917 244.262 243.431 242.367 241.241 240.43 240.739 242.616 245.903 248.993 251.783 254.378 257.071 261.108 265.302 270.189 272.241 272.267 272.303 272.582 272.661 272.634 272.713 273.092 273.641 274.069 274.549 275.544 276.87 278.004 279.253 281.09 283.144 284.968 286.647 287.916 288.906 289.824 290.642 291.598 292.776 293.846 294.727 295.423 295.969 296.446 296.963 297.393 297.636 297.781 297.962 298.226 298.622 299.046 299.367 299.59 299.711 299.765 299.903 300.11 300.147 300.11 300.132 300.205 300.301 300.312 300.215 300.206 300.354 300.425 300.308 299.357 297.976 297.673 298.541 298.74 298.643 298.132 296.634 294.1 291.687 289.483 287.233 286.047 284.373 282.232 277.699 269.897 255.87 251.783 253.628 258.504 260.199 259.449 262.971 266.467 266.984 264.843 262.948 262.379 262.395 261.623 259.344 255.505 252.247 249.887 248.287 246.228 244.493 243.642 242.329 240.796 240.188 239.106 238.45 241.174 247.006 248.146 247.124 246.79 246.112 244.721 242.161 239.836 239.658 239.638 239.422 239.389 244.87 244.259 243.416 242.383 241.286 240.456 240.617 242.325 245.391 248.285 250.915 253.309 255.863 259.777 265.648 269.454 271.844 272.24 272.354 272.619 272.729 272.694 272.718 273.006 273.526 273.99 274.548 275.732 277.202 278.385 279.649 281.405 283.273 284.938 286.561 287.833 288.797 289.678 290.475 291.397 292.544 293.641 294.557 295.279 295.855 296.35 296.851 297.258 297.459 297.593 297.828 298.164 298.591 299.007 299.308 299.535 299.703 299.791 299.928 300.142 300.159 300.026 300.006 300.187 300.367 300.35 300.22 300.196 300.253 300.102 299.421 298.065 297.305 297.363 297.812 298.089 298.04 297.918 296.504 293.971 291.704 289.714 287.699 286.882 285.114 280.819 272.549 257.277 251.498 251.88 258.186 262.744 262.2 260.682 262.02 265.226 266.59 264.935 262.969 262.219 262.318 261.561 259.101 255.251 251.654 249.125 247.374 245.399 243.696 242.963 241.814 240.498 239.843 238.524 237.839 240.85 246.474 247.931 247.24 246.63 245.783 244.41 242.099 239.8 239.687 239.634 239.438 239.393 244.928 244.246 243.452 242.418 241.365 240.49 240.494 242.014 244.864 247.513 249.899 252.135 254.473 258.211 263.493 268.549 271.125 272.023 272.357 272.603 272.745 272.731 272.742 272.983 273.451 273.944 274.596 275.957 277.547 278.77 279.988 281.606 283.335 284.913 286.476 287.703 288.615 289.491 290.336 291.259 292.35 293.441 294.381 295.133 295.742 296.246 296.697 297.061 297.251 297.411 297.699 298.083 298.529 298.964 299.296 299.564 299.778 299.858 299.944 300.122 300.13 299.934 299.9 300.158 300.339 300.255 300.138 300.161 300.096 299.617 299.0 297.956 296.83 296.523 296.906 297.265 297.807 297.806 296.663 294.142 291.704 289.959 289.032 287.768 284.329 277.069 260.477 250.244 248.388 254.724 261.906 265.507 264.525 261.764 261.479 263.998 265.533 264.883 263.011 262.275 262.346 261.55 259.119 255.418 251.371 248.661 246.611 244.605 243.134 242.429 241.143 240.137 239.267 238.108 237.491 240.181 245.742 247.474 247.08 246.345 245.358 244.088 242.049 239.894 239.734 239.609 239.458 239.397 244.949 244.298 243.463 242.456 241.442 240.529 240.406 241.723 244.345 246.74 248.809 250.777 253.003 256.584 261.794 268.004 270.548 271.695 272.283 272.523 272.695 272.734 272.778 273.021 273.459 273.981 274.738 276.249 277.882 279.128 280.259 281.722 283.371 284.911 286.404 287.569 288.454 289.328 290.236 291.218 292.299 293.337 294.23 294.963 295.578 296.096 296.546 296.919 297.136 297.311 297.609 298.004 298.462 298.932 299.306 299.621 299.861 299.898 299.902 300.039 300.091 299.943 299.952 300.217 300.332 300.16 300.021 300.024 299.896 299.294 298.576 297.906 297.038 296.801 296.845 297.285 297.596 297.52 296.1 293.84 291.737 290.462 290.071 288.341 282.462 272.036 253.573 246.317 247.153 256.387 264.811 267.555 265.348 262.36 260.794 262.97 264.556 264.647 263.033 262.209 262.402 261.59 259.377 255.734 251.545 248.43 246.082 244.22 242.63 241.755 240.733 239.701 238.842 237.821 237.382 240.427 244.813 246.929 246.864 245.958 244.913 243.855 241.991 240.142 239.792 239.575 239.493 239.401 244.945 244.314 243.497 242.51 241.488 240.59 240.344 241.444 243.79 245.95 247.69 249.346 251.529 255.13 260.165 266.89 270.324 271.501 272.141 272.402 272.599 272.705 272.817 273.088 273.527 274.077 274.954 276.576 278.205 279.489 280.553 281.86 283.412 284.897 286.311 287.427 288.313 289.203 290.15 291.18 292.286 293.282 294.119 294.807 295.402 295.909 296.361 296.747 296.986 297.178 297.513 297.941 298.422 298.899 299.275 299.636 299.932 299.969 299.93 300.048 300.156 300.081 300.106 300.31 300.341 300.116 299.914 299.807 299.451 298.911 298.55 298.032 297.514 297.207 297.192 296.89 296.974 296.577 295.36 293.851 291.805 291.384 290.943 287.997 279.022 267.246 249.732 244.757 247.996 256.185 265.22 268.079 266.03 263.264 260.266 262.061 264.251 264.001 262.602 261.659 261.86 261.446 259.55 256.13 251.837 248.699 245.964 244.242 242.59 241.698 240.594 239.626 238.604 237.77 237.394 239.195 242.844 246.374 246.708 245.803 244.586 243.675 242.037 240.385 239.816 239.544 239.533 239.403 244.939 244.295 243.566 242.577 241.597 240.693 240.33 241.196 243.103 245.176 246.593 247.972 250.115 253.642 258.718 265.206 269.81 271.334 271.997 272.25 272.476 272.658 272.851 273.176 273.639 274.216 275.22 276.893 278.494 279.828 280.88 282.05 283.469 284.868 286.191 287.27 288.188 289.12 290.09 291.139 292.248 293.22 294.024 294.68 295.248 295.72 296.147 296.519 296.776 297.025 297.432 297.909 298.41 298.882 299.265 299.674 300.008 300.057 300.003 300.116 300.287 300.292 300.291 300.367 300.308 300.088 299.855 299.639 299.417 299.098 298.63 298.073 297.631 297.293 297.057 296.983 296.77 296.334 295.589 294.092 292.599 292.051 291.296 286.289 275.212 256.735 247.242 245.19 248.687 254.479 264.148 268.01 267.029 263.499 260.278 261.883 263.403 263.399 261.567 260.969 261.495 261.178 259.935 256.913 252.608 249.055 246.143 244.233 242.527 241.583 240.822 239.768 238.578 237.925 237.616 238.097 241.725 245.737 246.521 245.756 244.37 243.521 242.046 240.542 239.828 239.523 239.572 239.406 244.958 244.322 243.569 242.655 241.697 240.798 240.345 240.981 242.606 244.474 245.578 246.64 248.797 252.355 257.512 263.814 269.273 271.257 271.944 272.105 272.337 272.607 272.893 273.309 273.81 274.413 275.514 277.171 278.729 280.131 281.236 282.314 283.575 284.851 286.058 287.107 288.084 289.099 290.076 291.093 292.14 293.074 293.867 294.51 295.051 295.491 295.891 296.254 296.561 296.915 297.395 297.89 298.381 298.851 299.293 299.748 300.055 300.083 300.049 300.18 300.375 300.441 300.423 300.35 300.205 300.044 299.855 299.621 299.422 299.162 298.726 298.17 297.702 297.296 296.909 296.801 297.103 296.475 295.434 294.483 293.55 292.999 290.975 283.859 271.791 253.554 246.389 245.904 248.178 252.594 260.909 267.376 267.422 264.184 260.752 262.079 263.03 262.431 260.06 259.391 260.327 260.91 260.12 257.619 253.675 249.525 246.213 244.24 242.715 241.582 241.059 239.885 238.642 238.133 237.439 237.591 241.354 244.89 246.235 245.587 244.228 243.376 241.975 240.653 239.84 239.527 239.6 239.408 244.949 244.38 243.684 242.732 241.8 240.923 240.391 240.835 242.238 243.819 244.69 245.605 247.689 251.193 256.5 262.902 268.946 271.232 272.035 272.068 272.267 272.589 272.946 273.46 273.999 274.602 275.725 277.338 278.868 280.313 281.491 282.552 283.706 284.872 285.989 287.017 288.023 289.072 290.031 290.993 291.985 292.909 293.706 294.305 294.783 295.204 295.631 296.043 296.42 296.846 297.349 297.836 298.317 298.77 299.24 299.721 300.012 300.046 300.057 300.179 300.303 300.369 300.386 300.273 300.094 299.986 299.831 299.604 299.387 299.092 298.626 298.021 297.413 296.959 296.734 296.757 297.051 297.317 295.813 294.986 294.805 293.785 290.446 281.716 269.119 252.448 247.174 246.967 247.398 250.393 258.387 265.766 267.109 264.22 261.44 261.961 262.137 260.634 258.025 257.297 259.026 260.129 260.192 258.105 254.374 250.15 246.722 244.587 243.017 241.787 240.918 240.101 238.991 238.476 237.486 237.015 239.225 243.179 245.804 245.232 244.12 243.261 241.887 240.795 239.857 239.56 239.618 239.409 244.963 244.375 243.732 242.812 241.924 241.059 240.427 240.764 241.853 243.05 243.878 244.694 246.739 250.21 255.618 262.109 268.559 271.196 272.185 272.12 272.284 272.621 273.014 273.601 274.175 274.765 275.873 277.451 278.969 280.425 281.638 282.704 283.788 284.873 285.947 286.976 287.985 289.004 289.921 290.854 291.853 292.803 293.606 294.144 294.549 294.948 295.398 295.862 296.294 296.763 297.292 297.814 298.3 298.71 299.166 299.668 299.992 300.059 300.097 300.171 300.201 300.252 300.31 300.208 300.047 299.972 299.824 299.582 299.322 298.966 298.474 297.821 297.084 296.616 296.594 296.772 297.012 297.294 296.992 295.682 295.378 294.439 289.75 279.945 267.351 255.74 249.04 247.935 246.916 248.502 255.557 263.947 266.434 264.881 262.193 261.494 261.413 258.718 255.806 255.305 257.708 260.05 260.096 258.589 254.733 250.65 247.061 244.818 242.992 241.945 240.872 240.1 239.176 238.765 237.574 236.418 237.153 241.778 245.255 244.888 244.076 243.157 241.884 240.937 239.938 239.597 239.634 239.41 245.007 244.44 243.807 242.923 242.09 241.208 240.557 240.695 241.542 242.51 242.955 243.95 245.934 249.441 254.827 261.465 268.081 271.177 272.331 272.212 272.367 272.698 273.07 273.697 274.31 274.899 275.981 277.543 279.062 280.502 281.703 282.754 283.794 284.84 285.922 286.972 287.963 288.918 289.79 290.724 291.761 292.737 293.519 294.002 294.369 294.756 295.214 295.707 296.185 296.693 297.25 297.807 298.289 298.653 299.099 299.633 300.002 300.111 300.177 300.214 300.169 300.208 300.281 300.207 300.103 300.06 299.9 299.617 299.283 298.842 298.333 297.661 296.867 296.41 296.488 296.715 296.963 297.283 297.456 296.617 295.558 294.187 288.627 278.545 266.653 256.379 250.726 248.891 246.759 247.133 253.602 262.139 265.769 265.503 262.835 260.725 259.691 256.629 253.988 253.957 256.602 259.51 260.129 258.519 255.216 250.945 247.511 244.796 243.182 242.075 240.602 239.447 238.918 238.87 237.723 235.937 236.169 239.288 244.409 244.659 244.001 242.99 241.908 241.156 240.048 239.625 239.648 239.41 245.036 244.479 243.842 243.052 242.225 241.376 240.714 240.674 241.265 242.039 242.334 243.294 245.303 248.765 254.192 260.879 267.841 271.152 272.43 272.305 272.474 272.783 273.074 273.694 274.375 275.005 276.07 277.634 279.153 280.551 281.699 282.714 283.732 284.794 285.936 287.014 287.959 288.837 289.676 290.631 291.69 292.621 293.319 293.759 294.15 294.562 295.028 295.543 296.088 296.657 297.224 297.748 298.194 298.554 299.029 299.568 299.955 300.142 300.283 300.334 300.256 300.269 300.344 300.313 300.268 300.248 300.051 299.672 299.205 298.667 298.13 297.471 296.736 296.347 296.423 296.645 297.012 297.405 297.369 296.301 294.725 293.053 287.897 278.246 267.478 257.705 252.943 249.581 247.766 248.486 253.692 260.044 266.434 266.128 262.736 260.006 258.041 255.071 253.099 253.564 256.06 258.828 259.37 258.052 255.125 251.105 247.678 244.983 243.302 241.706 240.053 239.108 238.81 239.055 237.812 235.523 235.335 238.066 243.483 244.371 243.725 242.541 241.954 241.37 240.135 239.648 239.661 239.412 245.037 244.516 243.9 243.163 242.354 241.54 240.9 240.719 241.077 241.616 241.877 242.722 244.794 248.202 253.576 260.302 267.623 271.067 272.424 272.374 272.548 272.828 273.023 273.584 274.349 275.065 276.145 277.702 279.211 280.559 281.642 282.632 283.669 284.791 285.996 287.058 287.91 288.725 289.572 290.554 291.605 292.472 293.085 293.499 293.92 294.37 294.857 295.406 296.014 296.616 297.174 297.668 298.113 298.51 298.985 299.47 299.871 300.136 300.318 300.361 300.305 300.354 300.446 300.419 300.379 300.375 300.182 299.716 299.129 298.565 298.078 297.46 296.767 296.473 296.596 296.863 297.181 297.32 296.871 295.004 293.659 291.982 287.069 278.876 269.553 260.567 254.488 251.157 249.326 250.734 254.172 259.091 264.848 265.349 261.974 259.216 256.566 253.863 252.899 254.074 256.231 258.373 258.474 258.006 255.184 251.147 247.782 244.794 242.848 241.111 239.649 238.799 238.495 238.943 237.842 235.258 234.62 237.071 242.433 243.891 242.933 241.802 242.0 241.515 240.17 239.669 239.683 239.427 245.064 244.556 243.982 243.278 242.484 241.714 241.102 240.748 240.904 241.238 241.542 242.322 244.371 247.794 253.085 259.837 267.73 270.857 272.297 272.401 272.589 272.85 272.988 273.459 274.288 275.102 276.225 277.762 279.239 280.536 281.562 282.539 283.614 284.795 286.032 287.047 287.808 288.583 289.461 290.478 291.527 292.359 292.93 293.325 293.746 294.213 294.733 295.331 295.976 296.565 297.105 297.601 298.063 298.466 298.902 299.359 299.815 300.129 300.29 300.332 300.347 300.446 300.535 300.515 300.519 300.579 300.418 299.866 299.141 298.572 298.187 297.629 296.925 296.665 296.828 297.089 297.262 297.055 295.726 293.354 291.922 290.628 287.454 279.732 271.642 262.533 256.888 253.155 250.904 252.278 255.915 258.007 262.158 263.504 261.036 258.019 255.208 253.243 253.056 254.112 256.119 257.897 258.433 257.934 254.838 250.93 247.193 244.194 242.014 240.312 239.304 238.408 238.11 238.738 237.77 235.111 234.013 236.176 241.377 243.112 241.645 241.841 242.084 241.615 240.162 239.7 239.712 239.441 245.097 244.549 244.031 243.39 242.597 241.913 241.303 240.892 240.679 240.904 241.22 242.079 243.997 247.446 252.738 259.442 267.698 270.62 272.104 272.385 272.6 272.869 272.986 273.372 274.221 275.126 276.306 277.812 279.243 280.489 281.473 282.451 283.575 284.801 286.037 286.994 287.688 288.45 289.359 290.407 291.445 292.246 292.784 293.157 293.578 294.064 294.635 295.297 295.967 296.518 297.013 297.493 297.947 298.34 298.748 299.233 299.761 300.113 300.26 300.35 300.427 300.512 300.561 300.603 300.706 300.817 300.643 299.998 299.169 298.613 298.363 297.877 297.164 296.842 296.972 296.802 297.065 295.471 294.395 293.334 291.721 289.711 286.744 280.498 272.341 263.872 258.316 253.143 251.752 253.445 255.275 256.818 260.534 262.059 259.773 256.897 254.118 252.447 252.546 253.922 255.523 256.969 257.971 257.145 254.929 250.78 246.53 243.454 241.132 239.574 238.921 238.132 237.832 238.385 237.54 234.924 233.552 235.306 240.181 241.93 240.542 241.751 242.293 241.685 240.115 239.739 239.748 239.451 245.087 244.631 244.11 243.497 242.708 242.086 241.489 241.025 240.643 240.633 240.973 241.95 243.932 247.242 252.51 259.122 266.548 270.338 271.798 272.328 272.584 272.902 273.035 273.345 274.15 275.132 276.384 277.845 279.217 280.413 281.386 282.409 283.599 284.834 286.018 286.921 287.583 288.335 289.256 290.306 291.293 292.018 292.494 292.85 293.312 293.88 294.536 295.259 295.931 296.427 296.845 297.274 297.724 298.158 298.607 299.144 299.709 300.105 300.318 300.459 300.501 300.466 300.485 300.633 300.741 300.687 300.403 299.86 299.205 298.891 298.787 298.383 297.701 297.155 296.918 294.791 294.692 294.129 294.173 293.404 291.536 288.563 285.884 280.034 271.31 261.045 256.266 254.453 252.48 253.193 253.887 255.747 259.51 261.143 258.759 255.798 253.162 251.466 251.718 253.3 255.071 256.257 256.878 256.66 254.208 250.287 245.919 242.786 240.192 238.723 238.406 237.851 237.616 237.845 237.284 234.893 233.248 234.58 238.985 240.428 239.672 241.749 242.784 241.705 240.066 239.798 239.796 239.464 245.076 244.648 244.179 243.62 242.818 242.228 241.677 241.178 240.641 240.517 240.818 241.912 243.867 247.039 252.33 258.82 265.407 269.954 271.536 272.288 272.574 272.93 273.098 273.354 274.079 275.103 276.417 277.848 279.16 280.325 281.344 282.466 283.717 284.904 285.991 286.847 287.493 288.209 289.099 290.125 291.071 291.754 292.192 292.559 293.107 293.797 294.531 295.244 295.821 296.221 296.609 297.059 297.578 298.097 298.612 299.165 299.73 300.168 300.441 300.553 300.511 300.438 300.481 300.541 300.345 299.877 299.223 299.163 299.378 299.372 299.297 298.891 298.18 297.335 296.497 294.597 293.996 292.159 291.597 290.479 289.359 286.938 283.396 276.75 269.141 259.473 255.665 253.453 252.423 253.364 252.899 255.572 259.445 260.68 257.975 254.668 252.547 250.91 250.883 252.264 253.87 255.272 256.075 256.482 253.737 249.647 245.474 242.199 239.54 238.075 237.809 237.738 237.238 237.37 236.943 234.799 233.041 234.064 238.643 239.145 240.08 242.611 243.359 241.75 240.032 239.87 239.857 239.483 245.085 244.684 244.242 243.74 242.927 242.363 241.842 241.313 240.728 240.497 240.844 241.9 243.807 246.991 252.215 258.598 265.119 269.201 271.341 272.275 272.558 272.93 273.131 273.357 273.99 275.056 276.426 277.841 279.099 280.246 281.33 282.556 283.845 284.957 285.936 286.743 287.373 288.057 288.918 289.923 290.843 291.528 291.984 292.384 293.008 293.794 294.565 295.208 295.636 295.947 296.371 296.903 297.483 298.035 298.595 299.203 299.826 300.3 300.572 300.618 300.52 300.433 300.385 300.205 299.758 298.432 298.384 299.368 299.437 299.457 299.32 298.674 297.616 296.526 295.3 293.732 292.678 290.636 289.019 288.035 286.9 284.315 279.552 273.728 265.882 258.732 255.386 254.31 252.778 253.443 253.851 257.147 260.674 261.352 257.393 254.228 252.91 251.232 250.902 251.541 252.917 254.266 255.842 255.967 253.009 248.96 244.912 241.423 238.807 237.503 237.311 237.586 237.033 236.73 236.355 234.66 232.897 233.664 238.088 238.499 240.338 244.448 243.731 241.785 240.099 239.956 239.924 239.5 245.119 244.688 244.315 243.865 243.071 242.484 241.983 241.447 240.843 240.587 240.966 241.958 243.756 246.956 252.194 258.416 264.888 268.778 271.259 272.285 272.531 272.903 273.126 273.334 273.9 275.004 276.428 277.833 279.045 280.19 281.335 282.641 283.935 284.967 285.845 286.608 287.235 287.923 288.781 289.762 290.643 291.318 291.803 292.265 292.969 293.804 294.549 295.07 295.359 295.635 296.161 296.803 297.422 297.973 298.582 299.286 299.971 300.437 300.677 300.671 300.488 300.249 299.956 299.299 298.367 297.973 299.402 299.469 299.32 298.8 298.597 298.204 297.19 295.459 293.972 292.991 291.767 289.822 287.494 286.187 284.658 280.544 276.953 272.592 266.914 259.974 256.345 253.906 253.822 255.289 256.936 259.143 261.97 261.69 257.655 254.544 253.731 252.296 251.857 252.145 252.753 253.736 255.502 255.058 252.32 248.412 244.39 240.882 238.36 237.05 236.896 237.281 236.72 235.951 235.775 234.467 232.779 233.63 237.244 238.261 241.1 245.633 243.763 241.773 240.15 240.051 239.988 239.513 245.161 244.75 244.407 243.972 243.228 242.621 242.118 241.597 240.989 240.754 241.104 242.023 243.756 247.011 252.194 258.374 264.758 268.71 271.43 272.327 272.51 272.87 273.095 273.283 273.832 274.971 276.44 277.836 279.018 280.179 281.373 282.711 283.978 284.934 285.729 286.455 287.102 287.852 288.744 289.673 290.469 291.075 291.592 292.204 293.024 293.834 294.422 294.77 294.99 295.338 296.011 296.773 297.446 298.038 298.716 299.476 300.096 300.47 300.675 300.636 300.258 299.619 298.297 297.821 298.045 298.51 299.571 298.943 298.458 298.473 298.424 298.247 297.315 295.165 293.35 292.013 290.754 288.255 286.1 284.569 283.0 279.271 276.687 273.901 270.082 263.518 259.608 256.925 257.786 258.564 260.204 262.461 263.41 261.618 258.924 256.195 254.854 253.164 252.727 253.683 254.162 255.121 255.293 253.877 251.594 247.981 243.873 240.352 238.017 236.641 236.379 236.809 236.387 235.196 235.124 233.92 232.612 233.518 236.273 238.658 243.535 245.56 243.492 241.6 240.224 240.129 240.047 239.516 245.146 244.761 244.496 244.083 243.39 242.76 242.227 241.719 241.113 240.948 241.297 242.16 243.792 247.078 252.3 258.448 264.907 268.617 271.649 272.358 272.521 272.861 273.074 273.254 273.82 274.981 276.455 277.833 279.01 280.205 281.44 282.782 284.012 284.912 285.66 286.36 287.018 287.808 288.71 289.608 290.366 290.953 291.556 292.335 293.194 293.874 294.257 294.495 294.775 295.268 296.051 296.87 297.56 298.194 298.902 299.625 300.133 300.408 300.548 300.413 299.793 298.543 297.902 298.07 298.834 299.171 299.128 298.54 298.762 298.693 298.743 298.627 297.759 296.207 293.606 291.132 289.686 286.921 284.912 283.603 282.497 279.835 277.528 275.157 272.231 268.879 264.198 261.049 260.728 261.715 262.446 263.881 263.533 261.645 259.278 257.575 255.466 254.221 253.086 255.04 254.782 255.432 254.03 253.063 250.88 247.415 243.352 239.875 237.516 236.11 235.669 235.854 235.611 234.682 234.396 233.461 232.407 233.442 236.076 239.007 244.368 245.204 243.045 241.465 240.305 240.213 240.095 239.51 245.113 244.806 244.583 244.215 243.56 242.895 242.342 241.852 241.25 241.18 241.494 242.126 243.836 247.227 252.412 258.65 265.172 268.43 271.786 272.384 272.557 272.886 273.076 273.252 273.842 275.011 276.458 277.807 278.983 280.222 281.502 282.846 284.033 284.886 285.611 286.31 286.976 287.75 288.619 289.498 290.271 290.923 291.655 292.499 293.279 293.794 294.064 294.341 294.758 295.386 296.239 297.089 297.758 298.374 299.065 299.748 300.193 300.367 300.366 300.136 298.926 298.321 298.51 299.38 299.749 299.498 299.286 299.046 298.922 298.874 298.952 298.495 297.674 295.824 292.867 290.336 288.524 285.947 284.323 283.602 282.101 279.97 277.949 274.862 272.128 270.611 267.849 264.506 264.011 264.221 264.418 264.163 263.392 261.752 259.682 257.879 255.946 254.059 254.095 255.295 254.751 254.453 253.481 252.231 250.041 247.015 242.832 239.276 237.149 235.776 235.002 235.029 234.766 234.299 233.669 233.042 232.303 233.478 236.222 239.498 244.162 244.725 242.677 241.401 240.406 240.298 240.137 239.501 245.159 244.856 244.651 244.355 243.739 243.039 242.441 241.951 241.434 241.392 241.698 242.226 243.996 247.463 252.674 258.944 265.432 268.764 271.874 272.403 272.617 272.947 273.102 273.269 273.88 275.039 276.444 277.757 278.927 280.221 281.549 282.886 284.024 284.843 285.569 286.294 286.968 287.693 288.503 289.363 290.168 290.924 291.778 292.597 293.258 293.67 293.993 294.428 294.959 295.626 296.489 297.369 298.036 298.626 299.289 299.914 300.272 300.305 300.153 299.927 298.618 298.678 299.228 299.972 299.827 299.535 299.276 299.109 298.998 298.918 298.336 297.815 297.358 295.014 292.204 290.114 288.232 286.488 284.931 283.441 281.601 279.478 277.371 274.103 272.059 271.34 270.415 267.415 266.753 266.078 265.189 264.298 263.054 261.63 259.639 257.586 255.473 254.244 253.658 254.666 254.274 253.773 252.581 251.138 249.176 246.384 242.601 238.708 236.83 235.519 234.36 233.998 233.87 233.521 233.01 232.668 232.145 233.589 236.553 242.672 245.096 244.34 242.466 241.362 240.492 240.383 240.167 239.489 245.154 244.926 244.738 244.498 243.914 243.195 242.537 242.072 241.613 241.649 241.854 242.435 244.142 247.747 253.078 259.289 265.527 269.175 271.941 272.414 272.705 273.023 273.138 273.312 273.933 275.049 276.403 277.677 278.853 280.213 281.587 282.903 283.993 284.798 285.548 286.308 286.982 287.669 288.439 289.292 290.144 291.019 291.942 292.723 293.335 293.839 294.401 294.991 295.503 296.025 296.783 297.656 298.362 298.964 299.596 300.114 300.3 300.161 299.774 299.398 300.023 300.051 300.054 299.878 299.55 299.296 299.142 299.046 298.993 298.933 298.865 298.324 297.151 293.958 291.316 290.46 289.632 288.667 287.13 284.187 281.762 279.251 277.234 274.998 273.652 273.708 272.402 269.633 267.741 267.352 266.089 264.085 262.494 261.341 259.603 257.315 255.248 253.784 254.13 254.496 253.805 252.768 251.15 249.733 248.277 245.979 242.398 238.626 236.412 235.059 233.707 233.239 233.156 233.095 232.477 232.168 232.577 234.09 238.521 243.896 245.745 244.068 242.339 241.412 240.538 240.469 240.187 239.476 245.171 244.943 244.822 244.638 244.106 243.353 242.674 242.197 241.839 241.898 241.931 242.339 244.276 248.114 253.511 259.633 266.096 269.573 271.993 272.453 272.791 273.075 273.171 273.372 273.994 275.037 276.336 277.594 278.799 280.228 281.63 282.928 284.006 284.822 285.582 286.33 286.994 287.712 288.533 289.44 290.373 291.315 292.224 292.957 293.624 294.341 295.104 295.757 296.26 296.691 297.306 298.072 298.712 299.26 299.826 300.27 300.339 300.107 299.479 299.828 300.282 300.226 300.033 299.736 299.409 299.379 299.268 299.149 299.093 299.02 298.783 298.306 296.452 293.986 292.892 292.693 291.803 290.023 288.517 285.46 282.306 279.48 277.357 275.887 275.156 274.604 272.612 270.261 268.961 268.301 266.333 263.928 261.623 260.955 259.039 256.949 254.952 253.244 253.179 253.896 253.011 251.44 249.557 248.075 247.118 245.614 242.423 238.767 236.326 234.499 233.268 232.618 232.379 232.612 232.021 231.85 232.608 234.643 239.143 243.907 245.29 243.853 242.383 241.478 240.607 240.516 240.197 239.467 245.239 245.014 244.906 244.784 244.279 243.54 242.826 242.333 242.004 242.072 241.996 242.526 244.476 248.568 254.015 260.077 266.882 269.876 272.04 272.512 272.863 273.11 273.212 273.477 274.078 275.022 276.249 277.509 278.772 280.269 281.677 282.966 284.059 284.883 285.622 286.352 287.046 287.845 288.739 289.716 290.693 291.642 292.521 293.258 294.058 294.973 295.844 296.539 297.095 297.548 298.101 298.733 299.217 299.622 300.089 300.474 300.446 300.123 299.423 300.139 300.356 300.211 299.651 299.091 298.661 299.277 299.546 299.494 299.404 299.261 298.97 298.303 297.421 296.324 295.372 294.651 293.639 291.415 289.391 286.08 282.93 279.854 277.145 275.576 275.009 274.227 272.49 270.921 270.188 269.103 266.495 263.332 261.559 259.974 258.349 256.534 254.789 253.269 252.421 252.9 251.825 249.589 247.633 246.245 245.557 245.042 242.474 238.71 235.754 234.037 232.933 232.075 231.857 231.938 231.495 231.59 232.736 235.347 239.267 243.654 244.476 243.58 242.546 241.523 240.676 240.556 240.196 239.455 245.265 245.06 244.999 244.935 244.47 243.75 242.986 242.458 242.146 242.189 242.077 242.596 244.693 249.043 254.554 260.586 266.881 270.059 272.093 272.592 272.94 273.13 273.26 273.629 274.206 275.033 276.162 277.429 278.772 280.325 281.727 283.014 284.12 284.935 285.643 286.387 287.165 288.057 289.029 290.072 291.084 292.055 293.008 293.955 295.012 296.117 297.066 297.797 298.275 298.623 299.021 299.474 299.782 300.035 300.399 300.705 300.553 300.118 298.972 300.068 300.425 299.969 298.721 298.096 297.755 298.914 299.69 299.915 299.831 299.638 299.396 298.939 298.209 297.475 296.813 296.099 294.95 293.111 290.332 286.826 283.104 280.099 277.388 275.632 274.823 273.956 272.948 272.338 271.415 270.085 267.445 264.151 261.794 259.753 257.825 256.157 254.436 253.522 252.062 251.918 250.19 247.852 245.801 244.737 244.645 244.669 242.566 238.697 235.474 233.461 232.44 231.753 231.415 231.366 230.956 231.306 233.142 236.15 239.907 243.451 243.828 243.362 242.642 241.653 240.737 240.568 240.196 239.44 245.256 245.122 245.092 245.086 244.688 243.961 243.194 242.649 242.285 242.259 242.075 242.41 244.949 249.519 255.052 261.038 267.178 270.304 272.19 272.71 273.025 273.147 273.341 273.837 274.396 275.101 276.123 277.385 278.809 280.41 281.81 283.091 284.183 284.965 285.657 286.474 287.356 288.297 289.372 290.602 291.851 293.051 294.361 295.763 297.186 298.355 299.257 300.272 300.385 300.135 299.999 300.079 300.197 300.374 300.668 300.853 300.602 300.09 298.907 300.278 300.472 299.32 298.254 297.279 296.91 297.323 299.15 299.94 300.142 300.027 299.826 299.542 299.092 298.49 297.786 296.943 295.879 294.277 291.632 287.839 283.206 280.154 277.978 276.529 275.825 274.554 274.095 273.836 272.879 271.218 268.827 265.706 262.567 259.62 257.5 255.557 254.096 253.236 251.295 251.11 249.088 246.559 244.65 243.38 243.441 243.633 242.326 238.655 234.997 232.782 231.981 231.421 231.018 230.797 230.794 231.031 233.569 237.033 241.907 243.424 243.48 243.156 242.61 241.812 240.781 240.565 240.207 239.421 245.237 245.16 245.197 245.254 244.884 244.164 243.42 242.848 242.438 242.32 242.018 242.435 245.149 249.747 255.433 261.358 267.545 270.608 272.323 272.819 273.085 273.171 273.461 274.07 274.619 275.259 276.216 277.46 278.913 280.545 281.946 283.209 284.27 285.022 285.731 286.595 287.463 288.376 289.675 291.368 293.087 294.667 296.354 298.067 300.082 302.627 304.371 302.871 302.284 301.432 300.739 300.473 300.421 300.572 300.803 300.862 300.642 300.269 299.717 300.38 300.382 299.15 297.816 296.717 296.182 296.217 297.417 299.137 299.857 300.04 299.905 299.652 299.295 298.798 298.141 297.295 296.305 295.028 292.836 288.871 283.775 279.788 277.84 276.718 276.0 275.367 274.679 274.296 273.181 271.746 270.035 267.263 263.41 259.885 257.551 255.317 253.995 252.915 251.1 249.909 248.201 245.633 244.293 242.644 241.95 242.557 241.68 238.426 234.728 232.334 231.63 231.118 230.466 230.281 230.321 230.936 235.578 239.903 243.303 243.377 243.259 242.969 242.539 241.909 240.877 240.575 240.225 239.4 245.289 245.204 245.3 245.423 245.16 244.433 243.676 243.072 242.581 242.26 241.907 242.433 245.271 250.076 255.635 261.57 267.865 270.922 272.469 272.895 273.113 273.193 273.585 274.298 274.864 275.496 276.437 277.657 279.096 280.721 282.107 283.332 284.358 285.096 285.834 286.704 287.51 288.432 290.002 291.983 294.594 296.776 299.054 302.056 305.018 306.245 307.315 306.682 303.574 302.094 301.16 300.803 300.655 300.74 300.881 300.845 300.696 300.512 300.413 300.512 300.465 299.033 297.915 296.673 296.011 295.734 296.065 297.666 299.338 299.858 299.856 299.673 299.426 299.006 298.415 297.608 296.643 295.567 293.851 290.501 285.169 280.179 277.398 276.007 275.382 275.187 274.369 273.977 272.915 271.838 270.956 268.386 264.588 260.52 257.6 255.327 254.102 252.399 250.692 248.609 246.627 245.285 243.516 242.125 241.457 241.745 240.896 238.201 234.459 232.232 231.483 230.832 230.105 229.987 230.015 230.921 236.115 241.413 243.589 243.217 243.084 242.809 242.464 241.885 240.982 240.596 240.24 239.384 245.308 245.265 245.428 245.602 245.396 244.734 243.932 243.291 242.716 242.224 241.797 242.451 245.338 250.174 255.641 261.565 268.293 271.27 272.628 272.948 273.113 273.217 273.707 274.516 275.123 275.793 276.761 277.955 279.351 280.926 282.259 283.422 284.406 285.143 285.914 286.789 287.574 288.573 290.162 293.237 296.455 299.655 301.508 303.875 305.115 305.998 306.829 306.576 303.092 301.493 301.271 301.031 300.845 300.839 300.908 300.838 300.738 300.666 300.627 300.666 300.691 300.198 299.566 297.693 296.854 296.463 296.441 296.827 298.613 299.706 299.827 299.729 299.567 299.193 298.658 297.927 296.994 296.012 294.655 291.894 287.744 281.545 277.814 275.585 275.243 274.712 273.572 273.487 272.618 271.582 271.198 269.045 265.466 261.51 257.688 255.523 253.327 250.979 249.464 247.312 246.089 244.03 242.785 241.662 240.238 240.782 240.302 237.935 234.451 232.318 231.503 230.779 230.149 229.782 229.844 230.848 236.141 241.461 243.217 242.941 242.907 242.679 242.412 241.873 241.079 240.644 240.255 239.366 245.317 245.325 245.549 245.781 245.638 245.013 244.207 243.521 242.794 242.166 241.707 242.423 245.347 250.095 255.458 261.411 267.768 271.591 272.802 272.984 273.083 273.249 273.835 274.723 275.412 276.159 277.176 278.344 279.68 281.162 282.39 283.451 284.377 285.13 285.943 286.855 287.732 288.866 290.33 293.625 296.901 299.22 300.978 302.96 303.961 304.891 306.021 305.858 302.819 300.857 301.25 301.157 300.953 300.84 300.88 300.867 300.781 300.492 300.675 300.661 300.436 300.076 299.808 299.527 298.9 299.003 298.949 297.956 299.296 299.805 299.864 299.784 299.667 299.305 298.738 298.042 297.206 296.359 295.207 292.786 288.999 284.905 279.676 275.857 274.512 273.933 273.297 273.321 272.492 271.498 271.035 270.274 266.108 261.213 257.359 255.5 252.694 250.255 247.872 246.181 245.129 243.662 242.129 240.992 239.354 240.142 239.915 237.506 234.556 232.599 231.63 231.028 230.416 229.959 229.854 231.106 237.09 241.456 242.657 242.527 242.834 242.56 242.33 241.951 241.182 240.741 240.274 239.343 245.347 245.408 245.678 245.95 245.898 245.308 244.481 243.765 242.911 242.153 241.652 242.415 245.31 249.881 255.093 261.195 268.114 271.78 272.944 273.015 273.062 273.284 273.936 274.87 275.651 276.482 277.533 278.703 279.991 281.366 282.473 283.44 284.336 285.119 285.963 286.9 287.887 289.078 290.473 292.6 295.963 298.085 299.905 301.441 302.808 304.037 305.424 305.429 303.177 300.954 301.374 301.204 301.038 300.899 300.859 300.853 300.722 300.391 300.612 300.434 299.285 298.098 298.373 299.199 299.641 299.813 299.754 299.523 299.828 300.002 299.9 299.769 299.645 299.252 298.556 297.66 296.988 296.369 295.392 293.072 289.192 285.943 282.251 277.0 274.297 273.415 273.215 273.406 272.934 272.124 270.456 270.703 267.071 260.235 256.439 255.006 252.442 249.725 247.065 245.326 244.375 243.051 241.655 240.495 238.844 239.133 239.507 237.22 234.443 233.111 232.153 231.355 230.677 230.264 229.912 231.35 237.905 241.289 242.112 242.121 242.713 242.495 242.266 242.007 241.259 240.82 240.295 239.314 245.378 245.473 245.799 246.162 246.167 245.609 244.782 244.017 243.017 242.167 241.601 242.356 245.2 249.524 254.577 260.886 268.381 271.867 273.059 273.054 273.065 273.321 274.01 274.969 275.83 276.732 277.811 278.988 280.243 281.523 282.527 283.428 284.323 285.141 285.999 286.935 287.968 289.18 290.456 292.162 295.513 297.408 298.883 300.298 301.947 303.523 304.897 305.147 303.356 301.644 301.194 301.054 301.009 300.97 300.858 300.797 300.647 300.355 300.635 300.443 298.853 296.981 296.833 298.709 299.2 299.85 300.036 300.026 299.99 299.926 299.749 299.615 299.482 298.948 297.916 296.776 296.221 296.223 295.573 293.489 289.823 286.033 283.823 280.378 275.67 274.102 273.625 274.531 274.703 273.444 270.31 270.378 267.205 259.778 256.009 254.326 252.311 250.404 247.675 245.435 244.475 242.864 241.383 239.628 238.349 238.23 238.532 236.874 234.475 233.09 232.606 231.868 231.179 230.721 230.023 231.863 237.882 240.951 241.657 241.785 242.512 242.466 242.179 241.994 241.337 240.864 240.308 239.287 245.39 245.519 245.923 246.38 246.434 245.92 245.072 244.257 243.135 242.176 241.653 242.23 244.871 249.152 254.064 260.467 268.159 271.85 273.14 273.104 273.09 273.361 274.063 275.044 275.969 276.923 278.023 279.19 280.414 281.622 282.549 283.413 284.315 285.156 286.028 286.947 287.984 289.181 290.346 291.96 295.109 297.034 298.019 299.25 300.951 303.525 304.535 305.347 304.49 302.086 300.096 300.046 300.765 300.944 300.868 300.772 300.749 300.673 300.752 300.695 299.802 298.814 298.592 298.901 298.931 299.849 300.146 300.085 299.771 299.216 299.323 298.735 299.151 298.774 298.028 297.493 296.838 296.47 295.798 294.143 291.706 289.073 286.081 282.989 280.114 278.036 277.041 276.739 276.097 274.526 272.56 270.292 264.618 258.575 255.137 253.554 251.665 250.301 248.493 245.913 244.291 242.801 241.227 239.094 237.48 237.533 237.629 236.181 234.116 233.037 232.871 232.21 231.817 231.274 230.399 231.813 237.628 240.617 241.273 241.477 242.268 242.443 242.104 241.917 241.39 240.924 240.316 239.274 245.406 245.572 246.056 246.576 246.691 246.25 245.402 244.494 243.257 242.22 241.725 242.164 244.6 248.723 253.548 259.974 267.805 271.756 273.172 273.155 273.136 273.406 274.106 275.112 276.097 277.083 278.177 279.31 280.495 281.654 282.54 283.39 284.277 285.115 286.011 286.942 287.946 289.036 290.061 291.35 294.224 296.38 297.259 298.5 300.371 302.58 304.363 305.214 304.507 301.982 299.608 298.97 299.798 300.639 300.867 300.844 300.776 300.641 300.746 300.847 300.647 300.209 299.916 299.791 299.389 300.064 300.161 299.771 299.078 298.109 298.626 298.474 298.735 298.604 298.473 298.077 297.457 296.744 295.848 294.644 293.067 291.037 288.337 285.511 282.714 280.484 279.072 278.368 277.244 275.315 272.966 269.579 264.508 257.3 254.786 253.037 251.19 249.787 248.492 246.492 244.782 243.144 241.346 238.916 237.055 236.959 236.908 235.574 233.8 233.028 233.141 232.725 232.395 231.884 230.741 231.831 237.258 240.338 240.977 241.227 242.031 242.443 242.1 241.913 241.466 240.992 240.335 239.261 245.429 245.661 246.198 246.775 246.971 246.566 245.72 244.74 243.404 242.357 241.878 242.141 244.255 248.236 253.104 259.305 267.401 271.562 273.141 273.205 273.203 273.463 274.156 275.179 276.201 277.196 278.27 279.366 280.517 281.659 282.538 283.375 284.234 285.072 286.015 286.963 287.875 288.799 289.688 290.883 292.719 295.57 296.891 298.177 300.078 302.004 303.758 304.828 303.98 301.744 299.725 298.412 298.499 299.887 300.692 300.903 300.797 300.086 300.656 300.7 300.594 300.368 300.186 300.086 300.082 300.144 300.01 299.468 298.352 297.157 297.951 298.927 298.831 298.459 298.636 298.259 297.663 296.818 295.79 294.719 293.552 291.917 289.544 286.993 284.415 282.261 280.73 279.578 277.744 275.097 272.229 268.266 262.477 255.657 254.117 252.551 251.152 249.45 248.342 246.636 244.968 243.649 241.437 238.862 236.936 236.321 236.492 235.042 233.381 232.873 233.588 233.399 232.895 232.254 231.319 231.963 237.212 240.077 240.741 241.056 241.893 242.383 242.104 241.937 241.57 241.087 240.354 239.243 245.461 245.76 246.327 246.967 247.237 246.899 246.04 244.982 243.587 242.549 242.077 242.192 243.955 247.754 252.635 258.733 267.046 271.284 273.06 273.252 273.291 273.54 274.228 275.256 276.289 277.286 278.352 279.433 280.559 281.68 282.542 283.36 284.22 285.091 286.073 286.994 287.801 288.625 289.415 290.481 292.012 295.177 297.042 298.328 299.682 301.299 303.15 304.147 303.063 301.372 299.506 298.142 298.074 298.809 300.57 301.021 301.001 300.61 300.753 300.652 300.49 300.022 300.327 300.271 300.202 300.145 299.965 299.524 299.06 298.352 298.533 299.114 299.217 299.043 298.756 298.347 297.79 297.0 295.938 294.768 293.691 292.366 290.461 288.342 286.051 284.013 282.421 280.703 277.949 273.483 270.036 264.912 259.117 255.074 253.582 252.66 250.312 248.67 247.411 246.091 244.471 243.533 241.686 239.326 236.897 235.992 236.172 234.62 232.947 232.791 233.831 233.583 233.204 232.456 231.655 232.184 237.169 239.879 240.527 240.93 241.857 242.339 242.122 241.955 241.661 241.141 240.38 239.219 245.489 245.836 246.472 247.183 247.529 247.236 246.379 245.261 243.804 242.814 242.358 242.344 243.706 247.298 252.09 258.204 266.534 270.914 272.933 273.294 273.407 273.646 274.328 275.345 276.368 277.359 278.433 279.523 280.621 281.696 282.522 283.33 284.222 285.149 286.139 286.994 287.742 288.596 289.381 290.352 291.888 294.813 297.234 298.295 299.232 300.658 302.621 303.903 302.969 301.129 299.352 298.812 298.331 299.18 300.608 301.176 301.247 301.065 300.949 300.727 300.519 300.051 300.558 300.503 299.861 300.204 300.097 299.845 299.544 299.276 299.263 299.382 299.344 299.144 298.862 298.448 297.903 297.16 296.123 294.904 293.757 292.585 291.157 289.574 287.633 285.587 283.756 281.625 278.357 272.396 268.472 265.828 261.105 256.138 253.907 252.569 250.661 248.892 247.153 245.787 244.507 243.59 242.15 239.982 237.411 236.164 235.599 234.087 232.813 233.223 233.847 233.708 233.412 232.496 231.824 232.648 237.328 239.735 240.308 240.824 241.885 242.344 242.204 242.014 241.728 241.178 240.41 239.207 245.548 245.906 246.622 247.404 247.834 247.585 246.725 245.548 244.054 243.106 242.701 242.542 243.501 246.948 251.596 257.582 266.381 270.33 272.729 273.333 273.564 273.817 274.471 275.444 276.432 277.404 278.496 279.598 280.645 281.65 282.443 283.267 284.225 285.199 286.147 286.93 287.708 288.731 289.592 290.437 291.862 294.788 297.345 298.18 299.111 300.482 302.568 303.423 303.058 301.817 300.149 299.918 299.074 299.44 300.489 301.066 301.279 301.175 301.005 300.859 300.738 300.007 300.738 300.677 300.471 300.339 300.266 300.157 299.945 299.744 299.679 299.604 299.399 299.147 298.902 298.524 297.975 297.24 296.26 295.091 293.905 292.708 291.525 290.378 288.728 286.469 283.857 281.391 279.068 276.036 272.508 270.609 267.428 261.548 255.494 252.308 250.684 249.435 247.332 245.841 244.466 243.668 242.697 240.727 238.037 236.431 235.274 233.985 233.069 233.727 233.987 234.11 233.834 232.859 232.107 233.116 237.992 239.624 240.16 240.766 241.91 242.439 242.287 242.099 241.798 241.18 240.442 239.207 245.564 245.99 246.757 247.643 248.146 247.927 247.076 245.854 244.358 243.456 243.093 242.814 243.457 246.636 251.129 257.004 264.871 269.805 272.459 273.348 273.712 273.983 274.593 275.508 276.453 277.403 278.499 279.584 280.582 281.546 282.359 283.254 284.276 285.236 286.126 286.903 287.728 288.794 289.669 290.474 291.884 294.904 297.602 298.559 299.5 300.928 302.296 303.02 302.819 302.218 300.996 301.021 299.78 299.029 299.245 300.077 300.996 301.028 301.015 301.113 301.02 300.242 300.368 300.133 300.35 300.305 300.246 300.169 300.031 299.888 299.783 299.637 299.382 299.094 298.833 298.517 298.033 297.334 296.399 295.266 294.071 292.852 291.688 290.638 289.099 286.696 281.964 278.764 278.711 277.988 276.207 273.8 270.436 265.548 259.504 252.463 250.128 248.662 247.766 246.363 244.904 244.055 243.237 241.045 238.363 236.419 235.378 234.344 233.898 234.609 234.644 234.652 234.258 233.411 232.771 235.579 238.161 239.523 240.081 240.732 241.937 242.516 242.385 242.167 241.853 241.148 240.484 239.207 245.535 246.066 246.914 247.886 248.467 248.283 247.415 246.167 244.654 243.816 243.491 243.121 243.527 246.455 250.791 256.594 264.607 269.571 272.168 273.323 273.821 274.115 274.683 275.553 276.46 277.384 278.465 279.522 280.496 281.46 282.331 283.316 284.37 285.275 286.151 287.003 287.84 288.808 289.708 290.644 292.19 295.465 298.343 299.638 300.748 301.691 302.232 302.812 302.942 302.849 301.789 301.214 299.716 299.089 298.851 299.259 300.734 300.914 301.073 301.282 301.056 300.405 299.164 299.004 300.084 300.188 300.198 300.15 300.058 299.948 299.805 299.624 299.369 299.081 298.805 298.529 298.117 297.467 296.556 295.421 294.213 293.03 291.906 290.866 289.449 287.184 283.559 279.487 277.478 278.799 278.195 275.961 272.624 267.699 261.64 252.335 249.106 248.03 247.901 246.646 245.207 244.433 243.755 241.27 238.698 236.738 235.634 234.883 235.015 235.381 235.015 235.237 234.766 233.822 233.293 236.013 238.232 239.384 240.033 240.758 242.023 242.629 242.541 242.237 241.875 241.158 240.534 239.215 245.611 246.125 247.069 248.128 248.803 248.665 247.789 246.457 245.012 244.179 243.89 243.516 243.846 246.481 250.643 256.295 264.246 269.309 271.915 273.25 273.892 274.214 274.754 275.597 276.483 277.371 278.417 279.445 280.415 281.406 282.346 283.404 284.451 285.284 286.199 287.184 288.008 288.867 289.918 291.126 292.863 296.796 299.436 300.709 301.762 302.338 302.509 302.664 302.834 303.559 302.469 301.993 299.958 299.288 299.013 299.576 300.606 300.867 301.114 301.229 300.738 299.181 297.838 298.993 299.987 300.156 300.21 300.182 300.095 299.999 299.841 299.614 299.364 299.092 298.816 298.554 298.175 297.56 296.686 295.566 294.347 293.204 292.147 291.111 289.843 287.984 285.191 281.7 277.047 278.802 278.879 276.824 273.514 268.828 262.858 253.034 249.042 248.064 247.575 247.223 245.742 244.426 243.856 241.966 239.47 237.431 236.515 235.995 236.376 236.294 235.745 235.384 235.123 234.208 233.779 236.337 238.308 239.16 239.98 240.867 242.268 242.816 242.599 242.266 241.884 241.249 240.547 239.229 245.646 246.239 247.208 248.36 249.157 249.065 248.204 246.809 245.403 244.565 244.285 243.949 244.361 246.697 250.679 256.212 263.038 268.646 271.77 273.107 273.913 274.289 274.836 275.677 276.552 277.38 278.352 279.343 280.342 281.38 282.357 283.428 284.439 285.243 286.254 287.333 288.141 289.154 290.507 292.148 295.538 298.342 300.216 302.054 303.126 303.744 302.797 302.817 302.798 303.436 302.947 301.889 300.322 299.604 299.195 299.95 300.662 300.993 301.222 300.994 299.973 297.553 298.997 299.759 300.223 300.309 300.32 300.264 300.158 300.071 299.91 299.636 299.363 299.094 298.834 298.591 298.222 297.609 296.8 295.779 294.591 293.427 292.385 291.368 290.198 288.765 286.475 283.009 277.106 278.251 278.68 277.02 273.961 269.769 264.221 256.297 250.873 249.193 247.873 247.123 246.153 245.054 244.675 243.291 241.158 238.999 237.924 237.862 238.211 237.701 236.725 235.87 235.685 234.495 234.085 236.528 238.331 238.743 239.852 240.989 242.35 242.776 242.596 242.295 241.897 241.29 240.55 239.232 245.665 246.334 247.372 248.59 249.512 249.501 248.654 247.227 245.777 244.949 244.655 244.398 244.928 247.111 250.897 256.309 263.055 267.841 271.801 272.977 273.876 274.348 274.941 275.791 276.637 277.402 278.283 279.261 280.309 281.384 282.375 283.456 284.483 285.343 286.379 287.413 288.272 289.533 291.246 294.773 296.934 298.98 300.63 301.47 302.365 302.909 303.171 303.25 303.424 303.332 302.32 300.396 299.558 299.89 299.908 300.341 300.877 301.241 301.35 300.667 298.89 296.826 298.45 299.824 300.374 300.375 300.362 300.325 300.224 300.135 299.961 299.681 299.412 299.132 298.862 298.649 298.334 297.73 296.926 295.982 294.88 293.709 292.655 291.685 290.514 289.159 287.218 284.005 278.972 276.947 278.112 277.032 274.571 271.062 266.385 261.079 254.951 250.803 248.858 247.438 246.969 246.122 246.055 245.56 243.424 241.526 240.182 240.233 239.958 239.078 237.566 236.731 236.107 234.887 234.235 236.512 238.209 237.981 239.591 241.081 242.394 242.752 242.525 242.334 241.905 241.294 240.519 239.233 245.671 246.413 247.533 248.841 249.875 249.968 249.12 247.669 246.187 245.354 245.047 244.862 245.557 247.673 251.352 256.667 263.149 268.571 271.903 272.89 273.814 274.402 275.05 275.896 276.699 277.406 278.231 279.237 280.339 281.457 282.497 283.615 284.681 285.602 286.632 287.607 288.475 289.869 292.154 295.305 297.389 299.099 301.212 301.281 302.166 302.823 303.163 303.489 304.647 303.58 301.771 300.104 300.447 300.802 300.751 300.834 301.072 301.225 300.677 300.001 297.288 296.089 297.603 299.879 300.439 300.363 300.347 300.364 300.298 300.194 299.998 299.731 299.487 299.185 298.872 298.671 298.426 297.874 297.066 296.149 295.129 293.995 292.925 292.003 290.85 289.482 287.782 284.941 281.142 276.349 276.804 276.737 275.005 272.291 268.519 263.684 258.803 253.814 250.236 249.038 248.29 247.488 247.412 247.78 246.979 244.221 242.644 242.059 241.089 239.643 237.792 236.681 235.841 234.953 234.116 236.218 237.922 237.778 239.234 241.137 242.41 242.725 242.484 242.32 241.928 241.298 240.521 239.233 245.681 246.508 247.693 249.093 250.257 250.446 249.62 248.114 246.631 245.74 245.455 245.35 246.214 248.335 251.918 257.286 264.095 269.352 272.031 272.838 273.73 274.444 275.143 275.96 276.707 277.376 278.208 279.279 280.45 281.633 282.75 283.869 284.919 285.905 286.973 287.912 288.8 290.276 292.691 295.075 296.836 298.948 300.535 299.926 301.499 301.876 302.708 303.165 302.967 302.135 300.3 299.971 301.007 301.032 300.919 300.996 301.181 300.994 299.356 298.357 296.37 295.949 298.332 300.148 300.555 300.388 300.365 300.424 300.391 300.265 300.035 299.778 299.544 299.21 298.859 298.656 298.465 298.008 297.249 296.346 295.387 294.311 293.195 292.241 291.134 289.79 288.275 285.877 282.325 277.552 275.434 275.539 275.081 273.001 269.979 265.972 260.683 256.429 252.657 250.734 249.645 248.569 248.999 249.832 249.613 246.996 244.795 243.405 241.935 239.948 238.069 236.636 235.957 234.937 233.84 235.123 237.476 236.816 239.439 241.237 242.393 242.685 242.439 242.308 241.934 241.299 240.522 239.233 245.718 246.608 247.896 249.379 250.7 250.95 250.169 248.641 247.078 246.129 245.836 245.845 246.939 249.035 252.562 258.128 265.28 270.268 272.228 272.817 273.613 274.457 275.189 275.937 276.618 277.292 278.213 279.398 280.668 281.948 283.104 284.155 285.093 286.078 287.23 288.265 289.33 291.612 293.546 295.077 296.409 298.055 298.706 298.796 300.258 301.058 301.535 302.027 302.187 300.855 300.014 299.544 300.611 300.732 300.73 300.99 301.2 300.688 298.529 297.027 296.267 296.478 299.397 300.589 300.674 300.451 300.444 300.525 300.51 300.349 300.072 299.81 299.548 299.178 298.844 298.652 298.481 298.131 297.497 296.633 295.706 294.708 293.557 292.456 291.337 290.096 288.723 286.761 283.735 279.434 276.337 275.056 273.457 272.597 269.4 267.03 262.567 257.533 254.585 252.88 251.629 249.811 250.603 252.017 252.01 250.223 246.449 244.081 241.885 240.233 238.466 237.45 236.94 234.698 233.388 234.183 235.573 236.66 239.676 241.409 242.339 242.558 242.281 242.077 241.852 241.257 240.389 239.202 245.782 246.696 248.091 249.679 251.123 251.496 250.76 249.247 247.585 246.544 246.221 246.374 247.592 249.721 253.434 259.204 266.278 270.999 272.441 272.833 273.506 274.411 275.134 275.811 276.454 277.183 278.226 279.533 280.909 282.259 283.396 284.351 285.147 286.111 287.348 288.559 289.988 293.127 294.571 295.392 296.293 298.609 298.528 297.909 299.292 300.17 300.118 300.883 301.003 299.966 298.578 298.345 298.947 299.282 299.814 300.518 300.987 299.797 297.812 296.339 296.082 297.703 300.015 300.714 300.595 300.446 300.504 300.594 300.589 300.392 300.076 299.81 299.519 299.118 298.803 298.637 298.47 298.174 297.643 296.827 295.902 294.978 293.904 292.745 291.565 290.377 289.061 287.353 285.053 282.472 280.124 278.09 275.208 273.539 268.739 266.111 263.729 258.548 255.225 253.661 252.669 251.114 252.045 253.706 253.858 252.06 247.92 244.1 241.392 239.931 239.128 238.762 237.166 234.513 233.072 233.956 235.513 236.693 239.891 241.573 242.306 242.487 242.207 242.024 241.837 241.254 240.38 239.2 245.782 246.798 248.242 249.975 251.552 252.065 251.381 249.8 248.117 247.016 246.605 246.959 248.252 250.404 254.445 260.478 267.157 271.597 272.643 272.865 273.427 274.33 275.027 275.652 276.304 277.112 278.257 279.662 281.135 282.543 283.659 284.588 285.437 286.45 287.726 288.889 290.405 293.417 295.81 295.988 296.328 297.948 298.266 297.623 297.986 298.63 299.75 300.499 300.672 299.535 298.079 297.875 298.921 299.411 299.859 300.238 300.773 299.534 297.318 295.874 296.057 298.73 300.4 300.746 300.543 300.485 300.564 300.634 300.632 300.422 300.069 299.786 299.482 299.069 298.739 298.569 298.418 298.163 297.715 296.98 296.069 295.149 294.134 293.009 291.806 290.638 289.368 287.809 286.024 284.097 282.037 279.846 277.499 274.456 270.33 266.347 264.086 259.713 256.396 255.038 254.362 253.608 253.853 255.052 255.088 253.315 249.571 244.227 240.603 239.493 239.645 239.019 237.204 234.33 232.89 233.79 237.5 237.911 241.161 241.717 242.252 242.396 242.13 241.932 241.709 241.19 240.375 239.199 245.831 246.87 248.439 250.267 252.009 252.657 252.074 250.477 248.783 247.505 247.02 247.531 248.878 250.895 255.469 261.844 268.712 272.138 272.805 272.89 273.385 274.236 274.907 275.516 276.227 277.148 278.361 279.84 281.388 282.812 283.924 284.945 286.027 287.168 288.34 289.223 290.403 293.06 295.145 295.765 296.112 297.458 297.946 297.131 297.045 297.358 298.699 299.637 299.725 299.075 298.793 297.812 298.882 299.661 300.349 300.638 300.701 299.793 297.362 296.015 296.662 299.647 300.704 300.775 300.556 300.555 300.615 300.65 300.652 300.448 300.069 299.743 299.432 299.043 298.699 298.489 298.352 298.133 297.755 297.135 296.28 295.313 294.28 293.204 292.018 290.863 289.653 288.207 286.67 285.083 283.25 281.084 278.708 275.699 272.156 268.001 264.064 259.722 257.116 255.965 255.631 255.352 255.621 256.184 255.948 254.12 250.282 244.185 240.066 239.38 239.448 238.213 236.964 234.216 232.76 233.956 237.87 238.318 241.596 241.798 242.18 242.263 242.005 241.844 241.688 241.138 240.27 239.199 245.857 246.986 248.599 250.581 252.462 253.246 252.772 251.325 249.473 248.069 247.483 248.031 249.547 251.582 256.474 263.723 269.79 272.634 272.923 272.926 273.398 274.158 274.803 275.437 276.272 277.37 278.651 280.163 281.705 283.092 284.194 285.423 286.749 287.919 289.111 289.626 290.085 291.693 293.958 294.768 295.331 296.568 297.333 296.944 296.275 296.72 297.975 298.832 299.468 298.942 298.966 298.883 299.663 300.091 300.339 300.453 300.355 299.489 297.449 297.412 299.359 300.447 300.879 300.727 300.56 300.604 300.659 300.666 300.644 300.461 300.085 299.694 299.357 299.035 298.705 298.425 298.27 298.073 297.725 297.212 296.453 295.463 294.385 293.354 292.205 291.064 289.914 288.572 287.093 285.541 283.761 281.67 279.501 276.837 273.291 269.057 264.495 260.494 258.103 257.216 256.99 257.226 257.47 257.259 256.596 254.542 250.438 244.004 240.026 238.868 238.721 237.737 236.07 233.695 232.86 234.251 238.171 238.623 241.633 241.819 242.094 242.101 241.941 241.788 241.616 241.114 240.193 239.193 245.886 247.085 248.815 250.885 252.933 253.852 253.557 252.136 250.198 248.79 248.005 248.59 250.109 252.303 257.63 265.608 271.078 272.982 272.989 272.998 273.476 274.164 274.792 275.453 276.438 277.709 279.075 280.543 281.991 283.267 284.331 285.723 287.317 288.667 289.56 289.935 290.34 290.583 292.462 293.467 294.527 295.939 295.925 296.93 296.619 297.412 298.324 299.776 299.213 299.231 299.659 299.747 299.872 300.165 300.42 300.488 300.24 298.767 299.09 299.278 300.38 300.832 300.789 300.579 300.529 300.634 300.71 300.701 300.625 300.427 300.086 299.678 299.288 298.991 298.693 298.377 298.193 298.011 297.667 297.154 296.429 295.482 294.45 293.476 292.371 291.253 290.124 288.814 287.356 285.785 283.986 281.921 279.899 277.557 274.365 270.155 266.088 263.052 260.9 259.869 259.55 259.803 259.434 258.534 257.179 254.687 250.384 243.565 240.077 238.537 238.04 237.622 235.809 233.29 232.887 235.602 238.813 238.955 241.599 241.812 241.999 242.01 241.903 241.706 241.555 241.048 240.172 239.145 245.917 247.189 249.027 251.229 253.405 254.562 254.364 252.939 251.004 249.523 248.792 249.102 250.616 252.969 258.777 267.502 271.928 273.225 273.039 273.093 273.591 274.243 274.845 275.513 276.645 278.052 279.482 280.874 282.193 283.328 284.339 285.7 287.39 288.593 289.523 290.058 290.659 290.44 291.371 292.587 293.409 294.262 295.449 296.645 297.334 298.179 298.08 299.205 298.907 299.49 299.879 299.949 299.999 300.254 300.549 300.647 300.071 299.774 300.216 299.853 300.8 300.861 300.585 300.374 300.424 300.609 300.723 300.722 300.61 300.376 300.059 299.671 299.239 298.928 298.667 298.371 298.159 297.981 297.668 297.15 296.414 295.5 294.502 293.546 292.474 291.414 290.322 289.012 287.557 285.985 284.199 282.156 280.144 277.889 274.96 271.208 267.979 265.74 264.352 263.633 263.284 262.836 261.586 260.073 257.844 254.693 250.059 243.045 239.714 238.018 237.07 237.025 234.927 232.925 232.967 236.189 239.297 239.342 241.6 241.817 241.912 241.913 241.949 241.662 241.405 241.02 240.07 239.109 245.97 247.286 249.215 251.564 253.907 255.267 255.173 253.845 252.021 250.41 249.528 249.594 250.995 253.504 260.327 268.054 272.516 273.376 273.084 273.208 273.745 274.369 274.918 275.596 276.838 278.344 279.81 281.123 282.3 283.32 284.265 285.452 286.946 288.268 289.292 290.121 291.028 291.93 292.249 292.367 292.425 293.355 294.173 296.054 297.325 297.38 297.579 298.413 299.1 299.664 299.877 299.951 300.039 300.298 300.605 300.757 300.57 300.536 300.503 299.989 300.803 300.7 300.336 300.107 300.218 300.506 300.699 300.726 300.603 300.336 300.014 299.651 299.2 298.863 298.641 298.401 298.157 297.95 297.678 297.191 296.445 295.545 294.554 293.581 292.527 291.541 290.515 289.237 287.786 286.202 284.422 282.399 280.337 278.064 275.3 272.082 269.53 267.932 266.98 266.441 266.195 265.457 263.425 261.486 258.738 254.691 249.624 242.581 239.377 237.553 236.701 235.463 234.097 232.724 233.118 237.571 239.624 240.598 241.698 241.849 241.835 241.776 241.927 241.603 241.346 241.027 239.977 239.094 245.985 247.399 249.426 251.916 254.461 256.045 256.059 254.762 252.966 251.464 250.426 250.095 251.419 254.146 261.657 269.281 272.939 273.45 273.132 273.346 273.922 274.52 275.016 275.706 277.009 278.556 280.031 281.279 282.335 283.286 284.184 285.211 286.455 287.784 288.995 289.979 291.1 292.276 293.088 293.6 293.363 292.83 293.548 295.122 296.642 296.54 297.393 298.619 299.3 299.604 299.713 299.802 299.992 300.297 300.593 300.761 300.777 300.687 300.583 300.526 300.293 300.506 300.123 299.84 299.972 300.385 300.692 300.735 300.611 300.332 299.971 299.599 299.162 298.805 298.587 298.407 298.152 297.882 297.619 297.175 296.443 295.562 294.589 293.612 292.569 291.637 290.69 289.498 288.09 286.473 284.664 282.644 280.507 278.143 275.444 272.683 270.642 269.414 268.628 268.157 267.929 267.128 264.846 262.708 259.652 254.597 248.934 242.373 239.219 236.89 235.953 234.945 233.381 232.45 233.358 237.692 239.743 241.647 241.908 241.894 241.764 241.687 241.912 241.65 241.263 241.045 239.92 239.084 246.003 247.516 249.644 252.273 255.022 256.792 256.93 255.686 253.995 252.566 251.388 250.704 251.911 254.774 262.662 270.045 273.189 273.474 273.172 273.446 274.054 274.645 275.127 275.836 277.15 278.679 280.137 281.355 282.361 283.273 284.164 285.172 286.348 287.567 288.73 289.653 290.747 292.161 293.363 294.217 294.599 294.588 294.85 295.618 296.49 296.943 297.976 298.734 299.224 299.435 299.517 299.681 300.017 300.392 300.661 300.838 300.914 300.868 300.731 300.628 300.624 300.443 300.108 299.816 299.891 300.332 300.712 300.744 300.596 300.331 299.949 299.545 299.141 298.787 298.518 298.343 298.134 297.865 297.573 297.119 296.387 295.519 294.569 293.642 292.648 291.716 290.796 289.707 288.406 286.816 285.0 282.952 280.689 278.118 275.428 273.048 271.386 270.376 269.617 269.154 268.849 267.781 265.454 263.361 260.189 254.241 247.911 242.793 239.757 236.957 235.356 234.977 233.541 232.591 234.398 237.581 239.765 241.355 241.834 241.889 241.702 241.649 241.887 241.644 241.265 240.977 239.875 239.079 246.04 247.605 249.865 252.662 255.588 257.578 257.765 256.601 255.128 253.782 252.476 251.482 252.302 255.448 264.247 270.505 273.342 273.512 273.224 273.527 274.157 274.761 275.25 275.988 277.307 278.807 280.237 281.438 282.412 283.277 284.145 285.179 286.365 287.48 288.511 289.37 290.403 291.859 293.284 294.444 295.158 295.572 295.955 296.439 296.993 297.567 298.135 298.599 298.976 299.2 299.347 299.614 300.077 300.5 300.732 300.917 301.075 301.027 300.807 300.665 300.627 300.485 300.19 299.89 299.878 300.281 300.698 300.737 300.562 300.323 299.944 299.502 299.115 298.778 298.469 298.276 298.102 297.846 297.519 297.047 296.335 295.486 294.537 293.655 292.726 291.792 290.863 289.821 288.589 287.057 285.275 283.188 280.755 277.996 275.385 273.296 271.892 271.003 270.269 269.7 269.097 267.578 265.171 263.162 260.128 254.438 248.739 243.87 239.947 236.937 235.499 235.025 233.952 232.858 234.342 237.239 239.725 241.0 241.684 241.857 241.656 241.629 241.858 241.645 241.222 240.903 239.838 239.077 246.081 247.707 250.073 253.046 256.157 258.372 258.623 257.568 256.289 255.167 253.689 252.466 252.944 256.268 265.69 270.972 273.423 273.554 273.3 273.6 274.24 274.877 275.382 276.155 277.506 278.992 280.389 281.565 282.494 283.29 284.116 285.184 286.392 287.447 288.359 289.217 290.246 291.581 292.997 294.298 295.214 295.745 296.113 296.472 296.92 297.46 297.969 298.342 298.707 298.998 299.226 299.566 300.106 300.559 300.785 300.963 301.143 301.045 300.752 300.643 300.682 300.582 300.257 299.927 299.867 300.241 300.683 300.732 300.536 300.314 299.951 299.475 299.076 298.748 298.427 298.219 298.048 297.781 297.408 296.915 296.241 295.438 294.503 293.66 292.794 291.859 290.914 289.902 288.708 287.217 285.472 283.344 280.751 277.908 275.455 273.6 272.325 271.478 270.734 269.993 268.937 266.726 263.821 260.294 258.466 254.932 249.783 245.58 240.293 237.004 235.794 235.911 234.675 233.231 233.989 237.177 239.607 240.828 241.592 241.791 241.617 241.613 241.809 241.551 241.108 240.801 239.801 239.076 246.11 247.821 250.324 253.424 256.72 259.139 259.531 258.521 257.462 256.552 255.06 253.397 253.701 257.071 266.575 271.407 273.485 273.598 273.415 273.694 274.333 275.004 275.519 276.345 277.772 279.265 280.635 281.756 282.584 283.295 284.121 285.222 286.415 287.432 288.326 289.261 290.297 291.428 292.61 293.878 294.844 295.395 295.807 296.229 296.701 297.239 297.766 298.2 298.586 298.895 299.155 299.512 300.057 300.571 300.862 301.009 301.099 300.96 300.684 300.668 300.795 300.65 300.197 299.837 299.83 300.231 300.665 300.726 300.513 300.289 299.95 299.475 299.043 298.69 298.371 298.164 297.984 297.704 297.291 296.747 296.073 295.327 294.457 293.665 292.842 291.901 290.929 289.956 288.805 287.338 285.595 283.433 280.746 277.937 275.63 273.941 272.721 271.872 271.127 270.276 268.869 264.598 261.441 258.68 255.704 253.132 250.7 246.939 241.048 237.185 236.43 236.637 235.439 233.4 235.216 237.459 239.42 240.673 241.487 241.627 241.52 241.518 241.787 241.425 240.991 240.72 239.746 239.074 246.137 247.927 250.56 253.799 257.305 259.864 260.371 259.494 258.605 258.05 256.534 254.559 254.618 258.164 267.227 271.76 273.547 273.642 273.54 273.805 274.423 275.104 275.64 276.528 278.032 279.548 280.893 281.91 282.612 283.28 284.182 285.316 286.483 287.526 288.459 289.364 290.305 291.322 292.394 293.583 294.516 295.064 295.545 296.073 296.631 297.197 297.729 298.204 298.591 298.899 299.183 299.529 300.037 300.586 300.943 301.036 301.032 300.954 300.78 300.761 300.833 300.596 300.082 299.737 299.804 300.227 300.645 300.724 300.513 300.252 299.909 299.471 299.044 298.668 298.335 298.11 297.921 297.673 297.285 296.689 295.94 295.189 294.377 293.642 292.86 291.916 290.886 289.938 288.885 287.469 285.691 283.501 280.813 278.104 275.863 274.235 273.008 272.146 271.43 270.595 269.096 265.987 261.795 258.259 254.72 251.801 250.688 247.41 241.352 237.394 237.164 237.346 236.032 233.993 235.505 237.395 239.199 240.412 241.268 241.359 241.371 241.402 241.663 241.459 240.903 240.646 239.706 239.075 246.172 248.014 250.725 254.205 257.841 260.541 261.189 260.419 259.84 259.484 258.127 255.85 255.595 260.306 267.836 272.107 273.585 273.673 273.66 273.927 274.509 275.192 275.763 276.733 278.307 279.825 281.105 282.007 282.6 283.269 284.25 285.423 286.612 287.694 288.622 289.421 290.271 291.288 292.354 293.443 294.3 294.874 295.425 296.009 296.596 297.167 297.708 298.219 298.637 298.95 299.273 299.639 300.118 300.656 301.035 301.092 301.022 300.984 300.862 300.789 300.786 300.513 300.023 299.69 299.759 300.176 300.612 300.725 300.528 300.229 299.86 299.434 299.023 298.648 298.317 298.068 297.846 297.602 297.243 296.639 295.863 295.107 294.297 293.568 292.831 291.948 290.873 289.876 288.882 287.523 285.709 283.512 280.889 278.237 275.979 274.38 273.163 272.31 271.663 270.987 269.815 267.328 264.068 258.755 254.889 251.692 249.714 246.9 240.62 237.55 237.364 237.392 236.611 234.727 235.713 237.334 238.918 239.997 240.896 240.987 241.172 241.255 241.534 241.476 240.84 240.581 239.696 239.076 246.216 248.106 251.014 254.621 258.386 261.169 261.906 261.305 261.007 260.852 259.565 257.186 256.788 262.221 268.696 272.429 273.566 273.672 273.778 274.056 274.598 275.276 275.919 277.01 278.635 280.098 281.262 282.073 282.6 283.286 284.323 285.54 286.786 287.899 288.78 289.468 290.281 291.351 292.413 293.369 294.135 294.763 295.374 295.945 296.546 297.145 297.709 298.261 298.717 299.027 299.363 299.782 300.281 300.796 301.175 301.222 301.11 301.034 300.893 300.775 300.725 300.453 299.987 299.64 299.669 300.075 300.551 300.7 300.52 300.208 299.819 299.386 298.972 298.606 298.293 298.038 297.784 297.509 297.147 296.558 295.809 295.061 294.221 293.457 292.756 291.97 290.896 289.811 288.816 287.508 285.665 283.478 280.929 278.266 275.957 274.362 273.211 272.424 271.893 271.467 270.826 269.243 266.089 262.297 256.529 252.811 248.731 245.667 239.99 237.701 236.87 237.219 237.077 235.701 236.241 237.37 238.595 239.536 240.407 240.555 240.919 241.069 241.388 241.44 240.785 240.549 239.691 239.076 246.255 248.206 251.276 254.983 258.883 261.745 262.581 262.17 262.838 263.638 262.035 258.846 258.265 263.414 269.527 272.676 273.454 273.6 273.881 274.194 274.699 275.384 276.166 277.423 279.059 280.362 281.364 282.133 282.649 283.371 284.443 285.686 286.972 288.089 288.941 289.57 290.35 291.457 292.477 293.316 294.031 294.714 295.338 295.872 296.49 297.115 297.7 298.327 298.841 299.104 299.393 299.881 300.449 300.943 301.294 301.356 301.252 301.124 300.943 300.826 300.747 300.414 299.921 299.562 299.548 299.942 300.457 300.639 300.463 300.171 299.796 299.349 298.916 298.545 298.233 297.989 297.738 297.44 297.066 296.495 295.77 295.013 294.143 293.332 292.643 291.943 290.907 289.747 288.711 287.43 285.584 283.421 280.95 278.276 275.939 274.335 273.257 272.548 272.115 271.861 271.64 270.924 268.658 264.864 261.261 257.267 251.038 243.285 239.629 237.75 236.593 236.763 236.5 235.863 236.783 237.395 238.268 239.044 239.85 240.13 240.666 240.88 241.219 241.3 240.746 240.536 239.686 239.076 246.281 248.293 251.461 255.345 259.403 262.287 263.217 262.922 264.316 264.991 263.651 260.599 259.905 264.48 270.148 272.776 273.281 273.487 273.945 274.323 274.804 275.515 276.449 277.826 279.409 280.537 281.415 282.173 282.741 283.554 284.675 285.878 287.047 288.105 289.041 289.74 290.503 291.541 292.516 293.329 294.054 294.744 295.342 295.857 296.455 297.04 297.612 298.294 298.871 299.121 299.396 299.892 300.432 300.874 301.175 301.266 301.246 301.167 301.026 300.911 300.78 300.357 299.852 299.522 299.484 299.85 300.384 300.603 300.442 300.146 299.761 299.305 298.871 298.495 298.155 297.892 297.644 297.362 297.027 296.482 295.708 294.89 294.03 293.236 292.527 291.832 290.835 289.657 288.57 287.289 285.476 283.358 280.985 278.335 275.998 274.371 273.331 272.684 272.334 272.181 272.089 271.71 270.296 267.792 264.593 260.178 253.457 243.081 239.143 237.886 236.656 236.121 236.165 236.516 236.777 237.442 238.008 238.649 239.347 239.737 240.429 240.697 241.014 241.17 240.728 240.539 239.708 239.075 246.314 248.447 251.751 255.747 259.868 262.794 263.799 263.643 265.283 266.212 264.708 262.373 261.521 266.172 270.674 272.776 273.083 273.378 273.999 274.438 274.914 275.651 276.7 278.144 279.649 280.648 281.452 282.189 282.831 283.809 285.018 286.117 287.061 287.989 289.041 289.957 290.783 291.718 292.626 293.427 294.13 294.761 295.307 295.827 296.412 296.934 297.454 298.124 298.821 299.07 299.403 299.854 300.272 300.654 300.983 301.127 301.178 301.164 301.072 300.947 300.768 300.293 299.784 299.469 299.419 299.77 300.32 300.568 300.434 300.132 299.722 299.251 298.814 298.442 298.088 297.808 297.549 297.274 296.975 296.459 295.645 294.764 293.906 293.152 292.434 291.707 290.722 289.562 288.432 287.116 285.34 283.284 281.016 278.435 276.147 274.485 273.438 272.824 272.564 272.464 272.37 272.031 271.022 269.332 267.171 262.78 254.486 242.964 238.952 238.094 236.743 235.612 235.636 236.551 236.805 237.523 237.864 238.38 238.978 239.412 240.212 240.507 240.836 241.101 240.689 240.544 239.754 239.076 246.341 248.546 252.006 256.145 260.335 263.282 264.295 264.348 265.826 267.329 266.023 263.673 262.996 267.666 271.156 272.684 272.875 273.282 274.062 274.548 275.023 275.778 276.901 278.367 279.789 280.72 281.484 282.188 282.896 284.071 285.325 286.187 287.098 287.831 288.983 290.178 291.143 292.003 292.813 293.567 294.216 294.749 295.229 295.751 296.333 296.817 297.287 297.904 298.549 298.97 299.402 299.769 300.015 300.373 300.803 301.018 301.091 301.125 301.073 300.964 300.759 300.252 299.713 299.395 299.354 299.71 300.26 300.526 300.415 300.115 299.695 299.214 298.763 298.388 298.035 297.747 297.482 297.212 296.93 296.429 295.613 294.69 293.788 293.03 292.31 291.563 290.588 289.455 288.286 286.925 285.194 283.206 281.006 278.489 276.288 274.659 273.628 273.053 272.851 272.738 272.562 272.179 271.305 270.043 268.36 264.34 255.626 242.96 238.832 238.452 237.077 235.506 235.445 236.334 236.733 237.59 237.826 238.247 238.711 239.205 240.013 240.332 240.697 240.997 240.668 240.565 239.784 239.091 246.378 248.657 252.192 256.519 260.775 263.716 264.83 264.879 266.471 268.396 267.874 265.301 264.502 269.157 271.587 272.513 272.647 273.194 274.13 274.673 275.136 275.891 277.041 278.487 279.839 280.767 281.536 282.2 282.955 284.18 285.54 286.48 287.188 287.834 288.975 290.332 291.436 292.303 293.012 293.681 294.265 294.729 295.124 295.597 296.203 296.725 297.184 297.745 298.356 298.901 299.392 299.663 299.769 300.122 300.654 300.908 300.97 301.031 301.041 300.979 300.77 300.234 299.669 299.353 299.331 299.681 300.21 300.497 300.406 300.087 299.657 299.193 298.736 298.347 297.984 297.661 297.39 297.156 296.883 296.373 295.594 294.666 293.679 292.851 292.13 291.387 290.427 289.324 288.134 286.735 285.053 283.136 280.961 278.557 276.444 274.866 273.85 273.333 273.164 273.01 272.727 272.284 271.443 270.309 268.861 264.875 256.533 243.129 238.61 238.159 237.171 235.396 235.525 235.919 236.544 237.612 237.858 238.284 238.664 239.123 239.836 240.188 240.533 240.863 240.733 240.613 239.811 239.108 246.41 248.77 252.472 256.927 261.176 264.125 265.28 265.384 267.044 269.096 269.348 267.355 266.661 270.091 271.854 272.34 272.474 273.163 274.203 274.784 275.227 275.968 277.086 278.482 279.806 280.774 281.543 282.197 283.035 284.276 285.692 286.906 287.426 288.202 289.232 290.413 291.475 292.414 293.131 293.733 294.286 294.734 295.056 295.447 296.059 296.622 297.089 297.642 298.278 298.882 299.373 299.597 299.699 300.052 300.56 300.81 300.903 301.008 301.05 300.985 300.737 300.201 299.672 299.361 299.31 299.614 300.129 300.471 300.417 300.05 299.59 299.146 298.702 298.315 297.952 297.567 297.26 297.064 296.799 296.257 295.501 294.6 293.557 292.659 291.918 291.16 290.21 289.16 287.98 286.566 284.93 283.061 280.899 278.632 276.608 275.075 274.074 273.589 273.4 273.177 272.827 272.391 271.556 270.389 268.971 265.045 257.212 243.896 238.805 238.042 236.981 235.193 235.397 235.785 236.21 237.572 237.948 238.422 238.718 239.179 239.744 240.044 240.379 240.741 240.794 240.641 239.849 239.121 246.441 248.878 252.66 257.293 261.586 264.454 265.642 265.749 267.497 269.567 270.093 269.385 269.212 270.909 272.021 272.191 272.352 273.16 274.271 274.873 275.302 276.017 277.076 278.409 279.721 280.727 281.49 282.161 283.101 284.44 285.773 287.185 287.913 288.447 289.629 290.612 291.558 292.561 293.293 293.818 294.301 294.705 294.975 295.326 295.929 296.506 296.984 297.558 298.215 298.82 299.303 299.549 299.699 300.06 300.529 300.782 300.921 301.053 301.083 300.975 300.688 300.18 299.68 299.337 299.249 299.534 300.043 300.413 300.395 300.02 299.551 299.108 298.656 298.266 297.917 297.508 297.177 296.998 296.729 296.162 295.406 294.51 293.461 292.552 291.783 290.977 290.032 289.034 287.869 286.436 284.819 282.94 280.771 278.67 276.737 275.237 274.258 273.78 273.557 273.281 272.85 272.411 271.636 270.42 268.903 265.258 257.173 246.692 239.203 237.879 236.861 235.098 235.195 235.77 236.123 237.487 238.109 238.576 238.812 239.282 239.711 239.928 240.228 240.712 240.832 240.688 239.878 239.132 246.471 248.976 252.936 257.659 261.957 264.766 265.902 266.169 268.275 269.872 270.509 270.434 270.726 271.641 272.129 272.069 272.268 273.159 274.309 274.939 275.368 276.038 277.027 278.284 279.579 280.613 281.391 282.099 283.111 284.546 285.809 287.255 288.479 288.96 289.906 290.993 291.839 292.844 293.551 293.96 294.298 294.61 294.857 295.245 295.848 296.402 296.896 297.501 298.152 298.728 299.216 299.529 299.742 300.101 300.529 300.789 300.95 301.082 301.092 300.957 300.655 300.189 299.695 299.29 299.178 299.489 299.991 300.33 300.338 300.001 299.544 299.085 298.615 298.206 297.857 297.442 297.11 296.938 296.656 296.087 295.339 294.435 293.399 292.498 291.692 290.824 289.88 288.922 287.755 286.327 284.732 282.816 280.617 278.625 276.777 275.333 274.405 273.904 273.662 273.363 272.874 272.39 271.656 270.462 268.877 265.603 258.268 248.693 239.974 237.693 236.3 235.051 235.054 235.567 236.109 237.425 238.346 238.744 238.958 239.362 239.73 239.828 240.117 240.683 240.871 240.72 239.891 239.139 246.505 249.072 253.143 258.014 262.315 265.038 266.11 266.513 268.587 270.015 270.645 270.892 271.373 272.076 272.195 271.971 272.205 273.149 274.31 274.986 275.435 276.047 276.945 278.096 279.335 280.375 281.193 281.972 283.038 284.505 285.826 287.226 288.74 289.831 290.429 290.88 292.103 292.672 293.57 294.052 294.259 294.464 294.724 295.21 295.809 296.308 296.84 297.502 298.111 298.643 299.174 299.566 299.823 300.157 300.533 300.784 300.931 301.025 301.054 300.936 300.643 300.212 299.721 299.248 299.106 299.454 299.95 300.251 300.269 299.984 299.52 299.031 298.571 298.164 297.779 297.335 297.013 296.84 296.533 295.981 295.278 294.382 293.369 292.476 291.629 290.701 289.752 288.8 287.611 286.219 284.663 282.714 280.518 278.578 276.768 275.385 274.538 274.031 273.785 273.499 272.968 272.41 271.681 270.519 269.021 266.023 259.251 249.564 241.664 238.234 236.287 234.947 235.104 235.659 236.137 237.418 238.665 238.937 239.077 239.454 239.751 239.749 240.068 240.655 240.915 240.735 239.906 239.144 246.54 249.177 253.375 258.327 262.626 265.322 266.263 266.839 268.707 269.957 270.455 270.903 271.61 272.262 272.203 271.925 272.176 273.131 274.274 275.009 275.487 276.056 276.874 277.911 279.048 280.059 280.928 281.778 282.879 284.345 285.754 287.161 288.744 290.07 290.815 290.602 291.22 293.164 293.671 293.94 294.192 294.403 294.703 295.239 295.799 296.244 296.806 297.48 298.045 298.536 299.087 299.531 299.809 300.129 300.504 300.769 300.887 300.96 301.016 300.942 300.637 300.212 299.741 299.239 299.038 299.364 299.877 300.207 300.239 299.971 299.482 298.957 298.51 298.144 297.742 297.263 296.936 296.756 296.411 295.86 295.204 294.338 293.355 292.461 291.566 290.588 289.621 288.636 287.42 286.089 284.603 282.647 280.497 278.555 276.761 275.449 274.698 274.197 273.941 273.707 273.175 272.528 271.768 270.614 269.184 266.382 259.984 250.492 243.93 239.143 236.656 235.184 235.182 236.033 236.282 237.628 239.118 239.14 239.144 239.551 239.759 239.715 240.01 240.677 240.945 240.753 239.911 239.148 246.575 249.277 253.636 258.66 262.928 265.511 266.467 267.054 268.743 269.763 270.147 270.699 271.619 272.276 272.167 271.902 272.151 273.088 274.212 275.013 275.53 276.077 276.834 277.768 278.79 279.753 280.666 281.577 282.689 284.156 285.639 287.113 288.698 290.143 291.393 291.87 291.712 293.167 293.463 293.775 294.116 294.386 294.724 295.268 295.796 296.22 296.778 297.421 297.954 298.422 298.903 299.28 299.682 299.994 300.385 300.69 300.829 300.886 300.962 300.921 300.62 300.192 299.729 299.218 298.971 299.273 299.822 300.179 300.207 299.948 299.476 298.93 298.452 298.098 297.697 297.201 296.862 296.681 296.335 295.789 295.152 294.302 293.334 292.418 291.491 290.479 289.482 288.452 287.212 285.927 284.503 282.602 280.515 278.552 276.766 275.555 274.89 274.407 274.124 273.896 273.405 272.751 271.914 270.769 269.337 266.488 260.44 250.829 245.365 240.488 237.714 235.597 235.334 236.497 236.697 238.195 239.673 239.337 239.193 239.633 239.785 239.668 239.929 240.688 240.972 240.769 239.905 239.151 246.602 249.367 253.825 258.97 263.189 265.685 266.583 267.19 268.693 269.498 269.796 270.405 271.466 272.115 272.071 271.887 272.121 273.007 274.13 275.002 275.562 276.107 276.827 277.681 278.602 279.512 280.452 281.405 282.503 283.968 285.526 287.092 288.694 290.196 291.585 292.299 292.564 292.786 293.275 293.644 294.038 294.368 294.746 295.271 295.776 296.223 296.768 297.355 297.867 298.351 298.833 299.187 299.515 299.798 300.18 300.55 300.757 300.817 300.89 300.866 300.591 300.162 299.676 299.152 298.889 299.189 299.776 300.15 300.162 299.909 299.477 298.93 298.41 298.042 297.641 297.122 296.755 296.572 296.257 295.739 295.106 294.258 293.292 292.34 291.395 290.358 289.335 288.274 287.03 285.777 284.372 282.516 280.53 278.581 276.833 275.72 275.12 274.652 274.337 274.061 273.574 272.949 272.105 270.953 269.469 266.529 260.477 251.42 246.698 242.949 238.981 236.258 235.783 236.572 237.403 238.863 240.253 239.481 239.253 239.701 239.844 239.617 239.833 240.666 241.02 240.794 239.907 239.151 246.618 249.44 254.053 259.269 263.412 265.81 266.671 267.247 268.652 269.128 269.342 269.956 271.082 271.672 271.857 271.848 272.066 272.884 274.032 274.974 275.571 276.138 276.852 277.663 278.513 279.382 280.321 281.277 282.345 283.824 285.465 287.109 288.687 290.136 291.497 292.241 292.577 292.83 293.149 293.552 293.944 294.327 294.746 295.222 295.703 296.208 296.765 297.292 297.794 298.332 298.836 299.173 299.382 299.601 299.958 300.391 300.694 300.789 300.849 300.818 300.562 300.125 299.587 299.036 298.785 299.092 299.698 300.108 300.138 299.883 299.454 298.907 298.389 298.026 297.616 297.057 296.64 296.439 296.163 295.684 295.052 294.204 293.232 292.241 291.293 290.245 289.202 288.121 286.876 285.644 284.237 282.415 280.535 278.673 277.007 275.996 275.439 274.971 274.576 274.211 273.696 273.065 272.236 271.132 269.603 266.558 260.423 252.256 247.942 245.516 242.328 237.245 236.383 237.332 238.392 239.929 240.675 239.664 239.389 239.752 239.891 239.565 239.729 240.619 241.094 240.812 239.906 239.143 246.645 249.529 254.265 259.548 263.627 265.916 266.726 267.307 268.371 268.636 268.862 269.494 270.562 271.089 271.525 271.766 272.0 272.775 273.944 274.926 275.549 276.146 276.876 277.692 278.529 279.386 280.299 281.227 282.278 283.78 285.473 287.132 288.623 289.944 291.185 291.887 292.229 292.558 292.982 293.443 293.843 294.261 294.719 295.157 295.613 296.155 296.719 297.217 297.726 298.292 298.796 299.136 299.342 299.54 299.872 300.31 300.638 300.789 300.847 300.791 300.522 300.055 299.469 298.918 298.7 299.006 299.608 300.061 300.144 299.906 299.444 298.875 298.371 298.021 297.613 297.049 296.594 296.345 296.074 295.636 295.017 294.164 293.177 292.133 291.186 290.142 289.094 287.997 286.745 285.5 284.072 282.33 280.542 278.796 277.282 276.345 275.762 275.284 274.87 274.398 273.815 273.152 272.331 271.272 269.784 266.527 260.526 253.183 249.372 247.447 244.386 238.216 236.938 237.569 239.075 240.337 240.801 239.887 239.529 239.759 239.868 239.48 239.613 240.574 241.146 240.817 239.906 239.137 246.675 249.638 254.444 259.807 263.877 265.976 266.757 267.319 268.086 268.199 268.432 269.043 270.024 270.599 271.155 271.628 271.926 272.688 273.864 274.872 275.515 276.131 276.873 277.701 278.559 279.427 280.317 281.225 282.269 283.785 285.504 287.154 288.597 289.777 290.843 291.501 291.872 292.287 292.819 293.358 293.774 294.196 294.677 295.116 295.575 296.126 296.663 297.133 297.65 298.226 298.727 299.105 299.365 299.582 299.883 300.274 300.586 300.77 300.832 300.755 300.459 299.945 299.319 298.773 298.575 298.884 299.497 299.993 300.115 299.91 299.45 298.861 298.344 297.986 297.59 297.043 296.552 296.239 295.975 295.6 295.013 294.146 293.134 292.05 291.086 290.033 288.981 287.863 286.591 285.265 283.806 282.212 280.557 278.916 277.603 276.707 276.063 275.54 275.114 274.618 273.98 273.265 272.435 271.411 269.914 266.584 260.64 254.062 250.508 248.735 245.757 239.211 237.617 237.793 239.227 240.363 240.857 240.055 239.595 239.738 239.798 239.319 239.471 240.513 241.175 240.791 239.9 239.132 246.709 249.725 254.642 260.06 264.077 266.024 266.752 267.278 267.916 268.032 268.239 268.628 269.516 270.231 270.827 271.448 271.848 272.602 273.778 274.807 275.477 276.099 276.837 277.67 278.559 279.449 280.345 281.254 282.299 283.813 285.535 287.206 288.615 289.658 290.559 291.18 291.613 292.117 292.724 293.31 293.744 294.149 294.636 295.092 295.57 296.106 296.596 297.049 297.586 298.149 298.627 299.052 299.397 299.654 299.937 300.291 300.578 300.747 300.789 300.698 300.385 299.826 299.17 298.623 298.405 298.7 299.358 299.915 300.068 299.892 299.455 298.852 298.314 297.948 297.575 297.045 296.508 296.125 295.877 295.576 295.021 294.137 293.103 291.989 290.993 289.915 288.854 287.719 286.437 285.043 283.535 282.058 280.577 279.088 277.896 277.019 276.319 275.748 275.283 274.782 274.162 273.452 272.581 271.572 269.945 266.597 260.71 254.635 251.259 249.538 246.324 240.265 238.428 238.364 239.296 240.334 240.971 240.241 239.646 239.687 239.648 239.145 239.371 240.437 241.155 240.796 239.873 239.125 246.732 249.795 254.825 260.304 264.223 266.035 266.727 267.057 267.702 267.886 268.182 268.381 269.129 269.908 270.579 271.25 271.764 272.501 273.656 274.699 275.426 276.053 276.752 277.581 278.505 279.421 280.347 281.29 282.339 283.83 285.547 287.244 288.625 289.584 290.358 290.942 291.463 292.059 292.672 293.242 293.69 294.089 294.582 295.054 295.541 296.053 296.517 296.976 297.524 298.051 298.494 298.959 299.385 299.686 299.988 300.366 300.629 300.71 300.705 300.622 300.314 299.717 299.048 298.498 298.228 298.469 299.183 299.837 300.052 299.883 299.445 298.83 298.287 297.928 297.571 297.047 296.473 296.046 295.824 295.579 295.043 294.151 293.1 291.961 290.917 289.819 288.742 287.591 286.33 284.916 283.373 281.964 280.614 279.257 278.178 277.341 276.591 275.923 275.388 274.876 274.3 273.615 272.783 271.719 269.932 266.401 260.64 254.981 252.004 250.114 245.962 241.305 239.129 239.057 239.718 240.278 240.865 240.354 239.736 239.616 239.428 239.018 239.3 240.354 241.139 240.8 239.879 239.105 246.76 249.869 254.975 260.516 264.341 266.067 266.677 267.042 267.583 267.91 268.171 268.362 269.108 269.778 270.463 271.133 271.685 272.393 273.522 274.578 275.366 276.006 276.658 277.472 278.41 279.333 280.291 281.286 282.329 283.787 285.491 287.171 288.536 289.505 290.223 290.773 291.336 291.971 292.548 293.063 293.511 293.952 294.487 295.007 295.493 295.992 296.467 296.937 297.462 297.959 298.425 298.937 299.387 299.697 300.022 300.432 300.658 300.675 300.663 300.613 300.301 299.644 298.916 298.336 298.064 298.284 299.016 299.738 300.019 299.854 299.415 298.821 298.288 297.908 297.523 296.983 296.404 295.989 295.797 295.59 295.097 294.233 293.159 291.968 290.868 289.759 288.67 287.497 286.282 284.893 283.351 281.981 280.685 279.46 278.434 277.591 276.837 276.126 275.479 274.922 274.369 273.672 272.898 271.848 269.847 266.04 260.336 255.361 252.844 250.509 246.744 242.504 240.969 240.079 240.253 240.279 240.644 240.356 239.837 239.57 239.246 238.874 239.18 240.271 241.12 240.813 239.924 239.078 246.791 249.966 255.162 260.714 264.45 266.024 266.597 267.006 267.486 268.027 268.235 268.447 269.182 269.78 270.412 271.068 271.601 272.286 273.381 274.458 275.305 275.969 276.585 277.377 278.311 279.21 280.185 281.228 282.272 283.69 285.365 287.0 288.347 289.347 290.064 290.593 291.167 291.823 292.374 292.85 293.299 293.78 294.392 294.995 295.497 295.962 296.422 296.883 297.386 297.891 298.419 298.98 299.424 299.719 300.072 300.475 300.645 300.659 300.701 300.673 300.334 299.623 298.811 298.157 297.89 298.132 298.881 299.635 299.959 299.795 299.368 298.821 298.305 297.896 297.489 296.942 296.348 295.927 295.741 295.572 295.151 294.331 293.221 291.973 290.825 289.703 288.607 287.435 286.281 284.957 283.473 282.118 280.824 279.676 278.679 277.811 277.057 276.316 275.577 274.954 274.348 273.597 272.836 271.843 269.663 265.592 259.982 255.976 253.78 251.233 247.971 244.07 242.814 241.406 240.785 240.486 240.669 240.446 239.889 239.539 239.084 238.667 238.978 240.156 241.102 240.852 239.968 239.049 246.838 250.025 255.3 260.886 264.55 265.994 266.497 266.899 267.452 268.149 268.34 268.596 269.257 269.818 270.42 271.043 271.527 272.189 273.243 274.336 275.238 275.937 276.535 277.306 278.222 279.075 280.046 281.127 282.181 283.559 285.193 286.774 288.097 289.106 289.85 290.39 290.985 291.66 292.201 292.673 293.127 293.637 294.33 295.009 295.524 295.939 296.356 296.805 297.315 297.855 298.43 299.015 299.434 299.714 300.102 300.481 300.602 300.653 300.77 300.729 300.342 299.625 298.773 298.044 297.765 298.026 298.781 299.56 299.915 299.743 299.324 298.822 298.317 297.884 297.482 296.953 296.343 295.898 295.687 295.54 295.19 294.421 293.279 291.988 290.799 289.642 288.516 287.365 286.283 285.02 283.621 282.319 281.05 279.938 278.934 278.014 277.239 276.467 275.659 274.987 274.256 273.388 272.622 271.657 269.382 264.999 259.961 256.695 254.745 252.408 249.22 246.245 244.401 242.842 241.413 240.841 240.886 240.514 239.914 239.515 238.903 238.402 238.75 240.031 241.069 240.92 240.006 239.022 246.856 250.102 255.424 261.037 264.639 265.969 266.404 266.806 267.55 268.226 268.507 268.828 269.336 269.893 270.411 271.085 271.49 272.112 273.129 274.221 275.163 275.904 276.51 277.261 278.152 278.95 279.887 280.988 282.056 283.4 284.994 286.534 287.814 288.787 289.538 290.14 290.804 291.497 292.037 292.55 293.035 293.559 294.289 294.988 295.472 295.842 296.249 296.74 297.312 297.876 298.426 298.973 299.352 299.652 300.078 300.435 300.537 300.638 300.794 300.701 300.251 299.569 298.745 298.007 297.727 297.975 298.693 299.508 299.907 299.732 299.317 298.85 298.33 297.855 297.457 296.957 296.378 295.93 295.661 295.49 295.204 294.501 293.347 292.036 290.808 289.605 288.42 287.292 286.256 285.029 283.707 282.455 281.228 280.198 279.226 278.253 277.394 276.566 275.75 275.049 274.212 272.682 272.31 271.323 269.004 264.572 260.027 257.367 255.57 253.524 250.788 247.848 245.631 244.075 242.212 241.355 241.118 240.539 239.843 239.416 238.675 238.1 238.493 239.904 241.042 240.988 240.053 239.006 246.872 250.17 255.552 261.189 264.708 265.934 266.277 266.721 267.568 268.194 268.718 269.072 269.476 269.957 270.404 271.136 271.491 272.081 273.071 274.147 275.104 275.874 276.508 277.252 278.124 278.888 279.777 280.858 281.937 283.273 284.843 286.36 287.595 288.507 289.231 289.892 290.628 291.341 291.884 292.411 292.956 293.534 294.257 294.897 295.319 295.693 296.161 296.724 297.325 297.889 298.418 298.931 299.302 299.636 300.086 300.463 300.578 300.675 300.798 300.666 300.187 299.478 298.633 297.924 297.699 297.945 298.618 299.465 299.924 299.771 299.364 298.914 298.385 297.861 297.419 296.919 296.398 295.978 295.632 295.396 295.182 294.601 293.482 292.163 290.877 289.636 288.387 287.232 286.182 284.963 283.724 282.518 281.368 280.403 279.461 278.486 277.565 276.66 275.868 275.158 274.249 272.956 271.569 270.923 268.512 264.315 260.1 257.711 256.067 254.116 251.488 248.606 246.537 244.831 242.941 241.721 241.227 240.567 239.729 239.224 238.385 237.815 238.286 239.753 241.003 241.071 240.098 239.008 246.883 250.232 255.66 261.304 264.765 265.897 266.108 266.806 267.514 268.231 268.971 269.342 269.669 270.064 270.453 271.181 271.511 272.069 273.039 274.097 275.057 275.859 276.528 277.273 278.135 278.888 279.734 280.754 281.832 283.181 284.731 286.22 287.412 288.271 288.967 289.659 290.448 291.193 291.737 292.262 292.871 293.525 294.246 294.827 295.213 295.614 296.135 296.719 297.299 297.858 298.399 298.923 299.309 299.674 300.152 300.557 300.686 300.733 300.783 300.631 300.16 299.425 298.533 297.829 297.652 297.907 298.55 299.427 299.94 299.815 299.409 298.975 298.464 297.929 297.44 296.911 296.41 295.997 295.592 295.31 295.153 294.701 293.659 292.347 290.993 289.75 288.488 287.27 286.128 284.908 283.734 282.556 281.471 280.551 279.638 278.695 277.737 276.829 276.061 275.312 274.374 273.182 271.392 270.46 268.055 263.984 260.07 257.304 255.812 253.945 249.994 248.346 246.998 245.188 243.404 242.011 241.291 240.534 239.601 238.993 238.174 237.603 238.145 239.569 240.975 241.121 240.109 239.01 246.908 250.285 255.775 261.409 264.782 265.872 266.037 266.748 267.426 268.305 269.242 269.663 269.906 270.171 270.51 271.216 271.534 272.064 273.011 274.052 275.017 275.86 276.572 277.327 278.185 278.958 279.769 280.694 281.75 283.121 284.649 286.1 287.247 288.066 288.746 289.458 290.272 291.05 291.602 292.133 292.799 293.522 294.248 294.8 295.19 295.618 296.153 296.721 297.273 297.823 298.387 298.933 299.342 299.746 300.249 300.65 300.756 300.742 300.724 300.557 300.113 299.378 298.449 297.742 297.602 297.856 298.467 299.356 299.911 299.823 299.428 299.017 298.547 298.025 297.501 296.933 296.423 296.002 295.576 295.267 295.12 294.764 293.853 292.594 291.165 289.914 288.649 287.394 286.179 284.985 283.862 282.687 281.625 280.678 279.771 278.873 277.919 277.054 276.297 275.507 274.586 273.415 271.742 269.912 267.554 263.491 259.67 255.272 253.154 252.769 248.849 247.194 246.199 245.091 243.638 242.31 241.474 240.517 239.489 238.805 237.976 237.413 238.012 239.452 240.887 241.145 240.115 239.012 246.935 250.327 255.868 261.5 264.807 265.834 265.897 266.663 267.326 268.39 269.544 270.087 270.236 270.267 270.561 271.231 271.568 272.054 272.957 273.983 274.973 275.881 276.646 277.414 278.288 279.126 279.92 280.729 281.733 283.117 284.618 285.999 287.08 287.875 288.575 289.308 290.103 290.878 291.448 292.025 292.746 293.503 294.227 294.787 295.215 295.648 296.172 296.755 297.302 297.818 298.374 298.915 299.347 299.802 300.316 300.651 300.682 300.646 300.632 300.481 300.059 299.299 298.32 297.63 297.549 297.817 298.387 299.243 299.822 299.785 299.433 299.063 298.642 298.146 297.61 297.013 296.46 296.021 295.618 295.294 295.086 294.775 294.038 292.889 291.412 290.129 288.846 287.571 286.314 285.164 284.074 282.914 281.879 280.881 279.941 279.04 278.095 277.299 276.535 275.696 274.833 273.686 272.017 269.398 266.977 262.786 258.65 254.247 251.884 251.786 247.823 245.532 244.377 244.067 243.618 242.707 241.791 240.445 239.311 238.629 237.766 237.191 237.866 239.331 240.795 241.137 240.103 239.014 246.949 250.394 255.949 261.561 264.812 265.813 265.772 266.559 267.344 268.322 269.763 270.403 270.484 270.416 270.652 271.221 271.596 272.045 272.895 273.9 274.917 275.894 276.723 277.505 278.401 279.311 280.122 280.884 281.842 283.211 284.662 285.956 286.959 287.74 288.492 289.231 289.95 290.663 291.253 291.899 292.699 293.459 294.14 294.697 295.171 295.626 296.166 296.781 297.328 297.8 298.313 298.833 299.271 299.761 300.29 300.569 300.583 300.568 300.588 300.483 300.083 299.274 298.211 297.533 297.508 297.814 298.39 299.227 299.809 299.79 299.457 299.103 298.701 298.25 297.776 297.219 296.616 296.098 295.69 295.355 295.081 294.782 294.22 293.232 291.791 290.447 289.104 287.808 286.519 285.4 284.302 283.188 282.18 281.13 280.157 279.244 278.306 277.529 276.754 275.895 275.031 273.917 272.152 269.655 266.312 262.131 257.026 253.411 251.132 248.968 246.643 244.809 243.524 243.352 243.481 243.036 241.977 240.323 239.057 238.454 237.529 236.931 237.695 239.262 240.688 241.119 240.07 239.022 246.976 250.436 256.005 261.611 264.832 265.777 265.686 266.297 267.46 268.286 269.904 270.624 270.69 270.535 270.709 271.212 271.623 272.04 272.848 273.824 274.843 275.881 276.777 277.575 278.478 279.436 280.311 281.098 282.042 283.369 284.734 285.929 286.855 287.625 288.426 289.151 289.769 290.426 291.051 291.788 292.663 293.422 294.045 294.598 295.12 295.617 296.178 296.8 297.329 297.767 298.245 298.742 299.182 299.673 300.216 300.51 300.558 300.548 300.568 300.482 300.113 299.293 298.187 297.514 297.481 297.792 298.397 299.252 299.838 299.819 299.477 299.098 298.699 298.305 297.924 297.426 296.798 296.182 295.69 295.317 295.06 294.806 294.343 293.494 292.185 290.828 289.445 288.158 286.858 285.7 284.527 283.44 282.465 281.394 280.4 279.453 278.528 277.741 276.957 276.113 275.214 274.092 272.403 269.991 265.501 261.661 255.881 252.904 250.915 248.273 246.036 244.382 242.892 242.678 243.398 243.054 242.014 240.074 238.713 238.188 237.286 236.743 237.53 239.196 240.608 241.09 239.969 239.038 247.01 250.464 256.056 261.661 264.849 265.728 265.65 266.325 267.456 268.234 269.973 270.779 270.872 270.603 270.744 271.186 271.647 272.037 272.824 273.769 274.759 275.834 276.789 277.609 278.502 279.486 280.453 281.328 282.293 283.553 284.801 285.887 286.744 287.503 288.319 288.994 289.523 290.179 290.898 291.738 292.649 293.394 293.981 294.533 295.093 295.631 296.207 296.812 297.317 297.738 298.182 298.652 299.087 299.58 300.137 300.484 300.575 300.551 300.544 300.478 300.145 299.335 298.247 297.573 297.474 297.755 298.39 299.267 299.86 299.85 299.498 299.086 298.682 298.328 298.02 297.569 296.938 296.239 295.634 295.197 294.986 294.809 294.43 293.715 292.57 291.212 289.772 288.467 287.182 286.015 284.785 283.719 282.723 281.648 280.634 279.665 278.738 277.887 277.122 276.322 275.389 274.316 272.753 270.255 265.087 261.532 255.504 252.774 250.722 248.376 246.058 244.209 242.337 242.195 243.454 243.024 241.851 239.81 238.438 237.881 237.075 236.656 237.409 239.165 240.537 241.045 239.859 239.052 247.058 250.503 256.097 261.694 264.851 265.701 265.591 266.214 267.269 268.171 270.024 270.897 271.051 270.77 270.811 271.182 271.659 272.052 272.819 273.725 274.651 275.73 276.73 277.582 278.457 279.443 280.514 281.534 282.556 283.735 284.841 285.809 286.606 287.355 288.134 288.711 289.203 289.945 290.848 291.781 292.65 293.354 293.943 294.513 295.084 295.63 296.205 296.786 297.268 297.694 298.119 298.532 298.965 299.506 300.083 300.471 300.571 300.494 300.485 300.527 300.254 299.443 298.385 297.669 297.485 297.741 298.398 299.273 299.865 299.882 299.536 299.093 298.685 298.345 298.063 297.633 297.008 296.262 295.56 295.052 294.866 294.769 294.474 293.897 292.942 291.607 290.123 288.758 287.477 286.311 285.088 284.02 282.961 281.894 280.847 279.862 278.924 278.001 277.24 276.497 275.574 274.583 273.184 270.684 266.958 261.144 255.373 252.802 250.808 248.284 246.484 243.997 242.084 241.841 243.289 242.886 241.785 239.592 238.159 237.578 236.839 236.567 237.407 239.067 240.537 240.932 239.837 239.065 247.063 250.536 256.119 261.717 264.829 265.718 265.595 266.137 267.08 268.04 269.938 270.948 271.105 270.883 270.853 271.177 271.64 272.065 272.831 273.696 274.546 275.589 276.607 277.484 278.35 279.334 280.481 281.637 282.727 283.857 284.864 285.751 286.523 287.269 288.002 288.53 289.05 289.897 290.902 291.856 292.643 293.282 293.886 294.48 295.038 295.577 296.15 296.71 297.179 297.628 298.068 298.459 298.898 299.476 300.074 300.477 300.546 300.41 300.416 300.567 300.398 299.644 298.577 297.724 297.466 297.739 298.401 299.253 299.849 299.915 299.568 299.103 298.68 298.32 298.046 297.646 297.009 296.196 295.429 294.981 294.773 294.691 294.459 294.034 293.295 292.048 290.562 289.088 287.762 286.605 285.461 284.363 283.175 282.092 281.022 280.038 279.074 278.11 277.349 276.625 275.792 274.86 273.6 271.497 268.006 261.609 255.785 252.795 250.812 248.645 246.344 244.199 241.929 241.533 243.055 242.826 241.799 239.355 237.806 237.277 236.528 236.381 237.384 239.041 240.481 240.814 239.829 239.077 247.051 250.558 256.129 261.705 264.789 265.666 265.644 266.021 266.888 267.792 269.765 270.953 271.145 270.937 270.873 271.153 271.607 272.058 272.847 273.668 274.447 275.433 276.45 277.347 278.227 279.217 280.416 281.676 282.821 283.926 284.874 285.706 286.471 287.223 287.942 288.481 289.062 289.98 290.981 291.897 292.622 293.215 293.819 294.432 294.99 295.524 296.089 296.635 297.104 297.592 298.067 298.461 298.898 299.468 300.066 300.48 300.553 300.393 300.383 300.567 300.498 299.85 298.773 297.766 297.445 297.748 298.397 299.213 299.835 299.946 299.592 299.125 298.685 298.278 298.0 297.639 296.997 296.127 295.358 294.987 294.727 294.585 294.361 294.056 293.523 292.484 291.138 289.589 288.133 286.955 285.873 284.694 283.396 282.285 281.173 280.166 279.195 278.259 277.477 276.764 275.984 275.093 273.977 272.313 268.874 264.197 256.737 252.767 250.207 248.304 245.887 244.351 241.737 241.226 242.742 242.896 241.865 239.048 237.432 236.941 236.169 236.122 237.314 239.058 240.405 240.689 239.82 239.087 247.053 250.575 256.132 261.682 264.726 265.593 265.579 265.895 266.663 267.428 269.511 270.895 271.162 270.919 270.899 271.112 271.568 272.046 272.858 273.647 274.362 275.269 276.264 277.184 278.098 279.108 280.355 281.689 282.865 283.951 284.856 285.646 286.404 287.168 287.896 288.484 289.166 290.123 291.055 291.903 292.599 293.172 293.768 294.387 294.956 295.486 296.027 296.56 297.056 297.594 298.092 298.484 298.913 299.48 300.067 300.477 300.569 300.426 300.398 300.565 300.551 300.004 298.916 297.79 297.438 297.777 298.407 299.18 299.823 299.962 299.61 299.156 298.709 298.248 297.947 297.628 297.016 296.233 295.566 295.034 294.678 294.448 294.213 293.996 293.625 292.797 291.636 290.098 288.583 287.346 286.296 285.011 283.639 282.468 281.334 280.299 279.312 278.435 277.648 276.93 276.162 275.216 274.279 272.973 270.271 265.955 259.563 252.742 249.409 248.021 245.986 244.052 241.542 241.027 242.474 242.855 241.751 238.83 237.212 236.595 235.862 235.933 237.277 239.084 240.306 240.564 239.815 239.096 247.082 250.604 256.123 261.645 264.64 265.524 265.497 265.642 266.274 266.909 269.0 270.772 271.182 270.924 270.909 271.088 271.53 272.057 272.891 273.66 274.302 275.092 276.027 276.982 277.96 279.014 280.309 281.683 282.863 283.913 284.775 285.531 286.3 287.09 287.828 288.477 289.289 290.253 291.096 291.86 292.551 293.145 293.752 294.362 294.93 295.45 295.958 296.489 297.047 297.621 298.107 298.486 298.947 299.561 300.151 300.506 300.562 300.451 300.414 300.556 300.579 300.08 298.968 297.787 297.421 297.757 298.384 299.159 299.825 299.978 299.617 299.159 298.712 298.225 297.885 297.603 297.077 296.384 295.718 295.092 294.607 294.306 294.068 293.894 293.632 292.985 292.023 290.61 289.11 287.754 286.632 285.292 283.965 282.725 281.525 280.44 279.473 278.603 277.794 277.122 276.297 275.318 274.461 273.431 271.436 267.488 261.741 253.105 249.238 247.511 245.738 243.733 241.273 240.828 242.226 242.812 241.725 238.703 237.029 236.288 235.571 235.805 237.203 239.079 240.172 240.475 239.824 239.1 247.119 250.609 256.091 261.591 264.615 265.452 265.511 265.36 265.879 266.441 268.476 270.633 271.193 270.976 270.951 271.134 271.541 272.103 272.973 273.72 274.303 274.971 275.813 276.787 277.844 278.952 280.287 281.668 282.825 283.829 284.653 285.411 286.238 287.074 287.824 288.517 289.368 290.32 291.098 291.794 292.456 293.082 293.742 294.36 294.914 295.422 295.925 296.485 297.096 297.674 298.152 298.575 299.098 299.736 300.306 300.611 300.636 300.482 300.392 300.518 300.572 300.076 298.96 297.798 297.383 297.631 298.271 299.12 299.825 300.007 299.647 299.139 298.659 298.174 297.802 297.517 297.075 296.494 295.817 295.072 294.505 294.187 293.961 293.786 293.573 293.063 292.281 291.099 289.674 288.221 286.984 285.609 284.333 283.001 281.758 280.629 279.674 278.748 277.91 277.256 276.392 275.421 274.591 273.794 272.394 269.061 263.29 254.4 249.543 247.123 245.507 243.325 241.007 240.657 242.046 242.768 241.743 238.472 236.783 235.986 235.208 235.594 237.184 238.937 240.052 240.396 239.827 239.103 247.124 250.609 256.059 261.524 264.518 265.397 265.474 264.995 265.481 266.395 267.981 270.487 271.209 271.064 270.97 271.187 271.599 272.185 273.094 273.829 274.368 274.922 275.649 276.616 277.752 278.916 280.276 281.649 282.774 283.734 284.544 285.336 286.234 287.116 287.893 288.615 289.457 290.371 291.092 291.73 292.342 292.995 293.714 294.347 294.897 295.403 295.922 296.524 297.164 297.725 298.222 298.728 299.288 299.881 300.384 300.673 300.704 300.523 300.347 300.446 300.52 300.005 298.895 297.795 297.353 297.508 298.167 299.09 299.813 300.016 299.668 299.119 298.612 298.128 297.723 297.414 297.012 296.484 295.783 294.971 294.365 294.047 293.816 293.644 293.46 293.05 292.434 291.543 290.269 288.771 287.364 285.974 284.69 283.303 282.013 280.862 279.928 278.881 278.018 277.332 276.465 275.541 274.729 274.043 273.083 270.325 265.319 254.538 249.411 247.179 245.793 243.085 240.758 240.586 241.783 242.707 241.573 238.183 236.555 235.672 234.842 235.322 237.092 238.82 239.9 240.317 239.805 239.097 247.133 250.62 256.009 261.446 264.42 265.28 265.388 264.865 265.061 266.218 267.484 270.274 271.22 271.154 270.988 271.235 271.666 272.297 273.239 273.977 274.503 274.972 275.564 276.491 277.695 278.912 280.278 281.624 282.713 283.642 284.459 285.304 286.258 287.17 287.975 288.73 289.546 290.397 291.077 291.676 292.252 292.923 293.679 294.316 294.879 295.401 295.937 296.575 297.23 297.769 298.295 298.887 299.45 299.954 300.385 300.654 300.7 300.509 300.272 300.347 300.425 299.886 298.776 297.759 297.326 297.427 298.098 299.068 299.799 299.997 299.648 299.083 298.571 298.078 297.636 297.31 296.929 296.41 295.685 294.839 294.179 293.827 293.579 293.421 293.277 292.951 292.438 291.744 290.674 289.32 287.854 286.387 285.021 283.644 282.32 281.156 280.161 279.059 278.161 277.403 276.543 275.672 274.917 274.232 273.515 271.42 266.0 256.757 249.709 247.372 245.864 242.802 240.777 240.604 241.611 242.624 241.404 238.156 236.397 235.357 234.649 235.126 236.977 238.744 239.722 240.236 239.733 239.054 247.154 250.626 255.951 261.354 264.288 265.153 265.24 264.571 264.604 265.781 266.987 269.961 271.205 271.238 271.07 271.274 271.747 272.43 273.404 274.173 274.736 275.167 275.632 276.461 277.701 278.96 280.306 281.588 282.626 283.541 284.391 285.295 286.272 287.172 287.996 288.772 289.56 290.345 291.018 291.639 292.247 292.924 293.648 294.265 294.863 295.43 295.975 296.627 297.289 297.823 298.393 299.03 299.552 299.975 300.363 300.593 300.604 300.409 300.17 300.245 300.33 299.784 298.683 297.72 297.31 297.391 298.038 299.015 299.786 299.982 299.596 299.033 298.537 298.012 297.527 297.199 296.822 296.299 295.583 294.721 293.978 293.551 293.285 293.145 293.036 292.774 292.346 291.797 290.903 289.721 288.263 286.76 285.341 284.038 282.682 281.486 280.38 279.285 278.39 277.545 276.653 275.808 275.134 274.398 273.84 272.168 266.83 258.201 250.598 247.673 245.824 242.885 241.025 240.778 241.702 242.635 241.393 238.012 236.166 235.08 234.503 235.103 236.821 238.742 239.535 240.116 239.583 238.99 247.175 250.611 255.879 261.251 264.168 265.033 265.094 264.261 264.096 265.461 266.523 269.581 271.169 271.318 271.178 271.337 271.813 272.534 273.516 274.33 274.947 275.405 275.824 276.569 277.787 279.051 280.353 281.545 282.53 283.456 284.36 285.304 286.286 287.17 287.981 288.736 289.481 290.247 290.957 291.643 292.312 292.99 293.666 294.256 294.889 295.491 296.02 296.642 297.296 297.865 298.477 299.101 299.572 299.966 300.341 300.53 300.514 300.348 300.14 300.185 300.252 299.749 298.688 297.722 297.314 297.407 298.006 298.947 299.775 299.986 299.563 299.004 298.517 297.962 297.44 297.09 296.675 296.162 295.525 294.661 293.794 293.263 292.97 292.828 292.744 292.535 292.178 291.747 291.01 290.005 288.622 287.109 285.63 284.401 283.066 281.803 280.576 279.529 278.621 277.777 276.793 275.983 275.317 274.584 274.12 272.539 267.536 257.73 250.656 247.939 245.681 242.839 241.237 241.003 241.621 242.369 241.196 237.635 235.817 234.761 234.278 235.096 236.75 238.711 239.376 239.839 239.463 238.94 247.187 250.594 255.798 261.129 264.031 264.944 264.914 263.965 263.527 264.872 266.177 269.153 271.127 271.377 271.304 271.426 271.858 272.612 273.576 274.425 275.1 275.632 276.066 276.772 277.921 279.155 280.405 281.508 282.447 283.409 284.364 285.335 286.315 287.2 288.004 288.716 289.414 290.188 290.948 291.688 292.397 293.078 293.739 294.323 294.96 295.575 296.082 296.649 297.27 297.86 298.489 299.1 299.562 299.961 300.313 300.46 300.44 300.318 300.126 300.119 300.161 299.702 298.689 297.694 297.284 297.419 297.995 298.887 299.729 299.946 299.511 298.956 298.471 297.896 297.361 296.976 296.516 296.028 295.472 294.603 293.654 293.033 292.691 292.515 292.438 292.25 291.921 291.584 291.015 290.161 288.944 287.457 285.968 284.689 283.337 282.022 280.782 279.751 278.839 278.001 277.018 276.197 275.5 274.857 274.39 272.725 267.779 257.186 250.818 248.349 245.84 242.919 241.288 240.973 241.404 241.829 240.662 237.468 235.506 234.498 234.102 235.075 236.807 238.566 239.193 239.525 239.413 238.939 247.175 250.583 255.71 260.988 263.888 264.799 264.706 263.549 263.008 264.198 265.826 268.716 271.054 271.42 271.426 271.522 271.897 272.669 273.601 274.473 275.211 275.846 276.333 277.008 278.071 279.251 280.448 281.482 282.395 283.405 284.406 285.381 286.344 287.242 288.059 288.74 289.405 290.196 291.002 291.767 292.487 293.173 293.849 294.431 295.043 295.649 296.148 296.682 297.268 297.835 298.445 299.049 299.566 300.003 300.309 300.398 300.369 300.271 300.074 300.021 300.045 299.634 298.661 297.639 297.213 297.388 297.967 298.836 299.669 299.882 299.446 298.893 298.401 297.809 297.268 296.841 296.345 295.893 295.386 294.503 293.515 292.811 292.366 292.144 292.092 291.93 291.629 291.358 290.913 290.182 289.2 287.829 286.326 284.949 283.576 282.187 280.999 279.977 279.062 278.219 277.32 276.494 275.774 275.232 274.646 272.656 267.431 257.048 251.234 248.783 246.051 243.021 241.411 240.747 241.164 241.388 239.869 237.097 235.235 234.274 234.065 235.079 236.926 238.428 238.96 239.329 239.368 238.938 247.197 250.591 255.617 260.842 263.711 264.642 264.482 263.001 262.415 263.529 265.335 268.249 270.9 271.439 271.525 271.617 271.945 272.708 273.608 274.496 275.292 276.045 276.594 277.223 278.193 279.314 280.481 281.49 282.409 283.457 284.477 285.435 286.361 287.257 288.12 288.824 289.486 290.283 291.104 291.874 292.597 293.281 293.942 294.501 295.081 295.679 296.186 296.718 297.293 297.827 298.38 298.984 299.599 300.081 300.314 300.326 300.29 300.178 299.955 299.868 299.879 299.507 298.575 297.538 297.083 297.275 297.885 298.784 299.629 299.827 299.383 298.829 298.332 297.73 297.178 296.692 296.165 295.736 295.244 294.363 293.396 292.614 292.012 291.714 291.675 291.532 291.278 291.095 290.746 290.096 289.284 288.097 286.699 285.232 283.834 282.391 281.236 280.199 279.326 278.461 277.654 276.857 276.174 275.616 274.798 272.122 266.726 256.77 251.698 249.108 245.95 242.872 241.26 240.384 240.954 240.951 238.98 236.55 235.003 234.107 234.035 235.258 236.939 238.368 238.809 239.14 239.315 238.938 247.224 250.565 255.499 260.664 263.532 264.484 264.245 262.667 261.836 262.769 265.221 267.943 270.739 271.453 271.559 271.673 272.014 272.748 273.632 274.524 275.358 276.179 276.76 277.345 278.247 279.336 280.515 281.55 282.493 283.533 284.534 285.485 286.385 287.255 288.154 288.92 289.63 290.417 291.203 291.97 292.702 293.352 293.96 294.514 295.1 295.683 296.177 296.688 297.234 297.766 298.341 298.997 299.651 300.109 300.266 300.234 300.195 300.072 299.838 299.708 299.662 299.285 298.369 297.324 296.885 297.121 297.785 298.726 299.581 299.764 299.3 298.751 298.26 297.666 297.106 296.563 295.987 295.533 295.023 294.193 293.279 292.413 291.636 291.257 291.204 291.068 290.876 290.778 290.493 289.921 289.243 288.193 286.913 285.545 284.175 282.687 281.471 280.453 279.58 278.775 277.979 277.234 276.634 275.903 274.554 270.974 265.22 256.262 252.244 249.74 245.712 242.748 240.838 239.907 240.634 240.544 238.393 236.336 234.93 234.064 234.026 235.479 236.969 238.367 238.71 238.967 239.26 238.937 247.244 250.549 255.337 260.458 263.329 264.238 263.916 262.261 261.318 262.06 264.774 267.658 270.583 271.459 271.593 271.737 272.094 272.804 273.681 274.567 275.428 276.274 276.866 277.421 278.282 279.366 280.555 281.624 282.588 283.592 284.569 285.534 286.437 287.284 288.185 289.002 289.766 290.558 291.306 292.064 292.79 293.412 294.015 294.614 295.216 295.744 296.197 296.667 297.168 297.712 298.372 299.095 299.726 300.122 300.224 300.152 300.084 299.965 299.748 299.566 299.44 299.045 298.14 297.079 296.677 296.974 297.694 298.673 299.541 299.703 299.22 298.674 298.175 297.572 297.003 296.425 295.804 295.303 294.783 294.007 293.112 292.201 291.365 290.941 290.81 290.639 290.46 290.341 290.078 289.62 289.06 288.143 286.968 285.761 284.44 283.034 281.744 280.732 279.839 279.082 278.313 277.599 276.905 275.923 273.67 269.723 261.698 256.106 252.43 249.9 245.949 243.003 240.365 239.479 240.434 240.392 238.16 236.377 234.98 234.12 234.189 235.636 237.073 238.3 238.642 238.833 239.204 238.937 247.243 250.545 255.234 260.267 263.083 263.952 263.539 261.836 260.752 261.45 264.456 267.354 270.368 271.464 271.624 271.805 272.184 272.88 273.747 274.628 275.506 276.361 276.946 277.492 278.348 279.43 280.605 281.694 282.669 283.63 284.582 285.57 286.493 287.318 288.209 289.059 289.863 290.684 291.436 292.176 292.876 293.491 294.147 294.818 295.406 295.83 296.229 296.684 297.173 297.742 298.485 299.218 299.774 300.107 300.183 300.077 299.958 299.856 299.68 299.445 299.231 298.821 297.931 296.867 296.485 296.839 297.613 298.634 299.516 299.653 299.158 298.612 298.097 297.469 296.886 296.29 295.623 295.058 294.517 293.777 292.885 291.967 291.15 290.699 290.489 290.295 290.127 289.904 289.555 289.158 288.686 287.898 286.85 285.818 284.566 283.266 282.041 281.043 280.116 279.369 278.642 277.885 276.9 275.271 272.19 267.627 259.872 255.545 252.77 250.301 246.355 243.003 239.803 239.129 240.218 240.227 237.915 236.443 235.072 234.176 234.428 235.72 237.185 238.16 238.587 238.708 239.146 238.936 247.256 250.505 255.106 260.037 262.848 263.655 263.247 261.457 260.206 260.944 264.0 266.991 270.121 271.453 271.647 271.883 272.298 272.985 273.816 274.694 275.596 276.462 277.045 277.626 278.508 279.56 280.683 281.758 282.721 283.644 284.571 285.566 286.502 287.33 288.228 289.086 289.902 290.789 291.599 292.332 292.991 293.612 294.348 295.056 295.551 295.86 296.224 296.707 297.232 297.869 298.623 299.269 299.706 299.985 300.058 299.948 299.802 299.748 299.63 299.357 299.059 298.604 297.696 296.636 296.283 296.708 297.553 298.635 299.499 299.582 299.073 298.543 298.029 297.393 296.795 296.183 295.461 294.814 294.222 293.495 292.625 291.747 290.988 290.485 290.179 289.955 289.781 289.477 289.07 288.697 288.188 287.421 286.503 285.649 284.548 283.366 282.275 281.297 280.412 279.621 278.884 277.945 276.511 273.78 270.408 264.087 258.457 255.146 252.697 250.293 246.825 243.529 240.258 238.728 239.848 240.011 237.953 236.558 235.212 234.265 234.564 235.868 237.182 238.093 238.46 238.551 239.071 238.937 247.271 250.466 254.967 259.799 262.594 263.355 262.868 261.138 259.74 260.394 263.543 266.71 269.92 271.426 271.663 271.933 272.4 273.075 273.858 274.725 275.651 276.544 277.174 277.817 278.722 279.732 280.784 281.807 282.725 283.628 284.554 285.54 286.478 287.343 288.275 289.137 289.939 290.841 291.69 292.435 293.09 293.754 294.527 295.194 295.598 295.88 296.266 296.741 297.288 297.968 298.685 299.232 299.59 299.831 299.885 299.777 299.664 299.647 299.563 299.314 299.013 298.492 297.486 296.399 296.106 296.629 297.567 298.69 299.495 299.517 299.013 298.499 297.982 297.338 296.722 296.088 295.332 294.618 293.928 293.166 292.334 291.561 290.857 290.273 289.855 289.607 289.41 289.052 288.61 288.213 287.609 286.847 286.063 285.265 284.334 283.332 282.385 281.403 280.574 279.792 278.889 277.562 275.398 271.968 266.832 261.541 257.631 254.419 252.32 250.581 247.069 243.854 240.284 238.796 239.627 240.007 238.032 236.641 235.393 234.409 234.712 235.959 237.172 238.064 238.3 238.495 238.953 238.939 247.264 250.485 254.831 259.538 262.307 263.054 262.547 260.71 259.238 259.938 263.099 266.586 269.695 271.392 271.665 271.949 272.473 273.147 273.886 274.732 275.668 276.593 277.295 278.013 278.935 279.906 280.899 281.849 282.705 283.595 284.542 285.536 286.476 287.376 288.352 289.216 289.991 290.858 291.715 292.485 293.174 293.893 294.69 295.306 295.672 296.009 296.435 296.876 297.39 298.044 298.701 299.177 299.502 299.707 299.722 299.616 299.547 299.544 299.464 299.245 298.973 298.409 297.316 296.208 295.966 296.574 297.605 298.757 299.491 299.485 299.013 298.51 297.963 297.288 296.654 296.01 295.246 294.496 293.705 292.875 292.073 291.385 290.754 290.153 289.633 289.248 288.952 288.596 288.17 287.715 287.019 286.268 285.617 284.851 283.99 283.122 282.299 281.368 280.486 279.599 278.428 276.604 273.514 269.332 263.365 260.02 256.805 254.156 252.268 250.689 247.159 244.13 240.24 238.479 239.337 239.865 238.012 236.693 235.471 234.461 234.927 235.981 237.204 238.022 238.193 238.385 238.922 238.942 247.26 250.45 254.694 259.256 261.988 262.685 262.144 260.331 258.811 259.564 263.11 266.438 269.502 271.325 271.644 271.936 272.517 273.209 273.916 274.729 275.661 276.62 277.402 278.194 279.129 280.065 281.013 281.882 282.667 283.55 284.533 285.544 286.497 287.426 288.423 289.278 290.039 290.879 291.718 292.507 293.242 294.007 294.814 295.391 295.763 296.163 296.616 297.032 297.513 298.111 298.696 299.112 299.417 299.574 299.558 299.474 299.443 299.445 299.357 299.151 298.881 298.288 297.152 296.054 295.845 296.527 297.643 298.816 299.488 299.453 299.012 298.525 297.952 297.254 296.617 295.975 295.2 294.407 293.529 292.629 291.825 291.177 290.641 290.099 289.516 288.958 288.532 288.176 287.756 287.215 286.467 285.752 285.196 284.445 283.608 282.832 282.023 281.149 280.112 278.832 277.084 274.816 271.563 266.253 261.256 258.893 255.932 253.951 252.549 250.115 247.485 244.282 240.347 238.604 238.828 239.653 238.122 236.697 235.558 234.563 235.046 236.086 237.22 237.95 238.121 238.273 238.913 238.945 247.295 250.414 254.543 258.964 261.665 262.311 261.712 260.014 258.469 259.272 262.206 266.264 269.387 271.191 271.583 271.895 272.531 273.275 273.971 274.741 275.65 276.639 277.499 278.36 279.293 280.192 281.098 281.892 282.613 283.503 284.504 285.516 286.494 287.44 288.418 289.29 290.101 290.94 291.739 292.532 293.292 294.064 294.835 295.386 295.769 296.165 296.612 297.054 297.571 298.139 298.665 299.055 299.327 299.423 299.398 299.351 299.342 299.359 299.287 299.081 298.789 298.167 296.995 295.901 295.729 296.502 297.711 298.885 299.497 299.412 298.977 298.511 297.941 297.244 296.615 295.976 295.177 294.303 293.367 292.438 291.61 290.961 290.498 290.036 289.409 288.699 288.137 287.753 287.335 286.777 286.055 285.321 284.729 284.041 283.25 282.556 281.735 280.707 279.411 277.451 275.046 272.416 268.075 263.092 259.842 257.768 256.067 254.397 252.392 250.064 247.577 244.17 240.62 238.726 238.647 239.371 237.961 236.533 235.553 234.764 235.147 236.192 237.204 237.913 238.088 238.186 238.905 238.946 247.288 250.386 254.376 258.663 261.338 261.949 261.353 259.635 258.293 259.059 261.98 266.261 269.322 271.039 271.487 271.847 272.538 273.341 274.058 274.789 275.663 276.658 277.57 278.473 279.377 280.227 281.096 281.861 282.574 283.485 284.469 285.448 286.447 287.411 288.377 289.278 290.147 291.007 291.777 292.556 293.321 294.066 294.776 295.301 295.682 296.048 296.462 296.979 297.583 298.149 298.627 299.0 299.25 299.317 299.28 299.228 299.224 299.274 299.239 299.067 298.797 298.16 296.937 295.819 295.681 296.543 297.799 298.94 299.515 299.433 299.013 298.551 297.972 297.252 296.607 295.962 295.136 294.172 293.21 292.29 291.434 290.724 290.256 289.842 289.212 288.438 287.795 287.358 286.911 286.373 285.74 285.029 284.31 283.58 282.898 282.302 281.465 280.134 278.205 275.684 272.3 269.019 264.873 261.671 258.744 257.179 256.17 254.301 251.996 250.077 247.656 244.128 240.67 238.86 238.622 238.916 237.668 236.347 235.458 234.776 235.361 236.223 237.217 237.923 238.033 238.12 238.898 238.948 247.328 250.374 254.24 258.333 260.992 261.587 260.96 259.22 258.121 258.904 261.844 266.484 269.258 270.875 271.376 271.791 272.535 273.399 274.154 274.878 275.708 276.682 277.622 278.548 279.41 280.201 281.035 281.802 282.551 283.493 284.447 285.395 286.397 287.386 288.352 289.263 290.172 291.048 291.8 292.559 293.323 294.05 294.7 295.185 295.582 295.957 296.373 296.957 297.636 298.165 298.57 298.91 299.137 299.194 299.141 299.076 299.089 299.187 299.183 299.034 298.793 298.136 296.868 295.735 295.649 296.598 297.871 298.951 299.486 299.436 299.058 298.603 298.01 297.285 296.618 295.956 295.107 294.09 293.106 292.172 291.287 290.542 290.062 289.64 288.983 288.184 287.53 287.091 286.645 286.157 285.629 284.906 283.907 282.98 282.308 281.827 281.03 279.324 276.74 272.743 268.302 265.864 263.097 260.509 258.351 257.071 256.058 254.226 251.535 250.0 247.662 244.052 240.768 238.844 238.653 238.334 237.347 236.165 235.423 234.861 235.53 236.303 237.217 237.877 237.984 238.03 238.891 238.973 247.339 250.362 254.066 258.009 260.623 261.23 260.461 258.851 257.855 258.838 261.779 266.399 269.131 270.711 271.249 271.722 272.519 273.44 274.249 274.984 275.781 276.719 277.657 278.594 279.412 280.144 280.945 281.732 282.533 283.513 284.444 285.37 286.358 287.359 288.321 289.239 290.158 291.043 291.812 292.57 293.31 293.997 294.577 295.026 295.467 295.891 296.332 296.964 297.677 298.167 298.51 298.8 299.01 299.074 299.019 298.936 298.964 299.101 299.125 298.995 298.775 298.082 296.763 295.634 295.614 296.644 297.951 298.969 299.435 299.382 299.041 298.603 298.039 297.353 296.67 295.963 295.077 294.03 293.019 292.057 291.163 290.461 290.007 289.564 288.858 288.061 287.498 287.161 286.8 286.379 285.793 284.835 283.355 281.927 281.13 280.709 279.868 278.05 275.026 269.846 266.022 264.103 261.742 259.924 258.618 256.938 255.83 253.938 251.392 250.323 247.277 243.547 240.464 238.459 238.323 237.526 236.729 235.718 235.281 234.953 235.674 236.457 237.158 237.83 237.946 238.015 238.853 239.001 247.318 250.333 253.906 257.662 260.217 260.808 259.985 258.484 257.651 258.817 261.81 265.722 269.044 270.558 271.102 271.626 272.469 273.446 274.329 275.092 275.87 276.776 277.68 278.605 279.397 280.075 280.845 281.655 282.501 283.521 284.455 285.364 286.314 287.289 288.243 289.174 290.108 291.042 291.881 292.656 293.324 293.901 294.374 294.795 295.309 295.833 296.32 296.951 297.636 298.128 298.467 298.732 298.908 298.977 298.937 298.841 298.864 298.987 299.026 298.932 298.743 298.036 296.69 295.582 295.576 296.657 298.041 299.037 299.4 299.274 298.934 298.53 298.065 297.46 296.763 295.973 295.021 293.945 292.914 291.949 291.114 290.501 290.07 289.565 288.806 288.067 287.662 287.433 287.093 286.523 285.526 284.044 281.604 279.599 279.074 279.058 278.346 275.652 271.842 267.807 264.527 262.86 260.775 259.755 258.682 257.309 255.757 253.586 251.934 249.75 246.265 243.167 240.155 238.629 237.88 236.658 235.966 235.372 235.173 234.898 235.901 236.573 237.14 237.827 237.938 238.005 238.65 238.991 247.305 250.288 253.737 257.311 259.829 260.439 259.577 258.182 257.537 258.874 261.85 266.078 269.013 270.47 270.975 271.547 272.409 273.417 274.36 275.159 275.938 276.829 277.692 278.587 279.36 280.023 280.783 281.598 282.454 283.49 284.444 285.349 286.25 287.175 288.137 289.122 290.106 291.107 291.99 292.752 293.342 293.819 294.237 294.651 295.208 295.803 296.318 296.911 297.548 298.035 298.386 298.652 298.791 298.83 298.797 298.736 298.784 298.896 298.912 298.833 298.657 297.97 296.667 295.593 295.597 296.675 298.067 299.027 299.323 299.138 298.779 298.406 298.052 297.534 296.861 296.032 295.016 293.874 292.802 291.872 291.165 290.622 290.102 289.488 288.788 288.252 288.033 287.837 287.196 286.027 284.066 281.071 278.226 276.096 275.695 276.162 275.751 273.144 269.575 266.234 263.894 261.756 260.337 259.668 259.067 257.645 255.537 252.876 251.029 248.882 245.558 242.561 239.638 238.703 237.871 236.237 235.269 235.421 235.34 234.995 236.036 236.714 237.154 237.847 237.935 237.989 238.478 238.994 247.321 250.26 253.587 256.951 259.38 259.994 259.123 257.861 257.509 258.999 261.945 265.907 269.035 270.449 270.89 271.472 272.342 273.378 274.371 275.203 275.992 276.875 277.703 278.554 279.31 279.985 280.737 281.541 282.401 283.453 284.424 285.32 286.178 287.079 288.078 289.137 290.175 291.189 292.037 292.748 293.301 293.758 294.185 294.612 295.166 295.756 296.268 296.83 297.449 297.923 298.261 298.532 298.678 298.68 298.61 298.591 298.709 298.853 298.856 298.762 298.57 297.893 296.653 295.63 295.684 296.773 298.106 298.986 299.229 299.009 298.616 298.275 298.01 297.589 296.978 296.153 295.09 293.876 292.761 291.847 291.182 290.635 290.046 289.439 288.952 288.701 288.563 288.009 286.56 283.793 280.423 277.874 274.811 273.023 273.484 274.32 273.936 271.515 268.012 265.065 262.973 260.979 259.965 259.62 258.796 257.477 254.926 252.195 249.832 247.87 244.829 242.154 239.647 238.746 237.739 235.87 235.144 235.632 235.419 234.966 236.133 236.894 237.13 237.811 237.916 237.953 238.455 238.996 247.329 250.22 253.451 256.583 258.925 259.523 258.667 257.569 257.5 259.153 262.09 265.471 269.09 270.456 270.866 271.414 272.274 273.347 274.381 275.238 276.039 276.919 277.714 278.513 279.256 279.955 280.7 281.48 282.35 283.428 284.412 285.28 286.106 287.013 288.062 289.184 290.267 291.243 291.999 292.645 293.199 293.698 294.168 294.614 295.133 295.684 296.177 296.716 297.342 297.809 298.112 298.398 298.586 298.554 298.421 298.426 298.623 298.82 298.826 298.718 298.517 297.855 296.653 295.665 295.789 296.912 298.174 298.953 299.14 298.893 298.477 298.169 297.964 297.649 297.129 296.321 295.222 293.955 292.813 291.9 291.274 290.77 290.229 289.735 289.389 289.159 288.739 287.517 284.46 280.373 277.402 274.537 271.267 270.861 271.754 272.996 272.676 270.371 266.686 263.91 261.862 260.194 259.618 259.287 258.511 256.318 254.004 252.403 249.458 246.861 244.24 241.866 239.788 238.969 237.753 235.824 234.781 235.679 235.377 234.967 236.305 237.02 237.098 237.734 237.904 237.97 238.455 238.998 247.358 250.213 253.325 256.218 258.449 259.082 258.229 257.336 257.54 259.349 262.267 265.703 269.194 270.487 270.91 271.379 272.204 273.332 274.41 275.279 276.082 276.969 277.74 278.477 279.202 279.924 280.671 281.429 282.315 283.426 284.414 285.232 286.034 286.972 288.055 289.214 290.32 291.23 291.883 292.488 293.085 293.64 294.159 294.606 295.097 295.632 296.117 296.636 297.242 297.695 297.968 298.236 298.427 298.357 298.195 298.234 298.503 298.731 298.748 298.657 298.488 297.856 296.645 295.639 295.814 297.009 298.225 298.919 299.024 298.737 298.356 298.095 297.918 297.699 297.307 296.568 295.483 294.212 293.057 292.154 291.617 291.22 290.797 290.427 290.024 289.456 288.486 286.613 282.393 278.22 274.812 271.069 269.71 269.981 270.823 271.589 271.347 269.393 265.675 262.918 260.748 259.6 259.628 258.883 258.24 256.012 253.565 251.848 248.705 246.128 243.607 241.576 239.661 239.204 237.769 235.047 234.549 235.557 235.223 235.328 236.352 237.118 237.061 237.673 237.915 237.971 238.454 239.0 247.357 250.159 253.152 255.846 257.994 258.612 257.837 257.109 257.534 259.608 262.489 266.298 269.356 270.528 270.923 271.342 272.16 273.337 274.445 275.314 276.125 277.025 277.77 278.45 279.168 279.917 280.681 281.429 282.312 283.421 284.386 285.167 285.972 286.955 288.054 289.18 290.264 291.14 291.768 292.398 293.055 293.636 294.171 294.619 295.103 295.631 296.112 296.577 297.109 297.551 297.823 298.067 298.204 298.088 297.954 298.071 298.402 298.652 298.68 298.61 298.463 297.845 296.602 295.551 295.754 297.043 298.276 298.914 298.906 298.589 298.28 298.046 297.851 297.702 297.467 296.888 295.928 294.754 293.65 292.9 292.541 292.263 291.97 291.553 290.753 289.35 287.652 284.765 280.488 276.836 273.098 269.557 268.885 269.177 269.349 269.521 269.303 267.603 264.854 262.038 260.067 259.7 260.003 258.897 257.153 255.095 252.927 251.211 248.335 245.566 243.045 241.306 239.668 238.781 237.632 234.591 234.553 235.419 235.033 235.514 236.388 237.144 236.999 237.634 237.983 237.97 238.455 239.002 247.355 250.11 253.003 255.465 257.455 258.159 257.446 256.955 257.603 259.851 262.705 266.688 269.554 270.577 270.93 271.311 272.134 273.343 274.468 275.333 276.162 277.079 277.798 278.427 279.148 279.939 280.736 281.484 282.335 283.391 284.316 285.093 285.944 286.97 288.062 289.114 290.149 290.992 291.629 292.313 293.036 293.648 294.193 294.646 295.093 295.582 296.049 296.481 296.964 297.392 297.675 297.911 298.013 297.864 297.746 297.915 298.286 298.569 298.625 298.564 298.437 297.846 296.555 295.412 295.659 297.062 298.324 298.887 298.795 298.492 298.247 298.015 297.8 297.712 297.587 297.124 296.298 295.281 294.338 293.795 293.57 293.287 292.932 292.273 290.866 288.498 285.583 282.936 279.731 276.109 272.474 269.013 268.468 268.309 268.246 268.544 268.144 266.42 263.929 261.617 260.395 260.58 260.081 258.757 256.56 255.704 253.068 250.652 247.783 245.046 242.601 240.952 239.426 238.023 236.826 234.368 234.535 235.052 234.714 235.601 236.378 237.106 236.925 237.574 238.001 237.97 238.456 239.005 247.369 250.082 252.889 255.11 256.974 257.639 257.039 256.731 257.713 260.073 262.934 266.989 269.721 270.631 270.932 271.282 272.106 273.34 274.471 275.338 276.19 277.126 277.824 278.407 279.148 279.988 280.824 281.576 282.375 283.339 284.223 285.026 285.947 286.999 288.043 289.038 290.005 290.824 291.484 292.222 292.999 293.639 294.191 294.647 295.058 295.499 295.941 296.37 296.851 297.254 297.521 297.742 297.815 297.652 297.547 297.739 298.141 298.473 298.562 298.496 298.385 297.835 296.489 295.251 295.567 297.081 298.336 298.782 298.647 298.4 298.202 297.962 297.752 297.723 297.656 297.266 296.57 295.741 295.02 294.676 294.524 294.15 293.634 292.217 291.154 289.295 285.152 282.379 279.024 275.543 271.705 268.527 268.009 267.572 267.348 267.309 266.928 265.294 263.071 261.389 260.862 260.751 259.279 258.452 256.138 255.062 252.871 250.396 247.454 244.604 242.16 240.774 239.072 237.411 235.574 234.045 234.621 235.095 234.535 235.466 236.257 236.985 236.832 237.454 237.995 237.97 238.457 239.007 247.369 250.078 252.759 254.768 256.53 257.111 256.516 256.53 257.841 260.306 263.188 267.02 269.86 270.685 270.927 271.272 272.097 273.325 274.438 275.329 276.213 277.176 277.85 278.411 279.191 280.074 280.926 281.684 282.426 283.281 284.119 284.973 285.961 286.985 287.973 288.913 289.824 290.687 291.383 292.137 292.932 293.581 294.133 294.593 295.007 295.429 295.852 296.297 296.781 297.142 297.332 297.497 297.531 297.372 297.311 297.549 298.007 298.41 298.52 298.415 298.293 297.788 296.445 295.237 295.628 297.206 298.361 298.631 298.458 298.265 298.084 297.834 297.659 297.678 297.661 297.375 296.808 296.134 295.612 295.46 295.331 294.793 292.441 292.682 291.456 288.872 284.14 281.171 277.864 274.524 270.553 267.531 266.966 266.902 266.523 266.387 265.824 264.485 262.202 261.255 261.017 260.483 259.069 257.962 255.749 254.385 252.197 249.896 247.189 244.141 241.808 240.483 238.797 236.903 235.09 233.961 234.644 234.715 234.525 235.514 236.016 236.775 236.746 237.413 237.99 237.981 238.459 239.01 247.352 250.061 252.662 254.446 256.061 256.575 256.058 256.34 257.957 260.559 263.394 266.777 269.902 270.704 270.921 271.284 272.13 273.311 274.398 275.327 276.236 277.21 277.881 278.466 279.288 280.177 280.996 281.737 282.461 283.246 284.038 284.921 285.932 286.91 287.862 288.76 289.685 290.637 291.373 292.099 292.889 293.553 294.089 294.53 294.956 295.38 295.795 296.235 296.682 296.986 297.154 297.293 297.292 297.122 297.106 297.414 297.928 298.355 298.471 298.354 298.232 297.771 296.532 295.399 295.82 297.346 298.394 298.564 298.359 298.166 297.987 297.773 297.634 297.625 297.631 297.468 297.011 296.422 296.085 296.17 295.837 294.091 294.03 292.314 289.376 285.577 281.82 278.99 276.032 272.818 268.521 266.253 266.259 266.057 265.906 266.003 265.385 264.143 262.718 261.776 261.386 260.107 258.601 257.71 256.223 254.44 252.256 249.657 246.694 243.651 241.364 240.196 238.548 236.26 234.787 234.007 234.65 234.644 234.525 234.908 235.793 236.602 236.687 237.388 238.146 238.358 238.47 239.013 247.362 250.051 252.575 254.104 255.578 256.108 255.651 256.167 258.04 260.786 263.528 266.447 269.842 270.693 270.913 271.304 272.171 273.302 274.376 275.337 276.262 277.239 277.917 278.549 279.397 280.266 281.026 281.741 282.464 283.212 283.966 284.851 285.871 286.832 287.765 288.651 289.607 290.633 291.389 292.081 292.848 293.536 294.072 294.48 294.887 295.296 295.714 296.136 296.529 296.778 296.956 297.096 297.079 296.904 296.924 297.294 297.841 298.257 298.373 298.3 298.215 297.808 296.691 295.646 296.01 297.394 298.342 298.471 298.261 298.071 297.908 297.774 297.678 297.625 297.612 297.526 297.198 296.779 296.666 296.801 295.761 294.547 292.728 289.57 284.869 281.922 278.993 276.53 273.91 270.189 266.36 265.103 264.792 264.926 265.192 265.788 265.042 264.325 263.675 262.675 261.008 259.568 258.511 256.931 255.53 253.8 251.742 249.162 246.167 243.092 241.008 239.783 238.058 235.748 234.495 233.801 234.486 234.561 234.474 234.007 235.783 236.489 236.62 237.381 238.293 238.369 238.452 239.016 247.371 250.024 252.456 253.858 255.15 255.696 255.336 256.003 258.102 260.888 263.637 266.138 269.668 270.644 270.898 271.331 272.21 273.299 274.368 275.359 276.291 277.255 277.957 278.64 279.496 280.328 281.028 281.719 282.437 283.16 283.881 284.759 285.782 286.756 287.696 288.592 289.575 290.637 291.401 292.056 292.787 293.476 294.017 294.423 294.804 295.189 295.612 296.018 296.345 296.555 296.727 296.851 296.816 296.675 296.756 297.195 297.771 298.163 298.275 298.263 298.223 297.867 296.881 295.957 296.242 297.461 298.278 298.355 298.16 297.996 297.85 297.764 297.69 297.639 297.633 297.635 297.485 297.289 297.261 297.052 295.823 293.313 288.525 283.815 281.064 278.963 276.955 275.13 272.125 268.023 265.23 264.297 264.193 264.291 264.963 265.101 264.82 264.447 263.942 262.116 260.057 258.726 257.958 256.167 254.838 252.967 251.002 248.407 245.438 242.482 240.363 239.341 237.661 235.601 234.399 233.959 234.465 234.509 234.276 233.977 235.732 236.378 236.577 237.4 238.287 238.369 238.436 239.019 247.377 250.022 252.38 253.654 254.764 255.237 255.064 255.783 258.136 260.979 263.692 265.996 269.337 270.551 270.891 271.38 272.253 273.307 274.376 275.394 276.318 277.257 278.001 278.728 279.567 280.349 281.009 281.692 282.393 283.08 283.772 284.649 285.674 286.653 287.603 288.529 289.535 290.591 291.364 292.018 292.714 293.345 293.875 294.342 294.732 295.07 295.454 295.831 296.11 296.321 296.475 296.547 296.498 296.442 296.627 297.126 297.713 298.074 298.188 298.232 298.22 297.888 297.014 296.158 296.451 297.605 298.276 298.266 298.104 298.01 297.853 297.694 297.588 297.63 297.739 297.879 297.83 297.571 297.098 295.997 293.567 288.142 283.225 280.507 278.861 277.778 276.254 274.706 272.37 268.845 265.677 264.825 264.927 265.392 266.077 266.272 265.563 264.916 263.988 261.273 259.08 257.987 257.272 255.616 254.143 252.533 250.361 247.539 244.719 241.869 239.868 238.781 237.07 235.286 234.247 233.599 234.267 234.406 234.104 233.87 235.919 236.333 236.56 237.401 238.281 238.37 238.425 239.022 247.395 250.026 252.321 253.519 254.432 254.915 254.777 255.687 258.15 261.025 263.622 266.288 268.935 270.388 270.884 271.434 272.289 273.306 274.389 275.423 276.322 277.249 278.043 278.795 279.584 280.321 280.984 281.673 282.342 282.989 283.685 284.575 285.572 286.519 287.46 288.415 289.426 290.452 291.238 291.946 292.668 293.267 293.8 294.299 294.67 294.93 295.258 295.616 295.889 296.112 296.274 296.299 296.243 296.265 296.541 297.047 297.594 297.924 298.071 298.174 298.192 297.897 297.067 296.204 296.416 297.559 298.211 298.16 298.018 297.964 297.787 297.558 297.438 297.58 297.901 298.112 297.644 296.313 294.398 292.287 287.048 283.053 280.548 279.063 278.484 277.754 276.955 275.728 273.428 271.109 269.17 268.009 266.886 266.691 267.353 267.251 266.186 264.927 263.088 260.36 258.242 256.96 256.763 254.987 253.723 251.801 249.84 246.923 244.061 241.448 239.484 238.238 236.732 235.316 234.025 233.266 233.756 234.285 233.908 233.668 236.14 236.333 236.493 237.386 238.277 238.371 238.413 239.025 247.399 250.019 252.262 253.408 254.171 254.665 254.637 255.603 258.146 260.981 263.968 266.724 268.497 270.164 270.873 271.474 272.313 273.298 274.391 275.434 276.314 277.239 278.083 278.842 279.576 280.277 280.958 281.648 282.283 282.904 283.618 284.523 285.481 286.397 287.342 288.322 289.318 290.301 291.088 291.86 292.633 293.254 293.799 294.27 294.579 294.79 295.109 295.461 295.711 295.918 296.067 296.044 295.981 296.074 296.45 296.981 297.49 297.795 297.989 298.141 298.186 297.965 297.191 296.222 296.306 297.441 298.131 298.081 297.926 297.838 297.615 297.384 297.299 297.52 298.057 298.186 296.879 293.284 288.354 285.582 282.672 280.84 279.655 279.428 279.434 278.828 278.114 277.073 275.16 273.252 272.158 271.165 269.689 268.188 267.916 267.989 266.395 264.39 262.344 259.548 257.74 256.758 256.155 254.635 253.092 251.283 248.85 246.299 243.598 241.2 239.44 238.059 236.676 235.467 233.554 232.717 233.193 234.09 233.807 233.599 236.165 236.314 236.469 237.42 238.576 238.476 238.415 239.028 247.394 250.001 252.219 253.344 253.945 254.488 254.531 255.525 258.095 260.865 263.308 266.164 268.063 269.911 270.858 271.51 272.328 273.282 274.378 275.419 276.289 277.23 278.113 278.869 279.559 280.233 280.926 281.607 282.214 282.834 283.566 284.469 285.405 286.313 287.284 288.276 289.246 290.201 290.995 291.812 292.612 293.257 293.793 294.206 294.458 294.664 294.988 295.329 295.547 295.728 295.847 295.793 295.736 295.906 296.375 296.942 297.409 297.694 297.94 298.129 298.179 298.04 297.352 296.316 296.261 297.352 298.058 298.03 297.883 297.751 297.486 297.257 297.199 297.471 298.145 297.987 295.641 289.419 284.741 281.882 280.353 280.015 280.25 280.877 280.988 280.251 279.362 278.164 276.993 275.485 274.551 273.538 271.883 269.467 268.253 267.099 265.879 264.119 261.424 259.164 257.293 256.803 255.646 254.092 252.456 250.398 247.862 245.466 243.129 240.971 239.472 238.003 236.874 235.625 233.092 232.683 232.75 233.726 233.46 233.518 235.932 236.354 236.351 237.435 238.645 238.807 238.42 239.042 247.4 250.003 252.199 253.276 253.802 254.36 254.512 255.428 257.966 260.669 262.71 265.122 267.509 269.754 270.823 271.544 272.338 273.26 274.352 275.384 276.249 277.211 278.112 278.862 279.533 280.194 280.882 281.544 282.148 282.787 283.523 284.396 285.324 286.261 287.275 288.256 289.208 290.197 291.043 291.871 292.627 293.223 293.704 294.058 294.308 294.542 294.841 295.119 295.322 295.501 295.61 295.556 295.564 295.816 296.306 296.854 297.264 297.558 297.883 298.11 298.154 298.076 297.475 296.461 296.334 297.278 297.874 297.852 297.811 297.754 297.508 297.253 297.174 297.47 297.988 297.101 293.651 286.692 282.183 280.45 280.254 280.942 281.867 282.45 282.283 281.41 280.558 279.302 278.208 277.184 276.059 274.832 273.09 269.109 267.17 266.78 265.816 263.62 260.817 258.645 257.671 256.925 255.006 253.49 251.602 249.485 246.946 244.352 242.772 240.898 239.344 237.798 236.867 235.554 232.811 232.574 232.372 233.18 233.339 233.502 235.644 236.364 236.243 237.427 238.651 238.994 238.428 239.056 247.42 250.037 252.192 253.252 253.711 254.299 254.551 255.428 257.867 260.384 262.409 264.844 267.541 269.827 270.802 271.562 272.344 273.253 274.329 275.347 276.213 277.174 278.069 278.815 279.51 280.175 280.835 281.477 282.091 282.752 283.477 284.318 285.252 286.212 287.241 288.212 289.172 290.217 291.12 291.929 292.624 293.169 293.597 293.91 294.164 294.404 294.661 294.887 295.095 295.273 295.327 295.281 295.393 295.711 296.189 296.721 297.138 297.481 297.858 298.095 298.144 298.11 297.609 296.737 296.628 297.377 297.762 297.676 297.684 297.716 297.572 297.356 297.262 297.474 297.382 295.536 290.016 284.107 281.381 281.338 282.371 283.204 283.719 283.993 283.416 282.055 281.125 280.148 278.699 277.788 276.396 274.955 273.028 270.473 267.12 266.124 265.331 263.275 260.83 258.68 257.927 256.296 254.44 252.597 250.885 248.604 246.3 243.548 242.246 240.689 239.051 237.624 236.563 234.744 232.685 232.071 232.169 232.693 233.189 233.498 235.918 236.379 236.236 237.422 238.659 239.086 238.52 239.065 247.419 250.027 252.199 253.245 253.728 254.23 254.649 255.463 257.687 260.094 262.076 264.678 267.752 269.98 270.794 271.568 272.351 273.26 274.318 275.318 276.181 277.133 278.008 278.758 279.487 280.156 280.787 281.41 282.028 282.691 283.405 284.238 285.186 286.157 287.191 288.18 289.171 290.223 291.111 291.89 292.561 293.081 293.476 293.757 293.977 294.203 294.463 294.684 294.883 295.029 295.028 295.012 295.204 295.57 296.064 296.611 297.052 297.42 297.794 298.026 298.098 298.113 297.756 297.098 297.019 297.563 297.778 297.661 297.645 297.683 297.653 297.532 297.422 297.428 296.653 294.17 288.011 283.739 283.312 284.569 286.151 286.624 286.311 285.823 284.42 282.473 281.344 280.162 278.623 277.45 276.064 274.516 272.609 270.392 267.892 266.088 264.897 263.154 260.992 258.979 257.61 255.8 253.919 251.97 249.934 247.83 245.592 243.246 241.895 240.206 238.623 237.355 235.809 234.24 232.191 231.825 231.86 232.44 233.089 233.405 236.21 236.311 236.064 237.101 238.717 239.09 238.625 239.073 247.433 250.027 252.209 253.294 253.765 254.273 254.746 255.586 257.538 259.802 261.734 264.516 268.064 270.163 270.811 271.565 272.355 273.273 274.311 275.292 276.153 277.093 277.948 278.708 279.464 280.122 280.729 281.347 281.957 282.601 283.309 284.154 285.119 286.097 287.141 288.175 289.211 290.247 291.073 291.822 292.471 292.951 293.319 293.576 293.747 293.945 294.217 294.441 294.618 294.739 294.755 294.809 295.048 295.436 295.939 296.48 296.909 297.268 297.65 297.923 298.041 298.092 297.873 297.425 297.339 297.646 297.732 297.64 297.623 297.663 297.758 297.772 297.664 297.424 296.114 293.025 287.848 285.937 288.023 290.022 290.736 290.677 290.009 288.929 285.88 283.163 281.411 280.076 278.645 277.022 275.607 274.111 272.349 270.29 267.543 266.015 264.759 263.151 261.289 259.434 257.606 255.562 253.53 251.666 249.312 247.282 245.45 243.35 241.904 239.818 237.949 236.764 235.293 233.52 232.141 231.757 231.803 232.353 233.023 233.253 236.131 236.279 235.944 237.063 238.878 239.097 238.644 239.082 247.437 250.047 252.226 253.372 253.859 254.449 254.943 255.747 257.51 259.537 261.372 264.517 267.177 270.32 270.829 271.558 272.351 273.282 274.294 275.26 276.127 277.059 277.905 278.688 279.448 280.064 280.662 281.293 281.879 282.485 283.199 284.069 285.036 286.012 287.07 288.162 289.269 290.306 291.102 291.847 292.439 292.819 293.14 293.377 293.508 293.664 293.897 294.096 294.248 294.391 294.484 294.603 294.86 295.272 295.784 296.294 296.69 297.074 297.54 297.911 298.083 298.127 297.995 297.712 297.582 297.647 297.593 297.527 297.538 297.623 297.828 298.0 298.011 297.646 296.09 293.134 289.29 290.021 291.501 292.283 292.484 292.106 291.319 290.015 287.366 283.402 281.375 279.792 278.024 276.413 275.112 273.695 272.12 269.998 267.299 265.769 264.478 263.261 261.67 259.957 257.764 255.536 253.55 251.358 248.32 246.739 245.77 244.054 242.124 239.146 237.034 235.782 234.655 233.172 232.121 231.631 231.802 232.276 232.924 233.04 235.944 236.098 235.955 237.068 238.941 239.263 238.648 239.091 247.421 250.058 252.284 253.494 254.058 254.688 255.228 255.994 257.552 259.309 261.055 264.681 267.934 270.453 270.843 271.533 272.334 273.264 274.251 275.223 276.116 277.045 277.895 278.699 279.441 280.016 280.62 281.258 281.814 282.399 283.122 283.994 284.954 285.932 286.991 288.1 289.249 290.305 291.119 291.879 292.433 292.739 292.999 293.205 293.318 293.455 293.652 293.821 293.96 294.099 294.172 294.288 294.599 295.104 295.677 296.202 296.641 297.088 297.568 297.917 298.084 298.118 298.024 297.829 297.733 297.749 297.667 297.583 297.591 297.686 297.868 298.082 298.26 297.915 296.242 293.57 291.219 292.797 293.366 293.267 292.868 292.348 291.491 290.166 287.618 283.935 281.126 279.192 277.282 275.751 274.516 273.147 271.685 269.536 266.905 265.159 264.108 263.273 261.491 259.908 257.975 256.045 253.717 250.949 248.04 247.06 247.643 246.524 242.402 238.791 236.123 234.98 234.249 233.147 231.909 231.337 231.789 232.139 232.798 232.997 235.153 236.154 235.947 236.898 238.967 239.475 238.654 239.101 247.415 250.074 252.347 253.641 254.334 255.009 255.558 256.282 257.674 259.121 260.799 264.928 268.648 270.588 270.853 271.494 272.313 273.223 274.187 275.183 276.113 277.04 277.89 278.702 279.425 279.984 280.6 281.224 281.746 282.332 283.069 283.924 284.88 285.888 286.953 288.05 289.196 290.237 291.03 291.767 292.316 292.616 292.836 292.986 293.082 293.233 293.43 293.577 293.7 293.808 293.848 294.012 294.437 295.024 295.618 296.14 296.615 297.088 297.535 297.859 298.05 298.1 298.0 297.819 297.74 297.768 297.732 297.656 297.689 297.819 297.962 298.156 298.36 297.846 296.035 292.942 291.918 293.877 294.412 293.943 293.272 292.54 291.532 290.179 287.803 283.952 281.086 279.12 277.186 275.41 274.112 272.684 271.124 268.906 266.471 264.933 263.932 262.898 261.145 259.586 257.977 255.915 253.297 250.367 247.9 248.562 248.52 247.463 243.612 238.406 235.434 234.347 233.872 233.025 231.579 230.846 231.763 232.104 232.717 232.726 234.77 235.905 235.964 236.531 238.954 239.648 238.675 239.107 247.417 250.087 252.421 253.807 254.676 255.365 255.994 256.607 257.845 258.98 260.681 265.118 269.091 270.768 270.909 271.457 272.298 273.171 274.107 275.142 276.12 277.041 277.882 278.689 279.396 279.96 280.588 281.181 281.664 282.267 283.023 283.855 284.817 285.864 286.943 288.021 289.146 290.142 290.876 291.561 292.112 292.434 292.628 292.728 292.82 292.998 293.198 293.312 293.405 293.485 293.552 293.834 294.373 294.989 295.575 296.092 296.591 297.072 297.518 297.883 298.129 298.187 298.055 297.87 297.79 297.813 297.794 297.723 297.785 297.959 298.092 298.281 298.393 297.567 294.563 291.442 291.448 293.984 294.839 294.528 293.908 292.954 291.766 290.405 288.155 283.86 281.391 279.517 277.446 275.555 274.074 272.496 270.717 268.707 266.223 264.643 263.497 262.389 260.606 259.061 257.744 255.679 252.847 249.645 248.112 249.318 249.111 247.932 245.134 238.396 235.102 233.984 233.674 232.877 231.593 230.927 231.734 232.067 232.565 232.467 234.943 235.714 235.973 236.547 238.982 239.782 238.697 239.113 247.436 250.106 252.494 253.99 255.022 255.806 256.474 257.068 258.028 258.938 260.609 265.234 269.34 270.958 271.019 271.428 272.294 273.117 274.028 275.103 276.134 277.037 277.857 278.648 279.345 279.934 280.567 281.113 281.565 282.193 282.962 283.779 284.749 285.809 286.871 287.943 289.056 290.024 290.731 291.377 291.886 292.183 292.358 292.458 292.582 292.777 292.93 292.996 293.081 293.178 293.318 293.718 294.294 294.929 295.585 296.189 296.719 297.196 297.655 298.041 298.262 298.261 298.134 298.051 298.087 298.127 298.071 297.988 298.037 298.167 298.276 298.449 298.382 297.261 293.76 291.219 291.349 292.58 293.506 294.787 294.53 293.434 292.068 290.728 288.574 283.884 281.44 279.792 277.748 275.739 274.127 272.554 270.606 268.636 266.014 264.467 263.057 261.807 260.015 258.514 257.413 255.539 252.402 249.326 248.558 249.696 249.351 248.011 245.292 240.36 234.98 233.91 233.685 232.798 231.705 231.476 231.476 231.966 232.549 232.438 235.086 235.447 235.917 236.554 239.066 239.886 238.718 239.122 247.443 250.131 252.579 254.193 255.37 256.249 257.001 257.614 258.368 258.968 260.506 265.328 269.5 271.125 271.151 271.451 272.322 273.1 273.982 275.077 276.138 277.029 277.828 278.601 279.293 279.899 280.519 281.033 281.492 282.137 282.89 283.71 284.695 285.715 286.725 287.795 288.884 289.834 290.578 291.231 291.653 291.879 292.048 292.176 292.307 292.457 292.555 292.654 292.808 292.945 293.164 293.665 294.293 295.0 295.728 296.321 296.788 297.245 297.676 297.998 298.17 298.151 298.042 298.031 298.149 298.222 298.182 298.176 298.307 298.449 298.493 298.455 298.04 296.965 294.038 293.175 293.766 293.671 292.948 294.659 295.004 293.882 292.367 291.018 289.182 286.281 282.001 279.987 277.764 275.891 274.382 272.781 270.786 268.516 266.02 264.156 262.758 261.432 259.48 258.181 257.194 255.16 251.689 249.22 249.705 250.073 249.431 247.838 244.909 241.224 235.281 234.109 233.965 232.769 231.794 231.351 231.536 231.788 232.561 232.61 235.501 235.254 235.718 236.336 239.132 239.997 238.756 239.132 247.441 250.153 252.679 254.433 255.747 256.757 257.578 258.221 258.753 259.084 260.479 265.869 269.645 271.302 271.292 271.514 272.363 273.11 273.958 275.05 276.126 277.018 277.812 278.571 279.251 279.856 280.452 280.952 281.438 282.087 282.812 283.649 284.661 285.653 286.64 287.704 288.719 289.602 290.346 290.977 291.329 291.532 291.715 291.819 291.883 291.968 292.054 292.226 292.465 292.662 293.01 293.686 294.423 295.168 295.83 296.267 296.643 297.119 297.564 297.9 298.147 298.181 298.053 298.016 298.137 298.209 298.179 298.21 298.416 298.625 298.553 298.165 297.584 296.233 294.326 295.032 295.851 295.824 295.174 295.53 295.384 294.244 292.674 291.19 289.491 286.888 282.54 280.15 277.783 275.917 274.567 273.137 271.125 268.745 266.299 264.241 262.664 260.936 259.19 258.019 256.628 254.135 250.96 249.63 250.44 250.314 249.371 247.552 244.793 241.347 235.516 234.456 234.548 232.745 231.676 231.204 231.465 231.765 232.41 233.58 235.664 235.168 235.572 236.139 239.123 240.059 238.91 239.142 247.433 250.175 252.776 254.659 256.157 257.353 258.188 258.84 259.198 259.298 260.528 266.282 269.795 271.489 271.461 271.607 272.409 273.13 273.939 275.013 276.097 277.009 277.811 278.558 279.221 279.809 280.374 280.872 281.392 282.031 282.723 283.583 284.63 285.615 286.625 287.681 288.592 289.378 290.084 290.648 290.95 291.186 291.382 291.397 291.362 291.408 291.516 291.765 292.086 292.379 292.91 293.762 294.571 295.276 295.814 296.107 296.448 296.952 297.416 297.824 298.173 298.224 298.067 298.065 298.283 298.421 298.39 298.351 298.501 298.65 298.34 297.583 295.994 294.787 293.893 295.787 296.856 296.943 296.604 296.219 295.596 294.495 292.931 291.348 289.622 286.779 282.895 280.247 277.843 275.895 274.529 273.264 271.435 269.145 266.67 264.512 262.6 260.605 258.907 257.566 255.659 253.003 250.758 250.205 250.919 250.515 249.267 247.411 244.86 240.448 235.973 236.002 234.37 233.022 231.483 231.003 231.648 231.958 233.173 234.719 235.849 235.091 235.464 236.159 239.071 240.102 239.01 239.152 247.424 250.195 252.88 254.925 256.58 257.909 258.85 259.446 259.669 259.504 260.56 266.371 269.929 271.713 271.699 271.734 272.441 273.145 273.911 274.957 276.046 276.994 277.819 278.552 279.19 279.753 280.285 280.795 281.344 281.964 282.636 283.51 284.549 285.502 286.531 287.577 288.414 289.166 289.848 290.32 290.572 290.832 290.973 290.855 290.774 290.827 290.961 291.296 291.77 292.247 293.004 293.928 294.667 295.24 295.665 295.928 296.281 296.731 297.156 297.648 298.034 297.977 297.796 297.985 298.405 298.673 298.71 298.657 298.699 298.533 297.975 296.616 295.746 295.304 294.944 296.629 297.272 297.35 296.951 296.298 295.468 294.561 293.087 291.504 289.537 286.254 282.825 280.191 277.862 275.788 274.351 273.045 271.48 269.4 267.021 264.879 262.628 260.482 258.75 257.362 255.005 252.607 250.936 250.795 251.154 250.541 249.145 247.334 244.802 239.849 236.879 236.421 234.538 233.006 231.353 230.931 231.799 232.452 233.157 236.192 236.118 235.174 235.349 236.175 239.107 240.141 239.044 239.165 247.427 250.218 252.983 255.213 257.016 258.456 259.483 260.081 260.158 259.76 260.6 266.382 269.977 271.875 271.902 271.85 272.445 273.133 273.866 274.894 275.997 276.977 277.812 278.53 279.146 279.693 280.219 280.756 281.325 281.947 282.631 283.508 284.477 285.337 286.298 287.294 288.129 288.944 289.622 289.992 290.16 290.345 290.384 290.27 290.266 290.324 290.47 290.936 291.574 292.215 293.172 294.129 294.782 295.193 295.444 295.605 295.917 296.325 296.77 297.404 297.856 297.764 297.603 297.839 298.21 298.466 298.655 298.831 298.962 298.57 297.526 296.64 296.527 296.801 296.891 297.199 297.44 297.446 297.023 296.158 294.376 294.582 293.167 291.184 289.087 285.552 283.042 280.534 278.025 275.881 274.194 272.903 271.485 269.645 267.351 265.107 262.723 260.46 258.638 256.95 254.75 252.741 251.671 251.471 251.375 250.549 249.02 247.272 244.272 241.268 238.602 237.324 235.258 233.774 231.391 231.027 232.39 233.232 233.861 236.83 236.377 235.292 235.257 236.135 239.167 240.179 239.054 239.18 247.435 250.23 253.082 255.468 257.458 259.011 260.078 260.697 260.594 260.042 260.661 266.245 269.932 271.912 272.029 271.957 272.436 273.101 273.814 274.836 275.96 276.96 277.789 278.49 279.094 279.632 280.168 280.731 281.322 281.97 282.688 283.581 284.511 285.302 286.196 287.131 287.947 288.744 289.327 289.567 289.664 289.785 289.798 289.819 289.95 290.023 290.251 290.852 291.536 292.252 293.315 294.254 294.764 295.003 295.119 295.228 295.514 295.831 296.164 296.704 297.463 297.027 296.945 297.268 297.784 298.298 298.775 299.148 299.353 298.892 297.568 296.688 296.579 296.977 297.235 297.373 297.584 297.591 297.181 296.336 294.603 294.801 292.711 289.817 288.88 288.014 285.643 281.581 278.707 276.353 274.475 273.012 271.554 269.74 267.548 265.284 262.906 260.606 258.662 256.844 254.805 253.395 252.937 252.485 251.576 250.527 248.905 247.209 244.892 241.268 239.261 239.043 236.916 235.242 231.694 231.305 233.972 235.187 234.867 237.355 236.72 235.428 235.193 236.021 239.196 240.21 239.066 239.195 247.432 250.251 253.182 255.741 257.892 259.581 260.652 261.253 261.034 260.278 260.708 265.317 269.778 271.788 272.064 272.037 272.427 273.051 273.762 274.789 275.932 276.939 277.758 278.445 279.046 279.577 280.119 280.693 281.294 281.966 282.733 283.666 284.618 285.438 286.319 287.186 287.916 288.574 288.975 289.114 289.23 289.366 289.454 289.668 289.94 290.068 290.404 291.068 291.693 292.456 293.567 294.314 294.526 294.637 294.799 294.943 295.105 295.119 295.109 295.333 295.371 295.39 295.271 295.905 296.695 297.731 298.655 299.261 299.65 299.436 297.924 296.944 296.656 296.977 297.283 297.482 297.739 297.752 297.376 296.222 295.473 295.211 293.682 292.443 291.537 290.613 288.424 284.515 279.999 276.996 274.999 273.34 271.678 269.768 267.852 265.528 263.156 260.659 258.684 256.516 255.021 254.385 253.437 252.642 251.736 250.282 248.512 246.911 244.778 242.078 239.893 238.961 237.351 235.639 231.871 231.836 234.732 236.912 236.682 237.664 237.147 235.574 235.093 236.237 239.082 240.224 239.075 239.214 247.432 250.263 253.274 256.016 258.306 260.1 261.202 261.686 261.407 260.564 260.764 264.617 269.506 271.353 271.88 272.051 272.43 272.99 273.715 274.755 275.908 276.907 277.718 278.414 279.015 279.523 280.038 280.572 281.125 281.77 282.553 283.556 284.617 285.559 286.489 287.266 287.837 288.29 288.558 288.786 289.121 289.397 289.626 290.003 290.351 290.511 290.837 291.35 291.895 292.884 294.005 294.336 294.22 294.346 294.514 294.399 294.221 293.884 293.257 293.295 293.231 293.239 293.172 293.168 293.845 295.83 296.936 298.043 299.2 299.562 298.597 297.396 296.757 296.92 297.334 297.616 297.809 297.829 297.506 296.149 296.365 295.692 294.858 294.068 293.265 292.125 290.175 287.173 282.186 278.018 275.441 273.615 271.812 269.802 268.148 265.951 263.525 260.921 258.712 256.439 254.862 254.049 252.96 252.417 251.501 249.493 247.21 245.991 244.364 242.276 239.914 238.697 237.23 235.829 232.155 232.627 236.213 238.017 236.915 237.602 237.662 235.764 235.1 236.704 239.073 240.222 239.087 239.245 247.42 250.275 253.372 256.274 258.722 260.603 261.724 262.157 261.759 260.778 260.727 263.484 269.238 270.717 271.365 271.897 272.433 272.953 273.677 274.726 275.879 276.865 277.684 278.406 278.997 279.462 279.889 280.281 280.683 281.226 282.008 283.063 284.209 285.203 286.146 286.892 287.456 287.951 288.394 288.91 289.442 289.803 290.13 290.593 290.993 291.217 291.402 291.632 292.17 293.329 294.181 294.184 294.065 294.024 293.576 293.102 292.273 292.106 292.833 294.106 294.842 295.09 294.652 293.766 293.211 293.482 294.982 296.25 298.26 299.346 299.175 297.856 296.905 296.774 297.233 297.579 297.644 297.709 297.15 296.42 296.51 295.935 295.315 294.73 293.985 292.912 291.424 288.977 285.151 279.49 276.589 274.389 272.136 270.032 268.408 266.319 263.916 261.288 258.686 256.585 254.85 253.397 251.999 251.563 250.713 247.819 243.97 243.275 242.814 242.541 239.124 238.288 237.021 235.498 232.551 233.5 236.867 238.775 237.81 237.08 238.208 236.033 235.13 236.652 239.087 240.224 239.116 239.275 247.408 250.275 253.459 256.521 259.126 261.018 262.16 262.546 262.042 260.949 260.696 263.234 268.703 270.155 270.517 271.524 272.389 272.93 273.644 274.686 275.832 276.817 277.653 278.396 278.967 279.373 279.665 279.849 280.031 280.454 281.286 282.396 283.534 284.535 285.539 286.437 287.227 288.032 288.811 289.49 290.018 290.41 290.86 291.417 291.913 292.269 292.421 292.519 293.104 294.054 294.258 293.801 293.444 293.309 291.738 289.641 290.567 292.821 294.787 296.903 298.036 298.219 298.145 296.673 295.053 294.151 293.926 294.563 297.339 299.257 299.461 298.051 296.961 296.647 297.097 297.46 297.712 297.822 296.619 296.817 296.472 295.96 295.347 294.728 293.963 292.949 291.898 290.387 287.739 283.441 279.784 276.557 273.104 270.478 268.464 266.373 264.119 261.459 258.889 256.527 254.503 252.763 251.175 249.941 248.732 245.649 242.487 241.745 242.593 242.903 239.018 237.68 235.588 234.773 232.999 235.835 238.936 239.564 238.302 236.696 237.075 236.356 235.163 236.507 239.123 240.236 239.154 239.303 247.391 250.281 253.539 256.755 259.495 261.391 262.563 262.892 262.311 261.085 260.683 262.899 266.953 269.711 269.611 271.035 272.275 272.9 273.598 274.625 275.766 276.771 277.626 278.373 278.905 279.227 279.3 279.259 279.167 279.403 280.296 281.723 282.761 283.792 284.967 286.164 287.346 288.623 289.703 290.376 290.81 291.279 291.959 292.635 293.112 293.495 293.695 293.857 294.482 295.018 294.409 293.239 292.427 290.147 287.419 288.203 291.753 295.314 297.109 297.977 298.178 298.276 298.265 297.801 298.049 296.981 296.395 295.788 295.879 297.802 298.256 297.819 296.777 296.555 297.021 297.346 297.545 297.683 297.303 296.941 296.468 296.027 295.352 294.637 293.858 292.863 291.987 291.03 289.262 286.778 284.051 280.694 275.873 271.287 268.501 266.358 264.221 261.546 258.761 256.169 253.865 251.903 250.02 248.659 247.22 244.47 241.683 241.291 242.711 242.138 237.851 237.031 235.033 234.067 233.477 237.78 239.996 240.19 239.247 237.617 237.124 236.676 235.254 236.382 239.069 240.228 239.228 239.337 247.393 250.281 253.637 256.985 259.847 261.801 262.912 263.204 262.578 261.228 260.67 262.582 265.41 267.649 268.539 270.405 272.075 272.817 273.523 274.532 275.673 276.729 277.6 278.322 278.782 278.921 278.954 278.735 278.366 278.387 279.178 280.411 281.835 282.966 283.741 285.698 287.89 289.83 290.675 291.377 291.872 292.595 293.543 294.068 294.142 294.267 294.462 294.733 295.314 295.453 294.218 292.235 290.045 286.279 285.099 289.102 295.398 297.857 298.11 298.434 298.535 298.521 298.722 298.973 299.447 299.896 299.835 297.12 296.053 296.227 295.893 296.414 296.306 296.435 296.984 297.2 297.276 297.455 297.468 296.927 296.507 296.132 295.403 294.602 293.799 292.843 291.991 291.256 290.11 288.42 286.319 283.208 278.699 272.827 268.793 266.36 264.275 261.59 258.571 255.792 253.485 251.211 249.303 247.734 246.317 243.873 241.762 241.439 242.878 240.797 236.369 235.027 234.537 233.564 234.301 239.297 240.497 240.702 240.023 238.935 236.158 236.89 235.415 236.543 238.923 240.199 239.351 239.372 247.388 250.285 253.694 257.178 260.18 262.182 263.184 263.448 262.793 261.393 260.686 262.287 264.744 266.669 267.853 269.736 271.77 272.645 273.404 274.418 275.567 276.689 277.58 278.275 278.645 278.682 278.947 278.884 278.479 278.378 279.103 280.079 280.882 282.103 283.795 285.953 288.237 290.398 291.72 291.954 292.48 293.407 294.24 294.333 293.604 293.468 293.599 293.797 294.081 293.872 292.418 290.693 286.785 284.102 285.965 291.695 298.445 298.009 298.254 299.071 298.87 298.693 299.707 299.293 300.253 301.69 302.137 299.243 296.9 295.724 294.964 295.468 295.947 296.321 296.914 296.979 296.898 296.081 296.948 296.802 296.476 296.148 295.469 294.687 293.917 292.96 292.051 291.349 290.485 289.313 287.744 284.974 280.486 275.411 270.15 267.021 264.428 261.467 258.255 255.28 252.824 250.622 249.074 247.268 246.048 244.026 242.349 242.696 243.646 239.304 235.799 234.019 233.513 233.927 235.988 239.933 240.928 241.415 240.959 239.592 235.594 237.353 235.573 236.452 238.842 240.192 239.461 239.409 247.374 250.278 253.754 257.382 260.498 262.525 263.389 263.566 262.956 261.594 260.797 262.092 264.196 265.997 267.355 269.327 271.3 272.372 273.236 274.273 275.424 276.617 277.551 278.255 278.542 278.799 279.318 279.623 279.46 279.53 280.22 281.069 282.105 283.073 284.898 287.166 289.421 290.918 291.865 292.872 293.583 294.214 294.289 292.82 291.875 291.748 291.908 292.206 292.21 291.733 290.183 287.069 284.493 284.627 288.77 295.259 298.933 298.109 298.443 298.845 298.612 298.108 298.18 298.48 300.114 301.863 302.706 301.972 299.315 297.068 295.898 295.261 295.662 296.279 296.879 296.874 296.707 295.686 296.804 296.675 296.44 296.139 295.511 294.798 294.09 293.167 292.242 291.545 290.744 289.75 288.491 286.139 282.007 277.205 273.374 268.253 264.574 261.218 258.046 255.012 252.189 249.908 248.776 247.404 246.045 244.57 243.971 244.083 244.043 238.449 235.181 233.989 233.617 234.667 237.778 240.53 241.446 242.071 241.216 241.584 236.139 237.574 235.757 236.367 238.795 240.184 239.548 239.443 247.361 250.27 253.809 257.572 260.779 262.767 263.547 263.723 263.116 261.83 260.954 261.955 263.852 265.477 267.451 269.351 270.734 271.996 273.016 274.086 275.222 276.485 277.499 278.261 278.577 279.109 280.349 280.955 281.079 281.389 282.137 283.173 283.963 284.881 286.374 288.299 290.435 291.288 291.962 292.658 293.324 293.79 292.952 291.013 289.116 287.999 287.684 287.435 287.239 286.551 285.275 284.192 284.398 287.65 292.978 298.493 298.678 298.424 299.039 298.609 297.977 297.749 297.919 298.116 299.333 301.021 301.792 302.746 300.676 298.382 296.357 295.584 295.64 296.263 296.864 296.878 296.727 296.324 296.817 296.617 296.439 296.127 295.519 294.862 294.204 293.347 292.456 291.746 290.986 290.05 288.917 286.87 283.286 278.887 275.179 270.905 264.884 261.134 258.07 255.077 251.97 249.645 248.692 247.253 245.895 245.158 246.594 246.784 244.226 238.744 235.262 233.961 234.429 235.852 239.402 241.073 242.091 242.704 241.983 242.487 235.999 237.539 236.019 236.283 238.804 240.185 239.617 239.473 247.363 250.267 253.836 257.731 260.995 262.98 263.68 263.866 263.33 262.047 261.192 261.963 263.555 265.054 266.783 269.16 270.297 271.533 272.724 273.827 274.929 276.229 277.389 278.274 278.816 279.825 280.797 281.621 282.408 283.26 284.408 285.595 286.482 287.357 289.17 290.543 292.154 293.068 293.435 293.823 294.725 295.218 294.372 291.757 289.063 286.914 285.507 284.385 284.041 283.883 283.265 284.067 287.254 292.248 297.975 299.329 299.151 299.1 298.893 298.184 297.941 298.155 298.351 298.74 299.484 300.232 300.864 300.856 299.688 298.308 296.83 295.953 295.74 296.284 296.829 296.856 296.792 296.755 296.819 296.614 296.423 296.06 295.438 294.821 294.216 293.443 292.617 291.892 291.174 290.339 289.298 287.472 284.352 280.459 276.935 272.798 265.354 261.381 258.879 256.11 252.174 249.454 248.383 246.744 245.537 245.562 246.806 247.364 245.212 240.682 236.635 235.097 236.753 238.955 240.699 241.81 242.781 243.301 242.774 242.908 237.735 238.285 236.313 236.125 238.773 240.204 239.663 239.505 247.362 250.262 253.876 257.858 261.198 263.1 263.765 263.936 263.517 262.346 261.681 262.129 263.355 264.747 266.143 267.481 269.673 271.188 272.429 273.568 274.635 275.906 277.207 278.235 279.124 280.176 281.066 282.024 282.975 284.356 285.528 286.37 288.076 289.52 291.049 292.851 294.355 295.078 294.71 295.239 296.344 296.825 296.617 294.962 292.285 289.87 287.281 285.624 285.046 284.469 284.898 287.47 291.727 297.201 301.126 300.367 299.672 298.896 298.186 297.961 298.119 298.474 299.065 299.785 300.26 300.429 299.47 297.844 297.065 297.285 296.999 296.051 295.902 296.44 296.797 296.699 296.663 296.77 296.742 296.542 296.333 295.937 295.312 294.696 294.12 293.451 292.705 291.987 291.328 290.597 289.615 287.984 285.304 281.786 277.995 273.006 266.021 262.458 260.623 258.948 252.895 249.466 247.802 246.192 245.121 245.125 246.282 247.763 246.905 241.42 240.329 236.982 239.774 241.66 241.72 242.578 243.385 243.84 243.581 243.372 238.643 239.036 236.614 236.01 238.659 240.205 239.695 239.542 247.357 250.244 253.909 257.966 261.399 263.195 263.863 264.048 263.693 262.699 262.152 262.431 263.404 264.675 266.029 267.265 269.075 270.959 272.19 273.332 274.374 275.601 276.982 278.14 279.174 280.162 281.11 282.061 283.079 284.336 285.453 286.438 287.565 289.558 291.508 294.529 295.945 295.928 295.484 294.785 295.718 297.27 298.756 298.655 297.621 295.505 292.914 290.838 289.762 289.096 289.792 292.065 295.676 299.223 300.736 299.972 298.938 298.073 297.89 297.948 298.196 298.776 299.501 300.445 301.375 300.878 298.297 295.475 294.749 296.305 296.691 296.033 296.076 296.581 296.734 296.532 296.52 296.65 296.573 296.425 296.237 295.849 295.279 294.666 294.065 293.43 292.725 292.041 291.463 290.795 289.839 288.417 286.179 282.9 278.702 273.36 266.84 265.12 264.055 260.828 253.573 249.178 247.389 245.727 244.724 245.034 246.347 248.23 247.722 245.045 242.191 238.986 241.416 242.582 242.695 243.26 243.994 244.275 243.961 243.681 239.793 239.449 236.897 235.949 238.603 240.178 239.708 239.578 247.338 250.226 253.924 258.05 261.571 263.282 263.986 264.176 263.884 263.153 262.709 262.942 263.642 264.757 266.047 267.307 268.754 270.674 271.993 273.139 274.141 275.338 276.743 277.998 279.055 280.049 281.001 281.886 282.89 284.063 285.139 286.035 287.186 288.618 290.901 294.657 295.842 295.083 294.629 294.66 295.455 296.493 297.94 299.101 299.754 299.269 297.989 296.56 294.949 294.146 294.54 296.079 297.768 299.137 299.414 298.711 297.798 297.648 297.763 298.008 298.266 298.927 300.122 302.484 303.116 300.515 297.209 294.707 293.995 295.638 296.028 296.072 296.204 296.621 296.602 296.372 296.344 296.413 296.349 296.295 296.135 295.747 295.249 294.678 294.053 293.406 292.711 292.044 291.523 290.909 289.969 288.678 286.761 283.724 279.269 273.861 267.908 266.997 265.872 262.173 253.854 249.085 247.16 245.794 245.474 246.196 248.608 248.852 248.32 246.856 245.303 241.4 242.888 243.419 243.746 243.861 244.527 244.598 244.198 243.924 242.479 239.792 237.265 235.871 238.575 240.139 239.718 239.609 247.325 250.213 253.929 258.105 261.672 263.359 264.065 264.167 264.107 263.595 263.523 263.622 264.031 265.137 266.343 267.54 268.823 270.124 271.832 272.989 273.943 275.11 276.5 277.803 278.861 279.864 280.83 281.659 282.564 283.567 284.411 285.221 286.392 287.94 290.029 292.238 295.082 294.743 294.753 294.996 295.673 296.475 297.458 298.102 298.484 298.866 298.71 298.414 297.742 297.349 297.509 298.336 298.616 298.36 298.417 297.714 297.35 297.388 297.644 297.887 298.237 299.291 301.115 303.489 303.397 300.455 297.618 295.406 294.063 294.958 296.028 296.131 296.31 296.55 296.402 296.203 296.188 296.173 296.135 296.166 295.992 295.561 295.135 294.65 294.039 293.386 292.686 292.007 291.505 290.952 290.068 288.876 287.121 284.202 279.611 274.443 269.64 268.677 267.106 262.838 253.666 248.864 247.592 247.139 247.792 249.54 249.741 249.51 248.845 247.874 246.847 244.092 244.366 244.511 244.869 244.632 245.041 244.835 244.793 244.011 242.664 240.125 237.491 235.574 238.567 240.105 239.73 239.645 247.319 250.188 253.932 258.159 261.742 263.377 264.248 264.189 264.307 264.127 264.719 264.533 264.681 265.481 266.182 267.665 268.614 269.69 271.796 272.901 273.817 274.947 276.307 277.623 278.685 279.714 280.785 281.603 282.352 283.161 283.858 284.514 285.47 286.918 288.718 291.089 293.718 294.681 295.051 295.607 296.063 296.649 297.098 297.588 297.942 298.299 298.465 298.611 298.586 298.54 298.5 298.572 298.066 297.717 297.484 297.123 296.925 297.056 297.41 297.669 297.854 298.603 300.657 302.89 302.675 300.683 298.471 295.749 293.83 294.5 296.281 296.317 296.427 296.47 296.24 296.043 296.006 295.973 295.991 296.053 295.85 295.402 294.999 294.549 293.974 293.355 292.676 291.976 291.435 290.928 290.152 289.036 287.337 284.483 279.937 274.979 271.789 269.587 267.202 262.537 253.376 249.119 248.478 249.49 250.764 250.681 250.518 250.079 249.199 248.434 247.468 246.077 245.508 245.558 245.577 245.555 245.582 244.983 245.14 243.998 242.694 240.537 237.565 235.336 238.579 240.085 239.733 239.685 247.303 250.162 253.908 258.179 261.772 263.44 264.281 264.234 264.497 264.723 265.421 265.315 265.117 265.495 266.471 267.425 268.176 269.366 271.48 272.852 273.73 274.816 276.145 277.472 278.539 279.571 280.741 281.6 282.159 282.775 283.309 283.883 284.788 286.039 287.581 289.977 292.906 294.747 295.173 295.794 296.299 296.716 296.923 297.413 297.831 298.225 298.387 298.489 298.647 298.626 298.294 298.085 297.856 297.473 297.19 296.797 296.599 296.856 297.243 297.601 297.829 298.495 300.303 301.814 301.698 300.123 298.197 296.158 294.777 296.14 296.523 296.561 296.474 296.357 296.093 295.892 295.82 295.801 295.864 295.917 295.72 295.325 294.913 294.427 293.858 293.269 292.639 291.965 291.394 290.901 290.232 289.173 287.46 284.645 280.301 275.64 272.656 270.156 266.141 261.676 253.662 249.65 249.329 251.186 251.65 251.444 251.108 250.644 249.825 248.764 248.14 247.339 246.723 246.55 246.305 246.305 246.139 245.953 245.818 243.836 242.616 240.874 237.397 235.226 238.581 240.089 239.736 239.716 247.288 250.134 253.873 258.149 261.772 263.474 264.349 264.289 264.721 265.227 265.916 265.951 265.696 265.873 266.845 268.085 268.919 269.724 270.841 272.856 273.657 274.698 275.997 277.335 278.399 279.414 280.593 281.396 281.897 282.372 282.798 283.336 284.237 285.406 287.008 289.367 292.078 294.025 294.893 295.695 296.231 296.37 296.679 297.282 297.715 298.061 298.144 298.14 298.261 298.331 298.196 298.044 297.595 297.046 296.582 296.334 296.419 296.609 296.964 297.366 297.814 298.955 300.494 301.801 301.087 299.394 297.59 296.787 296.713 296.757 296.876 296.733 296.447 296.193 295.955 295.763 295.633 295.63 295.719 295.742 295.571 295.238 294.784 294.249 293.695 293.123 292.536 291.923 291.361 290.885 290.286 289.25 287.51 284.725 280.616 276.347 273.273 270.158 264.62 260.491 254.319 251.022 251.121 252.017 252.037 251.947 251.721 251.4 250.852 249.988 249.47 248.524 247.901 247.458 247.17 247.202 246.713 246.861 245.599 243.48 242.446 241.2 237.309 235.288 238.52 240.087 239.738 239.743 247.266 250.107 253.829 258.117 261.756 263.499 264.438 264.423 264.957 265.746 266.36 266.43 266.328 266.552 267.428 268.795 269.878 270.31 270.762 272.63 273.587 274.568 275.839 277.187 278.234 279.201 280.292 281.05 281.47 281.864 282.289 282.854 283.812 285.162 287.095 289.5 291.833 293.771 294.841 295.639 296.158 296.341 296.492 296.951 297.23 297.316 297.442 297.638 297.795 297.745 298.077 298.005 297.458 296.843 296.253 296.111 296.267 296.361 296.573 296.935 297.697 299.202 300.833 301.919 300.888 299.22 297.31 297.561 297.499 297.115 296.965 296.655 296.281 295.998 295.83 295.632 295.43 295.445 295.548 295.545 295.409 295.096 294.568 294.01 293.506 292.942 292.371 291.828 291.307 290.855 290.294 289.25 287.493 284.767 280.878 276.85 273.562 270.092 263.84 259.838 255.81 252.723 252.825 252.726 252.473 252.541 252.857 252.597 252.057 251.296 250.582 249.723 249.24 248.488 248.142 248.101 247.804 246.715 245.152 242.999 242.203 241.462 237.718 235.394 238.508 240.08 239.741 239.774 247.258 250.073 253.773 258.057 261.717 263.523 264.501 264.58 265.199 266.136 266.667 266.783 266.929 267.108 268.077 269.394 270.375 270.707 270.951 272.096 273.516 274.462 275.694 277.033 278.058 278.965 279.972 280.662 281.021 281.418 281.94 282.598 283.657 285.303 287.768 290.18 291.944 293.401 294.555 295.358 295.858 296.084 296.102 296.265 296.225 296.398 296.836 297.396 297.629 297.554 297.489 297.37 296.925 296.654 296.139 296.023 296.154 296.275 296.253 296.648 297.648 299.892 301.961 301.883 300.426 298.881 297.02 297.572 297.481 297.121 296.809 296.439 296.095 295.849 295.694 295.463 295.246 295.277 295.369 295.359 295.275 294.966 294.383 293.82 293.341 292.755 292.179 291.684 291.201 290.772 290.207 289.108 287.357 284.749 280.991 277.109 273.567 270.069 263.458 260.665 258.063 255.633 253.987 253.486 253.749 254.469 254.481 254.169 253.188 251.972 251.031 250.567 250.644 248.961 248.945 248.222 247.512 246.217 244.452 242.296 241.977 241.67 238.415 235.463 238.57 240.084 239.753 239.812 247.239 250.032 253.689 257.959 261.627 263.513 264.555 264.694 265.33 266.285 266.967 267.17 267.47 267.597 268.695 269.901 270.583 270.866 271.135 271.984 273.426 274.372 275.552 276.867 277.888 278.749 279.681 280.301 280.61 281.062 281.745 282.527 283.683 285.604 288.375 290.615 292.104 293.268 294.367 295.132 295.245 295.564 295.425 295.223 295.021 295.397 296.099 296.941 297.322 297.243 296.928 296.596 296.276 296.326 296.225 296.148 296.095 296.058 296.079 296.467 297.439 299.615 301.547 300.937 299.65 298.252 297.674 297.777 297.449 297.116 296.64 296.227 295.927 295.712 295.526 295.272 295.094 295.126 295.172 295.158 295.121 294.838 294.253 293.692 293.186 292.566 292.007 291.543 291.057 290.636 290.043 288.873 287.146 284.669 280.911 277.089 273.486 270.065 264.322 261.537 258.684 256.385 255.13 255.343 256.612 257.29 257.074 255.889 254.11 252.322 251.47 250.067 249.647 249.338 248.975 248.345 247.195 245.504 243.481 241.501 241.668 241.856 239.015 235.572 238.657 240.106 239.786 239.847 247.212 249.976 253.614 257.836 261.541 263.448 264.603 264.829 265.666 266.364 267.228 267.581 267.948 268.111 269.257 270.218 270.709 270.96 271.255 271.956 273.346 274.296 275.404 276.687 277.729 278.56 279.397 279.926 280.21 280.79 281.657 282.576 283.832 285.909 288.663 290.659 292.041 293.15 294.096 294.893 295.267 295.264 294.976 294.132 293.906 294.439 295.236 296.288 297.01 297.068 296.759 296.267 295.884 296.006 296.437 296.516 296.468 296.273 296.144 296.262 296.841 298.139 299.461 299.378 298.66 298.471 297.905 297.821 297.457 297.028 296.429 296.02 295.775 295.573 295.344 295.082 294.951 294.963 294.967 294.957 294.942 294.674 294.12 293.578 293.024 292.361 291.818 291.366 290.858 290.444 289.863 288.689 287.002 284.569 280.687 276.773 273.244 269.935 265.757 262.208 259.425 257.397 256.889 258.498 260.616 261.007 259.493 257.437 254.599 252.869 250.582 249.447 249.404 249.657 249.268 248.153 246.631 244.643 242.384 240.607 241.364 241.994 238.079 235.758 238.765 240.145 239.848 239.89 247.196 249.925 253.546 257.716 261.436 263.39 264.535 265.025 265.916 266.628 267.454 268.074 268.396 268.623 269.625 270.392 270.811 271.113 271.365 272.07 273.322 274.225 275.236 276.48 277.559 278.369 279.068 279.475 279.807 280.585 281.617 282.678 284.038 286.071 288.583 290.269 291.561 292.797 293.768 294.502 295.104 295.6 295.332 294.137 293.617 294.238 294.868 295.955 296.733 297.01 296.601 296.054 295.713 295.959 296.512 296.938 296.846 296.575 296.484 296.224 296.493 297.241 297.785 297.994 298.077 298.402 298.213 297.795 297.342 296.753 296.135 295.798 295.612 295.423 295.158 294.896 294.764 294.749 294.762 294.782 294.75 294.465 293.963 293.472 292.874 292.154 291.605 291.132 290.601 290.202 289.674 288.557 286.901 284.415 280.311 276.228 272.942 269.805 265.977 263.29 261.16 260.413 261.057 262.49 263.696 263.611 261.57 258.538 255.32 252.335 250.571 250.287 250.2 249.898 249.113 247.68 245.823 243.617 241.145 239.659 240.996 241.984 238.291 235.97 238.891 240.222 239.929 239.949 247.171 249.877 253.446 257.599 261.315 263.311 264.522 265.182 266.038 266.802 267.677 268.315 268.655 269.15 269.922 270.488 270.924 271.297 271.526 272.384 273.374 274.168 275.091 276.297 277.401 278.165 278.719 279.062 279.548 280.514 281.636 282.76 284.14 286.026 288.29 289.767 290.932 292.211 293.321 294.243 295.061 295.56 295.56 295.29 295.171 295.216 295.3 295.885 296.382 296.588 296.195 295.541 295.375 295.554 296.053 296.439 296.621 296.666 296.649 296.366 296.598 297.039 297.521 297.851 298.331 298.431 298.184 297.703 297.149 296.486 295.916 295.613 295.457 295.3 295.014 294.732 294.573 294.547 294.572 294.598 294.549 294.272 293.834 293.38 292.763 291.999 291.395 290.875 290.331 289.933 289.439 288.399 286.75 284.087 279.661 275.698 272.746 269.822 266.81 264.994 263.615 263.611 264.707 266.034 266.85 266.056 262.869 259.09 254.429 251.219 249.733 250.299 250.559 250.114 248.623 246.68 244.694 242.41 239.764 238.849 240.635 241.967 240.453 236.148 239.005 240.3 239.99 240.006 247.166 249.818 253.336 257.44 261.173 263.212 264.479 265.321 266.091 266.934 267.864 268.499 268.951 269.584 270.2 270.615 271.051 271.43 271.765 272.681 273.465 274.129 274.964 276.126 277.225 277.917 278.357 278.718 279.398 280.53 281.712 282.836 284.162 285.909 287.97 289.35 290.453 291.689 292.829 293.843 294.79 295.472 295.773 296.017 296.275 296.608 296.166 295.937 295.8 295.824 295.727 295.35 295.12 295.105 295.359 295.781 296.234 296.526 296.65 296.675 296.682 296.89 297.379 298.391 298.888 298.544 298.029 297.543 296.982 296.323 295.761 295.468 295.346 295.209 294.888 294.576 294.412 294.372 294.362 294.367 294.336 294.111 293.722 293.268 292.647 291.882 291.227 290.655 290.119 289.71 289.195 288.198 286.552 283.745 279.209 275.619 272.933 270.415 268.3 267.178 266.478 266.657 267.467 268.357 268.739 267.534 263.608 258.923 253.259 249.999 248.735 249.532 249.844 249.217 247.547 245.288 243.198 241.011 238.483 238.085 240.321 242.018 240.734 236.422 239.219 240.311 240.034 240.044 247.146 249.765 253.215 257.267 260.983 263.13 264.388 265.268 266.252 267.018 268.004 268.621 269.225 269.912 270.448 270.782 271.213 271.598 272.089 272.926 273.584 274.114 274.84 275.936 276.992 277.598 277.972 278.423 279.293 280.572 281.809 282.897 284.153 285.786 287.674 289.018 290.134 291.337 292.424 293.423 294.357 295.152 295.87 296.503 297.045 297.403 297.7 296.09 295.357 295.422 296.212 296.069 295.583 295.277 295.105 295.518 296.02 296.307 296.521 296.648 296.657 296.831 297.315 298.828 298.846 298.351 297.828 297.385 296.843 296.234 295.697 295.42 295.304 295.14 294.756 294.423 294.264 294.195 294.136 294.132 294.14 293.969 293.608 293.135 292.525 291.8 291.095 290.449 289.908 289.484 288.928 287.979 286.387 283.566 279.166 275.826 273.357 271.151 269.476 268.788 268.564 268.906 269.621 270.207 270.123 268.218 263.914 258.887 252.876 249.245 247.864 247.973 248.372 247.611 245.927 243.594 241.608 239.461 237.386 237.464 239.928 242.01 240.983 238.015 239.243 240.36 240.099 240.114 247.116 249.696 253.1 257.078 260.799 262.999 264.349 265.281 266.305 267.108 268.142 268.764 269.419 270.178 270.691 271.022 271.52 272.04 272.453 273.117 273.72 274.137 274.716 275.694 276.64 277.145 277.541 278.155 279.163 280.561 281.852 282.94 284.138 285.645 287.373 288.729 289.945 291.162 292.147 293.029 293.906 294.771 295.73 296.681 297.456 297.977 298.013 297.815 295.903 295.963 296.931 297.614 296.687 295.801 295.266 295.162 295.552 296.117 296.456 296.679 296.871 297.351 297.83 298.95 298.652 298.105 297.7 297.281 296.775 296.277 295.804 295.478 295.287 295.045 294.61 294.293 294.116 293.982 293.903 293.928 293.953 293.804 293.462 292.979 292.398 291.743 291.003 290.263 289.691 289.246 288.641 287.754 286.276 283.535 279.336 276.094 273.817 271.845 270.494 270.028 269.947 270.218 270.76 271.189 270.948 268.583 264.278 258.546 253.347 249.561 247.013 246.373 246.606 245.881 243.945 241.667 239.861 238.029 236.322 236.971 239.807 241.979 241.083 238.598 239.278 240.467 240.143 240.228 247.085 249.635 252.954 256.881 260.576 262.862 264.31 265.328 266.184 267.162 268.297 268.977 269.53 270.352 270.889 271.242 271.834 272.395 272.682 273.2 273.792 274.173 274.644 275.463 276.264 276.722 277.218 277.954 279.006 280.439 281.787 282.937 284.113 285.505 287.111 288.497 289.827 291.079 291.989 292.815 293.674 294.555 295.555 296.528 297.343 297.991 298.19 298.283 296.86 296.573 297.382 298.051 297.809 296.842 295.669 295.243 295.323 295.752 296.237 296.532 296.788 297.332 298.659 299.015 298.553 298.026 297.685 297.259 296.77 296.328 295.878 295.498 295.23 294.934 294.512 294.227 294.01 293.813 293.726 293.746 293.734 293.598 293.308 292.832 292.249 291.65 290.941 290.168 289.555 289.057 288.394 287.532 286.152 283.493 279.449 276.33 274.294 272.59 271.507 271.115 271.025 271.191 271.618 271.954 271.672 269.227 265.199 259.691 254.81 250.743 247.081 245.355 245.105 243.86 241.733 239.644 238.16 236.747 235.344 236.53 239.615 241.948 241.325 238.903 239.634 240.524 240.254 240.259 247.065 249.571 252.812 256.664 260.343 262.697 264.26 265.315 266.08 267.194 268.409 269.195 269.685 270.491 271.052 271.418 272.015 272.544 272.812 273.211 273.789 274.194 274.591 275.258 275.919 276.4 276.998 277.79 278.855 280.302 281.704 282.911 284.071 285.376 286.901 288.316 289.723 291.001 291.898 292.732 293.588 294.429 295.379 296.334 297.146 297.798 298.201 298.293 298.521 298.348 298.213 298.18 297.764 297.851 297.381 296.02 295.775 295.698 295.932 296.217 296.602 297.216 298.776 299.053 298.571 298.068 297.731 297.275 296.753 296.277 295.81 295.426 295.148 294.819 294.411 294.14 293.911 293.689 293.584 293.565 293.524 293.428 293.183 292.692 292.086 291.521 290.874 290.13 289.488 288.924 288.217 287.346 285.98 283.314 279.398 276.515 274.669 273.176 272.253 271.852 271.739 271.892 272.325 272.699 272.564 270.675 266.299 261.79 257.569 252.894 248.162 244.954 243.72 241.951 239.732 237.872 236.66 235.471 234.659 236.236 239.443 241.974 241.408 239.068 239.689 240.636 240.36 240.259 247.071 249.5 252.666 256.432 260.068 262.505 264.221 265.339 266.02 267.249 268.55 269.398 269.883 270.605 271.176 271.544 272.089 272.595 272.873 273.187 273.727 274.201 274.549 275.076 275.636 276.178 276.838 277.662 278.734 280.206 281.651 282.884 284.02 285.261 286.74 288.181 289.627 290.91 291.84 292.713 293.585 294.383 295.258 296.181 297.012 297.67 298.112 298.201 298.32 298.395 298.359 297.895 297.332 297.579 298.009 297.916 296.752 295.991 295.836 295.896 296.418 297.292 298.847 299.064 298.611 298.139 297.788 297.304 296.739 296.186 295.675 295.292 295.027 294.664 294.27 294.01 293.796 293.579 293.456 293.396 293.36 293.31 293.07 292.556 291.942 291.391 290.791 290.092 289.427 288.802 288.078 287.195 285.819 283.146 279.458 276.779 275.063 273.744 272.904 272.464 272.337 272.522 272.981 273.346 273.251 272.06 269.077 264.321 259.231 255.911 250.577 245.578 243.04 240.339 238.207 236.435 235.5 234.72 234.377 236.163 239.506 242.027 241.7 239.203 239.799 240.654 240.372 240.26 247.034 249.448 252.506 256.17 259.804 262.288 264.081 265.29 265.974 267.037 268.603 269.57 270.063 270.726 271.255 271.591 272.067 272.602 272.884 273.109 273.612 274.195 274.531 274.93 275.451 276.052 276.736 277.571 278.663 280.163 281.619 282.848 283.949 285.145 286.589 288.047 289.494 290.772 291.748 292.646 293.554 294.363 295.214 296.106 296.943 297.651 298.118 298.257 298.225 298.219 298.167 297.635 297.117 296.948 297.751 298.183 297.779 296.491 295.734 295.785 296.5 297.901 299.005 299.066 298.634 298.208 297.841 297.341 296.755 296.122 295.524 295.09 294.795 294.411 294.07 293.845 293.646 293.433 293.296 293.218 293.21 293.184 292.915 292.408 291.839 291.279 290.67 290.002 289.33 288.67 287.968 287.098 285.77 283.384 280.09 277.412 275.587 274.349 273.551 273.102 272.998 273.269 273.76 274.045 273.888 273.171 271.795 269.293 265.101 259.747 253.841 247.125 243.275 239.486 237.077 235.557 234.827 234.379 234.362 236.379 239.554 242.069 241.666 239.424 239.939 240.819 240.488 240.261 246.989 249.362 252.35 255.918 259.529 262.036 263.863 265.18 265.818 266.89 268.66 269.731 270.224 270.812 271.31 271.6 271.987 272.56 272.845 272.984 273.472 274.175 274.542 274.872 275.388 276.007 276.682 277.519 278.63 280.122 281.544 282.755 283.847 285.025 286.45 287.914 289.349 290.646 291.644 292.542 293.454 294.32 295.234 296.125 296.901 297.577 298.094 298.344 298.448 298.484 298.534 298.555 298.494 298.361 298.156 297.834 297.614 296.859 296.152 296.248 297.095 298.685 299.226 299.151 298.744 298.36 297.969 297.426 296.781 296.087 295.422 294.915 294.548 294.165 293.87 293.67 293.467 293.267 293.137 293.048 293.039 293.018 292.763 292.289 291.747 291.156 290.534 289.905 289.254 288.585 287.912 287.075 285.87 283.936 281.227 278.366 276.147 274.787 274.012 273.632 273.572 273.91 274.413 274.6 274.345 273.762 272.888 271.795 269.754 264.655 256.553 249.028 244.142 239.919 236.626 235.205 234.738 234.506 234.679 236.727 239.719 242.122 241.854 239.586 240.009 240.842 240.495 240.261 246.972 249.312 252.176 255.671 259.206 261.779 263.604 265.03 265.648 266.681 268.692 269.901 270.396 270.897 271.359 271.597 271.924 272.51 272.796 272.827 273.295 274.147 274.56 274.854 275.345 275.949 276.615 277.471 278.601 280.058 281.417 282.602 283.707 284.895 286.337 287.825 289.259 290.591 291.61 292.524 293.418 294.301 295.275 296.19 296.907 297.487 297.968 298.345 298.605 298.743 298.856 298.954 299.007 298.944 298.729 298.342 297.74 297.304 297.036 297.004 298.162 299.129 299.398 299.255 298.889 298.545 298.147 297.556 296.84 296.095 295.38 294.818 294.399 293.988 293.669 293.455 293.259 293.091 292.994 292.902 292.877 292.869 292.652 292.191 291.63 291.013 290.414 289.841 289.212 288.537 287.883 287.086 286.009 284.446 282.286 279.42 276.767 275.148 274.384 274.117 274.114 274.497 275.023 275.167 274.848 274.322 273.728 273.29 272.195 268.282 258.566 250.947 245.398 241.065 237.415 235.504 235.242 235.142 235.332 237.3 240.015 242.179 241.805 239.737 240.06 240.839 240.559 240.26 246.966 249.235 252.011 255.419 258.872 261.491 263.332 264.887 265.459 266.475 268.647 270.061 270.622 270.987 271.398 271.574 271.882 272.472 272.758 272.664 273.079 274.08 274.561 274.85 275.297 275.869 276.529 277.417 278.572 279.974 281.256 282.411 283.54 284.764 286.265 287.806 289.233 290.589 291.636 292.578 293.45 294.306 295.284 296.222 296.941 297.445 297.828 298.222 298.556 298.752 298.87 298.959 299.051 299.137 299.094 298.783 298.322 298.022 297.637 298.441 299.04 299.436 299.49 299.328 299.006 298.696 298.315 297.703 296.935 296.151 295.392 294.776 294.327 293.877 293.491 293.234 293.033 292.884 292.829 292.763 292.721 292.727 292.555 292.1 291.515 290.896 290.33 289.798 289.179 288.505 287.875 287.131 286.17 284.909 283.162 280.595 277.612 275.59 274.785 274.661 274.735 275.129 275.651 275.802 275.448 274.889 274.278 273.964 273.397 270.433 261.504 253.517 246.845 242.625 239.017 236.684 236.236 236.124 236.328 238.081 240.44 242.234 241.889 239.97 240.118 240.92 240.581 240.251 246.95 249.155 251.844 255.173 258.555 261.178 263.018 264.622 265.311 266.27 268.512 270.183 270.844 271.144 271.383 271.526 271.857 272.461 272.747 272.571 272.845 273.933 274.524 274.831 275.247 275.8 276.453 277.362 278.532 279.867 281.07 282.188 283.347 284.647 286.256 287.84 289.245 290.575 291.632 292.596 293.465 294.291 295.217 296.133 296.883 297.427 297.794 298.083 298.303 298.469 298.646 298.776 298.863 298.999 299.132 299.034 298.732 298.55 298.708 299.142 299.495 299.6 299.538 299.36 299.074 298.8 298.451 297.831 297.046 296.248 295.444 294.771 294.302 293.836 293.379 293.066 292.803 292.598 292.567 292.571 292.53 292.534 292.4 292.0 291.459 290.87 290.299 289.743 289.118 288.477 287.892 287.225 286.374 285.304 283.86 281.739 278.801 276.304 275.226 275.123 275.215 275.575 276.101 276.31 276.01 275.489 274.796 274.363 274.017 271.688 264.551 254.749 248.392 244.283 240.963 238.631 237.718 237.409 237.552 238.94 240.948 242.318 241.88 240.135 240.12 241.026 240.624 240.207 246.903 249.07 251.684 254.903 258.181 260.823 262.73 264.311 265.607 266.049 268.298 270.238 270.923 271.278 271.379 271.491 271.853 272.489 272.797 272.575 272.719 273.754 274.457 274.799 275.221 275.77 276.417 277.322 278.467 279.741 280.894 281.997 283.199 284.591 286.29 287.872 289.241 290.524 291.547 292.472 293.358 294.225 295.164 296.049 296.775 297.337 297.747 298.031 298.215 298.371 298.607 298.814 298.88 298.924 299.014 299.031 298.926 298.887 299.093 299.445 299.654 299.644 299.564 299.42 299.18 298.934 298.583 297.949 297.182 296.401 295.576 294.856 294.348 293.858 293.372 293.012 292.661 292.358 292.307 292.367 292.361 292.363 292.257 291.923 291.442 290.875 290.282 289.711 289.104 288.491 287.913 287.29 286.529 285.578 284.338 282.592 280.01 277.302 275.74 275.543 275.634 275.965 276.506 276.78 276.594 276.1 275.244 274.575 274.342 272.583 266.553 256.587 251.185 245.541 243.015 240.825 239.54 238.905 238.86 239.802 241.43 242.542 241.957 240.51 240.465 241.142 240.651 240.177 246.846 248.992 251.49 254.622 257.862 260.445 262.382 263.887 265.303 265.956 268.057 270.202 270.983 271.349 271.399 271.44 271.85 272.513 272.848 272.64 272.677 273.59 274.374 274.768 275.221 275.764 276.409 277.289 278.375 279.587 280.72 281.843 283.109 284.586 286.325 287.875 289.228 290.492 291.478 292.342 293.234 294.14 295.14 296.043 296.742 297.235 297.604 297.902 298.139 298.33 298.548 298.751 298.832 298.859 298.919 298.976 298.976 299.03 299.261 299.555 299.686 299.645 299.571 299.483 299.297 299.058 298.693 298.087 297.368 296.604 295.764 295.005 294.439 293.913 293.418 293.021 292.599 292.209 292.083 292.138 292.178 292.209 292.133 291.839 291.384 290.826 290.249 289.714 289.143 288.524 287.912 287.295 286.608 285.776 284.712 283.293 281.148 278.595 276.58 276.035 276.066 276.321 276.803 277.062 276.952 276.574 275.734 274.884 274.587 273.212 267.852 257.403 252.657 246.693 244.883 242.794 241.187 240.355 240.082 240.71 241.907 242.616 242.072 241.713 240.625 241.285 240.685 240.163 246.822 248.902 251.332 254.357 257.497 260.044 261.986 263.478 264.866 266.061 267.831 270.094 271.04 271.385 271.403 271.393 271.809 272.522 272.897 272.75 272.672 273.435 274.296 274.765 275.24 275.769 276.413 277.251 278.265 279.425 280.553 281.719 283.061 284.605 286.346 287.859 289.201 290.449 291.399 292.238 293.137 294.061 295.094 296.025 296.725 297.159 297.444 297.724 298.018 298.241 298.411 298.57 298.689 298.773 298.86 298.908 298.92 298.998 299.261 299.548 299.667 299.638 299.598 299.562 299.415 299.164 298.791 298.242 297.572 296.816 295.969 295.187 294.569 294.021 293.535 293.114 292.627 292.15 291.895 291.866 291.94 292.022 291.982 291.723 291.286 290.741 290.216 289.745 289.21 288.567 287.892 287.236 286.575 285.863 284.97 283.849 282.111 279.882 277.755 276.658 276.453 276.626 277.032 277.282 277.234 277.05 276.237 275.271 274.929 273.692 268.835 258.074 253.504 247.689 246.308 244.416 242.774 241.623 241.228 241.591 242.299 242.862 242.194 241.92 240.859 241.412 240.72 240.16 246.804 248.818 251.151 254.085 257.124 259.654 261.576 263.032 264.387 266.013 267.504 269.961 271.13 271.405 271.401 271.433 271.73 272.464 272.929 272.911 272.747 273.284 274.198 274.774 275.258 275.768 276.412 277.205 278.147 279.27 280.407 281.611 283.019 284.624 286.361 287.832 289.121 290.301 291.231 292.13 293.079 293.998 294.985 295.896 296.6 297.068 297.356 297.614 297.893 298.121 298.273 298.429 298.561 298.65 298.752 298.824 298.858 298.93 299.204 299.495 299.632 299.669 299.684 299.664 299.544 299.315 298.967 298.442 297.761 296.98 296.177 295.449 294.822 294.263 293.784 293.329 292.79 292.227 291.793 291.591 291.632 291.726 291.722 291.551 291.197 290.686 290.197 289.765 289.24 288.601 287.907 287.19 286.49 285.828 285.032 284.061 282.663 280.785 278.833 277.406 276.915 277.014 277.349 277.548 277.474 277.411 276.775 275.83 275.309 274.033 269.705 258.664 254.101 248.339 247.189 245.694 244.069 242.714 242.225 242.459 242.853 243.055 242.342 242.017 241.043 241.549 240.726 240.162 246.774 248.739 250.974 253.8 256.797 259.228 261.132 262.557 263.932 265.789 267.168 269.737 271.083 271.392 271.357 271.431 271.675 272.319 272.914 273.023 272.864 273.204 274.08 274.75 275.249 275.75 276.396 277.155 278.049 279.158 280.302 281.519 282.966 284.629 286.373 287.809 289.016 290.112 291.045 292.009 292.997 293.95 294.96 295.831 296.465 296.946 297.306 297.592 297.839 298.028 298.171 298.323 298.452 298.511 298.634 298.794 298.927 299.008 299.218 299.472 299.655 299.741 299.714 299.625 299.554 299.459 299.189 298.637 297.854 297.028 296.304 295.699 295.114 294.544 294.03 293.533 292.996 292.426 291.891 291.557 291.478 291.483 291.457 291.38 291.128 290.653 290.171 289.755 289.243 288.628 287.96 287.2 286.436 285.763 285.032 284.147 283.035 281.509 279.798 278.279 277.537 277.477 277.699 277.845 277.769 277.753 277.268 276.371 275.648 274.138 270.1 260.001 254.147 248.886 247.676 246.523 244.97 243.681 243.097 243.245 243.361 243.317 242.452 242.292 241.248 241.679 240.741 240.163 246.742 248.623 250.8 253.488 256.447 258.804 260.649 262.033 263.384 265.353 267.12 269.494 271.002 271.392 271.286 271.339 271.651 272.166 272.864 273.076 272.984 273.147 273.95 274.702 275.225 275.73 276.374 277.1 277.952 279.051 280.205 281.436 282.926 284.641 286.38 287.775 288.921 289.998 290.967 291.944 292.9 293.883 294.987 295.865 296.42 296.856 297.26 297.558 297.773 297.932 298.042 298.163 298.308 298.406 298.562 298.784 298.99 299.07 299.204 299.43 299.648 299.743 299.667 299.549 299.549 299.579 299.364 298.774 297.926 297.082 296.411 295.87 295.325 294.762 294.243 293.719 293.191 292.635 292.066 291.647 291.447 291.325 291.226 291.182 291.001 290.572 290.119 289.726 289.229 288.635 288.011 287.236 286.398 285.694 285.022 284.213 283.31 282.102 280.573 279.023 278.108 277.906 278.076 278.203 278.111 277.999 277.687 276.874 275.75 273.865 269.939 261.592 254.009 250.468 248.023 247.017 245.595 244.349 243.714 243.847 243.896 243.611 242.535 242.564 241.525 241.767 240.77 240.164 246.716 248.541 250.629 253.209 256.077 258.358 260.167 261.505 262.749 264.753 266.987 269.189 270.863 271.377 271.284 271.25 271.605 272.022 272.764 273.085 273.09 273.118 273.813 274.639 275.201 275.722 276.36 277.044 277.857 278.948 280.116 281.383 282.934 284.68 286.368 287.701 288.817 289.93 290.955 291.932 292.831 293.822 295.002 295.883 296.392 296.809 297.233 297.515 297.706 297.866 297.947 298.021 298.179 298.337 298.502 298.753 299.018 299.099 299.169 299.361 299.568 299.647 299.582 299.52 299.595 299.681 299.478 298.861 298.013 297.218 296.594 296.056 295.523 294.987 294.483 293.949 293.391 292.825 292.254 291.793 291.488 291.265 291.072 290.986 290.829 290.459 290.064 289.683 289.181 288.594 288.009 287.261 286.377 285.634 285.025 284.319 283.505 282.48 281.15 279.7 278.716 278.39 278.486 278.539 278.426 278.254 278.039 277.197 275.667 273.177 269.347 262.85 253.917 251.933 248.707 247.495 246.11 244.948 244.334 244.268 244.331 243.81 242.686 242.474 241.811 241.816 240.825 240.171 246.696 248.451 250.459 252.936 255.703 257.956 259.666 260.91 262.108 264.122 266.713 268.733 270.683 271.329 271.372 271.268 271.518 271.94 272.569 273.022 273.148 273.153 273.696 274.563 275.18 275.736 276.362 277.007 277.782 278.867 280.053 281.388 283.026 284.742 286.292 287.534 288.63 289.774 290.869 291.913 292.866 293.877 294.982 295.784 296.304 296.768 297.214 297.487 297.662 297.824 297.896 297.928 298.056 298.23 298.417 298.731 299.085 299.183 299.182 299.293 299.419 299.478 299.522 299.587 299.683 299.756 299.556 298.934 298.123 297.48 296.972 296.447 295.877 295.332 294.822 294.284 293.673 293.043 292.436 291.917 291.527 291.275 291.047 290.855 290.66 290.366 290.015 289.606 289.087 288.504 287.928 287.215 286.328 285.556 284.991 284.408 283.662 282.771 281.657 280.444 279.477 278.951 278.893 278.953 278.878 278.596 278.334 277.505 275.52 272.358 266.288 263.939 254.761 252.158 250.546 247.635 246.768 245.416 244.988 244.725 244.656 244.011 242.518 242.256 242.152 241.862 240.895 240.177 246.664 248.362 250.285 252.663 255.339 257.524 259.141 260.287 261.43 263.379 266.167 268.504 270.463 271.24 271.413 271.338 271.455 271.878 272.349 272.878 273.155 273.228 273.644 274.497 275.155 275.752 276.382 277.014 277.77 278.84 280.027 281.421 283.095 284.71 286.107 287.292 288.4 289.543 290.685 291.848 292.98 294.02 294.963 295.649 296.189 296.708 297.169 297.455 297.602 297.708 297.765 297.798 297.912 298.1 298.353 298.754 299.15 299.235 299.186 299.252 299.334 299.406 299.533 299.644 299.721 299.831 299.7 299.061 298.245 297.741 297.439 296.992 296.397 295.762 295.166 294.604 293.995 293.337 292.68 292.071 291.553 291.224 290.997 290.759 290.522 290.263 289.929 289.494 288.976 288.409 287.817 287.105 286.225 285.443 284.902 284.42 283.786 283.004 282.075 281.066 280.146 279.571 279.462 279.554 279.465 279.086 278.756 277.87 275.447 271.279 264.591 265.237 257.879 252.377 250.513 248.452 247.383 245.789 245.435 245.104 244.993 244.156 241.781 242.01 242.464 241.902 240.967 240.181 246.627 248.264 250.115 252.386 254.96 257.105 258.637 259.642 260.759 262.669 265.535 268.29 270.198 271.118 271.399 271.365 271.375 271.808 272.172 272.718 273.139 273.324 273.635 274.442 275.126 275.754 276.404 277.034 277.775 278.814 279.978 281.394 283.036 284.523 285.818 287.021 288.186 289.382 290.559 291.789 293.026 294.055 294.87 295.515 296.109 296.651 297.098 297.393 297.522 297.577 297.619 297.669 297.788 298.02 298.332 298.738 299.104 299.206 299.185 299.252 299.328 299.396 299.523 299.632 299.749 299.954 299.906 299.276 298.489 298.124 298.047 297.771 297.217 296.479 295.719 295.054 294.43 293.746 293.024 292.302 291.633 291.133 290.835 290.584 290.354 290.12 289.799 289.357 288.859 288.314 287.695 286.951 286.071 285.294 284.764 284.319 283.781 283.133 282.348 281.514 280.752 280.3 280.12 280.196 280.154 279.801 279.266 278.328 275.639 270.517 264.214 266.16 261.186 253.816 250.979 249.163 247.273 245.781 245.422 246.382 246.041 244.282 241.011 242.02 242.685 241.966 241.028 240.183 246.591 248.176 249.926 252.115 254.604 256.671 258.131 259.04 260.048 261.903 264.818 267.891 269.842 270.932 271.316 271.372 271.299 271.728 272.038 272.574 273.113 273.427 273.671 274.401 275.091 275.741 276.415 277.047 277.771 278.76 279.883 281.265 282.816 284.185 285.455 286.742 287.995 289.279 290.499 291.742 292.984 293.968 294.709 295.369 296.036 296.593 297.014 297.299 297.419 297.447 297.488 297.556 297.686 297.966 298.322 298.693 299.026 299.194 299.231 299.285 299.329 299.368 299.454 299.568 299.772 300.076 300.097 299.561 298.891 298.672 298.84 298.88 298.453 297.589 296.593 295.702 294.939 294.165 293.353 292.546 291.758 291.044 290.591 290.335 290.16 289.966 289.648 289.2 288.712 288.173 287.537 286.79 285.949 285.214 284.702 284.249 283.719 283.17 282.549 281.857 281.27 280.868 280.692 280.773 280.608 280.225 279.789 278.769 276.147 270.797 264.538 266.748 263.946 258.125 253.163 249.958 247.412 246.073 246.016 247.96 247.766 244.44 241.029 242.27 242.871 242.044 241.087 240.179 246.568 248.095 249.76 251.852 254.234 256.241 257.586 258.423 259.284 261.049 264.093 267.348 269.309 270.74 271.175 271.359 271.296 271.631 271.93 272.458 273.075 273.505 273.74 274.393 275.071 275.717 276.409 277.044 277.735 278.654 279.709 280.996 282.436 283.734 285.074 286.477 287.805 289.154 290.42 291.68 292.901 293.865 294.577 295.228 295.92 296.488 296.891 297.143 297.243 297.258 297.301 297.377 297.543 297.882 298.286 298.659 299.024 299.262 299.298 299.269 299.268 299.291 299.359 299.507 299.781 300.11 300.218 299.9 299.365 299.209 299.675 300.127 299.48 298.539 297.16 296.214 295.119 293.972 293.041 292.16 291.496 290.856 290.329 290.079 289.971 289.82 289.537 289.076 288.518 287.961 287.373 286.672 285.895 285.203 284.701 284.233 283.668 283.143 282.637 282.046 281.568 281.281 281.27 281.028 280.801 280.482 280.053 279.209 276.753 272.141 265.152 267.348 265.977 261.835 257.055 251.832 248.272 246.647 246.674 247.718 248.183 245.604 241.979 242.662 243.089 242.14 241.124 240.171 246.53 248.003 249.592 251.586 253.896 255.8 257.078 257.787 258.473 260.168 263.225 266.634 269.031 270.623 271.097 271.321 271.315 271.495 271.868 272.393 273.036 273.548 273.823 274.408 275.074 275.7 276.388 277.03 277.69 278.543 279.52 280.728 282.129 283.465 284.953 286.446 287.767 289.091 290.362 291.652 292.875 293.849 294.567 295.178 295.822 296.363 296.738 296.963 297.053 297.053 297.078 297.173 297.42 297.818 298.238 298.617 299.001 299.245 299.268 299.229 299.245 299.283 299.384 299.583 299.847 300.124 300.312 300.103 299.483 299.246 299.972 300.42 299.289 299.665 297.961 296.824 294.913 293.297 292.228 291.257 290.328 290.078 289.983 289.838 289.802 289.703 289.464 288.989 288.326 287.711 287.173 286.552 285.861 285.23 284.742 284.279 283.698 283.151 282.708 282.254 281.933 281.806 281.571 281.112 280.842 280.525 280.118 279.426 277.49 273.854 266.378 268.331 267.294 264.55 261.01 255.556 249.655 247.221 246.71 247.493 247.873 246.492 242.853 243.105 243.317 242.244 241.154 240.163 246.494 247.906 249.426 251.319 253.52 255.387 256.576 257.107 257.726 259.265 262.283 265.609 268.67 270.427 271.036 271.28 271.332 271.38 271.807 272.347 272.987 273.566 273.885 274.429 275.082 275.672 276.345 276.997 277.648 278.452 279.351 280.532 281.996 283.479 285.118 286.634 287.881 289.127 290.392 291.69 292.848 293.755 294.489 295.136 295.768 296.251 296.573 296.793 296.887 296.869 296.876 297.019 297.354 297.78 298.183 298.564 298.952 299.219 299.289 299.284 299.271 299.295 299.462 299.724 299.968 300.219 300.401 300.074 299.261 299.042 299.651 299.858 300.454 299.167 298.177 297.13 295.159 293.482 291.92 290.799 289.518 288.617 288.695 289.387 289.605 289.625 289.443 288.964 288.201 287.497 286.949 286.404 285.842 285.33 284.862 284.408 283.855 283.285 282.924 282.65 282.281 281.95 281.591 281.127 280.81 280.485 280.042 279.505 278.052 275.056 270.249 269.483 268.314 266.437 263.743 258.912 251.612 248.257 246.742 247.21 247.426 246.949 242.911 243.435 243.527 242.337 241.177 240.155 246.455 247.829 249.262 251.073 253.161 254.972 256.107 256.473 256.817 258.344 261.208 264.671 268.023 270.118 270.972 271.225 271.323 271.306 271.721 272.304 272.951 273.558 273.919 274.437 275.075 275.622 276.26 276.913 277.576 278.35 279.2 280.398 282.031 283.736 285.458 286.891 288.016 289.176 290.443 291.726 292.755 293.542 294.306 295.073 295.734 296.145 296.411 296.625 296.708 296.662 296.677 296.899 297.303 297.725 298.111 298.513 298.919 299.223 299.345 299.337 299.253 299.281 299.538 299.847 300.093 300.369 300.437 299.801 298.843 297.987 298.958 299.851 300.082 299.0 298.781 297.115 295.495 293.443 291.578 289.708 289.051 288.19 287.739 287.832 289.113 289.461 289.373 288.984 288.276 287.511 286.805 286.195 285.76 285.385 284.97 284.581 284.106 283.558 283.206 282.86 282.228 281.738 281.414 281.059 280.819 280.497 279.984 279.499 278.476 276.085 272.744 270.29 269.129 267.75 265.468 261.848 255.149 249.702 247.711 247.088 247.242 246.52 243.049 243.615 243.691 242.4 241.199 240.145 246.433 247.742 249.116 250.819 252.835 254.561 255.619 255.855 256.048 257.362 260.069 263.576 267.491 269.634 270.891 271.196 271.293 271.324 271.715 272.313 272.95 273.54 273.935 274.4 275.011 275.529 276.106 276.724 277.402 278.193 279.055 280.334 282.215 284.141 285.816 287.042 288.018 289.129 290.394 291.651 292.579 293.272 294.1 295.0 295.675 296.016 296.25 296.447 296.465 296.387 296.466 296.786 297.211 297.616 298.016 298.458 298.887 299.206 299.329 299.254 299.143 299.279 299.615 299.878 300.155 300.521 300.373 299.355 298.274 297.473 299.061 299.564 299.17 297.802 297.623 296.944 295.13 293.468 291.312 289.45 288.505 288.027 287.29 286.466 288.022 288.464 288.578 288.596 288.368 287.719 286.702 285.801 285.375 285.155 284.894 284.678 284.361 283.786 283.255 282.829 282.04 281.195 280.92 280.886 280.839 280.609 280.06 279.504 278.731 276.882 273.721 271.029 269.836 268.662 266.782 263.972 258.484 251.78 248.677 247.874 246.925 245.923 243.505 243.898 243.814 242.432 241.218 240.131 246.397 247.66 248.953 250.588 252.531 254.182 255.206 255.306 255.284 256.348 258.959 262.556 266.301 269.35 270.79 271.185 271.269 271.411 271.796 272.369 272.966 273.527 273.931 274.318 274.869 275.393 275.936 276.508 277.202 278.068 278.995 280.365 282.389 284.375 285.928 286.986 287.895 289.002 290.259 291.482 292.405 293.146 294.047 294.944 295.564 295.88 296.1 296.247 296.213 296.168 296.324 296.679 297.086 297.502 297.924 298.363 298.818 299.2 299.336 299.206 299.089 299.275 299.586 299.795 300.141 300.561 300.274 299.038 297.543 297.625 299.356 298.856 298.198 297.236 297.215 296.158 294.675 292.916 291.234 289.633 288.595 287.762 286.669 285.784 285.841 286.457 286.754 287.48 288.098 287.813 286.465 285.106 284.486 284.255 284.174 284.366 284.39 283.808 283.181 282.706 281.657 279.818 279.549 280.428 280.661 280.665 280.197 279.563 278.86 277.335 274.37 271.811 270.55 269.443 267.741 265.37 261.606 253.97 250.019 248.173 247.002 245.805 244.018 244.267 243.936 242.437 241.23 240.116 246.356 247.574 248.809 250.353 252.257 253.808 254.738 254.754 254.621 255.592 258.001 261.442 265.453 269.101 270.687 271.218 271.268 271.499 271.892 272.412 272.972 273.519 273.905 274.213 274.694 275.237 275.783 276.333 277.067 278.041 279.04 280.475 282.509 284.433 285.876 286.873 287.799 288.924 290.144 291.305 292.234 293.07 294.029 294.878 295.447 295.744 295.906 295.973 295.94 295.974 296.183 296.517 296.921 297.386 297.822 298.254 298.77 299.232 299.384 299.214 299.043 299.165 299.444 299.716 300.15 300.554 300.267 298.801 297.61 298.837 299.158 298.375 297.893 297.106 296.468 295.648 294.473 292.91 291.262 289.901 288.74 287.672 286.106 284.899 283.696 282.966 283.062 285.204 287.208 287.501 285.413 282.668 281.859 282.387 282.084 283.714 284.255 283.735 282.998 282.451 281.221 278.613 278.089 279.616 280.14 280.369 280.228 279.605 278.917 277.619 274.881 272.644 271.307 270.109 268.507 266.487 263.495 257.737 251.393 249.887 247.846 246.017 244.518 244.499 244.062 242.457 241.233 240.1 246.315 247.491 248.664 250.133 251.956 253.429 254.296 254.249 254.025 254.868 257.025 260.487 264.666 268.797 270.603 271.283 271.305 271.55 271.959 272.436 272.968 273.514 273.878 274.108 274.514 275.079 275.654 276.203 277.008 278.107 279.201 280.671 282.623 284.405 285.761 286.765 287.727 288.871 290.066 291.16 292.079 293.001 293.993 294.787 295.331 295.595 295.642 295.629 295.651 295.769 295.994 296.299 296.737 297.266 297.718 298.156 298.738 299.24 299.379 299.197 299.002 299.046 299.316 299.702 300.193 300.543 300.377 299.25 298.79 299.742 299.329 298.32 297.784 297.018 296.288 295.611 294.33 292.944 291.426 290.17 288.826 287.706 285.895 283.44 282.38 280.882 280.303 281.782 285.429 286.45 284.209 281.056 279.934 279.667 280.25 282.988 284.05 283.559 282.685 282.119 280.901 278.655 277.334 278.348 279.092 279.677 280.008 279.568 278.91 277.747 275.494 273.591 272.137 270.709 269.18 267.403 264.886 260.622 253.407 250.533 247.938 246.494 244.921 244.658 244.148 242.521 241.228 240.082 246.287 247.405 248.52 249.914 251.698 253.098 253.823 253.721 253.444 254.153 256.152 259.482 263.914 268.64 270.521 271.372 271.385 271.582 271.953 272.405 272.952 273.53 273.893 274.031 274.343 274.924 275.541 276.128 277.04 278.282 279.502 280.989 282.779 284.368 285.644 286.657 287.612 288.773 289.995 291.078 291.996 292.966 293.938 294.668 295.172 295.354 295.286 295.263 295.373 295.516 295.733 296.078 296.579 297.128 297.605 298.094 298.714 299.188 299.292 299.17 299.054 299.08 299.326 299.75 300.208 300.509 300.498 299.866 300.154 300.281 299.227 298.08 297.984 296.623 296.205 295.038 294.162 292.857 291.659 290.549 288.789 287.173 285.504 283.471 281.84 279.813 278.857 279.888 282.506 285.175 282.729 279.914 278.52 278.22 279.313 282.558 283.893 283.366 282.289 281.644 280.442 278.625 276.751 276.59 277.549 278.451 279.618 279.505 278.934 277.872 276.088 274.463 272.958 271.364 269.759 268.192 266.023 262.381 256.5 251.993 249.436 246.792 245.421 244.86 244.188 242.594 241.211 240.061 246.245 247.329 248.388 249.693 251.451 252.761 253.401 253.248 252.851 253.484 255.193 258.633 263.14 268.069 270.466 271.464 271.474 271.607 271.952 272.365 272.914 273.537 273.921 274.017 274.23 274.796 275.464 276.139 277.158 278.497 279.803 281.28 282.915 284.337 285.553 286.578 287.537 288.734 290.008 291.094 291.997 292.962 293.906 294.555 294.957 295.056 294.97 295.005 295.131 295.236 295.486 295.93 296.451 296.992 297.538 298.106 298.723 299.175 299.287 299.202 299.107 299.121 299.34 299.743 300.221 300.565 300.521 299.622 299.224 300.29 299.421 298.241 297.67 296.209 294.191 294.308 293.991 292.828 291.894 290.793 288.992 287.227 285.676 283.754 282.047 279.86 278.023 278.472 281.092 284.286 282.193 279.348 277.769 277.462 279.058 282.301 283.654 283.042 281.263 280.853 279.593 278.003 276.466 276.053 276.135 277.239 279.228 279.473 278.952 278.005 276.625 275.267 273.749 271.991 270.351 268.912 266.916 263.883 258.93 253.373 249.48 247.28 245.747 245.071 244.212 242.656 241.206 240.038 246.215 247.249 248.257 249.486 251.203 252.478 252.977 252.844 252.424 252.907 254.32 257.766 262.429 267.849 270.424 271.556 271.566 271.641 271.968 272.336 272.855 273.515 273.924 274.012 274.154 274.692 275.414 276.198 277.307 278.686 280.012 281.443 282.946 284.241 285.442 286.531 287.554 288.802 290.077 291.107 291.953 292.91 293.846 294.431 294.74 294.785 294.719 294.777 294.866 294.955 295.265 295.775 296.31 296.902 297.573 298.182 298.751 299.191 299.329 299.238 299.116 299.132 299.35 299.735 300.264 300.694 300.585 299.619 298.483 299.977 299.569 298.806 297.527 296.428 295.259 295.987 294.003 292.869 292.023 291.017 289.417 287.495 285.886 284.019 282.017 280.213 278.105 278.161 280.451 283.695 282.204 279.264 277.507 277.06 278.515 281.855 283.057 282.296 280.237 280.076 278.488 277.368 276.428 276.21 276.412 277.553 279.077 279.471 279.04 278.204 277.076 275.887 274.458 272.639 270.969 269.576 267.747 264.926 261.0 254.971 251.979 248.173 246.043 245.189 244.271 242.705 241.212 240.006 246.177 247.175 248.116 249.302 250.986 252.195 252.6 252.432 252.055 252.348 253.616 256.888 261.8 267.663 270.38 271.64 271.662 271.698 272.005 272.313 272.785 273.458 273.885 273.983 274.087 274.592 275.372 276.265 277.444 278.828 280.118 281.467 282.85 284.075 285.301 286.488 287.604 288.882 290.097 291.048 291.856 292.816 293.751 294.289 294.529 294.555 294.511 294.547 294.603 294.731 295.109 295.626 296.19 296.909 297.689 298.295 298.8 299.235 299.389 299.304 299.198 299.235 299.423 299.724 300.228 300.716 300.628 299.473 298.403 300.159 299.819 298.728 297.704 296.459 295.311 294.908 293.895 293.075 292.208 291.059 289.763 288.33 286.457 284.684 282.619 280.36 278.686 278.226 279.868 283.303 283.265 280.038 277.861 276.998 277.984 280.877 281.748 280.454 279.253 279.156 278.023 277.305 276.8 277.164 277.685 278.373 279.161 279.465 279.118 278.394 277.43 276.39 275.018 273.268 271.564 270.206 268.493 265.856 262.534 257.492 252.143 248.247 246.413 245.329 244.368 242.716 241.212 239.968 235.535 236.843 237.904 238.732 240.146 241.758 242.51 242.531 242.24 242.388 244.416 248.426 253.506 259.131 265.035 270.442 271.89 272.29 272.559 272.75 272.997 273.387 273.664 273.842 274.109 274.626 275.441 276.489 277.8 279.235 280.52 281.84 283.158 284.327 285.635 287.111 288.486 289.789 290.915 291.908 292.828 293.695 294.365 294.722 294.922 294.95 294.888 294.933 295.068 295.275 295.64 296.154 296.856 297.71 298.447 298.978 299.473 299.836 299.951 300.004 300.007 299.955 299.983 300.138 300.249 300.243 300.183 300.283 299.282 299.911 298.67 297.094 295.533 294.732 293.827 292.715 292.071 290.361 289.455 288.876 288.192 287.455 286.504 285.165 283.81 281.806 280.173 278.968 279.657 281.96 283.926 283.205 281.081 278.729 278.67 279.52 280.385 280.382 280.04 279.922 279.497 278.806 278.638 278.757 278.846 279.057 279.247 279.199 278.789 278.075 277.048 275.956 274.867 273.678 272.693 271.984 271.12 269.588 266.82 260.799 257.069 252.168 249.309 247.6 245.795 243.999 242.396 241.611 235.455 236.736 237.785 238.516 239.917 241.385 242.057 241.942 241.664 241.658 243.503 247.715 253.085 258.872 264.897 270.381 271.873 272.317 272.576 272.689 272.864 273.256 273.576 273.781 274.059 274.565 275.396 276.489 277.819 279.239 280.501 281.769 283.058 284.283 285.628 287.033 288.384 289.691 290.751 291.714 292.675 293.53 294.141 294.479 294.665 294.689 294.65 294.712 294.879 295.159 295.59 296.162 296.946 297.788 298.44 298.927 299.413 299.766 299.947 300.119 300.174 300.1 300.078 300.156 300.278 300.308 300.196 300.312 299.636 299.779 298.749 296.47 295.846 294.571 293.476 292.412 291.189 289.719 288.727 288.372 287.576 286.889 286.133 285.069 283.914 281.931 279.998 279.055 279.081 281.066 284.101 284.294 282.943 280.72 278.901 278.513 278.885 279.29 279.337 279.415 279.257 278.919 278.828 278.977 279.088 279.088 278.879 278.592 278.404 278.065 277.281 276.143 275.004 273.917 272.971 272.218 271.369 269.938 267.516 262.918 257.285 252.424 249.559 247.802 245.888 244.048 242.45 241.628 235.399 236.574 237.571 238.304 239.62 241.051 241.661 241.448 241.144 240.939 242.502 246.869 252.636 258.605 264.767 270.357 271.879 272.339 272.582 272.629 272.729 273.111 273.48 273.728 274.015 274.52 275.392 276.52 277.83 279.226 280.486 281.72 282.989 284.271 285.617 286.929 288.274 289.626 290.662 291.596 292.568 293.384 293.932 294.26 294.425 294.428 294.403 294.488 294.687 295.01 295.504 296.12 296.904 297.682 298.289 298.798 299.312 299.708 300.024 300.284 300.326 300.255 300.219 300.191 300.3 300.419 300.247 300.226 299.664 299.648 298.722 296.938 295.689 294.234 293.293 292.083 290.619 289.054 288.033 287.229 286.405 285.577 285.092 284.383 283.556 282.398 280.693 279.682 279.181 280.411 283.828 284.685 283.773 282.239 279.915 277.632 277.418 277.962 278.461 278.77 278.967 278.912 278.862 279.016 279.038 278.769 278.153 277.511 277.594 277.829 277.393 276.32 275.14 274.083 273.21 272.431 271.55 270.28 268.139 263.902 258.462 253.142 250.059 247.991 245.996 244.126 242.502 241.641 235.372 236.499 237.434 238.084 239.378 240.718 241.272 241.015 240.678 240.322 241.678 246.139 252.099 258.378 264.692 270.347 271.898 272.353 272.573 272.568 272.602 272.964 273.379 273.676 273.973 274.48 275.4 276.563 277.832 279.201 280.471 281.686 282.933 284.244 285.565 286.811 288.174 289.604 290.675 291.601 292.564 293.303 293.764 294.067 294.202 294.187 294.209 294.351 294.581 294.933 295.475 296.07 296.76 297.447 298.072 298.689 299.279 299.74 300.16 300.423 300.392 300.337 300.295 300.153 300.226 300.419 300.164 300.008 299.695 299.837 298.75 296.928 295.955 293.788 292.859 291.513 290.293 288.725 287.436 285.836 284.567 283.656 283.13 283.078 282.993 282.993 282.155 280.815 279.881 280.599 283.441 284.511 284.062 282.742 280.57 277.024 276.037 276.524 277.405 278.07 278.432 278.634 278.751 278.842 278.724 278.041 276.972 276.05 276.306 277.217 277.36 276.457 275.28 274.239 273.406 272.594 271.67 270.473 268.439 264.897 258.688 253.926 250.17 248.305 246.137 244.204 242.562 241.654 235.36 236.37 237.287 237.899 239.123 240.442 240.891 240.621 240.209 239.778 240.99 245.468 251.581 258.089 264.525 270.326 271.917 272.351 272.54 272.508 272.496 272.831 273.273 273.607 273.934 274.451 275.412 276.607 277.821 279.148 280.433 281.665 282.895 284.176 285.447 286.674 288.089 289.65 290.813 291.788 292.711 293.288 293.612 293.876 293.997 294.0 294.101 294.288 294.513 294.941 295.608 296.25 296.878 297.487 298.087 298.753 299.403 299.914 300.334 300.487 300.357 300.316 300.302 300.161 300.268 300.398 299.927 298.905 298.627 299.674 298.494 296.552 295.235 293.413 292.266 291.065 289.821 288.411 286.825 284.675 282.506 281.181 281.511 281.975 282.191 282.59 282.887 281.843 280.738 280.873 283.065 284.159 284.038 283.04 280.81 276.715 274.93 275.141 276.197 277.262 277.774 278.111 278.412 278.534 278.217 277.212 275.555 273.668 274.532 276.255 276.997 276.504 275.409 274.383 273.53 272.706 271.756 270.562 268.662 265.224 259.804 253.999 250.357 248.621 246.325 244.285 242.614 241.668 235.286 236.271 237.117 237.705 238.878 240.121 240.51 240.278 239.814 239.236 240.361 244.961 251.204 257.866 264.254 270.274 271.915 272.335 272.51 272.468 272.44 272.757 273.203 273.55 273.911 274.453 275.429 276.629 277.785 279.053 280.356 281.651 282.885 284.093 285.318 286.586 288.077 289.731 290.97 291.96 292.753 293.202 293.482 293.75 293.868 293.853 293.912 294.045 294.269 294.904 295.894 296.828 297.622 298.227 298.66 299.128 299.668 300.142 300.508 300.638 300.488 300.361 300.285 300.211 300.307 300.216 299.64 298.129 299.699 299.8 298.038 295.794 293.827 292.28 291.387 290.656 289.331 287.729 286.663 284.233 281.22 280.113 280.375 280.887 282.128 282.38 282.479 281.945 281.31 281.211 282.903 283.918 283.951 283.2 281.15 276.817 274.218 273.934 275.14 276.403 277.145 277.527 277.993 278.098 277.655 276.372 273.602 271.69 272.337 274.96 276.306 276.303 275.459 274.448 273.606 272.764 271.77 270.582 268.64 265.437 260.274 255.487 250.801 248.701 246.539 244.374 242.65 241.686 235.213 236.156 236.986 237.54 238.676 239.843 240.143 239.921 239.41 238.767 239.792 244.444 250.943 257.771 264.072 270.186 271.889 272.315 272.481 272.446 272.424 272.733 273.162 273.508 273.898 274.469 275.448 276.632 277.747 278.962 280.278 281.626 282.854 283.989 285.212 286.554 288.088 289.751 291.016 291.969 292.665 293.121 293.473 293.726 293.755 293.657 293.703 293.912 294.346 295.316 296.602 297.705 298.561 299.156 299.489 299.786 300.152 300.46 300.699 300.76 300.524 300.227 300.092 300.078 300.048 299.741 299.311 298.675 298.871 298.759 297.302 295.476 293.317 291.766 290.827 289.814 289.18 287.626 285.93 282.979 280.727 279.738 280.067 280.911 281.712 281.923 282.157 282.136 282.167 281.825 283.098 283.886 283.511 282.861 281.296 277.955 274.094 273.25 274.264 275.765 276.718 277.103 277.529 277.594 276.969 275.867 272.866 270.617 270.571 273.457 275.15 275.719 275.259 274.381 273.589 272.772 271.741 270.465 268.501 265.421 260.831 255.431 250.818 248.93 246.626 244.408 242.676 241.703 235.168 236.035 236.826 237.357 238.446 239.587 239.8 239.551 239.014 238.405 239.256 244.258 250.76 257.846 263.87 270.057 271.837 272.281 272.454 272.442 272.446 272.751 273.151 273.483 273.898 274.488 275.451 276.619 277.729 278.928 280.235 281.588 282.785 283.866 285.133 286.56 288.089 289.691 290.962 291.904 292.61 293.178 293.593 293.699 293.561 293.501 293.733 294.235 295.084 296.379 297.712 298.673 299.323 299.832 300.207 300.505 300.741 300.827 300.84 300.684 300.252 299.865 298.79 299.205 299.394 298.832 298.89 298.703 299.232 297.839 296.351 295.139 293.624 292.394 290.554 289.397 287.751 286.336 285.023 282.849 280.856 280.067 280.146 280.652 281.135 281.62 282.149 282.816 282.792 282.567 283.691 283.99 283.448 282.911 281.417 278.323 274.263 273.013 273.718 275.302 276.406 276.797 276.919 276.79 276.241 275.322 272.609 270.042 269.566 271.529 273.51 274.638 274.669 274.074 273.469 272.732 271.661 270.267 268.21 265.202 260.94 255.809 250.97 249.326 246.717 244.421 242.718 241.72 235.146 235.921 236.68 237.247 238.242 239.299 239.486 239.203 238.643 237.964 238.792 243.969 250.626 258.287 263.477 269.876 271.752 272.225 272.432 272.471 272.524 272.818 273.177 273.491 273.927 274.515 275.425 276.578 277.73 278.975 280.244 281.527 282.669 283.738 285.082 286.611 288.123 289.658 290.956 291.987 292.79 293.384 293.593 293.371 293.321 293.766 294.447 295.272 296.254 297.369 298.336 298.941 299.198 299.494 300.004 300.505 300.774 300.761 300.592 300.233 299.518 298.047 299.236 300.84 300.742 299.921 299.925 299.214 298.669 297.696 296.429 295.078 293.047 292.52 290.758 289.65 288.028 286.781 285.391 283.316 281.464 279.809 279.665 280.136 280.863 281.085 281.804 283.443 284.37 284.275 284.391 284.122 283.657 282.811 280.427 277.16 274.646 273.146 273.517 274.98 276.212 276.614 276.588 276.297 275.526 274.758 272.228 269.786 268.826 269.219 271.625 272.961 273.637 273.445 273.177 272.636 271.533 269.993 267.817 264.825 260.173 256.064 251.219 249.42 246.893 244.484 242.762 241.737 235.145 235.757 236.521 237.045 238.01 239.028 239.199 238.924 238.249 237.42 238.42 243.655 250.563 257.988 262.996 269.717 271.656 272.156 272.407 272.514 272.612 272.898 273.234 273.556 273.995 274.56 275.401 276.525 277.732 279.036 280.257 281.448 282.562 283.673 285.106 286.746 288.331 289.9 291.229 292.304 293.024 293.357 293.257 293.161 293.921 295.125 295.989 296.366 296.505 297.018 297.476 297.182 297.095 297.702 298.374 298.797 299.324 299.58 299.49 299.034 298.035 298.741 299.893 300.899 301.312 300.636 299.81 298.915 298.62 297.06 296.227 295.109 293.249 292.305 291.811 290.138 288.593 287.469 285.91 283.767 281.878 280.237 279.87 280.154 280.906 280.906 281.757 284.106 285.351 285.105 284.594 284.088 283.338 281.998 279.375 277.699 275.009 273.471 273.644 274.801 275.95 276.398 276.296 276.019 275.38 274.095 271.655 269.514 268.207 267.509 268.365 270.937 272.152 272.495 272.685 272.485 271.387 269.664 267.335 264.229 257.719 255.873 251.191 249.453 247.091 244.553 242.803 241.754 235.008 235.678 236.413 236.88 237.833 238.77 238.864 238.542 237.839 236.972 238.072 243.723 250.649 257.141 262.685 269.621 271.573 272.08 272.374 272.553 272.692 272.968 273.3 273.655 274.091 274.617 275.397 276.483 277.719 279.05 280.233 281.358 282.487 283.658 285.173 286.935 288.696 290.321 291.624 292.618 293.168 293.305 293.262 293.727 295.256 296.809 297.403 297.127 296.293 295.337 295.064 294.966 294.776 294.584 294.64 296.438 297.081 297.339 297.553 297.891 298.158 298.425 298.512 298.546 298.714 299.438 299.031 299.271 298.646 297.287 296.719 295.389 294.619 291.358 291.365 290.627 289.164 287.811 286.018 283.909 282.116 280.678 280.323 280.92 281.063 281.256 282.341 285.114 285.82 285.321 284.003 283.867 283.035 280.977 279.604 278.163 275.476 274.096 273.986 274.761 275.712 276.18 276.148 275.966 275.097 273.953 271.567 269.394 268.228 266.994 265.315 267.626 270.414 271.386 272.065 272.277 271.213 269.35 266.728 262.681 257.039 255.709 251.387 249.621 247.173 244.637 242.842 241.771 235.032 235.557 236.222 236.701 237.624 238.516 238.546 238.137 237.389 236.491 237.836 243.73 250.73 257.252 262.71 269.596 271.508 272.001 272.333 272.586 272.767 273.029 273.367 273.772 274.207 274.687 275.413 276.475 277.701 279.026 280.18 281.27 282.434 283.673 285.254 287.178 289.142 290.806 292.028 292.88 293.327 293.467 293.772 294.549 296.739 298.022 297.721 297.123 295.963 295.26 294.887 294.199 293.613 292.933 292.848 293.898 295.516 296.858 297.099 296.668 297.069 297.323 297.452 297.444 297.802 298.051 298.634 298.453 299.292 297.931 297.861 297.564 295.081 292.954 292.237 291.057 289.687 287.848 285.546 283.742 281.941 281.59 281.42 281.28 281.399 282.086 284.093 285.965 285.935 285.287 284.258 283.467 282.404 280.164 279.81 277.805 275.479 274.577 274.38 274.814 275.464 275.897 276.056 276.062 275.175 274.0 271.942 270.19 268.828 266.638 264.331 264.686 267.313 270.085 271.451 272.021 271.062 268.997 265.862 259.415 256.693 255.593 251.593 249.762 247.215 244.744 242.888 241.794 234.984 235.393 236.091 236.551 237.453 238.24 238.204 237.774 236.951 236.017 237.621 243.598 250.926 257.501 262.946 269.676 271.469 271.916 272.283 272.609 272.834 273.082 273.426 273.899 274.343 274.778 275.468 276.524 277.702 278.988 280.12 281.197 282.399 283.704 285.358 287.509 289.663 291.339 292.419 293.092 293.569 293.847 294.679 296.108 297.163 296.832 295.79 295.653 295.739 295.631 295.49 294.484 293.707 292.697 292.358 293.334 294.925 296.71 297.16 296.305 296.296 296.431 296.593 296.918 297.554 298.296 298.297 299.073 300.58 299.883 299.114 298.663 295.933 294.35 292.81 291.586 290.098 288.086 285.286 282.552 281.41 281.73 282.066 281.409 282.113 283.203 285.56 286.234 285.852 285.21 284.542 283.083 281.131 280.591 279.265 276.364 275.399 274.822 274.643 274.88 275.162 275.448 275.798 276.055 275.568 274.608 272.561 270.801 269.825 266.74 264.206 263.978 264.429 268.593 270.822 271.748 270.903 268.603 264.382 258.529 256.24 255.479 251.55 249.775 247.251 244.787 242.941 241.819 234.864 235.323 235.947 236.398 237.248 237.96 237.852 237.343 236.526 235.542 237.465 243.724 251.144 257.921 263.215 269.824 271.468 271.855 272.233 272.607 272.867 273.117 273.469 273.993 274.461 274.876 275.566 276.617 277.74 278.97 280.086 281.166 282.391 283.756 285.529 287.91 290.163 291.804 292.738 293.236 293.757 294.819 295.819 295.672 294.862 293.958 293.382 293.787 294.871 294.951 295.075 294.805 294.198 293.298 292.855 293.022 293.965 295.124 295.742 296.062 296.189 296.404 296.736 297.268 297.929 298.108 298.596 300.444 301.674 301.302 300.439 299.064 298.084 294.787 293.389 292.001 290.092 287.71 284.107 282.239 281.435 281.914 282.502 282.534 283.074 284.634 286.048 286.097 285.591 285.005 284.242 282.976 281.461 279.917 277.826 275.612 275.044 274.78 274.667 274.728 274.771 274.931 275.388 275.872 275.694 274.948 273.096 272.016 270.889 267.071 264.148 263.439 263.116 266.645 270.216 271.499 270.75 268.017 262.725 258.493 255.947 255.405 251.701 249.786 247.326 244.827 243.003 241.845 234.836 235.22 235.794 236.223 237.09 237.697 237.518 236.974 236.033 235.135 237.597 243.923 251.381 258.404 263.198 269.988 271.495 271.831 272.198 272.588 272.874 273.144 273.505 274.061 274.56 274.981 275.682 276.717 277.787 278.956 280.058 281.147 282.397 283.835 285.762 288.34 290.637 292.232 293.013 293.348 293.825 294.134 294.169 293.976 293.661 293.41 293.63 294.536 295.631 294.759 294.9 294.913 294.656 294.056 293.556 293.522 293.952 294.497 295.239 295.865 296.052 296.184 296.834 298.443 299.107 298.69 299.572 300.723 302.084 301.469 300.954 300.255 298.33 296.18 293.702 292.023 289.742 287.553 284.625 282.7 282.004 281.889 282.836 282.997 283.596 284.966 285.835 285.536 285.053 284.331 283.197 281.626 279.607 278.084 275.735 274.668 274.568 274.542 274.395 274.401 274.394 274.435 274.841 275.545 275.576 274.995 273.801 272.483 271.067 268.353 264.737 263.374 262.884 264.466 269.749 271.25 270.588 267.575 262.069 258.602 255.78 255.044 251.817 250.051 247.397 244.869 243.061 241.873 234.772 235.027 235.621 236.085 236.886 237.393 237.132 236.536 235.621 234.815 237.56 244.088 251.633 258.924 263.448 270.15 271.54 271.84 272.188 272.557 272.858 273.167 273.547 274.118 274.651 275.094 275.797 276.806 277.829 278.937 280.025 281.131 282.416 283.934 286.031 288.752 291.083 292.657 293.264 293.115 292.839 292.653 292.423 292.742 293.542 294.366 295.122 296.287 297.065 296.297 295.5 295.35 295.074 294.663 294.183 294.219 294.341 294.571 295.116 295.732 295.992 296.126 296.554 297.906 299.006 299.457 300.08 300.911 301.822 301.179 300.644 299.595 297.568 295.42 293.308 291.681 289.973 287.594 284.613 283.235 282.739 282.267 283.061 283.12 283.321 283.571 283.725 284.379 284.542 283.603 282.053 279.651 276.864 275.544 274.47 273.865 274.137 274.161 273.958 274.026 274.084 274.021 274.233 274.762 274.964 274.688 273.699 272.235 270.777 267.911 265.739 263.528 262.697 263.146 269.248 270.984 270.481 267.45 262.211 258.424 255.969 254.087 251.764 250.047 247.416 244.93 243.084 241.906 234.812 234.983 235.497 235.931 236.665 237.118 236.767 236.134 235.18 234.546 237.322 244.143 251.851 259.479 264.316 270.27 271.593 271.879 272.203 272.513 272.815 273.188 273.612 274.185 274.746 275.23 275.927 276.888 277.861 278.911 279.982 281.121 282.453 284.044 286.3 289.135 291.526 293.145 293.654 293.329 292.082 291.494 291.648 292.338 293.913 295.411 296.73 297.661 298.125 297.027 296.153 295.683 295.27 294.926 294.594 294.704 294.748 294.881 295.525 295.979 295.957 295.809 295.974 296.809 297.629 299.605 299.809 300.354 301.412 300.406 299.59 298.434 296.57 294.323 292.303 290.68 289.399 286.994 285.108 283.748 283.226 283.055 282.389 282.416 282.366 283.142 283.166 284.262 284.206 283.097 280.911 277.925 276.333 274.839 273.96 273.675 273.753 273.698 273.465 273.657 273.813 273.692 273.639 273.696 273.744 273.81 273.133 271.294 268.961 267.513 266.247 263.686 262.324 262.632 268.463 270.692 270.381 267.684 262.482 257.994 256.177 253.772 252.041 250.034 247.429 245.051 243.104 241.941 234.69 234.851 235.333 235.772 236.518 236.829 236.397 235.736 234.79 234.314 237.354 244.241 252.007 259.797 264.79 270.255 271.617 271.931 272.235 272.478 272.755 273.19 273.677 274.255 274.842 275.374 276.057 276.957 277.889 278.902 279.957 281.124 282.488 284.127 286.484 289.414 291.869 293.59 294.166 293.658 291.927 290.92 291.029 292.084 293.663 295.065 296.622 297.513 298.281 297.674 296.923 295.838 295.251 294.745 294.336 294.129 294.341 294.963 295.651 295.996 295.775 295.766 295.815 297.051 298.619 300.057 300.257 301.159 301.229 300.206 298.302 296.722 295.685 293.292 291.669 289.441 288.85 286.974 285.274 283.931 283.292 283.055 282.945 282.976 282.32 283.157 283.62 284.532 283.965 282.874 281.25 278.774 277.564 275.167 274.201 273.77 273.553 273.246 273.023 273.444 273.677 273.455 273.067 272.853 272.697 272.689 272.029 270.611 268.966 267.444 265.988 263.671 262.209 262.598 267.354 270.386 270.29 267.844 262.974 257.876 256.605 253.677 252.36 250.161 247.437 245.197 243.124 241.977 234.69 234.705 235.209 235.635 236.282 236.602 236.007 235.302 234.438 234.115 237.343 244.268 252.031 259.985 264.978 270.135 271.616 271.985 272.284 272.463 272.697 273.178 273.728 274.323 274.942 275.52 276.184 277.022 277.925 278.919 279.953 281.136 282.518 284.165 286.547 289.577 292.088 293.905 294.634 294.211 292.047 290.612 290.338 290.974 292.468 294.142 295.949 296.855 297.633 298.221 297.618 296.079 295.147 294.527 294.152 293.716 293.783 294.409 295.202 295.629 295.667 295.545 295.71 297.284 298.659 299.378 301.187 301.824 301.277 300.117 298.345 296.555 294.264 292.643 291.434 289.162 288.284 287.363 285.744 284.241 283.431 282.938 282.18 282.373 282.466 283.544 284.366 284.695 283.94 282.243 281.053 279.287 277.704 275.934 274.585 274.007 273.464 272.869 272.968 273.463 273.564 273.252 272.683 272.181 271.766 271.221 271.007 269.988 268.097 266.843 265.506 263.671 262.229 262.883 267.214 270.114 270.167 268.082 263.372 258.613 256.984 253.936 252.376 250.288 247.511 245.239 243.151 242.009 234.653 234.675 235.054 235.427 236.114 236.299 235.59 234.881 234.104 233.996 237.284 244.215 251.889 260.044 264.912 269.944 271.6 272.03 272.337 272.467 272.648 273.153 273.764 274.389 275.046 275.658 276.302 277.082 277.97 278.957 279.967 281.154 282.541 284.162 286.48 289.609 292.171 294.062 295.001 294.758 292.629 290.628 289.465 289.811 290.816 293.428 295.138 297.053 297.259 297.608 297.756 297.21 295.392 294.572 293.916 293.431 293.52 294.119 294.764 295.09 295.009 294.614 294.842 295.927 297.106 298.142 300.796 301.534 301.366 300.543 298.897 296.651 294.778 293.236 292.251 290.938 288.962 287.977 286.403 284.581 283.623 282.771 282.582 282.444 283.401 283.619 284.676 284.877 283.881 282.213 280.214 277.982 276.76 275.644 275.036 274.436 273.704 273.202 273.174 273.545 273.487 273.031 272.315 271.636 270.928 270.288 269.982 269.152 267.362 266.209 265.088 263.393 262.213 262.707 266.873 269.88 270.041 268.203 264.029 259.351 257.184 254.149 252.718 250.248 247.505 245.251 243.204 242.02 234.511 234.546 234.87 235.276 235.889 236.001 235.256 234.431 233.766 233.897 237.426 244.053 251.618 258.61 264.579 269.612 271.598 272.072 272.382 272.501 272.625 273.111 273.776 274.456 275.15 275.786 276.411 277.139 278.019 279.011 279.994 281.178 282.565 284.134 286.32 289.47 292.079 294.022 295.226 295.453 294.294 291.439 289.612 289.398 290.314 291.929 294.107 296.329 297.341 296.727 297.665 297.743 296.186 294.892 293.873 293.234 293.077 293.449 294.208 294.315 293.852 293.412 293.147 293.883 295.534 297.667 299.865 301.436 301.65 300.836 300.447 297.828 295.993 294.25 293.344 291.42 290.154 288.877 287.46 285.569 284.547 284.027 284.136 283.713 283.347 283.619 285.091 285.096 283.91 281.673 278.329 275.217 275.014 275.919 276.195 275.261 274.266 273.577 273.431 273.482 273.25 272.816 272.036 271.186 270.04 269.558 269.067 268.515 266.989 265.864 264.919 263.32 262.084 262.919 266.413 269.717 269.908 268.306 264.676 260.066 257.156 254.531 253.003 250.251 247.492 245.26 243.283 242.025 234.512 234.376 234.757 235.095 235.677 235.745 234.813 233.989 233.484 233.781 237.043 243.803 251.234 258.146 264.825 269.261 271.639 272.125 272.399 272.538 272.641 273.067 273.751 274.488 275.221 275.867 276.482 277.184 278.054 279.043 280.01 281.188 282.591 284.132 286.199 289.213 291.851 293.803 295.133 295.78 295.309 293.859 291.196 290.224 290.413 291.978 294.742 297.115 297.948 297.521 297.584 298.089 296.891 295.098 294.249 293.426 292.88 293.193 293.491 293.39 293.176 292.831 292.492 293.276 295.606 297.074 299.41 301.054 302.088 302.399 301.531 298.556 297.943 295.184 294.164 292.267 291.23 290.124 288.882 287.394 285.925 284.98 284.766 284.026 283.425 283.688 285.258 285.341 284.043 281.309 276.103 273.254 273.503 276.1 277.057 276.684 274.85 273.957 273.489 273.279 272.937 272.574 271.709 270.728 269.687 269.012 268.385 267.86 266.804 265.622 264.725 263.322 262.232 262.946 266.755 269.599 269.775 268.298 265.012 260.684 257.293 255.047 253.055 250.337 247.476 245.267 243.386 242.032 234.439 234.374 234.597 234.911 235.458 235.351 234.395 233.559 233.07 233.593 237.039 243.42 250.715 257.659 264.413 268.848 271.711 272.198 272.404 272.567 272.668 273.021 273.702 274.485 275.265 275.923 276.539 277.222 278.066 279.033 279.99 281.182 282.608 284.153 286.11 288.901 291.546 293.438 294.718 295.611 295.861 295.371 294.491 292.58 292.284 293.657 295.977 298.269 299.03 298.244 297.977 297.763 297.135 295.391 294.312 293.579 292.994 292.767 292.953 293.261 293.01 292.508 292.432 292.833 294.591 297.045 298.852 300.146 302.604 303.245 302.504 300.952 299.159 296.601 295.456 294.105 292.279 291.121 289.764 288.34 287.338 285.978 285.107 284.096 283.367 283.465 285.162 285.575 284.229 281.046 276.158 271.833 272.163 275.791 277.444 277.315 275.839 274.0 273.26 272.844 272.395 272.091 271.427 270.422 269.38 268.617 268.065 267.568 266.599 265.432 264.467 263.278 262.515 262.924 267.575 269.544 269.652 268.255 265.335 260.908 257.573 255.668 253.24 250.306 247.539 245.271 243.527 242.041 234.407 234.207 234.398 234.693 235.164 235.043 233.955 233.083 232.669 233.304 236.545 242.955 250.144 257.076 264.432 268.264 271.796 272.298 272.408 272.581 272.7 272.981 273.642 274.461 275.283 275.964 276.596 277.254 278.054 278.987 279.94 281.156 282.607 284.168 286.029 288.575 291.176 292.968 294.07 294.975 295.748 296.113 295.914 295.759 294.994 295.751 297.294 298.747 298.913 298.705 298.177 297.65 297.247 295.689 294.487 293.724 293.136 292.766 292.766 292.915 292.951 292.757 292.259 292.158 293.763 296.021 298.198 300.323 301.851 303.34 302.533 301.366 300.438 298.144 297.53 295.639 293.658 291.609 289.979 288.703 287.481 286.706 285.613 284.339 282.83 282.747 285.053 285.515 284.254 280.693 275.915 271.054 270.942 274.545 277.447 277.482 275.883 273.804 273.03 272.357 271.896 271.566 271.004 270.109 269.104 268.408 267.767 267.144 266.171 265.16 264.258 263.308 262.615 264.346 267.948 269.532 269.536 268.152 265.357 261.27 257.944 256.139 253.314 250.231 247.564 245.38 243.594 242.049 234.476 234.151 234.294 234.559 234.913 234.659 233.493 232.628 232.274 233.007 236.184 242.45 249.525 256.4 263.335 267.739 271.853 272.421 272.43 272.579 272.721 272.952 273.571 274.418 275.266 275.991 276.659 277.29 278.024 278.924 279.891 281.121 282.572 284.135 285.966 288.315 290.794 292.453 293.344 294.05 294.889 295.833 296.563 296.949 297.33 297.877 297.986 298.484 298.885 298.486 297.98 297.983 297.611 295.987 294.557 293.883 293.412 293.252 293.002 292.908 292.782 292.668 292.203 291.886 293.858 296.732 298.662 298.936 300.412 301.678 301.043 302.055 301.706 300.702 299.016 296.87 294.572 291.889 290.32 289.371 288.584 287.629 287.116 284.943 282.534 282.515 284.118 284.849 283.779 280.444 275.138 270.854 270.005 273.855 277.409 277.539 275.478 273.651 272.824 272.252 271.561 271.085 270.643 269.718 268.713 267.98 267.372 266.722 265.79 264.782 263.982 263.318 262.576 265.606 268.256 269.532 269.413 268.009 265.376 261.434 258.544 256.431 253.355 250.295 247.536 245.389 243.601 242.056 234.364 233.964 234.123 234.368 234.634 234.235 233.071 232.176 231.883 232.693 235.777 241.888 248.856 255.657 262.292 267.307 271.797 272.518 272.468 272.569 272.728 272.945 273.528 274.371 275.218 275.989 276.704 277.319 278.01 278.915 279.905 281.119 282.538 284.076 285.956 288.271 290.631 292.142 292.918 293.503 294.157 295.053 296.188 297.102 297.813 298.412 298.666 298.972 299.11 299.138 298.209 298.065 297.999 296.081 294.792 294.373 294.114 293.988 293.653 293.194 292.781 292.426 292.334 292.396 295.115 297.157 298.383 299.014 298.511 298.201 299.252 299.549 301.089 300.493 298.71 296.793 294.742 292.926 291.459 290.249 290.237 289.476 288.439 285.849 282.138 281.437 282.284 282.834 282.673 279.987 274.809 270.814 270.395 274.344 277.55 277.63 275.179 273.553 272.766 272.12 271.283 270.716 270.175 269.219 268.256 267.576 266.859 266.173 265.354 264.5 263.926 263.158 262.745 265.478 268.286 269.489 269.242 267.827 265.272 262.057 258.888 256.619 253.375 250.335 247.503 245.381 243.605 242.062 234.285 233.919 234.008 234.172 234.341 233.861 232.651 231.713 231.494 232.373 235.351 241.251 248.06 254.867 260.485 266.656 271.62 272.567 272.51 272.562 272.729 272.957 273.509 274.317 275.145 275.952 276.718 277.339 278.025 278.963 279.971 281.162 282.539 284.016 285.94 288.325 290.621 291.974 292.672 293.245 293.853 294.663 295.78 296.838 297.706 298.432 298.965 299.36 299.669 299.723 299.306 298.322 297.587 296.355 295.555 295.444 295.415 295.019 294.653 294.317 293.639 293.457 293.672 294.805 296.078 297.831 298.226 297.605 296.276 294.647 295.786 296.978 298.148 298.062 296.929 295.654 294.765 293.294 292.431 291.848 291.229 290.115 287.779 284.143 280.671 279.829 279.919 279.988 279.316 277.614 274.41 270.955 270.859 275.34 277.741 277.62 275.496 273.45 272.719 271.976 270.88 270.352 269.805 268.802 267.816 267.04 266.297 265.734 264.796 263.939 264.076 263.256 262.527 265.78 268.198 269.319 269.014 267.617 265.276 262.417 259.434 256.68 253.313 250.292 247.508 245.371 243.607 242.068 234.202 233.765 233.848 233.955 234.0 233.408 232.173 231.268 231.132 232.037 234.934 240.644 247.297 253.964 259.524 265.865 271.312 272.561 272.559 272.567 272.734 272.984 273.506 274.251 275.046 275.887 276.703 277.348 278.063 279.044 280.064 281.237 282.584 283.971 285.911 288.409 290.661 291.871 292.503 293.113 293.791 294.624 295.694 296.683 297.521 298.265 298.848 299.257 299.682 300.025 299.972 299.16 297.734 296.864 296.482 296.495 296.624 296.303 296.193 295.987 295.685 296.021 296.014 295.854 296.512 297.437 298.583 297.4 295.126 292.942 292.368 293.107 294.304 294.997 295.105 295.208 294.67 294.47 293.532 292.398 291.209 289.148 285.503 281.97 279.802 279.083 279.265 278.669 278.456 277.215 274.335 270.052 270.518 275.525 277.583 277.259 274.987 273.345 272.643 271.761 270.767 270.094 269.404 268.416 267.457 266.752 266.256 265.462 264.51 263.71 263.849 263.028 262.664 265.756 267.911 269.003 268.718 267.396 265.265 262.631 259.705 256.798 253.323 250.239 247.518 245.357 243.608 242.072 234.196 233.758 233.676 233.701 233.687 233.025 231.733 230.887 230.82 231.713 234.461 239.869 246.399 252.958 259.56 264.865 270.756 272.464 272.614 272.598 272.77 273.033 273.499 274.158 274.921 275.8 276.68 277.363 278.118 279.146 280.183 281.345 282.688 283.985 285.917 288.455 290.661 291.761 292.336 292.984 293.781 294.728 295.815 296.776 297.644 298.464 299.144 299.619 300.058 300.456 300.527 300.159 298.734 297.787 297.516 297.547 297.859 298.027 298.139 298.968 298.591 298.304 297.551 297.324 297.685 298.559 298.302 297.426 295.562 293.366 292.068 291.893 292.651 293.271 294.713 295.172 295.257 294.659 293.638 292.076 289.942 287.302 284.245 281.105 279.376 279.139 279.001 278.792 278.812 277.727 274.376 268.657 269.08 274.497 276.619 276.11 274.247 273.17 272.51 271.478 270.68 270.057 269.231 268.163 267.291 266.666 265.999 265.16 263.992 263.372 263.483 262.886 262.874 265.242 267.323 268.466 268.33 267.124 265.213 262.852 259.826 256.748 253.296 250.271 247.493 245.346 243.606 242.076 234.182 233.592 233.519 233.54 233.37 232.537 231.298 230.525 230.55 231.44 234.09 239.135 245.389 251.84 258.816 263.933 269.982 272.285 272.659 272.659 272.837 273.09 273.484 274.073 274.834 275.748 276.686 277.399 278.174 279.227 280.278 281.441 282.806 284.104 285.977 288.498 290.621 291.65 292.209 292.856 293.694 294.727 295.885 296.905 297.87 298.779 299.574 300.175 300.599 300.785 300.735 300.5 300.047 299.225 299.025 298.962 299.321 299.88 300.081 299.982 299.687 299.475 299.054 298.72 299.186 300.575 300.642 299.102 296.534 294.538 293.231 292.481 293.486 294.979 295.609 295.643 295.3 294.363 292.986 290.893 288.648 285.888 283.329 280.995 279.78 280.044 280.039 279.98 279.569 278.353 274.082 267.165 267.665 272.615 274.884 274.634 273.852 273.203 272.515 271.38 270.524 269.824 268.838 267.811 266.974 266.35 265.552 264.793 263.633 262.926 263.084 262.743 263.14 264.236 266.445 267.767 267.815 266.791 265.093 262.858 260.076 256.613 253.128 250.226 247.451 245.32 243.603 242.079 234.14 233.539 233.391 233.292 233.022 232.13 230.869 230.197 230.319 231.231 233.711 238.338 244.293 250.717 257.32 263.159 269.039 272.043 272.691 272.728 272.905 273.143 273.473 274.023 274.811 275.753 276.722 277.475 278.25 279.28 280.335 281.504 282.926 284.327 286.164 288.657 290.599 291.538 292.136 292.833 293.689 294.738 295.935 297.008 298.009 298.881 299.567 300.111 300.535 300.684 300.643 300.575 300.464 300.306 300.182 300.092 300.085 300.237 300.357 300.209 299.912 299.732 299.686 300.034 301.213 303.288 302.338 300.574 298.602 296.59 294.908 294.538 295.701 296.586 296.043 295.571 294.885 293.319 291.202 289.495 287.329 285.482 283.571 281.661 280.917 281.194 281.023 280.88 280.467 278.116 273.266 265.899 266.45 269.622 272.514 273.461 273.596 273.275 272.392 271.117 270.182 269.372 268.275 267.256 266.589 265.982 265.181 264.408 263.323 262.555 262.778 262.193 262.433 263.236 265.233 266.824 267.139 266.341 264.821 262.856 259.998 256.526 252.992 250.139 247.42 245.272 243.606 242.082 234.184 233.406 233.246 233.098 232.71 231.677 230.429 229.937 230.152 231.089 233.402 237.553 243.152 249.493 255.657 262.443 267.892 271.721 272.706 272.802 272.971 273.189 273.471 274.018 274.858 275.803 276.796 277.578 278.32 279.294 280.342 281.542 283.074 284.646 286.585 288.973 290.596 291.434 292.126 292.921 293.791 294.826 296.018 297.09 298.055 298.782 298.991 298.877 299.204 299.946 300.128 300.326 300.541 300.641 300.601 300.391 300.169 300.123 300.172 300.084 299.806 299.492 299.336 299.627 300.806 303.122 302.753 301.286 299.581 297.742 295.994 295.428 296.567 296.731 296.074 294.782 293.466 291.985 290.177 288.478 287.14 285.837 284.302 282.75 282.655 282.523 282.055 281.224 280.074 276.879 271.474 265.364 265.465 267.598 271.177 273.002 273.404 273.104 272.244 270.849 269.752 268.725 267.522 266.624 266.244 265.627 264.876 263.886 262.717 262.266 262.275 261.886 261.767 262.282 263.82 265.639 266.294 265.736 264.47 262.724 259.851 256.273 252.931 250.079 247.382 245.25 243.717 242.086 234.133 233.38 233.087 232.908 232.377 231.299 230.056 229.672 230.029 231.041 233.12 236.83 242.017 248.209 254.33 260.91 266.512 271.23 272.685 272.879 273.033 273.232 273.492 274.072 274.977 275.929 276.901 277.672 278.371 279.269 280.297 281.558 283.274 285.124 287.301 289.385 290.602 291.355 292.165 293.065 293.946 294.954 296.09 297.09 297.944 298.452 298.002 297.317 297.277 297.64 298.022 298.466 299.694 300.575 300.655 300.406 300.097 299.971 300.022 300.048 299.789 299.287 298.867 298.923 299.579 300.955 301.772 301.032 299.954 298.311 296.609 295.866 295.888 296.011 294.485 292.997 291.708 290.955 290.517 288.998 287.672 286.014 285.005 284.149 283.7 283.859 283.077 280.939 278.664 275.039 269.618 265.64 265.842 267.788 271.73 273.354 273.582 272.97 271.961 270.434 269.326 268.164 266.978 266.222 265.952 265.422 264.672 263.535 262.539 261.91 261.568 261.362 261.293 261.372 261.976 264.013 265.217 264.968 264.014 262.483 259.683 255.959 252.768 249.98 247.307 245.229 243.825 242.107 234.071 233.28 232.859 232.662 232.038 230.857 229.668 229.43 229.964 231.069 232.972 236.086 240.904 246.924 253.002 260.232 265.49 270.618 272.61 272.929 273.076 273.279 273.55 274.168 275.114 276.044 276.95 277.706 278.39 279.244 280.254 281.562 283.461 285.596 287.9 289.658 290.595 291.316 292.193 293.126 294.019 295.017 296.085 296.971 297.703 298.14 297.847 297.057 296.261 296.111 296.637 297.521 298.606 300.05 300.345 300.246 300.109 300.06 300.089 300.129 299.963 299.575 299.178 298.948 299.065 299.56 300.289 300.589 299.541 298.033 296.257 295.423 295.222 294.989 293.657 292.734 291.59 291.406 291.075 289.906 288.582 287.115 285.943 285.081 285.588 283.874 282.789 279.771 276.45 272.879 268.226 267.364 269.227 271.445 273.326 275.162 274.493 273.097 271.708 270.178 268.917 267.667 266.549 266.037 265.658 265.037 264.324 263.235 262.332 261.592 261.041 260.81 260.938 260.502 260.419 261.96 263.728 263.946 263.393 262.191 259.369 255.66 252.58 249.82 247.216 245.206 243.837 242.329 233.997 233.155 232.77 232.482 231.719 230.47 229.323 229.241 229.964 231.205 232.919 235.579 239.676 245.674 251.699 259.191 264.742 269.924 272.508 272.967 273.108 273.333 273.63 274.274 275.225 276.11 276.95 277.695 278.389 279.239 280.248 281.583 283.605 285.943 288.283 289.8 290.573 291.283 292.189 293.142 294.089 295.088 296.057 296.823 297.485 297.959 297.985 297.522 296.675 296.046 296.25 296.97 297.801 298.938 299.72 300.1 300.157 300.158 300.151 300.188 300.099 299.833 299.514 299.186 298.947 299.065 299.373 299.725 299.166 297.642 296.044 295.035 294.996 294.775 293.746 292.798 292.057 292.328 292.295 291.138 289.69 288.263 287.357 286.502 286.512 284.685 281.56 277.484 274.183 271.464 269.517 270.989 272.998 274.361 276.033 276.701 275.967 273.706 271.607 269.914 268.517 267.321 266.258 265.632 265.255 264.603 263.975 262.832 261.799 261.046 260.558 260.027 260.253 259.701 259.143 260.098 261.921 262.611 262.652 261.834 259.124 255.308 252.412 249.638 247.142 245.184 243.826 242.423 233.971 233.083 232.687 232.234 231.374 230.057 228.954 229.104 230.056 231.438 233.054 234.923 238.707 244.606 250.474 256.641 264.048 269.168 272.4 273.008 273.143 273.396 273.722 274.374 275.309 276.145 276.927 277.665 278.379 279.25 280.268 281.602 283.658 286.121 288.477 289.853 290.547 291.265 292.164 293.144 294.174 295.161 296.023 296.691 297.328 297.871 298.067 297.932 297.749 297.856 297.915 297.501 297.871 298.374 298.851 299.903 300.201 300.185 300.177 300.247 300.179 299.917 299.632 299.364 299.099 299.002 299.045 298.955 298.512 297.597 296.209 295.344 295.157 294.967 294.422 293.405 293.133 292.827 292.848 291.791 290.38 289.824 288.912 288.508 287.209 283.608 279.482 275.348 272.638 271.793 273.836 276.67 277.339 277.941 278.137 277.633 276.438 274.42 271.486 269.554 268.023 266.864 265.975 265.294 264.63 264.078 263.47 262.294 261.142 260.348 259.963 259.362 259.542 259.141 258.366 258.842 260.106 261.087 261.746 261.36 258.781 254.999 252.223 249.459 247.095 245.111 243.816 242.419 233.943 232.952 232.52 232.07 231.036 229.649 228.67 229.051 230.187 231.82 233.323 234.572 238.017 243.689 249.414 254.757 262.946 268.288 272.304 273.073 273.204 273.48 273.833 274.468 275.371 276.167 276.909 277.645 278.373 279.258 280.277 281.572 283.523 286.05 288.459 289.809 290.514 291.268 292.148 293.155 294.248 295.188 295.95 296.59 297.271 297.888 298.28 298.513 298.72 298.942 299.109 299.167 299.251 299.53 299.894 300.173 300.221 300.15 300.187 300.306 300.23 299.943 299.707 299.584 299.466 299.298 299.144 298.928 298.445 297.601 296.824 296.141 295.546 295.23 294.872 293.848 293.578 293.009 293.048 292.351 291.378 290.518 290.364 289.206 286.618 281.127 277.048 273.808 272.55 273.507 277.276 279.512 280.613 280.074 278.886 277.699 276.628 274.701 271.378 269.055 267.426 266.307 265.573 264.945 264.259 263.401 262.81 261.573 260.377 259.761 259.297 258.608 258.705 258.685 257.813 258.089 258.653 259.443 260.569 260.816 258.291 254.878 251.956 249.232 247.005 245.037 243.806 242.415 233.917 233.006 232.379 231.839 230.732 229.281 228.464 229.04 230.341 232.137 233.714 234.686 237.612 242.897 248.548 253.777 261.189 267.746 272.276 273.169 273.291 273.567 273.934 274.534 275.402 276.174 276.905 277.643 278.365 279.224 280.21 281.453 283.267 285.785 288.259 289.668 290.453 291.287 292.206 293.225 294.291 295.186 295.903 296.554 297.243 297.862 298.38 298.847 299.233 299.541 299.745 299.819 299.859 299.964 300.129 300.23 300.211 300.153 300.22 300.326 300.264 300.05 299.844 299.695 299.577 299.461 299.324 299.167 298.805 298.115 297.28 296.563 296.049 295.563 295.156 294.407 293.724 293.21 293.153 292.905 292.244 291.501 290.853 288.697 283.956 278.295 274.951 273.129 273.365 275.529 279.203 281.145 281.561 280.438 278.348 276.92 276.478 274.563 271.416 268.584 266.895 265.77 265.256 264.551 263.651 262.82 262.014 260.775 259.473 259.047 258.507 257.611 257.733 258.335 257.37 256.715 257.439 258.024 259.355 260.22 257.865 254.707 251.66 248.981 246.87 244.976 243.795 242.411 233.913 232.902 232.256 231.651 230.427 228.922 228.302 229.049 230.526 232.583 234.199 234.982 237.369 242.308 247.789 253.0 260.689 267.628 272.309 273.282 273.398 273.655 274.016 274.586 275.41 276.16 276.893 277.631 278.345 279.163 280.111 281.328 283.074 285.534 288.023 289.485 290.352 291.287 292.291 293.322 294.329 295.196 295.911 296.547 297.174 297.756 298.361 298.96 299.414 299.721 299.93 300.046 300.07 300.069 300.122 300.192 300.202 300.167 300.229 300.346 300.33 300.172 299.96 299.749 299.6 299.537 299.479 299.371 299.088 298.56 297.894 297.187 296.426 295.863 295.422 294.95 293.935 293.482 293.774 293.014 292.686 292.045 290.897 287.179 281.14 276.42 273.961 273.59 274.445 276.095 279.239 280.766 280.68 279.78 276.752 275.858 275.783 274.186 270.98 268.084 266.404 265.383 264.818 263.886 262.95 262.276 261.443 260.266 259.041 258.311 257.48 256.75 256.757 257.755 256.916 255.088 256.096 256.856 258.238 259.47 257.304 254.379 251.301 248.735 246.715 244.921 243.782 242.405 233.919 232.785 232.158 231.464 230.134 228.594 228.185 229.117 230.783 233.099 234.969 235.672 237.318 241.895 247.265 252.512 260.468 267.711 272.391 273.399 273.516 273.747 274.088 274.629 275.397 276.12 276.861 277.602 278.314 279.101 280.039 281.289 283.017 285.385 287.81 289.293 290.22 291.257 292.363 293.405 294.351 295.201 295.926 296.537 297.113 297.692 298.332 298.925 299.367 299.68 299.875 299.964 299.982 299.975 300.024 300.127 300.172 300.131 300.183 300.343 300.401 300.285 300.098 299.909 299.784 299.71 299.631 299.5 299.232 298.813 298.29 297.61 296.773 296.079 295.554 295.133 294.345 294.199 293.318 293.316 292.428 291.778 290.511 286.134 280.256 276.087 274.293 274.518 275.135 275.764 277.606 278.933 278.642 277.751 275.723 274.753 274.498 273.215 270.214 267.57 265.881 264.859 264.301 263.303 262.437 261.474 260.846 259.753 258.772 257.757 256.925 255.951 255.811 256.975 255.923 254.08 253.703 255.743 257.205 258.759 256.715 254.046 250.823 248.449 246.585 244.883 243.762 242.398 233.922 232.753 232.005 231.292 229.867 228.298 228.091 229.215 231.184 233.812 235.79 236.466 238.002 241.828 246.98 252.399 260.533 267.917 272.529 273.516 273.648 273.848 274.159 274.674 275.374 276.055 276.797 277.559 278.276 279.074 280.065 281.404 283.136 285.371 287.647 289.113 290.092 291.237 292.407 293.443 294.358 295.175 295.881 296.484 297.106 297.781 298.423 298.898 299.269 299.577 299.74 299.776 299.82 299.867 299.917 299.996 300.047 300.026 300.093 300.293 300.404 300.342 300.227 300.148 300.083 299.952 299.781 299.615 299.322 298.87 298.344 297.688 296.866 296.117 295.553 295.19 295.048 294.362 293.664 293.05 292.898 292.215 290.566 286.077 280.499 276.639 275.105 275.172 275.362 275.053 275.644 276.647 276.745 276.331 274.959 273.92 273.149 271.457 269.489 267.135 265.376 264.542 263.936 262.928 261.889 260.992 260.137 259.293 258.338 257.465 256.471 255.333 254.874 256.062 255.659 254.233 252.241 253.971 256.337 258.107 256.264 253.525 250.334 248.208 246.453 244.825 243.722 242.394 233.889 232.689 232.024 231.133 229.621 228.029 228.01 229.345 231.549 234.444 236.706 237.505 238.807 242.09 246.901 252.572 260.379 268.412 272.665 273.578 273.744 273.942 274.223 274.711 275.357 276.002 276.74 277.513 278.24 279.078 280.153 281.574 283.312 285.427 287.54 288.982 290.051 291.269 292.424 293.441 294.369 295.174 295.854 296.447 297.151 297.921 298.551 298.95 299.279 299.561 299.675 299.702 299.802 299.852 299.802 299.834 299.969 300.053 300.108 300.24 300.359 300.345 300.235 300.16 300.131 300.051 299.936 299.822 299.526 298.955 298.306 297.65 296.893 296.189 295.654 295.254 295.033 294.632 294.018 293.47 292.826 292.427 290.365 285.61 280.776 277.365 275.865 275.412 274.894 274.64 275.019 275.781 275.993 275.473 274.434 273.47 272.348 270.545 268.68 266.638 265.003 264.305 263.642 262.365 261.271 260.594 259.674 259.283 258.131 257.367 256.333 254.714 254.186 255.338 254.992 253.799 252.374 252.535 255.714 257.369 255.683 252.996 249.944 247.985 246.297 244.744 243.676 242.391 233.831 232.66 231.906 230.993 229.408 227.784 227.943 229.507 231.947 235.112 237.646 238.651 239.91 242.635 247.056 252.997 261.956 269.111 272.78 273.602 273.811 274.026 274.279 274.742 275.34 275.963 276.692 277.453 278.176 279.038 280.179 281.676 283.427 285.447 287.423 288.864 290.043 291.313 292.432 293.426 294.369 295.188 295.871 296.485 297.234 298.01 298.594 298.959 299.268 299.511 299.59 299.649 299.811 299.865 299.758 299.779 299.982 300.125 300.147 300.206 300.309 300.321 300.211 300.132 300.155 300.149 300.063 299.93 299.643 299.064 298.369 297.686 296.923 296.25 295.794 295.404 295.024 294.783 294.411 293.202 293.09 292.335 289.227 285.083 281.019 277.748 276.372 275.497 274.747 274.669 275.21 275.744 275.669 275.133 274.286 273.069 271.768 270.085 268.245 266.282 264.656 263.531 262.809 261.515 260.843 260.151 259.302 259.054 258.264 256.879 255.677 254.212 253.226 254.481 254.847 253.076 251.956 250.896 254.768 256.721 255.056 252.642 249.496 247.754 246.149 244.656 243.633 242.387 233.83 232.5 231.826 230.858 229.207 227.563 227.894 229.68 232.368 235.786 238.559 239.799 241.048 243.571 247.559 254.831 263.148 269.697 272.869 273.597 273.862 274.104 274.334 274.766 275.322 275.922 276.637 277.361 278.049 278.918 280.097 281.673 283.467 285.421 287.314 288.781 290.06 291.358 292.441 293.398 294.317 295.155 295.888 296.567 297.318 298.03 298.549 298.906 299.202 299.41 299.501 299.601 299.801 299.879 299.796 299.817 300.01 300.13 300.138 300.17 300.24 300.254 300.183 300.146 300.199 300.211 300.091 299.9 299.649 299.169 298.512 297.786 296.976 296.305 295.941 295.618 295.128 294.708 294.392 293.918 293.34 292.005 288.317 284.538 280.873 278.74 277.177 275.637 274.55 274.524 275.798 276.004 275.555 274.785 273.936 272.777 271.524 269.912 268.262 266.32 264.518 263.384 261.917 260.916 260.134 259.706 259.257 258.972 257.89 256.51 254.739 253.526 252.377 253.058 254.069 252.479 251.393 250.467 253.877 256.171 254.638 251.927 249.077 247.493 245.991 244.565 243.59 242.382 233.784 232.445 231.722 230.761 229.039 227.384 227.858 229.934 232.772 236.405 239.417 240.901 242.22 244.602 248.422 256.386 264.197 270.2 272.935 273.577 273.913 274.185 274.395 274.791 275.293 275.851 276.53 277.192 277.82 278.677 279.871 281.514 283.43 285.371 287.251 288.789 290.132 291.422 292.464 293.378 294.228 295.07 295.872 296.618 297.346 297.98 298.453 298.807 299.103 299.334 299.491 299.612 299.758 299.828 299.827 299.87 299.989 300.078 300.127 300.167 300.18 300.19 300.189 300.19 300.177 300.145 300.044 299.88 299.663 299.252 298.63 297.911 297.168 296.556 296.192 295.859 295.342 294.828 294.477 294.19 293.647 292.142 288.267 284.325 281.198 279.567 277.776 275.267 273.668 273.732 275.311 276.145 275.462 274.361 273.541 272.438 271.3 269.728 268.26 266.346 264.469 263.054 261.186 260.253 259.756 259.451 258.89 258.707 257.424 255.658 254.442 252.871 251.652 252.234 253.304 252.207 250.795 250.237 253.957 255.558 254.19 251.363 248.732 247.205 245.844 244.479 243.551 242.377 233.774 232.483 231.64 230.646 228.892 227.249 227.835 230.087 233.162 236.979 240.167 241.891 243.496 245.855 249.594 257.462 265.095 270.57 272.978 273.566 273.95 274.237 274.443 274.813 275.262 275.762 276.378 276.975 277.559 278.4 279.589 281.281 283.356 285.339 287.245 288.871 290.234 291.472 292.488 293.376 294.212 295.039 295.862 296.607 297.29 297.852 298.298 298.709 299.058 299.319 299.495 299.621 299.715 299.786 299.853 299.935 300.05 300.134 300.177 300.211 300.229 300.266 300.298 300.258 300.148 300.094 300.038 299.886 299.617 299.193 298.607 297.97 297.385 296.891 296.519 296.155 295.706 295.207 294.77 294.445 293.963 292.479 288.646 284.604 281.667 279.555 277.579 274.102 272.015 272.743 275.075 275.977 275.725 274.094 273.346 272.364 270.93 269.425 267.874 266.194 264.297 262.574 260.66 259.84 259.707 259.178 258.741 258.236 257.19 255.151 254.249 251.893 250.722 251.6 252.535 251.908 250.36 249.991 253.392 254.884 253.558 250.868 248.54 246.97 245.681 244.414 243.51 242.372 233.758 232.386 231.575 230.558 228.768 227.113 227.811 230.209 233.504 237.475 240.826 242.785 244.792 247.407 251.133 258.706 265.954 270.884 273.019 273.565 273.966 274.257 274.476 274.836 275.244 275.691 276.226 276.753 277.319 278.162 279.336 281.076 283.297 285.325 287.239 288.921 290.274 291.482 292.504 293.399 294.236 295.042 295.84 296.559 297.196 297.706 298.14 298.61 299.028 299.284 299.448 299.603 299.717 299.814 299.927 300.041 300.154 300.202 300.201 300.236 300.322 300.378 300.359 300.275 300.169 300.104 299.984 299.763 299.499 299.171 298.69 298.094 297.561 297.176 296.9 296.602 296.215 295.658 295.006 294.497 294.038 292.782 289.252 285.497 282.314 279.488 276.311 272.508 270.082 271.651 274.259 275.43 275.016 274.173 273.382 272.461 270.768 268.887 267.443 265.825 264.127 262.127 260.19 259.664 259.654 259.073 258.59 257.917 256.62 254.698 253.129 251.193 249.579 250.135 251.691 251.598 250.07 249.813 252.363 254.175 252.914 250.513 248.329 246.807 245.521 244.348 243.472 242.366 233.736 232.316 231.522 230.469 228.658 226.998 227.776 230.299 233.801 237.897 241.48 243.736 245.98 249.156 253.039 260.045 266.832 271.19 273.061 273.572 273.962 274.249 274.491 274.854 275.244 275.644 276.091 276.549 277.124 277.997 279.169 280.936 283.258 285.309 287.213 288.899 290.233 291.446 292.516 293.437 294.255 295.015 295.781 296.48 297.086 297.563 297.997 298.523 298.999 299.235 299.382 299.579 299.745 299.85 299.97 300.102 300.207 300.226 300.205 300.284 300.43 300.449 300.328 300.215 300.179 300.105 299.88 299.613 299.43 299.237 298.857 298.284 297.767 297.491 297.35 297.125 296.719 296.055 295.215 294.536 294.084 293.059 290.033 286.758 283.295 279.511 275.712 271.197 268.026 269.451 272.499 273.752 273.728 273.443 273.279 272.57 270.749 268.392 266.754 265.371 263.796 261.631 259.887 259.247 259.351 258.805 258.283 257.53 256.292 254.026 252.313 250.291 248.291 249.208 250.663 251.1 250.075 249.725 251.491 253.354 252.286 250.214 248.099 246.658 245.382 244.272 243.435 242.357 233.729 232.305 231.459 230.404 228.58 226.902 227.776 230.337 234.017 238.272 242.078 244.811 247.236 250.764 255.086 261.377 267.841 271.539 273.106 273.574 273.933 274.212 274.483 274.862 275.252 275.612 275.969 276.368 276.986 277.932 279.12 280.868 283.227 285.289 287.177 288.827 290.138 291.395 292.539 293.48 294.241 294.951 295.71 296.395 296.98 297.428 297.867 298.441 298.948 299.174 299.314 299.542 299.735 299.843 299.953 300.092 300.203 300.245 300.272 300.393 300.525 300.479 300.281 300.131 300.105 300.003 299.766 299.549 299.387 299.125 298.745 298.339 298.056 297.973 297.919 297.664 297.215 296.646 295.965 295.294 294.42 292.545 290.327 287.554 284.332 280.579 275.967 270.839 266.704 266.888 269.593 271.32 271.637 272.082 272.914 272.218 270.74 267.949 266.071 264.744 263.427 261.081 259.331 258.974 259.211 258.622 257.992 257.28 255.813 253.825 251.658 249.286 247.202 247.244 248.18 250.288 249.99 249.654 251.033 252.583 251.611 249.905 247.91 246.5 245.243 244.194 243.403 242.361 233.737 232.278 231.42 230.34 228.518 226.833 227.725 230.34 234.161 238.561 242.604 245.813 248.689 252.538 257.085 262.614 268.763 271.853 273.132 273.552 273.875 274.151 274.444 274.826 275.227 275.57 275.874 276.251 276.925 277.96 279.146 280.861 283.206 285.274 287.175 288.79 290.079 291.365 292.527 293.458 294.19 294.909 295.683 296.345 296.886 297.321 297.792 298.368 298.847 299.083 299.238 299.454 299.686 299.872 300.011 300.115 300.206 300.269 300.322 300.391 300.476 300.466 300.311 300.089 299.948 299.823 299.652 299.495 299.289 298.923 298.584 298.418 298.386 298.447 298.494 298.312 297.963 297.573 297.014 295.862 294.475 292.108 289.929 287.875 286.162 282.558 277.743 272.382 266.845 263.475 264.163 265.746 268.176 270.075 271.574 271.575 270.141 267.436 265.39 264.121 262.654 260.698 258.851 258.674 258.871 258.314 257.909 256.937 255.091 252.812 250.673 248.37 246.262 245.586 246.136 248.72 249.83 249.411 251.238 251.762 250.973 249.604 247.831 246.264 245.126 244.123 243.354 242.37 233.73 232.242 231.363 230.311 228.471 226.781 227.67 230.28 234.216 238.694 243.017 246.548 249.89 253.993 258.963 263.595 269.613 272.114 273.138 273.511 273.802 274.067 274.37 274.752 275.167 275.505 275.788 276.177 276.919 278.042 279.214 280.914 283.223 285.274 287.169 288.733 290.019 291.322 292.464 293.381 294.126 294.865 295.625 296.244 296.76 297.23 297.762 298.308 298.738 298.993 299.17 299.362 299.633 299.901 300.041 300.083 300.151 300.244 300.301 300.315 300.367 300.416 300.313 300.032 299.811 299.688 299.564 299.484 299.397 299.139 298.869 298.747 298.758 298.939 299.211 299.225 298.944 298.512 297.65 296.19 294.314 292.06 290.159 288.804 287.239 284.698 281.022 275.771 269.12 261.568 259.939 260.866 263.416 267.355 269.781 270.801 270.112 267.112 264.538 263.178 261.911 259.905 258.689 258.397 258.376 257.947 257.632 256.582 254.655 252.397 249.851 247.798 245.196 244.494 244.794 246.384 249.667 249.385 250.706 250.965 250.402 249.294 247.738 246.094 245.016 244.045 243.289 242.372 233.825 232.23 231.333 230.274 228.446 226.744 227.605 230.166 234.128 238.685 243.218 247.182 250.891 255.159 260.386 265.163 270.302 272.31 273.128 273.456 273.725 273.98 274.266 274.649 275.082 275.418 275.705 276.146 276.991 278.185 279.331 281.054 283.307 285.296 287.131 288.632 289.932 291.233 292.337 293.252 294.039 294.789 295.504 296.073 296.609 297.156 297.751 298.248 298.63 298.903 299.095 299.265 299.554 299.856 299.982 299.987 300.053 300.192 300.269 300.274 300.296 300.351 300.28 300.0 299.754 299.623 299.51 299.528 299.642 299.531 299.239 299.011 299.022 299.412 300.007 300.216 299.809 299.047 297.852 296.467 294.637 292.882 290.402 289.169 287.79 286.22 283.875 279.41 271.392 260.36 256.166 256.158 259.5 263.513 268.169 269.826 269.868 266.653 263.549 262.006 261.255 259.262 258.418 258.047 257.872 257.422 257.305 256.183 254.401 252.157 249.496 247.007 244.427 243.522 243.545 245.784 249.49 249.621 250.054 250.283 249.892 248.985 247.648 245.981 244.917 243.981 243.216 242.371 233.732 232.181 231.301 230.265 228.452 226.723 227.508 229.953 233.928 238.484 243.184 247.416 251.271 255.454 259.73 266.279 270.694 272.4 273.095 273.402 273.668 273.932 274.167 274.517 274.968 275.304 275.629 276.187 277.19 278.376 279.576 281.362 283.482 285.339 287.033 288.485 289.793 291.059 292.131 293.061 293.903 294.652 295.306 295.86 296.451 297.081 297.701 298.143 298.487 298.772 298.973 299.147 299.443 299.748 299.891 299.945 300.034 300.158 300.262 300.301 300.285 300.296 300.266 300.042 299.769 299.564 299.437 299.526 299.708 299.552 299.143 298.909 299.102 299.748 300.363 300.639 299.993 298.8 297.536 296.731 294.842 293.044 291.016 288.987 287.983 287.028 285.473 280.404 270.87 258.61 253.593 253.544 257.093 261.003 266.092 268.834 269.481 266.38 262.837 261.342 260.624 258.957 258.228 257.812 257.58 257.357 257.183 256.128 254.319 251.645 248.634 245.911 243.696 242.543 242.338 244.694 249.115 249.565 249.469 249.681 249.381 248.719 247.518 245.987 244.827 243.946 243.148 242.366 233.704 232.155 231.244 230.248 228.475 226.713 227.395 229.732 233.615 238.069 242.825 247.149 250.832 255.078 259.355 265.959 270.576 272.305 273.042 273.382 273.663 273.929 274.11 274.386 274.847 275.17 275.533 276.279 277.445 278.608 279.899 281.691 283.65 285.352 286.924 288.355 289.656 290.867 291.896 292.828 293.683 294.44 295.101 295.694 296.337 297.005 297.6 298.019 298.352 298.624 298.827 299.043 299.367 299.687 299.86 299.979 300.079 300.152 300.27 300.358 300.326 300.289 300.281 300.076 299.753 299.515 299.402 299.467 299.611 299.561 299.39 299.324 299.186 299.415 299.89 300.344 300.453 299.291 297.935 296.474 295.002 292.841 291.065 288.833 288.265 286.773 284.025 277.913 266.536 256.894 253.166 254.068 256.983 259.47 263.419 267.4 268.919 266.281 262.421 260.78 259.951 258.715 258.095 257.695 257.688 257.417 257.34 256.08 253.925 251.217 247.987 245.085 242.992 241.607 241.208 243.438 248.687 249.428 249.077 249.099 248.965 248.497 247.436 245.942 244.73 243.938 243.094 242.36 233.658 232.152 231.255 230.242 228.507 226.719 227.257 229.49 233.225 237.479 242.1 246.279 249.825 253.942 259.373 265.075 269.984 272.065 272.975 273.381 273.679 273.917 274.055 274.265 274.688 274.999 275.388 276.372 277.692 278.868 280.188 281.922 283.727 285.3 286.824 288.259 289.52 290.67 291.656 292.561 293.41 294.187 294.9 295.559 296.249 296.929 297.49 297.886 298.206 298.459 298.669 298.933 299.287 299.601 299.793 299.966 300.082 300.148 300.286 300.397 300.351 300.301 300.282 300.072 299.754 299.545 299.433 299.425 299.591 299.844 300.049 299.552 299.117 299.296 300.531 301.061 300.701 299.464 297.953 296.411 294.932 293.391 291.597 290.634 288.357 285.433 280.233 271.94 259.931 255.591 255.324 257.525 258.961 259.843 262.141 265.905 268.24 265.868 262.27 260.262 259.345 258.64 257.965 257.513 257.427 257.299 257.202 255.887 253.679 250.685 247.493 244.407 242.26 240.739 240.294 243.133 248.097 249.293 248.973 248.678 248.692 248.313 247.342 245.858 244.648 243.914 243.045 242.352 233.695 232.156 231.243 230.24 228.551 226.753 227.129 229.219 232.767 236.747 241.089 244.969 248.333 252.379 259.393 264.012 268.895 271.649 272.888 273.376 273.681 273.882 273.986 274.161 274.508 274.8 275.253 276.447 277.919 279.129 280.421 282.053 283.713 285.198 286.734 288.18 289.385 290.468 291.429 292.303 293.143 293.956 294.738 295.455 296.171 296.846 297.349 297.708 298.01 298.26 298.493 298.8 299.181 299.499 299.727 299.951 300.072 300.126 300.269 300.383 300.343 300.301 300.269 300.07 299.787 299.6 299.465 299.423 299.652 299.956 300.298 300.31 300.367 300.573 301.047 301.248 300.818 299.66 298.21 296.636 295.289 294.002 292.287 291.429 288.656 283.099 274.116 260.636 255.454 255.418 258.925 260.731 261.628 261.13 261.407 264.163 266.685 265.168 262.3 259.934 259.117 258.697 258.109 257.387 257.175 257.531 257.188 255.615 253.305 250.248 247.109 243.879 241.806 239.922 239.435 242.573 247.436 249.113 248.977 248.417 248.511 248.14 247.259 245.789 244.588 243.89 242.998 242.344 233.698 232.18 231.221 230.255 228.618 226.795 227.019 228.944 232.266 235.936 239.836 243.33 246.548 250.518 256.117 262.606 267.174 270.856 272.743 273.35 273.639 273.835 273.911 274.053 274.329 274.603 275.176 276.574 278.168 279.404 280.614 282.108 283.637 285.076 286.65 288.085 289.236 290.27 291.215 292.091 292.937 293.785 294.629 295.368 296.061 296.7 297.154 297.463 297.743 298.016 298.283 298.634 299.05 299.423 299.739 300.013 300.09 300.06 300.164 300.297 300.315 300.305 300.272 300.097 299.811 299.579 299.481 299.603 299.905 300.043 300.128 300.21 300.105 300.188 300.639 300.748 300.452 299.771 298.728 297.19 295.492 294.187 293.432 291.882 287.191 278.525 265.632 254.418 252.372 257.167 261.726 263.472 264.208 262.868 261.455 262.714 264.666 264.223 261.877 259.714 259.072 258.754 258.034 257.286 257.297 257.592 256.902 254.936 252.604 249.679 246.163 243.242 240.806 239.172 238.703 241.529 246.573 248.726 248.885 248.133 248.349 247.988 247.215 245.759 244.603 243.868 242.954 242.335 233.701 232.135 231.224 230.285 228.701 226.869 226.905 228.667 231.754 235.108 238.446 241.6 244.603 248.637 253.99 261.618 265.917 269.752 272.524 273.277 273.562 273.781 273.861 273.973 274.21 274.502 275.206 276.777 278.42 279.672 280.797 282.146 283.578 284.997 286.565 287.99 289.134 290.151 291.059 291.942 292.8 293.648 294.516 295.26 295.905 296.498 296.949 297.277 297.556 297.822 298.103 298.501 298.959 299.362 299.719 300.021 300.101 300.053 300.127 300.249 300.292 300.303 300.3 300.151 299.826 299.523 299.477 299.728 299.987 299.741 299.056 298.535 298.21 298.426 298.625 299.499 300.052 300.02 298.515 296.851 295.299 294.138 293.712 291.544 284.569 273.335 257.571 250.964 251.189 258.436 263.697 266.468 265.784 263.991 260.962 261.633 263.571 263.233 261.355 259.313 259.0 258.62 257.967 257.342 257.347 257.553 256.433 254.167 251.61 248.899 245.429 242.468 240.217 238.571 238.151 241.295 245.492 248.177 248.784 247.825 248.189 247.905 247.171 245.819 244.607 243.842 242.944 242.325 233.702 232.166 231.227 230.328 228.808 226.972 226.808 228.411 231.246 234.26 236.944 239.709 242.685 246.791 252.249 259.792 265.113 268.641 272.235 273.163 273.462 273.716 273.818 273.92 274.141 274.477 275.314 277.02 278.673 279.95 281.026 282.239 283.575 284.963 286.487 287.896 289.066 290.085 290.948 291.811 292.663 293.501 294.376 295.124 295.73 296.276 296.746 297.115 297.396 297.651 297.967 298.423 298.919 299.32 299.67 299.988 300.144 300.146 300.176 300.218 300.233 300.292 300.33 300.192 299.85 299.509 299.396 299.496 299.415 298.897 298.377 297.857 297.556 297.535 297.64 297.816 299.049 299.052 297.824 296.514 294.923 294.71 294.145 290.555 280.632 268.206 254.369 249.559 251.583 258.383 264.136 268.235 267.641 264.573 260.384 261.158 263.033 262.125 260.509 258.893 258.46 258.235 258.021 257.458 257.301 257.551 255.675 253.264 250.751 248.299 245.056 242.199 239.902 238.246 237.768 239.858 243.965 247.495 248.667 247.809 248.039 247.872 247.179 245.862 244.603 243.808 242.944 242.314 233.793 232.171 231.259 230.378 228.906 227.098 226.734 228.185 230.648 233.333 235.577 237.906 240.895 245.135 250.68 257.043 263.46 267.672 271.896 273.001 273.332 273.624 273.772 273.893 274.123 274.515 275.479 277.266 278.916 280.23 281.291 282.39 283.629 284.96 286.417 287.793 288.996 290.037 290.857 291.679 292.526 293.355 294.22 294.969 295.55 296.055 296.535 296.929 297.217 297.496 297.88 298.383 298.898 299.301 299.65 299.973 300.19 300.259 300.257 300.203 300.176 300.278 300.346 300.189 299.857 299.546 299.326 299.127 298.938 298.653 298.162 297.599 297.305 297.146 296.944 297.125 297.892 298.51 298.046 296.677 295.346 294.89 294.086 288.404 276.33 260.561 252.198 249.794 252.382 257.414 263.772 268.937 268.491 264.508 260.184 261.027 261.992 261.185 259.078 258.322 258.489 258.017 258.136 257.675 257.531 257.061 254.921 252.308 250.163 247.959 245.459 242.37 239.876 238.16 237.729 238.393 242.546 246.749 248.48 248.009 247.914 247.859 247.182 245.853 244.592 243.784 242.933 242.306 233.692 232.189 231.27 230.421 229.032 227.264 226.704 227.983 230.185 232.528 234.341 236.18 239.217 243.678 249.332 255.213 261.912 266.943 271.591 272.796 273.169 273.501 273.719 273.883 274.158 274.619 275.695 277.496 279.132 280.501 281.587 282.602 283.74 284.994 286.355 287.673 288.898 289.962 290.745 291.511 292.354 293.182 294.022 294.744 295.317 295.825 296.312 296.709 297.036 297.39 297.837 298.328 298.82 299.265 299.652 299.942 300.135 300.272 300.35 300.304 300.229 300.293 300.318 300.123 299.839 299.641 299.417 299.054 298.685 298.392 298.043 297.648 297.439 297.269 296.829 296.625 297.333 298.15 298.2 297.17 295.637 294.912 293.012 285.528 272.694 257.132 251.453 250.815 252.245 255.919 262.125 268.288 268.326 264.516 260.112 261.097 261.408 259.736 257.456 257.024 257.535 257.971 258.11 257.862 257.638 256.678 254.14 251.589 249.813 247.933 245.854 243.024 240.307 238.418 237.34 237.535 241.693 245.975 248.24 248.092 247.799 247.834 247.109 245.782 244.578 243.782 242.903 242.302 233.711 232.233 231.296 230.483 229.18 227.466 226.682 227.844 229.773 231.793 233.242 234.828 237.838 242.415 248.167 254.116 261.252 266.648 271.441 272.679 273.057 273.414 273.676 273.895 274.237 274.753 275.875 277.632 279.241 280.657 281.805 282.798 283.857 285.04 286.328 287.581 288.781 289.839 290.592 291.32 292.16 293.003 293.807 294.469 295.048 295.601 296.118 296.531 296.881 297.29 297.765 298.231 298.71 299.173 299.608 299.885 300.063 300.252 300.451 300.475 300.325 300.269 300.255 300.111 299.87 299.67 299.451 299.144 298.796 298.408 297.989 297.555 297.223 297.028 296.758 296.524 296.909 297.745 297.987 297.273 296.447 294.779 291.607 282.939 270.147 256.517 251.96 251.532 251.633 254.182 259.682 266.014 267.268 264.63 261.051 260.848 259.842 257.469 255.399 255.075 256.529 257.282 258.116 257.905 257.504 256.317 253.546 251.235 249.842 248.239 246.131 244.005 241.3 238.92 237.48 236.765 239.543 244.773 247.982 248.034 247.613 247.759 246.872 245.709 244.549 243.793 242.86 242.297 233.775 232.207 231.319 230.534 229.326 227.706 226.798 227.753 229.42 231.07 232.263 233.652 236.59 241.268 247.229 253.243 260.656 266.361 271.336 272.617 273.015 273.382 273.656 273.923 274.327 274.888 276.011 277.703 279.287 280.725 281.927 282.935 283.942 285.072 286.321 287.527 288.674 289.693 290.428 291.147 291.996 292.855 293.632 294.239 294.817 295.397 295.913 296.327 296.696 297.142 297.663 298.167 298.649 299.102 299.568 299.891 300.098 300.291 300.497 300.551 300.38 300.27 300.267 300.19 299.96 299.67 299.388 299.132 298.819 298.378 297.958 297.496 296.97 296.672 296.644 296.603 296.68 297.18 297.622 297.18 296.896 295.241 290.529 280.947 268.094 257.33 253.122 252.098 251.571 252.676 257.563 263.841 266.454 264.938 261.795 260.009 258.358 255.607 253.34 253.186 255.376 257.527 258.118 258.217 257.532 256.03 253.111 251.153 249.854 248.69 246.73 244.857 242.253 239.589 237.705 236.238 237.535 243.142 247.698 247.905 247.366 247.603 246.588 245.609 244.546 243.798 242.812 242.292 233.735 232.28 231.372 230.597 229.475 227.954 226.864 227.689 229.177 230.521 231.276 232.763 235.608 240.16 246.368 252.542 259.694 266.004 271.199 272.559 273.016 273.389 273.654 273.955 274.417 275.017 276.115 277.746 279.311 280.748 281.957 282.976 283.971 285.078 286.317 287.501 288.58 289.535 290.271 291.014 291.88 292.744 293.499 294.074 294.641 295.21 295.689 296.096 296.497 296.985 297.56 298.113 298.586 299.015 299.511 299.913 300.155 300.309 300.469 300.563 300.463 300.366 300.359 300.301 300.071 299.736 299.403 299.142 298.819 298.345 297.932 297.459 296.805 296.407 296.511 296.643 296.575 296.743 297.3 297.495 297.216 295.383 289.65 279.237 266.681 257.466 253.898 252.494 251.365 251.696 256.141 261.29 265.952 265.481 262.308 259.035 256.813 253.52 251.625 251.837 254.288 256.946 258.272 258.103 257.424 255.833 253.192 251.131 250.25 249.086 247.036 245.145 242.709 240.304 238.194 235.989 236.511 240.569 247.337 247.751 247.162 247.364 246.334 245.562 244.537 243.802 242.745 242.286 233.735 232.309 231.409 230.668 229.636 228.215 227.049 227.685 228.973 230.072 230.683 232.11 234.737 239.207 245.531 251.969 259.484 265.578 270.939 272.448 273.025 273.422 273.654 273.977 274.494 275.139 276.205 277.792 279.348 280.756 281.895 282.882 283.899 285.034 286.311 287.488 288.481 289.356 290.117 290.912 291.778 292.624 293.346 293.897 294.45 294.976 295.417 295.854 296.333 296.882 297.474 297.996 298.411 298.84 299.391 299.847 300.108 300.266 300.434 300.604 300.6 300.504 300.442 300.357 300.175 299.918 299.593 299.264 298.887 298.385 297.863 297.288 296.683 296.357 296.418 296.51 296.509 296.656 296.851 296.509 295.352 294.166 289.137 278.971 267.681 258.944 255.001 252.932 251.666 252.379 256.136 260.46 266.113 265.923 262.251 258.115 254.942 252.191 250.698 251.377 253.758 256.311 257.654 257.752 257.219 255.731 253.316 251.429 250.5 248.962 246.896 245.314 243.357 241.005 238.717 235.904 235.703 239.316 246.74 247.459 247.021 246.883 246.215 245.514 244.523 243.802 242.68 242.278 233.769 232.342 231.485 230.759 229.804 228.486 227.298 227.685 228.844 229.718 230.242 231.547 234.06 238.364 244.84 251.548 259.767 265.365 270.513 272.282 273.008 273.442 273.644 273.97 274.537 275.225 276.278 277.836 279.385 280.742 281.771 282.704 283.774 284.976 286.281 287.431 288.341 289.171 289.977 290.811 291.653 292.461 293.141 293.671 294.214 294.716 295.162 295.667 296.233 296.82 297.396 297.858 298.24 298.73 299.313 299.747 300.036 300.276 300.478 300.64 300.633 300.54 300.475 300.398 300.272 300.112 299.806 299.389 298.993 298.59 298.044 297.378 296.833 296.644 296.707 296.72 296.679 296.726 296.563 295.302 294.033 293.035 288.828 280.184 269.972 261.594 256.465 253.646 252.477 253.247 256.565 259.96 265.169 265.63 262.122 256.983 253.687 250.829 250.025 251.269 253.799 255.86 256.869 257.706 257.153 255.777 253.493 251.585 250.193 248.752 246.795 245.315 243.615 241.308 239.175 236.048 235.175 238.481 245.94 247.002 246.543 246.324 246.191 245.397 244.49 243.789 242.635 242.269 233.783 232.373 231.537 230.854 229.98 228.763 227.589 227.746 228.727 229.465 229.881 231.173 233.499 237.736 244.318 251.175 260.365 265.139 269.922 272.082 272.975 273.44 273.629 273.951 274.556 275.29 276.346 277.874 279.391 280.682 281.612 282.521 283.661 284.931 286.228 287.314 288.154 288.977 289.846 290.714 291.528 292.291 292.934 293.442 293.977 294.476 294.949 295.518 296.143 296.732 297.286 297.723 298.122 298.677 299.252 299.654 300.001 300.325 300.515 300.634 300.646 300.585 300.542 300.485 300.424 300.372 300.123 299.623 299.144 298.826 298.39 297.709 297.063 296.867 297.076 297.229 297.174 297.041 296.368 294.474 292.975 291.956 288.654 281.147 271.889 263.548 258.282 255.386 253.951 254.733 257.089 259.434 264.091 264.907 261.281 256.004 252.528 249.967 249.546 250.913 253.386 255.496 257.044 257.571 256.791 255.551 253.395 251.575 249.922 248.381 246.749 245.095 243.458 241.332 239.464 236.277 234.87 237.822 245.066 246.353 245.661 246.13 246.218 245.303 244.461 243.783 242.587 242.264 233.805 232.439 231.625 230.948 230.162 229.043 227.906 227.86 228.567 229.275 229.661 230.918 233.046 237.306 243.843 250.906 260.305 264.716 269.214 271.868 272.926 273.423 273.622 273.941 274.561 275.339 276.41 277.896 279.358 280.579 281.44 282.362 283.59 284.907 286.156 287.156 287.944 288.782 289.712 290.609 291.393 292.107 292.711 293.196 293.735 294.256 294.775 295.412 296.077 296.624 297.124 297.547 297.997 298.613 299.179 299.577 299.998 300.393 300.56 300.661 300.709 300.649 300.595 300.588 300.613 300.665 300.498 299.909 299.275 298.972 298.704 298.046 297.205 296.848 297.278 297.622 297.777 296.947 296.673 295.708 293.789 291.343 288.06 281.606 273.048 264.44 259.72 256.575 254.922 255.554 257.022 258.412 261.235 263.432 259.487 254.98 251.524 249.123 248.881 250.472 252.451 254.847 256.712 257.11 256.798 255.404 253.19 251.418 249.619 248.184 246.682 244.811 243.012 241.036 239.565 236.543 234.833 237.391 244.053 245.546 244.774 245.795 246.487 245.269 244.424 243.778 242.537 242.259 233.851 232.513 231.692 231.053 230.341 229.328 228.24 228.028 228.53 229.107 229.542 230.793 232.902 236.942 243.563 250.594 258.054 263.92 268.461 271.659 272.859 273.394 273.626 273.947 274.556 275.369 276.473 277.898 279.279 280.436 281.288 282.273 283.586 284.908 286.063 286.983 287.748 288.605 289.557 290.444 291.183 291.85 292.411 292.881 293.463 294.054 294.651 295.363 296.035 296.472 296.863 297.291 297.865 298.581 299.188 299.615 300.109 300.54 300.695 300.784 300.777 300.631 300.575 300.663 300.705 300.703 300.517 299.863 299.426 299.327 299.296 298.765 297.812 297.207 297.432 296.884 297.562 297.084 297.236 296.017 293.793 290.08 287.661 281.488 273.069 263.744 259.545 257.122 255.351 255.57 255.957 257.3 259.894 261.432 257.83 253.809 250.859 248.55 248.514 249.928 252.332 254.224 255.79 256.857 256.386 255.235 253.091 251.41 249.356 247.761 246.338 244.427 242.468 240.435 239.528 236.794 234.907 237.048 243.006 244.599 243.61 245.578 246.884 245.301 244.409 243.767 242.52 242.255 233.84 232.511 231.787 231.158 230.521 229.623 228.573 228.207 228.519 228.943 229.479 230.824 232.825 236.778 243.392 250.295 256.193 262.09 267.936 271.563 272.835 273.381 273.639 273.943 274.527 275.373 276.511 277.88 279.192 280.313 281.212 282.29 283.657 284.922 285.972 286.858 287.631 288.477 289.392 290.245 290.965 291.623 292.168 292.644 293.3 293.997 294.667 295.388 295.966 296.245 296.578 297.119 297.877 298.684 299.325 299.77 300.288 300.701 300.811 300.814 300.719 300.574 300.582 300.624 300.401 300.027 299.61 299.378 299.737 300.0 300.13 299.759 298.956 298.155 297.578 297.801 297.994 296.746 295.273 293.541 291.941 288.69 285.421 279.17 270.06 262.437 259.165 257.184 255.84 255.191 255.42 257.193 259.868 261.656 256.848 252.931 250.402 248.429 248.133 249.352 251.309 253.422 255.274 256.808 256.276 255.1 253.057 251.198 249.368 247.638 246.057 244.027 241.784 239.869 239.315 236.964 235.089 236.844 242.666 243.728 244.04 245.914 247.317 245.404 244.413 243.745 242.533 242.254 233.863 232.614 231.868 231.278 230.709 229.91 228.896 228.401 228.584 228.88 229.49 230.837 232.788 236.788 243.309 250.059 255.863 261.363 267.85 271.582 272.847 273.378 273.647 273.928 274.478 275.363 276.531 277.853 279.114 280.219 281.178 282.344 283.734 284.913 285.872 286.73 287.513 288.349 289.239 290.078 290.798 291.458 292.003 292.501 293.229 294.023 294.731 295.383 295.815 295.981 296.337 297.033 297.941 298.781 299.417 299.889 300.414 300.792 300.855 300.78 300.656 300.53 300.48 300.298 299.8 298.601 298.844 299.755 299.904 300.196 300.45 299.925 299.006 298.33 297.639 297.86 297.227 295.728 293.656 291.688 290.079 286.729 281.578 275.925 266.942 261.252 258.663 258.105 256.62 255.998 256.55 258.767 261.682 262.098 256.882 252.843 251.202 249.393 248.513 249.271 250.628 252.661 255.328 256.676 256.119 254.96 253.02 250.944 249.213 247.555 245.738 243.667 241.366 239.439 238.87 237.071 235.26 236.674 242.36 243.108 244.073 247.313 247.539 245.552 244.458 243.75 242.536 242.254 233.925 232.673 231.983 231.406 230.902 230.186 229.221 228.578 228.65 228.92 229.575 230.972 232.867 236.93 243.268 249.887 255.637 261.041 268.07 271.689 272.868 273.371 273.643 273.901 274.422 275.349 276.542 277.826 279.045 280.152 281.161 282.397 283.781 284.878 285.757 286.578 287.361 288.206 289.1 289.945 290.656 291.299 291.848 292.405 293.204 294.053 294.74 295.266 295.575 295.725 296.169 297.006 298.01 298.865 299.496 299.992 300.491 300.825 300.887 300.794 300.613 300.343 300.041 299.385 298.36 297.969 299.763 299.912 299.872 299.661 299.275 299.072 298.682 298.683 297.878 297.3 296.332 294.42 292.177 290.356 288.295 283.199 278.673 274.014 267.54 262.866 260.678 259.106 258.352 257.4 257.93 260.586 263.04 263.019 258.435 253.752 252.052 250.676 250.44 250.689 250.943 252.77 255.505 256.524 255.947 254.845 252.789 250.816 249.194 247.441 245.512 243.566 241.086 239.143 238.415 237.183 235.618 236.787 241.539 242.914 244.417 248.384 247.477 245.654 244.486 243.739 242.54 242.252 233.881 232.741 232.078 231.537 231.084 230.45 229.539 228.804 228.715 228.978 229.721 231.155 233.038 237.054 243.361 249.9 255.731 261.385 268.617 271.878 272.868 273.348 273.619 273.86 274.383 275.348 276.559 277.809 278.993 280.108 281.159 282.438 283.787 284.817 285.635 286.408 287.171 288.043 288.97 289.824 290.507 291.098 291.688 292.397 293.259 294.069 294.617 294.985 295.273 295.571 296.165 297.086 298.136 299.039 299.676 300.119 300.513 300.819 300.955 300.859 300.445 299.73 298.33 297.808 298.033 298.749 300.058 299.606 298.827 298.775 298.723 298.785 298.453 298.421 297.184 296.111 295.377 293.498 291.034 289.203 287.133 282.146 278.627 275.993 272.35 267.748 264.318 261.42 259.963 259.277 260.062 262.661 264.336 263.281 260.321 255.286 253.313 252.339 252.171 253.148 253.136 254.453 255.868 256.2 255.67 254.486 252.537 250.649 249.129 247.367 245.28 243.262 241.104 238.911 238.128 237.038 235.925 236.913 240.396 242.961 246.543 248.391 247.236 245.604 244.48 243.712 242.546 242.251 233.977 232.816 232.201 231.677 231.269 230.719 229.832 228.996 228.847 229.055 229.842 231.316 233.221 237.313 243.508 250.001 256.165 261.658 269.175 272.044 272.855 273.331 273.598 273.832 274.394 275.379 276.59 277.816 278.975 280.089 281.188 282.477 283.766 284.755 285.555 286.315 287.086 287.963 288.877 289.733 290.428 291.03 291.748 292.602 293.447 294.111 294.514 294.835 295.222 295.717 296.426 297.33 298.337 299.24 299.813 300.116 300.412 300.746 300.913 300.716 299.993 298.629 297.92 297.99 298.871 299.331 299.39 298.91 298.798 298.871 299.188 299.491 299.468 299.465 297.244 294.859 294.01 292.312 290.114 288.248 286.588 283.434 280.911 278.371 274.802 270.705 267.105 263.784 261.983 261.157 262.263 264.363 264.823 263.349 260.898 256.809 254.779 254.572 253.365 255.102 254.765 255.541 255.821 256.023 255.465 253.948 252.277 250.402 248.94 247.078 244.791 242.79 241.067 238.921 237.852 237.059 236.138 236.991 239.978 242.941 247.307 248.239 246.871 245.458 244.437 243.669 242.522 242.252 233.968 232.907 232.311 231.822 231.471 230.984 230.105 229.21 228.945 229.106 230.09 231.565 233.518 237.613 243.691 250.123 256.83 261.837 269.707 272.175 272.842 273.329 273.596 273.827 274.426 275.417 276.622 277.832 278.963 280.076 281.232 282.522 283.738 284.687 285.497 286.275 287.071 287.941 288.8 289.646 290.401 291.086 291.936 292.828 293.564 294.076 294.482 294.924 295.438 296.055 296.814 297.646 298.547 299.376 299.876 300.092 300.336 300.629 300.727 300.441 299.103 298.425 298.486 299.177 299.617 299.582 299.398 299.043 298.842 298.999 299.6 299.946 300.422 299.285 296.517 293.947 292.685 291.004 289.206 287.854 286.198 284.162 281.567 277.665 272.952 268.947 267.066 265.211 263.857 263.342 264.667 265.37 265.122 263.557 261.164 258.06 256.002 254.865 254.992 256.0 255.459 255.641 256.174 255.647 254.759 253.53 251.975 250.005 248.705 246.641 244.365 242.53 240.953 239.104 237.878 237.171 236.419 237.237 239.98 243.017 247.107 247.956 246.481 245.285 244.389 243.612 242.505 242.254 233.963 232.976 232.414 231.987 231.679 231.223 230.353 229.397 229.067 229.232 230.346 231.829 233.907 238.069 243.988 250.373 257.502 262.9 270.205 272.272 272.84 273.345 273.611 273.84 274.466 275.446 276.641 277.842 278.939 280.057 281.276 282.563 283.7 284.614 285.448 286.248 287.072 287.947 288.742 289.565 290.398 291.188 292.114 292.967 293.569 294.009 294.573 295.239 295.877 296.541 297.295 298.028 298.768 299.488 299.943 300.154 300.335 300.48 300.438 300.155 298.69 298.665 299.018 299.538 299.402 299.256 299.138 299.022 298.95 299.059 299.052 299.596 300.334 298.548 295.871 293.501 291.712 290.315 288.68 287.099 285.109 283.059 280.239 275.721 271.424 269.357 268.485 267.117 265.837 265.384 265.666 265.879 264.959 263.523 261.579 258.764 256.684 255.509 255.176 255.939 255.45 255.724 255.801 255.069 254.181 253.255 251.707 249.708 248.276 246.323 244.08 242.186 240.841 238.984 238.093 237.477 236.76 237.51 240.182 245.215 247.55 247.533 246.112 245.081 244.311 243.541 242.492 242.256 234.051 233.016 232.534 232.155 231.882 231.428 230.584 229.604 229.193 229.443 230.518 232.068 234.344 238.588 244.407 250.7 257.777 264.286 270.63 272.35 272.868 273.371 273.625 273.859 274.501 275.453 276.631 277.827 278.891 280.025 281.309 282.595 283.67 284.569 285.422 286.208 287.051 287.979 288.774 289.594 290.497 291.372 292.295 293.09 293.639 294.169 294.974 295.869 296.615 297.279 297.974 298.557 299.075 299.628 300.064 300.309 300.378 300.286 299.769 299.347 299.824 299.66 299.507 299.265 299.0 298.889 298.954 299.095 299.163 299.133 299.302 299.539 299.852 297.43 294.741 292.926 290.976 289.927 288.802 287.247 284.742 282.091 279.063 275.63 273.024 272.098 271.384 269.274 267.511 267.075 267.054 265.605 264.628 263.489 261.927 259.636 256.793 255.31 255.506 255.671 255.004 254.914 254.747 254.007 253.483 252.87 251.324 249.173 247.417 245.793 243.718 241.846 240.706 239.057 238.347 237.771 237.512 238.094 241.715 246.695 247.831 247.064 245.701 244.843 244.158 243.466 242.457 242.257 234.1 233.171 232.667 232.329 232.08 231.647 230.784 229.796 229.334 229.603 230.701 232.121 234.853 239.231 244.894 251.101 259.071 265.394 270.888 272.418 272.931 273.392 273.62 273.874 274.532 275.447 276.592 277.782 278.84 280.011 281.344 282.626 283.689 284.598 285.444 286.195 287.059 288.081 288.963 289.851 290.815 291.729 292.605 293.36 293.991 294.704 295.67 296.673 297.525 298.205 298.774 299.139 299.411 299.786 300.183 300.41 300.416 300.191 299.336 299.568 299.958 299.826 299.551 299.277 299.054 299.056 299.058 299.163 299.286 299.273 299.124 298.99 298.217 296.328 294.706 293.623 292.572 291.025 289.725 288.034 285.235 282.266 279.461 276.998 275.41 274.48 272.658 270.068 268.925 268.491 267.685 265.554 264.272 263.593 262.133 259.765 256.855 254.984 255.058 255.646 254.885 254.108 253.302 252.919 252.506 252.542 250.966 248.823 246.707 244.96 243.309 241.56 240.508 239.131 238.633 238.199 237.984 238.753 242.372 247.045 247.309 246.495 245.314 244.615 244.014 243.392 242.427 242.258 234.066 233.275 232.826 232.522 232.292 231.855 230.984 230.007 229.562 229.824 230.823 232.609 235.425 239.929 245.513 251.604 260.297 266.108 271.076 272.503 273.01 273.401 273.604 273.904 274.588 275.457 276.553 277.73 278.806 280.033 281.388 282.659 283.729 284.647 285.473 286.222 287.138 288.232 289.198 290.182 291.216 292.145 292.979 293.748 294.544 295.513 296.654 297.723 298.595 299.204 299.567 299.676 299.74 299.982 300.326 300.51 300.471 300.178 299.14 299.851 300.063 299.958 299.409 298.916 298.594 299.069 299.286 299.366 299.465 299.468 299.228 298.676 297.983 296.993 295.96 295.167 294.296 292.558 290.711 288.639 286.16 283.04 279.971 277.643 275.974 274.305 271.951 270.607 270.391 269.897 268.339 265.544 264.565 263.325 261.699 259.82 256.996 255.161 254.678 255.011 254.619 253.262 252.265 251.522 251.315 251.873 250.595 248.01 245.481 244.026 242.617 241.299 240.224 239.092 238.979 238.664 238.594 239.517 242.612 247.256 246.637 245.802 245.06 244.407 243.88 243.289 242.407 242.258 234.151 233.336 232.98 232.724 232.518 232.079 231.172 230.231 229.823 230.04 230.956 232.863 235.967 240.684 246.272 252.231 259.925 266.422 271.262 272.61 273.083 273.393 273.59 273.963 274.683 275.507 276.541 277.689 278.795 280.087 281.442 282.697 283.776 284.687 285.488 286.281 287.273 288.399 289.437 290.553 291.69 292.645 293.514 294.426 295.487 296.798 298.169 299.236 299.879 300.202 300.276 300.125 300.036 300.186 300.479 300.613 300.505 300.177 298.928 299.845 300.243 299.875 298.658 297.809 297.733 298.774 299.457 299.682 299.704 299.684 299.537 299.095 298.429 297.776 297.177 296.565 295.633 294.239 291.707 289.026 286.411 283.59 280.663 278.141 276.226 274.29 272.473 272.354 272.391 271.445 269.297 266.963 264.859 263.159 261.436 260.211 257.13 255.467 254.28 254.664 253.999 252.726 251.283 250.355 250.205 250.825 250.022 247.332 244.81 243.425 242.044 240.888 239.953 239.219 239.272 239.082 239.433 240.409 243.296 247.403 246.003 245.184 244.799 244.311 243.777 243.208 242.38 242.259 234.245 233.455 233.161 232.948 232.726 232.282 231.367 230.487 230.085 230.219 231.074 232.838 236.481 241.439 247.024 252.779 260.03 266.785 271.523 272.76 273.141 273.365 273.602 274.091 274.841 275.617 276.585 277.675 278.812 280.181 281.528 282.761 283.845 284.728 285.501 286.386 287.445 288.55 289.721 291.12 292.45 293.52 294.622 295.881 297.336 298.784 300.137 301.366 301.421 301.144 300.846 300.524 300.292 300.327 300.577 300.7 300.565 300.167 298.92 300.283 300.492 299.413 298.17 297.174 296.914 297.444 299.149 299.77 299.858 299.842 299.819 299.627 299.27 298.816 298.248 297.552 296.679 295.298 293.025 289.86 286.723 283.978 281.355 279.289 277.651 275.883 274.638 274.55 274.301 272.717 270.67 268.551 265.8 263.068 261.383 259.466 257.472 255.637 254.371 254.208 253.557 252.29 250.935 249.456 249.153 249.765 249.351 246.98 244.412 242.706 241.577 240.606 239.889 239.506 239.68 239.519 240.479 241.461 245.435 247.362 245.431 244.742 244.623 244.285 243.695 243.109 242.356 242.259 234.255 233.566 233.353 233.178 232.959 232.503 231.599 230.772 230.372 230.453 231.251 233.132 236.944 241.935 247.601 253.369 260.446 267.289 271.813 272.896 273.168 273.343 273.658 274.264 275.013 275.762 276.694 277.735 278.889 280.321 281.666 282.879 283.964 284.81 285.552 286.491 287.553 288.646 290.079 291.87 293.396 294.588 295.96 297.517 299.488 302.034 303.917 302.815 302.219 301.7 301.169 300.785 300.487 300.433 300.63 300.783 300.743 300.433 299.815 300.542 300.556 299.438 298.144 296.957 296.512 296.579 297.712 299.113 299.511 299.727 299.826 299.746 299.54 299.208 298.705 298.037 297.237 296.137 294.339 290.703 287.604 284.453 282.002 280.048 278.535 277.129 275.65 275.227 274.769 273.604 271.964 269.971 266.896 263.524 261.288 259.465 257.52 255.997 254.566 253.74 253.141 251.755 250.619 248.923 248.016 248.596 248.498 246.682 244.007 242.13 241.143 240.235 239.637 239.762 239.983 239.997 242.084 244.487 246.875 247.024 244.941 244.509 244.525 244.213 243.663 243.053 242.341 242.259 234.216 233.696 233.558 233.419 233.196 232.738 231.868 231.065 230.668 230.632 231.407 233.421 237.392 242.678 248.061 253.967 260.602 267.912 272.086 272.988 273.175 273.341 273.745 274.44 275.187 275.931 276.87 277.885 279.042 280.515 281.852 283.026 284.09 284.898 285.608 286.566 287.61 288.727 290.408 292.376 294.407 295.832 297.72 300.218 302.718 304.159 305.578 303.995 302.037 301.903 301.269 300.873 300.594 300.542 300.691 300.842 300.87 300.714 300.569 300.66 300.558 299.093 298.112 297.102 296.434 296.092 296.452 297.723 299.032 299.563 299.794 299.781 299.667 299.429 299.022 298.427 297.652 296.727 295.375 292.732 289.153 285.387 282.487 280.167 278.575 277.307 275.72 274.946 274.712 274.297 273.345 271.421 268.096 264.335 261.751 259.171 257.59 256.204 254.641 253.488 252.512 251.614 250.044 248.41 247.629 248.007 247.675 246.519 243.619 241.583 240.649 239.882 239.487 240.141 240.194 240.342 242.888 246.306 247.065 246.447 244.55 244.428 244.461 244.085 243.643 243.031 242.322 242.258 234.333 233.798 233.766 233.672 233.47 233.0 232.162 231.396 230.973 230.864 231.607 233.738 237.766 243.038 248.345 254.435 261.379 268.686 272.32 273.039 273.177 273.369 273.85 274.604 275.355 276.128 277.115 278.132 279.286 280.765 282.073 283.172 284.185 284.957 285.651 286.621 287.663 288.831 290.488 293.22 295.35 297.739 299.237 301.341 302.574 303.343 304.435 303.629 302.1 301.339 301.199 300.833 300.617 300.612 300.737 300.846 300.861 300.793 300.689 300.642 300.524 299.864 299.414 297.828 297.009 296.562 296.491 296.783 298.45 299.527 299.819 299.83 299.777 299.61 299.299 298.786 298.011 297.146 296.102 294.081 290.685 286.638 283.329 280.469 278.771 277.416 275.748 275.206 274.924 274.455 273.91 272.077 269.055 265.592 262.237 259.592 257.501 255.753 254.574 253.366 252.695 251.141 250.086 248.439 246.992 247.334 247.415 246.228 243.15 241.228 240.259 239.53 239.665 240.269 240.282 240.414 243.563 246.834 246.447 245.778 244.304 244.503 244.441 243.981 243.641 243.017 242.311 242.257 234.356 233.949 233.964 233.942 233.764 233.311 232.442 231.723 231.225 231.094 231.806 234.023 238.023 243.187 248.511 254.64 261.496 269.392 272.488 273.051 273.201 273.437 273.953 274.739 275.533 276.383 277.456 278.504 279.639 281.086 282.327 283.303 284.217 284.965 285.681 286.688 287.785 289.003 290.583 293.547 295.879 297.473 298.964 300.765 301.31 301.738 303.236 303.235 302.236 300.786 301.06 300.815 300.651 300.637 300.743 300.808 300.744 300.39 300.557 300.431 300.104 299.736 299.551 299.37 298.802 298.806 298.821 297.904 299.326 299.851 299.976 299.886 299.848 299.747 299.496 299.047 298.335 297.572 296.708 294.866 291.724 288.188 284.418 280.99 278.876 277.711 276.172 275.527 275.01 274.387 273.498 272.547 269.644 266.479 263.315 260.065 257.574 255.53 254.227 253.144 252.402 251.28 249.438 247.961 246.358 246.822 246.949 245.44 242.78 240.68 239.822 239.566 240.073 240.396 240.41 240.713 244.55 247.001 245.845 245.196 244.262 244.68 244.382 243.979 243.636 243.003 242.314 242.255 234.353 234.021 234.178 234.23 234.073 233.612 232.764 232.039 231.473 231.316 232.037 234.278 238.152 243.148 248.513 254.741 262.854 269.739 272.563 273.045 273.248 273.507 274.015 274.831 275.695 276.625 277.779 278.863 279.975 281.362 282.519 283.378 284.202 284.971 285.738 286.789 287.973 289.205 290.781 292.825 295.332 296.747 298.358 299.725 300.365 300.908 302.213 302.824 301.653 300.326 300.935 300.875 300.77 300.673 300.726 300.791 300.583 300.201 300.413 300.153 299.064 298.061 298.257 298.978 299.455 299.694 299.74 299.655 300.06 300.284 300.194 299.983 299.857 299.681 299.372 298.859 298.26 297.744 297.079 295.296 291.968 288.853 285.443 281.546 278.867 277.658 276.407 275.649 274.911 274.037 272.538 272.553 270.313 266.846 263.063 261.061 258.072 255.536 253.909 252.85 252.294 251.168 249.415 247.912 246.336 246.454 246.589 244.602 241.986 240.162 239.598 239.918 240.565 240.692 240.394 240.907 245.741 246.848 245.403 244.751 244.363 244.79 244.353 243.969 243.611 242.992 242.317 242.252 234.463 234.171 234.406 234.52 234.431 233.941 233.111 232.34 231.703 231.523 232.289 234.5 238.158 242.963 248.496 254.745 263.129 269.762 272.595 273.045 273.291 273.562 274.051 274.909 275.856 276.842 278.03 279.144 280.25 281.573 282.637 283.407 284.198 285.007 285.823 286.901 288.145 289.383 290.765 292.423 294.966 296.317 297.885 299.207 299.84 300.498 301.834 303.126 302.296 300.299 300.638 300.75 300.775 300.706 300.724 300.763 300.472 300.088 300.356 300.121 298.704 297.017 296.761 298.46 299.061 299.814 300.078 300.236 300.365 300.382 300.206 299.991 299.775 299.457 298.958 298.081 297.77 297.592 297.155 295.674 292.78 289.271 286.542 283.437 279.761 278.221 276.881 276.156 275.582 274.45 272.219 272.322 270.491 266.803 263.78 261.856 258.462 256.273 254.253 252.9 252.354 251.34 249.744 248.112 246.687 246.307 245.792 243.621 241.103 239.675 239.712 240.459 241.334 241.094 240.138 241.119 245.996 246.458 245.098 244.452 244.506 244.855 244.307 243.897 243.584 243.006 242.322 242.249 234.495 234.303 234.605 234.819 234.797 234.296 233.471 232.619 231.896 231.72 232.576 234.738 237.878 242.779 248.319 254.701 262.594 269.6 272.601 273.048 273.313 273.601 274.083 275.0 276.027 277.024 278.194 279.353 280.474 281.717 282.68 283.404 284.207 285.058 285.916 287.006 288.285 289.5 290.714 292.217 294.672 296.255 297.651 298.666 299.49 300.892 302.139 303.41 303.247 300.681 299.721 299.941 300.62 300.699 300.739 300.73 300.543 300.283 300.342 300.282 299.557 298.823 298.518 298.676 298.828 299.768 300.102 300.23 300.186 299.934 299.835 299.797 299.59 299.101 298.286 297.983 297.583 297.39 296.984 295.97 294.347 292.267 289.127 285.779 282.833 280.303 278.713 277.589 276.656 275.23 273.77 272.456 269.365 266.407 263.782 262.222 258.26 256.214 254.775 253.102 252.192 251.39 249.71 247.83 246.571 246.072 244.851 242.656 240.519 239.592 240.175 241.082 242.195 241.582 240.256 241.224 245.806 246.393 244.927 244.297 244.573 244.817 244.261 243.806 243.574 243.03 242.337 242.246 234.534 234.415 234.855 235.144 235.176 234.68 233.874 232.924 232.064 231.887 232.927 234.961 237.796 242.574 248.139 254.523 262.396 269.447 272.59 273.047 273.301 273.617 274.146 275.141 276.223 277.165 278.291 279.505 280.632 281.781 282.661 283.386 284.22 285.106 286.015 287.126 288.386 289.539 290.603 291.859 294.242 296.114 297.378 298.386 299.18 300.524 302.29 303.719 302.987 301.301 299.91 299.292 299.964 300.597 300.716 300.716 300.527 300.188 300.258 300.386 300.349 300.124 299.853 299.663 299.301 299.901 299.998 299.834 299.53 298.915 299.058 299.168 298.991 298.957 298.61 298.264 297.816 297.282 296.574 295.872 295.114 293.831 291.538 288.623 285.367 282.434 280.194 278.892 277.637 275.909 274.197 272.004 269.102 265.72 263.937 261.794 258.015 256.013 254.775 253.59 252.396 251.3 249.477 247.179 245.849 245.385 244.249 241.943 240.221 239.948 241.299 242.324 242.79 242.181 240.502 241.173 245.813 246.583 244.847 244.262 244.602 244.785 244.269 243.86 243.608 243.084 242.364 242.249 234.61 234.586 235.094 235.482 235.574 235.122 234.284 233.24 232.243 232.087 233.316 235.188 237.756 242.316 247.875 254.147 262.121 269.25 272.568 273.045 273.259 273.614 274.235 275.302 276.371 277.238 278.354 279.579 280.704 281.791 282.634 283.385 284.245 285.167 286.146 287.268 288.445 289.53 290.475 291.656 293.171 295.691 297.106 298.058 299.054 300.789 302.735 303.716 302.355 301.304 300.342 299.875 299.182 300.146 300.582 300.693 300.592 299.8 300.352 300.431 300.402 300.252 300.062 299.903 299.912 299.993 299.893 299.503 298.603 297.535 298.264 299.1 299.183 298.584 298.866 298.529 297.998 297.229 296.306 295.574 295.028 294.158 292.446 290.117 287.246 284.35 281.853 280.063 278.16 275.914 273.745 271.214 267.76 264.427 262.722 260.392 257.749 256.246 255.121 253.724 252.134 250.916 248.616 246.251 244.8 244.476 243.463 241.15 240.029 240.745 242.665 243.358 243.164 242.382 241.091 241.153 245.917 246.653 244.79 244.27 244.626 244.773 244.301 243.939 243.686 243.164 242.392 242.255 234.593 234.666 235.333 235.82 235.998 235.569 234.686 233.558 232.407 232.328 233.703 235.42 237.731 242.039 247.551 253.815 261.814 269.021 272.514 273.041 273.223 273.621 274.344 275.455 276.473 277.311 278.42 279.647 280.768 281.803 282.626 283.405 284.299 285.268 286.309 287.401 288.465 289.503 290.388 291.351 292.588 295.377 297.138 297.828 298.742 300.969 302.953 303.496 301.835 301.182 300.542 300.16 299.593 299.33 300.56 300.746 300.769 300.407 300.652 300.565 300.35 299.873 300.082 299.973 299.956 300.048 299.964 299.594 299.205 298.613 298.732 299.136 299.218 299.13 298.978 298.643 298.105 297.346 296.332 295.324 294.681 294.029 292.891 291.237 288.902 286.304 283.869 281.469 278.727 275.16 272.686 269.637 265.627 262.801 261.243 259.76 257.597 256.365 254.987 253.373 251.273 250.182 247.832 245.448 243.671 243.395 242.707 240.944 240.33 241.879 243.828 243.88 243.197 242.262 241.048 241.148 245.929 246.504 244.786 244.296 244.62 244.752 244.348 243.916 243.755 243.217 242.414 242.261 234.657 234.86 235.578 236.169 236.411 236.019 235.097 233.858 232.613 232.595 234.045 235.646 237.643 241.764 247.285 253.478 261.669 268.741 272.414 273.037 273.214 273.661 274.467 275.586 276.553 277.392 278.51 279.741 280.837 281.82 282.628 283.435 284.38 285.397 286.477 287.497 288.454 289.499 290.38 291.188 292.474 295.139 297.38 297.742 298.497 300.915 302.815 303.035 301.754 301.404 300.89 300.622 299.818 299.851 300.769 300.869 300.906 300.901 300.924 300.675 300.302 299.794 300.208 300.131 299.657 300.148 300.202 299.998 299.683 299.44 299.354 299.379 299.311 299.152 298.967 298.637 298.14 297.429 296.428 295.269 294.372 293.72 293.026 292.01 290.238 287.844 285.347 282.739 279.676 275.167 272.134 270.166 266.397 262.724 260.995 259.625 257.922 256.593 254.867 252.866 251.018 249.521 247.137 245.023 243.063 242.647 241.825 240.887 240.95 243.234 244.391 244.087 243.04 241.676 240.69 241.435 245.97 246.127 244.693 244.309 244.585 244.709 244.442 243.954 243.815 243.253 242.44 242.267 234.744 234.953 235.824 236.523 236.859 236.472 235.527 234.191 232.838 232.868 234.347 235.914 237.584 241.529 247.015 253.146 262.36 268.178 272.214 273.03 273.261 273.766 274.615 275.694 276.632 277.497 278.64 279.852 280.886 281.826 282.627 283.474 284.489 285.544 286.617 287.554 288.454 289.54 290.423 291.149 292.556 295.478 297.837 298.05 298.497 300.663 302.204 302.672 302.795 302.602 301.591 301.351 299.985 299.941 300.769 300.861 300.919 300.955 300.887 300.659 300.379 299.743 300.36 300.29 300.161 300.254 300.363 300.307 300.136 299.929 299.747 299.612 299.399 299.15 298.909 298.573 298.113 297.457 296.534 295.376 294.305 293.44 292.788 292.122 290.746 288.353 285.428 282.755 280.59 278.123 274.862 273.065 270.365 265.898 261.97 259.584 258.124 256.442 254.443 252.499 250.65 249.007 246.994 244.773 242.813 242.15 241.314 240.965 241.858 244.223 245.104 244.488 243.057 241.324 240.581 241.627 246.294 245.604 244.575 244.305 244.534 244.634 244.55 244.07 243.857 243.254 242.474 242.273 234.807 235.133 236.069 236.875 237.29 236.983 235.959 234.536 233.096 233.148 234.646 236.169 237.562 241.362 246.825 252.782 260.477 267.464 271.9 273.032 273.366 273.905 274.736 275.767 276.716 277.614 278.759 279.906 280.883 281.813 282.627 283.532 284.619 285.664 286.692 287.612 288.52 289.593 290.465 291.263 292.88 296.016 298.496 298.605 299.018 300.276 301.336 301.904 302.734 303.466 303.099 302.421 300.064 299.331 299.572 300.028 300.784 300.864 300.77 300.713 300.615 299.924 299.957 299.731 300.019 300.229 300.294 300.25 300.177 300.042 299.847 299.642 299.376 299.108 298.86 298.541 298.082 297.442 296.579 295.479 294.369 293.386 292.585 291.916 290.696 288.31 283.938 280.765 280.412 279.553 277.675 275.285 272.488 268.95 264.545 259.933 257.726 255.626 254.13 252.397 250.598 248.756 247.065 244.529 242.682 241.855 241.262 241.627 243.065 245.2 245.965 244.808 242.937 241.159 240.565 243.297 245.89 245.081 244.401 244.276 244.464 244.631 244.716 244.173 243.91 243.227 242.53 242.282 234.808 235.229 236.318 237.203 237.749 237.484 236.409 234.873 233.401 233.441 234.896 236.393 237.619 241.28 246.695 252.48 260.515 267.164 271.499 273.028 273.479 274.033 274.832 275.84 276.804 277.716 278.841 279.912 280.857 281.803 282.653 283.634 284.777 285.784 286.768 287.729 288.657 289.7 290.655 291.668 293.449 296.81 299.101 299.395 299.939 300.65 300.808 301.257 302.242 303.334 303.515 302.53 300.142 299.091 298.966 299.217 300.616 300.765 300.736 300.785 300.63 299.985 298.703 298.651 299.79 300.169 300.26 300.219 300.176 300.08 299.895 299.653 299.366 299.091 298.844 298.552 298.093 297.456 296.618 295.54 294.427 293.432 292.544 291.827 290.789 288.674 285.29 281.655 279.588 280.152 279.141 276.888 274.146 270.598 266.17 259.766 256.982 254.902 253.61 251.89 250.34 248.729 247.086 244.361 242.747 242.076 241.912 242.647 244.313 246.203 246.37 245.021 242.702 240.877 240.527 243.405 245.037 244.628 244.228 244.266 244.412 244.634 244.888 244.276 243.978 243.25 242.611 242.308 234.913 235.413 236.551 237.542 238.228 237.997 236.876 235.252 233.727 233.757 235.156 236.592 237.966 241.28 246.547 252.271 260.322 266.757 271.002 273.002 273.573 274.13 274.903 275.916 276.885 277.797 278.873 279.887 280.829 281.81 282.717 283.781 284.96 285.911 286.872 287.914 288.87 289.937 291.08 292.326 294.207 297.99 299.914 300.416 300.8 301.333 301.134 301.573 302.438 303.361 303.799 303.182 300.483 299.376 298.962 299.532 300.49 300.734 300.843 300.811 300.287 298.756 297.505 298.61 299.763 300.154 300.29 300.283 300.219 300.115 299.925 299.667 299.382 299.101 298.842 298.566 298.109 297.478 296.656 295.578 294.446 293.453 292.529 291.757 290.932 289.347 286.674 283.502 279.474 280.126 279.669 277.611 274.892 271.436 266.997 259.983 256.665 254.472 252.857 251.779 250.136 248.187 246.896 244.927 243.364 242.663 242.852 244.044 245.422 246.668 246.369 244.664 242.517 240.797 240.627 243.262 244.529 244.318 244.145 244.249 244.433 244.662 244.997 244.368 244.019 243.403 242.633 242.348 234.948 235.543 236.852 237.913 238.736 238.532 237.37 235.659 234.125 234.104 235.362 236.734 238.153 241.501 246.608 252.162 258.848 265.488 270.488 272.951 273.642 274.201 274.969 275.998 276.961 277.832 278.837 279.825 280.804 281.855 282.846 283.99 285.172 286.061 287.043 288.174 289.157 290.319 291.691 293.321 296.547 298.557 300.125 301.277 301.742 302.175 301.623 302.517 302.936 303.626 304.258 303.361 301.033 299.581 299.108 299.936 300.526 300.904 301.147 300.757 299.496 297.136 298.424 299.434 300.091 300.243 300.342 300.367 300.272 300.148 299.938 299.647 299.366 299.09 298.818 298.553 298.116 297.481 296.694 295.667 294.505 293.429 292.435 291.588 290.86 289.785 287.67 284.507 279.471 279.629 279.511 277.826 275.226 271.909 267.662 261.43 257.065 254.815 252.884 251.197 250.064 248.376 247.369 246.016 244.82 243.954 244.383 245.692 246.863 247.192 246.274 244.425 242.382 240.923 240.671 242.895 244.153 244.068 244.035 244.226 244.454 244.777 245.12 244.451 244.123 243.482 242.702 242.355 235.015 235.734 237.088 238.271 239.205 239.058 237.92 236.126 234.565 234.506 235.586 236.864 238.534 241.932 246.835 252.288 259.247 264.042 270.599 272.91 273.675 274.274 275.061 276.079 277.004 277.804 278.76 279.774 280.819 281.965 283.034 284.221 285.399 286.279 287.271 288.416 289.399 290.708 292.451 296.038 297.088 298.072 299.885 300.437 301.145 301.863 301.883 302.811 303.344 303.843 304.01 302.742 300.293 300.006 299.923 300.33 300.709 301.093 301.199 300.359 298.406 296.38 297.983 299.599 300.284 300.315 300.372 300.366 300.27 300.175 299.951 299.592 299.293 299.023 298.766 298.563 298.194 297.544 296.761 295.802 294.654 293.486 292.443 291.59 290.836 289.905 288.161 285.186 280.712 278.632 279.078 277.896 275.66 272.661 268.826 264.257 258.733 255.283 253.323 251.368 250.542 249.188 248.407 247.359 246.568 245.785 245.976 247.375 248.261 247.599 246.161 244.291 242.401 241.149 240.806 242.431 243.365 243.425 243.877 244.238 244.488 244.864 245.286 244.644 244.163 243.493 242.763 242.356 235.044 235.877 237.354 238.642 239.663 239.62 238.479 236.642 235.054 234.917 235.838 237.055 239.016 242.516 247.239 252.651 260.111 265.478 271.181 272.895 273.698 274.355 275.163 276.155 277.017 277.756 278.693 279.767 280.895 282.135 283.274 284.478 285.665 286.568 287.544 288.654 289.683 291.208 293.662 296.898 297.865 298.063 300.145 300.757 301.801 302.396 302.663 302.848 303.819 303.499 303.295 301.608 300.823 300.922 300.807 300.802 300.926 301.072 300.415 299.579 296.845 295.675 297.329 299.646 300.346 300.379 300.426 300.369 300.266 300.193 299.949 299.54 299.226 298.94 298.692 298.563 298.282 297.648 296.865 295.949 294.822 293.6 292.519 291.698 290.943 290.07 288.6 285.92 282.464 278.178 278.126 277.723 275.982 273.49 270.151 265.765 261.004 256.877 253.828 252.378 251.34 250.175 249.244 248.568 249.338 247.88 247.739 247.953 248.366 246.918 245.331 243.596 242.215 241.265 240.968 242.18 242.871 242.894 244.776 244.366 244.531 244.954 245.382 244.776 244.322 243.511 242.767 242.356 235.104 236.0 237.581 239.06 240.126 240.222 239.046 237.234 235.599 235.35 236.172 237.295 239.578 243.139 247.78 253.288 261.687 267.654 271.724 272.906 273.722 274.446 275.261 276.211 277.011 277.707 278.66 279.821 281.049 282.378 283.575 284.764 285.936 286.871 287.83 288.934 290.155 291.906 294.758 297.153 297.494 297.965 299.689 300.716 302.357 303.298 302.868 302.778 301.998 301.956 301.184 300.458 301.329 301.135 300.983 300.963 301.117 300.964 299.073 297.923 295.968 295.765 298.102 299.878 300.452 300.46 300.493 300.414 300.298 300.204 299.923 299.499 299.17 298.853 298.61 298.528 298.313 297.743 296.999 296.118 295.019 293.785 292.634 291.778 291.047 290.238 288.99 286.687 283.371 279.176 277.036 276.751 275.989 273.97 271.099 267.06 261.835 258.283 254.972 253.068 251.598 250.343 250.378 250.277 251.36 250.137 249.11 248.239 247.749 246.123 244.466 243.023 242.251 241.566 241.15 242.141 242.399 243.321 245.417 244.689 244.581 245.061 245.485 244.872 244.354 243.512 242.768 242.356 235.161 236.175 237.946 239.414 240.647 240.816 239.661 237.893 236.289 235.911 236.437 237.614 240.155 243.893 248.434 254.228 263.239 269.169 272.121 272.932 273.725 274.52 275.317 276.211 276.972 277.669 278.673 279.953 281.301 282.736 283.965 285.074 286.166 287.135 288.138 289.369 290.931 293.677 296.127 297.362 297.343 297.74 299.093 300.074 301.864 302.829 302.893 303.107 302.723 301.296 300.442 299.901 300.951 300.972 300.935 301.034 301.216 300.786 298.36 296.655 295.952 296.258 299.104 300.345 300.618 300.517 300.516 300.469 300.369 300.216 299.889 299.473 299.11 298.772 298.568 298.493 298.29 297.82 297.172 296.32 295.256 294.076 292.869 291.854 291.081 290.34 289.254 287.346 284.462 280.857 277.941 276.416 274.753 273.526 270.407 267.421 262.49 258.301 254.906 252.245 251.663 251.085 250.652 252.06 252.766 252.401 250.54 248.491 246.855 245.281 243.639 243.011 242.627 241.877 241.419 242.614 243.15 243.367 245.667 245.034 244.712 245.119 245.602 245.076 244.5 243.555 242.818 242.36 235.239 236.275 238.133 239.811 241.156 241.427 240.336 238.527 236.962 236.436 236.738 238.027 240.693 244.607 249.209 255.336 264.391 270.099 272.426 272.957 273.69 274.512 275.268 276.115 276.885 277.639 278.722 280.118 281.595 283.126 284.329 285.338 286.382 287.413 288.509 289.898 291.765 295.25 296.691 297.102 296.736 298.44 298.982 298.748 300.388 301.888 302.01 303.792 303.007 300.907 299.454 298.983 299.263 299.375 300.002 300.611 301.075 299.777 297.585 295.989 295.733 297.359 299.709 300.579 300.638 300.5 300.496 300.492 300.405 300.2 299.857 299.446 299.048 298.711 298.554 298.463 298.245 297.856 297.28 296.419 295.351 294.242 293.091 292.02 291.188 290.455 289.418 287.795 285.578 283.177 280.913 278.754 275.934 274.088 270.002 266.196 262.941 258.182 254.362 252.554 252.272 251.762 251.589 253.171 253.534 253.388 251.812 248.613 245.879 244.532 243.223 243.299 242.838 242.148 241.801 243.099 243.775 243.634 245.878 245.237 244.811 245.145 245.628 245.103 244.512 243.557 242.821 242.36 235.329 236.502 238.388 240.182 241.683 242.078 241.036 239.297 237.629 236.986 237.113 238.545 241.273 245.324 250.089 256.641 265.479 270.915 272.666 272.978 273.628 274.431 275.151 275.983 276.797 277.636 278.804 280.313 281.91 283.481 284.647 285.641 286.742 287.867 289.049 290.406 292.261 295.187 296.7 296.663 296.699 297.919 298.235 298.404 299.006 299.949 301.885 303.316 302.698 300.323 298.632 298.447 298.764 299.125 300.056 300.53 300.982 299.581 297.208 295.497 295.695 298.384 300.171 300.713 300.636 300.506 300.52 300.536 300.427 300.165 299.806 299.406 298.998 298.668 298.519 298.394 298.177 297.854 297.323 296.463 295.38 294.286 293.184 292.154 291.31 290.556 289.542 288.108 286.396 284.537 282.463 280.063 277.508 274.556 270.86 265.982 263.301 259.962 257.371 255.661 254.524 253.573 253.141 253.885 254.008 254.609 252.911 248.777 245.445 243.455 243.172 243.523 243.233 242.649 242.393 243.644 244.93 244.303 247.048 245.473 244.909 245.164 245.646 245.137 244.578 243.573 242.819 242.359 235.327 236.608 238.688 240.59 242.214 242.768 241.784 240.061 238.514 237.6 237.554 239.039 241.962 246.028 251.092 258.107 267.146 271.641 272.855 273.005 273.565 274.308 275.007 275.863 276.767 277.71 278.963 280.581 282.243 283.776 284.939 286.023 287.279 288.501 289.622 290.789 292.263 294.218 295.139 296.24 296.482 297.379 297.897 297.868 298.248 298.142 300.253 301.731 300.691 299.026 298.157 297.721 298.425 299.604 300.677 301.087 301.02 299.865 297.154 295.503 296.325 299.433 300.586 300.819 300.648 300.523 300.554 300.595 300.451 300.135 299.763 299.364 298.962 298.649 298.481 298.318 298.122 297.84 297.326 296.501 295.439 294.32 293.218 292.249 291.401 290.592 289.59 288.278 286.82 285.244 283.342 280.964 278.331 275.267 271.674 267.085 263.284 260.227 257.905 256.264 255.102 254.63 254.303 254.653 254.754 255.432 253.832 249.029 245.238 243.214 243.155 243.735 243.605 243.04 242.923 244.398 245.0 244.689 247.65 245.683 244.994 245.174 245.642 245.118 244.581 243.582 242.793 242.359 235.392 236.726 238.91 240.992 242.762 243.487 242.596 240.946 239.363 238.281 238.077 239.523 242.675 246.712 252.128 260.55 268.362 272.306 273.0 273.047 273.54 274.202 274.914 275.836 276.856 277.923 279.304 280.988 282.589 284.032 285.215 286.475 287.811 288.768 290.156 291.102 291.709 292.117 293.727 295.009 295.958 296.941 297.911 297.896 297.363 297.003 298.086 299.029 299.322 298.078 297.955 298.822 299.91 300.492 300.804 300.833 300.475 299.261 296.944 296.417 298.818 300.261 300.82 300.792 300.648 300.553 300.592 300.638 300.461 300.123 299.749 299.326 298.922 298.627 298.447 298.272 298.115 297.834 297.289 296.509 295.515 294.394 293.297 292.374 291.499 290.611 289.584 288.329 286.919 285.371 283.539 281.297 278.833 275.909 272.042 267.488 263.201 260.049 257.809 256.266 255.509 255.426 255.206 255.454 255.523 255.864 254.267 249.496 245.65 243.585 243.568 244.27 243.826 243.254 243.656 245.056 245.256 245.16 247.801 245.809 245.05 245.177 245.626 245.109 244.613 243.582 242.771 242.353 235.426 236.959 239.212 241.407 243.337 244.223 243.49 241.854 240.265 239.054 238.728 240.117 243.285 247.382 253.153 262.964 269.828 272.777 273.101 273.128 273.593 274.214 274.98 275.958 277.048 278.243 279.744 281.385 282.867 284.19 285.324 286.722 288.286 289.464 290.641 291.468 292.091 291.623 292.642 293.766 295.444 296.702 297.143 297.472 296.711 296.495 296.744 298.104 298.32 298.231 299.248 299.804 300.332 300.737 300.824 300.594 300.063 298.331 298.296 298.153 299.926 300.647 300.689 300.611 300.613 300.611 300.66 300.652 300.415 300.084 299.732 299.305 298.877 298.57 298.382 298.218 298.077 297.792 297.232 296.448 295.47 294.394 293.359 292.472 291.605 290.718 289.665 288.389 286.955 285.35 283.5 281.357 279.074 276.298 272.538 267.6 263.039 259.988 258.416 257.315 256.802 256.474 256.081 256.168 256.162 256.09 254.489 249.92 246.199 243.991 244.043 244.86 244.557 243.731 244.385 246.109 246.057 245.672 247.644 245.831 245.102 245.192 245.606 245.125 244.612 243.544 242.759 242.307 235.472 237.018 239.46 241.847 243.918 244.984 244.377 242.801 241.215 239.853 239.568 240.684 243.824 248.001 254.246 264.925 270.836 273.113 273.187 273.243 273.694 274.32 275.145 276.125 277.266 278.582 280.152 281.7 283.062 284.252 285.325 286.748 288.442 289.63 290.875 291.796 292.526 291.804 292.196 293.493 294.224 294.831 295.595 296.308 296.248 296.078 296.183 297.465 298.201 299.072 299.749 300.138 300.488 300.794 300.848 300.636 299.868 299.409 299.607 299.215 300.452 300.629 300.424 300.387 300.506 300.597 300.682 300.642 300.367 300.042 299.7 299.284 298.849 298.521 298.323 298.163 298.002 297.724 297.21 296.435 295.437 294.387 293.395 292.499 291.645 290.831 289.791 288.477 287.018 285.379 283.508 281.431 279.221 276.46 272.807 268.088 263.622 260.857 259.64 259.004 258.473 257.826 257.16 257.137 257.019 256.188 254.535 250.36 246.654 244.312 244.283 245.231 244.914 244.212 245.161 246.761 246.721 246.19 247.384 245.758 245.137 245.205 245.563 245.085 244.616 243.534 242.704 242.269 235.508 237.24 239.732 242.258 244.521 245.734 245.349 243.826 242.232 240.944 240.317 241.264 244.255 248.603 255.984 265.561 271.59 273.342 273.271 273.387 273.834 274.484 275.334 276.286 277.474 278.894 280.476 281.913 283.152 284.258 285.303 286.642 288.252 289.649 290.923 292.103 293.003 293.476 293.405 293.084 292.92 293.268 293.818 294.872 295.123 295.394 296.142 297.278 298.691 299.493 299.932 300.181 300.444 300.759 300.909 300.839 300.548 300.412 300.247 299.659 300.475 300.364 300.162 300.185 300.349 300.515 300.651 300.615 300.345 300.021 299.667 299.26 298.832 298.484 298.281 298.136 297.943 297.647 297.192 296.454 295.445 294.42 293.451 292.522 291.659 290.924 289.922 288.583 287.109 285.441 283.546 281.517 279.331 276.525 272.909 268.788 264.979 262.508 261.477 261.166 260.682 259.639 258.392 258.198 257.746 256.289 254.39 250.744 247.208 244.584 244.301 245.072 244.971 244.641 245.651 247.751 247.305 246.962 247.172 245.652 245.162 245.21 245.404 245.006 244.588 243.614 242.651 242.249 235.598 237.407 240.037 242.667 245.201 246.55 246.3 244.912 243.381 242.04 241.134 241.889 244.723 249.169 257.405 266.802 272.189 273.481 273.374 273.583 274.03 274.694 275.524 276.437 277.664 279.158 280.699 282.023 283.171 284.277 285.343 286.568 287.977 289.411 290.828 292.126 293.248 294.0 294.295 294.318 293.736 292.586 292.723 293.44 294.564 295.232 296.924 298.376 299.125 299.591 299.868 300.051 300.348 300.727 300.962 300.971 300.854 300.696 300.528 300.34 299.89 300.075 300.005 300.07 300.232 300.454 300.621 300.58 300.333 300.023 299.65 299.239 298.818 298.444 298.226 298.116 297.909 297.555 297.103 296.401 295.423 294.445 293.512 292.583 291.711 291.01 290.047 288.722 287.26 285.565 283.631 281.626 279.42 276.522 272.93 269.407 266.487 264.509 263.738 263.562 263.016 261.479 259.647 259.143 258.321 256.354 254.2 251.147 247.755 244.706 244.289 245.033 244.822 244.859 246.282 248.229 247.664 247.423 247.058 245.585 245.171 245.18 245.308 244.915 244.559 243.671 242.622 242.235 235.663 237.523 240.292 243.089 245.809 247.327 247.322 246.065 244.541 243.122 242.11 242.513 245.172 249.742 258.456 267.681 272.536 273.532 273.486 273.79 274.23 274.884 275.692 276.577 277.826 279.341 280.829 282.082 283.213 284.348 285.426 286.61 287.877 289.173 290.535 291.745 292.893 293.918 294.535 294.8 294.741 294.208 294.152 294.694 295.57 296.453 297.693 298.591 299.154 299.525 299.789 300.039 300.371 300.712 300.931 300.983 300.899 300.769 300.638 300.48 300.275 300.069 300.002 300.041 300.183 300.421 300.59 300.528 300.28 299.985 299.619 299.214 298.813 298.435 298.182 298.059 297.85 297.465 296.984 296.298 295.351 294.38 293.453 292.591 291.753 291.044 290.126 288.872 287.475 285.799 283.859 281.831 279.517 276.438 272.949 269.988 267.811 266.412 265.81 265.574 264.782 262.82 260.559 259.72 258.7 256.259 254.033 251.851 248.577 245.117 244.222 245.079 244.935 245.294 247.192 248.083 247.794 247.455 246.885 245.538 245.16 245.149 245.22 244.862 244.531 243.646 242.614 242.219 235.734 237.631 240.638 243.57 246.418 248.134 248.263 247.188 245.78 244.303 243.147 243.182 245.548 250.334 260.269 268.319 272.745 273.564 273.613 273.996 274.422 275.066 275.864 276.735 278.005 279.52 280.958 282.173 283.31 284.426 285.469 286.642 287.876 289.055 290.265 291.31 292.345 293.52 294.409 294.958 295.211 295.309 295.505 295.958 296.576 297.253 297.919 298.488 299.024 299.455 299.785 300.1 300.422 300.688 300.878 301.021 301.026 300.877 300.688 300.531 300.368 300.229 300.109 300.064 300.124 300.332 300.523 300.481 300.232 299.938 299.589 299.19 298.802 298.443 298.168 297.997 297.783 297.4 296.903 296.234 295.319 294.325 293.358 292.546 291.741 291.01 290.135 288.96 287.61 285.975 284.064 281.988 279.541 276.335 273.041 270.517 268.856 267.893 267.397 266.925 265.734 263.366 260.859 259.758 258.752 256.507 254.847 252.876 249.252 245.584 244.501 244.995 245.151 245.472 247.084 247.563 247.823 247.396 246.612 245.547 245.146 245.121 245.145 244.88 244.482 243.602 242.605 242.198 235.771 237.847 240.865 243.982 247.043 248.911 249.192 248.297 247.053 245.633 244.281 243.938 245.975 250.905 261.975 268.95 272.891 273.596 273.754 274.192 274.602 275.249 276.043 276.915 278.23 279.736 281.115 282.31 283.448 284.499 285.466 286.62 287.868 288.992 290.064 290.97 291.898 293.058 294.06 294.8 295.292 295.605 295.883 296.243 296.709 297.253 297.801 298.334 298.95 299.438 299.815 300.167 300.475 300.688 300.861 301.061 301.117 300.925 300.662 300.524 300.503 300.458 300.288 300.128 300.07 300.229 300.454 300.455 300.199 299.898 299.578 299.183 298.776 298.427 298.154 297.949 297.729 297.364 296.843 296.171 295.29 294.284 293.28 292.499 291.714 290.95 290.116 289.027 287.705 286.097 284.212 282.071 279.493 276.288 273.268 271.074 269.664 268.843 268.269 267.429 265.68 262.971 260.192 257.643 257.747 256.939 255.512 254.105 250.047 246.308 244.909 245.199 245.234 245.47 247.149 248.361 248.001 247.553 246.663 245.627 245.175 245.13 245.079 244.808 244.398 243.542 242.58 242.181 235.774 237.962 241.197 244.46 247.719 249.686 250.087 249.414 248.36 247.06 245.621 244.821 246.458 251.51 263.033 269.577 273.052 273.665 273.927 274.391 274.789 275.451 276.231 277.129 278.521 280.014 281.319 282.491 283.599 284.566 285.464 286.584 287.818 288.934 289.974 290.84 291.706 292.691 293.578 294.375 295.033 295.465 295.789 296.149 296.624 297.191 297.798 298.405 298.967 299.387 299.769 300.175 300.521 300.727 300.895 301.06 301.075 300.878 300.631 300.559 300.631 300.615 300.376 300.111 299.988 300.14 300.399 300.431 300.153 299.834 299.56 299.19 298.74 298.369 298.117 297.912 297.694 297.348 296.799 296.092 295.227 294.23 293.219 292.464 291.702 290.896 290.083 289.083 287.802 286.21 284.324 282.103 279.41 276.314 273.603 271.657 270.359 269.564 268.896 267.762 265.534 261.655 258.583 256.4 255.575 256.443 256.365 254.859 251.19 247.397 245.867 245.575 245.315 245.46 247.789 248.392 248.261 247.904 246.897 245.807 245.253 245.114 245.029 244.687 244.311 243.493 242.547 242.168 235.83 238.042 241.386 244.889 248.295 250.462 250.926 250.482 249.661 248.555 247.034 245.888 247.152 252.333 263.95 270.156 273.228 273.759 274.099 274.565 274.957 275.622 276.378 277.317 278.79 280.277 281.523 282.645 283.693 284.629 285.538 286.627 287.809 288.941 290.001 290.864 291.675 292.48 293.21 294.016 294.777 295.259 295.623 296.096 296.686 297.302 297.906 298.453 298.894 299.241 299.657 300.145 300.525 300.72 300.879 301.022 301.026 300.899 300.736 300.661 300.679 300.599 300.308 299.991 299.875 300.064 300.341 300.396 300.126 299.78 299.495 299.143 298.697 298.321 298.089 297.881 297.645 297.315 296.799 296.096 295.224 294.218 293.192 292.426 291.685 290.857 290.014 289.076 287.899 286.361 284.444 282.116 279.329 276.419 273.972 272.191 270.927 270.111 269.42 268.366 266.226 263.081 259.166 256.241 255.069 256.248 256.947 255.532 252.21 248.51 247.016 246.177 245.44 245.74 248.316 248.198 248.439 248.274 247.166 245.993 245.337 245.12 244.961 244.643 244.262 243.437 242.522 242.158 235.913 238.204 241.679 245.288 248.886 251.192 251.707 251.427 250.981 250.141 248.564 247.119 248.04 254.619 264.56 270.742 273.399 273.857 274.258 274.727 275.117 275.78 276.513 277.507 279.05 280.516 281.71 282.761 283.736 284.685 285.647 286.725 287.88 289.012 290.051 290.874 291.635 292.352 293.002 293.802 294.599 295.108 295.538 296.1 296.723 297.32 297.88 298.393 298.808 299.142 299.59 300.134 300.522 300.68 300.82 300.986 301.063 301.019 300.879 300.749 300.719 300.612 300.323 299.96 299.816 300.007 300.287 300.367 300.133 299.777 299.438 299.068 298.633 298.263 298.045 297.84 297.588 297.266 296.793 296.107 295.231 294.236 293.198 292.392 291.645 290.833 289.939 289.001 287.909 286.432 284.477 282.083 279.266 276.501 274.249 272.626 271.401 270.565 269.94 269.202 267.763 264.974 261.575 257.058 255.848 256.491 257.216 256.135 252.725 249.552 248.001 246.798 245.887 246.205 248.467 248.126 248.531 248.531 247.391 246.201 245.44 245.129 244.916 244.611 244.208 243.38 242.518 242.148 235.994 238.447 241.981 245.772 249.44 251.901 252.464 252.307 252.244 251.655 250.204 248.543 249.125 256.745 265.438 271.305 273.547 273.944 274.406 274.879 275.272 275.935 276.671 277.747 279.331 280.749 281.876 282.843 283.755 284.735 285.753 286.84 288.011 289.14 290.11 290.855 291.585 292.289 292.925 293.7 294.474 294.999 295.477 296.065 296.692 297.265 297.787 298.309 298.77 299.122 299.537 300.086 300.497 300.647 300.757 300.946 301.126 301.161 300.997 300.816 300.765 300.664 300.382 299.983 299.793 299.963 300.238 300.331 300.126 299.786 299.407 299.016 298.578 298.187 297.966 297.787 297.545 297.226 296.766 296.06 295.17 294.216 293.2 292.349 291.579 290.799 289.881 288.921 287.886 286.464 284.469 282.047 279.253 276.547 274.416 272.904 271.751 270.948 270.436 270.098 269.388 267.581 264.258 260.851 257.632 257.675 257.302 256.147 253.05 250.469 248.675 247.386 246.484 247.022 248.493 248.211 248.586 248.639 247.547 246.295 245.541 245.171 244.907 244.575 244.145 243.317 242.523 242.137 236.021 238.567 242.22 246.204 250.024 252.623 253.192 253.136 254.455 256.013 253.26 250.199 250.492 258.05 266.536 271.849 273.657 274.003 274.536 275.027 275.446 276.117 276.908 278.092 279.669 280.988 282.011 282.91 283.789 284.78 285.818 286.92 288.134 289.279 290.184 290.848 291.536 292.257 292.93 293.691 294.406 294.941 295.451 296.015 296.644 297.223 297.712 298.235 298.765 299.118 299.413 299.89 300.371 300.599 300.695 300.881 301.132 301.218 301.047 300.868 300.81 300.67 300.365 299.971 299.773 299.939 300.217 300.289 300.078 299.759 299.387 299.003 298.567 298.131 297.867 297.714 297.507 297.192 296.723 295.972 295.046 294.137 293.168 292.281 291.478 290.723 289.816 288.849 287.849 286.471 284.471 282.064 279.327 276.651 274.598 273.162 272.078 271.291 270.811 270.618 270.496 269.761 267.483 264.124 261.626 260.152 258.163 255.444 253.49 251.276 249.17 247.877 247.018 247.34 248.514 248.372 248.612 248.559 247.579 246.275 245.654 245.205 244.92 244.461 244.055 243.248 242.525 242.128 236.038 238.659 242.508 246.65 250.579 253.274 253.869 253.802 256.527 257.538 255.858 252.244 252.181 259.515 267.532 272.25 273.689 274.024 274.635 275.158 275.614 276.304 277.171 278.441 279.973 281.159 282.074 282.954 283.839 284.827 285.852 286.896 288.064 289.21 290.175 290.888 291.527 292.193 292.912 293.715 294.399 294.925 295.451 295.999 296.627 297.226 297.688 298.157 298.695 299.062 299.324 299.716 300.185 300.473 300.623 300.823 301.062 301.147 301.005 300.881 300.841 300.651 300.343 299.99 299.803 299.954 300.222 300.281 300.065 299.744 299.345 298.958 298.558 298.124 297.814 297.636 297.419 297.095 296.655 295.943 295.002 294.069 293.107 292.202 291.367 290.606 289.703 288.735 287.755 286.416 284.492 282.168 279.511 276.858 274.823 273.411 272.381 271.612 271.133 270.959 271.057 270.875 269.704 267.512 264.813 262.107 259.137 255.636 253.667 251.792 249.852 248.289 247.586 248.22 248.627 248.618 248.647 248.422 247.462 246.202 245.73 245.231 244.907 244.403 243.975 243.184 242.511 242.12 236.071 238.769 242.771 247.064 251.135 253.768 254.376 254.357 257.573 258.917 257.499 254.476 254.14 261.997 268.443 272.537 273.679 274.037 274.722 275.28 275.772 276.482 277.412 278.731 280.201 281.271 282.112 282.983 283.883 284.921 285.938 286.851 287.859 288.943 290.039 290.927 291.581 292.171 292.916 293.753 294.389 294.875 295.406 295.952 296.576 297.193 297.63 298.026 298.58 298.977 299.287 299.623 299.999 300.311 300.558 300.789 300.985 301.061 300.96 300.873 300.845 300.64 300.34 300.005 299.813 299.947 300.206 300.261 300.061 299.75 299.32 298.915 298.538 298.115 297.776 297.574 297.34 296.994 296.58 295.924 294.987 294.003 293.013 292.117 291.289 290.524 289.618 288.623 287.593 286.248 284.438 282.274 279.751 277.128 275.073 273.644 272.643 271.893 271.425 271.259 271.43 271.482 270.878 269.603 267.67 264.261 259.932 255.876 253.935 252.144 250.256 248.598 247.807 248.507 248.647 248.828 248.732 248.322 247.177 246.076 245.714 245.2 244.868 244.411 243.876 243.124 242.489 242.111 236.184 238.91 243.097 247.511 251.701 254.234 254.73 254.733 257.752 260.231 259.382 256.28 256.242 263.855 269.307 272.734 273.649 274.061 274.811 275.392 275.918 276.646 277.615 278.946 280.351 281.347 282.159 283.011 283.901 285.019 285.99 286.18 287.636 288.594 289.823 290.945 291.677 292.209 292.959 293.812 294.372 294.805 295.339 295.889 296.504 297.118 297.537 297.884 298.414 298.876 299.258 299.566 299.843 300.168 300.521 300.767 300.92 301.013 300.957 300.876 300.828 300.617 300.301 299.947 299.762 299.915 300.18 300.227 300.037 299.753 299.323 298.914 298.54 298.114 297.747 297.527 297.294 296.943 296.527 295.889 294.953 293.921 292.886 291.994 291.186 290.431 289.543 288.536 287.428 286.036 284.335 282.329 279.927 277.312 275.284 273.856 272.87 272.172 271.747 271.615 271.798 271.897 271.513 270.687 269.177 265.916 260.826 256.101 254.181 252.35 250.543 248.841 248.26 248.655 248.547 248.887 248.74 248.229 246.952 245.923 245.562 245.088 244.809 244.368 243.771 243.076 242.471 242.097 236.183 239.026 243.241 247.884 252.198 254.632 255.05 255.06 258.138 261.542 261.615 258.601 258.527 265.536 270.174 272.877 273.621 274.117 274.913 275.498 276.058 276.803 277.775 279.068 280.415 281.394 282.241 283.077 283.921 284.995 286.031 285.867 287.24 288.411 289.663 290.937 291.747 292.296 293.057 293.879 294.36 294.771 295.312 295.852 296.449 297.032 297.429 297.811 298.311 298.801 299.226 299.545 299.78 300.131 300.531 300.727 300.864 301.009 300.99 300.895 300.842 300.626 300.251 299.838 299.674 299.876 300.175 300.219 300.022 299.751 299.342 298.939 298.563 298.146 297.751 297.482 297.25 296.928 296.503 295.842 294.905 293.842 292.747 291.823 291.017 290.278 289.427 288.446 287.28 285.836 284.225 282.366 280.056 277.532 275.522 274.079 273.081 272.445 272.135 272.137 272.291 272.275 271.912 271.258 269.996 266.806 261.495 256.495 254.227 252.179 250.744 249.182 248.632 248.544 248.401 248.889 248.683 248.177 246.89 245.802 245.369 244.942 244.757 244.285 243.697 243.04 242.452 242.082 236.204 239.148 243.525 248.291 252.648 254.999 255.273 255.284 258.646 262.507 263.444 261.574 262.124 267.024 270.859 272.967 273.62 274.2 275.0 275.574 276.164 276.921 277.86 279.084 280.384 281.391 282.263 283.098 283.958 285.01 286.162 286.527 286.972 288.72 289.899 291.02 291.802 292.474 293.279 293.985 294.381 294.811 295.343 295.814 296.376 296.953 297.355 297.766 298.3 298.814 299.259 299.595 299.834 300.188 300.551 300.706 300.842 300.994 300.958 300.897 300.899 300.684 300.224 299.74 299.57 299.788 300.12 300.208 300.035 299.759 299.343 298.917 298.531 298.166 297.794 297.456 297.173 296.877 296.462 295.784 294.855 293.776 292.614 291.635 290.792 290.025 289.199 288.286 287.13 285.671 284.129 282.385 280.156 277.773 275.772 274.307 273.309 272.758 272.556 272.63 272.777 272.684 272.2 271.562 270.46 267.379 262.108 257.008 254.328 252.276 250.955 249.38 248.766 248.449 248.171 248.8 248.548 248.141 246.916 245.77 245.149 244.736 244.711 244.21 243.624 243.0 242.438 242.069 236.304 239.293 243.794 248.66 253.067 255.305 255.454 255.512 259.05 263.205 264.653 264.375 265.172 268.325 271.389 273.029 273.64 274.283 275.07 275.639 276.255 277.022 277.909 279.053 280.298 281.322 282.2 283.041 283.957 285.096 286.296 287.434 287.827 288.604 290.232 291.254 291.992 292.832 293.664 294.188 294.445 294.846 295.332 295.762 296.316 296.908 297.333 297.773 298.332 298.851 299.289 299.635 299.903 300.249 300.559 300.711 300.854 300.956 300.896 300.906 300.955 300.7 300.147 299.614 299.448 299.687 300.049 300.173 300.02 299.748 299.338 298.896 298.492 298.153 297.807 297.433 297.115 296.833 296.423 295.737 294.797 293.677 292.461 291.462 290.623 289.834 289.007 288.144 287.022 285.565 284.039 282.334 280.193 277.991 276.001 274.505 273.539 273.093 272.987 273.062 273.107 272.941 272.43 271.747 270.705 267.916 262.529 258.109 254.571 252.428 251.195 249.395 248.631 248.684 247.907 248.568 248.408 248.047 246.945 245.785 244.947 244.541 244.616 244.228 243.557 242.948 242.425 242.057 236.409 239.406 244.033 249.042 253.433 255.57 255.557 255.674 260.366 263.66 265.468 265.942 266.925 269.424 271.789 273.065 273.673 274.362 275.128 275.701 276.344 277.107 277.935 278.997 280.166 281.177 282.064 282.922 283.866 285.116 286.358 287.714 288.911 288.958 290.148 291.592 292.341 293.32 294.127 294.428 294.513 294.833 295.272 295.735 296.329 296.925 297.358 297.814 298.367 298.873 299.298 299.667 299.982 300.307 300.559 300.72 300.869 300.911 300.859 300.951 301.008 300.683 300.058 299.494 299.332 299.615 300.014 300.15 299.993 299.718 299.323 298.891 298.473 298.121 297.77 297.385 297.059 296.787 296.381 295.707 294.761 293.578 292.3 291.286 290.47 289.674 288.853 288.036 286.952 285.517 283.978 282.238 280.161 278.123 276.173 274.681 273.792 273.424 273.379 273.408 273.305 273.065 272.564 271.876 270.836 268.497 263.583 258.768 255.127 252.513 251.351 249.565 248.498 248.568 247.453 248.262 248.296 247.959 246.977 245.898 244.894 244.365 244.487 244.207 243.484 242.899 242.404 242.044 236.414 239.495 244.258 249.504 253.775 255.741 255.556 255.709 260.713 263.879 265.971 266.911 268.12 270.292 272.078 273.079 273.707 274.441 275.174 275.769 276.438 277.17 277.926 278.897 279.968 280.926 281.825 282.719 283.671 284.976 286.332 287.757 289.278 290.365 290.772 291.033 292.412 292.841 293.862 294.519 294.507 294.754 295.194 295.753 296.394 296.949 297.384 297.865 298.39 298.869 299.315 299.739 300.091 300.365 300.534 300.689 300.831 300.831 300.837 300.977 300.99 300.61 299.985 299.39 299.183 299.511 299.975 300.145 300.0 299.705 299.301 298.877 298.463 298.095 297.721 297.314 296.978 296.706 296.307 295.677 294.755 293.51 292.17 291.12 290.302 289.502 288.705 287.922 286.875 285.496 283.947 282.144 280.153 278.25 276.354 274.865 274.053 273.74 273.736 273.681 273.438 273.139 272.686 272.012 271.064 269.088 264.659 259.242 256.017 253.058 251.697 249.744 248.373 248.409 246.948 247.939 248.308 247.929 247.023 246.044 244.846 244.208 244.357 244.139 243.423 242.842 242.38 242.032 236.388 239.613 244.491 249.849 254.084 255.884 255.527 255.67 260.766 263.904 266.164 267.377 268.81 270.752 272.202 273.069 273.743 274.498 275.194 275.825 276.501 277.187 277.877 278.758 279.738 280.642 281.558 282.491 283.457 284.738 286.142 287.574 289.156 290.485 290.996 290.141 290.456 293.483 294.174 294.301 294.411 294.69 295.155 295.77 296.375 296.876 297.357 297.891 298.398 298.853 299.318 299.795 300.151 300.352 300.476 300.65 300.78 300.763 300.796 300.901 300.823 300.426 299.848 299.225 298.977 299.338 299.87 300.104 300.017 299.745 299.323 298.874 298.448 298.084 297.72 297.291 296.914 296.631 296.233 295.628 294.712 293.432 292.077 290.989 290.116 289.283 288.511 287.752 286.754 285.467 283.931 282.073 280.185 278.374 276.56 275.125 274.349 274.015 273.994 273.936 273.617 273.262 272.853 272.203 271.329 269.634 265.61 260.064 257.069 253.767 252.188 250.083 248.444 248.262 246.787 247.663 248.35 247.995 247.149 246.108 244.822 244.152 244.31 244.128 243.314 242.788 242.356 242.019 236.432 239.75 244.697 250.174 254.376 255.995 255.423 255.528 260.776 263.846 266.149 267.512 269.164 270.954 272.228 273.058 273.776 274.528 275.194 275.865 276.533 277.175 277.815 278.619 279.516 280.376 281.308 282.271 283.245 284.504 285.927 287.38 288.954 290.372 291.512 291.77 291.43 293.545 293.824 294.026 294.291 294.637 295.134 295.754 296.303 296.791 297.337 297.919 298.409 298.857 299.273 299.636 300.171 300.307 300.412 300.625 300.787 300.778 300.803 300.838 300.668 300.264 299.699 299.046 298.808 299.222 299.799 300.067 300.013 299.764 299.366 298.907 298.446 298.063 297.71 297.267 296.86 296.573 296.195 295.595 294.651 293.34 291.993 290.895 289.993 289.125 288.346 287.583 286.611 285.42 283.923 282.048 280.256 278.511 276.777 275.454 274.689 274.302 274.217 274.145 273.866 273.522 273.082 272.448 271.602 269.992 266.347 260.63 257.889 254.524 252.847 250.418 248.684 248.174 246.941 247.662 248.51 248.11 247.2 246.167 244.885 244.179 244.282 244.077 243.178 242.729 242.329 242.007 236.513 239.857 244.913 250.497 254.646 256.05 255.314 255.558 260.736 263.724 265.993 267.437 269.261 270.965 272.188 273.053 273.789 274.518 275.183 275.888 276.539 277.15 277.763 278.507 279.333 280.155 281.092 282.059 283.027 284.302 285.778 287.285 288.842 290.242 291.451 292.214 292.642 293.053 293.519 293.809 294.164 294.559 295.095 295.699 296.223 296.734 297.332 297.932 298.414 298.894 299.334 299.748 300.181 300.262 300.34 300.589 300.807 300.832 300.838 300.813 300.589 300.193 299.596 298.89 298.673 299.136 299.744 300.042 299.993 299.743 299.386 298.944 298.458 298.046 297.702 297.238 296.79 296.491 296.143 295.565 294.611 293.278 291.932 290.814 289.891 288.999 288.214 287.448 286.497 285.386 283.945 282.105 280.42 278.739 277.091 275.861 275.085 274.623 274.453 274.349 274.108 273.802 273.363 272.712 271.856 270.232 266.693 261.212 258.411 255.811 253.453 250.862 249.05 247.428 247.481 247.91 248.731 248.17 247.19 246.282 244.979 244.204 244.274 243.999 243.026 242.663 242.3 241.995 236.581 239.97 245.124 250.779 254.863 256.043 255.26 255.588 260.696 263.458 265.736 267.185 269.05 270.772 272.067 273.041 273.772 274.468 275.171 275.897 276.522 277.12 277.738 278.448 279.225 280.022 280.936 281.866 282.823 284.173 285.774 287.355 288.843 290.15 291.33 292.153 292.69 293.052 293.34 293.672 294.014 294.411 294.968 295.561 296.103 296.687 297.306 297.871 298.395 298.935 299.391 299.815 300.149 300.223 300.282 300.518 300.758 300.82 300.822 300.763 300.541 300.166 299.511 298.754 298.533 298.99 299.634 300.016 299.989 299.712 299.37 298.956 298.472 298.062 297.749 297.261 296.726 296.371 296.038 295.514 294.593 293.257 291.89 290.732 289.796 288.893 288.104 287.331 286.388 285.34 283.983 282.246 280.669 279.053 277.444 276.302 275.581 275.06 274.744 274.563 274.332 274.03 273.59 272.983 272.077 270.345 266.724 261.891 259.027 256.553 254.667 251.363 249.553 247.78 248.405 248.235 248.909 248.214 247.202 246.393 245.07 244.22 244.277 243.902 242.88 242.604 242.266 241.978 236.657 240.039 245.311 251.063 255.042 256.004 255.206 255.729 260.674 263.092 265.485 266.924 268.626 270.496 271.892 273.003 273.723 274.403 275.16 275.887 276.492 277.099 277.741 278.441 279.221 280.033 280.914 281.775 282.717 284.151 285.864 287.469 288.834 290.039 291.169 291.973 292.481 292.835 293.178 293.555 293.9 294.299 294.832 295.37 295.935 296.609 297.257 297.793 298.354 298.907 299.334 299.718 300.059 300.193 300.274 300.46 300.636 300.711 300.755 300.713 300.511 300.114 299.406 298.646 298.43 298.871 299.545 299.991 300.0 299.714 299.376 298.969 298.489 298.078 297.777 297.3 296.723 296.302 295.944 295.462 294.586 293.237 291.826 290.61 289.676 288.794 288.022 287.232 286.269 285.246 283.975 282.423 280.938 279.38 277.838 276.754 276.043 275.548 275.169 274.826 274.525 274.201 273.766 273.188 272.256 270.278 266.592 262.395 259.743 257.569 255.459 251.869 249.617 247.807 248.615 248.28 248.981 248.221 247.236 246.436 245.138 244.275 244.307 243.779 242.745 242.534 242.228 241.958 236.546 240.169 245.492 251.324 255.227 255.947 255.222 255.938 260.523 262.791 265.284 266.775 268.242 270.206 271.693 272.911 273.65 274.335 275.137 275.865 276.458 277.079 277.738 278.429 279.236 280.098 280.971 281.771 282.702 284.203 285.967 287.544 288.815 289.908 290.983 291.775 292.263 292.613 293.013 293.467 293.877 294.288 294.772 295.249 295.825 296.552 297.215 297.733 298.307 298.866 299.287 299.665 299.993 300.153 300.254 300.4 300.524 300.605 300.694 300.697 300.519 300.079 299.317 298.544 298.321 298.767 299.485 299.969 299.99 299.706 299.378 298.986 298.513 298.07 297.73 297.277 296.726 296.27 295.898 295.462 294.632 293.257 291.787 290.495 289.55 288.704 287.985 287.196 286.182 285.081 283.863 282.529 281.136 279.622 278.209 277.17 276.461 275.974 275.567 275.138 274.725 274.344 273.912 273.345 272.302 270.108 266.281 262.72 260.382 258.347 256.398 252.374 249.903 248.011 248.362 248.412 248.92 248.197 247.183 246.426 245.163 244.389 244.314 243.665 242.622 242.471 242.184 241.937 236.599 240.27 245.647 251.551 255.35 255.879 255.236 256.2 260.338 262.694 265.183 266.706 268.014 269.945 271.493 272.762 273.54 274.253 275.093 275.826 276.416 277.05 277.71 278.39 279.222 280.145 281.048 281.833 282.77 284.314 286.082 287.633 288.847 289.818 290.804 291.583 292.082 292.46 292.896 293.43 293.928 294.351 294.784 295.236 295.823 296.534 297.145 297.639 298.232 298.823 299.282 299.678 299.961 300.09 300.192 300.339 300.457 300.547 300.647 300.672 300.513 300.046 299.248 298.444 298.178 298.63 299.411 299.945 299.983 299.704 299.365 298.983 298.539 298.075 297.675 297.244 296.732 296.242 295.861 295.493 294.74 293.368 291.835 290.43 289.431 288.602 287.933 287.167 286.134 284.931 283.675 282.472 281.182 279.753 278.502 277.521 276.807 276.317 275.88 275.384 274.918 274.509 274.05 273.466 272.232 269.791 265.85 262.868 260.765 258.994 256.791 252.926 250.497 248.371 248.387 248.437 248.862 248.179 247.123 246.348 245.152 244.533 244.275 243.591 242.562 242.415 242.14 241.916 236.668 240.363 245.8 251.745 255.44 255.801 255.273 256.468 260.124 262.736 265.194 266.809 268.108 269.818 271.29 272.545 273.364 274.113 274.998 275.743 276.351 276.994 277.632 278.302 279.158 280.118 281.076 281.925 282.917 284.474 286.215 287.75 288.939 289.815 290.658 291.384 291.928 292.363 292.848 293.445 293.981 294.418 294.855 295.355 295.965 296.565 297.029 297.487 298.101 298.755 299.291 299.706 299.947 300.018 300.129 300.322 300.481 300.584 300.643 300.614 300.437 299.966 299.172 298.353 298.043 298.472 299.313 299.918 300.018 299.753 299.367 298.962 298.569 298.123 297.681 297.262 296.761 296.216 295.816 295.516 294.866 293.564 291.982 290.438 289.344 288.505 287.839 287.077 286.06 284.787 283.461 282.334 281.152 279.811 278.708 277.839 277.106 276.564 276.083 275.556 275.088 274.664 274.212 273.54 272.122 269.344 265.433 262.974 261.204 259.474 256.727 253.603 250.583 248.978 248.631 248.523 248.833 248.221 247.04 246.222 245.22 244.662 244.235 243.599 242.524 242.357 242.111 241.891 236.738 240.413 245.969 251.918 255.503 255.687 255.315 256.711 259.986 262.874 265.213 266.913 268.317 269.924 271.192 272.342 273.159 273.932 274.847 275.609 276.257 276.914 277.522 278.197 279.068 280.017 281.013 281.97 283.028 284.541 286.226 287.736 288.933 289.802 290.554 291.214 291.766 292.257 292.793 293.401 293.94 294.401 294.911 295.492 296.091 296.604 296.998 297.438 298.04 298.685 299.256 299.68 299.926 300.02 300.16 300.364 300.556 300.683 300.703 300.614 300.396 299.876 299.07 298.295 298.002 298.412 299.241 299.868 300.028 299.802 299.392 298.966 298.598 298.175 297.709 297.279 296.772 296.205 295.795 295.506 294.927 293.772 292.228 290.571 289.325 288.419 287.699 286.898 285.915 284.628 283.246 282.173 281.103 279.897 278.9 278.097 277.376 276.782 276.221 275.677 275.225 274.776 274.333 273.591 271.974 268.792 265.235 263.174 261.623 259.617 257.167 254.335 251.67 250.0 249.049 248.754 248.815 248.28 246.987 246.109 245.287 244.746 244.259 243.595 242.502 242.302 242.092 241.864 236.863 240.491 246.11 252.07 255.539 255.58 255.38 256.952 259.904 262.99 265.282 267.036 268.493 270.016 271.139 272.173 272.953 273.734 274.664 275.445 276.139 276.82 277.409 278.105 278.984 279.895 280.906 281.959 283.052 284.487 286.085 287.54 288.743 289.65 290.402 291.039 291.59 292.134 292.704 293.301 293.847 294.36 294.959 295.574 296.149 296.639 297.044 297.489 298.059 298.648 299.2 299.633 299.894 300.021 300.17 300.368 300.586 300.731 300.728 300.619 300.386 299.819 298.982 298.241 297.976 298.369 299.185 299.832 300.02 299.82 299.403 298.97 298.623 298.224 297.751 297.294 296.767 296.197 295.776 295.47 294.942 293.938 292.48 290.762 289.353 288.322 287.537 286.715 285.775 284.496 283.096 282.046 281.075 280.013 279.089 278.314 277.614 276.97 276.349 275.797 275.318 274.819 274.363 273.595 271.778 268.148 265.229 263.554 262.082 260.136 257.562 254.745 252.97 251.166 249.591 248.89 248.771 248.301 246.961 245.978 245.256 244.839 244.243 243.544 242.478 242.247 242.077 241.835 236.808 240.603 246.266 252.218 255.539 255.495 255.394 257.117 259.866 263.136 265.41 267.1 268.563 270.047 271.086 272.019 272.761 273.527 274.458 275.261 276.001 276.713 277.311 278.04 278.915 279.783 280.799 281.912 283.001 284.337 285.828 287.224 288.429 289.378 290.172 290.832 291.421 292.025 292.617 293.194 293.743 294.311 294.987 295.61 296.164 296.665 297.105 297.57 298.104 298.637 299.143 299.571 299.846 300.002 300.149 300.34 300.562 300.693 300.669 300.577 300.352 299.769 298.912 298.193 297.937 298.308 299.137 299.837 300.043 299.836 299.402 298.962 298.638 298.275 297.821 297.336 296.775 296.191 295.732 295.393 294.935 294.103 292.747 291.015 289.447 288.252 287.387 286.593 285.732 284.501 283.152 282.077 281.104 280.142 279.257 278.467 277.795 277.148 276.487 275.924 275.378 274.773 274.319 273.516 271.524 267.577 265.368 264.064 262.609 260.818 258.103 255.595 253.958 252.071 250.081 248.976 248.734 248.241 246.906 245.795 245.114 244.922 244.195 243.469 242.436 242.201 242.064 241.806 236.773 240.726 246.364 252.355 255.504 255.437 255.465 257.249 259.981 263.245 265.501 267.095 268.512 270.008 271.011 271.865 272.57 273.311 274.229 275.058 275.842 276.596 277.235 278.004 278.864 279.702 280.716 281.838 282.876 284.103 285.504 286.87 288.09 289.066 289.885 290.59 291.258 291.937 292.55 293.119 293.656 294.246 294.971 295.601 296.131 296.633 297.103 297.583 298.107 298.617 299.095 299.516 299.832 300.058 300.208 300.343 300.48 300.565 300.551 300.502 300.299 299.692 298.814 298.133 297.894 298.23 299.06 299.834 300.085 299.87 299.421 298.971 298.645 298.31 297.886 297.384 296.8 296.195 295.669 295.285 294.905 294.236 293.004 291.328 289.672 288.303 287.294 286.493 285.695 284.534 283.278 282.174 281.15 280.232 279.375 278.576 277.922 277.3 276.64 276.067 275.447 274.356 274.212 273.342 271.191 267.354 265.559 264.487 263.088 261.384 259.266 256.402 254.603 252.573 250.409 249.104 248.67 248.193 246.745 245.59 244.904 244.939 244.14 243.355 242.384 242.157 242.052 241.789 236.824 240.787 246.503 252.438 255.47 255.379 255.421 257.315 260.123 263.324 265.67 267.045 268.406 269.898 270.872 271.745 272.421 273.137 274.045 274.908 275.727 276.508 277.188 277.985 278.847 279.674 280.669 281.737 282.707 283.895 285.283 286.662 287.896 288.874 289.688 290.409 291.125 291.845 292.469 293.063 293.607 294.196 294.897 295.495 296.006 296.514 297.017 297.523 298.059 298.583 299.075 299.51 299.89 300.198 300.345 300.38 300.41 300.469 300.504 300.529 300.344 299.669 298.731 298.071 297.86 298.174 298.976 299.782 300.083 299.896 299.472 299.029 298.679 298.338 297.931 297.408 296.814 296.212 295.652 295.226 294.881 294.306 293.221 291.744 290.128 288.612 287.343 286.402 285.595 284.503 283.352 282.229 281.182 280.296 279.448 278.663 278.028 277.432 276.796 276.212 275.544 274.629 273.737 273.107 270.777 267.419 265.799 264.754 263.423 261.757 260.006 256.989 255.032 252.896 250.765 249.22 248.541 248.131 246.529 245.366 244.74 244.878 244.1 243.224 242.328 242.116 242.037 241.781 236.892 240.833 246.593 252.538 255.417 255.321 255.469 257.317 260.037 263.296 265.798 267.05 268.283 269.714 270.676 271.641 272.303 272.987 273.898 274.807 275.655 276.454 277.163 277.984 278.856 279.684 280.643 281.61 282.521 283.729 285.132 286.509 287.745 288.729 289.548 290.27 290.993 291.704 292.329 292.954 293.544 294.147 294.808 295.355 295.848 296.379 296.925 297.447 297.972 298.504 299.025 299.479 299.874 300.216 300.383 300.397 300.389 300.443 300.511 300.566 300.386 299.69 298.738 298.083 297.868 298.151 298.932 299.758 300.086 299.908 299.503 299.063 298.69 298.354 297.983 297.449 296.83 296.232 295.667 295.22 294.879 294.351 293.37 292.069 290.558 289.066 287.608 286.441 285.504 284.456 283.367 282.226 281.184 280.343 279.523 278.768 278.144 277.566 276.954 276.341 275.663 274.828 273.609 272.803 270.467 267.511 265.983 264.673 263.475 261.884 259.36 257.191 255.52 253.252 250.986 249.251 248.452 248.011 246.35 245.222 244.626 244.715 244.08 243.175 242.285 242.065 242.02 241.773 237.027 240.88 246.663 252.609 255.348 255.263 255.493 257.36 259.739 263.046 265.807 267.029 268.159 269.495 270.448 271.505 272.194 272.852 273.767 274.733 275.614 276.431 277.163 278.011 278.9 279.74 280.646 281.483 282.339 283.603 285.024 286.364 287.576 288.565 289.397 290.125 290.838 291.52 292.14 292.802 293.455 294.089 294.724 295.235 295.718 296.267 296.838 297.361 297.866 298.384 298.933 299.401 299.762 300.093 300.316 300.391 300.414 300.468 300.522 300.538 300.356 299.701 298.807 298.163 297.919 298.153 298.912 299.751 300.084 299.897 299.5 299.057 298.653 298.327 298.007 297.492 296.852 296.255 295.692 295.217 294.872 294.413 293.545 292.362 290.912 289.489 287.966 286.647 285.579 284.563 283.502 282.276 281.218 280.382 279.609 278.9 278.287 277.721 277.083 276.434 275.799 274.991 273.865 272.424 270.211 267.648 266.079 263.915 262.548 261.558 259.028 257.077 255.375 253.336 251.121 249.274 248.53 247.868 246.269 245.066 244.452 244.542 244.082 243.146 242.292 242.012 242.006 241.765 237.067 240.942 246.74 252.661 255.3 255.173 255.525 257.215 259.553 262.831 265.595 266.835 267.99 269.312 270.201 271.286 272.053 272.699 273.603 274.644 275.578 276.426 277.194 278.075 279.004 279.877 280.715 281.405 282.213 283.541 284.946 286.222 287.379 288.352 289.176 289.909 290.618 291.305 291.931 292.612 293.312 293.987 294.651 295.179 295.659 296.187 296.736 297.269 297.761 298.248 298.824 299.31 299.612 299.912 300.22 300.387 300.455 300.492 300.522 300.489 300.297 299.699 298.894 298.266 297.986 298.185 298.92 299.735 300.043 299.845 299.47 299.025 298.592 298.252 297.974 297.523 296.894 296.285 295.716 295.2 294.842 294.484 293.754 292.656 291.25 289.902 288.393 286.99 285.787 284.762 283.735 282.478 281.376 280.475 279.728 279.062 278.458 277.905 277.237 276.534 275.952 275.195 274.068 272.043 269.901 267.632 265.807 263.525 261.898 261.485 258.998 256.833 254.58 253.065 250.982 249.393 248.627 247.75 246.14 244.799 244.237 244.377 244.057 243.109 242.298 241.978 241.984 241.757 236.992 241.0 246.815 252.695 255.244 255.097 255.504 257.135 259.549 262.581 265.417 266.733 267.907 269.167 269.981 271.031 271.902 272.55 273.425 274.516 275.504 276.4 277.22 278.135 279.113 280.03 280.834 281.451 282.244 283.557 284.919 286.147 287.258 288.181 288.975 289.694 290.411 291.142 291.809 292.49 293.183 293.878 294.576 295.136 295.623 296.095 296.604 297.161 297.68 298.18 298.77 299.278 299.556 299.812 300.153 300.382 300.473 300.49 300.533 300.54 300.35 299.765 298.992 298.338 298.003 298.201 298.965 299.756 300.034 299.816 299.433 298.984 298.554 298.204 297.938 297.571 296.99 296.323 295.708 295.155 294.779 294.508 293.969 293.0 291.664 290.349 288.858 287.404 286.071 285.017 283.989 282.788 281.636 280.646 279.884 279.253 278.678 278.116 277.425 276.704 276.112 275.413 274.245 272.451 269.663 267.532 265.195 263.651 262.104 260.696 258.939 256.797 254.31 252.673 250.786 249.534 248.662 247.6 245.909 244.448 244.02 244.216 243.999 243.017 242.315 241.96 241.96 241.75 237.014 241.062 246.86 252.719 255.195 255.053 255.403 257.06 259.878 262.302 265.232 266.702 267.854 269.042 269.84 270.819 271.747 272.421 273.267 274.357 275.379 276.331 277.21 278.152 279.164 280.115 280.942 281.573 282.365 283.61 284.899 286.083 287.153 288.035 288.8 289.509 290.236 291.016 291.732 292.413 293.091 293.786 294.487 295.07 295.576 296.025 296.506 297.061 297.594 298.12 298.733 299.239 299.504 299.759 300.133 300.411 300.52 300.509 300.534 300.575 300.399 299.836 299.085 298.372 297.942 298.138 298.956 299.763 300.039 299.815 299.393 298.915 298.487 298.143 297.884 297.589 297.057 296.318 295.634 295.077 294.712 294.469 294.054 293.241 292.026 290.72 289.276 287.869 286.442 285.303 284.249 283.117 281.969 280.89 280.1 279.457 278.901 278.359 277.649 276.911 276.275 275.606 274.587 273.017 269.647 267.684 264.921 263.716 262.442 260.825 259.043 256.829 254.206 252.387 250.529 249.546 248.652 247.381 245.605 244.213 243.873 244.049 243.873 242.857 242.325 241.945 241.93 241.746 237.025 241.071 246.897 252.732 255.161 254.996 255.378 257.026 260.124 262.05 265.044 266.66 267.786 268.887 269.747 270.711 271.611 272.314 273.138 274.188 275.211 276.214 277.151 278.109 279.132 280.113 281.014 281.732 282.542 283.689 284.864 285.979 287.007 287.86 288.61 289.328 290.072 290.901 291.664 292.353 293.016 293.703 294.391 294.993 295.531 295.99 296.452 296.975 297.503 298.067 298.691 299.168 299.451 299.778 300.198 300.487 300.585 300.531 300.526 300.58 300.413 299.866 299.127 298.362 297.84 298.036 298.89 299.721 300.02 299.815 299.364 298.848 298.402 298.057 297.791 297.533 297.033 296.247 295.512 294.978 294.644 294.408 294.072 293.411 292.329 291.027 289.601 288.233 286.797 285.582 284.487 283.479 282.366 281.247 280.398 279.708 279.105 278.525 277.856 277.108 276.409 275.8 275.003 273.421 270.081 267.995 265.162 263.817 262.422 261.211 259.256 256.854 254.058 252.107 250.404 249.476 248.622 247.118 245.457 244.136 243.749 243.828 243.708 242.667 242.309 241.932 241.901 241.742 237.059 241.129 246.922 252.734 255.096 254.952 255.368 256.839 259.855 261.729 264.839 266.611 267.77 268.829 269.615 270.629 271.539 272.253 273.049 274.001 274.991 276.033 277.019 277.984 278.992 279.998 281.016 281.895 282.756 283.796 284.821 285.826 286.78 287.589 288.366 289.113 289.873 290.753 291.576 292.279 292.929 293.599 294.276 294.899 295.478 295.956 296.403 296.878 297.405 298.021 298.648 299.088 299.441 299.91 300.372 300.595 300.613 300.508 300.509 300.598 300.429 299.859 299.101 298.297 297.743 297.957 298.833 299.668 299.982 299.805 299.347 298.802 298.331 297.974 297.673 297.384 296.883 296.09 295.347 294.859 294.569 294.337 294.049 293.533 292.623 291.363 289.951 288.557 287.133 285.851 284.723 283.803 282.762 281.736 280.823 280.002 279.301 278.633 277.955 277.209 276.485 275.955 275.396 273.889 271.551 268.152 264.988 263.819 262.551 260.981 259.264 256.656 253.846 251.918 250.216 249.277 248.551 246.953 245.336 244.014 243.572 243.6 243.49 242.594 242.274 241.92 241.885 241.737 237.112 241.159 246.942 252.699 255.051 254.883 255.372 256.676 259.659 261.644 264.554 266.583 267.771 268.798 269.599 270.594 271.517 272.275 273.044 273.882 274.796 275.843 276.849 277.815 278.808 279.828 280.938 281.98 282.921 283.898 284.824 285.734 286.586 287.362 288.172 288.94 289.699 290.598 291.446 292.17 292.83 293.484 294.157 294.793 295.386 295.872 296.323 296.781 297.315 297.969 298.617 299.086 299.514 300.026 300.446 300.613 300.599 300.483 300.486 300.586 300.406 299.825 299.035 298.186 297.64 297.874 298.756 299.629 299.98 299.799 299.322 298.762 298.268 297.902 297.585 297.228 296.689 295.892 295.12 294.742 294.471 294.242 293.973 293.606 292.937 291.805 290.396 288.869 287.412 286.095 284.976 284.089 283.097 282.151 281.233 280.352 279.492 278.713 278.005 277.214 276.508 276.039 275.656 274.626 272.224 268.462 264.757 263.41 262.581 261.025 258.831 256.674 253.717 251.844 250.373 249.022 248.395 246.758 245.058 243.78 243.327 243.404 243.295 242.572 242.252 241.891 241.872 241.73 237.154 241.167 246.935 252.674 254.996 254.923 255.459 256.556 259.52 261.484 264.207 266.555 267.73 268.729 269.641 270.58 271.519 272.329 273.086 273.834 274.667 275.678 276.679 277.644 278.633 279.667 280.841 282.002 283.012 283.958 284.833 285.664 286.44 287.206 288.041 288.825 289.588 290.474 291.305 292.048 292.742 293.391 294.051 294.693 295.293 295.799 296.272 296.737 297.273 297.945 298.619 299.144 299.618 300.081 300.416 300.586 300.599 300.483 300.453 300.519 300.331 299.755 298.925 298.02 297.5 297.756 298.638 299.566 299.979 299.795 299.306 298.744 298.208 297.803 297.485 297.115 296.582 295.812 295.045 294.699 294.402 294.15 293.858 293.563 293.114 292.218 290.926 289.273 287.71 286.343 285.238 284.342 283.405 282.491 281.524 280.603 279.686 278.832 278.052 277.215 276.517 276.049 275.764 275.169 272.696 269.354 264.798 262.828 261.751 260.55 258.318 256.635 253.587 251.787 250.072 248.835 248.221 246.403 244.728 243.543 243.097 243.237 243.122 242.56 242.234 241.838 241.862 241.722 237.193 241.251 246.928 252.624 254.942 254.926 255.555 256.551 259.261 261.047 263.823 266.464 267.682 268.687 269.726 270.583 271.554 272.401 273.168 273.856 274.608 275.548 276.521 277.477 278.477 279.539 280.756 281.991 283.038 283.975 284.798 285.566 286.303 287.079 287.936 288.744 289.53 290.395 291.179 291.935 292.683 293.33 293.96 294.605 295.22 295.759 296.262 296.739 297.285 297.962 298.655 299.235 299.728 300.11 300.364 300.56 300.617 300.503 300.433 300.449 300.26 299.676 298.774 297.82 297.357 297.666 298.545 299.507 299.967 299.773 299.286 298.74 298.157 297.694 297.37 297.024 296.551 295.959 295.281 294.702 294.338 294.041 293.709 293.448 293.141 292.448 291.337 289.713 288.055 286.631 285.53 284.592 283.681 282.754 281.738 280.784 279.843 278.991 278.128 277.259 276.531 276.001 275.754 275.431 273.613 269.959 265.468 262.211 260.807 260.016 258.097 256.248 253.488 251.732 249.936 248.686 248.016 246.096 244.518 243.372 242.921 243.068 242.975 242.481 242.209 241.774 241.854 241.713 237.271 241.246 246.896 252.576 254.878 254.961 255.63 256.659 258.867 260.209 263.272 266.303 267.704 268.804 269.842 270.666 271.61 272.508 273.314 273.977 274.631 275.453 276.359 277.29 278.331 279.435 280.691 281.959 283.017 283.938 284.695 285.415 286.15 286.944 287.829 288.681 289.526 290.375 291.096 291.859 292.647 293.272 293.868 294.528 295.168 295.744 296.275 296.763 297.339 298.022 298.716 299.335 299.842 300.158 300.367 300.585 300.661 300.509 300.401 300.406 300.228 299.604 298.605 297.619 297.227 297.609 298.507 299.487 299.944 299.716 299.219 298.686 298.077 297.58 297.248 296.929 296.54 296.06 295.374 294.686 294.233 293.892 293.536 293.291 293.062 292.532 291.649 290.198 288.493 286.912 285.767 284.812 283.942 282.956 281.9 280.922 279.989 279.126 278.21 277.345 276.538 275.953 275.677 275.501 274.274 270.827 266.451 262.041 260.182 259.194 257.662 255.726 253.221 251.641 249.74 248.613 247.779 245.865 244.293 243.154 242.731 242.885 242.842 242.294 242.149 241.747 241.849 241.698 237.245 241.2 246.855 252.502 254.829 255.01 255.795 256.996 258.604 259.683 262.841 266.092 267.728 268.936 269.891 270.743 271.66 272.639 273.503 274.169 274.745 275.445 276.232 277.122 278.202 279.36 280.659 281.933 282.988 283.878 284.603 285.315 286.075 286.902 287.809 288.689 289.559 290.391 291.087 291.83 292.593 293.192 293.799 294.507 295.167 295.752 296.306 296.825 297.412 298.096 298.789 299.426 299.928 300.209 300.412 300.638 300.692 300.493 300.35 300.36 300.181 299.533 298.523 297.553 297.14 297.505 298.442 299.469 299.911 299.67 299.158 298.583 297.959 297.479 297.134 296.789 296.434 296.01 295.32 294.555 294.037 293.658 293.315 293.092 292.893 292.5 291.861 290.664 288.982 287.232 286.016 285.052 284.191 283.096 282.014 281.039 280.136 279.21 278.28 277.418 276.548 275.933 275.616 275.489 274.726 271.745 267.176 262.29 260.06 258.398 257.299 255.236 252.837 251.527 249.43 248.599 247.487 245.421 243.902 242.775 242.444 242.708 242.645 242.134 242.071 241.732 241.844 241.677 237.214 241.247 246.806 252.426 254.761 255.027 255.916 257.086 258.297 259.774 262.332 265.847 267.697 269.05 269.948 270.806 271.721 272.774 273.714 274.385 274.908 275.507 276.17 276.989 278.088 279.304 280.641 281.908 282.952 283.816 284.538 285.287 286.098 286.957 287.882 288.769 289.616 290.406 291.082 291.8 292.527 293.13 293.79 294.537 295.192 295.771 296.362 296.927 297.52 298.189 298.88 299.497 299.964 300.236 300.458 300.676 300.706 300.489 300.334 300.341 300.138 299.459 298.483 297.547 297.069 297.384 298.383 299.45 299.855 299.608 299.107 298.5 297.873 297.409 297.026 296.638 296.301 295.893 295.185 294.399 293.845 293.426 293.081 292.874 292.67 292.356 291.944 291.062 289.499 287.675 286.335 285.345 284.42 283.248 282.14 281.139 280.255 279.259 278.337 277.466 276.587 275.958 275.59 275.432 274.969 272.468 268.008 261.444 258.932 257.919 257.212 255.007 252.56 251.43 249.07 248.542 247.026 244.955 243.518 242.4 242.174 242.567 242.429 242.005 241.977 241.719 241.835 241.649 237.267 241.286 246.753 252.324 254.695 255.098 256.013 256.882 257.963 259.593 261.737 265.529 267.669 269.154 270.009 270.856 271.784 272.907 273.929 274.623 275.117 275.623 276.174 276.898 277.998 279.267 280.628 281.879 282.9 283.742 284.479 285.298 286.174 287.06 288.005 288.897 289.699 290.431 291.071 291.759 292.476 293.121 293.837 294.588 295.22 295.792 296.419 297.047 297.66 298.318 298.992 299.549 299.958 300.26 300.534 300.723 300.7 300.48 300.341 300.35 300.111 299.388 298.436 297.515 296.969 297.267 298.353 299.444 299.783 299.511 299.029 298.421 297.815 297.363 296.923 296.495 296.177 295.763 295.034 294.24 293.643 293.167 292.812 292.622 292.421 292.155 291.849 291.172 289.854 288.25 286.835 285.692 284.621 283.437 282.295 281.267 280.316 279.3 278.41 277.522 276.664 276.02 275.605 275.369 275.041 273.142 268.09 261.814 258.109 257.298 256.9 254.799 252.455 251.414 248.779 248.404 246.696 244.646 243.196 242.15 241.988 242.433 242.176 241.902 241.916 241.698 241.817 241.603 237.29 241.238 246.685 252.199 254.627 255.116 256.066 256.659 257.495 259.047 261.005 265.129 267.708 269.246 270.09 270.87 271.847 273.048 274.153 274.908 275.406 275.827 276.251 276.864 277.95 279.259 280.627 281.847 282.834 283.649 284.411 285.309 286.257 287.145 288.105 289.017 289.788 290.469 291.071 291.756 292.523 293.22 293.939 294.642 295.269 295.857 296.5 297.2 297.856 298.515 299.15 299.605 299.919 300.283 300.633 300.789 300.69 300.474 300.34 300.334 300.068 299.326 298.369 297.415 296.802 297.124 298.324 299.439 299.736 299.424 298.93 298.33 297.766 297.325 296.823 296.359 296.043 295.614 294.885 294.084 293.425 292.881 292.513 292.332 292.138 291.908 291.638 291.081 290.021 288.705 287.247 285.979 284.821 283.673 282.472 281.401 280.349 279.358 278.537 277.642 276.769 276.081 275.633 275.313 275.078 273.531 268.551 262.147 258.155 256.862 256.243 254.624 252.404 250.974 248.946 248.385 246.363 244.188 242.761 241.777 241.735 242.26 241.997 241.74 241.849 241.666 241.786 241.548 237.278 241.233 246.609 252.054 254.533 255.157 256.082 256.416 256.847 258.773 260.419 264.815 267.818 269.38 270.163 270.874 271.902 273.165 274.323 275.148 275.673 276.059 276.398 276.925 277.987 279.308 280.652 281.835 282.807 283.614 284.403 285.348 286.316 287.182 288.13 289.045 289.811 290.497 291.142 291.874 292.682 293.383 294.058 294.728 295.393 296.004 296.641 297.36 298.046 298.677 299.244 299.63 299.911 300.287 300.642 300.765 300.666 300.485 300.328 300.244 299.966 299.277 298.317 297.318 296.706 297.064 298.303 299.411 299.718 299.404 298.889 298.283 297.731 297.274 296.737 296.255 295.904 295.458 294.758 293.946 293.198 292.575 292.176 291.967 291.78 291.598 291.335 290.844 290.01 288.972 287.54 286.171 284.951 283.843 282.622 281.515 280.379 279.431 278.638 277.811 276.868 276.149 275.637 275.267 275.079 273.573 268.917 261.471 257.251 256.275 255.659 254.376 252.265 250.87 248.944 248.303 245.84 243.615 242.222 241.334 241.402 242.102 241.85 241.506 241.771 241.591 241.75 241.515 237.273 241.285 246.492 251.89 254.43 255.155 256.073 256.108 256.264 258.055 259.815 264.59 267.903 269.556 270.231 270.871 271.941 273.245 274.445 275.327 275.89 276.279 276.581 277.071 278.099 279.395 280.696 281.848 282.82 283.653 284.47 285.429 286.374 287.209 288.124 289.012 289.765 290.511 291.249 292.048 292.856 293.539 294.18 294.844 295.534 296.148 296.777 297.506 298.188 298.759 299.256 299.627 299.94 300.297 300.589 300.648 300.565 300.439 300.286 300.143 299.855 299.199 298.228 297.213 296.657 297.078 298.308 299.367 299.656 299.329 298.814 298.235 297.692 297.209 296.653 296.163 295.772 295.32 294.654 293.827 293.013 292.349 291.907 291.607 291.368 291.197 290.918 290.453 289.816 288.985 287.682 286.26 285.028 283.883 282.667 281.557 280.428 279.485 278.708 277.916 276.967 276.225 275.653 275.276 275.034 273.414 268.566 260.199 256.149 255.77 255.271 254.046 252.025 251.127 248.873 247.995 245.476 243.234 241.795 241.095 241.171 242.006 241.622 241.321 241.651 241.498 241.718 241.513 237.313 241.179 246.385 251.727 254.314 255.13 255.982 255.803 255.631 257.306 259.231 264.315 267.952 269.764 270.32 270.872 271.966 273.295 274.528 275.454 276.063 276.486 276.792 277.272 278.26 279.498 280.751 281.875 282.849 283.726 284.568 285.508 286.41 287.219 288.106 288.968 289.717 290.547 291.385 292.22 292.997 293.667 294.315 294.984 295.667 296.28 296.922 297.649 298.304 298.8 299.242 299.636 300.001 300.319 300.5 300.473 300.388 300.317 300.202 300.06 299.759 299.102 298.108 297.099 296.619 297.11 298.314 299.316 299.574 299.214 298.697 298.161 297.635 297.134 296.568 296.058 295.616 295.167 294.534 293.695 292.829 292.124 291.632 291.264 290.974 290.771 290.467 290.008 289.47 288.754 287.645 286.281 285.046 283.858 282.678 281.555 280.472 279.5 278.749 277.969 277.077 276.334 275.74 275.344 274.911 273.0 268.049 259.39 255.695 255.365 255.084 253.794 251.888 250.938 248.913 247.716 245.26 242.849 241.353 240.892 241.095 241.869 241.367 241.178 241.482 241.464 241.688 241.511 237.375 241.199 246.262 251.539 254.172 255.095 255.75 255.456 254.988 256.501 258.791 263.962 267.983 269.984 270.457 270.906 271.995 273.327 274.577 275.547 276.206 276.684 277.034 277.521 278.446 279.598 280.805 281.891 282.859 283.776 284.624 285.513 286.383 287.205 288.116 288.988 289.776 290.68 291.573 292.379 293.112 293.794 294.491 295.169 295.836 296.488 297.165 297.846 298.416 298.864 299.28 299.678 300.04 300.305 300.384 300.279 300.18 300.139 300.076 299.988 299.684 299.005 297.995 297.02 296.613 297.138 298.288 299.251 299.51 299.132 298.592 298.071 297.553 297.051 296.486 295.935 295.433 294.99 294.394 293.556 292.663 291.897 291.338 290.93 290.595 290.303 289.942 289.503 289.057 288.445 287.522 286.296 285.09 283.854 282.731 281.593 280.522 279.502 278.778 278.012 277.202 276.479 275.911 275.392 274.629 272.138 267.24 258.639 255.644 255.141 254.668 253.288 251.737 250.834 249.302 247.469 244.802 242.312 240.898 240.531 241.043 241.676 241.263 241.072 241.36 241.437 241.648 241.509 237.428 241.241 246.133 251.316 254.019 255.05 255.569 255.053 254.336 255.667 258.939 263.519 268.001 270.145 270.632 271.014 272.05 273.353 274.6 275.604 276.306 276.832 277.24 277.752 278.599 279.67 280.848 281.909 282.857 283.768 284.591 285.464 286.369 287.245 288.194 289.097 289.943 290.883 291.754 292.528 293.25 293.948 294.675 295.352 296.037 296.758 297.449 298.029 298.48 298.904 299.329 299.709 300.031 300.255 300.283 300.166 300.08 300.044 299.983 299.911 299.623 298.916 297.87 296.927 296.632 297.205 298.266 299.148 299.419 299.078 298.549 298.021 297.477 296.959 296.394 295.822 295.275 294.809 294.221 293.422 292.537 291.674 291.003 290.57 290.199 289.78 289.359 288.974 288.613 288.112 287.372 286.311 285.182 283.997 282.898 281.723 280.578 279.56 278.828 278.108 277.326 276.648 276.083 275.313 273.98 270.726 265.67 258.135 255.605 255.168 254.094 252.955 251.477 250.482 249.252 247.04 244.44 242.032 240.647 240.275 240.978 241.624 241.222 240.877 241.261 241.409 241.596 241.507 237.341 241.165 245.99 251.093 253.851 254.937 255.378 254.649 253.671 254.914 258.541 263.034 267.891 270.266 270.827 271.17 272.127 273.383 274.618 275.649 276.393 276.967 277.42 277.954 278.741 279.75 280.907 281.954 282.884 283.779 284.585 285.458 286.416 287.345 288.296 289.185 290.068 291.036 291.887 292.663 293.411 294.12 294.839 295.523 296.23 296.961 297.619 298.12 298.516 298.928 299.357 299.723 300.027 300.24 300.253 300.126 300.033 299.978 299.909 299.841 299.579 298.843 297.724 296.797 296.644 297.31 298.278 299.042 299.299 298.996 298.499 297.991 297.432 296.873 296.285 295.703 295.121 294.609 294.01 293.263 292.419 291.52 290.759 290.269 289.807 289.251 288.779 288.427 288.124 287.736 287.146 286.247 285.208 284.138 283.056 281.911 280.683 279.682 278.92 278.238 277.473 276.818 276.067 274.977 272.8 269.339 262.431 257.972 255.12 255.03 253.858 252.926 251.267 249.864 248.953 246.844 244.186 241.897 240.407 240.042 240.884 241.652 241.036 240.697 241.178 241.374 241.534 241.506 237.322 241.145 245.825 250.835 253.665 254.776 255.083 254.111 252.962 254.188 258.158 262.492 267.694 270.365 271.033 271.36 272.23 273.425 274.643 275.697 276.488 277.115 277.607 278.155 278.91 279.865 280.995 282.033 282.949 283.831 284.629 285.498 286.491 287.456 288.372 289.215 290.123 291.126 291.978 292.784 293.582 294.299 294.999 295.701 296.416 297.081 297.67 298.142 298.556 298.958 299.368 299.72 300.026 300.244 300.256 300.12 300.008 299.92 299.835 299.775 299.55 298.789 297.594 296.681 296.666 297.425 298.313 298.973 299.21 298.919 298.43 297.957 297.409 296.802 296.185 295.593 294.97 294.392 293.782 293.097 292.297 291.389 290.575 290.012 289.444 288.82 288.368 287.991 287.611 287.212 286.702 285.961 285.052 284.143 283.108 282.018 280.836 279.865 279.057 278.373 277.659 276.927 275.834 274.088 271.191 267.341 260.674 257.668 255.391 254.811 253.863 252.51 250.909 249.355 248.34 246.403 243.782 241.65 240.135 239.763 240.764 241.574 240.77 240.525 241.088 241.318 241.463 241.505 237.349 241.08 245.646 250.56 253.443 254.535 254.749 253.563 252.307 253.498 257.487 261.816 267.32 270.441 271.266 271.611 272.384 273.495 274.681 275.76 276.615 277.31 277.848 278.425 279.147 280.045 281.133 282.144 283.037 283.908 284.703 285.548 286.552 287.524 288.397 289.228 290.156 291.187 292.071 292.927 293.765 294.48 295.158 295.876 296.582 297.143 297.624 298.107 298.568 298.989 299.367 299.695 299.988 300.192 300.211 300.101 299.994 299.877 299.767 299.715 299.495 298.698 297.451 296.581 296.691 297.514 298.354 298.946 299.172 298.879 298.365 297.901 297.374 296.741 296.11 295.522 294.842 294.181 293.576 292.965 292.204 291.294 290.455 289.784 289.103 288.441 288.01 287.591 287.124 286.681 286.122 285.403 284.631 283.919 283.022 282.008 280.951 279.987 279.198 278.499 277.828 276.877 275.318 272.547 269.543 264.077 259.444 257.315 255.344 254.707 253.832 252.55 251.232 249.257 247.439 245.922 243.551 241.522 240.226 239.767 240.611 241.405 240.629 240.414 240.959 241.231 241.378 241.504 237.391 241.096 245.435 250.288 253.18 254.238 254.342 252.967 251.651 252.853 257.115 261.528 266.94 270.464 271.467 271.857 272.555 273.578 274.716 275.818 276.75 277.516 278.111 278.711 279.412 280.26 281.282 282.239 283.097 283.958 284.753 285.579 286.574 287.543 288.444 289.318 290.241 291.256 292.167 293.048 293.887 294.598 295.255 295.929 296.59 297.129 297.568 298.025 298.503 298.957 299.342 299.672 299.928 300.096 300.114 300.055 299.995 299.868 299.725 299.669 299.431 298.592 297.304 296.458 296.663 297.566 298.418 298.956 299.149 298.904 298.427 297.943 297.375 296.7 296.062 295.477 294.74 293.983 293.356 292.813 292.126 291.26 290.389 289.572 288.788 288.127 287.697 287.219 286.679 286.184 285.556 284.851 284.168 283.486 282.727 281.863 280.946 279.979 279.235 278.595 277.853 276.527 274.221 270.995 266.448 261.829 258.762 256.602 255.065 254.719 253.512 252.527 250.771 248.761 246.916 245.722 243.462 241.473 240.362 239.917 240.487 241.368 240.538 240.255 240.827 241.197 241.278 241.505 237.404 241.087 245.251 249.968 252.898 253.908 253.842 252.338 251.033 252.324 257.011 261.437 266.615 270.436 271.616 272.064 272.717 273.66 274.744 275.859 276.862 277.708 278.369 278.998 279.688 280.488 281.428 282.317 283.133 283.99 284.796 285.632 286.617 287.586 288.543 289.454 290.344 291.311 292.235 293.128 293.949 294.66 295.303 295.905 296.511 297.062 297.498 297.928 298.411 298.888 299.286 299.608 299.842 299.987 299.995 299.983 299.977 299.858 299.674 299.615 299.404 298.552 297.234 296.391 296.648 297.624 298.524 299.018 299.168 298.984 298.574 298.072 297.453 296.74 296.072 295.46 294.672 293.825 293.128 292.601 292.014 291.253 290.393 289.475 288.617 287.937 287.43 286.893 286.31 285.759 285.067 284.355 283.728 283.035 282.304 281.537 280.764 279.889 279.146 278.491 277.545 275.731 272.529 268.752 263.406 260.577 258.238 256.344 255.127 254.49 253.169 252.387 250.324 247.912 246.31 245.305 243.199 241.402 240.336 239.936 240.479 241.322 240.288 240.1 240.663 241.125 241.254 241.506 237.44 240.989 245.085 249.631 252.582 253.578 253.293 251.674 250.511 251.796 256.84 261.249 266.261 270.364 271.711 272.224 272.859 273.743 274.771 275.881 276.942 277.881 278.613 279.277 279.963 280.716 281.569 282.382 283.163 284.025 284.845 285.713 286.693 287.668 288.661 289.596 290.438 291.359 292.298 293.19 293.964 294.678 295.316 295.866 296.428 296.971 297.41 297.836 298.323 298.805 299.193 299.492 299.725 299.854 299.853 299.88 299.934 299.836 299.625 299.561 299.38 298.524 297.197 296.368 296.66 297.685 298.628 299.115 299.227 299.065 298.698 298.19 297.567 296.847 296.143 295.487 294.658 293.731 292.939 292.376 291.859 291.21 290.41 289.472 288.587 287.849 287.23 286.627 285.994 285.346 284.609 283.931 283.346 282.632 281.894 281.222 280.508 279.745 278.929 277.983 276.543 274.212 270.87 265.975 261.489 259.646 257.285 255.973 255.186 253.703 253.102 252.378 249.887 248.086 245.319 244.962 243.098 241.499 240.484 239.972 240.409 241.167 240.05 240.001 240.495 241.046 241.247 241.507 237.489 240.965 244.833 249.278 252.232 253.199 252.759 251.089 249.934 251.388 255.361 261.006 265.881 270.209 271.731 272.327 272.984 273.835 274.807 275.892 277.004 278.032 278.836 279.542 280.232 280.933 281.694 282.439 283.204 284.07 284.894 285.794 286.784 287.755 288.764 289.73 290.557 291.463 292.416 293.278 293.979 294.672 295.341 295.876 296.378 296.862 297.275 297.719 298.24 298.695 299.052 299.359 299.615 299.723 299.711 299.746 299.841 299.784 299.574 299.504 299.321 298.419 297.081 296.322 296.681 297.743 298.72 299.247 299.314 299.103 298.729 298.24 297.67 296.976 296.245 295.55 294.69 293.697 292.812 292.169 291.654 291.081 290.378 289.5 288.613 287.779 287.006 286.284 285.569 284.901 284.253 283.654 283.075 282.363 281.617 281.011 280.356 279.579 278.563 276.977 274.874 272.189 267.82 263.08 260.04 258.371 256.975 256.041 254.718 253.331 253.116 252.286 249.602 247.655 244.977 244.67 242.966 241.395 240.57 240.125 240.325 241.107 239.983 239.932 240.344 240.963 241.242 241.508 237.609 240.871 244.63 248.876 251.858 252.775 252.221 250.503 249.407 251.171 255.102 261.015 265.584 270.001 271.675 272.355 273.059 273.919 274.869 275.931 277.045 278.123 278.974 279.712 280.402 281.053 281.749 282.463 283.228 284.094 284.913 285.812 286.826 287.811 288.848 289.86 290.727 291.649 292.584 293.399 294.066 294.764 295.456 295.947 296.361 296.748 297.13 297.64 298.197 298.618 298.964 299.315 299.569 299.643 299.601 299.619 299.718 299.685 299.502 299.455 299.267 298.32 296.951 296.229 296.672 297.804 298.818 299.377 299.424 299.181 298.801 298.317 297.736 297.036 296.329 295.627 294.735 293.679 292.737 292.011 291.405 290.82 290.209 289.446 288.573 287.656 286.744 285.893 285.114 284.514 284.081 283.635 283.033 282.274 281.498 280.894 280.254 279.33 277.819 275.578 272.564 269.314 264.784 261.457 258.706 257.223 256.55 255.971 254.23 253.211 253.175 251.903 248.961 247.026 244.345 244.081 242.5 241.122 240.53 240.161 240.342 241.07 239.925 239.829 240.222 240.873 241.237 241.508 237.577 240.908 244.436 248.482 251.435 252.313 251.642 249.924 248.945 250.991 254.998 260.906 265.272 269.797 271.583 272.352 273.114 274.002 274.953 275.993 277.084 278.18 279.063 279.813 280.486 281.091 281.741 282.452 283.226 284.112 284.937 285.825 286.864 287.883 288.945 289.985 290.906 291.848 292.745 293.526 294.22 294.942 295.602 296.023 296.36 296.674 297.037 297.59 298.163 298.553 298.892 299.261 299.496 299.53 299.466 299.487 299.604 299.597 299.43 299.374 299.184 298.238 296.855 296.127 296.617 297.831 298.9 299.47 299.511 299.281 298.909 298.409 297.788 297.097 296.434 295.733 294.806 293.709 292.738 291.952 291.254 290.619 290.006 289.274 288.383 287.448 286.541 285.663 284.892 284.451 284.251 283.836 283.016 282.059 281.241 280.628 279.994 278.82 276.733 273.237 269.239 266.01 262.884 259.96 257.659 256.524 256.262 256.019 254.017 253.163 252.929 251.155 248.158 245.895 243.769 243.302 241.944 240.769 240.362 240.149 240.352 240.923 239.626 239.691 240.149 240.802 241.234 241.458 237.471 240.814 244.254 248.055 250.986 251.878 251.015 249.23 248.642 250.878 254.996 260.132 264.93 269.597 271.466 272.332 273.157 274.076 275.038 276.065 277.128 278.224 279.124 279.869 280.504 281.066 281.691 282.41 283.207 284.13 284.977 285.869 286.924 287.976 289.042 290.088 291.057 292.03 292.902 293.671 294.394 295.114 295.703 296.059 296.365 296.654 296.989 297.529 298.085 298.456 298.795 299.15 299.365 299.367 299.298 299.335 299.502 299.54 299.382 299.281 299.067 298.137 296.769 296.012 296.523 297.831 298.969 299.522 299.56 299.352 298.988 298.476 297.85 297.206 296.571 295.849 294.892 293.773 292.767 291.913 291.142 290.475 289.859 289.134 288.213 287.323 286.6 285.942 285.415 285.152 284.869 284.111 282.74 281.322 280.386 279.747 279.047 277.8 275.341 270.562 266.947 264.077 261.411 258.983 257.084 255.967 256.34 255.477 253.754 253.141 252.23 249.834 247.274 244.62 242.972 242.758 241.063 240.063 239.97 240.085 240.421 240.73 239.529 239.563 239.996 240.79 241.197 241.226 237.46 240.829 244.044 247.625 250.532 251.384 250.464 248.736 248.379 250.906 255.038 259.32 264.799 269.417 271.323 272.302 273.196 274.139 275.122 276.146 277.185 278.266 279.166 279.881 280.454 280.97 281.597 282.339 283.169 284.14 285.031 285.942 286.996 288.062 289.132 290.181 291.19 292.217 293.115 293.887 294.568 295.198 295.684 296.01 296.341 296.639 296.934 297.398 297.913 298.293 298.639 298.995 299.196 299.165 299.081 299.15 299.385 299.481 299.342 299.206 298.953 298.033 296.679 295.896 296.423 297.854 299.073 299.571 299.57 299.391 299.046 298.542 297.962 297.39 296.742 295.965 294.997 293.847 292.758 291.812 291.025 290.379 289.786 289.084 288.16 287.353 286.85 286.513 286.199 285.809 285.016 283.454 280.719 278.7 278.138 278.052 277.586 275.52 272.841 268.738 264.931 262.827 260.39 258.398 256.801 256.16 256.278 255.202 253.812 252.484 250.975 248.622 246.212 244.328 242.427 242.803 241.247 239.514 239.671 239.925 240.519 240.667 239.519 239.518 239.864 240.78 240.996 241.18 237.484 240.857 243.849 247.198 250.087 250.888 249.835 248.215 248.175 250.905 255.16 260.262 264.927 269.307 271.217 272.282 273.229 274.177 275.185 276.218 277.245 278.302 279.173 279.836 280.352 280.842 281.484 282.263 283.117 284.104 285.036 285.973 287.017 288.107 289.233 290.316 291.349 292.412 293.322 294.064 294.66 295.177 295.599 295.913 296.236 296.555 296.86 297.274 297.742 298.114 298.474 298.843 299.033 298.968 298.873 298.995 299.288 299.411 299.3 299.167 298.877 297.959 296.609 295.806 296.354 297.885 299.148 299.575 299.519 299.359 299.062 298.589 298.065 297.556 296.946 296.177 295.208 293.981 292.751 291.698 290.937 290.363 289.807 289.153 288.309 287.581 287.234 287.109 286.706 285.765 283.728 280.522 277.754 276.037 275.367 275.413 275.131 273.703 270.91 267.379 263.962 261.676 259.453 258.023 256.84 256.279 255.686 253.87 252.509 251.395 249.66 247.086 244.695 243.563 242.035 242.129 240.805 239.281 239.852 239.803 240.527 240.557 239.371 239.501 239.779 240.751 240.794 241.175 237.478 240.765 243.652 246.782 249.586 250.395 249.249 247.78 248.031 250.995 255.314 260.006 265.256 269.295 271.145 272.26 273.251 274.199 275.234 276.287 277.304 278.328 279.148 279.758 280.236 280.722 281.372 282.181 283.05 284.042 284.998 285.965 287.026 288.157 289.365 290.489 291.533 292.571 293.436 294.154 294.706 295.153 295.543 295.839 296.125 296.437 296.759 297.146 297.571 297.925 298.302 298.684 298.867 298.778 298.688 298.869 299.214 299.371 299.295 299.138 298.794 297.872 296.529 295.711 296.296 297.894 299.153 299.511 299.4 299.233 298.997 298.601 298.142 297.684 297.153 296.442 295.479 294.207 292.889 291.77 291.0 290.42 289.869 289.29 288.604 288.0 287.709 287.421 286.465 284.085 280.741 277.815 275.005 273.881 273.805 274.383 274.305 272.78 269.866 265.687 262.817 260.527 258.694 257.706 256.753 256.22 255.0 252.644 251.028 250.031 248.103 245.696 244.02 242.914 241.409 241.312 240.113 239.242 239.833 239.585 240.399 240.242 239.244 239.459 239.753 240.624 240.766 241.173 237.573 240.697 243.471 246.389 249.078 249.856 248.659 247.344 247.966 251.181 255.545 259.844 265.737 269.365 271.099 272.228 273.263 274.221 275.282 276.355 277.359 278.34 279.095 279.66 280.127 280.626 281.28 282.093 282.968 283.968 284.944 285.943 287.05 288.229 289.497 290.654 291.702 292.668 293.465 294.174 294.717 295.119 295.488 295.765 296.024 296.322 296.649 297.009 297.393 297.739 298.129 298.522 298.699 298.599 298.528 298.753 299.128 299.33 299.298 299.118 298.725 297.799 296.45 295.631 296.26 297.874 299.104 299.425 299.266 299.061 298.886 298.604 298.215 297.781 297.308 296.666 295.743 294.499 293.152 291.975 291.186 290.592 290.049 289.538 288.955 288.398 287.978 287.213 284.968 281.343 277.949 274.986 272.098 271.973 272.722 273.432 273.463 271.989 268.915 264.607 261.517 259.521 258.159 257.451 256.801 255.301 253.42 252.218 250.072 248.491 246.766 244.778 243.54 242.183 240.935 240.673 239.528 239.025 239.459 239.386 240.141 239.992 239.191 239.421 239.745 240.513 240.766 241.172 237.505 240.631 243.274 245.979 248.565 249.357 248.124 246.994 248.058 251.403 255.824 260.599 266.281 269.517 271.07 272.176 273.261 274.259 275.355 276.433 277.414 278.337 279.012 279.538 280.037 280.577 281.221 281.995 282.854 283.877 284.888 285.94 287.094 288.311 289.595 290.776 291.832 292.735 293.472 294.161 294.703 295.072 295.392 295.66 295.932 296.246 296.557 296.874 297.219 297.582 297.962 298.335 298.477 298.382 298.364 298.613 298.987 299.231 299.252 299.084 298.682 297.767 296.395 295.575 296.219 297.78 298.951 299.298 299.132 298.878 298.752 298.594 298.267 297.829 297.379 296.829 296.016 294.863 293.527 292.314 291.556 291.0 290.492 290.002 289.408 288.741 288.021 286.72 283.312 279.153 275.703 272.866 270.007 270.148 271.816 272.566 272.352 270.659 267.119 263.526 260.393 258.665 258.161 257.605 257.056 254.926 252.694 251.099 249.001 247.081 245.411 243.917 242.916 241.532 240.723 239.789 238.884 238.698 239.212 239.262 239.871 239.734 239.079 239.451 239.754 240.495 240.767 241.171 237.526 240.702 243.097 245.559 248.047 248.844 247.681 246.643 248.137 251.71 256.186 261.475 266.818 269.706 271.055 272.11 273.242 274.31 275.442 276.5 277.452 278.327 278.937 279.438 279.99 280.581 281.205 281.915 282.745 283.786 284.83 285.935 287.131 288.363 289.64 290.838 291.917 292.804 293.48 294.123 294.657 295.01 295.312 295.593 295.881 296.193 296.457 296.732 297.075 297.44 297.781 298.104 298.21 298.136 298.19 298.489 298.891 299.158 299.192 299.026 298.635 297.709 296.332 295.559 296.191 297.65 298.758 299.137 298.986 298.719 298.618 298.507 298.21 297.833 297.467 297.022 296.352 295.315 294.048 292.98 292.429 292.008 291.507 290.892 290.058 288.921 287.582 285.378 281.776 278.042 274.438 271.339 268.953 269.227 270.082 270.256 270.79 268.354 265.644 262.301 259.42 258.612 258.477 258.165 256.62 254.305 251.769 250.179 248.021 245.993 244.258 243.205 242.434 241.472 240.681 239.122 238.388 238.601 238.717 239.039 239.505 239.312 238.956 239.442 239.809 240.491 240.768 241.172 237.492 240.64 242.919 245.165 247.554 248.36 247.214 246.448 248.315 252.068 256.566 262.062 267.356 269.872 271.049 272.042 273.219 274.366 275.524 276.551 277.473 278.319 278.885 279.366 279.964 280.601 281.221 281.886 282.675 283.709 284.785 285.951 287.177 288.418 289.682 290.868 291.954 292.822 293.442 294.034 294.563 294.94 295.265 295.555 295.829 296.104 296.319 296.583 296.941 297.289 297.594 297.877 297.964 297.909 298.01 298.357 298.808 299.119 299.165 298.996 298.596 297.657 296.304 295.586 296.202 297.568 298.624 299.008 298.86 298.594 298.491 298.383 298.142 297.885 297.599 297.173 296.571 295.669 294.578 293.752 293.395 293.005 292.419 291.617 290.267 288.268 286.269 284.071 281.22 277.575 273.826 270.321 268.481 267.423 267.89 268.416 268.165 267.011 264.473 261.563 259.322 259.184 259.094 258.329 256.414 254.64 251.684 249.271 247.113 245.096 243.295 242.282 241.894 241.221 240.211 238.619 238.007 238.324 238.385 238.727 239.022 239.035 238.89 239.452 239.838 240.488 240.768 241.172 237.524 240.527 242.723 244.742 247.083 247.952 246.904 246.407 248.488 252.378 256.93 262.435 267.807 270.028 271.058 271.981 273.191 274.42 275.593 276.584 277.48 278.315 278.857 279.324 279.951 280.625 281.269 281.922 282.661 283.662 284.781 286.004 287.249 288.475 289.696 290.85 291.916 292.773 293.365 293.921 294.437 294.837 295.197 295.5 295.761 295.989 296.183 296.45 296.816 297.142 297.424 297.676 297.733 297.691 297.829 298.212 298.717 299.084 299.15 298.982 298.584 297.646 296.328 295.638 296.207 297.496 298.526 298.892 298.74 298.482 298.357 298.227 298.065 297.94 297.701 297.251 296.692 295.956 295.092 294.475 294.18 293.716 293.021 291.416 290.428 289.009 285.855 283.461 280.466 277.107 273.393 269.712 267.394 266.487 266.834 266.684 266.551 265.789 263.733 260.896 259.363 259.525 259.126 258.27 256.039 253.792 251.088 248.391 246.315 244.364 242.464 241.767 241.296 240.409 239.375 238.088 237.769 238.204 237.996 238.242 238.591 238.848 238.876 239.458 239.83 240.485 240.769 241.173 237.64 240.519 242.595 244.376 246.605 247.528 246.655 246.5 248.757 252.732 257.313 262.398 268.148 270.177 271.077 271.937 273.156 274.461 275.634 276.59 277.476 278.317 278.855 279.314 279.965 280.656 281.341 282.025 282.727 283.691 284.843 286.091 287.329 288.47 289.607 290.712 291.765 292.657 293.283 293.836 294.312 294.687 295.064 295.39 295.652 295.87 296.085 296.354 296.686 296.98 297.242 297.444 297.445 297.426 297.643 298.092 298.649 299.053 299.128 298.959 298.589 297.679 296.373 295.611 296.126 297.403 298.41 298.742 298.605 298.369 298.184 297.996 297.908 297.889 297.705 297.308 296.835 296.245 295.562 295.076 294.745 294.124 291.928 291.926 290.767 288.524 284.642 282.028 279.084 276.12 272.679 268.878 266.548 266.199 266.011 265.433 265.433 264.889 262.684 260.591 260.06 259.861 259.453 258.124 255.308 253.07 250.209 247.607 245.552 243.556 241.902 241.181 240.617 239.634 238.653 237.775 237.668 238.001 237.635 238.182 238.004 238.692 238.883 239.498 239.823 240.472 240.77 241.175 237.653 240.6 242.443 244.035 246.057 247.087 246.357 246.518 248.971 253.087 257.644 262.286 268.337 270.268 271.097 271.937 273.135 274.474 275.634 276.577 277.468 278.317 278.862 279.335 280.008 280.695 281.393 282.108 282.825 283.766 284.88 286.095 287.303 288.362 289.413 290.514 291.585 292.525 293.199 293.772 294.234 294.597 294.972 295.283 295.526 295.745 295.971 296.227 296.499 296.762 297.026 297.214 297.194 297.203 297.503 298.025 298.614 299.022 299.089 298.921 298.581 297.693 296.385 295.608 296.097 297.352 298.323 298.623 298.514 298.302 298.059 297.813 297.725 297.731 297.638 297.388 296.995 296.454 295.937 295.647 295.11 293.469 293.238 291.524 288.902 285.426 282.177 279.733 277.389 274.372 270.703 266.947 265.751 265.783 265.703 265.4 265.294 264.794 263.091 261.411 260.727 260.278 259.113 257.561 255.24 252.657 249.723 246.995 244.878 242.775 241.389 240.693 240.036 238.913 238.108 237.581 237.668 237.79 237.503 237.98 237.589 238.519 238.853 239.482 239.769 240.016 240.697 241.176 237.485 240.62 242.311 243.719 245.557 246.647 246.08 246.55 249.249 253.359 257.942 262.54 268.401 270.299 271.103 271.953 273.127 274.465 275.619 276.564 277.458 278.305 278.852 279.357 280.054 280.725 281.399 282.127 282.886 283.802 284.84 286.016 287.198 288.233 289.261 290.35 291.408 292.35 293.057 293.66 294.149 294.535 294.898 295.164 295.38 295.592 295.81 296.046 296.282 296.518 296.791 296.987 296.979 297.021 297.376 297.946 298.544 298.954 299.035 298.891 298.56 297.67 296.363 295.589 296.051 297.299 298.225 298.508 298.418 298.219 297.949 297.687 297.572 297.604 297.598 297.464 297.127 296.687 296.413 296.228 295.209 293.84 292.077 289.081 284.747 281.989 279.551 277.486 275.525 272.788 267.773 265.898 264.783 264.945 265.078 265.688 265.608 265.337 263.257 261.816 261.127 260.298 258.74 256.751 254.412 251.743 249.053 246.434 244.304 242.017 240.992 240.291 239.448 238.166 237.618 237.553 237.544 237.371 237.424 236.92 237.506 238.352 238.783 239.402 239.724 239.999 240.547 241.178 237.497 240.518 242.198 243.432 245.15 246.249 245.769 246.564 249.482 253.568 258.194 263.051 268.331 270.26 271.096 271.972 273.126 274.44 275.599 276.556 277.447 278.275 278.822 279.366 280.085 280.732 281.365 282.094 282.88 283.769 284.734 285.867 287.042 288.122 289.172 290.21 291.193 292.111 292.858 293.5 294.012 294.418 294.756 294.992 295.217 295.434 295.625 295.842 296.068 296.294 296.549 296.73 296.73 296.822 297.259 297.879 298.476 298.879 298.978 298.864 298.523 297.611 296.297 295.547 296.031 297.2 298.106 298.386 298.306 298.108 297.823 297.547 297.389 297.473 297.596 297.618 297.414 297.134 296.99 296.553 295.168 292.771 288.803 284.442 281.853 279.802 277.827 276.263 274.221 271.583 266.759 264.77 264.014 264.312 264.996 265.354 266.155 265.273 263.367 261.817 261.068 259.919 258.155 255.653 253.347 250.599 248.119 245.586 243.315 241.244 240.296 239.871 239.008 237.82 237.463 237.549 237.31 237.21 237.145 236.47 237.109 238.194 238.738 239.186 239.72 240.0 240.472 241.181 237.476 240.524 242.124 243.189 244.759 245.822 245.549 246.566 249.7 253.742 258.326 263.737 268.083 270.112 271.054 271.993 273.13 274.406 275.58 276.558 277.428 278.217 278.766 279.344 280.077 280.693 281.29 282.017 282.809 283.659 284.562 285.64 286.847 288.0 289.071 290.016 290.889 291.806 292.627 293.306 293.79 294.179 294.501 294.758 295.036 295.253 295.382 295.576 295.84 296.086 296.293 296.413 296.407 296.592 297.163 297.842 298.431 298.812 298.919 298.833 298.491 297.553 296.206 295.431 295.849 297.057 297.984 298.276 298.217 298.034 297.721 297.358 297.103 297.231 297.617 297.909 297.9 297.611 297.077 295.84 293.513 288.957 284.542 281.869 280.124 278.685 277.287 276.005 274.145 271.744 266.821 265.184 265.18 265.796 266.35 267.136 266.559 264.866 263.089 261.606 260.495 259.35 257.301 254.61 252.265 249.709 247.201 244.708 242.437 240.569 239.687 239.364 238.368 237.47 237.327 237.353 237.101 236.915 236.646 236.041 237.039 237.953 238.478 239.12 239.716 240.002 240.429 241.183 237.55 240.551 242.094 242.958 244.429 245.443 245.323 246.576 249.848 253.829 258.418 264.125 267.719 269.856 270.965 272.002 273.135 274.375 275.567 276.556 277.392 278.145 278.708 279.31 280.025 280.611 281.206 281.936 282.709 283.523 284.373 285.396 286.595 287.763 288.844 289.767 290.604 291.539 292.412 293.11 293.566 293.968 294.348 294.621 294.867 295.033 295.11 295.3 295.617 295.893 296.076 296.163 296.185 296.465 297.103 297.772 298.345 298.748 298.881 298.824 298.517 297.585 296.183 295.33 295.73 296.914 297.846 298.15 298.126 297.976 297.635 297.179 296.865 297.007 297.613 298.085 297.94 296.913 295.138 292.935 288.662 284.92 282.274 280.614 279.675 278.693 277.695 276.799 275.29 273.202 271.135 269.549 269.022 268.058 268.579 268.072 266.365 264.248 262.563 261.17 259.6 257.898 256.081 253.862 251.467 248.715 246.444 244.026 241.718 239.967 239.155 238.752 237.972 237.307 237.108 236.86 236.764 236.639 236.25 235.806 237.029 237.823 238.144 239.099 239.714 240.004 240.405 241.182 237.67 240.468 242.037 242.815 244.157 245.137 245.093 246.629 249.937 253.824 258.927 264.117 267.309 269.52 270.825 271.989 273.138 274.348 275.553 276.541 277.338 278.074 278.661 279.28 279.956 280.512 281.111 281.853 282.593 283.369 284.165 285.128 286.27 287.412 288.542 289.533 290.39 291.31 292.187 292.891 293.361 293.82 294.261 294.513 294.684 294.808 294.889 295.101 295.442 295.714 295.869 295.936 296.002 296.369 297.039 297.689 298.265 298.706 298.872 298.831 298.548 297.635 296.197 295.268 295.579 296.782 297.713 298.028 298.022 297.872 297.489 296.996 296.739 296.955 297.679 298.107 297.388 294.837 290.41 287.412 284.716 282.94 281.501 280.909 280.388 279.345 278.551 278.01 276.74 275.017 273.782 272.831 271.844 271.012 270.089 268.742 266.077 263.497 261.986 260.473 258.829 257.005 255.215 253.22 250.603 247.953 245.643 243.445 241.162 239.427 238.726 238.272 237.691 237.217 236.706 236.174 236.004 236.301 236.008 235.742 237.03 237.52 238.076 238.804 239.497 239.996 240.407 241.148 237.58 240.52 242.049 242.696 243.954 244.884 244.959 246.658 249.986 253.702 258.02 263.238 266.41 269.042 270.632 271.946 273.132 274.32 275.532 276.508 277.271 278.008 278.625 279.255 279.882 280.406 281.009 281.756 282.461 283.184 283.93 284.834 285.886 286.988 288.193 289.311 290.225 291.121 291.977 292.686 293.183 293.675 294.135 294.362 294.49 294.609 294.716 294.952 295.295 295.542 295.659 295.708 295.83 296.28 296.978 297.633 298.216 298.675 298.864 298.829 298.556 297.665 296.222 295.262 295.545 296.684 297.629 297.955 297.961 297.788 297.355 296.852 296.699 297.057 297.828 297.979 296.445 291.693 287.276 284.27 282.665 282.146 281.946 282.143 281.686 280.556 279.756 279.011 278.396 276.867 275.971 275.024 273.568 272.094 270.549 268.564 265.504 262.816 261.292 259.698 258.064 256.354 254.288 252.344 249.745 247.242 244.819 242.815 240.627 239.047 238.373 237.757 237.52 237.128 236.152 235.964 235.54 235.954 235.581 235.278 237.08 237.279 237.762 238.529 239.461 239.965 240.413 241.111 237.475 240.545 242.068 242.633 243.75 244.652 244.892 246.695 249.964 253.451 257.238 261.875 264.814 268.455 270.342 271.859 273.111 274.287 275.494 276.444 277.186 277.942 278.594 279.231 279.815 280.299 280.894 281.633 282.303 282.964 283.66 284.509 285.486 286.561 287.783 289.004 290.02 290.952 291.816 292.542 293.036 293.481 293.905 294.14 294.296 294.425 294.526 294.756 295.098 295.328 295.428 295.507 295.724 296.237 296.923 297.579 298.154 298.603 298.821 298.82 298.56 297.686 296.246 295.187 295.389 296.581 297.552 297.885 297.927 297.787 297.358 296.859 296.756 297.211 297.864 297.364 294.831 289.169 284.697 282.84 282.75 283.24 283.62 283.81 283.241 281.943 280.932 280.151 279.521 278.414 277.051 276.118 273.941 271.661 268.969 268.113 264.952 262.428 260.128 258.789 257.529 255.784 253.345 251.311 248.934 246.483 244.13 241.924 240.065 238.773 237.922 237.346 237.141 236.786 235.67 235.927 235.281 235.518 235.225 235.153 236.944 237.205 237.395 238.523 239.465 239.927 240.42 241.078 237.484 240.521 242.099 242.604 243.641 244.532 244.844 246.735 249.879 253.155 256.734 261.477 264.602 268.018 270.053 271.741 273.076 274.254 275.44 276.366 277.115 277.893 278.563 279.198 279.771 280.23 280.797 281.515 282.172 282.792 283.453 284.267 285.216 286.244 287.408 288.646 289.775 290.815 291.696 292.417 292.907 293.333 293.733 293.969 294.128 294.243 294.34 294.595 294.936 295.127 295.208 295.355 295.679 296.216 296.86 297.501 298.078 298.535 298.8 298.833 298.572 297.728 296.338 295.228 295.35 296.499 297.467 297.803 297.864 297.781 297.451 297.029 296.905 297.226 297.427 296.169 291.654 286.161 283.527 283.553 284.772 285.425 285.749 286.018 285.162 283.188 281.782 280.859 279.991 279.091 277.57 276.154 273.813 271.531 268.181 267.232 264.211 261.501 259.366 258.102 256.88 254.721 252.412 250.219 248.173 245.709 243.553 241.099 239.451 238.305 237.482 236.889 236.508 235.797 235.18 235.431 234.888 234.86 234.668 234.926 237.01 236.987 237.367 238.517 239.47 239.904 240.413 241.048 237.543 240.498 242.119 242.684 243.608 244.486 244.843 246.816 249.831 252.76 256.212 261.149 264.613 267.737 269.799 271.596 273.039 274.22 275.378 276.286 277.058 277.856 278.526 279.152 279.737 280.188 280.722 281.412 282.056 282.648 283.288 284.088 285.021 285.994 287.097 288.335 289.563 290.68 291.539 292.232 292.755 293.207 293.594 293.805 293.932 294.054 294.22 294.525 294.822 294.937 294.995 295.197 295.582 296.137 296.787 297.444 298.022 298.473 298.763 298.826 298.565 297.791 296.504 295.342 295.337 296.429 297.417 297.799 297.873 297.794 297.557 297.283 297.14 297.218 296.856 295.122 289.804 285.559 285.177 286.331 287.787 288.35 288.445 287.924 286.41 284.132 282.462 281.023 279.927 279.157 277.816 275.971 273.543 271.103 269.106 266.461 263.405 260.395 258.608 257.451 255.899 253.592 251.423 249.376 247.347 245.105 242.771 240.562 238.911 237.871 237.017 236.326 235.705 235.225 234.45 234.926 234.138 233.947 234.239 234.368 237.267 236.89 237.141 238.417 239.41 239.908 240.382 241.024 237.565 240.554 242.187 242.797 243.706 244.502 244.977 246.913 249.806 252.38 255.676 260.912 264.835 267.69 269.639 271.448 273.002 274.182 275.307 276.207 277.009 277.826 278.487 279.102 279.704 280.159 280.663 281.317 281.933 282.501 283.136 283.943 284.873 285.808 286.87 288.117 289.394 290.531 291.357 292.039 292.6 293.065 293.42 293.597 293.712 293.874 294.122 294.439 294.664 294.731 294.819 295.068 295.47 296.031 296.711 297.39 297.94 298.363 298.688 298.812 298.582 297.89 296.699 295.518 295.393 296.358 297.354 297.8 297.902 297.818 297.686 297.607 297.496 297.347 296.509 294.321 289.572 287.423 289.294 291.034 291.491 291.343 290.819 289.816 287.5 284.753 282.768 281.25 279.928 278.937 277.544 275.679 273.247 270.978 268.664 265.696 263.02 260.021 258.35 256.93 255.073 252.521 250.325 248.775 246.867 244.75 242.598 240.387 238.687 237.454 236.556 235.814 235.27 234.672 233.987 234.433 233.651 233.195 233.516 233.98 237.278 236.885 236.967 238.405 239.351 239.913 240.344 241.003 237.569 240.525 242.328 242.963 243.854 244.543 245.22 247.112 249.794 251.973 255.178 260.935 263.844 267.964 269.618 271.308 272.955 274.128 275.216 276.124 276.957 277.788 278.446 279.057 279.665 280.122 280.603 281.21 281.772 282.314 282.972 283.809 284.743 285.659 286.725 287.969 289.226 290.352 291.205 291.927 292.481 292.866 293.16 293.352 293.518 293.713 293.968 294.221 294.392 294.509 294.69 294.975 295.362 295.925 296.623 297.286 297.805 298.249 298.651 298.859 298.684 298.04 296.91 295.768 295.567 296.399 297.311 297.742 297.847 297.803 297.83 297.962 297.986 297.794 296.794 294.841 290.905 290.995 292.188 292.923 292.93 292.379 291.507 290.232 288.164 284.818 282.822 281.207 279.403 278.111 276.863 274.929 272.717 270.491 267.864 264.486 262.249 260.215 258.445 256.779 254.597 251.66 249.875 248.307 245.745 244.19 243.004 240.749 238.748 237.176 236.145 235.324 234.704 234.156 233.987 233.907 233.471 232.931 233.062 233.526 237.231 237.108 236.976 238.404 239.353 239.913 240.312 240.986 237.529 240.505 242.442 243.165 244.054 244.754 245.564 247.347 249.868 251.671 254.736 261.198 265.512 268.484 269.706 271.212 272.905 274.063 275.127 276.048 276.9 277.735 278.409 279.031 279.621 280.067 280.542 281.113 281.622 282.156 282.85 283.705 284.636 285.568 286.632 287.828 289.039 290.177 291.098 291.861 292.368 292.681 292.968 293.218 293.42 293.599 293.805 294.028 294.214 294.358 294.532 294.796 295.206 295.832 296.564 297.233 297.809 298.33 298.736 298.902 298.717 298.131 297.108 296.091 295.909 296.663 297.445 297.781 297.826 297.819 297.943 298.186 298.362 298.26 297.294 295.887 293.173 293.691 293.972 293.938 293.533 292.814 291.669 290.21 287.8 285.001 282.57 280.849 278.755 277.311 275.976 274.115 271.983 269.586 266.799 263.735 261.885 260.294 258.186 256.422 254.277 252.011 249.805 247.822 245.352 244.464 244.588 243.123 239.398 237.211 235.938 234.993 234.267 233.56 233.347 232.978 233.054 232.753 232.79 233.619 236.765 237.215 236.898 238.295 239.368 239.921 240.288 240.973 237.535 240.549 242.598 243.378 244.302 245.093 245.997 247.729 249.849 251.422 254.359 261.503 266.824 268.999 269.797 271.146 272.849 273.99 275.044 275.982 276.836 277.671 278.367 279.0 279.563 280.003 280.488 281.035 281.512 282.051 282.758 283.605 284.532 285.483 286.543 287.703 288.881 290.013 290.939 291.693 292.193 292.529 292.837 293.087 293.279 293.449 293.639 293.854 294.043 294.183 294.343 294.631 295.105 295.792 296.548 297.239 297.877 298.436 298.799 298.91 298.732 298.214 297.31 296.394 296.208 296.856 297.525 297.803 297.827 297.853 298.016 298.304 298.536 298.313 297.328 295.761 294.352 295.165 295.307 294.773 294.087 293.154 291.8 290.265 288.066 285.06 282.566 280.793 278.525 276.745 275.256 273.556 271.37 268.891 265.441 263.169 261.776 260.171 258.189 255.931 254.103 251.837 249.375 247.2 244.99 245.593 245.408 244.214 240.855 237.533 235.879 234.822 233.905 233.06 232.436 232.034 232.826 232.609 233.37 233.161 236.445 237.324 236.861 238.077 239.35 239.955 240.266 240.962 237.448 240.511 242.67 243.686 244.666 245.511 246.482 248.191 249.963 251.208 254.106 261.768 267.579 269.529 269.924 271.111 272.789 273.913 274.969 275.924 276.768 277.598 278.316 278.953 279.492 279.937 280.442 280.971 281.433 281.982 282.669 283.486 284.425 285.392 286.449 287.598 288.763 289.848 290.712 291.434 291.985 292.405 292.715 292.907 293.075 293.259 293.44 293.613 293.78 293.941 294.172 294.563 295.098 295.804 296.562 297.268 297.942 298.521 298.876 298.987 298.843 298.355 297.531 296.703 296.498 297.0 297.539 297.768 297.805 297.861 298.041 298.344 298.547 298.053 296.02 293.798 293.43 295.902 296.161 295.561 294.747 293.541 292.006 290.482 288.506 285.149 282.814 280.996 278.621 276.528 274.871 273.161 270.986 268.404 265.268 263.132 261.568 260.01 257.963 255.668 254.014 251.752 249.039 246.298 245.115 246.042 246.033 244.907 242.659 237.935 235.885 234.736 233.623 232.578 232.099 231.884 232.273 232.397 233.11 232.494 236.537 237.215 236.87 238.086 239.315 239.997 240.247 240.953 237.461 240.575 242.877 243.988 245.09 246.098 247.034 248.682 250.174 251.073 253.962 261.931 268.023 270.108 270.207 271.137 272.724 273.83 274.898 275.875 276.703 277.516 278.247 278.878 279.401 279.868 280.394 280.899 281.366 281.932 282.568 283.331 284.287 285.265 286.309 287.466 288.626 289.634 290.423 291.152 291.782 292.241 292.518 292.665 292.851 293.071 293.205 293.31 293.474 293.692 294.009 294.49 295.061 295.793 296.607 297.377 298.087 298.671 299.029 299.139 298.991 298.517 297.766 297.075 296.941 297.316 297.689 297.838 297.881 297.941 298.102 298.361 298.43 297.691 295.075 292.61 292.79 294.81 296.224 295.985 295.283 293.889 292.222 290.754 288.912 285.287 282.777 280.984 278.634 276.381 274.596 272.761 270.646 268.077 265.071 262.9 261.375 259.684 257.547 255.459 253.81 251.756 248.757 245.872 245.378 246.247 246.248 245.28 243.264 239.708 235.934 234.658 233.446 232.33 231.979 232.198 231.722 232.361 233.479 232.464 236.638 237.092 237.322 238.062 239.328 240.019 240.231 240.948 237.524 240.589 242.973 244.377 245.63 246.671 247.624 249.181 250.462 251.079 253.9 262.2 268.378 270.573 270.546 271.189 272.688 273.767 274.841 275.841 276.661 277.461 278.186 278.798 279.317 279.813 280.344 280.819 281.297 281.882 282.477 283.202 284.165 285.127 286.148 287.312 288.458 289.414 290.193 290.947 291.552 291.969 292.255 292.454 292.661 292.829 292.921 293.086 293.33 293.532 293.802 294.325 295.019 295.876 296.773 297.574 298.259 298.759 298.989 299.028 298.926 298.57 297.919 297.273 297.136 297.461 297.783 297.948 298.067 298.176 298.279 298.323 298.02 297.45 295.219 294.073 294.626 295.003 294.92 295.858 295.537 294.167 292.419 290.956 289.227 286.725 283.109 280.943 278.448 276.37 274.442 272.499 270.509 267.916 264.902 262.723 261.282 259.554 257.151 255.328 253.565 251.211 247.982 245.718 246.081 246.403 246.172 245.336 243.457 240.577 235.983 234.545 233.357 232.131 231.786 232.042 231.803 232.754 233.927 232.913 236.919 236.994 237.553 237.777 239.335 240.021 240.217 240.945 237.516 240.67 243.184 244.762 246.161 247.257 248.307 249.741 250.816 251.167 253.926 263.077 268.699 270.959 270.921 271.306 272.675 273.724 274.796 275.809 276.631 277.429 278.139 278.724 279.243 279.761 280.286 280.74 281.23 281.826 282.396 283.104 284.06 284.998 286.024 287.209 288.322 289.239 290.021 290.746 291.265 291.651 292.003 292.241 292.374 292.442 292.542 292.797 293.09 293.281 293.617 294.316 295.188 296.109 296.96 297.667 298.242 298.613 298.775 298.872 298.899 298.616 297.974 297.295 297.133 297.462 297.806 298.002 298.155 298.274 298.259 298.029 297.624 296.784 295.417 295.628 296.166 296.314 295.949 296.064 295.63 294.333 292.56 290.932 289.258 286.978 283.294 280.909 278.426 276.279 274.288 272.387 270.373 267.839 265.38 262.874 261.124 259.104 256.885 255.161 252.931 249.841 247.047 245.901 246.429 246.448 246.0 245.172 243.478 240.627 235.753 234.275 233.426 231.886 231.54 231.724 231.904 232.709 233.526 234.805 237.045 236.896 237.48 237.635 239.323 240.017 240.206 240.943 237.484 240.563 243.275 245.162 246.749 247.953 249.083 250.354 251.197 251.287 254.109 263.752 268.993 271.292 271.279 271.496 272.686 273.699 274.754 275.769 276.6 277.406 278.104 278.662 279.176 279.703 280.215 280.667 281.172 281.768 282.324 283.026 283.958 284.883 285.945 287.148 288.205 289.091 289.878 290.551 290.997 291.391 291.784 291.977 291.998 292.016 292.16 292.445 292.724 292.984 293.565 294.494 295.455 296.312 297.033 297.602 298.048 298.349 298.598 298.887 298.977 298.595 297.887 297.263 297.185 297.592 297.995 298.163 298.234 298.205 297.938 297.712 296.452 295.411 294.378 296.285 296.826 296.889 296.656 296.312 295.648 294.416 292.617 290.879 289.209 286.828 283.374 280.667 278.289 276.223 274.066 272.116 270.103 267.857 265.413 262.847 260.87 258.817 256.764 254.56 251.542 248.652 246.675 246.126 246.679 246.49 245.899 244.98 243.376 240.026 235.41 234.631 232.977 231.764 231.215 231.49 232.043 232.989 233.594 236.45 237.192 236.776 237.661 237.655 239.239 240.017 240.2 240.942 237.422 240.626 243.492 245.545 247.362 248.626 249.858 251.004 251.599 251.439 254.399 264.006 269.249 271.61 271.663 271.776 272.733 273.698 274.708 275.701 276.554 277.379 278.071 278.612 279.118 279.632 280.133 280.611 281.138 281.714 282.269 282.971 283.858 284.772 285.868 287.051 288.029 288.9 289.714 290.377 290.83 291.234 291.529 291.559 291.535 291.627 291.841 292.119 292.432 292.885 293.751 294.73 295.576 296.318 296.955 297.443 297.804 298.125 298.572 299.035 299.0 298.363 297.643 297.212 297.21 297.634 298.155 298.388 298.403 298.08 297.575 296.55 296.202 295.788 295.449 296.795 297.128 297.157 296.888 296.393 295.57 294.433 292.625 290.972 289.103 286.221 283.297 280.614 278.229 276.111 273.602 271.572 269.709 267.811 265.271 262.761 260.647 258.591 256.529 254.018 250.742 248.343 246.729 246.346 246.843 246.583 245.906 244.892 243.156 239.34 235.424 234.362 232.612 231.453 230.917 231.349 232.03 233.447 233.561 237.432 237.368 236.763 237.821 237.58 239.21 240.02 240.191 240.943 237.411 240.666 243.738 245.894 247.902 249.355 250.604 251.689 251.99 251.739 254.779 264.238 269.407 271.824 271.963 272.056 272.804 273.711 274.661 275.617 276.495 277.349 278.039 278.58 279.079 279.567 280.063 280.584 281.124 281.693 282.277 283.0 283.846 284.741 285.831 286.939 287.861 288.749 289.564 290.2 290.654 290.992 291.108 291.055 291.092 291.219 291.449 291.85 292.363 292.999 293.945 294.89 295.716 296.431 296.938 297.227 297.474 297.793 298.257 298.683 298.603 298.034 297.468 297.045 296.831 297.123 297.792 298.3 298.474 298.098 297.263 296.492 296.456 296.702 296.939 297.198 297.381 297.353 297.076 296.48 294.89 294.496 292.702 290.877 288.93 285.559 283.375 280.94 278.337 276.069 273.424 271.214 269.401 267.67 265.284 262.826 260.539 258.388 256.289 253.27 250.213 248.378 247.263 246.715 246.972 246.7 245.969 244.828 242.831 239.627 236.103 234.362 232.478 231.54 230.731 231.349 232.608 234.039 234.184 237.869 237.534 236.779 237.72 237.534 239.238 240.048 240.182 240.943 237.488 240.687 243.76 246.334 248.475 250.074 251.375 252.32 252.343 252.089 255.243 264.369 269.476 271.939 272.182 272.285 272.882 273.724 274.61 275.528 276.438 277.323 278.016 278.563 279.059 279.516 280.013 280.57 281.118 281.699 282.346 283.108 283.942 284.846 285.924 286.945 287.83 288.728 289.46 289.97 290.354 290.609 290.646 290.672 290.806 290.916 291.164 291.713 292.347 293.078 294.129 295.15 295.953 296.486 296.705 296.735 296.835 297.018 297.259 297.507 297.768 297.118 296.764 296.475 296.442 296.956 297.796 298.427 298.647 298.473 297.228 296.493 296.466 296.755 297.082 297.398 297.622 297.578 297.288 296.685 295.074 294.634 292.299 289.723 288.895 287.73 285.486 281.876 278.741 276.253 273.472 271.166 269.244 267.428 265.235 262.866 260.513 258.248 255.755 252.796 250.074 248.982 247.961 247.357 247.018 246.734 245.975 244.801 242.847 239.368 236.376 235.118 233.284 232.268 230.729 231.488 233.903 235.472 234.948 238.209 237.714 236.787 237.655 237.473 239.258 240.096 240.179 240.927 237.472 240.711 244.112 246.749 249.098 250.807 252.149 252.935 252.699 252.495 255.758 263.583 269.447 271.926 272.32 272.469 272.956 273.729 274.559 275.442 276.386 277.306 278.005 278.563 279.06 279.496 279.999 280.569 281.11 281.725 282.45 283.258 284.122 285.071 286.15 287.11 287.966 288.803 289.364 289.708 290.026 290.239 290.322 290.511 290.767 290.92 291.251 291.851 292.43 293.217 294.464 295.49 295.994 296.134 296.088 295.94 295.804 295.652 295.561 295.6 295.318 295.342 295.054 295.122 295.919 296.873 297.908 298.65 299.012 298.795 297.487 296.681 296.551 296.713 297.087 297.525 297.848 297.822 297.537 296.755 295.591 294.873 293.257 292.109 291.16 289.949 287.649 284.044 279.755 276.506 273.767 271.422 269.086 267.188 265.222 262.726 260.493 258.134 255.521 252.377 250.362 249.28 248.189 247.325 247.02 246.497 245.702 244.568 242.605 239.497 236.601 235.039 233.528 232.158 230.739 231.8 234.28 236.473 236.406 238.204 237.93 236.788 237.723 237.913 239.2 240.141 240.179 240.911 237.462 240.655 244.031 247.14 249.628 251.498 252.837 253.477 253.064 252.925 256.246 263.189 269.319 271.665 272.305 272.587 273.026 273.713 274.495 275.358 276.344 277.305 278.016 278.59 279.101 279.536 280.027 280.552 281.047 281.699 282.504 283.393 284.342 285.366 286.436 287.324 288.084 288.762 289.167 289.485 289.874 290.121 290.276 290.578 290.925 291.234 291.683 292.149 292.59 293.629 295.062 295.717 295.528 295.249 295.056 294.67 294.218 293.707 293.109 293.247 293.474 293.389 293.333 293.167 293.95 295.582 296.482 297.911 299.235 299.264 298.291 297.012 296.599 296.639 297.099 297.614 297.917 297.972 297.746 296.682 296.097 295.148 294.292 293.476 292.467 291.084 289.022 286.04 281.348 277.07 273.889 271.451 268.861 267.005 265.208 262.826 260.456 258.1 255.57 252.318 250.311 249.25 247.889 247.038 246.781 245.82 244.626 243.679 241.912 239.348 236.43 234.796 233.352 232.124 230.844 232.286 234.967 236.551 236.12 237.758 238.183 236.801 237.646 238.634 239.188 240.173 240.183 240.9 237.39 240.789 244.388 247.666 250.199 252.125 253.449 253.901 253.391 253.361 256.71 262.246 269.227 271.174 272.028 272.548 273.05 273.67 274.417 275.283 276.314 277.319 278.047 278.635 279.168 279.594 280.009 280.383 280.76 281.418 282.314 283.34 284.447 285.512 286.477 287.234 287.892 288.48 288.973 289.498 289.971 290.222 290.423 290.753 291.122 291.505 291.842 292.096 292.718 294.176 295.376 295.395 294.841 294.359 293.778 293.26 292.159 291.601 292.448 293.745 294.678 294.996 294.749 293.887 293.128 293.214 294.468 296.541 299.307 300.422 298.942 297.428 296.617 296.458 296.961 297.489 297.827 297.881 297.7 296.659 296.015 295.266 294.666 293.934 292.902 291.608 289.956 287.439 283.728 278.238 274.781 271.916 268.827 266.823 265.18 262.864 260.582 258.095 255.642 252.71 250.719 249.073 247.247 246.473 245.97 244.475 242.558 241.963 240.49 239.226 235.796 234.34 233.256 231.858 231.101 232.659 235.386 236.81 236.559 236.703 238.455 236.851 237.566 238.536 239.199 240.185 240.19 240.891 237.369 240.772 244.354 247.969 250.755 252.697 253.975 254.297 253.694 253.763 257.158 262.326 268.698 270.451 271.299 272.26 273.003 273.599 274.325 275.207 276.284 277.337 278.084 278.685 279.225 279.604 279.869 280.011 280.215 280.819 281.834 283.013 284.233 285.302 286.162 286.891 287.599 288.318 289.069 289.774 290.178 290.4 290.762 291.27 291.748 292.151 292.323 292.508 293.464 294.968 295.446 294.741 293.884 293.491 291.872 290.088 290.697 292.558 294.7 296.206 297.621 298.614 298.638 297.475 295.558 293.875 293.736 295.111 298.815 300.415 299.614 297.678 296.6 296.298 296.797 297.316 297.736 297.89 297.171 296.613 295.881 295.264 294.613 293.761 292.7 291.5 290.256 288.576 285.956 281.743 277.705 273.82 269.722 266.947 265.083 262.841 260.736 258.434 255.683 253.089 250.779 248.842 246.898 245.867 245.094 243.308 241.551 240.744 239.894 239.004 235.638 233.874 232.422 231.674 231.419 234.359 236.575 237.208 236.591 235.949 237.091 236.915 237.492 238.3 239.246 240.181 240.201 240.882 237.356 240.672 244.654 248.411 251.24 253.189 254.415 254.585 253.965 254.178 257.571 262.276 267.157 269.273 269.914 271.745 272.861 273.495 274.211 275.126 276.254 277.355 278.123 278.736 279.25 279.544 279.523 279.418 279.474 279.959 281.067 282.582 283.693 284.686 285.497 286.309 287.226 288.349 289.381 290.14 290.511 290.816 291.499 292.302 292.917 293.343 293.486 293.77 294.889 295.958 295.42 293.898 292.776 290.195 287.648 288.696 292.347 296.304 298.073 298.305 298.651 298.971 299.071 298.709 298.806 298.075 297.113 296.862 296.916 298.676 298.668 297.632 296.406 296.196 296.7 297.154 297.588 297.841 297.384 296.581 295.855 295.302 294.473 293.457 292.405 291.253 290.195 289.076 287.307 284.77 281.681 277.636 272.291 267.376 264.963 262.676 260.798 258.753 255.764 253.065 250.633 248.475 246.516 245.39 244.286 242.512 240.942 240.125 239.574 238.141 234.99 233.666 231.982 231.434 231.699 235.634 237.12 237.534 237.187 236.664 237.057 236.998 237.41 238.208 239.234 240.179 240.223 240.876 237.4 240.809 244.806 248.708 251.669 253.644 254.79 254.847 254.202 254.572 257.925 262.121 265.945 268.117 269.076 270.996 272.585 273.32 274.052 275.023 276.213 277.37 278.161 278.782 279.231 279.325 279.27 278.934 278.739 279.127 280.032 281.464 282.938 283.745 283.848 284.664 286.422 288.471 289.5 290.303 290.857 291.542 292.637 293.538 294.048 294.45 294.764 295.22 296.077 296.312 294.882 292.671 290.53 286.302 285.376 289.607 296.184 299.743 298.789 298.903 299.001 299.093 299.13 299.603 300.346 301.368 301.221 298.326 296.893 296.659 296.166 296.508 295.95 296.08 296.643 296.93 297.291 297.694 297.396 296.539 295.894 295.356 294.365 293.209 292.148 291.057 290.073 289.223 288.037 286.231 283.781 280.042 274.953 268.873 265.042 262.55 260.721 258.817 255.796 253.113 250.618 248.239 246.305 244.896 243.702 242.162 240.908 239.857 239.399 237.064 233.885 232.668 231.802 231.127 232.254 236.416 237.264 237.806 237.646 237.801 235.716 236.941 237.356 238.369 239.126 240.195 240.26 240.873 237.356 240.783 244.783 249.012 252.063 253.974 255.05 255.011 254.443 254.971 258.203 261.832 265.022 267.101 268.112 270.237 272.22 273.081 273.859 274.896 276.154 277.379 278.206 278.824 279.163 279.24 279.324 279.204 278.951 279.152 279.961 280.797 281.638 282.166 282.605 283.65 285.372 287.1 288.603 289.962 290.693 291.688 292.73 293.311 293.298 293.524 293.878 294.288 294.682 294.417 292.897 291.279 287.387 284.264 286.207 292.156 299.263 298.591 298.75 299.828 300.08 300.094 300.513 300.674 302.169 303.082 302.981 299.657 297.294 295.972 295.124 295.421 295.541 295.964 296.586 296.661 296.806 296.683 297.038 296.389 295.84 295.312 294.348 293.216 292.135 291.006 290.052 289.295 288.315 286.972 285.094 281.768 276.74 271.324 265.951 262.904 260.663 258.599 255.758 253.002 250.366 248.028 246.198 244.676 243.595 242.361 241.187 240.369 239.896 235.835 233.314 232.238 231.737 231.539 233.37 236.542 237.371 238.155 238.209 238.306 235.124 237.157 237.318 238.105 239.04 240.239 240.295 240.872 237.376 240.634 245.0 249.273 252.397 254.27 255.309 255.134 254.657 255.324 258.422 261.494 263.954 266.119 267.469 269.682 271.784 272.774 273.63 274.726 276.05 277.362 278.246 278.864 279.106 279.438 279.765 280.051 279.93 280.072 280.623 281.22 281.908 282.167 282.972 284.442 286.331 287.31 287.996 289.297 290.28 291.236 291.723 291.288 291.551 291.506 291.709 292.31 292.562 292.193 290.82 287.958 284.851 284.702 288.987 296.088 299.705 298.522 298.852 299.968 300.207 299.203 300.266 301.489 302.904 303.808 304.157 302.399 299.69 297.523 296.111 295.109 295.236 295.905 296.563 296.543 296.497 296.027 296.695 296.253 295.807 295.307 294.419 293.383 292.315 291.155 290.214 289.496 288.521 287.329 285.817 282.966 278.346 273.282 269.363 263.944 260.622 258.301 255.753 253.057 250.236 247.657 245.94 244.539 243.771 242.92 242.227 241.208 240.002 235.291 233.064 232.4 232.042 232.185 234.529 236.661 237.459 238.346 238.255 240.2 235.207 237.102 237.248 237.868 238.968 240.281 240.334 240.869 237.304 240.81 244.941 249.528 252.712 254.555 255.421 255.221 254.893 255.726 258.652 261.196 263.123 265.293 267.307 269.383 271.315 272.391 273.344 274.502 275.882 277.297 278.262 278.901 279.194 279.778 280.861 281.382 281.477 281.666 282.196 282.727 282.982 283.26 284.313 285.91 287.981 288.49 288.56 289.001 289.736 290.268 290.242 289.704 289.181 288.206 287.871 287.898 287.628 287.183 286.058 284.673 284.454 287.704 292.981 299.047 298.756 299.323 300.509 299.161 298.469 298.741 299.533 300.788 302.329 303.648 304.052 303.727 301.117 298.666 296.787 295.685 295.239 295.869 296.542 296.54 296.402 296.265 296.563 296.195 295.828 295.34 294.513 293.558 292.516 291.367 290.428 289.712 288.776 287.656 286.292 283.791 279.786 275.182 271.272 266.617 260.951 258.112 255.971 253.047 250.163 247.462 245.782 244.134 243.999 243.568 244.03 243.422 240.036 235.805 233.467 232.585 232.739 232.981 235.489 236.67 237.501 238.376 239.272 240.811 234.849 236.88 237.237 237.814 238.945 240.315 240.377 240.865 237.305 240.786 245.116 249.707 252.98 254.727 255.442 255.298 255.156 256.147 258.852 260.967 262.603 264.557 266.768 269.136 270.598 271.904 272.944 274.182 275.61 277.122 278.22 278.939 279.432 280.535 281.395 282.052 282.665 283.186 284.04 284.702 284.882 285.36 286.936 288.197 289.394 290.003 290.025 290.339 290.805 291.452 291.275 290.082 288.601 287.202 286.351 285.871 285.394 285.271 283.915 284.174 287.278 292.244 298.462 300.686 300.002 300.468 300.226 298.517 298.103 298.725 300.533 300.842 301.236 302.067 302.696 302.097 300.118 298.375 296.937 295.773 295.357 295.893 296.493 296.514 296.384 296.473 296.481 296.183 295.837 295.342 294.567 293.676 292.689 291.578 290.626 289.887 289.03 288.019 286.761 284.523 280.992 276.833 272.992 268.557 261.351 258.261 256.314 253.55 250.114 247.216 245.411 243.828 243.994 243.792 243.992 243.912 241.057 237.733 234.796 233.552 234.292 235.443 236.213 236.852 237.699 238.288 239.446 241.005 236.387 237.48 237.266 237.388 238.902 240.369 240.413 240.861 237.277 240.598 245.255 249.89 253.184 254.851 255.444 255.404 255.447 256.533 259.118 260.856 262.228 263.906 265.824 267.641 269.877 271.447 272.549 273.85 275.32 276.848 278.076 278.93 279.74 280.835 281.638 282.398 283.144 284.179 285.201 285.804 286.678 287.302 288.378 289.889 291.218 292.122 292.059 292.63 293.627 294.26 294.525 292.939 290.86 288.946 287.712 286.479 285.86 284.898 285.159 287.739 291.87 296.835 301.287 301.725 300.625 299.18 298.467 298.197 298.453 300.338 302.266 302.748 302.687 302.322 301.177 298.699 297.454 297.331 296.948 295.841 295.554 296.055 296.443 296.357 296.241 296.362 296.36 296.095 295.761 295.282 294.565 293.722 292.809 291.783 290.829 290.05 289.278 288.364 287.191 285.202 282.069 278.127 273.881 268.76 261.852 258.901 257.418 255.156 250.547 247.284 245.081 243.603 243.695 243.479 243.219 244.086 243.442 238.426 237.91 234.75 236.179 237.404 236.743 237.048 237.938 238.22 239.765 241.256 236.91 238.038 237.3 236.937 238.804 240.407 240.444 240.86 237.29 240.743 245.008 250.009 253.359 254.938 255.46 255.529 255.785 257.019 259.349 260.843 262.038 263.633 265.441 267.317 268.956 271.121 272.223 273.553 275.049 276.56 277.862 278.848 279.789 280.769 281.608 282.372 283.184 284.27 285.301 286.167 287.04 288.383 289.739 291.499 292.417 293.212 293.536 293.365 294.424 295.587 296.709 296.12 294.786 293.323 292.202 290.936 289.972 289.363 290.039 292.092 295.691 299.67 301.541 301.062 299.712 298.176 297.978 298.164 298.707 301.03 302.616 303.905 304.065 302.364 299.683 296.108 294.843 296.299 296.564 295.824 295.753 296.178 296.348 296.18 296.07 296.176 296.174 295.998 295.711 295.261 294.58 293.751 292.862 291.906 290.984 290.207 289.485 288.619 287.534 285.864 283.076 279.122 274.408 269.22 262.527 260.709 259.513 256.383 250.997 247.352 245.01 243.344 242.803 243.079 243.015 244.342 244.472 242.003 239.054 236.081 237.023 237.51 236.933 237.19 237.937 238.003 239.691 241.526 237.967 238.31 237.384 236.708 238.767 240.411 240.472 240.859 237.244 240.736 245.313 250.092 253.477 255.032 255.397 255.657 256.107 257.523 259.644 260.845 262.005 263.605 265.174 267.012 268.62 270.816 271.96 273.316 274.809 276.301 277.624 278.696 279.658 280.611 281.455 282.182 283.001 284.036 285.086 286.025 287.117 288.456 290.168 291.982 292.768 293.269 293.562 293.577 294.502 295.74 297.103 297.915 297.872 297.502 297.211 296.236 294.991 294.467 294.656 295.808 297.648 299.367 300.267 299.463 298.278 297.851 298.028 298.216 298.404 299.593 303.067 304.875 304.474 301.313 298.155 294.952 293.947 295.699 296.028 295.896 295.909 296.207 296.193 296.018 295.892 295.915 295.958 295.917 295.693 295.238 294.574 293.767 292.901 291.991 291.097 290.323 289.634 288.815 287.777 286.298 283.775 279.931 274.982 269.925 263.7 262.1 260.544 257.501 251.704 247.669 245.152 243.353 243.09 243.613 245.057 244.963 245.06 243.365 241.787 237.698 237.462 237.642 237.218 237.543 237.947 237.701 239.496 241.765 240.658 238.55 237.581 236.447 238.722 240.402 240.496 240.857 237.223 240.499 245.311 250.171 253.63 255.1 255.409 255.93 256.499 258.002 260.221 261.035 262.086 263.559 264.957 266.741 268.582 270.243 271.791 273.167 274.627 276.082 277.379 278.498 279.484 280.451 281.307 281.996 282.732 283.589 284.491 285.466 286.743 288.307 290.227 291.859 292.716 293.434 293.817 294.103 294.828 295.936 297.236 298.01 298.401 298.546 298.547 298.451 298.117 297.684 297.36 297.488 298.0 298.373 298.641 297.936 297.565 297.642 297.983 298.022 298.135 300.089 303.91 305.283 303.95 300.826 298.515 295.837 294.25 295.502 296.129 295.997 296.107 296.193 296.02 295.873 295.758 295.709 295.787 295.842 295.628 295.141 294.523 293.78 292.954 292.073 291.185 290.399 289.74 288.998 288.004 286.633 284.278 280.565 275.537 270.597 265.816 263.662 261.395 258.17 252.073 248.033 246.012 244.779 245.434 246.627 245.993 245.634 245.208 243.5 242.474 239.441 237.686 237.661 237.535 237.812 238.019 237.523 239.895 241.888 240.877 238.791 237.56 236.258 238.658 240.406 240.52 240.856 237.198 240.539 245.248 250.18 253.652 255.135 255.512 256.047 256.933 258.65 261.201 261.161 261.967 263.617 264.124 266.735 268.493 269.964 271.79 273.122 274.519 275.931 277.199 278.35 279.364 280.339 281.271 281.961 282.534 283.181 283.957 284.878 286.076 287.667 289.5 291.393 292.459 293.228 293.739 294.349 295.257 296.257 297.151 297.894 298.291 298.612 298.859 298.923 298.885 298.566 298.144 297.856 297.696 297.478 297.234 297.059 297.092 297.362 297.827 297.846 298.176 300.534 304.082 304.859 303.258 301.131 299.081 296.119 294.415 294.953 296.215 296.262 296.346 296.18 295.886 295.714 295.602 295.571 295.673 295.705 295.479 295.043 294.509 293.838 293.054 292.189 291.288 290.47 289.822 289.17 288.229 286.898 284.697 281.141 276.151 271.233 268.112 264.957 261.813 258.152 252.342 248.606 247.268 247.623 248.533 247.691 246.421 246.126 244.836 242.881 241.603 240.147 237.619 237.582 237.585 238.09 238.137 237.277 240.454 241.904 241.047 239.053 237.608 236.103 238.619 240.432 240.544 240.857 237.208 240.623 245.245 250.203 253.689 255.15 255.53 256.21 257.377 259.435 261.532 261.451 261.629 263.378 264.509 266.453 268.354 269.819 271.584 273.107 274.419 275.793 277.052 278.24 279.265 280.211 281.187 281.934 282.314 282.749 283.402 284.306 285.507 286.99 288.677 290.708 292.104 293.142 293.82 294.634 295.755 296.625 297.195 297.677 298.083 298.539 298.771 298.843 298.697 298.566 298.306 298.025 297.786 297.224 297.034 296.841 296.961 297.356 297.791 297.976 298.624 300.766 303.719 304.02 302.432 300.701 298.677 296.356 295.133 296.151 296.367 296.527 296.414 296.045 295.728 295.55 295.422 295.421 295.517 295.506 295.336 295.017 294.524 293.869 293.115 292.275 291.383 290.546 289.879 289.27 288.401 287.127 285.129 281.76 276.764 272.001 269.051 266.134 261.422 257.617 252.744 249.438 248.447 249.786 249.662 248.292 246.958 246.393 244.284 242.082 241.113 240.374 238.01 237.406 237.879 238.48 238.38 238.959 242.303 241.895 241.07 239.329 237.368 235.908 238.585 240.48 240.57 240.854 237.173 240.591 245.202 250.173 253.742 255.168 255.602 256.411 257.767 259.963 261.669 261.409 261.802 263.654 264.84 266.601 268.713 269.897 270.988 273.1 274.308 275.635 276.912 278.145 279.157 280.049 281.044 281.74 282.008 282.241 282.817 283.76 285.006 286.508 288.38 290.516 292.362 293.148 293.979 294.787 295.752 296.429 296.934 297.636 298.127 298.632 298.817 298.696 298.623 298.663 298.518 298.364 297.761 297.038 296.736 296.65 296.82 297.137 297.62 297.969 299.35 301.798 303.705 303.624 301.781 299.843 297.827 296.778 296.525 296.427 296.574 296.584 296.253 295.81 295.573 295.411 295.241 295.254 295.319 295.277 295.21 294.995 294.485 293.834 293.145 292.351 291.475 290.625 289.922 289.329 288.521 287.31 285.474 282.29 277.26 272.809 269.801 266.689 260.634 257.059 253.681 251.029 250.493 250.958 250.169 248.603 247.354 246.414 243.848 241.656 241.581 240.983 238.628 238.206 238.707 239.018 239.13 241.687 242.285 241.647 241.064 239.583 237.05 235.755 238.522 240.517 240.594 240.849 237.166 240.404 245.036 250.021 253.737 255.215 255.772 256.671 258.175 260.862 261.778 261.732 262.175 263.912 265.575 267.435 269.146 270.045 270.796 272.794 274.16 275.422 276.738 278.006 278.99 279.806 280.701 281.361 281.549 281.641 282.217 283.279 284.708 286.455 288.729 290.864 292.584 294.175 295.155 295.43 295.627 296.019 296.532 297.323 297.926 298.217 298.207 298.247 298.29 298.11 298.507 298.357 297.649 297.009 296.68 296.587 296.776 296.995 297.201 297.632 299.658 302.88 303.365 302.958 301.265 299.545 297.327 297.406 297.187 296.673 296.543 296.35 295.931 295.565 295.445 295.251 295.033 295.067 295.099 295.05 295.089 294.918 294.359 293.762 293.18 292.432 291.568 290.708 289.972 289.385 288.621 287.458 285.76 282.782 277.799 273.419 270.174 266.893 260.637 257.608 255.561 253.107 252.391 251.655 250.388 248.846 247.683 246.579 243.834 242.378 242.431 241.344 239.933 239.603 239.459 240.04 241.191 242.458 242.036 241.309 240.916 239.803 237.367 235.692 238.524 240.535 240.615 240.844 237.111 240.416 245.037 249.958 253.719 255.262 255.808 256.948 258.563 261.757 262.278 262.166 262.599 264.254 266.045 268.21 269.409 270.185 270.993 272.314 273.966 275.232 276.527 277.802 278.775 279.546 280.343 280.928 281.082 281.177 281.842 283.083 284.732 286.798 289.47 291.54 292.884 294.221 295.312 295.49 295.472 295.706 296.072 296.535 296.964 297.287 297.535 297.904 298.166 298.066 297.943 297.815 297.359 297.21 296.78 296.732 296.886 297.063 296.894 297.434 299.548 302.876 303.344 301.909 300.399 299.008 297.041 297.314 297.132 296.644 296.361 296.038 295.654 295.418 295.296 295.014 294.815 294.89 294.879 294.842 294.966 294.825 294.287 293.76 293.222 292.487 291.668 290.825 290.054 289.47 288.728 287.567 285.972 283.25 278.388 273.902 270.321 267.086 260.821 259.08 257.979 256.152 253.873 252.263 250.868 249.477 248.383 247.407 245.001 243.675 242.534 241.343 240.675 240.052 240.618 241.74 242.274 242.362 241.69 240.738 240.686 239.947 237.91 235.647 238.581 240.545 240.632 240.839 237.037 240.356 244.841 249.874 253.677 255.292 255.918 257.186 258.942 261.797 262.712 262.692 263.226 264.757 266.453 268.58 269.503 270.195 271.003 272.246 273.825 275.096 276.31 277.556 278.543 279.309 280.033 280.533 280.664 280.842 281.668 283.095 284.872 287.132 289.953 291.894 293.066 294.198 295.264 295.736 295.206 295.424 295.586 295.522 295.605 296.028 296.767 297.497 297.813 297.735 297.473 297.278 297.005 297.062 296.964 297.025 296.948 296.714 296.724 297.34 299.57 302.478 302.857 301.226 299.869 298.405 297.266 297.231 297.004 296.62 296.161 295.73 295.412 295.276 295.119 294.808 294.674 294.73 294.65 294.641 294.834 294.729 294.241 293.741 293.173 292.454 291.737 290.942 290.131 289.544 288.828 287.66 286.116 283.622 278.913 274.28 270.397 267.291 262.219 260.353 258.84 257.186 255.222 253.636 252.121 250.896 250.347 248.673 246.552 244.293 242.039 241.607 240.909 240.578 241.871 242.301 242.272 242.047 241.122 240.096 240.429 240.063 238.319 235.637 238.66 240.56 240.65 240.842 237.083 240.221 244.801 249.724 253.623 255.296 256.051 257.432 259.448 261.531 263.111 263.369 264.001 265.174 266.941 268.711 269.461 270.151 271.017 272.308 273.808 275.019 276.109 277.29 278.312 279.091 279.74 280.143 280.281 280.626 281.67 283.237 285.0 287.255 289.984 291.789 292.965 294.089 295.073 295.719 295.815 295.428 295.19 294.599 294.561 295.078 295.852 296.895 297.535 297.518 297.163 296.863 296.678 296.797 297.265 297.305 297.169 296.778 296.762 297.381 299.255 301.539 301.668 300.39 299.412 298.449 297.473 297.335 296.957 296.491 295.895 295.425 295.182 295.114 294.936 294.655 294.573 294.557 294.429 294.47 294.682 294.573 294.141 293.663 293.063 292.385 291.789 291.051 290.202 289.602 288.922 287.782 286.255 283.816 279.118 274.378 270.328 267.215 264.018 261.191 259.557 258.324 256.829 255.95 255.807 255.029 252.533 249.833 247.023 243.687 241.922 241.615 241.145 241.296 242.301 242.483 242.075 241.641 240.471 239.264 240.061 240.13 237.31 235.644 238.742 240.581 240.689 240.852 237.075 240.185 244.566 249.669 253.546 255.323 256.172 257.69 260.028 261.759 263.548 264.127 264.82 265.695 267.306 268.664 269.349 270.225 271.199 272.513 273.91 275.006 275.933 277.022 278.088 278.883 279.438 279.725 279.928 280.558 281.842 283.433 285.036 287.089 289.57 291.249 292.487 293.783 294.902 295.648 296.029 296.312 295.787 294.651 294.309 294.667 295.341 296.417 297.384 297.384 296.827 296.379 296.251 296.566 297.218 297.704 297.475 297.034 297.067 297.332 298.598 300.107 300.277 299.346 298.218 298.01 297.725 297.287 296.764 296.15 295.553 295.137 294.943 294.906 294.739 294.495 294.393 294.312 294.244 294.345 294.48 294.334 293.975 293.544 292.943 292.312 291.799 291.118 290.275 289.658 289.006 287.913 286.385 283.875 279.101 274.212 270.252 267.287 264.314 261.814 260.483 260.166 260.087 259.859 259.604 258.466 255.225 250.908 246.749 242.7 241.406 241.459 241.487 241.859 242.583 242.364 241.749 241.171 239.598 238.408 239.676 240.192 237.461 235.71 238.801 240.629 240.744 240.866 237.069 240.172 244.567 249.374 253.436 255.356 256.338 257.86 260.242 262.083 264.125 264.771 265.385 266.196 267.459 268.616 269.44 270.465 271.449 272.807 274.06 275.017 275.821 276.822 277.896 278.685 279.153 279.388 279.732 280.65 282.049 283.528 284.958 286.833 289.092 290.678 291.867 293.233 294.524 295.54 296.173 296.451 296.333 296.023 295.925 295.698 295.509 296.179 296.994 297.082 296.469 295.875 295.709 295.952 296.653 297.199 297.361 297.335 297.279 297.197 298.076 299.178 299.389 298.521 297.919 297.861 297.612 297.088 296.507 295.915 295.379 294.965 294.771 294.729 294.573 294.306 294.158 294.099 294.105 294.184 294.243 294.141 293.881 293.465 292.842 292.195 291.671 291.067 290.343 289.738 289.063 288.008 286.455 283.732 278.73 273.983 270.292 267.414 264.695 262.624 261.771 262.751 263.662 263.698 263.11 261.132 256.519 251.514 244.456 241.237 240.528 240.778 241.298 241.783 242.371 242.13 241.376 240.495 238.532 237.595 239.285 240.154 239.516 235.882 238.851 240.685 240.78 240.882 236.97 239.989 244.248 249.335 253.291 255.359 256.528 257.92 260.097 262.344 264.664 265.323 265.835 266.549 267.618 268.699 269.722 270.715 271.7 273.07 274.166 275.012 275.738 276.66 277.697 278.436 278.854 279.116 279.641 280.79 282.19 283.518 284.838 286.618 288.739 290.278 291.406 292.722 294.01 295.142 295.995 296.565 296.845 297.019 297.097 297.14 296.469 296.171 296.353 296.263 296.065 295.806 295.631 295.475 295.857 296.497 297.016 297.213 297.177 297.255 297.763 298.496 299.25 299.048 298.461 297.935 297.377 296.819 296.325 295.823 295.28 294.863 294.692 294.626 294.435 294.135 293.975 293.938 293.934 293.948 294.01 294.018 293.818 293.353 292.7 292.039 291.483 290.943 290.361 289.791 289.072 288.03 286.476 283.574 278.503 274.246 270.751 267.818 265.48 264.103 264.248 265.709 266.294 266.012 265.174 262.672 257.149 250.613 242.66 240.144 239.301 239.34 240.243 241.061 241.721 241.435 240.775 239.475 237.47 236.822 238.979 240.239 239.791 236.179 239.009 240.673 240.813 240.897 236.905 239.91 244.285 249.077 253.129 255.341 256.632 258.079 260.218 262.59 265.101 265.886 266.3 266.923 267.83 268.984 270.081 270.996 271.966 273.263 274.214 274.985 275.658 276.51 277.468 278.122 278.523 278.878 279.577 280.888 282.24 283.432 284.697 286.429 288.47 290.007 291.129 292.353 293.552 294.681 295.621 296.413 297.148 297.632 297.819 297.825 297.823 296.507 295.846 295.513 296.086 296.326 295.898 295.642 295.7 296.28 296.741 296.828 296.946 297.012 297.337 298.043 299.203 299.002 298.346 297.724 297.121 296.611 296.202 295.746 295.215 294.842 294.691 294.567 294.304 293.98 293.817 293.768 293.722 293.695 293.794 293.885 293.707 293.199 292.547 291.905 291.317 290.794 290.318 289.793 289.068 288.061 286.54 283.623 278.715 274.858 271.614 268.654 266.487 266.109 267.045 267.989 268.262 267.839 266.662 263.327 257.291 249.772 242.532 239.692 238.802 238.476 239.129 240.209 240.635 240.433 239.725 238.345 236.428 236.266 238.696 240.179 239.924 238.323 238.996 240.7 240.87 240.939 236.915 239.952 244.099 248.9 252.922 255.296 256.714 258.296 260.345 262.857 265.465 266.659 267.008 267.468 268.186 269.393 270.487 271.339 272.219 273.345 274.218 274.935 275.572 276.35 277.18 277.719 278.129 278.614 279.453 280.849 282.171 283.3 284.545 286.204 288.151 289.72 290.927 292.115 293.221 294.26 295.182 296.039 296.96 297.699 298.076 298.21 298.163 298.128 296.192 295.721 296.538 297.087 296.509 296.032 295.702 295.732 296.005 296.484 296.787 296.957 297.275 298.3 299.075 298.766 298.067 297.487 297.001 296.533 296.114 295.675 295.213 294.894 294.691 294.478 294.15 293.821 293.626 293.531 293.487 293.484 293.58 293.655 293.504 293.044 292.433 291.824 291.211 290.643 290.196 289.74 289.068 288.132 286.673 283.875 279.245 275.598 272.619 269.815 267.863 268.179 268.964 269.354 269.327 268.83 267.434 263.626 257.745 248.324 243.856 241.137 239.417 238.524 238.717 239.267 239.323 238.958 238.138 237.076 235.506 235.85 238.631 240.139 239.921 239.03 238.963 240.816 240.888 241.016 236.889 239.774 243.968 248.555 252.679 255.206 256.779 258.459 260.454 263.045 265.798 267.211 267.589 267.921 268.66 269.719 270.811 271.676 272.412 273.329 274.19 274.897 275.506 276.21 276.91 277.343 277.783 278.36 279.251 280.655 282.011 283.177 284.448 286.016 287.838 289.403 290.706 291.945 293.016 294.02 294.95 295.786 296.674 297.477 297.993 298.218 298.133 298.397 297.764 297.096 297.828 297.887 297.656 296.709 295.874 295.546 295.605 295.948 296.47 296.703 297.007 297.875 299.103 298.7 297.982 297.419 296.989 296.533 296.079 295.624 295.16 294.814 294.562 294.338 294.009 293.68 293.449 293.315 293.289 293.312 293.363 293.396 293.31 292.955 292.346 291.725 291.125 290.532 290.051 289.664 289.095 288.227 286.811 284.133 279.809 276.385 273.716 271.317 269.827 270.132 270.477 270.469 270.184 269.649 268.064 264.217 258.874 250.16 246.527 243.533 241.024 239.189 238.59 238.296 237.874 237.271 236.643 235.964 234.93 235.686 238.651 240.121 240.061 239.375 239.229 240.836 240.975 241.036 236.869 239.666 243.785 248.376 252.449 255.076 256.826 258.556 260.487 263.098 266.024 267.579 267.978 268.261 269.047 270.001 271.072 271.92 272.551 273.28 274.125 274.864 275.443 276.071 276.652 277.038 277.524 278.14 279.032 280.427 281.843 283.076 284.383 285.898 287.621 289.154 290.517 291.828 292.912 293.929 294.866 295.674 296.5 297.29 297.877 298.159 298.105 298.041 298.77 299.087 299.259 299.247 299.046 298.848 297.885 296.627 296.12 295.905 296.017 296.27 296.747 297.415 298.903 298.697 298.015 297.455 297.033 296.561 296.055 295.539 295.017 294.643 294.399 294.183 293.85 293.515 293.282 293.128 293.078 293.114 293.177 293.204 293.141 292.845 292.244 291.612 291.052 290.464 289.944 289.589 289.12 288.305 286.888 284.216 280.105 276.915 274.555 272.569 271.381 271.363 271.465 271.248 270.922 270.522 269.034 265.65 260.316 256.059 251.292 246.528 243.163 240.341 238.868 237.609 236.405 235.545 235.397 235.385 234.722 235.821 238.692 240.156 240.047 239.541 239.23 240.922 241.055 241.036 236.797 239.619 243.532 248.063 252.162 254.934 256.812 258.692 260.505 262.955 266.044 267.844 268.292 268.552 269.342 270.246 271.29 272.093 272.643 273.219 274.024 274.813 275.363 275.904 276.393 276.816 277.343 277.966 278.839 280.221 281.691 282.985 284.329 285.832 287.501 288.995 290.393 291.793 292.914 293.925 294.835 295.633 296.402 297.113 297.742 298.155 298.2 298.094 298.329 298.753 299.171 299.315 299.239 299.315 299.335 299.072 296.994 296.302 295.952 296.048 296.554 297.335 298.747 298.694 298.083 297.551 297.124 296.613 296.043 295.454 294.872 294.471 294.227 293.985 293.634 293.323 293.125 292.953 292.85 292.9 293.033 293.066 292.955 292.687 292.159 291.542 290.989 290.403 289.839 289.486 289.119 288.387 286.979 284.267 280.392 277.421 275.323 273.614 272.532 272.259 272.185 271.862 271.583 271.302 269.965 267.157 262.567 258.859 255.383 251.05 246.628 242.141 239.781 237.498 235.502 234.253 234.591 235.089 234.691 236.027 238.867 240.174 240.097 239.756 239.319 240.986 241.065 241.036 236.719 239.47 243.379 247.771 251.87 254.725 256.684 258.683 260.487 262.729 265.901 268.032 268.584 268.858 269.57 270.454 271.468 272.245 272.727 273.147 273.883 274.731 275.262 275.695 276.134 276.643 277.197 277.831 278.695 280.058 281.55 282.897 284.272 285.791 287.415 288.884 290.326 291.804 292.94 293.845 294.676 295.508 296.288 296.902 297.534 298.177 298.505 298.541 298.545 298.562 298.612 298.572 298.635 298.056 298.352 298.994 298.428 296.415 295.858 295.997 296.603 297.796 298.848 298.734 298.161 297.67 297.237 296.693 296.069 295.427 294.785 294.294 293.973 293.681 293.371 293.143 292.986 292.779 292.612 292.669 292.884 292.92 292.726 292.496 292.113 291.507 290.877 290.269 289.686 289.307 289.043 288.459 287.169 284.6 280.967 278.156 276.141 274.566 273.505 273.054 272.831 272.5 272.327 272.129 270.997 268.729 265.877 263.108 260.005 255.166 250.946 244.413 241.158 238.114 235.321 233.817 234.446 235.079 234.94 236.485 239.075 240.141 240.078 239.966 239.418 241.026 241.067 241.118 236.7 239.475 243.227 247.451 251.538 254.437 256.52 258.604 260.412 262.425 265.702 268.116 268.801 269.135 269.736 270.588 271.572 272.345 272.769 273.064 273.739 274.656 275.184 275.522 275.94 276.483 277.068 277.753 278.621 279.951 281.445 282.846 284.275 285.78 287.329 288.778 290.268 291.754 292.83 293.623 294.384 295.241 296.094 296.738 297.361 298.045 298.544 298.781 298.945 298.97 298.954 299.061 299.065 298.767 298.433 297.998 297.361 296.283 295.962 296.264 297.042 298.542 299.082 298.833 298.255 297.78 297.331 296.778 296.142 295.453 294.741 294.155 293.754 293.449 293.199 293.004 292.832 292.628 292.45 292.445 292.653 292.75 292.582 292.365 292.021 291.379 290.689 290.12 289.567 289.129 288.892 288.448 287.389 285.317 282.047 279.099 276.88 275.256 274.202 273.666 273.346 273.039 272.932 272.743 271.767 269.826 267.721 266.107 264.23 259.309 253.714 246.826 242.738 239.446 236.12 234.341 234.775 235.335 235.465 237.131 239.401 240.145 240.13 240.118 239.521 241.063 241.066 241.123 236.764 239.292 242.996 247.145 251.135 254.129 256.328 258.368 260.104 262.048 265.383 268.119 268.98 269.36 269.868 270.682 271.628 272.413 272.787 272.976 273.588 274.582 275.127 275.387 275.767 276.294 276.936 277.69 278.576 279.864 281.352 282.819 284.312 285.789 287.264 288.71 290.241 291.695 292.689 293.437 294.173 295.008 295.91 296.654 297.292 297.893 298.382 298.723 299.017 299.204 299.262 299.318 299.339 299.16 298.897 298.534 297.657 296.606 296.442 296.776 297.963 298.96 299.248 298.899 298.365 297.928 297.467 296.901 296.241 295.485 294.713 294.103 293.682 293.36 293.081 292.857 292.666 292.5 292.34 292.242 292.385 292.57 292.484 292.239 291.865 291.226 290.561 290.051 289.517 288.997 288.723 288.365 287.545 285.958 283.421 280.224 277.635 275.843 274.785 274.233 273.85 273.581 273.535 273.366 272.535 270.914 269.265 268.349 267.329 263.289 255.611 249.198 244.404 240.968 237.791 235.555 235.61 236.097 236.279 237.907 239.703 240.201 240.217 240.134 239.617 241.075 241.064 241.124 236.674 239.195 242.802 246.818 250.764 253.791 256.106 258.013 259.599 261.433 264.999 268.052 269.108 269.51 269.964 270.729 271.654 272.457 272.807 272.893 273.411 274.48 275.077 275.282 275.598 276.104 276.798 277.628 278.544 279.795 281.263 282.783 284.332 285.785 287.212 288.671 290.226 291.646 292.57 293.322 294.09 294.89 295.771 296.617 297.299 297.818 298.222 298.533 298.837 299.122 299.256 299.274 299.291 299.308 299.269 299.044 298.558 298.044 297.303 298.197 298.777 299.248 299.303 298.932 298.474 298.078 297.612 297.029 296.337 295.517 294.678 294.072 293.672 293.328 292.997 292.744 292.542 292.4 292.259 292.091 292.135 292.362 292.353 292.087 291.708 291.141 290.537 290.045 289.494 288.899 288.561 288.249 287.628 286.482 284.631 281.644 278.58 276.475 275.379 274.875 274.486 274.261 274.271 274.137 273.396 271.928 270.38 269.653 269.165 266.197 257.019 251.604 246.094 242.762 239.597 237.403 237.003 237.355 237.458 238.761 240.073 240.329 240.353 240.267 239.724 241.158 241.064 241.123 236.62 239.256 242.508 246.44 250.37 253.426 255.827 257.745 259.052 260.672 264.571 267.926 269.164 269.627 270.045 270.719 271.644 272.479 272.833 272.814 273.228 274.311 275.007 275.202 275.452 275.943 276.672 277.57 278.53 279.753 281.174 282.702 284.28 285.721 287.131 288.582 290.139 291.552 292.448 293.224 294.085 294.898 295.733 296.601 297.299 297.815 298.193 298.416 298.558 298.8 299.013 299.042 299.03 299.125 299.278 299.308 299.133 298.917 298.858 299.04 299.287 299.389 299.29 298.983 298.6 298.192 297.707 297.121 296.422 295.574 294.669 294.021 293.614 293.273 292.953 292.717 292.486 292.281 292.146 291.996 291.957 292.108 292.135 291.929 291.63 291.159 290.558 289.991 289.401 288.8 288.431 288.14 287.647 286.843 285.496 283.123 279.739 277.202 275.91 275.407 275.028 274.807 274.886 274.835 274.2 272.945 271.479 270.741 270.439 268.262 259.711 252.062 247.894 244.472 241.622 239.409 238.773 238.983 238.872 239.657 240.464 240.492 240.575 240.323 239.758 241.257 241.114 241.118 236.597 238.97 242.339 246.107 249.953 253.035 255.473 257.332 258.952 260.234 264.092 267.795 269.159 269.704 270.099 270.705 271.619 272.474 272.879 272.81 273.12 274.131 274.909 275.136 275.369 275.849 276.587 277.52 278.529 279.75 281.125 282.625 284.193 285.624 287.022 288.438 289.993 291.442 292.365 293.153 294.091 294.993 295.858 296.665 297.273 297.721 298.098 298.34 298.469 298.69 298.93 298.98 298.962 299.021 299.155 299.274 299.322 299.328 299.32 299.393 299.479 299.469 299.373 299.159 298.79 298.343 297.836 297.206 296.478 295.653 294.759 294.063 293.606 293.247 292.933 292.698 292.413 292.127 291.998 291.932 291.878 291.932 291.959 291.814 291.548 291.093 290.493 289.906 289.32 288.733 288.326 288.03 287.615 287.008 285.995 284.192 281.049 278.105 276.447 275.885 275.516 275.31 275.475 275.56 275.077 273.916 272.363 271.446 271.332 269.925 262.893 253.736 250.655 246.123 243.656 241.625 240.862 240.67 240.21 240.559 240.949 240.703 240.823 240.79 240.055 241.358 241.131 241.117 236.568 238.988 242.103 245.711 249.52 252.561 255.137 256.871 258.491 259.792 263.676 267.625 269.158 269.752 270.131 270.709 271.586 272.461 272.93 272.863 273.064 273.961 274.777 275.055 275.299 275.79 276.537 277.478 278.514 279.742 281.092 282.581 284.131 285.552 286.946 288.366 289.931 291.413 292.383 293.185 294.149 295.089 295.981 296.733 297.262 297.614 297.922 298.186 298.398 298.644 298.843 298.866 298.866 298.93 299.05 299.195 299.367 299.48 299.496 299.514 299.57 299.583 299.528 299.354 298.97 298.506 297.993 297.297 296.487 295.654 294.817 294.141 293.66 293.266 292.904 292.639 292.336 292.009 291.854 291.829 291.798 291.804 291.812 291.665 291.362 290.92 290.395 289.863 289.284 288.674 288.184 287.862 287.523 287.068 286.34 285.013 282.57 279.435 277.255 276.448 276.032 275.77 275.902 276.044 275.675 274.668 273.225 272.158 271.944 271.015 265.445 254.696 252.37 247.496 245.32 243.673 242.873 242.215 241.476 241.43 241.439 240.924 241.089 242.29 240.198 241.457 241.149 241.12 236.546 238.9 241.884 245.355 249.058 252.168 254.737 256.404 257.973 259.648 263.23 267.396 269.165 269.775 270.149 270.716 271.549 272.436 272.97 272.951 273.045 273.797 274.614 274.958 275.24 275.766 276.513 277.436 278.475 279.707 281.051 282.551 284.085 285.496 286.913 288.369 289.942 291.423 292.45 293.298 294.252 295.162 296.014 296.717 297.227 297.543 297.772 298.025 298.301 298.54 298.673 298.677 298.71 298.8 298.938 299.106 299.318 299.462 299.515 299.556 299.657 299.741 299.713 299.531 299.14 298.673 298.156 297.398 296.471 295.587 294.807 294.203 293.748 293.341 292.929 292.615 292.305 291.951 291.725 291.677 291.686 291.685 291.659 291.461 291.105 290.697 290.294 289.833 289.241 288.591 288.004 287.601 287.3 286.978 286.526 285.696 284.004 281.23 278.516 277.145 276.483 276.136 276.182 276.393 276.209 275.408 274.006 272.777 272.512 271.716 267.045 255.808 253.246 248.505 246.699 245.417 244.572 243.579 242.587 242.236 241.96 241.188 241.36 242.562 240.446 241.543 241.188 241.132 236.502 238.807 241.65 245.005 248.593 251.683 254.249 255.939 257.426 259.457 262.562 266.926 269.149 269.803 270.165 270.716 271.501 272.403 272.99 273.067 273.075 273.631 274.417 274.857 275.215 275.773 276.508 277.386 278.395 279.614 280.972 282.489 284.016 285.429 286.9 288.406 289.93 291.367 292.457 293.42 294.379 295.212 295.956 296.599 297.126 297.493 297.71 297.943 298.188 298.369 298.473 298.544 298.61 298.667 298.814 299.021 299.248 299.428 299.568 299.664 299.794 299.925 299.948 299.79 299.426 298.944 298.374 297.543 296.494 295.558 294.86 294.363 293.979 293.593 293.152 292.755 292.389 291.979 291.643 291.521 291.546 291.553 291.474 291.236 290.868 290.481 290.102 289.628 289.043 288.462 287.881 287.362 286.965 286.678 286.405 285.97 284.829 282.654 279.855 277.965 277.029 276.578 276.537 276.714 276.63 276.002 274.8 273.537 273.0 272.208 268.331 257.11 254.103 249.287 247.795 246.73 245.842 244.675 243.493 242.926 242.422 241.496 241.671 242.739 240.696 241.648 241.218 241.148 236.418 238.692 241.505 244.578 248.11 251.167 253.761 255.449 256.927 259.135 262.023 266.376 269.079 269.837 270.154 270.656 271.445 272.361 272.969 273.136 273.138 273.518 274.243 274.779 275.209 275.785 276.51 277.333 278.298 279.509 280.875 282.39 283.938 285.394 286.901 288.402 289.846 291.218 292.385 293.46 294.46 295.277 295.992 296.572 297.042 297.41 297.663 297.891 298.09 298.228 298.336 298.47 298.539 298.568 298.746 299.03 299.285 299.498 299.686 299.78 299.879 300.009 300.085 300.0 299.714 299.245 298.605 297.677 296.566 295.669 295.123 294.747 294.391 294.005 293.537 293.053 292.596 292.133 291.723 291.508 291.475 291.462 291.373 291.148 290.768 290.313 289.842 289.318 288.775 288.312 287.803 287.18 286.638 286.302 286.077 285.929 285.3 283.634 281.124 278.94 277.755 277.124 276.979 277.091 277.037 276.653 275.563 274.259 273.494 272.475 269.024 259.129 254.646 249.968 248.53 247.653 246.654 245.529 244.213 243.504 242.895 241.873 241.991 242.971 240.971 241.778 241.268 241.161 236.401 238.552 241.296 244.212 247.632 250.685 253.155 254.864 256.277 258.677 261.87 265.91 268.915 269.862 270.107 270.55 271.377 272.306 272.923 273.168 273.214 273.453 274.084 274.704 275.195 275.781 276.498 277.276 278.209 279.43 280.799 282.303 283.908 285.435 286.941 288.378 289.745 291.11 292.37 293.516 294.521 295.343 296.083 296.628 297.02 297.353 297.605 297.8 297.964 298.094 298.192 298.318 298.408 298.479 298.718 299.081 299.374 299.575 299.741 299.825 299.91 300.031 300.115 300.071 299.848 299.42 298.743 297.746 296.64 295.853 295.483 295.232 294.898 294.491 293.989 293.449 292.926 292.433 291.96 291.612 291.45 291.389 291.298 291.087 290.679 290.153 289.608 289.041 288.501 288.084 287.644 286.962 286.303 285.903 285.658 285.566 285.326 284.124 282.015 279.755 278.376 277.657 277.487 277.573 277.483 277.17 276.252 274.994 273.839 272.497 269.261 261.407 255.043 251.329 249.061 248.341 247.264 246.044 244.83 244.111 243.397 242.318 242.342 242.817 241.295 241.901 241.332 241.178 236.341 238.496 241.089 243.816 247.111 250.144 252.594 254.237 255.591 257.893 261.544 265.534 268.662 269.901 270.09 270.473 271.318 272.239 272.853 273.169 273.281 273.423 273.943 274.619 275.17 275.766 276.477 277.223 278.133 279.378 280.752 282.26 283.938 285.533 286.985 288.318 289.641 291.059 292.401 293.582 294.574 295.402 296.176 296.702 297.033 297.341 297.576 297.706 297.83 297.964 298.041 298.139 298.274 298.418 298.692 299.121 299.476 299.66 299.78 299.88 299.98 300.092 300.164 300.139 299.921 299.492 298.781 297.735 296.688 296.09 295.958 295.849 295.535 295.073 294.521 293.933 293.363 292.837 292.308 291.831 291.5 291.35 291.23 291.005 290.585 290.032 289.462 288.845 288.192 287.678 287.268 286.648 285.978 285.557 285.339 285.198 285.063 284.218 282.539 280.45 278.994 278.255 278.051 277.99 277.833 277.609 276.879 275.551 274.106 272.258 269.069 263.295 256.217 253.015 249.861 248.724 247.788 246.485 245.44 244.752 243.938 242.802 242.72 242.479 241.586 242.007 241.4 241.221 236.327 238.376 240.835 243.438 246.616 249.597 252.008 253.557 254.827 257.082 260.895 265.058 268.192 269.93 270.254 270.514 271.293 272.151 272.737 273.12 273.314 273.413 273.822 274.515 275.132 275.746 276.457 277.176 278.071 279.357 280.745 282.267 284.012 285.619 286.954 288.176 289.51 291.004 292.342 293.542 294.603 295.502 296.281 296.755 297.044 297.339 297.559 297.625 297.699 297.833 297.906 297.991 298.169 298.363 298.622 299.117 299.596 299.799 299.903 300.07 300.197 300.266 300.339 300.324 300.042 299.511 298.706 297.587 296.671 296.415 296.64 296.692 296.36 295.776 295.096 294.419 293.8 293.251 292.717 292.189 291.717 291.418 291.21 290.938 290.528 289.979 289.355 288.626 287.827 287.185 286.795 286.349 285.752 285.311 285.111 284.957 284.776 284.205 282.933 281.203 279.742 278.843 278.497 278.431 278.319 278.02 277.348 276.049 274.303 271.869 266.98 264.77 258.599 253.523 251.611 249.298 248.39 246.963 245.983 245.407 244.498 243.312 243.275 242.15 241.914 242.123 241.465 241.26 236.272 238.267 240.627 243.059 246.084 249.059 251.42 252.913 254.035 256.124 259.755 264.498 267.74 269.916 270.481 270.685 271.332 272.054 272.606 273.03 273.3 273.426 273.76 274.432 275.099 275.737 276.45 277.16 278.046 279.34 280.729 282.266 284.016 285.554 286.788 287.998 289.423 290.947 292.205 293.4 294.607 295.62 296.368 296.781 297.03 297.266 297.456 297.536 297.599 297.716 297.8 297.895 298.062 298.268 298.57 299.114 299.624 299.813 299.942 300.169 300.304 300.321 300.397 300.357 300.023 299.479 298.642 297.482 296.721 296.809 297.315 297.468 297.108 296.363 295.512 294.729 294.082 293.548 293.039 292.495 291.944 291.533 291.236 290.917 290.515 289.946 289.205 288.358 287.491 286.777 286.351 285.997 285.476 285.028 284.85 284.753 284.509 284.086 283.21 281.85 280.415 279.453 279.083 279.089 278.962 278.504 277.779 276.487 274.475 271.165 266.335 266.276 261.54 255.17 251.917 250.12 249.342 247.505 246.576 246.039 245.122 243.87 243.655 241.953 242.231 242.236 241.532 241.293 236.197 238.165 240.379 242.7 245.616 248.521 250.808 252.273 253.27 255.215 258.775 263.807 267.192 269.833 270.709 270.95 271.397 271.975 272.483 272.92 273.262 273.445 273.737 274.368 275.07 275.729 276.444 277.162 278.036 279.295 280.664 282.191 283.884 285.324 286.54 287.85 289.395 290.944 292.14 293.33 294.637 295.69 296.385 296.779 297.024 297.182 297.324 297.444 297.518 297.605 297.712 297.814 297.951 298.181 298.557 299.087 299.531 299.716 299.897 300.143 300.243 300.244 300.307 300.24 299.923 299.467 298.687 297.584 296.998 297.311 297.992 298.319 298.055 297.22 296.217 295.297 294.564 293.974 293.411 292.809 292.175 291.659 291.257 290.865 290.456 289.887 289.052 288.102 287.19 286.43 285.92 285.542 285.075 284.625 284.454 284.442 284.267 283.934 283.311 282.292 281.052 280.193 279.817 279.824 279.629 279.09 278.189 276.929 274.737 270.599 266.14 267.216 263.938 257.717 253.278 251.061 249.851 248.268 247.454 247.179 246.378 244.519 242.884 242.175 242.508 242.357 241.596 241.324 236.11 238.084 240.238 242.359 245.11 247.965 250.197 251.628 252.498 254.343 257.721 262.782 266.411 269.621 270.904 271.215 271.464 271.917 272.382 272.818 273.218 273.476 273.744 274.321 275.041 275.714 276.427 277.163 278.03 279.23 280.541 282.004 283.583 284.941 286.246 287.729 289.38 290.951 292.144 293.364 294.696 295.709 296.33 296.736 297.007 297.109 297.205 297.36 297.446 297.503 297.627 297.736 297.846 298.104 298.533 299.012 299.397 299.641 299.873 300.075 300.124 300.142 300.195 300.116 299.863 299.51 298.832 297.901 297.489 297.884 298.729 299.386 299.31 298.439 297.228 296.146 295.222 294.439 293.74 293.06 292.377 291.792 291.265 290.771 290.329 289.786 288.951 287.92 286.919 286.088 285.479 285.082 284.687 284.287 284.107 284.1 283.988 283.747 283.316 282.551 281.593 280.815 280.546 280.444 280.094 279.481 278.633 277.322 275.18 270.797 266.354 267.727 266.063 261.51 255.701 252.439 250.631 248.901 247.946 247.974 248.007 245.232 242.384 242.602 242.776 242.495 241.661 241.351 236.135 237.994 240.045 241.982 244.642 247.416 249.568 250.91 251.732 253.44 256.732 261.313 265.238 269.146 271.016 271.454 271.547 271.894 272.324 272.738 273.182 273.523 273.771 274.284 275.007 275.684 276.393 277.157 278.023 279.125 280.316 281.65 283.091 284.436 285.945 287.634 289.317 290.867 292.127 293.434 294.755 295.706 296.245 296.614 296.901 296.999 297.076 297.246 297.348 297.377 297.49 297.601 297.721 298.02 298.469 298.911 299.32 299.663 299.878 299.983 300.019 300.073 300.128 300.082 299.919 299.61 299.069 298.455 298.167 298.493 299.545 300.509 300.183 299.249 297.91 296.684 295.546 294.297 293.398 292.636 292.125 291.669 291.179 290.658 290.207 289.699 288.942 287.901 286.781 285.899 285.291 284.864 284.474 284.071 283.814 283.748 283.644 283.457 283.195 282.651 281.929 281.386 281.278 280.814 280.365 279.796 278.943 277.755 275.678 271.881 266.731 268.189 267.65 264.984 259.68 254.674 252.161 249.963 248.949 248.479 248.249 246.671 243.453 243.123 243.079 242.642 241.727 241.372 236.081 237.86 239.768 241.64 244.181 246.824 248.946 250.17 250.893 252.518 255.643 259.985 264.297 268.373 270.941 271.613 271.651 271.901 272.312 272.707 273.159 273.557 273.795 274.272 274.985 275.652 276.36 277.142 277.992 278.986 280.052 281.291 282.693 284.134 285.869 287.688 289.3 290.772 292.08 293.435 294.712 295.635 296.138 296.42 296.669 296.807 296.915 297.096 297.226 297.246 297.319 297.437 297.635 297.988 298.424 298.852 299.292 299.645 299.821 299.92 299.992 300.041 300.098 300.13 300.02 299.717 299.32 298.934 298.636 298.895 300.087 300.716 299.863 300.632 298.658 297.717 295.841 294.088 292.948 292.187 291.386 290.923 290.726 290.473 290.167 289.701 289.019 287.996 286.81 285.911 285.303 284.793 284.348 283.918 283.562 283.397 283.27 283.155 283.056 282.776 282.371 282.106 281.76 281.071 280.53 279.954 279.137 278.066 276.307 273.467 267.599 269.033 268.805 267.325 263.921 258.696 253.987 251.334 249.652 249.171 248.499 247.715 244.526 243.672 243.386 242.786 241.796 241.391 236.05 237.794 239.613 241.296 243.731 246.282 248.319 249.452 250.03 251.533 254.398 258.281 263.285 267.372 270.698 271.694 271.75 271.921 272.326 272.71 273.154 273.575 273.816 274.27 274.976 275.635 276.338 277.113 277.923 278.822 279.804 281.029 282.52 284.136 286.056 287.889 289.359 290.737 292.072 293.409 294.579 295.449 295.964 296.208 296.44 296.625 296.781 296.971 297.11 297.138 297.186 297.332 297.608 297.985 298.375 298.789 299.258 299.616 299.808 299.934 299.993 300.006 300.107 300.225 300.138 299.84 299.521 299.174 298.814 299.124 299.99 300.227 300.827 299.714 298.334 297.383 295.479 293.792 292.265 291.38 290.389 289.558 289.596 290.019 290.079 289.74 289.146 288.179 286.99 286.117 285.497 284.86 284.302 283.865 283.482 283.277 283.145 283.041 283.075 283.105 282.801 282.427 282.012 281.301 280.635 279.997 279.201 278.282 276.87 274.524 270.428 270.068 269.681 268.815 266.541 262.359 256.33 252.919 250.652 250.158 249.577 248.306 244.3 244.115 243.692 242.923 241.867 241.412 235.992 237.694 239.418 241.016 243.316 245.744 247.685 248.675 249.156 250.495 253.201 256.902 261.902 266.099 270.282 271.706 271.836 271.944 272.346 272.733 273.156 273.579 273.831 274.274 274.978 275.624 276.308 277.052 277.807 278.639 279.588 280.863 282.543 284.385 286.383 288.092 289.401 290.705 292.056 293.346 294.39 295.2 295.753 296.028 296.272 296.491 296.68 296.863 296.987 297.022 297.078 297.269 297.589 297.961 298.311 298.737 299.242 299.639 299.868 299.983 299.978 299.966 300.138 300.32 300.258 300.005 299.671 299.192 298.815 298.486 299.169 300.098 300.044 298.783 298.461 296.841 295.192 293.209 291.477 289.912 289.49 288.778 288.574 288.838 289.622 289.671 289.227 288.4 287.354 286.587 285.939 285.156 284.5 284.024 283.602 283.386 283.274 283.195 283.32 283.331 282.831 282.416 282.12 281.46 280.768 280.085 279.242 278.439 277.37 275.407 272.775 270.755 270.223 269.795 268.152 265.089 259.822 254.913 251.857 250.636 249.931 248.398 244.108 244.453 243.982 243.049 241.939 241.433 235.93 237.617 239.232 240.707 242.864 245.22 247.045 247.906 248.243 249.448 252.082 255.648 260.88 264.546 269.602 271.644 271.919 272.003 272.383 272.778 273.169 273.578 273.859 274.295 274.965 275.59 276.233 276.907 277.6 278.425 279.399 280.757 282.683 284.734 286.651 288.132 289.304 290.582 291.938 293.2 294.184 294.949 295.539 295.877 296.151 296.387 296.592 296.751 296.831 296.868 296.955 297.175 297.5 297.887 298.276 298.735 299.255 299.679 299.935 300.012 299.967 300.007 300.194 300.329 300.332 300.199 299.75 299.094 298.668 297.767 299.338 299.674 298.735 297.112 296.942 296.297 294.374 292.871 290.958 289.406 288.62 288.366 287.824 287.232 288.587 288.821 288.711 288.314 287.686 287.137 286.459 285.516 284.741 284.189 283.742 283.573 283.562 283.436 283.389 283.339 282.681 282.068 281.866 281.515 280.948 280.293 279.421 278.59 277.746 276.165 273.655 271.325 270.651 270.404 269.407 267.132 263.03 257.804 253.153 251.649 250.798 247.904 244.677 244.893 244.229 243.163 242.007 241.452 235.849 237.51 239.068 240.425 242.448 244.693 246.432 247.129 247.422 248.484 250.997 254.499 258.674 263.532 268.839 271.526 271.977 272.063 272.409 272.82 273.188 273.573 273.889 274.31 274.902 275.49 276.1 276.719 277.395 278.288 279.313 280.708 282.746 284.859 286.647 287.975 289.134 290.438 291.77 293.027 294.031 294.779 295.353 295.721 296.045 296.316 296.504 296.64 296.702 296.752 296.854 297.064 297.386 297.819 298.268 298.719 299.212 299.649 299.928 300.004 300.007 300.114 300.236 300.278 300.341 300.229 299.612 298.806 298.254 297.912 299.597 298.817 297.616 296.392 296.229 295.163 293.631 292.108 290.775 289.394 288.531 288.061 287.25 286.552 286.706 287.138 287.401 287.632 287.768 287.592 286.825 285.644 284.669 283.981 283.467 283.567 283.702 283.477 283.284 283.18 282.353 281.174 280.914 281.298 280.991 280.487 279.661 278.781 277.993 276.656 274.181 271.955 271.142 270.892 270.216 268.554 265.583 260.068 255.22 252.013 250.904 247.908 245.581 245.486 244.455 243.26 242.07 241.468 235.822 237.369 238.879 240.166 242.114 244.19 245.816 246.451 246.592 247.582 249.943 253.413 257.486 262.634 268.087 271.381 272.01 272.111 272.432 272.848 273.204 273.562 273.899 274.299 274.797 275.334 275.931 276.55 277.27 278.286 279.365 280.754 282.782 284.845 286.507 287.778 289.004 290.346 291.636 292.873 293.887 294.626 295.167 295.567 295.959 296.249 296.375 296.469 296.545 296.623 296.75 296.957 297.287 297.749 298.215 298.656 299.151 299.61 299.883 299.949 299.983 300.136 300.265 300.328 300.407 300.177 299.46 298.317 297.842 298.911 298.989 297.979 297.252 296.184 295.237 294.481 293.293 291.902 290.645 289.503 288.555 287.976 286.886 285.868 284.856 284.496 284.421 286.044 287.264 287.551 285.886 282.909 281.667 282.383 281.456 283.249 283.705 283.435 283.078 282.834 281.939 280.247 279.896 280.668 280.709 280.402 279.829 278.95 278.161 276.954 274.574 272.675 271.731 271.285 270.753 269.593 267.209 262.719 256.719 253.771 251.465 248.226 246.484 245.928 244.687 243.351 242.121 241.487 235.838 237.27 238.656 239.928 241.747 243.732 245.199 245.734 245.8 246.615 248.928 252.552 256.525 261.791 267.355 271.216 272.019 272.153 272.451 272.863 273.221 273.557 273.889 274.25 274.66 275.154 275.761 276.419 277.23 278.407 279.547 280.931 282.878 284.797 286.316 287.567 288.872 290.265 291.538 292.736 293.734 294.475 295.01 295.443 295.889 296.145 296.167 296.215 296.325 296.435 296.589 296.821 297.176 297.651 298.129 298.593 299.122 299.58 299.802 299.833 299.884 300.084 300.315 300.479 300.513 300.129 299.487 298.663 299.295 299.633 298.781 297.382 296.786 295.751 294.863 294.365 293.194 291.856 290.667 289.789 288.748 287.989 286.714 284.571 283.671 282.46 281.783 282.966 285.782 286.576 284.951 281.738 279.955 279.549 279.962 282.824 283.665 283.335 282.803 282.501 281.602 279.993 279.213 279.619 279.864 279.925 279.821 279.07 278.286 277.099 275.06 273.504 272.397 271.652 271.126 270.313 268.435 264.788 258.224 254.408 251.57 248.802 247.027 246.214 244.91 243.453 242.167 241.51 235.73 237.241 238.559 239.643 241.429 243.285 244.607 245.045 245.031 245.688 247.982 251.722 255.758 261.42 266.549 271.018 272.008 272.183 272.468 272.863 273.231 273.557 273.853 274.155 274.488 274.964 275.616 276.344 277.287 278.622 279.865 281.294 283.097 284.757 286.089 287.317 288.641 290.105 291.426 292.595 293.564 294.335 294.923 295.37 295.79 295.939 295.855 295.9 296.064 296.178 296.34 296.63 297.017 297.512 298.059 298.61 299.163 299.579 299.723 299.733 299.78 299.999 300.339 300.577 300.516 300.082 299.695 299.4 300.408 300.264 298.514 296.785 296.652 295.1 294.665 293.762 292.97 291.687 290.695 289.995 288.714 287.475 286.23 284.592 283.093 281.04 280.161 280.808 282.909 285.218 283.377 280.515 278.469 278.258 279.313 282.62 283.678 283.271 282.532 282.142 281.277 279.917 278.657 278.383 278.66 278.952 279.647 279.2 278.449 277.247 275.553 274.228 273.061 272.084 271.419 270.803 269.374 266.202 259.993 255.964 253.312 249.107 247.711 246.501 245.066 243.579 242.202 241.532 235.689 237.128 238.372 239.415 241.068 242.874 244.01 244.376 244.273 244.854 247.051 250.863 255.098 260.297 265.953 270.847 271.981 272.206 272.488 272.852 273.213 273.549 273.811 274.056 274.357 274.837 275.55 276.359 277.428 278.847 280.176 281.646 283.291 284.697 285.903 287.139 288.472 289.947 291.302 292.447 293.38 294.189 294.852 295.297 295.634 295.703 295.6 295.68 295.853 295.938 296.12 296.481 296.912 297.453 298.088 298.696 299.242 299.639 299.78 299.769 299.739 299.865 300.188 300.452 300.403 300.079 299.818 299.304 299.444 300.216 298.642 297.022 296.283 294.705 292.658 292.942 292.76 291.461 290.679 289.891 288.585 287.396 286.278 284.818 283.295 280.981 278.874 279.099 281.293 284.126 282.735 279.839 278.084 277.68 279.271 282.522 283.628 283.171 281.949 281.673 280.738 279.446 278.295 277.864 277.581 278.075 279.424 279.351 278.599 277.431 276.001 274.877 273.702 272.543 271.726 271.168 269.984 267.604 261.974 256.868 253.38 249.685 248.178 246.827 245.203 243.705 242.245 241.553 235.628 236.99 238.253 239.185 240.803 242.48 243.495 243.689 243.547 243.941 246.201 250.087 254.556 259.895 265.557 270.693 271.949 272.229 272.512 272.831 273.17 273.523 273.77 273.977 274.26 274.757 275.518 276.414 277.587 279.032 280.386 281.844 283.346 284.587 285.77 287.076 288.437 289.876 291.201 292.294 293.185 294.019 294.727 295.165 295.437 295.468 295.373 295.449 295.59 295.674 295.918 296.357 296.861 297.49 298.189 298.794 299.324 299.73 299.884 299.85 299.747 299.777 300.038 300.328 300.37 300.199 299.991 299.459 298.307 299.699 298.649 297.587 296.154 295.05 293.941 294.59 292.621 291.319 290.534 289.719 288.506 287.291 286.198 284.774 283.097 281.429 279.042 278.737 280.518 283.401 282.674 280.116 278.19 277.56 278.91 282.278 283.334 282.818 281.298 281.208 280.071 278.97 278.111 277.752 277.582 278.25 279.315 279.454 278.781 277.675 276.4 275.354 274.245 273.001 272.051 271.463 270.473 268.397 264.223 257.883 255.585 250.721 248.545 247.055 245.381 243.834 242.297 241.57 235.58 236.87 238.045 238.949 240.45 242.114 243.006 243.089 242.868 243.15 245.316 249.159 254.061 259.462 265.269 270.558 271.921 272.256 272.536 272.797 273.102 273.478 273.729 273.913 274.182 274.696 275.491 276.468 277.72 279.166 280.496 281.894 283.284 284.451 285.683 287.095 288.479 289.854 291.089 292.122 292.998 293.848 294.563 294.972 295.201 295.222 295.139 295.186 295.297 295.423 295.74 296.234 296.831 297.581 298.325 298.897 299.407 299.811 299.956 299.935 299.84 299.814 299.978 300.241 300.351 300.301 300.175 299.427 298.247 299.654 298.74 297.334 296.238 294.981 293.902 293.424 292.211 291.344 290.471 289.389 288.398 287.52 286.181 284.908 283.402 281.391 279.644 278.826 279.945 283.028 283.459 280.992 278.817 278.008 278.698 281.539 282.499 281.63 280.733 280.61 279.746 278.842 278.171 278.127 278.371 278.757 279.326 279.428 278.879 277.917 276.759 275.714 274.613 273.398 272.365 271.728 270.852 269.018 265.602 259.57 255.729 250.835 249.072 247.295 245.588 243.94 242.343 241.59 223.821 225.939 227.973 228.953 230.73 233.159 235.18 236.313 236.904 237.312 239.716 244.937 250.407 256.927 264.06 270.461 272.326 272.489 272.755 273.065 273.311 273.753 274.064 274.193 274.465 274.968 275.82 277.154 278.762 280.317 281.618 282.908 284.17 285.315 286.578 287.926 289.067 290.019 290.865 291.738 292.604 293.389 294.06 294.477 294.671 294.73 294.776 294.918 295.147 295.462 295.897 296.434 297.171 298.029 298.876 299.626 300.203 300.382 300.252 300.108 300.037 300.048 300.206 300.469 300.684 300.738 300.414 299.851 299.386 300.897 301.656 301.441 300.648 300.244 299.675 298.371 297.294 295.671 294.602 293.72 292.858 292.016 290.861 289.602 288.464 286.666 285.366 284.0 284.509 285.478 285.863 285.376 283.73 281.342 280.543 280.425 280.642 280.327 280.043 279.612 278.929 278.057 277.753 277.848 278.024 278.382 278.647 278.766 278.524 278.03 277.449 276.939 276.458 275.712 274.739 273.72 272.686 271.2 268.388 262.979 257.668 253.614 250.161 247.527 245.201 243.896 243.027 241.341 223.731 225.76 227.712 228.625 230.391 232.718 234.63 235.613 236.096 236.25 238.368 243.92 249.779 256.436 263.594 270.208 272.257 272.457 272.724 273.046 273.259 273.666 273.973 274.097 274.393 274.939 275.818 277.17 278.786 280.283 281.526 282.724 283.968 285.17 286.463 287.753 288.912 289.971 290.856 291.738 292.612 293.334 293.887 294.219 294.382 294.462 294.557 294.703 294.886 295.18 295.667 296.292 297.122 298.041 298.934 299.705 300.233 300.349 300.182 300.028 299.996 300.105 300.301 300.507 300.676 300.756 300.522 299.986 299.089 299.728 300.139 300.29 300.663 299.981 299.357 298.343 296.814 295.253 294.128 293.434 292.604 291.768 290.661 289.431 288.313 286.558 284.837 284.142 283.931 284.863 285.773 285.625 284.346 282.635 280.682 279.369 279.175 279.233 279.414 279.107 278.506 277.97 277.791 277.91 278.057 278.211 278.125 278.014 277.924 277.771 277.504 277.067 276.576 275.98 275.145 274.14 273.132 271.734 269.232 264.855 257.917 253.822 250.529 247.697 245.304 243.948 243.121 241.372 223.646 225.561 227.464 228.319 230.049 232.324 234.073 234.973 235.371 235.228 236.996 242.929 249.224 255.928 263.13 269.942 272.185 272.435 272.691 273.019 273.205 273.573 273.875 274.005 274.335 274.928 275.862 277.217 278.797 280.241 281.445 282.595 283.821 285.038 286.305 287.548 288.797 290.022 290.956 291.809 292.629 293.264 293.716 294.018 294.187 294.273 294.37 294.491 294.638 294.938 295.5 296.211 297.069 297.981 298.866 299.634 300.146 300.297 300.205 300.045 300.006 300.201 300.475 300.63 300.696 300.768 300.605 300.055 299.09 298.701 299.571 300.44 300.63 299.69 299.076 298.109 296.48 294.727 293.463 292.628 291.825 290.83 289.906 288.894 287.936 286.919 285.431 284.571 283.752 283.795 285.41 285.645 284.767 283.323 281.147 278.376 277.606 277.928 278.48 278.42 278.114 277.897 277.754 277.865 277.909 277.703 277.198 276.737 276.855 277.27 277.436 277.143 276.658 276.161 275.486 274.542 273.541 272.311 270.07 265.792 259.725 254.39 251.401 247.863 245.426 244.014 243.215 241.388 223.572 225.396 227.214 228.008 229.75 231.964 233.518 234.361 234.691 234.142 235.624 241.892 248.711 255.507 262.61 269.645 272.105 272.415 272.647 272.98 273.153 273.484 273.78 273.931 274.295 274.924 275.918 277.272 278.776 280.194 281.367 282.497 283.687 284.876 286.116 287.364 288.731 290.099 291.064 291.877 292.651 293.215 293.595 293.884 294.046 294.103 294.18 294.301 294.481 294.854 295.494 296.24 297.058 297.899 298.753 299.552 300.119 300.361 300.35 300.135 300.03 300.281 300.634 300.743 300.712 300.746 300.623 300.121 299.305 298.731 299.702 300.742 301.219 299.385 298.515 297.372 296.166 294.393 292.877 291.354 290.264 289.244 288.249 287.819 287.293 287.507 286.786 285.245 283.89 283.758 284.914 285.433 284.886 283.486 281.309 277.593 276.295 276.54 277.331 277.673 277.58 277.618 277.62 277.672 277.591 276.905 275.85 275.142 275.327 276.367 277.204 277.165 276.72 276.322 275.788 274.916 273.912 272.745 270.583 266.849 260.142 254.974 251.581 248.165 245.586 244.101 243.298 241.422 223.516 225.185 226.976 227.713 229.47 231.647 232.96 233.735 234.027 233.12 234.256 240.966 248.194 255.125 261.928 269.271 272.004 272.387 272.581 272.918 273.099 273.402 273.69 273.875 274.28 274.924 275.961 277.301 278.712 280.1 281.261 282.398 283.534 284.66 285.913 287.252 288.713 290.134 291.106 291.921 292.686 293.182 293.483 293.727 293.846 293.869 293.977 294.157 294.401 294.869 295.598 296.421 297.268 298.066 298.877 299.664 300.242 300.476 300.413 300.145 300.03 300.304 300.654 300.733 300.671 300.614 300.387 299.569 298.879 299.652 300.347 300.58 300.309 298.975 297.926 296.777 295.549 294.092 292.287 290.23 288.276 286.843 286.827 286.769 286.402 286.745 287.159 285.773 284.121 283.61 284.543 285.116 284.768 283.535 281.284 277.13 275.127 274.934 275.85 276.706 277.053 277.175 277.262 277.341 277.105 276.064 274.482 272.973 273.634 275.296 276.718 277.081 276.764 276.469 276.038 275.245 274.254 273.061 271.059 267.37 261.57 255.057 251.82 248.448 245.812 244.217 243.368 241.467 223.441 225.031 226.745 227.496 229.213 231.27 232.46 233.16 233.354 232.115 232.985 240.17 247.757 254.778 261.275 268.888 271.893 272.362 272.509 272.842 273.053 273.345 273.624 273.838 274.271 274.928 275.97 277.278 278.606 279.939 281.102 282.274 283.364 284.432 285.737 287.188 288.677 290.092 291.11 291.961 292.675 293.107 293.371 293.587 293.697 293.761 293.936 294.155 294.442 295.05 295.986 297.01 297.957 298.703 299.318 299.864 300.232 300.314 300.269 300.224 300.269 300.406 300.544 300.574 300.56 300.423 300.07 299.086 300.118 300.827 300.771 299.841 298.815 297.794 297.073 296.205 294.88 293.3 292.154 289.824 286.915 285.69 285.604 285.633 286.26 286.27 286.209 285.222 284.191 283.383 284.205 284.673 284.405 283.434 281.382 277.22 274.364 273.486 274.337 275.625 276.448 276.515 276.818 276.877 276.512 275.189 272.53 270.794 271.437 274.138 276.041 276.811 276.738 276.571 276.258 275.525 274.502 273.31 271.224 267.762 262.049 256.176 252.454 248.537 246.044 244.366 243.419 241.521 223.344 224.847 226.511 227.214 228.973 230.962 232.011 232.524 232.664 231.193 231.807 239.339 247.329 254.473 260.684 268.51 271.78 272.344 272.444 272.765 273.009 273.301 273.569 273.797 274.254 274.931 275.964 277.226 278.501 279.762 280.93 282.118 283.164 284.183 285.549 287.098 288.59 290.023 291.134 292.004 292.655 293.086 293.376 293.564 293.65 293.781 294.055 294.402 294.885 295.79 296.981 298.101 298.971 299.54 299.931 300.238 300.379 300.322 300.345 300.452 300.46 300.335 300.29 300.397 300.494 300.352 300.04 299.694 300.2 300.886 300.57 300.037 298.285 297.094 296.457 295.191 294.536 293.113 291.184 288.129 286.193 285.053 284.952 285.43 285.864 285.68 285.593 285.097 284.881 283.763 283.866 284.215 283.73 282.81 281.331 278.092 274.121 272.689 273.149 274.548 275.839 276.166 276.385 276.361 275.82 274.584 271.61 269.607 269.842 272.959 275.08 276.237 276.527 276.54 276.369 275.741 274.717 273.382 271.279 267.865 262.572 256.111 252.49 248.827 246.113 244.486 243.496 241.572 223.251 224.619 226.248 226.983 228.736 230.651 231.526 231.94 231.965 230.235 230.711 238.611 246.968 254.191 260.133 268.126 271.654 272.327 272.393 272.698 272.969 273.265 273.521 273.751 274.221 274.917 275.933 277.164 278.42 279.63 280.78 281.94 282.938 283.926 285.366 286.996 288.488 289.988 291.208 292.098 292.737 293.214 293.499 293.57 293.65 293.931 294.432 295.068 295.897 297.045 298.273 299.218 299.808 300.185 300.501 300.737 300.769 300.625 300.581 300.534 300.249 299.959 298.938 299.591 299.945 300.124 300.06 300.639 301.086 300.507 300.103 299.934 298.632 297.463 296.06 294.65 292.825 291.415 289.922 287.68 285.894 285.072 284.776 284.997 285.185 285.237 285.186 285.644 284.981 283.925 283.896 283.894 283.165 282.503 281.13 278.126 274.015 272.183 272.477 273.815 275.199 275.902 275.865 275.588 275.065 273.982 271.318 269.008 268.947 271.551 273.809 275.327 275.994 276.29 276.337 275.874 274.863 273.398 271.11 267.78 262.826 256.428 252.715 249.461 246.274 244.581 243.562 241.62 223.177 224.44 226.017 226.731 228.493 230.384 231.068 231.368 231.238 229.339 229.782 237.985 246.632 253.945 259.512 267.707 271.493 272.304 272.369 272.651 272.934 273.23 273.486 273.712 274.167 274.867 275.864 277.09 278.353 279.561 280.657 281.738 282.696 283.702 285.239 286.969 288.549 290.18 291.473 292.392 293.06 293.495 293.551 293.474 293.797 294.543 295.559 296.603 297.501 298.236 298.821 299.191 299.43 299.737 300.245 300.665 300.789 300.658 300.415 300.018 299.435 298.315 299.819 301.79 302.303 301.546 301.278 301.138 301.107 300.741 300.505 299.799 298.081 297.591 296.126 294.914 293.132 291.688 290.147 287.999 286.189 284.367 284.005 284.301 284.651 284.509 284.508 285.071 285.165 284.485 284.148 283.72 283.125 282.155 279.803 276.839 273.961 271.982 272.247 273.607 274.919 275.743 275.641 275.237 274.388 273.46 271.065 268.904 268.447 269.85 272.352 273.856 275.112 275.775 276.106 275.9 274.937 273.293 270.824 267.501 261.987 256.557 253.093 249.601 246.566 244.715 243.623 241.668 223.066 224.248 225.751 226.494 228.275 230.108 230.59 230.744 230.476 228.372 228.967 237.528 246.439 253.351 258.873 267.362 271.327 272.276 272.381 272.65 272.918 273.207 273.489 273.729 274.132 274.806 275.793 277.014 278.282 279.515 280.554 281.554 282.513 283.597 285.232 287.107 288.916 290.667 291.956 292.833 293.387 293.557 293.332 293.48 294.467 295.85 297.118 298.002 298.348 298.213 297.8 296.868 296.659 297.718 298.589 299.054 299.459 299.565 299.328 298.805 297.714 299.705 301.709 302.907 303.52 303.045 301.964 301.044 301.301 300.906 300.622 299.834 298.315 297.203 296.923 295.453 293.738 292.179 290.54 288.327 286.22 284.481 284.018 283.871 284.352 284.15 284.259 285.19 285.417 284.79 284.11 283.477 282.585 281.183 278.619 276.944 274.149 272.165 272.185 273.417 274.732 275.529 275.433 275.098 274.121 272.831 270.674 268.804 268.283 268.922 270.216 272.16 273.732 274.918 275.643 275.802 274.973 273.132 270.425 267.023 260.505 256.501 253.084 249.644 246.93 244.86 243.679 241.713 222.873 224.034 225.518 226.236 228.023 229.833 230.229 230.125 229.66 227.542 228.344 237.208 246.294 252.351 258.366 267.094 271.16 272.235 272.407 272.676 272.916 273.196 273.526 273.794 274.131 274.748 275.723 276.923 278.185 279.435 280.435 281.387 282.383 283.548 285.263 287.327 289.4 291.231 292.462 293.194 293.507 293.389 293.112 293.754 295.265 296.836 297.781 298.109 297.848 296.84 296.105 295.439 294.888 294.82 295.16 296.868 297.255 297.273 297.171 297.524 298.584 300.106 300.572 300.249 301.664 302.237 301.905 301.965 301.768 301.54 301.53 300.596 299.917 295.937 296.275 295.913 294.336 292.427 290.588 288.349 286.214 284.565 284.076 284.242 284.266 284.377 284.584 285.588 285.558 284.805 283.563 283.07 282.118 280.068 278.82 277.325 274.539 272.661 272.403 273.334 274.409 275.243 275.295 275.103 273.988 272.819 271.027 269.097 268.3 268.569 268.616 269.742 272.039 273.672 274.896 275.558 274.935 272.956 269.876 265.72 259.853 256.522 253.305 250.067 247.054 245.038 243.735 241.758 222.791 223.911 225.283 226.024 227.85 229.592 229.802 229.47 228.802 226.641 227.844 237.059 246.167 252.375 258.218 266.897 270.993 272.174 272.437 272.72 272.934 273.198 273.581 273.892 274.162 274.704 275.656 276.826 278.07 279.326 280.312 281.252 282.306 283.537 285.33 287.61 289.904 291.782 292.876 293.345 293.38 293.069 293.002 294.003 295.56 296.393 296.396 296.583 295.977 295.799 296.527 295.813 294.166 293.441 293.481 294.059 295.205 295.785 296.373 296.767 297.414 298.262 298.489 298.083 298.423 300.471 301.744 301.577 302.587 302.156 302.749 302.861 300.708 298.357 297.447 296.248 294.774 292.5 290.038 288.167 285.963 285.175 284.912 284.55 284.535 284.813 285.603 286.061 285.565 284.719 283.572 282.506 281.396 279.208 278.995 277.108 274.522 273.242 272.802 273.392 274.154 274.757 275.084 275.14 274.195 272.983 271.587 269.832 268.715 268.477 267.95 267.905 269.424 272.253 274.036 275.167 274.878 272.725 269.121 263.265 259.683 256.415 253.584 250.368 247.091 245.296 243.799 241.816 222.756 223.7 225.051 225.802 227.65 229.36 229.3 228.866 227.929 225.785 227.464 236.972 246.105 252.55 258.192 266.777 270.817 272.078 272.457 272.779 272.977 273.217 273.649 274.015 274.231 274.686 275.603 276.743 277.958 279.207 280.203 281.163 282.298 283.62 285.529 288.054 290.486 292.312 293.122 293.123 292.878 292.542 292.793 293.665 294.589 294.716 294.332 294.274 294.952 295.691 296.844 295.836 294.612 293.197 292.783 293.009 294.038 295.585 296.476 296.432 296.5 296.977 297.371 297.532 297.743 299.335 300.929 301.827 303.293 303.45 303.568 303.534 301.576 300.251 298.299 296.676 295.002 292.712 289.693 286.832 285.409 285.321 285.473 284.785 284.803 285.284 286.245 286.082 285.431 284.588 283.613 282.106 280.197 279.391 278.274 275.735 274.523 273.647 273.201 273.418 273.803 274.214 274.693 275.061 274.558 273.816 272.233 270.469 269.815 268.505 267.521 267.034 267.375 270.809 273.063 274.722 274.764 272.48 267.576 262.543 259.489 256.462 253.558 250.379 247.177 245.51 243.877 241.874 222.612 223.51 224.845 225.583 227.391 229.11 228.824 228.232 227.079 225.063 227.153 237.019 246.113 252.854 258.397 266.766 270.679 271.978 272.45 272.82 273.032 273.258 273.704 274.112 274.316 274.714 275.598 276.728 277.911 279.135 280.151 281.152 282.357 283.791 285.887 288.62 291.058 292.711 293.186 292.823 292.299 292.151 292.203 292.805 293.389 293.731 293.732 294.218 295.075 295.671 296.274 296.132 295.291 293.742 293.178 293.058 293.623 294.838 295.934 296.546 296.575 296.799 297.298 297.712 298.085 298.388 300.733 302.345 303.874 304.643 304.803 303.941 303.596 300.793 299.152 297.11 294.903 292.18 288.155 286.255 285.407 285.576 285.822 285.4 285.221 285.983 286.411 285.911 285.192 284.396 283.369 281.94 280.236 278.547 276.527 274.85 274.31 273.809 273.381 273.167 273.31 273.552 274.117 274.811 274.649 274.096 272.699 271.73 270.87 268.689 267.385 266.697 266.543 269.082 272.214 274.308 274.622 271.994 266.15 262.552 259.273 256.484 253.725 250.394 247.468 245.562 243.972 241.93 222.518 223.299 224.601 225.335 227.146 228.823 228.359 227.598 226.215 224.244 226.967 237.013 246.155 253.29 258.425 266.824 270.578 271.886 272.425 272.834 273.08 273.309 273.748 274.182 274.401 274.776 275.628 276.753 277.91 279.098 280.124 281.155 282.415 283.967 286.3 289.19 291.57 293.032 293.253 292.53 291.208 290.952 291.309 291.994 293.086 294.368 294.691 295.079 295.471 295.876 296.262 296.486 295.495 294.718 293.92 293.628 293.896 294.563 295.42 296.238 296.417 296.436 297.147 297.916 299.39 299.439 302.311 302.063 302.665 303.777 304.829 304.944 303.678 302.045 299.553 297.343 294.67 292.057 288.584 286.449 285.748 285.333 286.028 285.615 285.606 286.286 286.343 285.612 284.835 283.973 282.757 281.021 278.732 276.586 274.253 273.993 274.183 273.81 273.19 272.906 272.853 273.156 273.759 274.512 274.503 274.075 273.167 272.15 271.126 268.997 267.795 266.793 266.518 267.551 271.517 273.911 274.434 271.602 265.837 263.114 259.358 256.346 253.834 250.899 247.664 245.601 244.066 241.986 222.464 223.128 224.379 225.111 226.886 228.488 227.908 226.92 225.39 223.491 226.847 237.009 246.202 254.121 258.919 266.933 270.514 271.81 272.385 272.82 273.11 273.364 273.789 274.234 274.491 274.864 275.679 276.789 277.917 279.06 280.083 281.137 282.43 284.099 286.693 289.697 292.01 293.318 293.363 292.218 290.508 289.924 290.49 291.558 293.751 295.12 295.821 295.824 296.602 296.699 296.474 296.759 296.176 295.348 294.476 294.205 294.105 294.479 295.225 295.977 296.221 296.4 296.9 297.858 300.352 301.96 302.121 301.61 301.219 302.721 303.908 304.084 302.505 300.682 298.722 296.866 294.776 292.077 288.655 286.988 286.226 285.451 286.085 285.935 285.775 285.541 285.253 284.976 284.506 283.529 282.081 279.544 276.151 274.14 273.171 273.264 273.794 273.539 272.789 272.505 272.452 272.816 273.222 273.778 273.933 273.72 273.013 272.007 270.905 268.688 267.921 266.893 266.46 266.698 270.984 273.537 274.276 271.535 266.456 263.185 259.694 256.318 253.788 250.897 247.681 245.708 244.114 242.043 222.365 222.952 224.184 224.855 226.577 228.071 227.469 226.337 224.6 222.839 226.832 236.969 246.208 254.778 259.726 267.083 270.478 271.747 272.33 272.769 273.109 273.418 273.836 274.284 274.591 274.984 275.747 276.812 277.904 278.993 279.999 281.065 282.362 284.136 286.988 290.114 292.399 293.639 293.607 292.523 290.135 289.342 289.948 292.015 294.063 296.081 296.146 296.419 296.763 297.022 296.785 296.764 296.66 295.923 294.91 294.586 294.389 294.803 296.425 296.784 296.369 296.219 296.434 297.049 298.221 300.89 301.707 300.607 301.031 301.699 303.046 302.749 301.255 299.114 297.024 295.281 293.749 291.281 289.294 287.697 286.746 286.265 285.48 285.361 285.038 285.349 284.896 284.804 284.272 283.204 281.35 278.152 275.767 273.612 272.738 272.923 273.282 273.064 272.378 272.06 272.176 272.448 272.611 272.763 272.813 272.96 272.56 271.423 269.785 268.564 267.851 267.188 266.406 266.641 270.489 273.162 274.134 271.946 266.935 262.846 259.93 256.304 254.092 250.883 247.692 245.98 244.135 242.084 222.207 222.713 223.96 224.664 226.283 227.629 227.003 225.771 223.847 222.338 226.829 236.863 246.138 255.007 260.093 267.157 270.454 271.702 272.28 272.707 273.072 273.443 273.881 274.332 274.686 275.105 275.818 276.821 277.882 278.917 279.887 280.955 282.244 284.058 287.043 290.285 292.612 293.915 293.926 292.714 290.023 288.9 289.569 291.686 293.668 295.097 296.076 297.047 297.638 297.62 296.827 296.638 296.71 295.983 295.15 294.868 295.066 295.824 297.302 297.697 296.411 296.123 296.177 297.309 298.79 300.988 301.205 301.45 302.666 302.647 302.098 301.015 300.271 297.884 296.028 293.462 292.713 290.937 289.464 288.123 286.985 286.245 285.905 285.845 284.951 285.314 285.102 284.902 284.103 283.071 281.541 278.983 277.387 274.414 273.165 272.953 272.844 272.523 271.906 272.067 271.974 271.985 272.019 272.13 272.185 272.152 271.738 270.906 269.979 269.051 267.693 267.432 266.604 266.787 269.914 272.834 274.02 272.203 267.666 262.626 260.389 256.482 254.351 251.103 247.723 246.407 244.156 242.092 222.115 222.548 223.733 224.441 225.973 227.192 226.515 225.181 223.13 221.937 226.787 236.708 245.952 255.002 260.219 267.116 270.423 271.662 272.236 272.655 273.024 273.443 273.923 274.384 274.77 275.216 275.888 276.829 277.861 278.853 279.777 280.844 282.137 283.92 286.875 290.22 292.628 294.06 294.24 293.056 290.07 288.636 288.947 290.386 292.248 294.031 295.978 297.827 298.741 298.266 296.886 296.384 296.379 296.237 295.556 295.157 294.775 295.458 296.558 296.97 296.342 295.953 296.104 297.311 299.276 300.489 300.534 301.282 302.614 302.105 301.889 300.567 298.792 297.109 295.618 292.968 291.842 290.976 289.63 288.426 287.339 286.346 285.075 285.083 284.995 285.679 285.342 284.999 284.177 282.677 281.418 279.635 277.788 275.639 274.09 273.433 272.734 272.171 272.029 272.218 272.013 271.792 271.583 271.559 271.497 271.277 271.078 270.488 269.671 269.021 268.282 267.501 266.875 267.218 269.911 272.567 273.876 272.524 268.316 263.337 260.554 256.893 254.354 251.38 248.167 246.562 244.183 242.039 222.021 222.354 223.485 224.263 225.662 226.759 225.991 224.588 222.498 221.626 226.741 236.498 245.684 254.849 260.262 266.966 270.381 271.617 272.195 272.617 272.974 273.425 273.962 274.443 274.846 275.315 275.953 276.835 277.842 278.802 279.678 280.765 282.077 283.755 286.523 289.947 292.453 294.043 294.537 293.699 290.811 288.781 288.207 289.08 290.556 293.353 295.249 298.07 298.345 298.751 296.756 296.44 295.932 295.785 295.432 294.704 294.441 294.818 295.339 295.777 295.636 295.64 296.097 296.909 297.709 299.619 300.533 301.108 302.245 302.357 301.473 300.649 299.29 297.576 296.156 294.556 292.386 291.409 290.093 288.52 287.574 286.562 285.756 285.148 286.137 285.813 285.494 285.078 284.085 282.584 280.765 278.561 276.985 275.759 275.124 274.31 273.32 272.727 272.578 272.39 271.85 271.598 271.299 271.079 271.026 270.855 270.36 269.874 269.194 268.859 268.283 267.587 266.996 267.435 269.817 272.362 273.73 272.688 269.087 264.039 260.769 257.296 254.73 251.327 248.155 246.574 244.243 242.033 221.924 222.118 223.194 224.004 225.311 226.251 225.361 223.969 221.87 221.345 226.667 236.239 245.307 253.24 260.349 266.656 270.334 271.565 272.151 272.595 272.929 273.382 273.99 274.513 274.923 275.411 276.013 276.823 277.804 278.745 279.588 280.726 282.09 283.628 286.09 289.492 292.08 293.809 294.707 294.598 293.034 289.996 288.472 288.829 290.589 292.297 294.552 296.808 297.988 297.368 296.925 296.218 295.717 295.654 295.102 294.234 293.817 293.845 294.429 294.607 294.261 294.245 294.083 294.692 296.202 298.161 300.235 301.577 302.428 302.66 302.937 302.074 300.733 298.8 297.269 295.101 293.689 292.39 291.052 289.324 288.379 287.603 287.436 286.805 286.18 285.879 285.691 285.163 284.007 282.038 279.061 276.078 275.598 276.039 276.429 275.533 274.209 273.452 273.05 272.501 271.878 271.499 271.025 270.708 270.604 270.436 269.796 269.428 269.104 268.725 268.277 267.576 266.97 267.501 269.636 272.23 273.565 272.804 269.765 264.87 261.132 257.749 255.039 251.38 248.133 246.584 244.356 242.04 221.831 221.951 222.96 223.752 224.966 225.721 224.744 223.355 221.276 221.114 226.535 235.883 244.849 252.685 260.174 266.157 270.305 271.537 272.104 272.581 272.898 273.324 273.976 274.555 274.981 275.478 276.051 276.787 277.736 278.671 279.499 280.683 282.116 283.595 285.839 289.097 291.702 293.426 294.525 295.102 294.639 293.096 290.482 289.73 290.363 291.901 294.811 296.72 297.253 296.785 296.824 296.072 295.799 295.368 295.277 294.036 293.431 293.56 293.7 293.404 293.479 293.338 293.182 293.612 295.44 297.286 297.76 299.492 301.948 304.449 305.285 303.088 302.765 299.871 298.44 296.243 294.858 293.524 292.171 290.692 289.236 288.411 288.128 287.156 286.281 285.973 285.805 285.293 284.032 281.653 277.032 274.45 274.527 276.39 277.194 276.758 274.997 273.991 273.416 272.807 272.095 271.681 271.072 270.378 270.267 269.936 269.249 269.072 269.037 268.595 268.181 267.468 266.933 267.55 269.815 272.132 273.4 272.812 270.134 265.69 261.867 258.179 255.094 251.631 248.113 246.591 244.516 242.051 221.639 221.78 222.693 223.519 224.592 225.126 224.072 222.654 220.7 220.803 226.293 235.45 244.336 252.121 259.741 265.64 270.29 271.543 272.059 272.557 272.873 273.257 273.928 274.559 275.015 275.521 276.072 276.739 277.646 278.565 279.379 280.579 282.066 283.58 285.71 288.798 291.38 293.013 294.072 294.999 295.4 294.958 294.203 292.44 292.062 293.131 295.402 297.064 297.352 296.625 296.654 296.114 296.03 295.609 295.225 294.044 293.392 293.144 293.096 293.444 293.5 293.132 293.011 293.553 295.052 296.377 297.025 298.476 302.691 305.923 305.906 305.023 303.856 301.402 299.944 298.199 296.0 294.35 292.69 291.22 290.535 289.574 288.685 287.416 286.436 285.831 285.717 285.492 284.189 281.381 277.047 273.27 273.549 276.218 277.62 277.316 275.834 274.177 273.518 272.821 272.25 271.872 271.051 269.991 269.719 268.958 268.657 268.332 268.571 268.166 267.907 267.224 266.967 267.557 270.141 272.082 273.236 272.766 270.514 266.025 262.459 258.77 255.426 251.701 248.49 246.598 244.772 242.072 221.63 221.592 222.411 223.25 224.205 224.511 223.274 221.923 220.126 220.548 226.032 234.944 243.741 251.457 259.709 265.013 270.275 271.589 272.024 272.518 272.846 273.186 273.852 274.524 275.02 275.542 276.083 276.688 277.538 278.431 279.228 280.417 281.945 283.537 285.668 288.577 291.094 292.624 293.522 294.416 295.342 295.758 295.648 295.73 294.753 295.073 296.419 297.776 297.198 297.165 297.192 296.729 296.407 295.717 294.994 294.025 293.311 293.143 292.997 293.279 293.451 293.324 292.692 292.837 294.361 295.655 296.443 298.141 302.594 304.98 305.633 304.725 305.064 303.166 302.092 299.726 297.403 294.929 292.863 291.41 290.423 290.243 289.348 287.859 285.885 285.12 285.688 285.478 284.272 281.144 276.899 272.663 272.762 275.4 277.769 277.534 275.921 274.071 273.349 272.658 272.207 271.827 270.885 269.426 268.442 268.136 267.99 267.74 267.819 267.557 267.423 266.993 266.915 268.013 270.147 272.064 273.096 272.663 270.623 266.535 262.926 259.063 255.75 251.627 248.84 246.961 244.915 242.091 221.611 221.351 222.211 223.003 223.792 223.865 222.463 221.158 219.611 220.301 225.715 234.398 243.081 250.773 258.105 264.114 270.223 271.692 272.018 272.458 272.809 273.109 273.745 274.442 274.985 275.542 276.092 276.652 277.429 278.287 279.071 280.232 281.777 283.484 285.681 288.396 290.797 292.262 293.039 293.68 294.55 295.483 296.193 296.726 297.175 297.638 297.481 297.797 297.753 297.481 297.3 297.178 296.735 295.867 294.752 293.9 293.381 293.448 293.307 293.117 293.043 293.087 292.625 292.484 294.085 296.216 297.591 298.745 301.76 303.449 303.254 304.599 305.977 305.661 303.588 300.798 298.126 295.178 293.184 291.816 291.137 290.444 289.804 287.979 285.705 285.196 285.022 285.027 283.977 281.082 276.377 272.572 272.388 274.995 277.862 277.736 275.699 273.976 273.104 272.397 271.91 271.494 270.263 268.471 267.754 267.491 267.494 267.51 267.33 267.152 267.158 266.874 266.698 268.429 270.429 272.098 272.98 272.516 270.717 266.622 263.503 259.394 255.943 251.885 248.812 246.999 244.923 242.108 221.437 221.161 221.968 222.726 223.378 223.154 221.612 220.372 219.122 220.114 225.402 233.808 242.371 250.027 256.795 263.197 270.09 271.807 272.054 272.4 272.77 273.054 273.639 274.34 274.925 275.522 276.104 276.646 277.366 278.206 279.006 280.173 281.683 283.448 285.7 288.294 290.559 292.0 292.785 293.322 294.019 294.933 295.906 296.79 297.603 298.229 298.429 298.702 298.822 298.991 297.996 297.124 296.547 295.697 295.103 294.559 294.105 294.122 294.046 293.593 293.046 292.819 292.742 293.222 294.98 296.91 298.284 299.375 299.457 298.958 299.926 301.185 304.348 304.893 303.052 300.449 297.851 295.686 293.868 292.242 291.867 291.23 290.307 288.563 285.629 284.411 284.046 284.069 283.287 280.911 276.261 272.677 272.392 275.397 278.061 277.962 275.687 273.995 272.866 272.073 271.509 270.789 269.355 267.855 267.289 267.203 267.294 266.892 266.652 267.02 266.917 266.767 266.487 268.3 270.51 272.153 272.829 272.332 270.605 266.917 263.747 259.746 256.166 252.075 248.778 246.992 244.928 242.122 221.311 220.981 221.76 222.464 222.931 222.445 220.759 219.551 218.629 219.993 225.095 233.141 241.576 249.155 254.501 262.328 269.855 271.881 272.11 272.355 272.735 273.022 273.549 274.239 274.853 275.482 276.106 276.652 277.335 278.172 279.024 280.229 281.685 283.413 285.688 288.226 290.394 291.812 292.626 293.184 293.906 294.854 295.864 296.786 297.655 298.363 298.884 299.309 299.679 299.861 299.413 297.707 296.531 296.095 296.113 296.047 295.712 295.304 295.035 294.811 294.066 293.603 293.987 295.33 296.64 298.522 298.969 298.783 296.851 294.724 295.753 297.808 300.066 301.494 301.081 299.204 297.417 295.469 294.28 293.177 292.591 291.79 290.236 287.595 284.303 282.874 282.38 282.413 281.704 279.701 276.131 272.758 272.398 276.142 278.243 278.058 276.34 274.046 272.788 271.786 270.947 270.155 268.265 267.65 267.331 266.926 266.715 266.55 266.152 266.286 266.861 266.579 266.366 268.532 270.552 272.146 272.638 272.126 270.529 267.05 264.175 259.956 256.369 252.195 248.919 246.982 244.931 242.134 221.295 220.807 221.529 222.142 222.471 221.749 219.87 218.716 218.178 219.944 224.792 232.432 240.695 248.21 253.392 261.405 269.479 271.887 272.176 272.325 272.705 273.003 273.475 274.139 274.764 275.416 276.086 276.653 277.317 278.167 279.098 280.363 281.793 283.417 285.638 288.169 290.306 291.698 292.521 293.158 294.003 295.073 296.167 297.054 297.797 298.384 298.87 299.31 299.8 300.251 300.144 298.953 297.17 296.75 296.952 296.98 296.981 296.793 296.742 296.426 295.796 295.479 295.425 296.866 297.928 299.662 300.062 298.648 296.036 294.314 294.487 295.631 297.072 298.681 299.107 298.439 296.727 295.976 295.021 293.895 293.086 291.916 289.501 286.028 283.699 282.39 282.333 281.4 281.388 279.748 276.422 272.704 272.098 276.297 278.088 277.798 276.059 274.291 272.871 271.599 270.538 269.352 268.001 267.455 267.245 266.946 266.739 266.216 265.949 266.003 266.533 266.111 266.586 268.701 270.507 272.04 272.423 271.909 270.428 267.34 264.533 260.249 256.641 252.287 249.161 246.968 244.931 242.143 221.234 220.657 221.296 221.804 221.978 221.019 219.016 217.931 217.813 219.941 224.492 231.645 239.696 247.182 253.629 260.316 268.739 271.754 272.241 272.318 272.682 272.991 273.405 274.027 274.658 275.318 276.039 276.644 277.303 278.188 279.216 280.553 282.01 283.499 285.606 288.162 290.308 291.652 292.454 293.196 294.173 295.361 296.513 297.429 298.109 298.628 299.076 299.523 300.01 300.501 300.618 300.122 298.499 297.809 297.971 298.071 298.259 298.425 298.434 299.047 298.506 297.952 297.565 299.324 299.373 300.05 299.191 298.236 296.858 295.518 294.913 295.202 296.152 296.701 298.043 297.148 296.764 296.319 295.703 294.855 293.702 291.651 289.08 285.696 283.803 282.884 282.38 282.046 282.11 280.554 276.665 272.3 271.239 275.336 277.171 276.781 275.463 274.4 272.996 271.438 269.801 268.858 267.699 267.409 267.176 266.977 266.582 266.035 265.625 265.817 266.267 265.684 266.823 268.611 270.255 271.784 272.206 271.702 270.347 267.746 264.754 260.366 256.778 252.498 249.296 246.987 244.929 242.151 221.155 220.468 221.134 221.502 221.526 220.339 218.228 217.216 217.55 219.978 224.247 230.896 238.564 246.034 253.277 259.552 267.699 271.443 272.264 272.339 272.667 272.978 273.348 273.931 274.556 275.218 275.981 276.628 277.298 278.217 279.31 280.693 282.215 283.679 285.7 288.27 290.369 291.638 292.419 293.226 294.279 295.471 296.585 297.508 298.258 298.87 299.43 299.984 300.445 300.796 300.913 300.611 300.068 299.235 299.486 299.297 299.7 300.149 300.093 299.961 299.68 299.463 299.563 299.999 299.714 300.263 299.598 299.375 297.678 296.864 296.398 295.908 296.967 298.175 297.86 297.205 297.0 296.85 297.094 295.819 293.539 290.82 288.463 286.028 284.737 284.427 283.989 283.712 283.046 281.341 276.565 271.494 269.273 273.619 275.548 275.422 274.936 274.355 272.899 271.063 269.788 268.77 267.517 267.362 267.16 266.992 266.476 265.966 265.678 265.638 266.144 265.671 266.962 268.286 269.76 271.419 271.934 271.491 270.279 267.93 265.126 260.418 256.839 252.547 249.273 247.078 244.924 242.158 221.114 220.268 220.912 221.155 221.084 219.662 217.527 216.573 217.438 220.075 224.071 230.107 237.362 244.812 251.79 258.895 266.372 270.985 272.232 272.37 272.659 272.965 273.303 273.849 274.467 275.133 275.928 276.625 277.311 278.251 279.372 280.774 282.393 283.953 285.934 288.456 290.423 291.608 292.389 293.265 294.364 295.527 296.593 297.497 298.271 298.914 299.484 300.002 300.423 300.732 300.911 300.836 300.637 300.531 300.485 300.473 300.511 300.475 300.333 300.138 299.819 299.519 299.585 300.087 300.523 301.007 301.453 301.259 299.984 298.96 298.213 297.927 298.791 299.347 298.094 297.563 297.567 298.143 297.311 295.643 293.003 290.691 288.802 287.095 286.034 285.588 285.251 285.004 284.258 281.447 276.173 269.143 268.134 270.364 273.375 274.377 274.619 274.311 272.875 271.294 269.764 267.839 267.307 267.081 267.009 267.023 266.735 266.155 265.687 265.524 265.876 265.379 266.41 267.774 268.844 270.805 271.546 271.226 270.116 268.169 265.212 260.547 256.961 252.595 249.307 247.169 244.937 242.163 221.065 220.094 220.744 220.888 220.625 219.02 216.866 216.085 217.456 220.246 223.953 229.332 236.104 243.435 250.139 258.147 264.794 270.349 272.134 272.406 272.655 272.953 273.268 273.78 274.396 275.071 275.887 276.633 277.343 278.294 279.419 280.828 282.567 284.311 286.352 288.701 290.435 291.543 292.36 293.292 294.402 295.544 296.609 297.477 298.182 298.693 298.811 298.698 298.885 299.991 300.394 300.711 300.905 300.964 300.891 300.74 300.589 300.417 300.235 300.045 299.66 299.127 298.923 299.246 300.015 301.163 302.706 302.707 301.234 300.133 299.36 298.373 298.326 298.937 298.85 298.103 298.063 297.942 296.611 294.929 293.148 291.199 289.696 288.165 287.517 286.761 286.428 285.497 284.079 280.426 274.892 268.692 267.444 269.15 272.429 273.852 274.596 274.29 272.888 271.25 269.513 267.549 267.007 266.82 266.792 266.941 266.747 265.925 265.477 265.569 265.655 265.538 266.38 267.23 267.735 269.917 271.023 270.873 269.94 268.226 265.308 260.361 257.119 252.807 249.452 247.176 245.102 242.169 220.995 219.953 220.539 220.636 220.177 218.386 216.326 215.753 217.596 220.48 223.917 228.622 234.86 241.983 248.688 256.208 262.699 269.366 271.914 272.441 272.659 272.949 273.256 273.73 274.359 275.046 275.869 276.65 277.396 278.352 279.468 280.869 282.744 284.749 286.936 288.964 290.376 291.4 292.292 293.258 294.348 295.481 296.581 297.444 298.019 298.188 297.426 297.024 297.213 297.618 298.253 299.129 300.239 301.053 300.998 300.746 300.484 300.294 300.186 300.114 299.783 299.088 298.574 298.745 299.446 300.786 302.436 302.644 301.75 300.577 299.74 298.201 297.138 297.621 297.618 297.17 296.797 296.855 296.638 295.286 293.726 291.538 290.311 289.331 288.429 288.128 287.814 285.55 282.812 278.748 273.622 269.928 269.3 270.991 272.868 274.455 274.936 274.245 272.85 271.062 269.227 267.357 266.85 266.662 266.573 266.924 266.696 266.017 265.608 265.455 265.299 265.357 266.601 267.086 266.989 268.66 270.29 270.41 269.696 268.191 265.51 260.219 257.13 252.716 249.473 247.158 245.223 242.209 220.887 219.827 220.349 220.372 219.748 217.806 215.844 215.583 217.846 220.878 223.976 228.0 233.704 240.622 247.388 254.925 261.134 268.202 271.574 272.442 272.672 272.961 273.275 273.721 274.358 275.058 275.867 276.655 277.432 278.398 279.494 280.872 282.849 285.079 287.346 289.101 290.255 291.203 292.147 293.175 294.28 295.385 296.479 297.387 297.96 298.026 297.023 296.801 296.779 296.872 297.287 298.274 299.266 300.523 300.766 300.592 300.359 300.225 300.179 300.169 299.986 299.433 298.909 298.909 299.266 299.809 300.88 301.86 301.124 300.372 299.249 297.708 296.383 296.309 296.605 297.106 296.71 297.187 297.026 295.969 294.618 292.846 291.428 290.166 290.296 288.599 287.54 284.515 280.599 276.776 273.173 272.002 272.321 273.456 274.78 276.001 275.802 274.32 272.761 270.922 268.865 267.102 266.859 266.582 266.335 266.667 266.587 265.982 265.583 265.271 264.928 265.345 266.377 266.84 266.638 267.431 269.155 269.75 269.369 268.131 265.409 260.376 257.024 252.66 249.458 247.139 245.241 242.551 220.872 219.592 220.172 220.113 219.3 217.298 215.459 215.572 218.199 221.394 224.22 227.461 232.621 239.386 245.982 253.567 259.893 266.897 271.153 272.406 272.689 272.983 273.307 273.732 274.368 275.073 275.849 276.629 277.441 278.424 279.501 280.855 282.867 285.23 287.519 289.098 290.108 291.006 291.968 293.073 294.246 295.334 296.384 297.306 297.979 298.241 297.936 297.571 297.142 296.682 296.732 297.343 298.098 299.317 300.099 300.334 300.216 300.173 300.153 300.138 300.053 299.681 299.253 299.226 299.371 299.539 299.932 300.537 300.403 299.764 299.13 297.393 296.101 295.964 296.284 297.157 297.387 298.041 298.012 296.869 295.699 294.226 292.947 291.664 291.406 289.625 286.562 282.409 278.461 275.753 274.317 274.685 275.861 276.386 276.934 276.995 276.341 274.827 272.726 270.523 268.228 267.019 266.666 266.336 266.257 266.424 266.529 265.966 265.507 265.032 264.747 264.999 266.13 266.392 266.164 266.605 267.792 268.81 268.986 267.957 265.292 260.223 257.08 252.715 249.426 247.203 245.222 242.657 220.739 219.455 219.99 219.885 218.825 216.823 215.164 215.679 218.6 221.985 224.661 227.228 231.805 238.349 244.891 250.901 258.776 265.434 270.653 272.327 272.704 273.01 273.347 273.754 274.387 275.091 275.822 276.59 277.435 278.436 279.501 280.809 282.779 285.196 287.488 288.975 289.939 290.831 291.784 292.946 294.205 295.313 296.312 297.198 297.963 298.459 298.555 298.439 298.203 297.907 297.506 296.962 297.572 298.422 298.918 299.935 300.131 300.206 300.209 300.153 300.101 299.83 299.482 299.522 299.65 299.58 299.601 299.587 299.123 298.834 298.623 297.448 296.065 295.925 296.471 297.621 298.421 298.546 298.503 297.506 296.471 295.679 294.268 292.567 290.336 288.98 284.884 280.177 277.076 275.969 276.919 278.682 279.163 279.015 278.508 277.742 276.628 275.091 272.451 270.226 267.701 266.802 266.6 266.255 265.97 266.271 266.416 265.841 265.141 264.561 264.67 264.795 266.079 266.055 265.682 265.813 266.63 267.746 268.464 267.73 265.215 260.168 256.965 252.859 249.527 247.221 245.21 242.648 220.733 219.311 219.826 219.616 218.402 216.406 214.989 215.933 219.12 222.759 225.3 227.318 231.26 237.565 244.065 249.295 256.843 263.442 270.027 272.181 272.715 273.05 273.394 273.785 274.417 275.117 275.802 276.561 277.435 278.447 279.492 280.716 282.54 284.956 287.27 288.734 289.727 290.672 291.618 292.786 294.092 295.235 296.213 297.073 297.851 298.482 298.842 299.034 299.095 299.002 298.8 298.71 298.878 299.262 299.699 300.038 300.206 300.33 300.318 300.229 300.176 299.961 299.674 299.775 299.999 299.905 299.733 299.458 298.771 298.11 297.911 297.435 295.863 295.491 296.02 297.313 298.605 298.602 298.789 298.439 297.479 296.357 295.019 292.306 290.385 286.904 282.653 278.938 277.232 277.358 279.435 280.723 281.352 280.616 279.324 277.969 276.754 275.204 272.269 269.762 267.324 266.649 266.631 266.293 266.17 266.178 266.142 265.689 264.798 264.43 264.465 264.433 265.594 265.654 265.009 265.261 265.888 266.796 267.723 267.43 264.909 260.491 256.649 252.742 249.498 247.199 245.197 242.637 220.654 219.221 219.678 219.39 217.987 216.045 214.899 216.293 219.749 223.642 226.196 227.863 231.083 236.964 243.349 248.644 254.421 261.582 269.452 272.001 272.71 273.089 273.439 273.814 274.44 275.135 275.799 276.563 277.447 278.448 279.451 280.591 282.256 284.626 287.01 288.488 289.505 290.525 291.522 292.7 293.996 295.114 296.097 296.96 297.707 298.322 298.798 299.198 299.534 299.716 299.659 299.55 299.585 299.759 300.008 300.204 300.313 300.358 300.32 300.238 300.221 300.134 299.963 300.008 300.151 300.1 299.953 299.663 298.963 298.17 297.605 296.877 295.806 295.112 295.534 296.571 298.375 298.891 299.09 299.237 298.407 296.476 294.343 292.316 289.291 284.43 280.949 278.912 278.471 279.344 281.044 282.206 282.31 281.27 279.433 277.574 276.645 274.962 272.282 269.434 266.949 266.69 266.713 266.312 266.194 266.127 265.865 265.348 264.46 264.199 264.099 263.891 264.811 265.175 263.99 264.858 265.41 266.113 266.901 267.046 264.6 260.533 256.422 252.618 249.387 247.187 245.183 242.623 220.623 219.056 219.534 219.153 217.615 215.719 214.931 216.738 220.448 224.511 227.258 228.79 231.309 236.644 242.869 248.335 253.932 260.666 268.954 271.811 272.688 273.123 273.483 273.842 274.451 275.135 275.795 276.574 277.451 278.415 279.377 280.466 282.02 284.32 286.761 288.266 289.294 290.376 291.452 292.666 293.944 295.019 295.988 296.843 297.548 298.117 298.622 299.089 299.517 299.815 299.88 299.866 299.917 300.01 300.151 300.299 300.371 300.376 300.357 300.315 300.313 300.311 300.232 300.178 300.17 300.117 300.023 299.77 299.166 298.4 297.679 296.887 295.916 295.054 295.134 296.181 298.03 298.972 299.751 299.376 298.766 296.443 294.199 292.301 287.718 283.189 280.64 279.833 279.922 280.536 281.439 282.25 282.23 281.195 278.888 276.946 276.092 274.675 272.028 268.059 266.78 266.691 266.524 266.013 265.976 265.894 265.462 265.057 264.523 263.981 263.64 263.482 264.052 264.467 263.528 264.244 265.031 265.602 266.207 266.568 264.302 260.346 256.259 252.587 249.271 247.181 245.178 242.608 220.622 218.908 219.361 218.955 217.271 215.431 215.011 217.245 221.307 225.411 228.406 230.008 231.966 236.711 242.695 248.391 253.928 260.239 268.542 271.617 272.646 273.151 273.524 273.87 274.45 275.114 275.781 276.58 277.444 278.361 279.307 280.396 281.874 284.095 286.535 288.064 289.108 290.244 291.385 292.62 293.886 294.935 295.883 296.719 297.39 297.939 298.44 298.857 299.245 299.577 299.746 299.845 299.948 300.023 300.126 300.296 300.396 300.431 300.474 300.477 300.439 300.435 300.393 300.265 300.154 300.109 300.04 299.777 299.258 298.618 297.884 297.104 296.31 295.35 294.933 295.862 297.563 298.998 298.916 299.556 298.4 296.086 293.822 291.674 286.899 283.258 281.25 281.065 280.903 280.473 281.128 281.704 281.66 280.388 278.077 276.168 275.166 274.16 271.386 267.651 266.621 266.514 266.257 265.749 265.806 265.432 265.006 264.605 264.316 263.587 263.315 263.207 263.21 263.585 263.282 263.789 264.324 265.133 265.584 266.067 263.876 260.284 255.802 252.623 249.267 247.159 245.221 242.59 220.532 218.773 219.209 218.733 216.953 215.182 215.165 217.789 222.186 226.4 229.62 231.326 233.033 237.05 242.783 248.717 254.383 260.153 268.242 271.421 272.577 273.166 273.561 273.891 274.436 275.074 275.755 276.575 277.428 278.315 279.294 280.45 281.89 284.002 286.344 287.88 288.975 290.17 291.325 292.519 293.769 294.833 295.774 296.581 297.25 297.829 298.345 298.712 299.022 299.349 299.588 299.73 299.838 299.906 300.008 300.206 300.373 300.493 300.61 300.632 300.54 300.489 300.447 300.326 300.205 300.185 300.12 299.812 299.265 298.632 297.908 297.211 296.584 295.732 294.959 295.378 296.625 297.982 298.687 298.945 298.706 296.336 294.348 291.566 287.167 283.973 282.381 281.854 281.261 279.855 280.057 280.65 280.381 279.351 277.246 275.493 274.249 273.072 270.884 267.389 266.359 266.469 266.163 265.523 265.463 264.913 264.368 264.181 263.719 263.334 262.95 262.668 262.402 262.549 263.094 263.919 263.717 264.453 265.036 265.571 263.468 260.047 255.387 252.483 249.344 247.181 245.192 242.581 220.543 218.663 219.093 218.531 216.67 214.973 215.354 218.371 223.059 227.46 230.86 232.737 234.218 237.711 243.158 249.369 254.917 260.612 268.159 271.281 272.496 273.156 273.578 273.899 274.419 275.041 275.733 276.563 277.416 278.31 279.346 280.595 282.07 284.086 286.267 287.76 288.901 290.161 291.308 292.453 293.686 294.773 295.713 296.482 297.129 297.713 298.238 298.62 298.928 299.257 299.509 299.65 299.764 299.868 299.991 300.197 300.415 300.58 300.695 300.68 300.589 300.542 300.523 300.435 300.281 300.198 300.143 299.895 299.339 298.605 297.821 297.162 296.667 296.025 295.282 295.213 296.028 296.743 297.766 298.813 297.979 295.926 294.606 291.276 287.294 284.858 283.411 282.317 280.936 279.86 279.738 279.9 279.738 278.354 276.829 275.342 273.947 272.674 270.325 267.135 266.124 266.368 266.08 265.238 264.917 264.547 264.047 264.08 263.501 263.147 262.687 262.05 261.607 261.889 263.438 263.572 263.389 263.829 264.603 265.008 263.043 259.68 255.27 252.357 249.256 247.162 245.138 242.574 220.499 218.521 218.963 218.341 216.401 214.799 215.547 218.956 223.909 228.56 232.12 234.143 235.667 238.595 243.732 250.143 257.269 261.359 268.24 271.184 272.421 273.135 273.58 273.894 274.396 275.019 275.717 276.541 277.392 278.289 279.361 280.703 282.254 284.201 286.237 287.673 288.83 290.13 291.294 292.439 293.66 294.727 295.64 296.392 297.023 297.579 298.076 298.461 298.782 299.116 299.396 299.583 299.749 299.901 300.063 300.28 300.518 300.687 300.753 300.697 300.629 300.607 300.616 300.564 300.38 300.215 300.139 299.948 299.431 298.684 297.882 297.216 296.72 296.237 295.733 295.456 295.683 296.39 297.014 297.079 296.522 295.471 294.27 291.264 287.909 285.261 284.321 282.818 281.355 280.489 280.075 279.991 279.583 278.148 276.821 275.445 273.95 272.385 269.943 267.094 266.08 265.875 265.453 264.818 264.64 264.219 263.55 263.599 263.374 262.791 262.136 261.674 260.837 261.737 263.814 263.154 263.018 263.249 264.039 264.469 262.543 259.396 255.118 252.252 249.16 247.112 245.081 242.567 220.46 218.424 218.809 218.138 216.152 214.627 215.733 219.598 224.761 229.68 233.389 235.577 237.159 239.751 244.53 251.937 258.007 262.053 268.457 271.127 272.357 273.112 273.574 273.879 274.362 274.994 275.693 276.493 277.32 278.21 279.295 280.716 282.363 284.272 286.211 287.606 288.758 290.062 291.263 292.441 293.626 294.637 295.511 296.269 296.903 297.439 297.909 298.295 298.629 298.967 299.289 299.547 299.765 299.943 300.129 300.358 300.586 300.726 300.748 300.7 300.685 300.694 300.72 300.702 300.517 300.307 300.183 299.993 299.514 298.807 298.027 297.331 296.768 296.395 296.229 296.094 295.933 296.132 296.574 296.384 295.813 294.934 293.561 291.003 287.902 286.221 285.058 283.22 281.75 280.844 281.047 280.559 279.826 278.211 276.638 275.666 274.15 272.263 269.749 267.251 266.333 265.983 265.397 264.732 264.223 263.877 263.278 263.096 262.897 262.47 261.552 261.107 260.302 261.555 263.451 262.7 262.707 262.769 263.574 263.972 262.057 258.97 254.826 252.277 249.057 247.05 245.036 242.558 220.395 218.282 218.695 217.978 215.921 214.479 215.871 220.166 225.594 230.77 234.643 237.037 238.695 241.1 245.557 253.297 258.937 263.025 268.781 271.116 272.309 273.095 273.568 273.861 274.308 274.936 275.635 276.386 277.166 278.043 279.117 280.587 282.358 284.271 286.164 287.554 288.707 289.991 291.228 292.434 293.533 294.462 295.32 296.086 296.724 297.263 297.739 298.161 298.526 298.865 299.207 299.512 299.734 299.899 300.111 300.357 300.548 300.654 300.679 300.704 300.774 300.842 300.877 300.845 300.643 300.449 300.323 300.108 299.663 298.999 298.2 297.473 296.994 296.808 296.914 297.016 296.786 296.452 296.3 296.003 295.487 294.773 293.522 290.827 287.945 286.645 284.943 282.714 280.981 280.015 280.804 281.112 280.327 278.338 276.608 275.537 274.415 272.233 269.611 267.584 266.597 265.904 265.284 264.681 264.166 263.734 262.859 262.441 262.359 261.923 261.432 260.631 260.052 261.563 263.005 262.311 262.222 262.313 263.446 263.471 261.598 258.704 254.651 252.209 249.049 246.983 244.986 242.549 220.398 218.181 218.598 217.821 215.717 214.354 215.964 220.653 226.315 231.807 235.902 238.468 240.325 242.709 246.885 254.317 259.731 264.263 269.087 271.148 272.291 273.085 273.569 273.851 274.248 274.851 275.537 276.24 276.984 277.844 278.887 280.388 282.31 284.27 286.127 287.519 288.69 289.96 291.218 292.411 293.438 294.326 295.213 295.959 296.551 297.069 297.563 298.037 298.463 298.814 299.146 299.459 299.658 299.821 300.055 300.313 300.504 300.632 300.661 300.679 300.796 300.975 301.064 300.931 300.63 300.446 300.389 300.226 299.845 299.215 298.372 297.657 297.36 297.354 297.507 297.629 297.417 296.94 296.519 296.104 295.664 295.03 293.746 290.79 287.911 285.693 283.997 280.748 278.651 278.514 280.49 281.147 281.236 278.535 276.757 275.907 274.503 271.774 269.486 267.721 266.776 265.994 265.202 264.717 264.262 263.631 262.793 261.924 262.092 261.782 261.558 260.001 259.711 261.534 262.54 261.789 261.851 262.021 263.067 262.945 261.073 258.329 254.755 252.055 249.136 246.929 244.935 242.539 220.281 218.118 218.445 217.707 215.535 214.223 216.082 221.042 226.985 232.823 237.006 239.661 242.009 244.594 248.529 255.513 260.556 265.553 269.368 271.197 272.285 273.074 273.568 273.85 274.202 274.773 275.436 276.099 276.825 277.673 278.673 280.193 282.283 284.314 286.111 287.476 288.643 289.903 291.18 292.373 293.36 294.233 295.136 295.855 296.41 296.922 297.443 297.966 298.451 298.821 299.148 299.456 299.632 299.782 300.005 300.253 300.46 300.618 300.644 300.626 300.771 301.049 301.178 300.952 300.559 300.387 300.389 300.263 299.908 299.321 298.53 297.866 297.625 297.682 297.884 298.047 297.884 297.409 296.906 296.407 296.016 295.464 294.233 291.199 287.774 284.878 281.684 278.303 276.253 277.422 279.451 280.654 280.388 278.911 277.043 275.792 274.588 271.703 268.749 267.585 266.862 266.116 265.184 264.834 264.372 263.605 262.75 261.699 261.577 261.616 260.892 259.74 259.309 260.944 262.048 261.401 261.516 261.892 262.506 262.414 260.555 257.964 254.652 251.973 249.079 246.947 244.905 242.527 220.264 218.005 218.346 217.619 215.378 214.096 216.106 221.301 227.545 233.684 238.022 240.512 243.508 246.609 250.466 256.913 261.543 266.697 269.656 271.258 272.282 273.054 273.559 273.854 274.182 274.719 275.348 275.98 276.703 277.559 278.518 280.028 282.264 284.372 286.102 287.421 288.558 289.801 291.092 292.308 293.28 294.13 295.025 295.734 296.284 296.818 297.386 297.961 298.484 298.869 299.197 299.491 299.641 299.771 299.966 300.187 300.397 300.569 300.616 300.605 300.78 301.101 301.222 300.936 300.514 300.366 300.401 300.281 299.913 299.372 298.706 298.116 297.837 297.882 298.164 298.407 298.272 297.83 297.362 296.84 296.466 295.912 294.664 292.095 288.303 284.514 280.766 276.465 274.523 275.304 277.633 278.964 278.877 277.991 277.156 275.92 274.252 271.358 268.377 267.237 266.73 266.085 265.133 264.754 264.228 263.41 262.386 261.397 261.528 261.175 260.544 259.3 258.839 260.654 261.432 261.192 261.237 261.655 261.99 261.808 260.074 257.587 254.418 251.945 248.975 246.962 244.923 242.56 220.253 217.892 218.253 217.535 215.248 213.984 216.06 221.428 227.919 234.495 238.989 241.44 244.615 248.518 252.523 258.272 263.09 267.757 270.017 271.342 272.279 273.016 273.533 273.867 274.197 274.698 275.276 275.876 276.618 277.522 278.449 279.912 282.245 284.416 286.1 287.375 288.466 289.671 290.962 292.206 293.177 293.999 294.873 295.586 296.145 296.696 297.321 297.952 298.496 298.888 299.225 299.501 299.645 299.783 299.971 300.158 300.334 300.522 300.623 300.681 300.864 301.146 301.215 300.922 300.537 300.427 300.491 300.409 300.057 299.496 298.854 298.338 298.106 298.267 298.671 298.903 298.701 298.386 298.104 297.684 296.964 296.188 295.271 292.852 289.332 285.624 280.909 276.024 273.286 273.162 274.878 276.259 276.649 276.951 277.161 275.719 273.916 270.875 267.95 266.809 266.452 265.953 265.076 264.617 264.149 263.142 262.242 261.292 261.301 261.159 260.369 258.977 258.593 259.862 260.598 260.905 261.104 261.353 261.552 261.122 259.608 257.25 254.255 251.924 248.852 246.89 244.95 242.637 220.253 217.826 218.123 217.449 215.134 213.876 215.98 221.454 228.166 235.224 239.945 242.53 245.672 250.151 254.54 259.494 264.572 268.636 270.389 271.445 272.291 272.978 273.487 273.867 274.229 274.698 275.224 275.802 276.58 277.561 278.472 279.904 282.265 284.448 286.107 287.358 288.428 289.61 290.882 292.115 293.093 293.926 294.798 295.503 296.041 296.58 297.236 297.888 298.424 298.824 299.193 299.481 299.666 299.845 300.03 300.173 300.328 300.555 300.688 300.751 300.901 301.124 301.158 300.87 300.528 300.443 300.54 300.575 300.329 299.687 298.899 298.413 298.359 298.699 299.193 299.404 299.239 299.09 298.939 298.543 298.075 296.998 295.335 293.347 291.089 287.266 282.524 277.272 272.91 270.52 269.538 271.66 273.322 275.013 275.957 275.427 273.767 270.327 267.557 266.495 266.143 265.859 265.065 264.555 263.984 263.002 262.101 261.193 260.684 260.406 259.863 258.777 258.334 259.223 259.836 260.423 260.933 260.959 261.379 260.451 259.188 256.957 254.292 251.807 248.787 246.799 244.921 242.695 220.237 217.733 218.061 217.403 215.068 213.789 215.889 221.369 228.254 235.738 240.97 243.87 247.081 251.514 256.189 259.832 265.945 269.419 270.749 271.566 272.326 272.948 273.425 273.845 274.255 274.698 275.186 275.758 276.592 277.662 278.555 279.992 282.354 284.493 286.106 287.326 288.393 289.585 290.837 292.036 293.02 293.875 294.742 295.42 295.944 296.5 297.196 297.837 298.341 298.752 299.148 299.45 299.682 299.906 300.084 300.196 300.358 300.603 300.736 300.773 300.902 301.086 301.073 300.763 300.464 300.42 300.521 300.633 300.565 300.01 299.222 298.781 298.786 299.131 299.683 300.008 299.979 299.852 299.635 300.043 299.157 297.176 295.453 294.17 292.442 289.538 285.737 280.426 274.124 266.506 264.869 265.868 268.08 272.457 274.953 275.147 273.563 269.865 267.153 266.116 265.859 265.633 265.187 264.547 263.97 262.675 261.877 261.08 260.449 260.163 259.579 258.825 257.921 258.821 259.455 259.796 260.806 260.664 261.024 259.983 258.764 256.712 254.198 251.697 248.842 246.704 244.866 242.711 220.26 217.714 217.938 217.322 215.036 213.71 215.761 221.164 228.255 236.004 241.69 244.991 248.373 252.747 256.952 260.511 267.218 270.114 271.097 271.71 272.39 272.937 273.357 273.809 274.27 274.692 275.162 275.764 276.694 277.835 278.701 280.18 282.517 284.56 286.094 287.272 288.356 289.581 290.811 291.962 292.934 293.806 294.656 295.301 295.839 296.459 297.191 297.794 298.258 298.679 299.078 299.384 299.665 299.938 300.135 300.248 300.412 300.613 300.718 300.757 300.889 301.042 300.979 300.664 300.422 300.412 300.47 300.594 300.717 300.421 299.841 299.475 299.356 299.525 300.147 300.68 300.699 300.359 299.954 300.392 298.989 297.337 295.239 294.557 293.297 291.394 288.74 283.672 275.329 264.36 260.788 261.594 264.556 268.41 273.384 274.781 273.608 269.657 266.853 265.743 265.934 265.773 265.215 264.397 263.721 262.297 261.652 260.904 260.424 260.118 259.759 258.692 257.749 258.488 259.089 259.681 260.795 260.565 260.506 259.631 258.343 256.409 254.049 251.603 248.858 246.63 244.801 242.709 220.194 217.652 217.879 217.328 215.058 213.642 215.592 220.868 228.144 236.011 241.932 245.506 249.171 253.568 256.092 261.447 268.156 270.682 271.441 271.897 272.502 272.976 273.321 273.776 274.274 274.68 275.171 275.875 276.962 278.097 279.01 280.566 282.783 284.651 286.06 287.213 288.347 289.608 290.809 291.886 292.807 293.688 294.527 295.151 295.738 296.44 297.155 297.705 298.159 298.581 298.966 299.282 299.61 299.937 300.192 300.345 300.473 300.558 300.603 300.662 300.77 300.903 300.881 300.669 300.495 300.457 300.422 300.504 300.753 300.716 300.353 299.953 299.59 299.679 300.377 301.161 301.077 300.934 300.607 300.214 298.558 297.03 295.502 294.578 293.744 292.643 290.573 284.418 274.159 261.615 257.61 258.814 262.217 266.302 271.613 274.262 273.831 270.246 266.66 265.808 265.955 265.98 265.336 264.125 263.462 262.081 261.485 260.853 260.481 260.01 259.385 258.135 257.564 258.208 258.726 259.418 260.665 260.423 260.093 259.257 257.918 256.121 253.879 251.61 248.795 246.586 244.736 242.707 220.194 217.596 217.785 217.286 215.1 213.596 215.406 220.518 227.879 235.719 241.702 245.573 249.401 253.743 256.136 261.506 268.369 270.903 271.675 272.084 272.629 273.05 273.341 273.756 274.256 274.657 275.177 276.059 277.32 278.465 279.482 281.058 283.079 284.721 286.006 287.178 288.371 289.644 290.802 291.796 292.646 293.524 294.375 295.023 295.674 296.419 297.067 297.593 298.069 298.481 298.856 299.202 299.553 299.89 300.185 300.382 300.48 300.505 300.551 300.583 300.597 300.703 300.798 300.712 300.555 300.48 300.414 300.485 300.742 300.772 300.398 299.845 299.224 299.294 300.321 301.86 302.42 301.575 300.715 299.689 298.481 296.659 295.451 293.917 293.523 292.258 288.375 281.042 268.39 258.793 256.947 258.81 261.694 264.772 268.571 273.598 273.828 271.002 266.983 265.811 266.057 266.096 265.215 263.973 263.18 261.883 261.598 260.848 260.233 259.826 259.007 257.955 257.363 257.923 258.392 259.117 260.504 260.336 259.751 258.877 257.534 255.89 253.844 251.51 248.667 246.577 244.697 242.696 220.196 217.587 217.715 217.293 215.175 213.592 215.191 220.116 227.487 235.186 241.018 244.881 248.779 253.156 256.854 261.286 267.986 270.87 271.82 272.251 272.745 273.103 273.37 273.754 274.194 274.584 275.131 276.245 277.669 278.878 279.975 281.518 283.33 284.752 285.938 287.148 288.38 289.64 290.75 291.663 292.457 293.331 294.199 294.895 295.622 296.378 296.964 297.478 297.963 298.363 298.734 299.114 299.476 299.813 300.158 300.38 300.451 300.473 300.562 300.586 300.53 300.597 300.724 300.673 300.531 300.469 300.417 300.473 300.715 300.811 300.524 299.271 298.419 299.05 301.619 303.308 302.811 301.676 300.495 299.354 298.335 297.162 295.639 294.808 292.526 289.801 283.551 274.145 261.542 257.279 259.064 262.01 263.571 264.453 266.935 272.296 273.569 271.498 267.369 265.751 266.068 266.301 265.134 263.632 262.563 261.512 261.393 260.673 259.999 259.55 258.951 257.722 257.166 257.614 258.109 259.204 260.411 260.287 259.522 258.544 257.246 255.736 253.763 251.336 248.544 246.559 244.669 242.681 220.181 217.569 217.638 217.259 215.274 213.614 214.968 219.693 226.978 234.391 239.889 243.722 247.501 251.794 257.302 261.067 266.949 270.627 271.891 272.395 272.832 273.117 273.369 273.763 274.133 274.479 275.088 276.41 277.988 279.28 280.417 281.889 283.503 284.747 285.88 287.131 288.376 289.603 290.654 291.505 292.275 293.153 294.035 294.776 295.565 296.316 296.853 297.342 297.823 298.216 298.598 299.008 299.392 299.756 300.157 300.364 300.383 300.418 300.568 300.634 300.575 300.595 300.667 300.603 300.5 300.464 300.415 300.46 300.698 300.806 300.336 299.933 300.322 301.726 302.893 303.253 302.567 301.881 300.691 299.225 298.527 297.697 295.924 294.768 292.24 286.645 276.612 262.911 256.892 257.167 262.518 265.896 267.189 266.266 265.918 270.449 272.786 271.63 267.569 265.805 266.071 266.191 264.831 263.308 262.134 261.456 261.274 260.663 259.876 259.499 259.136 257.725 257.203 257.242 257.871 259.125 260.237 260.174 259.334 258.246 256.986 255.56 253.616 251.177 248.425 246.514 244.643 242.661 220.178 217.556 217.595 217.259 215.356 213.652 214.735 219.268 226.384 233.395 238.523 242.088 245.765 250.165 255.141 260.592 265.271 270.09 271.883 272.501 272.866 273.105 273.338 273.736 274.079 274.403 275.121 276.639 278.315 279.639 280.766 282.13 283.57 284.722 285.87 287.163 288.394 289.549 290.516 291.345 292.136 293.016 293.901 294.662 295.471 296.206 296.706 297.16 297.631 298.039 298.461 298.899 299.32 299.735 300.168 300.328 300.28 300.323 300.535 300.678 300.687 300.657 300.634 300.576 300.526 300.452 300.404 300.557 300.858 300.88 300.629 300.45 300.619 301.406 301.632 301.316 301.847 301.88 301.132 299.737 298.874 298.045 296.9 295.016 290.755 281.823 268.921 256.675 253.988 258.544 265.117 270.018 270.738 268.009 265.365 267.88 271.822 271.269 267.484 266.049 265.942 265.816 264.67 262.956 261.899 261.392 261.053 260.423 259.806 259.55 258.994 257.819 256.757 256.82 257.586 258.815 259.954 259.958 259.116 257.931 256.686 255.345 253.459 250.995 248.406 246.441 244.62 242.637 220.255 217.553 217.542 217.245 215.479 213.741 214.504 218.833 225.736 232.331 236.995 240.134 243.775 248.386 253.445 259.869 263.905 269.045 271.786 272.518 272.83 273.075 273.317 273.672 274.016 274.388 275.25 276.945 278.621 279.91 280.976 282.224 283.562 284.722 285.926 287.227 288.415 289.492 290.392 291.231 292.063 292.925 293.771 294.517 295.294 296.004 296.528 297.0 297.471 297.903 298.363 298.842 299.284 299.705 300.119 300.276 300.262 300.309 300.495 300.655 300.718 300.686 300.617 300.569 300.493 300.306 300.246 300.51 300.957 300.835 300.001 299.278 298.752 298.924 298.96 299.575 300.948 301.39 300.58 299.361 298.579 297.831 296.545 294.16 287.652 275.956 260.468 253.233 252.759 259.491 266.849 272.535 272.98 270.731 265.705 266.519 270.456 270.583 267.334 265.948 265.843 265.383 264.526 262.889 261.788 261.225 260.651 260.402 259.679 259.361 258.916 257.782 256.726 256.462 257.25 258.688 259.619 259.676 258.925 257.62 256.367 255.176 253.272 250.899 248.304 246.349 244.643 242.609 220.251 217.523 217.484 217.275 215.647 213.869 214.281 218.381 225.036 231.207 235.338 238.148 241.703 246.568 251.877 258.498 263.354 267.4 271.62 272.476 272.761 273.032 273.299 273.624 273.977 274.428 275.464 277.285 278.923 280.175 281.181 282.32 283.579 284.756 285.997 287.269 288.411 289.436 290.301 291.155 292.017 292.851 293.642 294.356 295.082 295.764 296.336 296.858 297.347 297.805 298.304 298.813 299.27 299.668 300.043 300.227 300.269 300.293 300.397 300.534 300.632 300.651 300.59 300.538 300.429 300.166 300.012 300.135 300.216 299.926 299.386 298.699 298.202 298.126 298.047 298.058 299.171 299.7 299.055 298.475 297.58 297.016 295.838 292.433 283.154 270.371 256.62 251.785 253.205 259.934 268.056 274.023 274.901 272.168 266.61 265.956 269.586 269.037 266.677 265.946 265.582 265.052 264.515 262.939 261.753 261.329 260.513 260.419 259.745 259.412 258.874 257.883 256.576 256.247 257.003 258.128 259.09 259.346 258.782 257.443 256.142 255.005 253.171 250.752 248.172 246.263 244.674 242.577 220.242 217.57 217.489 217.263 215.82 214.005 214.089 217.936 224.299 230.062 233.712 236.227 239.756 244.868 250.459 256.492 262.378 265.918 271.341 272.381 272.657 272.962 273.272 273.607 273.997 274.539 275.745 277.625 279.211 280.442 281.427 282.474 283.641 284.812 286.057 287.283 288.399 289.411 290.254 291.105 291.982 292.78 293.519 294.204 294.887 295.542 296.158 296.721 297.236 297.734 298.269 298.789 299.253 299.619 299.949 300.149 300.231 300.237 300.288 300.386 300.493 300.574 300.565 300.517 300.424 300.187 299.917 299.727 299.595 299.46 299.133 298.454 297.94 297.797 297.621 297.72 298.268 299.026 298.711 297.923 297.443 296.56 295.452 290.188 278.452 262.059 253.961 251.479 253.589 259.18 267.696 274.361 275.58 272.63 267.901 267.2 268.802 267.206 265.699 265.431 265.379 265.008 264.7 263.206 261.869 261.131 260.338 260.136 259.398 259.239 258.949 257.798 256.405 255.994 256.531 257.428 258.434 258.931 258.597 257.3 255.975 254.836 253.059 250.577 248.011 246.187 244.691 242.552 220.27 217.626 217.466 217.31 215.956 214.184 213.948 217.457 223.564 228.975 232.204 234.517 237.975 243.259 249.197 254.979 261.396 265.223 270.981 272.236 272.519 272.867 273.24 273.624 274.102 274.763 276.096 277.967 279.474 280.698 281.718 282.706 283.757 284.885 286.1 287.286 288.413 289.446 290.247 291.049 291.901 292.65 293.345 294.022 294.695 295.347 295.992 296.574 297.116 297.676 298.216 298.717 299.177 299.509 299.802 300.006 300.136 300.22 300.337 300.389 300.429 300.54 300.602 300.57 300.527 300.383 300.085 299.707 299.375 299.188 298.925 298.371 297.914 297.806 297.626 297.591 298.184 298.392 298.376 297.571 296.711 296.092 294.523 287.554 274.739 258.914 252.795 252.06 252.886 257.788 265.093 273.214 275.116 272.712 269.058 268.976 268.878 265.895 264.34 264.208 264.312 264.693 264.642 263.559 262.276 261.029 260.033 259.753 259.191 258.981 258.844 257.445 256.146 255.796 256.029 256.847 257.978 258.489 258.368 257.124 255.756 254.643 252.9 250.34 247.878 246.162 244.7 242.538 220.29 217.618 217.439 217.33 216.161 214.403 213.892 216.976 222.802 227.921 230.815 232.936 236.401 241.907 248.037 253.969 260.688 264.915 270.747 272.135 272.421 272.809 273.226 273.663 274.254 275.019 276.402 278.219 279.658 280.874 281.941 282.915 283.876 284.948 286.137 287.305 288.442 289.465 290.205 290.947 291.765 292.482 293.147 293.816 294.495 295.175 295.857 296.45 297.001 297.592 298.127 298.613 299.063 299.375 299.651 299.905 300.117 300.297 300.465 300.496 300.504 300.649 300.739 300.691 300.63 300.441 300.081 299.745 299.495 299.213 298.78 298.159 297.685 297.597 297.548 297.546 297.964 298.417 298.008 297.374 296.697 295.486 293.049 284.77 271.117 257.602 253.298 252.964 252.356 255.964 262.367 271.128 274.125 272.794 270.121 269.618 267.319 264.379 262.469 262.086 263.146 263.845 264.457 263.512 262.465 261.248 260.063 259.552 258.993 258.666 258.306 257.133 255.821 255.443 255.619 256.169 257.15 257.884 258.061 256.894 255.468 254.384 252.699 250.16 247.748 246.17 244.696 242.523 220.312 217.649 217.47 217.402 216.369 214.684 213.772 216.526 222.031 226.938 229.535 231.552 234.969 240.635 247.03 253.116 260.052 264.762 270.698 272.106 272.385 272.8 273.233 273.712 274.399 275.245 276.627 278.399 279.804 281.01 282.097 283.06 283.969 285.001 286.18 287.343 288.456 289.423 290.118 290.847 291.665 292.376 293.036 293.7 294.367 295.055 295.76 296.354 296.914 297.516 298.051 298.525 298.957 299.257 299.54 299.857 300.119 300.325 300.487 300.543 300.603 300.771 300.834 300.791 300.746 300.487 300.017 299.695 299.525 299.233 298.771 298.148 297.609 297.445 297.521 297.637 297.845 298.161 298.147 297.404 296.612 295.409 291.888 282.451 267.618 257.074 254.096 253.696 252.158 254.327 260.233 268.936 273.076 273.384 271.178 269.657 267.112 262.916 260.595 259.989 261.57 263.557 264.194 263.58 262.492 261.273 259.727 259.271 258.628 258.274 257.733 256.527 255.319 254.919 255.106 255.508 256.083 257.122 257.677 256.622 255.147 254.116 252.56 249.969 247.723 246.171 244.695 242.505 220.351 217.753 217.5 217.417 216.585 215.001 213.794 216.114 221.323 225.973 228.446 230.313 233.627 239.316 246.071 252.42 259.266 264.673 270.725 272.12 272.395 272.833 273.258 273.757 274.531 275.432 276.781 278.524 279.93 281.129 282.196 283.133 284.028 285.049 286.241 287.401 288.454 289.34 290.018 290.779 291.62 292.334 293.007 293.679 294.322 294.993 295.689 296.272 296.842 297.463 297.995 298.441 298.847 299.147 299.455 299.821 300.093 300.296 300.466 300.578 300.69 300.817 300.835 300.841 300.868 300.608 300.096 299.77 299.601 299.319 298.897 298.278 297.645 297.372 297.548 297.784 297.841 297.973 298.305 297.992 296.608 294.987 290.776 280.842 266.835 257.412 254.85 254.086 252.704 253.478 258.786 265.17 272.164 273.644 271.745 269.41 265.843 261.291 258.978 258.344 260.181 262.676 264.086 263.407 262.541 261.217 259.691 258.909 258.478 258.028 256.825 255.481 254.643 254.564 254.622 254.929 255.393 255.993 257.095 256.315 254.907 253.971 252.426 249.913 247.726 246.157 244.677 242.483 220.411 217.78 217.516 217.535 216.802 215.331 213.797 215.757 220.632 225.059 227.435 229.099 232.406 238.086 245.205 251.806 258.98 264.566 270.694 272.139 272.437 272.892 273.302 273.809 274.658 275.59 276.885 278.597 280.037 281.223 282.216 283.113 284.038 285.109 286.338 287.476 288.431 289.228 289.917 290.732 291.574 292.261 292.937 293.626 294.263 294.925 295.603 296.181 296.763 297.413 297.939 298.33 298.689 299.015 299.378 299.77 300.047 300.293 300.518 300.639 300.691 300.74 300.785 300.879 300.936 300.687 300.268 300.004 299.795 299.456 299.01 298.361 297.7 297.433 297.593 297.772 297.741 297.72 297.897 297.498 295.623 294.063 289.746 280.508 268.258 258.695 255.663 254.689 253.731 254.353 258.352 264.027 272.164 273.922 272.163 268.901 263.442 259.845 258.205 257.872 259.557 262.09 263.27 262.955 262.503 261.116 259.569 258.749 258.375 257.329 255.816 254.596 253.964 254.214 254.213 254.458 254.818 255.314 256.487 255.916 254.707 253.784 252.297 249.896 247.742 246.115 244.646 242.476 220.441 217.865 217.621 217.558 217.019 215.688 213.961 215.489 220.008 224.196 226.547 228.192 231.369 237.014 244.338 251.194 259.09 264.494 270.523 272.128 272.473 272.943 273.35 273.862 274.76 275.698 276.931 278.611 280.081 281.239 282.141 283.005 284.012 285.18 286.433 287.509 288.363 289.088 289.804 290.665 291.491 292.143 292.807 293.487 294.141 294.827 295.514 296.105 296.713 297.354 297.862 298.231 298.573 298.936 299.37 299.789 300.081 300.345 300.551 300.601 300.598 300.684 300.848 300.992 300.968 300.704 300.394 300.173 299.922 299.58 299.179 298.583 297.992 297.753 297.776 297.764 297.673 297.514 297.304 296.294 294.492 292.565 288.948 281.324 270.712 261.003 256.971 255.365 255.069 255.684 258.832 263.249 270.97 273.536 271.909 267.758 261.407 258.61 257.82 257.869 259.885 261.866 262.471 262.923 262.622 261.151 259.733 258.516 257.887 256.686 255.102 253.847 253.402 253.883 253.896 254.067 254.289 254.78 255.85 255.452 254.428 253.482 252.174 249.812 247.711 246.051 244.607 242.504 220.485 217.933 217.702 217.705 217.19 216.057 214.22 215.277 219.382 223.363 225.776 227.391 230.463 236.078 243.503 250.635 259.008 264.241 270.16 272.084 272.501 272.98 273.393 273.914 274.841 275.786 276.967 278.602 280.075 281.201 282.031 282.897 284.006 285.259 286.493 287.473 288.242 288.94 289.699 290.609 291.432 292.079 292.738 293.393 294.052 294.751 295.437 296.056 296.694 297.291 297.753 298.124 298.491 298.913 299.422 299.872 300.169 300.397 300.534 300.558 300.596 300.725 300.913 301.065 301.046 300.851 300.591 300.32 300.028 299.754 299.455 298.865 298.185 297.832 297.861 297.936 297.95 297.722 296.856 295.215 293.823 291.543 288.576 282.289 273.047 263.193 258.419 256.32 256.305 257.064 259.222 262.699 269.996 272.723 270.991 265.96 259.984 257.857 257.625 258.309 260.134 261.864 262.532 262.9 262.287 260.97 259.409 258.112 257.282 256.024 254.683 253.211 252.964 253.612 253.638 253.735 253.833 254.171 255.183 254.881 253.949 253.161 252.035 249.708 247.681 245.972 244.559 242.538 220.532 218.042 217.741 217.692 217.442 216.422 214.545 215.148 218.764 222.55 224.933 226.605 229.62 235.219 242.757 250.153 258.776 263.943 269.513 272.014 272.527 273.012 273.436 273.971 274.912 275.865 277.002 278.581 280.032 281.127 281.922 282.825 284.035 285.345 286.511 287.378 288.096 288.821 289.63 290.567 291.378 292.03 292.687 293.309 293.971 294.687 295.371 296.02 296.681 297.203 297.596 297.991 298.434 298.945 299.524 299.985 300.276 300.453 300.541 300.594 300.689 300.787 300.908 301.058 301.1 300.952 300.646 300.281 300.008 299.867 299.661 298.989 298.092 297.553 297.76 298.157 298.524 297.916 297.198 296.542 294.163 291.561 288.785 282.854 274.555 265.685 260.426 257.658 257.063 257.569 259.903 261.74 268.334 271.294 269.702 263.342 259.171 257.426 257.72 258.54 260.012 261.418 262.173 262.474 262.417 260.972 259.051 257.959 256.74 255.689 254.283 252.856 252.723 253.391 253.43 253.534 253.481 253.592 254.391 254.189 253.319 252.87 251.949 249.624 247.624 245.892 244.508 242.566 220.509 218.092 217.873 217.966 217.665 216.797 214.919 215.089 218.222 221.75 224.127 225.852 228.841 234.452 242.172 249.645 257.2 263.584 268.649 271.925 272.56 273.047 273.477 274.028 274.973 275.933 277.032 278.544 279.953 281.015 281.828 282.804 284.114 285.434 286.461 287.24 287.975 288.774 289.614 290.511 291.263 291.891 292.529 293.126 293.83 294.607 295.325 296.003 296.631 297.03 297.354 297.842 298.446 299.084 299.707 300.148 300.4 300.561 300.629 300.673 300.754 300.804 300.887 301.006 300.944 300.583 300.077 299.405 299.786 299.982 299.982 299.479 298.588 297.908 298.099 297.73 298.636 298.35 298.316 296.924 294.667 291.047 288.611 282.921 274.912 266.774 261.872 259.02 257.576 257.496 258.869 261.072 266.669 269.789 268.299 261.982 258.463 257.083 257.589 258.29 259.934 261.014 261.548 262.336 262.155 260.887 259.185 257.765 256.125 255.07 253.913 252.652 252.597 253.089 253.298 253.373 253.175 253.143 253.634 253.378 252.596 252.717 251.906 249.554 247.573 245.819 244.48 242.588 220.595 218.151 218.008 218.002 217.969 217.202 215.304 215.169 217.813 221.007 223.36 225.175 228.223 233.92 241.681 249.147 255.563 262.798 268.036 271.858 272.611 273.086 273.509 274.064 274.999 275.965 277.05 278.509 279.859 280.897 281.763 282.828 284.211 285.432 286.342 287.105 287.913 288.768 289.613 290.47 291.172 291.772 292.392 292.987 293.746 294.599 295.356 295.995 296.502 296.784 297.139 297.792 298.56 299.285 299.918 300.327 300.546 300.687 300.696 300.675 300.755 300.86 300.939 300.873 300.462 299.752 298.783 298.802 299.92 300.405 300.649 300.616 300.166 299.466 299.054 299.588 300.064 298.852 297.149 295.292 292.922 289.914 286.613 280.816 273.411 266.091 262.298 259.946 258.32 257.372 258.835 260.834 266.03 269.122 267.247 261.58 258.201 256.793 257.2 257.905 259.333 260.49 261.184 262.415 262.128 260.742 259.273 257.703 255.947 254.818 253.758 252.766 252.528 252.871 253.152 253.224 252.87 252.677 253.238 252.658 252.847 252.67 251.895 249.561 247.531 245.745 244.468 242.597 220.636 218.278 218.106 218.271 218.24 217.62 215.723 215.308 217.543 220.397 222.659 224.647 227.773 233.473 241.267 248.678 255.041 261.79 267.819 271.836 272.675 273.14 273.543 274.086 274.998 275.975 277.076 278.484 279.761 280.785 281.713 282.889 284.259 285.368 286.196 286.98 287.863 288.764 289.618 290.476 291.169 291.748 292.349 292.96 293.756 294.634 295.373 295.912 296.281 296.532 297.019 297.854 298.722 299.467 300.09 300.483 300.683 300.781 300.732 300.695 300.799 300.876 300.776 300.428 299.811 298.539 298.377 299.417 300.156 300.501 300.816 301.13 300.889 300.329 299.929 300.673 300.04 298.183 296.178 293.928 291.312 288.198 283.538 277.6 269.987 264.772 262.087 260.453 259.051 258.135 259.909 262.091 266.463 269.061 267.722 262.011 258.567 257.021 256.834 257.547 258.732 260.054 261.447 262.466 262.107 260.573 259.068 257.34 255.567 254.501 253.618 252.943 252.775 252.805 252.959 253.122 252.564 252.237 252.885 252.268 252.863 252.9 251.896 249.619 247.523 245.743 244.465 242.598 220.682 218.42 218.269 218.295 218.506 218.039 216.169 215.566 217.373 219.843 222.027 224.243 227.421 233.115 240.939 248.268 254.598 261.112 267.904 271.862 272.739 273.199 273.58 274.102 274.98 275.983 277.114 278.464 279.671 280.688 281.696 282.953 284.26 285.273 286.058 286.888 287.838 288.784 289.643 290.504 291.186 291.727 292.307 292.977 293.797 294.644 295.299 295.722 296.018 296.347 297.022 298.01 298.911 299.635 300.224 300.591 300.773 300.833 300.772 300.75 300.801 300.65 300.231 299.474 298.533 298.013 299.2 299.676 300.09 299.93 300.056 299.971 300.147 300.63 300.479 300.252 299.287 297.143 295.064 292.787 289.841 285.415 280.898 275.862 269.664 265.808 263.482 261.429 260.392 259.475 260.837 264.128 267.602 269.908 268.231 263.275 259.116 257.41 257.28 257.75 258.78 260.289 261.6 262.333 261.962 260.413 258.817 256.874 255.373 254.244 253.687 253.206 252.983 252.739 252.839 253.012 252.356 251.931 252.331 252.285 252.952 253.351 251.842 249.694 247.511 245.733 244.471 242.598 220.76 218.494 218.476 218.592 218.718 218.439 216.616 215.782 217.24 219.379 221.467 223.857 227.145 232.878 240.679 247.929 254.361 260.977 268.263 271.934 272.791 273.258 273.628 274.114 274.96 276.003 277.152 278.447 279.596 280.613 281.728 282.999 284.224 285.175 285.973 286.869 287.875 288.863 289.703 290.512 291.144 291.638 292.254 293.05 293.873 294.612 295.118 295.468 295.835 296.365 297.208 298.244 299.118 299.81 300.352 300.653 300.802 300.863 300.84 300.756 300.529 299.912 298.536 298.056 298.232 298.491 299.081 298.457 299.071 299.826 299.613 299.357 299.477 299.824 299.846 299.742 298.847 296.889 294.768 292.314 289.025 284.677 281.364 278.127 274.48 270.541 266.704 264.033 262.024 261.525 263.323 266.789 269.393 270.217 268.542 264.622 260.365 258.49 258.103 259.185 260.212 261.308 261.842 262.041 261.553 260.198 258.51 256.384 255.082 254.08 253.633 253.404 253.11 252.704 252.804 252.862 252.17 251.677 251.878 252.514 253.597 253.334 251.778 249.675 247.479 245.723 244.473 242.597 220.795 218.625 218.583 218.67 218.95 218.801 217.06 216.056 217.169 218.941 221.016 223.542 227.024 232.769 240.575 247.701 254.436 260.656 268.682 272.019 272.819 273.302 273.669 274.118 274.961 276.031 277.173 278.428 279.536 280.579 281.769 283.026 284.184 285.133 285.992 286.911 287.923 288.907 289.721 290.506 291.163 291.713 292.454 293.293 294.007 294.548 294.946 295.383 295.938 296.625 297.495 298.449 299.283 299.966 300.461 300.706 300.845 300.927 300.891 300.645 300.06 298.82 298.052 298.335 298.987 298.737 298.667 298.518 299.442 299.798 299.93 299.875 299.667 300.333 299.667 298.708 298.162 296.577 294.825 292.38 289.431 286.14 284.003 281.641 278.218 274.465 271.301 267.114 264.668 264.427 266.107 268.988 270.501 270.34 268.44 264.69 261.677 260.581 259.676 260.737 261.106 261.891 261.779 261.713 261.05 259.477 257.881 256.022 254.69 253.878 253.434 253.321 253.231 252.879 252.783 252.708 252.082 251.416 251.642 252.477 253.797 253.208 251.695 249.595 247.426 245.703 244.478 242.574 220.9 218.761 218.731 218.982 219.145 219.087 217.464 216.334 217.15 218.504 220.543 223.269 226.991 232.868 240.662 247.737 254.79 260.336 269.123 272.104 272.834 273.338 273.698 274.113 274.985 276.056 277.18 278.401 279.473 280.563 281.803 283.052 284.158 285.12 286.038 286.951 287.923 288.879 289.687 290.496 291.23 291.878 292.693 293.465 294.02 294.408 294.839 295.451 296.174 296.955 297.828 298.722 299.503 300.136 300.575 300.799 300.926 300.98 300.878 300.538 299.408 298.681 298.688 299.385 299.653 299.389 299.353 299.316 299.38 299.655 300.182 300.305 299.801 298.952 297.844 297.348 297.307 296.23 294.688 292.528 289.662 287.115 285.433 282.804 278.922 275.219 272.854 270.048 267.655 267.439 268.752 270.493 271.281 270.529 268.089 265.042 262.648 261.949 261.618 261.878 261.793 261.996 261.751 261.304 260.437 258.959 257.512 255.49 254.272 253.688 253.447 253.393 253.306 252.969 252.77 252.543 251.822 251.193 251.495 252.451 253.552 253.04 251.558 249.483 247.368 245.677 244.487 242.542 220.946 218.856 218.939 219.069 219.403 219.346 217.786 216.596 217.137 218.11 220.048 222.984 227.007 233.135 240.898 247.907 255.006 261.028 269.579 272.186 272.85 273.37 273.72 274.114 275.022 276.075 277.178 278.362 279.407 280.551 281.837 283.088 284.155 285.129 286.094 286.989 287.905 288.838 289.655 290.485 291.271 291.987 292.804 293.485 293.932 294.314 294.906 295.696 296.533 297.361 298.259 299.134 299.821 300.333 300.692 300.896 300.978 300.941 300.785 300.473 299.158 299.152 299.412 299.891 299.652 299.41 299.363 299.371 299.32 299.49 299.678 300.11 300.507 298.689 297.286 296.795 296.792 295.248 293.576 291.716 289.114 286.705 284.921 281.993 277.742 274.843 273.733 271.91 270.385 269.715 270.299 271.268 271.304 270.199 267.927 265.375 263.645 262.574 261.636 262.013 261.821 261.719 261.292 260.748 259.647 258.524 257.218 255.082 253.877 253.579 253.588 253.522 253.41 252.93 252.687 252.386 251.45 250.895 251.421 253.348 253.603 252.825 251.379 249.303 247.281 245.657 244.49 242.503 221.008 219.061 219.193 219.435 219.608 219.557 218.066 216.845 217.105 217.711 219.557 222.701 227.123 233.561 241.296 248.156 255.076 262.251 269.962 272.262 272.862 273.399 273.741 274.134 275.073 276.094 277.155 278.296 279.342 280.546 281.882 283.151 284.19 285.166 286.153 287.038 287.925 288.879 289.73 290.561 291.344 292.095 292.892 293.546 294.034 294.614 295.449 296.37 297.241 298.051 298.926 299.739 300.221 300.521 300.792 300.958 300.923 300.734 300.159 299.854 300.381 300.311 300.174 299.883 299.47 299.195 299.178 299.317 299.417 299.545 299.982 300.512 301.142 299.172 297.691 297.388 294.811 293.242 292.562 291.836 288.903 286.08 283.809 281.119 278.1 276.433 275.516 273.903 271.933 271.229 271.4 271.016 270.849 269.65 267.958 265.796 264.121 262.832 261.819 261.728 261.491 261.101 260.418 259.759 258.847 258.107 256.875 254.674 253.41 253.412 253.634 253.629 253.468 252.854 252.576 252.098 251.265 250.697 251.883 253.719 253.712 252.588 251.141 249.138 247.208 245.634 244.485 242.461 221.132 219.229 219.38 219.561 219.88 219.772 218.309 217.046 217.084 217.326 219.062 222.478 227.356 234.146 241.728 248.427 256.552 263.253 270.143 272.308 272.877 273.413 273.753 274.176 275.123 276.096 277.102 278.209 279.306 280.569 281.932 283.223 284.27 285.232 286.201 287.087 288.006 289.017 289.936 290.824 291.654 292.451 293.243 293.868 294.454 295.277 296.321 297.34 298.221 298.947 299.65 300.24 300.505 300.667 300.913 301.053 300.895 300.577 299.752 300.148 300.534 300.441 300.191 299.898 299.627 299.537 299.439 299.452 299.575 299.662 299.716 299.904 299.957 298.965 297.969 296.881 295.969 294.76 293.481 293.083 289.973 286.59 283.791 281.482 279.388 277.997 276.622 275.066 273.734 272.549 271.518 270.574 269.96 269.408 267.74 266.06 264.912 262.812 261.724 261.586 261.295 260.518 259.444 258.681 257.959 257.666 256.536 254.482 253.185 253.244 253.666 253.598 253.326 252.636 252.324 251.815 250.836 250.543 251.945 253.643 253.419 252.324 250.94 248.988 247.13 245.597 244.466 242.428 221.127 219.424 219.636 219.973 220.129 219.976 218.52 217.201 217.012 216.939 218.59 222.283 227.677 234.815 242.282 248.713 257.05 263.77 270.243 272.349 272.9 273.407 273.759 274.234 275.166 276.076 277.025 278.127 279.305 280.629 281.991 283.294 284.382 285.328 286.243 287.138 288.109 289.176 290.183 291.162 292.038 292.823 293.561 294.195 294.994 296.148 297.412 298.47 299.275 299.826 300.267 300.589 300.716 300.848 301.071 301.16 300.91 300.557 299.698 300.489 300.581 300.334 299.758 299.292 298.999 299.478 299.677 299.678 299.736 299.782 299.639 299.409 299.055 298.472 297.696 297.26 296.898 296.132 294.776 294.172 291.498 287.797 284.437 281.802 279.63 277.964 276.626 275.609 274.751 273.514 271.832 270.249 269.85 268.68 266.981 265.896 265.178 263.171 261.413 261.068 260.79 259.824 258.589 257.5 256.755 256.972 256.065 254.178 252.67 253.045 253.472 253.432 253.071 252.335 252.076 251.519 250.459 250.392 251.815 253.54 253.119 251.995 250.828 248.795 247.001 245.534 244.426 242.385 221.277 219.546 219.941 220.181 220.409 220.18 218.714 217.33 216.941 216.633 218.125 222.088 228.041 235.538 242.892 249.001 256.204 263.927 270.331 272.391 272.919 273.385 273.766 274.313 275.219 276.054 276.955 278.084 279.346 280.727 282.071 283.368 284.507 285.434 286.279 287.193 288.229 289.35 290.453 291.534 292.403 293.118 293.853 294.71 295.955 297.562 298.984 299.868 300.376 300.635 300.775 300.857 300.907 301.039 301.191 301.175 300.889 300.602 299.584 300.499 300.597 299.962 298.672 297.821 297.74 298.91 299.656 299.883 299.885 299.915 299.814 299.524 299.198 298.77 298.222 297.829 297.493 296.874 295.488 294.017 292.259 288.998 285.424 282.202 279.715 278.027 276.943 276.635 276.097 274.667 272.621 271.151 269.661 267.935 266.257 265.719 265.024 263.085 261.274 260.798 260.157 259.061 257.93 256.764 256.096 256.23 255.471 253.807 252.544 252.971 253.195 253.064 252.556 251.86 251.735 251.113 250.255 250.366 251.832 253.415 252.824 251.723 250.654 248.693 246.923 245.456 244.374 242.333 221.272 219.781 220.204 220.606 220.659 220.384 218.894 217.415 216.836 216.391 217.717 221.947 228.425 236.23 243.451 249.312 255.956 264.093 270.475 272.457 272.937 273.351 273.792 274.438 275.312 276.079 276.981 278.131 279.434 280.877 282.197 283.457 284.626 285.515 286.285 287.244 288.37 289.558 290.793 291.998 292.888 293.629 294.599 295.997 297.791 299.545 300.766 301.448 301.448 301.372 301.271 301.146 301.098 301.164 301.176 301.033 300.813 300.571 299.594 300.748 300.535 299.255 298.086 297.272 297.034 297.624 299.414 300.016 299.962 299.968 300.022 299.88 299.727 299.564 299.171 298.71 298.26 297.385 295.957 294.056 292.604 289.791 286.625 283.515 281.093 279.519 278.686 278.316 277.66 275.974 273.927 272.234 270.193 267.542 266.087 265.211 264.596 263.287 261.232 260.518 259.702 258.737 257.467 255.959 255.338 255.323 254.871 253.642 252.445 252.692 252.843 252.524 252.001 251.403 251.306 250.745 250.116 250.453 252.439 253.203 252.557 251.498 250.449 248.681 246.894 245.334 244.326 242.27 221.466 219.999 220.524 220.884 220.963 220.569 219.054 217.493 216.792 216.147 217.379 221.882 228.752 236.785 243.862 249.605 256.103 264.408 270.688 272.538 272.957 273.336 273.849 274.578 275.423 276.192 277.156 278.276 279.542 281.02 282.323 283.522 284.652 285.479 286.199 287.23 288.447 289.681 291.044 292.409 293.452 294.413 295.696 297.195 299.275 301.333 302.19 301.668 301.786 301.879 301.723 301.431 301.229 301.178 301.088 300.918 300.853 300.707 300.201 300.749 300.498 299.312 298.247 297.42 297.027 297.224 298.609 299.788 299.856 299.906 300.029 299.912 299.8 299.778 299.516 299.052 298.567 297.789 296.565 294.219 292.842 290.348 287.464 284.791 282.608 280.938 279.863 279.213 278.488 277.067 275.336 273.575 271.142 267.998 265.776 264.708 264.284 262.921 261.62 260.32 259.431 258.433 257.307 255.618 254.465 254.499 254.183 253.621 252.635 252.545 252.475 251.905 251.152 250.91 250.84 250.341 250.458 251.438 252.753 252.933 252.325 251.303 250.244 248.624 246.924 245.28 244.258 242.203 221.558 220.222 220.873 221.326 221.26 220.772 219.24 217.638 216.784 216.026 217.099 221.866 229.075 237.229 244.15 249.97 256.557 265.027 270.928 272.615 272.979 273.347 273.921 274.706 275.539 276.365 277.402 278.473 279.681 281.147 282.427 283.548 284.598 285.363 286.066 287.179 288.461 289.712 291.129 292.474 293.728 294.942 296.66 298.288 300.116 300.71 302.236 300.671 301.464 302.184 302.011 301.607 301.301 301.174 301.011 300.838 300.909 300.935 300.848 300.801 300.589 299.248 298.4 297.68 297.388 297.351 298.384 299.125 299.613 299.907 300.109 299.968 299.821 299.808 299.63 299.236 298.786 298.16 297.222 295.692 294.012 291.009 288.124 285.595 283.267 281.192 279.793 279.201 278.919 278.086 276.871 275.06 272.357 268.888 265.349 264.75 264.055 262.872 261.998 260.146 258.968 258.567 257.146 255.288 254.012 253.789 253.599 253.78 252.819 252.466 251.739 251.242 250.358 250.376 250.282 249.922 250.5 251.982 252.635 252.626 252.095 251.095 250.007 248.509 246.971 245.278 244.148 242.158 221.67 220.495 221.261 221.642 221.652 221.012 219.497 217.861 216.843 215.902 216.908 221.775 229.282 237.475 244.357 250.278 257.633 265.814 271.165 272.68 273.005 273.376 273.993 274.81 275.655 276.559 277.664 278.713 279.837 281.258 282.507 283.545 284.493 285.203 285.938 287.14 288.471 289.726 290.964 292.511 293.707 295.75 296.609 297.047 297.613 298.566 299.903 300.602 301.175 302.063 302.124 301.692 301.362 301.2 300.971 300.786 300.922 301.096 301.011 300.874 300.687 300.002 299.538 298.163 297.502 297.182 297.217 297.787 299.156 299.97 300.22 300.068 299.917 299.898 299.79 299.481 299.038 298.471 297.74 296.598 294.658 291.799 288.759 286.146 283.651 281.438 279.779 279.291 279.228 278.6 277.667 276.043 273.756 269.992 266.098 265.015 264.047 262.526 261.532 260.147 259.21 258.324 256.868 254.913 253.424 253.301 253.574 253.72 253.092 252.134 251.031 250.376 249.858 249.736 249.784 249.604 250.448 252.022 252.373 252.309 251.818 250.877 249.776 248.383 246.992 245.264 244.058 242.107 221.777 220.76 221.616 222.172 222.053 221.315 219.757 218.111 216.937 215.894 216.816 221.777 229.311 237.561 244.442 250.509 257.819 266.465 271.369 272.717 273.032 273.429 274.054 274.889 275.782 276.762 277.921 278.96 280.005 281.372 282.591 283.532 284.351 285.04 285.862 287.156 288.537 289.826 290.984 292.512 293.909 295.144 295.849 296.219 296.485 297.476 300.249 301.453 302.29 301.888 302.18 301.834 301.512 301.297 301.031 300.867 300.995 300.833 301.106 300.875 300.461 299.956 299.671 299.535 299.1 299.088 299.221 298.364 299.76 300.246 300.335 300.114 299.994 300.001 299.931 299.665 299.214 298.644 298.032 297.073 295.244 292.68 289.344 286.497 284.137 281.97 280.332 279.576 279.174 278.431 277.42 276.399 274.489 271.093 267.031 265.656 264.288 262.568 261.125 260.136 259.062 258.241 256.238 254.433 252.95 253.316 253.778 253.852 253.091 251.637 250.476 249.799 249.411 249.063 249.32 249.291 250.714 251.974 252.077 251.968 251.54 250.587 249.559 248.326 246.961 245.189 244.011 242.042 221.902 220.955 221.994 222.597 222.501 221.656 220.07 218.416 217.096 215.986 216.886 221.685 229.144 237.374 244.339 250.547 258.896 266.795 271.463 272.708 273.06 273.488 274.09 274.939 275.899 276.915 278.089 279.139 280.166 281.493 282.662 283.512 284.251 284.965 285.865 287.179 288.581 289.942 291.24 292.355 293.466 294.174 295.185 295.997 296.907 297.774 299.986 301.367 302.556 301.689 302.319 302.116 301.77 301.422 301.158 301.052 301.008 300.846 301.115 300.755 299.633 298.56 298.623 299.26 299.665 299.907 300.073 300.076 300.491 300.762 300.643 300.294 300.08 299.945 299.767 299.466 299.038 298.574 298.098 297.209 295.375 292.924 289.778 286.717 284.131 282.071 280.58 279.462 278.463 277.606 276.436 275.683 274.479 271.689 268.166 266.89 265.057 262.34 260.689 259.821 258.896 257.868 256.142 254.329 252.906 253.478 254.04 253.761 252.58 251.28 249.958 249.358 248.833 248.612 248.653 249.108 251.023 251.795 251.743 251.615 251.185 250.303 249.356 248.234 246.816 245.106 243.949 241.962 221.986 221.236 222.392 223.143 222.957 222.009 220.421 218.729 217.32 216.155 217.076 221.715 228.9 237.031 244.052 250.412 258.592 266.821 271.474 272.685 273.085 273.544 274.124 274.985 275.997 277.02 278.177 279.255 280.3 281.583 282.684 283.472 284.182 284.941 285.895 287.19 288.561 289.914 291.231 292.375 293.421 293.781 294.947 295.751 296.762 297.545 299.306 300.612 302.095 301.491 302.261 302.286 302.038 301.608 301.282 301.157 300.985 300.691 301.006 300.712 299.335 297.653 297.28 298.808 299.304 300.002 300.364 300.623 300.914 301.07 300.819 300.388 300.081 299.849 299.42 298.66 298.748 298.382 297.957 297.178 295.462 293.08 290.145 287.112 284.332 282.2 280.599 279.129 278.225 277.272 275.848 275.343 274.141 271.784 269.146 267.982 265.886 263.015 260.717 259.575 258.995 257.781 256.078 254.346 253.082 253.618 254.148 253.467 252.07 250.61 249.637 249.021 248.593 248.225 248.024 248.859 251.016 251.525 251.393 251.274 250.796 250.037 249.121 248.029 246.669 245.033 243.896 241.883 222.092 221.579 222.797 223.624 223.482 222.415 220.773 219.064 217.601 216.446 217.386 221.665 228.52 236.424 243.613 250.057 257.895 266.659 271.433 272.666 273.106 273.593 274.168 275.038 276.078 277.079 278.196 279.307 280.382 281.612 282.642 283.41 284.143 284.948 285.937 287.198 288.494 289.764 291.022 292.153 292.886 293.638 294.632 295.569 296.446 298.149 299.28 300.674 302.04 301.359 301.684 301.724 302.22 301.847 301.432 301.192 301.015 300.79 300.834 300.753 300.059 299.221 298.854 298.952 299.028 299.923 300.388 300.714 300.962 301.105 300.564 300.512 299.946 299.445 298.657 298.428 298.291 298.049 297.62 297.021 296.128 294.903 292.172 288.77 285.513 282.825 280.981 279.522 278.651 277.56 276.308 275.419 273.865 271.622 269.278 268.948 266.316 262.768 260.888 259.666 258.507 257.288 256.171 254.473 253.29 253.537 253.707 252.867 251.441 250.073 249.384 248.805 248.419 247.945 247.573 248.663 250.705 251.233 251.058 250.906 250.441 249.764 248.872 247.802 246.516 244.915 243.863 241.84 222.202 221.792 223.219 224.165 224.032 222.887 221.194 219.428 217.935 216.856 217.836 221.869 228.063 235.739 243.112 249.565 257.35 266.322 271.351 272.665 273.116 273.633 274.23 275.111 276.146 277.091 278.142 279.274 280.376 281.553 282.532 283.329 284.129 284.977 285.985 287.196 288.406 289.565 290.66 291.596 292.406 293.525 294.343 295.173 296.353 297.686 299.589 301.167 301.852 301.376 301.659 301.127 301.657 301.935 301.586 301.246 300.953 300.63 300.687 300.738 300.625 300.292 299.972 299.761 299.436 300.079 300.392 300.548 300.637 300.617 299.836 299.678 299.2 299.257 298.747 298.459 298.217 297.813 297.184 296.669 296.319 295.683 294.02 291.327 287.815 284.708 282.364 280.79 279.501 277.973 276.52 274.863 273.104 270.036 268.905 268.767 266.214 262.371 260.659 259.701 258.378 257.12 256.339 254.723 253.164 253.222 253.287 252.376 250.962 249.975 249.365 248.867 248.16 247.763 247.391 248.349 250.403 250.958 250.746 250.556 250.083 249.487 248.653 247.651 246.307 244.836 243.838 241.778 222.325 222.123 223.656 224.718 224.623 223.41 221.643 219.831 218.33 217.373 218.404 222.041 227.555 235.0 242.542 249.012 257.247 265.875 271.24 272.681 273.109 273.645 274.288 275.176 276.18 277.067 278.061 279.195 280.32 281.471 282.43 283.264 284.119 285.0 286.016 287.166 288.311 289.427 290.444 291.452 292.184 293.126 294.087 294.796 296.302 297.984 299.655 301.221 301.848 301.24 301.77 303.095 300.671 301.388 301.586 301.301 301.01 300.178 300.793 300.701 300.553 300.371 300.16 299.975 299.991 300.19 300.309 300.221 299.959 299.175 298.996 299.352 299.456 298.755 298.99 298.699 298.318 297.741 297.034 296.456 296.102 295.704 294.613 292.601 289.725 286.762 284.191 282.232 280.177 278.014 276.154 274.339 271.875 268.463 267.544 267.873 265.785 262.426 261.065 259.806 258.132 257.213 256.213 254.258 252.869 252.702 252.85 252.049 250.687 249.882 249.521 248.781 247.896 247.445 247.291 247.949 250.181 250.669 250.44 250.223 249.696 249.217 248.474 247.518 246.093 244.694 243.818 241.694 222.421 222.404 224.103 225.279 225.254 223.975 222.136 220.272 218.725 217.908 219.023 222.336 227.093 234.256 241.914 248.457 257.39 265.378 271.07 272.684 273.092 273.638 274.334 275.219 276.191 277.04 277.997 279.14 280.29 281.424 282.366 283.216 284.1 285.023 286.044 287.119 288.188 289.285 290.242 291.14 291.83 292.777 293.648 294.369 295.694 297.413 299.121 300.38 301.307 301.593 302.251 302.253 300.912 300.438 301.582 301.369 301.159 300.692 301.014 300.755 300.477 300.09 300.249 300.06 300.029 300.226 300.327 300.157 299.811 299.273 299.14 299.354 299.396 299.262 299.091 298.81 298.382 297.83 297.106 296.272 295.738 295.42 294.792 293.415 291.124 288.507 286.07 283.629 280.844 277.477 275.399 273.547 270.718 266.755 265.231 266.047 263.766 262.217 260.819 259.479 257.511 256.541 255.698 253.856 252.215 252.065 252.484 252.016 250.861 249.881 249.311 248.379 247.537 247.058 247.062 247.683 249.894 250.324 250.124 249.902 249.294 248.938 248.265 247.21 245.877 244.611 243.803 241.579 222.533 222.644 224.554 225.87 225.907 224.595 222.681 220.726 219.12 218.462 219.76 222.573 226.689 233.497 241.303 247.846 257.016 264.725 270.803 272.652 273.068 273.624 274.372 275.247 276.189 277.022 277.962 279.116 280.278 281.397 282.324 283.175 284.084 285.053 286.081 287.08 288.075 289.149 290.043 290.843 291.653 292.481 293.346 293.802 294.898 296.674 298.408 299.828 301.285 301.893 302.114 302.51 301.992 301.172 301.823 301.453 301.232 301.191 301.183 300.837 300.49 300.1 300.415 300.189 299.718 300.281 300.478 300.4 300.07 299.721 299.543 299.556 299.477 299.263 299.063 298.77 298.337 297.826 297.146 296.186 295.341 294.969 294.707 293.905 292.161 289.711 287.173 284.626 281.719 277.706 275.433 273.81 271.065 266.538 265.024 264.346 263.776 262.391 260.761 259.225 257.348 256.163 255.091 253.383 251.8 251.805 252.27 251.837 250.865 250.093 248.871 247.946 247.183 246.821 246.964 247.623 249.615 249.915 249.728 249.541 248.916 248.556 248.031 246.984 245.615 244.491 243.748 241.511 222.638 222.953 225.035 226.462 226.594 225.248 223.265 221.227 219.508 219.008 220.453 222.928 226.392 232.884 240.779 247.293 256.694 263.631 270.306 272.541 273.034 273.621 274.417 275.275 276.19 277.019 277.942 279.075 280.228 281.343 282.266 283.129 284.077 285.084 286.112 287.072 288.04 289.076 289.871 290.59 291.503 292.383 293.219 293.4 294.375 295.801 297.565 299.357 300.922 301.527 301.875 302.956 302.451 301.171 301.803 301.428 301.256 301.247 301.153 300.872 300.609 300.004 300.469 300.255 300.168 300.391 300.592 300.606 300.462 300.168 299.884 299.743 299.562 299.294 299.049 298.722 298.275 297.761 297.108 296.143 295.132 294.49 294.29 293.932 292.697 290.323 287.3 284.57 282.483 280.249 277.439 275.875 273.456 269.425 265.794 263.946 263.353 262.51 260.977 259.211 257.119 256.105 254.904 252.995 251.515 251.636 251.932 251.584 250.792 249.973 248.694 247.707 246.988 246.779 246.811 247.424 249.549 249.459 249.336 249.08 248.564 248.192 247.848 246.639 245.353 244.379 243.705 241.488 222.781 223.239 225.427 227.074 227.3 225.948 223.88 221.743 219.91 219.53 221.055 223.27 226.224 232.391 240.367 246.801 254.649 262.461 269.599 272.349 272.995 273.635 274.458 275.298 276.193 277.008 277.887 278.966 280.102 281.227 282.177 283.092 284.087 285.085 286.104 287.084 288.084 289.07 289.763 290.413 291.328 292.162 293.059 293.28 293.938 294.975 296.62 298.386 300.16 301.143 301.882 303.084 302.49 301.052 300.288 300.591 301.181 301.155 301.051 300.915 300.703 299.994 300.01 299.821 300.23 300.583 300.658 300.574 300.483 300.26 299.96 299.727 299.498 299.237 299.021 298.739 298.28 297.704 297.041 296.131 295.08 294.262 293.9 293.698 292.82 290.592 286.6 283.007 282.133 281.25 279.581 277.321 274.817 271.97 268.494 264.3 262.813 261.725 261.395 259.718 257.522 256.122 254.742 252.694 251.447 251.547 251.626 251.436 250.563 250.004 248.726 247.543 246.852 246.764 246.874 247.695 249.122 248.971 248.96 248.685 248.257 247.942 247.569 246.401 245.137 244.191 243.655 241.455 222.85 223.528 225.967 227.689 228.05 226.683 224.544 222.302 220.367 220.031 221.626 223.703 226.23 232.148 240.107 246.455 254.033 261.711 268.731 272.111 272.957 273.652 274.479 275.302 276.181 276.966 277.789 278.816 279.94 281.083 282.085 283.079 284.116 285.096 286.109 287.124 288.14 289.062 289.69 290.276 291.174 291.968 292.887 293.585 294.116 294.994 296.153 297.586 299.374 301.043 301.907 302.458 302.65 301.313 300.083 299.865 301.065 301.004 300.939 300.885 300.564 299.918 298.89 298.998 300.235 300.718 300.74 300.572 300.449 300.263 299.984 299.717 299.443 299.163 298.97 298.747 298.293 297.668 296.979 296.107 295.058 294.141 293.655 293.516 292.977 291.123 287.886 284.046 281.168 281.404 280.468 278.328 275.944 273.315 270.036 264.31 262.29 261.51 261.216 259.505 257.281 255.88 254.587 252.428 251.494 251.472 251.396 251.044 250.385 249.784 248.524 247.423 246.83 246.847 246.847 247.567 248.543 248.466 248.58 248.34 247.971 247.734 247.264 246.188 244.916 244.117 243.584 241.453 223.002 223.831 226.454 228.379 228.797 227.421 225.264 222.933 220.872 220.526 222.133 224.054 226.342 232.072 239.961 246.306 253.421 261.176 267.753 271.839 272.913 273.66 274.475 275.282 276.144 276.892 277.661 278.649 279.761 280.925 282.001 283.094 284.175 285.153 286.178 287.209 288.195 289.055 289.656 290.211 291.053 291.81 293.238 294.098 294.775 295.588 296.301 297.284 298.848 300.96 302.08 303.041 302.55 301.876 300.624 300.25 300.965 300.858 300.852 300.744 300.12 298.726 297.769 299.064 300.265 300.72 300.748 300.589 300.423 300.229 299.982 299.729 299.429 299.123 298.926 298.734 298.304 297.662 296.953 296.076 295.005 294.025 293.474 293.35 293.102 291.798 289.099 285.642 281.25 281.101 280.644 278.757 276.504 274.076 270.938 264.757 262.327 261.508 260.431 259.359 257.238 255.484 254.412 252.845 251.874 251.591 251.171 250.611 250.166 249.37 248.145 247.042 246.722 246.848 246.752 247.12 248.013 247.942 248.18 248.053 247.688 247.516 247.097 245.866 244.792 244.053 243.573 241.464 223.087 224.101 226.914 228.983 229.557 228.235 226.021 223.603 221.447 221.088 222.615 224.426 226.641 232.204 239.873 246.156 251.768 259.531 266.777 271.548 272.847 273.642 274.435 275.232 276.07 276.771 277.495 278.453 279.548 280.744 281.93 283.154 284.283 285.288 286.339 287.335 288.239 289.089 289.699 290.324 291.31 292.255 293.476 295.299 296.282 297.094 296.789 297.864 298.969 301.066 302.592 302.671 301.954 300.793 300.105 300.666 301.021 300.912 300.907 300.492 299.308 297.297 298.67 299.772 300.517 300.732 300.709 300.577 300.391 300.192 299.948 299.676 299.366 299.078 298.883 298.699 298.305 297.696 296.989 296.107 295.027 294.008 293.357 293.125 292.964 292.114 289.973 286.568 281.41 280.545 280.269 278.812 276.776 274.481 271.528 266.142 262.965 261.907 260.399 258.871 257.334 255.876 254.92 253.644 252.547 251.624 250.818 250.144 249.748 249.156 247.801 246.683 246.657 246.636 246.438 246.674 247.467 247.386 247.722 247.809 247.457 247.241 246.91 245.738 244.536 244.003 243.503 241.467 223.258 224.384 227.39 229.607 230.354 229.063 226.814 224.327 222.092 221.669 223.071 224.789 227.105 232.547 239.901 246.093 252.289 258.466 266.872 271.373 272.77 273.587 274.373 275.172 275.981 276.636 277.338 278.286 279.373 280.624 281.932 283.263 284.414 285.44 286.482 287.429 288.325 289.253 289.911 290.876 291.554 292.367 293.617 294.699 295.755 296.849 297.472 298.323 299.725 301.241 302.259 301.516 300.62 300.499 300.446 300.983 301.267 301.19 301.029 300.176 298.361 296.709 298.331 299.925 300.704 300.845 300.767 300.583 300.381 300.202 299.937 299.604 299.282 299.018 298.831 298.668 298.334 297.775 297.084 296.256 295.302 294.339 293.548 293.105 292.809 292.063 290.276 287.105 282.435 279.535 279.676 278.7 277.053 274.996 272.283 268.591 263.861 262.069 260.622 258.672 257.683 256.542 255.578 254.053 253.194 251.825 250.428 249.655 249.231 248.793 247.401 246.513 246.482 246.446 246.054 246.135 246.706 246.504 247.288 247.586 247.26 247.066 246.611 245.472 244.452 243.954 243.389 241.468 223.253 224.677 227.853 230.303 231.146 229.92 227.632 225.096 222.807 222.348 223.55 225.169 227.675 233.022 240.083 246.134 253.53 260.257 267.593 271.32 272.695 273.522 274.313 275.114 275.881 276.493 277.188 278.161 279.281 280.606 282.029 283.403 284.541 285.573 286.602 287.574 288.547 289.572 290.154 291.146 292.159 292.397 294.372 294.814 296.197 297.406 298.007 299.013 301.298 301.786 301.742 300.615 301.346 301.685 301.421 301.417 301.439 301.298 300.456 299.674 297.108 296.161 297.777 299.903 300.7 300.877 300.807 300.587 300.369 300.185 299.901 299.556 299.251 298.98 298.777 298.645 298.383 297.883 297.201 296.41 295.589 294.738 293.843 293.197 292.76 292.054 290.548 287.719 283.99 279.166 278.684 278.412 277.214 275.546 273.108 269.537 265.292 262.734 260.644 259.387 258.456 257.284 255.982 254.145 254.61 252.314 250.628 249.235 248.733 247.837 246.66 246.167 245.99 246.087 245.694 245.489 245.963 245.845 247.056 247.348 247.076 246.919 246.485 245.275 244.206 243.84 243.385 241.468 223.396 224.96 228.254 230.94 231.933 230.825 228.499 225.956 223.67 223.208 224.087 225.572 228.315 233.61 240.327 246.38 254.525 261.402 268.156 271.35 272.626 273.453 274.253 275.048 275.764 276.335 277.044 278.095 279.305 280.719 282.217 283.558 284.677 285.712 286.783 287.844 288.939 289.964 290.34 291.134 291.703 292.503 294.057 294.779 297.143 298.595 299.267 300.33 301.081 301.75 300.522 300.804 302.122 301.794 301.377 301.371 301.511 301.238 299.305 298.221 296.443 296.171 298.419 300.043 300.691 300.842 300.787 300.582 300.369 300.144 299.818 299.496 299.226 298.937 298.715 298.614 298.413 297.978 297.314 296.511 295.742 294.993 294.071 293.261 292.711 292.046 290.805 288.436 284.889 280.438 277.813 277.521 277.108 275.77 273.64 270.333 265.695 263.801 261.529 259.884 258.869 257.639 256.688 254.75 255.283 253.182 251.065 248.861 247.693 246.723 246.065 245.812 245.758 245.587 245.055 245.102 245.135 245.348 246.811 247.047 246.859 246.786 246.363 245.133 244.16 243.84 243.386 241.468 223.516 225.284 228.725 231.552 232.726 231.762 229.418 226.826 224.598 224.049 224.692 226.086 229.053 234.224 240.691 246.726 255.323 262.251 268.571 271.424 272.565 273.385 274.181 274.938 275.587 276.138 276.91 278.115 279.486 281.02 282.492 283.751 284.885 285.99 287.166 288.362 289.423 289.893 290.361 291.021 291.385 291.996 292.943 294.343 296.775 298.41 299.489 300.946 302.363 302.463 301.186 301.332 301.986 301.593 301.251 301.43 301.603 301.028 298.501 296.931 296.245 296.581 299.289 300.43 300.776 300.8 300.732 300.589 300.41 300.132 299.75 299.426 299.16 298.866 298.666 298.587 298.403 298.023 297.412 296.564 295.729 295.027 294.177 293.259 292.563 291.906 290.894 289.06 286.039 282.128 278.869 277.215 275.914 275.284 272.928 270.445 265.887 262.883 260.311 258.198 258.385 258.167 256.107 255.337 255.584 254.77 251.95 248.75 246.614 245.686 245.444 245.661 245.713 245.208 244.398 244.716 244.804 244.834 246.551 246.754 246.69 246.656 246.119 244.844 244.019 243.661 243.187 241.313 223.622 225.456 229.145 232.182 233.485 232.717 230.408 227.735 225.632 225.034 225.418 226.714 229.786 234.965 241.189 247.317 256.148 263.081 268.917 271.49 272.529 273.331 274.083 274.769 275.354 275.932 276.816 278.194 279.736 281.355 282.752 283.979 285.187 286.403 287.66 288.857 289.503 290.046 290.076 290.737 290.975 291.946 292.468 293.37 296.218 298.232 299.303 301.616 302.535 302.204 300.725 300.451 300.228 299.977 300.388 301.09 301.535 300.032 297.685 296.138 295.881 297.553 299.715 300.554 300.745 300.743 300.687 300.578 300.4 300.113 299.734 299.399 299.106 298.823 298.66 298.585 298.386 298.029 297.478 296.613 295.671 294.943 294.207 293.314 292.489 291.769 290.86 289.417 287.132 284.434 282.003 279.789 277.109 275.699 272.533 269.134 266.061 262.475 259.7 258.187 258.755 258.485 256.456 256.216 256.655 255.836 253.108 249.028 245.733 244.926 245.105 245.852 245.538 244.843 243.859 244.292 244.505 244.478 246.358 246.636 246.637 246.606 246.053 244.806 244.006 243.65 243.175 241.305 223.811 225.832 229.634 232.781 234.29 233.699 231.45 228.808 226.699 226.065 226.278 227.421 230.641 235.781 241.842 248.151 257.057 263.906 269.197 271.534 272.507 273.277 273.955 274.558 275.118 275.769 276.779 278.298 279.972 281.637 283.004 284.273 285.597 286.865 288.107 289.134 289.195 288.983 289.632 290.559 290.734 291.168 291.947 293.216 295.276 297.103 299.81 301.439 302.015 300.83 299.624 299.532 299.731 299.623 300.438 300.906 301.392 299.824 297.222 295.577 295.833 298.397 300.016 300.593 300.697 300.703 300.672 300.576 300.36 300.049 299.693 299.363 299.057 298.792 298.632 298.554 298.377 298.036 297.5 296.631 295.611 294.804 294.128 293.321 292.462 291.703 290.858 289.652 287.903 285.809 283.647 281.249 278.697 276.12 273.052 268.827 266.631 265.109 263.686 262.174 260.963 259.42 257.328 256.983 257.528 256.953 254.18 249.225 245.492 244.086 244.859 245.794 245.596 244.648 243.574 243.856 244.886 244.773 246.764 246.577 246.627 246.562 245.991 244.757 243.929 243.534 243.168 241.305 223.922 226.044 230.004 233.385 235.055 234.738 232.588 229.952 227.876 227.194 227.119 228.22 231.599 236.704 242.623 249.254 258.34 264.742 269.428 271.559 272.497 273.211 273.798 274.33 274.923 275.705 276.837 278.457 280.202 281.874 283.273 284.664 286.128 287.327 288.11 289.212 288.789 288.398 288.794 289.97 290.307 290.777 291.745 293.009 294.505 295.683 298.348 299.66 299.248 299.321 299.157 298.39 298.779 299.741 300.829 301.305 301.352 300.138 297.176 295.456 296.361 299.246 300.336 300.646 300.67 300.671 300.666 300.589 300.344 300.004 299.657 299.318 299.015 298.768 298.581 298.496 298.375 298.047 297.479 296.606 295.552 294.652 293.969 293.237 292.401 291.63 290.825 289.746 288.277 286.543 284.617 282.269 279.61 276.764 273.57 269.658 266.667 265.384 264.087 262.622 261.275 259.666 257.976 257.787 257.871 257.316 254.967 249.398 245.425 244.1 244.851 245.835 245.714 244.425 243.283 243.736 244.677 244.665 246.718 246.527 246.651 246.517 245.921 244.701 243.909 243.419 242.974 241.304 224.006 226.334 230.448 233.908 235.846 235.778 233.816 231.131 229.12 228.371 228.032 229.078 232.6 237.644 243.533 251.899 259.498 265.631 269.626 271.574 272.509 273.145 273.642 274.139 274.842 275.812 277.085 278.749 280.481 282.129 283.604 285.205 286.472 286.389 287.75 289.288 288.72 287.77 288.211 289.222 289.784 290.645 292.072 293.275 293.37 294.149 295.785 296.873 297.997 298.787 298.918 298.94 299.662 300.151 300.632 300.903 300.779 299.512 296.891 296.179 298.535 299.988 300.57 300.626 300.615 300.607 300.619 300.559 300.321 299.995 299.662 299.289 298.983 298.753 298.538 298.442 298.373 298.055 297.432 296.557 295.512 294.566 293.842 293.134 292.321 291.528 290.7 289.641 288.256 286.651 284.852 282.632 280.136 277.338 273.604 269.651 266.5 264.993 263.521 262.161 260.68 259.271 258.573 258.596 258.129 257.382 254.97 249.695 245.892 244.444 245.097 245.93 245.681 244.252 243.202 243.673 244.391 244.57 246.464 246.476 246.71 246.56 245.877 244.658 243.82 243.36 242.836 241.295 224.042 226.614 230.921 234.524 236.603 236.832 235.059 232.395 230.416 229.559 228.992 229.971 233.554 238.594 244.533 254.066 261.028 266.399 269.778 271.59 272.544 273.136 273.589 274.098 274.931 276.058 277.464 279.11 280.774 282.386 283.895 285.665 287.118 287.451 288.247 289.632 289.624 287.637 287.885 288.562 289.628 290.6 291.755 292.791 293.082 293.732 294.762 296.466 297.579 298.589 299.472 299.53 299.723 300.256 300.664 300.713 300.343 298.471 298.209 297.772 299.642 300.481 300.629 300.586 300.612 300.626 300.63 300.527 300.252 299.952 299.657 299.274 298.94 298.711 298.508 298.398 298.321 298.03 297.442 296.584 295.51 294.526 293.767 293.071 292.294 291.506 290.598 289.458 288.071 286.515 284.748 282.611 280.328 277.742 274.074 269.454 266.058 264.441 262.899 261.814 260.382 259.445 259.384 259.175 258.383 257.316 254.884 249.916 246.571 245.024 245.416 246.278 245.931 244.076 243.083 243.88 244.36 244.612 246.235 246.464 246.82 246.614 245.82 244.604 243.787 243.167 242.802 241.227 224.227 226.889 231.238 235.071 237.35 237.883 236.302 233.72 231.767 230.731 229.986 230.85 234.513 239.483 245.506 255.641 262.311 267.079 269.909 271.608 272.583 273.158 273.614 274.156 275.097 276.343 277.833 279.445 281.041 282.604 284.105 285.931 287.552 288.368 289.122 290.114 290.397 288.583 288.105 288.899 289.429 290.112 291.311 292.458 293.379 294.063 294.985 296.674 297.704 298.845 299.417 299.519 299.88 300.438 300.767 300.717 299.99 299.491 299.618 298.942 300.342 300.715 300.68 300.609 300.606 300.63 300.656 300.533 300.228 299.926 299.647 299.27 298.912 298.665 298.477 298.358 298.239 297.971 297.47 296.643 295.528 294.492 293.683 292.976 292.244 291.516 290.571 289.343 287.954 286.436 284.681 282.602 280.445 277.953 274.489 269.541 265.724 264.248 262.921 261.814 260.722 260.329 260.31 260.028 259.208 257.488 254.922 250.299 247.296 245.691 245.63 246.533 245.758 243.881 243.086 243.962 244.394 244.77 246.104 246.605 246.958 246.652 245.716 244.56 243.724 243.118 242.665 241.172 224.303 227.246 231.67 235.63 238.133 238.889 237.55 235.114 233.183 231.992 231.028 231.724 235.407 240.3 247.062 256.405 263.477 267.688 270.031 271.621 272.605 273.197 273.692 274.27 275.28 276.611 278.144 279.718 281.264 282.776 284.253 285.99 287.583 288.625 289.619 290.609 291.197 291.22 290.615 289.873 289.762 290.164 290.96 292.341 293.496 294.62 295.725 296.873 298.361 299.037 299.347 299.601 300.053 300.55 300.818 300.809 300.583 300.569 300.463 299.86 300.618 300.73 300.705 300.616 300.526 300.548 300.621 300.524 300.238 299.926 299.63 299.273 298.916 298.638 298.442 298.327 298.169 297.895 297.467 296.676 295.546 294.484 293.633 292.886 292.167 291.501 290.557 289.285 287.902 286.407 284.657 282.631 280.529 278.031 274.569 269.903 265.922 264.381 263.354 262.258 261.388 261.122 260.902 260.75 259.985 257.721 254.936 250.611 248.151 246.354 246.096 246.28 245.579 243.852 243.263 243.855 244.509 245.438 246.137 246.736 247.027 246.668 245.594 244.488 243.693 243.128 242.541 241.141 224.368 227.442 232.089 236.21 238.879 239.911 238.83 236.52 234.66 233.349 232.102 232.617 236.226 241.057 248.126 257.663 264.578 268.239 270.162 271.637 272.623 273.273 273.819 274.421 275.461 276.843 278.383 279.915 281.43 282.931 284.37 285.923 287.378 288.517 289.642 290.832 291.875 292.542 292.843 292.952 292.202 291.043 291.4 292.617 294.219 295.42 296.821 298.074 298.716 299.192 299.469 299.728 300.15 300.551 300.79 300.883 300.906 300.898 300.812 300.608 300.157 300.581 300.623 300.541 300.431 300.471 300.545 300.462 300.227 299.918 299.581 299.254 298.937 298.617 298.376 298.277 298.117 297.826 297.418 296.651 295.541 294.492 293.623 292.856 292.107 291.45 290.534 289.287 287.924 286.428 284.673 282.683 280.572 277.971 274.392 270.366 266.549 264.878 263.989 263.133 262.375 261.777 261.216 261.1 260.573 257.976 254.728 250.823 248.787 247.131 246.459 246.275 245.153 243.617 243.274 243.97 244.719 245.993 246.383 246.932 247.052 246.653 245.478 244.435 243.66 243.108 242.452 241.119 224.511 227.793 232.483 236.751 239.626 240.928 240.089 237.955 236.186 234.806 233.26 233.549 236.96 241.758 248.902 258.602 265.317 268.609 270.282 271.674 272.662 273.37 273.951 274.559 275.597 276.995 278.526 280.034 281.526 283.058 284.475 285.894 287.181 288.284 289.438 290.667 291.938 293.047 293.737 294.127 294.154 293.59 293.725 294.595 295.752 296.67 297.784 298.359 298.883 299.307 299.553 299.804 300.221 300.61 300.819 300.917 300.943 300.917 300.842 300.698 300.572 300.515 300.49 300.442 300.43 300.501 300.522 300.413 300.211 299.911 299.548 299.23 298.939 298.588 298.295 298.184 298.044 297.774 297.384 296.645 295.525 294.414 293.503 292.791 292.066 291.396 290.525 289.362 288.052 286.559 284.811 282.836 280.636 277.756 274.197 270.87 267.559 265.785 265.005 264.267 263.39 262.197 261.294 261.13 260.834 257.918 254.268 251.312 249.617 247.753 246.589 246.276 245.147 243.574 243.397 243.934 244.921 245.892 246.562 247.082 247.063 246.58 245.389 244.411 243.641 243.016 242.387 241.099 224.646 227.891 232.916 237.329 240.361 241.881 241.316 239.393 237.724 236.34 234.492 234.45 237.678 242.316 250.715 259.288 265.841 268.884 270.408 271.744 272.725 273.468 274.073 274.683 275.721 277.125 278.659 280.155 281.632 283.171 284.555 285.899 287.09 288.153 289.32 290.499 291.724 292.979 293.901 294.576 294.972 295.154 295.414 295.971 296.703 297.423 297.994 298.432 298.934 299.361 299.64 299.964 300.433 300.789 300.912 300.975 301.033 301.015 300.932 300.832 300.695 300.554 300.436 300.381 300.402 300.469 300.475 300.382 300.193 299.901 299.543 299.217 298.916 298.554 298.241 298.102 297.959 297.71 297.343 296.645 295.528 294.338 293.354 292.672 291.979 291.3 290.491 289.417 288.144 286.671 284.961 283.001 280.683 277.577 274.219 271.38 268.906 267.382 266.678 265.634 264.166 262.565 261.241 261.038 260.977 258.168 254.781 252.073 249.969 248.066 246.809 246.321 245.217 243.593 243.353 243.841 245.025 245.834 246.696 247.209 247.103 246.494 245.314 244.486 243.591 242.914 242.345 241.077 224.763 228.269 233.292 237.8 241.086 242.805 242.526 240.797 239.301 237.971 235.925 235.489 238.31 242.788 252.342 259.929 266.251 269.108 270.552 271.837 272.797 273.561 274.185 274.803 275.856 277.278 278.824 280.312 281.783 283.279 284.603 285.892 287.056 288.128 289.316 290.441 291.518 292.691 293.697 294.549 295.172 295.534 295.826 296.245 296.784 297.407 297.973 298.468 299.008 299.456 299.795 300.197 300.701 301.001 301.032 301.056 301.131 301.129 301.029 300.951 300.825 300.634 300.456 300.369 300.364 300.415 300.443 300.378 300.164 299.863 299.53 299.196 298.861 298.502 298.194 298.032 297.881 297.638 297.272 296.612 295.545 294.34 293.293 292.586 291.872 291.165 290.421 289.431 288.178 286.719 285.053 283.099 280.667 277.461 274.375 271.885 269.968 268.698 267.856 266.716 264.71 262.736 261.01 259.803 260.405 258.676 255.343 252.937 250.23 248.294 247.088 246.475 245.508 243.802 243.455 243.829 245.076 245.934 246.873 247.326 247.128 246.435 245.236 244.436 243.515 242.822 242.292 241.06 224.884 228.476 233.712 238.403 241.844 243.661 243.612 242.149 240.864 239.673 237.53 236.707 239.009 243.375 253.25 260.605 266.65 269.331 270.736 271.962 272.879 273.655 274.29 274.927 276.031 277.49 279.05 280.546 282.005 283.394 284.622 285.881 287.07 288.198 289.425 290.522 291.451 292.44 293.409 294.324 295.006 295.396 295.703 296.151 296.735 297.402 298.052 298.633 299.141 299.568 299.939 300.363 300.824 301.09 301.162 301.219 301.25 301.195 301.071 300.975 300.853 300.631 300.421 300.327 300.347 300.437 300.489 300.407 300.135 299.807 299.499 299.168 298.804 298.439 298.128 297.94 297.803 297.571 297.184 296.539 295.544 294.388 293.326 292.557 291.777 291.023 290.332 289.418 288.189 286.736 285.09 283.116 280.568 277.361 274.597 272.411 270.776 269.682 268.811 267.544 265.465 262.821 260.473 258.917 258.52 257.798 256.12 253.873 250.786 248.577 247.294 246.755 245.931 244.073 243.701 243.707 245.097 246.068 247.012 247.446 247.165 246.405 245.188 244.368 243.447 242.78 242.226 241.045 225.017 228.782 234.114 238.857 242.639 244.473 244.521 243.413 242.408 241.467 239.253 238.007 239.883 244.142 254.03 261.198 267.011 269.549 270.931 272.09 272.96 273.732 274.368 275.049 276.232 277.729 279.279 280.782 282.207 283.485 284.644 285.918 287.168 288.342 289.588 290.641 291.491 292.349 293.225 294.118 294.82 295.24 295.618 296.178 296.852 297.524 298.136 298.684 299.165 299.563 299.941 300.346 300.729 301.003 301.195 301.335 301.351 301.278 301.155 301.002 300.818 300.552 300.296 300.208 300.305 300.441 300.477 300.38 300.128 299.8 299.469 299.139 298.793 298.433 298.089 297.853 297.716 297.506 297.13 296.494 295.499 294.328 293.247 292.455 291.656 290.897 290.232 289.391 288.231 286.795 285.133 283.107 280.4 277.313 274.846 272.911 271.406 270.387 269.608 268.47 266.441 264.424 261.373 258.699 257.711 256.85 256.428 254.661 251.321 248.696 247.53 247.106 246.244 244.518 243.925 243.673 245.13 246.202 247.107 247.542 247.203 246.428 245.189 244.377 243.452 242.782 242.176 241.029 225.102 228.948 234.469 239.496 243.306 245.192 245.416 244.537 243.905 243.243 241.034 239.442 240.885 245.919 254.703 261.816 267.329 269.755 271.12 272.215 273.044 273.811 274.45 275.201 276.482 277.992 279.498 280.983 282.357 283.567 284.71 286.008 287.305 288.519 289.74 290.749 291.568 292.367 293.142 293.963 294.662 295.127 295.59 296.208 296.88 297.513 298.097 298.653 299.167 299.573 299.941 300.307 300.639 300.92 301.157 301.312 301.364 301.353 301.235 301.019 300.799 300.547 300.272 300.156 300.27 300.415 300.429 300.334 300.121 299.807 299.438 299.094 298.765 298.415 298.067 297.803 297.639 297.418 297.056 296.44 295.431 294.212 293.101 292.302 291.506 290.769 290.102 289.298 288.212 286.815 285.127 283.081 280.297 277.357 275.072 273.362 271.99 271.018 270.388 269.599 268.039 265.784 263.422 259.136 257.754 256.592 256.15 254.753 251.137 248.795 247.685 247.436 246.569 244.913 244.017 243.807 245.205 246.314 247.117 247.59 247.27 246.474 245.216 244.409 243.451 242.809 242.133 241.012 225.134 229.22 234.877 239.989 244.066 245.955 246.186 245.521 245.272 244.953 242.807 240.968 241.977 247.607 255.368 262.463 267.619 269.946 271.296 272.333 273.133 273.904 274.564 275.417 276.793 278.277 279.715 281.143 282.459 283.654 284.832 286.159 287.483 288.718 289.889 290.853 291.669 292.456 293.144 293.863 294.52 295.014 295.534 296.163 296.835 297.473 298.068 298.665 299.229 299.648 299.953 300.251 300.585 300.895 301.12 301.231 301.303 301.357 301.22 300.955 300.756 300.556 300.279 300.119 300.234 300.395 300.412 300.309 300.106 299.804 299.426 299.06 298.715 298.358 298.03 297.773 297.585 297.333 296.965 296.353 295.335 294.101 292.976 292.158 291.354 290.633 289.949 289.159 288.133 286.777 285.065 283.025 280.286 277.464 275.267 273.673 272.406 271.534 271.1 270.754 269.733 267.725 264.8 261.721 258.515 256.97 255.716 254.337 250.941 248.836 247.607 247.458 246.817 245.373 244.016 243.994 245.312 246.382 247.03 247.455 247.266 246.541 245.259 244.409 243.467 242.823 242.079 240.995 225.283 229.501 235.325 240.523 244.713 246.562 246.736 246.326 247.284 248.337 245.64 242.66 243.161 248.636 256.079 263.119 267.887 270.114 271.457 272.446 273.234 274.027 274.744 275.73 277.177 278.595 279.937 281.259 282.522 283.763 285.019 286.329 287.634 288.883 290.031 290.959 291.764 292.534 293.183 293.841 294.432 294.905 295.442 296.096 296.81 297.513 298.133 298.751 299.339 299.719 299.908 300.147 300.543 300.914 301.114 301.182 301.249 301.286 301.098 300.824 300.668 300.469 300.141 299.96 300.116 300.36 300.419 300.299 300.071 299.784 299.439 299.055 298.676 298.287 297.968 297.728 297.534 297.28 296.893 296.242 295.215 294.011 292.891 292.04 291.221 290.506 289.806 289.017 288.032 286.704 284.982 282.969 280.36 277.652 275.52 273.97 272.75 271.928 271.568 271.438 270.895 269.661 267.06 263.684 261.48 259.334 256.887 253.241 250.886 248.763 247.466 247.147 246.651 245.457 243.997 244.07 245.382 246.383 246.858 247.213 247.197 246.561 245.3 244.355 243.476 242.847 242.03 240.98 225.392 229.761 235.62 241.08 245.369 247.202 247.011 246.907 249.097 249.671 247.887 244.47 244.41 249.651 256.611 263.621 268.057 270.217 271.573 272.546 273.336 274.154 274.947 276.042 277.504 278.847 280.095 281.317 282.555 283.865 285.127 286.324 287.566 288.871 290.101 291.048 291.798 292.497 293.146 293.817 294.391 294.855 295.409 296.072 296.802 297.527 298.131 298.706 299.272 299.639 299.83 300.077 300.474 300.817 301.028 301.15 301.245 301.232 301.005 300.771 300.665 300.418 300.0 299.793 299.994 300.303 300.411 300.29 300.054 299.77 299.416 299.021 298.648 298.264 297.929 297.663 297.457 297.227 296.851 296.17 295.131 293.936 292.791 291.91 291.098 290.4 289.68 288.874 287.918 286.614 284.913 282.944 280.498 277.917 275.85 274.269 273.061 272.252 271.909 271.833 271.527 270.756 269.116 266.48 263.437 260.687 258.063 253.156 250.634 248.607 247.334 246.691 246.38 245.282 244.153 244.215 245.387 246.267 246.611 246.963 247.071 246.533 245.3 244.36 243.498 242.827 241.979 240.966 225.371 229.966 236.007 241.517 245.985 247.723 247.238 247.238 249.908 250.838 249.435 246.346 245.734 251.144 257.098 264.005 268.166 270.286 271.666 272.641 273.435 274.271 275.135 276.305 277.751 279.028 280.205 281.354 282.579 283.951 285.166 286.173 287.31 288.69 290.08 291.113 291.848 292.474 293.108 293.778 294.334 294.801 295.369 296.022 296.737 297.45 298.026 298.529 299.094 299.467 299.749 300.052 300.375 300.641 300.898 301.13 301.263 301.203 300.928 300.709 300.655 300.404 299.913 299.632 299.836 300.211 300.384 300.276 300.041 299.763 299.383 298.981 298.617 298.243 297.896 297.61 297.388 297.158 296.785 296.102 295.075 293.876 292.692 291.791 291.004 290.306 289.549 288.713 287.765 286.49 284.848 282.936 280.631 278.207 276.243 274.63 273.396 272.564 272.198 272.076 271.886 271.403 270.425 268.875 266.692 262.855 258.646 253.1 250.547 248.691 247.272 246.315 246.103 245.044 244.349 244.41 245.396 246.048 246.303 246.741 246.942 246.463 245.263 244.429 243.507 242.783 241.926 240.952 225.559 230.203 236.33 242.056 246.571 248.027 247.198 247.312 250.021 251.971 251.025 247.877 247.075 252.427 257.655 264.311 268.245 270.344 271.753 272.736 273.529 274.375 275.296 276.512 277.927 279.155 280.294 281.392 282.567 283.971 285.057 285.289 286.938 288.371 289.937 291.128 291.921 292.528 293.131 293.762 294.271 294.725 295.283 295.926 296.648 297.358 297.905 298.343 298.841 299.264 299.663 300.036 300.262 300.454 300.764 301.086 301.248 301.172 300.863 300.631 300.602 300.362 299.811 299.424 299.606 300.062 300.323 300.235 300.0 299.743 299.37 298.97 298.595 298.2 297.843 297.554 297.323 297.083 296.704 296.021 295.016 293.824 292.597 291.667 290.89 290.163 289.374 288.538 287.593 286.338 284.778 282.929 280.704 278.385 276.548 274.995 273.812 272.996 272.553 272.309 272.124 271.825 271.243 270.274 268.582 264.995 259.294 253.204 250.473 248.815 247.344 246.154 245.924 244.984 244.5 244.621 245.449 245.807 246.087 246.612 246.811 246.348 245.229 244.461 243.506 242.757 241.881 240.929 225.659 230.495 236.736 242.573 247.072 248.27 246.987 247.108 250.075 253.001 252.509 249.681 248.52 253.366 258.425 264.605 268.332 270.417 271.853 272.839 273.621 274.465 275.424 276.66 278.039 279.237 280.373 281.442 282.559 283.81 284.834 284.399 286.163 287.951 289.642 291.01 291.937 292.61 293.196 293.763 294.212 294.638 295.168 295.803 296.572 297.3 297.82 298.249 298.7 299.127 299.618 300.048 300.191 300.307 300.605 300.893 301.071 301.1 300.861 300.629 300.588 300.35 299.748 299.255 299.381 299.897 300.24 300.182 299.949 299.704 299.354 298.959 298.565 298.137 297.764 297.455 297.2 296.972 296.616 295.935 294.95 293.77 292.496 291.501 290.707 289.956 289.168 288.377 287.442 286.195 284.72 282.935 280.752 278.57 276.822 275.34 274.183 273.42 272.972 272.688 272.441 272.176 271.787 271.091 269.681 266.215 260.14 253.621 250.566 248.962 247.468 246.183 245.878 244.972 244.582 244.836 245.416 245.571 246.061 246.499 246.69 246.212 245.141 244.42 243.533 242.755 241.844 240.906 225.724 230.601 237.04 243.057 247.59 248.422 246.771 246.673 250.053 253.613 253.514 251.361 249.983 254.047 259.146 264.887 268.45 270.515 271.949 272.922 273.69 274.529 275.497 276.718 278.072 279.267 280.377 281.421 282.569 283.819 284.866 284.771 285.347 287.739 289.404 290.798 291.811 292.59 293.199 293.716 294.139 294.591 295.102 295.695 296.471 297.201 297.714 298.178 298.66 299.105 299.632 300.079 300.194 300.25 300.446 300.644 300.848 301.011 300.894 300.713 300.673 300.418 299.793 299.246 299.295 299.8 300.198 300.184 299.947 299.674 299.306 298.902 298.51 298.101 297.733 297.368 297.045 296.829 296.519 295.848 294.868 293.696 292.377 291.302 290.463 289.701 288.932 288.211 287.294 286.057 284.658 282.947 280.801 278.769 277.099 275.677 274.518 273.799 273.362 273.089 272.863 272.608 272.206 271.594 270.35 267.009 261.198 254.421 250.979 249.219 247.738 246.302 245.987 245.155 244.666 244.956 245.233 245.428 246.077 246.477 246.613 246.067 245.007 244.407 243.572 242.745 241.823 240.884 225.85 230.96 237.339 243.503 248.001 248.421 246.401 246.16 249.936 253.947 254.201 252.729 251.459 254.678 259.821 265.179 268.597 270.627 272.036 272.987 273.752 274.59 275.548 276.727 278.051 279.248 280.333 281.336 282.519 283.947 285.031 285.734 285.708 287.093 289.192 290.615 291.661 292.564 293.217 293.661 294.048 294.537 295.04 295.603 296.361 297.071 297.586 298.104 298.628 299.073 299.605 300.066 300.197 300.253 300.383 300.506 300.737 300.97 300.924 300.792 300.763 300.468 299.789 299.182 299.161 299.67 300.145 300.169 299.919 299.628 299.269 298.864 298.466 298.066 297.707 297.317 296.952 296.72 296.413 295.732 294.747 293.586 292.262 291.165 290.313 289.532 288.728 287.984 287.056 285.843 284.517 282.875 280.839 278.992 277.386 275.976 274.823 274.131 273.729 273.487 273.267 272.989 272.556 271.911 270.717 267.7 261.84 256.07 251.485 249.498 248.032 246.482 246.137 246.059 244.845 244.891 245.011 245.335 246.079 246.489 246.545 245.947 244.865 244.501 243.651 242.737 241.807 240.864 225.974 231.132 237.768 243.981 248.344 248.425 245.991 245.632 251.271 254.058 254.631 253.713 253.114 255.625 260.48 265.476 268.765 270.749 272.116 273.046 273.818 274.662 275.594 276.71 277.98 279.171 280.236 281.207 282.384 283.984 285.211 286.15 286.951 286.867 288.6 290.486 291.524 292.574 293.299 293.651 293.965 294.451 294.952 295.535 296.282 296.959 297.471 298.033 298.58 299.022 299.553 300.026 300.201 300.29 300.384 300.466 300.722 300.986 300.953 300.853 300.829 300.483 299.746 299.076 298.994 299.525 300.086 300.132 299.852 299.549 299.222 298.836 298.431 298.01 297.643 297.262 296.89 296.632 296.297 295.597 294.596 293.433 292.125 291.037 290.191 289.378 288.501 287.687 286.736 285.58 284.314 282.702 280.793 279.141 277.628 276.247 275.152 274.451 274.064 273.837 273.593 273.267 272.767 272.065 270.884 268.373 263.211 257.085 252.206 249.859 248.184 246.779 246.356 246.521 244.927 244.655 244.858 245.32 246.116 246.481 246.439 245.782 244.821 244.541 243.709 242.718 241.786 240.845 225.873 231.316 238.071 244.407 248.698 248.365 245.55 245.068 251.398 253.936 254.693 254.207 253.98 256.522 261.159 265.803 268.959 270.878 272.192 273.109 273.895 274.753 275.647 276.673 277.848 279.001 280.051 281.015 282.189 283.871 285.347 286.471 287.562 288.515 288.828 289.383 291.041 291.728 292.961 293.634 293.88 294.316 294.837 295.469 296.206 296.847 297.368 297.967 298.526 298.984 299.527 300.005 300.2 300.308 300.372 300.451 300.76 301.036 300.974 300.868 300.809 300.434 299.7 299.01 298.86 299.393 300.036 300.103 299.81 299.493 299.158 298.777 298.391 297.956 297.56 297.179 296.804 296.52 296.17 295.471 294.439 293.244 291.957 290.875 290.034 289.185 288.249 287.365 286.391 285.306 284.088 282.473 280.68 279.171 277.732 276.434 275.479 274.813 274.391 274.109 273.806 273.443 272.918 272.144 271.084 269.02 264.454 257.605 253.211 250.417 248.561 247.117 246.693 246.773 244.885 244.51 244.812 245.365 246.168 246.507 246.321 245.634 244.829 244.527 243.765 242.674 241.763 240.835 226.084 231.609 238.349 244.812 248.907 248.213 245.057 244.557 251.032 253.554 254.36 254.367 254.851 257.469 261.813 266.094 269.12 270.976 272.254 273.17 273.964 274.83 275.689 276.633 277.707 278.785 279.824 280.82 282.019 283.69 285.299 286.589 287.828 288.976 289.266 288.347 289.063 292.192 293.122 293.47 293.762 294.204 294.748 295.379 296.07 296.681 297.247 297.897 298.467 298.951 299.49 299.954 300.155 300.283 300.37 300.512 300.862 301.079 300.947 300.818 300.724 300.319 299.603 298.913 298.71 299.242 299.958 300.094 299.841 299.528 299.163 298.756 298.381 297.967 297.562 297.152 296.733 296.421 296.08 295.407 294.351 293.093 291.782 290.665 289.795 288.931 287.988 287.075 286.084 285.046 283.854 282.216 280.547 279.113 277.706 276.518 275.728 275.115 274.653 274.317 273.949 273.567 273.064 272.269 271.333 269.626 265.515 258.609 254.212 251.121 249.003 247.422 246.98 246.926 244.968 244.461 244.787 245.442 246.246 246.58 246.219 245.528 244.821 244.508 243.752 242.62 241.742 240.826 226.206 231.755 238.612 245.204 249.122 248.028 244.609 244.074 250.61 253.09 254.163 254.77 255.772 258.37 262.374 266.353 269.25 271.048 272.309 273.231 274.02 274.883 275.722 276.608 277.6 278.596 279.615 280.652 281.88 283.536 285.199 286.606 287.98 289.273 290.261 290.326 289.965 292.301 292.875 293.247 293.625 294.117 294.679 295.282 295.92 296.512 297.118 297.81 298.401 298.907 299.372 299.712 300.107 300.267 300.409 300.614 300.945 301.059 300.883 300.777 300.696 300.266 299.521 298.807 298.56 299.102 299.89 300.096 299.863 299.566 299.224 298.805 298.399 297.978 297.576 297.157 296.715 296.383 296.045 295.398 294.343 293.033 291.681 290.528 289.638 288.791 287.889 286.941 285.887 284.806 283.559 281.904 280.388 279.02 277.618 276.549 275.902 275.359 274.878 274.492 274.088 273.725 273.23 272.454 271.597 270.044 266.363 259.38 255.201 251.92 249.564 247.732 247.249 247.01 245.143 244.483 244.791 245.441 246.357 246.678 246.149 245.438 244.807 244.464 243.712 242.551 241.713 240.817 226.343 231.868 238.952 245.563 249.272 247.834 244.19 243.733 250.208 252.643 254.229 255.301 256.512 259.113 262.836 266.591 269.35 271.098 272.362 273.288 274.062 274.915 275.749 276.604 277.54 278.471 279.453 280.513 281.754 283.401 285.122 286.633 288.121 289.493 290.594 291.246 291.592 292.048 292.674 293.058 293.519 294.046 294.618 295.198 295.802 296.382 297.002 297.698 298.318 298.868 299.389 299.778 300.105 300.287 300.48 300.718 300.988 301.008 300.822 300.776 300.732 300.28 299.487 298.729 298.444 298.983 299.827 300.112 299.881 299.575 299.278 298.875 298.431 297.979 297.577 297.155 296.705 296.361 296.023 295.417 294.403 293.054 291.651 290.455 289.562 288.718 287.845 286.886 285.775 284.646 283.325 281.661 280.276 278.982 277.616 276.609 276.034 275.551 275.083 274.679 274.254 273.921 273.446 272.671 271.844 270.349 266.781 260.33 255.881 253.151 250.179 248.141 247.566 246.567 245.668 244.615 244.845 245.527 246.466 246.745 246.104 245.373 244.788 244.416 243.668 242.474 241.676 240.805 226.429 232.094 239.2 245.892 249.428 247.571 243.85 243.501 250.093 252.488 254.605 255.914 257.32 259.879 263.254 266.824 269.436 271.138 272.424 273.344 274.093 274.936 275.776 276.625 277.542 278.433 279.372 280.41 281.628 283.313 285.161 286.806 288.275 289.575 290.731 291.502 291.932 292.214 292.522 292.959 293.474 293.99 294.541 295.107 295.701 296.282 296.896 297.561 298.198 298.814 299.462 299.908 300.146 300.344 300.594 300.846 301.04 301.008 300.837 300.814 300.766 300.275 299.452 298.679 298.357 298.832 299.703 300.119 299.928 299.575 299.288 298.913 298.464 298.005 297.595 297.145 296.675 296.313 295.977 295.44 294.51 293.158 291.708 290.462 289.556 288.674 287.797 286.85 285.716 284.567 283.189 281.53 280.256 279.043 277.745 276.811 276.241 275.764 275.31 274.893 274.457 274.129 273.664 272.912 272.054 270.515 266.913 261.358 256.619 253.773 251.434 248.609 247.952 246.55 246.495 245.054 244.975 245.719 246.559 246.83 246.084 245.327 244.756 244.391 243.628 242.395 241.645 240.784 226.51 232.302 239.468 246.187 249.524 247.297 243.566 243.378 250.013 252.555 255.013 256.6 258.22 260.537 263.576 267.01 269.506 271.173 272.483 273.388 274.116 274.957 275.801 276.651 277.586 278.492 279.411 280.39 281.56 283.312 285.308 287.02 288.356 289.52 290.616 291.354 291.739 291.969 292.338 292.898 293.455 293.94 294.444 294.993 295.591 296.204 296.833 297.463 298.076 298.719 299.41 299.889 300.131 300.372 300.678 300.906 301.04 301.023 300.911 300.9 300.816 300.265 299.412 298.662 298.348 298.743 299.583 300.099 299.973 299.591 299.283 298.917 298.478 298.023 297.608 297.144 296.659 296.27 295.913 295.432 294.59 293.283 291.85 290.56 289.582 288.606 287.706 286.8 285.705 284.555 283.152 281.535 280.303 279.158 277.952 277.086 276.502 276.01 275.59 275.139 274.677 274.32 273.845 273.098 272.22 270.481 266.856 261.776 257.483 254.788 252.435 249.207 248.039 246.477 247.005 245.335 245.295 245.975 246.662 246.907 246.047 245.317 244.716 244.371 243.583 242.317 241.61 240.756 226.638 232.46 239.744 246.444 249.549 247.009 243.364 243.473 249.754 252.802 255.46 257.199 258.944 261.064 263.852 267.161 269.576 271.207 272.527 273.419 274.142 274.991 275.825 276.659 277.619 278.578 279.515 280.447 281.578 283.391 285.478 287.175 288.393 289.44 290.454 291.119 291.466 291.713 292.172 292.827 293.406 293.874 294.361 294.9 295.5 296.145 296.785 297.378 297.976 298.64 299.356 299.854 300.107 300.37 300.673 300.842 300.943 300.992 300.961 300.972 300.877 300.274 299.384 298.659 298.373 298.725 299.527 300.073 299.984 299.6 299.289 298.928 298.49 298.023 297.589 297.134 296.656 296.242 295.868 295.421 294.632 293.373 291.971 290.648 289.584 288.537 287.65 286.764 285.695 284.527 283.152 281.651 280.407 279.272 278.179 277.359 276.752 276.232 275.821 275.379 274.88 274.467 273.976 273.23 272.268 270.322 266.52 261.764 258.203 255.687 253.557 249.804 248.28 246.61 246.896 245.769 245.741 246.269 246.739 246.96 245.992 245.311 244.689 244.377 243.529 242.239 241.564 240.727 226.6 232.578 239.968 246.66 249.552 246.744 243.233 243.651 249.37 253.191 255.939 257.658 259.492 261.463 264.087 267.293 269.646 271.239 272.551 273.439 274.178 275.039 275.85 276.651 277.624 278.652 279.648 280.569 281.691 283.546 285.649 287.295 288.432 289.383 290.307 290.909 291.259 291.564 292.067 292.744 293.326 293.801 294.304 294.849 295.453 296.096 296.71 297.27 297.888 298.59 299.315 299.827 300.1 300.361 300.616 300.731 300.852 300.985 301.0 300.994 300.883 300.267 299.378 298.677 298.393 298.704 299.474 300.03 299.972 299.611 299.295 298.944 298.528 298.06 297.588 297.124 296.642 296.202 295.829 295.421 294.678 293.461 292.077 290.699 289.569 288.509 287.641 286.711 285.6 284.393 283.063 281.729 280.523 279.396 278.39 277.583 276.941 276.4 275.982 275.533 275.01 274.574 274.053 273.294 272.187 270.005 265.963 261.461 258.463 256.403 254.006 250.508 248.739 246.952 246.818 246.089 246.172 246.527 246.831 247.001 245.932 245.354 244.756 244.411 243.488 242.207 241.515 240.697 226.718 232.779 240.14 246.866 249.54 246.475 243.12 243.931 248.783 253.587 256.38 258.003 259.853 261.802 264.33 267.417 269.71 271.259 272.546 273.445 274.225 275.099 275.872 276.636 277.614 278.699 279.779 280.751 281.906 283.772 285.812 287.372 288.44 289.323 290.144 290.716 291.125 291.506 292.002 292.642 293.224 293.735 294.281 294.856 295.462 296.06 296.599 297.144 297.814 298.544 299.239 299.76 300.091 300.369 300.572 300.677 300.871 301.046 301.014 300.942 300.814 300.261 299.457 298.792 298.469 298.68 299.396 299.964 299.962 299.641 299.291 298.94 298.589 298.157 297.635 297.12 296.614 296.15 295.789 295.415 294.713 293.549 292.178 290.738 289.563 288.517 287.616 286.582 285.41 284.19 282.913 281.733 280.591 279.468 278.52 277.727 277.058 276.503 276.067 275.606 275.098 274.637 274.082 273.269 272.011 269.544 265.317 261.105 258.692 256.819 254.065 251.312 248.809 247.479 247.069 246.488 246.497 246.743 246.917 246.978 246.027 245.475 244.898 244.531 243.48 242.186 241.473 240.661 226.676 232.906 240.349 247.056 249.471 246.213 243.097 244.296 248.638 253.8 256.704 258.26 260.064 262.062 264.54 267.499 269.738 271.249 272.517 273.445 274.273 275.148 275.884 276.638 277.624 278.716 279.846 280.9 282.103 283.934 285.892 287.353 288.363 289.21 289.972 290.541 291.0 291.427 291.917 292.533 293.134 293.684 294.273 294.863 295.447 296.013 296.546 297.131 297.82 298.494 299.123 299.667 300.095 300.408 300.576 300.669 300.864 300.986 300.895 300.833 300.782 300.294 299.551 298.925 298.598 298.765 299.42 299.941 299.954 299.67 299.307 298.935 298.62 298.222 297.663 297.103 296.588 296.135 295.773 295.387 294.708 293.622 292.294 290.839 289.647 288.574 287.545 286.386 285.211 284.021 282.806 281.717 280.634 279.529 278.591 277.788 277.111 276.558 276.1 275.628 275.129 274.61 274.002 273.145 271.719 268.956 264.597 260.893 258.934 257.067 254.555 252.087 249.87 248.245 247.62 247.096 246.743 246.926 246.981 246.983 246.219 245.615 245.042 244.645 243.532 242.182 241.436 240.622 226.915 233.099 240.584 247.192 249.382 245.967 243.171 244.705 248.691 253.819 256.85 258.471 260.191 262.243 264.702 267.552 269.743 271.22 272.474 273.443 274.318 275.188 275.896 276.657 277.654 278.722 279.864 280.997 282.237 284.003 285.868 287.241 288.197 289.039 289.793 290.376 290.861 291.314 291.815 292.434 293.051 293.63 294.248 294.836 295.404 295.968 296.543 297.181 297.855 298.451 299.034 299.616 300.098 300.424 300.568 300.645 300.817 300.873 300.764 300.766 300.796 300.329 299.591 298.968 298.645 298.83 299.47 299.947 299.941 299.69 299.352 298.977 298.664 298.274 297.701 297.105 296.566 296.126 295.771 295.375 294.733 293.719 292.427 290.984 289.782 288.676 287.542 286.319 285.195 284.023 282.831 281.742 280.65 279.563 278.622 277.814 277.147 276.592 276.1 275.606 275.065 274.46 273.788 272.88 271.262 268.184 263.906 260.949 259.241 257.377 255.098 252.619 250.843 249.151 248.318 247.702 247.024 247.089 247.102 247.019 246.33 245.756 245.113 244.742 243.568 242.189 241.397 240.579 226.919 233.231 240.787 247.309 249.26 245.71 243.259 245.177 248.808 253.736 256.862 258.647 260.315 262.392 264.833 267.589 269.734 271.181 272.424 273.44 274.357 275.225 275.917 276.693 277.695 278.724 279.858 281.057 282.326 284.021 285.765 287.055 287.973 288.81 289.577 290.187 290.693 291.176 291.712 292.353 292.975 293.566 294.202 294.795 295.364 295.938 296.551 297.222 297.871 298.413 298.98 299.581 300.065 300.388 300.542 300.637 300.786 300.801 300.713 300.779 300.839 300.378 299.644 298.99 298.634 298.832 299.495 299.974 299.949 299.71 299.402 299.037 298.722 298.341 297.775 297.141 296.549 296.098 295.757 295.379 294.808 293.878 292.604 291.177 289.952 288.808 287.647 286.434 285.344 284.164 282.956 281.833 280.68 279.586 278.628 277.814 277.16 276.606 276.072 275.517 274.86 274.162 273.475 272.492 270.625 267.237 263.561 261.158 259.614 257.835 255.638 253.647 251.827 250.054 248.999 248.287 247.371 247.238 247.212 246.972 246.364 245.854 245.158 244.781 243.578 242.182 241.361 240.535 227.041 233.33 240.888 247.406 249.148 245.483 243.475 245.679 249.035 253.69 256.894 258.835 260.378 262.476 264.953 267.642 269.722 271.132 272.37 273.433 274.39 275.266 275.966 276.758 277.742 278.728 279.862 281.111 282.405 284.014 285.609 286.812 287.72 288.539 289.29 289.913 290.448 290.985 291.587 292.277 292.92 293.527 294.191 294.789 295.343 295.907 296.535 297.233 297.873 298.394 298.956 299.532 299.982 300.314 300.536 300.665 300.761 300.763 300.726 300.834 300.882 300.437 299.739 299.052 298.635 298.815 299.497 300.002 299.975 299.728 299.426 299.073 298.762 298.408 297.872 297.224 296.58 296.085 295.725 295.371 294.898 294.071 292.824 291.425 290.176 288.976 287.776 286.623 285.554 284.342 283.108 281.931 280.715 279.632 278.65 277.804 277.147 276.587 276.021 275.399 274.616 273.602 273.11 271.99 269.863 266.428 263.319 261.364 259.908 258.199 256.245 254.452 252.524 250.72 249.654 248.799 247.756 247.352 247.155 246.893 246.301 245.862 245.224 244.762 243.521 242.158 241.324 240.511 226.997 233.398 241.053 247.493 248.993 245.287 243.725 246.232 249.308 253.702 257.01 259.016 260.489 262.617 265.082 267.704 269.727 271.101 272.322 273.415 274.403 275.311 276.04 276.838 277.799 278.769 279.904 281.161 282.462 284.005 285.487 286.635 287.557 288.362 289.066 289.666 290.224 290.81 291.465 292.207 292.909 293.559 294.239 294.813 295.323 295.858 296.498 297.216 297.864 298.381 298.935 299.495 299.918 300.27 300.569 300.714 300.753 300.726 300.727 300.868 300.88 300.419 299.707 298.984 298.578 298.798 299.482 299.977 299.967 299.74 299.439 299.077 298.752 298.414 297.922 297.32 296.702 296.177 295.722 295.323 294.935 294.268 293.129 291.806 290.497 289.185 287.883 286.754 285.71 284.471 283.247 282.007 280.778 279.708 278.703 277.825 277.137 276.541 275.963 275.296 274.429 273.511 272.437 271.406 268.963 265.784 263.131 261.522 260.098 258.482 256.487 254.66 252.799 251.245 250.347 249.35 248.112 247.479 247.036 246.749 246.164 245.863 245.307 244.682 243.439 242.107 241.277 240.502 227.219 233.557 241.192 247.518 248.843 245.108 244.014 246.725 249.474 253.647 257.092 259.191 260.637 262.793 265.228 267.776 269.754 271.092 272.29 273.392 274.403 275.36 276.125 276.934 277.891 278.87 279.993 281.208 282.486 283.986 285.396 286.524 287.466 288.27 288.94 289.518 290.094 290.724 291.389 292.145 292.895 293.592 294.276 294.837 295.327 295.849 296.486 297.188 297.817 298.326 298.883 299.442 299.841 300.19 300.556 300.761 300.795 300.745 300.769 300.909 300.858 300.349 299.602 298.856 298.505 298.782 299.462 299.94 299.958 299.754 299.444 299.056 298.697 298.358 297.913 297.387 296.823 296.288 295.755 295.296 294.957 294.422 293.391 292.126 290.767 289.374 287.955 286.762 285.717 284.535 283.366 282.076 280.843 279.797 278.768 277.873 277.166 276.529 275.926 275.239 274.316 273.377 272.109 270.711 268.101 265.163 262.952 261.389 260.071 258.512 256.308 254.673 253.262 251.636 250.925 249.879 248.375 247.634 246.984 246.574 246.124 245.883 245.336 244.598 243.362 242.025 241.232 240.494 227.279 233.644 241.327 247.557 248.681 244.983 244.284 247.174 249.459 253.548 257.137 259.368 260.83 262.959 265.381 267.857 269.797 271.098 272.273 273.37 274.397 275.406 276.217 277.055 278.036 279.04 280.13 281.262 282.482 283.952 285.322 286.445 287.402 288.214 288.868 289.433 290.032 290.697 291.36 292.106 292.875 293.598 294.29 294.87 295.377 295.9 296.508 297.166 297.758 298.246 298.812 299.384 299.77 300.09 300.49 300.79 300.858 300.8 300.841 300.954 300.805 300.222 299.46 298.737 298.443 298.76 299.441 299.921 299.976 299.768 299.426 299.003 298.599 298.24 297.843 297.402 296.9 296.377 295.805 295.297 294.97 294.528 293.608 292.402 290.993 289.563 288.06 286.759 285.629 284.527 283.426 282.14 280.919 279.873 278.834 277.948 277.231 276.577 275.937 275.218 274.292 273.26 272.06 269.854 267.281 264.569 262.579 260.357 259.097 258.292 256.178 254.681 253.577 252.18 251.329 250.24 248.602 247.838 247.06 246.458 246.057 245.868 245.32 244.5 243.351 241.919 241.193 240.485 227.312 233.715 241.441 247.582 248.541 244.89 244.652 247.562 249.337 253.299 257.198 259.485 261.101 263.223 265.545 267.943 269.841 271.114 272.261 273.348 274.391 275.454 276.322 277.206 278.252 279.303 280.347 281.359 282.492 283.928 285.265 286.378 287.326 288.121 288.768 289.338 289.96 290.66 291.341 292.098 292.87 293.582 294.289 294.925 295.477 296.003 296.564 297.161 297.71 298.2 298.774 299.36 299.754 300.044 300.44 300.787 300.852 300.785 300.876 300.99 300.7 299.989 299.217 298.561 298.34 298.706 299.402 299.912 299.998 299.767 299.396 298.941 298.484 298.087 297.736 297.386 296.945 296.446 295.859 295.3 294.937 294.556 293.771 292.647 291.216 289.771 288.212 286.806 285.572 284.503 283.452 282.185 281.005 279.919 278.902 278.03 277.318 276.664 275.995 275.251 274.354 273.22 271.743 269.016 266.465 263.99 261.988 259.83 258.719 258.148 256.377 254.8 253.367 252.396 251.61 250.604 249.056 247.975 247.099 246.301 245.943 245.812 245.239 244.414 243.32 241.856 241.159 240.476 227.322 233.824 241.486 247.554 248.404 244.844 244.92 247.886 249.117 252.805 257.133 259.615 261.326 263.496 265.715 268.015 269.876 271.133 272.25 273.335 274.392 275.49 276.406 277.339 278.458 279.557 280.577 281.528 282.601 283.984 285.265 286.341 287.235 287.986 288.645 289.247 289.889 290.605 291.315 292.11 292.903 293.597 294.299 294.966 295.532 296.043 296.583 297.128 297.646 298.154 298.753 299.342 299.755 300.064 300.449 300.76 300.772 300.684 300.838 300.982 300.602 299.794 299.0 298.377 298.214 298.657 299.387 299.905 299.988 299.757 299.389 298.93 298.433 298.012 297.693 297.395 296.984 296.477 295.872 295.269 294.848 294.499 293.873 292.888 291.5 290.035 288.417 286.919 285.571 284.525 283.489 282.26 281.091 279.951 278.943 278.11 277.424 276.766 276.073 275.346 274.475 273.29 271.536 269.065 265.733 263.587 261.15 259.489 258.67 257.649 256.36 254.931 253.405 252.599 251.861 251.027 249.477 247.996 247.03 246.086 245.806 245.754 245.139 244.313 243.274 241.851 241.13 240.469 227.449 233.901 241.53 247.548 248.269 244.846 245.169 248.061 249.821 252.334 256.939 259.767 261.551 263.749 265.853 268.066 269.911 271.153 272.249 273.334 274.396 275.51 276.461 277.441 278.61 279.74 280.774 281.742 282.797 284.094 285.284 286.303 287.132 287.848 288.544 289.209 289.887 290.613 291.325 292.134 292.945 293.627 294.311 294.981 295.549 296.052 296.583 297.087 297.574 298.111 298.742 299.324 299.751 300.091 300.461 300.722 300.692 300.581 300.744 300.894 300.481 299.652 298.856 298.226 298.084 298.602 299.39 299.912 299.978 299.755 299.393 298.919 298.398 297.971 297.67 297.381 296.963 296.418 295.795 295.191 294.767 294.423 293.882 293.02 291.738 290.288 288.69 287.177 285.741 284.673 283.602 282.374 281.176 280.01 279.015 278.194 277.528 276.882 276.177 275.481 274.627 273.463 271.634 269.218 265.113 263.215 260.496 259.232 258.785 257.891 256.416 255.004 253.533 252.745 252.199 251.394 249.727 247.975 246.936 245.889 245.699 245.733 245.028 244.174 243.2 241.864 241.112 240.466 227.523 233.958 241.58 247.509 248.163 244.838 245.435 248.483 250.608 252.004 256.632 259.866 261.768 263.982 265.972 268.107 269.94 271.173 272.255 273.348 274.399 275.502 276.484 277.504 278.702 279.849 280.927 281.971 283.037 284.216 285.282 286.23 287.008 287.715 288.47 289.204 289.929 290.677 291.38 292.166 292.976 293.649 294.312 294.973 295.549 296.068 296.604 297.085 297.552 298.13 298.782 299.348 299.79 300.158 300.492 300.697 300.625 300.511 300.661 300.781 300.344 299.502 298.702 298.064 297.928 298.513 299.378 299.923 299.978 299.76 299.402 298.912 298.373 297.943 297.632 297.316 296.856 296.243 295.599 295.034 294.651 294.322 293.841 293.096 291.953 290.541 288.982 287.485 286.031 284.916 283.786 282.578 281.314 280.132 279.143 278.308 277.635 276.98 276.313 275.624 274.767 273.717 272.001 269.22 264.855 263.041 260.3 259.082 258.582 258.139 256.757 255.135 253.594 252.842 252.684 251.618 249.773 248.112 247.015 245.824 245.597 245.673 244.932 243.995 243.073 241.886 241.102 240.463 227.516 233.981 241.609 247.451 248.064 244.818 245.776 248.892 251.415 251.677 256.413 259.819 261.738 264.181 266.122 268.185 269.983 271.203 272.253 273.345 274.386 275.455 276.461 277.511 278.724 279.885 281.033 282.19 283.278 284.303 285.22 286.095 286.852 287.591 288.409 289.171 289.923 290.722 291.444 292.194 292.992 293.66 294.3 294.948 295.54 296.102 296.674 297.161 297.643 298.246 298.893 299.433 299.899 300.289 300.585 300.732 300.64 300.521 300.662 300.75 300.27 299.364 298.518 297.889 297.811 298.445 299.374 299.95 299.982 299.752 299.412 298.929 298.379 297.92 297.562 297.177 296.639 295.938 295.266 294.76 294.456 294.175 293.77 293.148 292.168 290.831 289.314 287.791 286.331 285.144 283.969 282.811 281.554 280.406 279.375 278.473 277.748 277.057 276.417 275.726 274.883 273.98 272.492 269.532 266.209 262.856 260.207 259.139 258.449 258.069 257.112 255.207 253.587 252.886 252.71 251.687 250.065 248.355 247.08 245.727 245.476 245.565 244.788 243.868 242.91 241.913 241.113 240.459 227.52 234.032 241.608 247.419 247.976 244.886 246.138 249.268 251.537 251.561 256.327 259.808 261.89 264.336 266.293 268.312 270.066 271.248 272.245 273.296 274.32 275.369 276.389 277.454 278.672 279.853 281.066 282.312 283.413 284.322 285.128 285.963 286.738 287.522 288.367 289.099 289.837 290.69 291.44 292.181 292.979 293.66 294.286 294.924 295.538 296.151 296.769 297.29 297.79 298.384 298.997 299.531 300.005 300.382 300.652 300.792 300.717 300.585 300.679 300.731 300.241 299.324 298.446 297.849 297.832 298.468 299.398 299.986 299.987 299.723 299.392 298.926 298.366 297.87 297.467 297.024 296.424 295.624 294.87 294.47 294.209 293.97 293.648 293.167 292.375 291.161 289.685 288.051 286.554 285.318 284.168 283.053 281.805 280.693 279.64 278.688 277.857 277.123 276.496 275.764 274.973 274.176 272.895 270.36 267.064 263.097 260.229 258.874 258.37 258.03 257.011 255.361 253.573 252.953 253.084 251.944 250.368 248.506 247.098 245.568 245.326 245.422 244.621 243.751 242.818 241.904 241.13 240.454 227.578 234.12 241.599 247.377 247.901 244.956 246.627 249.544 251.595 251.546 256.203 259.795 262.122 264.563 266.496 268.485 270.187 271.311 272.247 273.246 274.227 275.26 276.295 277.373 278.593 279.8 281.065 282.364 283.465 284.305 285.051 285.869 286.664 287.481 288.345 289.063 289.793 290.661 291.411 292.148 292.959 293.653 294.277 294.93 295.573 296.223 296.868 297.433 297.974 298.568 299.14 299.661 300.123 300.461 300.69 300.82 300.756 300.609 300.626 300.633 300.168 299.305 298.422 297.823 297.837 298.466 299.385 299.979 299.969 299.683 299.35 298.887 298.321 297.808 297.378 296.917 296.326 295.499 294.703 294.354 294.053 293.784 293.469 293.054 292.431 291.403 290.025 288.285 286.723 285.47 284.364 283.252 282.033 280.931 279.831 278.84 277.934 277.198 276.56 275.809 275.047 274.303 273.202 271.19 267.756 264.383 260.553 258.645 257.6 257.579 256.666 255.47 253.549 252.972 253.134 252.138 250.576 248.527 247.047 245.47 245.224 245.269 244.42 243.676 242.768 241.865 241.157 240.45 227.741 234.126 241.553 247.302 247.844 245.069 247.148 249.865 251.616 251.595 256.131 259.792 262.393 264.825 266.735 268.707 270.364 271.414 272.277 273.226 274.145 275.148 276.194 277.283 278.512 279.752 281.06 282.376 283.462 284.268 284.988 285.791 286.592 287.426 288.305 289.054 289.81 290.67 291.396 292.137 292.962 293.654 294.298 294.995 295.673 296.328 296.974 297.565 298.168 298.771 299.295 299.77 300.22 300.522 300.72 300.843 300.756 300.588 300.564 300.533 300.093 299.29 298.418 297.78 297.794 298.443 299.35 299.937 299.922 299.626 299.293 298.831 298.268 297.75 297.294 296.837 296.309 295.601 294.881 294.326 293.928 293.588 293.253 292.881 292.39 291.535 290.261 288.485 286.872 285.617 284.539 283.404 282.197 281.067 279.958 278.944 277.978 277.26 276.628 275.9 275.149 274.374 273.456 271.853 268.981 265.541 261.81 258.334 256.84 257.065 256.552 255.326 253.546 252.942 253.219 252.217 250.713 248.587 247.065 245.57 245.163 245.092 244.242 243.565 242.735 241.814 241.186 240.444 227.805 234.118 241.5 247.216 247.818 245.241 247.618 250.09 251.526 251.593 256.305 259.901 262.813 265.153 267.034 269.001 270.627 271.608 272.382 273.277 274.117 275.042 276.078 277.186 278.438 279.72 281.067 282.367 283.421 284.215 284.922 285.693 286.478 287.305 288.213 289.054 289.883 290.738 291.438 292.196 293.013 293.678 294.355 295.129 295.854 296.491 297.089 297.661 298.319 298.938 299.391 299.797 300.224 300.526 300.737 300.858 300.716 300.522 300.497 300.466 300.037 299.265 298.415 297.748 297.744 298.41 299.324 299.893 299.852 299.546 299.22 298.753 298.192 297.676 297.188 296.723 296.278 295.672 294.95 294.303 293.792 293.389 293.046 292.706 292.306 291.602 290.459 288.75 287.096 285.741 284.651 283.494 282.322 281.14 280.034 278.998 278.028 277.306 276.684 276.037 275.262 274.459 273.642 272.358 270.127 266.639 262.91 258.513 256.568 256.299 256.183 255.11 253.429 252.836 253.178 252.313 250.919 248.764 247.053 245.556 245.049 244.885 244.138 243.374 242.669 241.811 241.222 240.436 227.766 234.104 241.432 247.152 247.838 245.491 248.016 250.304 251.597 251.725 256.296 260.038 263.245 265.489 267.36 269.284 270.899 271.86 272.574 273.427 274.182 275.009 276.002 277.116 278.393 279.717 281.089 282.353 283.372 284.168 284.863 285.602 286.377 287.218 288.185 289.103 289.987 290.831 291.515 292.263 293.044 293.694 294.442 295.304 296.036 296.658 297.228 297.783 298.446 299.062 299.472 299.844 300.242 300.511 300.725 300.878 300.745 300.51 300.443 300.386 299.948 299.174 298.342 297.678 297.648 298.329 299.28 299.856 299.792 299.476 299.145 298.653 298.087 297.586 297.07 296.561 296.124 295.567 294.869 294.191 293.613 293.172 292.831 292.503 292.166 291.608 290.626 289.103 287.469 285.962 284.802 283.644 282.491 281.206 280.083 279.025 278.077 277.325 276.715 276.123 275.364 274.559 273.777 272.855 271.21 267.938 263.77 259.131 256.702 255.564 255.794 254.889 253.281 252.718 253.03 252.413 251.028 248.879 246.987 245.37 244.819 244.641 243.981 243.224 242.561 241.829 241.25 240.425 227.788 234.099 241.354 247.065 247.838 245.825 248.359 250.389 251.793 252.65 256.176 260.192 263.562 265.859 267.692 269.532 271.147 272.128 272.821 273.635 274.322 275.058 275.992 277.078 278.368 279.726 281.107 282.331 283.322 284.127 284.814 285.542 286.34 287.234 288.261 289.219 290.103 290.914 291.572 292.282 293.032 293.716 294.574 295.476 296.159 296.758 297.364 297.954 298.598 299.179 299.568 299.941 300.322 300.532 300.71 300.888 300.8 300.559 300.448 300.337 299.871 299.071 298.225 297.573 297.547 298.244 299.229 299.807 299.729 299.405 299.068 298.56 297.999 297.506 296.971 296.418 295.952 295.401 294.734 294.062 293.441 292.962 292.61 292.275 291.95 291.531 290.784 289.577 288.063 286.402 285.064 283.913 282.708 281.3 280.122 279.03 278.108 277.313 276.717 276.121 275.414 274.658 273.904 273.254 272.125 269.13 264.868 259.028 256.213 255.242 255.692 254.84 253.158 252.611 252.754 252.379 250.992 248.843 246.883 245.226 244.585 244.39 243.787 243.098 242.419 241.864 241.265 240.41 227.945 234.089 241.262 246.949 247.878 246.226 248.643 250.46 251.516 252.953 255.903 260.242 263.777 266.253 268.024 269.753 271.366 272.387 273.093 273.877 274.518 275.186 276.06 277.08 278.36 279.736 281.106 282.293 283.265 284.086 284.773 285.514 286.355 287.313 288.396 289.346 290.186 290.961 291.607 292.289 293.029 293.793 294.755 295.626 296.218 296.792 297.471 298.119 298.748 299.277 299.641 300.011 300.388 300.57 300.711 300.878 300.811 300.585 300.453 300.3 299.808 298.98 298.099 297.454 297.469 298.201 299.191 299.747 299.658 299.331 298.981 298.469 297.923 297.426 296.871 296.286 295.79 295.236 294.595 293.927 293.258 292.736 292.374 292.034 291.724 291.397 290.821 289.885 288.595 287.054 285.584 284.315 282.948 281.462 280.209 279.117 278.177 277.353 276.721 276.089 275.446 274.761 274.063 273.548 272.802 270.323 265.311 259.94 255.788 254.753 255.357 254.673 253.097 252.544 252.357 252.228 250.957 248.94 246.952 245.235 244.47 244.207 243.568 242.974 242.344 241.905 241.259 240.38 227.96 234.099 241.153 246.84 247.91 246.525 248.93 250.466 251.246 252.938 255.269 260.043 263.884 266.695 268.372 269.956 271.556 272.648 273.373 274.163 274.787 275.404 276.214 277.136 278.377 279.743 281.082 282.228 283.188 284.026 284.739 285.503 286.384 287.412 288.501 289.393 290.167 290.955 291.643 292.35 293.133 293.986 294.972 295.743 296.26 296.827 297.561 298.257 298.873 299.373 299.704 300.024 300.38 300.599 300.758 300.859 300.72 300.504 300.391 300.199 299.685 298.861 297.955 297.3 297.379 298.167 299.131 299.658 299.588 299.273 298.884 298.36 297.824 297.321 296.753 296.155 295.633 295.076 294.457 293.788 293.076 292.517 292.134 291.782 291.473 291.199 290.734 290.017 288.957 287.608 286.055 284.669 283.192 281.697 280.396 279.322 278.339 277.517 276.819 276.106 275.501 274.875 274.256 273.794 273.311 271.234 265.924 260.327 255.949 254.458 254.69 254.451 253.163 252.428 252.044 252.093 250.858 249.03 247.015 245.263 244.359 244.053 243.437 242.807 242.303 241.945 241.232 240.344 227.869 234.051 241.007 246.696 247.951 246.831 249.191 250.413 250.828 253.167 254.772 259.766 263.945 267.083 268.676 270.125 271.681 272.833 273.596 274.404 275.047 275.641 276.397 277.248 278.433 279.758 281.046 282.159 283.12 283.971 284.713 285.501 286.44 287.465 288.506 289.343 290.087 290.915 291.679 292.476 293.345 294.218 295.12 295.829 296.374 296.982 297.706 298.364 298.931 299.412 299.74 300.02 300.351 300.61 300.784 300.785 300.589 300.422 300.349 300.109 299.549 298.745 297.834 297.143 297.256 298.122 299.074 299.575 299.537 299.246 298.819 298.264 297.72 297.213 296.658 296.061 295.505 294.935 294.336 293.663 292.913 292.292 291.85 291.466 291.155 290.919 290.527 289.979 289.151 288.005 286.416 284.897 283.345 281.968 280.74 279.66 278.595 277.775 277.01 276.262 275.608 275.036 274.45 274.032 273.668 271.647 266.554 259.766 255.475 254.209 254.087 254.163 253.262 252.4 251.748 251.891 250.633 248.849 246.917 245.232 244.165 243.892 243.334 242.605 242.274 241.952 241.218 240.321 227.915 234.039 240.834 246.542 248.019 247.12 249.401 250.301 250.427 252.66 254.277 259.411 263.972 267.398 268.95 270.272 271.777 272.969 273.776 274.6 275.274 275.875 276.592 277.407 278.532 279.788 281.012 282.101 283.073 283.941 284.687 285.532 286.511 287.501 288.502 289.315 290.051 290.901 291.718 292.596 293.549 294.419 295.246 295.937 296.516 297.13 297.815 298.412 298.909 299.341 299.668 299.959 300.299 300.552 300.659 300.588 300.427 300.358 300.334 300.062 299.457 298.645 297.721 297.004 297.152 298.114 299.071 299.519 299.482 299.209 298.771 298.191 297.621 297.098 296.544 295.949 295.384 294.827 294.244 293.549 292.757 292.078 291.587 291.176 290.845 290.604 290.237 289.784 289.171 288.186 286.668 285.04 283.515 282.205 281.066 280.026 278.936 278.041 277.234 276.491 275.818 275.244 274.677 274.335 273.907 271.751 266.427 258.711 254.956 254.126 253.851 253.811 253.344 252.832 251.777 251.731 250.391 248.663 246.845 245.304 244.072 243.724 243.186 242.45 242.223 241.974 241.22 240.322 227.998 233.977 240.665 246.372 248.083 247.42 249.528 250.119 249.963 252.243 254.025 259.136 263.948 267.677 269.21 270.42 271.867 273.075 273.922 274.76 275.47 276.116 276.808 277.595 278.651 279.819 280.971 282.046 283.043 283.922 284.669 285.569 286.557 287.51 288.489 289.317 290.071 290.931 291.771 292.697 293.706 294.581 295.378 296.065 296.643 297.215 297.847 298.393 298.827 299.199 299.527 299.859 300.226 300.422 300.423 300.332 300.265 300.282 300.291 300.017 299.388 298.551 297.592 296.851 297.045 298.108 299.1 299.498 299.451 299.188 298.745 298.144 297.538 296.984 296.413 295.809 295.245 294.726 294.165 293.436 292.592 291.86 291.351 290.946 290.597 290.319 289.955 289.532 289.007 288.154 286.841 285.217 283.718 282.426 281.315 280.23 279.182 278.263 277.458 276.72 276.068 275.517 274.999 274.698 274.039 271.545 266.0 258.147 255.015 254.163 253.773 253.587 253.595 252.809 251.717 251.53 250.089 248.478 246.824 245.394 244.119 243.623 243.014 242.336 242.137 242.011 241.223 240.323 228.08 233.914 240.495 246.15 248.18 247.71 249.67 249.925 249.534 251.905 254.508 258.804 263.758 267.918 269.481 270.607 271.966 273.172 274.052 274.898 275.649 276.363 277.042 277.782 278.746 279.816 280.904 281.981 283.015 283.898 284.644 285.543 286.506 287.438 288.427 289.319 290.131 291.014 291.868 292.811 293.83 294.692 295.484 296.155 296.693 297.211 297.786 298.281 298.675 299.033 299.381 299.758 300.135 300.265 300.181 300.13 300.157 300.188 300.197 299.96 299.352 298.489 297.475 296.698 296.918 298.066 299.116 299.52 299.488 299.225 298.763 298.143 297.5 296.901 296.294 295.65 295.076 294.596 294.071 293.329 292.451 291.669 291.144 290.75 290.365 290.011 289.634 289.232 288.761 288.005 286.89 285.425 284.013 282.671 281.509 280.349 279.319 278.368 277.655 276.959 276.36 275.849 275.43 275.032 274.016 270.87 265.414 257.785 255.354 254.305 253.517 253.324 253.713 252.708 251.659 251.316 249.692 248.208 246.763 245.324 244.035 243.577 242.903 242.28 242.067 242.035 241.207 240.323 228.007 233.86 240.279 245.915 248.253 247.986 249.762 249.755 249.044 251.293 255.194 258.627 263.513 268.061 269.733 270.784 272.057 273.249 274.153 275.005 275.783 276.548 277.221 277.898 278.767 279.767 280.834 281.925 282.978 283.869 284.592 285.458 286.398 287.335 288.342 289.303 290.194 291.129 292.007 292.94 293.895 294.705 295.454 296.105 296.641 297.151 297.679 298.112 298.491 298.891 299.285 299.693 300.087 300.203 300.101 300.074 300.096 300.095 300.132 299.955 299.37 298.484 297.422 296.613 296.869 298.086 299.14 299.549 299.523 299.258 298.803 298.197 297.519 296.854 296.196 295.509 294.858 294.347 293.861 293.204 292.36 291.514 290.923 290.517 290.091 289.659 289.276 288.883 288.438 287.77 286.818 285.525 284.24 282.953 281.725 280.481 279.402 278.467 277.797 277.225 276.646 276.195 275.869 275.228 273.586 269.636 264.242 257.537 255.653 254.68 253.246 253.191 253.58 252.431 251.538 251.069 249.368 248.001 246.719 245.273 243.838 243.432 242.848 242.195 242.005 242.042 241.18 240.324 227.956 233.808 240.06 245.664 248.345 248.233 249.817 249.517 248.561 250.812 255.558 258.462 263.234 268.128 269.961 270.952 272.137 273.309 274.242 275.1 275.901 276.694 277.367 277.988 278.764 279.722 280.796 281.898 282.949 283.832 284.549 285.389 286.338 287.279 288.307 289.319 290.272 291.252 292.138 293.036 293.915 294.658 295.364 296.009 296.561 297.065 297.546 297.953 298.352 298.802 299.224 299.667 300.091 300.225 300.125 300.062 300.024 300.011 300.092 299.966 299.371 298.465 297.368 296.54 296.863 298.143 299.183 299.565 299.529 299.268 298.847 298.285 297.568 296.818 296.116 295.406 294.644 294.031 293.559 293.019 292.271 291.416 290.735 290.275 289.802 289.296 288.872 288.438 287.994 287.428 286.61 285.491 284.358 283.207 281.949 280.715 279.548 278.616 277.959 277.479 276.946 276.512 276.086 275.116 272.542 268.476 261.742 257.659 255.745 254.792 253.18 253.221 253.528 251.934 251.386 250.862 249.186 247.89 246.688 245.23 243.882 243.247 242.796 242.154 241.955 242.026 241.151 240.324 228.085 233.761 239.847 245.377 248.364 248.463 249.84 249.195 248.128 250.321 255.037 258.176 262.944 268.141 270.138 271.107 272.203 273.358 274.33 275.197 276.022 276.836 277.509 278.091 278.794 279.721 280.808 281.905 282.925 283.795 284.521 285.357 286.318 287.264 288.317 289.357 290.344 291.358 292.236 293.093 293.922 294.624 295.295 295.928 296.479 296.959 297.403 297.823 298.276 298.765 299.204 299.678 300.13 300.282 300.175 300.058 299.955 299.941 300.075 299.973 299.35 298.438 297.335 296.508 296.893 298.212 299.235 299.595 299.557 299.287 298.895 298.382 297.641 296.819 296.095 295.378 294.515 293.768 293.254 292.799 292.156 291.323 290.561 290.025 289.511 288.964 288.505 287.999 287.487 286.951 286.227 285.286 284.325 283.351 282.119 280.93 279.79 278.854 278.166 277.711 277.216 276.726 275.991 274.292 271.021 266.759 260.248 257.469 255.909 254.796 253.198 253.11 253.352 251.607 251.167 250.633 248.998 247.819 246.604 245.109 243.845 243.2 242.764 242.138 241.909 241.978 241.113 240.325 228.145 233.683 239.583 245.061 248.335 248.648 249.732 248.802 247.737 249.826 254.586 257.932 262.675 268.094 270.268 271.237 272.255 273.397 274.418 275.316 276.177 277.025 277.699 278.251 278.895 279.796 280.89 281.953 282.898 283.748 284.503 285.35 286.297 287.263 288.337 289.38 290.398 291.429 292.294 293.134 293.955 294.645 295.276 295.861 296.377 296.832 297.278 297.724 298.222 298.735 299.205 299.703 300.153 300.284 300.15 300.007 299.872 299.876 300.065 299.952 299.298 298.402 297.346 296.577 296.995 298.325 299.313 299.65 299.621 299.337 298.94 298.461 297.739 296.886 296.142 295.426 294.521 293.656 293.041 292.599 292.041 291.239 290.401 289.756 289.191 288.617 288.123 287.575 287.013 286.484 285.785 284.94 284.111 283.297 282.191 281.052 279.998 279.082 278.41 277.913 277.385 276.688 275.492 272.75 269.562 264.065 259.359 257.134 255.807 254.676 253.184 253.335 253.83 251.791 250.775 250.396 248.924 247.756 246.548 244.992 243.568 243.173 242.796 242.187 241.869 241.93 241.051 240.326 228.073 233.604 239.323 244.712 248.268 248.757 249.544 248.336 247.198 249.231 254.326 257.831 262.504 268.013 270.334 271.341 272.288 273.424 274.475 275.425 276.341 277.235 277.905 278.438 279.05 279.926 281.005 282.003 282.869 283.709 284.496 285.333 286.286 287.266 288.34 289.405 290.446 291.464 292.315 293.158 293.981 294.659 295.24 295.753 296.243 296.733 297.218 297.666 298.146 298.671 299.189 299.702 300.118 300.211 300.074 299.922 299.777 299.807 300.018 299.908 299.224 298.313 297.299 296.606 297.102 298.445 299.381 299.666 299.64 299.393 299.004 298.534 297.843 296.974 296.18 295.462 294.586 293.681 292.951 292.446 291.935 291.174 290.263 289.482 288.86 288.279 287.757 287.178 286.565 286.005 285.315 284.538 283.794 283.041 282.112 281.073 280.114 279.208 278.59 278.067 277.37 276.28 274.363 271.287 266.715 261.834 258.827 256.412 255.387 254.661 253.123 253.552 253.79 252.093 250.417 250.168 248.857 247.71 246.516 244.898 243.577 243.075 242.86 242.23 241.842 241.91 240.926 240.331 228.096 233.488 239.025 244.356 248.115 248.863 249.286 247.833 246.626 248.628 254.237 257.854 262.457 267.911 270.359 271.403 272.316 273.444 274.503 275.502 276.491 277.435 278.103 278.637 279.241 280.09 281.123 282.039 282.844 283.688 284.499 285.341 286.313 287.3 288.387 289.477 290.509 291.487 292.311 293.151 293.968 294.635 295.19 295.654 296.116 296.636 297.174 297.629 298.089 298.635 299.189 299.681 300.045 300.127 300.001 299.833 299.684 299.733 299.966 299.875 299.164 298.205 297.202 296.548 297.103 298.496 299.426 299.663 299.64 299.462 299.107 298.634 297.961 297.085 296.243 295.517 294.661 293.724 292.907 292.332 291.831 291.122 290.213 289.342 288.631 287.995 287.405 286.803 286.141 285.526 284.842 284.104 283.422 282.708 281.906 280.991 280.099 279.256 278.632 278.015 277.029 275.471 272.797 269.061 263.825 260.717 258.47 256.013 255.285 254.468 253.145 253.648 253.631 251.691 249.998 249.93 248.801 247.691 246.387 244.802 243.665 243.124 242.956 242.202 241.791 241.824 240.898 240.336 228.184 233.365 238.726 243.914 247.913 248.888 248.968 247.295 246.025 248.146 254.062 257.914 262.327 267.802 270.347 271.425 272.339 273.464 274.515 275.55 276.615 277.607 278.283 278.842 279.464 280.283 281.239 282.069 282.836 283.69 284.518 285.389 286.362 287.369 288.467 289.563 290.565 291.498 292.305 293.141 293.937 294.592 295.143 295.587 296.016 296.527 297.1 297.578 298.047 298.61 299.176 299.62 299.935 300.015 299.897 299.721 299.593 299.656 299.892 299.816 299.089 298.079 297.082 296.446 297.024 298.471 299.449 299.665 299.643 299.53 299.208 298.739 298.094 297.231 296.356 295.605 294.739 293.774 292.902 292.254 291.715 291.039 290.183 289.269 288.468 287.745 287.117 286.523 285.824 285.101 284.387 283.689 283.059 282.399 281.701 280.915 280.04 279.236 278.505 277.573 276.101 274.081 271.257 266.54 262.02 260.042 257.501 255.58 255.181 254.123 253.417 253.86 253.72 252.297 249.61 249.807 248.736 247.601 246.224 244.782 243.564 243.337 243.056 242.13 241.738 241.719 240.898 240.34 228.112 233.361 238.471 243.494 247.631 248.895 248.618 246.716 245.383 247.711 252.281 257.66 261.938 267.695 270.306 271.417 272.365 273.489 274.523 275.571 276.706 277.746 278.449 279.062 279.729 280.508 281.358 282.11 282.856 283.708 284.552 285.433 286.427 287.451 288.545 289.622 290.598 291.525 292.363 293.191 293.937 294.552 295.089 295.536 295.947 296.419 296.966 297.483 297.978 298.527 299.083 299.506 299.779 299.853 299.728 299.575 299.505 299.578 299.773 299.681 298.94 297.892 296.923 296.316 296.896 298.391 299.431 299.648 299.622 299.554 299.278 298.848 298.26 297.411 296.503 295.693 294.785 293.801 292.919 292.192 291.563 290.895 290.114 289.204 288.33 287.522 286.856 286.276 285.596 284.845 284.145 283.455 282.817 282.206 281.576 280.895 280.052 279.187 278.22 276.713 274.68 272.215 268.123 264.356 260.919 258.966 257.224 255.801 254.896 254.223 253.79 254.106 253.917 252.545 249.716 249.663 248.56 247.338 246.065 244.809 243.645 243.53 243.065 242.05 241.685 241.583 240.897 240.343 228.098 233.283 238.151 242.994 247.304 248.791 248.169 246.139 244.768 247.292 251.82 257.681 261.602 267.626 270.26 271.411 272.399 273.515 274.533 275.585 276.757 277.826 278.565 279.243 279.947 280.674 281.443 282.152 282.875 283.718 284.551 285.435 286.466 287.511 288.609 289.686 290.672 291.634 292.497 293.288 293.972 294.534 295.032 295.477 295.909 296.37 296.895 297.432 297.926 298.43 298.941 299.36 299.627 299.697 299.582 299.471 299.437 299.505 299.678 299.602 298.868 297.78 296.801 296.221 296.794 298.31 299.384 299.6 299.561 299.518 299.305 298.949 298.409 297.557 296.621 295.752 294.792 293.773 292.872 292.051 291.319 290.666 289.961 289.09 288.199 287.346 286.637 286.038 285.38 284.672 284.06 283.435 282.747 282.086 281.479 280.881 280.109 279.089 277.647 275.61 272.495 269.225 265.933 263.125 259.799 258.008 257.091 255.945 254.889 254.625 254.291 254.329 253.881 252.575 249.579 249.385 248.27 247.026 245.93 244.703 243.778 243.562 243.008 241.96 241.625 241.417 240.898 240.346 228.203 233.147 237.801 242.473 246.911 248.626 247.767 245.571 244.236 246.953 251.513 257.631 261.365 267.566 270.226 271.418 272.436 273.542 274.552 275.621 276.805 277.879 278.654 279.386 280.095 280.765 281.48 282.17 282.874 283.709 284.529 285.43 286.5 287.581 288.718 289.816 290.818 291.787 292.619 293.349 293.993 294.546 295.035 295.469 295.904 296.363 296.877 297.42 297.903 298.346 298.787 299.181 299.442 299.515 299.429 299.378 299.379 299.443 299.609 299.561 298.85 297.731 296.718 296.131 296.684 298.204 299.305 299.529 299.475 299.444 299.286 298.996 298.492 297.661 296.739 295.842 294.812 293.714 292.762 291.872 291.104 290.471 289.766 288.9 288.011 287.153 286.411 285.787 285.191 284.622 284.124 283.47 282.533 281.625 280.936 280.504 279.95 278.73 276.774 273.582 269.11 266.587 264.446 261.89 259.052 257.572 257.303 256.683 255.366 255.202 254.858 254.428 253.684 252.069 249.562 248.99 247.905 246.76 245.783 244.641 243.642 243.489 242.878 241.885 241.584 241.296 240.905 240.287 228.161 232.981 237.477 241.964 246.458 248.348 247.258 244.966 243.884 246.67 251.278 256.617 261.174 267.516 270.206 271.434 272.468 273.561 274.575 275.679 276.863 277.921 278.726 279.492 280.176 280.788 281.472 282.16 282.86 283.688 284.512 285.433 286.537 287.667 288.867 289.998 290.998 291.935 292.705 293.372 294.005 294.597 295.106 295.527 295.955 296.404 296.892 297.399 297.839 298.227 298.609 298.981 299.248 299.331 299.278 299.285 299.331 299.387 299.536 299.499 298.806 297.676 296.635 296.032 296.56 298.062 299.181 299.414 299.355 299.336 299.236 299.008 298.535 297.745 296.87 295.95 294.828 293.639 292.645 291.722 290.946 290.301 289.552 288.682 287.793 286.971 286.279 285.734 285.291 284.863 284.287 283.335 281.901 280.511 279.656 279.306 278.937 277.854 275.569 271.111 267.458 265.154 263.066 260.998 258.861 257.701 257.873 257.226 256.126 256.203 255.09 254.213 253.508 251.575 249.368 248.912 247.464 246.395 245.565 244.535 243.594 243.318 242.818 241.82 241.472 241.289 240.859 240.032 228.136 232.859 237.14 241.378 245.903 247.975 246.752 244.376 243.6 246.521 251.095 255.88 261.191 267.466 270.197 271.462 272.496 273.563 274.596 275.756 276.929 277.954 278.778 279.551 280.179 280.737 281.418 282.119 282.834 283.675 284.519 285.465 286.585 287.76 289.025 290.18 291.157 292.044 292.785 293.435 294.07 294.68 295.204 295.63 296.075 296.517 296.933 297.322 297.671 298.022 298.417 298.81 299.097 299.175 299.139 299.198 299.292 299.337 299.473 299.427 298.743 297.617 296.57 295.969 296.465 297.905 298.998 299.218 299.162 299.182 299.17 299.02 298.582 297.841 297.031 296.082 294.854 293.585 292.561 291.624 290.835 290.149 289.367 288.523 287.681 286.943 286.37 285.969 285.575 284.97 283.881 282.321 279.709 277.598 277.064 277.269 277.304 275.704 273.029 269.261 266.196 263.939 262.26 260.524 258.924 258.591 258.851 258.248 257.566 256.685 255.102 254.123 253.285 251.683 249.328 249.171 247.92 246.179 245.518 244.393 243.486 243.128 242.705 241.778 241.317 241.285 240.528 239.979 228.235 232.8 236.774 240.789 245.287 247.58 246.262 243.792 243.408 246.579 250.993 256.699 261.394 267.438 270.198 271.5 272.515 273.55 274.607 275.815 276.972 277.96 278.783 279.542 280.121 280.654 281.346 282.065 282.806 283.68 284.554 285.514 286.644 287.84 289.121 290.285 291.243 292.122 292.898 293.575 294.191 294.756 295.252 295.697 296.162 296.594 296.948 297.239 297.507 297.84 298.261 298.669 298.968 299.043 299.003 299.1 299.223 299.256 299.397 299.392 298.729 297.604 296.562 295.963 296.415 297.794 298.829 299.019 298.96 298.999 299.05 298.986 298.615 297.955 297.217 296.271 294.982 293.63 292.528 291.544 290.731 290.032 289.294 288.551 287.822 287.173 286.713 286.332 285.637 284.445 282.431 279.096 276.383 274.53 273.663 274.016 274.408 273.458 270.894 268.05 265.503 263.172 261.701 260.376 259.727 259.768 259.577 258.444 257.576 256.752 255.122 253.703 252.569 251.303 249.421 248.969 247.813 246.109 245.979 244.303 243.259 242.917 242.488 241.668 241.122 241.235 240.183 239.974 228.242 232.742 236.426 240.193 244.661 247.107 245.709 243.272 243.306 246.773 251.025 256.043 261.693 267.469 270.21 271.533 272.528 273.532 274.612 275.848 276.986 277.942 278.752 279.487 280.044 280.576 281.271 282.0 282.777 283.695 284.599 285.577 286.724 287.933 289.209 290.365 291.312 292.196 292.999 293.69 294.283 294.797 295.264 295.723 296.185 296.576 296.873 297.115 297.358 297.703 298.134 298.533 298.829 298.904 298.866 299.005 299.156 299.177 299.317 299.336 298.679 297.559 296.539 295.944 296.362 297.69 298.685 298.86 298.801 298.825 298.89 298.896 298.627 298.076 297.415 296.499 295.173 293.738 292.542 291.537 290.747 290.053 289.341 288.691 288.101 287.57 287.138 286.465 285.065 282.453 278.817 276.209 273.812 271.953 271.481 272.057 272.734 271.741 269.38 266.924 264.561 262.648 261.255 260.492 260.022 260.471 259.984 258.396 257.183 256.773 255.026 253.24 252.394 251.085 249.219 248.75 247.401 245.999 246.078 244.095 243.104 242.606 242.261 241.55 241.059 240.923 240.128 239.971 228.166 232.617 236.111 239.552 243.968 246.597 245.25 242.888 243.282 246.956 251.107 255.409 262.069 267.558 270.227 271.554 272.533 273.516 274.614 275.856 276.971 277.901 278.688 279.397 279.955 280.51 281.202 281.934 282.752 283.717 284.644 285.64 286.816 288.034 289.286 290.415 291.36 292.261 293.064 293.744 294.318 294.796 295.251 295.722 296.161 296.487 296.741 296.976 297.229 297.602 298.044 298.433 298.717 298.77 298.738 298.925 299.119 299.145 299.257 299.271 298.612 297.507 296.507 295.922 296.31 297.589 298.55 298.725 298.682 298.684 298.727 298.784 298.631 298.193 297.605 296.738 295.419 293.927 292.667 291.664 290.92 290.203 289.472 288.87 288.364 287.855 287.272 286.15 283.53 279.32 276.134 273.455 271.456 270.54 270.225 270.54 271.132 270.256 268.014 265.911 263.787 262.06 261.133 260.718 260.468 260.116 259.328 259.132 257.581 256.517 255.169 253.321 252.287 250.9 249.195 248.563 247.259 245.757 245.723 244.02 242.766 242.381 242.04 241.353 241.043 240.575 240.13 239.969 228.171 232.444 235.757 238.887 243.258 245.981 244.737 242.506 243.362 247.181 251.27 256.38 262.459 267.7 270.247 271.554 272.531 273.508 274.616 275.838 276.923 277.832 278.584 279.254 279.845 280.46 281.158 281.885 282.74 283.744 284.679 285.691 286.898 288.103 289.321 290.404 291.357 292.287 293.094 293.761 294.317 294.771 295.214 295.691 296.111 296.394 296.652 296.891 297.127 297.524 297.991 298.365 298.585 298.585 298.562 298.815 299.09 299.148 299.227 299.222 298.58 297.479 296.46 295.884 296.251 297.484 298.405 298.595 298.575 298.553 298.552 298.627 298.58 298.256 297.755 296.984 295.761 294.278 292.988 291.989 291.258 290.504 289.767 289.221 288.749 288.149 287.3 285.777 282.149 277.794 274.28 271.585 269.671 269.634 269.385 269.21 269.404 268.612 267.16 265.108 263.094 261.738 261.423 261.135 260.867 260.001 259.045 258.989 257.35 256.231 254.988 253.224 252.123 250.683 249.148 248.283 247.04 245.526 245.328 243.798 242.469 242.219 241.811 241.127 240.863 240.487 240.131 239.967 228.223 232.365 235.398 238.223 242.466 245.327 244.283 242.316 243.479 247.482 251.488 257.0 262.829 267.842 270.246 271.52 272.514 273.51 274.622 275.813 276.869 277.759 278.469 279.106 279.748 280.454 281.186 281.904 282.756 283.752 284.684 285.714 286.934 288.125 289.311 290.369 291.32 292.27 293.1 293.778 294.329 294.765 295.191 295.657 296.062 296.359 296.643 296.88 297.071 297.442 297.913 298.229 298.346 298.335 298.377 298.715 299.066 299.134 299.171 299.142 298.513 297.394 296.351 295.814 296.212 297.4 298.293 298.512 298.491 298.432 298.387 298.434 298.416 298.184 297.791 297.163 296.119 294.76 293.503 292.544 291.868 291.184 290.554 290.067 289.463 288.426 287.199 284.907 281.253 277.339 273.671 270.787 268.904 269.104 268.224 267.842 267.777 267.365 266.364 264.433 262.635 261.998 261.968 261.45 260.579 259.392 258.675 258.716 257.335 256.137 254.752 253.153 251.905 250.669 249.355 248.144 246.693 245.65 244.582 243.421 242.198 242.009 241.56 241.003 240.638 240.488 240.131 239.966 228.181 232.24 235.114 237.57 241.626 244.603 243.783 242.147 243.643 247.804 251.737 257.307 263.171 267.962 270.225 271.459 272.484 273.511 274.633 275.798 276.825 277.692 278.359 278.977 279.691 280.499 281.279 281.984 282.792 283.743 284.671 285.734 286.967 288.141 289.303 290.35 291.299 292.25 293.081 293.762 294.316 294.76 295.19 295.635 296.016 296.314 296.622 296.867 297.042 297.384 297.832 298.065 298.1 298.108 298.228 298.641 299.054 299.138 299.128 299.05 298.409 297.276 296.256 295.789 296.214 297.332 298.202 298.455 298.436 298.346 298.262 298.272 298.254 298.077 297.771 297.254 296.367 295.162 294.011 293.182 292.649 292.132 291.636 291.005 289.962 288.465 286.488 284.109 281.139 277.356 273.774 270.725 269.155 267.697 267.306 266.808 266.56 266.408 265.721 264.215 262.881 262.731 262.268 261.698 260.456 260.007 259.014 258.068 256.767 255.696 254.349 252.812 251.675 250.896 249.489 248.148 246.44 245.679 243.984 242.637 241.666 241.851 241.292 240.868 240.52 240.489 240.131 239.965 228.151 232.136 234.838 237.044 240.769 243.862 243.098 242.008 243.889 248.192 251.997 257.46 263.485 268.072 270.196 271.377 272.442 273.504 274.645 275.794 276.793 277.634 278.27 278.888 279.686 280.585 281.413 282.107 282.843 283.73 284.66 285.763 287.015 288.151 289.278 290.328 291.282 292.223 293.028 293.701 294.271 294.743 295.189 295.622 295.978 296.257 296.578 296.837 297.022 297.341 297.743 297.898 297.875 297.897 298.08 298.542 299.011 299.14 299.11 298.98 298.318 297.175 296.177 295.767 296.179 297.257 298.111 298.396 298.381 298.272 298.15 298.112 298.092 297.967 297.73 297.305 296.572 295.546 294.56 293.927 293.578 293.201 292.719 291.473 290.523 288.956 286.31 283.773 280.621 277.142 273.775 270.732 269.068 267.269 266.153 265.342 265.399 265.578 265.432 264.245 263.215 263.127 262.487 261.931 260.398 259.438 258.641 257.546 256.513 255.379 253.874 252.574 251.389 250.703 249.684 248.214 246.22 245.455 243.311 241.764 241.279 241.635 241.036 240.588 240.518 240.49 240.13 239.965 228.17 232.044 234.542 236.3 239.905 242.98 242.558 242.024 244.115 248.485 252.202 257.492 263.738 268.152 270.153 271.27 272.374 273.477 274.646 275.797 276.776 277.585 278.213 278.872 279.761 280.721 281.58 282.263 282.93 283.741 284.661 285.794 287.034 288.106 289.176 290.233 291.207 292.156 292.943 293.61 294.194 294.697 295.166 295.595 295.933 296.198 296.507 296.771 296.969 297.246 297.567 297.664 297.62 297.647 297.892 298.411 298.928 299.111 299.089 298.921 298.247 297.086 296.044 295.619 296.076 297.155 298.01 298.315 298.312 298.188 298.005 297.902 297.894 297.856 297.685 297.35 296.79 295.965 295.172 294.77 294.566 294.146 292.471 292.138 290.713 288.603 285.182 282.533 279.396 276.401 273.452 270.772 268.642 266.996 265.318 264.503 264.448 265.242 264.931 264.552 263.928 263.479 263.024 262.11 260.213 259.026 258.087 257.302 256.345 254.864 253.48 252.25 251.191 250.543 249.743 248.248 246.031 245.391 242.37 241.619 240.999 241.336 240.874 240.394 240.517 240.47 240.129 239.964 228.142 231.956 234.329 235.73 238.958 242.094 242.031 241.883 244.419 248.676 252.356 257.666 263.721 268.154 270.086 271.182 272.29 273.421 274.62 275.792 276.769 277.564 278.217 278.944 279.891 280.854 281.696 282.368 283.012 283.783 284.662 285.767 286.963 288.007 289.043 290.094 291.09 292.044 292.829 293.507 294.114 294.635 295.116 295.527 295.85 296.11 296.394 296.659 296.867 297.108 297.354 297.428 297.395 297.453 297.782 298.371 298.907 299.099 299.084 298.891 298.208 297.038 295.941 295.453 295.894 297.019 297.913 298.25 298.263 298.116 297.875 297.734 297.761 297.803 297.655 297.36 296.921 296.305 295.779 295.662 295.386 294.006 293.494 291.763 289.204 286.254 283.224 280.6 277.965 275.279 272.52 269.682 268.227 266.481 264.975 264.378 264.591 265.48 266.184 265.937 264.734 263.722 263.077 262.163 260.974 259.056 258.212 257.249 256.05 254.341 253.206 252.008 251.044 250.473 249.758 248.159 245.851 244.915 242.102 241.465 240.958 241.001 240.595 240.374 240.253 239.705 239.96 239.963 228.11 231.902 234.049 235.178 237.999 241.222 241.501 241.806 244.674 248.816 252.485 258.026 263.605 268.052 269.993 271.11 272.209 273.342 274.568 275.767 276.755 277.56 278.255 279.043 280.012 280.946 281.751 282.401 283.052 283.82 284.65 285.689 286.873 287.941 288.974 290.003 290.984 291.919 292.7 293.4 294.026 294.563 295.052 295.435 295.735 295.982 296.25 296.526 296.758 296.979 297.168 297.22 297.199 297.297 297.705 298.336 298.873 299.087 299.113 298.902 298.183 297.016 295.882 295.323 295.702 296.859 297.792 298.181 298.205 298.015 297.726 297.566 297.624 297.755 297.687 297.422 297.064 296.646 296.386 296.372 295.74 294.308 292.478 289.692 285.764 283.548 281.186 278.888 276.75 274.049 270.355 268.942 267.638 265.987 264.658 264.763 265.183 267.005 267.506 266.967 265.27 263.897 263.158 262.081 260.866 258.997 258.028 257.214 255.781 254.038 253.109 251.882 250.948 250.538 249.802 248.241 245.52 244.107 241.748 239.856 240.789 240.676 240.318 240.222 239.932 239.674 239.571 239.963 228.126 231.764 233.872 234.693 237.118 240.369 241.026 241.841 244.846 248.897 252.53 258.455 263.398 267.829 269.86 271.046 272.136 273.25 274.493 275.719 276.726 277.556 278.299 279.131 280.104 280.997 281.761 282.384 283.038 283.817 284.621 285.604 286.802 287.914 288.958 289.951 290.888 291.784 292.572 293.307 293.931 294.458 294.944 295.313 295.594 295.832 296.087 296.364 296.612 296.82 296.97 297.001 296.994 297.146 297.635 298.283 298.817 299.081 299.155 298.917 298.152 296.978 295.797 295.157 295.498 296.642 297.649 298.118 298.153 297.926 297.585 297.361 297.387 297.618 297.762 297.618 297.368 297.143 297.018 296.767 295.737 293.572 289.688 285.56 283.172 281.664 280.014 278.387 275.977 273.189 269.244 268.27 267.169 265.95 265.127 265.157 267.293 268.345 268.741 267.748 265.735 263.907 263.039 261.855 260.685 258.861 257.898 256.829 255.439 253.794 252.896 251.784 250.896 250.599 249.864 248.01 245.129 243.601 241.25 239.724 240.615 240.385 240.216 239.874 239.929 239.673 239.341 239.963 228.044 231.776 233.68 234.242 236.278 239.56 240.551 241.786 244.899 248.905 252.463 258.83 263.018 267.408 269.649 270.977 272.069 273.153 274.394 275.64 276.671 277.544 278.334 279.187 280.148 281.008 281.737 282.331 282.965 283.748 284.563 285.535 286.742 287.878 288.916 289.87 290.774 291.647 292.466 293.239 293.828 294.302 294.769 295.136 295.408 295.652 295.889 296.14 296.38 296.589 296.715 296.731 296.764 297.023 297.612 298.279 298.813 299.12 299.197 298.917 298.136 296.964 295.692 294.908 295.192 296.382 297.495 298.064 298.146 297.943 297.565 297.173 297.041 297.342 297.824 297.941 297.853 297.73 297.372 296.393 294.538 290.56 286.264 283.57 282.008 281.421 280.238 278.653 276.437 273.53 270.677 268.703 267.729 266.941 266.724 267.848 268.825 269.721 269.623 267.923 265.897 264.314 263.071 261.657 260.446 258.986 257.768 256.512 255.114 253.707 252.777 251.702 250.804 250.613 249.794 247.986 244.832 242.833 240.398 239.436 240.533 240.126 239.948 239.788 239.928 239.672 239.201 239.963 228.032 231.769 233.485 233.851 235.492 238.807 240.148 241.776 244.939 248.786 252.581 258.766 262.675 266.878 269.386 270.888 272.013 273.079 274.313 275.553 276.597 277.514 278.336 279.19 280.14 280.986 281.692 282.261 282.865 283.64 284.486 285.478 286.652 287.762 288.798 289.764 290.671 291.529 292.355 293.15 293.725 294.169 294.614 294.962 295.213 295.447 295.686 295.945 296.204 296.416 296.512 296.531 296.619 296.972 297.602 298.273 298.816 299.149 299.215 298.929 298.198 297.051 295.692 294.768 295.0 296.216 297.363 297.973 298.115 297.987 297.627 297.135 296.87 297.152 297.812 298.14 298.119 297.721 296.586 294.613 290.911 287.221 284.841 283.194 282.353 282.098 281.82 280.442 277.984 275.536 273.087 271.617 270.176 269.026 268.573 269.432 270.215 270.498 269.923 268.071 265.634 263.493 262.776 261.606 260.389 258.97 257.754 256.417 254.974 253.795 252.742 251.505 250.661 250.483 249.725 247.11 244.507 242.12 239.97 238.764 240.406 239.936 239.618 239.784 239.927 239.669 239.109 239.949 228.027 231.67 233.391 233.451 234.772 238.151 239.801 241.781 244.892 248.596 253.036 258.501 262.394 266.279 269.086 270.774 271.961 273.026 274.255 275.471 276.515 277.474 278.318 279.165 280.113 280.945 281.626 282.188 282.78 283.545 284.41 285.404 286.537 287.623 288.693 289.698 290.593 291.399 292.201 293.005 293.609 294.058 294.474 294.779 295.006 295.238 295.498 295.794 296.081 296.258 296.31 296.344 296.496 296.917 297.559 298.225 298.781 299.132 299.205 298.94 298.248 297.104 295.691 294.729 294.904 296.119 297.284 297.899 298.08 298.002 297.646 297.128 296.84 297.112 297.831 298.239 297.999 297.112 294.491 291.274 287.987 285.861 284.928 284.429 284.109 283.7 283.092 282.016 279.97 277.723 275.843 274.022 272.453 271.071 270.401 270.921 271.33 270.796 269.823 268.116 266.166 263.426 262.39 261.537 260.412 258.916 257.621 256.489 255.016 253.964 252.82 251.393 250.488 250.331 249.211 246.317 243.691 241.594 239.996 238.605 240.417 239.71 239.559 239.594 239.564 239.566 239.092 239.849 228.002 231.63 233.336 233.042 234.202 237.57 239.427 241.709 244.784 248.286 251.88 257.245 261.956 265.638 268.754 270.632 271.901 272.986 274.216 275.393 276.428 277.426 278.284 279.126 280.074 280.884 281.531 282.108 282.72 283.478 284.337 285.316 286.417 287.497 288.615 289.643 290.499 291.247 292.024 292.834 293.476 293.943 294.324 294.568 294.786 295.04 295.327 295.651 295.943 296.059 296.069 296.143 296.382 296.871 297.539 298.213 298.764 299.105 299.185 298.954 298.28 297.12 295.685 294.7 294.866 296.072 297.248 297.862 298.086 298.052 297.69 297.163 296.885 297.149 297.882 298.229 297.532 295.207 291.759 288.874 286.431 285.968 286.157 286.409 286.339 285.645 284.468 283.204 282.084 279.879 278.134 276.538 274.692 273.058 271.95 271.953 271.933 270.95 269.639 268.278 266.198 263.612 262.261 261.443 260.133 258.774 257.561 256.421 255.063 254.111 252.938 251.517 250.463 250.056 248.487 246.38 243.467 241.633 240.125 238.218 240.451 239.608 239.391 239.414 239.487 239.179 239.088 239.773 227.966 231.656 233.27 232.73 233.693 237.029 239.121 241.615 244.551 247.896 251.079 255.3 259.882 264.918 268.347 270.437 271.813 272.949 274.19 275.316 276.335 277.37 278.238 279.075 280.018 280.788 281.393 282.011 282.683 283.432 284.252 285.208 286.294 287.373 288.485 289.471 290.282 291.054 291.853 292.661 293.312 293.789 294.133 294.332 294.565 294.861 295.152 295.477 295.745 295.819 295.829 295.966 296.297 296.84 297.549 298.251 298.769 299.072 299.155 298.976 298.345 297.2 295.753 294.683 294.727 295.97 297.188 297.796 298.062 298.107 297.793 297.285 297.009 297.253 297.909 297.903 296.545 292.913 289.471 287.467 286.765 287.583 288.064 288.251 288.097 287.077 285.566 284.247 283.309 281.59 279.538 278.061 276.299 274.305 272.893 272.691 272.401 270.902 268.735 267.475 266.39 263.671 261.923 261.232 260.032 258.55 257.29 256.034 254.998 254.22 253.047 251.81 250.475 249.767 248.043 246.968 243.724 242.047 240.144 238.541 240.319 239.603 239.221 239.412 239.486 238.942 239.086 239.72 227.928 231.592 233.276 232.6 233.271 236.56 238.73 241.401 244.324 247.377 250.654 254.982 259.561 264.418 267.981 270.225 271.711 272.91 274.171 275.259 276.259 277.315 278.191 279.029 279.958 280.685 281.26 281.924 282.647 283.378 284.153 285.102 286.186 287.239 288.273 289.183 290.007 290.865 291.686 292.456 293.086 293.587 293.95 294.152 294.387 294.694 294.992 295.32 295.577 295.638 295.656 295.828 296.2 296.765 297.48 298.181 298.693 299.013 299.148 299.009 298.409 297.296 295.851 294.721 294.719 295.931 297.167 297.761 298.008 298.061 297.816 297.435 297.222 297.393 297.82 297.345 294.687 290.518 288.312 287.92 288.956 289.698 290.15 290.139 289.37 288.016 286.36 285.117 283.945 282.525 280.424 278.915 277.382 275.534 273.485 272.977 272.515 270.87 267.573 266.505 266.125 263.399 261.738 260.967 259.839 258.24 257.07 255.708 254.844 254.207 253.268 252.097 250.688 249.25 247.82 247.048 244.104 242.252 240.514 239.02 240.209 239.728 239.219 239.409 239.484 238.849 239.043 239.685 227.894 231.593 233.282 232.498 232.923 236.103 238.426 241.251 243.931 246.81 250.179 254.77 259.623 264.216 267.706 270.022 271.607 272.864 274.149 275.21 276.194 277.259 278.141 278.982 279.892 280.584 281.152 281.853 282.592 283.301 284.046 284.997 286.077 287.113 288.084 288.946 289.794 290.687 291.47 292.191 292.817 293.348 293.746 293.969 294.2 294.509 294.831 295.152 295.374 295.42 295.451 295.654 296.073 296.688 297.429 298.12 298.641 298.984 299.164 299.042 298.455 297.379 295.978 294.848 294.781 295.968 297.199 297.807 298.038 298.046 297.857 297.637 297.447 297.464 297.629 297.044 293.872 289.946 289.16 289.836 291.52 292.173 292.122 291.606 289.978 288.388 287.049 285.739 284.441 283.057 281.191 279.556 278.088 276.118 273.98 272.927 272.455 269.552 267.051 265.946 264.956 262.981 261.612 260.897 259.617 257.999 256.739 255.589 254.793 254.3 253.401 252.321 250.939 249.699 247.551 246.914 244.012 241.993 240.755 238.997 240.539 239.753 239.23 239.127 239.365 238.839 238.955 239.659 227.884 231.53 233.351 232.525 232.785 235.798 238.249 240.98 243.59 246.145 249.625 254.594 259.843 264.38 267.602 269.83 271.502 272.804 274.108 275.161 276.138 277.201 278.087 278.933 279.815 280.481 281.065 281.787 282.515 283.198 283.933 284.881 285.956 286.998 287.941 288.781 289.636 290.497 291.224 291.933 292.566 293.085 293.496 293.746 293.991 294.311 294.649 294.939 295.109 295.165 295.24 295.486 295.952 296.632 297.411 298.101 298.614 298.958 299.157 299.068 298.522 297.517 296.198 295.095 294.984 296.055 297.195 297.808 298.044 298.028 297.941 297.901 297.676 297.462 297.42 296.924 293.758 290.78 291.819 293.222 293.757 293.904 293.648 292.927 291.062 288.818 287.373 286.429 285.187 283.684 281.781 279.991 278.33 276.576 274.258 272.925 271.923 268.544 266.699 265.517 264.312 262.547 261.611 260.928 259.449 257.963 256.689 255.498 254.777 254.315 253.508 252.424 251.474 249.89 247.56 246.881 243.894 241.848 240.932 239.399 240.686 239.916 239.254 239.09 239.15 238.827 238.888 239.641 227.871 231.577 233.403 232.61 232.785 235.591 238.216 240.761 243.178 245.461 249.009 254.764 258.93 265.147 267.696 269.641 271.391 272.72 274.036 275.106 276.087 277.133 278.02 278.874 279.718 280.366 280.987 281.713 282.4 283.066 283.806 284.719 285.781 286.841 287.775 288.595 289.433 290.259 290.997 291.768 292.388 292.808 293.177 293.469 293.742 294.069 294.406 294.641 294.79 294.92 295.071 295.342 295.829 296.552 297.351 298.043 298.559 298.927 299.138 299.085 298.599 297.697 296.472 295.426 295.274 296.218 297.198 297.727 297.916 297.917 298.014 298.189 297.936 297.518 297.437 297.473 294.352 293.154 293.648 294.603 294.903 294.532 293.998 293.103 291.459 288.904 287.509 286.667 285.291 283.832 282.147 280.167 278.234 276.353 274.632 272.985 271.202 268.958 266.678 265.374 264.167 262.415 261.582 260.724 258.867 257.601 256.755 255.721 254.921 254.274 253.513 252.478 251.522 250.262 248.312 246.843 244.37 242.269 241.099 239.401 240.771 240.612 239.262 239.09 239.104 238.776 238.85 239.629 227.819 231.538 233.52 232.788 232.936 235.59 238.274 240.59 242.616 244.775 248.46 255.098 260.941 265.968 267.939 269.55 271.3 272.629 273.942 275.049 276.045 277.062 277.949 278.819 279.634 280.269 280.924 281.644 282.284 282.942 283.684 284.542 285.572 286.626 287.529 288.304 289.159 290.038 290.847 291.662 292.232 292.557 292.897 293.209 293.467 293.774 294.088 294.303 294.48 294.66 294.83 295.139 295.723 296.526 297.333 298.019 298.587 299.035 299.26 299.147 298.635 297.79 296.665 295.677 295.573 296.459 297.361 297.788 297.898 297.896 298.058 298.341 298.233 297.893 297.849 298.231 296.307 295.528 295.451 295.719 295.63 294.991 293.998 292.77 290.723 289.12 287.572 286.418 285.101 283.828 282.368 280.284 278.033 276.342 274.597 272.751 270.469 268.357 266.244 265.131 264.075 262.957 261.749 260.459 258.791 257.686 257.614 257.374 255.196 254.227 253.33 252.416 251.457 250.184 248.502 246.257 244.684 242.888 241.238 240.031 240.547 240.68 239.311 239.047 239.098 238.727 238.827 239.623 227.814 231.574 233.641 233.09 233.183 235.746 238.365 240.53 242.272 244.032 247.873 255.44 262.21 266.697 268.211 269.518 271.227 272.544 273.844 274.991 276.007 276.993 277.874 278.763 279.559 280.186 280.867 281.58 282.179 282.832 283.568 284.376 285.378 286.415 287.273 288.027 288.93 289.865 290.678 291.462 291.993 292.301 292.644 292.926 293.142 293.431 293.732 293.939 294.138 294.339 294.539 294.964 295.694 296.561 297.35 298.036 298.666 299.181 299.408 299.23 298.697 297.938 296.923 295.969 295.809 296.603 297.445 297.807 297.906 297.942 298.094 298.369 298.467 298.282 298.144 297.894 297.73 297.049 296.865 296.49 295.975 295.179 293.957 292.601 290.967 289.216 287.685 286.47 285.285 283.949 282.623 280.54 277.782 275.85 274.44 272.215 270.067 268.205 266.541 265.199 263.981 262.672 261.439 260.12 258.524 258.067 258.001 257.801 256.001 254.15 252.925 252.078 251.306 250.038 247.564 245.64 244.971 243.211 242.014 240.019 240.356 240.65 239.373 238.989 239.057 238.71 238.811 239.616 227.813 231.557 233.799 233.439 233.497 236.113 238.616 240.556 241.83 243.399 247.358 255.615 262.87 267.427 268.541 269.486 271.158 272.468 273.75 274.931 275.969 276.925 277.795 278.698 279.486 280.111 280.815 281.517 282.08 282.731 283.45 284.219 285.205 286.224 287.06 287.835 288.771 289.699 290.448 291.176 291.708 292.048 292.387 292.612 292.794 293.086 293.376 293.565 293.783 294.02 294.309 294.886 295.707 296.551 297.313 298.046 298.752 299.31 299.516 299.303 298.79 298.105 297.178 296.248 296.026 296.71 297.464 297.744 297.844 297.954 298.094 298.305 298.588 298.496 297.747 296.594 297.206 298.149 297.715 297.018 296.191 295.268 293.957 292.555 291.195 289.203 287.815 286.835 285.573 284.235 282.937 280.939 277.855 275.538 273.943 271.835 269.706 267.794 266.425 264.958 263.853 262.522 261.27 259.46 258.305 258.192 258.156 257.905 256.9 253.936 252.349 251.577 251.075 249.588 247.027 245.436 244.477 243.354 241.86 239.941 240.615 240.584 239.38 238.993 238.913 238.71 238.8 239.61 227.741 231.541 233.956 233.816 233.947 236.444 238.859 240.686 241.393 242.73 246.873 255.762 263.578 268.152 268.963 269.492 271.094 272.409 273.661 274.863 275.922 276.856 277.709 278.613 279.4 280.036 280.756 281.439 281.982 282.629 283.323 284.055 285.021 286.018 286.876 287.698 288.601 289.426 290.116 290.851 291.421 291.786 292.087 292.268 292.462 292.762 293.006 293.176 293.432 293.738 294.148 294.842 295.656 296.448 297.291 298.163 298.947 299.485 299.623 299.38 298.847 298.128 297.237 296.412 296.256 296.899 297.6 297.808 297.84 298.005 298.185 298.317 298.622 298.422 297.307 295.433 295.882 297.951 298.736 297.273 296.383 295.386 293.974 292.512 291.24 289.166 287.757 286.802 285.61 284.263 283.003 281.136 278.131 275.565 273.713 271.705 269.385 267.392 266.062 264.967 263.895 262.763 261.242 259.278 258.309 258.283 258.058 257.645 256.762 254.817 251.929 251.198 250.876 249.212 247.377 246.117 243.845 243.363 242.19 240.181 240.875 240.478 239.925 238.998 238.803 238.71 238.792 239.611 227.728 231.559 234.132 234.281 234.441 236.906 239.21 240.864 241.159 242.195 246.469 255.955 264.085 268.717 269.383 269.629 271.062 272.38 273.6 274.8 275.87 276.805 277.645 278.532 279.323 279.97 280.682 281.345 281.897 282.551 283.217 283.923 284.858 285.82 286.695 287.545 288.374 289.111 289.813 290.578 291.14 291.499 291.807 292.024 292.228 292.465 292.646 292.854 293.171 293.492 293.953 294.739 295.651 296.578 297.542 298.398 299.09 299.513 299.581 299.346 298.848 298.127 297.268 296.496 296.274 296.803 297.545 297.863 297.927 298.172 298.43 298.444 298.39 298.325 297.057 295.758 296.036 296.932 297.638 297.164 296.546 295.633 294.029 292.36 291.136 289.836 287.894 286.629 285.189 284.056 282.758 281.127 278.374 275.862 273.957 271.984 269.483 267.383 265.628 264.928 263.975 262.932 260.948 259.12 258.508 258.32 257.718 257.099 256.29 254.934 251.669 250.954 250.533 248.88 248.138 247.37 244.187 243.688 242.549 240.644 240.987 240.374 240.265 238.921 238.745 238.711 238.782 239.613 227.693 231.571 234.322 234.766 234.98 237.447 239.69 241.056 240.969 241.735 246.113 256.632 264.484 269.16 269.754 269.788 271.036 272.355 273.56 274.739 275.811 276.765 277.607 278.474 279.266 279.919 280.602 281.236 281.812 282.476 283.116 283.817 284.74 285.668 286.536 287.392 288.169 288.858 289.575 290.304 290.82 291.204 291.571 291.815 291.99 292.163 292.337 292.611 292.97 293.312 293.874 294.786 295.8 296.805 297.743 298.43 298.937 299.277 299.365 299.252 298.912 298.262 297.432 296.655 296.269 296.605 297.351 297.803 297.95 298.218 298.437 298.278 298.037 297.848 296.922 296.285 296.533 296.943 296.964 296.846 296.569 295.785 294.131 292.307 291.128 289.927 288.011 286.418 284.92 283.561 282.312 280.991 278.704 276.043 274.425 272.456 269.576 266.956 265.476 265.187 263.885 262.196 260.454 259.11 258.577 258.166 257.341 256.585 255.724 254.567 251.28 250.843 249.934 248.671 248.692 247.542 244.638 243.632 242.427 241.758 241.287 240.391 240.191 238.835 238.735 238.734 238.776 239.617 227.625 231.576 234.46 235.3 235.662 238.036 240.325 241.266 240.83 241.319 245.845 257.25 264.811 269.493 270.082 269.972 271.003 272.327 273.528 274.681 275.747 276.732 277.587 278.44 279.229 279.885 280.522 281.121 281.72 282.393 283.004 283.723 284.663 285.563 286.402 287.256 287.997 288.67 289.39 290.053 290.537 290.974 291.366 291.569 291.711 291.883 292.096 292.412 292.781 293.194 293.958 294.998 296.018 296.972 297.783 298.301 298.671 298.963 299.124 299.204 299.027 298.392 297.563 296.833 296.43 296.666 297.381 297.879 298.032 298.144 298.079 298.143 297.171 296.842 295.664 296.518 296.785 296.988 297.022 296.88 296.604 295.86 294.234 292.456 291.353 290.026 288.091 286.331 284.658 283.307 281.842 280.675 278.317 275.965 274.329 272.235 269.701 266.898 265.926 265.08 263.144 261.426 260.225 259.199 258.535 257.973 256.862 256.044 255.195 253.913 251.295 250.924 250.391 249.15 249.087 247.613 244.768 243.753 241.955 242.786 241.58 240.444 240.183 238.829 238.699 238.766 238.774 239.623 227.622 231.583 234.625 235.827 236.369 238.642 240.87 241.558 240.703 240.927 245.627 257.448 265.01 269.688 270.385 270.247 270.99 272.273 273.488 274.618 275.674 276.698 277.581 278.433 279.216 279.864 280.447 281.014 281.632 282.297 282.884 283.631 284.598 285.439 286.217 287.052 287.785 288.489 289.231 289.893 290.404 290.847 291.113 291.192 291.357 291.61 291.867 292.174 292.537 293.066 294.06 295.22 296.227 297.111 297.806 298.203 298.462 298.681 298.894 299.177 299.113 298.413 297.566 296.964 296.661 296.851 297.496 298.018 298.192 298.007 297.656 296.778 296.53 296.321 296.179 296.807 297.016 297.133 297.155 297.089 296.722 295.925 294.343 292.884 291.66 289.967 288.238 286.265 284.544 282.857 281.319 279.99 277.914 275.75 274.12 272.082 269.648 267.347 266.435 265.119 262.753 261.103 260.245 259.308 258.387 257.727 256.514 255.619 254.722 253.286 251.499 251.216 250.931 250.201 249.142 247.671 244.716 244.161 242.285 242.932 241.853 240.509 240.291 238.741 238.672 238.789 238.771 239.629 227.58 231.54 234.828 236.353 237.134 239.222 241.377 241.795 240.616 240.607 245.458 257.489 264.915 269.604 270.543 270.53 271.034 272.198 273.424 274.557 275.618 276.665 277.577 278.439 279.213 279.841 280.398 280.961 281.589 282.254 282.849 283.613 284.54 285.277 285.985 286.818 287.595 288.365 289.144 289.814 290.282 290.605 290.726 290.809 291.075 291.361 291.615 291.991 292.43 293.027 294.126 295.403 296.484 297.287 297.729 297.833 297.92 298.119 298.39 298.745 298.753 298.166 297.482 296.945 296.529 296.536 297.059 297.691 298.178 298.065 297.254 296.229 296.196 296.486 296.74 296.958 297.153 297.237 297.297 297.306 296.651 296.006 294.534 293.201 291.87 289.671 288.307 286.584 284.647 282.764 281.052 279.335 277.614 275.659 274.231 272.317 269.819 267.615 266.595 264.873 262.442 260.97 260.48 259.424 258.472 257.519 256.331 255.311 254.403 253.055 251.786 251.704 251.208 250.219 249.149 247.761 245.42 244.64 243.159 243.402 242.297 240.632 240.243 238.714 238.668 238.796 238.77 239.628 227.553 231.57 235.0 236.816 237.876 239.783 241.816 241.975 240.569 240.28 245.285 257.373 264.553 269.268 270.509 270.735 271.122 272.122 273.339 274.492 275.574 276.634 277.568 278.44 279.2 279.8 280.353 280.931 281.573 282.262 282.91 283.696 284.552 285.2 285.873 286.735 287.569 288.362 289.08 289.627 289.959 290.177 290.31 290.542 290.913 291.204 291.501 291.985 292.486 293.158 294.413 295.751 296.672 297.147 297.253 297.126 297.134 297.317 297.496 297.667 297.721 297.165 296.777 296.461 296.246 296.403 296.942 297.6 298.285 298.608 297.283 296.222 296.154 296.444 296.71 297.041 297.328 297.4 297.397 297.328 296.577 295.991 294.276 292.327 291.713 290.938 289.34 287.125 285.067 283.039 281.125 278.975 277.232 275.636 274.318 272.387 269.953 267.731 266.677 264.789 262.405 261.398 260.463 259.356 258.255 257.257 256.096 255.039 254.05 253.068 251.976 251.85 250.975 250.024 249.264 247.938 246.297 244.98 243.836 244.045 242.738 240.803 240.141 238.75 238.662 238.799 238.777 239.604 227.543 231.548 235.19 237.329 238.586 240.364 242.197 242.123 240.455 240.013 245.176 256.247 263.873 268.634 270.263 270.848 271.227 272.057 273.236 274.416 275.534 276.607 277.553 278.436 279.176 279.742 280.302 280.899 281.543 282.277 283.011 283.827 284.632 285.251 285.936 286.824 287.671 288.385 288.928 289.296 289.517 289.747 290.022 290.414 290.853 291.194 291.579 292.089 292.554 293.365 294.859 296.111 296.56 296.578 296.515 296.38 296.287 296.238 296.119 295.992 295.446 295.371 295.167 295.323 295.954 296.362 297.01 297.689 298.517 298.908 297.732 296.504 296.262 296.406 296.713 297.168 297.577 297.651 297.561 297.398 296.572 295.917 294.741 293.807 293.101 292.297 290.728 288.428 285.955 283.56 281.432 279.05 276.88 275.303 274.167 272.305 269.884 267.717 266.489 264.529 262.732 260.991 260.037 258.931 257.817 256.746 255.605 254.732 253.873 253.063 252.238 251.936 251.089 250.151 249.295 248.144 246.793 246.339 245.234 244.681 243.232 241.044 240.211 239.12 238.665 238.781 238.783 239.581 227.503 231.553 235.349 237.734 239.219 240.859 242.508 242.252 240.326 239.798 244.975 255.165 262.934 267.454 269.653 270.77 271.322 272.014 273.11 274.314 275.487 276.586 277.538 278.431 279.149 279.681 280.236 280.799 281.385 282.137 282.947 283.812 284.667 285.368 286.087 286.921 287.67 288.212 288.586 288.935 289.282 289.656 290.059 290.446 290.845 291.291 291.779 292.173 292.559 293.66 295.303 296.151 295.961 295.735 295.695 295.414 295.023 294.498 293.73 293.764 293.876 293.9 294.021 293.897 294.451 295.454 295.777 296.787 298.38 299.022 298.555 296.903 296.31 296.349 296.793 297.328 297.695 297.815 297.738 297.352 296.447 295.729 295.128 294.535 293.799 292.901 291.655 289.763 286.947 284.38 281.969 279.398 276.824 275.069 273.876 272.202 269.6 267.752 266.412 264.361 262.708 261.227 260.142 258.583 257.399 256.182 254.833 254.095 253.446 252.781 252.168 252.001 251.187 250.067 249.396 248.395 246.809 246.858 245.65 245.152 243.836 241.326 240.258 239.795 238.603 238.714 238.79 239.573 227.467 231.503 235.481 238.215 239.792 241.295 242.713 242.228 240.157 239.687 244.776 253.434 262.014 265.862 268.647 270.402 271.295 271.997 273.009 274.201 275.43 276.578 277.533 278.431 279.142 279.641 280.106 280.518 280.938 281.613 282.457 283.401 284.407 285.263 286.009 286.792 287.52 288.085 288.591 289.191 289.692 290.062 290.401 290.685 291.021 291.477 291.879 292.2 292.874 294.323 295.623 295.796 295.287 294.88 294.421 293.909 292.685 292.107 292.809 294.228 295.193 295.394 295.197 294.372 293.855 293.553 294.094 295.466 298.276 300.47 299.213 297.47 296.385 296.177 296.694 297.262 297.698 297.757 297.765 296.953 296.08 295.404 294.981 294.486 293.783 293.016 292.144 290.693 288.399 285.452 283.052 280.299 277.147 275.165 273.787 272.156 269.507 267.814 266.366 264.481 262.825 261.386 259.874 258.183 256.817 255.681 254.33 253.518 253.007 252.801 252.411 252.05 251.477 250.316 249.524 248.686 248.061 247.436 246.48 245.465 244.478 241.685 240.353 239.849 238.534 238.627 238.798 239.567 227.486 231.504 235.599 238.63 240.345 241.702 242.762 242.013 239.95 239.528 244.58 252.555 260.567 263.98 267.156 269.741 271.125 271.971 272.939 274.089 275.362 276.576 277.533 278.42 279.139 279.565 279.862 280.045 280.24 280.796 281.677 282.711 283.863 284.859 285.679 286.573 287.518 288.402 289.303 290.129 290.539 290.704 290.983 291.353 291.72 292.028 292.142 292.423 293.479 295.028 295.735 295.24 294.328 293.751 292.229 290.105 290.78 292.866 295.116 297.267 298.183 297.73 296.958 296.281 295.34 294.179 293.667 294.82 298.951 301.314 300.402 297.94 296.475 296.041 296.542 297.139 297.616 297.718 297.185 296.53 295.778 295.194 294.749 294.154 293.359 292.586 291.988 291.153 289.758 287.468 285.16 282.065 278.191 275.556 273.744 272.185 269.9 267.865 266.376 264.527 262.814 261.08 259.584 258.044 256.768 255.449 254.002 253.145 252.94 252.914 252.782 252.179 251.81 250.728 249.656 249.281 248.702 248.163 246.932 245.411 244.327 242.056 240.445 239.722 238.459 238.538 238.811 239.558 227.371 231.443 235.766 239.045 240.853 242.038 242.672 241.652 239.705 239.41 244.345 251.666 257.672 261.785 264.846 268.692 270.757 271.893 272.887 273.981 275.283 276.574 277.531 278.394 279.094 279.406 279.297 279.186 279.134 279.504 280.359 281.822 283.06 284.171 285.127 286.262 287.57 289.022 290.337 291.255 291.55 291.573 291.97 292.596 293.039 293.131 292.942 293.122 294.197 295.424 295.499 294.394 293.028 290.163 287.491 288.247 291.932 297.141 299.514 298.994 298.62 298.401 298.063 297.721 298.695 297.807 297.504 297.818 298.14 300.07 300.376 298.268 296.371 295.966 296.43 297.002 297.573 297.754 297.178 296.34 295.634 295.125 294.54 293.79 292.902 292.028 291.493 291.053 290.296 289.149 287.44 284.245 280.168 276.151 273.807 272.114 269.979 268.009 266.337 264.618 262.74 260.898 259.42 257.937 256.654 255.261 253.778 253.046 253.058 253.041 253.141 252.258 251.789 250.981 249.766 249.59 249.334 248.793 247.649 245.936 244.475 242.484 240.628 239.668 238.414 238.465 238.815 239.556 227.337 231.471 235.896 239.359 241.322 242.291 242.433 241.121 239.462 239.413 244.143 250.674 254.86 258.442 262.621 267.031 270.007 271.66 272.818 273.867 275.179 276.561 277.513 278.325 278.93 278.894 278.603 278.333 278.016 278.17 278.805 279.937 281.689 283.019 282.863 284.815 287.29 289.628 290.857 291.811 292.276 292.543 293.268 294.117 294.559 294.623 294.495 294.55 295.007 295.335 294.736 293.01 290.32 286.082 284.997 288.848 295.284 299.789 298.935 298.743 298.585 298.505 298.311 298.685 299.291 300.761 301.761 299.783 298.433 298.515 298.091 297.496 295.951 295.9 296.389 296.797 297.361 297.71 297.054 296.199 295.599 295.114 294.366 293.482 292.528 291.616 291.032 290.727 290.363 289.712 288.467 285.771 281.434 277.158 274.113 272.204 269.659 268.062 266.485 264.892 262.976 261.069 259.46 258.042 256.615 255.263 253.997 253.375 253.471 253.272 253.252 252.684 251.876 251.068 249.997 249.821 249.89 249.311 248.238 246.707 244.036 242.898 240.859 239.799 238.308 238.416 238.811 239.557 227.317 231.386 235.992 239.656 241.719 242.438 242.013 240.58 239.207 239.472 243.983 249.62 253.132 256.207 260.833 265.231 268.882 271.159 272.664 273.746 275.065 276.511 277.468 278.221 278.611 278.342 278.367 278.252 277.886 277.822 278.343 279.097 279.987 280.923 282.023 283.91 286.024 288.169 289.8 291.099 291.665 292.26 293.119 293.761 293.824 294.057 294.415 294.752 294.84 294.431 293.222 291.5 286.934 283.668 285.632 291.307 298.216 298.65 298.332 298.434 298.705 299.018 299.066 299.715 300.312 302.595 303.634 301.352 298.563 297.425 296.867 296.444 295.56 295.849 296.386 296.535 296.884 297.275 296.727 295.995 295.519 295.039 294.265 293.415 292.501 291.531 290.826 290.459 290.152 289.759 288.899 286.583 282.474 278.369 274.822 272.515 269.842 267.958 266.579 265.205 263.179 261.229 259.688 258.208 256.889 255.61 254.475 254.33 254.276 253.595 253.186 252.805 252.196 251.201 250.314 250.233 250.271 249.779 248.724 247.103 243.686 243.4 241.116 239.647 238.108 238.387 238.826 239.56 227.31 231.396 236.108 239.988 242.074 242.514 241.53 239.98 238.952 239.606 243.826 248.627 251.543 254.279 259.231 263.566 267.494 270.404 272.382 273.588 274.911 276.401 277.39 278.114 278.314 278.229 278.48 278.766 278.49 278.428 278.846 279.527 280.473 281.027 282.256 284.124 286.112 287.272 287.97 288.944 289.552 290.153 290.717 290.441 291.138 291.427 292.016 292.937 293.205 292.662 291.177 287.987 284.137 283.797 288.227 294.767 298.407 298.239 298.275 298.631 298.831 299.067 298.876 299.173 300.119 302.843 304.203 304.013 300.823 298.612 297.481 295.938 295.217 295.848 296.395 296.391 296.523 296.467 296.331 295.811 295.451 295.008 294.277 293.509 292.653 291.666 290.893 290.436 289.999 289.587 288.913 286.934 283.145 278.893 276.562 273.5 270.278 268.191 266.92 265.366 263.292 261.445 259.922 258.578 257.267 256.114 255.511 255.357 254.958 253.884 253.23 252.782 252.248 251.413 250.761 250.728 250.545 250.108 248.96 248.587 244.276 243.769 241.352 239.381 237.925 238.355 238.852 239.562 227.252 231.378 236.173 240.2 242.428 242.462 240.95 239.309 238.708 239.756 243.674 247.6 250.165 252.685 258.004 261.954 265.856 269.368 271.931 273.366 274.697 276.212 277.271 278.022 278.107 278.304 279.595 280.393 279.988 279.856 280.328 281.03 281.519 282.11 283.295 284.871 286.922 287.392 287.553 287.098 287.007 287.437 287.321 286.495 285.822 285.051 285.016 285.876 286.778 286.536 285.095 283.811 283.483 286.807 292.109 296.935 298.301 298.246 299.014 298.903 298.578 298.4 298.647 298.949 300.228 301.841 303.965 305.117 302.244 299.607 297.677 296.044 295.214 295.877 296.399 296.375 296.39 296.403 296.158 295.723 295.427 295.005 294.321 293.586 292.746 291.787 290.999 290.473 289.967 289.519 288.88 287.103 283.695 279.842 277.526 275.135 271.272 268.465 267.189 265.576 263.48 261.617 260.206 258.951 257.815 256.754 256.931 256.877 255.731 254.229 253.382 252.866 252.343 251.771 251.367 251.326 250.854 250.249 249.867 249.127 244.333 244.002 241.647 239.239 237.816 238.318 238.89 239.562 227.208 231.334 236.233 240.418 242.688 242.352 240.321 238.592 238.511 240.029 243.553 246.821 249.082 251.492 255.804 260.3 263.938 267.896 271.175 273.008 274.38 275.883 277.07 277.946 278.21 279.082 280.271 281.241 281.832 281.666 282.511 283.322 283.509 284.062 285.752 286.706 287.913 288.789 288.714 288.419 288.104 288.166 287.446 285.866 284.316 282.722 281.707 281.773 282.356 282.597 281.739 282.722 286.201 291.402 296.577 298.171 298.35 298.466 298.782 298.536 298.219 298.389 298.829 299.542 300.714 300.586 302.944 303.176 301.334 299.274 297.537 295.918 295.384 295.93 296.377 296.398 296.382 296.422 296.114 295.753 295.42 294.958 294.326 293.614 292.78 291.862 291.082 290.495 289.967 289.515 288.876 287.263 284.301 280.831 278.497 276.069 272.254 268.854 267.477 266.058 263.74 261.803 260.425 259.308 258.201 257.17 257.076 257.272 256.54 255.183 253.853 253.131 252.763 252.783 252.02 251.888 251.169 250.211 249.908 249.405 245.473 244.635 241.957 239.139 237.755 238.335 238.922 239.563 227.132 231.272 236.253 240.627 242.917 242.203 239.659 237.885 238.348 240.267 243.547 246.343 248.165 250.661 254.083 257.073 261.911 266.394 270.261 272.562 274.03 275.489 276.807 277.861 278.601 279.502 280.575 281.729 282.558 283.324 284.329 285.029 285.611 286.0 287.247 288.62 289.763 290.447 290.401 290.254 290.841 290.923 290.423 288.834 287.225 285.515 283.85 283.039 282.95 282.365 283.293 286.634 291.024 296.01 299.024 298.508 298.119 298.396 298.256 298.18 298.428 298.82 299.418 301.098 301.543 301.446 301.038 299.46 298.816 298.318 297.651 296.105 295.612 296.048 296.328 296.269 296.233 296.241 296.074 295.774 295.355 294.839 294.273 293.606 292.792 291.913 291.132 290.499 289.988 289.533 288.871 287.414 284.868 281.697 278.856 276.197 272.804 269.468 268.002 266.315 264.146 261.996 260.597 259.571 258.455 257.344 257.127 257.513 257.538 255.795 254.79 253.614 252.899 253.468 252.89 252.353 251.327 250.091 250.15 249.618 246.085 245.331 242.238 238.839 237.731 238.368 238.953 239.567 227.11 231.233 236.253 240.802 243.113 242.046 238.992 237.238 238.222 240.592 243.679 246.0 247.455 250.124 253.213 255.913 259.481 265.243 269.32 272.06 273.688 275.11 276.511 277.74 278.745 279.602 280.676 281.808 282.755 283.806 284.827 285.712 286.608 287.804 288.854 290.089 290.786 290.99 291.36 291.077 292.125 293.433 294.115 292.9 291.5 290.472 289.712 288.932 288.243 287.799 288.967 291.397 294.913 297.932 298.839 298.186 297.98 298.246 298.219 298.344 298.812 299.636 299.652 301.637 303.127 302.295 300.351 297.294 296.229 297.216 297.297 296.156 295.853 296.189 296.261 296.086 296.02 296.05 295.962 295.73 295.291 294.768 294.238 293.566 292.72 291.863 291.117 290.507 290.034 289.556 288.852 287.545 285.371 282.37 279.007 276.144 273.068 270.2 268.961 266.715 264.638 262.237 260.77 259.733 258.596 257.71 257.623 258.009 258.235 257.157 255.601 254.161 253.309 253.621 253.297 252.521 251.231 249.845 250.132 249.729 246.788 245.786 242.561 238.587 237.675 238.386 238.989 239.572 227.095 231.175 236.262 240.94 243.292 241.916 238.418 236.641 238.019 240.907 243.998 245.936 247.314 249.881 252.787 255.176 257.899 264.078 268.392 271.511 273.355 274.775 276.214 277.586 278.693 279.576 280.591 281.604 282.57 283.693 284.775 285.617 286.766 288.119 289.405 290.369 290.758 290.777 291.108 291.252 292.239 293.634 294.963 295.57 295.287 295.316 295.097 294.846 293.824 293.273 294.08 295.54 296.691 297.605 298.275 297.796 297.799 298.243 298.34 298.48 298.805 299.795 300.157 303.297 304.527 302.462 299.27 296.473 295.371 296.416 296.546 296.203 296.096 296.308 296.167 295.925 295.854 295.852 295.804 295.649 295.239 294.706 294.167 293.468 292.588 291.749 291.065 290.502 290.067 289.581 288.842 287.604 285.634 282.805 279.147 276.133 273.418 270.136 268.945 267.313 264.975 262.623 260.952 260.031 259.059 258.398 259.068 258.726 258.821 257.841 257.092 254.804 253.77 253.853 253.475 252.391 250.981 249.684 250.07 249.819 248.452 246.171 242.83 238.385 237.6 238.411 239.028 239.573 227.035 231.127 236.237 241.039 243.421 241.815 237.971 236.15 237.882 241.148 244.605 246.134 247.391 249.937 252.488 254.992 257.466 261.936 267.518 270.873 272.994 274.477 275.92 277.385 278.558 279.436 280.361 281.247 282.165 283.207 284.138 284.996 286.345 287.962 289.575 290.609 290.289 290.642 291.172 291.632 292.568 293.83 295.209 296.069 296.36 296.577 296.741 297.0 296.999 296.622 296.597 297.003 296.835 297.33 297.511 297.298 297.533 298.102 298.226 298.279 298.502 299.579 301.068 304.177 304.984 302.366 299.204 297.088 295.501 295.944 296.557 296.27 296.309 296.316 296.024 295.808 295.772 295.705 295.642 295.55 295.166 294.584 294.007 293.308 292.444 291.645 291.008 290.476 290.066 289.6 288.847 287.635 285.748 283.018 279.243 275.747 273.716 270.229 268.597 267.545 265.207 262.901 261.496 260.769 260.154 260.208 259.72 259.59 259.3 258.41 257.389 255.517 254.195 254.005 253.376 252.071 250.891 249.661 250.297 249.841 248.564 246.585 242.788 238.135 237.53 238.434 239.069 239.576 226.981 231.063 236.188 241.094 243.534 241.808 237.591 235.7 237.773 241.583 246.256 245.727 247.307 249.593 250.967 254.773 257.31 260.672 267.099 270.313 272.658 274.258 275.699 277.189 278.392 279.277 280.159 281.049 281.88 282.766 283.557 284.399 285.705 287.372 288.975 290.366 290.18 290.409 291.413 292.363 293.013 293.82 294.57 295.373 295.977 296.632 297.064 297.417 297.348 297.314 297.049 296.923 296.992 297.107 297.003 296.837 297.117 297.617 298.017 298.12 298.204 298.686 300.727 303.954 304.793 302.14 299.651 297.121 295.317 295.253 296.514 296.441 296.357 296.155 295.855 295.689 295.644 295.554 295.511 295.438 295.045 294.425 293.824 293.144 292.341 291.595 290.969 290.433 290.029 289.607 288.867 287.642 285.788 283.124 279.413 275.552 273.688 270.524 268.237 267.258 265.225 263.323 262.186 261.8 261.658 260.818 260.236 260.162 259.724 258.8 257.668 256.07 254.34 253.797 252.848 251.788 250.92 249.556 250.555 249.741 248.606 246.908 242.838 238.005 237.506 238.448 239.104 239.58 226.955 230.997 236.107 241.113 243.67 241.867 237.362 235.403 237.747 242.155 246.476 245.864 246.638 248.985 251.468 254.008 257.113 260.232 266.102 269.825 272.316 274.053 275.512 277.011 278.232 279.126 279.908 280.955 281.671 282.347 282.978 283.816 285.156 286.725 288.244 289.906 290.165 290.666 291.679 292.63 293.398 294.034 294.277 294.704 295.428 296.196 296.652 297.065 297.218 297.367 297.274 297.306 297.372 297.252 297.079 296.794 296.95 297.61 298.06 298.172 298.176 298.726 300.889 303.533 303.914 301.346 299.175 297.156 295.301 296.103 296.53 296.506 296.205 295.915 295.674 295.564 295.501 295.409 295.387 295.302 294.919 294.344 293.73 293.008 292.233 291.538 290.922 290.389 289.998 289.603 288.886 287.637 285.81 283.18 279.514 275.52 273.166 270.894 268.191 266.611 265.03 263.517 262.693 262.699 262.067 261.116 260.826 260.59 260.091 259.21 258.107 256.557 254.186 253.318 252.728 251.962 251.082 251.152 251.468 249.531 248.574 247.166 242.822 237.944 237.498 238.454 239.138 239.576 226.867 230.908 236.047 241.165 243.785 242.034 237.256 235.266 237.758 242.422 246.728 246.165 247.377 249.937 252.319 254.696 257.914 260.88 264.263 269.478 271.955 273.822 275.328 276.841 278.077 278.983 279.955 280.842 281.43 281.885 282.396 283.258 284.633 286.19 287.952 289.912 291.334 291.199 292.007 292.693 293.224 293.703 294.089 294.606 295.33 296.159 296.698 296.955 297.278 297.781 297.89 297.907 297.511 297.196 297.033 296.799 297.05 297.505 297.963 297.981 298.294 299.502 301.965 303.908 303.208 300.454 298.488 297.443 296.428 296.438 296.588 296.359 295.975 295.67 295.482 295.443 295.374 295.273 295.249 295.144 294.807 294.31 293.66 292.86 292.112 291.474 290.871 290.351 289.985 289.606 288.903 287.636 285.818 283.204 279.453 275.565 273.039 271.137 267.948 266.413 265.058 263.925 263.51 263.045 262.158 261.453 261.278 261.017 260.35 259.275 258.3 256.713 254.364 253.618 253.283 252.547 251.517 252.983 251.286 249.136 248.417 247.382 242.714 237.981 237.492 238.429 239.167 239.565 226.806 230.849 235.98 241.143 243.929 242.236 237.314 235.262 237.911 244.21 246.889 246.878 248.413 251.185 253.687 256.017 259.042 261.684 263.843 268.889 271.542 273.509 275.108 276.658 277.913 278.831 279.779 280.581 281.035 281.341 281.838 282.772 284.249 286.002 288.299 290.403 291.968 293.199 293.654 293.07 292.664 293.101 293.828 294.607 295.393 296.227 296.875 296.844 297.112 297.567 298.323 298.356 297.752 297.286 297.105 296.819 296.974 297.251 297.557 297.662 298.599 301.1 303.343 304.004 302.584 300.246 298.258 297.851 297.196 296.748 296.457 296.048 295.717 295.415 295.263 295.273 295.205 295.098 295.074 294.975 294.706 294.274 293.56 292.709 292.024 291.442 290.833 290.321 289.984 289.618 288.912 287.633 285.812 283.21 279.347 275.564 272.93 271.129 268.048 266.791 265.726 264.515 264.224 263.132 262.105 261.751 261.583 261.362 260.529 259.715 258.476 256.468 255.072 254.587 254.06 253.562 253.502 253.235 250.885 248.625 248.162 247.556 242.954 237.912 237.449 238.383 239.2 239.552 226.802 230.782 235.911 241.138 244.112 242.477 237.528 235.443 238.192 244.917 246.788 247.489 249.459 252.288 254.933 257.372 260.067 262.384 264.471 268.056 271.163 273.208 274.887 276.486 277.767 278.679 279.541 280.219 280.587 280.896 281.482 282.545 284.172 286.297 289.03 291.02 292.356 293.435 294.042 292.991 292.479 292.831 293.476 294.178 295.142 296.491 296.798 296.922 297.121 297.392 297.711 297.849 297.645 297.591 297.212 296.956 297.005 297.297 297.235 297.509 299.009 302.845 304.149 303.358 301.437 299.732 297.942 297.395 297.08 296.648 296.217 295.8 295.532 295.249 295.087 295.046 294.961 294.901 294.907 294.821 294.592 294.183 293.45 292.64 292.018 291.432 290.803 290.306 289.989 289.629 288.902 287.606 285.777 283.2 279.22 275.499 272.814 271.192 268.312 267.569 267.062 265.96 264.506 263.134 262.211 262.25 262.1 261.798 261.1 260.049 258.326 256.817 256.005 255.592 255.621 255.933 254.408 252.836 250.362 248.012 247.866 247.716 243.433 237.728 237.455 238.344 239.241 239.537 226.722 230.684 235.823 241.108 244.265 242.81 237.854 235.816 238.598 244.335 246.484 247.969 250.321 253.281 255.955 258.458 260.956 263.085 265.083 267.902 270.896 272.955 274.686 276.32 277.624 278.52 279.298 279.86 280.166 280.544 281.28 282.496 284.259 286.711 289.512 291.286 292.475 293.45 294.169 294.114 292.838 292.996 293.055 293.485 294.093 295.186 296.043 296.796 297.039 297.081 297.069 297.211 297.286 297.405 297.335 297.221 297.194 297.006 296.939 297.54 299.7 302.891 303.891 302.158 300.627 299.18 297.779 297.257 296.875 296.506 296.002 295.589 295.345 295.111 294.941 294.824 294.747 294.755 294.761 294.659 294.458 294.076 293.369 292.608 291.996 291.381 290.78 290.332 290.014 289.64 288.885 287.561 285.724 283.143 279.049 275.379 272.777 271.416 269.292 268.2 267.118 265.971 264.578 263.277 262.472 262.964 263.251 262.536 261.472 259.967 258.556 258.236 257.95 256.729 257.192 255.48 253.833 252.161 249.661 247.429 247.573 247.846 243.871 237.572 237.392 238.328 239.278 239.535 226.655 230.583 235.725 241.032 244.38 243.196 238.363 236.305 239.511 243.545 246.533 248.562 251.246 254.357 256.913 259.421 261.837 263.955 265.933 268.258 270.793 272.768 274.515 276.16 277.477 278.347 279.019 279.467 279.756 280.269 281.197 282.563 284.392 286.962 289.664 291.263 292.384 293.387 294.136 294.585 294.513 293.624 293.243 292.751 292.879 293.679 294.871 296.457 297.551 297.247 296.795 296.837 297.007 297.24 297.48 297.477 297.467 297.084 297.015 297.649 300.158 302.304 302.435 300.918 299.862 298.824 297.524 297.18 296.768 296.31 295.772 295.364 295.113 294.961 294.805 294.618 294.556 294.617 294.599 294.486 294.336 293.988 293.312 292.582 291.946 291.321 290.79 290.399 290.06 289.672 288.911 287.589 285.765 283.11 278.884 275.239 272.835 271.424 270.071 268.787 267.473 266.189 264.929 264.057 264.474 265.68 264.788 263.156 261.545 259.634 258.908 258.688 258.48 257.522 256.56 254.804 253.06 251.366 248.908 246.818 247.267 247.959 242.811 237.315 237.301 238.33 239.349 239.541 226.57 230.515 235.618 240.989 244.52 243.687 238.957 236.847 240.687 243.828 246.832 249.277 252.252 255.495 257.894 260.472 263.097 265.249 267.161 269.09 270.94 272.688 274.388 276.001 277.307 278.137 278.679 279.012 279.355 280.072 281.222 282.715 284.51 286.937 289.493 291.0 292.089 293.222 294.138 294.749 295.174 295.474 294.681 293.029 292.572 292.739 293.763 295.819 297.408 297.224 296.626 296.503 296.601 296.976 297.468 297.863 297.774 297.31 297.402 297.886 299.796 301.612 300.921 299.619 298.287 297.638 297.231 296.937 296.505 295.971 295.512 295.12 294.849 294.8 294.681 294.412 294.323 294.391 294.377 294.329 294.268 293.94 293.279 292.572 291.917 291.305 290.847 290.485 290.119 289.737 289.018 287.737 285.931 283.134 278.754 275.026 272.924 271.636 270.318 269.251 268.292 267.377 266.44 265.982 266.854 267.673 266.118 263.577 261.306 258.908 257.722 257.535 257.639 257.109 255.749 253.976 252.232 250.409 248.068 246.198 246.976 248.025 243.083 237.151 237.299 238.396 239.425 239.55 226.536 230.446 235.499 240.859 244.657 244.166 239.669 237.551 240.847 244.338 247.361 250.028 253.169 256.427 258.822 261.559 264.347 266.49 268.259 269.847 271.263 272.744 274.327 275.873 277.142 277.921 278.348 278.626 279.084 280.02 281.347 282.881 284.585 286.793 289.181 290.639 291.652 292.82 293.924 294.825 295.512 295.817 295.55 294.868 294.453 293.936 293.773 295.37 296.73 297.041 296.636 296.205 296.004 296.336 296.958 297.47 297.767 297.763 297.582 297.886 299.524 300.787 300.013 298.392 297.436 297.228 297.021 296.678 296.184 295.744 295.399 294.975 294.696 294.69 294.566 294.243 294.111 294.149 294.163 294.208 294.199 293.863 293.255 292.607 291.946 291.329 290.884 290.504 290.144 289.843 289.229 288.048 286.277 283.271 278.494 274.742 272.96 271.756 270.521 269.711 269.182 268.739 268.32 268.444 269.093 269.056 266.725 263.643 260.132 257.308 256.106 255.996 256.15 255.675 254.685 253.185 251.248 249.468 247.223 245.595 246.708 248.067 245.432 237.175 237.244 238.458 239.468 239.562 226.488 230.333 235.378 240.722 244.768 244.686 240.482 238.249 240.429 244.658 247.844 250.806 254.079 257.326 259.729 262.612 265.553 267.656 269.171 270.48 271.628 272.862 274.283 275.751 276.967 277.678 278.016 278.301 278.909 280.072 281.536 283.04 284.649 286.708 288.928 290.324 291.263 292.372 293.538 294.604 295.465 296.007 296.106 296.042 295.929 295.834 295.115 295.306 296.368 297.118 297.272 296.585 296.059 295.904 296.244 296.803 297.429 297.7 297.587 297.793 298.645 299.764 299.726 298.521 297.771 297.274 296.873 296.436 295.981 295.647 295.305 294.867 294.621 294.589 294.422 294.095 293.943 293.933 293.959 294.053 294.045 293.731 293.227 292.631 291.952 291.329 290.885 290.48 290.142 289.905 289.356 288.253 286.575 283.496 278.472 274.969 273.239 272.003 270.868 270.473 270.575 270.434 270.088 270.091 270.366 269.839 266.794 262.905 258.392 255.639 254.216 254.167 254.486 254.172 253.412 252.197 250.31 248.473 246.338 245.04 246.459 248.105 245.771 237.333 237.357 238.399 239.51 239.577 226.449 230.238 235.224 240.571 244.781 245.118 241.408 239.172 241.098 244.91 248.266 251.599 255.024 258.246 260.715 263.67 266.729 268.622 269.879 271.019 271.984 273.016 274.243 275.617 276.765 277.389 277.666 278.009 278.79 280.189 281.745 283.189 284.72 286.654 288.73 290.09 291.001 292.046 293.197 294.307 295.218 295.926 296.463 296.76 296.844 296.719 296.745 296.17 296.004 297.6 298.964 298.153 297.075 296.535 296.342 296.565 297.016 297.311 297.376 297.457 297.907 299.003 299.799 298.517 297.696 297.16 296.686 296.229 295.867 295.554 295.174 294.788 294.589 294.477 294.253 293.951 293.772 293.697 293.743 293.874 293.852 293.594 293.213 292.648 291.945 291.352 290.916 290.483 290.147 289.928 289.4 288.364 286.782 283.808 278.887 275.475 273.666 272.287 271.263 271.373 272.014 271.827 271.529 271.424 271.327 270.19 266.72 262.565 257.606 254.598 252.97 252.636 252.773 252.549 252.016 251.047 249.401 247.464 245.534 244.585 246.261 248.097 245.861 239.45 237.142 238.487 239.599 239.627 226.368 230.164 235.077 240.4 244.737 245.464 242.373 240.225 241.761 245.261 248.942 252.663 256.126 259.344 262.002 264.95 267.799 269.444 270.476 271.494 272.337 273.2 274.22 275.458 276.503 277.019 277.272 277.716 278.7 280.328 281.935 283.335 284.77 286.545 288.486 289.87 290.869 291.941 293.015 294.023 294.866 295.588 296.372 297.025 297.35 297.294 296.84 296.649 295.876 296.821 298.745 299.432 298.72 298.225 297.235 296.453 296.347 296.863 297.101 297.249 297.874 299.697 299.725 298.448 297.636 297.044 296.538 296.142 295.82 295.433 295.021 294.723 294.52 294.307 294.074 293.808 293.558 293.423 293.528 293.696 293.672 293.493 293.209 292.653 291.967 291.447 291.011 290.53 290.168 289.924 289.388 288.403 286.896 284.124 279.574 276.208 274.334 272.713 271.688 272.254 272.991 272.667 272.358 272.212 271.891 270.445 266.936 261.923 257.643 254.554 252.631 251.881 251.478 250.902 250.278 249.642 248.125 246.379 244.76 244.199 246.095 248.079 245.844 239.982 236.868 238.635 239.593 239.719 226.304 230.09 234.903 240.193 244.613 245.738 243.327 241.445 242.563 245.87 249.897 253.795 257.22 260.429 263.188 266.065 268.55 270.015 270.898 271.796 272.597 273.358 274.216 275.317 276.249 276.682 276.952 277.519 278.652 280.383 282.033 283.427 284.785 286.423 288.219 289.61 290.74 291.907 292.908 293.801 294.574 295.255 296.077 296.909 297.462 297.632 297.268 296.916 296.455 296.742 297.968 298.773 299.015 299.218 298.244 297.121 296.426 296.44 296.657 296.816 297.592 299.158 299.054 298.328 297.705 297.14 296.613 296.224 295.842 295.353 294.892 294.572 294.312 294.098 293.919 293.67 293.396 293.274 293.394 293.528 293.499 293.386 293.142 292.611 291.999 291.534 291.058 290.539 290.169 289.896 289.368 288.434 286.939 284.29 280.106 276.852 274.998 273.378 272.543 273.374 273.759 273.353 273.017 272.837 272.417 270.761 267.527 262.615 258.746 255.286 253.31 252.032 250.753 249.275 248.4 248.082 246.941 245.475 244.116 243.906 246.021 248.11 245.859 240.068 237.021 238.571 239.685 239.744 226.229 229.979 234.752 240.011 244.518 246.065 244.126 242.501 243.231 246.534 250.991 254.922 258.264 261.42 264.173 266.92 269.119 270.424 271.216 271.997 272.775 273.481 274.212 275.194 276.021 276.403 276.73 277.426 278.644 280.382 282.078 283.46 284.785 286.343 288.018 289.384 290.589 291.819 292.774 293.625 294.397 295.072 295.875 296.737 297.421 297.807 297.772 297.508 297.527 297.405 297.6 297.955 297.996 299.378 299.993 299.241 298.18 296.776 296.321 296.445 297.348 298.304 298.71 298.291 297.815 297.278 296.74 296.31 295.855 295.3 294.782 294.396 294.099 293.909 293.727 293.478 293.248 293.176 293.261 293.339 293.332 293.267 293.032 292.549 292.009 291.55 291.039 290.525 290.147 289.828 289.314 288.426 286.917 284.265 280.332 277.311 275.509 274.074 273.574 274.209 274.273 273.819 273.489 273.387 273.041 271.538 267.598 264.272 261.179 257.201 254.797 252.754 250.485 248.197 246.87 246.658 245.892 244.632 243.597 243.712 245.995 248.123 245.847 240.14 236.729 238.609 239.778 239.744 226.142 229.902 234.583 239.791 244.334 246.226 244.759 243.735 243.699 246.954 252.2 256.072 259.29 262.347 264.962 267.573 269.552 270.716 271.462 272.141 272.891 273.575 274.204 275.074 275.81 276.187 276.618 277.445 278.665 280.386 282.072 283.44 284.762 286.29 287.898 289.229 290.454 291.705 292.642 293.509 294.33 295.043 295.79 296.548 297.235 297.793 298.076 298.023 298.123 298.053 298.105 298.01 297.755 298.266 299.432 300.44 299.731 297.716 296.559 296.445 297.146 298.248 298.579 298.337 297.894 297.373 296.848 296.382 295.881 295.294 294.718 294.251 293.931 293.733 293.486 293.23 293.078 293.05 293.086 293.15 293.204 293.164 292.922 292.5 292.016 291.534 291.015 290.535 290.121 289.718 289.21 288.375 286.868 284.214 280.576 277.822 276.013 274.753 274.301 274.642 274.622 274.165 273.868 273.838 273.553 272.57 268.842 264.923 262.602 260.051 257.299 253.989 250.893 247.743 245.844 245.498 245.087 244.014 243.27 243.642 246.05 248.099 245.798 240.152 236.8 238.665 239.785 239.744 226.108 229.769 234.419 239.564 244.074 246.313 245.459 244.977 244.516 247.363 253.391 257.455 260.473 263.228 265.629 268.073 269.892 270.964 271.673 272.272 272.965 273.647 274.211 274.956 275.609 276.047 276.63 277.561 278.755 280.394 282.017 283.369 284.69 286.21 287.8 289.115 290.345 291.589 292.536 293.422 294.3 295.075 295.778 296.351 296.924 297.598 298.161 298.445 298.546 298.624 298.653 298.244 298.201 297.907 298.51 299.554 299.589 298.192 296.606 296.549 297.047 298.065 298.657 298.436 297.957 297.446 296.956 296.491 295.973 295.351 294.694 294.128 293.756 293.498 293.193 292.964 292.868 292.821 292.831 292.953 293.076 293.038 292.809 292.467 292.018 291.494 290.996 290.563 290.092 289.586 289.086 288.309 286.877 284.471 281.185 278.553 276.561 275.3 274.753 274.873 274.884 274.519 274.322 274.348 274.135 273.67 272.155 268.695 264.731 262.014 259.963 255.618 251.797 247.811 245.291 244.705 244.51 243.62 243.091 243.704 246.139 248.07 245.714 240.101 236.796 238.643 239.783 239.943 226.07 229.684 234.241 239.288 243.816 246.305 245.969 246.034 245.417 247.714 254.108 258.582 261.474 264.012 266.147 268.36 270.089 271.152 271.838 272.361 272.998 273.707 274.253 274.884 275.477 275.984 276.673 277.68 278.867 280.39 281.954 283.307 284.634 286.129 287.677 288.974 290.21 291.45 292.425 293.325 294.207 294.994 295.712 296.255 296.783 297.479 298.159 298.617 298.95 299.16 299.283 299.383 299.373 299.185 298.937 298.32 297.868 297.093 296.945 297.031 297.486 298.595 298.786 298.521 298.012 297.508 297.021 296.554 296.03 295.378 294.658 294.024 293.579 293.271 292.979 292.782 292.674 292.593 292.613 292.752 292.852 292.834 292.7 292.43 291.967 291.397 290.904 290.487 290.001 289.493 289.035 288.312 287.018 285.012 282.083 279.283 277.015 275.605 274.969 274.978 275.05 274.848 274.778 274.798 274.619 274.304 273.711 272.216 268.487 263.74 261.684 257.227 253.024 248.545 245.414 244.407 244.218 243.469 243.126 243.953 246.315 247.966 245.628 240.039 236.901 238.681 239.783 239.955 225.977 229.535 234.075 239.015 243.488 246.201 246.404 246.819 246.209 248.065 254.491 259.432 262.335 264.7 266.56 268.573 270.225 271.307 271.972 272.415 273.001 273.765 274.318 274.851 275.383 275.916 276.669 277.769 278.946 280.388 281.901 283.274 284.634 286.103 287.581 288.851 290.083 291.302 292.3 293.226 294.098 294.866 295.608 296.21 296.754 297.42 298.093 298.602 299.049 299.424 299.652 299.784 299.784 299.652 299.509 299.169 298.146 297.265 297.411 297.806 298.396 298.94 298.954 298.58 298.046 297.564 297.083 296.602 296.064 295.387 294.623 293.952 293.452 293.104 292.804 292.592 292.466 292.402 292.451 292.559 292.617 292.651 292.61 292.372 291.898 291.299 290.762 290.316 289.844 289.377 288.968 288.303 287.173 285.523 283.084 279.953 277.448 275.817 275.099 275.057 275.198 275.212 275.296 275.313 275.144 274.906 274.642 274.043 272.525 266.94 263.034 259.088 254.522 249.83 246.182 244.701 244.301 243.772 243.556 244.399 246.553 247.86 245.519 239.771 236.976 238.647 239.817 239.955 225.892 229.444 233.894 238.721 243.159 246.003 246.648 247.448 246.88 248.404 254.721 260.101 263.087 265.287 266.902 268.74 270.342 271.438 272.069 272.432 272.972 273.805 274.392 274.842 275.302 275.842 276.655 277.82 279.0 280.392 281.856 283.25 284.666 286.115 287.532 288.782 290.001 291.18 292.174 293.115 293.991 294.748 295.493 296.154 296.744 297.384 297.994 298.48 298.952 299.376 299.647 299.812 299.845 299.808 299.845 299.723 299.16 298.544 297.953 298.837 299.151 299.311 299.123 298.629 298.091 297.65 297.19 296.681 296.107 295.397 294.589 293.882 293.348 292.968 292.645 292.386 292.24 292.21 292.282 292.361 292.413 292.501 292.499 292.264 291.828 291.24 290.625 290.106 289.648 289.211 288.821 288.22 287.269 285.949 284.025 280.779 278.004 276.046 275.22 275.162 275.413 275.687 275.941 275.98 275.759 275.472 275.225 274.847 274.054 270.502 264.016 260.982 256.115 251.446 247.475 245.56 245.042 244.511 244.316 244.973 246.785 247.711 245.374 239.651 237.089 238.698 239.864 239.954 225.83 229.327 233.701 238.414 242.754 245.729 246.818 248.026 247.729 248.801 255.028 260.688 263.851 265.875 267.287 268.906 270.45 271.542 272.129 272.413 272.917 273.797 274.449 274.844 275.246 275.808 276.669 277.851 279.056 280.416 281.812 283.214 284.683 286.119 287.509 288.761 289.944 291.059 292.002 292.923 293.839 294.642 295.4 296.078 296.716 297.394 298.017 298.467 298.858 299.197 299.421 299.598 299.7 299.691 299.748 299.794 299.56 299.249 299.212 299.407 299.545 299.524 299.225 298.678 298.173 297.775 297.33 296.787 296.15 295.41 294.569 293.807 293.237 292.853 292.531 292.231 292.035 291.959 291.987 292.063 292.184 292.291 292.263 292.066 291.755 291.217 290.526 289.921 289.455 288.996 288.583 288.049 287.241 286.181 284.681 281.927 278.753 276.431 275.371 275.292 275.638 276.046 276.451 276.591 276.377 276.082 275.777 275.449 274.956 272.834 265.872 261.757 257.831 253.203 249.193 247.076 246.232 245.529 245.215 245.636 247.053 247.666 245.227 239.471 237.096 238.753 239.94 239.947 225.774 229.198 233.518 238.088 242.38 245.398 246.866 248.303 249.584 249.186 255.12 260.99 264.508 266.405 267.657 269.086 270.549 271.594 272.138 272.397 272.862 273.734 274.455 274.845 275.25 275.839 276.709 277.896 279.124 280.464 281.807 283.21 284.688 286.088 287.466 288.71 289.837 290.895 291.796 292.706 293.666 294.55 295.374 296.063 296.716 297.433 298.094 298.553 298.926 299.218 299.377 299.476 299.561 299.558 299.557 299.622 299.603 299.54 299.534 299.556 299.561 299.526 299.271 298.789 298.331 297.921 297.456 296.872 296.17 295.402 294.565 293.801 293.228 292.84 292.517 292.191 291.936 291.763 291.699 291.757 291.909 292.021 292.008 291.889 291.66 291.149 290.464 289.871 289.387 288.893 288.46 287.965 287.201 286.24 285.019 282.963 279.652 277.046 275.594 275.45 275.867 276.355 276.906 277.228 277.123 276.762 276.252 275.819 275.547 274.284 268.575 262.576 260.176 254.972 251.211 248.845 247.629 246.734 246.227 246.323 247.353 247.563 245.085 239.792 237.553 238.846 239.969 239.95 225.723 229.09 233.316 237.751 241.952 244.978 246.656 248.388 249.923 249.585 255.28 261.128 265.056 266.89 268.004 269.285 270.634 271.605 272.132 272.402 272.83 273.64 274.411 274.837 275.273 275.891 276.787 277.973 279.197 280.505 281.826 283.248 284.718 286.076 287.433 288.649 289.71 290.73 291.647 292.582 293.574 294.499 295.357 296.062 296.732 297.452 298.101 298.559 298.927 299.216 299.348 299.383 299.423 299.438 299.466 299.58 299.671 299.705 299.659 299.567 299.525 299.541 299.365 298.975 298.552 298.105 297.588 296.948 296.171 295.35 294.512 293.785 293.266 292.912 292.572 292.203 291.904 291.662 291.504 291.493 291.615 291.726 291.761 291.7 291.477 291.012 290.434 289.899 289.363 288.826 288.382 287.913 287.179 286.266 285.253 283.743 280.886 277.898 276.057 275.696 276.107 276.579 277.159 277.619 277.655 277.332 276.757 276.202 275.946 275.069 270.749 262.954 261.485 256.516 253.077 250.88 249.204 247.996 247.243 247.015 247.656 247.539 244.974 241.558 237.752 238.994 240.018 239.967 225.63 228.969 233.112 237.383 241.476 244.564 246.444 248.47 250.394 250.539 255.52 261.273 265.546 267.342 268.357 269.498 270.709 271.594 272.125 272.43 272.817 273.527 274.326 274.826 275.296 275.959 276.902 278.07 279.26 280.521 281.833 283.289 284.762 286.092 287.423 288.605 289.605 290.606 291.579 292.566 293.573 294.482 295.324 296.055 296.762 297.483 298.117 298.567 298.889 299.117 299.226 299.257 299.265 299.284 299.385 299.591 299.731 299.766 299.688 299.573 299.556 299.612 299.493 299.171 298.776 298.296 297.717 297.005 296.15 295.261 294.414 293.744 293.322 293.051 292.709 292.293 291.949 291.65 291.397 291.282 291.316 291.394 291.46 291.413 291.173 290.807 290.421 289.955 289.334 288.75 288.286 287.789 287.094 286.271 285.447 284.329 282.2 279.011 276.77 276.065 276.307 276.71 277.248 277.82 278.102 277.92 277.258 276.568 276.351 275.614 271.981 263.427 262.207 257.84 254.764 252.551 250.664 249.188 248.187 247.722 247.967 247.474 244.853 241.639 238.051 239.118 240.105 240.007 225.51 228.849 232.903 237.028 240.997 244.129 246.082 248.295 250.448 252.175 255.898 261.336 265.98 267.835 268.733 269.72 270.781 271.572 272.133 272.513 272.831 273.394 274.206 274.816 275.324 276.047 277.031 278.162 279.289 280.493 281.802 283.293 284.772 286.105 287.44 288.608 289.564 290.549 291.565 292.589 293.597 294.48 295.315 296.091 296.847 297.581 298.209 298.642 298.863 298.947 299.013 299.112 299.123 299.104 299.253 299.568 299.762 299.791 299.722 299.64 299.647 299.7 299.612 299.347 298.999 298.532 297.906 297.099 296.152 295.207 294.369 293.793 293.48 293.291 292.978 292.533 292.124 291.753 291.415 291.202 291.101 291.043 291.029 290.945 290.719 290.511 290.311 289.889 289.231 288.631 288.102 287.488 286.824 286.158 285.504 284.647 283.033 280.128 277.497 276.494 276.593 276.888 277.341 277.923 278.357 278.375 277.819 277.09 276.734 276.014 272.902 264.014 262.606 258.756 256.054 253.933 251.982 250.216 249.035 248.385 248.265 247.382 244.792 241.57 238.332 239.281 240.184 240.058 225.46 228.735 232.67 236.659 240.487 243.605 245.746 248.05 250.198 252.634 255.896 261.141 266.188 268.281 269.112 269.907 270.849 271.573 272.176 272.619 272.869 273.306 274.107 274.811 275.341 276.095 277.088 278.172 279.252 280.448 281.759 283.246 284.721 286.095 287.46 288.626 289.566 290.557 291.573 292.564 293.544 294.475 295.39 296.225 296.991 297.683 298.228 298.579 298.723 298.759 298.833 298.981 298.999 298.989 299.202 299.596 299.83 299.86 299.806 299.707 299.702 299.779 299.753 299.549 299.25 298.836 298.216 297.329 296.27 295.293 294.543 294.078 293.813 293.613 293.282 292.833 292.391 291.944 291.542 291.293 291.129 290.968 290.833 290.678 290.444 290.254 290.076 289.678 289.071 288.509 287.894 287.125 286.475 285.917 285.387 284.825 283.652 281.242 278.369 277.058 277.035 277.176 277.509 278.057 278.546 278.843 278.381 277.619 277.126 276.209 273.248 265.075 262.508 259.486 257.096 255.153 253.025 251.086 249.804 249.012 248.538 247.362 244.769 241.688 238.643 239.513 240.302 240.096 225.366 228.608 232.428 236.25 240.009 243.033 245.245 247.727 249.887 252.693 256.043 260.888 266.193 268.631 269.5 270.118 270.929 271.608 272.245 272.726 272.927 273.271 274.037 274.792 275.327 276.081 277.075 278.113 279.179 280.421 281.751 283.215 284.702 286.114 287.483 288.616 289.56 290.595 291.617 292.549 293.489 294.474 295.486 296.374 297.135 297.764 298.193 298.433 298.522 298.578 298.675 298.799 298.828 298.886 299.176 299.605 299.869 299.93 299.895 299.78 299.75 299.841 299.875 299.731 299.47 299.097 298.506 297.585 296.464 295.484 294.848 294.511 294.299 294.083 293.732 293.282 292.807 292.251 291.72 291.386 291.177 290.984 290.782 290.564 290.293 290.059 289.841 289.445 288.88 288.333 287.633 286.739 286.086 285.59 285.09 284.813 284.104 282.257 279.454 277.763 277.485 277.516 277.785 278.278 278.733 279.187 278.91 278.169 277.365 276.144 273.127 266.102 262.173 260.414 257.875 256.109 253.921 251.853 250.422 249.522 248.753 247.359 244.786 241.727 239.029 239.768 240.442 240.134 225.313 228.48 232.176 235.861 239.473 242.466 244.753 247.402 249.471 252.133 256.062 260.439 265.975 268.909 269.86 270.357 271.042 271.68 272.333 272.82 272.989 273.271 273.988 274.745 275.278 276.019 277.013 278.019 279.096 280.416 281.784 283.231 284.752 286.179 287.496 288.569 289.533 290.643 291.69 292.594 293.502 294.514 295.595 296.503 297.24 297.815 298.159 298.296 298.341 298.423 298.512 298.58 298.642 298.791 299.11 299.538 299.857 299.986 299.971 299.851 299.795 299.852 299.912 299.841 299.632 299.291 298.729 297.816 296.693 295.758 295.245 295.058 294.957 294.769 294.416 293.941 293.413 292.731 292.008 291.481 291.182 290.98 290.765 290.506 290.202 289.928 289.672 289.252 288.65 288.048 287.314 286.397 285.714 285.244 284.807 284.611 284.253 282.791 280.442 278.594 278.025 278.013 278.244 278.589 278.968 279.512 279.438 278.597 277.517 275.79 272.691 266.68 262.454 260.976 258.765 256.895 254.666 252.499 250.968 249.936 248.969 247.396 244.84 241.485 239.436 240.043 240.563 240.201 225.288 228.362 231.912 235.46 238.917 241.905 244.367 247.022 249.018 251.659 255.961 259.667 265.484 269.09 270.237 270.676 271.221 271.808 272.434 272.89 273.066 273.307 273.946 274.665 275.204 275.944 276.938 277.912 279.021 280.435 281.848 283.298 284.862 286.261 287.458 288.466 289.478 290.679 291.769 292.71 293.639 294.666 295.748 296.62 297.293 297.778 298.056 298.124 298.148 298.238 298.314 298.37 298.499 298.716 299.006 299.438 299.848 300.024 299.985 299.897 299.85 299.847 299.906 299.924 299.794 299.49 298.937 298.037 296.951 296.137 295.805 295.806 295.877 295.733 295.347 294.772 294.169 293.501 292.658 291.81 291.216 290.9 290.685 290.414 290.073 289.76 289.459 288.996 288.35 287.722 287.075 286.234 285.518 285.02 284.647 284.405 284.161 283.093 281.28 279.638 278.798 278.599 278.703 279.025 279.46 279.907 279.858 278.969 277.609 275.302 271.311 267.533 263.481 260.685 259.862 257.624 255.493 253.079 251.45 250.307 249.123 247.472 244.966 241.392 239.91 240.351 240.682 240.262 225.159 228.219 231.669 235.03 238.374 241.341 243.86 246.471 248.507 251.133 255.033 258.981 264.815 269.081 270.512 270.981 271.417 271.945 272.523 272.924 273.126 273.372 273.907 274.572 275.144 275.913 276.901 277.852 278.985 280.443 281.85 283.319 284.898 286.215 287.305 288.328 289.447 290.719 291.826 292.809 293.814 294.865 295.891 296.696 297.291 297.659 297.829 297.878 297.939 298.044 298.138 298.226 298.38 298.617 298.937 299.42 299.861 299.987 299.914 299.905 299.92 299.913 299.968 300.014 299.908 299.648 299.136 298.269 297.273 296.635 296.498 296.657 296.808 296.639 296.137 295.409 294.748 294.146 293.324 292.322 291.429 290.888 290.581 290.282 289.893 289.485 289.087 288.608 288.014 287.438 286.857 286.079 285.332 284.812 284.509 284.241 283.896 283.167 281.922 280.554 279.551 279.173 279.307 279.78 280.199 280.39 280.237 279.267 277.666 274.87 270.785 269.02 265.094 261.518 259.68 258.186 256.565 253.644 251.921 250.608 249.349 247.678 244.896 241.481 240.371 240.656 240.813 240.312 225.102 228.087 231.425 234.65 237.813 240.776 243.448 246.01 247.925 250.444 254.279 258.688 263.937 268.903 270.691 271.24 271.589 272.073 272.592 272.937 273.165 273.428 273.867 274.493 275.133 275.926 276.885 277.817 278.954 280.399 281.772 283.253 284.809 286.028 287.068 288.185 289.442 290.779 291.886 292.89 293.948 294.991 295.925 296.657 297.22 297.524 297.619 297.689 297.797 297.901 297.995 298.092 298.244 298.51 298.904 299.419 299.83 299.921 299.879 299.927 299.952 299.955 300.018 300.046 299.937 299.74 299.312 298.536 297.722 297.291 297.295 297.574 297.867 297.752 297.196 296.332 295.55 294.894 294.077 292.984 291.849 291.007 290.469 290.061 289.634 289.16 288.67 288.183 287.678 287.17 286.58 285.796 285.032 284.531 284.282 284.052 283.656 283.085 282.226 281.213 280.326 279.973 280.102 280.598 280.852 280.842 280.502 279.511 277.786 274.629 270.725 269.965 267.243 263.055 260.529 258.779 257.008 254.467 252.08 251.326 250.242 247.872 244.237 241.779 240.8 240.942 240.956 240.365 225.012 227.959 231.181 234.252 237.234 240.245 242.969 245.524 247.356 249.695 253.449 258.171 262.797 268.569 270.778 271.453 271.732 272.182 272.647 272.94 273.193 273.472 273.828 274.437 275.168 275.972 276.872 277.787 278.911 280.303 281.624 283.081 284.578 285.717 286.784 288.04 289.437 290.815 291.914 292.934 294.007 295.012 295.836 296.498 297.061 297.358 297.435 297.547 297.691 297.776 297.858 297.97 298.135 298.443 298.902 299.408 299.78 299.896 299.913 299.958 299.96 299.985 300.066 300.069 299.968 299.841 299.5 298.838 298.241 298.019 298.132 298.575 299.141 299.198 298.526 297.603 296.674 295.852 294.968 293.82 292.51 291.356 290.456 289.793 289.302 288.878 288.399 287.885 287.402 286.871 286.164 285.344 284.66 284.239 284.031 283.848 283.493 282.994 282.34 281.597 280.965 280.643 280.874 281.186 281.202 281.067 280.679 279.675 278.013 274.853 270.913 270.391 269.017 265.91 262.122 260.081 257.968 254.599 251.475 251.322 251.806 248.064 243.902 242.219 241.226 241.24 241.103 240.439 224.878 227.831 230.944 233.783 236.683 239.719 242.49 244.938 246.685 248.894 252.55 257.255 261.348 267.979 270.742 271.632 271.858 272.278 272.691 272.944 273.22 273.505 273.803 274.426 275.249 276.032 276.838 277.737 278.834 280.128 281.363 282.742 284.156 285.289 286.491 287.956 289.419 290.769 291.877 292.933 293.983 294.926 295.664 296.265 296.807 297.085 297.156 297.326 297.517 297.597 297.69 297.851 298.069 298.42 298.889 299.359 299.746 299.933 299.967 299.998 300.028 300.108 300.193 300.18 300.104 300.016 299.713 299.147 298.739 298.653 298.877 299.588 300.238 300.284 299.64 298.496 297.572 296.445 295.535 294.448 293.259 292.081 290.909 289.848 289.139 288.735 288.368 287.845 287.278 286.668 285.897 285.097 284.478 284.053 283.811 283.643 283.35 282.907 282.35 281.745 281.302 281.252 281.593 281.456 281.327 281.147 280.708 279.83 278.275 275.441 271.403 270.804 270.286 268.778 265.401 262.548 259.345 255.605 252.313 251.094 251.404 249.114 244.518 242.743 241.686 241.543 241.269 240.505 224.765 227.673 230.698 233.324 236.104 239.14 241.949 244.362 245.932 248.04 251.628 256.119 260.436 267.188 270.568 271.736 271.95 272.333 272.715 272.952 273.243 273.532 273.815 274.46 275.327 276.049 276.771 277.67 278.725 279.901 281.034 282.354 283.772 285.001 286.438 288.063 289.485 290.712 291.835 292.933 293.926 294.806 295.529 296.092 296.57 296.788 296.868 297.101 297.36 297.467 297.565 297.746 297.999 298.361 298.793 299.25 299.707 299.939 299.954 300.035 300.168 300.247 300.283 300.28 300.214 300.108 299.858 299.417 299.058 298.954 299.227 299.859 300.723 302.351 301.618 301.427 299.982 298.475 297.526 296.688 294.892 292.573 291.395 290.333 289.431 288.811 288.383 287.836 287.224 286.597 285.824 285.053 284.472 284.005 283.659 283.455 283.227 282.865 282.41 281.975 281.785 281.92 281.964 281.594 281.33 281.106 280.66 279.911 278.641 276.489 272.119 271.446 271.211 270.268 268.398 265.769 261.246 257.323 253.11 251.066 250.888 250.058 245.274 243.243 242.155 241.832 241.437 240.563 224.71 227.544 230.446 232.86 235.547 238.547 241.399 243.789 245.177 247.201 250.698 254.657 259.776 266.211 270.297 271.788 272.025 272.362 272.729 272.96 273.256 273.561 273.856 274.519 275.379 276.021 276.689 277.58 278.586 279.651 280.721 282.061 283.596 285.01 286.661 288.32 289.595 290.67 291.791 292.916 293.849 294.67 295.389 295.932 296.349 296.532 296.664 296.958 297.245 297.353 297.447 297.646 297.929 298.297 298.702 299.163 299.686 299.954 299.998 300.158 300.317 300.315 300.328 300.374 300.286 300.163 300.025 299.699 299.249 299.033 299.096 299.644 301.024 301.706 301.714 301.44 299.927 298.327 296.927 296.208 295.118 293.661 292.288 290.834 290.032 289.168 288.49 287.846 287.224 286.66 285.952 285.207 284.641 284.141 283.701 283.444 283.239 282.949 282.664 282.432 282.136 282.054 282.081 281.698 281.294 281.0 280.558 279.927 278.919 277.125 273.807 272.184 271.885 271.069 269.723 267.68 263.841 258.773 254.585 252.005 250.812 250.531 245.573 243.687 242.614 242.111 241.6 240.635 224.641 227.399 230.196 232.432 235.01 237.971 240.802 243.079 244.369 246.372 249.77 253.555 258.933 264.968 269.928 271.802 272.1 272.378 272.737 272.97 273.266 273.596 273.924 274.583 275.385 275.95 276.593 277.459 278.403 279.397 280.465 281.891 283.644 285.306 287.046 288.579 289.664 290.609 291.713 292.854 293.763 294.545 295.253 295.776 296.133 296.316 296.516 296.845 297.105 297.188 297.302 297.544 297.86 298.241 298.646 299.135 299.713 300.029 300.127 300.322 300.436 300.346 300.375 300.462 300.344 300.255 300.233 299.887 299.241 298.675 298.724 298.934 300.324 300.95 301.949 301.04 299.772 297.65 295.858 294.475 294.284 293.759 293.385 292.401 290.595 289.801 288.809 287.971 287.288 286.815 286.224 285.484 284.859 284.331 283.865 283.617 283.441 283.231 283.063 282.716 282.1 281.907 282.017 281.745 281.308 280.922 280.456 279.908 279.101 277.573 275.09 272.766 272.26 271.626 270.536 268.966 265.981 260.45 255.711 252.441 250.826 250.278 246.105 244.038 243.042 242.373 241.766 240.725 224.593 227.251 229.944 231.97 234.463 237.388 240.204 242.366 243.494 245.373 248.787 252.497 258.081 263.483 269.369 271.768 272.195 272.407 272.751 272.99 273.282 273.65 274.024 274.634 275.323 275.824 276.452 277.262 278.133 279.147 280.301 281.858 283.863 285.75 287.392 288.67 289.617 290.536 291.619 292.752 293.694 294.457 295.131 295.609 295.918 296.121 296.374 296.709 296.905 296.976 297.148 297.436 297.748 298.127 298.58 299.14 299.77 300.153 300.282 300.412 300.456 300.369 300.415 300.461 300.356 300.406 300.378 299.724 298.818 298.06 298.297 299.111 299.506 299.974 300.583 300.57 298.986 297.354 295.188 293.78 293.269 293.311 293.099 292.323 290.936 290.069 289.123 288.184 287.448 287.029 286.541 285.768 285.016 284.424 283.986 283.822 283.747 283.481 283.18 282.753 281.869 281.403 281.587 281.677 281.354 280.967 280.467 279.899 279.196 277.842 275.486 273.0 272.356 271.947 271.183 269.933 267.535 262.564 256.675 253.534 251.162 249.928 246.751 244.484 243.379 242.615 241.94 240.807 224.453 227.104 229.707 231.549 233.899 236.844 239.552 241.59 242.64 244.487 247.81 251.533 256.128 262.442 268.75 271.69 272.284 272.462 272.781 273.02 273.306 273.71 274.113 274.644 275.202 275.663 276.291 277.047 277.906 279.042 280.293 281.915 284.025 285.967 287.465 288.565 289.517 290.542 291.619 292.716 293.645 294.367 294.977 295.43 295.754 295.991 296.25 296.56 296.739 296.819 297.019 297.3 297.591 298.009 298.536 299.138 299.79 300.232 300.346 300.365 300.381 300.388 300.416 300.376 300.372 300.531 300.276 299.225 297.835 297.62 298.794 298.762 299.417 299.806 300.301 299.482 298.139 296.422 294.966 293.748 293.194 292.991 292.543 291.969 291.468 290.3 289.309 288.133 287.616 287.343 286.875 285.953 284.953 284.171 283.724 283.828 283.866 283.479 283.046 282.571 281.49 280.441 280.62 281.306 281.228 280.95 280.486 279.883 279.179 277.905 275.446 273.3 272.631 272.297 271.637 270.657 268.724 264.361 258.077 253.819 251.302 249.946 247.395 245.023 243.649 242.832 242.144 240.883 224.413 226.951 229.461 231.162 233.373 236.292 238.909 240.836 241.749 243.611 246.809 250.649 254.995 261.675 268.139 271.581 272.363 272.519 272.815 273.051 273.334 273.762 274.18 274.624 275.062 275.493 276.134 276.884 277.815 279.117 280.449 282.034 284.1 286.002 287.407 288.429 289.448 290.568 291.639 292.683 293.562 294.239 294.807 295.265 295.636 295.89 296.099 296.35 296.522 296.623 296.839 297.131 297.46 297.955 298.546 299.143 299.779 300.263 300.373 300.298 300.304 300.424 300.476 300.409 300.477 300.591 300.104 298.566 297.622 298.293 298.802 298.909 299.935 300.249 299.875 298.926 297.508 295.966 294.709 293.719 293.201 292.908 292.006 291.256 290.395 290.114 288.977 288.111 287.635 287.626 286.821 284.669 283.159 283.124 282.141 283.568 283.84 283.371 282.759 282.145 281.035 279.457 279.557 280.578 280.757 280.601 280.376 279.792 279.099 277.864 275.385 273.805 273.203 272.699 271.996 271.226 269.596 265.888 259.555 255.156 252.208 250.109 247.959 245.444 243.932 243.008 242.33 240.96 224.394 226.789 229.209 230.795 232.859 235.741 238.244 240.016 240.906 242.665 245.878 249.721 254.002 260.836 267.472 271.448 272.421 272.565 272.845 273.077 273.361 273.805 274.223 274.581 274.923 275.338 275.992 276.793 277.862 279.342 280.746 282.259 284.175 285.967 287.307 288.311 289.394 290.555 291.613 292.601 293.437 294.101 294.676 295.149 295.549 295.78 295.908 296.092 296.26 296.387 296.623 296.957 297.347 297.905 298.535 299.124 299.75 300.251 300.354 300.226 300.246 300.461 300.582 300.553 300.626 300.603 300.017 298.486 298.889 299.344 299.485 299.622 300.831 300.476 299.786 298.861 297.214 295.847 294.687 293.85 293.117 292.828 291.757 289.819 289.339 288.523 287.514 287.479 287.318 287.526 286.766 284.437 282.175 281.01 280.925 283.189 283.751 283.214 282.456 281.772 280.688 279.232 278.81 279.473 279.754 279.905 280.068 279.62 279.006 277.771 275.722 274.569 273.9 273.14 272.353 271.681 270.296 267.208 261.166 255.791 252.302 250.587 248.426 245.823 244.221 243.158 242.487 241.035 224.264 226.642 228.971 230.401 232.368 235.176 237.586 239.182 240.038 241.687 244.808 248.886 253.159 260.157 266.672 271.272 272.452 272.593 272.86 273.095 273.382 273.839 274.233 274.506 274.786 275.196 275.884 276.81 278.041 279.681 281.152 282.626 284.332 285.927 287.18 288.219 289.327 290.476 291.509 292.451 293.265 293.98 294.608 295.078 295.443 295.615 295.684 295.838 296.018 296.154 296.4 296.783 297.222 297.808 298.475 299.116 299.769 300.229 300.285 300.15 300.183 300.419 300.629 300.719 300.784 300.643 300.123 299.262 299.438 299.935 300.058 301.084 301.532 300.173 299.545 298.227 297.012 295.698 294.73 294.09 293.054 292.011 291.091 289.787 288.672 286.988 286.584 286.495 286.785 287.117 286.42 284.082 281.32 280.111 280.61 282.948 283.669 283.127 282.217 281.454 280.405 279.203 278.254 278.272 278.642 278.903 279.657 279.473 278.953 277.758 276.163 275.267 274.578 273.704 272.755 272.066 270.907 268.1 262.917 257.273 253.839 250.927 248.788 246.225 244.46 243.309 242.63 241.101 224.19 226.463 228.719 230.053 231.93 234.636 236.945 238.37 239.256 240.738 243.592 247.967 252.436 258.772 265.915 271.087 272.45 272.589 272.847 273.102 273.388 273.852 274.213 274.426 274.691 275.11 275.852 276.919 278.278 279.975 281.477 282.953 284.489 285.856 287.018 288.14 289.284 290.41 291.413 292.307 293.08 293.812 294.484 294.959 295.283 295.436 295.5 295.641 295.803 295.93 296.19 296.63 297.167 297.848 298.595 299.288 299.915 300.265 300.261 300.131 300.1 300.229 300.474 300.714 300.848 300.717 300.227 299.263 298.878 300.057 300.76 301.7 301.552 299.718 297.269 297.4 296.991 295.494 294.668 294.087 293.012 291.838 290.931 289.876 288.636 286.669 285.07 285.024 285.861 286.647 286.161 283.852 281.356 279.808 280.695 282.763 283.54 283.032 281.687 281.143 280.013 278.884 277.942 277.747 277.73 278.135 279.226 279.405 278.905 277.844 276.597 275.887 275.25 274.298 273.24 272.456 271.375 269.067 264.454 258.504 253.88 251.414 249.017 246.557 244.628 243.465 242.754 241.161 224.062 226.273 228.47 229.7 231.551 234.087 236.326 237.632 238.474 239.674 242.399 247.022 251.74 258.052 265.263 270.898 272.429 272.565 272.823 273.097 273.376 273.842 274.18 274.355 274.618 275.057 275.851 277.041 278.509 280.178 281.652 283.109 284.519 285.71 286.843 288.074 289.253 290.329 291.281 292.134 292.881 293.616 294.317 294.813 295.118 295.252 295.298 295.406 295.555 295.715 296.03 296.531 297.18 297.966 298.764 299.463 300.029 300.294 300.256 300.137 300.045 300.056 300.29 300.62 300.822 300.743 300.247 299.12 298.519 299.838 301.088 302.305 301.426 300.198 298.903 299.596 297.249 295.571 294.693 294.017 292.961 291.68 290.647 289.601 288.115 286.891 284.816 284.237 285.136 285.906 286.112 284.217 281.619 280.2 280.587 282.568 283.222 282.685 281.203 280.797 279.453 278.454 277.738 277.484 277.505 278.065 278.98 279.322 278.901 277.997 276.985 276.366 275.819 274.876 273.759 272.862 271.833 269.807 266.022 259.866 255.81 252.382 249.349 246.822 244.802 243.637 242.857 241.21 223.936 226.09 228.237 229.32 231.14 233.624 235.761 236.972 237.705 238.513 241.103 245.963 251.065 257.389 264.659 270.699 272.389 272.529 272.792 273.083 273.352 273.815 274.135 274.284 274.546 275.014 275.846 277.126 278.681 280.293 281.689 283.086 284.403 285.517 286.696 288.019 289.197 290.2 291.083 291.924 292.698 293.456 294.176 294.672 294.943 295.037 295.059 295.155 295.332 295.576 295.962 296.492 297.2 298.034 298.849 299.544 300.094 300.322 300.262 300.151 300.037 299.998 300.191 300.522 300.749 300.734 300.282 299.143 298.7 299.746 301.595 302.0 301.489 300.402 299.397 298.754 297.212 296.022 295.053 293.948 292.895 291.968 290.524 289.542 288.243 286.471 285.075 283.952 284.537 285.833 286.006 284.763 282.531 280.795 280.489 281.991 282.489 281.518 280.692 280.253 279.15 278.241 277.654 277.552 277.795 278.306 278.872 279.148 278.818 278.088 277.282 276.722 276.212 275.362 274.249 273.289 272.284 270.465 267.216 261.763 255.917 252.484 249.909 247.156 244.996 243.793 242.939 241.273 diff --git a/Test/tas_mytest_reorder_split_lon.asc b/Test/tas_mytest_reorder_split_lon.asc deleted file mode 100644 index aa3c6dd6444a5d477937812cd840c56e803fd930..0000000000000000000000000000000000000000 --- a/Test/tas_mytest_reorder_split_lon.asc +++ /dev/null @@ -1,19 +0,0 @@ -tas -K -3 -3 -256 -128 -time -days since 0000-1-1 -682565.5 682595.0 682624.5 -682550.0 682581.0 682581.0 682609.0 682609.0 682640.0 -longitude -degrees_east --180.0 -178.59375 -177.1875 -175.78125 -174.375 -172.96875 -171.5625 -170.15625 -168.75 -167.34375 -165.9375 -164.53125 -163.125 -161.71875 -160.3125 -158.90625 -157.5 -156.09375 -154.6875 -153.28125 -151.875 -150.46875 -149.0625 -147.65625 -146.25 -144.84375 -143.4375 -142.03125 -140.625 -139.21875 -137.8125 -136.40625 -135.0 -133.59375 -132.1875 -130.78125 -129.375 -127.96875 -126.5625 -125.15625 -123.75 -122.34375 -120.9375 -119.53125 -118.125 -116.71875 -115.3125 -113.90625 -112.5 -111.09375 -109.6875 -108.28125 -106.875 -105.46875 -104.0625 -102.65625 -101.25 -99.84375 -98.4375 -97.03125 -95.625 -94.21875 -92.8125 -91.40625 -90.0 -88.59375 -87.1875 -85.78125 -84.375 -82.96875 -81.5625 -80.15625 -78.75 -77.34375 -75.9375 -74.53125 -73.125 -71.71875 -70.3125 -68.90625 -67.5 -66.09375 -64.6875 -63.28125 -61.875 -60.46875 -59.0625 -57.65625 -56.25 -54.84375 -53.4375 -52.03125 -50.625 -49.21875 -47.8125 -46.40625 -45.0 -43.59375 -42.1875 -40.78125 -39.375 -37.96875 -36.5625 -35.15625 -33.75 -32.34375 -30.9375 -29.53125 -28.125 -26.71875 -25.3125 -23.90625 -22.5 -21.09375 -19.6875 -18.28125 -16.875 -15.46875 -14.0625 -12.65625 -11.25 -9.84375 -8.4375 -7.03125 -5.625 -4.21875 -2.8125 -1.40625 0.0 1.40625 2.8125 4.21875 5.625 7.03125 8.4375 9.84375 11.25 12.65625 14.0625 15.46875 16.875 18.28125 19.6875 21.09375 22.5 23.90625 25.3125 26.71875 28.125 29.53125 30.9375 32.34375 33.75 35.15625 36.5625 37.96875 39.375 40.78125 42.1875 43.59375 45.0 46.40625 47.8125 49.21875 50.625 52.03125 53.4375 54.84375 56.25 57.65625 59.0625 60.46875 61.875 63.28125 64.6875 66.09375 67.5 68.90625 70.3125 71.71875 73.125 74.53125 75.9375 77.34375 78.75 80.15625 81.5625 82.96875 84.375 85.78125 87.1875 88.59375 90.0 91.40625 92.8125 94.21875 95.625 97.03125 98.4375 99.84375 101.25 102.65625 104.0625 105.46875 106.875 108.28125 109.6875 111.09375 112.5 113.90625 115.3125 116.71875 118.125 119.53125 120.9375 122.34375 123.75 125.15625 126.5625 127.96875 129.375 130.78125 132.1875 133.59375 135.0 136.40625 137.8125 139.21875 140.625 142.03125 143.4375 144.84375 146.25 147.65625 149.0625 150.46875 151.875 153.28125 154.6875 156.09375 157.5 158.90625 160.3125 161.71875 163.125 164.53125 165.9375 167.34375 168.75 170.15625 171.5625 172.96875 174.375 175.78125 177.1875 178.59375 --180.703125 -179.296875 -179.296875 -177.890625 -177.890625 -176.484375 -176.484375 -175.078125 -175.078125 -173.671875 -173.671875 -172.265625 -172.265625 -170.859375 -170.859375 -169.453125 -169.453125 -168.046875 -168.046875 -166.640625 -166.640625 -165.234375 -165.234375 -163.828125 -163.828125 -162.421875 -162.421875 -161.015625 -161.015625 -159.609375 -159.609375 -158.203125 -158.203125 -156.796875 -156.796875 -155.390625 -155.390625 -153.984375 -153.984375 -152.578125 -152.578125 -151.171875 -151.171875 -149.765625 -149.765625 -148.359375 -148.359375 -146.953125 -146.953125 -145.546875 -145.546875 -144.140625 -144.140625 -142.734375 -142.734375 -141.328125 -141.328125 -139.921875 -139.921875 -138.515625 -138.515625 -137.109375 -137.109375 -135.703125 -135.703125 -134.296875 -134.296875 -132.890625 -132.890625 -131.484375 -131.484375 -130.078125 -130.078125 -128.671875 -128.671875 -127.265625 -127.265625 -125.859375 -125.859375 -124.453125 -124.453125 -123.046875 -123.046875 -121.640625 -121.640625 -120.234375 -120.234375 -118.828125 -118.828125 -117.421875 -117.421875 -116.015625 -116.015625 -114.609375 -114.609375 -113.203125 -113.203125 -111.796875 -111.796875 -110.390625 -110.390625 -108.984375 -108.984375 -107.578125 -107.578125 -106.171875 -106.171875 -104.765625 -104.765625 -103.359375 -103.359375 -101.953125 -101.953125 -100.546875 -100.546875 -99.140625 -99.140625 -97.734375 -97.734375 -96.328125 -96.328125 -94.921875 -94.921875 -93.515625 -93.515625 -92.109375 -92.109375 -90.703125 -90.703125 -89.296875 -89.296875 -87.890625 -87.890625 -86.484375 -86.484375 -85.078125 -85.078125 -83.671875 -83.671875 -82.265625 -82.265625 -80.859375 -80.859375 -79.453125 -79.453125 -78.046875 -78.046875 -76.640625 -76.640625 -75.234375 -75.234375 -73.828125 -73.828125 -72.421875 -72.421875 -71.015625 -71.015625 -69.609375 -69.609375 -68.203125 -68.203125 -66.796875 -66.796875 -65.390625 -65.390625 -63.984375 -63.984375 -62.578125 -62.578125 -61.171875 -61.171875 -59.765625 -59.765625 -58.359375 -58.359375 -56.953125 -56.953125 -55.546875 -55.546875 -54.140625 -54.140625 -52.734375 -52.734375 -51.328125 -51.328125 -49.921875 -49.921875 -48.515625 -48.515625 -47.109375 -47.109375 -45.703125 -45.703125 -44.296875 -44.296875 -42.890625 -42.890625 -41.484375 -41.484375 -40.078125 -40.078125 -38.671875 -38.671875 -37.265625 -37.265625 -35.859375 -35.859375 -34.453125 -34.453125 -33.046875 -33.046875 -31.640625 -31.640625 -30.234375 -30.234375 -28.828125 -28.828125 -27.421875 -27.421875 -26.015625 -26.015625 -24.609375 -24.609375 -23.203125 -23.203125 -21.796875 -21.796875 -20.390625 -20.390625 -18.984375 -18.984375 -17.578125 -17.578125 -16.171875 -16.171875 -14.765625 -14.765625 -13.359375 -13.359375 -11.953125 -11.953125 -10.546875 -10.546875 -9.140625 -9.140625 -7.734375 -7.734375 -6.328125 -6.328125 -4.921875 -4.921875 -3.515625 -3.515625 -2.109375 -2.109375 -0.703125 -0.703125 0.703125 0.703125 2.109375 2.109375 3.515625 3.515625 4.921875 4.921875 6.328125 6.328125 7.734375 7.734375 9.140625 9.140625 10.546875 10.546875 11.953125 11.953125 13.359375 13.359375 14.765625 14.765625 16.171875 16.171875 17.578125 17.578125 18.984375 18.984375 20.390625 20.390625 21.796875 21.796875 23.203125 23.203125 24.609375 24.609375 26.015625 26.015625 27.421875 27.421875 28.828125 28.828125 30.234375 30.234375 31.640625 31.640625 33.046875 33.046875 34.453125 34.453125 35.859375 35.859375 37.265625 37.265625 38.671875 38.671875 40.078125 40.078125 41.484375 41.484375 42.890625 42.890625 44.296875 44.296875 45.703125 45.703125 47.109375 47.109375 48.515625 48.515625 49.921875 49.921875 51.328125 51.328125 52.734375 52.734375 54.140625 54.140625 55.546875 55.546875 56.953125 56.953125 58.359375 58.359375 59.765625 59.765625 61.171875 61.171875 62.578125 62.578125 63.984375 63.984375 65.390625 65.390625 66.796875 66.796875 68.203125 68.203125 69.609375 69.609375 71.015625 71.015625 72.421875 72.421875 73.828125 73.828125 75.234375 75.234375 76.640625 76.640625 78.046875 78.046875 79.453125 79.453125 80.859375 80.859375 82.265625 82.265625 83.671875 83.671875 85.078125 85.078125 86.484375 86.484375 87.890625 87.890625 89.296875 89.296875 90.703125 90.703125 92.109375 92.109375 93.515625 93.515625 94.921875 94.921875 96.328125 96.328125 97.734375 97.734375 99.140625 99.140625 100.546875 100.546875 101.953125 101.953125 103.359375 103.359375 104.765625 104.765625 106.171875 106.171875 107.578125 107.578125 108.984375 108.984375 110.390625 110.390625 111.796875 111.796875 113.203125 113.203125 114.609375 114.609375 116.015625 116.015625 117.421875 117.421875 118.828125 118.828125 120.234375 120.234375 121.640625 121.640625 123.046875 123.046875 124.453125 124.453125 125.859375 125.859375 127.265625 127.265625 128.671875 128.671875 130.078125 130.078125 131.484375 131.484375 132.890625 132.890625 134.296875 134.296875 135.703125 135.703125 137.109375 137.109375 138.515625 138.515625 139.921875 139.921875 141.328125 141.328125 142.734375 142.734375 144.140625 144.140625 145.546875 145.546875 146.953125 146.953125 148.359375 148.359375 149.765625 149.765625 151.171875 151.171875 152.578125 152.578125 153.984375 153.984375 155.390625 155.390625 156.796875 156.796875 158.203125 158.203125 159.609375 159.609375 161.015625 161.015625 162.421875 162.421875 163.828125 163.828125 165.234375 165.234375 166.640625 166.640625 168.046875 168.046875 169.453125 169.453125 170.859375 170.859375 172.265625 172.265625 173.671875 173.671875 175.078125 175.078125 176.484375 176.484375 177.890625 177.890625 179.296875 -latitude -degrees_north --88.9277353523 -87.538705213 -86.1414721015 -84.7423855907 -83.3425960441 -81.9424662992 -80.5421464346 -79.1417096486 -77.7411958655 -76.3406287024 -74.9400230196 -73.5393886338 -72.1387322892 -70.7380587725 -69.337371575 -67.9366733026 -66.5359659402 -65.135251026 -63.7345297708 -62.3338031405 -60.9330719152 -59.5323367318 -58.1315981156 -56.7308565037 -55.3301122627 -53.9293657026 -52.5286170871 -51.1278666424 -49.7271145631 -48.3263610182 -46.9256061547 -45.5248501013 -44.1240929714 -42.7233348649 -41.3225758706 -39.9218160676 -38.5210555266 -37.120294311 -35.7195324778 -34.3187700788 -32.9180071606 -31.5172437659 -30.1164799335 -28.7157156991 -27.3149510951 -25.9141861518 -24.5134208971 -23.1126553566 -21.7118895544 -20.311123513 -18.9103572532 -17.509590795 -16.1088241568 -14.7080573564 -13.3072904104 -11.906523335 -10.5057561452 -9.10498885605 -7.7042214816 -6.30345403571 -4.90268653183 -3.50191898313 -2.10115140258 -0.700383802973 0.700383802973 2.10115140258 3.50191898313 4.90268653183 6.30345403571 7.7042214816 9.10498885605 10.5057561452 11.906523335 13.3072904104 14.7080573564 16.1088241568 17.509590795 18.9103572532 20.311123513 21.7118895544 23.1126553566 24.5134208971 25.9141861518 27.3149510951 28.7157156991 30.1164799335 31.5172437659 32.9180071606 34.3187700788 35.7195324778 37.120294311 38.5210555266 39.9218160676 41.3225758706 42.7233348649 44.1240929714 45.5248501013 46.9256061547 48.3263610182 49.7271145631 51.1278666424 52.5286170871 53.9293657026 55.3301122627 56.7308565037 58.1315981156 59.5323367318 60.9330719152 62.3338031405 63.7345297708 65.135251026 66.5359659402 67.9366733026 69.337371575 70.7380587725 72.1387322892 73.5393886338 74.9400230196 76.3406287024 77.7411958655 79.1417096486 80.5421464346 81.9424662992 83.3425960441 84.7423855907 86.1414721015 87.538705213 88.9277353523 --90.0 -88.2332202827 -88.2332202827 -86.8400886573 -86.8400886573 -85.4419288461 -85.4419288461 -84.0424908174 -84.0424908174 -82.6425311716 -82.6425311716 -81.2423063669 -81.2423063669 -79.8419280416 -79.8419280416 -78.4414527571 -78.4414527571 -77.0409122839 -77.0409122839 -75.640325861 -75.640325861 -74.2397058267 -74.2397058267 -72.8390604615 -72.8390604615 -71.4383955308 -71.4383955308 -70.0377151737 -70.0377151737 -68.6370224388 -68.6370224388 -67.2363196214 -67.2363196214 -65.8356084831 -65.8356084831 -64.4348903984 -64.4348903984 -63.0341664557 -63.0341664557 -61.6334375279 -61.6334375279 -60.2327043235 -60.2327043235 -58.8319674237 -58.8319674237 -57.4312273097 -57.4312273097 -56.0304843832 -56.0304843832 -54.6297389826 -54.6297389826 -53.2289913948 -53.2289913948 -51.8282418647 -51.8282418647 -50.4274906027 -50.4274906027 -49.0267377906 -49.0267377906 -47.6259835864 -47.6259835864 -46.225228128 -46.225228128 -44.8244715363 -44.8244715363 -43.4237139181 -43.4237139181 -42.0229553678 -42.0229553678 -40.6221959691 -40.6221959691 -39.2214357971 -39.2214357971 -37.8206749188 -37.8206749188 -36.4199133944 -36.4199133944 -35.0191512783 -35.0191512783 -33.6183886197 -33.6183886197 -32.2176254633 -32.2176254633 -30.8168618497 -30.8168618497 -29.4160978163 -29.4160978163 -28.0153333971 -28.0153333971 -26.6145686235 -26.6145686235 -25.2138035245 -25.2138035245 -23.8130381268 -23.8130381268 -22.4122724555 -22.4122724555 -21.0115065337 -21.0115065337 -19.6107403831 -19.6107403831 -18.2099740241 -18.2099740241 -16.8092074759 -16.8092074759 -15.4084407566 -15.4084407566 -14.0076738834 -14.0076738834 -12.6069068727 -12.6069068727 -11.2061397401 -11.2061397401 -9.80537250065 -9.80537250065 -8.40460516882 -8.40460516882 -7.00383775865 -7.00383775865 -5.60307028377 -5.60307028377 -4.20230275748 -4.20230275748 -2.80153519286 -2.80153519286 -1.40076760278 -1.40076760278 0.0 0.0 1.40076760278 1.40076760278 2.80153519286 2.80153519286 4.20230275748 4.20230275748 5.60307028377 5.60307028377 7.00383775865 7.00383775865 8.40460516882 8.40460516882 9.80537250065 9.80537250065 11.2061397401 11.2061397401 12.6069068727 12.6069068727 14.0076738834 14.0076738834 15.4084407566 15.4084407566 16.8092074759 16.8092074759 18.2099740241 18.2099740241 19.6107403831 19.6107403831 21.0115065337 21.0115065337 22.4122724555 22.4122724555 23.8130381268 23.8130381268 25.2138035245 25.2138035245 26.6145686235 26.6145686235 28.0153333971 28.0153333971 29.4160978163 29.4160978163 30.8168618497 30.8168618497 32.2176254633 32.2176254633 33.6183886197 33.6183886197 35.0191512783 35.0191512783 36.4199133944 36.4199133944 37.8206749188 37.8206749188 39.2214357971 39.2214357971 40.6221959691 40.6221959691 42.0229553678 42.0229553678 43.4237139181 43.4237139181 44.8244715363 44.8244715363 46.225228128 46.225228128 47.6259835864 47.6259835864 49.0267377906 49.0267377906 50.4274906027 50.4274906027 51.8282418647 51.8282418647 53.2289913948 53.2289913948 54.6297389826 54.6297389826 56.0304843832 56.0304843832 57.4312273097 57.4312273097 58.8319674237 58.8319674237 60.2327043235 60.2327043235 61.6334375279 61.6334375279 63.0341664557 63.0341664557 64.4348903984 64.4348903984 65.8356084831 65.8356084831 67.2363196214 67.2363196214 68.6370224388 68.6370224388 70.0377151737 70.0377151737 71.4383955308 71.4383955308 72.8390604615 72.8390604615 74.2397058267 74.2397058267 75.640325861 75.640325861 77.0409122839 77.0409122839 78.4414527571 78.4414527571 79.8419280416 79.8419280416 81.2423063669 81.2423063669 82.6425311716 82.6425311716 84.0424908174 84.0424908174 85.4419288461 85.4419288461 86.8400886573 86.8400886573 88.2332202827 88.2332202827 90.0 -246.618 249.44 254.053 259.269 263.412 265.81 266.671 267.247 268.652 269.128 269.342 269.956 271.082 271.672 271.857 271.848 272.066 272.884 274.032 274.974 275.571 276.138 276.852 277.663 278.513 279.382 280.321 281.277 282.345 283.824 285.465 287.109 288.687 290.136 291.497 292.241 292.577 292.83 293.149 293.552 293.944 294.327 294.746 295.222 295.703 296.208 296.765 297.292 297.794 298.332 298.836 299.173 299.382 299.601 299.958 300.391 300.694 300.789 300.849 300.818 300.562 300.125 299.587 299.036 298.785 299.092 299.698 300.108 300.138 299.883 299.454 298.907 298.389 298.026 297.616 297.057 296.64 296.439 296.163 295.684 295.052 294.204 293.232 292.241 291.293 290.245 289.202 288.121 286.876 285.644 284.237 282.415 280.535 278.673 277.007 275.996 275.439 274.971 274.576 274.211 273.696 273.065 272.236 271.132 269.603 266.558 260.423 252.256 247.942 245.516 242.328 237.245 236.383 237.332 238.392 239.929 240.675 239.664 239.389 239.752 239.891 239.565 239.729 240.619 241.094 240.812 239.906 239.143 246.645 249.529 254.265 259.548 263.627 265.916 266.726 267.307 268.371 268.636 268.862 269.494 270.562 271.089 271.525 271.766 272.0 272.775 273.944 274.926 275.549 276.146 276.876 277.692 278.529 279.386 280.299 281.227 282.278 283.78 285.473 287.132 288.623 289.944 291.185 291.887 292.229 292.558 292.982 293.443 293.843 294.261 294.719 295.157 295.613 296.155 296.719 297.217 297.726 298.292 298.796 299.136 299.342 299.54 299.872 300.31 300.638 300.789 300.847 300.791 300.522 300.055 299.469 298.918 298.7 299.006 299.608 300.061 300.144 299.906 299.444 298.875 298.371 298.021 297.613 297.049 296.594 296.345 296.074 295.636 295.017 294.164 293.177 292.133 291.186 290.142 289.094 287.997 286.745 285.5 284.072 282.33 280.542 278.796 277.282 276.345 275.762 275.284 274.87 274.398 273.815 273.152 272.331 271.272 269.784 266.527 260.526 253.183 249.372 247.447 244.386 238.216 236.938 237.569 239.075 240.337 240.801 239.887 239.529 239.759 239.868 239.48 239.613 240.574 241.146 240.817 239.906 239.137 246.675 249.638 254.444 259.807 263.877 265.976 266.757 267.319 268.086 268.199 268.432 269.043 270.024 270.599 271.155 271.628 271.926 272.688 273.864 274.872 275.515 276.131 276.873 277.701 278.559 279.427 280.317 281.225 282.269 283.785 285.504 287.154 288.597 289.777 290.843 291.501 291.872 292.287 292.819 293.358 293.774 294.196 294.677 295.116 295.575 296.126 296.663 297.133 297.65 298.226 298.727 299.105 299.365 299.582 299.883 300.274 300.586 300.77 300.832 300.755 300.459 299.945 299.319 298.773 298.575 298.884 299.497 299.993 300.115 299.91 299.45 298.861 298.344 297.986 297.59 297.043 296.552 296.239 295.975 295.6 295.013 294.146 293.134 292.05 291.086 290.033 288.981 287.863 286.591 285.265 283.806 282.212 280.557 278.916 277.603 276.707 276.063 275.54 275.114 274.618 273.98 273.265 272.435 271.411 269.914 266.584 260.64 254.062 250.508 248.735 245.757 239.211 237.617 237.793 239.227 240.363 240.857 240.055 239.595 239.738 239.798 239.319 239.471 240.513 241.175 240.791 239.9 239.132 246.709 249.725 254.642 260.06 264.077 266.024 266.752 267.278 267.916 268.032 268.239 268.628 269.516 270.231 270.827 271.448 271.848 272.602 273.778 274.807 275.477 276.099 276.837 277.67 278.559 279.449 280.345 281.254 282.299 283.813 285.535 287.206 288.615 289.658 290.559 291.18 291.613 292.117 292.724 293.31 293.744 294.149 294.636 295.092 295.57 296.106 296.596 297.049 297.586 298.149 298.627 299.052 299.397 299.654 299.937 300.291 300.578 300.747 300.789 300.698 300.385 299.826 299.17 298.623 298.405 298.7 299.358 299.915 300.068 299.892 299.455 298.852 298.314 297.948 297.575 297.045 296.508 296.125 295.877 295.576 295.021 294.137 293.103 291.989 290.993 289.915 288.854 287.719 286.437 285.043 283.535 282.058 280.577 279.088 277.896 277.019 276.319 275.748 275.283 274.782 274.162 273.452 272.581 271.572 269.945 266.597 260.71 254.635 251.259 249.538 246.324 240.265 238.428 238.364 239.296 240.334 240.971 240.241 239.646 239.687 239.648 239.145 239.371 240.437 241.155 240.796 239.873 239.125 246.732 249.795 254.825 260.304 264.223 266.035 266.727 267.057 267.702 267.886 268.182 268.381 269.129 269.908 270.579 271.25 271.764 272.501 273.656 274.699 275.426 276.053 276.752 277.581 278.505 279.421 280.347 281.29 282.339 283.83 285.547 287.244 288.625 289.584 290.358 290.942 291.463 292.059 292.672 293.242 293.69 294.089 294.582 295.054 295.541 296.053 296.517 296.976 297.524 298.051 298.494 298.959 299.385 299.686 299.988 300.366 300.629 300.71 300.705 300.622 300.314 299.717 299.048 298.498 298.228 298.469 299.183 299.837 300.052 299.883 299.445 298.83 298.287 297.928 297.571 297.047 296.473 296.046 295.824 295.579 295.043 294.151 293.1 291.961 290.917 289.819 288.742 287.591 286.33 284.916 283.373 281.964 280.614 279.257 278.178 277.341 276.591 275.923 275.388 274.876 274.3 273.615 272.783 271.719 269.932 266.401 260.64 254.981 252.004 250.114 245.962 241.305 239.129 239.057 239.718 240.278 240.865 240.354 239.736 239.616 239.428 239.018 239.3 240.354 241.139 240.8 239.879 239.105 246.76 249.869 254.975 260.516 264.341 266.067 266.677 267.042 267.583 267.91 268.171 268.362 269.108 269.778 270.463 271.133 271.685 272.393 273.522 274.578 275.366 276.006 276.658 277.472 278.41 279.333 280.291 281.286 282.329 283.787 285.491 287.171 288.536 289.505 290.223 290.773 291.336 291.971 292.548 293.063 293.511 293.952 294.487 295.007 295.493 295.992 296.467 296.937 297.462 297.959 298.425 298.937 299.387 299.697 300.022 300.432 300.658 300.675 300.663 300.613 300.301 299.644 298.916 298.336 298.064 298.284 299.016 299.738 300.019 299.854 299.415 298.821 298.288 297.908 297.523 296.983 296.404 295.989 295.797 295.59 295.097 294.233 293.159 291.968 290.868 289.759 288.67 287.497 286.282 284.893 283.351 281.981 280.685 279.46 278.434 277.591 276.837 276.126 275.479 274.922 274.369 273.672 272.898 271.848 269.847 266.04 260.336 255.361 252.844 250.509 246.744 242.504 240.969 240.079 240.253 240.279 240.644 240.356 239.837 239.57 239.246 238.874 239.18 240.271 241.12 240.813 239.924 239.078 246.791 249.966 255.162 260.714 264.45 266.024 266.597 267.006 267.486 268.027 268.235 268.447 269.182 269.78 270.412 271.068 271.601 272.286 273.381 274.458 275.305 275.969 276.585 277.377 278.311 279.21 280.185 281.228 282.272 283.69 285.365 287.0 288.347 289.347 290.064 290.593 291.167 291.823 292.374 292.85 293.299 293.78 294.392 294.995 295.497 295.962 296.422 296.883 297.386 297.891 298.419 298.98 299.424 299.719 300.072 300.475 300.645 300.659 300.701 300.673 300.334 299.623 298.811 298.157 297.89 298.132 298.881 299.635 299.959 299.795 299.368 298.821 298.305 297.896 297.489 296.942 296.348 295.927 295.741 295.572 295.151 294.331 293.221 291.973 290.825 289.703 288.607 287.435 286.281 284.957 283.473 282.118 280.824 279.676 278.679 277.811 277.057 276.316 275.577 274.954 274.348 273.597 272.836 271.843 269.663 265.592 259.982 255.976 253.78 251.233 247.971 244.07 242.814 241.406 240.785 240.486 240.669 240.446 239.889 239.539 239.084 238.667 238.978 240.156 241.102 240.852 239.968 239.049 246.838 250.025 255.3 260.886 264.55 265.994 266.497 266.899 267.452 268.149 268.34 268.596 269.257 269.818 270.42 271.043 271.527 272.189 273.243 274.336 275.238 275.937 276.535 277.306 278.222 279.075 280.046 281.127 282.181 283.559 285.193 286.774 288.097 289.106 289.85 290.39 290.985 291.66 292.201 292.673 293.127 293.637 294.33 295.009 295.524 295.939 296.356 296.805 297.315 297.855 298.43 299.015 299.434 299.714 300.102 300.481 300.602 300.653 300.77 300.729 300.342 299.625 298.773 298.044 297.765 298.026 298.781 299.56 299.915 299.743 299.324 298.822 298.317 297.884 297.482 296.953 296.343 295.898 295.687 295.54 295.19 294.421 293.279 291.988 290.799 289.642 288.516 287.365 286.283 285.02 283.621 282.319 281.05 279.938 278.934 278.014 277.239 276.467 275.659 274.987 274.256 273.388 272.622 271.657 269.382 264.999 259.961 256.695 254.745 252.408 249.22 246.245 244.401 242.842 241.413 240.841 240.886 240.514 239.914 239.515 238.903 238.402 238.75 240.031 241.069 240.92 240.006 239.022 246.856 250.102 255.424 261.037 264.639 265.969 266.404 266.806 267.55 268.226 268.507 268.828 269.336 269.893 270.411 271.085 271.49 272.112 273.129 274.221 275.163 275.904 276.51 277.261 278.152 278.95 279.887 280.988 282.056 283.4 284.994 286.534 287.814 288.787 289.538 290.14 290.804 291.497 292.037 292.55 293.035 293.559 294.289 294.988 295.472 295.842 296.249 296.74 297.312 297.876 298.426 298.973 299.352 299.652 300.078 300.435 300.537 300.638 300.794 300.701 300.251 299.569 298.745 298.007 297.727 297.975 298.693 299.508 299.907 299.732 299.317 298.85 298.33 297.855 297.457 296.957 296.378 295.93 295.661 295.49 295.204 294.501 293.347 292.036 290.808 289.605 288.42 287.292 286.256 285.029 283.707 282.455 281.228 280.198 279.226 278.253 277.394 276.566 275.75 275.049 274.212 272.682 272.31 271.323 269.004 264.572 260.027 257.367 255.57 253.524 250.788 247.848 245.631 244.075 242.212 241.355 241.118 240.539 239.843 239.416 238.675 238.1 238.493 239.904 241.042 240.988 240.053 239.006 246.872 250.17 255.552 261.189 264.708 265.934 266.277 266.721 267.568 268.194 268.718 269.072 269.476 269.957 270.404 271.136 271.491 272.081 273.071 274.147 275.104 275.874 276.508 277.252 278.124 278.888 279.777 280.858 281.937 283.273 284.843 286.36 287.595 288.507 289.231 289.892 290.628 291.341 291.884 292.411 292.956 293.534 294.257 294.897 295.319 295.693 296.161 296.724 297.325 297.889 298.418 298.931 299.302 299.636 300.086 300.463 300.578 300.675 300.798 300.666 300.187 299.478 298.633 297.924 297.699 297.945 298.618 299.465 299.924 299.771 299.364 298.914 298.385 297.861 297.419 296.919 296.398 295.978 295.632 295.396 295.182 294.601 293.482 292.163 290.877 289.636 288.387 287.232 286.182 284.963 283.724 282.518 281.368 280.403 279.461 278.486 277.565 276.66 275.868 275.158 274.249 272.956 271.569 270.923 268.512 264.315 260.1 257.711 256.067 254.116 251.488 248.606 246.537 244.831 242.941 241.721 241.227 240.567 239.729 239.224 238.385 237.815 238.286 239.753 241.003 241.071 240.098 239.008 246.883 250.232 255.66 261.304 264.765 265.897 266.108 266.806 267.514 268.231 268.971 269.342 269.669 270.064 270.453 271.181 271.511 272.069 273.039 274.097 275.057 275.859 276.528 277.273 278.135 278.888 279.734 280.754 281.832 283.181 284.731 286.22 287.412 288.271 288.967 289.659 290.448 291.193 291.737 292.262 292.871 293.525 294.246 294.827 295.213 295.614 296.135 296.719 297.299 297.858 298.399 298.923 299.309 299.674 300.152 300.557 300.686 300.733 300.783 300.631 300.16 299.425 298.533 297.829 297.652 297.907 298.55 299.427 299.94 299.815 299.409 298.975 298.464 297.929 297.44 296.911 296.41 295.997 295.592 295.31 295.153 294.701 293.659 292.347 290.993 289.75 288.488 287.27 286.128 284.908 283.734 282.556 281.471 280.551 279.638 278.695 277.737 276.829 276.061 275.312 274.374 273.182 271.392 270.46 268.055 263.984 260.07 257.304 255.812 253.945 249.994 248.346 246.998 245.188 243.404 242.011 241.291 240.534 239.601 238.993 238.174 237.603 238.145 239.569 240.975 241.121 240.109 239.01 246.908 250.285 255.775 261.409 264.782 265.872 266.037 266.748 267.426 268.305 269.242 269.663 269.906 270.171 270.51 271.216 271.534 272.064 273.011 274.052 275.017 275.86 276.572 277.327 278.185 278.958 279.769 280.694 281.75 283.121 284.649 286.1 287.247 288.066 288.746 289.458 290.272 291.05 291.602 292.133 292.799 293.522 294.248 294.8 295.19 295.618 296.153 296.721 297.273 297.823 298.387 298.933 299.342 299.746 300.249 300.65 300.756 300.742 300.724 300.557 300.113 299.378 298.449 297.742 297.602 297.856 298.467 299.356 299.911 299.823 299.428 299.017 298.547 298.025 297.501 296.933 296.423 296.002 295.576 295.267 295.12 294.764 293.853 292.594 291.165 289.914 288.649 287.394 286.179 284.985 283.862 282.687 281.625 280.678 279.771 278.873 277.919 277.054 276.297 275.507 274.586 273.415 271.742 269.912 267.554 263.491 259.67 255.272 253.154 252.769 248.849 247.194 246.199 245.091 243.638 242.31 241.474 240.517 239.489 238.805 237.976 237.413 238.012 239.452 240.887 241.145 240.115 239.012 246.935 250.327 255.868 261.5 264.807 265.834 265.897 266.663 267.326 268.39 269.544 270.087 270.236 270.267 270.561 271.231 271.568 272.054 272.957 273.983 274.973 275.881 276.646 277.414 278.288 279.126 279.92 280.729 281.733 283.117 284.618 285.999 287.08 287.875 288.575 289.308 290.103 290.878 291.448 292.025 292.746 293.503 294.227 294.787 295.215 295.648 296.172 296.755 297.302 297.818 298.374 298.915 299.347 299.802 300.316 300.651 300.682 300.646 300.632 300.481 300.059 299.299 298.32 297.63 297.549 297.817 298.387 299.243 299.822 299.785 299.433 299.063 298.642 298.146 297.61 297.013 296.46 296.021 295.618 295.294 295.086 294.775 294.038 292.889 291.412 290.129 288.846 287.571 286.314 285.164 284.074 282.914 281.879 280.881 279.941 279.04 278.095 277.299 276.535 275.696 274.833 273.686 272.017 269.398 266.977 262.786 258.65 254.247 251.884 251.786 247.823 245.532 244.377 244.067 243.618 242.707 241.791 240.445 239.311 238.629 237.766 237.191 237.866 239.331 240.795 241.137 240.103 239.014 246.949 250.394 255.949 261.561 264.812 265.813 265.772 266.559 267.344 268.322 269.763 270.403 270.484 270.416 270.652 271.221 271.596 272.045 272.895 273.9 274.917 275.894 276.723 277.505 278.401 279.311 280.122 280.884 281.842 283.211 284.662 285.956 286.959 287.74 288.492 289.231 289.95 290.663 291.253 291.899 292.699 293.459 294.14 294.697 295.171 295.626 296.166 296.781 297.328 297.8 298.313 298.833 299.271 299.761 300.29 300.569 300.583 300.568 300.588 300.483 300.083 299.274 298.211 297.533 297.508 297.814 298.39 299.227 299.809 299.79 299.457 299.103 298.701 298.25 297.776 297.219 296.616 296.098 295.69 295.355 295.081 294.782 294.22 293.232 291.791 290.447 289.104 287.808 286.519 285.4 284.302 283.188 282.18 281.13 280.157 279.244 278.306 277.529 276.754 275.895 275.031 273.917 272.152 269.655 266.312 262.131 257.026 253.411 251.132 248.968 246.643 244.809 243.524 243.352 243.481 243.036 241.977 240.323 239.057 238.454 237.529 236.931 237.695 239.262 240.688 241.119 240.07 239.022 246.976 250.436 256.005 261.611 264.832 265.777 265.686 266.297 267.46 268.286 269.904 270.624 270.69 270.535 270.709 271.212 271.623 272.04 272.848 273.824 274.843 275.881 276.777 277.575 278.478 279.436 280.311 281.098 282.042 283.369 284.734 285.929 286.855 287.625 288.426 289.151 289.769 290.426 291.051 291.788 292.663 293.422 294.045 294.598 295.12 295.617 296.178 296.8 297.329 297.767 298.245 298.742 299.182 299.673 300.216 300.51 300.558 300.548 300.568 300.482 300.113 299.293 298.187 297.514 297.481 297.792 298.397 299.252 299.838 299.819 299.477 299.098 298.699 298.305 297.924 297.426 296.798 296.182 295.69 295.317 295.06 294.806 294.343 293.494 292.185 290.828 289.445 288.158 286.858 285.7 284.527 283.44 282.465 281.394 280.4 279.453 278.528 277.741 276.957 276.113 275.214 274.092 272.403 269.991 265.501 261.661 255.881 252.904 250.915 248.273 246.036 244.382 242.892 242.678 243.398 243.054 242.014 240.074 238.713 238.188 237.286 236.743 237.53 239.196 240.608 241.09 239.969 239.038 247.01 250.464 256.056 261.661 264.849 265.728 265.65 266.325 267.456 268.234 269.973 270.779 270.872 270.603 270.744 271.186 271.647 272.037 272.824 273.769 274.759 275.834 276.789 277.609 278.502 279.486 280.453 281.328 282.293 283.553 284.801 285.887 286.744 287.503 288.319 288.994 289.523 290.179 290.898 291.738 292.649 293.394 293.981 294.533 295.093 295.631 296.207 296.812 297.317 297.738 298.182 298.652 299.087 299.58 300.137 300.484 300.575 300.551 300.544 300.478 300.145 299.335 298.247 297.573 297.474 297.755 298.39 299.267 299.86 299.85 299.498 299.086 298.682 298.328 298.02 297.569 296.938 296.239 295.634 295.197 294.986 294.809 294.43 293.715 292.57 291.212 289.772 288.467 287.182 286.015 284.785 283.719 282.723 281.648 280.634 279.665 278.738 277.887 277.122 276.322 275.389 274.316 272.753 270.255 265.087 261.532 255.504 252.774 250.722 248.376 246.058 244.209 242.337 242.195 243.454 243.024 241.851 239.81 238.438 237.881 237.075 236.656 237.409 239.165 240.537 241.045 239.859 239.052 247.058 250.503 256.097 261.694 264.851 265.701 265.591 266.214 267.269 268.171 270.024 270.897 271.051 270.77 270.811 271.182 271.659 272.052 272.819 273.725 274.651 275.73 276.73 277.582 278.457 279.443 280.514 281.534 282.556 283.735 284.841 285.809 286.606 287.355 288.134 288.711 289.203 289.945 290.848 291.781 292.65 293.354 293.943 294.513 295.084 295.63 296.205 296.786 297.268 297.694 298.119 298.532 298.965 299.506 300.083 300.471 300.571 300.494 300.485 300.527 300.254 299.443 298.385 297.669 297.485 297.741 298.398 299.273 299.865 299.882 299.536 299.093 298.685 298.345 298.063 297.633 297.008 296.262 295.56 295.052 294.866 294.769 294.474 293.897 292.942 291.607 290.123 288.758 287.477 286.311 285.088 284.02 282.961 281.894 280.847 279.862 278.924 278.001 277.24 276.497 275.574 274.583 273.184 270.684 266.958 261.144 255.373 252.802 250.808 248.284 246.484 243.997 242.084 241.841 243.289 242.886 241.785 239.592 238.159 237.578 236.839 236.567 237.407 239.067 240.537 240.932 239.837 239.065 247.063 250.536 256.119 261.717 264.829 265.718 265.595 266.137 267.08 268.04 269.938 270.948 271.105 270.883 270.853 271.177 271.64 272.065 272.831 273.696 274.546 275.589 276.607 277.484 278.35 279.334 280.481 281.637 282.727 283.857 284.864 285.751 286.523 287.269 288.002 288.53 289.05 289.897 290.902 291.856 292.643 293.282 293.886 294.48 295.038 295.577 296.15 296.71 297.179 297.628 298.068 298.459 298.898 299.476 300.074 300.477 300.546 300.41 300.416 300.567 300.398 299.644 298.577 297.724 297.466 297.739 298.401 299.253 299.849 299.915 299.568 299.103 298.68 298.32 298.046 297.646 297.009 296.196 295.429 294.981 294.773 294.691 294.459 294.034 293.295 292.048 290.562 289.088 287.762 286.605 285.461 284.363 283.175 282.092 281.022 280.038 279.074 278.11 277.349 276.625 275.792 274.86 273.6 271.497 268.006 261.609 255.785 252.795 250.812 248.645 246.344 244.199 241.929 241.533 243.055 242.826 241.799 239.355 237.806 237.277 236.528 236.381 237.384 239.041 240.481 240.814 239.829 239.077 247.051 250.558 256.129 261.705 264.789 265.666 265.644 266.021 266.888 267.792 269.765 270.953 271.145 270.937 270.873 271.153 271.607 272.058 272.847 273.668 274.447 275.433 276.45 277.347 278.227 279.217 280.416 281.676 282.821 283.926 284.874 285.706 286.471 287.223 287.942 288.481 289.062 289.98 290.981 291.897 292.622 293.215 293.819 294.432 294.99 295.524 296.089 296.635 297.104 297.592 298.067 298.461 298.898 299.468 300.066 300.48 300.553 300.393 300.383 300.567 300.498 299.85 298.773 297.766 297.445 297.748 298.397 299.213 299.835 299.946 299.592 299.125 298.685 298.278 298.0 297.639 296.997 296.127 295.358 294.987 294.727 294.585 294.361 294.056 293.523 292.484 291.138 289.589 288.133 286.955 285.873 284.694 283.396 282.285 281.173 280.166 279.195 278.259 277.477 276.764 275.984 275.093 273.977 272.313 268.874 264.197 256.737 252.767 250.207 248.304 245.887 244.351 241.737 241.226 242.742 242.896 241.865 239.048 237.432 236.941 236.169 236.122 237.314 239.058 240.405 240.689 239.82 239.087 247.053 250.575 256.132 261.682 264.726 265.593 265.579 265.895 266.663 267.428 269.511 270.895 271.162 270.919 270.899 271.112 271.568 272.046 272.858 273.647 274.362 275.269 276.264 277.184 278.098 279.108 280.355 281.689 282.865 283.951 284.856 285.646 286.404 287.168 287.896 288.484 289.166 290.123 291.055 291.903 292.599 293.172 293.768 294.387 294.956 295.486 296.027 296.56 297.056 297.594 298.092 298.484 298.913 299.48 300.067 300.477 300.569 300.426 300.398 300.565 300.551 300.004 298.916 297.79 297.438 297.777 298.407 299.18 299.823 299.962 299.61 299.156 298.709 298.248 297.947 297.628 297.016 296.233 295.566 295.034 294.678 294.448 294.213 293.996 293.625 292.797 291.636 290.098 288.583 287.346 286.296 285.011 283.639 282.468 281.334 280.299 279.312 278.435 277.648 276.93 276.162 275.216 274.279 272.973 270.271 265.955 259.563 252.742 249.409 248.021 245.986 244.052 241.542 241.027 242.474 242.855 241.751 238.83 237.212 236.595 235.862 235.933 237.277 239.084 240.306 240.564 239.815 239.096 247.082 250.604 256.123 261.645 264.64 265.524 265.497 265.642 266.274 266.909 269.0 270.772 271.182 270.924 270.909 271.088 271.53 272.057 272.891 273.66 274.302 275.092 276.027 276.982 277.96 279.014 280.309 281.683 282.863 283.913 284.775 285.531 286.3 287.09 287.828 288.477 289.289 290.253 291.096 291.86 292.551 293.145 293.752 294.362 294.93 295.45 295.958 296.489 297.047 297.621 298.107 298.486 298.947 299.561 300.151 300.506 300.562 300.451 300.414 300.556 300.579 300.08 298.968 297.787 297.421 297.757 298.384 299.159 299.825 299.978 299.617 299.159 298.712 298.225 297.885 297.603 297.077 296.384 295.718 295.092 294.607 294.306 294.068 293.894 293.632 292.985 292.023 290.61 289.11 287.754 286.632 285.292 283.965 282.725 281.525 280.44 279.473 278.603 277.794 277.122 276.297 275.318 274.461 273.431 271.436 267.488 261.741 253.105 249.238 247.511 245.738 243.733 241.273 240.828 242.226 242.812 241.725 238.703 237.029 236.288 235.571 235.805 237.203 239.079 240.172 240.475 239.824 239.1 247.119 250.609 256.091 261.591 264.615 265.452 265.511 265.36 265.879 266.441 268.476 270.633 271.193 270.976 270.951 271.134 271.541 272.103 272.973 273.72 274.303 274.971 275.813 276.787 277.844 278.952 280.287 281.668 282.825 283.829 284.653 285.411 286.238 287.074 287.824 288.517 289.368 290.32 291.098 291.794 292.456 293.082 293.742 294.36 294.914 295.422 295.925 296.485 297.096 297.674 298.152 298.575 299.098 299.736 300.306 300.611 300.636 300.482 300.392 300.518 300.572 300.076 298.96 297.798 297.383 297.631 298.271 299.12 299.825 300.007 299.647 299.139 298.659 298.174 297.802 297.517 297.075 296.494 295.817 295.072 294.505 294.187 293.961 293.786 293.573 293.063 292.281 291.099 289.674 288.221 286.984 285.609 284.333 283.001 281.758 280.629 279.674 278.748 277.91 277.256 276.392 275.421 274.591 273.794 272.394 269.061 263.29 254.4 249.543 247.123 245.507 243.325 241.007 240.657 242.046 242.768 241.743 238.472 236.783 235.986 235.208 235.594 237.184 238.937 240.052 240.396 239.827 239.103 247.124 250.609 256.059 261.524 264.518 265.397 265.474 264.995 265.481 266.395 267.981 270.487 271.209 271.064 270.97 271.187 271.599 272.185 273.094 273.829 274.368 274.922 275.649 276.616 277.752 278.916 280.276 281.649 282.774 283.734 284.544 285.336 286.234 287.116 287.893 288.615 289.457 290.371 291.092 291.73 292.342 292.995 293.714 294.347 294.897 295.403 295.922 296.524 297.164 297.725 298.222 298.728 299.288 299.881 300.384 300.673 300.704 300.523 300.347 300.446 300.52 300.005 298.895 297.795 297.353 297.508 298.167 299.09 299.813 300.016 299.668 299.119 298.612 298.128 297.723 297.414 297.012 296.484 295.783 294.971 294.365 294.047 293.816 293.644 293.46 293.05 292.434 291.543 290.269 288.771 287.364 285.974 284.69 283.303 282.013 280.862 279.928 278.881 278.018 277.332 276.465 275.541 274.729 274.043 273.083 270.325 265.319 254.538 249.411 247.179 245.793 243.085 240.758 240.586 241.783 242.707 241.573 238.183 236.555 235.672 234.842 235.322 237.092 238.82 239.9 240.317 239.805 239.097 247.133 250.62 256.009 261.446 264.42 265.28 265.388 264.865 265.061 266.218 267.484 270.274 271.22 271.154 270.988 271.235 271.666 272.297 273.239 273.977 274.503 274.972 275.564 276.491 277.695 278.912 280.278 281.624 282.713 283.642 284.459 285.304 286.258 287.17 287.975 288.73 289.546 290.397 291.077 291.676 292.252 292.923 293.679 294.316 294.879 295.401 295.937 296.575 297.23 297.769 298.295 298.887 299.45 299.954 300.385 300.654 300.7 300.509 300.272 300.347 300.425 299.886 298.776 297.759 297.326 297.427 298.098 299.068 299.799 299.997 299.648 299.083 298.571 298.078 297.636 297.31 296.929 296.41 295.685 294.839 294.179 293.827 293.579 293.421 293.277 292.951 292.438 291.744 290.674 289.32 287.854 286.387 285.021 283.644 282.32 281.156 280.161 279.059 278.161 277.403 276.543 275.672 274.917 274.232 273.515 271.42 266.0 256.757 249.709 247.372 245.864 242.802 240.777 240.604 241.611 242.624 241.404 238.156 236.397 235.357 234.649 235.126 236.977 238.744 239.722 240.236 239.733 239.054 247.154 250.626 255.951 261.354 264.288 265.153 265.24 264.571 264.604 265.781 266.987 269.961 271.205 271.238 271.07 271.274 271.747 272.43 273.404 274.173 274.736 275.167 275.632 276.461 277.701 278.96 280.306 281.588 282.626 283.541 284.391 285.295 286.272 287.172 287.996 288.772 289.56 290.345 291.018 291.639 292.247 292.924 293.648 294.265 294.863 295.43 295.975 296.627 297.289 297.823 298.393 299.03 299.552 299.975 300.363 300.593 300.604 300.409 300.17 300.245 300.33 299.784 298.683 297.72 297.31 297.391 298.038 299.015 299.786 299.982 299.596 299.033 298.537 298.012 297.527 297.199 296.822 296.299 295.583 294.721 293.978 293.551 293.285 293.145 293.036 292.774 292.346 291.797 290.903 289.721 288.263 286.76 285.341 284.038 282.682 281.486 280.38 279.285 278.39 277.545 276.653 275.808 275.134 274.398 273.84 272.168 266.83 258.201 250.598 247.673 245.824 242.885 241.025 240.778 241.702 242.635 241.393 238.012 236.166 235.08 234.503 235.103 236.821 238.742 239.535 240.116 239.583 238.99 247.175 250.611 255.879 261.251 264.168 265.033 265.094 264.261 264.096 265.461 266.523 269.581 271.169 271.318 271.178 271.337 271.813 272.534 273.516 274.33 274.947 275.405 275.824 276.569 277.787 279.051 280.353 281.545 282.53 283.456 284.36 285.304 286.286 287.17 287.981 288.736 289.481 290.247 290.957 291.643 292.312 292.99 293.666 294.256 294.889 295.491 296.02 296.642 297.296 297.865 298.477 299.101 299.572 299.966 300.341 300.53 300.514 300.348 300.14 300.185 300.252 299.749 298.688 297.722 297.314 297.407 298.006 298.947 299.775 299.986 299.563 299.004 298.517 297.962 297.44 297.09 296.675 296.162 295.525 294.661 293.794 293.263 292.97 292.828 292.744 292.535 292.178 291.747 291.01 290.005 288.622 287.109 285.63 284.401 283.066 281.803 280.576 279.529 278.621 277.777 276.793 275.983 275.317 274.584 274.12 272.539 267.536 257.73 250.656 247.939 245.681 242.839 241.237 241.003 241.621 242.369 241.196 237.635 235.817 234.761 234.278 235.096 236.75 238.711 239.376 239.839 239.463 238.94 247.187 250.594 255.798 261.129 264.031 264.944 264.914 263.965 263.527 264.872 266.177 269.153 271.127 271.377 271.304 271.426 271.858 272.612 273.576 274.425 275.1 275.632 276.066 276.772 277.921 279.155 280.405 281.508 282.447 283.409 284.364 285.335 286.315 287.2 288.004 288.716 289.414 290.188 290.948 291.688 292.397 293.078 293.739 294.323 294.96 295.575 296.082 296.649 297.27 297.86 298.489 299.1 299.562 299.961 300.313 300.46 300.44 300.318 300.126 300.119 300.161 299.702 298.689 297.694 297.284 297.419 297.995 298.887 299.729 299.946 299.511 298.956 298.471 297.896 297.361 296.976 296.516 296.028 295.472 294.603 293.654 293.033 292.691 292.515 292.438 292.25 291.921 291.584 291.015 290.161 288.944 287.457 285.968 284.689 283.337 282.022 280.782 279.751 278.839 278.001 277.018 276.197 275.5 274.857 274.39 272.725 267.779 257.186 250.818 248.349 245.84 242.919 241.288 240.973 241.404 241.829 240.662 237.468 235.506 234.498 234.102 235.075 236.807 238.566 239.193 239.525 239.413 238.939 247.175 250.583 255.71 260.988 263.888 264.799 264.706 263.549 263.008 264.198 265.826 268.716 271.054 271.42 271.426 271.522 271.897 272.669 273.601 274.473 275.211 275.846 276.333 277.008 278.071 279.251 280.448 281.482 282.395 283.405 284.406 285.381 286.344 287.242 288.059 288.74 289.405 290.196 291.002 291.767 292.487 293.173 293.849 294.431 295.043 295.649 296.148 296.682 297.268 297.835 298.445 299.049 299.566 300.003 300.309 300.398 300.369 300.271 300.074 300.021 300.045 299.634 298.661 297.639 297.213 297.388 297.967 298.836 299.669 299.882 299.446 298.893 298.401 297.809 297.268 296.841 296.345 295.893 295.386 294.503 293.515 292.811 292.366 292.144 292.092 291.93 291.629 291.358 290.913 290.182 289.2 287.829 286.326 284.949 283.576 282.187 280.999 279.977 279.062 278.219 277.32 276.494 275.774 275.232 274.646 272.656 267.431 257.048 251.234 248.783 246.051 243.021 241.411 240.747 241.164 241.388 239.869 237.097 235.235 234.274 234.065 235.079 236.926 238.428 238.96 239.329 239.368 238.938 247.197 250.591 255.617 260.842 263.711 264.642 264.482 263.001 262.415 263.529 265.335 268.249 270.9 271.439 271.525 271.617 271.945 272.708 273.608 274.496 275.292 276.045 276.594 277.223 278.193 279.314 280.481 281.49 282.409 283.457 284.477 285.435 286.361 287.257 288.12 288.824 289.486 290.283 291.104 291.874 292.597 293.281 293.942 294.501 295.081 295.679 296.186 296.718 297.293 297.827 298.38 298.984 299.599 300.081 300.314 300.326 300.29 300.178 299.955 299.868 299.879 299.507 298.575 297.538 297.083 297.275 297.885 298.784 299.629 299.827 299.383 298.829 298.332 297.73 297.178 296.692 296.165 295.736 295.244 294.363 293.396 292.614 292.012 291.714 291.675 291.532 291.278 291.095 290.746 290.096 289.284 288.097 286.699 285.232 283.834 282.391 281.236 280.199 279.326 278.461 277.654 276.857 276.174 275.616 274.798 272.122 266.726 256.77 251.698 249.108 245.95 242.872 241.26 240.384 240.954 240.951 238.98 236.55 235.003 234.107 234.035 235.258 236.939 238.368 238.809 239.14 239.315 238.938 247.224 250.565 255.499 260.664 263.532 264.484 264.245 262.667 261.836 262.769 265.221 267.943 270.739 271.453 271.559 271.673 272.014 272.748 273.632 274.524 275.358 276.179 276.76 277.345 278.247 279.336 280.515 281.55 282.493 283.533 284.534 285.485 286.385 287.255 288.154 288.92 289.63 290.417 291.203 291.97 292.702 293.352 293.96 294.514 295.1 295.683 296.177 296.688 297.234 297.766 298.341 298.997 299.651 300.109 300.266 300.234 300.195 300.072 299.838 299.708 299.662 299.285 298.369 297.324 296.885 297.121 297.785 298.726 299.581 299.764 299.3 298.751 298.26 297.666 297.106 296.563 295.987 295.533 295.023 294.193 293.279 292.413 291.636 291.257 291.204 291.068 290.876 290.778 290.493 289.921 289.243 288.193 286.913 285.545 284.175 282.687 281.471 280.453 279.58 278.775 277.979 277.234 276.634 275.903 274.554 270.974 265.22 256.262 252.244 249.74 245.712 242.748 240.838 239.907 240.634 240.544 238.393 236.336 234.93 234.064 234.026 235.479 236.969 238.367 238.71 238.967 239.26 238.937 247.244 250.549 255.337 260.458 263.329 264.238 263.916 262.261 261.318 262.06 264.774 267.658 270.583 271.459 271.593 271.737 272.094 272.804 273.681 274.567 275.428 276.274 276.866 277.421 278.282 279.366 280.555 281.624 282.588 283.592 284.569 285.534 286.437 287.284 288.185 289.002 289.766 290.558 291.306 292.064 292.79 293.412 294.015 294.614 295.216 295.744 296.197 296.667 297.168 297.712 298.372 299.095 299.726 300.122 300.224 300.152 300.084 299.965 299.748 299.566 299.44 299.045 298.14 297.079 296.677 296.974 297.694 298.673 299.541 299.703 299.22 298.674 298.175 297.572 297.003 296.425 295.804 295.303 294.783 294.007 293.112 292.201 291.365 290.941 290.81 290.639 290.46 290.341 290.078 289.62 289.06 288.143 286.968 285.761 284.44 283.034 281.744 280.732 279.839 279.082 278.313 277.599 276.905 275.923 273.67 269.723 261.698 256.106 252.43 249.9 245.949 243.003 240.365 239.479 240.434 240.392 238.16 236.377 234.98 234.12 234.189 235.636 237.073 238.3 238.642 238.833 239.204 238.937 247.243 250.545 255.234 260.267 263.083 263.952 263.539 261.836 260.752 261.45 264.456 267.354 270.368 271.464 271.624 271.805 272.184 272.88 273.747 274.628 275.506 276.361 276.946 277.492 278.348 279.43 280.605 281.694 282.669 283.63 284.582 285.57 286.493 287.318 288.209 289.059 289.863 290.684 291.436 292.176 292.876 293.491 294.147 294.818 295.406 295.83 296.229 296.684 297.173 297.742 298.485 299.218 299.774 300.107 300.183 300.077 299.958 299.856 299.68 299.445 299.231 298.821 297.931 296.867 296.485 296.839 297.613 298.634 299.516 299.653 299.158 298.612 298.097 297.469 296.886 296.29 295.623 295.058 294.517 293.777 292.885 291.967 291.15 290.699 290.489 290.295 290.127 289.904 289.555 289.158 288.686 287.898 286.85 285.818 284.566 283.266 282.041 281.043 280.116 279.369 278.642 277.885 276.9 275.271 272.19 267.627 259.872 255.545 252.77 250.301 246.355 243.003 239.803 239.129 240.218 240.227 237.915 236.443 235.072 234.176 234.428 235.72 237.185 238.16 238.587 238.708 239.146 238.936 247.256 250.505 255.106 260.037 262.848 263.655 263.247 261.457 260.206 260.944 264.0 266.991 270.121 271.453 271.647 271.883 272.298 272.985 273.816 274.694 275.596 276.462 277.045 277.626 278.508 279.56 280.683 281.758 282.721 283.644 284.571 285.566 286.502 287.33 288.228 289.086 289.902 290.789 291.599 292.332 292.991 293.612 294.348 295.056 295.551 295.86 296.224 296.707 297.232 297.869 298.623 299.269 299.706 299.985 300.058 299.948 299.802 299.748 299.63 299.357 299.059 298.604 297.696 296.636 296.283 296.708 297.553 298.635 299.499 299.582 299.073 298.543 298.029 297.393 296.795 296.183 295.461 294.814 294.222 293.495 292.625 291.747 290.988 290.485 290.179 289.955 289.781 289.477 289.07 288.697 288.188 287.421 286.503 285.649 284.548 283.366 282.275 281.297 280.412 279.621 278.884 277.945 276.511 273.78 270.408 264.087 258.457 255.146 252.697 250.293 246.825 243.529 240.258 238.728 239.848 240.011 237.953 236.558 235.212 234.265 234.564 235.868 237.182 238.093 238.46 238.551 239.071 238.937 247.271 250.466 254.967 259.799 262.594 263.355 262.868 261.138 259.74 260.394 263.543 266.71 269.92 271.426 271.663 271.933 272.4 273.075 273.858 274.725 275.651 276.544 277.174 277.817 278.722 279.732 280.784 281.807 282.725 283.628 284.554 285.54 286.478 287.343 288.275 289.137 289.939 290.841 291.69 292.435 293.09 293.754 294.527 295.194 295.598 295.88 296.266 296.741 297.288 297.968 298.685 299.232 299.59 299.831 299.885 299.777 299.664 299.647 299.563 299.314 299.013 298.492 297.486 296.399 296.106 296.629 297.567 298.69 299.495 299.517 299.013 298.499 297.982 297.338 296.722 296.088 295.332 294.618 293.928 293.166 292.334 291.561 290.857 290.273 289.855 289.607 289.41 289.052 288.61 288.213 287.609 286.847 286.063 285.265 284.334 283.332 282.385 281.403 280.574 279.792 278.889 277.562 275.398 271.968 266.832 261.541 257.631 254.419 252.32 250.581 247.069 243.854 240.284 238.796 239.627 240.007 238.032 236.641 235.393 234.409 234.712 235.959 237.172 238.064 238.3 238.495 238.953 238.939 247.264 250.485 254.831 259.538 262.307 263.054 262.547 260.71 259.238 259.938 263.099 266.586 269.695 271.392 271.665 271.949 272.473 273.147 273.886 274.732 275.668 276.593 277.295 278.013 278.935 279.906 280.899 281.849 282.705 283.595 284.542 285.536 286.476 287.376 288.352 289.216 289.991 290.858 291.715 292.485 293.174 293.893 294.69 295.306 295.672 296.009 296.435 296.876 297.39 298.044 298.701 299.177 299.502 299.707 299.722 299.616 299.547 299.544 299.464 299.245 298.973 298.409 297.316 296.208 295.966 296.574 297.605 298.757 299.491 299.485 299.013 298.51 297.963 297.288 296.654 296.01 295.246 294.496 293.705 292.875 292.073 291.385 290.754 290.153 289.633 289.248 288.952 288.596 288.17 287.715 287.019 286.268 285.617 284.851 283.99 283.122 282.299 281.368 280.486 279.599 278.428 276.604 273.514 269.332 263.365 260.02 256.805 254.156 252.268 250.689 247.159 244.13 240.24 238.479 239.337 239.865 238.012 236.693 235.471 234.461 234.927 235.981 237.204 238.022 238.193 238.385 238.922 238.942 247.26 250.45 254.694 259.256 261.988 262.685 262.144 260.331 258.811 259.564 263.11 266.438 269.502 271.325 271.644 271.936 272.517 273.209 273.916 274.729 275.661 276.62 277.402 278.194 279.129 280.065 281.013 281.882 282.667 283.55 284.533 285.544 286.497 287.426 288.423 289.278 290.039 290.879 291.718 292.507 293.242 294.007 294.814 295.391 295.763 296.163 296.616 297.032 297.513 298.111 298.696 299.112 299.417 299.574 299.558 299.474 299.443 299.445 299.357 299.151 298.881 298.288 297.152 296.054 295.845 296.527 297.643 298.816 299.488 299.453 299.012 298.525 297.952 297.254 296.617 295.975 295.2 294.407 293.529 292.629 291.825 291.177 290.641 290.099 289.516 288.958 288.532 288.176 287.756 287.215 286.467 285.752 285.196 284.445 283.608 282.832 282.023 281.149 280.112 278.832 277.084 274.816 271.563 266.253 261.256 258.893 255.932 253.951 252.549 250.115 247.485 244.282 240.347 238.604 238.828 239.653 238.122 236.697 235.558 234.563 235.046 236.086 237.22 237.95 238.121 238.273 238.913 238.945 247.295 250.414 254.543 258.964 261.665 262.311 261.712 260.014 258.469 259.272 262.206 266.264 269.387 271.191 271.583 271.895 272.531 273.275 273.971 274.741 275.65 276.639 277.499 278.36 279.293 280.192 281.098 281.892 282.613 283.503 284.504 285.516 286.494 287.44 288.418 289.29 290.101 290.94 291.739 292.532 293.292 294.064 294.835 295.386 295.769 296.165 296.612 297.054 297.571 298.139 298.665 299.055 299.327 299.423 299.398 299.351 299.342 299.359 299.287 299.081 298.789 298.167 296.995 295.901 295.729 296.502 297.711 298.885 299.497 299.412 298.977 298.511 297.941 297.244 296.615 295.976 295.177 294.303 293.367 292.438 291.61 290.961 290.498 290.036 289.409 288.699 288.137 287.753 287.335 286.777 286.055 285.321 284.729 284.041 283.25 282.556 281.735 280.707 279.411 277.451 275.046 272.416 268.075 263.092 259.842 257.768 256.067 254.397 252.392 250.064 247.577 244.17 240.62 238.726 238.647 239.371 237.961 236.533 235.553 234.764 235.147 236.192 237.204 237.913 238.088 238.186 238.905 238.946 247.288 250.386 254.376 258.663 261.338 261.949 261.353 259.635 258.293 259.059 261.98 266.261 269.322 271.039 271.487 271.847 272.538 273.341 274.058 274.789 275.663 276.658 277.57 278.473 279.377 280.227 281.096 281.861 282.574 283.485 284.469 285.448 286.447 287.411 288.377 289.278 290.147 291.007 291.777 292.556 293.321 294.066 294.776 295.301 295.682 296.048 296.462 296.979 297.583 298.149 298.627 299.0 299.25 299.317 299.28 299.228 299.224 299.274 299.239 299.067 298.797 298.16 296.937 295.819 295.681 296.543 297.799 298.94 299.515 299.433 299.013 298.551 297.972 297.252 296.607 295.962 295.136 294.172 293.21 292.29 291.434 290.724 290.256 289.842 289.212 288.438 287.795 287.358 286.911 286.373 285.74 285.029 284.31 283.58 282.898 282.302 281.465 280.134 278.205 275.684 272.3 269.019 264.873 261.671 258.744 257.179 256.17 254.301 251.996 250.077 247.656 244.128 240.67 238.86 238.622 238.916 237.668 236.347 235.458 234.776 235.361 236.223 237.217 237.923 238.033 238.12 238.898 238.948 247.328 250.374 254.24 258.333 260.992 261.587 260.96 259.22 258.121 258.904 261.844 266.484 269.258 270.875 271.376 271.791 272.535 273.399 274.154 274.878 275.708 276.682 277.622 278.548 279.41 280.201 281.035 281.802 282.551 283.493 284.447 285.395 286.397 287.386 288.352 289.263 290.172 291.048 291.8 292.559 293.323 294.05 294.7 295.185 295.582 295.957 296.373 296.957 297.636 298.165 298.57 298.91 299.137 299.194 299.141 299.076 299.089 299.187 299.183 299.034 298.793 298.136 296.868 295.735 295.649 296.598 297.871 298.951 299.486 299.436 299.058 298.603 298.01 297.285 296.618 295.956 295.107 294.09 293.106 292.172 291.287 290.542 290.062 289.64 288.983 288.184 287.53 287.091 286.645 286.157 285.629 284.906 283.907 282.98 282.308 281.827 281.03 279.324 276.74 272.743 268.302 265.864 263.097 260.509 258.351 257.071 256.058 254.226 251.535 250.0 247.662 244.052 240.768 238.844 238.653 238.334 237.347 236.165 235.423 234.861 235.53 236.303 237.217 237.877 237.984 238.03 238.891 238.973 247.339 250.362 254.066 258.009 260.623 261.23 260.461 258.851 257.855 258.838 261.779 266.399 269.131 270.711 271.249 271.722 272.519 273.44 274.249 274.984 275.781 276.719 277.657 278.594 279.412 280.144 280.945 281.732 282.533 283.513 284.444 285.37 286.358 287.359 288.321 289.239 290.158 291.043 291.812 292.57 293.31 293.997 294.577 295.026 295.467 295.891 296.332 296.964 297.677 298.167 298.51 298.8 299.01 299.074 299.019 298.936 298.964 299.101 299.125 298.995 298.775 298.082 296.763 295.634 295.614 296.644 297.951 298.969 299.435 299.382 299.041 298.603 298.039 297.353 296.67 295.963 295.077 294.03 293.019 292.057 291.163 290.461 290.007 289.564 288.858 288.061 287.498 287.161 286.8 286.379 285.793 284.835 283.355 281.927 281.13 280.709 279.868 278.05 275.026 269.846 266.022 264.103 261.742 259.924 258.618 256.938 255.83 253.938 251.392 250.323 247.277 243.547 240.464 238.459 238.323 237.526 236.729 235.718 235.281 234.953 235.674 236.457 237.158 237.83 237.946 238.015 238.853 239.001 247.318 250.333 253.906 257.662 260.217 260.808 259.985 258.484 257.651 258.817 261.81 265.722 269.044 270.558 271.102 271.626 272.469 273.446 274.329 275.092 275.87 276.776 277.68 278.605 279.397 280.075 280.845 281.655 282.501 283.521 284.455 285.364 286.314 287.289 288.243 289.174 290.108 291.042 291.881 292.656 293.324 293.901 294.374 294.795 295.309 295.833 296.32 296.951 297.636 298.128 298.467 298.732 298.908 298.977 298.937 298.841 298.864 298.987 299.026 298.932 298.743 298.036 296.69 295.582 295.576 296.657 298.041 299.037 299.4 299.274 298.934 298.53 298.065 297.46 296.763 295.973 295.021 293.945 292.914 291.949 291.114 290.501 290.07 289.565 288.806 288.067 287.662 287.433 287.093 286.523 285.526 284.044 281.604 279.599 279.074 279.058 278.346 275.652 271.842 267.807 264.527 262.86 260.775 259.755 258.682 257.309 255.757 253.586 251.934 249.75 246.265 243.167 240.155 238.629 237.88 236.658 235.966 235.372 235.173 234.898 235.901 236.573 237.14 237.827 237.938 238.005 238.65 238.991 247.305 250.288 253.737 257.311 259.829 260.439 259.577 258.182 257.537 258.874 261.85 266.078 269.013 270.47 270.975 271.547 272.409 273.417 274.36 275.159 275.938 276.829 277.692 278.587 279.36 280.023 280.783 281.598 282.454 283.49 284.444 285.349 286.25 287.175 288.137 289.122 290.106 291.107 291.99 292.752 293.342 293.819 294.237 294.651 295.208 295.803 296.318 296.911 297.548 298.035 298.386 298.652 298.791 298.83 298.797 298.736 298.784 298.896 298.912 298.833 298.657 297.97 296.667 295.593 295.597 296.675 298.067 299.027 299.323 299.138 298.779 298.406 298.052 297.534 296.861 296.032 295.016 293.874 292.802 291.872 291.165 290.622 290.102 289.488 288.788 288.252 288.033 287.837 287.196 286.027 284.066 281.071 278.226 276.096 275.695 276.162 275.751 273.144 269.575 266.234 263.894 261.756 260.337 259.668 259.067 257.645 255.537 252.876 251.029 248.882 245.558 242.561 239.638 238.703 237.871 236.237 235.269 235.421 235.34 234.995 236.036 236.714 237.154 237.847 237.935 237.989 238.478 238.994 247.321 250.26 253.587 256.951 259.38 259.994 259.123 257.861 257.509 258.999 261.945 265.907 269.035 270.449 270.89 271.472 272.342 273.378 274.371 275.203 275.992 276.875 277.703 278.554 279.31 279.985 280.737 281.541 282.401 283.453 284.424 285.32 286.178 287.079 288.078 289.137 290.175 291.189 292.037 292.748 293.301 293.758 294.185 294.612 295.166 295.756 296.268 296.83 297.449 297.923 298.261 298.532 298.678 298.68 298.61 298.591 298.709 298.853 298.856 298.762 298.57 297.893 296.653 295.63 295.684 296.773 298.106 298.986 299.229 299.009 298.616 298.275 298.01 297.589 296.978 296.153 295.09 293.876 292.761 291.847 291.182 290.635 290.046 289.439 288.952 288.701 288.563 288.009 286.56 283.793 280.423 277.874 274.811 273.023 273.484 274.32 273.936 271.515 268.012 265.065 262.973 260.979 259.965 259.62 258.796 257.477 254.926 252.195 249.832 247.87 244.829 242.154 239.647 238.746 237.739 235.87 235.144 235.632 235.419 234.966 236.133 236.894 237.13 237.811 237.916 237.953 238.455 238.996 247.329 250.22 253.451 256.583 258.925 259.523 258.667 257.569 257.5 259.153 262.09 265.471 269.09 270.456 270.866 271.414 272.274 273.347 274.381 275.238 276.039 276.919 277.714 278.513 279.256 279.955 280.7 281.48 282.35 283.428 284.412 285.28 286.106 287.013 288.062 289.184 290.267 291.243 291.999 292.645 293.199 293.698 294.168 294.614 295.133 295.684 296.177 296.716 297.342 297.809 298.112 298.398 298.586 298.554 298.421 298.426 298.623 298.82 298.826 298.718 298.517 297.855 296.653 295.665 295.789 296.912 298.174 298.953 299.14 298.893 298.477 298.169 297.964 297.649 297.129 296.321 295.222 293.955 292.813 291.9 291.274 290.77 290.229 289.735 289.389 289.159 288.739 287.517 284.46 280.373 277.402 274.537 271.267 270.861 271.754 272.996 272.676 270.371 266.686 263.91 261.862 260.194 259.618 259.287 258.511 256.318 254.004 252.403 249.458 246.861 244.24 241.866 239.788 238.969 237.753 235.824 234.781 235.679 235.377 234.967 236.305 237.02 237.098 237.734 237.904 237.97 238.455 238.998 247.358 250.213 253.325 256.218 258.449 259.082 258.229 257.336 257.54 259.349 262.267 265.703 269.194 270.487 270.91 271.379 272.204 273.332 274.41 275.279 276.082 276.969 277.74 278.477 279.202 279.924 280.671 281.429 282.315 283.426 284.414 285.232 286.034 286.972 288.055 289.214 290.32 291.23 291.883 292.488 293.085 293.64 294.159 294.606 295.097 295.632 296.117 296.636 297.242 297.695 297.968 298.236 298.427 298.357 298.195 298.234 298.503 298.731 298.748 298.657 298.488 297.856 296.645 295.639 295.814 297.009 298.225 298.919 299.024 298.737 298.356 298.095 297.918 297.699 297.307 296.568 295.483 294.212 293.057 292.154 291.617 291.22 290.797 290.427 290.024 289.456 288.486 286.613 282.393 278.22 274.812 271.069 269.71 269.981 270.823 271.589 271.347 269.393 265.675 262.918 260.748 259.6 259.628 258.883 258.24 256.012 253.565 251.848 248.705 246.128 243.607 241.576 239.661 239.204 237.769 235.047 234.549 235.557 235.223 235.328 236.352 237.118 237.061 237.673 237.915 237.971 238.454 239.0 247.357 250.159 253.152 255.846 257.994 258.612 257.837 257.109 257.534 259.608 262.489 266.298 269.356 270.528 270.923 271.342 272.16 273.337 274.445 275.314 276.125 277.025 277.77 278.45 279.168 279.917 280.681 281.429 282.312 283.421 284.386 285.167 285.972 286.955 288.054 289.18 290.264 291.14 291.768 292.398 293.055 293.636 294.171 294.619 295.103 295.631 296.112 296.577 297.109 297.551 297.823 298.067 298.204 298.088 297.954 298.071 298.402 298.652 298.68 298.61 298.463 297.845 296.602 295.551 295.754 297.043 298.276 298.914 298.906 298.589 298.28 298.046 297.851 297.702 297.467 296.888 295.928 294.754 293.65 292.9 292.541 292.263 291.97 291.553 290.753 289.35 287.652 284.765 280.488 276.836 273.098 269.557 268.885 269.177 269.349 269.521 269.303 267.603 264.854 262.038 260.067 259.7 260.003 258.897 257.153 255.095 252.927 251.211 248.335 245.566 243.045 241.306 239.668 238.781 237.632 234.591 234.553 235.419 235.033 235.514 236.388 237.144 236.999 237.634 237.983 237.97 238.455 239.002 247.355 250.11 253.003 255.465 257.455 258.159 257.446 256.955 257.603 259.851 262.705 266.688 269.554 270.577 270.93 271.311 272.134 273.343 274.468 275.333 276.162 277.079 277.798 278.427 279.148 279.939 280.736 281.484 282.335 283.391 284.316 285.093 285.944 286.97 288.062 289.114 290.149 290.992 291.629 292.313 293.036 293.648 294.193 294.646 295.093 295.582 296.049 296.481 296.964 297.392 297.675 297.911 298.013 297.864 297.746 297.915 298.286 298.569 298.625 298.564 298.437 297.846 296.555 295.412 295.659 297.062 298.324 298.887 298.795 298.492 298.247 298.015 297.8 297.712 297.587 297.124 296.298 295.281 294.338 293.795 293.57 293.287 292.932 292.273 290.866 288.498 285.583 282.936 279.731 276.109 272.474 269.013 268.468 268.309 268.246 268.544 268.144 266.42 263.929 261.617 260.395 260.58 260.081 258.757 256.56 255.704 253.068 250.652 247.783 245.046 242.601 240.952 239.426 238.023 236.826 234.368 234.535 235.052 234.714 235.601 236.378 237.106 236.925 237.574 238.001 237.97 238.456 239.005 247.369 250.082 252.889 255.11 256.974 257.639 257.039 256.731 257.713 260.073 262.934 266.989 269.721 270.631 270.932 271.282 272.106 273.34 274.471 275.338 276.19 277.126 277.824 278.407 279.148 279.988 280.824 281.576 282.375 283.339 284.223 285.026 285.947 286.999 288.043 289.038 290.005 290.824 291.484 292.222 292.999 293.639 294.191 294.647 295.058 295.499 295.941 296.37 296.851 297.254 297.521 297.742 297.815 297.652 297.547 297.739 298.141 298.473 298.562 298.496 298.385 297.835 296.489 295.251 295.567 297.081 298.336 298.782 298.647 298.4 298.202 297.962 297.752 297.723 297.656 297.266 296.57 295.741 295.02 294.676 294.524 294.15 293.634 292.217 291.154 289.295 285.152 282.379 279.024 275.543 271.705 268.527 268.009 267.572 267.348 267.309 266.928 265.294 263.071 261.389 260.862 260.751 259.279 258.452 256.138 255.062 252.871 250.396 247.454 244.604 242.16 240.774 239.072 237.411 235.574 234.045 234.621 235.095 234.535 235.466 236.257 236.985 236.832 237.454 237.995 237.97 238.457 239.007 247.369 250.078 252.759 254.768 256.53 257.111 256.516 256.53 257.841 260.306 263.188 267.02 269.86 270.685 270.927 271.272 272.097 273.325 274.438 275.329 276.213 277.176 277.85 278.411 279.191 280.074 280.926 281.684 282.426 283.281 284.119 284.973 285.961 286.985 287.973 288.913 289.824 290.687 291.383 292.137 292.932 293.581 294.133 294.593 295.007 295.429 295.852 296.297 296.781 297.142 297.332 297.497 297.531 297.372 297.311 297.549 298.007 298.41 298.52 298.415 298.293 297.788 296.445 295.237 295.628 297.206 298.361 298.631 298.458 298.265 298.084 297.834 297.659 297.678 297.661 297.375 296.808 296.134 295.612 295.46 295.331 294.793 292.441 292.682 291.456 288.872 284.14 281.171 277.864 274.524 270.553 267.531 266.966 266.902 266.523 266.387 265.824 264.485 262.202 261.255 261.017 260.483 259.069 257.962 255.749 254.385 252.197 249.896 247.189 244.141 241.808 240.483 238.797 236.903 235.09 233.961 234.644 234.715 234.525 235.514 236.016 236.775 236.746 237.413 237.99 237.981 238.459 239.01 247.352 250.061 252.662 254.446 256.061 256.575 256.058 256.34 257.957 260.559 263.394 266.777 269.902 270.704 270.921 271.284 272.13 273.311 274.398 275.327 276.236 277.21 277.881 278.466 279.288 280.177 280.996 281.737 282.461 283.246 284.038 284.921 285.932 286.91 287.862 288.76 289.685 290.637 291.373 292.099 292.889 293.553 294.089 294.53 294.956 295.38 295.795 296.235 296.682 296.986 297.154 297.293 297.292 297.122 297.106 297.414 297.928 298.355 298.471 298.354 298.232 297.771 296.532 295.399 295.82 297.346 298.394 298.564 298.359 298.166 297.987 297.773 297.634 297.625 297.631 297.468 297.011 296.422 296.085 296.17 295.837 294.091 294.03 292.314 289.376 285.577 281.82 278.99 276.032 272.818 268.521 266.253 266.259 266.057 265.906 266.003 265.385 264.143 262.718 261.776 261.386 260.107 258.601 257.71 256.223 254.44 252.256 249.657 246.694 243.651 241.364 240.196 238.548 236.26 234.787 234.007 234.65 234.644 234.525 234.908 235.793 236.602 236.687 237.388 238.146 238.358 238.47 239.013 247.362 250.051 252.575 254.104 255.578 256.108 255.651 256.167 258.04 260.786 263.528 266.447 269.842 270.693 270.913 271.304 272.171 273.302 274.376 275.337 276.262 277.239 277.917 278.549 279.397 280.266 281.026 281.741 282.464 283.212 283.966 284.851 285.871 286.832 287.765 288.651 289.607 290.633 291.389 292.081 292.848 293.536 294.072 294.48 294.887 295.296 295.714 296.136 296.529 296.778 296.956 297.096 297.079 296.904 296.924 297.294 297.841 298.257 298.373 298.3 298.215 297.808 296.691 295.646 296.01 297.394 298.342 298.471 298.261 298.071 297.908 297.774 297.678 297.625 297.612 297.526 297.198 296.779 296.666 296.801 295.761 294.547 292.728 289.57 284.869 281.922 278.993 276.53 273.91 270.189 266.36 265.103 264.792 264.926 265.192 265.788 265.042 264.325 263.675 262.675 261.008 259.568 258.511 256.931 255.53 253.8 251.742 249.162 246.167 243.092 241.008 239.783 238.058 235.748 234.495 233.801 234.486 234.561 234.474 234.007 235.783 236.489 236.62 237.381 238.293 238.369 238.452 239.016 247.371 250.024 252.456 253.858 255.15 255.696 255.336 256.003 258.102 260.888 263.637 266.138 269.668 270.644 270.898 271.331 272.21 273.299 274.368 275.359 276.291 277.255 277.957 278.64 279.496 280.328 281.028 281.719 282.437 283.16 283.881 284.759 285.782 286.756 287.696 288.592 289.575 290.637 291.401 292.056 292.787 293.476 294.017 294.423 294.804 295.189 295.612 296.018 296.345 296.555 296.727 296.851 296.816 296.675 296.756 297.195 297.771 298.163 298.275 298.263 298.223 297.867 296.881 295.957 296.242 297.461 298.278 298.355 298.16 297.996 297.85 297.764 297.69 297.639 297.633 297.635 297.485 297.289 297.261 297.052 295.823 293.313 288.525 283.815 281.064 278.963 276.955 275.13 272.125 268.023 265.23 264.297 264.193 264.291 264.963 265.101 264.82 264.447 263.942 262.116 260.057 258.726 257.958 256.167 254.838 252.967 251.002 248.407 245.438 242.482 240.363 239.341 237.661 235.601 234.399 233.959 234.465 234.509 234.276 233.977 235.732 236.378 236.577 237.4 238.287 238.369 238.436 239.019 247.377 250.022 252.38 253.654 254.764 255.237 255.064 255.783 258.136 260.979 263.692 265.996 269.337 270.551 270.891 271.38 272.253 273.307 274.376 275.394 276.318 277.257 278.001 278.728 279.567 280.349 281.009 281.692 282.393 283.08 283.772 284.649 285.674 286.653 287.603 288.529 289.535 290.591 291.364 292.018 292.714 293.345 293.875 294.342 294.732 295.07 295.454 295.831 296.11 296.321 296.475 296.547 296.498 296.442 296.627 297.126 297.713 298.074 298.188 298.232 298.22 297.888 297.014 296.158 296.451 297.605 298.276 298.266 298.104 298.01 297.853 297.694 297.588 297.63 297.739 297.879 297.83 297.571 297.098 295.997 293.567 288.142 283.225 280.507 278.861 277.778 276.254 274.706 272.37 268.845 265.677 264.825 264.927 265.392 266.077 266.272 265.563 264.916 263.988 261.273 259.08 257.987 257.272 255.616 254.143 252.533 250.361 247.539 244.719 241.869 239.868 238.781 237.07 235.286 234.247 233.599 234.267 234.406 234.104 233.87 235.919 236.333 236.56 237.401 238.281 238.37 238.425 239.022 247.395 250.026 252.321 253.519 254.432 254.915 254.777 255.687 258.15 261.025 263.622 266.288 268.935 270.388 270.884 271.434 272.289 273.306 274.389 275.423 276.322 277.249 278.043 278.795 279.584 280.321 280.984 281.673 282.342 282.989 283.685 284.575 285.572 286.519 287.46 288.415 289.426 290.452 291.238 291.946 292.668 293.267 293.8 294.299 294.67 294.93 295.258 295.616 295.889 296.112 296.274 296.299 296.243 296.265 296.541 297.047 297.594 297.924 298.071 298.174 298.192 297.897 297.067 296.204 296.416 297.559 298.211 298.16 298.018 297.964 297.787 297.558 297.438 297.58 297.901 298.112 297.644 296.313 294.398 292.287 287.048 283.053 280.548 279.063 278.484 277.754 276.955 275.728 273.428 271.109 269.17 268.009 266.886 266.691 267.353 267.251 266.186 264.927 263.088 260.36 258.242 256.96 256.763 254.987 253.723 251.801 249.84 246.923 244.061 241.448 239.484 238.238 236.732 235.316 234.025 233.266 233.756 234.285 233.908 233.668 236.14 236.333 236.493 237.386 238.277 238.371 238.413 239.025 247.399 250.019 252.262 253.408 254.171 254.665 254.637 255.603 258.146 260.981 263.968 266.724 268.497 270.164 270.873 271.474 272.313 273.298 274.391 275.434 276.314 277.239 278.083 278.842 279.576 280.277 280.958 281.648 282.283 282.904 283.618 284.523 285.481 286.397 287.342 288.322 289.318 290.301 291.088 291.86 292.633 293.254 293.799 294.27 294.579 294.79 295.109 295.461 295.711 295.918 296.067 296.044 295.981 296.074 296.45 296.981 297.49 297.795 297.989 298.141 298.186 297.965 297.191 296.222 296.306 297.441 298.131 298.081 297.926 297.838 297.615 297.384 297.299 297.52 298.057 298.186 296.879 293.284 288.354 285.582 282.672 280.84 279.655 279.428 279.434 278.828 278.114 277.073 275.16 273.252 272.158 271.165 269.689 268.188 267.916 267.989 266.395 264.39 262.344 259.548 257.74 256.758 256.155 254.635 253.092 251.283 248.85 246.299 243.598 241.2 239.44 238.059 236.676 235.467 233.554 232.717 233.193 234.09 233.807 233.599 236.165 236.314 236.469 237.42 238.576 238.476 238.415 239.028 247.394 250.001 252.219 253.344 253.945 254.488 254.531 255.525 258.095 260.865 263.308 266.164 268.063 269.911 270.858 271.51 272.328 273.282 274.378 275.419 276.289 277.23 278.113 278.869 279.559 280.233 280.926 281.607 282.214 282.834 283.566 284.469 285.405 286.313 287.284 288.276 289.246 290.201 290.995 291.812 292.612 293.257 293.793 294.206 294.458 294.664 294.988 295.329 295.547 295.728 295.847 295.793 295.736 295.906 296.375 296.942 297.409 297.694 297.94 298.129 298.179 298.04 297.352 296.316 296.261 297.352 298.058 298.03 297.883 297.751 297.486 297.257 297.199 297.471 298.145 297.987 295.641 289.419 284.741 281.882 280.353 280.015 280.25 280.877 280.988 280.251 279.362 278.164 276.993 275.485 274.551 273.538 271.883 269.467 268.253 267.099 265.879 264.119 261.424 259.164 257.293 256.803 255.646 254.092 252.456 250.398 247.862 245.466 243.129 240.971 239.472 238.003 236.874 235.625 233.092 232.683 232.75 233.726 233.46 233.518 235.932 236.354 236.351 237.435 238.645 238.807 238.42 239.042 247.4 250.003 252.199 253.276 253.802 254.36 254.512 255.428 257.966 260.669 262.71 265.122 267.509 269.754 270.823 271.544 272.338 273.26 274.352 275.384 276.249 277.211 278.112 278.862 279.533 280.194 280.882 281.544 282.148 282.787 283.523 284.396 285.324 286.261 287.275 288.256 289.208 290.197 291.043 291.871 292.627 293.223 293.704 294.058 294.308 294.542 294.841 295.119 295.322 295.501 295.61 295.556 295.564 295.816 296.306 296.854 297.264 297.558 297.883 298.11 298.154 298.076 297.475 296.461 296.334 297.278 297.874 297.852 297.811 297.754 297.508 297.253 297.174 297.47 297.988 297.101 293.651 286.692 282.183 280.45 280.254 280.942 281.867 282.45 282.283 281.41 280.558 279.302 278.208 277.184 276.059 274.832 273.09 269.109 267.17 266.78 265.816 263.62 260.817 258.645 257.671 256.925 255.006 253.49 251.602 249.485 246.946 244.352 242.772 240.898 239.344 237.798 236.867 235.554 232.811 232.574 232.372 233.18 233.339 233.502 235.644 236.364 236.243 237.427 238.651 238.994 238.428 239.056 247.42 250.037 252.192 253.252 253.711 254.299 254.551 255.428 257.867 260.384 262.409 264.844 267.541 269.827 270.802 271.562 272.344 273.253 274.329 275.347 276.213 277.174 278.069 278.815 279.51 280.175 280.835 281.477 282.091 282.752 283.477 284.318 285.252 286.212 287.241 288.212 289.172 290.217 291.12 291.929 292.624 293.169 293.597 293.91 294.164 294.404 294.661 294.887 295.095 295.273 295.327 295.281 295.393 295.711 296.189 296.721 297.138 297.481 297.858 298.095 298.144 298.11 297.609 296.737 296.628 297.377 297.762 297.676 297.684 297.716 297.572 297.356 297.262 297.474 297.382 295.536 290.016 284.107 281.381 281.338 282.371 283.204 283.719 283.993 283.416 282.055 281.125 280.148 278.699 277.788 276.396 274.955 273.028 270.473 267.12 266.124 265.331 263.275 260.83 258.68 257.927 256.296 254.44 252.597 250.885 248.604 246.3 243.548 242.246 240.689 239.051 237.624 236.563 234.744 232.685 232.071 232.169 232.693 233.189 233.498 235.918 236.379 236.236 237.422 238.659 239.086 238.52 239.065 247.419 250.027 252.199 253.245 253.728 254.23 254.649 255.463 257.687 260.094 262.076 264.678 267.752 269.98 270.794 271.568 272.351 273.26 274.318 275.318 276.181 277.133 278.008 278.758 279.487 280.156 280.787 281.41 282.028 282.691 283.405 284.238 285.186 286.157 287.191 288.18 289.171 290.223 291.111 291.89 292.561 293.081 293.476 293.757 293.977 294.203 294.463 294.684 294.883 295.029 295.028 295.012 295.204 295.57 296.064 296.611 297.052 297.42 297.794 298.026 298.098 298.113 297.756 297.098 297.019 297.563 297.778 297.661 297.645 297.683 297.653 297.532 297.422 297.428 296.653 294.17 288.011 283.739 283.312 284.569 286.151 286.624 286.311 285.823 284.42 282.473 281.344 280.162 278.623 277.45 276.064 274.516 272.609 270.392 267.892 266.088 264.897 263.154 260.992 258.979 257.61 255.8 253.919 251.97 249.934 247.83 245.592 243.246 241.895 240.206 238.623 237.355 235.809 234.24 232.191 231.825 231.86 232.44 233.089 233.405 236.21 236.311 236.064 237.101 238.717 239.09 238.625 239.073 247.433 250.027 252.209 253.294 253.765 254.273 254.746 255.586 257.538 259.802 261.734 264.516 268.064 270.163 270.811 271.565 272.355 273.273 274.311 275.292 276.153 277.093 277.948 278.708 279.464 280.122 280.729 281.347 281.957 282.601 283.309 284.154 285.119 286.097 287.141 288.175 289.211 290.247 291.073 291.822 292.471 292.951 293.319 293.576 293.747 293.945 294.217 294.441 294.618 294.739 294.755 294.809 295.048 295.436 295.939 296.48 296.909 297.268 297.65 297.923 298.041 298.092 297.873 297.425 297.339 297.646 297.732 297.64 297.623 297.663 297.758 297.772 297.664 297.424 296.114 293.025 287.848 285.937 288.023 290.022 290.736 290.677 290.009 288.929 285.88 283.163 281.411 280.076 278.645 277.022 275.607 274.111 272.349 270.29 267.543 266.015 264.759 263.151 261.289 259.434 257.606 255.562 253.53 251.666 249.312 247.282 245.45 243.35 241.904 239.818 237.949 236.764 235.293 233.52 232.141 231.757 231.803 232.353 233.023 233.253 236.131 236.279 235.944 237.063 238.878 239.097 238.644 239.082 247.437 250.047 252.226 253.372 253.859 254.449 254.943 255.747 257.51 259.537 261.372 264.517 267.177 270.32 270.829 271.558 272.351 273.282 274.294 275.26 276.127 277.059 277.905 278.688 279.448 280.064 280.662 281.293 281.879 282.485 283.199 284.069 285.036 286.012 287.07 288.162 289.269 290.306 291.102 291.847 292.439 292.819 293.14 293.377 293.508 293.664 293.897 294.096 294.248 294.391 294.484 294.603 294.86 295.272 295.784 296.294 296.69 297.074 297.54 297.911 298.083 298.127 297.995 297.712 297.582 297.647 297.593 297.527 297.538 297.623 297.828 298.0 298.011 297.646 296.09 293.134 289.29 290.021 291.501 292.283 292.484 292.106 291.319 290.015 287.366 283.402 281.375 279.792 278.024 276.413 275.112 273.695 272.12 269.998 267.299 265.769 264.478 263.261 261.67 259.957 257.764 255.536 253.55 251.358 248.32 246.739 245.77 244.054 242.124 239.146 237.034 235.782 234.655 233.172 232.121 231.631 231.802 232.276 232.924 233.04 235.944 236.098 235.955 237.068 238.941 239.263 238.648 239.091 247.421 250.058 252.284 253.494 254.058 254.688 255.228 255.994 257.552 259.309 261.055 264.681 267.934 270.453 270.843 271.533 272.334 273.264 274.251 275.223 276.116 277.045 277.895 278.699 279.441 280.016 280.62 281.258 281.814 282.399 283.122 283.994 284.954 285.932 286.991 288.1 289.249 290.305 291.119 291.879 292.433 292.739 292.999 293.205 293.318 293.455 293.652 293.821 293.96 294.099 294.172 294.288 294.599 295.104 295.677 296.202 296.641 297.088 297.568 297.917 298.084 298.118 298.024 297.829 297.733 297.749 297.667 297.583 297.591 297.686 297.868 298.082 298.26 297.915 296.242 293.57 291.219 292.797 293.366 293.267 292.868 292.348 291.491 290.166 287.618 283.935 281.126 279.192 277.282 275.751 274.516 273.147 271.685 269.536 266.905 265.159 264.108 263.273 261.491 259.908 257.975 256.045 253.717 250.949 248.04 247.06 247.643 246.524 242.402 238.791 236.123 234.98 234.249 233.147 231.909 231.337 231.789 232.139 232.798 232.997 235.153 236.154 235.947 236.898 238.967 239.475 238.654 239.101 247.415 250.074 252.347 253.641 254.334 255.009 255.558 256.282 257.674 259.121 260.799 264.928 268.648 270.588 270.853 271.494 272.313 273.223 274.187 275.183 276.113 277.04 277.89 278.702 279.425 279.984 280.6 281.224 281.746 282.332 283.069 283.924 284.88 285.888 286.953 288.05 289.196 290.237 291.03 291.767 292.316 292.616 292.836 292.986 293.082 293.233 293.43 293.577 293.7 293.808 293.848 294.012 294.437 295.024 295.618 296.14 296.615 297.088 297.535 297.859 298.05 298.1 298.0 297.819 297.74 297.768 297.732 297.656 297.689 297.819 297.962 298.156 298.36 297.846 296.035 292.942 291.918 293.877 294.412 293.943 293.272 292.54 291.532 290.179 287.803 283.952 281.086 279.12 277.186 275.41 274.112 272.684 271.124 268.906 266.471 264.933 263.932 262.898 261.145 259.586 257.977 255.915 253.297 250.367 247.9 248.562 248.52 247.463 243.612 238.406 235.434 234.347 233.872 233.025 231.579 230.846 231.763 232.104 232.717 232.726 234.77 235.905 235.964 236.531 238.954 239.648 238.675 239.107 247.417 250.087 252.421 253.807 254.676 255.365 255.994 256.607 257.845 258.98 260.681 265.118 269.091 270.768 270.909 271.457 272.298 273.171 274.107 275.142 276.12 277.041 277.882 278.689 279.396 279.96 280.588 281.181 281.664 282.267 283.023 283.855 284.817 285.864 286.943 288.021 289.146 290.142 290.876 291.561 292.112 292.434 292.628 292.728 292.82 292.998 293.198 293.312 293.405 293.485 293.552 293.834 294.373 294.989 295.575 296.092 296.591 297.072 297.518 297.883 298.129 298.187 298.055 297.87 297.79 297.813 297.794 297.723 297.785 297.959 298.092 298.281 298.393 297.567 294.563 291.442 291.448 293.984 294.839 294.528 293.908 292.954 291.766 290.405 288.155 283.86 281.391 279.517 277.446 275.555 274.074 272.496 270.717 268.707 266.223 264.643 263.497 262.389 260.606 259.061 257.744 255.679 252.847 249.645 248.112 249.318 249.111 247.932 245.134 238.396 235.102 233.984 233.674 232.877 231.593 230.927 231.734 232.067 232.565 232.467 234.943 235.714 235.973 236.547 238.982 239.782 238.697 239.113 247.436 250.106 252.494 253.99 255.022 255.806 256.474 257.068 258.028 258.938 260.609 265.234 269.34 270.958 271.019 271.428 272.294 273.117 274.028 275.103 276.134 277.037 277.857 278.648 279.345 279.934 280.567 281.113 281.565 282.193 282.962 283.779 284.749 285.809 286.871 287.943 289.056 290.024 290.731 291.377 291.886 292.183 292.358 292.458 292.582 292.777 292.93 292.996 293.081 293.178 293.318 293.718 294.294 294.929 295.585 296.189 296.719 297.196 297.655 298.041 298.262 298.261 298.134 298.051 298.087 298.127 298.071 297.988 298.037 298.167 298.276 298.449 298.382 297.261 293.76 291.219 291.349 292.58 293.506 294.787 294.53 293.434 292.068 290.728 288.574 283.884 281.44 279.792 277.748 275.739 274.127 272.554 270.606 268.636 266.014 264.467 263.057 261.807 260.015 258.514 257.413 255.539 252.402 249.326 248.558 249.696 249.351 248.011 245.292 240.36 234.98 233.91 233.685 232.798 231.705 231.476 231.476 231.966 232.549 232.438 235.086 235.447 235.917 236.554 239.066 239.886 238.718 239.122 247.443 250.131 252.579 254.193 255.37 256.249 257.001 257.614 258.368 258.968 260.506 265.328 269.5 271.125 271.151 271.451 272.322 273.1 273.982 275.077 276.138 277.029 277.828 278.601 279.293 279.899 280.519 281.033 281.492 282.137 282.89 283.71 284.695 285.715 286.725 287.795 288.884 289.834 290.578 291.231 291.653 291.879 292.048 292.176 292.307 292.457 292.555 292.654 292.808 292.945 293.164 293.665 294.293 295.0 295.728 296.321 296.788 297.245 297.676 297.998 298.17 298.151 298.042 298.031 298.149 298.222 298.182 298.176 298.307 298.449 298.493 298.455 298.04 296.965 294.038 293.175 293.766 293.671 292.948 294.659 295.004 293.882 292.367 291.018 289.182 286.281 282.001 279.987 277.764 275.891 274.382 272.781 270.786 268.516 266.02 264.156 262.758 261.432 259.48 258.181 257.194 255.16 251.689 249.22 249.705 250.073 249.431 247.838 244.909 241.224 235.281 234.109 233.965 232.769 231.794 231.351 231.536 231.788 232.561 232.61 235.501 235.254 235.718 236.336 239.132 239.997 238.756 239.132 247.441 250.153 252.679 254.433 255.747 256.757 257.578 258.221 258.753 259.084 260.479 265.869 269.645 271.302 271.292 271.514 272.363 273.11 273.958 275.05 276.126 277.018 277.812 278.571 279.251 279.856 280.452 280.952 281.438 282.087 282.812 283.649 284.661 285.653 286.64 287.704 288.719 289.602 290.346 290.977 291.329 291.532 291.715 291.819 291.883 291.968 292.054 292.226 292.465 292.662 293.01 293.686 294.423 295.168 295.83 296.267 296.643 297.119 297.564 297.9 298.147 298.181 298.053 298.016 298.137 298.209 298.179 298.21 298.416 298.625 298.553 298.165 297.584 296.233 294.326 295.032 295.851 295.824 295.174 295.53 295.384 294.244 292.674 291.19 289.491 286.888 282.54 280.15 277.783 275.917 274.567 273.137 271.125 268.745 266.299 264.241 262.664 260.936 259.19 258.019 256.628 254.135 250.96 249.63 250.44 250.314 249.371 247.552 244.793 241.347 235.516 234.456 234.548 232.745 231.676 231.204 231.465 231.765 232.41 233.58 235.664 235.168 235.572 236.139 239.123 240.059 238.91 239.142 247.433 250.175 252.776 254.659 256.157 257.353 258.188 258.84 259.198 259.298 260.528 266.282 269.795 271.489 271.461 271.607 272.409 273.13 273.939 275.013 276.097 277.009 277.811 278.558 279.221 279.809 280.374 280.872 281.392 282.031 282.723 283.583 284.63 285.615 286.625 287.681 288.592 289.378 290.084 290.648 290.95 291.186 291.382 291.397 291.362 291.408 291.516 291.765 292.086 292.379 292.91 293.762 294.571 295.276 295.814 296.107 296.448 296.952 297.416 297.824 298.173 298.224 298.067 298.065 298.283 298.421 298.39 298.351 298.501 298.65 298.34 297.583 295.994 294.787 293.893 295.787 296.856 296.943 296.604 296.219 295.596 294.495 292.931 291.348 289.622 286.779 282.895 280.247 277.843 275.895 274.529 273.264 271.435 269.145 266.67 264.512 262.6 260.605 258.907 257.566 255.659 253.003 250.758 250.205 250.919 250.515 249.267 247.411 244.86 240.448 235.973 236.002 234.37 233.022 231.483 231.003 231.648 231.958 233.173 234.719 235.849 235.091 235.464 236.159 239.071 240.102 239.01 239.152 247.424 250.195 252.88 254.925 256.58 257.909 258.85 259.446 259.669 259.504 260.56 266.371 269.929 271.713 271.699 271.734 272.441 273.145 273.911 274.957 276.046 276.994 277.819 278.552 279.19 279.753 280.285 280.795 281.344 281.964 282.636 283.51 284.549 285.502 286.531 287.577 288.414 289.166 289.848 290.32 290.572 290.832 290.973 290.855 290.774 290.827 290.961 291.296 291.77 292.247 293.004 293.928 294.667 295.24 295.665 295.928 296.281 296.731 297.156 297.648 298.034 297.977 297.796 297.985 298.405 298.673 298.71 298.657 298.699 298.533 297.975 296.616 295.746 295.304 294.944 296.629 297.272 297.35 296.951 296.298 295.468 294.561 293.087 291.504 289.537 286.254 282.825 280.191 277.862 275.788 274.351 273.045 271.48 269.4 267.021 264.879 262.628 260.482 258.75 257.362 255.005 252.607 250.936 250.795 251.154 250.541 249.145 247.334 244.802 239.849 236.879 236.421 234.538 233.006 231.353 230.931 231.799 232.452 233.157 236.192 236.118 235.174 235.349 236.175 239.107 240.141 239.044 239.165 247.427 250.218 252.983 255.213 257.016 258.456 259.483 260.081 260.158 259.76 260.6 266.382 269.977 271.875 271.902 271.85 272.445 273.133 273.866 274.894 275.997 276.977 277.812 278.53 279.146 279.693 280.219 280.756 281.325 281.947 282.631 283.508 284.477 285.337 286.298 287.294 288.129 288.944 289.622 289.992 290.16 290.345 290.384 290.27 290.266 290.324 290.47 290.936 291.574 292.215 293.172 294.129 294.782 295.193 295.444 295.605 295.917 296.325 296.77 297.404 297.856 297.764 297.603 297.839 298.21 298.466 298.655 298.831 298.962 298.57 297.526 296.64 296.527 296.801 296.891 297.199 297.44 297.446 297.023 296.158 294.376 294.582 293.167 291.184 289.087 285.552 283.042 280.534 278.025 275.881 274.194 272.903 271.485 269.645 267.351 265.107 262.723 260.46 258.638 256.95 254.75 252.741 251.671 251.471 251.375 250.549 249.02 247.272 244.272 241.268 238.602 237.324 235.258 233.774 231.391 231.027 232.39 233.232 233.861 236.83 236.377 235.292 235.257 236.135 239.167 240.179 239.054 239.18 247.435 250.23 253.082 255.468 257.458 259.011 260.078 260.697 260.594 260.042 260.661 266.245 269.932 271.912 272.029 271.957 272.436 273.101 273.814 274.836 275.96 276.96 277.789 278.49 279.094 279.632 280.168 280.731 281.322 281.97 282.688 283.581 284.511 285.302 286.196 287.131 287.947 288.744 289.327 289.567 289.664 289.785 289.798 289.819 289.95 290.023 290.251 290.852 291.536 292.252 293.315 294.254 294.764 295.003 295.119 295.228 295.514 295.831 296.164 296.704 297.463 297.027 296.945 297.268 297.784 298.298 298.775 299.148 299.353 298.892 297.568 296.688 296.579 296.977 297.235 297.373 297.584 297.591 297.181 296.336 294.603 294.801 292.711 289.817 288.88 288.014 285.643 281.581 278.707 276.353 274.475 273.012 271.554 269.74 267.548 265.284 262.906 260.606 258.662 256.844 254.805 253.395 252.937 252.485 251.576 250.527 248.905 247.209 244.892 241.268 239.261 239.043 236.916 235.242 231.694 231.305 233.972 235.187 234.867 237.355 236.72 235.428 235.193 236.021 239.196 240.21 239.066 239.195 247.432 250.251 253.182 255.741 257.892 259.581 260.652 261.253 261.034 260.278 260.708 265.317 269.778 271.788 272.064 272.037 272.427 273.051 273.762 274.789 275.932 276.939 277.758 278.445 279.046 279.577 280.119 280.693 281.294 281.966 282.733 283.666 284.618 285.438 286.319 287.186 287.916 288.574 288.975 289.114 289.23 289.366 289.454 289.668 289.94 290.068 290.404 291.068 291.693 292.456 293.567 294.314 294.526 294.637 294.799 294.943 295.105 295.119 295.109 295.333 295.371 295.39 295.271 295.905 296.695 297.731 298.655 299.261 299.65 299.436 297.924 296.944 296.656 296.977 297.283 297.482 297.739 297.752 297.376 296.222 295.473 295.211 293.682 292.443 291.537 290.613 288.424 284.515 279.999 276.996 274.999 273.34 271.678 269.768 267.852 265.528 263.156 260.659 258.684 256.516 255.021 254.385 253.437 252.642 251.736 250.282 248.512 246.911 244.778 242.078 239.893 238.961 237.351 235.639 231.871 231.836 234.732 236.912 236.682 237.664 237.147 235.574 235.093 236.237 239.082 240.224 239.075 239.214 247.432 250.263 253.274 256.016 258.306 260.1 261.202 261.686 261.407 260.564 260.764 264.617 269.506 271.353 271.88 272.051 272.43 272.99 273.715 274.755 275.908 276.907 277.718 278.414 279.015 279.523 280.038 280.572 281.125 281.77 282.553 283.556 284.617 285.559 286.489 287.266 287.837 288.29 288.558 288.786 289.121 289.397 289.626 290.003 290.351 290.511 290.837 291.35 291.895 292.884 294.005 294.336 294.22 294.346 294.514 294.399 294.221 293.884 293.257 293.295 293.231 293.239 293.172 293.168 293.845 295.83 296.936 298.043 299.2 299.562 298.597 297.396 296.757 296.92 297.334 297.616 297.809 297.829 297.506 296.149 296.365 295.692 294.858 294.068 293.265 292.125 290.175 287.173 282.186 278.018 275.441 273.615 271.812 269.802 268.148 265.951 263.525 260.921 258.712 256.439 254.862 254.049 252.96 252.417 251.501 249.493 247.21 245.991 244.364 242.276 239.914 238.697 237.23 235.829 232.155 232.627 236.213 238.017 236.915 237.602 237.662 235.764 235.1 236.704 239.073 240.222 239.087 239.245 247.42 250.275 253.372 256.274 258.722 260.603 261.724 262.157 261.759 260.778 260.727 263.484 269.238 270.717 271.365 271.897 272.433 272.953 273.677 274.726 275.879 276.865 277.684 278.406 278.997 279.462 279.889 280.281 280.683 281.226 282.008 283.063 284.209 285.203 286.146 286.892 287.456 287.951 288.394 288.91 289.442 289.803 290.13 290.593 290.993 291.217 291.402 291.632 292.17 293.329 294.181 294.184 294.065 294.024 293.576 293.102 292.273 292.106 292.833 294.106 294.842 295.09 294.652 293.766 293.211 293.482 294.982 296.25 298.26 299.346 299.175 297.856 296.905 296.774 297.233 297.579 297.644 297.709 297.15 296.42 296.51 295.935 295.315 294.73 293.985 292.912 291.424 288.977 285.151 279.49 276.589 274.389 272.136 270.032 268.408 266.319 263.916 261.288 258.686 256.585 254.85 253.397 251.999 251.563 250.713 247.819 243.97 243.275 242.814 242.541 239.124 238.288 237.021 235.498 232.551 233.5 236.867 238.775 237.81 237.08 238.208 236.033 235.13 236.652 239.087 240.224 239.116 239.275 247.408 250.275 253.459 256.521 259.126 261.018 262.16 262.546 262.042 260.949 260.696 263.234 268.703 270.155 270.517 271.524 272.389 272.93 273.644 274.686 275.832 276.817 277.653 278.396 278.967 279.373 279.665 279.849 280.031 280.454 281.286 282.396 283.534 284.535 285.539 286.437 287.227 288.032 288.811 289.49 290.018 290.41 290.86 291.417 291.913 292.269 292.421 292.519 293.104 294.054 294.258 293.801 293.444 293.309 291.738 289.641 290.567 292.821 294.787 296.903 298.036 298.219 298.145 296.673 295.053 294.151 293.926 294.563 297.339 299.257 299.461 298.051 296.961 296.647 297.097 297.46 297.712 297.822 296.619 296.817 296.472 295.96 295.347 294.728 293.963 292.949 291.898 290.387 287.739 283.441 279.784 276.557 273.104 270.478 268.464 266.373 264.119 261.459 258.889 256.527 254.503 252.763 251.175 249.941 248.732 245.649 242.487 241.745 242.593 242.903 239.018 237.68 235.588 234.773 232.999 235.835 238.936 239.564 238.302 236.696 237.075 236.356 235.163 236.507 239.123 240.236 239.154 239.303 247.391 250.281 253.539 256.755 259.495 261.391 262.563 262.892 262.311 261.085 260.683 262.899 266.953 269.711 269.611 271.035 272.275 272.9 273.598 274.625 275.766 276.771 277.626 278.373 278.905 279.227 279.3 279.259 279.167 279.403 280.296 281.723 282.761 283.792 284.967 286.164 287.346 288.623 289.703 290.376 290.81 291.279 291.959 292.635 293.112 293.495 293.695 293.857 294.482 295.018 294.409 293.239 292.427 290.147 287.419 288.203 291.753 295.314 297.109 297.977 298.178 298.276 298.265 297.801 298.049 296.981 296.395 295.788 295.879 297.802 298.256 297.819 296.777 296.555 297.021 297.346 297.545 297.683 297.303 296.941 296.468 296.027 295.352 294.637 293.858 292.863 291.987 291.03 289.262 286.778 284.051 280.694 275.873 271.287 268.501 266.358 264.221 261.546 258.761 256.169 253.865 251.903 250.02 248.659 247.22 244.47 241.683 241.291 242.711 242.138 237.851 237.031 235.033 234.067 233.477 237.78 239.996 240.19 239.247 237.617 237.124 236.676 235.254 236.382 239.069 240.228 239.228 239.337 247.393 250.281 253.637 256.985 259.847 261.801 262.912 263.204 262.578 261.228 260.67 262.582 265.41 267.649 268.539 270.405 272.075 272.817 273.523 274.532 275.673 276.729 277.6 278.322 278.782 278.921 278.954 278.735 278.366 278.387 279.178 280.411 281.835 282.966 283.741 285.698 287.89 289.83 290.675 291.377 291.872 292.595 293.543 294.068 294.142 294.267 294.462 294.733 295.314 295.453 294.218 292.235 290.045 286.279 285.099 289.102 295.398 297.857 298.11 298.434 298.535 298.521 298.722 298.973 299.447 299.896 299.835 297.12 296.053 296.227 295.893 296.414 296.306 296.435 296.984 297.2 297.276 297.455 297.468 296.927 296.507 296.132 295.403 294.602 293.799 292.843 291.991 291.256 290.11 288.42 286.319 283.208 278.699 272.827 268.793 266.36 264.275 261.59 258.571 255.792 253.485 251.211 249.303 247.734 246.317 243.873 241.762 241.439 242.878 240.797 236.369 235.027 234.537 233.564 234.301 239.297 240.497 240.702 240.023 238.935 236.158 236.89 235.415 236.543 238.923 240.199 239.351 239.372 247.388 250.285 253.694 257.178 260.18 262.182 263.184 263.448 262.793 261.393 260.686 262.287 264.744 266.669 267.853 269.736 271.77 272.645 273.404 274.418 275.567 276.689 277.58 278.275 278.645 278.682 278.947 278.884 278.479 278.378 279.103 280.079 280.882 282.103 283.795 285.953 288.237 290.398 291.72 291.954 292.48 293.407 294.24 294.333 293.604 293.468 293.599 293.797 294.081 293.872 292.418 290.693 286.785 284.102 285.965 291.695 298.445 298.009 298.254 299.071 298.87 298.693 299.707 299.293 300.253 301.69 302.137 299.243 296.9 295.724 294.964 295.468 295.947 296.321 296.914 296.979 296.898 296.081 296.948 296.802 296.476 296.148 295.469 294.687 293.917 292.96 292.051 291.349 290.485 289.313 287.744 284.974 280.486 275.411 270.15 267.021 264.428 261.467 258.255 255.28 252.824 250.622 249.074 247.268 246.048 244.026 242.349 242.696 243.646 239.304 235.799 234.019 233.513 233.927 235.988 239.933 240.928 241.415 240.959 239.592 235.594 237.353 235.573 236.452 238.842 240.192 239.461 239.409 247.374 250.278 253.754 257.382 260.498 262.525 263.389 263.566 262.956 261.594 260.797 262.092 264.196 265.997 267.355 269.327 271.3 272.372 273.236 274.273 275.424 276.617 277.551 278.255 278.542 278.799 279.318 279.623 279.46 279.53 280.22 281.069 282.105 283.073 284.898 287.166 289.421 290.918 291.865 292.872 293.583 294.214 294.289 292.82 291.875 291.748 291.908 292.206 292.21 291.733 290.183 287.069 284.493 284.627 288.77 295.259 298.933 298.109 298.443 298.845 298.612 298.108 298.18 298.48 300.114 301.863 302.706 301.972 299.315 297.068 295.898 295.261 295.662 296.279 296.879 296.874 296.707 295.686 296.804 296.675 296.44 296.139 295.511 294.798 294.09 293.167 292.242 291.545 290.744 289.75 288.491 286.139 282.007 277.205 273.374 268.253 264.574 261.218 258.046 255.012 252.189 249.908 248.776 247.404 246.045 244.57 243.971 244.083 244.043 238.449 235.181 233.989 233.617 234.667 237.778 240.53 241.446 242.071 241.216 241.584 236.139 237.574 235.757 236.367 238.795 240.184 239.548 239.443 247.361 250.27 253.809 257.572 260.779 262.767 263.547 263.723 263.116 261.83 260.954 261.955 263.852 265.477 267.451 269.351 270.734 271.996 273.016 274.086 275.222 276.485 277.499 278.261 278.577 279.109 280.349 280.955 281.079 281.389 282.137 283.173 283.963 284.881 286.374 288.299 290.435 291.288 291.962 292.658 293.324 293.79 292.952 291.013 289.116 287.999 287.684 287.435 287.239 286.551 285.275 284.192 284.398 287.65 292.978 298.493 298.678 298.424 299.039 298.609 297.977 297.749 297.919 298.116 299.333 301.021 301.792 302.746 300.676 298.382 296.357 295.584 295.64 296.263 296.864 296.878 296.727 296.324 296.817 296.617 296.439 296.127 295.519 294.862 294.204 293.347 292.456 291.746 290.986 290.05 288.917 286.87 283.286 278.887 275.179 270.905 264.884 261.134 258.07 255.077 251.97 249.645 248.692 247.253 245.895 245.158 246.594 246.784 244.226 238.744 235.262 233.961 234.429 235.852 239.402 241.073 242.091 242.704 241.983 242.487 235.999 237.539 236.019 236.283 238.804 240.185 239.617 239.473 247.363 250.267 253.836 257.731 260.995 262.98 263.68 263.866 263.33 262.047 261.192 261.963 263.555 265.054 266.783 269.16 270.297 271.533 272.724 273.827 274.929 276.229 277.389 278.274 278.816 279.825 280.797 281.621 282.408 283.26 284.408 285.595 286.482 287.357 289.17 290.543 292.154 293.068 293.435 293.823 294.725 295.218 294.372 291.757 289.063 286.914 285.507 284.385 284.041 283.883 283.265 284.067 287.254 292.248 297.975 299.329 299.151 299.1 298.893 298.184 297.941 298.155 298.351 298.74 299.484 300.232 300.864 300.856 299.688 298.308 296.83 295.953 295.74 296.284 296.829 296.856 296.792 296.755 296.819 296.614 296.423 296.06 295.438 294.821 294.216 293.443 292.617 291.892 291.174 290.339 289.298 287.472 284.352 280.459 276.935 272.798 265.354 261.381 258.879 256.11 252.174 249.454 248.383 246.744 245.537 245.562 246.806 247.364 245.212 240.682 236.635 235.097 236.753 238.955 240.699 241.81 242.781 243.301 242.774 242.908 237.735 238.285 236.313 236.125 238.773 240.204 239.663 239.505 247.362 250.262 253.876 257.858 261.198 263.1 263.765 263.936 263.517 262.346 261.681 262.129 263.355 264.747 266.143 267.481 269.673 271.188 272.429 273.568 274.635 275.906 277.207 278.235 279.124 280.176 281.066 282.024 282.975 284.356 285.528 286.37 288.076 289.52 291.049 292.851 294.355 295.078 294.71 295.239 296.344 296.825 296.617 294.962 292.285 289.87 287.281 285.624 285.046 284.469 284.898 287.47 291.727 297.201 301.126 300.367 299.672 298.896 298.186 297.961 298.119 298.474 299.065 299.785 300.26 300.429 299.47 297.844 297.065 297.285 296.999 296.051 295.902 296.44 296.797 296.699 296.663 296.77 296.742 296.542 296.333 295.937 295.312 294.696 294.12 293.451 292.705 291.987 291.328 290.597 289.615 287.984 285.304 281.786 277.995 273.006 266.021 262.458 260.623 258.948 252.895 249.466 247.802 246.192 245.121 245.125 246.282 247.763 246.905 241.42 240.329 236.982 239.774 241.66 241.72 242.578 243.385 243.84 243.581 243.372 238.643 239.036 236.614 236.01 238.659 240.205 239.695 239.542 247.357 250.244 253.909 257.966 261.399 263.195 263.863 264.048 263.693 262.699 262.152 262.431 263.404 264.675 266.029 267.265 269.075 270.959 272.19 273.332 274.374 275.601 276.982 278.14 279.174 280.162 281.11 282.061 283.079 284.336 285.453 286.438 287.565 289.558 291.508 294.529 295.945 295.928 295.484 294.785 295.718 297.27 298.756 298.655 297.621 295.505 292.914 290.838 289.762 289.096 289.792 292.065 295.676 299.223 300.736 299.972 298.938 298.073 297.89 297.948 298.196 298.776 299.501 300.445 301.375 300.878 298.297 295.475 294.749 296.305 296.691 296.033 296.076 296.581 296.734 296.532 296.52 296.65 296.573 296.425 296.237 295.849 295.279 294.666 294.065 293.43 292.725 292.041 291.463 290.795 289.839 288.417 286.179 282.9 278.702 273.36 266.84 265.12 264.055 260.828 253.573 249.178 247.389 245.727 244.724 245.034 246.347 248.23 247.722 245.045 242.191 238.986 241.416 242.582 242.695 243.26 243.994 244.275 243.961 243.681 239.793 239.449 236.897 235.949 238.603 240.178 239.708 239.578 247.338 250.226 253.924 258.05 261.571 263.282 263.986 264.176 263.884 263.153 262.709 262.942 263.642 264.757 266.047 267.307 268.754 270.674 271.993 273.139 274.141 275.338 276.743 277.998 279.055 280.049 281.001 281.886 282.89 284.063 285.139 286.035 287.186 288.618 290.901 294.657 295.842 295.083 294.629 294.66 295.455 296.493 297.94 299.101 299.754 299.269 297.989 296.56 294.949 294.146 294.54 296.079 297.768 299.137 299.414 298.711 297.798 297.648 297.763 298.008 298.266 298.927 300.122 302.484 303.116 300.515 297.209 294.707 293.995 295.638 296.028 296.072 296.204 296.621 296.602 296.372 296.344 296.413 296.349 296.295 296.135 295.747 295.249 294.678 294.053 293.406 292.711 292.044 291.523 290.909 289.969 288.678 286.761 283.724 279.269 273.861 267.908 266.997 265.872 262.173 253.854 249.085 247.16 245.794 245.474 246.196 248.608 248.852 248.32 246.856 245.303 241.4 242.888 243.419 243.746 243.861 244.527 244.598 244.198 243.924 242.479 239.792 237.265 235.871 238.575 240.139 239.718 239.609 247.325 250.213 253.929 258.105 261.672 263.359 264.065 264.167 264.107 263.595 263.523 263.622 264.031 265.137 266.343 267.54 268.823 270.124 271.832 272.989 273.943 275.11 276.5 277.803 278.861 279.864 280.83 281.659 282.564 283.567 284.411 285.221 286.392 287.94 290.029 292.238 295.082 294.743 294.753 294.996 295.673 296.475 297.458 298.102 298.484 298.866 298.71 298.414 297.742 297.349 297.509 298.336 298.616 298.36 298.417 297.714 297.35 297.388 297.644 297.887 298.237 299.291 301.115 303.489 303.397 300.455 297.618 295.406 294.063 294.958 296.028 296.131 296.31 296.55 296.402 296.203 296.188 296.173 296.135 296.166 295.992 295.561 295.135 294.65 294.039 293.386 292.686 292.007 291.505 290.952 290.068 288.876 287.121 284.202 279.611 274.443 269.64 268.677 267.106 262.838 253.666 248.864 247.592 247.139 247.792 249.54 249.741 249.51 248.845 247.874 246.847 244.092 244.366 244.511 244.869 244.632 245.041 244.835 244.793 244.011 242.664 240.125 237.491 235.574 238.567 240.105 239.73 239.645 247.319 250.188 253.932 258.159 261.742 263.377 264.248 264.189 264.307 264.127 264.719 264.533 264.681 265.481 266.182 267.665 268.614 269.69 271.796 272.901 273.817 274.947 276.307 277.623 278.685 279.714 280.785 281.603 282.352 283.161 283.858 284.514 285.47 286.918 288.718 291.089 293.718 294.681 295.051 295.607 296.063 296.649 297.098 297.588 297.942 298.299 298.465 298.611 298.586 298.54 298.5 298.572 298.066 297.717 297.484 297.123 296.925 297.056 297.41 297.669 297.854 298.603 300.657 302.89 302.675 300.683 298.471 295.749 293.83 294.5 296.281 296.317 296.427 296.47 296.24 296.043 296.006 295.973 295.991 296.053 295.85 295.402 294.999 294.549 293.974 293.355 292.676 291.976 291.435 290.928 290.152 289.036 287.337 284.483 279.937 274.979 271.789 269.587 267.202 262.537 253.376 249.119 248.478 249.49 250.764 250.681 250.518 250.079 249.199 248.434 247.468 246.077 245.508 245.558 245.577 245.555 245.582 244.983 245.14 243.998 242.694 240.537 237.565 235.336 238.579 240.085 239.733 239.685 247.303 250.162 253.908 258.179 261.772 263.44 264.281 264.234 264.497 264.723 265.421 265.315 265.117 265.495 266.471 267.425 268.176 269.366 271.48 272.852 273.73 274.816 276.145 277.472 278.539 279.571 280.741 281.6 282.159 282.775 283.309 283.883 284.788 286.039 287.581 289.977 292.906 294.747 295.173 295.794 296.299 296.716 296.923 297.413 297.831 298.225 298.387 298.489 298.647 298.626 298.294 298.085 297.856 297.473 297.19 296.797 296.599 296.856 297.243 297.601 297.829 298.495 300.303 301.814 301.698 300.123 298.197 296.158 294.777 296.14 296.523 296.561 296.474 296.357 296.093 295.892 295.82 295.801 295.864 295.917 295.72 295.325 294.913 294.427 293.858 293.269 292.639 291.965 291.394 290.901 290.232 289.173 287.46 284.645 280.301 275.64 272.656 270.156 266.141 261.676 253.662 249.65 249.329 251.186 251.65 251.444 251.108 250.644 249.825 248.764 248.14 247.339 246.723 246.55 246.305 246.305 246.139 245.953 245.818 243.836 242.616 240.874 237.397 235.226 238.581 240.089 239.736 239.716 247.288 250.134 253.873 258.149 261.772 263.474 264.349 264.289 264.721 265.227 265.916 265.951 265.696 265.873 266.845 268.085 268.919 269.724 270.841 272.856 273.657 274.698 275.997 277.335 278.399 279.414 280.593 281.396 281.897 282.372 282.798 283.336 284.237 285.406 287.008 289.367 292.078 294.025 294.893 295.695 296.231 296.37 296.679 297.282 297.715 298.061 298.144 298.14 298.261 298.331 298.196 298.044 297.595 297.046 296.582 296.334 296.419 296.609 296.964 297.366 297.814 298.955 300.494 301.801 301.087 299.394 297.59 296.787 296.713 296.757 296.876 296.733 296.447 296.193 295.955 295.763 295.633 295.63 295.719 295.742 295.571 295.238 294.784 294.249 293.695 293.123 292.536 291.923 291.361 290.885 290.286 289.25 287.51 284.725 280.616 276.347 273.273 270.158 264.62 260.491 254.319 251.022 251.121 252.017 252.037 251.947 251.721 251.4 250.852 249.988 249.47 248.524 247.901 247.458 247.17 247.202 246.713 246.861 245.599 243.48 242.446 241.2 237.309 235.288 238.52 240.087 239.738 239.743 247.266 250.107 253.829 258.117 261.756 263.499 264.438 264.423 264.957 265.746 266.36 266.43 266.328 266.552 267.428 268.795 269.878 270.31 270.762 272.63 273.587 274.568 275.839 277.187 278.234 279.201 280.292 281.05 281.47 281.864 282.289 282.854 283.812 285.162 287.095 289.5 291.833 293.771 294.841 295.639 296.158 296.341 296.492 296.951 297.23 297.316 297.442 297.638 297.795 297.745 298.077 298.005 297.458 296.843 296.253 296.111 296.267 296.361 296.573 296.935 297.697 299.202 300.833 301.919 300.888 299.22 297.31 297.561 297.499 297.115 296.965 296.655 296.281 295.998 295.83 295.632 295.43 295.445 295.548 295.545 295.409 295.096 294.568 294.01 293.506 292.942 292.371 291.828 291.307 290.855 290.294 289.25 287.493 284.767 280.878 276.85 273.562 270.092 263.84 259.838 255.81 252.723 252.825 252.726 252.473 252.541 252.857 252.597 252.057 251.296 250.582 249.723 249.24 248.488 248.142 248.101 247.804 246.715 245.152 242.999 242.203 241.462 237.718 235.394 238.508 240.08 239.741 239.774 247.258 250.073 253.773 258.057 261.717 263.523 264.501 264.58 265.199 266.136 266.667 266.783 266.929 267.108 268.077 269.394 270.375 270.707 270.951 272.096 273.516 274.462 275.694 277.033 278.058 278.965 279.972 280.662 281.021 281.418 281.94 282.598 283.657 285.303 287.768 290.18 291.944 293.401 294.555 295.358 295.858 296.084 296.102 296.265 296.225 296.398 296.836 297.396 297.629 297.554 297.489 297.37 296.925 296.654 296.139 296.023 296.154 296.275 296.253 296.648 297.648 299.892 301.961 301.883 300.426 298.881 297.02 297.572 297.481 297.121 296.809 296.439 296.095 295.849 295.694 295.463 295.246 295.277 295.369 295.359 295.275 294.966 294.383 293.82 293.341 292.755 292.179 291.684 291.201 290.772 290.207 289.108 287.357 284.749 280.991 277.109 273.567 270.069 263.458 260.665 258.063 255.633 253.987 253.486 253.749 254.469 254.481 254.169 253.188 251.972 251.031 250.567 250.644 248.961 248.945 248.222 247.512 246.217 244.452 242.296 241.977 241.67 238.415 235.463 238.57 240.084 239.753 239.812 247.239 250.032 253.689 257.959 261.627 263.513 264.555 264.694 265.33 266.285 266.967 267.17 267.47 267.597 268.695 269.901 270.583 270.866 271.135 271.984 273.426 274.372 275.552 276.867 277.888 278.749 279.681 280.301 280.61 281.062 281.745 282.527 283.683 285.604 288.375 290.615 292.104 293.268 294.367 295.132 295.245 295.564 295.425 295.223 295.021 295.397 296.099 296.941 297.322 297.243 296.928 296.596 296.276 296.326 296.225 296.148 296.095 296.058 296.079 296.467 297.439 299.615 301.547 300.937 299.65 298.252 297.674 297.777 297.449 297.116 296.64 296.227 295.927 295.712 295.526 295.272 295.094 295.126 295.172 295.158 295.121 294.838 294.253 293.692 293.186 292.566 292.007 291.543 291.057 290.636 290.043 288.873 287.146 284.669 280.911 277.089 273.486 270.065 264.322 261.537 258.684 256.385 255.13 255.343 256.612 257.29 257.074 255.889 254.11 252.322 251.47 250.067 249.647 249.338 248.975 248.345 247.195 245.504 243.481 241.501 241.668 241.856 239.015 235.572 238.657 240.106 239.786 239.847 247.212 249.976 253.614 257.836 261.541 263.448 264.603 264.829 265.666 266.364 267.228 267.581 267.948 268.111 269.257 270.218 270.709 270.96 271.255 271.956 273.346 274.296 275.404 276.687 277.729 278.56 279.397 279.926 280.21 280.79 281.657 282.576 283.832 285.909 288.663 290.659 292.041 293.15 294.096 294.893 295.267 295.264 294.976 294.132 293.906 294.439 295.236 296.288 297.01 297.068 296.759 296.267 295.884 296.006 296.437 296.516 296.468 296.273 296.144 296.262 296.841 298.139 299.461 299.378 298.66 298.471 297.905 297.821 297.457 297.028 296.429 296.02 295.775 295.573 295.344 295.082 294.951 294.963 294.967 294.957 294.942 294.674 294.12 293.578 293.024 292.361 291.818 291.366 290.858 290.444 289.863 288.689 287.002 284.569 280.687 276.773 273.244 269.935 265.757 262.208 259.425 257.397 256.889 258.498 260.616 261.007 259.493 257.437 254.599 252.869 250.582 249.447 249.404 249.657 249.268 248.153 246.631 244.643 242.384 240.607 241.364 241.994 238.079 235.758 238.765 240.145 239.848 239.89 247.196 249.925 253.546 257.716 261.436 263.39 264.535 265.025 265.916 266.628 267.454 268.074 268.396 268.623 269.625 270.392 270.811 271.113 271.365 272.07 273.322 274.225 275.236 276.48 277.559 278.369 279.068 279.475 279.807 280.585 281.617 282.678 284.038 286.071 288.583 290.269 291.561 292.797 293.768 294.502 295.104 295.6 295.332 294.137 293.617 294.238 294.868 295.955 296.733 297.01 296.601 296.054 295.713 295.959 296.512 296.938 296.846 296.575 296.484 296.224 296.493 297.241 297.785 297.994 298.077 298.402 298.213 297.795 297.342 296.753 296.135 295.798 295.612 295.423 295.158 294.896 294.764 294.749 294.762 294.782 294.75 294.465 293.963 293.472 292.874 292.154 291.605 291.132 290.601 290.202 289.674 288.557 286.901 284.415 280.311 276.228 272.942 269.805 265.977 263.29 261.16 260.413 261.057 262.49 263.696 263.611 261.57 258.538 255.32 252.335 250.571 250.287 250.2 249.898 249.113 247.68 245.823 243.617 241.145 239.659 240.996 241.984 238.291 235.97 238.891 240.222 239.929 239.949 247.171 249.877 253.446 257.599 261.315 263.311 264.522 265.182 266.038 266.802 267.677 268.315 268.655 269.15 269.922 270.488 270.924 271.297 271.526 272.384 273.374 274.168 275.091 276.297 277.401 278.165 278.719 279.062 279.548 280.514 281.636 282.76 284.14 286.026 288.29 289.767 290.932 292.211 293.321 294.243 295.061 295.56 295.56 295.29 295.171 295.216 295.3 295.885 296.382 296.588 296.195 295.541 295.375 295.554 296.053 296.439 296.621 296.666 296.649 296.366 296.598 297.039 297.521 297.851 298.331 298.431 298.184 297.703 297.149 296.486 295.916 295.613 295.457 295.3 295.014 294.732 294.573 294.547 294.572 294.598 294.549 294.272 293.834 293.38 292.763 291.999 291.395 290.875 290.331 289.933 289.439 288.399 286.75 284.087 279.661 275.698 272.746 269.822 266.81 264.994 263.615 263.611 264.707 266.034 266.85 266.056 262.869 259.09 254.429 251.219 249.733 250.299 250.559 250.114 248.623 246.68 244.694 242.41 239.764 238.849 240.635 241.967 240.453 236.148 239.005 240.3 239.99 240.006 247.166 249.818 253.336 257.44 261.173 263.212 264.479 265.321 266.091 266.934 267.864 268.499 268.951 269.584 270.2 270.615 271.051 271.43 271.765 272.681 273.465 274.129 274.964 276.126 277.225 277.917 278.357 278.718 279.398 280.53 281.712 282.836 284.162 285.909 287.97 289.35 290.453 291.689 292.829 293.843 294.79 295.472 295.773 296.017 296.275 296.608 296.166 295.937 295.8 295.824 295.727 295.35 295.12 295.105 295.359 295.781 296.234 296.526 296.65 296.675 296.682 296.89 297.379 298.391 298.888 298.544 298.029 297.543 296.982 296.323 295.761 295.468 295.346 295.209 294.888 294.576 294.412 294.372 294.362 294.367 294.336 294.111 293.722 293.268 292.647 291.882 291.227 290.655 290.119 289.71 289.195 288.198 286.552 283.745 279.209 275.619 272.933 270.415 268.3 267.178 266.478 266.657 267.467 268.357 268.739 267.534 263.608 258.923 253.259 249.999 248.735 249.532 249.844 249.217 247.547 245.288 243.198 241.011 238.483 238.085 240.321 242.018 240.734 236.422 239.219 240.311 240.034 240.044 247.146 249.765 253.215 257.267 260.983 263.13 264.388 265.268 266.252 267.018 268.004 268.621 269.225 269.912 270.448 270.782 271.213 271.598 272.089 272.926 273.584 274.114 274.84 275.936 276.992 277.598 277.972 278.423 279.293 280.572 281.809 282.897 284.153 285.786 287.674 289.018 290.134 291.337 292.424 293.423 294.357 295.152 295.87 296.503 297.045 297.403 297.7 296.09 295.357 295.422 296.212 296.069 295.583 295.277 295.105 295.518 296.02 296.307 296.521 296.648 296.657 296.831 297.315 298.828 298.846 298.351 297.828 297.385 296.843 296.234 295.697 295.42 295.304 295.14 294.756 294.423 294.264 294.195 294.136 294.132 294.14 293.969 293.608 293.135 292.525 291.8 291.095 290.449 289.908 289.484 288.928 287.979 286.387 283.566 279.166 275.826 273.357 271.151 269.476 268.788 268.564 268.906 269.621 270.207 270.123 268.218 263.914 258.887 252.876 249.245 247.864 247.973 248.372 247.611 245.927 243.594 241.608 239.461 237.386 237.464 239.928 242.01 240.983 238.015 239.243 240.36 240.099 240.114 247.116 249.696 253.1 257.078 260.799 262.999 264.349 265.281 266.305 267.108 268.142 268.764 269.419 270.178 270.691 271.022 271.52 272.04 272.453 273.117 273.72 274.137 274.716 275.694 276.64 277.145 277.541 278.155 279.163 280.561 281.852 282.94 284.138 285.645 287.373 288.729 289.945 291.162 292.147 293.029 293.906 294.771 295.73 296.681 297.456 297.977 298.013 297.815 295.903 295.963 296.931 297.614 296.687 295.801 295.266 295.162 295.552 296.117 296.456 296.679 296.871 297.351 297.83 298.95 298.652 298.105 297.7 297.281 296.775 296.277 295.804 295.478 295.287 295.045 294.61 294.293 294.116 293.982 293.903 293.928 293.953 293.804 293.462 292.979 292.398 291.743 291.003 290.263 289.691 289.246 288.641 287.754 286.276 283.535 279.336 276.094 273.817 271.845 270.494 270.028 269.947 270.218 270.76 271.189 270.948 268.583 264.278 258.546 253.347 249.561 247.013 246.373 246.606 245.881 243.945 241.667 239.861 238.029 236.322 236.971 239.807 241.979 241.083 238.598 239.278 240.467 240.143 240.228 247.085 249.635 252.954 256.881 260.576 262.862 264.31 265.328 266.184 267.162 268.297 268.977 269.53 270.352 270.889 271.242 271.834 272.395 272.682 273.2 273.792 274.173 274.644 275.463 276.264 276.722 277.218 277.954 279.006 280.439 281.787 282.937 284.113 285.505 287.111 288.497 289.827 291.079 291.989 292.815 293.674 294.555 295.555 296.528 297.343 297.991 298.19 298.283 296.86 296.573 297.382 298.051 297.809 296.842 295.669 295.243 295.323 295.752 296.237 296.532 296.788 297.332 298.659 299.015 298.553 298.026 297.685 297.259 296.77 296.328 295.878 295.498 295.23 294.934 294.512 294.227 294.01 293.813 293.726 293.746 293.734 293.598 293.308 292.832 292.249 291.65 290.941 290.168 289.555 289.057 288.394 287.532 286.152 283.493 279.449 276.33 274.294 272.59 271.507 271.115 271.025 271.191 271.618 271.954 271.672 269.227 265.199 259.691 254.81 250.743 247.081 245.355 245.105 243.86 241.733 239.644 238.16 236.747 235.344 236.53 239.615 241.948 241.325 238.903 239.634 240.524 240.254 240.259 247.065 249.571 252.812 256.664 260.343 262.697 264.26 265.315 266.08 267.194 268.409 269.195 269.685 270.491 271.052 271.418 272.015 272.544 272.812 273.211 273.789 274.194 274.591 275.258 275.919 276.4 276.998 277.79 278.855 280.302 281.704 282.911 284.071 285.376 286.901 288.316 289.723 291.001 291.898 292.732 293.588 294.429 295.379 296.334 297.146 297.798 298.201 298.293 298.521 298.348 298.213 298.18 297.764 297.851 297.381 296.02 295.775 295.698 295.932 296.217 296.602 297.216 298.776 299.053 298.571 298.068 297.731 297.275 296.753 296.277 295.81 295.426 295.148 294.819 294.411 294.14 293.911 293.689 293.584 293.565 293.524 293.428 293.183 292.692 292.086 291.521 290.874 290.13 289.488 288.924 288.217 287.346 285.98 283.314 279.398 276.515 274.669 273.176 272.253 271.852 271.739 271.892 272.325 272.699 272.564 270.675 266.299 261.79 257.569 252.894 248.162 244.954 243.72 241.951 239.732 237.872 236.66 235.471 234.659 236.236 239.443 241.974 241.408 239.068 239.689 240.636 240.36 240.259 247.071 249.5 252.666 256.432 260.068 262.505 264.221 265.339 266.02 267.249 268.55 269.398 269.883 270.605 271.176 271.544 272.089 272.595 272.873 273.187 273.727 274.201 274.549 275.076 275.636 276.178 276.838 277.662 278.734 280.206 281.651 282.884 284.02 285.261 286.74 288.181 289.627 290.91 291.84 292.713 293.585 294.383 295.258 296.181 297.012 297.67 298.112 298.201 298.32 298.395 298.359 297.895 297.332 297.579 298.009 297.916 296.752 295.991 295.836 295.896 296.418 297.292 298.847 299.064 298.611 298.139 297.788 297.304 296.739 296.186 295.675 295.292 295.027 294.664 294.27 294.01 293.796 293.579 293.456 293.396 293.36 293.31 293.07 292.556 291.942 291.391 290.791 290.092 289.427 288.802 288.078 287.195 285.819 283.146 279.458 276.779 275.063 273.744 272.904 272.464 272.337 272.522 272.981 273.346 273.251 272.06 269.077 264.321 259.231 255.911 250.577 245.578 243.04 240.339 238.207 236.435 235.5 234.72 234.377 236.163 239.506 242.027 241.7 239.203 239.799 240.654 240.372 240.26 247.034 249.448 252.506 256.17 259.804 262.288 264.081 265.29 265.974 267.037 268.603 269.57 270.063 270.726 271.255 271.591 272.067 272.602 272.884 273.109 273.612 274.195 274.531 274.93 275.451 276.052 276.736 277.571 278.663 280.163 281.619 282.848 283.949 285.145 286.589 288.047 289.494 290.772 291.748 292.646 293.554 294.363 295.214 296.106 296.943 297.651 298.118 298.257 298.225 298.219 298.167 297.635 297.117 296.948 297.751 298.183 297.779 296.491 295.734 295.785 296.5 297.901 299.005 299.066 298.634 298.208 297.841 297.341 296.755 296.122 295.524 295.09 294.795 294.411 294.07 293.845 293.646 293.433 293.296 293.218 293.21 293.184 292.915 292.408 291.839 291.279 290.67 290.002 289.33 288.67 287.968 287.098 285.77 283.384 280.09 277.412 275.587 274.349 273.551 273.102 272.998 273.269 273.76 274.045 273.888 273.171 271.795 269.293 265.101 259.747 253.841 247.125 243.275 239.486 237.077 235.557 234.827 234.379 234.362 236.379 239.554 242.069 241.666 239.424 239.939 240.819 240.488 240.261 246.989 249.362 252.35 255.918 259.529 262.036 263.863 265.18 265.818 266.89 268.66 269.731 270.224 270.812 271.31 271.6 271.987 272.56 272.845 272.984 273.472 274.175 274.542 274.872 275.388 276.007 276.682 277.519 278.63 280.122 281.544 282.755 283.847 285.025 286.45 287.914 289.349 290.646 291.644 292.542 293.454 294.32 295.234 296.125 296.901 297.577 298.094 298.344 298.448 298.484 298.534 298.555 298.494 298.361 298.156 297.834 297.614 296.859 296.152 296.248 297.095 298.685 299.226 299.151 298.744 298.36 297.969 297.426 296.781 296.087 295.422 294.915 294.548 294.165 293.87 293.67 293.467 293.267 293.137 293.048 293.039 293.018 292.763 292.289 291.747 291.156 290.534 289.905 289.254 288.585 287.912 287.075 285.87 283.936 281.227 278.366 276.147 274.787 274.012 273.632 273.572 273.91 274.413 274.6 274.345 273.762 272.888 271.795 269.754 264.655 256.553 249.028 244.142 239.919 236.626 235.205 234.738 234.506 234.679 236.727 239.719 242.122 241.854 239.586 240.009 240.842 240.495 240.261 246.972 249.312 252.176 255.671 259.206 261.779 263.604 265.03 265.648 266.681 268.692 269.901 270.396 270.897 271.359 271.597 271.924 272.51 272.796 272.827 273.295 274.147 274.56 274.854 275.345 275.949 276.615 277.471 278.601 280.058 281.417 282.602 283.707 284.895 286.337 287.825 289.259 290.591 291.61 292.524 293.418 294.301 295.275 296.19 296.907 297.487 297.968 298.345 298.605 298.743 298.856 298.954 299.007 298.944 298.729 298.342 297.74 297.304 297.036 297.004 298.162 299.129 299.398 299.255 298.889 298.545 298.147 297.556 296.84 296.095 295.38 294.818 294.399 293.988 293.669 293.455 293.259 293.091 292.994 292.902 292.877 292.869 292.652 292.191 291.63 291.013 290.414 289.841 289.212 288.537 287.883 287.086 286.009 284.446 282.286 279.42 276.767 275.148 274.384 274.117 274.114 274.497 275.023 275.167 274.848 274.322 273.728 273.29 272.195 268.282 258.566 250.947 245.398 241.065 237.415 235.504 235.242 235.142 235.332 237.3 240.015 242.179 241.805 239.737 240.06 240.839 240.559 240.26 246.966 249.235 252.011 255.419 258.872 261.491 263.332 264.887 265.459 266.475 268.647 270.061 270.622 270.987 271.398 271.574 271.882 272.472 272.758 272.664 273.079 274.08 274.561 274.85 275.297 275.869 276.529 277.417 278.572 279.974 281.256 282.411 283.54 284.764 286.265 287.806 289.233 290.589 291.636 292.578 293.45 294.306 295.284 296.222 296.941 297.445 297.828 298.222 298.556 298.752 298.87 298.959 299.051 299.137 299.094 298.783 298.322 298.022 297.637 298.441 299.04 299.436 299.49 299.328 299.006 298.696 298.315 297.703 296.935 296.151 295.392 294.776 294.327 293.877 293.491 293.234 293.033 292.884 292.829 292.763 292.721 292.727 292.555 292.1 291.515 290.896 290.33 289.798 289.179 288.505 287.875 287.131 286.17 284.909 283.162 280.595 277.612 275.59 274.785 274.661 274.735 275.129 275.651 275.802 275.448 274.889 274.278 273.964 273.397 270.433 261.504 253.517 246.845 242.625 239.017 236.684 236.236 236.124 236.328 238.081 240.44 242.234 241.889 239.97 240.118 240.92 240.581 240.251 246.95 249.155 251.844 255.173 258.555 261.178 263.018 264.622 265.311 266.27 268.512 270.183 270.844 271.144 271.383 271.526 271.857 272.461 272.747 272.571 272.845 273.933 274.524 274.831 275.247 275.8 276.453 277.362 278.532 279.867 281.07 282.188 283.347 284.647 286.256 287.84 289.245 290.575 291.632 292.596 293.465 294.291 295.217 296.133 296.883 297.427 297.794 298.083 298.303 298.469 298.646 298.776 298.863 298.999 299.132 299.034 298.732 298.55 298.708 299.142 299.495 299.6 299.538 299.36 299.074 298.8 298.451 297.831 297.046 296.248 295.444 294.771 294.302 293.836 293.379 293.066 292.803 292.598 292.567 292.571 292.53 292.534 292.4 292.0 291.459 290.87 290.299 289.743 289.118 288.477 287.892 287.225 286.374 285.304 283.86 281.739 278.801 276.304 275.226 275.123 275.215 275.575 276.101 276.31 276.01 275.489 274.796 274.363 274.017 271.688 264.551 254.749 248.392 244.283 240.963 238.631 237.718 237.409 237.552 238.94 240.948 242.318 241.88 240.135 240.12 241.026 240.624 240.207 246.903 249.07 251.684 254.903 258.181 260.823 262.73 264.311 265.607 266.049 268.298 270.238 270.923 271.278 271.379 271.491 271.853 272.489 272.797 272.575 272.719 273.754 274.457 274.799 275.221 275.77 276.417 277.322 278.467 279.741 280.894 281.997 283.199 284.591 286.29 287.872 289.241 290.524 291.547 292.472 293.358 294.225 295.164 296.049 296.775 297.337 297.747 298.031 298.215 298.371 298.607 298.814 298.88 298.924 299.014 299.031 298.926 298.887 299.093 299.445 299.654 299.644 299.564 299.42 299.18 298.934 298.583 297.949 297.182 296.401 295.576 294.856 294.348 293.858 293.372 293.012 292.661 292.358 292.307 292.367 292.361 292.363 292.257 291.923 291.442 290.875 290.282 289.711 289.104 288.491 287.913 287.29 286.529 285.578 284.338 282.592 280.01 277.302 275.74 275.543 275.634 275.965 276.506 276.78 276.594 276.1 275.244 274.575 274.342 272.583 266.553 256.587 251.185 245.541 243.015 240.825 239.54 238.905 238.86 239.802 241.43 242.542 241.957 240.51 240.465 241.142 240.651 240.177 246.846 248.992 251.49 254.622 257.862 260.445 262.382 263.887 265.303 265.956 268.057 270.202 270.983 271.349 271.399 271.44 271.85 272.513 272.848 272.64 272.677 273.59 274.374 274.768 275.221 275.764 276.409 277.289 278.375 279.587 280.72 281.843 283.109 284.586 286.325 287.875 289.228 290.492 291.478 292.342 293.234 294.14 295.14 296.043 296.742 297.235 297.604 297.902 298.139 298.33 298.548 298.751 298.832 298.859 298.919 298.976 298.976 299.03 299.261 299.555 299.686 299.645 299.571 299.483 299.297 299.058 298.693 298.087 297.368 296.604 295.764 295.005 294.439 293.913 293.418 293.021 292.599 292.209 292.083 292.138 292.178 292.209 292.133 291.839 291.384 290.826 290.249 289.714 289.143 288.524 287.912 287.295 286.608 285.776 284.712 283.293 281.148 278.595 276.58 276.035 276.066 276.321 276.803 277.062 276.952 276.574 275.734 274.884 274.587 273.212 267.852 257.403 252.657 246.693 244.883 242.794 241.187 240.355 240.082 240.71 241.907 242.616 242.072 241.713 240.625 241.285 240.685 240.163 246.822 248.902 251.332 254.357 257.497 260.044 261.986 263.478 264.866 266.061 267.831 270.094 271.04 271.385 271.403 271.393 271.809 272.522 272.897 272.75 272.672 273.435 274.296 274.765 275.24 275.769 276.413 277.251 278.265 279.425 280.553 281.719 283.061 284.605 286.346 287.859 289.201 290.449 291.399 292.238 293.137 294.061 295.094 296.025 296.725 297.159 297.444 297.724 298.018 298.241 298.411 298.57 298.689 298.773 298.86 298.908 298.92 298.998 299.261 299.548 299.667 299.638 299.598 299.562 299.415 299.164 298.791 298.242 297.572 296.816 295.969 295.187 294.569 294.021 293.535 293.114 292.627 292.15 291.895 291.866 291.94 292.022 291.982 291.723 291.286 290.741 290.216 289.745 289.21 288.567 287.892 287.236 286.575 285.863 284.97 283.849 282.111 279.882 277.755 276.658 276.453 276.626 277.032 277.282 277.234 277.05 276.237 275.271 274.929 273.692 268.835 258.074 253.504 247.689 246.308 244.416 242.774 241.623 241.228 241.591 242.299 242.862 242.194 241.92 240.859 241.412 240.72 240.16 246.804 248.818 251.151 254.085 257.124 259.654 261.576 263.032 264.387 266.013 267.504 269.961 271.13 271.405 271.401 271.433 271.73 272.464 272.929 272.911 272.747 273.284 274.198 274.774 275.258 275.768 276.412 277.205 278.147 279.27 280.407 281.611 283.019 284.624 286.361 287.832 289.121 290.301 291.231 292.13 293.079 293.998 294.985 295.896 296.6 297.068 297.356 297.614 297.893 298.121 298.273 298.429 298.561 298.65 298.752 298.824 298.858 298.93 299.204 299.495 299.632 299.669 299.684 299.664 299.544 299.315 298.967 298.442 297.761 296.98 296.177 295.449 294.822 294.263 293.784 293.329 292.79 292.227 291.793 291.591 291.632 291.726 291.722 291.551 291.197 290.686 290.197 289.765 289.24 288.601 287.907 287.19 286.49 285.828 285.032 284.061 282.663 280.785 278.833 277.406 276.915 277.014 277.349 277.548 277.474 277.411 276.775 275.83 275.309 274.033 269.705 258.664 254.101 248.339 247.189 245.694 244.069 242.714 242.225 242.459 242.853 243.055 242.342 242.017 241.043 241.549 240.726 240.162 246.774 248.739 250.974 253.8 256.797 259.228 261.132 262.557 263.932 265.789 267.168 269.737 271.083 271.392 271.357 271.431 271.675 272.319 272.914 273.023 272.864 273.204 274.08 274.75 275.249 275.75 276.396 277.155 278.049 279.158 280.302 281.519 282.966 284.629 286.373 287.809 289.016 290.112 291.045 292.009 292.997 293.95 294.96 295.831 296.465 296.946 297.306 297.592 297.839 298.028 298.171 298.323 298.452 298.511 298.634 298.794 298.927 299.008 299.218 299.472 299.655 299.741 299.714 299.625 299.554 299.459 299.189 298.637 297.854 297.028 296.304 295.699 295.114 294.544 294.03 293.533 292.996 292.426 291.891 291.557 291.478 291.483 291.457 291.38 291.128 290.653 290.171 289.755 289.243 288.628 287.96 287.2 286.436 285.763 285.032 284.147 283.035 281.509 279.798 278.279 277.537 277.477 277.699 277.845 277.769 277.753 277.268 276.371 275.648 274.138 270.1 260.001 254.147 248.886 247.676 246.523 244.97 243.681 243.097 243.245 243.361 243.317 242.452 242.292 241.248 241.679 240.741 240.163 246.742 248.623 250.8 253.488 256.447 258.804 260.649 262.033 263.384 265.353 267.12 269.494 271.002 271.392 271.286 271.339 271.651 272.166 272.864 273.076 272.984 273.147 273.95 274.702 275.225 275.73 276.374 277.1 277.952 279.051 280.205 281.436 282.926 284.641 286.38 287.775 288.921 289.998 290.967 291.944 292.9 293.883 294.987 295.865 296.42 296.856 297.26 297.558 297.773 297.932 298.042 298.163 298.308 298.406 298.562 298.784 298.99 299.07 299.204 299.43 299.648 299.743 299.667 299.549 299.549 299.579 299.364 298.774 297.926 297.082 296.411 295.87 295.325 294.762 294.243 293.719 293.191 292.635 292.066 291.647 291.447 291.325 291.226 291.182 291.001 290.572 290.119 289.726 289.229 288.635 288.011 287.236 286.398 285.694 285.022 284.213 283.31 282.102 280.573 279.023 278.108 277.906 278.076 278.203 278.111 277.999 277.687 276.874 275.75 273.865 269.939 261.592 254.009 250.468 248.023 247.017 245.595 244.349 243.714 243.847 243.896 243.611 242.535 242.564 241.525 241.767 240.77 240.164 246.716 248.541 250.629 253.209 256.077 258.358 260.167 261.505 262.749 264.753 266.987 269.189 270.863 271.377 271.284 271.25 271.605 272.022 272.764 273.085 273.09 273.118 273.813 274.639 275.201 275.722 276.36 277.044 277.857 278.948 280.116 281.383 282.934 284.68 286.368 287.701 288.817 289.93 290.955 291.932 292.831 293.822 295.002 295.883 296.392 296.809 297.233 297.515 297.706 297.866 297.947 298.021 298.179 298.337 298.502 298.753 299.018 299.099 299.169 299.361 299.568 299.647 299.582 299.52 299.595 299.681 299.478 298.861 298.013 297.218 296.594 296.056 295.523 294.987 294.483 293.949 293.391 292.825 292.254 291.793 291.488 291.265 291.072 290.986 290.829 290.459 290.064 289.683 289.181 288.594 288.009 287.261 286.377 285.634 285.025 284.319 283.505 282.48 281.15 279.7 278.716 278.39 278.486 278.539 278.426 278.254 278.039 277.197 275.667 273.177 269.347 262.85 253.917 251.933 248.707 247.495 246.11 244.948 244.334 244.268 244.331 243.81 242.686 242.474 241.811 241.816 240.825 240.171 246.696 248.451 250.459 252.936 255.703 257.956 259.666 260.91 262.108 264.122 266.713 268.733 270.683 271.329 271.372 271.268 271.518 271.94 272.569 273.022 273.148 273.153 273.696 274.563 275.18 275.736 276.362 277.007 277.782 278.867 280.053 281.388 283.026 284.742 286.292 287.534 288.63 289.774 290.869 291.913 292.866 293.877 294.982 295.784 296.304 296.768 297.214 297.487 297.662 297.824 297.896 297.928 298.056 298.23 298.417 298.731 299.085 299.183 299.182 299.293 299.419 299.478 299.522 299.587 299.683 299.756 299.556 298.934 298.123 297.48 296.972 296.447 295.877 295.332 294.822 294.284 293.673 293.043 292.436 291.917 291.527 291.275 291.047 290.855 290.66 290.366 290.015 289.606 289.087 288.504 287.928 287.215 286.328 285.556 284.991 284.408 283.662 282.771 281.657 280.444 279.477 278.951 278.893 278.953 278.878 278.596 278.334 277.505 275.52 272.358 266.288 263.939 254.761 252.158 250.546 247.635 246.768 245.416 244.988 244.725 244.656 244.011 242.518 242.256 242.152 241.862 240.895 240.177 246.664 248.362 250.285 252.663 255.339 257.524 259.141 260.287 261.43 263.379 266.167 268.504 270.463 271.24 271.413 271.338 271.455 271.878 272.349 272.878 273.155 273.228 273.644 274.497 275.155 275.752 276.382 277.014 277.77 278.84 280.027 281.421 283.095 284.71 286.107 287.292 288.4 289.543 290.685 291.848 292.98 294.02 294.963 295.649 296.189 296.708 297.169 297.455 297.602 297.708 297.765 297.798 297.912 298.1 298.353 298.754 299.15 299.235 299.186 299.252 299.334 299.406 299.533 299.644 299.721 299.831 299.7 299.061 298.245 297.741 297.439 296.992 296.397 295.762 295.166 294.604 293.995 293.337 292.68 292.071 291.553 291.224 290.997 290.759 290.522 290.263 289.929 289.494 288.976 288.409 287.817 287.105 286.225 285.443 284.902 284.42 283.786 283.004 282.075 281.066 280.146 279.571 279.462 279.554 279.465 279.086 278.756 277.87 275.447 271.279 264.591 265.237 257.879 252.377 250.513 248.452 247.383 245.789 245.435 245.104 244.993 244.156 241.781 242.01 242.464 241.902 240.967 240.181 246.627 248.264 250.115 252.386 254.96 257.105 258.637 259.642 260.759 262.669 265.535 268.29 270.198 271.118 271.399 271.365 271.375 271.808 272.172 272.718 273.139 273.324 273.635 274.442 275.126 275.754 276.404 277.034 277.775 278.814 279.978 281.394 283.036 284.523 285.818 287.021 288.186 289.382 290.559 291.789 293.026 294.055 294.87 295.515 296.109 296.651 297.098 297.393 297.522 297.577 297.619 297.669 297.788 298.02 298.332 298.738 299.104 299.206 299.185 299.252 299.328 299.396 299.523 299.632 299.749 299.954 299.906 299.276 298.489 298.124 298.047 297.771 297.217 296.479 295.719 295.054 294.43 293.746 293.024 292.302 291.633 291.133 290.835 290.584 290.354 290.12 289.799 289.357 288.859 288.314 287.695 286.951 286.071 285.294 284.764 284.319 283.781 283.133 282.348 281.514 280.752 280.3 280.12 280.196 280.154 279.801 279.266 278.328 275.639 270.517 264.214 266.16 261.186 253.816 250.979 249.163 247.273 245.781 245.422 246.382 246.041 244.282 241.011 242.02 242.685 241.966 241.028 240.183 246.591 248.176 249.926 252.115 254.604 256.671 258.131 259.04 260.048 261.903 264.818 267.891 269.842 270.932 271.316 271.372 271.299 271.728 272.038 272.574 273.113 273.427 273.671 274.401 275.091 275.741 276.415 277.047 277.771 278.76 279.883 281.265 282.816 284.185 285.455 286.742 287.995 289.279 290.499 291.742 292.984 293.968 294.709 295.369 296.036 296.593 297.014 297.299 297.419 297.447 297.488 297.556 297.686 297.966 298.322 298.693 299.026 299.194 299.231 299.285 299.329 299.368 299.454 299.568 299.772 300.076 300.097 299.561 298.891 298.672 298.84 298.88 298.453 297.589 296.593 295.702 294.939 294.165 293.353 292.546 291.758 291.044 290.591 290.335 290.16 289.966 289.648 289.2 288.712 288.173 287.537 286.79 285.949 285.214 284.702 284.249 283.719 283.17 282.549 281.857 281.27 280.868 280.692 280.773 280.608 280.225 279.789 278.769 276.147 270.797 264.538 266.748 263.946 258.125 253.163 249.958 247.412 246.073 246.016 247.96 247.766 244.44 241.029 242.27 242.871 242.044 241.087 240.179 246.568 248.095 249.76 251.852 254.234 256.241 257.586 258.423 259.284 261.049 264.093 267.348 269.309 270.74 271.175 271.359 271.296 271.631 271.93 272.458 273.075 273.505 273.74 274.393 275.071 275.717 276.409 277.044 277.735 278.654 279.709 280.996 282.436 283.734 285.074 286.477 287.805 289.154 290.42 291.68 292.901 293.865 294.577 295.228 295.92 296.488 296.891 297.143 297.243 297.258 297.301 297.377 297.543 297.882 298.286 298.659 299.024 299.262 299.298 299.269 299.268 299.291 299.359 299.507 299.781 300.11 300.218 299.9 299.365 299.209 299.675 300.127 299.48 298.539 297.16 296.214 295.119 293.972 293.041 292.16 291.496 290.856 290.329 290.079 289.971 289.82 289.537 289.076 288.518 287.961 287.373 286.672 285.895 285.203 284.701 284.233 283.668 283.143 282.637 282.046 281.568 281.281 281.27 281.028 280.801 280.482 280.053 279.209 276.753 272.141 265.152 267.348 265.977 261.835 257.055 251.832 248.272 246.647 246.674 247.718 248.183 245.604 241.979 242.662 243.089 242.14 241.124 240.171 246.53 248.003 249.592 251.586 253.896 255.8 257.078 257.787 258.473 260.168 263.225 266.634 269.031 270.623 271.097 271.321 271.315 271.495 271.868 272.393 273.036 273.548 273.823 274.408 275.074 275.7 276.388 277.03 277.69 278.543 279.52 280.728 282.129 283.465 284.953 286.446 287.767 289.091 290.362 291.652 292.875 293.849 294.567 295.178 295.822 296.363 296.738 296.963 297.053 297.053 297.078 297.173 297.42 297.818 298.238 298.617 299.001 299.245 299.268 299.229 299.245 299.283 299.384 299.583 299.847 300.124 300.312 300.103 299.483 299.246 299.972 300.42 299.289 299.665 297.961 296.824 294.913 293.297 292.228 291.257 290.328 290.078 289.983 289.838 289.802 289.703 289.464 288.989 288.326 287.711 287.173 286.552 285.861 285.23 284.742 284.279 283.698 283.151 282.708 282.254 281.933 281.806 281.571 281.112 280.842 280.525 280.118 279.426 277.49 273.854 266.378 268.331 267.294 264.55 261.01 255.556 249.655 247.221 246.71 247.493 247.873 246.492 242.853 243.105 243.317 242.244 241.154 240.163 246.494 247.906 249.426 251.319 253.52 255.387 256.576 257.107 257.726 259.265 262.283 265.609 268.67 270.427 271.036 271.28 271.332 271.38 271.807 272.347 272.987 273.566 273.885 274.429 275.082 275.672 276.345 276.997 277.648 278.452 279.351 280.532 281.996 283.479 285.118 286.634 287.881 289.127 290.392 291.69 292.848 293.755 294.489 295.136 295.768 296.251 296.573 296.793 296.887 296.869 296.876 297.019 297.354 297.78 298.183 298.564 298.952 299.219 299.289 299.284 299.271 299.295 299.462 299.724 299.968 300.219 300.401 300.074 299.261 299.042 299.651 299.858 300.454 299.167 298.177 297.13 295.159 293.482 291.92 290.799 289.518 288.617 288.695 289.387 289.605 289.625 289.443 288.964 288.201 287.497 286.949 286.404 285.842 285.33 284.862 284.408 283.855 283.285 282.924 282.65 282.281 281.95 281.591 281.127 280.81 280.485 280.042 279.505 278.052 275.056 270.249 269.483 268.314 266.437 263.743 258.912 251.612 248.257 246.742 247.21 247.426 246.949 242.911 243.435 243.527 242.337 241.177 240.155 246.455 247.829 249.262 251.073 253.161 254.972 256.107 256.473 256.817 258.344 261.208 264.671 268.023 270.118 270.972 271.225 271.323 271.306 271.721 272.304 272.951 273.558 273.919 274.437 275.075 275.622 276.26 276.913 277.576 278.35 279.2 280.398 282.031 283.736 285.458 286.891 288.016 289.176 290.443 291.726 292.755 293.542 294.306 295.073 295.734 296.145 296.411 296.625 296.708 296.662 296.677 296.899 297.303 297.725 298.111 298.513 298.919 299.223 299.345 299.337 299.253 299.281 299.538 299.847 300.093 300.369 300.437 299.801 298.843 297.987 298.958 299.851 300.082 299.0 298.781 297.115 295.495 293.443 291.578 289.708 289.051 288.19 287.739 287.832 289.113 289.461 289.373 288.984 288.276 287.511 286.805 286.195 285.76 285.385 284.97 284.581 284.106 283.558 283.206 282.86 282.228 281.738 281.414 281.059 280.819 280.497 279.984 279.499 278.476 276.085 272.744 270.29 269.129 267.75 265.468 261.848 255.149 249.702 247.711 247.088 247.242 246.52 243.049 243.615 243.691 242.4 241.199 240.145 246.433 247.742 249.116 250.819 252.835 254.561 255.619 255.855 256.048 257.362 260.069 263.576 267.491 269.634 270.891 271.196 271.293 271.324 271.715 272.313 272.95 273.54 273.935 274.4 275.011 275.529 276.106 276.724 277.402 278.193 279.055 280.334 282.215 284.141 285.816 287.042 288.018 289.129 290.394 291.651 292.579 293.272 294.1 295.0 295.675 296.016 296.25 296.447 296.465 296.387 296.466 296.786 297.211 297.616 298.016 298.458 298.887 299.206 299.329 299.254 299.143 299.279 299.615 299.878 300.155 300.521 300.373 299.355 298.274 297.473 299.061 299.564 299.17 297.802 297.623 296.944 295.13 293.468 291.312 289.45 288.505 288.027 287.29 286.466 288.022 288.464 288.578 288.596 288.368 287.719 286.702 285.801 285.375 285.155 284.894 284.678 284.361 283.786 283.255 282.829 282.04 281.195 280.92 280.886 280.839 280.609 280.06 279.504 278.731 276.882 273.721 271.029 269.836 268.662 266.782 263.972 258.484 251.78 248.677 247.874 246.925 245.923 243.505 243.898 243.814 242.432 241.218 240.131 246.397 247.66 248.953 250.588 252.531 254.182 255.206 255.306 255.284 256.348 258.959 262.556 266.301 269.35 270.79 271.185 271.269 271.411 271.796 272.369 272.966 273.527 273.931 274.318 274.869 275.393 275.936 276.508 277.202 278.068 278.995 280.365 282.389 284.375 285.928 286.986 287.895 289.002 290.259 291.482 292.405 293.146 294.047 294.944 295.564 295.88 296.1 296.247 296.213 296.168 296.324 296.679 297.086 297.502 297.924 298.363 298.818 299.2 299.336 299.206 299.089 299.275 299.586 299.795 300.141 300.561 300.274 299.038 297.543 297.625 299.356 298.856 298.198 297.236 297.215 296.158 294.675 292.916 291.234 289.633 288.595 287.762 286.669 285.784 285.841 286.457 286.754 287.48 288.098 287.813 286.465 285.106 284.486 284.255 284.174 284.366 284.39 283.808 283.181 282.706 281.657 279.818 279.549 280.428 280.661 280.665 280.197 279.563 278.86 277.335 274.37 271.811 270.55 269.443 267.741 265.37 261.606 253.97 250.019 248.173 247.002 245.805 244.018 244.267 243.936 242.437 241.23 240.116 246.356 247.574 248.809 250.353 252.257 253.808 254.738 254.754 254.621 255.592 258.001 261.442 265.453 269.101 270.687 271.218 271.268 271.499 271.892 272.412 272.972 273.519 273.905 274.213 274.694 275.237 275.783 276.333 277.067 278.041 279.04 280.475 282.509 284.433 285.876 286.873 287.799 288.924 290.144 291.305 292.234 293.07 294.029 294.878 295.447 295.744 295.906 295.973 295.94 295.974 296.183 296.517 296.921 297.386 297.822 298.254 298.77 299.232 299.384 299.214 299.043 299.165 299.444 299.716 300.15 300.554 300.267 298.801 297.61 298.837 299.158 298.375 297.893 297.106 296.468 295.648 294.473 292.91 291.262 289.901 288.74 287.672 286.106 284.899 283.696 282.966 283.062 285.204 287.208 287.501 285.413 282.668 281.859 282.387 282.084 283.714 284.255 283.735 282.998 282.451 281.221 278.613 278.089 279.616 280.14 280.369 280.228 279.605 278.917 277.619 274.881 272.644 271.307 270.109 268.507 266.487 263.495 257.737 251.393 249.887 247.846 246.017 244.518 244.499 244.062 242.457 241.233 240.1 246.315 247.491 248.664 250.133 251.956 253.429 254.296 254.249 254.025 254.868 257.025 260.487 264.666 268.797 270.603 271.283 271.305 271.55 271.959 272.436 272.968 273.514 273.878 274.108 274.514 275.079 275.654 276.203 277.008 278.107 279.201 280.671 282.623 284.405 285.761 286.765 287.727 288.871 290.066 291.16 292.079 293.001 293.993 294.787 295.331 295.595 295.642 295.629 295.651 295.769 295.994 296.299 296.737 297.266 297.718 298.156 298.738 299.24 299.379 299.197 299.002 299.046 299.316 299.702 300.193 300.543 300.377 299.25 298.79 299.742 299.329 298.32 297.784 297.018 296.288 295.611 294.33 292.944 291.426 290.17 288.826 287.706 285.895 283.44 282.38 280.882 280.303 281.782 285.429 286.45 284.209 281.056 279.934 279.667 280.25 282.988 284.05 283.559 282.685 282.119 280.901 278.655 277.334 278.348 279.092 279.677 280.008 279.568 278.91 277.747 275.494 273.591 272.137 270.709 269.18 267.403 264.886 260.622 253.407 250.533 247.938 246.494 244.921 244.658 244.148 242.521 241.228 240.082 246.287 247.405 248.52 249.914 251.698 253.098 253.823 253.721 253.444 254.153 256.152 259.482 263.914 268.64 270.521 271.372 271.385 271.582 271.953 272.405 272.952 273.53 273.893 274.031 274.343 274.924 275.541 276.128 277.04 278.282 279.502 280.989 282.779 284.368 285.644 286.657 287.612 288.773 289.995 291.078 291.996 292.966 293.938 294.668 295.172 295.354 295.286 295.263 295.373 295.516 295.733 296.078 296.579 297.128 297.605 298.094 298.714 299.188 299.292 299.17 299.054 299.08 299.326 299.75 300.208 300.509 300.498 299.866 300.154 300.281 299.227 298.08 297.984 296.623 296.205 295.038 294.162 292.857 291.659 290.549 288.789 287.173 285.504 283.471 281.84 279.813 278.857 279.888 282.506 285.175 282.729 279.914 278.52 278.22 279.313 282.558 283.893 283.366 282.289 281.644 280.442 278.625 276.751 276.59 277.549 278.451 279.618 279.505 278.934 277.872 276.088 274.463 272.958 271.364 269.759 268.192 266.023 262.381 256.5 251.993 249.436 246.792 245.421 244.86 244.188 242.594 241.211 240.061 246.245 247.329 248.388 249.693 251.451 252.761 253.401 253.248 252.851 253.484 255.193 258.633 263.14 268.069 270.466 271.464 271.474 271.607 271.952 272.365 272.914 273.537 273.921 274.017 274.23 274.796 275.464 276.139 277.158 278.497 279.803 281.28 282.915 284.337 285.553 286.578 287.537 288.734 290.008 291.094 291.997 292.962 293.906 294.555 294.957 295.056 294.97 295.005 295.131 295.236 295.486 295.93 296.451 296.992 297.538 298.106 298.723 299.175 299.287 299.202 299.107 299.121 299.34 299.743 300.221 300.565 300.521 299.622 299.224 300.29 299.421 298.241 297.67 296.209 294.191 294.308 293.991 292.828 291.894 290.793 288.992 287.227 285.676 283.754 282.047 279.86 278.023 278.472 281.092 284.286 282.193 279.348 277.769 277.462 279.058 282.301 283.654 283.042 281.263 280.853 279.593 278.003 276.466 276.053 276.135 277.239 279.228 279.473 278.952 278.005 276.625 275.267 273.749 271.991 270.351 268.912 266.916 263.883 258.93 253.373 249.48 247.28 245.747 245.071 244.212 242.656 241.206 240.038 246.215 247.249 248.257 249.486 251.203 252.478 252.977 252.844 252.424 252.907 254.32 257.766 262.429 267.849 270.424 271.556 271.566 271.641 271.968 272.336 272.855 273.515 273.924 274.012 274.154 274.692 275.414 276.198 277.307 278.686 280.012 281.443 282.946 284.241 285.442 286.531 287.554 288.802 290.077 291.107 291.953 292.91 293.846 294.431 294.74 294.785 294.719 294.777 294.866 294.955 295.265 295.775 296.31 296.902 297.573 298.182 298.751 299.191 299.329 299.238 299.116 299.132 299.35 299.735 300.264 300.694 300.585 299.619 298.483 299.977 299.569 298.806 297.527 296.428 295.259 295.987 294.003 292.869 292.023 291.017 289.417 287.495 285.886 284.019 282.017 280.213 278.105 278.161 280.451 283.695 282.204 279.264 277.507 277.06 278.515 281.855 283.057 282.296 280.237 280.076 278.488 277.368 276.428 276.21 276.412 277.553 279.077 279.471 279.04 278.204 277.076 275.887 274.458 272.639 270.969 269.576 267.747 264.926 261.0 254.971 251.979 248.173 246.043 245.189 244.271 242.705 241.212 240.006 246.177 247.175 248.116 249.302 250.986 252.195 252.6 252.432 252.055 252.348 253.616 256.888 261.8 267.663 270.38 271.64 271.662 271.698 272.005 272.313 272.785 273.458 273.885 273.983 274.087 274.592 275.372 276.265 277.444 278.828 280.118 281.467 282.85 284.075 285.301 286.488 287.604 288.882 290.097 291.048 291.856 292.816 293.751 294.289 294.529 294.555 294.511 294.547 294.603 294.731 295.109 295.626 296.19 296.909 297.689 298.295 298.8 299.235 299.389 299.304 299.198 299.235 299.423 299.724 300.228 300.716 300.628 299.473 298.403 300.159 299.819 298.728 297.704 296.459 295.311 294.908 293.895 293.075 292.208 291.059 289.763 288.33 286.457 284.684 282.619 280.36 278.686 278.226 279.868 283.303 283.265 280.038 277.861 276.998 277.984 280.877 281.748 280.454 279.253 279.156 278.023 277.305 276.8 277.164 277.685 278.373 279.161 279.465 279.118 278.394 277.43 276.39 275.018 273.268 271.564 270.206 268.493 265.856 262.534 257.492 252.143 248.247 246.413 245.329 244.368 242.716 241.212 239.968 246.145 247.091 247.99 249.12 250.756 251.989 252.279 252.055 251.674 251.793 252.932 256.082 261.129 267.244 270.278 271.72 271.779 271.786 272.055 272.318 272.709 273.339 273.785 273.924 274.009 274.488 275.321 276.315 277.537 278.895 280.113 281.36 282.661 283.886 285.162 286.4 287.559 288.812 289.957 290.911 291.783 292.746 293.629 294.108 294.306 294.333 294.297 294.318 294.409 294.63 295.049 295.55 296.181 297.015 297.79 298.357 298.859 299.295 299.466 299.447 299.409 299.433 299.521 299.679 300.038 300.482 300.513 300.221 299.059 300.495 299.827 298.654 296.981 296.243 295.327 294.311 293.781 292.305 291.414 290.75 289.899 288.866 287.465 285.511 283.318 280.957 279.34 278.41 279.515 282.126 284.008 282.566 280.048 277.61 277.655 278.459 278.917 278.705 278.223 278.204 277.763 277.409 277.841 278.206 278.529 278.899 279.199 279.299 279.043 278.498 277.69 276.733 275.481 273.802 272.195 270.798 269.079 266.788 263.9 259.16 254.169 248.856 246.516 245.536 244.471 242.678 241.214 239.928 246.104 247.014 247.863 248.942 250.555 251.729 251.972 251.76 251.398 251.253 252.273 255.404 260.576 266.91 270.158 271.77 271.882 271.871 272.109 272.326 272.647 273.229 273.688 273.867 273.95 274.411 275.277 276.339 277.567 278.878 280.039 281.232 282.529 283.816 285.103 286.282 287.411 288.65 289.794 290.826 291.792 292.713 293.483 293.91 294.099 294.137 294.116 294.149 294.287 294.586 295.025 295.539 296.219 297.006 297.672 298.246 298.805 299.247 299.47 299.569 299.543 299.499 299.578 299.74 300.021 300.379 300.427 300.235 299.236 300.222 299.805 298.05 297.27 295.98 294.998 294.02 292.816 291.647 290.808 290.376 289.465 288.684 287.707 285.96 283.819 281.272 279.475 278.837 278.993 281.034 284.352 283.915 281.957 279.572 277.854 277.261 277.175 277.378 277.457 277.54 277.695 277.859 278.34 278.746 279.086 279.111 278.909 278.718 278.658 278.429 277.869 277.005 275.813 274.316 272.749 271.318 269.657 267.426 264.873 261.142 254.457 248.97 246.56 245.598 244.448 242.67 241.212 239.876 246.062 246.936 247.732 248.75 250.346 251.493 251.732 251.485 251.142 250.837 251.616 254.811 260.101 266.547 270.071 271.798 271.973 271.943 272.16 272.329 272.597 273.136 273.607 273.82 273.901 274.354 275.265 276.367 277.572 278.831 279.964 281.143 282.461 283.787 285.051 286.161 287.284 288.563 289.721 290.778 291.778 292.646 293.336 293.753 293.95 293.978 293.955 294.0 294.169 294.5 294.96 295.501 296.159 296.833 297.453 298.1 298.704 299.144 299.482 299.69 299.629 299.539 299.649 299.81 300.016 300.32 300.333 300.132 299.251 299.91 299.59 298.441 297.093 295.578 294.728 293.621 292.268 290.959 290.047 289.261 288.501 287.812 287.31 285.865 283.893 281.957 280.202 279.482 279.014 280.221 283.987 284.61 283.184 281.409 279.158 276.475 275.641 276.286 276.782 276.82 277.397 278.112 278.514 278.953 279.125 278.834 278.155 277.58 277.766 278.121 277.931 277.219 276.118 274.704 273.238 271.78 270.105 268.081 265.727 262.048 256.657 248.986 246.571 245.584 244.426 242.697 241.203 239.819 246.023 246.86 247.607 248.584 250.148 251.286 251.508 251.223 250.88 250.443 251.063 254.291 259.645 266.207 269.982 271.82 272.064 272.006 272.197 272.336 272.549 273.072 273.548 273.78 273.873 274.312 275.267 276.39 277.56 278.772 279.899 281.088 282.412 283.733 284.963 286.039 287.202 288.554 289.726 290.769 291.765 292.598 293.232 293.642 293.826 293.819 293.792 293.863 294.06 294.391 294.871 295.433 296.024 296.587 297.229 297.992 298.643 299.107 299.563 299.815 299.691 299.586 299.712 299.808 299.932 300.197 300.157 299.961 299.329 299.902 299.453 298.25 297.343 295.154 294.261 292.967 291.858 290.499 289.293 287.82 286.902 286.323 285.922 285.184 283.899 282.817 281.618 280.365 279.527 280.333 283.723 284.755 283.888 282.359 280.112 276.246 274.666 275.282 276.068 276.163 276.65 277.804 278.391 278.72 278.734 277.982 276.793 276.002 276.39 277.445 277.881 277.385 276.35 275.024 273.641 272.151 270.446 268.507 266.223 262.914 257.148 248.934 246.592 245.544 244.386 242.717 241.182 239.799 245.991 246.782 247.499 248.426 249.962 251.057 251.315 250.996 250.6 250.112 250.5 253.732 259.242 265.986 269.877 271.84 272.151 272.059 272.222 272.348 272.535 273.036 273.511 273.754 273.875 274.294 275.272 276.403 277.526 278.7 279.837 281.056 282.35 283.614 284.818 285.909 287.145 288.591 289.821 290.887 291.89 292.646 293.165 293.499 293.628 293.604 293.609 293.708 293.878 294.212 294.791 295.471 296.057 296.568 297.197 297.989 298.698 299.237 299.723 299.889 299.725 299.686 299.817 299.861 300.023 300.239 300.038 299.191 298.667 299.939 299.244 297.773 296.547 294.78 293.665 292.399 291.276 290.035 288.494 286.606 284.979 283.955 284.431 284.463 283.571 282.832 282.501 281.219 280.163 280.494 283.494 284.679 284.156 282.944 280.609 276.2 274.027 274.237 274.989 275.385 276.061 276.882 277.894 278.253 278.055 276.999 275.1 273.282 274.627 276.525 277.577 277.443 276.512 275.246 273.892 272.433 270.73 268.796 266.587 263.244 258.064 249.007 246.641 245.514 244.325 242.726 241.15 239.793 245.963 246.712 247.389 248.272 249.822 250.851 251.114 250.842 250.332 249.697 249.98 253.279 258.855 265.686 269.766 271.833 272.197 272.076 272.223 272.341 272.534 273.022 273.475 273.709 273.893 274.327 275.295 276.406 277.475 278.61 279.756 281.014 282.273 283.494 284.719 285.862 287.146 288.693 290.029 291.137 292.042 292.638 293.016 293.297 293.45 293.462 293.472 293.5 293.62 294.086 294.98 295.947 296.715 297.259 297.761 298.367 298.993 299.517 299.893 299.982 299.909 299.916 299.948 299.956 300.127 300.151 299.811 298.679 299.868 300.074 298.784 296.843 294.946 293.555 292.725 291.771 290.601 289.209 288.224 286.086 283.597 282.684 283.087 283.408 283.736 283.036 282.301 281.254 280.669 280.687 283.293 284.49 284.019 282.996 280.861 276.56 273.577 273.341 273.705 274.606 275.368 276.176 277.24 277.623 277.322 275.817 272.552 270.985 272.154 275.371 277.0 277.257 276.529 275.334 274.061 272.631 270.901 268.999 266.629 263.314 258.254 250.048 246.778 245.527 244.207 242.722 241.096 239.794 245.931 246.645 247.288 248.145 249.608 250.667 250.928 250.602 250.037 249.273 249.56 252.895 258.515 265.405 269.654 271.81 272.217 272.085 272.205 272.327 272.529 272.988 273.417 273.657 273.916 274.372 275.313 276.395 277.422 278.527 279.673 280.943 282.176 283.378 284.663 285.884 287.211 288.832 290.239 291.311 292.051 292.537 292.912 293.227 293.39 293.378 293.359 293.383 293.606 294.385 295.653 296.834 297.711 298.304 298.695 299.063 299.492 299.858 300.053 300.102 300.065 299.98 299.861 299.818 299.768 299.431 299.134 298.45 299.08 299.203 298.081 296.406 294.244 292.87 292.124 290.91 290.399 289.047 287.426 284.57 282.811 282.066 282.378 283.1 283.426 282.81 282.239 281.652 281.722 281.486 283.276 284.252 283.246 282.361 280.882 277.616 273.625 272.701 272.899 274.046 274.865 275.668 276.531 276.786 276.271 275.213 271.886 269.919 270.231 274.068 276.023 276.651 276.247 275.266 274.11 272.761 271.048 269.027 266.545 263.117 258.14 249.942 246.789 245.451 244.163 242.646 241.026 239.794 245.9 246.57 247.189 248.009 249.437 250.465 250.747 250.419 249.72 248.827 249.2 252.554 258.21 265.208 269.532 271.775 272.22 272.085 272.177 272.308 272.515 272.935 273.338 273.599 273.931 274.415 275.306 276.369 277.384 278.483 279.614 280.849 282.045 283.246 284.611 285.929 287.308 288.961 290.388 291.372 292.0 292.523 293.012 293.318 293.349 293.248 293.293 293.537 294.085 295.289 296.751 297.847 298.577 299.146 299.525 299.739 299.955 300.129 300.168 300.137 299.969 299.712 298.587 298.725 298.409 297.602 297.704 298.357 299.309 298.506 297.266 296.034 294.597 293.47 291.804 290.496 288.838 287.615 286.448 284.302 282.598 282.053 282.135 282.529 282.759 282.536 282.312 282.721 282.412 282.264 283.86 284.177 283.004 282.227 280.863 277.912 273.897 272.534 272.517 273.713 274.568 275.305 275.576 275.547 275.279 274.599 271.828 269.445 269.374 272.385 274.65 275.626 275.548 274.925 274.046 272.839 271.151 269.019 266.271 262.656 257.87 249.551 246.75 245.341 244.103 242.576 241.014 239.792 245.868 246.497 247.087 247.889 249.3 250.292 250.575 250.225 249.399 248.448 248.836 252.297 258.042 265.123 269.484 271.718 272.199 272.064 272.135 272.284 272.497 272.871 273.257 273.554 273.937 274.44 275.255 276.315 277.358 278.489 279.577 280.724 281.872 283.092 284.547 285.987 287.429 289.081 290.474 291.432 292.159 292.831 293.297 293.316 293.081 293.135 293.676 294.468 295.465 296.615 297.643 298.209 298.509 298.903 299.343 299.615 299.818 299.978 299.997 299.854 299.336 297.797 298.316 299.75 299.097 297.561 297.384 298.232 298.677 298.359 297.274 296.02 293.926 293.514 291.843 290.729 288.992 287.767 286.633 284.641 283.005 281.557 281.28 281.69 282.213 282.02 282.039 283.547 284.537 284.335 284.713 284.22 283.279 282.158 280.127 277.13 274.444 272.726 272.375 273.472 274.332 274.854 275.106 274.873 274.426 273.85 271.469 269.207 268.841 270.0 273.056 274.206 274.561 274.29 273.812 272.855 271.213 268.914 265.882 262.053 256.514 249.128 246.651 245.326 243.956 242.549 241.017 239.788 245.843 246.43 246.993 247.757 249.148 250.162 250.369 250.022 249.057 248.087 248.522 252.128 257.961 264.836 269.516 271.646 272.145 272.016 272.083 272.254 272.473 272.814 273.191 273.553 273.954 274.436 275.19 276.241 277.325 278.488 279.536 280.605 281.742 283.013 284.549 286.108 287.64 289.301 290.659 291.696 292.535 293.124 293.286 293.077 293.224 294.366 295.537 296.407 296.906 297.304 297.417 296.734 296.425 297.198 297.904 298.227 298.689 299.062 299.078 298.772 297.626 297.869 298.178 299.56 299.331 297.654 297.715 297.53 298.427 297.546 296.911 296.059 294.286 293.236 292.753 291.147 289.43 288.172 286.887 284.891 283.223 281.768 281.325 281.405 282.015 281.857 282.218 284.505 285.834 285.466 284.821 284.066 282.867 281.331 279.301 277.585 274.956 273.161 272.686 273.49 274.307 274.674 275.036 274.851 274.079 272.946 271.036 268.999 268.425 268.852 270.184 272.403 273.315 273.484 273.408 272.808 271.285 268.801 265.403 261.221 252.678 248.933 246.64 245.334 243.747 242.508 241.013 239.784 245.81 246.358 246.895 247.642 248.984 250.016 250.188 249.764 248.706 247.74 248.237 251.998 257.925 264.193 269.567 271.582 272.069 271.944 272.016 272.209 272.43 272.758 273.148 273.575 273.98 274.422 275.136 276.162 277.269 278.447 279.473 280.497 281.665 283.009 284.632 286.319 288.004 289.68 290.998 292.054 292.88 293.332 293.409 293.362 294.441 296.511 297.664 297.998 297.686 296.781 296.477 295.378 294.749 294.347 294.75 296.363 297.032 297.084 297.137 297.177 297.439 297.573 297.617 297.335 296.911 297.163 297.322 298.557 298.482 297.504 297.181 296.204 295.675 292.255 292.133 291.434 289.853 288.365 286.783 284.815 283.209 282.015 281.631 281.93 282.058 282.261 282.944 285.607 286.254 285.598 283.841 283.625 282.451 280.506 279.302 277.935 275.419 273.805 273.151 273.436 274.173 274.537 274.978 275.133 273.911 272.591 270.896 268.966 268.311 268.287 267.947 269.23 271.865 272.573 272.885 272.686 271.305 268.709 264.836 259.218 251.246 248.157 246.605 245.189 243.646 242.438 241.003 239.778 245.778 246.286 246.803 247.528 248.809 249.868 250.011 249.506 248.37 247.388 248.054 251.899 257.919 264.323 269.518 271.507 271.971 271.842 271.936 272.153 272.366 272.691 273.111 273.604 274.001 274.404 275.099 276.092 277.194 278.372 279.391 280.408 281.626 283.045 284.752 286.611 288.5 290.174 291.436 292.437 293.236 293.658 294.046 294.46 297.299 299.427 299.307 298.741 297.523 296.811 296.503 295.255 293.939 292.954 292.902 294.083 295.509 296.248 295.912 295.875 296.357 296.813 297.035 296.71 296.428 296.929 298.046 298.311 299.192 297.754 298.232 298.198 295.967 293.866 292.989 291.589 290.101 288.223 286.057 284.443 282.777 282.457 282.374 282.042 282.128 282.872 284.704 286.57 286.306 285.485 284.123 283.051 281.816 279.908 279.509 277.703 275.541 274.342 273.735 273.689 274.061 274.269 275.064 275.493 274.197 272.664 271.044 269.556 268.354 267.646 267.253 266.779 268.692 271.389 272.317 272.48 271.339 268.578 264.171 255.569 250.605 247.987 246.536 245.137 243.663 242.32 240.989 239.776 245.744 246.223 246.708 247.407 248.664 249.68 249.815 249.264 248.021 247.053 247.861 251.94 257.989 264.38 269.485 271.427 271.832 271.699 271.838 272.085 272.292 272.593 273.052 273.617 274.018 274.393 275.089 276.051 277.111 278.272 279.3 280.336 281.606 283.082 284.879 286.996 289.086 290.768 291.955 292.856 293.688 294.408 295.602 298.15 300.734 299.996 298.507 296.903 296.311 296.39 296.45 295.147 294.139 292.92 292.55 293.754 294.507 295.419 295.734 295.389 295.704 296.103 296.56 296.824 296.834 297.398 297.723 298.94 300.232 299.433 299.268 298.99 296.427 295.064 293.413 291.923 290.28 288.152 285.465 282.942 282.01 282.305 282.547 281.572 282.283 283.428 286.218 286.818 286.225 285.388 284.434 282.659 280.692 280.158 279.076 276.539 275.502 274.702 274.105 273.957 273.704 273.769 274.706 275.719 275.063 273.769 271.295 269.788 269.039 267.599 266.784 265.998 265.948 269.925 271.669 272.221 271.315 268.506 262.56 254.853 250.181 247.998 246.519 245.143 243.639 242.165 240.962 239.775 245.722 246.155 246.612 247.287 248.517 249.505 249.533 248.952 247.721 246.794 247.752 252.032 258.078 264.497 269.501 271.376 271.695 271.582 271.758 272.023 272.227 272.491 272.977 273.601 274.031 274.413 275.119 276.056 277.059 278.192 279.237 280.3 281.598 283.101 285.005 287.393 289.592 291.253 292.34 293.187 294.26 296.561 299.697 300.562 299.607 297.552 295.575 294.377 295.161 295.395 295.614 295.249 294.619 293.593 293.469 293.822 294.098 294.519 294.983 295.633 295.917 296.236 296.742 297.224 297.568 297.624 298.58 300.366 301.052 300.662 300.121 299.097 298.205 295.132 293.708 292.168 290.198 287.567 283.899 282.279 281.792 282.283 282.571 282.38 282.749 284.651 286.651 286.71 286.04 285.264 284.194 282.561 280.868 279.447 277.648 275.707 275.189 274.682 274.144 273.972 273.56 273.306 274.236 275.706 275.466 274.467 272.478 271.69 270.718 267.871 266.483 265.408 264.964 267.726 270.958 271.921 271.286 268.309 261.1 255.139 249.875 247.699 246.346 245.142 243.388 242.168 240.916 239.772 245.694 246.08 246.517 247.163 248.359 249.296 249.327 248.691 247.44 246.506 247.894 252.089 258.229 264.905 269.299 271.326 271.576 271.51 271.707 271.97 272.161 272.398 272.899 273.579 274.056 274.456 275.17 276.078 277.027 278.128 279.187 280.28 281.589 283.12 285.153 287.776 290.026 291.636 292.608 293.592 295.213 297.395 298.672 298.325 296.943 295.376 294.504 294.33 294.736 295.083 295.438 295.733 295.092 294.571 294.297 294.229 294.088 294.128 294.658 295.652 296.127 296.103 296.724 298.339 298.55 297.875 299.225 300.976 301.395 300.523 299.81 299.436 297.886 295.966 293.588 291.933 289.794 287.449 284.343 282.494 282.058 281.966 282.809 282.754 283.042 284.93 286.387 286.179 285.66 284.805 283.339 281.337 279.092 277.527 275.058 274.668 274.715 274.208 273.8 273.565 273.268 272.994 273.741 275.445 275.56 274.833 273.625 272.257 271.08 269.276 266.67 265.092 264.534 265.314 270.28 271.583 271.203 268.241 260.689 255.61 249.713 247.51 246.182 244.887 243.197 242.183 240.81 239.764 245.661 246.015 246.423 247.036 248.215 249.06 249.065 248.363 247.207 246.235 247.874 252.243 258.28 265.398 269.18 271.258 271.471 271.479 271.696 271.924 272.094 272.32 272.838 273.563 274.095 274.52 275.226 276.101 277.005 278.073 279.137 280.254 281.57 283.139 285.316 288.117 290.407 291.96 292.801 293.47 294.822 295.709 295.724 295.123 294.998 294.876 295.023 295.189 295.574 295.729 295.833 296.081 295.728 295.12 294.744 294.971 294.299 294.108 294.606 295.544 296.092 296.028 296.381 297.633 298.427 298.021 298.513 300.986 301.048 299.814 298.892 297.996 296.283 294.418 292.533 291.079 289.68 287.48 284.456 283.068 282.579 282.18 282.92 282.837 282.898 283.19 283.807 285.004 285.303 284.309 282.418 279.511 276.236 274.515 273.368 273.92 274.137 273.622 273.181 273.121 272.954 272.723 273.122 274.534 274.982 274.795 273.724 272.022 270.847 269.694 267.843 265.074 263.87 264.106 269.563 271.226 271.129 268.314 261.393 255.475 250.159 247.206 246.165 244.88 243.207 242.129 240.719 239.751 245.637 245.95 246.323 246.906 248.037 248.83 248.741 248.069 246.914 246.063 247.693 252.218 258.351 265.378 269.239 271.163 271.375 271.481 271.738 271.893 272.034 272.278 272.809 273.557 274.16 274.61 275.293 276.125 276.988 278.021 279.082 280.218 281.538 283.146 285.45 288.374 290.742 292.311 293.029 293.433 294.067 293.845 293.181 293.363 294.083 294.6 295.103 296.135 296.602 296.361 296.28 296.201 295.726 295.223 294.767 294.699 294.228 294.17 294.828 295.74 295.901 295.671 295.849 296.579 297.182 297.445 298.088 299.189 300.334 298.826 297.831 296.677 294.711 292.521 290.717 289.45 288.596 286.725 285.028 283.722 283.057 282.848 282.152 282.021 281.896 282.792 283.263 284.911 285.107 284.05 281.581 278.213 275.978 273.831 272.825 273.515 273.584 272.869 272.561 272.823 272.693 272.576 272.661 273.074 273.597 274.037 273.268 270.54 268.863 269.187 268.074 264.658 263.136 263.446 268.582 270.87 271.015 268.564 262.039 255.114 250.579 247.015 246.087 244.873 243.214 241.979 240.723 239.717 245.606 245.885 246.232 246.778 247.851 248.571 248.429 247.756 246.649 245.883 247.567 252.256 258.35 265.227 269.256 271.072 271.308 271.509 271.8 271.905 272.011 272.282 272.81 273.558 274.227 274.71 275.36 276.145 276.974 277.976 279.033 280.181 281.501 283.106 285.439 288.422 290.895 292.617 293.351 293.539 293.569 292.708 291.835 292.213 293.046 293.661 294.523 296.356 297.517 296.889 296.431 295.971 295.425 294.659 294.19 294.0 293.942 294.275 294.85 295.662 295.753 295.602 295.762 296.719 297.555 297.322 297.676 299.749 299.85 298.431 296.461 294.797 293.523 291.151 289.637 287.702 287.537 286.186 284.966 283.888 283.202 282.69 282.554 282.475 281.785 282.788 283.775 285.234 284.99 284.058 282.312 279.538 277.806 274.636 273.13 273.377 273.143 272.292 272.016 272.356 272.428 272.332 272.062 272.039 272.443 272.889 272.189 269.68 268.04 267.649 267.568 263.987 262.389 262.698 267.261 270.544 270.895 268.722 262.738 255.046 251.051 247.025 246.033 244.836 243.192 241.731 240.728 239.647 245.577 245.81 246.137 246.658 247.664 248.298 248.075 247.394 246.413 245.73 247.464 252.204 258.302 265.129 269.268 271.032 271.254 271.534 271.862 271.952 272.029 272.318 272.84 273.565 274.282 274.803 275.42 276.16 276.96 277.933 278.982 280.139 281.439 282.995 285.277 288.288 290.866 292.789 293.677 293.754 292.961 291.751 290.518 290.79 291.793 292.642 294.095 296.338 297.865 296.958 296.228 295.692 295.113 294.391 293.965 293.455 293.647 294.082 294.745 295.242 295.499 295.424 295.776 297.368 297.576 297.182 299.198 300.567 299.728 298.167 296.35 294.464 291.93 290.569 289.395 287.244 286.629 286.098 284.908 283.921 283.086 282.435 281.656 281.737 281.902 283.111 284.748 285.48 285.076 283.474 282.248 280.243 278.194 275.757 273.663 273.487 272.898 272.031 271.836 272.082 272.167 271.945 271.599 271.341 271.466 271.484 271.188 269.134 266.817 266.297 265.546 263.142 261.38 262.142 266.999 270.29 270.737 268.943 263.512 255.779 251.026 247.159 246.053 244.728 242.813 241.639 240.73 239.529 245.556 245.748 246.043 246.503 247.476 248.015 247.755 247.073 246.174 245.593 247.418 252.151 258.247 265.099 269.26 271.014 271.233 271.551 271.91 272.003 272.075 272.377 272.897 273.588 274.327 274.886 275.471 276.17 276.949 277.893 278.933 280.092 281.353 282.819 284.985 288.013 290.689 292.803 293.951 293.929 292.937 291.322 289.73 289.65 290.415 292.001 293.821 296.789 297.292 296.611 295.721 295.721 294.992 294.194 293.62 293.142 293.351 293.78 294.274 294.71 294.609 294.281 294.748 296.278 296.646 297.341 299.899 300.692 299.843 298.589 297.001 294.362 292.541 291.343 290.309 288.997 287.241 286.58 285.331 284.008 283.036 281.854 281.815 281.834 282.896 283.428 285.118 285.678 284.956 283.358 281.304 279.028 277.289 275.596 274.38 273.891 273.058 272.19 271.999 271.976 271.674 271.449 271.01 270.735 270.723 270.688 270.202 268.511 265.958 265.266 264.606 262.214 260.518 261.406 266.597 270.116 270.558 268.986 264.259 256.336 251.156 247.358 246.188 244.698 242.806 241.645 240.676 239.504 245.531 245.686 245.954 246.379 247.259 247.71 247.392 246.73 245.904 245.463 247.492 252.022 257.986 263.982 269.23 271.009 271.28 271.572 271.926 272.049 272.136 272.448 272.978 273.647 274.378 274.965 275.516 276.173 276.942 277.862 278.886 280.043 281.251 282.584 284.613 287.644 290.41 292.635 294.101 294.571 293.954 291.833 289.863 289.274 289.846 291.266 293.477 295.89 296.968 296.009 295.584 295.593 295.005 294.351 293.485 292.882 292.775 293.057 293.695 293.879 293.423 292.888 293.003 294.126 295.382 297.091 299.382 300.689 300.228 299.183 298.879 295.749 293.862 292.437 291.578 289.675 288.606 287.564 286.359 284.701 283.768 283.069 283.221 282.888 282.932 283.633 285.578 285.783 284.734 282.5 279.292 276.181 275.581 276.072 276.164 275.002 273.717 272.653 272.279 271.881 271.249 270.896 270.429 270.145 270.051 269.893 269.341 267.812 265.37 264.528 263.917 261.576 260.017 261.064 265.877 270.028 270.361 268.997 264.821 257.151 251.277 247.715 246.164 244.669 242.797 241.65 240.581 239.504 245.505 245.623 245.859 246.234 247.04 247.406 247.026 246.43 245.613 245.336 247.266 251.812 257.653 263.502 269.073 271.022 271.38 271.617 271.928 272.074 272.182 272.492 273.033 273.687 274.416 275.021 275.551 276.17 276.94 277.851 278.853 280.0 281.175 282.416 284.357 287.363 290.183 292.345 293.947 294.959 294.702 293.652 291.207 290.099 290.07 291.252 293.978 296.418 297.424 296.784 295.923 295.514 295.128 294.445 293.991 293.023 292.579 292.743 292.964 292.911 292.652 292.228 292.099 292.704 294.498 296.214 299.572 300.969 301.112 300.971 300.142 296.782 296.167 293.568 292.738 290.804 289.701 288.641 287.643 286.317 284.911 283.819 283.617 282.994 282.913 283.683 285.625 285.812 284.507 281.694 276.604 274.066 274.366 276.582 277.352 276.699 274.496 273.085 272.44 271.822 270.939 270.539 269.935 269.621 269.592 269.268 268.602 266.863 264.952 263.944 263.201 260.912 259.386 260.974 266.717 269.979 270.124 268.872 265.297 257.965 251.87 247.987 246.173 244.506 242.786 241.653 240.423 239.504 245.477 245.559 245.764 246.093 246.818 247.074 246.667 246.114 245.323 245.213 247.241 251.556 257.221 263.063 268.593 271.002 271.519 271.688 271.931 272.088 272.205 272.499 273.042 273.688 274.422 275.051 275.581 276.168 276.93 277.829 278.799 279.93 281.09 282.306 284.202 287.118 289.944 291.952 293.5 294.845 295.335 294.888 294.081 292.338 291.71 292.641 295.375 297.687 298.32 297.131 296.057 295.108 295.001 294.979 294.263 293.162 292.653 292.401 292.44 292.691 292.548 292.081 291.991 292.39 293.568 296.434 299.8 301.475 302.096 301.841 301.079 299.644 297.781 295.3 294.243 292.842 290.793 289.454 288.282 287.089 286.224 284.865 283.974 282.957 282.595 283.275 285.381 285.797 284.376 281.124 276.286 272.575 273.47 276.456 277.821 277.386 275.598 273.237 272.416 271.638 270.67 270.196 269.489 269.113 269.118 268.643 267.975 266.363 264.624 263.447 262.545 260.481 259.195 261.195 267.823 269.953 269.859 268.67 265.69 258.308 252.365 248.395 246.239 244.356 242.605 241.647 240.103 239.506 245.452 245.503 245.672 245.952 246.588 246.732 246.281 245.791 245.085 245.056 246.966 251.243 256.718 262.508 268.357 270.873 271.691 271.809 271.949 272.098 272.207 272.475 273.015 273.659 274.384 275.05 275.606 276.164 276.902 277.783 278.714 279.807 280.964 282.208 284.101 286.884 289.635 291.494 292.846 294.237 295.279 295.629 295.497 295.415 294.267 294.951 297.022 298.671 298.079 297.361 295.735 295.024 295.126 295.176 294.347 293.269 292.79 292.428 292.247 292.333 292.413 292.383 291.939 291.911 293.24 296.019 298.924 301.591 302.594 302.568 301.28 300.12 299.17 296.843 296.272 294.401 292.204 289.933 288.362 287.181 286.239 285.89 284.85 283.255 281.86 282.126 285.077 285.604 284.341 280.675 275.923 271.845 272.573 275.367 277.784 277.466 275.539 273.109 272.181 271.291 270.437 269.702 268.992 268.576 268.471 268.108 267.315 265.778 264.121 262.933 262.023 260.21 259.341 263.407 268.184 269.891 269.538 268.381 265.679 259.081 252.848 248.678 246.115 244.301 242.315 240.892 239.895 239.508 245.416 245.442 245.576 245.799 246.342 246.368 245.906 245.452 244.858 244.877 246.826 250.902 256.174 261.838 267.411 270.566 271.855 272.002 272.005 272.118 272.201 272.431 272.95 273.593 274.289 275.004 275.617 276.158 276.857 277.729 278.606 279.615 280.756 282.081 284.026 286.617 289.233 290.988 292.128 293.26 294.398 295.385 296.166 296.587 296.868 297.47 297.836 298.291 297.803 296.821 295.857 295.483 295.485 295.409 294.297 293.486 293.082 292.891 292.496 292.385 292.38 292.289 291.804 291.692 293.294 296.361 298.826 299.629 301.877 301.461 299.965 300.459 300.134 299.255 297.637 295.467 293.005 290.203 288.547 287.574 287.293 287.222 286.848 284.131 281.434 281.71 283.825 284.828 283.833 280.334 274.911 271.171 271.812 274.68 277.681 277.434 275.006 272.941 271.82 270.854 269.924 269.128 268.522 267.955 267.968 267.486 266.649 265.197 263.52 262.438 261.481 260.12 259.499 265.126 268.552 269.754 269.194 268.026 265.744 259.374 253.585 249.1 246.11 244.155 242.294 240.794 239.896 239.509 245.39 245.376 245.482 245.643 246.07 246.0 245.569 245.163 244.696 244.722 246.596 250.503 255.622 261.069 266.443 270.304 271.938 272.195 272.105 272.16 272.216 272.413 272.896 273.515 274.182 274.931 275.602 276.148 276.824 277.705 278.542 279.454 280.565 281.954 283.95 286.429 288.949 290.659 291.672 292.541 293.431 294.407 295.561 296.447 297.136 297.835 298.283 298.457 298.518 298.518 297.459 296.503 296.484 295.391 294.577 294.211 293.955 293.714 293.326 293.064 292.46 291.842 291.472 291.596 294.012 296.548 297.957 299.053 298.95 297.963 297.949 297.717 299.245 298.858 297.252 295.093 292.94 291.149 289.785 288.755 289.614 289.375 288.276 285.193 280.905 280.226 281.555 282.571 282.58 279.73 274.382 270.624 271.471 275.11 277.763 277.464 274.752 272.809 271.577 270.391 269.26 268.427 267.834 267.559 267.483 266.964 266.014 264.58 262.923 261.92 261.146 260.346 259.775 265.13 268.543 269.506 268.791 267.634 265.578 260.337 253.865 249.464 246.191 243.881 242.269 240.788 239.898 239.51 245.373 245.319 245.383 245.481 245.815 245.638 245.209 244.883 244.538 244.58 246.332 250.138 255.03 260.322 264.464 269.924 271.953 272.372 272.232 272.228 272.259 272.428 272.862 273.438 274.081 274.852 275.567 276.135 276.814 277.701 278.507 279.361 280.446 281.836 283.824 286.294 288.752 290.447 291.391 292.102 292.868 293.765 294.868 295.872 296.779 297.661 298.29 298.675 299.1 299.41 299.118 297.594 297.043 296.033 295.523 295.393 295.303 294.889 294.641 294.302 293.42 292.736 292.692 293.479 294.808 296.595 297.421 296.609 295.003 293.533 293.728 295.116 296.066 296.052 295.104 293.792 293.117 291.912 291.273 291.479 291.07 289.95 287.254 283.092 279.22 278.486 278.82 279.244 278.818 277.1 273.62 270.501 271.617 275.895 277.867 277.35 275.142 272.758 271.405 269.878 268.442 267.818 267.326 267.21 267.045 266.358 265.375 263.911 261.992 260.984 261.577 260.604 259.953 265.576 268.361 269.111 268.336 267.224 265.545 261.151 254.696 249.613 246.07 243.684 242.166 240.78 239.898 239.511 245.349 245.257 245.289 245.312 245.526 245.285 244.846 244.602 244.322 244.447 246.141 249.741 254.369 259.455 263.24 269.477 271.902 272.528 272.376 272.317 272.33 272.475 272.846 273.362 273.982 274.765 275.518 276.115 276.818 277.698 278.478 279.323 280.413 281.746 283.678 286.139 288.575 290.27 291.186 291.843 292.597 293.524 294.601 295.556 296.448 297.308 297.937 298.364 299.023 299.706 299.749 298.878 297.701 297.073 296.746 296.519 296.529 296.272 296.398 295.952 295.589 295.293 295.281 295.889 296.479 297.076 297.964 296.244 293.314 291.346 290.719 291.183 291.965 292.62 293.17 293.737 293.659 294.303 293.461 292.266 290.791 287.949 283.94 280.358 278.367 277.712 277.913 277.503 277.342 276.189 273.451 270.251 271.293 275.82 277.525 276.734 274.433 272.648 271.212 269.59 267.976 267.38 266.973 266.859 266.613 265.937 264.984 263.246 261.215 260.252 261.491 260.703 260.622 265.346 267.956 268.575 267.821 266.816 265.443 261.855 255.074 250.033 246.014 243.597 241.888 240.769 239.898 239.511 245.315 245.196 245.189 245.146 245.231 244.919 244.513 244.341 244.143 244.316 245.823 249.271 253.644 258.515 263.002 268.779 271.724 272.634 272.527 272.417 272.436 272.56 272.841 273.279 273.88 274.672 275.467 276.095 276.828 277.683 278.44 279.327 280.483 281.746 283.54 285.956 288.396 290.062 290.955 291.642 292.489 293.508 294.63 295.596 296.477 297.306 297.957 298.462 299.154 299.875 300.107 299.841 298.779 298.101 297.863 297.857 297.887 297.944 298.176 299.133 298.518 298.006 298.263 298.339 298.434 299.115 298.467 296.63 293.997 291.545 289.911 289.521 290.084 291.04 293.57 295.319 295.759 294.786 293.128 290.55 287.171 284.669 282.002 279.199 278.03 277.805 277.582 277.311 277.106 276.079 273.37 269.828 270.123 274.698 276.476 275.349 273.187 272.31 271.04 269.271 267.981 267.133 266.635 266.422 266.09 265.298 264.388 262.53 260.434 259.62 260.861 260.75 261.232 264.829 267.298 267.848 267.244 266.403 265.277 262.485 255.291 250.134 246.039 243.334 241.669 240.707 239.897 239.511 245.289 245.139 245.097 244.969 244.942 244.558 244.167 244.085 243.96 244.225 245.627 248.805 252.889 257.493 263.319 268.026 271.44 272.63 272.64 272.495 272.541 272.649 272.852 273.222 273.823 274.617 275.445 276.11 276.844 277.667 278.416 279.358 280.596 281.844 283.529 285.933 288.355 289.913 290.737 291.432 292.323 293.379 294.55 295.607 296.603 297.562 298.379 299.045 299.687 300.189 300.383 300.335 300.057 299.159 298.78 298.731 299.18 299.723 299.977 300.051 299.842 299.52 298.759 298.661 299.553 301.522 300.558 298.055 294.983 292.282 290.669 290.221 291.515 293.635 295.463 295.963 295.189 293.403 290.579 287.345 284.961 282.503 280.664 278.851 278.371 278.798 278.687 278.357 277.571 276.316 273.068 268.54 267.604 272.926 274.824 273.797 272.678 272.118 270.656 268.984 267.644 266.717 266.212 265.909 265.356 264.388 263.479 261.83 259.784 259.034 259.729 260.668 261.834 263.901 266.449 266.976 266.583 265.953 265.087 262.538 256.223 250.116 245.765 243.047 241.621 240.388 239.895 239.51 245.26 245.086 245.001 244.794 244.664 244.207 243.833 243.839 243.822 244.168 245.485 248.375 252.148 256.45 261.929 267.471 271.014 272.546 272.712 272.56 272.624 272.727 272.873 273.212 273.815 274.607 275.452 276.151 276.871 277.663 278.417 279.399 280.711 282.024 283.694 286.13 288.436 289.84 290.611 291.324 292.222 293.262 294.448 295.588 296.681 297.669 298.425 299.033 299.624 300.087 300.359 300.534 300.592 300.424 300.097 299.878 299.934 300.121 300.244 300.257 300.212 300.05 299.782 299.516 300.271 302.613 301.345 298.573 296.381 293.961 292.48 292.989 294.701 295.589 295.645 294.798 293.077 289.797 287.118 285.319 283.1 281.666 280.571 279.389 279.254 279.777 279.658 279.22 278.226 276.135 272.466 266.895 266.047 269.611 272.639 272.815 272.47 271.981 270.217 267.907 266.855 266.142 265.609 265.247 264.477 263.385 262.502 260.966 258.816 258.361 258.557 259.946 261.033 263.092 265.259 265.905 265.823 265.46 264.809 262.672 256.413 250.432 245.421 242.809 241.569 240.094 239.871 239.507 245.228 245.031 244.904 244.619 244.376 243.863 243.53 243.609 243.759 244.177 245.378 247.945 251.477 255.497 260.407 266.837 270.477 272.371 272.741 272.606 272.69 272.794 272.907 273.248 273.858 274.632 275.48 276.202 276.902 277.668 278.433 279.442 280.835 282.285 284.096 286.539 288.578 289.813 290.577 291.337 292.231 293.244 294.433 295.612 296.724 297.55 297.779 297.807 298.279 299.274 299.763 300.183 300.552 300.73 300.636 300.298 300.08 300.093 300.134 300.166 300.222 300.136 299.924 299.966 300.561 302.038 301.055 299.293 297.493 295.199 293.716 294.379 296.034 294.966 293.597 291.412 288.756 286.763 285.223 283.917 282.72 281.852 280.98 280.12 280.66 280.73 280.536 279.715 277.919 274.896 271.113 266.517 265.064 267.728 271.377 272.467 272.518 272.017 269.929 267.259 266.171 265.396 264.818 264.489 263.568 262.277 261.452 259.974 257.923 257.306 257.166 258.123 259.97 262.26 263.894 264.68 264.938 264.847 264.46 262.675 256.566 250.254 245.378 242.681 241.425 240.027 239.639 239.504 245.203 244.979 244.812 244.45 244.102 243.544 243.231 243.423 243.755 244.282 245.389 247.551 250.68 254.558 259.295 265.264 269.669 272.052 272.706 272.624 272.73 272.851 272.971 273.347 273.958 274.7 275.531 276.26 276.937 277.682 278.447 279.457 280.962 282.693 284.818 287.109 288.748 289.796 290.59 291.392 292.231 293.234 294.464 295.678 296.724 297.214 296.478 296.145 296.223 296.864 297.809 298.459 299.345 300.359 300.656 300.4 300.016 299.901 299.96 300.042 300.045 299.818 299.49 299.434 299.849 300.596 300.776 299.829 298.375 295.75 294.045 294.664 295.341 294.088 290.341 287.862 286.074 284.982 284.89 284.069 283.172 281.901 281.484 281.33 281.2 281.431 281.071 279.177 276.632 273.127 269.555 266.973 265.917 268.098 271.404 272.847 273.187 272.042 269.49 266.499 265.413 264.586 263.968 263.639 262.811 261.477 260.5 259.027 257.149 256.152 255.702 256.371 259.072 261.324 262.141 263.159 263.868 264.118 264.04 262.524 257.211 250.027 245.125 242.336 241.264 240.012 239.387 239.487 245.187 244.922 244.719 244.277 243.834 243.245 242.978 243.265 243.79 244.45 245.48 247.241 249.916 253.611 258.062 264.333 268.751 271.631 272.609 272.607 272.734 272.906 273.065 273.47 274.061 274.758 275.562 276.29 276.957 277.698 278.444 279.428 281.061 283.116 285.507 287.58 288.898 289.801 290.591 291.358 292.129 293.133 294.435 295.708 296.732 297.146 296.377 295.755 295.641 295.938 297.002 297.815 298.322 299.945 300.423 300.273 299.994 299.893 299.912 299.964 299.971 299.73 299.355 299.137 299.289 299.581 299.976 300.042 298.473 295.799 293.782 294.053 294.756 293.817 289.734 287.406 285.631 285.423 285.315 284.653 283.981 283.045 282.336 281.982 282.65 280.992 280.487 277.849 274.329 270.536 269.079 268.878 269.307 271.021 272.797 275.025 274.371 272.157 269.054 266.125 264.739 263.987 263.441 263.159 262.104 260.781 259.651 258.22 256.434 255.139 254.465 255.852 258.648 260.249 260.4 261.117 262.519 263.179 263.473 262.357 257.278 250.241 244.795 242.094 241.105 239.995 239.334 239.391 245.15 244.876 244.622 244.107 243.569 242.949 242.752 243.141 243.879 244.695 245.605 247.074 249.181 252.733 256.904 263.634 267.999 271.1 272.479 272.58 272.731 272.961 273.171 273.587 274.14 274.788 275.561 276.284 276.955 277.71 278.445 279.414 281.152 283.45 285.994 287.892 289.015 289.829 290.593 291.338 292.134 293.179 294.489 295.747 296.767 297.295 297.18 296.885 296.264 296.018 296.659 298.324 298.948 299.541 300.041 300.12 299.995 299.947 299.868 299.847 299.938 299.839 299.494 299.151 299.061 299.188 299.357 299.434 298.595 296.165 294.085 293.723 294.656 294.122 290.538 287.791 286.329 286.554 286.681 285.911 285.111 284.195 283.82 283.568 283.837 282.051 279.2 275.625 271.69 269.715 270.182 271.961 273.264 274.054 275.848 276.713 275.898 272.924 268.724 265.908 264.171 263.467 262.688 262.22 261.513 260.18 259.065 257.555 255.798 254.252 253.567 254.771 257.675 259.019 258.715 258.945 260.828 261.956 262.791 262.074 257.165 249.919 244.904 241.931 241.021 239.948 239.329 239.343 245.134 244.826 244.533 243.938 243.298 242.715 242.529 243.053 244.044 245.001 245.853 246.849 248.662 251.88 255.95 261.549 267.454 270.458 272.333 272.55 272.739 273.02 273.279 273.688 274.196 274.801 275.542 276.252 276.936 277.719 278.459 279.427 281.217 283.665 286.278 288.066 289.088 289.857 290.592 291.379 292.314 293.438 294.688 295.824 296.799 297.467 297.732 297.703 297.512 297.434 297.505 298.18 299.287 299.702 299.717 299.796 299.924 299.944 299.803 299.708 299.849 299.885 299.63 299.294 299.075 299.057 299.076 298.938 298.345 296.963 295.04 294.257 294.969 294.661 292.311 288.984 287.934 287.48 287.528 286.869 286.117 286.139 285.809 286.687 285.983 281.321 277.352 273.139 269.567 270.206 273.759 277.241 277.417 277.857 278.206 277.755 276.475 273.807 268.882 265.64 263.791 262.821 262.126 261.691 260.794 259.651 258.511 257.005 255.228 253.601 252.718 253.408 256.625 257.883 257.191 257.243 258.837 260.463 261.97 261.725 257.258 249.545 245.009 241.879 240.918 239.861 239.326 239.344 245.115 244.775 244.442 243.781 243.057 242.476 242.35 243.01 244.248 245.334 246.172 246.838 248.29 251.153 255.087 260.074 266.52 269.684 272.175 272.532 272.762 273.085 273.377 273.759 274.235 274.813 275.524 276.209 276.902 277.713 278.475 279.448 281.213 283.712 286.364 288.111 289.113 289.869 290.583 291.476 292.621 293.807 294.96 295.935 296.825 297.551 298.024 298.334 298.474 298.507 298.607 298.756 298.978 299.297 299.57 299.695 299.803 299.903 299.801 299.659 299.723 299.807 299.724 299.57 299.389 299.245 299.168 298.995 298.547 297.678 296.649 295.684 295.814 295.485 294.053 290.419 289.105 288.142 288.196 287.932 287.549 287.461 288.578 288.331 285.585 279.456 275.261 271.795 269.487 272.085 277.184 280.03 280.986 280.09 278.789 277.629 276.678 274.238 269.13 265.638 263.419 262.309 261.402 261.008 260.322 259.043 257.981 256.541 254.731 253.304 252.071 252.558 255.368 256.803 255.739 255.867 257.031 258.728 260.855 261.262 257.004 249.875 244.859 241.605 240.727 239.781 239.323 239.345 245.094 244.724 244.354 243.627 242.841 242.226 242.152 243.012 244.464 245.702 246.626 247.065 248.072 250.623 254.501 259.34 265.202 269.061 272.065 272.526 272.786 273.131 273.435 273.788 274.256 274.841 275.528 276.184 276.872 277.683 278.444 279.43 281.15 283.627 286.331 288.111 289.13 289.906 290.655 291.624 292.812 293.981 295.071 296.001 296.832 297.509 298.022 298.486 298.878 299.171 299.388 299.465 299.466 299.577 299.714 299.744 299.811 299.926 299.881 299.72 299.672 299.748 299.793 299.738 299.588 299.44 299.359 299.252 298.966 298.409 297.559 296.877 296.571 296.058 294.85 292.586 290.077 288.906 288.904 288.905 288.81 289.379 290.006 287.867 282.467 276.748 273.44 271.549 271.519 274.261 279.084 281.547 281.775 280.156 277.729 276.375 276.353 274.07 269.763 265.484 263.499 262.07 260.837 260.289 259.57 258.594 257.626 255.977 254.386 253.103 251.604 251.831 254.295 256.003 254.65 253.566 255.391 257.018 259.616 260.714 256.572 249.924 244.795 241.361 240.521 239.727 239.32 239.346 245.077 244.687 244.267 243.491 242.639 241.983 241.995 243.061 244.6 246.13 247.165 247.479 248.146 250.257 254.137 259.063 264.919 268.815 272.018 272.528 272.804 273.15 273.456 273.793 274.268 274.867 275.541 276.178 276.855 277.639 278.387 279.405 281.116 283.542 286.276 288.104 289.144 289.967 290.805 291.825 292.958 294.051 295.105 296.024 296.801 297.405 297.929 298.488 298.968 299.353 299.687 299.879 299.883 299.853 299.841 299.811 299.857 299.962 299.949 299.783 299.649 299.668 299.736 299.686 299.557 299.487 299.478 299.414 299.229 298.912 298.35 297.667 296.997 296.4 295.471 294.055 291.151 289.773 289.983 289.3 289.421 290.448 290.153 285.475 278.847 274.799 272.89 272.413 272.73 274.82 278.911 280.834 280.548 279.054 275.526 274.739 275.198 273.463 269.402 265.084 263.346 261.839 260.572 259.446 258.842 258.22 257.137 255.519 254.287 252.762 251.222 251.494 253.442 255.226 253.742 251.297 253.656 255.461 258.344 260.051 256.225 249.647 244.821 241.25 240.338 239.692 239.317 239.348 245.056 244.626 244.189 243.345 242.44 241.778 241.9 243.089 244.812 246.689 247.825 248.139 248.303 250.159 253.983 259.016 264.983 268.793 272.043 272.539 272.805 273.138 273.449 273.79 274.279 274.884 275.549 276.181 276.844 277.594 278.352 279.449 281.158 283.511 286.212 288.074 289.137 290.019 290.965 292.025 293.069 294.077 295.116 296.031 296.766 297.327 297.882 298.482 298.943 299.29 299.625 299.868 299.935 299.904 299.867 299.855 299.914 300.009 300.028 299.877 299.688 299.623 299.658 299.611 299.542 299.54 299.552 299.504 299.381 299.165 298.771 298.141 297.408 296.746 295.933 294.729 292.452 291.329 290.106 289.818 289.37 290.277 289.611 283.485 277.512 274.555 273.575 273.578 273.565 274.142 276.862 278.596 278.022 276.605 274.202 272.956 273.457 272.102 268.122 264.685 262.972 261.6 260.29 259.129 258.396 257.624 256.549 255.138 254.153 252.302 250.979 251.205 252.595 254.467 252.553 250.534 250.516 253.909 257.118 259.312 255.607 249.747 244.425 241.191 240.208 239.673 239.316 239.349 245.054 244.6 244.11 243.215 242.256 241.598 241.885 243.214 245.087 247.213 248.585 248.989 248.956 250.36 254.005 259.225 265.165 268.998 272.153 272.566 272.795 273.105 273.417 273.785 274.292 274.891 275.54 276.18 276.833 277.572 278.402 279.629 281.324 283.55 286.132 288.011 289.116 290.055 291.058 292.116 293.087 294.048 295.093 296.036 296.781 297.387 298.01 298.574 298.961 299.237 299.46 299.589 299.679 299.762 299.83 299.88 299.974 300.068 300.136 300.032 299.825 299.71 299.705 299.682 299.676 299.695 299.654 299.593 299.512 299.276 298.892 298.339 297.671 297.014 296.278 295.324 294.413 292.556 291.113 290.056 290.138 290.799 289.341 283.261 277.809 275.464 274.73 274.305 273.679 273.145 274.293 275.725 275.76 274.806 273.199 271.948 271.464 269.911 267.0 264.164 262.69 261.727 260.26 258.867 258.074 257.184 256.057 254.716 253.558 252.02 250.679 250.867 251.876 253.641 252.684 251.458 248.532 251.404 256.106 258.598 255.068 249.474 244.034 241.025 240.12 239.637 239.309 239.349 245.039 244.568 244.034 243.086 242.089 241.448 241.865 243.329 245.389 247.855 249.497 249.967 249.851 250.899 254.366 259.727 264.554 269.45 272.307 272.6 272.788 273.08 273.392 273.786 274.308 274.897 275.523 276.159 276.806 277.562 278.504 279.85 281.544 283.652 286.076 287.958 289.135 290.114 291.082 292.072 293.027 294.022 295.102 296.061 296.84 297.499 298.126 298.619 298.955 299.23 299.415 299.48 299.588 299.734 299.801 299.845 299.961 300.08 300.163 300.09 299.91 299.82 299.78 299.715 299.725 299.801 299.804 299.771 299.686 299.374 298.908 298.347 297.706 297.1 296.475 295.649 294.848 293.997 292.565 291.059 290.653 291.332 288.758 282.717 278.359 276.399 275.538 274.486 273.208 272.711 273.656 274.665 274.924 274.063 272.71 271.514 270.473 268.616 266.075 263.738 262.57 261.813 260.318 258.811 257.821 256.97 255.615 254.479 253.124 251.701 250.544 250.351 251.125 252.994 252.237 251.496 248.919 249.518 255.27 257.743 254.617 248.861 243.996 240.912 239.994 239.596 239.305 239.348 245.024 244.516 243.963 242.969 241.936 241.293 241.823 243.469 245.748 248.534 250.383 250.95 251.044 251.788 254.977 260.516 265.698 270.155 272.465 272.642 272.795 273.076 273.388 273.795 274.327 274.905 275.502 276.117 276.751 277.521 278.566 280.008 281.731 283.733 286.026 287.914 289.167 290.189 291.119 292.052 293.022 294.058 295.148 296.102 296.894 297.558 298.16 298.594 298.892 299.156 299.306 299.366 299.53 299.711 299.752 299.786 299.931 300.087 300.186 300.138 299.986 299.912 299.867 299.771 299.784 299.912 299.959 299.937 299.831 299.492 298.987 298.39 297.72 297.167 296.663 295.905 295.08 294.456 293.684 291.755 291.996 291.419 286.976 282.188 279.069 276.871 276.016 274.7 273.248 273.028 273.912 274.789 274.706 273.717 272.588 271.344 269.961 267.984 265.7 263.603 262.417 261.458 260.244 258.677 257.776 256.691 255.169 254.11 252.629 251.108 250.102 250.022 250.327 252.155 252.738 251.373 248.947 247.3 254.215 256.938 254.038 248.472 244.006 240.854 239.879 239.559 239.306 239.347 245.008 244.476 243.89 242.865 241.784 241.157 241.781 243.597 246.163 249.21 251.228 252.165 252.301 253.01 255.918 262.388 266.831 270.822 272.606 272.694 272.827 273.096 273.406 273.815 274.342 274.9 275.462 276.039 276.652 277.438 278.554 280.077 281.848 283.783 285.987 287.875 289.185 290.256 291.174 292.084 293.065 294.099 295.158 296.118 296.937 297.593 298.153 298.552 298.835 299.057 299.162 299.214 299.423 299.656 299.714 299.765 299.924 300.096 300.244 300.259 300.119 300.027 299.996 299.909 299.898 300.02 300.09 300.073 299.956 299.628 299.118 298.483 297.777 297.261 296.847 296.135 295.279 294.64 294.05 293.415 292.868 291.255 285.81 281.717 279.062 277.655 276.415 274.815 273.384 273.318 274.718 275.231 274.628 273.399 272.204 271.084 269.621 267.463 265.694 264.016 262.468 261.364 259.972 258.726 257.615 256.439 254.843 253.477 251.788 250.449 249.484 249.626 249.57 250.721 252.493 251.252 248.966 246.585 252.738 256.208 253.474 248.032 243.846 240.901 239.776 239.535 239.315 239.346 244.998 244.457 243.843 242.779 241.645 241.033 241.752 243.704 246.566 249.734 251.925 253.315 253.677 254.455 257.209 263.667 268.204 271.434 272.709 272.744 272.887 273.143 273.444 273.843 274.34 274.852 275.36 275.884 276.474 277.298 278.428 280.024 281.879 283.823 285.992 287.877 289.205 290.299 291.222 292.136 293.097 294.057 295.069 296.078 296.977 297.637 298.126 298.488 298.758 298.954 299.042 299.093 299.279 299.541 299.68 299.762 299.881 300.052 300.313 300.474 300.355 300.191 300.129 300.041 299.985 300.056 300.194 300.233 300.113 299.765 299.224 298.577 297.902 297.412 297.03 296.425 295.659 294.994 294.394 293.936 293.363 291.466 285.878 281.545 279.28 278.228 276.634 274.512 272.79 272.917 274.495 275.306 274.457 273.122 271.894 270.591 269.186 267.167 265.865 264.217 262.343 260.991 259.513 258.301 257.353 256.153 254.387 252.682 251.063 249.777 249.291 249.022 248.922 250.086 252.034 251.03 248.848 246.581 252.859 255.383 252.86 247.864 243.686 240.76 239.718 239.525 239.325 239.344 245.007 244.418 243.759 242.694 241.544 240.921 241.698 243.772 246.933 250.176 252.628 254.213 254.956 256.013 258.693 264.609 269.079 271.736 272.726 272.766 272.932 273.174 273.478 273.857 274.312 274.767 275.202 275.662 276.243 277.089 278.229 279.853 281.854 283.889 286.085 287.961 289.266 290.322 291.227 292.135 293.064 293.979 294.967 296.021 296.963 297.613 298.049 298.377 298.611 298.782 298.895 298.977 299.138 299.389 299.604 299.733 299.822 299.981 300.281 300.507 300.459 300.31 300.209 300.082 300.004 300.089 300.277 300.331 300.188 299.835 299.318 298.733 298.154 297.694 297.301 296.784 296.128 295.411 294.723 294.281 293.732 291.763 286.256 281.734 279.513 277.824 276.142 273.155 271.324 272.144 274.284 275.072 274.428 272.896 271.553 270.481 268.845 266.892 265.625 264.315 262.299 260.718 258.918 257.592 257.065 256.037 254.042 251.986 250.461 249.211 248.932 248.188 248.146 249.705 251.432 250.761 248.561 246.611 252.266 254.45 252.112 247.652 243.732 240.592 239.673 239.525 239.332 239.343 244.981 244.387 243.709 242.619 241.434 240.808 241.632 243.848 247.147 250.556 253.239 255.1 256.115 257.502 260.262 265.499 269.658 271.856 272.687 272.761 272.934 273.169 273.486 273.862 274.279 274.674 275.029 275.426 276.009 276.884 278.021 279.662 281.831 283.994 286.225 288.065 289.314 290.314 291.209 292.102 292.998 293.905 294.91 295.985 296.916 297.537 297.948 298.27 298.496 298.633 298.748 298.873 299.046 299.3 299.57 299.743 299.851 299.99 300.21 300.372 300.38 300.321 300.239 300.113 300.047 300.147 300.304 300.318 300.174 299.899 299.491 298.982 298.467 298.056 297.693 297.239 296.626 295.84 295.07 294.565 293.917 291.95 286.663 282.265 279.71 277.323 274.423 271.218 269.329 271.03 273.267 274.249 273.716 272.765 271.706 270.42 268.728 266.563 265.244 264.249 262.395 260.579 258.557 257.373 256.965 255.82 253.556 251.427 249.674 248.51 248.016 247.633 247.206 248.438 250.662 250.672 248.506 246.762 251.007 253.532 251.349 247.607 243.626 240.511 239.618 239.529 239.333 239.341 244.955 244.364 243.664 242.556 241.356 240.727 241.564 243.87 247.302 250.822 253.715 255.929 257.14 258.953 261.887 266.501 270.157 271.894 272.599 272.725 272.881 273.117 273.461 273.851 274.246 274.586 274.862 275.22 275.826 276.75 277.876 279.511 281.831 284.131 286.384 288.146 289.315 290.275 291.172 292.05 292.915 293.827 294.878 295.97 296.86 297.426 297.809 298.154 298.425 298.561 298.669 298.814 299.015 299.279 299.566 299.76 299.899 300.024 300.123 300.177 300.212 300.258 300.231 300.127 300.078 300.165 300.272 300.26 300.136 299.943 299.641 299.21 298.758 298.433 298.156 297.756 297.138 296.313 295.524 294.887 293.945 291.873 286.898 282.912 280.119 277.074 273.822 269.432 267.059 268.965 271.338 272.597 272.532 272.219 271.766 270.46 268.677 266.352 264.851 263.957 262.527 260.621 258.525 257.049 256.597 255.258 252.992 250.779 249.109 247.838 247.22 246.75 246.176 247.677 249.666 250.342 248.77 247.063 249.711 252.655 250.704 247.525 243.343 240.478 239.587 239.552 239.34 239.333 244.937 244.333 243.627 242.499 241.291 240.652 241.483 243.852 247.368 250.935 254.1 256.515 258.04 260.061 263.477 267.65 270.69 271.908 272.464 272.638 272.756 273.0 273.386 273.811 274.196 274.487 274.703 275.06 275.739 276.734 277.839 279.435 281.865 284.301 286.565 288.207 289.28 290.229 291.134 292.005 292.849 293.782 294.907 295.997 296.806 297.274 297.6 297.971 298.305 298.501 298.617 298.755 298.964 299.236 299.512 299.707 299.848 299.957 300.001 300.009 300.09 300.213 300.246 300.135 300.044 300.099 300.214 300.221 300.072 299.859 299.632 299.37 299.101 298.919 298.742 298.395 297.806 297.038 296.239 295.285 293.54 290.093 286.428 283.339 280.698 278.002 274.191 269.331 264.756 265.542 268.357 270.063 270.8 271.283 271.352 270.097 268.326 266.184 264.539 263.601 262.484 260.82 258.551 256.769 256.147 254.74 252.481 250.139 248.429 247.348 246.632 246.004 245.209 245.639 246.924 249.466 248.784 247.209 248.784 251.873 250.09 247.332 243.036 240.362 239.572 239.56 239.375 239.336 244.931 244.294 243.57 242.465 241.239 240.59 241.371 243.762 247.361 250.938 254.203 256.625 258.668 261.227 264.877 268.642 271.172 271.93 272.339 272.534 272.607 272.845 273.28 273.74 274.127 274.39 274.589 274.978 275.747 276.815 277.892 279.454 281.942 284.46 286.716 288.249 289.268 290.222 291.13 292.021 292.917 293.914 295.051 296.038 296.699 297.092 297.433 297.826 298.181 298.404 298.516 298.636 298.865 299.177 299.482 299.68 299.784 299.845 299.868 299.907 300.045 300.235 300.301 300.153 300.031 300.076 300.183 300.166 299.999 299.785 299.616 299.523 299.463 299.405 299.291 299.014 298.506 297.754 296.776 295.115 292.631 288.813 286.113 283.903 282.341 279.643 275.925 270.984 264.283 262.439 263.396 265.047 266.766 269.088 270.316 269.55 267.713 265.977 264.337 263.326 262.452 261.179 258.715 256.593 255.561 254.043 252.05 249.615 247.754 246.462 245.743 245.069 244.28 243.933 244.711 247.549 248.589 246.991 249.41 251.011 249.42 246.987 242.907 240.075 239.585 239.567 239.395 239.35 244.957 244.278 243.506 242.43 241.196 240.542 241.257 243.62 247.233 250.802 254.094 256.551 259.056 262.17 266.014 269.001 271.636 271.96 272.249 272.444 272.476 272.682 273.155 273.65 274.043 274.298 274.507 274.942 275.797 276.935 277.982 279.547 282.075 284.606 286.806 288.241 289.237 290.203 291.12 292.055 293.049 294.107 295.191 296.016 296.525 296.889 297.305 297.753 298.111 298.331 298.43 298.545 298.8 299.154 299.485 299.684 299.768 299.801 299.831 299.89 300.029 300.239 300.321 300.173 300.055 300.107 300.17 300.118 300.005 299.822 299.597 299.513 299.609 299.748 299.801 299.646 299.205 298.391 297.057 294.541 291.618 288.798 286.538 284.917 283.392 281.594 278.775 273.99 266.161 260.432 259.438 260.966 263.091 266.116 268.648 269.116 267.417 265.483 263.894 263.024 262.379 261.28 259.08 256.61 254.895 253.313 251.467 249.195 247.236 246.024 244.949 244.265 243.262 242.728 243.09 244.736 248.197 247.068 249.122 250.16 248.661 246.489 242.703 239.881 239.602 239.576 239.401 239.363 244.918 244.306 243.514 242.404 241.163 240.491 241.122 243.415 247.015 250.517 253.708 256.346 259.152 262.584 266.128 269.94 272.054 272.014 272.202 272.397 272.398 272.527 272.998 273.535 273.953 274.224 274.463 274.962 275.914 277.093 278.115 279.739 282.286 284.749 286.831 288.167 289.156 290.14 291.076 292.063 293.156 294.24 295.232 295.923 296.334 296.697 297.19 297.681 298.039 298.252 298.352 298.47 298.749 299.12 299.443 299.646 299.75 299.823 299.912 299.992 300.084 300.246 300.319 300.184 300.092 300.15 300.169 300.115 300.082 299.89 299.536 299.406 299.648 300.039 300.31 300.236 299.764 298.828 297.192 294.387 291.745 289.629 286.813 285.111 283.737 282.329 280.643 277.079 268.57 258.084 255.086 256.41 259.251 263.506 267.252 268.891 267.503 264.952 263.476 262.717 262.351 261.257 259.437 256.454 254.101 252.588 250.849 248.629 246.835 245.7 244.524 243.394 242.315 241.625 241.498 244.007 248.157 247.612 248.418 249.178 247.854 245.931 242.475 239.804 239.609 239.589 239.401 239.375 244.913 244.285 243.471 242.382 241.173 240.458 240.984 243.165 246.716 250.154 253.245 255.853 258.789 262.573 265.094 270.696 272.333 272.113 272.201 272.44 272.439 272.473 272.831 273.379 273.855 274.18 274.49 275.098 276.167 277.312 278.39 280.153 282.609 284.887 286.791 288.044 289.033 290.022 290.962 291.984 293.153 294.214 295.11 295.759 296.195 296.579 297.086 297.547 297.881 298.097 298.224 298.365 298.666 299.047 299.366 299.587 299.727 299.849 300.02 300.153 300.185 300.255 300.303 300.191 300.125 300.172 300.164 300.158 300.209 300.05 299.745 299.709 300.029 300.457 300.527 300.319 299.785 298.529 296.688 294.512 291.727 289.702 287.219 284.706 283.677 282.825 281.96 277.921 268.067 255.295 251.731 253.412 256.533 260.941 265.862 268.353 267.8 264.753 263.201 262.564 262.372 261.492 259.578 256.148 253.39 251.889 250.067 247.897 246.265 245.121 243.76 242.274 241.491 240.636 240.266 242.571 247.882 247.992 247.701 248.063 247.055 245.448 242.228 239.907 239.622 239.606 239.402 239.382 244.974 244.242 243.438 242.367 241.198 240.436 240.86 242.899 246.333 249.653 252.586 255.246 258.036 262.108 265.046 270.688 272.379 272.21 272.244 272.513 272.556 272.55 272.743 273.225 273.759 274.14 274.54 275.32 276.514 277.631 278.812 280.659 282.922 284.96 286.727 287.973 288.968 289.928 290.809 291.805 292.996 294.049 294.913 295.588 296.091 296.524 297.031 297.466 297.755 297.94 298.088 298.285 298.632 299.048 299.385 299.612 299.728 299.799 299.957 300.135 300.167 300.198 300.24 300.201 300.194 300.222 300.179 300.194 300.334 300.367 300.298 300.231 299.875 299.694 299.179 298.747 299.191 298.575 296.933 294.307 291.863 289.363 287.046 284.466 284.003 282.921 280.879 275.885 263.006 252.695 250.813 253.948 257.046 259.621 264.274 267.58 267.545 264.842 262.993 262.495 262.46 261.586 259.599 255.751 252.929 251.038 249.326 247.133 245.405 244.449 242.936 241.329 240.742 239.731 239.228 241.264 247.453 248.172 247.139 247.178 246.48 245.039 242.183 239.908 239.639 239.626 239.41 239.386 244.917 244.262 243.431 242.367 241.241 240.43 240.739 242.616 245.903 248.993 251.783 254.378 257.071 261.108 265.302 270.189 272.241 272.267 272.303 272.582 272.661 272.634 272.713 273.092 273.641 274.069 274.549 275.544 276.87 278.004 279.253 281.09 283.144 284.968 286.647 287.916 288.906 289.824 290.642 291.598 292.776 293.846 294.727 295.423 295.969 296.446 296.963 297.393 297.636 297.781 297.962 298.226 298.622 299.046 299.367 299.59 299.711 299.765 299.903 300.11 300.147 300.11 300.132 300.205 300.301 300.312 300.215 300.206 300.354 300.425 300.308 299.357 297.976 297.673 298.541 298.74 298.643 298.132 296.634 294.1 291.687 289.483 287.233 286.047 284.373 282.232 277.699 269.897 255.87 251.783 253.628 258.504 260.199 259.449 262.971 266.467 266.984 264.843 262.948 262.379 262.395 261.623 259.344 255.505 252.247 249.887 248.287 246.228 244.493 243.642 242.329 240.796 240.188 239.106 238.45 241.174 247.006 248.146 247.124 246.79 246.112 244.721 242.161 239.836 239.658 239.638 239.422 239.389 244.87 244.259 243.416 242.383 241.286 240.456 240.617 242.325 245.391 248.285 250.915 253.309 255.863 259.777 265.648 269.454 271.844 272.24 272.354 272.619 272.729 272.694 272.718 273.006 273.526 273.99 274.548 275.732 277.202 278.385 279.649 281.405 283.273 284.938 286.561 287.833 288.797 289.678 290.475 291.397 292.544 293.641 294.557 295.279 295.855 296.35 296.851 297.258 297.459 297.593 297.828 298.164 298.591 299.007 299.308 299.535 299.703 299.791 299.928 300.142 300.159 300.026 300.006 300.187 300.367 300.35 300.22 300.196 300.253 300.102 299.421 298.065 297.305 297.363 297.812 298.089 298.04 297.918 296.504 293.971 291.704 289.714 287.699 286.882 285.114 280.819 272.549 257.277 251.498 251.88 258.186 262.744 262.2 260.682 262.02 265.226 266.59 264.935 262.969 262.219 262.318 261.561 259.101 255.251 251.654 249.125 247.374 245.399 243.696 242.963 241.814 240.498 239.843 238.524 237.839 240.85 246.474 247.931 247.24 246.63 245.783 244.41 242.099 239.8 239.687 239.634 239.438 239.393 244.928 244.246 243.452 242.418 241.365 240.49 240.494 242.014 244.864 247.513 249.899 252.135 254.473 258.211 263.493 268.549 271.125 272.023 272.357 272.603 272.745 272.731 272.742 272.983 273.451 273.944 274.596 275.957 277.547 278.77 279.988 281.606 283.335 284.913 286.476 287.703 288.615 289.491 290.336 291.259 292.35 293.441 294.381 295.133 295.742 296.246 296.697 297.061 297.251 297.411 297.699 298.083 298.529 298.964 299.296 299.564 299.778 299.858 299.944 300.122 300.13 299.934 299.9 300.158 300.339 300.255 300.138 300.161 300.096 299.617 299.0 297.956 296.83 296.523 296.906 297.265 297.807 297.806 296.663 294.142 291.704 289.959 289.032 287.768 284.329 277.069 260.477 250.244 248.388 254.724 261.906 265.507 264.525 261.764 261.479 263.998 265.533 264.883 263.011 262.275 262.346 261.55 259.119 255.418 251.371 248.661 246.611 244.605 243.134 242.429 241.143 240.137 239.267 238.108 237.491 240.181 245.742 247.474 247.08 246.345 245.358 244.088 242.049 239.894 239.734 239.609 239.458 239.397 244.949 244.298 243.463 242.456 241.442 240.529 240.406 241.723 244.345 246.74 248.809 250.777 253.003 256.584 261.794 268.004 270.548 271.695 272.283 272.523 272.695 272.734 272.778 273.021 273.459 273.981 274.738 276.249 277.882 279.128 280.259 281.722 283.371 284.911 286.404 287.569 288.454 289.328 290.236 291.218 292.299 293.337 294.23 294.963 295.578 296.096 296.546 296.919 297.136 297.311 297.609 298.004 298.462 298.932 299.306 299.621 299.861 299.898 299.902 300.039 300.091 299.943 299.952 300.217 300.332 300.16 300.021 300.024 299.896 299.294 298.576 297.906 297.038 296.801 296.845 297.285 297.596 297.52 296.1 293.84 291.737 290.462 290.071 288.341 282.462 272.036 253.573 246.317 247.153 256.387 264.811 267.555 265.348 262.36 260.794 262.97 264.556 264.647 263.033 262.209 262.402 261.59 259.377 255.734 251.545 248.43 246.082 244.22 242.63 241.755 240.733 239.701 238.842 237.821 237.382 240.427 244.813 246.929 246.864 245.958 244.913 243.855 241.991 240.142 239.792 239.575 239.493 239.401 244.945 244.314 243.497 242.51 241.488 240.59 240.344 241.444 243.79 245.95 247.69 249.346 251.529 255.13 260.165 266.89 270.324 271.501 272.141 272.402 272.599 272.705 272.817 273.088 273.527 274.077 274.954 276.576 278.205 279.489 280.553 281.86 283.412 284.897 286.311 287.427 288.313 289.203 290.15 291.18 292.286 293.282 294.119 294.807 295.402 295.909 296.361 296.747 296.986 297.178 297.513 297.941 298.422 298.899 299.275 299.636 299.932 299.969 299.93 300.048 300.156 300.081 300.106 300.31 300.341 300.116 299.914 299.807 299.451 298.911 298.55 298.032 297.514 297.207 297.192 296.89 296.974 296.577 295.36 293.851 291.805 291.384 290.943 287.997 279.022 267.246 249.732 244.757 247.996 256.185 265.22 268.079 266.03 263.264 260.266 262.061 264.251 264.001 262.602 261.659 261.86 261.446 259.55 256.13 251.837 248.699 245.964 244.242 242.59 241.698 240.594 239.626 238.604 237.77 237.394 239.195 242.844 246.374 246.708 245.803 244.586 243.675 242.037 240.385 239.816 239.544 239.533 239.403 244.939 244.295 243.566 242.577 241.597 240.693 240.33 241.196 243.103 245.176 246.593 247.972 250.115 253.642 258.718 265.206 269.81 271.334 271.997 272.25 272.476 272.658 272.851 273.176 273.639 274.216 275.22 276.893 278.494 279.828 280.88 282.05 283.469 284.868 286.191 287.27 288.188 289.12 290.09 291.139 292.248 293.22 294.024 294.68 295.248 295.72 296.147 296.519 296.776 297.025 297.432 297.909 298.41 298.882 299.265 299.674 300.008 300.057 300.003 300.116 300.287 300.292 300.291 300.367 300.308 300.088 299.855 299.639 299.417 299.098 298.63 298.073 297.631 297.293 297.057 296.983 296.77 296.334 295.589 294.092 292.599 292.051 291.296 286.289 275.212 256.735 247.242 245.19 248.687 254.479 264.148 268.01 267.029 263.499 260.278 261.883 263.403 263.399 261.567 260.969 261.495 261.178 259.935 256.913 252.608 249.055 246.143 244.233 242.527 241.583 240.822 239.768 238.578 237.925 237.616 238.097 241.725 245.737 246.521 245.756 244.37 243.521 242.046 240.542 239.828 239.523 239.572 239.406 244.958 244.322 243.569 242.655 241.697 240.798 240.345 240.981 242.606 244.474 245.578 246.64 248.797 252.355 257.512 263.814 269.273 271.257 271.944 272.105 272.337 272.607 272.893 273.309 273.81 274.413 275.514 277.171 278.729 280.131 281.236 282.314 283.575 284.851 286.058 287.107 288.084 289.099 290.076 291.093 292.14 293.074 293.867 294.51 295.051 295.491 295.891 296.254 296.561 296.915 297.395 297.89 298.381 298.851 299.293 299.748 300.055 300.083 300.049 300.18 300.375 300.441 300.423 300.35 300.205 300.044 299.855 299.621 299.422 299.162 298.726 298.17 297.702 297.296 296.909 296.801 297.103 296.475 295.434 294.483 293.55 292.999 290.975 283.859 271.791 253.554 246.389 245.904 248.178 252.594 260.909 267.376 267.422 264.184 260.752 262.079 263.03 262.431 260.06 259.391 260.327 260.91 260.12 257.619 253.675 249.525 246.213 244.24 242.715 241.582 241.059 239.885 238.642 238.133 237.439 237.591 241.354 244.89 246.235 245.587 244.228 243.376 241.975 240.653 239.84 239.527 239.6 239.408 244.949 244.38 243.684 242.732 241.8 240.923 240.391 240.835 242.238 243.819 244.69 245.605 247.689 251.193 256.5 262.902 268.946 271.232 272.035 272.068 272.267 272.589 272.946 273.46 273.999 274.602 275.725 277.338 278.868 280.313 281.491 282.552 283.706 284.872 285.989 287.017 288.023 289.072 290.031 290.993 291.985 292.909 293.706 294.305 294.783 295.204 295.631 296.043 296.42 296.846 297.349 297.836 298.317 298.77 299.24 299.721 300.012 300.046 300.057 300.179 300.303 300.369 300.386 300.273 300.094 299.986 299.831 299.604 299.387 299.092 298.626 298.021 297.413 296.959 296.734 296.757 297.051 297.317 295.813 294.986 294.805 293.785 290.446 281.716 269.119 252.448 247.174 246.967 247.398 250.393 258.387 265.766 267.109 264.22 261.44 261.961 262.137 260.634 258.025 257.297 259.026 260.129 260.192 258.105 254.374 250.15 246.722 244.587 243.017 241.787 240.918 240.101 238.991 238.476 237.486 237.015 239.225 243.179 245.804 245.232 244.12 243.261 241.887 240.795 239.857 239.56 239.618 239.409 244.963 244.375 243.732 242.812 241.924 241.059 240.427 240.764 241.853 243.05 243.878 244.694 246.739 250.21 255.618 262.109 268.559 271.196 272.185 272.12 272.284 272.621 273.014 273.601 274.175 274.765 275.873 277.451 278.969 280.425 281.638 282.704 283.788 284.873 285.947 286.976 287.985 289.004 289.921 290.854 291.853 292.803 293.606 294.144 294.549 294.948 295.398 295.862 296.294 296.763 297.292 297.814 298.3 298.71 299.166 299.668 299.992 300.059 300.097 300.171 300.201 300.252 300.31 300.208 300.047 299.972 299.824 299.582 299.322 298.966 298.474 297.821 297.084 296.616 296.594 296.772 297.012 297.294 296.992 295.682 295.378 294.439 289.75 279.945 267.351 255.74 249.04 247.935 246.916 248.502 255.557 263.947 266.434 264.881 262.193 261.494 261.413 258.718 255.806 255.305 257.708 260.05 260.096 258.589 254.733 250.65 247.061 244.818 242.992 241.945 240.872 240.1 239.176 238.765 237.574 236.418 237.153 241.778 245.255 244.888 244.076 243.157 241.884 240.937 239.938 239.597 239.634 239.41 245.007 244.44 243.807 242.923 242.09 241.208 240.557 240.695 241.542 242.51 242.955 243.95 245.934 249.441 254.827 261.465 268.081 271.177 272.331 272.212 272.367 272.698 273.07 273.697 274.31 274.899 275.981 277.543 279.062 280.502 281.703 282.754 283.794 284.84 285.922 286.972 287.963 288.918 289.79 290.724 291.761 292.737 293.519 294.002 294.369 294.756 295.214 295.707 296.185 296.693 297.25 297.807 298.289 298.653 299.099 299.633 300.002 300.111 300.177 300.214 300.169 300.208 300.281 300.207 300.103 300.06 299.9 299.617 299.283 298.842 298.333 297.661 296.867 296.41 296.488 296.715 296.963 297.283 297.456 296.617 295.558 294.187 288.627 278.545 266.653 256.379 250.726 248.891 246.759 247.133 253.602 262.139 265.769 265.503 262.835 260.725 259.691 256.629 253.988 253.957 256.602 259.51 260.129 258.519 255.216 250.945 247.511 244.796 243.182 242.075 240.602 239.447 238.918 238.87 237.723 235.937 236.169 239.288 244.409 244.659 244.001 242.99 241.908 241.156 240.048 239.625 239.648 239.41 245.036 244.479 243.842 243.052 242.225 241.376 240.714 240.674 241.265 242.039 242.334 243.294 245.303 248.765 254.192 260.879 267.841 271.152 272.43 272.305 272.474 272.783 273.074 273.694 274.375 275.005 276.07 277.634 279.153 280.551 281.699 282.714 283.732 284.794 285.936 287.014 287.959 288.837 289.676 290.631 291.69 292.621 293.319 293.759 294.15 294.562 295.028 295.543 296.088 296.657 297.224 297.748 298.194 298.554 299.029 299.568 299.955 300.142 300.283 300.334 300.256 300.269 300.344 300.313 300.268 300.248 300.051 299.672 299.205 298.667 298.13 297.471 296.736 296.347 296.423 296.645 297.012 297.405 297.369 296.301 294.725 293.053 287.897 278.246 267.478 257.705 252.943 249.581 247.766 248.486 253.692 260.044 266.434 266.128 262.736 260.006 258.041 255.071 253.099 253.564 256.06 258.828 259.37 258.052 255.125 251.105 247.678 244.983 243.302 241.706 240.053 239.108 238.81 239.055 237.812 235.523 235.335 238.066 243.483 244.371 243.725 242.541 241.954 241.37 240.135 239.648 239.661 239.412 245.037 244.516 243.9 243.163 242.354 241.54 240.9 240.719 241.077 241.616 241.877 242.722 244.794 248.202 253.576 260.302 267.623 271.067 272.424 272.374 272.548 272.828 273.023 273.584 274.349 275.065 276.145 277.702 279.211 280.559 281.642 282.632 283.669 284.791 285.996 287.058 287.91 288.725 289.572 290.554 291.605 292.472 293.085 293.499 293.92 294.37 294.857 295.406 296.014 296.616 297.174 297.668 298.113 298.51 298.985 299.47 299.871 300.136 300.318 300.361 300.305 300.354 300.446 300.419 300.379 300.375 300.182 299.716 299.129 298.565 298.078 297.46 296.767 296.473 296.596 296.863 297.181 297.32 296.871 295.004 293.659 291.982 287.069 278.876 269.553 260.567 254.488 251.157 249.326 250.734 254.172 259.091 264.848 265.349 261.974 259.216 256.566 253.863 252.899 254.074 256.231 258.373 258.474 258.006 255.184 251.147 247.782 244.794 242.848 241.111 239.649 238.799 238.495 238.943 237.842 235.258 234.62 237.071 242.433 243.891 242.933 241.802 242.0 241.515 240.17 239.669 239.683 239.427 245.064 244.556 243.982 243.278 242.484 241.714 241.102 240.748 240.904 241.238 241.542 242.322 244.371 247.794 253.085 259.837 267.73 270.857 272.297 272.401 272.589 272.85 272.988 273.459 274.288 275.102 276.225 277.762 279.239 280.536 281.562 282.539 283.614 284.795 286.032 287.047 287.808 288.583 289.461 290.478 291.527 292.359 292.93 293.325 293.746 294.213 294.733 295.331 295.976 296.565 297.105 297.601 298.063 298.466 298.902 299.359 299.815 300.129 300.29 300.332 300.347 300.446 300.535 300.515 300.519 300.579 300.418 299.866 299.141 298.572 298.187 297.629 296.925 296.665 296.828 297.089 297.262 297.055 295.726 293.354 291.922 290.628 287.454 279.732 271.642 262.533 256.888 253.155 250.904 252.278 255.915 258.007 262.158 263.504 261.036 258.019 255.208 253.243 253.056 254.112 256.119 257.897 258.433 257.934 254.838 250.93 247.193 244.194 242.014 240.312 239.304 238.408 238.11 238.738 237.77 235.111 234.013 236.176 241.377 243.112 241.645 241.841 242.084 241.615 240.162 239.7 239.712 239.441 245.097 244.549 244.031 243.39 242.597 241.913 241.303 240.892 240.679 240.904 241.22 242.079 243.997 247.446 252.738 259.442 267.698 270.62 272.104 272.385 272.6 272.869 272.986 273.372 274.221 275.126 276.306 277.812 279.243 280.489 281.473 282.451 283.575 284.801 286.037 286.994 287.688 288.45 289.359 290.407 291.445 292.246 292.784 293.157 293.578 294.064 294.635 295.297 295.967 296.518 297.013 297.493 297.947 298.34 298.748 299.233 299.761 300.113 300.26 300.35 300.427 300.512 300.561 300.603 300.706 300.817 300.643 299.998 299.169 298.613 298.363 297.877 297.164 296.842 296.972 296.802 297.065 295.471 294.395 293.334 291.721 289.711 286.744 280.498 272.341 263.872 258.316 253.143 251.752 253.445 255.275 256.818 260.534 262.059 259.773 256.897 254.118 252.447 252.546 253.922 255.523 256.969 257.971 257.145 254.929 250.78 246.53 243.454 241.132 239.574 238.921 238.132 237.832 238.385 237.54 234.924 233.552 235.306 240.181 241.93 240.542 241.751 242.293 241.685 240.115 239.739 239.748 239.451 245.087 244.631 244.11 243.497 242.708 242.086 241.489 241.025 240.643 240.633 240.973 241.95 243.932 247.242 252.51 259.122 266.548 270.338 271.798 272.328 272.584 272.902 273.035 273.345 274.15 275.132 276.384 277.845 279.217 280.413 281.386 282.409 283.599 284.834 286.018 286.921 287.583 288.335 289.256 290.306 291.293 292.018 292.494 292.85 293.312 293.88 294.536 295.259 295.931 296.427 296.845 297.274 297.724 298.158 298.607 299.144 299.709 300.105 300.318 300.459 300.501 300.466 300.485 300.633 300.741 300.687 300.403 299.86 299.205 298.891 298.787 298.383 297.701 297.155 296.918 294.791 294.692 294.129 294.173 293.404 291.536 288.563 285.884 280.034 271.31 261.045 256.266 254.453 252.48 253.193 253.887 255.747 259.51 261.143 258.759 255.798 253.162 251.466 251.718 253.3 255.071 256.257 256.878 256.66 254.208 250.287 245.919 242.786 240.192 238.723 238.406 237.851 237.616 237.845 237.284 234.893 233.248 234.58 238.985 240.428 239.672 241.749 242.784 241.705 240.066 239.798 239.796 239.464 245.076 244.648 244.179 243.62 242.818 242.228 241.677 241.178 240.641 240.517 240.818 241.912 243.867 247.039 252.33 258.82 265.407 269.954 271.536 272.288 272.574 272.93 273.098 273.354 274.079 275.103 276.417 277.848 279.16 280.325 281.344 282.466 283.717 284.904 285.991 286.847 287.493 288.209 289.099 290.125 291.071 291.754 292.192 292.559 293.107 293.797 294.531 295.244 295.821 296.221 296.609 297.059 297.578 298.097 298.612 299.165 299.73 300.168 300.441 300.553 300.511 300.438 300.481 300.541 300.345 299.877 299.223 299.163 299.378 299.372 299.297 298.891 298.18 297.335 296.497 294.597 293.996 292.159 291.597 290.479 289.359 286.938 283.396 276.75 269.141 259.473 255.665 253.453 252.423 253.364 252.899 255.572 259.445 260.68 257.975 254.668 252.547 250.91 250.883 252.264 253.87 255.272 256.075 256.482 253.737 249.647 245.474 242.199 239.54 238.075 237.809 237.738 237.238 237.37 236.943 234.799 233.041 234.064 238.643 239.145 240.08 242.611 243.359 241.75 240.032 239.87 239.857 239.483 245.085 244.684 244.242 243.74 242.927 242.363 241.842 241.313 240.728 240.497 240.844 241.9 243.807 246.991 252.215 258.598 265.119 269.201 271.341 272.275 272.558 272.93 273.131 273.357 273.99 275.056 276.426 277.841 279.099 280.246 281.33 282.556 283.845 284.957 285.936 286.743 287.373 288.057 288.918 289.923 290.843 291.528 291.984 292.384 293.008 293.794 294.565 295.208 295.636 295.947 296.371 296.903 297.483 298.035 298.595 299.203 299.826 300.3 300.572 300.618 300.52 300.433 300.385 300.205 299.758 298.432 298.384 299.368 299.437 299.457 299.32 298.674 297.616 296.526 295.3 293.732 292.678 290.636 289.019 288.035 286.9 284.315 279.552 273.728 265.882 258.732 255.386 254.31 252.778 253.443 253.851 257.147 260.674 261.352 257.393 254.228 252.91 251.232 250.902 251.541 252.917 254.266 255.842 255.967 253.009 248.96 244.912 241.423 238.807 237.503 237.311 237.586 237.033 236.73 236.355 234.66 232.897 233.664 238.088 238.499 240.338 244.448 243.731 241.785 240.099 239.956 239.924 239.5 245.119 244.688 244.315 243.865 243.071 242.484 241.983 241.447 240.843 240.587 240.966 241.958 243.756 246.956 252.194 258.416 264.888 268.778 271.259 272.285 272.531 272.903 273.126 273.334 273.9 275.004 276.428 277.833 279.045 280.19 281.335 282.641 283.935 284.967 285.845 286.608 287.235 287.923 288.781 289.762 290.643 291.318 291.803 292.265 292.969 293.804 294.549 295.07 295.359 295.635 296.161 296.803 297.422 297.973 298.582 299.286 299.971 300.437 300.677 300.671 300.488 300.249 299.956 299.299 298.367 297.973 299.402 299.469 299.32 298.8 298.597 298.204 297.19 295.459 293.972 292.991 291.767 289.822 287.494 286.187 284.658 280.544 276.953 272.592 266.914 259.974 256.345 253.906 253.822 255.289 256.936 259.143 261.97 261.69 257.655 254.544 253.731 252.296 251.857 252.145 252.753 253.736 255.502 255.058 252.32 248.412 244.39 240.882 238.36 237.05 236.896 237.281 236.72 235.951 235.775 234.467 232.779 233.63 237.244 238.261 241.1 245.633 243.763 241.773 240.15 240.051 239.988 239.513 245.161 244.75 244.407 243.972 243.228 242.621 242.118 241.597 240.989 240.754 241.104 242.023 243.756 247.011 252.194 258.374 264.758 268.71 271.43 272.327 272.51 272.87 273.095 273.283 273.832 274.971 276.44 277.836 279.018 280.179 281.373 282.711 283.978 284.934 285.729 286.455 287.102 287.852 288.744 289.673 290.469 291.075 291.592 292.204 293.024 293.834 294.422 294.77 294.99 295.338 296.011 296.773 297.446 298.038 298.716 299.476 300.096 300.47 300.675 300.636 300.258 299.619 298.297 297.821 298.045 298.51 299.571 298.943 298.458 298.473 298.424 298.247 297.315 295.165 293.35 292.013 290.754 288.255 286.1 284.569 283.0 279.271 276.687 273.901 270.082 263.518 259.608 256.925 257.786 258.564 260.204 262.461 263.41 261.618 258.924 256.195 254.854 253.164 252.727 253.683 254.162 255.121 255.293 253.877 251.594 247.981 243.873 240.352 238.017 236.641 236.379 236.809 236.387 235.196 235.124 233.92 232.612 233.518 236.273 238.658 243.535 245.56 243.492 241.6 240.224 240.129 240.047 239.516 245.146 244.761 244.496 244.083 243.39 242.76 242.227 241.719 241.113 240.948 241.297 242.16 243.792 247.078 252.3 258.448 264.907 268.617 271.649 272.358 272.521 272.861 273.074 273.254 273.82 274.981 276.455 277.833 279.01 280.205 281.44 282.782 284.012 284.912 285.66 286.36 287.018 287.808 288.71 289.608 290.366 290.953 291.556 292.335 293.194 293.874 294.257 294.495 294.775 295.268 296.051 296.87 297.56 298.194 298.902 299.625 300.133 300.408 300.548 300.413 299.793 298.543 297.902 298.07 298.834 299.171 299.128 298.54 298.762 298.693 298.743 298.627 297.759 296.207 293.606 291.132 289.686 286.921 284.912 283.603 282.497 279.835 277.528 275.157 272.231 268.879 264.198 261.049 260.728 261.715 262.446 263.881 263.533 261.645 259.278 257.575 255.466 254.221 253.086 255.04 254.782 255.432 254.03 253.063 250.88 247.415 243.352 239.875 237.516 236.11 235.669 235.854 235.611 234.682 234.396 233.461 232.407 233.442 236.076 239.007 244.368 245.204 243.045 241.465 240.305 240.213 240.095 239.51 245.113 244.806 244.583 244.215 243.56 242.895 242.342 241.852 241.25 241.18 241.494 242.126 243.836 247.227 252.412 258.65 265.172 268.43 271.786 272.384 272.557 272.886 273.076 273.252 273.842 275.011 276.458 277.807 278.983 280.222 281.502 282.846 284.033 284.886 285.611 286.31 286.976 287.75 288.619 289.498 290.271 290.923 291.655 292.499 293.279 293.794 294.064 294.341 294.758 295.386 296.239 297.089 297.758 298.374 299.065 299.748 300.193 300.367 300.366 300.136 298.926 298.321 298.51 299.38 299.749 299.498 299.286 299.046 298.922 298.874 298.952 298.495 297.674 295.824 292.867 290.336 288.524 285.947 284.323 283.602 282.101 279.97 277.949 274.862 272.128 270.611 267.849 264.506 264.011 264.221 264.418 264.163 263.392 261.752 259.682 257.879 255.946 254.059 254.095 255.295 254.751 254.453 253.481 252.231 250.041 247.015 242.832 239.276 237.149 235.776 235.002 235.029 234.766 234.299 233.669 233.042 232.303 233.478 236.222 239.498 244.162 244.725 242.677 241.401 240.406 240.298 240.137 239.501 245.159 244.856 244.651 244.355 243.739 243.039 242.441 241.951 241.434 241.392 241.698 242.226 243.996 247.463 252.674 258.944 265.432 268.764 271.874 272.403 272.617 272.947 273.102 273.269 273.88 275.039 276.444 277.757 278.927 280.221 281.549 282.886 284.024 284.843 285.569 286.294 286.968 287.693 288.503 289.363 290.168 290.924 291.778 292.597 293.258 293.67 293.993 294.428 294.959 295.626 296.489 297.369 298.036 298.626 299.289 299.914 300.272 300.305 300.153 299.927 298.618 298.678 299.228 299.972 299.827 299.535 299.276 299.109 298.998 298.918 298.336 297.815 297.358 295.014 292.204 290.114 288.232 286.488 284.931 283.441 281.601 279.478 277.371 274.103 272.059 271.34 270.415 267.415 266.753 266.078 265.189 264.298 263.054 261.63 259.639 257.586 255.473 254.244 253.658 254.666 254.274 253.773 252.581 251.138 249.176 246.384 242.601 238.708 236.83 235.519 234.36 233.998 233.87 233.521 233.01 232.668 232.145 233.589 236.553 242.672 245.096 244.34 242.466 241.362 240.492 240.383 240.167 239.489 245.154 244.926 244.738 244.498 243.914 243.195 242.537 242.072 241.613 241.649 241.854 242.435 244.142 247.747 253.078 259.289 265.527 269.175 271.941 272.414 272.705 273.023 273.138 273.312 273.933 275.049 276.403 277.677 278.853 280.213 281.587 282.903 283.993 284.798 285.548 286.308 286.982 287.669 288.439 289.292 290.144 291.019 291.942 292.723 293.335 293.839 294.401 294.991 295.503 296.025 296.783 297.656 298.362 298.964 299.596 300.114 300.3 300.161 299.774 299.398 300.023 300.051 300.054 299.878 299.55 299.296 299.142 299.046 298.993 298.933 298.865 298.324 297.151 293.958 291.316 290.46 289.632 288.667 287.13 284.187 281.762 279.251 277.234 274.998 273.652 273.708 272.402 269.633 267.741 267.352 266.089 264.085 262.494 261.341 259.603 257.315 255.248 253.784 254.13 254.496 253.805 252.768 251.15 249.733 248.277 245.979 242.398 238.626 236.412 235.059 233.707 233.239 233.156 233.095 232.477 232.168 232.577 234.09 238.521 243.896 245.745 244.068 242.339 241.412 240.538 240.469 240.187 239.476 245.171 244.943 244.822 244.638 244.106 243.353 242.674 242.197 241.839 241.898 241.931 242.339 244.276 248.114 253.511 259.633 266.096 269.573 271.993 272.453 272.791 273.075 273.171 273.372 273.994 275.037 276.336 277.594 278.799 280.228 281.63 282.928 284.006 284.822 285.582 286.33 286.994 287.712 288.533 289.44 290.373 291.315 292.224 292.957 293.624 294.341 295.104 295.757 296.26 296.691 297.306 298.072 298.712 299.26 299.826 300.27 300.339 300.107 299.479 299.828 300.282 300.226 300.033 299.736 299.409 299.379 299.268 299.149 299.093 299.02 298.783 298.306 296.452 293.986 292.892 292.693 291.803 290.023 288.517 285.46 282.306 279.48 277.357 275.887 275.156 274.604 272.612 270.261 268.961 268.301 266.333 263.928 261.623 260.955 259.039 256.949 254.952 253.244 253.179 253.896 253.011 251.44 249.557 248.075 247.118 245.614 242.423 238.767 236.326 234.499 233.268 232.618 232.379 232.612 232.021 231.85 232.608 234.643 239.143 243.907 245.29 243.853 242.383 241.478 240.607 240.516 240.197 239.467 245.239 245.014 244.906 244.784 244.279 243.54 242.826 242.333 242.004 242.072 241.996 242.526 244.476 248.568 254.015 260.077 266.882 269.876 272.04 272.512 272.863 273.11 273.212 273.477 274.078 275.022 276.249 277.509 278.772 280.269 281.677 282.966 284.059 284.883 285.622 286.352 287.046 287.845 288.739 289.716 290.693 291.642 292.521 293.258 294.058 294.973 295.844 296.539 297.095 297.548 298.101 298.733 299.217 299.622 300.089 300.474 300.446 300.123 299.423 300.139 300.356 300.211 299.651 299.091 298.661 299.277 299.546 299.494 299.404 299.261 298.97 298.303 297.421 296.324 295.372 294.651 293.639 291.415 289.391 286.08 282.93 279.854 277.145 275.576 275.009 274.227 272.49 270.921 270.188 269.103 266.495 263.332 261.559 259.974 258.349 256.534 254.789 253.269 252.421 252.9 251.825 249.589 247.633 246.245 245.557 245.042 242.474 238.71 235.754 234.037 232.933 232.075 231.857 231.938 231.495 231.59 232.736 235.347 239.267 243.654 244.476 243.58 242.546 241.523 240.676 240.556 240.196 239.455 245.265 245.06 244.999 244.935 244.47 243.75 242.986 242.458 242.146 242.189 242.077 242.596 244.693 249.043 254.554 260.586 266.881 270.059 272.093 272.592 272.94 273.13 273.26 273.629 274.206 275.033 276.162 277.429 278.772 280.325 281.727 283.014 284.12 284.935 285.643 286.387 287.165 288.057 289.029 290.072 291.084 292.055 293.008 293.955 295.012 296.117 297.066 297.797 298.275 298.623 299.021 299.474 299.782 300.035 300.399 300.705 300.553 300.118 298.972 300.068 300.425 299.969 298.721 298.096 297.755 298.914 299.69 299.915 299.831 299.638 299.396 298.939 298.209 297.475 296.813 296.099 294.95 293.111 290.332 286.826 283.104 280.099 277.388 275.632 274.823 273.956 272.948 272.338 271.415 270.085 267.445 264.151 261.794 259.753 257.825 256.157 254.436 253.522 252.062 251.918 250.19 247.852 245.801 244.737 244.645 244.669 242.566 238.697 235.474 233.461 232.44 231.753 231.415 231.366 230.956 231.306 233.142 236.15 239.907 243.451 243.828 243.362 242.642 241.653 240.737 240.568 240.196 239.44 245.256 245.122 245.092 245.086 244.688 243.961 243.194 242.649 242.285 242.259 242.075 242.41 244.949 249.519 255.052 261.038 267.178 270.304 272.19 272.71 273.025 273.147 273.341 273.837 274.396 275.101 276.123 277.385 278.809 280.41 281.81 283.091 284.183 284.965 285.657 286.474 287.356 288.297 289.372 290.602 291.851 293.051 294.361 295.763 297.186 298.355 299.257 300.272 300.385 300.135 299.999 300.079 300.197 300.374 300.668 300.853 300.602 300.09 298.907 300.278 300.472 299.32 298.254 297.279 296.91 297.323 299.15 299.94 300.142 300.027 299.826 299.542 299.092 298.49 297.786 296.943 295.879 294.277 291.632 287.839 283.206 280.154 277.978 276.529 275.825 274.554 274.095 273.836 272.879 271.218 268.827 265.706 262.567 259.62 257.5 255.557 254.096 253.236 251.295 251.11 249.088 246.559 244.65 243.38 243.441 243.633 242.326 238.655 234.997 232.782 231.981 231.421 231.018 230.797 230.794 231.031 233.569 237.033 241.907 243.424 243.48 243.156 242.61 241.812 240.781 240.565 240.207 239.421 245.237 245.16 245.197 245.254 244.884 244.164 243.42 242.848 242.438 242.32 242.018 242.435 245.149 249.747 255.433 261.358 267.545 270.608 272.323 272.819 273.085 273.171 273.461 274.07 274.619 275.259 276.216 277.46 278.913 280.545 281.946 283.209 284.27 285.022 285.731 286.595 287.463 288.376 289.675 291.368 293.087 294.667 296.354 298.067 300.082 302.627 304.371 302.871 302.284 301.432 300.739 300.473 300.421 300.572 300.803 300.862 300.642 300.269 299.717 300.38 300.382 299.15 297.816 296.717 296.182 296.217 297.417 299.137 299.857 300.04 299.905 299.652 299.295 298.798 298.141 297.295 296.305 295.028 292.836 288.871 283.775 279.788 277.84 276.718 276.0 275.367 274.679 274.296 273.181 271.746 270.035 267.263 263.41 259.885 257.551 255.317 253.995 252.915 251.1 249.909 248.201 245.633 244.293 242.644 241.95 242.557 241.68 238.426 234.728 232.334 231.63 231.118 230.466 230.281 230.321 230.936 235.578 239.903 243.303 243.377 243.259 242.969 242.539 241.909 240.877 240.575 240.225 239.4 245.289 245.204 245.3 245.423 245.16 244.433 243.676 243.072 242.581 242.26 241.907 242.433 245.271 250.076 255.635 261.57 267.865 270.922 272.469 272.895 273.113 273.193 273.585 274.298 274.864 275.496 276.437 277.657 279.096 280.721 282.107 283.332 284.358 285.096 285.834 286.704 287.51 288.432 290.002 291.983 294.594 296.776 299.054 302.056 305.018 306.245 307.315 306.682 303.574 302.094 301.16 300.803 300.655 300.74 300.881 300.845 300.696 300.512 300.413 300.512 300.465 299.033 297.915 296.673 296.011 295.734 296.065 297.666 299.338 299.858 299.856 299.673 299.426 299.006 298.415 297.608 296.643 295.567 293.851 290.501 285.169 280.179 277.398 276.007 275.382 275.187 274.369 273.977 272.915 271.838 270.956 268.386 264.588 260.52 257.6 255.327 254.102 252.399 250.692 248.609 246.627 245.285 243.516 242.125 241.457 241.745 240.896 238.201 234.459 232.232 231.483 230.832 230.105 229.987 230.015 230.921 236.115 241.413 243.589 243.217 243.084 242.809 242.464 241.885 240.982 240.596 240.24 239.384 245.308 245.265 245.428 245.602 245.396 244.734 243.932 243.291 242.716 242.224 241.797 242.451 245.338 250.174 255.641 261.565 268.293 271.27 272.628 272.948 273.113 273.217 273.707 274.516 275.123 275.793 276.761 277.955 279.351 280.926 282.259 283.422 284.406 285.143 285.914 286.789 287.574 288.573 290.162 293.237 296.455 299.655 301.508 303.875 305.115 305.998 306.829 306.576 303.092 301.493 301.271 301.031 300.845 300.839 300.908 300.838 300.738 300.666 300.627 300.666 300.691 300.198 299.566 297.693 296.854 296.463 296.441 296.827 298.613 299.706 299.827 299.729 299.567 299.193 298.658 297.927 296.994 296.012 294.655 291.894 287.744 281.545 277.814 275.585 275.243 274.712 273.572 273.487 272.618 271.582 271.198 269.045 265.466 261.51 257.688 255.523 253.327 250.979 249.464 247.312 246.089 244.03 242.785 241.662 240.238 240.782 240.302 237.935 234.451 232.318 231.503 230.779 230.149 229.782 229.844 230.848 236.141 241.461 243.217 242.941 242.907 242.679 242.412 241.873 241.079 240.644 240.255 239.366 245.317 245.325 245.549 245.781 245.638 245.013 244.207 243.521 242.794 242.166 241.707 242.423 245.347 250.095 255.458 261.411 267.768 271.591 272.802 272.984 273.083 273.249 273.835 274.723 275.412 276.159 277.176 278.344 279.68 281.162 282.39 283.451 284.377 285.13 285.943 286.855 287.732 288.866 290.33 293.625 296.901 299.22 300.978 302.96 303.961 304.891 306.021 305.858 302.819 300.857 301.25 301.157 300.953 300.84 300.88 300.867 300.781 300.492 300.675 300.661 300.436 300.076 299.808 299.527 298.9 299.003 298.949 297.956 299.296 299.805 299.864 299.784 299.667 299.305 298.738 298.042 297.206 296.359 295.207 292.786 288.999 284.905 279.676 275.857 274.512 273.933 273.297 273.321 272.492 271.498 271.035 270.274 266.108 261.213 257.359 255.5 252.694 250.255 247.872 246.181 245.129 243.662 242.129 240.992 239.354 240.142 239.915 237.506 234.556 232.599 231.63 231.028 230.416 229.959 229.854 231.106 237.09 241.456 242.657 242.527 242.834 242.56 242.33 241.951 241.182 240.741 240.274 239.343 245.347 245.408 245.678 245.95 245.898 245.308 244.481 243.765 242.911 242.153 241.652 242.415 245.31 249.881 255.093 261.195 268.114 271.78 272.944 273.015 273.062 273.284 273.936 274.87 275.651 276.482 277.533 278.703 279.991 281.366 282.473 283.44 284.336 285.119 285.963 286.9 287.887 289.078 290.473 292.6 295.963 298.085 299.905 301.441 302.808 304.037 305.424 305.429 303.177 300.954 301.374 301.204 301.038 300.899 300.859 300.853 300.722 300.391 300.612 300.434 299.285 298.098 298.373 299.199 299.641 299.813 299.754 299.523 299.828 300.002 299.9 299.769 299.645 299.252 298.556 297.66 296.988 296.369 295.392 293.072 289.192 285.943 282.251 277.0 274.297 273.415 273.215 273.406 272.934 272.124 270.456 270.703 267.071 260.235 256.439 255.006 252.442 249.725 247.065 245.326 244.375 243.051 241.655 240.495 238.844 239.133 239.507 237.22 234.443 233.111 232.153 231.355 230.677 230.264 229.912 231.35 237.905 241.289 242.112 242.121 242.713 242.495 242.266 242.007 241.259 240.82 240.295 239.314 245.378 245.473 245.799 246.162 246.167 245.609 244.782 244.017 243.017 242.167 241.601 242.356 245.2 249.524 254.577 260.886 268.381 271.867 273.059 273.054 273.065 273.321 274.01 274.969 275.83 276.732 277.811 278.988 280.243 281.523 282.527 283.428 284.323 285.141 285.999 286.935 287.968 289.18 290.456 292.162 295.513 297.408 298.883 300.298 301.947 303.523 304.897 305.147 303.356 301.644 301.194 301.054 301.009 300.97 300.858 300.797 300.647 300.355 300.635 300.443 298.853 296.981 296.833 298.709 299.2 299.85 300.036 300.026 299.99 299.926 299.749 299.615 299.482 298.948 297.916 296.776 296.221 296.223 295.573 293.489 289.823 286.033 283.823 280.378 275.67 274.102 273.625 274.531 274.703 273.444 270.31 270.378 267.205 259.778 256.009 254.326 252.311 250.404 247.675 245.435 244.475 242.864 241.383 239.628 238.349 238.23 238.532 236.874 234.475 233.09 232.606 231.868 231.179 230.721 230.023 231.863 237.882 240.951 241.657 241.785 242.512 242.466 242.179 241.994 241.337 240.864 240.308 239.287 245.39 245.519 245.923 246.38 246.434 245.92 245.072 244.257 243.135 242.176 241.653 242.23 244.871 249.152 254.064 260.467 268.159 271.85 273.14 273.104 273.09 273.361 274.063 275.044 275.969 276.923 278.023 279.19 280.414 281.622 282.549 283.413 284.315 285.156 286.028 286.947 287.984 289.181 290.346 291.96 295.109 297.034 298.019 299.25 300.951 303.525 304.535 305.347 304.49 302.086 300.096 300.046 300.765 300.944 300.868 300.772 300.749 300.673 300.752 300.695 299.802 298.814 298.592 298.901 298.931 299.849 300.146 300.085 299.771 299.216 299.323 298.735 299.151 298.774 298.028 297.493 296.838 296.47 295.798 294.143 291.706 289.073 286.081 282.989 280.114 278.036 277.041 276.739 276.097 274.526 272.56 270.292 264.618 258.575 255.137 253.554 251.665 250.301 248.493 245.913 244.291 242.801 241.227 239.094 237.48 237.533 237.629 236.181 234.116 233.037 232.871 232.21 231.817 231.274 230.399 231.813 237.628 240.617 241.273 241.477 242.268 242.443 242.104 241.917 241.39 240.924 240.316 239.274 245.406 245.572 246.056 246.576 246.691 246.25 245.402 244.494 243.257 242.22 241.725 242.164 244.6 248.723 253.548 259.974 267.805 271.756 273.172 273.155 273.136 273.406 274.106 275.112 276.097 277.083 278.177 279.31 280.495 281.654 282.54 283.39 284.277 285.115 286.011 286.942 287.946 289.036 290.061 291.35 294.224 296.38 297.259 298.5 300.371 302.58 304.363 305.214 304.507 301.982 299.608 298.97 299.798 300.639 300.867 300.844 300.776 300.641 300.746 300.847 300.647 300.209 299.916 299.791 299.389 300.064 300.161 299.771 299.078 298.109 298.626 298.474 298.735 298.604 298.473 298.077 297.457 296.744 295.848 294.644 293.067 291.037 288.337 285.511 282.714 280.484 279.072 278.368 277.244 275.315 272.966 269.579 264.508 257.3 254.786 253.037 251.19 249.787 248.492 246.492 244.782 243.144 241.346 238.916 237.055 236.959 236.908 235.574 233.8 233.028 233.141 232.725 232.395 231.884 230.741 231.831 237.258 240.338 240.977 241.227 242.031 242.443 242.1 241.913 241.466 240.992 240.335 239.261 245.429 245.661 246.198 246.775 246.971 246.566 245.72 244.74 243.404 242.357 241.878 242.141 244.255 248.236 253.104 259.305 267.401 271.562 273.141 273.205 273.203 273.463 274.156 275.179 276.201 277.196 278.27 279.366 280.517 281.659 282.538 283.375 284.234 285.072 286.015 286.963 287.875 288.799 289.688 290.883 292.719 295.57 296.891 298.177 300.078 302.004 303.758 304.828 303.98 301.744 299.725 298.412 298.499 299.887 300.692 300.903 300.797 300.086 300.656 300.7 300.594 300.368 300.186 300.086 300.082 300.144 300.01 299.468 298.352 297.157 297.951 298.927 298.831 298.459 298.636 298.259 297.663 296.818 295.79 294.719 293.552 291.917 289.544 286.993 284.415 282.261 280.73 279.578 277.744 275.097 272.229 268.266 262.477 255.657 254.117 252.551 251.152 249.45 248.342 246.636 244.968 243.649 241.437 238.862 236.936 236.321 236.492 235.042 233.381 232.873 233.588 233.399 232.895 232.254 231.319 231.963 237.212 240.077 240.741 241.056 241.893 242.383 242.104 241.937 241.57 241.087 240.354 239.243 245.461 245.76 246.327 246.967 247.237 246.899 246.04 244.982 243.587 242.549 242.077 242.192 243.955 247.754 252.635 258.733 267.046 271.284 273.06 273.252 273.291 273.54 274.228 275.256 276.289 277.286 278.352 279.433 280.559 281.68 282.542 283.36 284.22 285.091 286.073 286.994 287.801 288.625 289.415 290.481 292.012 295.177 297.042 298.328 299.682 301.299 303.15 304.147 303.063 301.372 299.506 298.142 298.074 298.809 300.57 301.021 301.001 300.61 300.753 300.652 300.49 300.022 300.327 300.271 300.202 300.145 299.965 299.524 299.06 298.352 298.533 299.114 299.217 299.043 298.756 298.347 297.79 297.0 295.938 294.768 293.691 292.366 290.461 288.342 286.051 284.013 282.421 280.703 277.949 273.483 270.036 264.912 259.117 255.074 253.582 252.66 250.312 248.67 247.411 246.091 244.471 243.533 241.686 239.326 236.897 235.992 236.172 234.62 232.947 232.791 233.831 233.583 233.204 232.456 231.655 232.184 237.169 239.879 240.527 240.93 241.857 242.339 242.122 241.955 241.661 241.141 240.38 239.219 245.489 245.836 246.472 247.183 247.529 247.236 246.379 245.261 243.804 242.814 242.358 242.344 243.706 247.298 252.09 258.204 266.534 270.914 272.933 273.294 273.407 273.646 274.328 275.345 276.368 277.359 278.433 279.523 280.621 281.696 282.522 283.33 284.222 285.149 286.139 286.994 287.742 288.596 289.381 290.352 291.888 294.813 297.234 298.295 299.232 300.658 302.621 303.903 302.969 301.129 299.352 298.812 298.331 299.18 300.608 301.176 301.247 301.065 300.949 300.727 300.519 300.051 300.558 300.503 299.861 300.204 300.097 299.845 299.544 299.276 299.263 299.382 299.344 299.144 298.862 298.448 297.903 297.16 296.123 294.904 293.757 292.585 291.157 289.574 287.633 285.587 283.756 281.625 278.357 272.396 268.472 265.828 261.105 256.138 253.907 252.569 250.661 248.892 247.153 245.787 244.507 243.59 242.15 239.982 237.411 236.164 235.599 234.087 232.813 233.223 233.847 233.708 233.412 232.496 231.824 232.648 237.328 239.735 240.308 240.824 241.885 242.344 242.204 242.014 241.728 241.178 240.41 239.207 245.548 245.906 246.622 247.404 247.834 247.585 246.725 245.548 244.054 243.106 242.701 242.542 243.501 246.948 251.596 257.582 266.381 270.33 272.729 273.333 273.564 273.817 274.471 275.444 276.432 277.404 278.496 279.598 280.645 281.65 282.443 283.267 284.225 285.199 286.147 286.93 287.708 288.731 289.592 290.437 291.862 294.788 297.345 298.18 299.111 300.482 302.568 303.423 303.058 301.817 300.149 299.918 299.074 299.44 300.489 301.066 301.279 301.175 301.005 300.859 300.738 300.007 300.738 300.677 300.471 300.339 300.266 300.157 299.945 299.744 299.679 299.604 299.399 299.147 298.902 298.524 297.975 297.24 296.26 295.091 293.905 292.708 291.525 290.378 288.728 286.469 283.857 281.391 279.068 276.036 272.508 270.609 267.428 261.548 255.494 252.308 250.684 249.435 247.332 245.841 244.466 243.668 242.697 240.727 238.037 236.431 235.274 233.985 233.069 233.727 233.987 234.11 233.834 232.859 232.107 233.116 237.992 239.624 240.16 240.766 241.91 242.439 242.287 242.099 241.798 241.18 240.442 239.207 245.564 245.99 246.757 247.643 248.146 247.927 247.076 245.854 244.358 243.456 243.093 242.814 243.457 246.636 251.129 257.004 264.871 269.805 272.459 273.348 273.712 273.983 274.593 275.508 276.453 277.403 278.499 279.584 280.582 281.546 282.359 283.254 284.276 285.236 286.126 286.903 287.728 288.794 289.669 290.474 291.884 294.904 297.602 298.559 299.5 300.928 302.296 303.02 302.819 302.218 300.996 301.021 299.78 299.029 299.245 300.077 300.996 301.028 301.015 301.113 301.02 300.242 300.368 300.133 300.35 300.305 300.246 300.169 300.031 299.888 299.783 299.637 299.382 299.094 298.833 298.517 298.033 297.334 296.399 295.266 294.071 292.852 291.688 290.638 289.099 286.696 281.964 278.764 278.711 277.988 276.207 273.8 270.436 265.548 259.504 252.463 250.128 248.662 247.766 246.363 244.904 244.055 243.237 241.045 238.363 236.419 235.378 234.344 233.898 234.609 234.644 234.652 234.258 233.411 232.771 235.579 238.161 239.523 240.081 240.732 241.937 242.516 242.385 242.167 241.853 241.148 240.484 239.207 245.535 246.066 246.914 247.886 248.467 248.283 247.415 246.167 244.654 243.816 243.491 243.121 243.527 246.455 250.791 256.594 264.607 269.571 272.168 273.323 273.821 274.115 274.683 275.553 276.46 277.384 278.465 279.522 280.496 281.46 282.331 283.316 284.37 285.275 286.151 287.003 287.84 288.808 289.708 290.644 292.19 295.465 298.343 299.638 300.748 301.691 302.232 302.812 302.942 302.849 301.789 301.214 299.716 299.089 298.851 299.259 300.734 300.914 301.073 301.282 301.056 300.405 299.164 299.004 300.084 300.188 300.198 300.15 300.058 299.948 299.805 299.624 299.369 299.081 298.805 298.529 298.117 297.467 296.556 295.421 294.213 293.03 291.906 290.866 289.449 287.184 283.559 279.487 277.478 278.799 278.195 275.961 272.624 267.699 261.64 252.335 249.106 248.03 247.901 246.646 245.207 244.433 243.755 241.27 238.698 236.738 235.634 234.883 235.015 235.381 235.015 235.237 234.766 233.822 233.293 236.013 238.232 239.384 240.033 240.758 242.023 242.629 242.541 242.237 241.875 241.158 240.534 239.215 245.611 246.125 247.069 248.128 248.803 248.665 247.789 246.457 245.012 244.179 243.89 243.516 243.846 246.481 250.643 256.295 264.246 269.309 271.915 273.25 273.892 274.214 274.754 275.597 276.483 277.371 278.417 279.445 280.415 281.406 282.346 283.404 284.451 285.284 286.199 287.184 288.008 288.867 289.918 291.126 292.863 296.796 299.436 300.709 301.762 302.338 302.509 302.664 302.834 303.559 302.469 301.993 299.958 299.288 299.013 299.576 300.606 300.867 301.114 301.229 300.738 299.181 297.838 298.993 299.987 300.156 300.21 300.182 300.095 299.999 299.841 299.614 299.364 299.092 298.816 298.554 298.175 297.56 296.686 295.566 294.347 293.204 292.147 291.111 289.843 287.984 285.191 281.7 277.047 278.802 278.879 276.824 273.514 268.828 262.858 253.034 249.042 248.064 247.575 247.223 245.742 244.426 243.856 241.966 239.47 237.431 236.515 235.995 236.376 236.294 235.745 235.384 235.123 234.208 233.779 236.337 238.308 239.16 239.98 240.867 242.268 242.816 242.599 242.266 241.884 241.249 240.547 239.229 245.646 246.239 247.208 248.36 249.157 249.065 248.204 246.809 245.403 244.565 244.285 243.949 244.361 246.697 250.679 256.212 263.038 268.646 271.77 273.107 273.913 274.289 274.836 275.677 276.552 277.38 278.352 279.343 280.342 281.38 282.357 283.428 284.439 285.243 286.254 287.333 288.141 289.154 290.507 292.148 295.538 298.342 300.216 302.054 303.126 303.744 302.797 302.817 302.798 303.436 302.947 301.889 300.322 299.604 299.195 299.95 300.662 300.993 301.222 300.994 299.973 297.553 298.997 299.759 300.223 300.309 300.32 300.264 300.158 300.071 299.91 299.636 299.363 299.094 298.834 298.591 298.222 297.609 296.8 295.779 294.591 293.427 292.385 291.368 290.198 288.765 286.475 283.009 277.106 278.251 278.68 277.02 273.961 269.769 264.221 256.297 250.873 249.193 247.873 247.123 246.153 245.054 244.675 243.291 241.158 238.999 237.924 237.862 238.211 237.701 236.725 235.87 235.685 234.495 234.085 236.528 238.331 238.743 239.852 240.989 242.35 242.776 242.596 242.295 241.897 241.29 240.55 239.232 245.665 246.334 247.372 248.59 249.512 249.501 248.654 247.227 245.777 244.949 244.655 244.398 244.928 247.111 250.897 256.309 263.055 267.841 271.801 272.977 273.876 274.348 274.941 275.791 276.637 277.402 278.283 279.261 280.309 281.384 282.375 283.456 284.483 285.343 286.379 287.413 288.272 289.533 291.246 294.773 296.934 298.98 300.63 301.47 302.365 302.909 303.171 303.25 303.424 303.332 302.32 300.396 299.558 299.89 299.908 300.341 300.877 301.241 301.35 300.667 298.89 296.826 298.45 299.824 300.374 300.375 300.362 300.325 300.224 300.135 299.961 299.681 299.412 299.132 298.862 298.649 298.334 297.73 296.926 295.982 294.88 293.709 292.655 291.685 290.514 289.159 287.218 284.005 278.972 276.947 278.112 277.032 274.571 271.062 266.385 261.079 254.951 250.803 248.858 247.438 246.969 246.122 246.055 245.56 243.424 241.526 240.182 240.233 239.958 239.078 237.566 236.731 236.107 234.887 234.235 236.512 238.209 237.981 239.591 241.081 242.394 242.752 242.525 242.334 241.905 241.294 240.519 239.233 245.671 246.413 247.533 248.841 249.875 249.968 249.12 247.669 246.187 245.354 245.047 244.862 245.557 247.673 251.352 256.667 263.149 268.571 271.903 272.89 273.814 274.402 275.05 275.896 276.699 277.406 278.231 279.237 280.339 281.457 282.497 283.615 284.681 285.602 286.632 287.607 288.475 289.869 292.154 295.305 297.389 299.099 301.212 301.281 302.166 302.823 303.163 303.489 304.647 303.58 301.771 300.104 300.447 300.802 300.751 300.834 301.072 301.225 300.677 300.001 297.288 296.089 297.603 299.879 300.439 300.363 300.347 300.364 300.298 300.194 299.998 299.731 299.487 299.185 298.872 298.671 298.426 297.874 297.066 296.149 295.129 293.995 292.925 292.003 290.85 289.482 287.782 284.941 281.142 276.349 276.804 276.737 275.005 272.291 268.519 263.684 258.803 253.814 250.236 249.038 248.29 247.488 247.412 247.78 246.979 244.221 242.644 242.059 241.089 239.643 237.792 236.681 235.841 234.953 234.116 236.218 237.922 237.778 239.234 241.137 242.41 242.725 242.484 242.32 241.928 241.298 240.521 239.233 245.681 246.508 247.693 249.093 250.257 250.446 249.62 248.114 246.631 245.74 245.455 245.35 246.214 248.335 251.918 257.286 264.095 269.352 272.031 272.838 273.73 274.444 275.143 275.96 276.707 277.376 278.208 279.279 280.45 281.633 282.75 283.869 284.919 285.905 286.973 287.912 288.8 290.276 292.691 295.075 296.836 298.948 300.535 299.926 301.499 301.876 302.708 303.165 302.967 302.135 300.3 299.971 301.007 301.032 300.919 300.996 301.181 300.994 299.356 298.357 296.37 295.949 298.332 300.148 300.555 300.388 300.365 300.424 300.391 300.265 300.035 299.778 299.544 299.21 298.859 298.656 298.465 298.008 297.249 296.346 295.387 294.311 293.195 292.241 291.134 289.79 288.275 285.877 282.325 277.552 275.434 275.539 275.081 273.001 269.979 265.972 260.683 256.429 252.657 250.734 249.645 248.569 248.999 249.832 249.613 246.996 244.795 243.405 241.935 239.948 238.069 236.636 235.957 234.937 233.84 235.123 237.476 236.816 239.439 241.237 242.393 242.685 242.439 242.308 241.934 241.299 240.522 239.233 245.718 246.608 247.896 249.379 250.7 250.95 250.169 248.641 247.078 246.129 245.836 245.845 246.939 249.035 252.562 258.128 265.28 270.268 272.228 272.817 273.613 274.457 275.189 275.937 276.618 277.292 278.213 279.398 280.668 281.948 283.104 284.155 285.093 286.078 287.23 288.265 289.33 291.612 293.546 295.077 296.409 298.055 298.706 298.796 300.258 301.058 301.535 302.027 302.187 300.855 300.014 299.544 300.611 300.732 300.73 300.99 301.2 300.688 298.529 297.027 296.267 296.478 299.397 300.589 300.674 300.451 300.444 300.525 300.51 300.349 300.072 299.81 299.548 299.178 298.844 298.652 298.481 298.131 297.497 296.633 295.706 294.708 293.557 292.456 291.337 290.096 288.723 286.761 283.735 279.434 276.337 275.056 273.457 272.597 269.4 267.03 262.567 257.533 254.585 252.88 251.629 249.811 250.603 252.017 252.01 250.223 246.449 244.081 241.885 240.233 238.466 237.45 236.94 234.698 233.388 234.183 235.573 236.66 239.676 241.409 242.339 242.558 242.281 242.077 241.852 241.257 240.389 239.202 245.782 246.696 248.091 249.679 251.123 251.496 250.76 249.247 247.585 246.544 246.221 246.374 247.592 249.721 253.434 259.204 266.278 270.999 272.441 272.833 273.506 274.411 275.134 275.811 276.454 277.183 278.226 279.533 280.909 282.259 283.396 284.351 285.147 286.111 287.348 288.559 289.988 293.127 294.571 295.392 296.293 298.609 298.528 297.909 299.292 300.17 300.118 300.883 301.003 299.966 298.578 298.345 298.947 299.282 299.814 300.518 300.987 299.797 297.812 296.339 296.082 297.703 300.015 300.714 300.595 300.446 300.504 300.594 300.589 300.392 300.076 299.81 299.519 299.118 298.803 298.637 298.47 298.174 297.643 296.827 295.902 294.978 293.904 292.745 291.565 290.377 289.061 287.353 285.053 282.472 280.124 278.09 275.208 273.539 268.739 266.111 263.729 258.548 255.225 253.661 252.669 251.114 252.045 253.706 253.858 252.06 247.92 244.1 241.392 239.931 239.128 238.762 237.166 234.513 233.072 233.956 235.513 236.693 239.891 241.573 242.306 242.487 242.207 242.024 241.837 241.254 240.38 239.2 245.782 246.798 248.242 249.975 251.552 252.065 251.381 249.8 248.117 247.016 246.605 246.959 248.252 250.404 254.445 260.478 267.157 271.597 272.643 272.865 273.427 274.33 275.027 275.652 276.304 277.112 278.257 279.662 281.135 282.543 283.659 284.588 285.437 286.45 287.726 288.889 290.405 293.417 295.81 295.988 296.328 297.948 298.266 297.623 297.986 298.63 299.75 300.499 300.672 299.535 298.079 297.875 298.921 299.411 299.859 300.238 300.773 299.534 297.318 295.874 296.057 298.73 300.4 300.746 300.543 300.485 300.564 300.634 300.632 300.422 300.069 299.786 299.482 299.069 298.739 298.569 298.418 298.163 297.715 296.98 296.069 295.149 294.134 293.009 291.806 290.638 289.368 287.809 286.024 284.097 282.037 279.846 277.499 274.456 270.33 266.347 264.086 259.713 256.396 255.038 254.362 253.608 253.853 255.052 255.088 253.315 249.571 244.227 240.603 239.493 239.645 239.019 237.204 234.33 232.89 233.79 237.5 237.911 241.161 241.717 242.252 242.396 242.13 241.932 241.709 241.19 240.375 239.199 245.831 246.87 248.439 250.267 252.009 252.657 252.074 250.477 248.783 247.505 247.02 247.531 248.878 250.895 255.469 261.844 268.712 272.138 272.805 272.89 273.385 274.236 274.907 275.516 276.227 277.148 278.361 279.84 281.388 282.812 283.924 284.945 286.027 287.168 288.34 289.223 290.403 293.06 295.145 295.765 296.112 297.458 297.946 297.131 297.045 297.358 298.699 299.637 299.725 299.075 298.793 297.812 298.882 299.661 300.349 300.638 300.701 299.793 297.362 296.015 296.662 299.647 300.704 300.775 300.556 300.555 300.615 300.65 300.652 300.448 300.069 299.743 299.432 299.043 298.699 298.489 298.352 298.133 297.755 297.135 296.28 295.313 294.28 293.204 292.018 290.863 289.653 288.207 286.67 285.083 283.25 281.084 278.708 275.699 272.156 268.001 264.064 259.722 257.116 255.965 255.631 255.352 255.621 256.184 255.948 254.12 250.282 244.185 240.066 239.38 239.448 238.213 236.964 234.216 232.76 233.956 237.87 238.318 241.596 241.798 242.18 242.263 242.005 241.844 241.688 241.138 240.27 239.199 245.857 246.986 248.599 250.581 252.462 253.246 252.772 251.325 249.473 248.069 247.483 248.031 249.547 251.582 256.474 263.723 269.79 272.634 272.923 272.926 273.398 274.158 274.803 275.437 276.272 277.37 278.651 280.163 281.705 283.092 284.194 285.423 286.749 287.919 289.111 289.626 290.085 291.693 293.958 294.768 295.331 296.568 297.333 296.944 296.275 296.72 297.975 298.832 299.468 298.942 298.966 298.883 299.663 300.091 300.339 300.453 300.355 299.489 297.449 297.412 299.359 300.447 300.879 300.727 300.56 300.604 300.659 300.666 300.644 300.461 300.085 299.694 299.357 299.035 298.705 298.425 298.27 298.073 297.725 297.212 296.453 295.463 294.385 293.354 292.205 291.064 289.914 288.572 287.093 285.541 283.761 281.67 279.501 276.837 273.291 269.057 264.495 260.494 258.103 257.216 256.99 257.226 257.47 257.259 256.596 254.542 250.438 244.004 240.026 238.868 238.721 237.737 236.07 233.695 232.86 234.251 238.171 238.623 241.633 241.819 242.094 242.101 241.941 241.788 241.616 241.114 240.193 239.193 245.886 247.085 248.815 250.885 252.933 253.852 253.557 252.136 250.198 248.79 248.005 248.59 250.109 252.303 257.63 265.608 271.078 272.982 272.989 272.998 273.476 274.164 274.792 275.453 276.438 277.709 279.075 280.543 281.991 283.267 284.331 285.723 287.317 288.667 289.56 289.935 290.34 290.583 292.462 293.467 294.527 295.939 295.925 296.93 296.619 297.412 298.324 299.776 299.213 299.231 299.659 299.747 299.872 300.165 300.42 300.488 300.24 298.767 299.09 299.278 300.38 300.832 300.789 300.579 300.529 300.634 300.71 300.701 300.625 300.427 300.086 299.678 299.288 298.991 298.693 298.377 298.193 298.011 297.667 297.154 296.429 295.482 294.45 293.476 292.371 291.253 290.124 288.814 287.356 285.785 283.986 281.921 279.899 277.557 274.365 270.155 266.088 263.052 260.9 259.869 259.55 259.803 259.434 258.534 257.179 254.687 250.384 243.565 240.077 238.537 238.04 237.622 235.809 233.29 232.887 235.602 238.813 238.955 241.599 241.812 241.999 242.01 241.903 241.706 241.555 241.048 240.172 239.145 245.917 247.189 249.027 251.229 253.405 254.562 254.364 252.939 251.004 249.523 248.792 249.102 250.616 252.969 258.777 267.502 271.928 273.225 273.039 273.093 273.591 274.243 274.845 275.513 276.645 278.052 279.482 280.874 282.193 283.328 284.339 285.7 287.39 288.593 289.523 290.058 290.659 290.44 291.371 292.587 293.409 294.262 295.449 296.645 297.334 298.179 298.08 299.205 298.907 299.49 299.879 299.949 299.999 300.254 300.549 300.647 300.071 299.774 300.216 299.853 300.8 300.861 300.585 300.374 300.424 300.609 300.723 300.722 300.61 300.376 300.059 299.671 299.239 298.928 298.667 298.371 298.159 297.981 297.668 297.15 296.414 295.5 294.502 293.546 292.474 291.414 290.322 289.012 287.557 285.985 284.199 282.156 280.144 277.889 274.96 271.208 267.979 265.74 264.352 263.633 263.284 262.836 261.586 260.073 257.844 254.693 250.059 243.045 239.714 238.018 237.07 237.025 234.927 232.925 232.967 236.189 239.297 239.342 241.6 241.817 241.912 241.913 241.949 241.662 241.405 241.02 240.07 239.109 245.97 247.286 249.215 251.564 253.907 255.267 255.173 253.845 252.021 250.41 249.528 249.594 250.995 253.504 260.327 268.054 272.516 273.376 273.084 273.208 273.745 274.369 274.918 275.596 276.838 278.344 279.81 281.123 282.3 283.32 284.265 285.452 286.946 288.268 289.292 290.121 291.028 291.93 292.249 292.367 292.425 293.355 294.173 296.054 297.325 297.38 297.579 298.413 299.1 299.664 299.877 299.951 300.039 300.298 300.605 300.757 300.57 300.536 300.503 299.989 300.803 300.7 300.336 300.107 300.218 300.506 300.699 300.726 300.603 300.336 300.014 299.651 299.2 298.863 298.641 298.401 298.157 297.95 297.678 297.191 296.445 295.545 294.554 293.581 292.527 291.541 290.515 289.237 287.786 286.202 284.422 282.399 280.337 278.064 275.3 272.082 269.53 267.932 266.98 266.441 266.195 265.457 263.425 261.486 258.738 254.691 249.624 242.581 239.377 237.553 236.701 235.463 234.097 232.724 233.118 237.571 239.624 240.598 241.698 241.849 241.835 241.776 241.927 241.603 241.346 241.027 239.977 239.094 245.985 247.399 249.426 251.916 254.461 256.045 256.059 254.762 252.966 251.464 250.426 250.095 251.419 254.146 261.657 269.281 272.939 273.45 273.132 273.346 273.922 274.52 275.016 275.706 277.009 278.556 280.031 281.279 282.335 283.286 284.184 285.211 286.455 287.784 288.995 289.979 291.1 292.276 293.088 293.6 293.363 292.83 293.548 295.122 296.642 296.54 297.393 298.619 299.3 299.604 299.713 299.802 299.992 300.297 300.593 300.761 300.777 300.687 300.583 300.526 300.293 300.506 300.123 299.84 299.972 300.385 300.692 300.735 300.611 300.332 299.971 299.599 299.162 298.805 298.587 298.407 298.152 297.882 297.619 297.175 296.443 295.562 294.589 293.612 292.569 291.637 290.69 289.498 288.09 286.473 284.664 282.644 280.507 278.143 275.444 272.683 270.642 269.414 268.628 268.157 267.929 267.128 264.846 262.708 259.652 254.597 248.934 242.373 239.219 236.89 235.953 234.945 233.381 232.45 233.358 237.692 239.743 241.647 241.908 241.894 241.764 241.687 241.912 241.65 241.263 241.045 239.92 239.084 246.003 247.516 249.644 252.273 255.022 256.792 256.93 255.686 253.995 252.566 251.388 250.704 251.911 254.774 262.662 270.045 273.189 273.474 273.172 273.446 274.054 274.645 275.127 275.836 277.15 278.679 280.137 281.355 282.361 283.273 284.164 285.172 286.348 287.567 288.73 289.653 290.747 292.161 293.363 294.217 294.599 294.588 294.85 295.618 296.49 296.943 297.976 298.734 299.224 299.435 299.517 299.681 300.017 300.392 300.661 300.838 300.914 300.868 300.731 300.628 300.624 300.443 300.108 299.816 299.891 300.332 300.712 300.744 300.596 300.331 299.949 299.545 299.141 298.787 298.518 298.343 298.134 297.865 297.573 297.119 296.387 295.519 294.569 293.642 292.648 291.716 290.796 289.707 288.406 286.816 285.0 282.952 280.689 278.118 275.428 273.048 271.386 270.376 269.617 269.154 268.849 267.781 265.454 263.361 260.189 254.241 247.911 242.793 239.757 236.957 235.356 234.977 233.541 232.591 234.398 237.581 239.765 241.355 241.834 241.889 241.702 241.649 241.887 241.644 241.265 240.977 239.875 239.079 246.04 247.605 249.865 252.662 255.588 257.578 257.765 256.601 255.128 253.782 252.476 251.482 252.302 255.448 264.247 270.505 273.342 273.512 273.224 273.527 274.157 274.761 275.25 275.988 277.307 278.807 280.237 281.438 282.412 283.277 284.145 285.179 286.365 287.48 288.511 289.37 290.403 291.859 293.284 294.444 295.158 295.572 295.955 296.439 296.993 297.567 298.135 298.599 298.976 299.2 299.347 299.614 300.077 300.5 300.732 300.917 301.075 301.027 300.807 300.665 300.627 300.485 300.19 299.89 299.878 300.281 300.698 300.737 300.562 300.323 299.944 299.502 299.115 298.778 298.469 298.276 298.102 297.846 297.519 297.047 296.335 295.486 294.537 293.655 292.726 291.792 290.863 289.821 288.589 287.057 285.275 283.188 280.755 277.996 275.385 273.296 271.892 271.003 270.269 269.7 269.097 267.578 265.171 263.162 260.128 254.438 248.739 243.87 239.947 236.937 235.499 235.025 233.952 232.858 234.342 237.239 239.725 241.0 241.684 241.857 241.656 241.629 241.858 241.645 241.222 240.903 239.838 239.077 246.081 247.707 250.073 253.046 256.157 258.372 258.623 257.568 256.289 255.167 253.689 252.466 252.944 256.268 265.69 270.972 273.423 273.554 273.3 273.6 274.24 274.877 275.382 276.155 277.506 278.992 280.389 281.565 282.494 283.29 284.116 285.184 286.392 287.447 288.359 289.217 290.246 291.581 292.997 294.298 295.214 295.745 296.113 296.472 296.92 297.46 297.969 298.342 298.707 298.998 299.226 299.566 300.106 300.559 300.785 300.963 301.143 301.045 300.752 300.643 300.682 300.582 300.257 299.927 299.867 300.241 300.683 300.732 300.536 300.314 299.951 299.475 299.076 298.748 298.427 298.219 298.048 297.781 297.408 296.915 296.241 295.438 294.503 293.66 292.794 291.859 290.914 289.902 288.708 287.217 285.472 283.344 280.751 277.908 275.455 273.6 272.325 271.478 270.734 269.993 268.937 266.726 263.821 260.294 258.466 254.932 249.783 245.58 240.293 237.004 235.794 235.911 234.675 233.231 233.989 237.177 239.607 240.828 241.592 241.791 241.617 241.613 241.809 241.551 241.108 240.801 239.801 239.076 246.11 247.821 250.324 253.424 256.72 259.139 259.531 258.521 257.462 256.552 255.06 253.397 253.701 257.071 266.575 271.407 273.485 273.598 273.415 273.694 274.333 275.004 275.519 276.345 277.772 279.265 280.635 281.756 282.584 283.295 284.121 285.222 286.415 287.432 288.326 289.261 290.297 291.428 292.61 293.878 294.844 295.395 295.807 296.229 296.701 297.239 297.766 298.2 298.586 298.895 299.155 299.512 300.057 300.571 300.862 301.009 301.099 300.96 300.684 300.668 300.795 300.65 300.197 299.837 299.83 300.231 300.665 300.726 300.513 300.289 299.95 299.475 299.043 298.69 298.371 298.164 297.984 297.704 297.291 296.747 296.073 295.327 294.457 293.665 292.842 291.901 290.929 289.956 288.805 287.338 285.595 283.433 280.746 277.937 275.63 273.941 272.721 271.872 271.127 270.276 268.869 264.598 261.441 258.68 255.704 253.132 250.7 246.939 241.048 237.185 236.43 236.637 235.439 233.4 235.216 237.459 239.42 240.673 241.487 241.627 241.52 241.518 241.787 241.425 240.991 240.72 239.746 239.074 246.137 247.927 250.56 253.799 257.305 259.864 260.371 259.494 258.605 258.05 256.534 254.559 254.618 258.164 267.227 271.76 273.547 273.642 273.54 273.805 274.423 275.104 275.64 276.528 278.032 279.548 280.893 281.91 282.612 283.28 284.182 285.316 286.483 287.526 288.459 289.364 290.305 291.322 292.394 293.583 294.516 295.064 295.545 296.073 296.631 297.197 297.729 298.204 298.591 298.899 299.183 299.529 300.037 300.586 300.943 301.036 301.032 300.954 300.78 300.761 300.833 300.596 300.082 299.737 299.804 300.227 300.645 300.724 300.513 300.252 299.909 299.471 299.044 298.668 298.335 298.11 297.921 297.673 297.285 296.689 295.94 295.189 294.377 293.642 292.86 291.916 290.886 289.938 288.885 287.469 285.691 283.501 280.813 278.104 275.863 274.235 273.008 272.146 271.43 270.595 269.096 265.987 261.795 258.259 254.72 251.801 250.688 247.41 241.352 237.394 237.164 237.346 236.032 233.993 235.505 237.395 239.199 240.412 241.268 241.359 241.371 241.402 241.663 241.459 240.903 240.646 239.706 239.075 246.172 248.014 250.725 254.205 257.841 260.541 261.189 260.419 259.84 259.484 258.127 255.85 255.595 260.306 267.836 272.107 273.585 273.673 273.66 273.927 274.509 275.192 275.763 276.733 278.307 279.825 281.105 282.007 282.6 283.269 284.25 285.423 286.612 287.694 288.622 289.421 290.271 291.288 292.354 293.443 294.3 294.874 295.425 296.009 296.596 297.167 297.708 298.219 298.637 298.95 299.273 299.639 300.118 300.656 301.035 301.092 301.022 300.984 300.862 300.789 300.786 300.513 300.023 299.69 299.759 300.176 300.612 300.725 300.528 300.229 299.86 299.434 299.023 298.648 298.317 298.068 297.846 297.602 297.243 296.639 295.863 295.107 294.297 293.568 292.831 291.948 290.873 289.876 288.882 287.523 285.709 283.512 280.889 278.237 275.979 274.38 273.163 272.31 271.663 270.987 269.815 267.328 264.068 258.755 254.889 251.692 249.714 246.9 240.62 237.55 237.364 237.392 236.611 234.727 235.713 237.334 238.918 239.997 240.896 240.987 241.172 241.255 241.534 241.476 240.84 240.581 239.696 239.076 246.216 248.106 251.014 254.621 258.386 261.169 261.906 261.305 261.007 260.852 259.565 257.186 256.788 262.221 268.696 272.429 273.566 273.672 273.778 274.056 274.598 275.276 275.919 277.01 278.635 280.098 281.262 282.073 282.6 283.286 284.323 285.54 286.786 287.899 288.78 289.468 290.281 291.351 292.413 293.369 294.135 294.763 295.374 295.945 296.546 297.145 297.709 298.261 298.717 299.027 299.363 299.782 300.281 300.796 301.175 301.222 301.11 301.034 300.893 300.775 300.725 300.453 299.987 299.64 299.669 300.075 300.551 300.7 300.52 300.208 299.819 299.386 298.972 298.606 298.293 298.038 297.784 297.509 297.147 296.558 295.809 295.061 294.221 293.457 292.756 291.97 290.896 289.811 288.816 287.508 285.665 283.478 280.929 278.266 275.957 274.362 273.211 272.424 271.893 271.467 270.826 269.243 266.089 262.297 256.529 252.811 248.731 245.667 239.99 237.701 236.87 237.219 237.077 235.701 236.241 237.37 238.595 239.536 240.407 240.555 240.919 241.069 241.388 241.44 240.785 240.549 239.691 239.076 246.255 248.206 251.276 254.983 258.883 261.745 262.581 262.17 262.838 263.638 262.035 258.846 258.265 263.414 269.527 272.676 273.454 273.6 273.881 274.194 274.699 275.384 276.166 277.423 279.059 280.362 281.364 282.133 282.649 283.371 284.443 285.686 286.972 288.089 288.941 289.57 290.35 291.457 292.477 293.316 294.031 294.714 295.338 295.872 296.49 297.115 297.7 298.327 298.841 299.104 299.393 299.881 300.449 300.943 301.294 301.356 301.252 301.124 300.943 300.826 300.747 300.414 299.921 299.562 299.548 299.942 300.457 300.639 300.463 300.171 299.796 299.349 298.916 298.545 298.233 297.989 297.738 297.44 297.066 296.495 295.77 295.013 294.143 293.332 292.643 291.943 290.907 289.747 288.711 287.43 285.584 283.421 280.95 278.276 275.939 274.335 273.257 272.548 272.115 271.861 271.64 270.924 268.658 264.864 261.261 257.267 251.038 243.285 239.629 237.75 236.593 236.763 236.5 235.863 236.783 237.395 238.268 239.044 239.85 240.13 240.666 240.88 241.219 241.3 240.746 240.536 239.686 239.076 246.281 248.293 251.461 255.345 259.403 262.287 263.217 262.922 264.316 264.991 263.651 260.599 259.905 264.48 270.148 272.776 273.281 273.487 273.945 274.323 274.804 275.515 276.449 277.826 279.409 280.537 281.415 282.173 282.741 283.554 284.675 285.878 287.047 288.105 289.041 289.74 290.503 291.541 292.516 293.329 294.054 294.744 295.342 295.857 296.455 297.04 297.612 298.294 298.871 299.121 299.396 299.892 300.432 300.874 301.175 301.266 301.246 301.167 301.026 300.911 300.78 300.357 299.852 299.522 299.484 299.85 300.384 300.603 300.442 300.146 299.761 299.305 298.871 298.495 298.155 297.892 297.644 297.362 297.027 296.482 295.708 294.89 294.03 293.236 292.527 291.832 290.835 289.657 288.57 287.289 285.476 283.358 280.985 278.335 275.998 274.371 273.331 272.684 272.334 272.181 272.089 271.71 270.296 267.792 264.593 260.178 253.457 243.081 239.143 237.886 236.656 236.121 236.165 236.516 236.777 237.442 238.008 238.649 239.347 239.737 240.429 240.697 241.014 241.17 240.728 240.539 239.708 239.075 246.314 248.447 251.751 255.747 259.868 262.794 263.799 263.643 265.283 266.212 264.708 262.373 261.521 266.172 270.674 272.776 273.083 273.378 273.999 274.438 274.914 275.651 276.7 278.144 279.649 280.648 281.452 282.189 282.831 283.809 285.018 286.117 287.061 287.989 289.041 289.957 290.783 291.718 292.626 293.427 294.13 294.761 295.307 295.827 296.412 296.934 297.454 298.124 298.821 299.07 299.403 299.854 300.272 300.654 300.983 301.127 301.178 301.164 301.072 300.947 300.768 300.293 299.784 299.469 299.419 299.77 300.32 300.568 300.434 300.132 299.722 299.251 298.814 298.442 298.088 297.808 297.549 297.274 296.975 296.459 295.645 294.764 293.906 293.152 292.434 291.707 290.722 289.562 288.432 287.116 285.34 283.284 281.016 278.435 276.147 274.485 273.438 272.824 272.564 272.464 272.37 272.031 271.022 269.332 267.171 262.78 254.486 242.964 238.952 238.094 236.743 235.612 235.636 236.551 236.805 237.523 237.864 238.38 238.978 239.412 240.212 240.507 240.836 241.101 240.689 240.544 239.754 239.076 246.341 248.546 252.006 256.145 260.335 263.282 264.295 264.348 265.826 267.329 266.023 263.673 262.996 267.666 271.156 272.684 272.875 273.282 274.062 274.548 275.023 275.778 276.901 278.367 279.789 280.72 281.484 282.188 282.896 284.071 285.325 286.187 287.098 287.831 288.983 290.178 291.143 292.003 292.813 293.567 294.216 294.749 295.229 295.751 296.333 296.817 297.287 297.904 298.549 298.97 299.402 299.769 300.015 300.373 300.803 301.018 301.091 301.125 301.073 300.964 300.759 300.252 299.713 299.395 299.354 299.71 300.26 300.526 300.415 300.115 299.695 299.214 298.763 298.388 298.035 297.747 297.482 297.212 296.93 296.429 295.613 294.69 293.788 293.03 292.31 291.563 290.588 289.455 288.286 286.925 285.194 283.206 281.006 278.489 276.288 274.659 273.628 273.053 272.851 272.738 272.562 272.179 271.305 270.043 268.36 264.34 255.626 242.96 238.832 238.452 237.077 235.506 235.445 236.334 236.733 237.59 237.826 238.247 238.711 239.205 240.013 240.332 240.697 240.997 240.668 240.565 239.784 239.091 246.378 248.657 252.192 256.519 260.775 263.716 264.83 264.879 266.471 268.396 267.874 265.301 264.502 269.157 271.587 272.513 272.647 273.194 274.13 274.673 275.136 275.891 277.041 278.487 279.839 280.767 281.536 282.2 282.955 284.18 285.54 286.48 287.188 287.834 288.975 290.332 291.436 292.303 293.012 293.681 294.265 294.729 295.124 295.597 296.203 296.725 297.184 297.745 298.356 298.901 299.392 299.663 299.769 300.122 300.654 300.908 300.97 301.031 301.041 300.979 300.77 300.234 299.669 299.353 299.331 299.681 300.21 300.497 300.406 300.087 299.657 299.193 298.736 298.347 297.984 297.661 297.39 297.156 296.883 296.373 295.594 294.666 293.679 292.851 292.13 291.387 290.427 289.324 288.134 286.735 285.053 283.136 280.961 278.557 276.444 274.866 273.85 273.333 273.164 273.01 272.727 272.284 271.443 270.309 268.861 264.875 256.533 243.129 238.61 238.159 237.171 235.396 235.525 235.919 236.544 237.612 237.858 238.284 238.664 239.123 239.836 240.188 240.533 240.863 240.733 240.613 239.811 239.108 246.41 248.77 252.472 256.927 261.176 264.125 265.28 265.384 267.044 269.096 269.348 267.355 266.661 270.091 271.854 272.34 272.474 273.163 274.203 274.784 275.227 275.968 277.086 278.482 279.806 280.774 281.543 282.197 283.035 284.276 285.692 286.906 287.426 288.202 289.232 290.413 291.475 292.414 293.131 293.733 294.286 294.734 295.056 295.447 296.059 296.622 297.089 297.642 298.278 298.882 299.373 299.597 299.699 300.052 300.56 300.81 300.903 301.008 301.05 300.985 300.737 300.201 299.672 299.361 299.31 299.614 300.129 300.471 300.417 300.05 299.59 299.146 298.702 298.315 297.952 297.567 297.26 297.064 296.799 296.257 295.501 294.6 293.557 292.659 291.918 291.16 290.21 289.16 287.98 286.566 284.93 283.061 280.899 278.632 276.608 275.075 274.074 273.589 273.4 273.177 272.827 272.391 271.556 270.389 268.971 265.045 257.212 243.896 238.805 238.042 236.981 235.193 235.397 235.785 236.21 237.572 237.948 238.422 238.718 239.179 239.744 240.044 240.379 240.741 240.794 240.641 239.849 239.121 246.441 248.878 252.66 257.293 261.586 264.454 265.642 265.749 267.497 269.567 270.093 269.385 269.212 270.909 272.021 272.191 272.352 273.16 274.271 274.873 275.302 276.017 277.076 278.409 279.721 280.727 281.49 282.161 283.101 284.44 285.773 287.185 287.913 288.447 289.629 290.612 291.558 292.561 293.293 293.818 294.301 294.705 294.975 295.326 295.929 296.506 296.984 297.558 298.215 298.82 299.303 299.549 299.699 300.06 300.529 300.782 300.921 301.053 301.083 300.975 300.688 300.18 299.68 299.337 299.249 299.534 300.043 300.413 300.395 300.02 299.551 299.108 298.656 298.266 297.917 297.508 297.177 296.998 296.729 296.162 295.406 294.51 293.461 292.552 291.783 290.977 290.032 289.034 287.869 286.436 284.819 282.94 280.771 278.67 276.737 275.237 274.258 273.78 273.557 273.281 272.85 272.411 271.636 270.42 268.903 265.258 257.173 246.692 239.203 237.879 236.861 235.098 235.195 235.77 236.123 237.487 238.109 238.576 238.812 239.282 239.711 239.928 240.228 240.712 240.832 240.688 239.878 239.132 246.471 248.976 252.936 257.659 261.957 264.766 265.902 266.169 268.275 269.872 270.509 270.434 270.726 271.641 272.129 272.069 272.268 273.159 274.309 274.939 275.368 276.038 277.027 278.284 279.579 280.613 281.391 282.099 283.111 284.546 285.809 287.255 288.479 288.96 289.906 290.993 291.839 292.844 293.551 293.96 294.298 294.61 294.857 295.245 295.848 296.402 296.896 297.501 298.152 298.728 299.216 299.529 299.742 300.101 300.529 300.789 300.95 301.082 301.092 300.957 300.655 300.189 299.695 299.29 299.178 299.489 299.991 300.33 300.338 300.001 299.544 299.085 298.615 298.206 297.857 297.442 297.11 296.938 296.656 296.087 295.339 294.435 293.399 292.498 291.692 290.824 289.88 288.922 287.755 286.327 284.732 282.816 280.617 278.625 276.777 275.333 274.405 273.904 273.662 273.363 272.874 272.39 271.656 270.462 268.877 265.603 258.268 248.693 239.974 237.693 236.3 235.051 235.054 235.567 236.109 237.425 238.346 238.744 238.958 239.362 239.73 239.828 240.117 240.683 240.871 240.72 239.891 239.139 246.505 249.072 253.143 258.014 262.315 265.038 266.11 266.513 268.587 270.015 270.645 270.892 271.373 272.076 272.195 271.971 272.205 273.149 274.31 274.986 275.435 276.047 276.945 278.096 279.335 280.375 281.193 281.972 283.038 284.505 285.826 287.226 288.74 289.831 290.429 290.88 292.103 292.672 293.57 294.052 294.259 294.464 294.724 295.21 295.809 296.308 296.84 297.502 298.111 298.643 299.174 299.566 299.823 300.157 300.533 300.784 300.931 301.025 301.054 300.936 300.643 300.212 299.721 299.248 299.106 299.454 299.95 300.251 300.269 299.984 299.52 299.031 298.571 298.164 297.779 297.335 297.013 296.84 296.533 295.981 295.278 294.382 293.369 292.476 291.629 290.701 289.752 288.8 287.611 286.219 284.663 282.714 280.518 278.578 276.768 275.385 274.538 274.031 273.785 273.499 272.968 272.41 271.681 270.519 269.021 266.023 259.251 249.564 241.664 238.234 236.287 234.947 235.104 235.659 236.137 237.418 238.665 238.937 239.077 239.454 239.751 239.749 240.068 240.655 240.915 240.735 239.906 239.144 246.54 249.177 253.375 258.327 262.626 265.322 266.263 266.839 268.707 269.957 270.455 270.903 271.61 272.262 272.203 271.925 272.176 273.131 274.274 275.009 275.487 276.056 276.874 277.911 279.048 280.059 280.928 281.778 282.879 284.345 285.754 287.161 288.744 290.07 290.815 290.602 291.22 293.164 293.671 293.94 294.192 294.403 294.703 295.239 295.799 296.244 296.806 297.48 298.045 298.536 299.087 299.531 299.809 300.129 300.504 300.769 300.887 300.96 301.016 300.942 300.637 300.212 299.741 299.239 299.038 299.364 299.877 300.207 300.239 299.971 299.482 298.957 298.51 298.144 297.742 297.263 296.936 296.756 296.411 295.86 295.204 294.338 293.355 292.461 291.566 290.588 289.621 288.636 287.42 286.089 284.603 282.647 280.497 278.555 276.761 275.449 274.698 274.197 273.941 273.707 273.175 272.528 271.768 270.614 269.184 266.382 259.984 250.492 243.93 239.143 236.656 235.184 235.182 236.033 236.282 237.628 239.118 239.14 239.144 239.551 239.759 239.715 240.01 240.677 240.945 240.753 239.911 239.148 246.575 249.277 253.636 258.66 262.928 265.511 266.467 267.054 268.743 269.763 270.147 270.699 271.619 272.276 272.167 271.902 272.151 273.088 274.212 275.013 275.53 276.077 276.834 277.768 278.79 279.753 280.666 281.577 282.689 284.156 285.639 287.113 288.698 290.143 291.393 291.87 291.712 293.167 293.463 293.775 294.116 294.386 294.724 295.268 295.796 296.22 296.778 297.421 297.954 298.422 298.903 299.28 299.682 299.994 300.385 300.69 300.829 300.886 300.962 300.921 300.62 300.192 299.729 299.218 298.971 299.273 299.822 300.179 300.207 299.948 299.476 298.93 298.452 298.098 297.697 297.201 296.862 296.681 296.335 295.789 295.152 294.302 293.334 292.418 291.491 290.479 289.482 288.452 287.212 285.927 284.503 282.602 280.515 278.552 276.766 275.555 274.89 274.407 274.124 273.896 273.405 272.751 271.914 270.769 269.337 266.488 260.44 250.829 245.365 240.488 237.714 235.597 235.334 236.497 236.697 238.195 239.673 239.337 239.193 239.633 239.785 239.668 239.929 240.688 240.972 240.769 239.905 239.151 246.602 249.367 253.825 258.97 263.189 265.685 266.583 267.19 268.693 269.498 269.796 270.405 271.466 272.115 272.071 271.887 272.121 273.007 274.13 275.002 275.562 276.107 276.827 277.681 278.602 279.512 280.452 281.405 282.503 283.968 285.526 287.092 288.694 290.196 291.585 292.299 292.564 292.786 293.275 293.644 294.038 294.368 294.746 295.271 295.776 296.223 296.768 297.355 297.867 298.351 298.833 299.187 299.515 299.798 300.18 300.55 300.757 300.817 300.89 300.866 300.591 300.162 299.676 299.152 298.889 299.189 299.776 300.15 300.162 299.909 299.477 298.93 298.41 298.042 297.641 297.122 296.755 296.572 296.257 295.739 295.106 294.258 293.292 292.34 291.395 290.358 289.335 288.274 287.03 285.777 284.372 282.516 280.53 278.581 276.833 275.72 275.12 274.652 274.337 274.061 273.574 272.949 272.105 270.953 269.469 266.529 260.477 251.42 246.698 242.949 238.981 236.258 235.783 236.572 237.403 238.863 240.253 239.481 239.253 239.701 239.844 239.617 239.833 240.666 241.02 240.794 239.907 239.151 236.581 239.97 245.124 250.779 254.863 256.043 255.26 255.588 260.696 263.458 265.736 267.185 269.05 270.772 272.067 273.041 273.772 274.468 275.171 275.897 276.522 277.12 277.738 278.448 279.225 280.022 280.936 281.866 282.823 284.173 285.774 287.355 288.843 290.15 291.33 292.153 292.69 293.052 293.34 293.672 294.014 294.411 294.968 295.561 296.103 296.687 297.306 297.871 298.395 298.935 299.391 299.815 300.149 300.223 300.282 300.518 300.758 300.82 300.822 300.763 300.541 300.166 299.511 298.754 298.533 298.99 299.634 300.016 299.989 299.712 299.37 298.956 298.472 298.062 297.749 297.261 296.726 296.371 296.038 295.514 294.593 293.257 291.89 290.732 289.796 288.893 288.104 287.331 286.388 285.34 283.983 282.246 280.669 279.053 277.444 276.302 275.581 275.06 274.744 274.563 274.332 274.03 273.59 272.983 272.077 270.345 266.724 261.891 259.027 256.553 254.667 251.363 249.553 247.78 248.405 248.235 248.909 248.214 247.202 246.393 245.07 244.22 244.277 243.902 242.88 242.604 242.266 241.978 236.657 240.039 245.311 251.063 255.042 256.004 255.206 255.729 260.674 263.092 265.485 266.924 268.626 270.496 271.892 273.003 273.723 274.403 275.16 275.887 276.492 277.099 277.741 278.441 279.221 280.033 280.914 281.775 282.717 284.151 285.864 287.469 288.834 290.039 291.169 291.973 292.481 292.835 293.178 293.555 293.9 294.299 294.832 295.37 295.935 296.609 297.257 297.793 298.354 298.907 299.334 299.718 300.059 300.193 300.274 300.46 300.636 300.711 300.755 300.713 300.511 300.114 299.406 298.646 298.43 298.871 299.545 299.991 300.0 299.714 299.376 298.969 298.489 298.078 297.777 297.3 296.723 296.302 295.944 295.462 294.586 293.237 291.826 290.61 289.676 288.794 288.022 287.232 286.269 285.246 283.975 282.423 280.938 279.38 277.838 276.754 276.043 275.548 275.169 274.826 274.525 274.201 273.766 273.188 272.256 270.278 266.592 262.395 259.743 257.569 255.459 251.869 249.617 247.807 248.615 248.28 248.981 248.221 247.236 246.436 245.138 244.275 244.307 243.779 242.745 242.534 242.228 241.958 236.546 240.169 245.492 251.324 255.227 255.947 255.222 255.938 260.523 262.791 265.284 266.775 268.242 270.206 271.693 272.911 273.65 274.335 275.137 275.865 276.458 277.079 277.738 278.429 279.236 280.098 280.971 281.771 282.702 284.203 285.967 287.544 288.815 289.908 290.983 291.775 292.263 292.613 293.013 293.467 293.877 294.288 294.772 295.249 295.825 296.552 297.215 297.733 298.307 298.866 299.287 299.665 299.993 300.153 300.254 300.4 300.524 300.605 300.694 300.697 300.519 300.079 299.317 298.544 298.321 298.767 299.485 299.969 299.99 299.706 299.378 298.986 298.513 298.07 297.73 297.277 296.726 296.27 295.898 295.462 294.632 293.257 291.787 290.495 289.55 288.704 287.985 287.196 286.182 285.081 283.863 282.529 281.136 279.622 278.209 277.17 276.461 275.974 275.567 275.138 274.725 274.344 273.912 273.345 272.302 270.108 266.281 262.72 260.382 258.347 256.398 252.374 249.903 248.011 248.362 248.412 248.92 248.197 247.183 246.426 245.163 244.389 244.314 243.665 242.622 242.471 242.184 241.937 236.599 240.27 245.647 251.551 255.35 255.879 255.236 256.2 260.338 262.694 265.183 266.706 268.014 269.945 271.493 272.762 273.54 274.253 275.093 275.826 276.416 277.05 277.71 278.39 279.222 280.145 281.048 281.833 282.77 284.314 286.082 287.633 288.847 289.818 290.804 291.583 292.082 292.46 292.896 293.43 293.928 294.351 294.784 295.236 295.823 296.534 297.145 297.639 298.232 298.823 299.282 299.678 299.961 300.09 300.192 300.339 300.457 300.547 300.647 300.672 300.513 300.046 299.248 298.444 298.178 298.63 299.411 299.945 299.983 299.704 299.365 298.983 298.539 298.075 297.675 297.244 296.732 296.242 295.861 295.493 294.74 293.368 291.835 290.43 289.431 288.602 287.933 287.167 286.134 284.931 283.675 282.472 281.182 279.753 278.502 277.521 276.807 276.317 275.88 275.384 274.918 274.509 274.05 273.466 272.232 269.791 265.85 262.868 260.765 258.994 256.791 252.926 250.497 248.371 248.387 248.437 248.862 248.179 247.123 246.348 245.152 244.533 244.275 243.591 242.562 242.415 242.14 241.916 236.668 240.363 245.8 251.745 255.44 255.801 255.273 256.468 260.124 262.736 265.194 266.809 268.108 269.818 271.29 272.545 273.364 274.113 274.998 275.743 276.351 276.994 277.632 278.302 279.158 280.118 281.076 281.925 282.917 284.474 286.215 287.75 288.939 289.815 290.658 291.384 291.928 292.363 292.848 293.445 293.981 294.418 294.855 295.355 295.965 296.565 297.029 297.487 298.101 298.755 299.291 299.706 299.947 300.018 300.129 300.322 300.481 300.584 300.643 300.614 300.437 299.966 299.172 298.353 298.043 298.472 299.313 299.918 300.018 299.753 299.367 298.962 298.569 298.123 297.681 297.262 296.761 296.216 295.816 295.516 294.866 293.564 291.982 290.438 289.344 288.505 287.839 287.077 286.06 284.787 283.461 282.334 281.152 279.811 278.708 277.839 277.106 276.564 276.083 275.556 275.088 274.664 274.212 273.54 272.122 269.344 265.433 262.974 261.204 259.474 256.727 253.603 250.583 248.978 248.631 248.523 248.833 248.221 247.04 246.222 245.22 244.662 244.235 243.599 242.524 242.357 242.111 241.891 236.738 240.413 245.969 251.918 255.503 255.687 255.315 256.711 259.986 262.874 265.213 266.913 268.317 269.924 271.192 272.342 273.159 273.932 274.847 275.609 276.257 276.914 277.522 278.197 279.068 280.017 281.013 281.97 283.028 284.541 286.226 287.736 288.933 289.802 290.554 291.214 291.766 292.257 292.793 293.401 293.94 294.401 294.911 295.492 296.091 296.604 296.998 297.438 298.04 298.685 299.256 299.68 299.926 300.02 300.16 300.364 300.556 300.683 300.703 300.614 300.396 299.876 299.07 298.295 298.002 298.412 299.241 299.868 300.028 299.802 299.392 298.966 298.598 298.175 297.709 297.279 296.772 296.205 295.795 295.506 294.927 293.772 292.228 290.571 289.325 288.419 287.699 286.898 285.915 284.628 283.246 282.173 281.103 279.897 278.9 278.097 277.376 276.782 276.221 275.677 275.225 274.776 274.333 273.591 271.974 268.792 265.235 263.174 261.623 259.617 257.167 254.335 251.67 250.0 249.049 248.754 248.815 248.28 246.987 246.109 245.287 244.746 244.259 243.595 242.502 242.302 242.092 241.864 236.863 240.491 246.11 252.07 255.539 255.58 255.38 256.952 259.904 262.99 265.282 267.036 268.493 270.016 271.139 272.173 272.953 273.734 274.664 275.445 276.139 276.82 277.409 278.105 278.984 279.895 280.906 281.959 283.052 284.487 286.085 287.54 288.743 289.65 290.402 291.039 291.59 292.134 292.704 293.301 293.847 294.36 294.959 295.574 296.149 296.639 297.044 297.489 298.059 298.648 299.2 299.633 299.894 300.021 300.17 300.368 300.586 300.731 300.728 300.619 300.386 299.819 298.982 298.241 297.976 298.369 299.185 299.832 300.02 299.82 299.403 298.97 298.623 298.224 297.751 297.294 296.767 296.197 295.776 295.47 294.942 293.938 292.48 290.762 289.353 288.322 287.537 286.715 285.775 284.496 283.096 282.046 281.075 280.013 279.089 278.314 277.614 276.97 276.349 275.797 275.318 274.819 274.363 273.595 271.778 268.148 265.229 263.554 262.082 260.136 257.562 254.745 252.97 251.166 249.591 248.89 248.771 248.301 246.961 245.978 245.256 244.839 244.243 243.544 242.478 242.247 242.077 241.835 236.808 240.603 246.266 252.218 255.539 255.495 255.394 257.117 259.866 263.136 265.41 267.1 268.563 270.047 271.086 272.019 272.761 273.527 274.458 275.261 276.001 276.713 277.311 278.04 278.915 279.783 280.799 281.912 283.001 284.337 285.828 287.224 288.429 289.378 290.172 290.832 291.421 292.025 292.617 293.194 293.743 294.311 294.987 295.61 296.164 296.665 297.105 297.57 298.104 298.637 299.143 299.571 299.846 300.002 300.149 300.34 300.562 300.693 300.669 300.577 300.352 299.769 298.912 298.193 297.937 298.308 299.137 299.837 300.043 299.836 299.402 298.962 298.638 298.275 297.821 297.336 296.775 296.191 295.732 295.393 294.935 294.103 292.747 291.015 289.447 288.252 287.387 286.593 285.732 284.501 283.152 282.077 281.104 280.142 279.257 278.467 277.795 277.148 276.487 275.924 275.378 274.773 274.319 273.516 271.524 267.577 265.368 264.064 262.609 260.818 258.103 255.595 253.958 252.071 250.081 248.976 248.734 248.241 246.906 245.795 245.114 244.922 244.195 243.469 242.436 242.201 242.064 241.806 236.773 240.726 246.364 252.355 255.504 255.437 255.465 257.249 259.981 263.245 265.501 267.095 268.512 270.008 271.011 271.865 272.57 273.311 274.229 275.058 275.842 276.596 277.235 278.004 278.864 279.702 280.716 281.838 282.876 284.103 285.504 286.87 288.09 289.066 289.885 290.59 291.258 291.937 292.55 293.119 293.656 294.246 294.971 295.601 296.131 296.633 297.103 297.583 298.107 298.617 299.095 299.516 299.832 300.058 300.208 300.343 300.48 300.565 300.551 300.502 300.299 299.692 298.814 298.133 297.894 298.23 299.06 299.834 300.085 299.87 299.421 298.971 298.645 298.31 297.886 297.384 296.8 296.195 295.669 295.285 294.905 294.236 293.004 291.328 289.672 288.303 287.294 286.493 285.695 284.534 283.278 282.174 281.15 280.232 279.375 278.576 277.922 277.3 276.64 276.067 275.447 274.356 274.212 273.342 271.191 267.354 265.559 264.487 263.088 261.384 259.266 256.402 254.603 252.573 250.409 249.104 248.67 248.193 246.745 245.59 244.904 244.939 244.14 243.355 242.384 242.157 242.052 241.789 236.824 240.787 246.503 252.438 255.47 255.379 255.421 257.315 260.123 263.324 265.67 267.045 268.406 269.898 270.872 271.745 272.421 273.137 274.045 274.908 275.727 276.508 277.188 277.985 278.847 279.674 280.669 281.737 282.707 283.895 285.283 286.662 287.896 288.874 289.688 290.409 291.125 291.845 292.469 293.063 293.607 294.196 294.897 295.495 296.006 296.514 297.017 297.523 298.059 298.583 299.075 299.51 299.89 300.198 300.345 300.38 300.41 300.469 300.504 300.529 300.344 299.669 298.731 298.071 297.86 298.174 298.976 299.782 300.083 299.896 299.472 299.029 298.679 298.338 297.931 297.408 296.814 296.212 295.652 295.226 294.881 294.306 293.221 291.744 290.128 288.612 287.343 286.402 285.595 284.503 283.352 282.229 281.182 280.296 279.448 278.663 278.028 277.432 276.796 276.212 275.544 274.629 273.737 273.107 270.777 267.419 265.799 264.754 263.423 261.757 260.006 256.989 255.032 252.896 250.765 249.22 248.541 248.131 246.529 245.366 244.74 244.878 244.1 243.224 242.328 242.116 242.037 241.781 236.892 240.833 246.593 252.538 255.417 255.321 255.469 257.317 260.037 263.296 265.798 267.05 268.283 269.714 270.676 271.641 272.303 272.987 273.898 274.807 275.655 276.454 277.163 277.984 278.856 279.684 280.643 281.61 282.521 283.729 285.132 286.509 287.745 288.729 289.548 290.27 290.993 291.704 292.329 292.954 293.544 294.147 294.808 295.355 295.848 296.379 296.925 297.447 297.972 298.504 299.025 299.479 299.874 300.216 300.383 300.397 300.389 300.443 300.511 300.566 300.386 299.69 298.738 298.083 297.868 298.151 298.932 299.758 300.086 299.908 299.503 299.063 298.69 298.354 297.983 297.449 296.83 296.232 295.667 295.22 294.879 294.351 293.37 292.069 290.558 289.066 287.608 286.441 285.504 284.456 283.367 282.226 281.184 280.343 279.523 278.768 278.144 277.566 276.954 276.341 275.663 274.828 273.609 272.803 270.467 267.511 265.983 264.673 263.475 261.884 259.36 257.191 255.52 253.252 250.986 249.251 248.452 248.011 246.35 245.222 244.626 244.715 244.08 243.175 242.285 242.065 242.02 241.773 237.027 240.88 246.663 252.609 255.348 255.263 255.493 257.36 259.739 263.046 265.807 267.029 268.159 269.495 270.448 271.505 272.194 272.852 273.767 274.733 275.614 276.431 277.163 278.011 278.9 279.74 280.646 281.483 282.339 283.603 285.024 286.364 287.576 288.565 289.397 290.125 290.838 291.52 292.14 292.802 293.455 294.089 294.724 295.235 295.718 296.267 296.838 297.361 297.866 298.384 298.933 299.401 299.762 300.093 300.316 300.391 300.414 300.468 300.522 300.538 300.356 299.701 298.807 298.163 297.919 298.153 298.912 299.751 300.084 299.897 299.5 299.057 298.653 298.327 298.007 297.492 296.852 296.255 295.692 295.217 294.872 294.413 293.545 292.362 290.912 289.489 287.966 286.647 285.579 284.563 283.502 282.276 281.218 280.382 279.609 278.9 278.287 277.721 277.083 276.434 275.799 274.991 273.865 272.424 270.211 267.648 266.079 263.915 262.548 261.558 259.028 257.077 255.375 253.336 251.121 249.274 248.53 247.868 246.269 245.066 244.452 244.542 244.082 243.146 242.292 242.012 242.006 241.765 237.067 240.942 246.74 252.661 255.3 255.173 255.525 257.215 259.553 262.831 265.595 266.835 267.99 269.312 270.201 271.286 272.053 272.699 273.603 274.644 275.578 276.426 277.194 278.075 279.004 279.877 280.715 281.405 282.213 283.541 284.946 286.222 287.379 288.352 289.176 289.909 290.618 291.305 291.931 292.612 293.312 293.987 294.651 295.179 295.659 296.187 296.736 297.269 297.761 298.248 298.824 299.31 299.612 299.912 300.22 300.387 300.455 300.492 300.522 300.489 300.297 299.699 298.894 298.266 297.986 298.185 298.92 299.735 300.043 299.845 299.47 299.025 298.592 298.252 297.974 297.523 296.894 296.285 295.716 295.2 294.842 294.484 293.754 292.656 291.25 289.902 288.393 286.99 285.787 284.762 283.735 282.478 281.376 280.475 279.728 279.062 278.458 277.905 277.237 276.534 275.952 275.195 274.068 272.043 269.901 267.632 265.807 263.525 261.898 261.485 258.998 256.833 254.58 253.065 250.982 249.393 248.627 247.75 246.14 244.799 244.237 244.377 244.057 243.109 242.298 241.978 241.984 241.757 236.992 241.0 246.815 252.695 255.244 255.097 255.504 257.135 259.549 262.581 265.417 266.733 267.907 269.167 269.981 271.031 271.902 272.55 273.425 274.516 275.504 276.4 277.22 278.135 279.113 280.03 280.834 281.451 282.244 283.557 284.919 286.147 287.258 288.181 288.975 289.694 290.411 291.142 291.809 292.49 293.183 293.878 294.576 295.136 295.623 296.095 296.604 297.161 297.68 298.18 298.77 299.278 299.556 299.812 300.153 300.382 300.473 300.49 300.533 300.54 300.35 299.765 298.992 298.338 298.003 298.201 298.965 299.756 300.034 299.816 299.433 298.984 298.554 298.204 297.938 297.571 296.99 296.323 295.708 295.155 294.779 294.508 293.969 293.0 291.664 290.349 288.858 287.404 286.071 285.017 283.989 282.788 281.636 280.646 279.884 279.253 278.678 278.116 277.425 276.704 276.112 275.413 274.245 272.451 269.663 267.532 265.195 263.651 262.104 260.696 258.939 256.797 254.31 252.673 250.786 249.534 248.662 247.6 245.909 244.448 244.02 244.216 243.999 243.017 242.315 241.96 241.96 241.75 237.014 241.062 246.86 252.719 255.195 255.053 255.403 257.06 259.878 262.302 265.232 266.702 267.854 269.042 269.84 270.819 271.747 272.421 273.267 274.357 275.379 276.331 277.21 278.152 279.164 280.115 280.942 281.573 282.365 283.61 284.899 286.083 287.153 288.035 288.8 289.509 290.236 291.016 291.732 292.413 293.091 293.786 294.487 295.07 295.576 296.025 296.506 297.061 297.594 298.12 298.733 299.239 299.504 299.759 300.133 300.411 300.52 300.509 300.534 300.575 300.399 299.836 299.085 298.372 297.942 298.138 298.956 299.763 300.039 299.815 299.393 298.915 298.487 298.143 297.884 297.589 297.057 296.318 295.634 295.077 294.712 294.469 294.054 293.241 292.026 290.72 289.276 287.869 286.442 285.303 284.249 283.117 281.969 280.89 280.1 279.457 278.901 278.359 277.649 276.911 276.275 275.606 274.587 273.017 269.647 267.684 264.921 263.716 262.442 260.825 259.043 256.829 254.206 252.387 250.529 249.546 248.652 247.381 245.605 244.213 243.873 244.049 243.873 242.857 242.325 241.945 241.93 241.746 237.025 241.071 246.897 252.732 255.161 254.996 255.378 257.026 260.124 262.05 265.044 266.66 267.786 268.887 269.747 270.711 271.611 272.314 273.138 274.188 275.211 276.214 277.151 278.109 279.132 280.113 281.014 281.732 282.542 283.689 284.864 285.979 287.007 287.86 288.61 289.328 290.072 290.901 291.664 292.353 293.016 293.703 294.391 294.993 295.531 295.99 296.452 296.975 297.503 298.067 298.691 299.168 299.451 299.778 300.198 300.487 300.585 300.531 300.526 300.58 300.413 299.866 299.127 298.362 297.84 298.036 298.89 299.721 300.02 299.815 299.364 298.848 298.402 298.057 297.791 297.533 297.033 296.247 295.512 294.978 294.644 294.408 294.072 293.411 292.329 291.027 289.601 288.233 286.797 285.582 284.487 283.479 282.366 281.247 280.398 279.708 279.105 278.525 277.856 277.108 276.409 275.8 275.003 273.421 270.081 267.995 265.162 263.817 262.422 261.211 259.256 256.854 254.058 252.107 250.404 249.476 248.622 247.118 245.457 244.136 243.749 243.828 243.708 242.667 242.309 241.932 241.901 241.742 237.059 241.129 246.922 252.734 255.096 254.952 255.368 256.839 259.855 261.729 264.839 266.611 267.77 268.829 269.615 270.629 271.539 272.253 273.049 274.001 274.991 276.033 277.019 277.984 278.992 279.998 281.016 281.895 282.756 283.796 284.821 285.826 286.78 287.589 288.366 289.113 289.873 290.753 291.576 292.279 292.929 293.599 294.276 294.899 295.478 295.956 296.403 296.878 297.405 298.021 298.648 299.088 299.441 299.91 300.372 300.595 300.613 300.508 300.509 300.598 300.429 299.859 299.101 298.297 297.743 297.957 298.833 299.668 299.982 299.805 299.347 298.802 298.331 297.974 297.673 297.384 296.883 296.09 295.347 294.859 294.569 294.337 294.049 293.533 292.623 291.363 289.951 288.557 287.133 285.851 284.723 283.803 282.762 281.736 280.823 280.002 279.301 278.633 277.955 277.209 276.485 275.955 275.396 273.889 271.551 268.152 264.988 263.819 262.551 260.981 259.264 256.656 253.846 251.918 250.216 249.277 248.551 246.953 245.336 244.014 243.572 243.6 243.49 242.594 242.274 241.92 241.885 241.737 237.112 241.159 246.942 252.699 255.051 254.883 255.372 256.676 259.659 261.644 264.554 266.583 267.771 268.798 269.599 270.594 271.517 272.275 273.044 273.882 274.796 275.843 276.849 277.815 278.808 279.828 280.938 281.98 282.921 283.898 284.824 285.734 286.586 287.362 288.172 288.94 289.699 290.598 291.446 292.17 292.83 293.484 294.157 294.793 295.386 295.872 296.323 296.781 297.315 297.969 298.617 299.086 299.514 300.026 300.446 300.613 300.599 300.483 300.486 300.586 300.406 299.825 299.035 298.186 297.64 297.874 298.756 299.629 299.98 299.799 299.322 298.762 298.268 297.902 297.585 297.228 296.689 295.892 295.12 294.742 294.471 294.242 293.973 293.606 292.937 291.805 290.396 288.869 287.412 286.095 284.976 284.089 283.097 282.151 281.233 280.352 279.492 278.713 278.005 277.214 276.508 276.039 275.656 274.626 272.224 268.462 264.757 263.41 262.581 261.025 258.831 256.674 253.717 251.844 250.373 249.022 248.395 246.758 245.058 243.78 243.327 243.404 243.295 242.572 242.252 241.891 241.872 241.73 237.154 241.167 246.935 252.674 254.996 254.923 255.459 256.556 259.52 261.484 264.207 266.555 267.73 268.729 269.641 270.58 271.519 272.329 273.086 273.834 274.667 275.678 276.679 277.644 278.633 279.667 280.841 282.002 283.012 283.958 284.833 285.664 286.44 287.206 288.041 288.825 289.588 290.474 291.305 292.048 292.742 293.391 294.051 294.693 295.293 295.799 296.272 296.737 297.273 297.945 298.619 299.144 299.618 300.081 300.416 300.586 300.599 300.483 300.453 300.519 300.331 299.755 298.925 298.02 297.5 297.756 298.638 299.566 299.979 299.795 299.306 298.744 298.208 297.803 297.485 297.115 296.582 295.812 295.045 294.699 294.402 294.15 293.858 293.563 293.114 292.218 290.926 289.273 287.71 286.343 285.238 284.342 283.405 282.491 281.524 280.603 279.686 278.832 278.052 277.215 276.517 276.049 275.764 275.169 272.696 269.354 264.798 262.828 261.751 260.55 258.318 256.635 253.587 251.787 250.072 248.835 248.221 246.403 244.728 243.543 243.097 243.237 243.122 242.56 242.234 241.838 241.862 241.722 237.193 241.251 246.928 252.624 254.942 254.926 255.555 256.551 259.261 261.047 263.823 266.464 267.682 268.687 269.726 270.583 271.554 272.401 273.168 273.856 274.608 275.548 276.521 277.477 278.477 279.539 280.756 281.991 283.038 283.975 284.798 285.566 286.303 287.079 287.936 288.744 289.53 290.395 291.179 291.935 292.683 293.33 293.96 294.605 295.22 295.759 296.262 296.739 297.285 297.962 298.655 299.235 299.728 300.11 300.364 300.56 300.617 300.503 300.433 300.449 300.26 299.676 298.774 297.82 297.357 297.666 298.545 299.507 299.967 299.773 299.286 298.74 298.157 297.694 297.37 297.024 296.551 295.959 295.281 294.702 294.338 294.041 293.709 293.448 293.141 292.448 291.337 289.713 288.055 286.631 285.53 284.592 283.681 282.754 281.738 280.784 279.843 278.991 278.128 277.259 276.531 276.001 275.754 275.431 273.613 269.959 265.468 262.211 260.807 260.016 258.097 256.248 253.488 251.732 249.936 248.686 248.016 246.096 244.518 243.372 242.921 243.068 242.975 242.481 242.209 241.774 241.854 241.713 237.271 241.246 246.896 252.576 254.878 254.961 255.63 256.659 258.867 260.209 263.272 266.303 267.704 268.804 269.842 270.666 271.61 272.508 273.314 273.977 274.631 275.453 276.359 277.29 278.331 279.435 280.691 281.959 283.017 283.938 284.695 285.415 286.15 286.944 287.829 288.681 289.526 290.375 291.096 291.859 292.647 293.272 293.868 294.528 295.168 295.744 296.275 296.763 297.339 298.022 298.716 299.335 299.842 300.158 300.367 300.585 300.661 300.509 300.401 300.406 300.228 299.604 298.605 297.619 297.227 297.609 298.507 299.487 299.944 299.716 299.219 298.686 298.077 297.58 297.248 296.929 296.54 296.06 295.374 294.686 294.233 293.892 293.536 293.291 293.062 292.532 291.649 290.198 288.493 286.912 285.767 284.812 283.942 282.956 281.9 280.922 279.989 279.126 278.21 277.345 276.538 275.953 275.677 275.501 274.274 270.827 266.451 262.041 260.182 259.194 257.662 255.726 253.221 251.641 249.74 248.613 247.779 245.865 244.293 243.154 242.731 242.885 242.842 242.294 242.149 241.747 241.849 241.698 237.245 241.2 246.855 252.502 254.829 255.01 255.795 256.996 258.604 259.683 262.841 266.092 267.728 268.936 269.891 270.743 271.66 272.639 273.503 274.169 274.745 275.445 276.232 277.122 278.202 279.36 280.659 281.933 282.988 283.878 284.603 285.315 286.075 286.902 287.809 288.689 289.559 290.391 291.087 291.83 292.593 293.192 293.799 294.507 295.167 295.752 296.306 296.825 297.412 298.096 298.789 299.426 299.928 300.209 300.412 300.638 300.692 300.493 300.35 300.36 300.181 299.533 298.523 297.553 297.14 297.505 298.442 299.469 299.911 299.67 299.158 298.583 297.959 297.479 297.134 296.789 296.434 296.01 295.32 294.555 294.037 293.658 293.315 293.092 292.893 292.5 291.861 290.664 288.982 287.232 286.016 285.052 284.191 283.096 282.014 281.039 280.136 279.21 278.28 277.418 276.548 275.933 275.616 275.489 274.726 271.745 267.176 262.29 260.06 258.398 257.299 255.236 252.837 251.527 249.43 248.599 247.487 245.421 243.902 242.775 242.444 242.708 242.645 242.134 242.071 241.732 241.844 241.677 237.214 241.247 246.806 252.426 254.761 255.027 255.916 257.086 258.297 259.774 262.332 265.847 267.697 269.05 269.948 270.806 271.721 272.774 273.714 274.385 274.908 275.507 276.17 276.989 278.088 279.304 280.641 281.908 282.952 283.816 284.538 285.287 286.098 286.957 287.882 288.769 289.616 290.406 291.082 291.8 292.527 293.13 293.79 294.537 295.192 295.771 296.362 296.927 297.52 298.189 298.88 299.497 299.964 300.236 300.458 300.676 300.706 300.489 300.334 300.341 300.138 299.459 298.483 297.547 297.069 297.384 298.383 299.45 299.855 299.608 299.107 298.5 297.873 297.409 297.026 296.638 296.301 295.893 295.185 294.399 293.845 293.426 293.081 292.874 292.67 292.356 291.944 291.062 289.499 287.675 286.335 285.345 284.42 283.248 282.14 281.139 280.255 279.259 278.337 277.466 276.587 275.958 275.59 275.432 274.969 272.468 268.008 261.444 258.932 257.919 257.212 255.007 252.56 251.43 249.07 248.542 247.026 244.955 243.518 242.4 242.174 242.567 242.429 242.005 241.977 241.719 241.835 241.649 237.267 241.286 246.753 252.324 254.695 255.098 256.013 256.882 257.963 259.593 261.737 265.529 267.669 269.154 270.009 270.856 271.784 272.907 273.929 274.623 275.117 275.623 276.174 276.898 277.998 279.267 280.628 281.879 282.9 283.742 284.479 285.298 286.174 287.06 288.005 288.897 289.699 290.431 291.071 291.759 292.476 293.121 293.837 294.588 295.22 295.792 296.419 297.047 297.66 298.318 298.992 299.549 299.958 300.26 300.534 300.723 300.7 300.48 300.341 300.35 300.111 299.388 298.436 297.515 296.969 297.267 298.353 299.444 299.783 299.511 299.029 298.421 297.815 297.363 296.923 296.495 296.177 295.763 295.034 294.24 293.643 293.167 292.812 292.622 292.421 292.155 291.849 291.172 289.854 288.25 286.835 285.692 284.621 283.437 282.295 281.267 280.316 279.3 278.41 277.522 276.664 276.02 275.605 275.369 275.041 273.142 268.09 261.814 258.109 257.298 256.9 254.799 252.455 251.414 248.779 248.404 246.696 244.646 243.196 242.15 241.988 242.433 242.176 241.902 241.916 241.698 241.817 241.603 237.29 241.238 246.685 252.199 254.627 255.116 256.066 256.659 257.495 259.047 261.005 265.129 267.708 269.246 270.09 270.87 271.847 273.048 274.153 274.908 275.406 275.827 276.251 276.864 277.95 279.259 280.627 281.847 282.834 283.649 284.411 285.309 286.257 287.145 288.105 289.017 289.788 290.469 291.071 291.756 292.523 293.22 293.939 294.642 295.269 295.857 296.5 297.2 297.856 298.515 299.15 299.605 299.919 300.283 300.633 300.789 300.69 300.474 300.34 300.334 300.068 299.326 298.369 297.415 296.802 297.124 298.324 299.439 299.736 299.424 298.93 298.33 297.766 297.325 296.823 296.359 296.043 295.614 294.885 294.084 293.425 292.881 292.513 292.332 292.138 291.908 291.638 291.081 290.021 288.705 287.247 285.979 284.821 283.673 282.472 281.401 280.349 279.358 278.537 277.642 276.769 276.081 275.633 275.313 275.078 273.531 268.551 262.147 258.155 256.862 256.243 254.624 252.404 250.974 248.946 248.385 246.363 244.188 242.761 241.777 241.735 242.26 241.997 241.74 241.849 241.666 241.786 241.548 237.278 241.233 246.609 252.054 254.533 255.157 256.082 256.416 256.847 258.773 260.419 264.815 267.818 269.38 270.163 270.874 271.902 273.165 274.323 275.148 275.673 276.059 276.398 276.925 277.987 279.308 280.652 281.835 282.807 283.614 284.403 285.348 286.316 287.182 288.13 289.045 289.811 290.497 291.142 291.874 292.682 293.383 294.058 294.728 295.393 296.004 296.641 297.36 298.046 298.677 299.244 299.63 299.911 300.287 300.642 300.765 300.666 300.485 300.328 300.244 299.966 299.277 298.317 297.318 296.706 297.064 298.303 299.411 299.718 299.404 298.889 298.283 297.731 297.274 296.737 296.255 295.904 295.458 294.758 293.946 293.198 292.575 292.176 291.967 291.78 291.598 291.335 290.844 290.01 288.972 287.54 286.171 284.951 283.843 282.622 281.515 280.379 279.431 278.638 277.811 276.868 276.149 275.637 275.267 275.079 273.573 268.917 261.471 257.251 256.275 255.659 254.376 252.265 250.87 248.944 248.303 245.84 243.615 242.222 241.334 241.402 242.102 241.85 241.506 241.771 241.591 241.75 241.515 237.273 241.285 246.492 251.89 254.43 255.155 256.073 256.108 256.264 258.055 259.815 264.59 267.903 269.556 270.231 270.871 271.941 273.245 274.445 275.327 275.89 276.279 276.581 277.071 278.099 279.395 280.696 281.848 282.82 283.653 284.47 285.429 286.374 287.209 288.124 289.012 289.765 290.511 291.249 292.048 292.856 293.539 294.18 294.844 295.534 296.148 296.777 297.506 298.188 298.759 299.256 299.627 299.94 300.297 300.589 300.648 300.565 300.439 300.286 300.143 299.855 299.199 298.228 297.213 296.657 297.078 298.308 299.367 299.656 299.329 298.814 298.235 297.692 297.209 296.653 296.163 295.772 295.32 294.654 293.827 293.013 292.349 291.907 291.607 291.368 291.197 290.918 290.453 289.816 288.985 287.682 286.26 285.028 283.883 282.667 281.557 280.428 279.485 278.708 277.916 276.967 276.225 275.653 275.276 275.034 273.414 268.566 260.199 256.149 255.77 255.271 254.046 252.025 251.127 248.873 247.995 245.476 243.234 241.795 241.095 241.171 242.006 241.622 241.321 241.651 241.498 241.718 241.513 237.313 241.179 246.385 251.727 254.314 255.13 255.982 255.803 255.631 257.306 259.231 264.315 267.952 269.764 270.32 270.872 271.966 273.295 274.528 275.454 276.063 276.486 276.792 277.272 278.26 279.498 280.751 281.875 282.849 283.726 284.568 285.508 286.41 287.219 288.106 288.968 289.717 290.547 291.385 292.22 292.997 293.667 294.315 294.984 295.667 296.28 296.922 297.649 298.304 298.8 299.242 299.636 300.001 300.319 300.5 300.473 300.388 300.317 300.202 300.06 299.759 299.102 298.108 297.099 296.619 297.11 298.314 299.316 299.574 299.214 298.697 298.161 297.635 297.134 296.568 296.058 295.616 295.167 294.534 293.695 292.829 292.124 291.632 291.264 290.974 290.771 290.467 290.008 289.47 288.754 287.645 286.281 285.046 283.858 282.678 281.555 280.472 279.5 278.749 277.969 277.077 276.334 275.74 275.344 274.911 273.0 268.049 259.39 255.695 255.365 255.084 253.794 251.888 250.938 248.913 247.716 245.26 242.849 241.353 240.892 241.095 241.869 241.367 241.178 241.482 241.464 241.688 241.511 237.375 241.199 246.262 251.539 254.172 255.095 255.75 255.456 254.988 256.501 258.791 263.962 267.983 269.984 270.457 270.906 271.995 273.327 274.577 275.547 276.206 276.684 277.034 277.521 278.446 279.598 280.805 281.891 282.859 283.776 284.624 285.513 286.383 287.205 288.116 288.988 289.776 290.68 291.573 292.379 293.112 293.794 294.491 295.169 295.836 296.488 297.165 297.846 298.416 298.864 299.28 299.678 300.04 300.305 300.384 300.279 300.18 300.139 300.076 299.988 299.684 299.005 297.995 297.02 296.613 297.138 298.288 299.251 299.51 299.132 298.592 298.071 297.553 297.051 296.486 295.935 295.433 294.99 294.394 293.556 292.663 291.897 291.338 290.93 290.595 290.303 289.942 289.503 289.057 288.445 287.522 286.296 285.09 283.854 282.731 281.593 280.522 279.502 278.778 278.012 277.202 276.479 275.911 275.392 274.629 272.138 267.24 258.639 255.644 255.141 254.668 253.288 251.737 250.834 249.302 247.469 244.802 242.312 240.898 240.531 241.043 241.676 241.263 241.072 241.36 241.437 241.648 241.509 237.428 241.241 246.133 251.316 254.019 255.05 255.569 255.053 254.336 255.667 258.939 263.519 268.001 270.145 270.632 271.014 272.05 273.353 274.6 275.604 276.306 276.832 277.24 277.752 278.599 279.67 280.848 281.909 282.857 283.768 284.591 285.464 286.369 287.245 288.194 289.097 289.943 290.883 291.754 292.528 293.25 293.948 294.675 295.352 296.037 296.758 297.449 298.029 298.48 298.904 299.329 299.709 300.031 300.255 300.283 300.166 300.08 300.044 299.983 299.911 299.623 298.916 297.87 296.927 296.632 297.205 298.266 299.148 299.419 299.078 298.549 298.021 297.477 296.959 296.394 295.822 295.275 294.809 294.221 293.422 292.537 291.674 291.003 290.57 290.199 289.78 289.359 288.974 288.613 288.112 287.372 286.311 285.182 283.997 282.898 281.723 280.578 279.56 278.828 278.108 277.326 276.648 276.083 275.313 273.98 270.726 265.67 258.135 255.605 255.168 254.094 252.955 251.477 250.482 249.252 247.04 244.44 242.032 240.647 240.275 240.978 241.624 241.222 240.877 241.261 241.409 241.596 241.507 237.341 241.165 245.99 251.093 253.851 254.937 255.378 254.649 253.671 254.914 258.541 263.034 267.891 270.266 270.827 271.17 272.127 273.383 274.618 275.649 276.393 276.967 277.42 277.954 278.741 279.75 280.907 281.954 282.884 283.779 284.585 285.458 286.416 287.345 288.296 289.185 290.068 291.036 291.887 292.663 293.411 294.12 294.839 295.523 296.23 296.961 297.619 298.12 298.516 298.928 299.357 299.723 300.027 300.24 300.253 300.126 300.033 299.978 299.909 299.841 299.579 298.843 297.724 296.797 296.644 297.31 298.278 299.042 299.299 298.996 298.499 297.991 297.432 296.873 296.285 295.703 295.121 294.609 294.01 293.263 292.419 291.52 290.759 290.269 289.807 289.251 288.779 288.427 288.124 287.736 287.146 286.247 285.208 284.138 283.056 281.911 280.683 279.682 278.92 278.238 277.473 276.818 276.067 274.977 272.8 269.339 262.431 257.972 255.12 255.03 253.858 252.926 251.267 249.864 248.953 246.844 244.186 241.897 240.407 240.042 240.884 241.652 241.036 240.697 241.178 241.374 241.534 241.506 237.322 241.145 245.825 250.835 253.665 254.776 255.083 254.111 252.962 254.188 258.158 262.492 267.694 270.365 271.033 271.36 272.23 273.425 274.643 275.697 276.488 277.115 277.607 278.155 278.91 279.865 280.995 282.033 282.949 283.831 284.629 285.498 286.491 287.456 288.372 289.215 290.123 291.126 291.978 292.784 293.582 294.299 294.999 295.701 296.416 297.081 297.67 298.142 298.556 298.958 299.368 299.72 300.026 300.244 300.256 300.12 300.008 299.92 299.835 299.775 299.55 298.789 297.594 296.681 296.666 297.425 298.313 298.973 299.21 298.919 298.43 297.957 297.409 296.802 296.185 295.593 294.97 294.392 293.782 293.097 292.297 291.389 290.575 290.012 289.444 288.82 288.368 287.991 287.611 287.212 286.702 285.961 285.052 284.143 283.108 282.018 280.836 279.865 279.057 278.373 277.659 276.927 275.834 274.088 271.191 267.341 260.674 257.668 255.391 254.811 253.863 252.51 250.909 249.355 248.34 246.403 243.782 241.65 240.135 239.763 240.764 241.574 240.77 240.525 241.088 241.318 241.463 241.505 237.349 241.08 245.646 250.56 253.443 254.535 254.749 253.563 252.307 253.498 257.487 261.816 267.32 270.441 271.266 271.611 272.384 273.495 274.681 275.76 276.615 277.31 277.848 278.425 279.147 280.045 281.133 282.144 283.037 283.908 284.703 285.548 286.552 287.524 288.397 289.228 290.156 291.187 292.071 292.927 293.765 294.48 295.158 295.876 296.582 297.143 297.624 298.107 298.568 298.989 299.367 299.695 299.988 300.192 300.211 300.101 299.994 299.877 299.767 299.715 299.495 298.698 297.451 296.581 296.691 297.514 298.354 298.946 299.172 298.879 298.365 297.901 297.374 296.741 296.11 295.522 294.842 294.181 293.576 292.965 292.204 291.294 290.455 289.784 289.103 288.441 288.01 287.591 287.124 286.681 286.122 285.403 284.631 283.919 283.022 282.008 280.951 279.987 279.198 278.499 277.828 276.877 275.318 272.547 269.543 264.077 259.444 257.315 255.344 254.707 253.832 252.55 251.232 249.257 247.439 245.922 243.551 241.522 240.226 239.767 240.611 241.405 240.629 240.414 240.959 241.231 241.378 241.504 237.391 241.096 245.435 250.288 253.18 254.238 254.342 252.967 251.651 252.853 257.115 261.528 266.94 270.464 271.467 271.857 272.555 273.578 274.716 275.818 276.75 277.516 278.111 278.711 279.412 280.26 281.282 282.239 283.097 283.958 284.753 285.579 286.574 287.543 288.444 289.318 290.241 291.256 292.167 293.048 293.887 294.598 295.255 295.929 296.59 297.129 297.568 298.025 298.503 298.957 299.342 299.672 299.928 300.096 300.114 300.055 299.995 299.868 299.725 299.669 299.431 298.592 297.304 296.458 296.663 297.566 298.418 298.956 299.149 298.904 298.427 297.943 297.375 296.7 296.062 295.477 294.74 293.983 293.356 292.813 292.126 291.26 290.389 289.572 288.788 288.127 287.697 287.219 286.679 286.184 285.556 284.851 284.168 283.486 282.727 281.863 280.946 279.979 279.235 278.595 277.853 276.527 274.221 270.995 266.448 261.829 258.762 256.602 255.065 254.719 253.512 252.527 250.771 248.761 246.916 245.722 243.462 241.473 240.362 239.917 240.487 241.368 240.538 240.255 240.827 241.197 241.278 241.505 237.404 241.087 245.251 249.968 252.898 253.908 253.842 252.338 251.033 252.324 257.011 261.437 266.615 270.436 271.616 272.064 272.717 273.66 274.744 275.859 276.862 277.708 278.369 278.998 279.688 280.488 281.428 282.317 283.133 283.99 284.796 285.632 286.617 287.586 288.543 289.454 290.344 291.311 292.235 293.128 293.949 294.66 295.303 295.905 296.511 297.062 297.498 297.928 298.411 298.888 299.286 299.608 299.842 299.987 299.995 299.983 299.977 299.858 299.674 299.615 299.404 298.552 297.234 296.391 296.648 297.624 298.524 299.018 299.168 298.984 298.574 298.072 297.453 296.74 296.072 295.46 294.672 293.825 293.128 292.601 292.014 291.253 290.393 289.475 288.617 287.937 287.43 286.893 286.31 285.759 285.067 284.355 283.728 283.035 282.304 281.537 280.764 279.889 279.146 278.491 277.545 275.731 272.529 268.752 263.406 260.577 258.238 256.344 255.127 254.49 253.169 252.387 250.324 247.912 246.31 245.305 243.199 241.402 240.336 239.936 240.479 241.322 240.288 240.1 240.663 241.125 241.254 241.506 237.44 240.989 245.085 249.631 252.582 253.578 253.293 251.674 250.511 251.796 256.84 261.249 266.261 270.364 271.711 272.224 272.859 273.743 274.771 275.881 276.942 277.881 278.613 279.277 279.963 280.716 281.569 282.382 283.163 284.025 284.845 285.713 286.693 287.668 288.661 289.596 290.438 291.359 292.298 293.19 293.964 294.678 295.316 295.866 296.428 296.971 297.41 297.836 298.323 298.805 299.193 299.492 299.725 299.854 299.853 299.88 299.934 299.836 299.625 299.561 299.38 298.524 297.197 296.368 296.66 297.685 298.628 299.115 299.227 299.065 298.698 298.19 297.567 296.847 296.143 295.487 294.658 293.731 292.939 292.376 291.859 291.21 290.41 289.472 288.587 287.849 287.23 286.627 285.994 285.346 284.609 283.931 283.346 282.632 281.894 281.222 280.508 279.745 278.929 277.983 276.543 274.212 270.87 265.975 261.489 259.646 257.285 255.973 255.186 253.703 253.102 252.378 249.887 248.086 245.319 244.962 243.098 241.499 240.484 239.972 240.409 241.167 240.05 240.001 240.495 241.046 241.247 241.507 237.489 240.965 244.833 249.278 252.232 253.199 252.759 251.089 249.934 251.388 255.361 261.006 265.881 270.209 271.731 272.327 272.984 273.835 274.807 275.892 277.004 278.032 278.836 279.542 280.232 280.933 281.694 282.439 283.204 284.07 284.894 285.794 286.784 287.755 288.764 289.73 290.557 291.463 292.416 293.278 293.979 294.672 295.341 295.876 296.378 296.862 297.275 297.719 298.24 298.695 299.052 299.359 299.615 299.723 299.711 299.746 299.841 299.784 299.574 299.504 299.321 298.419 297.081 296.322 296.681 297.743 298.72 299.247 299.314 299.103 298.729 298.24 297.67 296.976 296.245 295.55 294.69 293.697 292.812 292.169 291.654 291.081 290.378 289.5 288.613 287.779 287.006 286.284 285.569 284.901 284.253 283.654 283.075 282.363 281.617 281.011 280.356 279.579 278.563 276.977 274.874 272.189 267.82 263.08 260.04 258.371 256.975 256.041 254.718 253.331 253.116 252.286 249.602 247.655 244.977 244.67 242.966 241.395 240.57 240.125 240.325 241.107 239.983 239.932 240.344 240.963 241.242 241.508 237.609 240.871 244.63 248.876 251.858 252.775 252.221 250.503 249.407 251.171 255.102 261.015 265.584 270.001 271.675 272.355 273.059 273.919 274.869 275.931 277.045 278.123 278.974 279.712 280.402 281.053 281.749 282.463 283.228 284.094 284.913 285.812 286.826 287.811 288.848 289.86 290.727 291.649 292.584 293.399 294.066 294.764 295.456 295.947 296.361 296.748 297.13 297.64 298.197 298.618 298.964 299.315 299.569 299.643 299.601 299.619 299.718 299.685 299.502 299.455 299.267 298.32 296.951 296.229 296.672 297.804 298.818 299.377 299.424 299.181 298.801 298.317 297.736 297.036 296.329 295.627 294.735 293.679 292.737 292.011 291.405 290.82 290.209 289.446 288.573 287.656 286.744 285.893 285.114 284.514 284.081 283.635 283.033 282.274 281.498 280.894 280.254 279.33 277.819 275.578 272.564 269.314 264.784 261.457 258.706 257.223 256.55 255.971 254.23 253.211 253.175 251.903 248.961 247.026 244.345 244.081 242.5 241.122 240.53 240.161 240.342 241.07 239.925 239.829 240.222 240.873 241.237 241.508 237.577 240.908 244.436 248.482 251.435 252.313 251.642 249.924 248.945 250.991 254.998 260.906 265.272 269.797 271.583 272.352 273.114 274.002 274.953 275.993 277.084 278.18 279.063 279.813 280.486 281.091 281.741 282.452 283.226 284.112 284.937 285.825 286.864 287.883 288.945 289.985 290.906 291.848 292.745 293.526 294.22 294.942 295.602 296.023 296.36 296.674 297.037 297.59 298.163 298.553 298.892 299.261 299.496 299.53 299.466 299.487 299.604 299.597 299.43 299.374 299.184 298.238 296.855 296.127 296.617 297.831 298.9 299.47 299.511 299.281 298.909 298.409 297.788 297.097 296.434 295.733 294.806 293.709 292.738 291.952 291.254 290.619 290.006 289.274 288.383 287.448 286.541 285.663 284.892 284.451 284.251 283.836 283.016 282.059 281.241 280.628 279.994 278.82 276.733 273.237 269.239 266.01 262.884 259.96 257.659 256.524 256.262 256.019 254.017 253.163 252.929 251.155 248.158 245.895 243.769 243.302 241.944 240.769 240.362 240.149 240.352 240.923 239.626 239.691 240.149 240.802 241.234 241.458 237.471 240.814 244.254 248.055 250.986 251.878 251.015 249.23 248.642 250.878 254.996 260.132 264.93 269.597 271.466 272.332 273.157 274.076 275.038 276.065 277.128 278.224 279.124 279.869 280.504 281.066 281.691 282.41 283.207 284.13 284.977 285.869 286.924 287.976 289.042 290.088 291.057 292.03 292.902 293.671 294.394 295.114 295.703 296.059 296.365 296.654 296.989 297.529 298.085 298.456 298.795 299.15 299.365 299.367 299.298 299.335 299.502 299.54 299.382 299.281 299.067 298.137 296.769 296.012 296.523 297.831 298.969 299.522 299.56 299.352 298.988 298.476 297.85 297.206 296.571 295.849 294.892 293.773 292.767 291.913 291.142 290.475 289.859 289.134 288.213 287.323 286.6 285.942 285.415 285.152 284.869 284.111 282.74 281.322 280.386 279.747 279.047 277.8 275.341 270.562 266.947 264.077 261.411 258.983 257.084 255.967 256.34 255.477 253.754 253.141 252.23 249.834 247.274 244.62 242.972 242.758 241.063 240.063 239.97 240.085 240.421 240.73 239.529 239.563 239.996 240.79 241.197 241.226 237.46 240.829 244.044 247.625 250.532 251.384 250.464 248.736 248.379 250.906 255.038 259.32 264.799 269.417 271.323 272.302 273.196 274.139 275.122 276.146 277.185 278.266 279.166 279.881 280.454 280.97 281.597 282.339 283.169 284.14 285.031 285.942 286.996 288.062 289.132 290.181 291.19 292.217 293.115 293.887 294.568 295.198 295.684 296.01 296.341 296.639 296.934 297.398 297.913 298.293 298.639 298.995 299.196 299.165 299.081 299.15 299.385 299.481 299.342 299.206 298.953 298.033 296.679 295.896 296.423 297.854 299.073 299.571 299.57 299.391 299.046 298.542 297.962 297.39 296.742 295.965 294.997 293.847 292.758 291.812 291.025 290.379 289.786 289.084 288.16 287.353 286.85 286.513 286.199 285.809 285.016 283.454 280.719 278.7 278.138 278.052 277.586 275.52 272.841 268.738 264.931 262.827 260.39 258.398 256.801 256.16 256.278 255.202 253.812 252.484 250.975 248.622 246.212 244.328 242.427 242.803 241.247 239.514 239.671 239.925 240.519 240.667 239.519 239.518 239.864 240.78 240.996 241.18 237.484 240.857 243.849 247.198 250.087 250.888 249.835 248.215 248.175 250.905 255.16 260.262 264.927 269.307 271.217 272.282 273.229 274.177 275.185 276.218 277.245 278.302 279.173 279.836 280.352 280.842 281.484 282.263 283.117 284.104 285.036 285.973 287.017 288.107 289.233 290.316 291.349 292.412 293.322 294.064 294.66 295.177 295.599 295.913 296.236 296.555 296.86 297.274 297.742 298.114 298.474 298.843 299.033 298.968 298.873 298.995 299.288 299.411 299.3 299.167 298.877 297.959 296.609 295.806 296.354 297.885 299.148 299.575 299.519 299.359 299.062 298.589 298.065 297.556 296.946 296.177 295.208 293.981 292.751 291.698 290.937 290.363 289.807 289.153 288.309 287.581 287.234 287.109 286.706 285.765 283.728 280.522 277.754 276.037 275.367 275.413 275.131 273.703 270.91 267.379 263.962 261.676 259.453 258.023 256.84 256.279 255.686 253.87 252.509 251.395 249.66 247.086 244.695 243.563 242.035 242.129 240.805 239.281 239.852 239.803 240.527 240.557 239.371 239.501 239.779 240.751 240.794 241.175 237.478 240.765 243.652 246.782 249.586 250.395 249.249 247.78 248.031 250.995 255.314 260.006 265.256 269.295 271.145 272.26 273.251 274.199 275.234 276.287 277.304 278.328 279.148 279.758 280.236 280.722 281.372 282.181 283.05 284.042 284.998 285.965 287.026 288.157 289.365 290.489 291.533 292.571 293.436 294.154 294.706 295.153 295.543 295.839 296.125 296.437 296.759 297.146 297.571 297.925 298.302 298.684 298.867 298.778 298.688 298.869 299.214 299.371 299.295 299.138 298.794 297.872 296.529 295.711 296.296 297.894 299.153 299.511 299.4 299.233 298.997 298.601 298.142 297.684 297.153 296.442 295.479 294.207 292.889 291.77 291.0 290.42 289.869 289.29 288.604 288.0 287.709 287.421 286.465 284.085 280.741 277.815 275.005 273.881 273.805 274.383 274.305 272.78 269.866 265.687 262.817 260.527 258.694 257.706 256.753 256.22 255.0 252.644 251.028 250.031 248.103 245.696 244.02 242.914 241.409 241.312 240.113 239.242 239.833 239.585 240.399 240.242 239.244 239.459 239.753 240.624 240.766 241.173 237.573 240.697 243.471 246.389 249.078 249.856 248.659 247.344 247.966 251.181 255.545 259.844 265.737 269.365 271.099 272.228 273.263 274.221 275.282 276.355 277.359 278.34 279.095 279.66 280.127 280.626 281.28 282.093 282.968 283.968 284.944 285.943 287.05 288.229 289.497 290.654 291.702 292.668 293.465 294.174 294.717 295.119 295.488 295.765 296.024 296.322 296.649 297.009 297.393 297.739 298.129 298.522 298.699 298.599 298.528 298.753 299.128 299.33 299.298 299.118 298.725 297.799 296.45 295.631 296.26 297.874 299.104 299.425 299.266 299.061 298.886 298.604 298.215 297.781 297.308 296.666 295.743 294.499 293.152 291.975 291.186 290.592 290.049 289.538 288.955 288.398 287.978 287.213 284.968 281.343 277.949 274.986 272.098 271.973 272.722 273.432 273.463 271.989 268.915 264.607 261.517 259.521 258.159 257.451 256.801 255.301 253.42 252.218 250.072 248.491 246.766 244.778 243.54 242.183 240.935 240.673 239.528 239.025 239.459 239.386 240.141 239.992 239.191 239.421 239.745 240.513 240.766 241.172 237.505 240.631 243.274 245.979 248.565 249.357 248.124 246.994 248.058 251.403 255.824 260.599 266.281 269.517 271.07 272.176 273.261 274.259 275.355 276.433 277.414 278.337 279.012 279.538 280.037 280.577 281.221 281.995 282.854 283.877 284.888 285.94 287.094 288.311 289.595 290.776 291.832 292.735 293.472 294.161 294.703 295.072 295.392 295.66 295.932 296.246 296.557 296.874 297.219 297.582 297.962 298.335 298.477 298.382 298.364 298.613 298.987 299.231 299.252 299.084 298.682 297.767 296.395 295.575 296.219 297.78 298.951 299.298 299.132 298.878 298.752 298.594 298.267 297.829 297.379 296.829 296.016 294.863 293.527 292.314 291.556 291.0 290.492 290.002 289.408 288.741 288.021 286.72 283.312 279.153 275.703 272.866 270.007 270.148 271.816 272.566 272.352 270.659 267.119 263.526 260.393 258.665 258.161 257.605 257.056 254.926 252.694 251.099 249.001 247.081 245.411 243.917 242.916 241.532 240.723 239.789 238.884 238.698 239.212 239.262 239.871 239.734 239.079 239.451 239.754 240.495 240.767 241.171 237.526 240.702 243.097 245.559 248.047 248.844 247.681 246.643 248.137 251.71 256.186 261.475 266.818 269.706 271.055 272.11 273.242 274.31 275.442 276.5 277.452 278.327 278.937 279.438 279.99 280.581 281.205 281.915 282.745 283.786 284.83 285.935 287.131 288.363 289.64 290.838 291.917 292.804 293.48 294.123 294.657 295.01 295.312 295.593 295.881 296.193 296.457 296.732 297.075 297.44 297.781 298.104 298.21 298.136 298.19 298.489 298.891 299.158 299.192 299.026 298.635 297.709 296.332 295.559 296.191 297.65 298.758 299.137 298.986 298.719 298.618 298.507 298.21 297.833 297.467 297.022 296.352 295.315 294.048 292.98 292.429 292.008 291.507 290.892 290.058 288.921 287.582 285.378 281.776 278.042 274.438 271.339 268.953 269.227 270.082 270.256 270.79 268.354 265.644 262.301 259.42 258.612 258.477 258.165 256.62 254.305 251.769 250.179 248.021 245.993 244.258 243.205 242.434 241.472 240.681 239.122 238.388 238.601 238.717 239.039 239.505 239.312 238.956 239.442 239.809 240.491 240.768 241.172 237.492 240.64 242.919 245.165 247.554 248.36 247.214 246.448 248.315 252.068 256.566 262.062 267.356 269.872 271.049 272.042 273.219 274.366 275.524 276.551 277.473 278.319 278.885 279.366 279.964 280.601 281.221 281.886 282.675 283.709 284.785 285.951 287.177 288.418 289.682 290.868 291.954 292.822 293.442 294.034 294.563 294.94 295.265 295.555 295.829 296.104 296.319 296.583 296.941 297.289 297.594 297.877 297.964 297.909 298.01 298.357 298.808 299.119 299.165 298.996 298.596 297.657 296.304 295.586 296.202 297.568 298.624 299.008 298.86 298.594 298.491 298.383 298.142 297.885 297.599 297.173 296.571 295.669 294.578 293.752 293.395 293.005 292.419 291.617 290.267 288.268 286.269 284.071 281.22 277.575 273.826 270.321 268.481 267.423 267.89 268.416 268.165 267.011 264.473 261.563 259.322 259.184 259.094 258.329 256.414 254.64 251.684 249.271 247.113 245.096 243.295 242.282 241.894 241.221 240.211 238.619 238.007 238.324 238.385 238.727 239.022 239.035 238.89 239.452 239.838 240.488 240.768 241.172 237.524 240.527 242.723 244.742 247.083 247.952 246.904 246.407 248.488 252.378 256.93 262.435 267.807 270.028 271.058 271.981 273.191 274.42 275.593 276.584 277.48 278.315 278.857 279.324 279.951 280.625 281.269 281.922 282.661 283.662 284.781 286.004 287.249 288.475 289.696 290.85 291.916 292.773 293.365 293.921 294.437 294.837 295.197 295.5 295.761 295.989 296.183 296.45 296.816 297.142 297.424 297.676 297.733 297.691 297.829 298.212 298.717 299.084 299.15 298.982 298.584 297.646 296.328 295.638 296.207 297.496 298.526 298.892 298.74 298.482 298.357 298.227 298.065 297.94 297.701 297.251 296.692 295.956 295.092 294.475 294.18 293.716 293.021 291.416 290.428 289.009 285.855 283.461 280.466 277.107 273.393 269.712 267.394 266.487 266.834 266.684 266.551 265.789 263.733 260.896 259.363 259.525 259.126 258.27 256.039 253.792 251.088 248.391 246.315 244.364 242.464 241.767 241.296 240.409 239.375 238.088 237.769 238.204 237.996 238.242 238.591 238.848 238.876 239.458 239.83 240.485 240.769 241.173 237.64 240.519 242.595 244.376 246.605 247.528 246.655 246.5 248.757 252.732 257.313 262.398 268.148 270.177 271.077 271.937 273.156 274.461 275.634 276.59 277.476 278.317 278.855 279.314 279.965 280.656 281.341 282.025 282.727 283.691 284.843 286.091 287.329 288.47 289.607 290.712 291.765 292.657 293.283 293.836 294.312 294.687 295.064 295.39 295.652 295.87 296.085 296.354 296.686 296.98 297.242 297.444 297.445 297.426 297.643 298.092 298.649 299.053 299.128 298.959 298.589 297.679 296.373 295.611 296.126 297.403 298.41 298.742 298.605 298.369 298.184 297.996 297.908 297.889 297.705 297.308 296.835 296.245 295.562 295.076 294.745 294.124 291.928 291.926 290.767 288.524 284.642 282.028 279.084 276.12 272.679 268.878 266.548 266.199 266.011 265.433 265.433 264.889 262.684 260.591 260.06 259.861 259.453 258.124 255.308 253.07 250.209 247.607 245.552 243.556 241.902 241.181 240.617 239.634 238.653 237.775 237.668 238.001 237.635 238.182 238.004 238.692 238.883 239.498 239.823 240.472 240.77 241.175 237.653 240.6 242.443 244.035 246.057 247.087 246.357 246.518 248.971 253.087 257.644 262.286 268.337 270.268 271.097 271.937 273.135 274.474 275.634 276.577 277.468 278.317 278.862 279.335 280.008 280.695 281.393 282.108 282.825 283.766 284.88 286.095 287.303 288.362 289.413 290.514 291.585 292.525 293.199 293.772 294.234 294.597 294.972 295.283 295.526 295.745 295.971 296.227 296.499 296.762 297.026 297.214 297.194 297.203 297.503 298.025 298.614 299.022 299.089 298.921 298.581 297.693 296.385 295.608 296.097 297.352 298.323 298.623 298.514 298.302 298.059 297.813 297.725 297.731 297.638 297.388 296.995 296.454 295.937 295.647 295.11 293.469 293.238 291.524 288.902 285.426 282.177 279.733 277.389 274.372 270.703 266.947 265.751 265.783 265.703 265.4 265.294 264.794 263.091 261.411 260.727 260.278 259.113 257.561 255.24 252.657 249.723 246.995 244.878 242.775 241.389 240.693 240.036 238.913 238.108 237.581 237.668 237.79 237.503 237.98 237.589 238.519 238.853 239.482 239.769 240.016 240.697 241.176 237.485 240.62 242.311 243.719 245.557 246.647 246.08 246.55 249.249 253.359 257.942 262.54 268.401 270.299 271.103 271.953 273.127 274.465 275.619 276.564 277.458 278.305 278.852 279.357 280.054 280.725 281.399 282.127 282.886 283.802 284.84 286.016 287.198 288.233 289.261 290.35 291.408 292.35 293.057 293.66 294.149 294.535 294.898 295.164 295.38 295.592 295.81 296.046 296.282 296.518 296.791 296.987 296.979 297.021 297.376 297.946 298.544 298.954 299.035 298.891 298.56 297.67 296.363 295.589 296.051 297.299 298.225 298.508 298.418 298.219 297.949 297.687 297.572 297.604 297.598 297.464 297.127 296.687 296.413 296.228 295.209 293.84 292.077 289.081 284.747 281.989 279.551 277.486 275.525 272.788 267.773 265.898 264.783 264.945 265.078 265.688 265.608 265.337 263.257 261.816 261.127 260.298 258.74 256.751 254.412 251.743 249.053 246.434 244.304 242.017 240.992 240.291 239.448 238.166 237.618 237.553 237.544 237.371 237.424 236.92 237.506 238.352 238.783 239.402 239.724 239.999 240.547 241.178 237.497 240.518 242.198 243.432 245.15 246.249 245.769 246.564 249.482 253.568 258.194 263.051 268.331 270.26 271.096 271.972 273.126 274.44 275.599 276.556 277.447 278.275 278.822 279.366 280.085 280.732 281.365 282.094 282.88 283.769 284.734 285.867 287.042 288.122 289.172 290.21 291.193 292.111 292.858 293.5 294.012 294.418 294.756 294.992 295.217 295.434 295.625 295.842 296.068 296.294 296.549 296.73 296.73 296.822 297.259 297.879 298.476 298.879 298.978 298.864 298.523 297.611 296.297 295.547 296.031 297.2 298.106 298.386 298.306 298.108 297.823 297.547 297.389 297.473 297.596 297.618 297.414 297.134 296.99 296.553 295.168 292.771 288.803 284.442 281.853 279.802 277.827 276.263 274.221 271.583 266.759 264.77 264.014 264.312 264.996 265.354 266.155 265.273 263.367 261.817 261.068 259.919 258.155 255.653 253.347 250.599 248.119 245.586 243.315 241.244 240.296 239.871 239.008 237.82 237.463 237.549 237.31 237.21 237.145 236.47 237.109 238.194 238.738 239.186 239.72 240.0 240.472 241.181 237.476 240.524 242.124 243.189 244.759 245.822 245.549 246.566 249.7 253.742 258.326 263.737 268.083 270.112 271.054 271.993 273.13 274.406 275.58 276.558 277.428 278.217 278.766 279.344 280.077 280.693 281.29 282.017 282.809 283.659 284.562 285.64 286.847 288.0 289.071 290.016 290.889 291.806 292.627 293.306 293.79 294.179 294.501 294.758 295.036 295.253 295.382 295.576 295.84 296.086 296.293 296.413 296.407 296.592 297.163 297.842 298.431 298.812 298.919 298.833 298.491 297.553 296.206 295.431 295.849 297.057 297.984 298.276 298.217 298.034 297.721 297.358 297.103 297.231 297.617 297.909 297.9 297.611 297.077 295.84 293.513 288.957 284.542 281.869 280.124 278.685 277.287 276.005 274.145 271.744 266.821 265.184 265.18 265.796 266.35 267.136 266.559 264.866 263.089 261.606 260.495 259.35 257.301 254.61 252.265 249.709 247.201 244.708 242.437 240.569 239.687 239.364 238.368 237.47 237.327 237.353 237.101 236.915 236.646 236.041 237.039 237.953 238.478 239.12 239.716 240.002 240.429 241.183 237.55 240.551 242.094 242.958 244.429 245.443 245.323 246.576 249.848 253.829 258.418 264.125 267.719 269.856 270.965 272.002 273.135 274.375 275.567 276.556 277.392 278.145 278.708 279.31 280.025 280.611 281.206 281.936 282.709 283.523 284.373 285.396 286.595 287.763 288.844 289.767 290.604 291.539 292.412 293.11 293.566 293.968 294.348 294.621 294.867 295.033 295.11 295.3 295.617 295.893 296.076 296.163 296.185 296.465 297.103 297.772 298.345 298.748 298.881 298.824 298.517 297.585 296.183 295.33 295.73 296.914 297.846 298.15 298.126 297.976 297.635 297.179 296.865 297.007 297.613 298.085 297.94 296.913 295.138 292.935 288.662 284.92 282.274 280.614 279.675 278.693 277.695 276.799 275.29 273.202 271.135 269.549 269.022 268.058 268.579 268.072 266.365 264.248 262.563 261.17 259.6 257.898 256.081 253.862 251.467 248.715 246.444 244.026 241.718 239.967 239.155 238.752 237.972 237.307 237.108 236.86 236.764 236.639 236.25 235.806 237.029 237.823 238.144 239.099 239.714 240.004 240.405 241.182 237.67 240.468 242.037 242.815 244.157 245.137 245.093 246.629 249.937 253.824 258.927 264.117 267.309 269.52 270.825 271.989 273.138 274.348 275.553 276.541 277.338 278.074 278.661 279.28 279.956 280.512 281.111 281.853 282.593 283.369 284.165 285.128 286.27 287.412 288.542 289.533 290.39 291.31 292.187 292.891 293.361 293.82 294.261 294.513 294.684 294.808 294.889 295.101 295.442 295.714 295.869 295.936 296.002 296.369 297.039 297.689 298.265 298.706 298.872 298.831 298.548 297.635 296.197 295.268 295.579 296.782 297.713 298.028 298.022 297.872 297.489 296.996 296.739 296.955 297.679 298.107 297.388 294.837 290.41 287.412 284.716 282.94 281.501 280.909 280.388 279.345 278.551 278.01 276.74 275.017 273.782 272.831 271.844 271.012 270.089 268.742 266.077 263.497 261.986 260.473 258.829 257.005 255.215 253.22 250.603 247.953 245.643 243.445 241.162 239.427 238.726 238.272 237.691 237.217 236.706 236.174 236.004 236.301 236.008 235.742 237.03 237.52 238.076 238.804 239.497 239.996 240.407 241.148 237.58 240.52 242.049 242.696 243.954 244.884 244.959 246.658 249.986 253.702 258.02 263.238 266.41 269.042 270.632 271.946 273.132 274.32 275.532 276.508 277.271 278.008 278.625 279.255 279.882 280.406 281.009 281.756 282.461 283.184 283.93 284.834 285.886 286.988 288.193 289.311 290.225 291.121 291.977 292.686 293.183 293.675 294.135 294.362 294.49 294.609 294.716 294.952 295.295 295.542 295.659 295.708 295.83 296.28 296.978 297.633 298.216 298.675 298.864 298.829 298.556 297.665 296.222 295.262 295.545 296.684 297.629 297.955 297.961 297.788 297.355 296.852 296.699 297.057 297.828 297.979 296.445 291.693 287.276 284.27 282.665 282.146 281.946 282.143 281.686 280.556 279.756 279.011 278.396 276.867 275.971 275.024 273.568 272.094 270.549 268.564 265.504 262.816 261.292 259.698 258.064 256.354 254.288 252.344 249.745 247.242 244.819 242.815 240.627 239.047 238.373 237.757 237.52 237.128 236.152 235.964 235.54 235.954 235.581 235.278 237.08 237.279 237.762 238.529 239.461 239.965 240.413 241.111 237.475 240.545 242.068 242.633 243.75 244.652 244.892 246.695 249.964 253.451 257.238 261.875 264.814 268.455 270.342 271.859 273.111 274.287 275.494 276.444 277.186 277.942 278.594 279.231 279.815 280.299 280.894 281.633 282.303 282.964 283.66 284.509 285.486 286.561 287.783 289.004 290.02 290.952 291.816 292.542 293.036 293.481 293.905 294.14 294.296 294.425 294.526 294.756 295.098 295.328 295.428 295.507 295.724 296.237 296.923 297.579 298.154 298.603 298.821 298.82 298.56 297.686 296.246 295.187 295.389 296.581 297.552 297.885 297.927 297.787 297.358 296.859 296.756 297.211 297.864 297.364 294.831 289.169 284.697 282.84 282.75 283.24 283.62 283.81 283.241 281.943 280.932 280.151 279.521 278.414 277.051 276.118 273.941 271.661 268.969 268.113 264.952 262.428 260.128 258.789 257.529 255.784 253.345 251.311 248.934 246.483 244.13 241.924 240.065 238.773 237.922 237.346 237.141 236.786 235.67 235.927 235.281 235.518 235.225 235.153 236.944 237.205 237.395 238.523 239.465 239.927 240.42 241.078 237.484 240.521 242.099 242.604 243.641 244.532 244.844 246.735 249.879 253.155 256.734 261.477 264.602 268.018 270.053 271.741 273.076 274.254 275.44 276.366 277.115 277.893 278.563 279.198 279.771 280.23 280.797 281.515 282.172 282.792 283.453 284.267 285.216 286.244 287.408 288.646 289.775 290.815 291.696 292.417 292.907 293.333 293.733 293.969 294.128 294.243 294.34 294.595 294.936 295.127 295.208 295.355 295.679 296.216 296.86 297.501 298.078 298.535 298.8 298.833 298.572 297.728 296.338 295.228 295.35 296.499 297.467 297.803 297.864 297.781 297.451 297.029 296.905 297.226 297.427 296.169 291.654 286.161 283.527 283.553 284.772 285.425 285.749 286.018 285.162 283.188 281.782 280.859 279.991 279.091 277.57 276.154 273.813 271.531 268.181 267.232 264.211 261.501 259.366 258.102 256.88 254.721 252.412 250.219 248.173 245.709 243.553 241.099 239.451 238.305 237.482 236.889 236.508 235.797 235.18 235.431 234.888 234.86 234.668 234.926 237.01 236.987 237.367 238.517 239.47 239.904 240.413 241.048 237.543 240.498 242.119 242.684 243.608 244.486 244.843 246.816 249.831 252.76 256.212 261.149 264.613 267.737 269.799 271.596 273.039 274.22 275.378 276.286 277.058 277.856 278.526 279.152 279.737 280.188 280.722 281.412 282.056 282.648 283.288 284.088 285.021 285.994 287.097 288.335 289.563 290.68 291.539 292.232 292.755 293.207 293.594 293.805 293.932 294.054 294.22 294.525 294.822 294.937 294.995 295.197 295.582 296.137 296.787 297.444 298.022 298.473 298.763 298.826 298.565 297.791 296.504 295.342 295.337 296.429 297.417 297.799 297.873 297.794 297.557 297.283 297.14 297.218 296.856 295.122 289.804 285.559 285.177 286.331 287.787 288.35 288.445 287.924 286.41 284.132 282.462 281.023 279.927 279.157 277.816 275.971 273.543 271.103 269.106 266.461 263.405 260.395 258.608 257.451 255.899 253.592 251.423 249.376 247.347 245.105 242.771 240.562 238.911 237.871 237.017 236.326 235.705 235.225 234.45 234.926 234.138 233.947 234.239 234.368 237.267 236.89 237.141 238.417 239.41 239.908 240.382 241.024 237.565 240.554 242.187 242.797 243.706 244.502 244.977 246.913 249.806 252.38 255.676 260.912 264.835 267.69 269.639 271.448 273.002 274.182 275.307 276.207 277.009 277.826 278.487 279.102 279.704 280.159 280.663 281.317 281.933 282.501 283.136 283.943 284.873 285.808 286.87 288.117 289.394 290.531 291.357 292.039 292.6 293.065 293.42 293.597 293.712 293.874 294.122 294.439 294.664 294.731 294.819 295.068 295.47 296.031 296.711 297.39 297.94 298.363 298.688 298.812 298.582 297.89 296.699 295.518 295.393 296.358 297.354 297.8 297.902 297.818 297.686 297.607 297.496 297.347 296.509 294.321 289.572 287.423 289.294 291.034 291.491 291.343 290.819 289.816 287.5 284.753 282.768 281.25 279.928 278.937 277.544 275.679 273.247 270.978 268.664 265.696 263.02 260.021 258.35 256.93 255.073 252.521 250.325 248.775 246.867 244.75 242.598 240.387 238.687 237.454 236.556 235.814 235.27 234.672 233.987 234.433 233.651 233.195 233.516 233.98 237.278 236.885 236.967 238.405 239.351 239.913 240.344 241.003 237.569 240.525 242.328 242.963 243.854 244.543 245.22 247.112 249.794 251.973 255.178 260.935 263.844 267.964 269.618 271.308 272.955 274.128 275.216 276.124 276.957 277.788 278.446 279.057 279.665 280.122 280.603 281.21 281.772 282.314 282.972 283.809 284.743 285.659 286.725 287.969 289.226 290.352 291.205 291.927 292.481 292.866 293.16 293.352 293.518 293.713 293.968 294.221 294.392 294.509 294.69 294.975 295.362 295.925 296.623 297.286 297.805 298.249 298.651 298.859 298.684 298.04 296.91 295.768 295.567 296.399 297.311 297.742 297.847 297.803 297.83 297.962 297.986 297.794 296.794 294.841 290.905 290.995 292.188 292.923 292.93 292.379 291.507 290.232 288.164 284.818 282.822 281.207 279.403 278.111 276.863 274.929 272.717 270.491 267.864 264.486 262.249 260.215 258.445 256.779 254.597 251.66 249.875 248.307 245.745 244.19 243.004 240.749 238.748 237.176 236.145 235.324 234.704 234.156 233.987 233.907 233.471 232.931 233.062 233.526 237.231 237.108 236.976 238.404 239.353 239.913 240.312 240.986 237.529 240.505 242.442 243.165 244.054 244.754 245.564 247.347 249.868 251.671 254.736 261.198 265.512 268.484 269.706 271.212 272.905 274.063 275.127 276.048 276.9 277.735 278.409 279.031 279.621 280.067 280.542 281.113 281.622 282.156 282.85 283.705 284.636 285.568 286.632 287.828 289.039 290.177 291.098 291.861 292.368 292.681 292.968 293.218 293.42 293.599 293.805 294.028 294.214 294.358 294.532 294.796 295.206 295.832 296.564 297.233 297.809 298.33 298.736 298.902 298.717 298.131 297.108 296.091 295.909 296.663 297.445 297.781 297.826 297.819 297.943 298.186 298.362 298.26 297.294 295.887 293.173 293.691 293.972 293.938 293.533 292.814 291.669 290.21 287.8 285.001 282.57 280.849 278.755 277.311 275.976 274.115 271.983 269.586 266.799 263.735 261.885 260.294 258.186 256.422 254.277 252.011 249.805 247.822 245.352 244.464 244.588 243.123 239.398 237.211 235.938 234.993 234.267 233.56 233.347 232.978 233.054 232.753 232.79 233.619 236.765 237.215 236.898 238.295 239.368 239.921 240.288 240.973 237.535 240.549 242.598 243.378 244.302 245.093 245.997 247.729 249.849 251.422 254.359 261.503 266.824 268.999 269.797 271.146 272.849 273.99 275.044 275.982 276.836 277.671 278.367 279.0 279.563 280.003 280.488 281.035 281.512 282.051 282.758 283.605 284.532 285.483 286.543 287.703 288.881 290.013 290.939 291.693 292.193 292.529 292.837 293.087 293.279 293.449 293.639 293.854 294.043 294.183 294.343 294.631 295.105 295.792 296.548 297.239 297.877 298.436 298.799 298.91 298.732 298.214 297.31 296.394 296.208 296.856 297.525 297.803 297.827 297.853 298.016 298.304 298.536 298.313 297.328 295.761 294.352 295.165 295.307 294.773 294.087 293.154 291.8 290.265 288.066 285.06 282.566 280.793 278.525 276.745 275.256 273.556 271.37 268.891 265.441 263.169 261.776 260.171 258.189 255.931 254.103 251.837 249.375 247.2 244.99 245.593 245.408 244.214 240.855 237.533 235.879 234.822 233.905 233.06 232.436 232.034 232.826 232.609 233.37 233.161 236.445 237.324 236.861 238.077 239.35 239.955 240.266 240.962 237.448 240.511 242.67 243.686 244.666 245.511 246.482 248.191 249.963 251.208 254.106 261.768 267.579 269.529 269.924 271.111 272.789 273.913 274.969 275.924 276.768 277.598 278.316 278.953 279.492 279.937 280.442 280.971 281.433 281.982 282.669 283.486 284.425 285.392 286.449 287.598 288.763 289.848 290.712 291.434 291.985 292.405 292.715 292.907 293.075 293.259 293.44 293.613 293.78 293.941 294.172 294.563 295.098 295.804 296.562 297.268 297.942 298.521 298.876 298.987 298.843 298.355 297.531 296.703 296.498 297.0 297.539 297.768 297.805 297.861 298.041 298.344 298.547 298.053 296.02 293.798 293.43 295.902 296.161 295.561 294.747 293.541 292.006 290.482 288.506 285.149 282.814 280.996 278.621 276.528 274.871 273.161 270.986 268.404 265.268 263.132 261.568 260.01 257.963 255.668 254.014 251.752 249.039 246.298 245.115 246.042 246.033 244.907 242.659 237.935 235.885 234.736 233.623 232.578 232.099 231.884 232.273 232.397 233.11 232.494 236.537 237.215 236.87 238.086 239.315 239.997 240.247 240.953 237.461 240.575 242.877 243.988 245.09 246.098 247.034 248.682 250.174 251.073 253.962 261.931 268.023 270.108 270.207 271.137 272.724 273.83 274.898 275.875 276.703 277.516 278.247 278.878 279.401 279.868 280.394 280.899 281.366 281.932 282.568 283.331 284.287 285.265 286.309 287.466 288.626 289.634 290.423 291.152 291.782 292.241 292.518 292.665 292.851 293.071 293.205 293.31 293.474 293.692 294.009 294.49 295.061 295.793 296.607 297.377 298.087 298.671 299.029 299.139 298.991 298.517 297.766 297.075 296.941 297.316 297.689 297.838 297.881 297.941 298.102 298.361 298.43 297.691 295.075 292.61 292.79 294.81 296.224 295.985 295.283 293.889 292.222 290.754 288.912 285.287 282.777 280.984 278.634 276.381 274.596 272.761 270.646 268.077 265.071 262.9 261.375 259.684 257.547 255.459 253.81 251.756 248.757 245.872 245.378 246.247 246.248 245.28 243.264 239.708 235.934 234.658 233.446 232.33 231.979 232.198 231.722 232.361 233.479 232.464 236.638 237.092 237.322 238.062 239.328 240.019 240.231 240.948 237.524 240.589 242.973 244.377 245.63 246.671 247.624 249.181 250.462 251.079 253.9 262.2 268.378 270.573 270.546 271.189 272.688 273.767 274.841 275.841 276.661 277.461 278.186 278.798 279.317 279.813 280.344 280.819 281.297 281.882 282.477 283.202 284.165 285.127 286.148 287.312 288.458 289.414 290.193 290.947 291.552 291.969 292.255 292.454 292.661 292.829 292.921 293.086 293.33 293.532 293.802 294.325 295.019 295.876 296.773 297.574 298.259 298.759 298.989 299.028 298.926 298.57 297.919 297.273 297.136 297.461 297.783 297.948 298.067 298.176 298.279 298.323 298.02 297.45 295.219 294.073 294.626 295.003 294.92 295.858 295.537 294.167 292.419 290.956 289.227 286.725 283.109 280.943 278.448 276.37 274.442 272.499 270.509 267.916 264.902 262.723 261.282 259.554 257.151 255.328 253.565 251.211 247.982 245.718 246.081 246.403 246.172 245.336 243.457 240.577 235.983 234.545 233.357 232.131 231.786 232.042 231.803 232.754 233.927 232.913 236.919 236.994 237.553 237.777 239.335 240.021 240.217 240.945 237.516 240.67 243.184 244.762 246.161 247.257 248.307 249.741 250.816 251.167 253.926 263.077 268.699 270.959 270.921 271.306 272.675 273.724 274.796 275.809 276.631 277.429 278.139 278.724 279.243 279.761 280.286 280.74 281.23 281.826 282.396 283.104 284.06 284.998 286.024 287.209 288.322 289.239 290.021 290.746 291.265 291.651 292.003 292.241 292.374 292.442 292.542 292.797 293.09 293.281 293.617 294.316 295.188 296.109 296.96 297.667 298.242 298.613 298.775 298.872 298.899 298.616 297.974 297.295 297.133 297.462 297.806 298.002 298.155 298.274 298.259 298.029 297.624 296.784 295.417 295.628 296.166 296.314 295.949 296.064 295.63 294.333 292.56 290.932 289.258 286.978 283.294 280.909 278.426 276.279 274.288 272.387 270.373 267.839 265.38 262.874 261.124 259.104 256.885 255.161 252.931 249.841 247.047 245.901 246.429 246.448 246.0 245.172 243.478 240.627 235.753 234.275 233.426 231.886 231.54 231.724 231.904 232.709 233.526 234.805 237.045 236.896 237.48 237.635 239.323 240.017 240.206 240.943 237.484 240.563 243.275 245.162 246.749 247.953 249.083 250.354 251.197 251.287 254.109 263.752 268.993 271.292 271.279 271.496 272.686 273.699 274.754 275.769 276.6 277.406 278.104 278.662 279.176 279.703 280.215 280.667 281.172 281.768 282.324 283.026 283.958 284.883 285.945 287.148 288.205 289.091 289.878 290.551 290.997 291.391 291.784 291.977 291.998 292.016 292.16 292.445 292.724 292.984 293.565 294.494 295.455 296.312 297.033 297.602 298.048 298.349 298.598 298.887 298.977 298.595 297.887 297.263 297.185 297.592 297.995 298.163 298.234 298.205 297.938 297.712 296.452 295.411 294.378 296.285 296.826 296.889 296.656 296.312 295.648 294.416 292.617 290.879 289.209 286.828 283.374 280.667 278.289 276.223 274.066 272.116 270.103 267.857 265.413 262.847 260.87 258.817 256.764 254.56 251.542 248.652 246.675 246.126 246.679 246.49 245.899 244.98 243.376 240.026 235.41 234.631 232.977 231.764 231.215 231.49 232.043 232.989 233.594 236.45 237.192 236.776 237.661 237.655 239.239 240.017 240.2 240.942 237.422 240.626 243.492 245.545 247.362 248.626 249.858 251.004 251.599 251.439 254.399 264.006 269.249 271.61 271.663 271.776 272.733 273.698 274.708 275.701 276.554 277.379 278.071 278.612 279.118 279.632 280.133 280.611 281.138 281.714 282.269 282.971 283.858 284.772 285.868 287.051 288.029 288.9 289.714 290.377 290.83 291.234 291.529 291.559 291.535 291.627 291.841 292.119 292.432 292.885 293.751 294.73 295.576 296.318 296.955 297.443 297.804 298.125 298.572 299.035 299.0 298.363 297.643 297.212 297.21 297.634 298.155 298.388 298.403 298.08 297.575 296.55 296.202 295.788 295.449 296.795 297.128 297.157 296.888 296.393 295.57 294.433 292.625 290.972 289.103 286.221 283.297 280.614 278.229 276.111 273.602 271.572 269.709 267.811 265.271 262.761 260.647 258.591 256.529 254.018 250.742 248.343 246.729 246.346 246.843 246.583 245.906 244.892 243.156 239.34 235.424 234.362 232.612 231.453 230.917 231.349 232.03 233.447 233.561 237.432 237.368 236.763 237.821 237.58 239.21 240.02 240.191 240.943 237.411 240.666 243.738 245.894 247.902 249.355 250.604 251.689 251.99 251.739 254.779 264.238 269.407 271.824 271.963 272.056 272.804 273.711 274.661 275.617 276.495 277.349 278.039 278.58 279.079 279.567 280.063 280.584 281.124 281.693 282.277 283.0 283.846 284.741 285.831 286.939 287.861 288.749 289.564 290.2 290.654 290.992 291.108 291.055 291.092 291.219 291.449 291.85 292.363 292.999 293.945 294.89 295.716 296.431 296.938 297.227 297.474 297.793 298.257 298.683 298.603 298.034 297.468 297.045 296.831 297.123 297.792 298.3 298.474 298.098 297.263 296.492 296.456 296.702 296.939 297.198 297.381 297.353 297.076 296.48 294.89 294.496 292.702 290.877 288.93 285.559 283.375 280.94 278.337 276.069 273.424 271.214 269.401 267.67 265.284 262.826 260.539 258.388 256.289 253.27 250.213 248.378 247.263 246.715 246.972 246.7 245.969 244.828 242.831 239.627 236.103 234.362 232.478 231.54 230.731 231.349 232.608 234.039 234.184 237.869 237.534 236.779 237.72 237.534 239.238 240.048 240.182 240.943 237.488 240.687 243.76 246.334 248.475 250.074 251.375 252.32 252.343 252.089 255.243 264.369 269.476 271.939 272.182 272.285 272.882 273.724 274.61 275.528 276.438 277.323 278.016 278.563 279.059 279.516 280.013 280.57 281.118 281.699 282.346 283.108 283.942 284.846 285.924 286.945 287.83 288.728 289.46 289.97 290.354 290.609 290.646 290.672 290.806 290.916 291.164 291.713 292.347 293.078 294.129 295.15 295.953 296.486 296.705 296.735 296.835 297.018 297.259 297.507 297.768 297.118 296.764 296.475 296.442 296.956 297.796 298.427 298.647 298.473 297.228 296.493 296.466 296.755 297.082 297.398 297.622 297.578 297.288 296.685 295.074 294.634 292.299 289.723 288.895 287.73 285.486 281.876 278.741 276.253 273.472 271.166 269.244 267.428 265.235 262.866 260.513 258.248 255.755 252.796 250.074 248.982 247.961 247.357 247.018 246.734 245.975 244.801 242.847 239.368 236.376 235.118 233.284 232.268 230.729 231.488 233.903 235.472 234.948 238.209 237.714 236.787 237.655 237.473 239.258 240.096 240.179 240.927 237.472 240.711 244.112 246.749 249.098 250.807 252.149 252.935 252.699 252.495 255.758 263.583 269.447 271.926 272.32 272.469 272.956 273.729 274.559 275.442 276.386 277.306 278.005 278.563 279.06 279.496 279.999 280.569 281.11 281.725 282.45 283.258 284.122 285.071 286.15 287.11 287.966 288.803 289.364 289.708 290.026 290.239 290.322 290.511 290.767 290.92 291.251 291.851 292.43 293.217 294.464 295.49 295.994 296.134 296.088 295.94 295.804 295.652 295.561 295.6 295.318 295.342 295.054 295.122 295.919 296.873 297.908 298.65 299.012 298.795 297.487 296.681 296.551 296.713 297.087 297.525 297.848 297.822 297.537 296.755 295.591 294.873 293.257 292.109 291.16 289.949 287.649 284.044 279.755 276.506 273.767 271.422 269.086 267.188 265.222 262.726 260.493 258.134 255.521 252.377 250.362 249.28 248.189 247.325 247.02 246.497 245.702 244.568 242.605 239.497 236.601 235.039 233.528 232.158 230.739 231.8 234.28 236.473 236.406 238.204 237.93 236.788 237.723 237.913 239.2 240.141 240.179 240.911 237.462 240.655 244.031 247.14 249.628 251.498 252.837 253.477 253.064 252.925 256.246 263.189 269.319 271.665 272.305 272.587 273.026 273.713 274.495 275.358 276.344 277.305 278.016 278.59 279.101 279.536 280.027 280.552 281.047 281.699 282.504 283.393 284.342 285.366 286.436 287.324 288.084 288.762 289.167 289.485 289.874 290.121 290.276 290.578 290.925 291.234 291.683 292.149 292.59 293.629 295.062 295.717 295.528 295.249 295.056 294.67 294.218 293.707 293.109 293.247 293.474 293.389 293.333 293.167 293.95 295.582 296.482 297.911 299.235 299.264 298.291 297.012 296.599 296.639 297.099 297.614 297.917 297.972 297.746 296.682 296.097 295.148 294.292 293.476 292.467 291.084 289.022 286.04 281.348 277.07 273.889 271.451 268.861 267.005 265.208 262.826 260.456 258.1 255.57 252.318 250.311 249.25 247.889 247.038 246.781 245.82 244.626 243.679 241.912 239.348 236.43 234.796 233.352 232.124 230.844 232.286 234.967 236.551 236.12 237.758 238.183 236.801 237.646 238.634 239.188 240.173 240.183 240.9 237.39 240.789 244.388 247.666 250.199 252.125 253.449 253.901 253.391 253.361 256.71 262.246 269.227 271.174 272.028 272.548 273.05 273.67 274.417 275.283 276.314 277.319 278.047 278.635 279.168 279.594 280.009 280.383 280.76 281.418 282.314 283.34 284.447 285.512 286.477 287.234 287.892 288.48 288.973 289.498 289.971 290.222 290.423 290.753 291.122 291.505 291.842 292.096 292.718 294.176 295.376 295.395 294.841 294.359 293.778 293.26 292.159 291.601 292.448 293.745 294.678 294.996 294.749 293.887 293.128 293.214 294.468 296.541 299.307 300.422 298.942 297.428 296.617 296.458 296.961 297.489 297.827 297.881 297.7 296.659 296.015 295.266 294.666 293.934 292.902 291.608 289.956 287.439 283.728 278.238 274.781 271.916 268.827 266.823 265.18 262.864 260.582 258.095 255.642 252.71 250.719 249.073 247.247 246.473 245.97 244.475 242.558 241.963 240.49 239.226 235.796 234.34 233.256 231.858 231.101 232.659 235.386 236.81 236.559 236.703 238.455 236.851 237.566 238.536 239.199 240.185 240.19 240.891 237.369 240.772 244.354 247.969 250.755 252.697 253.975 254.297 253.694 253.763 257.158 262.326 268.698 270.451 271.299 272.26 273.003 273.599 274.325 275.207 276.284 277.337 278.084 278.685 279.225 279.604 279.869 280.011 280.215 280.819 281.834 283.013 284.233 285.302 286.162 286.891 287.599 288.318 289.069 289.774 290.178 290.4 290.762 291.27 291.748 292.151 292.323 292.508 293.464 294.968 295.446 294.741 293.884 293.491 291.872 290.088 290.697 292.558 294.7 296.206 297.621 298.614 298.638 297.475 295.558 293.875 293.736 295.111 298.815 300.415 299.614 297.678 296.6 296.298 296.797 297.316 297.736 297.89 297.171 296.613 295.881 295.264 294.613 293.761 292.7 291.5 290.256 288.576 285.956 281.743 277.705 273.82 269.722 266.947 265.083 262.841 260.736 258.434 255.683 253.089 250.779 248.842 246.898 245.867 245.094 243.308 241.551 240.744 239.894 239.004 235.638 233.874 232.422 231.674 231.419 234.359 236.575 237.208 236.591 235.949 237.091 236.915 237.492 238.3 239.246 240.181 240.201 240.882 237.356 240.672 244.654 248.411 251.24 253.189 254.415 254.585 253.965 254.178 257.571 262.276 267.157 269.273 269.914 271.745 272.861 273.495 274.211 275.126 276.254 277.355 278.123 278.736 279.25 279.544 279.523 279.418 279.474 279.959 281.067 282.582 283.693 284.686 285.497 286.309 287.226 288.349 289.381 290.14 290.511 290.816 291.499 292.302 292.917 293.343 293.486 293.77 294.889 295.958 295.42 293.898 292.776 290.195 287.648 288.696 292.347 296.304 298.073 298.305 298.651 298.971 299.071 298.709 298.806 298.075 297.113 296.862 296.916 298.676 298.668 297.632 296.406 296.196 296.7 297.154 297.588 297.841 297.384 296.581 295.855 295.302 294.473 293.457 292.405 291.253 290.195 289.076 287.307 284.77 281.681 277.636 272.291 267.376 264.963 262.676 260.798 258.753 255.764 253.065 250.633 248.475 246.516 245.39 244.286 242.512 240.942 240.125 239.574 238.141 234.99 233.666 231.982 231.434 231.699 235.634 237.12 237.534 237.187 236.664 237.057 236.998 237.41 238.208 239.234 240.179 240.223 240.876 237.4 240.809 244.806 248.708 251.669 253.644 254.79 254.847 254.202 254.572 257.925 262.121 265.945 268.117 269.076 270.996 272.585 273.32 274.052 275.023 276.213 277.37 278.161 278.782 279.231 279.325 279.27 278.934 278.739 279.127 280.032 281.464 282.938 283.745 283.848 284.664 286.422 288.471 289.5 290.303 290.857 291.542 292.637 293.538 294.048 294.45 294.764 295.22 296.077 296.312 294.882 292.671 290.53 286.302 285.376 289.607 296.184 299.743 298.789 298.903 299.001 299.093 299.13 299.603 300.346 301.368 301.221 298.326 296.893 296.659 296.166 296.508 295.95 296.08 296.643 296.93 297.291 297.694 297.396 296.539 295.894 295.356 294.365 293.209 292.148 291.057 290.073 289.223 288.037 286.231 283.781 280.042 274.953 268.873 265.042 262.55 260.721 258.817 255.796 253.113 250.618 248.239 246.305 244.896 243.702 242.162 240.908 239.857 239.399 237.064 233.885 232.668 231.802 231.127 232.254 236.416 237.264 237.806 237.646 237.801 235.716 236.941 237.356 238.369 239.126 240.195 240.26 240.873 237.356 240.783 244.783 249.012 252.063 253.974 255.05 255.011 254.443 254.971 258.203 261.832 265.022 267.101 268.112 270.237 272.22 273.081 273.859 274.896 276.154 277.379 278.206 278.824 279.163 279.24 279.324 279.204 278.951 279.152 279.961 280.797 281.638 282.166 282.605 283.65 285.372 287.1 288.603 289.962 290.693 291.688 292.73 293.311 293.298 293.524 293.878 294.288 294.682 294.417 292.897 291.279 287.387 284.264 286.207 292.156 299.263 298.591 298.75 299.828 300.08 300.094 300.513 300.674 302.169 303.082 302.981 299.657 297.294 295.972 295.124 295.421 295.541 295.964 296.586 296.661 296.806 296.683 297.038 296.389 295.84 295.312 294.348 293.216 292.135 291.006 290.052 289.295 288.315 286.972 285.094 281.768 276.74 271.324 265.951 262.904 260.663 258.599 255.758 253.002 250.366 248.028 246.198 244.676 243.595 242.361 241.187 240.369 239.896 235.835 233.314 232.238 231.737 231.539 233.37 236.542 237.371 238.155 238.209 238.306 235.124 237.157 237.318 238.105 239.04 240.239 240.295 240.872 237.376 240.634 245.0 249.273 252.397 254.27 255.309 255.134 254.657 255.324 258.422 261.494 263.954 266.119 267.469 269.682 271.784 272.774 273.63 274.726 276.05 277.362 278.246 278.864 279.106 279.438 279.765 280.051 279.93 280.072 280.623 281.22 281.908 282.167 282.972 284.442 286.331 287.31 287.996 289.297 290.28 291.236 291.723 291.288 291.551 291.506 291.709 292.31 292.562 292.193 290.82 287.958 284.851 284.702 288.987 296.088 299.705 298.522 298.852 299.968 300.207 299.203 300.266 301.489 302.904 303.808 304.157 302.399 299.69 297.523 296.111 295.109 295.236 295.905 296.563 296.543 296.497 296.027 296.695 296.253 295.807 295.307 294.419 293.383 292.315 291.155 290.214 289.496 288.521 287.329 285.817 282.966 278.346 273.282 269.363 263.944 260.622 258.301 255.753 253.057 250.236 247.657 245.94 244.539 243.771 242.92 242.227 241.208 240.002 235.291 233.064 232.4 232.042 232.185 234.529 236.661 237.459 238.346 238.255 240.2 235.207 237.102 237.248 237.868 238.968 240.281 240.334 240.869 237.304 240.81 244.941 249.528 252.712 254.555 255.421 255.221 254.893 255.726 258.652 261.196 263.123 265.293 267.307 269.383 271.315 272.391 273.344 274.502 275.882 277.297 278.262 278.901 279.194 279.778 280.861 281.382 281.477 281.666 282.196 282.727 282.982 283.26 284.313 285.91 287.981 288.49 288.56 289.001 289.736 290.268 290.242 289.704 289.181 288.206 287.871 287.898 287.628 287.183 286.058 284.673 284.454 287.704 292.981 299.047 298.756 299.323 300.509 299.161 298.469 298.741 299.533 300.788 302.329 303.648 304.052 303.727 301.117 298.666 296.787 295.685 295.239 295.869 296.542 296.54 296.402 296.265 296.563 296.195 295.828 295.34 294.513 293.558 292.516 291.367 290.428 289.712 288.776 287.656 286.292 283.791 279.786 275.182 271.272 266.617 260.951 258.112 255.971 253.047 250.163 247.462 245.782 244.134 243.999 243.568 244.03 243.422 240.036 235.805 233.467 232.585 232.739 232.981 235.489 236.67 237.501 238.376 239.272 240.811 234.849 236.88 237.237 237.814 238.945 240.315 240.377 240.865 237.305 240.786 245.116 249.707 252.98 254.727 255.442 255.298 255.156 256.147 258.852 260.967 262.603 264.557 266.768 269.136 270.598 271.904 272.944 274.182 275.61 277.122 278.22 278.939 279.432 280.535 281.395 282.052 282.665 283.186 284.04 284.702 284.882 285.36 286.936 288.197 289.394 290.003 290.025 290.339 290.805 291.452 291.275 290.082 288.601 287.202 286.351 285.871 285.394 285.271 283.915 284.174 287.278 292.244 298.462 300.686 300.002 300.468 300.226 298.517 298.103 298.725 300.533 300.842 301.236 302.067 302.696 302.097 300.118 298.375 296.937 295.773 295.357 295.893 296.493 296.514 296.384 296.473 296.481 296.183 295.837 295.342 294.567 293.676 292.689 291.578 290.626 289.887 289.03 288.019 286.761 284.523 280.992 276.833 272.992 268.557 261.351 258.261 256.314 253.55 250.114 247.216 245.411 243.828 243.994 243.792 243.992 243.912 241.057 237.733 234.796 233.552 234.292 235.443 236.213 236.852 237.699 238.288 239.446 241.005 236.387 237.48 237.266 237.388 238.902 240.369 240.413 240.861 237.277 240.598 245.255 249.89 253.184 254.851 255.444 255.404 255.447 256.533 259.118 260.856 262.228 263.906 265.824 267.641 269.877 271.447 272.549 273.85 275.32 276.848 278.076 278.93 279.74 280.835 281.638 282.398 283.144 284.179 285.201 285.804 286.678 287.302 288.378 289.889 291.218 292.122 292.059 292.63 293.627 294.26 294.525 292.939 290.86 288.946 287.712 286.479 285.86 284.898 285.159 287.739 291.87 296.835 301.287 301.725 300.625 299.18 298.467 298.197 298.453 300.338 302.266 302.748 302.687 302.322 301.177 298.699 297.454 297.331 296.948 295.841 295.554 296.055 296.443 296.357 296.241 296.362 296.36 296.095 295.761 295.282 294.565 293.722 292.809 291.783 290.829 290.05 289.278 288.364 287.191 285.202 282.069 278.127 273.881 268.76 261.852 258.901 257.418 255.156 250.547 247.284 245.081 243.603 243.695 243.479 243.219 244.086 243.442 238.426 237.91 234.75 236.179 237.404 236.743 237.048 237.938 238.22 239.765 241.256 236.91 238.038 237.3 236.937 238.804 240.407 240.444 240.86 237.29 240.743 245.008 250.009 253.359 254.938 255.46 255.529 255.785 257.019 259.349 260.843 262.038 263.633 265.441 267.317 268.956 271.121 272.223 273.553 275.049 276.56 277.862 278.848 279.789 280.769 281.608 282.372 283.184 284.27 285.301 286.167 287.04 288.383 289.739 291.499 292.417 293.212 293.536 293.365 294.424 295.587 296.709 296.12 294.786 293.323 292.202 290.936 289.972 289.363 290.039 292.092 295.691 299.67 301.541 301.062 299.712 298.176 297.978 298.164 298.707 301.03 302.616 303.905 304.065 302.364 299.683 296.108 294.843 296.299 296.564 295.824 295.753 296.178 296.348 296.18 296.07 296.176 296.174 295.998 295.711 295.261 294.58 293.751 292.862 291.906 290.984 290.207 289.485 288.619 287.534 285.864 283.076 279.122 274.408 269.22 262.527 260.709 259.513 256.383 250.997 247.352 245.01 243.344 242.803 243.079 243.015 244.342 244.472 242.003 239.054 236.081 237.023 237.51 236.933 237.19 237.937 238.003 239.691 241.526 237.967 238.31 237.384 236.708 238.767 240.411 240.472 240.859 237.244 240.736 245.313 250.092 253.477 255.032 255.397 255.657 256.107 257.523 259.644 260.845 262.005 263.605 265.174 267.012 268.62 270.816 271.96 273.316 274.809 276.301 277.624 278.696 279.658 280.611 281.455 282.182 283.001 284.036 285.086 286.025 287.117 288.456 290.168 291.982 292.768 293.269 293.562 293.577 294.502 295.74 297.103 297.915 297.872 297.502 297.211 296.236 294.991 294.467 294.656 295.808 297.648 299.367 300.267 299.463 298.278 297.851 298.028 298.216 298.404 299.593 303.067 304.875 304.474 301.313 298.155 294.952 293.947 295.699 296.028 295.896 295.909 296.207 296.193 296.018 295.892 295.915 295.958 295.917 295.693 295.238 294.574 293.767 292.901 291.991 291.097 290.323 289.634 288.815 287.777 286.298 283.775 279.931 274.982 269.925 263.7 262.1 260.544 257.501 251.704 247.669 245.152 243.353 243.09 243.613 245.057 244.963 245.06 243.365 241.787 237.698 237.462 237.642 237.218 237.543 237.947 237.701 239.496 241.765 240.658 238.55 237.581 236.447 238.722 240.402 240.496 240.857 237.223 240.499 245.311 250.171 253.63 255.1 255.409 255.93 256.499 258.002 260.221 261.035 262.086 263.559 264.957 266.741 268.582 270.243 271.791 273.167 274.627 276.082 277.379 278.498 279.484 280.451 281.307 281.996 282.732 283.589 284.491 285.466 286.743 288.307 290.227 291.859 292.716 293.434 293.817 294.103 294.828 295.936 297.236 298.01 298.401 298.546 298.547 298.451 298.117 297.684 297.36 297.488 298.0 298.373 298.641 297.936 297.565 297.642 297.983 298.022 298.135 300.089 303.91 305.283 303.95 300.826 298.515 295.837 294.25 295.502 296.129 295.997 296.107 296.193 296.02 295.873 295.758 295.709 295.787 295.842 295.628 295.141 294.523 293.78 292.954 292.073 291.185 290.399 289.74 288.998 288.004 286.633 284.278 280.565 275.537 270.597 265.816 263.662 261.395 258.17 252.073 248.033 246.012 244.779 245.434 246.627 245.993 245.634 245.208 243.5 242.474 239.441 237.686 237.661 237.535 237.812 238.019 237.523 239.895 241.888 240.877 238.791 237.56 236.258 238.658 240.406 240.52 240.856 237.198 240.539 245.248 250.18 253.652 255.135 255.512 256.047 256.933 258.65 261.201 261.161 261.967 263.617 264.124 266.735 268.493 269.964 271.79 273.122 274.519 275.931 277.199 278.35 279.364 280.339 281.271 281.961 282.534 283.181 283.957 284.878 286.076 287.667 289.5 291.393 292.459 293.228 293.739 294.349 295.257 296.257 297.151 297.894 298.291 298.612 298.859 298.923 298.885 298.566 298.144 297.856 297.696 297.478 297.234 297.059 297.092 297.362 297.827 297.846 298.176 300.534 304.082 304.859 303.258 301.131 299.081 296.119 294.415 294.953 296.215 296.262 296.346 296.18 295.886 295.714 295.602 295.571 295.673 295.705 295.479 295.043 294.509 293.838 293.054 292.189 291.288 290.47 289.822 289.17 288.229 286.898 284.697 281.141 276.151 271.233 268.112 264.957 261.813 258.152 252.342 248.606 247.268 247.623 248.533 247.691 246.421 246.126 244.836 242.881 241.603 240.147 237.619 237.582 237.585 238.09 238.137 237.277 240.454 241.904 241.047 239.053 237.608 236.103 238.619 240.432 240.544 240.857 237.208 240.623 245.245 250.203 253.689 255.15 255.53 256.21 257.377 259.435 261.532 261.451 261.629 263.378 264.509 266.453 268.354 269.819 271.584 273.107 274.419 275.793 277.052 278.24 279.265 280.211 281.187 281.934 282.314 282.749 283.402 284.306 285.507 286.99 288.677 290.708 292.104 293.142 293.82 294.634 295.755 296.625 297.195 297.677 298.083 298.539 298.771 298.843 298.697 298.566 298.306 298.025 297.786 297.224 297.034 296.841 296.961 297.356 297.791 297.976 298.624 300.766 303.719 304.02 302.432 300.701 298.677 296.356 295.133 296.151 296.367 296.527 296.414 296.045 295.728 295.55 295.422 295.421 295.517 295.506 295.336 295.017 294.524 293.869 293.115 292.275 291.383 290.546 289.879 289.27 288.401 287.127 285.129 281.76 276.764 272.001 269.051 266.134 261.422 257.617 252.744 249.438 248.447 249.786 249.662 248.292 246.958 246.393 244.284 242.082 241.113 240.374 238.01 237.406 237.879 238.48 238.38 238.959 242.303 241.895 241.07 239.329 237.368 235.908 238.585 240.48 240.57 240.854 237.173 240.591 245.202 250.173 253.742 255.168 255.602 256.411 257.767 259.963 261.669 261.409 261.802 263.654 264.84 266.601 268.713 269.897 270.988 273.1 274.308 275.635 276.912 278.145 279.157 280.049 281.044 281.74 282.008 282.241 282.817 283.76 285.006 286.508 288.38 290.516 292.362 293.148 293.979 294.787 295.752 296.429 296.934 297.636 298.127 298.632 298.817 298.696 298.623 298.663 298.518 298.364 297.761 297.038 296.736 296.65 296.82 297.137 297.62 297.969 299.35 301.798 303.705 303.624 301.781 299.843 297.827 296.778 296.525 296.427 296.574 296.584 296.253 295.81 295.573 295.411 295.241 295.254 295.319 295.277 295.21 294.995 294.485 293.834 293.145 292.351 291.475 290.625 289.922 289.329 288.521 287.31 285.474 282.29 277.26 272.809 269.801 266.689 260.634 257.059 253.681 251.029 250.493 250.958 250.169 248.603 247.354 246.414 243.848 241.656 241.581 240.983 238.628 238.206 238.707 239.018 239.13 241.687 242.285 241.647 241.064 239.583 237.05 235.755 238.522 240.517 240.594 240.849 237.166 240.404 245.036 250.021 253.737 255.215 255.772 256.671 258.175 260.862 261.778 261.732 262.175 263.912 265.575 267.435 269.146 270.045 270.796 272.794 274.16 275.422 276.738 278.006 278.99 279.806 280.701 281.361 281.549 281.641 282.217 283.279 284.708 286.455 288.729 290.864 292.584 294.175 295.155 295.43 295.627 296.019 296.532 297.323 297.926 298.217 298.207 298.247 298.29 298.11 298.507 298.357 297.649 297.009 296.68 296.587 296.776 296.995 297.201 297.632 299.658 302.88 303.365 302.958 301.265 299.545 297.327 297.406 297.187 296.673 296.543 296.35 295.931 295.565 295.445 295.251 295.033 295.067 295.099 295.05 295.089 294.918 294.359 293.762 293.18 292.432 291.568 290.708 289.972 289.385 288.621 287.458 285.76 282.782 277.799 273.419 270.174 266.893 260.637 257.608 255.561 253.107 252.391 251.655 250.388 248.846 247.683 246.579 243.834 242.378 242.431 241.344 239.933 239.603 239.459 240.04 241.191 242.458 242.036 241.309 240.916 239.803 237.367 235.692 238.524 240.535 240.615 240.844 237.111 240.416 245.037 249.958 253.719 255.262 255.808 256.948 258.563 261.757 262.278 262.166 262.599 264.254 266.045 268.21 269.409 270.185 270.993 272.314 273.966 275.232 276.527 277.802 278.775 279.546 280.343 280.928 281.082 281.177 281.842 283.083 284.732 286.798 289.47 291.54 292.884 294.221 295.312 295.49 295.472 295.706 296.072 296.535 296.964 297.287 297.535 297.904 298.166 298.066 297.943 297.815 297.359 297.21 296.78 296.732 296.886 297.063 296.894 297.434 299.548 302.876 303.344 301.909 300.399 299.008 297.041 297.314 297.132 296.644 296.361 296.038 295.654 295.418 295.296 295.014 294.815 294.89 294.879 294.842 294.966 294.825 294.287 293.76 293.222 292.487 291.668 290.825 290.054 289.47 288.728 287.567 285.972 283.25 278.388 273.902 270.321 267.086 260.821 259.08 257.979 256.152 253.873 252.263 250.868 249.477 248.383 247.407 245.001 243.675 242.534 241.343 240.675 240.052 240.618 241.74 242.274 242.362 241.69 240.738 240.686 239.947 237.91 235.647 238.581 240.545 240.632 240.839 237.037 240.356 244.841 249.874 253.677 255.292 255.918 257.186 258.942 261.797 262.712 262.692 263.226 264.757 266.453 268.58 269.503 270.195 271.003 272.246 273.825 275.096 276.31 277.556 278.543 279.309 280.033 280.533 280.664 280.842 281.668 283.095 284.872 287.132 289.953 291.894 293.066 294.198 295.264 295.736 295.206 295.424 295.586 295.522 295.605 296.028 296.767 297.497 297.813 297.735 297.473 297.278 297.005 297.062 296.964 297.025 296.948 296.714 296.724 297.34 299.57 302.478 302.857 301.226 299.869 298.405 297.266 297.231 297.004 296.62 296.161 295.73 295.412 295.276 295.119 294.808 294.674 294.73 294.65 294.641 294.834 294.729 294.241 293.741 293.173 292.454 291.737 290.942 290.131 289.544 288.828 287.66 286.116 283.622 278.913 274.28 270.397 267.291 262.219 260.353 258.84 257.186 255.222 253.636 252.121 250.896 250.347 248.673 246.552 244.293 242.039 241.607 240.909 240.578 241.871 242.301 242.272 242.047 241.122 240.096 240.429 240.063 238.319 235.637 238.66 240.56 240.65 240.842 237.083 240.221 244.801 249.724 253.623 255.296 256.051 257.432 259.448 261.531 263.111 263.369 264.001 265.174 266.941 268.711 269.461 270.151 271.017 272.308 273.808 275.019 276.109 277.29 278.312 279.091 279.74 280.143 280.281 280.626 281.67 283.237 285.0 287.255 289.984 291.789 292.965 294.089 295.073 295.719 295.815 295.428 295.19 294.599 294.561 295.078 295.852 296.895 297.535 297.518 297.163 296.863 296.678 296.797 297.265 297.305 297.169 296.778 296.762 297.381 299.255 301.539 301.668 300.39 299.412 298.449 297.473 297.335 296.957 296.491 295.895 295.425 295.182 295.114 294.936 294.655 294.573 294.557 294.429 294.47 294.682 294.573 294.141 293.663 293.063 292.385 291.789 291.051 290.202 289.602 288.922 287.782 286.255 283.816 279.118 274.378 270.328 267.215 264.018 261.191 259.557 258.324 256.829 255.95 255.807 255.029 252.533 249.833 247.023 243.687 241.922 241.615 241.145 241.296 242.301 242.483 242.075 241.641 240.471 239.264 240.061 240.13 237.31 235.644 238.742 240.581 240.689 240.852 237.075 240.185 244.566 249.669 253.546 255.323 256.172 257.69 260.028 261.759 263.548 264.127 264.82 265.695 267.306 268.664 269.349 270.225 271.199 272.513 273.91 275.006 275.933 277.022 278.088 278.883 279.438 279.725 279.928 280.558 281.842 283.433 285.036 287.089 289.57 291.249 292.487 293.783 294.902 295.648 296.029 296.312 295.787 294.651 294.309 294.667 295.341 296.417 297.384 297.384 296.827 296.379 296.251 296.566 297.218 297.704 297.475 297.034 297.067 297.332 298.598 300.107 300.277 299.346 298.218 298.01 297.725 297.287 296.764 296.15 295.553 295.137 294.943 294.906 294.739 294.495 294.393 294.312 294.244 294.345 294.48 294.334 293.975 293.544 292.943 292.312 291.799 291.118 290.275 289.658 289.006 287.913 286.385 283.875 279.101 274.212 270.252 267.287 264.314 261.814 260.483 260.166 260.087 259.859 259.604 258.466 255.225 250.908 246.749 242.7 241.406 241.459 241.487 241.859 242.583 242.364 241.749 241.171 239.598 238.408 239.676 240.192 237.461 235.71 238.801 240.629 240.744 240.866 237.069 240.172 244.567 249.374 253.436 255.356 256.338 257.86 260.242 262.083 264.125 264.771 265.385 266.196 267.459 268.616 269.44 270.465 271.449 272.807 274.06 275.017 275.821 276.822 277.896 278.685 279.153 279.388 279.732 280.65 282.049 283.528 284.958 286.833 289.092 290.678 291.867 293.233 294.524 295.54 296.173 296.451 296.333 296.023 295.925 295.698 295.509 296.179 296.994 297.082 296.469 295.875 295.709 295.952 296.653 297.199 297.361 297.335 297.279 297.197 298.076 299.178 299.389 298.521 297.919 297.861 297.612 297.088 296.507 295.915 295.379 294.965 294.771 294.729 294.573 294.306 294.158 294.099 294.105 294.184 294.243 294.141 293.881 293.465 292.842 292.195 291.671 291.067 290.343 289.738 289.063 288.008 286.455 283.732 278.73 273.983 270.292 267.414 264.695 262.624 261.771 262.751 263.662 263.698 263.11 261.132 256.519 251.514 244.456 241.237 240.528 240.778 241.298 241.783 242.371 242.13 241.376 240.495 238.532 237.595 239.285 240.154 239.516 235.882 238.851 240.685 240.78 240.882 236.97 239.989 244.248 249.335 253.291 255.359 256.528 257.92 260.097 262.344 264.664 265.323 265.835 266.549 267.618 268.699 269.722 270.715 271.7 273.07 274.166 275.012 275.738 276.66 277.697 278.436 278.854 279.116 279.641 280.79 282.19 283.518 284.838 286.618 288.739 290.278 291.406 292.722 294.01 295.142 295.995 296.565 296.845 297.019 297.097 297.14 296.469 296.171 296.353 296.263 296.065 295.806 295.631 295.475 295.857 296.497 297.016 297.213 297.177 297.255 297.763 298.496 299.25 299.048 298.461 297.935 297.377 296.819 296.325 295.823 295.28 294.863 294.692 294.626 294.435 294.135 293.975 293.938 293.934 293.948 294.01 294.018 293.818 293.353 292.7 292.039 291.483 290.943 290.361 289.791 289.072 288.03 286.476 283.574 278.503 274.246 270.751 267.818 265.48 264.103 264.248 265.709 266.294 266.012 265.174 262.672 257.149 250.613 242.66 240.144 239.301 239.34 240.243 241.061 241.721 241.435 240.775 239.475 237.47 236.822 238.979 240.239 239.791 236.179 239.009 240.673 240.813 240.897 236.905 239.91 244.285 249.077 253.129 255.341 256.632 258.079 260.218 262.59 265.101 265.886 266.3 266.923 267.83 268.984 270.081 270.996 271.966 273.263 274.214 274.985 275.658 276.51 277.468 278.122 278.523 278.878 279.577 280.888 282.24 283.432 284.697 286.429 288.47 290.007 291.129 292.353 293.552 294.681 295.621 296.413 297.148 297.632 297.819 297.825 297.823 296.507 295.846 295.513 296.086 296.326 295.898 295.642 295.7 296.28 296.741 296.828 296.946 297.012 297.337 298.043 299.203 299.002 298.346 297.724 297.121 296.611 296.202 295.746 295.215 294.842 294.691 294.567 294.304 293.98 293.817 293.768 293.722 293.695 293.794 293.885 293.707 293.199 292.547 291.905 291.317 290.794 290.318 289.793 289.068 288.061 286.54 283.623 278.715 274.858 271.614 268.654 266.487 266.109 267.045 267.989 268.262 267.839 266.662 263.327 257.291 249.772 242.532 239.692 238.802 238.476 239.129 240.209 240.635 240.433 239.725 238.345 236.428 236.266 238.696 240.179 239.924 238.323 238.996 240.7 240.87 240.939 236.915 239.952 244.099 248.9 252.922 255.296 256.714 258.296 260.345 262.857 265.465 266.659 267.008 267.468 268.186 269.393 270.487 271.339 272.219 273.345 274.218 274.935 275.572 276.35 277.18 277.719 278.129 278.614 279.453 280.849 282.171 283.3 284.545 286.204 288.151 289.72 290.927 292.115 293.221 294.26 295.182 296.039 296.96 297.699 298.076 298.21 298.163 298.128 296.192 295.721 296.538 297.087 296.509 296.032 295.702 295.732 296.005 296.484 296.787 296.957 297.275 298.3 299.075 298.766 298.067 297.487 297.001 296.533 296.114 295.675 295.213 294.894 294.691 294.478 294.15 293.821 293.626 293.531 293.487 293.484 293.58 293.655 293.504 293.044 292.433 291.824 291.211 290.643 290.196 289.74 289.068 288.132 286.673 283.875 279.245 275.598 272.619 269.815 267.863 268.179 268.964 269.354 269.327 268.83 267.434 263.626 257.745 248.324 243.856 241.137 239.417 238.524 238.717 239.267 239.323 238.958 238.138 237.076 235.506 235.85 238.631 240.139 239.921 239.03 238.963 240.816 240.888 241.016 236.889 239.774 243.968 248.555 252.679 255.206 256.779 258.459 260.454 263.045 265.798 267.211 267.589 267.921 268.66 269.719 270.811 271.676 272.412 273.329 274.19 274.897 275.506 276.21 276.91 277.343 277.783 278.36 279.251 280.655 282.011 283.177 284.448 286.016 287.838 289.403 290.706 291.945 293.016 294.02 294.95 295.786 296.674 297.477 297.993 298.218 298.133 298.397 297.764 297.096 297.828 297.887 297.656 296.709 295.874 295.546 295.605 295.948 296.47 296.703 297.007 297.875 299.103 298.7 297.982 297.419 296.989 296.533 296.079 295.624 295.16 294.814 294.562 294.338 294.009 293.68 293.449 293.315 293.289 293.312 293.363 293.396 293.31 292.955 292.346 291.725 291.125 290.532 290.051 289.664 289.095 288.227 286.811 284.133 279.809 276.385 273.716 271.317 269.827 270.132 270.477 270.469 270.184 269.649 268.064 264.217 258.874 250.16 246.527 243.533 241.024 239.189 238.59 238.296 237.874 237.271 236.643 235.964 234.93 235.686 238.651 240.121 240.061 239.375 239.229 240.836 240.975 241.036 236.869 239.666 243.785 248.376 252.449 255.076 256.826 258.556 260.487 263.098 266.024 267.579 267.978 268.261 269.047 270.001 271.072 271.92 272.551 273.28 274.125 274.864 275.443 276.071 276.652 277.038 277.524 278.14 279.032 280.427 281.843 283.076 284.383 285.898 287.621 289.154 290.517 291.828 292.912 293.929 294.866 295.674 296.5 297.29 297.877 298.159 298.105 298.041 298.77 299.087 299.259 299.247 299.046 298.848 297.885 296.627 296.12 295.905 296.017 296.27 296.747 297.415 298.903 298.697 298.015 297.455 297.033 296.561 296.055 295.539 295.017 294.643 294.399 294.183 293.85 293.515 293.282 293.128 293.078 293.114 293.177 293.204 293.141 292.845 292.244 291.612 291.052 290.464 289.944 289.589 289.12 288.305 286.888 284.216 280.105 276.915 274.555 272.569 271.381 271.363 271.465 271.248 270.922 270.522 269.034 265.65 260.316 256.059 251.292 246.528 243.163 240.341 238.868 237.609 236.405 235.545 235.397 235.385 234.722 235.821 238.692 240.156 240.047 239.541 239.23 240.922 241.055 241.036 236.797 239.619 243.532 248.063 252.162 254.934 256.812 258.692 260.505 262.955 266.044 267.844 268.292 268.552 269.342 270.246 271.29 272.093 272.643 273.219 274.024 274.813 275.363 275.904 276.393 276.816 277.343 277.966 278.839 280.221 281.691 282.985 284.329 285.832 287.501 288.995 290.393 291.793 292.914 293.925 294.835 295.633 296.402 297.113 297.742 298.155 298.2 298.094 298.329 298.753 299.171 299.315 299.239 299.315 299.335 299.072 296.994 296.302 295.952 296.048 296.554 297.335 298.747 298.694 298.083 297.551 297.124 296.613 296.043 295.454 294.872 294.471 294.227 293.985 293.634 293.323 293.125 292.953 292.85 292.9 293.033 293.066 292.955 292.687 292.159 291.542 290.989 290.403 289.839 289.486 289.119 288.387 286.979 284.267 280.392 277.421 275.323 273.614 272.532 272.259 272.185 271.862 271.583 271.302 269.965 267.157 262.567 258.859 255.383 251.05 246.628 242.141 239.781 237.498 235.502 234.253 234.591 235.089 234.691 236.027 238.867 240.174 240.097 239.756 239.319 240.986 241.065 241.036 236.719 239.47 243.379 247.771 251.87 254.725 256.684 258.683 260.487 262.729 265.901 268.032 268.584 268.858 269.57 270.454 271.468 272.245 272.727 273.147 273.883 274.731 275.262 275.695 276.134 276.643 277.197 277.831 278.695 280.058 281.55 282.897 284.272 285.791 287.415 288.884 290.326 291.804 292.94 293.845 294.676 295.508 296.288 296.902 297.534 298.177 298.505 298.541 298.545 298.562 298.612 298.572 298.635 298.056 298.352 298.994 298.428 296.415 295.858 295.997 296.603 297.796 298.848 298.734 298.161 297.67 297.237 296.693 296.069 295.427 294.785 294.294 293.973 293.681 293.371 293.143 292.986 292.779 292.612 292.669 292.884 292.92 292.726 292.496 292.113 291.507 290.877 290.269 289.686 289.307 289.043 288.459 287.169 284.6 280.967 278.156 276.141 274.566 273.505 273.054 272.831 272.5 272.327 272.129 270.997 268.729 265.877 263.108 260.005 255.166 250.946 244.413 241.158 238.114 235.321 233.817 234.446 235.079 234.94 236.485 239.075 240.141 240.078 239.966 239.418 241.026 241.067 241.118 236.7 239.475 243.227 247.451 251.538 254.437 256.52 258.604 260.412 262.425 265.702 268.116 268.801 269.135 269.736 270.588 271.572 272.345 272.769 273.064 273.739 274.656 275.184 275.522 275.94 276.483 277.068 277.753 278.621 279.951 281.445 282.846 284.275 285.78 287.329 288.778 290.268 291.754 292.83 293.623 294.384 295.241 296.094 296.738 297.361 298.045 298.544 298.781 298.945 298.97 298.954 299.061 299.065 298.767 298.433 297.998 297.361 296.283 295.962 296.264 297.042 298.542 299.082 298.833 298.255 297.78 297.331 296.778 296.142 295.453 294.741 294.155 293.754 293.449 293.199 293.004 292.832 292.628 292.45 292.445 292.653 292.75 292.582 292.365 292.021 291.379 290.689 290.12 289.567 289.129 288.892 288.448 287.389 285.317 282.047 279.099 276.88 275.256 274.202 273.666 273.346 273.039 272.932 272.743 271.767 269.826 267.721 266.107 264.23 259.309 253.714 246.826 242.738 239.446 236.12 234.341 234.775 235.335 235.465 237.131 239.401 240.145 240.13 240.118 239.521 241.063 241.066 241.123 236.764 239.292 242.996 247.145 251.135 254.129 256.328 258.368 260.104 262.048 265.383 268.119 268.98 269.36 269.868 270.682 271.628 272.413 272.787 272.976 273.588 274.582 275.127 275.387 275.767 276.294 276.936 277.69 278.576 279.864 281.352 282.819 284.312 285.789 287.264 288.71 290.241 291.695 292.689 293.437 294.173 295.008 295.91 296.654 297.292 297.893 298.382 298.723 299.017 299.204 299.262 299.318 299.339 299.16 298.897 298.534 297.657 296.606 296.442 296.776 297.963 298.96 299.248 298.899 298.365 297.928 297.467 296.901 296.241 295.485 294.713 294.103 293.682 293.36 293.081 292.857 292.666 292.5 292.34 292.242 292.385 292.57 292.484 292.239 291.865 291.226 290.561 290.051 289.517 288.997 288.723 288.365 287.545 285.958 283.421 280.224 277.635 275.843 274.785 274.233 273.85 273.581 273.535 273.366 272.535 270.914 269.265 268.349 267.329 263.289 255.611 249.198 244.404 240.968 237.791 235.555 235.61 236.097 236.279 237.907 239.703 240.201 240.217 240.134 239.617 241.075 241.064 241.124 236.674 239.195 242.802 246.818 250.764 253.791 256.106 258.013 259.599 261.433 264.999 268.052 269.108 269.51 269.964 270.729 271.654 272.457 272.807 272.893 273.411 274.48 275.077 275.282 275.598 276.104 276.798 277.628 278.544 279.795 281.263 282.783 284.332 285.785 287.212 288.671 290.226 291.646 292.57 293.322 294.09 294.89 295.771 296.617 297.299 297.818 298.222 298.533 298.837 299.122 299.256 299.274 299.291 299.308 299.269 299.044 298.558 298.044 297.303 298.197 298.777 299.248 299.303 298.932 298.474 298.078 297.612 297.029 296.337 295.517 294.678 294.072 293.672 293.328 292.997 292.744 292.542 292.4 292.259 292.091 292.135 292.362 292.353 292.087 291.708 291.141 290.537 290.045 289.494 288.899 288.561 288.249 287.628 286.482 284.631 281.644 278.58 276.475 275.379 274.875 274.486 274.261 274.271 274.137 273.396 271.928 270.38 269.653 269.165 266.197 257.019 251.604 246.094 242.762 239.597 237.403 237.003 237.355 237.458 238.761 240.073 240.329 240.353 240.267 239.724 241.158 241.064 241.123 236.62 239.256 242.508 246.44 250.37 253.426 255.827 257.745 259.052 260.672 264.571 267.926 269.164 269.627 270.045 270.719 271.644 272.479 272.833 272.814 273.228 274.311 275.007 275.202 275.452 275.943 276.672 277.57 278.53 279.753 281.174 282.702 284.28 285.721 287.131 288.582 290.139 291.552 292.448 293.224 294.085 294.898 295.733 296.601 297.299 297.815 298.193 298.416 298.558 298.8 299.013 299.042 299.03 299.125 299.278 299.308 299.133 298.917 298.858 299.04 299.287 299.389 299.29 298.983 298.6 298.192 297.707 297.121 296.422 295.574 294.669 294.021 293.614 293.273 292.953 292.717 292.486 292.281 292.146 291.996 291.957 292.108 292.135 291.929 291.63 291.159 290.558 289.991 289.401 288.8 288.431 288.14 287.647 286.843 285.496 283.123 279.739 277.202 275.91 275.407 275.028 274.807 274.886 274.835 274.2 272.945 271.479 270.741 270.439 268.262 259.711 252.062 247.894 244.472 241.622 239.409 238.773 238.983 238.872 239.657 240.464 240.492 240.575 240.323 239.758 241.257 241.114 241.118 236.597 238.97 242.339 246.107 249.953 253.035 255.473 257.332 258.952 260.234 264.092 267.795 269.159 269.704 270.099 270.705 271.619 272.474 272.879 272.81 273.12 274.131 274.909 275.136 275.369 275.849 276.587 277.52 278.529 279.75 281.125 282.625 284.193 285.624 287.022 288.438 289.993 291.442 292.365 293.153 294.091 294.993 295.858 296.665 297.273 297.721 298.098 298.34 298.469 298.69 298.93 298.98 298.962 299.021 299.155 299.274 299.322 299.328 299.32 299.393 299.479 299.469 299.373 299.159 298.79 298.343 297.836 297.206 296.478 295.653 294.759 294.063 293.606 293.247 292.933 292.698 292.413 292.127 291.998 291.932 291.878 291.932 291.959 291.814 291.548 291.093 290.493 289.906 289.32 288.733 288.326 288.03 287.615 287.008 285.995 284.192 281.049 278.105 276.447 275.885 275.516 275.31 275.475 275.56 275.077 273.916 272.363 271.446 271.332 269.925 262.893 253.736 250.655 246.123 243.656 241.625 240.862 240.67 240.21 240.559 240.949 240.703 240.823 240.79 240.055 241.358 241.131 241.117 236.568 238.988 242.103 245.711 249.52 252.561 255.137 256.871 258.491 259.792 263.676 267.625 269.158 269.752 270.131 270.709 271.586 272.461 272.93 272.863 273.064 273.961 274.777 275.055 275.299 275.79 276.537 277.478 278.514 279.742 281.092 282.581 284.131 285.552 286.946 288.366 289.931 291.413 292.383 293.185 294.149 295.089 295.981 296.733 297.262 297.614 297.922 298.186 298.398 298.644 298.843 298.866 298.866 298.93 299.05 299.195 299.367 299.48 299.496 299.514 299.57 299.583 299.528 299.354 298.97 298.506 297.993 297.297 296.487 295.654 294.817 294.141 293.66 293.266 292.904 292.639 292.336 292.009 291.854 291.829 291.798 291.804 291.812 291.665 291.362 290.92 290.395 289.863 289.284 288.674 288.184 287.862 287.523 287.068 286.34 285.013 282.57 279.435 277.255 276.448 276.032 275.77 275.902 276.044 275.675 274.668 273.225 272.158 271.944 271.015 265.445 254.696 252.37 247.496 245.32 243.673 242.873 242.215 241.476 241.43 241.439 240.924 241.089 242.29 240.198 241.457 241.149 241.12 236.546 238.9 241.884 245.355 249.058 252.168 254.737 256.404 257.973 259.648 263.23 267.396 269.165 269.775 270.149 270.716 271.549 272.436 272.97 272.951 273.045 273.797 274.614 274.958 275.24 275.766 276.513 277.436 278.475 279.707 281.051 282.551 284.085 285.496 286.913 288.369 289.942 291.423 292.45 293.298 294.252 295.162 296.014 296.717 297.227 297.543 297.772 298.025 298.301 298.54 298.673 298.677 298.71 298.8 298.938 299.106 299.318 299.462 299.515 299.556 299.657 299.741 299.713 299.531 299.14 298.673 298.156 297.398 296.471 295.587 294.807 294.203 293.748 293.341 292.929 292.615 292.305 291.951 291.725 291.677 291.686 291.685 291.659 291.461 291.105 290.697 290.294 289.833 289.241 288.591 288.004 287.601 287.3 286.978 286.526 285.696 284.004 281.23 278.516 277.145 276.483 276.136 276.182 276.393 276.209 275.408 274.006 272.777 272.512 271.716 267.045 255.808 253.246 248.505 246.699 245.417 244.572 243.579 242.587 242.236 241.96 241.188 241.36 242.562 240.446 241.543 241.188 241.132 236.502 238.807 241.65 245.005 248.593 251.683 254.249 255.939 257.426 259.457 262.562 266.926 269.149 269.803 270.165 270.716 271.501 272.403 272.99 273.067 273.075 273.631 274.417 274.857 275.215 275.773 276.508 277.386 278.395 279.614 280.972 282.489 284.016 285.429 286.9 288.406 289.93 291.367 292.457 293.42 294.379 295.212 295.956 296.599 297.126 297.493 297.71 297.943 298.188 298.369 298.473 298.544 298.61 298.667 298.814 299.021 299.248 299.428 299.568 299.664 299.794 299.925 299.948 299.79 299.426 298.944 298.374 297.543 296.494 295.558 294.86 294.363 293.979 293.593 293.152 292.755 292.389 291.979 291.643 291.521 291.546 291.553 291.474 291.236 290.868 290.481 290.102 289.628 289.043 288.462 287.881 287.362 286.965 286.678 286.405 285.97 284.829 282.654 279.855 277.965 277.029 276.578 276.537 276.714 276.63 276.002 274.8 273.537 273.0 272.208 268.331 257.11 254.103 249.287 247.795 246.73 245.842 244.675 243.493 242.926 242.422 241.496 241.671 242.739 240.696 241.648 241.218 241.148 236.418 238.692 241.505 244.578 248.11 251.167 253.761 255.449 256.927 259.135 262.023 266.376 269.079 269.837 270.154 270.656 271.445 272.361 272.969 273.136 273.138 273.518 274.243 274.779 275.209 275.785 276.51 277.333 278.298 279.509 280.875 282.39 283.938 285.394 286.901 288.402 289.846 291.218 292.385 293.46 294.46 295.277 295.992 296.572 297.042 297.41 297.663 297.891 298.09 298.228 298.336 298.47 298.539 298.568 298.746 299.03 299.285 299.498 299.686 299.78 299.879 300.009 300.085 300.0 299.714 299.245 298.605 297.677 296.566 295.669 295.123 294.747 294.391 294.005 293.537 293.053 292.596 292.133 291.723 291.508 291.475 291.462 291.373 291.148 290.768 290.313 289.842 289.318 288.775 288.312 287.803 287.18 286.638 286.302 286.077 285.929 285.3 283.634 281.124 278.94 277.755 277.124 276.979 277.091 277.037 276.653 275.563 274.259 273.494 272.475 269.024 259.129 254.646 249.968 248.53 247.653 246.654 245.529 244.213 243.504 242.895 241.873 241.991 242.971 240.971 241.778 241.268 241.161 236.401 238.552 241.296 244.212 247.632 250.685 253.155 254.864 256.277 258.677 261.87 265.91 268.915 269.862 270.107 270.55 271.377 272.306 272.923 273.168 273.214 273.453 274.084 274.704 275.195 275.781 276.498 277.276 278.209 279.43 280.799 282.303 283.908 285.435 286.941 288.378 289.745 291.11 292.37 293.516 294.521 295.343 296.083 296.628 297.02 297.353 297.605 297.8 297.964 298.094 298.192 298.318 298.408 298.479 298.718 299.081 299.374 299.575 299.741 299.825 299.91 300.031 300.115 300.071 299.848 299.42 298.743 297.746 296.64 295.853 295.483 295.232 294.898 294.491 293.989 293.449 292.926 292.433 291.96 291.612 291.45 291.389 291.298 291.087 290.679 290.153 289.608 289.041 288.501 288.084 287.644 286.962 286.303 285.903 285.658 285.566 285.326 284.124 282.015 279.755 278.376 277.657 277.487 277.573 277.483 277.17 276.252 274.994 273.839 272.497 269.261 261.407 255.043 251.329 249.061 248.341 247.264 246.044 244.83 244.111 243.397 242.318 242.342 242.817 241.295 241.901 241.332 241.178 236.341 238.496 241.089 243.816 247.111 250.144 252.594 254.237 255.591 257.893 261.544 265.534 268.662 269.901 270.09 270.473 271.318 272.239 272.853 273.169 273.281 273.423 273.943 274.619 275.17 275.766 276.477 277.223 278.133 279.378 280.752 282.26 283.938 285.533 286.985 288.318 289.641 291.059 292.401 293.582 294.574 295.402 296.176 296.702 297.033 297.341 297.576 297.706 297.83 297.964 298.041 298.139 298.274 298.418 298.692 299.121 299.476 299.66 299.78 299.88 299.98 300.092 300.164 300.139 299.921 299.492 298.781 297.735 296.688 296.09 295.958 295.849 295.535 295.073 294.521 293.933 293.363 292.837 292.308 291.831 291.5 291.35 291.23 291.005 290.585 290.032 289.462 288.845 288.192 287.678 287.268 286.648 285.978 285.557 285.339 285.198 285.063 284.218 282.539 280.45 278.994 278.255 278.051 277.99 277.833 277.609 276.879 275.551 274.106 272.258 269.069 263.295 256.217 253.015 249.861 248.724 247.788 246.485 245.44 244.752 243.938 242.802 242.72 242.479 241.586 242.007 241.4 241.221 236.327 238.376 240.835 243.438 246.616 249.597 252.008 253.557 254.827 257.082 260.895 265.058 268.192 269.93 270.254 270.514 271.293 272.151 272.737 273.12 273.314 273.413 273.822 274.515 275.132 275.746 276.457 277.176 278.071 279.357 280.745 282.267 284.012 285.619 286.954 288.176 289.51 291.004 292.342 293.542 294.603 295.502 296.281 296.755 297.044 297.339 297.559 297.625 297.699 297.833 297.906 297.991 298.169 298.363 298.622 299.117 299.596 299.799 299.903 300.07 300.197 300.266 300.339 300.324 300.042 299.511 298.706 297.587 296.671 296.415 296.64 296.692 296.36 295.776 295.096 294.419 293.8 293.251 292.717 292.189 291.717 291.418 291.21 290.938 290.528 289.979 289.355 288.626 287.827 287.185 286.795 286.349 285.752 285.311 285.111 284.957 284.776 284.205 282.933 281.203 279.742 278.843 278.497 278.431 278.319 278.02 277.348 276.049 274.303 271.869 266.98 264.77 258.599 253.523 251.611 249.298 248.39 246.963 245.983 245.407 244.498 243.312 243.275 242.15 241.914 242.123 241.465 241.26 236.272 238.267 240.627 243.059 246.084 249.059 251.42 252.913 254.035 256.124 259.755 264.498 267.74 269.916 270.481 270.685 271.332 272.054 272.606 273.03 273.3 273.426 273.76 274.432 275.099 275.737 276.45 277.16 278.046 279.34 280.729 282.266 284.016 285.554 286.788 287.998 289.423 290.947 292.205 293.4 294.607 295.62 296.368 296.781 297.03 297.266 297.456 297.536 297.599 297.716 297.8 297.895 298.062 298.268 298.57 299.114 299.624 299.813 299.942 300.169 300.304 300.321 300.397 300.357 300.023 299.479 298.642 297.482 296.721 296.809 297.315 297.468 297.108 296.363 295.512 294.729 294.082 293.548 293.039 292.495 291.944 291.533 291.236 290.917 290.515 289.946 289.205 288.358 287.491 286.777 286.351 285.997 285.476 285.028 284.85 284.753 284.509 284.086 283.21 281.85 280.415 279.453 279.083 279.089 278.962 278.504 277.779 276.487 274.475 271.165 266.335 266.276 261.54 255.17 251.917 250.12 249.342 247.505 246.576 246.039 245.122 243.87 243.655 241.953 242.231 242.236 241.532 241.293 236.197 238.165 240.379 242.7 245.616 248.521 250.808 252.273 253.27 255.215 258.775 263.807 267.192 269.833 270.709 270.95 271.397 271.975 272.483 272.92 273.262 273.445 273.737 274.368 275.07 275.729 276.444 277.162 278.036 279.295 280.664 282.191 283.884 285.324 286.54 287.85 289.395 290.944 292.14 293.33 294.637 295.69 296.385 296.779 297.024 297.182 297.324 297.444 297.518 297.605 297.712 297.814 297.951 298.181 298.557 299.087 299.531 299.716 299.897 300.143 300.243 300.244 300.307 300.24 299.923 299.467 298.687 297.584 296.998 297.311 297.992 298.319 298.055 297.22 296.217 295.297 294.564 293.974 293.411 292.809 292.175 291.659 291.257 290.865 290.456 289.887 289.052 288.102 287.19 286.43 285.92 285.542 285.075 284.625 284.454 284.442 284.267 283.934 283.311 282.292 281.052 280.193 279.817 279.824 279.629 279.09 278.189 276.929 274.737 270.599 266.14 267.216 263.938 257.717 253.278 251.061 249.851 248.268 247.454 247.179 246.378 244.519 242.884 242.175 242.508 242.357 241.596 241.324 236.11 238.084 240.238 242.359 245.11 247.965 250.197 251.628 252.498 254.343 257.721 262.782 266.411 269.621 270.904 271.215 271.464 271.917 272.382 272.818 273.218 273.476 273.744 274.321 275.041 275.714 276.427 277.163 278.03 279.23 280.541 282.004 283.583 284.941 286.246 287.729 289.38 290.951 292.144 293.364 294.696 295.709 296.33 296.736 297.007 297.109 297.205 297.36 297.446 297.503 297.627 297.736 297.846 298.104 298.533 299.012 299.397 299.641 299.873 300.075 300.124 300.142 300.195 300.116 299.863 299.51 298.832 297.901 297.489 297.884 298.729 299.386 299.31 298.439 297.228 296.146 295.222 294.439 293.74 293.06 292.377 291.792 291.265 290.771 290.329 289.786 288.951 287.92 286.919 286.088 285.479 285.082 284.687 284.287 284.107 284.1 283.988 283.747 283.316 282.551 281.593 280.815 280.546 280.444 280.094 279.481 278.633 277.322 275.18 270.797 266.354 267.727 266.063 261.51 255.701 252.439 250.631 248.901 247.946 247.974 248.007 245.232 242.384 242.602 242.776 242.495 241.661 241.351 236.135 237.994 240.045 241.982 244.642 247.416 249.568 250.91 251.732 253.44 256.732 261.313 265.238 269.146 271.016 271.454 271.547 271.894 272.324 272.738 273.182 273.523 273.771 274.284 275.007 275.684 276.393 277.157 278.023 279.125 280.316 281.65 283.091 284.436 285.945 287.634 289.317 290.867 292.127 293.434 294.755 295.706 296.245 296.614 296.901 296.999 297.076 297.246 297.348 297.377 297.49 297.601 297.721 298.02 298.469 298.911 299.32 299.663 299.878 299.983 300.019 300.073 300.128 300.082 299.919 299.61 299.069 298.455 298.167 298.493 299.545 300.509 300.183 299.249 297.91 296.684 295.546 294.297 293.398 292.636 292.125 291.669 291.179 290.658 290.207 289.699 288.942 287.901 286.781 285.899 285.291 284.864 284.474 284.071 283.814 283.748 283.644 283.457 283.195 282.651 281.929 281.386 281.278 280.814 280.365 279.796 278.943 277.755 275.678 271.881 266.731 268.189 267.65 264.984 259.68 254.674 252.161 249.963 248.949 248.479 248.249 246.671 243.453 243.123 243.079 242.642 241.727 241.372 236.081 237.86 239.768 241.64 244.181 246.824 248.946 250.17 250.893 252.518 255.643 259.985 264.297 268.373 270.941 271.613 271.651 271.901 272.312 272.707 273.159 273.557 273.795 274.272 274.985 275.652 276.36 277.142 277.992 278.986 280.052 281.291 282.693 284.134 285.869 287.688 289.3 290.772 292.08 293.435 294.712 295.635 296.138 296.42 296.669 296.807 296.915 297.096 297.226 297.246 297.319 297.437 297.635 297.988 298.424 298.852 299.292 299.645 299.821 299.92 299.992 300.041 300.098 300.13 300.02 299.717 299.32 298.934 298.636 298.895 300.087 300.716 299.863 300.632 298.658 297.717 295.841 294.088 292.948 292.187 291.386 290.923 290.726 290.473 290.167 289.701 289.019 287.996 286.81 285.911 285.303 284.793 284.348 283.918 283.562 283.397 283.27 283.155 283.056 282.776 282.371 282.106 281.76 281.071 280.53 279.954 279.137 278.066 276.307 273.467 267.599 269.033 268.805 267.325 263.921 258.696 253.987 251.334 249.652 249.171 248.499 247.715 244.526 243.672 243.386 242.786 241.796 241.391 236.05 237.794 239.613 241.296 243.731 246.282 248.319 249.452 250.03 251.533 254.398 258.281 263.285 267.372 270.698 271.694 271.75 271.921 272.326 272.71 273.154 273.575 273.816 274.27 274.976 275.635 276.338 277.113 277.923 278.822 279.804 281.029 282.52 284.136 286.056 287.889 289.359 290.737 292.072 293.409 294.579 295.449 295.964 296.208 296.44 296.625 296.781 296.971 297.11 297.138 297.186 297.332 297.608 297.985 298.375 298.789 299.258 299.616 299.808 299.934 299.993 300.006 300.107 300.225 300.138 299.84 299.521 299.174 298.814 299.124 299.99 300.227 300.827 299.714 298.334 297.383 295.479 293.792 292.265 291.38 290.389 289.558 289.596 290.019 290.079 289.74 289.146 288.179 286.99 286.117 285.497 284.86 284.302 283.865 283.482 283.277 283.145 283.041 283.075 283.105 282.801 282.427 282.012 281.301 280.635 279.997 279.201 278.282 276.87 274.524 270.428 270.068 269.681 268.815 266.541 262.359 256.33 252.919 250.652 250.158 249.577 248.306 244.3 244.115 243.692 242.923 241.867 241.412 235.992 237.694 239.418 241.016 243.316 245.744 247.685 248.675 249.156 250.495 253.201 256.902 261.902 266.099 270.282 271.706 271.836 271.944 272.346 272.733 273.156 273.579 273.831 274.274 274.978 275.624 276.308 277.052 277.807 278.639 279.588 280.863 282.543 284.385 286.383 288.092 289.401 290.705 292.056 293.346 294.39 295.2 295.753 296.028 296.272 296.491 296.68 296.863 296.987 297.022 297.078 297.269 297.589 297.961 298.311 298.737 299.242 299.639 299.868 299.983 299.978 299.966 300.138 300.32 300.258 300.005 299.671 299.192 298.815 298.486 299.169 300.098 300.044 298.783 298.461 296.841 295.192 293.209 291.477 289.912 289.49 288.778 288.574 288.838 289.622 289.671 289.227 288.4 287.354 286.587 285.939 285.156 284.5 284.024 283.602 283.386 283.274 283.195 283.32 283.331 282.831 282.416 282.12 281.46 280.768 280.085 279.242 278.439 277.37 275.407 272.775 270.755 270.223 269.795 268.152 265.089 259.822 254.913 251.857 250.636 249.931 248.398 244.108 244.453 243.982 243.049 241.939 241.433 235.93 237.617 239.232 240.707 242.864 245.22 247.045 247.906 248.243 249.448 252.082 255.648 260.88 264.546 269.602 271.644 271.919 272.003 272.383 272.778 273.169 273.578 273.859 274.295 274.965 275.59 276.233 276.907 277.6 278.425 279.399 280.757 282.683 284.734 286.651 288.132 289.304 290.582 291.938 293.2 294.184 294.949 295.539 295.877 296.151 296.387 296.592 296.751 296.831 296.868 296.955 297.175 297.5 297.887 298.276 298.735 299.255 299.679 299.935 300.012 299.967 300.007 300.194 300.329 300.332 300.199 299.75 299.094 298.668 297.767 299.338 299.674 298.735 297.112 296.942 296.297 294.374 292.871 290.958 289.406 288.62 288.366 287.824 287.232 288.587 288.821 288.711 288.314 287.686 287.137 286.459 285.516 284.741 284.189 283.742 283.573 283.562 283.436 283.389 283.339 282.681 282.068 281.866 281.515 280.948 280.293 279.421 278.59 277.746 276.165 273.655 271.325 270.651 270.404 269.407 267.132 263.03 257.804 253.153 251.649 250.798 247.904 244.677 244.893 244.229 243.163 242.007 241.452 235.849 237.51 239.068 240.425 242.448 244.693 246.432 247.129 247.422 248.484 250.997 254.499 258.674 263.532 268.839 271.526 271.977 272.063 272.409 272.82 273.188 273.573 273.889 274.31 274.902 275.49 276.1 276.719 277.395 278.288 279.313 280.708 282.746 284.859 286.647 287.975 289.134 290.438 291.77 293.027 294.031 294.779 295.353 295.721 296.045 296.316 296.504 296.64 296.702 296.752 296.854 297.064 297.386 297.819 298.268 298.719 299.212 299.649 299.928 300.004 300.007 300.114 300.236 300.278 300.341 300.229 299.612 298.806 298.254 297.912 299.597 298.817 297.616 296.392 296.229 295.163 293.631 292.108 290.775 289.394 288.531 288.061 287.25 286.552 286.706 287.138 287.401 287.632 287.768 287.592 286.825 285.644 284.669 283.981 283.467 283.567 283.702 283.477 283.284 283.18 282.353 281.174 280.914 281.298 280.991 280.487 279.661 278.781 277.993 276.656 274.181 271.955 271.142 270.892 270.216 268.554 265.583 260.068 255.22 252.013 250.904 247.908 245.581 245.486 244.455 243.26 242.07 241.468 235.822 237.369 238.879 240.166 242.114 244.19 245.816 246.451 246.592 247.582 249.943 253.413 257.486 262.634 268.087 271.381 272.01 272.111 272.432 272.848 273.204 273.562 273.899 274.299 274.797 275.334 275.931 276.55 277.27 278.286 279.365 280.754 282.782 284.845 286.507 287.778 289.004 290.346 291.636 292.873 293.887 294.626 295.167 295.567 295.959 296.249 296.375 296.469 296.545 296.623 296.75 296.957 297.287 297.749 298.215 298.656 299.151 299.61 299.883 299.949 299.983 300.136 300.265 300.328 300.407 300.177 299.46 298.317 297.842 298.911 298.989 297.979 297.252 296.184 295.237 294.481 293.293 291.902 290.645 289.503 288.555 287.976 286.886 285.868 284.856 284.496 284.421 286.044 287.264 287.551 285.886 282.909 281.667 282.383 281.456 283.249 283.705 283.435 283.078 282.834 281.939 280.247 279.896 280.668 280.709 280.402 279.829 278.95 278.161 276.954 274.574 272.675 271.731 271.285 270.753 269.593 267.209 262.719 256.719 253.771 251.465 248.226 246.484 245.928 244.687 243.351 242.121 241.487 235.838 237.27 238.656 239.928 241.747 243.732 245.199 245.734 245.8 246.615 248.928 252.552 256.525 261.791 267.355 271.216 272.019 272.153 272.451 272.863 273.221 273.557 273.889 274.25 274.66 275.154 275.761 276.419 277.23 278.407 279.547 280.931 282.878 284.797 286.316 287.567 288.872 290.265 291.538 292.736 293.734 294.475 295.01 295.443 295.889 296.145 296.167 296.215 296.325 296.435 296.589 296.821 297.176 297.651 298.129 298.593 299.122 299.58 299.802 299.833 299.884 300.084 300.315 300.479 300.513 300.129 299.487 298.663 299.295 299.633 298.781 297.382 296.786 295.751 294.863 294.365 293.194 291.856 290.667 289.789 288.748 287.989 286.714 284.571 283.671 282.46 281.783 282.966 285.782 286.576 284.951 281.738 279.955 279.549 279.962 282.824 283.665 283.335 282.803 282.501 281.602 279.993 279.213 279.619 279.864 279.925 279.821 279.07 278.286 277.099 275.06 273.504 272.397 271.652 271.126 270.313 268.435 264.788 258.224 254.408 251.57 248.802 247.027 246.214 244.91 243.453 242.167 241.51 235.73 237.241 238.559 239.643 241.429 243.285 244.607 245.045 245.031 245.688 247.982 251.722 255.758 261.42 266.549 271.018 272.008 272.183 272.468 272.863 273.231 273.557 273.853 274.155 274.488 274.964 275.616 276.344 277.287 278.622 279.865 281.294 283.097 284.757 286.089 287.317 288.641 290.105 291.426 292.595 293.564 294.335 294.923 295.37 295.79 295.939 295.855 295.9 296.064 296.178 296.34 296.63 297.017 297.512 298.059 298.61 299.163 299.579 299.723 299.733 299.78 299.999 300.339 300.577 300.516 300.082 299.695 299.4 300.408 300.264 298.514 296.785 296.652 295.1 294.665 293.762 292.97 291.687 290.695 289.995 288.714 287.475 286.23 284.592 283.093 281.04 280.161 280.808 282.909 285.218 283.377 280.515 278.469 278.258 279.313 282.62 283.678 283.271 282.532 282.142 281.277 279.917 278.657 278.383 278.66 278.952 279.647 279.2 278.449 277.247 275.553 274.228 273.061 272.084 271.419 270.803 269.374 266.202 259.993 255.964 253.312 249.107 247.711 246.501 245.066 243.579 242.202 241.532 235.689 237.128 238.372 239.415 241.068 242.874 244.01 244.376 244.273 244.854 247.051 250.863 255.098 260.297 265.953 270.847 271.981 272.206 272.488 272.852 273.213 273.549 273.811 274.056 274.357 274.837 275.55 276.359 277.428 278.847 280.176 281.646 283.291 284.697 285.903 287.139 288.472 289.947 291.302 292.447 293.38 294.189 294.852 295.297 295.634 295.703 295.6 295.68 295.853 295.938 296.12 296.481 296.912 297.453 298.088 298.696 299.242 299.639 299.78 299.769 299.739 299.865 300.188 300.452 300.403 300.079 299.818 299.304 299.444 300.216 298.642 297.022 296.283 294.705 292.658 292.942 292.76 291.461 290.679 289.891 288.585 287.396 286.278 284.818 283.295 280.981 278.874 279.099 281.293 284.126 282.735 279.839 278.084 277.68 279.271 282.522 283.628 283.171 281.949 281.673 280.738 279.446 278.295 277.864 277.581 278.075 279.424 279.351 278.599 277.431 276.001 274.877 273.702 272.543 271.726 271.168 269.984 267.604 261.974 256.868 253.38 249.685 248.178 246.827 245.203 243.705 242.245 241.553 235.628 236.99 238.253 239.185 240.803 242.48 243.495 243.689 243.547 243.941 246.201 250.087 254.556 259.895 265.557 270.693 271.949 272.229 272.512 272.831 273.17 273.523 273.77 273.977 274.26 274.757 275.518 276.414 277.587 279.032 280.386 281.844 283.346 284.587 285.77 287.076 288.437 289.876 291.201 292.294 293.185 294.019 294.727 295.165 295.437 295.468 295.373 295.449 295.59 295.674 295.918 296.357 296.861 297.49 298.189 298.794 299.324 299.73 299.884 299.85 299.747 299.777 300.038 300.328 300.37 300.199 299.991 299.459 298.307 299.699 298.649 297.587 296.154 295.05 293.941 294.59 292.621 291.319 290.534 289.719 288.506 287.291 286.198 284.774 283.097 281.429 279.042 278.737 280.518 283.401 282.674 280.116 278.19 277.56 278.91 282.278 283.334 282.818 281.298 281.208 280.071 278.97 278.111 277.752 277.582 278.25 279.315 279.454 278.781 277.675 276.4 275.354 274.245 273.001 272.051 271.463 270.473 268.397 264.223 257.883 255.585 250.721 248.545 247.055 245.381 243.834 242.297 241.57 235.58 236.87 238.045 238.949 240.45 242.114 243.006 243.089 242.868 243.15 245.316 249.159 254.061 259.462 265.269 270.558 271.921 272.256 272.536 272.797 273.102 273.478 273.729 273.913 274.182 274.696 275.491 276.468 277.72 279.166 280.496 281.894 283.284 284.451 285.683 287.095 288.479 289.854 291.089 292.122 292.998 293.848 294.563 294.972 295.201 295.222 295.139 295.186 295.297 295.423 295.74 296.234 296.831 297.581 298.325 298.897 299.407 299.811 299.956 299.935 299.84 299.814 299.978 300.241 300.351 300.301 300.175 299.427 298.247 299.654 298.74 297.334 296.238 294.981 293.902 293.424 292.211 291.344 290.471 289.389 288.398 287.52 286.181 284.908 283.402 281.391 279.644 278.826 279.945 283.028 283.459 280.992 278.817 278.008 278.698 281.539 282.499 281.63 280.733 280.61 279.746 278.842 278.171 278.127 278.371 278.757 279.326 279.428 278.879 277.917 276.759 275.714 274.613 273.398 272.365 271.728 270.852 269.018 265.602 259.57 255.729 250.835 249.072 247.295 245.588 243.94 242.343 241.59 235.535 236.843 237.904 238.732 240.146 241.758 242.51 242.531 242.24 242.388 244.416 248.426 253.506 259.131 265.035 270.442 271.89 272.29 272.559 272.75 272.997 273.387 273.664 273.842 274.109 274.626 275.441 276.489 277.8 279.235 280.52 281.84 283.158 284.327 285.635 287.111 288.486 289.789 290.915 291.908 292.828 293.695 294.365 294.722 294.922 294.95 294.888 294.933 295.068 295.275 295.64 296.154 296.856 297.71 298.447 298.978 299.473 299.836 299.951 300.004 300.007 299.955 299.983 300.138 300.249 300.243 300.183 300.283 299.282 299.911 298.67 297.094 295.533 294.732 293.827 292.715 292.071 290.361 289.455 288.876 288.192 287.455 286.504 285.165 283.81 281.806 280.173 278.968 279.657 281.96 283.926 283.205 281.081 278.729 278.67 279.52 280.385 280.382 280.04 279.922 279.497 278.806 278.638 278.757 278.846 279.057 279.247 279.199 278.789 278.075 277.048 275.956 274.867 273.678 272.693 271.984 271.12 269.588 266.82 260.799 257.069 252.168 249.309 247.6 245.795 243.999 242.396 241.611 235.455 236.736 237.785 238.516 239.917 241.385 242.057 241.942 241.664 241.658 243.503 247.715 253.085 258.872 264.897 270.381 271.873 272.317 272.576 272.689 272.864 273.256 273.576 273.781 274.059 274.565 275.396 276.489 277.819 279.239 280.501 281.769 283.058 284.283 285.628 287.033 288.384 289.691 290.751 291.714 292.675 293.53 294.141 294.479 294.665 294.689 294.65 294.712 294.879 295.159 295.59 296.162 296.946 297.788 298.44 298.927 299.413 299.766 299.947 300.119 300.174 300.1 300.078 300.156 300.278 300.308 300.196 300.312 299.636 299.779 298.749 296.47 295.846 294.571 293.476 292.412 291.189 289.719 288.727 288.372 287.576 286.889 286.133 285.069 283.914 281.931 279.998 279.055 279.081 281.066 284.101 284.294 282.943 280.72 278.901 278.513 278.885 279.29 279.337 279.415 279.257 278.919 278.828 278.977 279.088 279.088 278.879 278.592 278.404 278.065 277.281 276.143 275.004 273.917 272.971 272.218 271.369 269.938 267.516 262.918 257.285 252.424 249.559 247.802 245.888 244.048 242.45 241.628 235.399 236.574 237.571 238.304 239.62 241.051 241.661 241.448 241.144 240.939 242.502 246.869 252.636 258.605 264.767 270.357 271.879 272.339 272.582 272.629 272.729 273.111 273.48 273.728 274.015 274.52 275.392 276.52 277.83 279.226 280.486 281.72 282.989 284.271 285.617 286.929 288.274 289.626 290.662 291.596 292.568 293.384 293.932 294.26 294.425 294.428 294.403 294.488 294.687 295.01 295.504 296.12 296.904 297.682 298.289 298.798 299.312 299.708 300.024 300.284 300.326 300.255 300.219 300.191 300.3 300.419 300.247 300.226 299.664 299.648 298.722 296.938 295.689 294.234 293.293 292.083 290.619 289.054 288.033 287.229 286.405 285.577 285.092 284.383 283.556 282.398 280.693 279.682 279.181 280.411 283.828 284.685 283.773 282.239 279.915 277.632 277.418 277.962 278.461 278.77 278.967 278.912 278.862 279.016 279.038 278.769 278.153 277.511 277.594 277.829 277.393 276.32 275.14 274.083 273.21 272.431 271.55 270.28 268.139 263.902 258.462 253.142 250.059 247.991 245.996 244.126 242.502 241.641 235.372 236.499 237.434 238.084 239.378 240.718 241.272 241.015 240.678 240.322 241.678 246.139 252.099 258.378 264.692 270.347 271.898 272.353 272.573 272.568 272.602 272.964 273.379 273.676 273.973 274.48 275.4 276.563 277.832 279.201 280.471 281.686 282.933 284.244 285.565 286.811 288.174 289.604 290.675 291.601 292.564 293.303 293.764 294.067 294.202 294.187 294.209 294.351 294.581 294.933 295.475 296.07 296.76 297.447 298.072 298.689 299.279 299.74 300.16 300.423 300.392 300.337 300.295 300.153 300.226 300.419 300.164 300.008 299.695 299.837 298.75 296.928 295.955 293.788 292.859 291.513 290.293 288.725 287.436 285.836 284.567 283.656 283.13 283.078 282.993 282.993 282.155 280.815 279.881 280.599 283.441 284.511 284.062 282.742 280.57 277.024 276.037 276.524 277.405 278.07 278.432 278.634 278.751 278.842 278.724 278.041 276.972 276.05 276.306 277.217 277.36 276.457 275.28 274.239 273.406 272.594 271.67 270.473 268.439 264.897 258.688 253.926 250.17 248.305 246.137 244.204 242.562 241.654 235.36 236.37 237.287 237.899 239.123 240.442 240.891 240.621 240.209 239.778 240.99 245.468 251.581 258.089 264.525 270.326 271.917 272.351 272.54 272.508 272.496 272.831 273.273 273.607 273.934 274.451 275.412 276.607 277.821 279.148 280.433 281.665 282.895 284.176 285.447 286.674 288.089 289.65 290.813 291.788 292.711 293.288 293.612 293.876 293.997 294.0 294.101 294.288 294.513 294.941 295.608 296.25 296.878 297.487 298.087 298.753 299.403 299.914 300.334 300.487 300.357 300.316 300.302 300.161 300.268 300.398 299.927 298.905 298.627 299.674 298.494 296.552 295.235 293.413 292.266 291.065 289.821 288.411 286.825 284.675 282.506 281.181 281.511 281.975 282.191 282.59 282.887 281.843 280.738 280.873 283.065 284.159 284.038 283.04 280.81 276.715 274.93 275.141 276.197 277.262 277.774 278.111 278.412 278.534 278.217 277.212 275.555 273.668 274.532 276.255 276.997 276.504 275.409 274.383 273.53 272.706 271.756 270.562 268.662 265.224 259.804 253.999 250.357 248.621 246.325 244.285 242.614 241.668 235.286 236.271 237.117 237.705 238.878 240.121 240.51 240.278 239.814 239.236 240.361 244.961 251.204 257.866 264.254 270.274 271.915 272.335 272.51 272.468 272.44 272.757 273.203 273.55 273.911 274.453 275.429 276.629 277.785 279.053 280.356 281.651 282.885 284.093 285.318 286.586 288.077 289.731 290.97 291.96 292.753 293.202 293.482 293.75 293.868 293.853 293.912 294.045 294.269 294.904 295.894 296.828 297.622 298.227 298.66 299.128 299.668 300.142 300.508 300.638 300.488 300.361 300.285 300.211 300.307 300.216 299.64 298.129 299.699 299.8 298.038 295.794 293.827 292.28 291.387 290.656 289.331 287.729 286.663 284.233 281.22 280.113 280.375 280.887 282.128 282.38 282.479 281.945 281.31 281.211 282.903 283.918 283.951 283.2 281.15 276.817 274.218 273.934 275.14 276.403 277.145 277.527 277.993 278.098 277.655 276.372 273.602 271.69 272.337 274.96 276.306 276.303 275.459 274.448 273.606 272.764 271.77 270.582 268.64 265.437 260.274 255.487 250.801 248.701 246.539 244.374 242.65 241.686 235.213 236.156 236.986 237.54 238.676 239.843 240.143 239.921 239.41 238.767 239.792 244.444 250.943 257.771 264.072 270.186 271.889 272.315 272.481 272.446 272.424 272.733 273.162 273.508 273.898 274.469 275.448 276.632 277.747 278.962 280.278 281.626 282.854 283.989 285.212 286.554 288.088 289.751 291.016 291.969 292.665 293.121 293.473 293.726 293.755 293.657 293.703 293.912 294.346 295.316 296.602 297.705 298.561 299.156 299.489 299.786 300.152 300.46 300.699 300.76 300.524 300.227 300.092 300.078 300.048 299.741 299.311 298.675 298.871 298.759 297.302 295.476 293.317 291.766 290.827 289.814 289.18 287.626 285.93 282.979 280.727 279.738 280.067 280.911 281.712 281.923 282.157 282.136 282.167 281.825 283.098 283.886 283.511 282.861 281.296 277.955 274.094 273.25 274.264 275.765 276.718 277.103 277.529 277.594 276.969 275.867 272.866 270.617 270.571 273.457 275.15 275.719 275.259 274.381 273.589 272.772 271.741 270.465 268.501 265.421 260.831 255.431 250.818 248.93 246.626 244.408 242.676 241.703 235.168 236.035 236.826 237.357 238.446 239.587 239.8 239.551 239.014 238.405 239.256 244.258 250.76 257.846 263.87 270.057 271.837 272.281 272.454 272.442 272.446 272.751 273.151 273.483 273.898 274.488 275.451 276.619 277.729 278.928 280.235 281.588 282.785 283.866 285.133 286.56 288.089 289.691 290.962 291.904 292.61 293.178 293.593 293.699 293.561 293.501 293.733 294.235 295.084 296.379 297.712 298.673 299.323 299.832 300.207 300.505 300.741 300.827 300.84 300.684 300.252 299.865 298.79 299.205 299.394 298.832 298.89 298.703 299.232 297.839 296.351 295.139 293.624 292.394 290.554 289.397 287.751 286.336 285.023 282.849 280.856 280.067 280.146 280.652 281.135 281.62 282.149 282.816 282.792 282.567 283.691 283.99 283.448 282.911 281.417 278.323 274.263 273.013 273.718 275.302 276.406 276.797 276.919 276.79 276.241 275.322 272.609 270.042 269.566 271.529 273.51 274.638 274.669 274.074 273.469 272.732 271.661 270.267 268.21 265.202 260.94 255.809 250.97 249.326 246.717 244.421 242.718 241.72 235.146 235.921 236.68 237.247 238.242 239.299 239.486 239.203 238.643 237.964 238.792 243.969 250.626 258.287 263.477 269.876 271.752 272.225 272.432 272.471 272.524 272.818 273.177 273.491 273.927 274.515 275.425 276.578 277.73 278.975 280.244 281.527 282.669 283.738 285.082 286.611 288.123 289.658 290.956 291.987 292.79 293.384 293.593 293.371 293.321 293.766 294.447 295.272 296.254 297.369 298.336 298.941 299.198 299.494 300.004 300.505 300.774 300.761 300.592 300.233 299.518 298.047 299.236 300.84 300.742 299.921 299.925 299.214 298.669 297.696 296.429 295.078 293.047 292.52 290.758 289.65 288.028 286.781 285.391 283.316 281.464 279.809 279.665 280.136 280.863 281.085 281.804 283.443 284.37 284.275 284.391 284.122 283.657 282.811 280.427 277.16 274.646 273.146 273.517 274.98 276.212 276.614 276.588 276.297 275.526 274.758 272.228 269.786 268.826 269.219 271.625 272.961 273.637 273.445 273.177 272.636 271.533 269.993 267.817 264.825 260.173 256.064 251.219 249.42 246.893 244.484 242.762 241.737 235.145 235.757 236.521 237.045 238.01 239.028 239.199 238.924 238.249 237.42 238.42 243.655 250.563 257.988 262.996 269.717 271.656 272.156 272.407 272.514 272.612 272.898 273.234 273.556 273.995 274.56 275.401 276.525 277.732 279.036 280.257 281.448 282.562 283.673 285.106 286.746 288.331 289.9 291.229 292.304 293.024 293.357 293.257 293.161 293.921 295.125 295.989 296.366 296.505 297.018 297.476 297.182 297.095 297.702 298.374 298.797 299.324 299.58 299.49 299.034 298.035 298.741 299.893 300.899 301.312 300.636 299.81 298.915 298.62 297.06 296.227 295.109 293.249 292.305 291.811 290.138 288.593 287.469 285.91 283.767 281.878 280.237 279.87 280.154 280.906 280.906 281.757 284.106 285.351 285.105 284.594 284.088 283.338 281.998 279.375 277.699 275.009 273.471 273.644 274.801 275.95 276.398 276.296 276.019 275.38 274.095 271.655 269.514 268.207 267.509 268.365 270.937 272.152 272.495 272.685 272.485 271.387 269.664 267.335 264.229 257.719 255.873 251.191 249.453 247.091 244.553 242.803 241.754 235.008 235.678 236.413 236.88 237.833 238.77 238.864 238.542 237.839 236.972 238.072 243.723 250.649 257.141 262.685 269.621 271.573 272.08 272.374 272.553 272.692 272.968 273.3 273.655 274.091 274.617 275.397 276.483 277.719 279.05 280.233 281.358 282.487 283.658 285.173 286.935 288.696 290.321 291.624 292.618 293.168 293.305 293.262 293.727 295.256 296.809 297.403 297.127 296.293 295.337 295.064 294.966 294.776 294.584 294.64 296.438 297.081 297.339 297.553 297.891 298.158 298.425 298.512 298.546 298.714 299.438 299.031 299.271 298.646 297.287 296.719 295.389 294.619 291.358 291.365 290.627 289.164 287.811 286.018 283.909 282.116 280.678 280.323 280.92 281.063 281.256 282.341 285.114 285.82 285.321 284.003 283.867 283.035 280.977 279.604 278.163 275.476 274.096 273.986 274.761 275.712 276.18 276.148 275.966 275.097 273.953 271.567 269.394 268.228 266.994 265.315 267.626 270.414 271.386 272.065 272.277 271.213 269.35 266.728 262.681 257.039 255.709 251.387 249.621 247.173 244.637 242.842 241.771 235.032 235.557 236.222 236.701 237.624 238.516 238.546 238.137 237.389 236.491 237.836 243.73 250.73 257.252 262.71 269.596 271.508 272.001 272.333 272.586 272.767 273.029 273.367 273.772 274.207 274.687 275.413 276.475 277.701 279.026 280.18 281.27 282.434 283.673 285.254 287.178 289.142 290.806 292.028 292.88 293.327 293.467 293.772 294.549 296.739 298.022 297.721 297.123 295.963 295.26 294.887 294.199 293.613 292.933 292.848 293.898 295.516 296.858 297.099 296.668 297.069 297.323 297.452 297.444 297.802 298.051 298.634 298.453 299.292 297.931 297.861 297.564 295.081 292.954 292.237 291.057 289.687 287.848 285.546 283.742 281.941 281.59 281.42 281.28 281.399 282.086 284.093 285.965 285.935 285.287 284.258 283.467 282.404 280.164 279.81 277.805 275.479 274.577 274.38 274.814 275.464 275.897 276.056 276.062 275.175 274.0 271.942 270.19 268.828 266.638 264.331 264.686 267.313 270.085 271.451 272.021 271.062 268.997 265.862 259.415 256.693 255.593 251.593 249.762 247.215 244.744 242.888 241.794 234.984 235.393 236.091 236.551 237.453 238.24 238.204 237.774 236.951 236.017 237.621 243.598 250.926 257.501 262.946 269.676 271.469 271.916 272.283 272.609 272.834 273.082 273.426 273.899 274.343 274.778 275.468 276.524 277.702 278.988 280.12 281.197 282.399 283.704 285.358 287.509 289.663 291.339 292.419 293.092 293.569 293.847 294.679 296.108 297.163 296.832 295.79 295.653 295.739 295.631 295.49 294.484 293.707 292.697 292.358 293.334 294.925 296.71 297.16 296.305 296.296 296.431 296.593 296.918 297.554 298.296 298.297 299.073 300.58 299.883 299.114 298.663 295.933 294.35 292.81 291.586 290.098 288.086 285.286 282.552 281.41 281.73 282.066 281.409 282.113 283.203 285.56 286.234 285.852 285.21 284.542 283.083 281.131 280.591 279.265 276.364 275.399 274.822 274.643 274.88 275.162 275.448 275.798 276.055 275.568 274.608 272.561 270.801 269.825 266.74 264.206 263.978 264.429 268.593 270.822 271.748 270.903 268.603 264.382 258.529 256.24 255.479 251.55 249.775 247.251 244.787 242.941 241.819 234.864 235.323 235.947 236.398 237.248 237.96 237.852 237.343 236.526 235.542 237.465 243.724 251.144 257.921 263.215 269.824 271.468 271.855 272.233 272.607 272.867 273.117 273.469 273.993 274.461 274.876 275.566 276.617 277.74 278.97 280.086 281.166 282.391 283.756 285.529 287.91 290.163 291.804 292.738 293.236 293.757 294.819 295.819 295.672 294.862 293.958 293.382 293.787 294.871 294.951 295.075 294.805 294.198 293.298 292.855 293.022 293.965 295.124 295.742 296.062 296.189 296.404 296.736 297.268 297.929 298.108 298.596 300.444 301.674 301.302 300.439 299.064 298.084 294.787 293.389 292.001 290.092 287.71 284.107 282.239 281.435 281.914 282.502 282.534 283.074 284.634 286.048 286.097 285.591 285.005 284.242 282.976 281.461 279.917 277.826 275.612 275.044 274.78 274.667 274.728 274.771 274.931 275.388 275.872 275.694 274.948 273.096 272.016 270.889 267.071 264.148 263.439 263.116 266.645 270.216 271.499 270.75 268.017 262.725 258.493 255.947 255.405 251.701 249.786 247.326 244.827 243.003 241.845 234.836 235.22 235.794 236.223 237.09 237.697 237.518 236.974 236.033 235.135 237.597 243.923 251.381 258.404 263.198 269.988 271.495 271.831 272.198 272.588 272.874 273.144 273.505 274.061 274.56 274.981 275.682 276.717 277.787 278.956 280.058 281.147 282.397 283.835 285.762 288.34 290.637 292.232 293.013 293.348 293.825 294.134 294.169 293.976 293.661 293.41 293.63 294.536 295.631 294.759 294.9 294.913 294.656 294.056 293.556 293.522 293.952 294.497 295.239 295.865 296.052 296.184 296.834 298.443 299.107 298.69 299.572 300.723 302.084 301.469 300.954 300.255 298.33 296.18 293.702 292.023 289.742 287.553 284.625 282.7 282.004 281.889 282.836 282.997 283.596 284.966 285.835 285.536 285.053 284.331 283.197 281.626 279.607 278.084 275.735 274.668 274.568 274.542 274.395 274.401 274.394 274.435 274.841 275.545 275.576 274.995 273.801 272.483 271.067 268.353 264.737 263.374 262.884 264.466 269.749 271.25 270.588 267.575 262.069 258.602 255.78 255.044 251.817 250.051 247.397 244.869 243.061 241.873 234.772 235.027 235.621 236.085 236.886 237.393 237.132 236.536 235.621 234.815 237.56 244.088 251.633 258.924 263.448 270.15 271.54 271.84 272.188 272.557 272.858 273.167 273.547 274.118 274.651 275.094 275.797 276.806 277.829 278.937 280.025 281.131 282.416 283.934 286.031 288.752 291.083 292.657 293.264 293.115 292.839 292.653 292.423 292.742 293.542 294.366 295.122 296.287 297.065 296.297 295.5 295.35 295.074 294.663 294.183 294.219 294.341 294.571 295.116 295.732 295.992 296.126 296.554 297.906 299.006 299.457 300.08 300.911 301.822 301.179 300.644 299.595 297.568 295.42 293.308 291.681 289.973 287.594 284.613 283.235 282.739 282.267 283.061 283.12 283.321 283.571 283.725 284.379 284.542 283.603 282.053 279.651 276.864 275.544 274.47 273.865 274.137 274.161 273.958 274.026 274.084 274.021 274.233 274.762 274.964 274.688 273.699 272.235 270.777 267.911 265.739 263.528 262.697 263.146 269.248 270.984 270.481 267.45 262.211 258.424 255.969 254.087 251.764 250.047 247.416 244.93 243.084 241.906 234.812 234.983 235.497 235.931 236.665 237.118 236.767 236.134 235.18 234.546 237.322 244.143 251.851 259.479 264.316 270.27 271.593 271.879 272.203 272.513 272.815 273.188 273.612 274.185 274.746 275.23 275.927 276.888 277.861 278.911 279.982 281.121 282.453 284.044 286.3 289.135 291.526 293.145 293.654 293.329 292.082 291.494 291.648 292.338 293.913 295.411 296.73 297.661 298.125 297.027 296.153 295.683 295.27 294.926 294.594 294.704 294.748 294.881 295.525 295.979 295.957 295.809 295.974 296.809 297.629 299.605 299.809 300.354 301.412 300.406 299.59 298.434 296.57 294.323 292.303 290.68 289.399 286.994 285.108 283.748 283.226 283.055 282.389 282.416 282.366 283.142 283.166 284.262 284.206 283.097 280.911 277.925 276.333 274.839 273.96 273.675 273.753 273.698 273.465 273.657 273.813 273.692 273.639 273.696 273.744 273.81 273.133 271.294 268.961 267.513 266.247 263.686 262.324 262.632 268.463 270.692 270.381 267.684 262.482 257.994 256.177 253.772 252.041 250.034 247.429 245.051 243.104 241.941 234.69 234.851 235.333 235.772 236.518 236.829 236.397 235.736 234.79 234.314 237.354 244.241 252.007 259.797 264.79 270.255 271.617 271.931 272.235 272.478 272.755 273.19 273.677 274.255 274.842 275.374 276.057 276.957 277.889 278.902 279.957 281.124 282.488 284.127 286.484 289.414 291.869 293.59 294.166 293.658 291.927 290.92 291.029 292.084 293.663 295.065 296.622 297.513 298.281 297.674 296.923 295.838 295.251 294.745 294.336 294.129 294.341 294.963 295.651 295.996 295.775 295.766 295.815 297.051 298.619 300.057 300.257 301.159 301.229 300.206 298.302 296.722 295.685 293.292 291.669 289.441 288.85 286.974 285.274 283.931 283.292 283.055 282.945 282.976 282.32 283.157 283.62 284.532 283.965 282.874 281.25 278.774 277.564 275.167 274.201 273.77 273.553 273.246 273.023 273.444 273.677 273.455 273.067 272.853 272.697 272.689 272.029 270.611 268.966 267.444 265.988 263.671 262.209 262.598 267.354 270.386 270.29 267.844 262.974 257.876 256.605 253.677 252.36 250.161 247.437 245.197 243.124 241.977 234.69 234.705 235.209 235.635 236.282 236.602 236.007 235.302 234.438 234.115 237.343 244.268 252.031 259.985 264.978 270.135 271.616 271.985 272.284 272.463 272.697 273.178 273.728 274.323 274.942 275.52 276.184 277.022 277.925 278.919 279.953 281.136 282.518 284.165 286.547 289.577 292.088 293.905 294.634 294.211 292.047 290.612 290.338 290.974 292.468 294.142 295.949 296.855 297.633 298.221 297.618 296.079 295.147 294.527 294.152 293.716 293.783 294.409 295.202 295.629 295.667 295.545 295.71 297.284 298.659 299.378 301.187 301.824 301.277 300.117 298.345 296.555 294.264 292.643 291.434 289.162 288.284 287.363 285.744 284.241 283.431 282.938 282.18 282.373 282.466 283.544 284.366 284.695 283.94 282.243 281.053 279.287 277.704 275.934 274.585 274.007 273.464 272.869 272.968 273.463 273.564 273.252 272.683 272.181 271.766 271.221 271.007 269.988 268.097 266.843 265.506 263.671 262.229 262.883 267.214 270.114 270.167 268.082 263.372 258.613 256.984 253.936 252.376 250.288 247.511 245.239 243.151 242.009 234.653 234.675 235.054 235.427 236.114 236.299 235.59 234.881 234.104 233.996 237.284 244.215 251.889 260.044 264.912 269.944 271.6 272.03 272.337 272.467 272.648 273.153 273.764 274.389 275.046 275.658 276.302 277.082 277.97 278.957 279.967 281.154 282.541 284.162 286.48 289.609 292.171 294.062 295.001 294.758 292.629 290.628 289.465 289.811 290.816 293.428 295.138 297.053 297.259 297.608 297.756 297.21 295.392 294.572 293.916 293.431 293.52 294.119 294.764 295.09 295.009 294.614 294.842 295.927 297.106 298.142 300.796 301.534 301.366 300.543 298.897 296.651 294.778 293.236 292.251 290.938 288.962 287.977 286.403 284.581 283.623 282.771 282.582 282.444 283.401 283.619 284.676 284.877 283.881 282.213 280.214 277.982 276.76 275.644 275.036 274.436 273.704 273.202 273.174 273.545 273.487 273.031 272.315 271.636 270.928 270.288 269.982 269.152 267.362 266.209 265.088 263.393 262.213 262.707 266.873 269.88 270.041 268.203 264.029 259.351 257.184 254.149 252.718 250.248 247.505 245.251 243.204 242.02 234.511 234.546 234.87 235.276 235.889 236.001 235.256 234.431 233.766 233.897 237.426 244.053 251.618 258.61 264.579 269.612 271.598 272.072 272.382 272.501 272.625 273.111 273.776 274.456 275.15 275.786 276.411 277.139 278.019 279.011 279.994 281.178 282.565 284.134 286.32 289.47 292.079 294.022 295.226 295.453 294.294 291.439 289.612 289.398 290.314 291.929 294.107 296.329 297.341 296.727 297.665 297.743 296.186 294.892 293.873 293.234 293.077 293.449 294.208 294.315 293.852 293.412 293.147 293.883 295.534 297.667 299.865 301.436 301.65 300.836 300.447 297.828 295.993 294.25 293.344 291.42 290.154 288.877 287.46 285.569 284.547 284.027 284.136 283.713 283.347 283.619 285.091 285.096 283.91 281.673 278.329 275.217 275.014 275.919 276.195 275.261 274.266 273.577 273.431 273.482 273.25 272.816 272.036 271.186 270.04 269.558 269.067 268.515 266.989 265.864 264.919 263.32 262.084 262.919 266.413 269.717 269.908 268.306 264.676 260.066 257.156 254.531 253.003 250.251 247.492 245.26 243.283 242.025 234.512 234.376 234.757 235.095 235.677 235.745 234.813 233.989 233.484 233.781 237.043 243.803 251.234 258.146 264.825 269.261 271.639 272.125 272.399 272.538 272.641 273.067 273.751 274.488 275.221 275.867 276.482 277.184 278.054 279.043 280.01 281.188 282.591 284.132 286.199 289.213 291.851 293.803 295.133 295.78 295.309 293.859 291.196 290.224 290.413 291.978 294.742 297.115 297.948 297.521 297.584 298.089 296.891 295.098 294.249 293.426 292.88 293.193 293.491 293.39 293.176 292.831 292.492 293.276 295.606 297.074 299.41 301.054 302.088 302.399 301.531 298.556 297.943 295.184 294.164 292.267 291.23 290.124 288.882 287.394 285.925 284.98 284.766 284.026 283.425 283.688 285.258 285.341 284.043 281.309 276.103 273.254 273.503 276.1 277.057 276.684 274.85 273.957 273.489 273.279 272.937 272.574 271.709 270.728 269.687 269.012 268.385 267.86 266.804 265.622 264.725 263.322 262.232 262.946 266.755 269.599 269.775 268.298 265.012 260.684 257.293 255.047 253.055 250.337 247.476 245.267 243.386 242.032 234.439 234.374 234.597 234.911 235.458 235.351 234.395 233.559 233.07 233.593 237.039 243.42 250.715 257.659 264.413 268.848 271.711 272.198 272.404 272.567 272.668 273.021 273.702 274.485 275.265 275.923 276.539 277.222 278.066 279.033 279.99 281.182 282.608 284.153 286.11 288.901 291.546 293.438 294.718 295.611 295.861 295.371 294.491 292.58 292.284 293.657 295.977 298.269 299.03 298.244 297.977 297.763 297.135 295.391 294.312 293.579 292.994 292.767 292.953 293.261 293.01 292.508 292.432 292.833 294.591 297.045 298.852 300.146 302.604 303.245 302.504 300.952 299.159 296.601 295.456 294.105 292.279 291.121 289.764 288.34 287.338 285.978 285.107 284.096 283.367 283.465 285.162 285.575 284.229 281.046 276.158 271.833 272.163 275.791 277.444 277.315 275.839 274.0 273.26 272.844 272.395 272.091 271.427 270.422 269.38 268.617 268.065 267.568 266.599 265.432 264.467 263.278 262.515 262.924 267.575 269.544 269.652 268.255 265.335 260.908 257.573 255.668 253.24 250.306 247.539 245.271 243.527 242.041 234.407 234.207 234.398 234.693 235.164 235.043 233.955 233.083 232.669 233.304 236.545 242.955 250.144 257.076 264.432 268.264 271.796 272.298 272.408 272.581 272.7 272.981 273.642 274.461 275.283 275.964 276.596 277.254 278.054 278.987 279.94 281.156 282.607 284.168 286.029 288.575 291.176 292.968 294.07 294.975 295.748 296.113 295.914 295.759 294.994 295.751 297.294 298.747 298.913 298.705 298.177 297.65 297.247 295.689 294.487 293.724 293.136 292.766 292.766 292.915 292.951 292.757 292.259 292.158 293.763 296.021 298.198 300.323 301.851 303.34 302.533 301.366 300.438 298.144 297.53 295.639 293.658 291.609 289.979 288.703 287.481 286.706 285.613 284.339 282.83 282.747 285.053 285.515 284.254 280.693 275.915 271.054 270.942 274.545 277.447 277.482 275.883 273.804 273.03 272.357 271.896 271.566 271.004 270.109 269.104 268.408 267.767 267.144 266.171 265.16 264.258 263.308 262.615 264.346 267.948 269.532 269.536 268.152 265.357 261.27 257.944 256.139 253.314 250.231 247.564 245.38 243.594 242.049 234.476 234.151 234.294 234.559 234.913 234.659 233.493 232.628 232.274 233.007 236.184 242.45 249.525 256.4 263.335 267.739 271.853 272.421 272.43 272.579 272.721 272.952 273.571 274.418 275.266 275.991 276.659 277.29 278.024 278.924 279.891 281.121 282.572 284.135 285.966 288.315 290.794 292.453 293.344 294.05 294.889 295.833 296.563 296.949 297.33 297.877 297.986 298.484 298.885 298.486 297.98 297.983 297.611 295.987 294.557 293.883 293.412 293.252 293.002 292.908 292.782 292.668 292.203 291.886 293.858 296.732 298.662 298.936 300.412 301.678 301.043 302.055 301.706 300.702 299.016 296.87 294.572 291.889 290.32 289.371 288.584 287.629 287.116 284.943 282.534 282.515 284.118 284.849 283.779 280.444 275.138 270.854 270.005 273.855 277.409 277.539 275.478 273.651 272.824 272.252 271.561 271.085 270.643 269.718 268.713 267.98 267.372 266.722 265.79 264.782 263.982 263.318 262.576 265.606 268.256 269.532 269.413 268.009 265.376 261.434 258.544 256.431 253.355 250.295 247.536 245.389 243.601 242.056 234.364 233.964 234.123 234.368 234.634 234.235 233.071 232.176 231.883 232.693 235.777 241.888 248.856 255.657 262.292 267.307 271.797 272.518 272.468 272.569 272.728 272.945 273.528 274.371 275.218 275.989 276.704 277.319 278.01 278.915 279.905 281.119 282.538 284.076 285.956 288.271 290.631 292.142 292.918 293.503 294.157 295.053 296.188 297.102 297.813 298.412 298.666 298.972 299.11 299.138 298.209 298.065 297.999 296.081 294.792 294.373 294.114 293.988 293.653 293.194 292.781 292.426 292.334 292.396 295.115 297.157 298.383 299.014 298.511 298.201 299.252 299.549 301.089 300.493 298.71 296.793 294.742 292.926 291.459 290.249 290.237 289.476 288.439 285.849 282.138 281.437 282.284 282.834 282.673 279.987 274.809 270.814 270.395 274.344 277.55 277.63 275.179 273.553 272.766 272.12 271.283 270.716 270.175 269.219 268.256 267.576 266.859 266.173 265.354 264.5 263.926 263.158 262.745 265.478 268.286 269.489 269.242 267.827 265.272 262.057 258.888 256.619 253.375 250.335 247.503 245.381 243.605 242.062 234.285 233.919 234.008 234.172 234.341 233.861 232.651 231.713 231.494 232.373 235.351 241.251 248.06 254.867 260.485 266.656 271.62 272.567 272.51 272.562 272.729 272.957 273.509 274.317 275.145 275.952 276.718 277.339 278.025 278.963 279.971 281.162 282.539 284.016 285.94 288.325 290.621 291.974 292.672 293.245 293.853 294.663 295.78 296.838 297.706 298.432 298.965 299.36 299.669 299.723 299.306 298.322 297.587 296.355 295.555 295.444 295.415 295.019 294.653 294.317 293.639 293.457 293.672 294.805 296.078 297.831 298.226 297.605 296.276 294.647 295.786 296.978 298.148 298.062 296.929 295.654 294.765 293.294 292.431 291.848 291.229 290.115 287.779 284.143 280.671 279.829 279.919 279.988 279.316 277.614 274.41 270.955 270.859 275.34 277.741 277.62 275.496 273.45 272.719 271.976 270.88 270.352 269.805 268.802 267.816 267.04 266.297 265.734 264.796 263.939 264.076 263.256 262.527 265.78 268.198 269.319 269.014 267.617 265.276 262.417 259.434 256.68 253.313 250.292 247.508 245.371 243.607 242.068 234.202 233.765 233.848 233.955 234.0 233.408 232.173 231.268 231.132 232.037 234.934 240.644 247.297 253.964 259.524 265.865 271.312 272.561 272.559 272.567 272.734 272.984 273.506 274.251 275.046 275.887 276.703 277.348 278.063 279.044 280.064 281.237 282.584 283.971 285.911 288.409 290.661 291.871 292.503 293.113 293.791 294.624 295.694 296.683 297.521 298.265 298.848 299.257 299.682 300.025 299.972 299.16 297.734 296.864 296.482 296.495 296.624 296.303 296.193 295.987 295.685 296.021 296.014 295.854 296.512 297.437 298.583 297.4 295.126 292.942 292.368 293.107 294.304 294.997 295.105 295.208 294.67 294.47 293.532 292.398 291.209 289.148 285.503 281.97 279.802 279.083 279.265 278.669 278.456 277.215 274.335 270.052 270.518 275.525 277.583 277.259 274.987 273.345 272.643 271.761 270.767 270.094 269.404 268.416 267.457 266.752 266.256 265.462 264.51 263.71 263.849 263.028 262.664 265.756 267.911 269.003 268.718 267.396 265.265 262.631 259.705 256.798 253.323 250.239 247.518 245.357 243.608 242.072 234.196 233.758 233.676 233.701 233.687 233.025 231.733 230.887 230.82 231.713 234.461 239.869 246.399 252.958 259.56 264.865 270.756 272.464 272.614 272.598 272.77 273.033 273.499 274.158 274.921 275.8 276.68 277.363 278.118 279.146 280.183 281.345 282.688 283.985 285.917 288.455 290.661 291.761 292.336 292.984 293.781 294.728 295.815 296.776 297.644 298.464 299.144 299.619 300.058 300.456 300.527 300.159 298.734 297.787 297.516 297.547 297.859 298.027 298.139 298.968 298.591 298.304 297.551 297.324 297.685 298.559 298.302 297.426 295.562 293.366 292.068 291.893 292.651 293.271 294.713 295.172 295.257 294.659 293.638 292.076 289.942 287.302 284.245 281.105 279.376 279.139 279.001 278.792 278.812 277.727 274.376 268.657 269.08 274.497 276.619 276.11 274.247 273.17 272.51 271.478 270.68 270.057 269.231 268.163 267.291 266.666 265.999 265.16 263.992 263.372 263.483 262.886 262.874 265.242 267.323 268.466 268.33 267.124 265.213 262.852 259.826 256.748 253.296 250.271 247.493 245.346 243.606 242.076 234.182 233.592 233.519 233.54 233.37 232.537 231.298 230.525 230.55 231.44 234.09 239.135 245.389 251.84 258.816 263.933 269.982 272.285 272.659 272.659 272.837 273.09 273.484 274.073 274.834 275.748 276.686 277.399 278.174 279.227 280.278 281.441 282.806 284.104 285.977 288.498 290.621 291.65 292.209 292.856 293.694 294.727 295.885 296.905 297.87 298.779 299.574 300.175 300.599 300.785 300.735 300.5 300.047 299.225 299.025 298.962 299.321 299.88 300.081 299.982 299.687 299.475 299.054 298.72 299.186 300.575 300.642 299.102 296.534 294.538 293.231 292.481 293.486 294.979 295.609 295.643 295.3 294.363 292.986 290.893 288.648 285.888 283.329 280.995 279.78 280.044 280.039 279.98 279.569 278.353 274.082 267.165 267.665 272.615 274.884 274.634 273.852 273.203 272.515 271.38 270.524 269.824 268.838 267.811 266.974 266.35 265.552 264.793 263.633 262.926 263.084 262.743 263.14 264.236 266.445 267.767 267.815 266.791 265.093 262.858 260.076 256.613 253.128 250.226 247.451 245.32 243.603 242.079 234.14 233.539 233.391 233.292 233.022 232.13 230.869 230.197 230.319 231.231 233.711 238.338 244.293 250.717 257.32 263.159 269.039 272.043 272.691 272.728 272.905 273.143 273.473 274.023 274.811 275.753 276.722 277.475 278.25 279.28 280.335 281.504 282.926 284.327 286.164 288.657 290.599 291.538 292.136 292.833 293.689 294.738 295.935 297.008 298.009 298.881 299.567 300.111 300.535 300.684 300.643 300.575 300.464 300.306 300.182 300.092 300.085 300.237 300.357 300.209 299.912 299.732 299.686 300.034 301.213 303.288 302.338 300.574 298.602 296.59 294.908 294.538 295.701 296.586 296.043 295.571 294.885 293.319 291.202 289.495 287.329 285.482 283.571 281.661 280.917 281.194 281.023 280.88 280.467 278.116 273.266 265.899 266.45 269.622 272.514 273.461 273.596 273.275 272.392 271.117 270.182 269.372 268.275 267.256 266.589 265.982 265.181 264.408 263.323 262.555 262.778 262.193 262.433 263.236 265.233 266.824 267.139 266.341 264.821 262.856 259.998 256.526 252.992 250.139 247.42 245.272 243.606 242.082 234.184 233.406 233.246 233.098 232.71 231.677 230.429 229.937 230.152 231.089 233.402 237.553 243.152 249.493 255.657 262.443 267.892 271.721 272.706 272.802 272.971 273.189 273.471 274.018 274.858 275.803 276.796 277.578 278.32 279.294 280.342 281.542 283.074 284.646 286.585 288.973 290.596 291.434 292.126 292.921 293.791 294.826 296.018 297.09 298.055 298.782 298.991 298.877 299.204 299.946 300.128 300.326 300.541 300.641 300.601 300.391 300.169 300.123 300.172 300.084 299.806 299.492 299.336 299.627 300.806 303.122 302.753 301.286 299.581 297.742 295.994 295.428 296.567 296.731 296.074 294.782 293.466 291.985 290.177 288.478 287.14 285.837 284.302 282.75 282.655 282.523 282.055 281.224 280.074 276.879 271.474 265.364 265.465 267.598 271.177 273.002 273.404 273.104 272.244 270.849 269.752 268.725 267.522 266.624 266.244 265.627 264.876 263.886 262.717 262.266 262.275 261.886 261.767 262.282 263.82 265.639 266.294 265.736 264.47 262.724 259.851 256.273 252.931 250.079 247.382 245.25 243.717 242.086 234.133 233.38 233.087 232.908 232.377 231.299 230.056 229.672 230.029 231.041 233.12 236.83 242.017 248.209 254.33 260.91 266.512 271.23 272.685 272.879 273.033 273.232 273.492 274.072 274.977 275.929 276.901 277.672 278.371 279.269 280.297 281.558 283.274 285.124 287.301 289.385 290.602 291.355 292.165 293.065 293.946 294.954 296.09 297.09 297.944 298.452 298.002 297.317 297.277 297.64 298.022 298.466 299.694 300.575 300.655 300.406 300.097 299.971 300.022 300.048 299.789 299.287 298.867 298.923 299.579 300.955 301.772 301.032 299.954 298.311 296.609 295.866 295.888 296.011 294.485 292.997 291.708 290.955 290.517 288.998 287.672 286.014 285.005 284.149 283.7 283.859 283.077 280.939 278.664 275.039 269.618 265.64 265.842 267.788 271.73 273.354 273.582 272.97 271.961 270.434 269.326 268.164 266.978 266.222 265.952 265.422 264.672 263.535 262.539 261.91 261.568 261.362 261.293 261.372 261.976 264.013 265.217 264.968 264.014 262.483 259.683 255.959 252.768 249.98 247.307 245.229 243.825 242.107 234.071 233.28 232.859 232.662 232.038 230.857 229.668 229.43 229.964 231.069 232.972 236.086 240.904 246.924 253.002 260.232 265.49 270.618 272.61 272.929 273.076 273.279 273.55 274.168 275.114 276.044 276.95 277.706 278.39 279.244 280.254 281.562 283.461 285.596 287.9 289.658 290.595 291.316 292.193 293.126 294.019 295.017 296.085 296.971 297.703 298.14 297.847 297.057 296.261 296.111 296.637 297.521 298.606 300.05 300.345 300.246 300.109 300.06 300.089 300.129 299.963 299.575 299.178 298.948 299.065 299.56 300.289 300.589 299.541 298.033 296.257 295.423 295.222 294.989 293.657 292.734 291.59 291.406 291.075 289.906 288.582 287.115 285.943 285.081 285.588 283.874 282.789 279.771 276.45 272.879 268.226 267.364 269.227 271.445 273.326 275.162 274.493 273.097 271.708 270.178 268.917 267.667 266.549 266.037 265.658 265.037 264.324 263.235 262.332 261.592 261.041 260.81 260.938 260.502 260.419 261.96 263.728 263.946 263.393 262.191 259.369 255.66 252.58 249.82 247.216 245.206 243.837 242.329 233.997 233.155 232.77 232.482 231.719 230.47 229.323 229.241 229.964 231.205 232.919 235.579 239.676 245.674 251.699 259.191 264.742 269.924 272.508 272.967 273.108 273.333 273.63 274.274 275.225 276.11 276.95 277.695 278.389 279.239 280.248 281.583 283.605 285.943 288.283 289.8 290.573 291.283 292.189 293.142 294.089 295.088 296.057 296.823 297.485 297.959 297.985 297.522 296.675 296.046 296.25 296.97 297.801 298.938 299.72 300.1 300.157 300.158 300.151 300.188 300.099 299.833 299.514 299.186 298.947 299.065 299.373 299.725 299.166 297.642 296.044 295.035 294.996 294.775 293.746 292.798 292.057 292.328 292.295 291.138 289.69 288.263 287.357 286.502 286.512 284.685 281.56 277.484 274.183 271.464 269.517 270.989 272.998 274.361 276.033 276.701 275.967 273.706 271.607 269.914 268.517 267.321 266.258 265.632 265.255 264.603 263.975 262.832 261.799 261.046 260.558 260.027 260.253 259.701 259.143 260.098 261.921 262.611 262.652 261.834 259.124 255.308 252.412 249.638 247.142 245.184 243.826 242.423 233.971 233.083 232.687 232.234 231.374 230.057 228.954 229.104 230.056 231.438 233.054 234.923 238.707 244.606 250.474 256.641 264.048 269.168 272.4 273.008 273.143 273.396 273.722 274.374 275.309 276.145 276.927 277.665 278.379 279.25 280.268 281.602 283.658 286.121 288.477 289.853 290.547 291.265 292.164 293.144 294.174 295.161 296.023 296.691 297.328 297.871 298.067 297.932 297.749 297.856 297.915 297.501 297.871 298.374 298.851 299.903 300.201 300.185 300.177 300.247 300.179 299.917 299.632 299.364 299.099 299.002 299.045 298.955 298.512 297.597 296.209 295.344 295.157 294.967 294.422 293.405 293.133 292.827 292.848 291.791 290.38 289.824 288.912 288.508 287.209 283.608 279.482 275.348 272.638 271.793 273.836 276.67 277.339 277.941 278.137 277.633 276.438 274.42 271.486 269.554 268.023 266.864 265.975 265.294 264.63 264.078 263.47 262.294 261.142 260.348 259.963 259.362 259.542 259.141 258.366 258.842 260.106 261.087 261.746 261.36 258.781 254.999 252.223 249.459 247.095 245.111 243.816 242.419 233.943 232.952 232.52 232.07 231.036 229.649 228.67 229.051 230.187 231.82 233.323 234.572 238.017 243.689 249.414 254.757 262.946 268.288 272.304 273.073 273.204 273.48 273.833 274.468 275.371 276.167 276.909 277.645 278.373 279.258 280.277 281.572 283.523 286.05 288.459 289.809 290.514 291.268 292.148 293.155 294.248 295.188 295.95 296.59 297.271 297.888 298.28 298.513 298.72 298.942 299.109 299.167 299.251 299.53 299.894 300.173 300.221 300.15 300.187 300.306 300.23 299.943 299.707 299.584 299.466 299.298 299.144 298.928 298.445 297.601 296.824 296.141 295.546 295.23 294.872 293.848 293.578 293.009 293.048 292.351 291.378 290.518 290.364 289.206 286.618 281.127 277.048 273.808 272.55 273.507 277.276 279.512 280.613 280.074 278.886 277.699 276.628 274.701 271.378 269.055 267.426 266.307 265.573 264.945 264.259 263.401 262.81 261.573 260.377 259.761 259.297 258.608 258.705 258.685 257.813 258.089 258.653 259.443 260.569 260.816 258.291 254.878 251.956 249.232 247.005 245.037 243.806 242.415 233.917 233.006 232.379 231.839 230.732 229.281 228.464 229.04 230.341 232.137 233.714 234.686 237.612 242.897 248.548 253.777 261.189 267.746 272.276 273.169 273.291 273.567 273.934 274.534 275.402 276.174 276.905 277.643 278.365 279.224 280.21 281.453 283.267 285.785 288.259 289.668 290.453 291.287 292.206 293.225 294.291 295.186 295.903 296.554 297.243 297.862 298.38 298.847 299.233 299.541 299.745 299.819 299.859 299.964 300.129 300.23 300.211 300.153 300.22 300.326 300.264 300.05 299.844 299.695 299.577 299.461 299.324 299.167 298.805 298.115 297.28 296.563 296.049 295.563 295.156 294.407 293.724 293.21 293.153 292.905 292.244 291.501 290.853 288.697 283.956 278.295 274.951 273.129 273.365 275.529 279.203 281.145 281.561 280.438 278.348 276.92 276.478 274.563 271.416 268.584 266.895 265.77 265.256 264.551 263.651 262.82 262.014 260.775 259.473 259.047 258.507 257.611 257.733 258.335 257.37 256.715 257.439 258.024 259.355 260.22 257.865 254.707 251.66 248.981 246.87 244.976 243.795 242.411 233.913 232.902 232.256 231.651 230.427 228.922 228.302 229.049 230.526 232.583 234.199 234.982 237.369 242.308 247.789 253.0 260.689 267.628 272.309 273.282 273.398 273.655 274.016 274.586 275.41 276.16 276.893 277.631 278.345 279.163 280.111 281.328 283.074 285.534 288.023 289.485 290.352 291.287 292.291 293.322 294.329 295.196 295.911 296.547 297.174 297.756 298.361 298.96 299.414 299.721 299.93 300.046 300.07 300.069 300.122 300.192 300.202 300.167 300.229 300.346 300.33 300.172 299.96 299.749 299.6 299.537 299.479 299.371 299.088 298.56 297.894 297.187 296.426 295.863 295.422 294.95 293.935 293.482 293.774 293.014 292.686 292.045 290.897 287.179 281.14 276.42 273.961 273.59 274.445 276.095 279.239 280.766 280.68 279.78 276.752 275.858 275.783 274.186 270.98 268.084 266.404 265.383 264.818 263.886 262.95 262.276 261.443 260.266 259.041 258.311 257.48 256.75 256.757 257.755 256.916 255.088 256.096 256.856 258.238 259.47 257.304 254.379 251.301 248.735 246.715 244.921 243.782 242.405 233.919 232.785 232.158 231.464 230.134 228.594 228.185 229.117 230.783 233.099 234.969 235.672 237.318 241.895 247.265 252.512 260.468 267.711 272.391 273.399 273.516 273.747 274.088 274.629 275.397 276.12 276.861 277.602 278.314 279.101 280.039 281.289 283.017 285.385 287.81 289.293 290.22 291.257 292.363 293.405 294.351 295.201 295.926 296.537 297.113 297.692 298.332 298.925 299.367 299.68 299.875 299.964 299.982 299.975 300.024 300.127 300.172 300.131 300.183 300.343 300.401 300.285 300.098 299.909 299.784 299.71 299.631 299.5 299.232 298.813 298.29 297.61 296.773 296.079 295.554 295.133 294.345 294.199 293.318 293.316 292.428 291.778 290.511 286.134 280.256 276.087 274.293 274.518 275.135 275.764 277.606 278.933 278.642 277.751 275.723 274.753 274.498 273.215 270.214 267.57 265.881 264.859 264.301 263.303 262.437 261.474 260.846 259.753 258.772 257.757 256.925 255.951 255.811 256.975 255.923 254.08 253.703 255.743 257.205 258.759 256.715 254.046 250.823 248.449 246.585 244.883 243.762 242.398 233.922 232.753 232.005 231.292 229.867 228.298 228.091 229.215 231.184 233.812 235.79 236.466 238.002 241.828 246.98 252.399 260.533 267.917 272.529 273.516 273.648 273.848 274.159 274.674 275.374 276.055 276.797 277.559 278.276 279.074 280.065 281.404 283.136 285.371 287.647 289.113 290.092 291.237 292.407 293.443 294.358 295.175 295.881 296.484 297.106 297.781 298.423 298.898 299.269 299.577 299.74 299.776 299.82 299.867 299.917 299.996 300.047 300.026 300.093 300.293 300.404 300.342 300.227 300.148 300.083 299.952 299.781 299.615 299.322 298.87 298.344 297.688 296.866 296.117 295.553 295.19 295.048 294.362 293.664 293.05 292.898 292.215 290.566 286.077 280.499 276.639 275.105 275.172 275.362 275.053 275.644 276.647 276.745 276.331 274.959 273.92 273.149 271.457 269.489 267.135 265.376 264.542 263.936 262.928 261.889 260.992 260.137 259.293 258.338 257.465 256.471 255.333 254.874 256.062 255.659 254.233 252.241 253.971 256.337 258.107 256.264 253.525 250.334 248.208 246.453 244.825 243.722 242.394 233.889 232.689 232.024 231.133 229.621 228.029 228.01 229.345 231.549 234.444 236.706 237.505 238.807 242.09 246.901 252.572 260.379 268.412 272.665 273.578 273.744 273.942 274.223 274.711 275.357 276.002 276.74 277.513 278.24 279.078 280.153 281.574 283.312 285.427 287.54 288.982 290.051 291.269 292.424 293.441 294.369 295.174 295.854 296.447 297.151 297.921 298.551 298.95 299.279 299.561 299.675 299.702 299.802 299.852 299.802 299.834 299.969 300.053 300.108 300.24 300.359 300.345 300.235 300.16 300.131 300.051 299.936 299.822 299.526 298.955 298.306 297.65 296.893 296.189 295.654 295.254 295.033 294.632 294.018 293.47 292.826 292.427 290.365 285.61 280.776 277.365 275.865 275.412 274.894 274.64 275.019 275.781 275.993 275.473 274.434 273.47 272.348 270.545 268.68 266.638 265.003 264.305 263.642 262.365 261.271 260.594 259.674 259.283 258.131 257.367 256.333 254.714 254.186 255.338 254.992 253.799 252.374 252.535 255.714 257.369 255.683 252.996 249.944 247.985 246.297 244.744 243.676 242.391 233.831 232.66 231.906 230.993 229.408 227.784 227.943 229.507 231.947 235.112 237.646 238.651 239.91 242.635 247.056 252.997 261.956 269.111 272.78 273.602 273.811 274.026 274.279 274.742 275.34 275.963 276.692 277.453 278.176 279.038 280.179 281.676 283.427 285.447 287.423 288.864 290.043 291.313 292.432 293.426 294.369 295.188 295.871 296.485 297.234 298.01 298.594 298.959 299.268 299.511 299.59 299.649 299.811 299.865 299.758 299.779 299.982 300.125 300.147 300.206 300.309 300.321 300.211 300.132 300.155 300.149 300.063 299.93 299.643 299.064 298.369 297.686 296.923 296.25 295.794 295.404 295.024 294.783 294.411 293.202 293.09 292.335 289.227 285.083 281.019 277.748 276.372 275.497 274.747 274.669 275.21 275.744 275.669 275.133 274.286 273.069 271.768 270.085 268.245 266.282 264.656 263.531 262.809 261.515 260.843 260.151 259.302 259.054 258.264 256.879 255.677 254.212 253.226 254.481 254.847 253.076 251.956 250.896 254.768 256.721 255.056 252.642 249.496 247.754 246.149 244.656 243.633 242.387 233.83 232.5 231.826 230.858 229.207 227.563 227.894 229.68 232.368 235.786 238.559 239.799 241.048 243.571 247.559 254.831 263.148 269.697 272.869 273.597 273.862 274.104 274.334 274.766 275.322 275.922 276.637 277.361 278.049 278.918 280.097 281.673 283.467 285.421 287.314 288.781 290.06 291.358 292.441 293.398 294.317 295.155 295.888 296.567 297.318 298.03 298.549 298.906 299.202 299.41 299.501 299.601 299.801 299.879 299.796 299.817 300.01 300.13 300.138 300.17 300.24 300.254 300.183 300.146 300.199 300.211 300.091 299.9 299.649 299.169 298.512 297.786 296.976 296.305 295.941 295.618 295.128 294.708 294.392 293.918 293.34 292.005 288.317 284.538 280.873 278.74 277.177 275.637 274.55 274.524 275.798 276.004 275.555 274.785 273.936 272.777 271.524 269.912 268.262 266.32 264.518 263.384 261.917 260.916 260.134 259.706 259.257 258.972 257.89 256.51 254.739 253.526 252.377 253.058 254.069 252.479 251.393 250.467 253.877 256.171 254.638 251.927 249.077 247.493 245.991 244.565 243.59 242.382 233.784 232.445 231.722 230.761 229.039 227.384 227.858 229.934 232.772 236.405 239.417 240.901 242.22 244.602 248.422 256.386 264.197 270.2 272.935 273.577 273.913 274.185 274.395 274.791 275.293 275.851 276.53 277.192 277.82 278.677 279.871 281.514 283.43 285.371 287.251 288.789 290.132 291.422 292.464 293.378 294.228 295.07 295.872 296.618 297.346 297.98 298.453 298.807 299.103 299.334 299.491 299.612 299.758 299.828 299.827 299.87 299.989 300.078 300.127 300.167 300.18 300.19 300.189 300.19 300.177 300.145 300.044 299.88 299.663 299.252 298.63 297.911 297.168 296.556 296.192 295.859 295.342 294.828 294.477 294.19 293.647 292.142 288.267 284.325 281.198 279.567 277.776 275.267 273.668 273.732 275.311 276.145 275.462 274.361 273.541 272.438 271.3 269.728 268.26 266.346 264.469 263.054 261.186 260.253 259.756 259.451 258.89 258.707 257.424 255.658 254.442 252.871 251.652 252.234 253.304 252.207 250.795 250.237 253.957 255.558 254.19 251.363 248.732 247.205 245.844 244.479 243.551 242.377 233.774 232.483 231.64 230.646 228.892 227.249 227.835 230.087 233.162 236.979 240.167 241.891 243.496 245.855 249.594 257.462 265.095 270.57 272.978 273.566 273.95 274.237 274.443 274.813 275.262 275.762 276.378 276.975 277.559 278.4 279.589 281.281 283.356 285.339 287.245 288.871 290.234 291.472 292.488 293.376 294.212 295.039 295.862 296.607 297.29 297.852 298.298 298.709 299.058 299.319 299.495 299.621 299.715 299.786 299.853 299.935 300.05 300.134 300.177 300.211 300.229 300.266 300.298 300.258 300.148 300.094 300.038 299.886 299.617 299.193 298.607 297.97 297.385 296.891 296.519 296.155 295.706 295.207 294.77 294.445 293.963 292.479 288.646 284.604 281.667 279.555 277.579 274.102 272.015 272.743 275.075 275.977 275.725 274.094 273.346 272.364 270.93 269.425 267.874 266.194 264.297 262.574 260.66 259.84 259.707 259.178 258.741 258.236 257.19 255.151 254.249 251.893 250.722 251.6 252.535 251.908 250.36 249.991 253.392 254.884 253.558 250.868 248.54 246.97 245.681 244.414 243.51 242.372 233.758 232.386 231.575 230.558 228.768 227.113 227.811 230.209 233.504 237.475 240.826 242.785 244.792 247.407 251.133 258.706 265.954 270.884 273.019 273.565 273.966 274.257 274.476 274.836 275.244 275.691 276.226 276.753 277.319 278.162 279.336 281.076 283.297 285.325 287.239 288.921 290.274 291.482 292.504 293.399 294.236 295.042 295.84 296.559 297.196 297.706 298.14 298.61 299.028 299.284 299.448 299.603 299.717 299.814 299.927 300.041 300.154 300.202 300.201 300.236 300.322 300.378 300.359 300.275 300.169 300.104 299.984 299.763 299.499 299.171 298.69 298.094 297.561 297.176 296.9 296.602 296.215 295.658 295.006 294.497 294.038 292.782 289.252 285.497 282.314 279.488 276.311 272.508 270.082 271.651 274.259 275.43 275.016 274.173 273.382 272.461 270.768 268.887 267.443 265.825 264.127 262.127 260.19 259.664 259.654 259.073 258.59 257.917 256.62 254.698 253.129 251.193 249.579 250.135 251.691 251.598 250.07 249.813 252.363 254.175 252.914 250.513 248.329 246.807 245.521 244.348 243.472 242.366 233.736 232.316 231.522 230.469 228.658 226.998 227.776 230.299 233.801 237.897 241.48 243.736 245.98 249.156 253.039 260.045 266.832 271.19 273.061 273.572 273.962 274.249 274.491 274.854 275.244 275.644 276.091 276.549 277.124 277.997 279.169 280.936 283.258 285.309 287.213 288.899 290.233 291.446 292.516 293.437 294.255 295.015 295.781 296.48 297.086 297.563 297.997 298.523 298.999 299.235 299.382 299.579 299.745 299.85 299.97 300.102 300.207 300.226 300.205 300.284 300.43 300.449 300.328 300.215 300.179 300.105 299.88 299.613 299.43 299.237 298.857 298.284 297.767 297.491 297.35 297.125 296.719 296.055 295.215 294.536 294.084 293.059 290.033 286.758 283.295 279.511 275.712 271.197 268.026 269.451 272.499 273.752 273.728 273.443 273.279 272.57 270.749 268.392 266.754 265.371 263.796 261.631 259.887 259.247 259.351 258.805 258.283 257.53 256.292 254.026 252.313 250.291 248.291 249.208 250.663 251.1 250.075 249.725 251.491 253.354 252.286 250.214 248.099 246.658 245.382 244.272 243.435 242.357 233.729 232.305 231.459 230.404 228.58 226.902 227.776 230.337 234.017 238.272 242.078 244.811 247.236 250.764 255.086 261.377 267.841 271.539 273.106 273.574 273.933 274.212 274.483 274.862 275.252 275.612 275.969 276.368 276.986 277.932 279.12 280.868 283.227 285.289 287.177 288.827 290.138 291.395 292.539 293.48 294.241 294.951 295.71 296.395 296.98 297.428 297.867 298.441 298.948 299.174 299.314 299.542 299.735 299.843 299.953 300.092 300.203 300.245 300.272 300.393 300.525 300.479 300.281 300.131 300.105 300.003 299.766 299.549 299.387 299.125 298.745 298.339 298.056 297.973 297.919 297.664 297.215 296.646 295.965 295.294 294.42 292.545 290.327 287.554 284.332 280.579 275.967 270.839 266.704 266.888 269.593 271.32 271.637 272.082 272.914 272.218 270.74 267.949 266.071 264.744 263.427 261.081 259.331 258.974 259.211 258.622 257.992 257.28 255.813 253.825 251.658 249.286 247.202 247.244 248.18 250.288 249.99 249.654 251.033 252.583 251.611 249.905 247.91 246.5 245.243 244.194 243.403 242.361 233.737 232.278 231.42 230.34 228.518 226.833 227.725 230.34 234.161 238.561 242.604 245.813 248.689 252.538 257.085 262.614 268.763 271.853 273.132 273.552 273.875 274.151 274.444 274.826 275.227 275.57 275.874 276.251 276.925 277.96 279.146 280.861 283.206 285.274 287.175 288.79 290.079 291.365 292.527 293.458 294.19 294.909 295.683 296.345 296.886 297.321 297.792 298.368 298.847 299.083 299.238 299.454 299.686 299.872 300.011 300.115 300.206 300.269 300.322 300.391 300.476 300.466 300.311 300.089 299.948 299.823 299.652 299.495 299.289 298.923 298.584 298.418 298.386 298.447 298.494 298.312 297.963 297.573 297.014 295.862 294.475 292.108 289.929 287.875 286.162 282.558 277.743 272.382 266.845 263.475 264.163 265.746 268.176 270.075 271.574 271.575 270.141 267.436 265.39 264.121 262.654 260.698 258.851 258.674 258.871 258.314 257.909 256.937 255.091 252.812 250.673 248.37 246.262 245.586 246.136 248.72 249.83 249.411 251.238 251.762 250.973 249.604 247.831 246.264 245.126 244.123 243.354 242.37 233.73 232.242 231.363 230.311 228.471 226.781 227.67 230.28 234.216 238.694 243.017 246.548 249.89 253.993 258.963 263.595 269.613 272.114 273.138 273.511 273.802 274.067 274.37 274.752 275.167 275.505 275.788 276.177 276.919 278.042 279.214 280.914 283.223 285.274 287.169 288.733 290.019 291.322 292.464 293.381 294.126 294.865 295.625 296.244 296.76 297.23 297.762 298.308 298.738 298.993 299.17 299.362 299.633 299.901 300.041 300.083 300.151 300.244 300.301 300.315 300.367 300.416 300.313 300.032 299.811 299.688 299.564 299.484 299.397 299.139 298.869 298.747 298.758 298.939 299.211 299.225 298.944 298.512 297.65 296.19 294.314 292.06 290.159 288.804 287.239 284.698 281.022 275.771 269.12 261.568 259.939 260.866 263.416 267.355 269.781 270.801 270.112 267.112 264.538 263.178 261.911 259.905 258.689 258.397 258.376 257.947 257.632 256.582 254.655 252.397 249.851 247.798 245.196 244.494 244.794 246.384 249.667 249.385 250.706 250.965 250.402 249.294 247.738 246.094 245.016 244.045 243.289 242.372 233.825 232.23 231.333 230.274 228.446 226.744 227.605 230.166 234.128 238.685 243.218 247.182 250.891 255.159 260.386 265.163 270.302 272.31 273.128 273.456 273.725 273.98 274.266 274.649 275.082 275.418 275.705 276.146 276.991 278.185 279.331 281.054 283.307 285.296 287.131 288.632 289.932 291.233 292.337 293.252 294.039 294.789 295.504 296.073 296.609 297.156 297.751 298.248 298.63 298.903 299.095 299.265 299.554 299.856 299.982 299.987 300.053 300.192 300.269 300.274 300.296 300.351 300.28 300.0 299.754 299.623 299.51 299.528 299.642 299.531 299.239 299.011 299.022 299.412 300.007 300.216 299.809 299.047 297.852 296.467 294.637 292.882 290.402 289.169 287.79 286.22 283.875 279.41 271.392 260.36 256.166 256.158 259.5 263.513 268.169 269.826 269.868 266.653 263.549 262.006 261.255 259.262 258.418 258.047 257.872 257.422 257.305 256.183 254.401 252.157 249.496 247.007 244.427 243.522 243.545 245.784 249.49 249.621 250.054 250.283 249.892 248.985 247.648 245.981 244.917 243.981 243.216 242.371 233.732 232.181 231.301 230.265 228.452 226.723 227.508 229.953 233.928 238.484 243.184 247.416 251.271 255.454 259.73 266.279 270.694 272.4 273.095 273.402 273.668 273.932 274.167 274.517 274.968 275.304 275.629 276.187 277.19 278.376 279.576 281.362 283.482 285.339 287.033 288.485 289.793 291.059 292.131 293.061 293.903 294.652 295.306 295.86 296.451 297.081 297.701 298.143 298.487 298.772 298.973 299.147 299.443 299.748 299.891 299.945 300.034 300.158 300.262 300.301 300.285 300.296 300.266 300.042 299.769 299.564 299.437 299.526 299.708 299.552 299.143 298.909 299.102 299.748 300.363 300.639 299.993 298.8 297.536 296.731 294.842 293.044 291.016 288.987 287.983 287.028 285.473 280.404 270.87 258.61 253.593 253.544 257.093 261.003 266.092 268.834 269.481 266.38 262.837 261.342 260.624 258.957 258.228 257.812 257.58 257.357 257.183 256.128 254.319 251.645 248.634 245.911 243.696 242.543 242.338 244.694 249.115 249.565 249.469 249.681 249.381 248.719 247.518 245.987 244.827 243.946 243.148 242.366 233.704 232.155 231.244 230.248 228.475 226.713 227.395 229.732 233.615 238.069 242.825 247.149 250.832 255.078 259.355 265.959 270.576 272.305 273.042 273.382 273.663 273.929 274.11 274.386 274.847 275.17 275.533 276.279 277.445 278.608 279.899 281.691 283.65 285.352 286.924 288.355 289.656 290.867 291.896 292.828 293.683 294.44 295.101 295.694 296.337 297.005 297.6 298.019 298.352 298.624 298.827 299.043 299.367 299.687 299.86 299.979 300.079 300.152 300.27 300.358 300.326 300.289 300.281 300.076 299.753 299.515 299.402 299.467 299.611 299.561 299.39 299.324 299.186 299.415 299.89 300.344 300.453 299.291 297.935 296.474 295.002 292.841 291.065 288.833 288.265 286.773 284.025 277.913 266.536 256.894 253.166 254.068 256.983 259.47 263.419 267.4 268.919 266.281 262.421 260.78 259.951 258.715 258.095 257.695 257.688 257.417 257.34 256.08 253.925 251.217 247.987 245.085 242.992 241.607 241.208 243.438 248.687 249.428 249.077 249.099 248.965 248.497 247.436 245.942 244.73 243.938 243.094 242.36 233.658 232.152 231.255 230.242 228.507 226.719 227.257 229.49 233.225 237.479 242.1 246.279 249.825 253.942 259.373 265.075 269.984 272.065 272.975 273.381 273.679 273.917 274.055 274.265 274.688 274.999 275.388 276.372 277.692 278.868 280.188 281.922 283.727 285.3 286.824 288.259 289.52 290.67 291.656 292.561 293.41 294.187 294.9 295.559 296.249 296.929 297.49 297.886 298.206 298.459 298.669 298.933 299.287 299.601 299.793 299.966 300.082 300.148 300.286 300.397 300.351 300.301 300.282 300.072 299.754 299.545 299.433 299.425 299.591 299.844 300.049 299.552 299.117 299.296 300.531 301.061 300.701 299.464 297.953 296.411 294.932 293.391 291.597 290.634 288.357 285.433 280.233 271.94 259.931 255.591 255.324 257.525 258.961 259.843 262.141 265.905 268.24 265.868 262.27 260.262 259.345 258.64 257.965 257.513 257.427 257.299 257.202 255.887 253.679 250.685 247.493 244.407 242.26 240.739 240.294 243.133 248.097 249.293 248.973 248.678 248.692 248.313 247.342 245.858 244.648 243.914 243.045 242.352 233.695 232.156 231.243 230.24 228.551 226.753 227.129 229.219 232.767 236.747 241.089 244.969 248.333 252.379 259.393 264.012 268.895 271.649 272.888 273.376 273.681 273.882 273.986 274.161 274.508 274.8 275.253 276.447 277.919 279.129 280.421 282.053 283.713 285.198 286.734 288.18 289.385 290.468 291.429 292.303 293.143 293.956 294.738 295.455 296.171 296.846 297.349 297.708 298.01 298.26 298.493 298.8 299.181 299.499 299.727 299.951 300.072 300.126 300.269 300.383 300.343 300.301 300.269 300.07 299.787 299.6 299.465 299.423 299.652 299.956 300.298 300.31 300.367 300.573 301.047 301.248 300.818 299.66 298.21 296.636 295.289 294.002 292.287 291.429 288.656 283.099 274.116 260.636 255.454 255.418 258.925 260.731 261.628 261.13 261.407 264.163 266.685 265.168 262.3 259.934 259.117 258.697 258.109 257.387 257.175 257.531 257.188 255.615 253.305 250.248 247.109 243.879 241.806 239.922 239.435 242.573 247.436 249.113 248.977 248.417 248.511 248.14 247.259 245.789 244.588 243.89 242.998 242.344 233.698 232.18 231.221 230.255 228.618 226.795 227.019 228.944 232.266 235.936 239.836 243.33 246.548 250.518 256.117 262.606 267.174 270.856 272.743 273.35 273.639 273.835 273.911 274.053 274.329 274.603 275.176 276.574 278.168 279.404 280.614 282.108 283.637 285.076 286.65 288.085 289.236 290.27 291.215 292.091 292.937 293.785 294.629 295.368 296.061 296.7 297.154 297.463 297.743 298.016 298.283 298.634 299.05 299.423 299.739 300.013 300.09 300.06 300.164 300.297 300.315 300.305 300.272 300.097 299.811 299.579 299.481 299.603 299.905 300.043 300.128 300.21 300.105 300.188 300.639 300.748 300.452 299.771 298.728 297.19 295.492 294.187 293.432 291.882 287.191 278.525 265.632 254.418 252.372 257.167 261.726 263.472 264.208 262.868 261.455 262.714 264.666 264.223 261.877 259.714 259.072 258.754 258.034 257.286 257.297 257.592 256.902 254.936 252.604 249.679 246.163 243.242 240.806 239.172 238.703 241.529 246.573 248.726 248.885 248.133 248.349 247.988 247.215 245.759 244.603 243.868 242.954 242.335 233.701 232.135 231.224 230.285 228.701 226.869 226.905 228.667 231.754 235.108 238.446 241.6 244.603 248.637 253.99 261.618 265.917 269.752 272.524 273.277 273.562 273.781 273.861 273.973 274.21 274.502 275.206 276.777 278.42 279.672 280.797 282.146 283.578 284.997 286.565 287.99 289.134 290.151 291.059 291.942 292.8 293.648 294.516 295.26 295.905 296.498 296.949 297.277 297.556 297.822 298.103 298.501 298.959 299.362 299.719 300.021 300.101 300.053 300.127 300.249 300.292 300.303 300.3 300.151 299.826 299.523 299.477 299.728 299.987 299.741 299.056 298.535 298.21 298.426 298.625 299.499 300.052 300.02 298.515 296.851 295.299 294.138 293.712 291.544 284.569 273.335 257.571 250.964 251.189 258.436 263.697 266.468 265.784 263.991 260.962 261.633 263.571 263.233 261.355 259.313 259.0 258.62 257.967 257.342 257.347 257.553 256.433 254.167 251.61 248.899 245.429 242.468 240.217 238.571 238.151 241.295 245.492 248.177 248.784 247.825 248.189 247.905 247.171 245.819 244.607 243.842 242.944 242.325 233.702 232.166 231.227 230.328 228.808 226.972 226.808 228.411 231.246 234.26 236.944 239.709 242.685 246.791 252.249 259.792 265.113 268.641 272.235 273.163 273.462 273.716 273.818 273.92 274.141 274.477 275.314 277.02 278.673 279.95 281.026 282.239 283.575 284.963 286.487 287.896 289.066 290.085 290.948 291.811 292.663 293.501 294.376 295.124 295.73 296.276 296.746 297.115 297.396 297.651 297.967 298.423 298.919 299.32 299.67 299.988 300.144 300.146 300.176 300.218 300.233 300.292 300.33 300.192 299.85 299.509 299.396 299.496 299.415 298.897 298.377 297.857 297.556 297.535 297.64 297.816 299.049 299.052 297.824 296.514 294.923 294.71 294.145 290.555 280.632 268.206 254.369 249.559 251.583 258.383 264.136 268.235 267.641 264.573 260.384 261.158 263.033 262.125 260.509 258.893 258.46 258.235 258.021 257.458 257.301 257.551 255.675 253.264 250.751 248.299 245.056 242.199 239.902 238.246 237.768 239.858 243.965 247.495 248.667 247.809 248.039 247.872 247.179 245.862 244.603 243.808 242.944 242.314 233.793 232.171 231.259 230.378 228.906 227.098 226.734 228.185 230.648 233.333 235.577 237.906 240.895 245.135 250.68 257.043 263.46 267.672 271.896 273.001 273.332 273.624 273.772 273.893 274.123 274.515 275.479 277.266 278.916 280.23 281.291 282.39 283.629 284.96 286.417 287.793 288.996 290.037 290.857 291.679 292.526 293.355 294.22 294.969 295.55 296.055 296.535 296.929 297.217 297.496 297.88 298.383 298.898 299.301 299.65 299.973 300.19 300.259 300.257 300.203 300.176 300.278 300.346 300.189 299.857 299.546 299.326 299.127 298.938 298.653 298.162 297.599 297.305 297.146 296.944 297.125 297.892 298.51 298.046 296.677 295.346 294.89 294.086 288.404 276.33 260.561 252.198 249.794 252.382 257.414 263.772 268.937 268.491 264.508 260.184 261.027 261.992 261.185 259.078 258.322 258.489 258.017 258.136 257.675 257.531 257.061 254.921 252.308 250.163 247.959 245.459 242.37 239.876 238.16 237.729 238.393 242.546 246.749 248.48 248.009 247.914 247.859 247.182 245.853 244.592 243.784 242.933 242.306 233.692 232.189 231.27 230.421 229.032 227.264 226.704 227.983 230.185 232.528 234.341 236.18 239.217 243.678 249.332 255.213 261.912 266.943 271.591 272.796 273.169 273.501 273.719 273.883 274.158 274.619 275.695 277.496 279.132 280.501 281.587 282.602 283.74 284.994 286.355 287.673 288.898 289.962 290.745 291.511 292.354 293.182 294.022 294.744 295.317 295.825 296.312 296.709 297.036 297.39 297.837 298.328 298.82 299.265 299.652 299.942 300.135 300.272 300.35 300.304 300.229 300.293 300.318 300.123 299.839 299.641 299.417 299.054 298.685 298.392 298.043 297.648 297.439 297.269 296.829 296.625 297.333 298.15 298.2 297.17 295.637 294.912 293.012 285.528 272.694 257.132 251.453 250.815 252.245 255.919 262.125 268.288 268.326 264.516 260.112 261.097 261.408 259.736 257.456 257.024 257.535 257.971 258.11 257.862 257.638 256.678 254.14 251.589 249.813 247.933 245.854 243.024 240.307 238.418 237.34 237.535 241.693 245.975 248.24 248.092 247.799 247.834 247.109 245.782 244.578 243.782 242.903 242.302 233.711 232.233 231.296 230.483 229.18 227.466 226.682 227.844 229.773 231.793 233.242 234.828 237.838 242.415 248.167 254.116 261.252 266.648 271.441 272.679 273.057 273.414 273.676 273.895 274.237 274.753 275.875 277.632 279.241 280.657 281.805 282.798 283.857 285.04 286.328 287.581 288.781 289.839 290.592 291.32 292.16 293.003 293.807 294.469 295.048 295.601 296.118 296.531 296.881 297.29 297.765 298.231 298.71 299.173 299.608 299.885 300.063 300.252 300.451 300.475 300.325 300.269 300.255 300.111 299.87 299.67 299.451 299.144 298.796 298.408 297.989 297.555 297.223 297.028 296.758 296.524 296.909 297.745 297.987 297.273 296.447 294.779 291.607 282.939 270.147 256.517 251.96 251.532 251.633 254.182 259.682 266.014 267.268 264.63 261.051 260.848 259.842 257.469 255.399 255.075 256.529 257.282 258.116 257.905 257.504 256.317 253.546 251.235 249.842 248.239 246.131 244.005 241.3 238.92 237.48 236.765 239.543 244.773 247.982 248.034 247.613 247.759 246.872 245.709 244.549 243.793 242.86 242.297 233.775 232.207 231.319 230.534 229.326 227.706 226.798 227.753 229.42 231.07 232.263 233.652 236.59 241.268 247.229 253.243 260.656 266.361 271.336 272.617 273.015 273.382 273.656 273.923 274.327 274.888 276.011 277.703 279.287 280.725 281.927 282.935 283.942 285.072 286.321 287.527 288.674 289.693 290.428 291.147 291.996 292.855 293.632 294.239 294.817 295.397 295.913 296.327 296.696 297.142 297.663 298.167 298.649 299.102 299.568 299.891 300.098 300.291 300.497 300.551 300.38 300.27 300.267 300.19 299.96 299.67 299.388 299.132 298.819 298.378 297.958 297.496 296.97 296.672 296.644 296.603 296.68 297.18 297.622 297.18 296.896 295.241 290.529 280.947 268.094 257.33 253.122 252.098 251.571 252.676 257.563 263.841 266.454 264.938 261.795 260.009 258.358 255.607 253.34 253.186 255.376 257.527 258.118 258.217 257.532 256.03 253.111 251.153 249.854 248.69 246.73 244.857 242.253 239.589 237.705 236.238 237.535 243.142 247.698 247.905 247.366 247.603 246.588 245.609 244.546 243.798 242.812 242.292 233.735 232.28 231.372 230.597 229.475 227.954 226.864 227.689 229.177 230.521 231.276 232.763 235.608 240.16 246.368 252.542 259.694 266.004 271.199 272.559 273.016 273.389 273.654 273.955 274.417 275.017 276.115 277.746 279.311 280.748 281.957 282.976 283.971 285.078 286.317 287.501 288.58 289.535 290.271 291.014 291.88 292.744 293.499 294.074 294.641 295.21 295.689 296.096 296.497 296.985 297.56 298.113 298.586 299.015 299.511 299.913 300.155 300.309 300.469 300.563 300.463 300.366 300.359 300.301 300.071 299.736 299.403 299.142 298.819 298.345 297.932 297.459 296.805 296.407 296.511 296.643 296.575 296.743 297.3 297.495 297.216 295.383 289.65 279.237 266.681 257.466 253.898 252.494 251.365 251.696 256.141 261.29 265.952 265.481 262.308 259.035 256.813 253.52 251.625 251.837 254.288 256.946 258.272 258.103 257.424 255.833 253.192 251.131 250.25 249.086 247.036 245.145 242.709 240.304 238.194 235.989 236.511 240.569 247.337 247.751 247.162 247.364 246.334 245.562 244.537 243.802 242.745 242.286 233.735 232.309 231.409 230.668 229.636 228.215 227.049 227.685 228.973 230.072 230.683 232.11 234.737 239.207 245.531 251.969 259.484 265.578 270.939 272.448 273.025 273.422 273.654 273.977 274.494 275.139 276.205 277.792 279.348 280.756 281.895 282.882 283.899 285.034 286.311 287.488 288.481 289.356 290.117 290.912 291.778 292.624 293.346 293.897 294.45 294.976 295.417 295.854 296.333 296.882 297.474 297.996 298.411 298.84 299.391 299.847 300.108 300.266 300.434 300.604 300.6 300.504 300.442 300.357 300.175 299.918 299.593 299.264 298.887 298.385 297.863 297.288 296.683 296.357 296.418 296.51 296.509 296.656 296.851 296.509 295.352 294.166 289.137 278.971 267.681 258.944 255.001 252.932 251.666 252.379 256.136 260.46 266.113 265.923 262.251 258.115 254.942 252.191 250.698 251.377 253.758 256.311 257.654 257.752 257.219 255.731 253.316 251.429 250.5 248.962 246.896 245.314 243.357 241.005 238.717 235.904 235.703 239.316 246.74 247.459 247.021 246.883 246.215 245.514 244.523 243.802 242.68 242.278 233.769 232.342 231.485 230.759 229.804 228.486 227.298 227.685 228.844 229.718 230.242 231.547 234.06 238.364 244.84 251.548 259.767 265.365 270.513 272.282 273.008 273.442 273.644 273.97 274.537 275.225 276.278 277.836 279.385 280.742 281.771 282.704 283.774 284.976 286.281 287.431 288.341 289.171 289.977 290.811 291.653 292.461 293.141 293.671 294.214 294.716 295.162 295.667 296.233 296.82 297.396 297.858 298.24 298.73 299.313 299.747 300.036 300.276 300.478 300.64 300.633 300.54 300.475 300.398 300.272 300.112 299.806 299.389 298.993 298.59 298.044 297.378 296.833 296.644 296.707 296.72 296.679 296.726 296.563 295.302 294.033 293.035 288.828 280.184 269.972 261.594 256.465 253.646 252.477 253.247 256.565 259.96 265.169 265.63 262.122 256.983 253.687 250.829 250.025 251.269 253.799 255.86 256.869 257.706 257.153 255.777 253.493 251.585 250.193 248.752 246.795 245.315 243.615 241.308 239.175 236.048 235.175 238.481 245.94 247.002 246.543 246.324 246.191 245.397 244.49 243.789 242.635 242.269 233.783 232.373 231.537 230.854 229.98 228.763 227.589 227.746 228.727 229.465 229.881 231.173 233.499 237.736 244.318 251.175 260.365 265.139 269.922 272.082 272.975 273.44 273.629 273.951 274.556 275.29 276.346 277.874 279.391 280.682 281.612 282.521 283.661 284.931 286.228 287.314 288.154 288.977 289.846 290.714 291.528 292.291 292.934 293.442 293.977 294.476 294.949 295.518 296.143 296.732 297.286 297.723 298.122 298.677 299.252 299.654 300.001 300.325 300.515 300.634 300.646 300.585 300.542 300.485 300.424 300.372 300.123 299.623 299.144 298.826 298.39 297.709 297.063 296.867 297.076 297.229 297.174 297.041 296.368 294.474 292.975 291.956 288.654 281.147 271.889 263.548 258.282 255.386 253.951 254.733 257.089 259.434 264.091 264.907 261.281 256.004 252.528 249.967 249.546 250.913 253.386 255.496 257.044 257.571 256.791 255.551 253.395 251.575 249.922 248.381 246.749 245.095 243.458 241.332 239.464 236.277 234.87 237.822 245.066 246.353 245.661 246.13 246.218 245.303 244.461 243.783 242.587 242.264 233.805 232.439 231.625 230.948 230.162 229.043 227.906 227.86 228.567 229.275 229.661 230.918 233.046 237.306 243.843 250.906 260.305 264.716 269.214 271.868 272.926 273.423 273.622 273.941 274.561 275.339 276.41 277.896 279.358 280.579 281.44 282.362 283.59 284.907 286.156 287.156 287.944 288.782 289.712 290.609 291.393 292.107 292.711 293.196 293.735 294.256 294.775 295.412 296.077 296.624 297.124 297.547 297.997 298.613 299.179 299.577 299.998 300.393 300.56 300.661 300.709 300.649 300.595 300.588 300.613 300.665 300.498 299.909 299.275 298.972 298.704 298.046 297.205 296.848 297.278 297.622 297.777 296.947 296.673 295.708 293.789 291.343 288.06 281.606 273.048 264.44 259.72 256.575 254.922 255.554 257.022 258.412 261.235 263.432 259.487 254.98 251.524 249.123 248.881 250.472 252.451 254.847 256.712 257.11 256.798 255.404 253.19 251.418 249.619 248.184 246.682 244.811 243.012 241.036 239.565 236.543 234.833 237.391 244.053 245.546 244.774 245.795 246.487 245.269 244.424 243.778 242.537 242.259 233.851 232.513 231.692 231.053 230.341 229.328 228.24 228.028 228.53 229.107 229.542 230.793 232.902 236.942 243.563 250.594 258.054 263.92 268.461 271.659 272.859 273.394 273.626 273.947 274.556 275.369 276.473 277.898 279.279 280.436 281.288 282.273 283.586 284.908 286.063 286.983 287.748 288.605 289.557 290.444 291.183 291.85 292.411 292.881 293.463 294.054 294.651 295.363 296.035 296.472 296.863 297.291 297.865 298.581 299.188 299.615 300.109 300.54 300.695 300.784 300.777 300.631 300.575 300.663 300.705 300.703 300.517 299.863 299.426 299.327 299.296 298.765 297.812 297.207 297.432 296.884 297.562 297.084 297.236 296.017 293.793 290.08 287.661 281.488 273.069 263.744 259.545 257.122 255.351 255.57 255.957 257.3 259.894 261.432 257.83 253.809 250.859 248.55 248.514 249.928 252.332 254.224 255.79 256.857 256.386 255.235 253.091 251.41 249.356 247.761 246.338 244.427 242.468 240.435 239.528 236.794 234.907 237.048 243.006 244.599 243.61 245.578 246.884 245.301 244.409 243.767 242.52 242.255 233.84 232.511 231.787 231.158 230.521 229.623 228.573 228.207 228.519 228.943 229.479 230.824 232.825 236.778 243.392 250.295 256.193 262.09 267.936 271.563 272.835 273.381 273.639 273.943 274.527 275.373 276.511 277.88 279.192 280.313 281.212 282.29 283.657 284.922 285.972 286.858 287.631 288.477 289.392 290.245 290.965 291.623 292.168 292.644 293.3 293.997 294.667 295.388 295.966 296.245 296.578 297.119 297.877 298.684 299.325 299.77 300.288 300.701 300.811 300.814 300.719 300.574 300.582 300.624 300.401 300.027 299.61 299.378 299.737 300.0 300.13 299.759 298.956 298.155 297.578 297.801 297.994 296.746 295.273 293.541 291.941 288.69 285.421 279.17 270.06 262.437 259.165 257.184 255.84 255.191 255.42 257.193 259.868 261.656 256.848 252.931 250.402 248.429 248.133 249.352 251.309 253.422 255.274 256.808 256.276 255.1 253.057 251.198 249.368 247.638 246.057 244.027 241.784 239.869 239.315 236.964 235.089 236.844 242.666 243.728 244.04 245.914 247.317 245.404 244.413 243.745 242.533 242.254 233.863 232.614 231.868 231.278 230.709 229.91 228.896 228.401 228.584 228.88 229.49 230.837 232.788 236.788 243.309 250.059 255.863 261.363 267.85 271.582 272.847 273.378 273.647 273.928 274.478 275.363 276.531 277.853 279.114 280.219 281.178 282.344 283.734 284.913 285.872 286.73 287.513 288.349 289.239 290.078 290.798 291.458 292.003 292.501 293.229 294.023 294.731 295.383 295.815 295.981 296.337 297.033 297.941 298.781 299.417 299.889 300.414 300.792 300.855 300.78 300.656 300.53 300.48 300.298 299.8 298.601 298.844 299.755 299.904 300.196 300.45 299.925 299.006 298.33 297.639 297.86 297.227 295.728 293.656 291.688 290.079 286.729 281.578 275.925 266.942 261.252 258.663 258.105 256.62 255.998 256.55 258.767 261.682 262.098 256.882 252.843 251.202 249.393 248.513 249.271 250.628 252.661 255.328 256.676 256.119 254.96 253.02 250.944 249.213 247.555 245.738 243.667 241.366 239.439 238.87 237.071 235.26 236.674 242.36 243.108 244.073 247.313 247.539 245.552 244.458 243.75 242.536 242.254 233.925 232.673 231.983 231.406 230.902 230.186 229.221 228.578 228.65 228.92 229.575 230.972 232.867 236.93 243.268 249.887 255.637 261.041 268.07 271.689 272.868 273.371 273.643 273.901 274.422 275.349 276.542 277.826 279.045 280.152 281.161 282.397 283.781 284.878 285.757 286.578 287.361 288.206 289.1 289.945 290.656 291.299 291.848 292.405 293.204 294.053 294.74 295.266 295.575 295.725 296.169 297.006 298.01 298.865 299.496 299.992 300.491 300.825 300.887 300.794 300.613 300.343 300.041 299.385 298.36 297.969 299.763 299.912 299.872 299.661 299.275 299.072 298.682 298.683 297.878 297.3 296.332 294.42 292.177 290.356 288.295 283.199 278.673 274.014 267.54 262.866 260.678 259.106 258.352 257.4 257.93 260.586 263.04 263.019 258.435 253.752 252.052 250.676 250.44 250.689 250.943 252.77 255.505 256.524 255.947 254.845 252.789 250.816 249.194 247.441 245.512 243.566 241.086 239.143 238.415 237.183 235.618 236.787 241.539 242.914 244.417 248.384 247.477 245.654 244.486 243.739 242.54 242.252 233.881 232.741 232.078 231.537 231.084 230.45 229.539 228.804 228.715 228.978 229.721 231.155 233.038 237.054 243.361 249.9 255.731 261.385 268.617 271.878 272.868 273.348 273.619 273.86 274.383 275.348 276.559 277.809 278.993 280.108 281.159 282.438 283.787 284.817 285.635 286.408 287.171 288.043 288.97 289.824 290.507 291.098 291.688 292.397 293.259 294.069 294.617 294.985 295.273 295.571 296.165 297.086 298.136 299.039 299.676 300.119 300.513 300.819 300.955 300.859 300.445 299.73 298.33 297.808 298.033 298.749 300.058 299.606 298.827 298.775 298.723 298.785 298.453 298.421 297.184 296.111 295.377 293.498 291.034 289.203 287.133 282.146 278.627 275.993 272.35 267.748 264.318 261.42 259.963 259.277 260.062 262.661 264.336 263.281 260.321 255.286 253.313 252.339 252.171 253.148 253.136 254.453 255.868 256.2 255.67 254.486 252.537 250.649 249.129 247.367 245.28 243.262 241.104 238.911 238.128 237.038 235.925 236.913 240.396 242.961 246.543 248.391 247.236 245.604 244.48 243.712 242.546 242.251 233.977 232.816 232.201 231.677 231.269 230.719 229.832 228.996 228.847 229.055 229.842 231.316 233.221 237.313 243.508 250.001 256.165 261.658 269.175 272.044 272.855 273.331 273.598 273.832 274.394 275.379 276.59 277.816 278.975 280.089 281.188 282.477 283.766 284.755 285.555 286.315 287.086 287.963 288.877 289.733 290.428 291.03 291.748 292.602 293.447 294.111 294.514 294.835 295.222 295.717 296.426 297.33 298.337 299.24 299.813 300.116 300.412 300.746 300.913 300.716 299.993 298.629 297.92 297.99 298.871 299.331 299.39 298.91 298.798 298.871 299.188 299.491 299.468 299.465 297.244 294.859 294.01 292.312 290.114 288.248 286.588 283.434 280.911 278.371 274.802 270.705 267.105 263.784 261.983 261.157 262.263 264.363 264.823 263.349 260.898 256.809 254.779 254.572 253.365 255.102 254.765 255.541 255.821 256.023 255.465 253.948 252.277 250.402 248.94 247.078 244.791 242.79 241.067 238.921 237.852 237.059 236.138 236.991 239.978 242.941 247.307 248.239 246.871 245.458 244.437 243.669 242.522 242.252 233.968 232.907 232.311 231.822 231.471 230.984 230.105 229.21 228.945 229.106 230.09 231.565 233.518 237.613 243.691 250.123 256.83 261.837 269.707 272.175 272.842 273.329 273.596 273.827 274.426 275.417 276.622 277.832 278.963 280.076 281.232 282.522 283.738 284.687 285.497 286.275 287.071 287.941 288.8 289.646 290.401 291.086 291.936 292.828 293.564 294.076 294.482 294.924 295.438 296.055 296.814 297.646 298.547 299.376 299.876 300.092 300.336 300.629 300.727 300.441 299.103 298.425 298.486 299.177 299.617 299.582 299.398 299.043 298.842 298.999 299.6 299.946 300.422 299.285 296.517 293.947 292.685 291.004 289.206 287.854 286.198 284.162 281.567 277.665 272.952 268.947 267.066 265.211 263.857 263.342 264.667 265.37 265.122 263.557 261.164 258.06 256.002 254.865 254.992 256.0 255.459 255.641 256.174 255.647 254.759 253.53 251.975 250.005 248.705 246.641 244.365 242.53 240.953 239.104 237.878 237.171 236.419 237.237 239.98 243.017 247.107 247.956 246.481 245.285 244.389 243.612 242.505 242.254 233.963 232.976 232.414 231.987 231.679 231.223 230.353 229.397 229.067 229.232 230.346 231.829 233.907 238.069 243.988 250.373 257.502 262.9 270.205 272.272 272.84 273.345 273.611 273.84 274.466 275.446 276.641 277.842 278.939 280.057 281.276 282.563 283.7 284.614 285.448 286.248 287.072 287.947 288.742 289.565 290.398 291.188 292.114 292.967 293.569 294.009 294.573 295.239 295.877 296.541 297.295 298.028 298.768 299.488 299.943 300.154 300.335 300.48 300.438 300.155 298.69 298.665 299.018 299.538 299.402 299.256 299.138 299.022 298.95 299.059 299.052 299.596 300.334 298.548 295.871 293.501 291.712 290.315 288.68 287.099 285.109 283.059 280.239 275.721 271.424 269.357 268.485 267.117 265.837 265.384 265.666 265.879 264.959 263.523 261.579 258.764 256.684 255.509 255.176 255.939 255.45 255.724 255.801 255.069 254.181 253.255 251.707 249.708 248.276 246.323 244.08 242.186 240.841 238.984 238.093 237.477 236.76 237.51 240.182 245.215 247.55 247.533 246.112 245.081 244.311 243.541 242.492 242.256 234.051 233.016 232.534 232.155 231.882 231.428 230.584 229.604 229.193 229.443 230.518 232.068 234.344 238.588 244.407 250.7 257.777 264.286 270.63 272.35 272.868 273.371 273.625 273.859 274.501 275.453 276.631 277.827 278.891 280.025 281.309 282.595 283.67 284.569 285.422 286.208 287.051 287.979 288.774 289.594 290.497 291.372 292.295 293.09 293.639 294.169 294.974 295.869 296.615 297.279 297.974 298.557 299.075 299.628 300.064 300.309 300.378 300.286 299.769 299.347 299.824 299.66 299.507 299.265 299.0 298.889 298.954 299.095 299.163 299.133 299.302 299.539 299.852 297.43 294.741 292.926 290.976 289.927 288.802 287.247 284.742 282.091 279.063 275.63 273.024 272.098 271.384 269.274 267.511 267.075 267.054 265.605 264.628 263.489 261.927 259.636 256.793 255.31 255.506 255.671 255.004 254.914 254.747 254.007 253.483 252.87 251.324 249.173 247.417 245.793 243.718 241.846 240.706 239.057 238.347 237.771 237.512 238.094 241.715 246.695 247.831 247.064 245.701 244.843 244.158 243.466 242.457 242.257 234.1 233.171 232.667 232.329 232.08 231.647 230.784 229.796 229.334 229.603 230.701 232.121 234.853 239.231 244.894 251.101 259.071 265.394 270.888 272.418 272.931 273.392 273.62 273.874 274.532 275.447 276.592 277.782 278.84 280.011 281.344 282.626 283.689 284.598 285.444 286.195 287.059 288.081 288.963 289.851 290.815 291.729 292.605 293.36 293.991 294.704 295.67 296.673 297.525 298.205 298.774 299.139 299.411 299.786 300.183 300.41 300.416 300.191 299.336 299.568 299.958 299.826 299.551 299.277 299.054 299.056 299.058 299.163 299.286 299.273 299.124 298.99 298.217 296.328 294.706 293.623 292.572 291.025 289.725 288.034 285.235 282.266 279.461 276.998 275.41 274.48 272.658 270.068 268.925 268.491 267.685 265.554 264.272 263.593 262.133 259.765 256.855 254.984 255.058 255.646 254.885 254.108 253.302 252.919 252.506 252.542 250.966 248.823 246.707 244.96 243.309 241.56 240.508 239.131 238.633 238.199 237.984 238.753 242.372 247.045 247.309 246.495 245.314 244.615 244.014 243.392 242.427 242.258 234.066 233.275 232.826 232.522 232.292 231.855 230.984 230.007 229.562 229.824 230.823 232.609 235.425 239.929 245.513 251.604 260.297 266.108 271.076 272.503 273.01 273.401 273.604 273.904 274.588 275.457 276.553 277.73 278.806 280.033 281.388 282.659 283.729 284.647 285.473 286.222 287.138 288.232 289.198 290.182 291.216 292.145 292.979 293.748 294.544 295.513 296.654 297.723 298.595 299.204 299.567 299.676 299.74 299.982 300.326 300.51 300.471 300.178 299.14 299.851 300.063 299.958 299.409 298.916 298.594 299.069 299.286 299.366 299.465 299.468 299.228 298.676 297.983 296.993 295.96 295.167 294.296 292.558 290.711 288.639 286.16 283.04 279.971 277.643 275.974 274.305 271.951 270.607 270.391 269.897 268.339 265.544 264.565 263.325 261.699 259.82 256.996 255.161 254.678 255.011 254.619 253.262 252.265 251.522 251.315 251.873 250.595 248.01 245.481 244.026 242.617 241.299 240.224 239.092 238.979 238.664 238.594 239.517 242.612 247.256 246.637 245.802 245.06 244.407 243.88 243.289 242.407 242.258 234.151 233.336 232.98 232.724 232.518 232.079 231.172 230.231 229.823 230.04 230.956 232.863 235.967 240.684 246.272 252.231 259.925 266.422 271.262 272.61 273.083 273.393 273.59 273.963 274.683 275.507 276.541 277.689 278.795 280.087 281.442 282.697 283.776 284.687 285.488 286.281 287.273 288.399 289.437 290.553 291.69 292.645 293.514 294.426 295.487 296.798 298.169 299.236 299.879 300.202 300.276 300.125 300.036 300.186 300.479 300.613 300.505 300.177 298.928 299.845 300.243 299.875 298.658 297.809 297.733 298.774 299.457 299.682 299.704 299.684 299.537 299.095 298.429 297.776 297.177 296.565 295.633 294.239 291.707 289.026 286.411 283.59 280.663 278.141 276.226 274.29 272.473 272.354 272.391 271.445 269.297 266.963 264.859 263.159 261.436 260.211 257.13 255.467 254.28 254.664 253.999 252.726 251.283 250.355 250.205 250.825 250.022 247.332 244.81 243.425 242.044 240.888 239.953 239.219 239.272 239.082 239.433 240.409 243.296 247.403 246.003 245.184 244.799 244.311 243.777 243.208 242.38 242.259 234.245 233.455 233.161 232.948 232.726 232.282 231.367 230.487 230.085 230.219 231.074 232.838 236.481 241.439 247.024 252.779 260.03 266.785 271.523 272.76 273.141 273.365 273.602 274.091 274.841 275.617 276.585 277.675 278.812 280.181 281.528 282.761 283.845 284.728 285.501 286.386 287.445 288.55 289.721 291.12 292.45 293.52 294.622 295.881 297.336 298.784 300.137 301.366 301.421 301.144 300.846 300.524 300.292 300.327 300.577 300.7 300.565 300.167 298.92 300.283 300.492 299.413 298.17 297.174 296.914 297.444 299.149 299.77 299.858 299.842 299.819 299.627 299.27 298.816 298.248 297.552 296.679 295.298 293.025 289.86 286.723 283.978 281.355 279.289 277.651 275.883 274.638 274.55 274.301 272.717 270.67 268.551 265.8 263.068 261.383 259.466 257.472 255.637 254.371 254.208 253.557 252.29 250.935 249.456 249.153 249.765 249.351 246.98 244.412 242.706 241.577 240.606 239.889 239.506 239.68 239.519 240.479 241.461 245.435 247.362 245.431 244.742 244.623 244.285 243.695 243.109 242.356 242.259 234.255 233.566 233.353 233.178 232.959 232.503 231.599 230.772 230.372 230.453 231.251 233.132 236.944 241.935 247.601 253.369 260.446 267.289 271.813 272.896 273.168 273.343 273.658 274.264 275.013 275.762 276.694 277.735 278.889 280.321 281.666 282.879 283.964 284.81 285.552 286.491 287.553 288.646 290.079 291.87 293.396 294.588 295.96 297.517 299.488 302.034 303.917 302.815 302.219 301.7 301.169 300.785 300.487 300.433 300.63 300.783 300.743 300.433 299.815 300.542 300.556 299.438 298.144 296.957 296.512 296.579 297.712 299.113 299.511 299.727 299.826 299.746 299.54 299.208 298.705 298.037 297.237 296.137 294.339 290.703 287.604 284.453 282.002 280.048 278.535 277.129 275.65 275.227 274.769 273.604 271.964 269.971 266.896 263.524 261.288 259.465 257.52 255.997 254.566 253.74 253.141 251.755 250.619 248.923 248.016 248.596 248.498 246.682 244.007 242.13 241.143 240.235 239.637 239.762 239.983 239.997 242.084 244.487 246.875 247.024 244.941 244.509 244.525 244.213 243.663 243.053 242.341 242.259 234.216 233.696 233.558 233.419 233.196 232.738 231.868 231.065 230.668 230.632 231.407 233.421 237.392 242.678 248.061 253.967 260.602 267.912 272.086 272.988 273.175 273.341 273.745 274.44 275.187 275.931 276.87 277.885 279.042 280.515 281.852 283.026 284.09 284.898 285.608 286.566 287.61 288.727 290.408 292.376 294.407 295.832 297.72 300.218 302.718 304.159 305.578 303.995 302.037 301.903 301.269 300.873 300.594 300.542 300.691 300.842 300.87 300.714 300.569 300.66 300.558 299.093 298.112 297.102 296.434 296.092 296.452 297.723 299.032 299.563 299.794 299.781 299.667 299.429 299.022 298.427 297.652 296.727 295.375 292.732 289.153 285.387 282.487 280.167 278.575 277.307 275.72 274.946 274.712 274.297 273.345 271.421 268.096 264.335 261.751 259.171 257.59 256.204 254.641 253.488 252.512 251.614 250.044 248.41 247.629 248.007 247.675 246.519 243.619 241.583 240.649 239.882 239.487 240.141 240.194 240.342 242.888 246.306 247.065 246.447 244.55 244.428 244.461 244.085 243.643 243.031 242.322 242.258 234.333 233.798 233.766 233.672 233.47 233.0 232.162 231.396 230.973 230.864 231.607 233.738 237.766 243.038 248.345 254.435 261.379 268.686 272.32 273.039 273.177 273.369 273.85 274.604 275.355 276.128 277.115 278.132 279.286 280.765 282.073 283.172 284.185 284.957 285.651 286.621 287.663 288.831 290.488 293.22 295.35 297.739 299.237 301.341 302.574 303.343 304.435 303.629 302.1 301.339 301.199 300.833 300.617 300.612 300.737 300.846 300.861 300.793 300.689 300.642 300.524 299.864 299.414 297.828 297.009 296.562 296.491 296.783 298.45 299.527 299.819 299.83 299.777 299.61 299.299 298.786 298.011 297.146 296.102 294.081 290.685 286.638 283.329 280.469 278.771 277.416 275.748 275.206 274.924 274.455 273.91 272.077 269.055 265.592 262.237 259.592 257.501 255.753 254.574 253.366 252.695 251.141 250.086 248.439 246.992 247.334 247.415 246.228 243.15 241.228 240.259 239.53 239.665 240.269 240.282 240.414 243.563 246.834 246.447 245.778 244.304 244.503 244.441 243.981 243.641 243.017 242.311 242.257 234.356 233.949 233.964 233.942 233.764 233.311 232.442 231.723 231.225 231.094 231.806 234.023 238.023 243.187 248.511 254.64 261.496 269.392 272.488 273.051 273.201 273.437 273.953 274.739 275.533 276.383 277.456 278.504 279.639 281.086 282.327 283.303 284.217 284.965 285.681 286.688 287.785 289.003 290.583 293.547 295.879 297.473 298.964 300.765 301.31 301.738 303.236 303.235 302.236 300.786 301.06 300.815 300.651 300.637 300.743 300.808 300.744 300.39 300.557 300.431 300.104 299.736 299.551 299.37 298.802 298.806 298.821 297.904 299.326 299.851 299.976 299.886 299.848 299.747 299.496 299.047 298.335 297.572 296.708 294.866 291.724 288.188 284.418 280.99 278.876 277.711 276.172 275.527 275.01 274.387 273.498 272.547 269.644 266.479 263.315 260.065 257.574 255.53 254.227 253.144 252.402 251.28 249.438 247.961 246.358 246.822 246.949 245.44 242.78 240.68 239.822 239.566 240.073 240.396 240.41 240.713 244.55 247.001 245.845 245.196 244.262 244.68 244.382 243.979 243.636 243.003 242.314 242.255 234.353 234.021 234.178 234.23 234.073 233.612 232.764 232.039 231.473 231.316 232.037 234.278 238.152 243.148 248.513 254.741 262.854 269.739 272.563 273.045 273.248 273.507 274.015 274.831 275.695 276.625 277.779 278.863 279.975 281.362 282.519 283.378 284.202 284.971 285.738 286.789 287.973 289.205 290.781 292.825 295.332 296.747 298.358 299.725 300.365 300.908 302.213 302.824 301.653 300.326 300.935 300.875 300.77 300.673 300.726 300.791 300.583 300.201 300.413 300.153 299.064 298.061 298.257 298.978 299.455 299.694 299.74 299.655 300.06 300.284 300.194 299.983 299.857 299.681 299.372 298.859 298.26 297.744 297.079 295.296 291.968 288.853 285.443 281.546 278.867 277.658 276.407 275.649 274.911 274.037 272.538 272.553 270.313 266.846 263.063 261.061 258.072 255.536 253.909 252.85 252.294 251.168 249.415 247.912 246.336 246.454 246.589 244.602 241.986 240.162 239.598 239.918 240.565 240.692 240.394 240.907 245.741 246.848 245.403 244.751 244.363 244.79 244.353 243.969 243.611 242.992 242.317 242.252 234.463 234.171 234.406 234.52 234.431 233.941 233.111 232.34 231.703 231.523 232.289 234.5 238.158 242.963 248.496 254.745 263.129 269.762 272.595 273.045 273.291 273.562 274.051 274.909 275.856 276.842 278.03 279.144 280.25 281.573 282.637 283.407 284.198 285.007 285.823 286.901 288.145 289.383 290.765 292.423 294.966 296.317 297.885 299.207 299.84 300.498 301.834 303.126 302.296 300.299 300.638 300.75 300.775 300.706 300.724 300.763 300.472 300.088 300.356 300.121 298.704 297.017 296.761 298.46 299.061 299.814 300.078 300.236 300.365 300.382 300.206 299.991 299.775 299.457 298.958 298.081 297.77 297.592 297.155 295.674 292.78 289.271 286.542 283.437 279.761 278.221 276.881 276.156 275.582 274.45 272.219 272.322 270.491 266.803 263.78 261.856 258.462 256.273 254.253 252.9 252.354 251.34 249.744 248.112 246.687 246.307 245.792 243.621 241.103 239.675 239.712 240.459 241.334 241.094 240.138 241.119 245.996 246.458 245.098 244.452 244.506 244.855 244.307 243.897 243.584 243.006 242.322 242.249 234.495 234.303 234.605 234.819 234.797 234.296 233.471 232.619 231.896 231.72 232.576 234.738 237.878 242.779 248.319 254.701 262.594 269.6 272.601 273.048 273.313 273.601 274.083 275.0 276.027 277.024 278.194 279.353 280.474 281.717 282.68 283.404 284.207 285.058 285.916 287.006 288.285 289.5 290.714 292.217 294.672 296.255 297.651 298.666 299.49 300.892 302.139 303.41 303.247 300.681 299.721 299.941 300.62 300.699 300.739 300.73 300.543 300.283 300.342 300.282 299.557 298.823 298.518 298.676 298.828 299.768 300.102 300.23 300.186 299.934 299.835 299.797 299.59 299.101 298.286 297.983 297.583 297.39 296.984 295.97 294.347 292.267 289.127 285.779 282.833 280.303 278.713 277.589 276.656 275.23 273.77 272.456 269.365 266.407 263.782 262.222 258.26 256.214 254.775 253.102 252.192 251.39 249.71 247.83 246.571 246.072 244.851 242.656 240.519 239.592 240.175 241.082 242.195 241.582 240.256 241.224 245.806 246.393 244.927 244.297 244.573 244.817 244.261 243.806 243.574 243.03 242.337 242.246 234.534 234.415 234.855 235.144 235.176 234.68 233.874 232.924 232.064 231.887 232.927 234.961 237.796 242.574 248.139 254.523 262.396 269.447 272.59 273.047 273.301 273.617 274.146 275.141 276.223 277.165 278.291 279.505 280.632 281.781 282.661 283.386 284.22 285.106 286.015 287.126 288.386 289.539 290.603 291.859 294.242 296.114 297.378 298.386 299.18 300.524 302.29 303.719 302.987 301.301 299.91 299.292 299.964 300.597 300.716 300.716 300.527 300.188 300.258 300.386 300.349 300.124 299.853 299.663 299.301 299.901 299.998 299.834 299.53 298.915 299.058 299.168 298.991 298.957 298.61 298.264 297.816 297.282 296.574 295.872 295.114 293.831 291.538 288.623 285.367 282.434 280.194 278.892 277.637 275.909 274.197 272.004 269.102 265.72 263.937 261.794 258.015 256.013 254.775 253.59 252.396 251.3 249.477 247.179 245.849 245.385 244.249 241.943 240.221 239.948 241.299 242.324 242.79 242.181 240.502 241.173 245.813 246.583 244.847 244.262 244.602 244.785 244.269 243.86 243.608 243.084 242.364 242.249 234.61 234.586 235.094 235.482 235.574 235.122 234.284 233.24 232.243 232.087 233.316 235.188 237.756 242.316 247.875 254.147 262.121 269.25 272.568 273.045 273.259 273.614 274.235 275.302 276.371 277.238 278.354 279.579 280.704 281.791 282.634 283.385 284.245 285.167 286.146 287.268 288.445 289.53 290.475 291.656 293.171 295.691 297.106 298.058 299.054 300.789 302.735 303.716 302.355 301.304 300.342 299.875 299.182 300.146 300.582 300.693 300.592 299.8 300.352 300.431 300.402 300.252 300.062 299.903 299.912 299.993 299.893 299.503 298.603 297.535 298.264 299.1 299.183 298.584 298.866 298.529 297.998 297.229 296.306 295.574 295.028 294.158 292.446 290.117 287.246 284.35 281.853 280.063 278.16 275.914 273.745 271.214 267.76 264.427 262.722 260.392 257.749 256.246 255.121 253.724 252.134 250.916 248.616 246.251 244.8 244.476 243.463 241.15 240.029 240.745 242.665 243.358 243.164 242.382 241.091 241.153 245.917 246.653 244.79 244.27 244.626 244.773 244.301 243.939 243.686 243.164 242.392 242.255 234.593 234.666 235.333 235.82 235.998 235.569 234.686 233.558 232.407 232.328 233.703 235.42 237.731 242.039 247.551 253.815 261.814 269.021 272.514 273.041 273.223 273.621 274.344 275.455 276.473 277.311 278.42 279.647 280.768 281.803 282.626 283.405 284.299 285.268 286.309 287.401 288.465 289.503 290.388 291.351 292.588 295.377 297.138 297.828 298.742 300.969 302.953 303.496 301.835 301.182 300.542 300.16 299.593 299.33 300.56 300.746 300.769 300.407 300.652 300.565 300.35 299.873 300.082 299.973 299.956 300.048 299.964 299.594 299.205 298.613 298.732 299.136 299.218 299.13 298.978 298.643 298.105 297.346 296.332 295.324 294.681 294.029 292.891 291.237 288.902 286.304 283.869 281.469 278.727 275.16 272.686 269.637 265.627 262.801 261.243 259.76 257.597 256.365 254.987 253.373 251.273 250.182 247.832 245.448 243.671 243.395 242.707 240.944 240.33 241.879 243.828 243.88 243.197 242.262 241.048 241.148 245.929 246.504 244.786 244.296 244.62 244.752 244.348 243.916 243.755 243.217 242.414 242.261 234.657 234.86 235.578 236.169 236.411 236.019 235.097 233.858 232.613 232.595 234.045 235.646 237.643 241.764 247.285 253.478 261.669 268.741 272.414 273.037 273.214 273.661 274.467 275.586 276.553 277.392 278.51 279.741 280.837 281.82 282.628 283.435 284.38 285.397 286.477 287.497 288.454 289.499 290.38 291.188 292.474 295.139 297.38 297.742 298.497 300.915 302.815 303.035 301.754 301.404 300.89 300.622 299.818 299.851 300.769 300.869 300.906 300.901 300.924 300.675 300.302 299.794 300.208 300.131 299.657 300.148 300.202 299.998 299.683 299.44 299.354 299.379 299.311 299.152 298.967 298.637 298.14 297.429 296.428 295.269 294.372 293.72 293.026 292.01 290.238 287.844 285.347 282.739 279.676 275.167 272.134 270.166 266.397 262.724 260.995 259.625 257.922 256.593 254.867 252.866 251.018 249.521 247.137 245.023 243.063 242.647 241.825 240.887 240.95 243.234 244.391 244.087 243.04 241.676 240.69 241.435 245.97 246.127 244.693 244.309 244.585 244.709 244.442 243.954 243.815 243.253 242.44 242.267 234.744 234.953 235.824 236.523 236.859 236.472 235.527 234.191 232.838 232.868 234.347 235.914 237.584 241.529 247.015 253.146 262.36 268.178 272.214 273.03 273.261 273.766 274.615 275.694 276.632 277.497 278.64 279.852 280.886 281.826 282.627 283.474 284.489 285.544 286.617 287.554 288.454 289.54 290.423 291.149 292.556 295.478 297.837 298.05 298.497 300.663 302.204 302.672 302.795 302.602 301.591 301.351 299.985 299.941 300.769 300.861 300.919 300.955 300.887 300.659 300.379 299.743 300.36 300.29 300.161 300.254 300.363 300.307 300.136 299.929 299.747 299.612 299.399 299.15 298.909 298.573 298.113 297.457 296.534 295.376 294.305 293.44 292.788 292.122 290.746 288.353 285.428 282.755 280.59 278.123 274.862 273.065 270.365 265.898 261.97 259.584 258.124 256.442 254.443 252.499 250.65 249.007 246.994 244.773 242.813 242.15 241.314 240.965 241.858 244.223 245.104 244.488 243.057 241.324 240.581 241.627 246.294 245.604 244.575 244.305 244.534 244.634 244.55 244.07 243.857 243.254 242.474 242.273 234.807 235.133 236.069 236.875 237.29 236.983 235.959 234.536 233.096 233.148 234.646 236.169 237.562 241.362 246.825 252.782 260.477 267.464 271.9 273.032 273.366 273.905 274.736 275.767 276.716 277.614 278.759 279.906 280.883 281.813 282.627 283.532 284.619 285.664 286.692 287.612 288.52 289.593 290.465 291.263 292.88 296.016 298.496 298.605 299.018 300.276 301.336 301.904 302.734 303.466 303.099 302.421 300.064 299.331 299.572 300.028 300.784 300.864 300.77 300.713 300.615 299.924 299.957 299.731 300.019 300.229 300.294 300.25 300.177 300.042 299.847 299.642 299.376 299.108 298.86 298.541 298.082 297.442 296.579 295.479 294.369 293.386 292.585 291.916 290.696 288.31 283.938 280.765 280.412 279.553 277.675 275.285 272.488 268.95 264.545 259.933 257.726 255.626 254.13 252.397 250.598 248.756 247.065 244.529 242.682 241.855 241.262 241.627 243.065 245.2 245.965 244.808 242.937 241.159 240.565 243.297 245.89 245.081 244.401 244.276 244.464 244.631 244.716 244.173 243.91 243.227 242.53 242.282 234.808 235.229 236.318 237.203 237.749 237.484 236.409 234.873 233.401 233.441 234.896 236.393 237.619 241.28 246.695 252.48 260.515 267.164 271.499 273.028 273.479 274.033 274.832 275.84 276.804 277.716 278.841 279.912 280.857 281.803 282.653 283.634 284.777 285.784 286.768 287.729 288.657 289.7 290.655 291.668 293.449 296.81 299.101 299.395 299.939 300.65 300.808 301.257 302.242 303.334 303.515 302.53 300.142 299.091 298.966 299.217 300.616 300.765 300.736 300.785 300.63 299.985 298.703 298.651 299.79 300.169 300.26 300.219 300.176 300.08 299.895 299.653 299.366 299.091 298.844 298.552 298.093 297.456 296.618 295.54 294.427 293.432 292.544 291.827 290.789 288.674 285.29 281.655 279.588 280.152 279.141 276.888 274.146 270.598 266.17 259.766 256.982 254.902 253.61 251.89 250.34 248.729 247.086 244.361 242.747 242.076 241.912 242.647 244.313 246.203 246.37 245.021 242.702 240.877 240.527 243.405 245.037 244.628 244.228 244.266 244.412 244.634 244.888 244.276 243.978 243.25 242.611 242.308 234.913 235.413 236.551 237.542 238.228 237.997 236.876 235.252 233.727 233.757 235.156 236.592 237.966 241.28 246.547 252.271 260.322 266.757 271.002 273.002 273.573 274.13 274.903 275.916 276.885 277.797 278.873 279.887 280.829 281.81 282.717 283.781 284.96 285.911 286.872 287.914 288.87 289.937 291.08 292.326 294.207 297.99 299.914 300.416 300.8 301.333 301.134 301.573 302.438 303.361 303.799 303.182 300.483 299.376 298.962 299.532 300.49 300.734 300.843 300.811 300.287 298.756 297.505 298.61 299.763 300.154 300.29 300.283 300.219 300.115 299.925 299.667 299.382 299.101 298.842 298.566 298.109 297.478 296.656 295.578 294.446 293.453 292.529 291.757 290.932 289.347 286.674 283.502 279.474 280.126 279.669 277.611 274.892 271.436 266.997 259.983 256.665 254.472 252.857 251.779 250.136 248.187 246.896 244.927 243.364 242.663 242.852 244.044 245.422 246.668 246.369 244.664 242.517 240.797 240.627 243.262 244.529 244.318 244.145 244.249 244.433 244.662 244.997 244.368 244.019 243.403 242.633 242.348 234.948 235.543 236.852 237.913 238.736 238.532 237.37 235.659 234.125 234.104 235.362 236.734 238.153 241.501 246.608 252.162 258.848 265.488 270.488 272.951 273.642 274.201 274.969 275.998 276.961 277.832 278.837 279.825 280.804 281.855 282.846 283.99 285.172 286.061 287.043 288.174 289.157 290.319 291.691 293.321 296.547 298.557 300.125 301.277 301.742 302.175 301.623 302.517 302.936 303.626 304.258 303.361 301.033 299.581 299.108 299.936 300.526 300.904 301.147 300.757 299.496 297.136 298.424 299.434 300.091 300.243 300.342 300.367 300.272 300.148 299.938 299.647 299.366 299.09 298.818 298.553 298.116 297.481 296.694 295.667 294.505 293.429 292.435 291.588 290.86 289.785 287.67 284.507 279.471 279.629 279.511 277.826 275.226 271.909 267.662 261.43 257.065 254.815 252.884 251.197 250.064 248.376 247.369 246.016 244.82 243.954 244.383 245.692 246.863 247.192 246.274 244.425 242.382 240.923 240.671 242.895 244.153 244.068 244.035 244.226 244.454 244.777 245.12 244.451 244.123 243.482 242.702 242.355 235.015 235.734 237.088 238.271 239.205 239.058 237.92 236.126 234.565 234.506 235.586 236.864 238.534 241.932 246.835 252.288 259.247 264.042 270.599 272.91 273.675 274.274 275.061 276.079 277.004 277.804 278.76 279.774 280.819 281.965 283.034 284.221 285.399 286.279 287.271 288.416 289.399 290.708 292.451 296.038 297.088 298.072 299.885 300.437 301.145 301.863 301.883 302.811 303.344 303.843 304.01 302.742 300.293 300.006 299.923 300.33 300.709 301.093 301.199 300.359 298.406 296.38 297.983 299.599 300.284 300.315 300.372 300.366 300.27 300.175 299.951 299.592 299.293 299.023 298.766 298.563 298.194 297.544 296.761 295.802 294.654 293.486 292.443 291.59 290.836 289.905 288.161 285.186 280.712 278.632 279.078 277.896 275.66 272.661 268.826 264.257 258.733 255.283 253.323 251.368 250.542 249.188 248.407 247.359 246.568 245.785 245.976 247.375 248.261 247.599 246.161 244.291 242.401 241.149 240.806 242.431 243.365 243.425 243.877 244.238 244.488 244.864 245.286 244.644 244.163 243.493 242.763 242.356 235.044 235.877 237.354 238.642 239.663 239.62 238.479 236.642 235.054 234.917 235.838 237.055 239.016 242.516 247.239 252.651 260.111 265.478 271.181 272.895 273.698 274.355 275.163 276.155 277.017 277.756 278.693 279.767 280.895 282.135 283.274 284.478 285.665 286.568 287.544 288.654 289.683 291.208 293.662 296.898 297.865 298.063 300.145 300.757 301.801 302.396 302.663 302.848 303.819 303.499 303.295 301.608 300.823 300.922 300.807 300.802 300.926 301.072 300.415 299.579 296.845 295.675 297.329 299.646 300.346 300.379 300.426 300.369 300.266 300.193 299.949 299.54 299.226 298.94 298.692 298.563 298.282 297.648 296.865 295.949 294.822 293.6 292.519 291.698 290.943 290.07 288.6 285.92 282.464 278.178 278.126 277.723 275.982 273.49 270.151 265.765 261.004 256.877 253.828 252.378 251.34 250.175 249.244 248.568 249.338 247.88 247.739 247.953 248.366 246.918 245.331 243.596 242.215 241.265 240.968 242.18 242.871 242.894 244.776 244.366 244.531 244.954 245.382 244.776 244.322 243.511 242.767 242.356 235.104 236.0 237.581 239.06 240.126 240.222 239.046 237.234 235.599 235.35 236.172 237.295 239.578 243.139 247.78 253.288 261.687 267.654 271.724 272.906 273.722 274.446 275.261 276.211 277.011 277.707 278.66 279.821 281.049 282.378 283.575 284.764 285.936 286.871 287.83 288.934 290.155 291.906 294.758 297.153 297.494 297.965 299.689 300.716 302.357 303.298 302.868 302.778 301.998 301.956 301.184 300.458 301.329 301.135 300.983 300.963 301.117 300.964 299.073 297.923 295.968 295.765 298.102 299.878 300.452 300.46 300.493 300.414 300.298 300.204 299.923 299.499 299.17 298.853 298.61 298.528 298.313 297.743 296.999 296.118 295.019 293.785 292.634 291.778 291.047 290.238 288.99 286.687 283.371 279.176 277.036 276.751 275.989 273.97 271.099 267.06 261.835 258.283 254.972 253.068 251.598 250.343 250.378 250.277 251.36 250.137 249.11 248.239 247.749 246.123 244.466 243.023 242.251 241.566 241.15 242.141 242.399 243.321 245.417 244.689 244.581 245.061 245.485 244.872 244.354 243.512 242.768 242.356 235.161 236.175 237.946 239.414 240.647 240.816 239.661 237.893 236.289 235.911 236.437 237.614 240.155 243.893 248.434 254.228 263.239 269.169 272.121 272.932 273.725 274.52 275.317 276.211 276.972 277.669 278.673 279.953 281.301 282.736 283.965 285.074 286.166 287.135 288.138 289.369 290.931 293.677 296.127 297.362 297.343 297.74 299.093 300.074 301.864 302.829 302.893 303.107 302.723 301.296 300.442 299.901 300.951 300.972 300.935 301.034 301.216 300.786 298.36 296.655 295.952 296.258 299.104 300.345 300.618 300.517 300.516 300.469 300.369 300.216 299.889 299.473 299.11 298.772 298.568 298.493 298.29 297.82 297.172 296.32 295.256 294.076 292.869 291.854 291.081 290.34 289.254 287.346 284.462 280.857 277.941 276.416 274.753 273.526 270.407 267.421 262.49 258.301 254.906 252.245 251.663 251.085 250.652 252.06 252.766 252.401 250.54 248.491 246.855 245.281 243.639 243.011 242.627 241.877 241.419 242.614 243.15 243.367 245.667 245.034 244.712 245.119 245.602 245.076 244.5 243.555 242.818 242.36 235.239 236.275 238.133 239.811 241.156 241.427 240.336 238.527 236.962 236.436 236.738 238.027 240.693 244.607 249.209 255.336 264.391 270.099 272.426 272.957 273.69 274.512 275.268 276.115 276.885 277.639 278.722 280.118 281.595 283.126 284.329 285.338 286.382 287.413 288.509 289.898 291.765 295.25 296.691 297.102 296.736 298.44 298.982 298.748 300.388 301.888 302.01 303.792 303.007 300.907 299.454 298.983 299.263 299.375 300.002 300.611 301.075 299.777 297.585 295.989 295.733 297.359 299.709 300.579 300.638 300.5 300.496 300.492 300.405 300.2 299.857 299.446 299.048 298.711 298.554 298.463 298.245 297.856 297.28 296.419 295.351 294.242 293.091 292.02 291.188 290.455 289.418 287.795 285.578 283.177 280.913 278.754 275.934 274.088 270.002 266.196 262.941 258.182 254.362 252.554 252.272 251.762 251.589 253.171 253.534 253.388 251.812 248.613 245.879 244.532 243.223 243.299 242.838 242.148 241.801 243.099 243.775 243.634 245.878 245.237 244.811 245.145 245.628 245.103 244.512 243.557 242.821 242.36 235.329 236.502 238.388 240.182 241.683 242.078 241.036 239.297 237.629 236.986 237.113 238.545 241.273 245.324 250.089 256.641 265.479 270.915 272.666 272.978 273.628 274.431 275.151 275.983 276.797 277.636 278.804 280.313 281.91 283.481 284.647 285.641 286.742 287.867 289.049 290.406 292.261 295.187 296.7 296.663 296.699 297.919 298.235 298.404 299.006 299.949 301.885 303.316 302.698 300.323 298.632 298.447 298.764 299.125 300.056 300.53 300.982 299.581 297.208 295.497 295.695 298.384 300.171 300.713 300.636 300.506 300.52 300.536 300.427 300.165 299.806 299.406 298.998 298.668 298.519 298.394 298.177 297.854 297.323 296.463 295.38 294.286 293.184 292.154 291.31 290.556 289.542 288.108 286.396 284.537 282.463 280.063 277.508 274.556 270.86 265.982 263.301 259.962 257.371 255.661 254.524 253.573 253.141 253.885 254.008 254.609 252.911 248.777 245.445 243.455 243.172 243.523 243.233 242.649 242.393 243.644 244.93 244.303 247.048 245.473 244.909 245.164 245.646 245.137 244.578 243.573 242.819 242.359 235.327 236.608 238.688 240.59 242.214 242.768 241.784 240.061 238.514 237.6 237.554 239.039 241.962 246.028 251.092 258.107 267.146 271.641 272.855 273.005 273.565 274.308 275.007 275.863 276.767 277.71 278.963 280.581 282.243 283.776 284.939 286.023 287.279 288.501 289.622 290.789 292.263 294.218 295.139 296.24 296.482 297.379 297.897 297.868 298.248 298.142 300.253 301.731 300.691 299.026 298.157 297.721 298.425 299.604 300.677 301.087 301.02 299.865 297.154 295.503 296.325 299.433 300.586 300.819 300.648 300.523 300.554 300.595 300.451 300.135 299.763 299.364 298.962 298.649 298.481 298.318 298.122 297.84 297.326 296.501 295.439 294.32 293.218 292.249 291.401 290.592 289.59 288.278 286.82 285.244 283.342 280.964 278.331 275.267 271.674 267.085 263.284 260.227 257.905 256.264 255.102 254.63 254.303 254.653 254.754 255.432 253.832 249.029 245.238 243.214 243.155 243.735 243.605 243.04 242.923 244.398 245.0 244.689 247.65 245.683 244.994 245.174 245.642 245.118 244.581 243.582 242.793 242.359 235.392 236.726 238.91 240.992 242.762 243.487 242.596 240.946 239.363 238.281 238.077 239.523 242.675 246.712 252.128 260.55 268.362 272.306 273.0 273.047 273.54 274.202 274.914 275.836 276.856 277.923 279.304 280.988 282.589 284.032 285.215 286.475 287.811 288.768 290.156 291.102 291.709 292.117 293.727 295.009 295.958 296.941 297.911 297.896 297.363 297.003 298.086 299.029 299.322 298.078 297.955 298.822 299.91 300.492 300.804 300.833 300.475 299.261 296.944 296.417 298.818 300.261 300.82 300.792 300.648 300.553 300.592 300.638 300.461 300.123 299.749 299.326 298.922 298.627 298.447 298.272 298.115 297.834 297.289 296.509 295.515 294.394 293.297 292.374 291.499 290.611 289.584 288.329 286.919 285.371 283.539 281.297 278.833 275.909 272.042 267.488 263.201 260.049 257.809 256.266 255.509 255.426 255.206 255.454 255.523 255.864 254.267 249.496 245.65 243.585 243.568 244.27 243.826 243.254 243.656 245.056 245.256 245.16 247.801 245.809 245.05 245.177 245.626 245.109 244.613 243.582 242.771 242.353 235.426 236.959 239.212 241.407 243.337 244.223 243.49 241.854 240.265 239.054 238.728 240.117 243.285 247.382 253.153 262.964 269.828 272.777 273.101 273.128 273.593 274.214 274.98 275.958 277.048 278.243 279.744 281.385 282.867 284.19 285.324 286.722 288.286 289.464 290.641 291.468 292.091 291.623 292.642 293.766 295.444 296.702 297.143 297.472 296.711 296.495 296.744 298.104 298.32 298.231 299.248 299.804 300.332 300.737 300.824 300.594 300.063 298.331 298.296 298.153 299.926 300.647 300.689 300.611 300.613 300.611 300.66 300.652 300.415 300.084 299.732 299.305 298.877 298.57 298.382 298.218 298.077 297.792 297.232 296.448 295.47 294.394 293.359 292.472 291.605 290.718 289.665 288.389 286.955 285.35 283.5 281.357 279.074 276.298 272.538 267.6 263.039 259.988 258.416 257.315 256.802 256.474 256.081 256.168 256.162 256.09 254.489 249.92 246.199 243.991 244.043 244.86 244.557 243.731 244.385 246.109 246.057 245.672 247.644 245.831 245.102 245.192 245.606 245.125 244.612 243.544 242.759 242.307 235.472 237.018 239.46 241.847 243.918 244.984 244.377 242.801 241.215 239.853 239.568 240.684 243.824 248.001 254.246 264.925 270.836 273.113 273.187 273.243 273.694 274.32 275.145 276.125 277.266 278.582 280.152 281.7 283.062 284.252 285.325 286.748 288.442 289.63 290.875 291.796 292.526 291.804 292.196 293.493 294.224 294.831 295.595 296.308 296.248 296.078 296.183 297.465 298.201 299.072 299.749 300.138 300.488 300.794 300.848 300.636 299.868 299.409 299.607 299.215 300.452 300.629 300.424 300.387 300.506 300.597 300.682 300.642 300.367 300.042 299.7 299.284 298.849 298.521 298.323 298.163 298.002 297.724 297.21 296.435 295.437 294.387 293.395 292.499 291.645 290.831 289.791 288.477 287.018 285.379 283.508 281.431 279.221 276.46 272.807 268.088 263.622 260.857 259.64 259.004 258.473 257.826 257.16 257.137 257.019 256.188 254.535 250.36 246.654 244.312 244.283 245.231 244.914 244.212 245.161 246.761 246.721 246.19 247.384 245.758 245.137 245.205 245.563 245.085 244.616 243.534 242.704 242.269 235.508 237.24 239.732 242.258 244.521 245.734 245.349 243.826 242.232 240.944 240.317 241.264 244.255 248.603 255.984 265.561 271.59 273.342 273.271 273.387 273.834 274.484 275.334 276.286 277.474 278.894 280.476 281.913 283.152 284.258 285.303 286.642 288.252 289.649 290.923 292.103 293.003 293.476 293.405 293.084 292.92 293.268 293.818 294.872 295.123 295.394 296.142 297.278 298.691 299.493 299.932 300.181 300.444 300.759 300.909 300.839 300.548 300.412 300.247 299.659 300.475 300.364 300.162 300.185 300.349 300.515 300.651 300.615 300.345 300.021 299.667 299.26 298.832 298.484 298.281 298.136 297.943 297.647 297.192 296.454 295.445 294.42 293.451 292.522 291.659 290.924 289.922 288.583 287.109 285.441 283.546 281.517 279.331 276.525 272.909 268.788 264.979 262.508 261.477 261.166 260.682 259.639 258.392 258.198 257.746 256.289 254.39 250.744 247.208 244.584 244.301 245.072 244.971 244.641 245.651 247.751 247.305 246.962 247.172 245.652 245.162 245.21 245.404 245.006 244.588 243.614 242.651 242.249 235.598 237.407 240.037 242.667 245.201 246.55 246.3 244.912 243.381 242.04 241.134 241.889 244.723 249.169 257.405 266.802 272.189 273.481 273.374 273.583 274.03 274.694 275.524 276.437 277.664 279.158 280.699 282.023 283.171 284.277 285.343 286.568 287.977 289.411 290.828 292.126 293.248 294.0 294.295 294.318 293.736 292.586 292.723 293.44 294.564 295.232 296.924 298.376 299.125 299.591 299.868 300.051 300.348 300.727 300.962 300.971 300.854 300.696 300.528 300.34 299.89 300.075 300.005 300.07 300.232 300.454 300.621 300.58 300.333 300.023 299.65 299.239 298.818 298.444 298.226 298.116 297.909 297.555 297.103 296.401 295.423 294.445 293.512 292.583 291.711 291.01 290.047 288.722 287.26 285.565 283.631 281.626 279.42 276.522 272.93 269.407 266.487 264.509 263.738 263.562 263.016 261.479 259.647 259.143 258.321 256.354 254.2 251.147 247.755 244.706 244.289 245.033 244.822 244.859 246.282 248.229 247.664 247.423 247.058 245.585 245.171 245.18 245.308 244.915 244.559 243.671 242.622 242.235 235.663 237.523 240.292 243.089 245.809 247.327 247.322 246.065 244.541 243.122 242.11 242.513 245.172 249.742 258.456 267.681 272.536 273.532 273.486 273.79 274.23 274.884 275.692 276.577 277.826 279.341 280.829 282.082 283.213 284.348 285.426 286.61 287.877 289.173 290.535 291.745 292.893 293.918 294.535 294.8 294.741 294.208 294.152 294.694 295.57 296.453 297.693 298.591 299.154 299.525 299.789 300.039 300.371 300.712 300.931 300.983 300.899 300.769 300.638 300.48 300.275 300.069 300.002 300.041 300.183 300.421 300.59 300.528 300.28 299.985 299.619 299.214 298.813 298.435 298.182 298.059 297.85 297.465 296.984 296.298 295.351 294.38 293.453 292.591 291.753 291.044 290.126 288.872 287.475 285.799 283.859 281.831 279.517 276.438 272.949 269.988 267.811 266.412 265.81 265.574 264.782 262.82 260.559 259.72 258.7 256.259 254.033 251.851 248.577 245.117 244.222 245.079 244.935 245.294 247.192 248.083 247.794 247.455 246.885 245.538 245.16 245.149 245.22 244.862 244.531 243.646 242.614 242.219 235.734 237.631 240.638 243.57 246.418 248.134 248.263 247.188 245.78 244.303 243.147 243.182 245.548 250.334 260.269 268.319 272.745 273.564 273.613 273.996 274.422 275.066 275.864 276.735 278.005 279.52 280.958 282.173 283.31 284.426 285.469 286.642 287.876 289.055 290.265 291.31 292.345 293.52 294.409 294.958 295.211 295.309 295.505 295.958 296.576 297.253 297.919 298.488 299.024 299.455 299.785 300.1 300.422 300.688 300.878 301.021 301.026 300.877 300.688 300.531 300.368 300.229 300.109 300.064 300.124 300.332 300.523 300.481 300.232 299.938 299.589 299.19 298.802 298.443 298.168 297.997 297.783 297.4 296.903 296.234 295.319 294.325 293.358 292.546 291.741 291.01 290.135 288.96 287.61 285.975 284.064 281.988 279.541 276.335 273.041 270.517 268.856 267.893 267.397 266.925 265.734 263.366 260.859 259.758 258.752 256.507 254.847 252.876 249.252 245.584 244.501 244.995 245.151 245.472 247.084 247.563 247.823 247.396 246.612 245.547 245.146 245.121 245.145 244.88 244.482 243.602 242.605 242.198 235.771 237.847 240.865 243.982 247.043 248.911 249.192 248.297 247.053 245.633 244.281 243.938 245.975 250.905 261.975 268.95 272.891 273.596 273.754 274.192 274.602 275.249 276.043 276.915 278.23 279.736 281.115 282.31 283.448 284.499 285.466 286.62 287.868 288.992 290.064 290.97 291.898 293.058 294.06 294.8 295.292 295.605 295.883 296.243 296.709 297.253 297.801 298.334 298.95 299.438 299.815 300.167 300.475 300.688 300.861 301.061 301.117 300.925 300.662 300.524 300.503 300.458 300.288 300.128 300.07 300.229 300.454 300.455 300.199 299.898 299.578 299.183 298.776 298.427 298.154 297.949 297.729 297.364 296.843 296.171 295.29 294.284 293.28 292.499 291.714 290.95 290.116 289.027 287.705 286.097 284.212 282.071 279.493 276.288 273.268 271.074 269.664 268.843 268.269 267.429 265.68 262.971 260.192 257.643 257.747 256.939 255.512 254.105 250.047 246.308 244.909 245.199 245.234 245.47 247.149 248.361 248.001 247.553 246.663 245.627 245.175 245.13 245.079 244.808 244.398 243.542 242.58 242.181 235.774 237.962 241.197 244.46 247.719 249.686 250.087 249.414 248.36 247.06 245.621 244.821 246.458 251.51 263.033 269.577 273.052 273.665 273.927 274.391 274.789 275.451 276.231 277.129 278.521 280.014 281.319 282.491 283.599 284.566 285.464 286.584 287.818 288.934 289.974 290.84 291.706 292.691 293.578 294.375 295.033 295.465 295.789 296.149 296.624 297.191 297.798 298.405 298.967 299.387 299.769 300.175 300.521 300.727 300.895 301.06 301.075 300.878 300.631 300.559 300.631 300.615 300.376 300.111 299.988 300.14 300.399 300.431 300.153 299.834 299.56 299.19 298.74 298.369 298.117 297.912 297.694 297.348 296.799 296.092 295.227 294.23 293.219 292.464 291.702 290.896 290.083 289.083 287.802 286.21 284.324 282.103 279.41 276.314 273.603 271.657 270.359 269.564 268.896 267.762 265.534 261.655 258.583 256.4 255.575 256.443 256.365 254.859 251.19 247.397 245.867 245.575 245.315 245.46 247.789 248.392 248.261 247.904 246.897 245.807 245.253 245.114 245.029 244.687 244.311 243.493 242.547 242.168 235.83 238.042 241.386 244.889 248.295 250.462 250.926 250.482 249.661 248.555 247.034 245.888 247.152 252.333 263.95 270.156 273.228 273.759 274.099 274.565 274.957 275.622 276.378 277.317 278.79 280.277 281.523 282.645 283.693 284.629 285.538 286.627 287.809 288.941 290.001 290.864 291.675 292.48 293.21 294.016 294.777 295.259 295.623 296.096 296.686 297.302 297.906 298.453 298.894 299.241 299.657 300.145 300.525 300.72 300.879 301.022 301.026 300.899 300.736 300.661 300.679 300.599 300.308 299.991 299.875 300.064 300.341 300.396 300.126 299.78 299.495 299.143 298.697 298.321 298.089 297.881 297.645 297.315 296.799 296.096 295.224 294.218 293.192 292.426 291.685 290.857 290.014 289.076 287.899 286.361 284.444 282.116 279.329 276.419 273.972 272.191 270.927 270.111 269.42 268.366 266.226 263.081 259.166 256.241 255.069 256.248 256.947 255.532 252.21 248.51 247.016 246.177 245.44 245.74 248.316 248.198 248.439 248.274 247.166 245.993 245.337 245.12 244.961 244.643 244.262 243.437 242.522 242.158 235.913 238.204 241.679 245.288 248.886 251.192 251.707 251.427 250.981 250.141 248.564 247.119 248.04 254.619 264.56 270.742 273.399 273.857 274.258 274.727 275.117 275.78 276.513 277.507 279.05 280.516 281.71 282.761 283.736 284.685 285.647 286.725 287.88 289.012 290.051 290.874 291.635 292.352 293.002 293.802 294.599 295.108 295.538 296.1 296.723 297.32 297.88 298.393 298.808 299.142 299.59 300.134 300.522 300.68 300.82 300.986 301.063 301.019 300.879 300.749 300.719 300.612 300.323 299.96 299.816 300.007 300.287 300.367 300.133 299.777 299.438 299.068 298.633 298.263 298.045 297.84 297.588 297.266 296.793 296.107 295.231 294.236 293.198 292.392 291.645 290.833 289.939 289.001 287.909 286.432 284.477 282.083 279.266 276.501 274.249 272.626 271.401 270.565 269.94 269.202 267.763 264.974 261.575 257.058 255.848 256.491 257.216 256.135 252.725 249.552 248.001 246.798 245.887 246.205 248.467 248.126 248.531 248.531 247.391 246.201 245.44 245.129 244.916 244.611 244.208 243.38 242.518 242.148 235.994 238.447 241.981 245.772 249.44 251.901 252.464 252.307 252.244 251.655 250.204 248.543 249.125 256.745 265.438 271.305 273.547 273.944 274.406 274.879 275.272 275.935 276.671 277.747 279.331 280.749 281.876 282.843 283.755 284.735 285.753 286.84 288.011 289.14 290.11 290.855 291.585 292.289 292.925 293.7 294.474 294.999 295.477 296.065 296.692 297.265 297.787 298.309 298.77 299.122 299.537 300.086 300.497 300.647 300.757 300.946 301.126 301.161 300.997 300.816 300.765 300.664 300.382 299.983 299.793 299.963 300.238 300.331 300.126 299.786 299.407 299.016 298.578 298.187 297.966 297.787 297.545 297.226 296.766 296.06 295.17 294.216 293.2 292.349 291.579 290.799 289.881 288.921 287.886 286.464 284.469 282.047 279.253 276.547 274.416 272.904 271.751 270.948 270.436 270.098 269.388 267.581 264.258 260.851 257.632 257.675 257.302 256.147 253.05 250.469 248.675 247.386 246.484 247.022 248.493 248.211 248.586 248.639 247.547 246.295 245.541 245.171 244.907 244.575 244.145 243.317 242.523 242.137 236.021 238.567 242.22 246.204 250.024 252.623 253.192 253.136 254.455 256.013 253.26 250.199 250.492 258.05 266.536 271.849 273.657 274.003 274.536 275.027 275.446 276.117 276.908 278.092 279.669 280.988 282.011 282.91 283.789 284.78 285.818 286.92 288.134 289.279 290.184 290.848 291.536 292.257 292.93 293.691 294.406 294.941 295.451 296.015 296.644 297.223 297.712 298.235 298.765 299.118 299.413 299.89 300.371 300.599 300.695 300.881 301.132 301.218 301.047 300.868 300.81 300.67 300.365 299.971 299.773 299.939 300.217 300.289 300.078 299.759 299.387 299.003 298.567 298.131 297.867 297.714 297.507 297.192 296.723 295.972 295.046 294.137 293.168 292.281 291.478 290.723 289.816 288.849 287.849 286.471 284.471 282.064 279.327 276.651 274.598 273.162 272.078 271.291 270.811 270.618 270.496 269.761 267.483 264.124 261.626 260.152 258.163 255.444 253.49 251.276 249.17 247.877 247.018 247.34 248.514 248.372 248.612 248.559 247.579 246.275 245.654 245.205 244.92 244.461 244.055 243.248 242.525 242.128 236.038 238.659 242.508 246.65 250.579 253.274 253.869 253.802 256.527 257.538 255.858 252.244 252.181 259.515 267.532 272.25 273.689 274.024 274.635 275.158 275.614 276.304 277.171 278.441 279.973 281.159 282.074 282.954 283.839 284.827 285.852 286.896 288.064 289.21 290.175 290.888 291.527 292.193 292.912 293.715 294.399 294.925 295.451 295.999 296.627 297.226 297.688 298.157 298.695 299.062 299.324 299.716 300.185 300.473 300.623 300.823 301.062 301.147 301.005 300.881 300.841 300.651 300.343 299.99 299.803 299.954 300.222 300.281 300.065 299.744 299.345 298.958 298.558 298.124 297.814 297.636 297.419 297.095 296.655 295.943 295.002 294.069 293.107 292.202 291.367 290.606 289.703 288.735 287.755 286.416 284.492 282.168 279.511 276.858 274.823 273.411 272.381 271.612 271.133 270.959 271.057 270.875 269.704 267.512 264.813 262.107 259.137 255.636 253.667 251.792 249.852 248.289 247.586 248.22 248.627 248.618 248.647 248.422 247.462 246.202 245.73 245.231 244.907 244.403 243.975 243.184 242.511 242.12 236.071 238.769 242.771 247.064 251.135 253.768 254.376 254.357 257.573 258.917 257.499 254.476 254.14 261.997 268.443 272.537 273.679 274.037 274.722 275.28 275.772 276.482 277.412 278.731 280.201 281.271 282.112 282.983 283.883 284.921 285.938 286.851 287.859 288.943 290.039 290.927 291.581 292.171 292.916 293.753 294.389 294.875 295.406 295.952 296.576 297.193 297.63 298.026 298.58 298.977 299.287 299.623 299.999 300.311 300.558 300.789 300.985 301.061 300.96 300.873 300.845 300.64 300.34 300.005 299.813 299.947 300.206 300.261 300.061 299.75 299.32 298.915 298.538 298.115 297.776 297.574 297.34 296.994 296.58 295.924 294.987 294.003 293.013 292.117 291.289 290.524 289.618 288.623 287.593 286.248 284.438 282.274 279.751 277.128 275.073 273.644 272.643 271.893 271.425 271.259 271.43 271.482 270.878 269.603 267.67 264.261 259.932 255.876 253.935 252.144 250.256 248.598 247.807 248.507 248.647 248.828 248.732 248.322 247.177 246.076 245.714 245.2 244.868 244.411 243.876 243.124 242.489 242.111 236.184 238.91 243.097 247.511 251.701 254.234 254.73 254.733 257.752 260.231 259.382 256.28 256.242 263.855 269.307 272.734 273.649 274.061 274.811 275.392 275.918 276.646 277.615 278.946 280.351 281.347 282.159 283.011 283.901 285.019 285.99 286.18 287.636 288.594 289.823 290.945 291.677 292.209 292.959 293.812 294.372 294.805 295.339 295.889 296.504 297.118 297.537 297.884 298.414 298.876 299.258 299.566 299.843 300.168 300.521 300.767 300.92 301.013 300.957 300.876 300.828 300.617 300.301 299.947 299.762 299.915 300.18 300.227 300.037 299.753 299.323 298.914 298.54 298.114 297.747 297.527 297.294 296.943 296.527 295.889 294.953 293.921 292.886 291.994 291.186 290.431 289.543 288.536 287.428 286.036 284.335 282.329 279.927 277.312 275.284 273.856 272.87 272.172 271.747 271.615 271.798 271.897 271.513 270.687 269.177 265.916 260.826 256.101 254.181 252.35 250.543 248.841 248.26 248.655 248.547 248.887 248.74 248.229 246.952 245.923 245.562 245.088 244.809 244.368 243.771 243.076 242.471 242.097 236.183 239.026 243.241 247.884 252.198 254.632 255.05 255.06 258.138 261.542 261.615 258.601 258.527 265.536 270.174 272.877 273.621 274.117 274.913 275.498 276.058 276.803 277.775 279.068 280.415 281.394 282.241 283.077 283.921 284.995 286.031 285.867 287.24 288.411 289.663 290.937 291.747 292.296 293.057 293.879 294.36 294.771 295.312 295.852 296.449 297.032 297.429 297.811 298.311 298.801 299.226 299.545 299.78 300.131 300.531 300.727 300.864 301.009 300.99 300.895 300.842 300.626 300.251 299.838 299.674 299.876 300.175 300.219 300.022 299.751 299.342 298.939 298.563 298.146 297.751 297.482 297.25 296.928 296.503 295.842 294.905 293.842 292.747 291.823 291.017 290.278 289.427 288.446 287.28 285.836 284.225 282.366 280.056 277.532 275.522 274.079 273.081 272.445 272.135 272.137 272.291 272.275 271.912 271.258 269.996 266.806 261.495 256.495 254.227 252.179 250.744 249.182 248.632 248.544 248.401 248.889 248.683 248.177 246.89 245.802 245.369 244.942 244.757 244.285 243.697 243.04 242.452 242.082 236.204 239.148 243.525 248.291 252.648 254.999 255.273 255.284 258.646 262.507 263.444 261.574 262.124 267.024 270.859 272.967 273.62 274.2 275.0 275.574 276.164 276.921 277.86 279.084 280.384 281.391 282.263 283.098 283.958 285.01 286.162 286.527 286.972 288.72 289.899 291.02 291.802 292.474 293.279 293.985 294.381 294.811 295.343 295.814 296.376 296.953 297.355 297.766 298.3 298.814 299.259 299.595 299.834 300.188 300.551 300.706 300.842 300.994 300.958 300.897 300.899 300.684 300.224 299.74 299.57 299.788 300.12 300.208 300.035 299.759 299.343 298.917 298.531 298.166 297.794 297.456 297.173 296.877 296.462 295.784 294.855 293.776 292.614 291.635 290.792 290.025 289.199 288.286 287.13 285.671 284.129 282.385 280.156 277.773 275.772 274.307 273.309 272.758 272.556 272.63 272.777 272.684 272.2 271.562 270.46 267.379 262.108 257.008 254.328 252.276 250.955 249.38 248.766 248.449 248.171 248.8 248.548 248.141 246.916 245.77 245.149 244.736 244.711 244.21 243.624 243.0 242.438 242.069 236.304 239.293 243.794 248.66 253.067 255.305 255.454 255.512 259.05 263.205 264.653 264.375 265.172 268.325 271.389 273.029 273.64 274.283 275.07 275.639 276.255 277.022 277.909 279.053 280.298 281.322 282.2 283.041 283.957 285.096 286.296 287.434 287.827 288.604 290.232 291.254 291.992 292.832 293.664 294.188 294.445 294.846 295.332 295.762 296.316 296.908 297.333 297.773 298.332 298.851 299.289 299.635 299.903 300.249 300.559 300.711 300.854 300.956 300.896 300.906 300.955 300.7 300.147 299.614 299.448 299.687 300.049 300.173 300.02 299.748 299.338 298.896 298.492 298.153 297.807 297.433 297.115 296.833 296.423 295.737 294.797 293.677 292.461 291.462 290.623 289.834 289.007 288.144 287.022 285.565 284.039 282.334 280.193 277.991 276.001 274.505 273.539 273.093 272.987 273.062 273.107 272.941 272.43 271.747 270.705 267.916 262.529 258.109 254.571 252.428 251.195 249.395 248.631 248.684 247.907 248.568 248.408 248.047 246.945 245.785 244.947 244.541 244.616 244.228 243.557 242.948 242.425 242.057 236.409 239.406 244.033 249.042 253.433 255.57 255.557 255.674 260.366 263.66 265.468 265.942 266.925 269.424 271.789 273.065 273.673 274.362 275.128 275.701 276.344 277.107 277.935 278.997 280.166 281.177 282.064 282.922 283.866 285.116 286.358 287.714 288.911 288.958 290.148 291.592 292.341 293.32 294.127 294.428 294.513 294.833 295.272 295.735 296.329 296.925 297.358 297.814 298.367 298.873 299.298 299.667 299.982 300.307 300.559 300.72 300.869 300.911 300.859 300.951 301.008 300.683 300.058 299.494 299.332 299.615 300.014 300.15 299.993 299.718 299.323 298.891 298.473 298.121 297.77 297.385 297.059 296.787 296.381 295.707 294.761 293.578 292.3 291.286 290.47 289.674 288.853 288.036 286.952 285.517 283.978 282.238 280.161 278.123 276.173 274.681 273.792 273.424 273.379 273.408 273.305 273.065 272.564 271.876 270.836 268.497 263.583 258.768 255.127 252.513 251.351 249.565 248.498 248.568 247.453 248.262 248.296 247.959 246.977 245.898 244.894 244.365 244.487 244.207 243.484 242.899 242.404 242.044 236.414 239.495 244.258 249.504 253.775 255.741 255.556 255.709 260.713 263.879 265.971 266.911 268.12 270.292 272.078 273.079 273.707 274.441 275.174 275.769 276.438 277.17 277.926 278.897 279.968 280.926 281.825 282.719 283.671 284.976 286.332 287.757 289.278 290.365 290.772 291.033 292.412 292.841 293.862 294.519 294.507 294.754 295.194 295.753 296.394 296.949 297.384 297.865 298.39 298.869 299.315 299.739 300.091 300.365 300.534 300.689 300.831 300.831 300.837 300.977 300.99 300.61 299.985 299.39 299.183 299.511 299.975 300.145 300.0 299.705 299.301 298.877 298.463 298.095 297.721 297.314 296.978 296.706 296.307 295.677 294.755 293.51 292.17 291.12 290.302 289.502 288.705 287.922 286.875 285.496 283.947 282.144 280.153 278.25 276.354 274.865 274.053 273.74 273.736 273.681 273.438 273.139 272.686 272.012 271.064 269.088 264.659 259.242 256.017 253.058 251.697 249.744 248.373 248.409 246.948 247.939 248.308 247.929 247.023 246.044 244.846 244.208 244.357 244.139 243.423 242.842 242.38 242.032 236.388 239.613 244.491 249.849 254.084 255.884 255.527 255.67 260.766 263.904 266.164 267.377 268.81 270.752 272.202 273.069 273.743 274.498 275.194 275.825 276.501 277.187 277.877 278.758 279.738 280.642 281.558 282.491 283.457 284.738 286.142 287.574 289.156 290.485 290.996 290.141 290.456 293.483 294.174 294.301 294.411 294.69 295.155 295.77 296.375 296.876 297.357 297.891 298.398 298.853 299.318 299.795 300.151 300.352 300.476 300.65 300.78 300.763 300.796 300.901 300.823 300.426 299.848 299.225 298.977 299.338 299.87 300.104 300.017 299.745 299.323 298.874 298.448 298.084 297.72 297.291 296.914 296.631 296.233 295.628 294.712 293.432 292.077 290.989 290.116 289.283 288.511 287.752 286.754 285.467 283.931 282.073 280.185 278.374 276.56 275.125 274.349 274.015 273.994 273.936 273.617 273.262 272.853 272.203 271.329 269.634 265.61 260.064 257.069 253.767 252.188 250.083 248.444 248.262 246.787 247.663 248.35 247.995 247.149 246.108 244.822 244.152 244.31 244.128 243.314 242.788 242.356 242.019 236.432 239.75 244.697 250.174 254.376 255.995 255.423 255.528 260.776 263.846 266.149 267.512 269.164 270.954 272.228 273.058 273.776 274.528 275.194 275.865 276.533 277.175 277.815 278.619 279.516 280.376 281.308 282.271 283.245 284.504 285.927 287.38 288.954 290.372 291.512 291.77 291.43 293.545 293.824 294.026 294.291 294.637 295.134 295.754 296.303 296.791 297.337 297.919 298.409 298.857 299.273 299.636 300.171 300.307 300.412 300.625 300.787 300.778 300.803 300.838 300.668 300.264 299.699 299.046 298.808 299.222 299.799 300.067 300.013 299.764 299.366 298.907 298.446 298.063 297.71 297.267 296.86 296.573 296.195 295.595 294.651 293.34 291.993 290.895 289.993 289.125 288.346 287.583 286.611 285.42 283.923 282.048 280.256 278.511 276.777 275.454 274.689 274.302 274.217 274.145 273.866 273.522 273.082 272.448 271.602 269.992 266.347 260.63 257.889 254.524 252.847 250.418 248.684 248.174 246.941 247.662 248.51 248.11 247.2 246.167 244.885 244.179 244.282 244.077 243.178 242.729 242.329 242.007 236.513 239.857 244.913 250.497 254.646 256.05 255.314 255.558 260.736 263.724 265.993 267.437 269.261 270.965 272.188 273.053 273.789 274.518 275.183 275.888 276.539 277.15 277.763 278.507 279.333 280.155 281.092 282.059 283.027 284.302 285.778 287.285 288.842 290.242 291.451 292.214 292.642 293.053 293.519 293.809 294.164 294.559 295.095 295.699 296.223 296.734 297.332 297.932 298.414 298.894 299.334 299.748 300.181 300.262 300.34 300.589 300.807 300.832 300.838 300.813 300.589 300.193 299.596 298.89 298.673 299.136 299.744 300.042 299.993 299.743 299.386 298.944 298.458 298.046 297.702 297.238 296.79 296.491 296.143 295.565 294.611 293.278 291.932 290.814 289.891 288.999 288.214 287.448 286.497 285.386 283.945 282.105 280.42 278.739 277.091 275.861 275.085 274.623 274.453 274.349 274.108 273.802 273.363 272.712 271.856 270.232 266.693 261.212 258.411 255.811 253.453 250.862 249.05 247.428 247.481 247.91 248.731 248.17 247.19 246.282 244.979 244.204 244.274 243.999 243.026 242.663 242.3 241.995 226.429 232.094 239.2 245.892 249.428 247.571 243.85 243.501 250.093 252.488 254.605 255.914 257.32 259.879 263.254 266.824 269.436 271.138 272.424 273.344 274.093 274.936 275.776 276.625 277.542 278.433 279.372 280.41 281.628 283.313 285.161 286.806 288.275 289.575 290.731 291.502 291.932 292.214 292.522 292.959 293.474 293.99 294.541 295.107 295.701 296.282 296.896 297.561 298.198 298.814 299.462 299.908 300.146 300.344 300.594 300.846 301.04 301.008 300.837 300.814 300.766 300.275 299.452 298.679 298.357 298.832 299.703 300.119 299.928 299.575 299.288 298.913 298.464 298.005 297.595 297.145 296.675 296.313 295.977 295.44 294.51 293.158 291.708 290.462 289.556 288.674 287.797 286.85 285.716 284.567 283.189 281.53 280.256 279.043 277.745 276.811 276.241 275.764 275.31 274.893 274.457 274.129 273.664 272.912 272.054 270.515 266.913 261.358 256.619 253.773 251.434 248.609 247.952 246.55 246.495 245.054 244.975 245.719 246.559 246.83 246.084 245.327 244.756 244.391 243.628 242.395 241.645 240.784 226.51 232.302 239.468 246.187 249.524 247.297 243.566 243.378 250.013 252.555 255.013 256.6 258.22 260.537 263.576 267.01 269.506 271.173 272.483 273.388 274.116 274.957 275.801 276.651 277.586 278.492 279.411 280.39 281.56 283.312 285.308 287.02 288.356 289.52 290.616 291.354 291.739 291.969 292.338 292.898 293.455 293.94 294.444 294.993 295.591 296.204 296.833 297.463 298.076 298.719 299.41 299.889 300.131 300.372 300.678 300.906 301.04 301.023 300.911 300.9 300.816 300.265 299.412 298.662 298.348 298.743 299.583 300.099 299.973 299.591 299.283 298.917 298.478 298.023 297.608 297.144 296.659 296.27 295.913 295.432 294.59 293.283 291.85 290.56 289.582 288.606 287.706 286.8 285.705 284.555 283.152 281.535 280.303 279.158 277.952 277.086 276.502 276.01 275.59 275.139 274.677 274.32 273.845 273.098 272.22 270.481 266.856 261.776 257.483 254.788 252.435 249.207 248.039 246.477 247.005 245.335 245.295 245.975 246.662 246.907 246.047 245.317 244.716 244.371 243.583 242.317 241.61 240.756 226.638 232.46 239.744 246.444 249.549 247.009 243.364 243.473 249.754 252.802 255.46 257.199 258.944 261.064 263.852 267.161 269.576 271.207 272.527 273.419 274.142 274.991 275.825 276.659 277.619 278.578 279.515 280.447 281.578 283.391 285.478 287.175 288.393 289.44 290.454 291.119 291.466 291.713 292.172 292.827 293.406 293.874 294.361 294.9 295.5 296.145 296.785 297.378 297.976 298.64 299.356 299.854 300.107 300.37 300.673 300.842 300.943 300.992 300.961 300.972 300.877 300.274 299.384 298.659 298.373 298.725 299.527 300.073 299.984 299.6 299.289 298.928 298.49 298.023 297.589 297.134 296.656 296.242 295.868 295.421 294.632 293.373 291.971 290.648 289.584 288.537 287.65 286.764 285.695 284.527 283.152 281.651 280.407 279.272 278.179 277.359 276.752 276.232 275.821 275.379 274.88 274.467 273.976 273.23 272.268 270.322 266.52 261.764 258.203 255.687 253.557 249.804 248.28 246.61 246.896 245.769 245.741 246.269 246.739 246.96 245.992 245.311 244.689 244.377 243.529 242.239 241.564 240.727 226.6 232.578 239.968 246.66 249.552 246.744 243.233 243.651 249.37 253.191 255.939 257.658 259.492 261.463 264.087 267.293 269.646 271.239 272.551 273.439 274.178 275.039 275.85 276.651 277.624 278.652 279.648 280.569 281.691 283.546 285.649 287.295 288.432 289.383 290.307 290.909 291.259 291.564 292.067 292.744 293.326 293.801 294.304 294.849 295.453 296.096 296.71 297.27 297.888 298.59 299.315 299.827 300.1 300.361 300.616 300.731 300.852 300.985 301.0 300.994 300.883 300.267 299.378 298.677 298.393 298.704 299.474 300.03 299.972 299.611 299.295 298.944 298.528 298.06 297.588 297.124 296.642 296.202 295.829 295.421 294.678 293.461 292.077 290.699 289.569 288.509 287.641 286.711 285.6 284.393 283.063 281.729 280.523 279.396 278.39 277.583 276.941 276.4 275.982 275.533 275.01 274.574 274.053 273.294 272.187 270.005 265.963 261.461 258.463 256.403 254.006 250.508 248.739 246.952 246.818 246.089 246.172 246.527 246.831 247.001 245.932 245.354 244.756 244.411 243.488 242.207 241.515 240.697 226.718 232.779 240.14 246.866 249.54 246.475 243.12 243.931 248.783 253.587 256.38 258.003 259.853 261.802 264.33 267.417 269.71 271.259 272.546 273.445 274.225 275.099 275.872 276.636 277.614 278.699 279.779 280.751 281.906 283.772 285.812 287.372 288.44 289.323 290.144 290.716 291.125 291.506 292.002 292.642 293.224 293.735 294.281 294.856 295.462 296.06 296.599 297.144 297.814 298.544 299.239 299.76 300.091 300.369 300.572 300.677 300.871 301.046 301.014 300.942 300.814 300.261 299.457 298.792 298.469 298.68 299.396 299.964 299.962 299.641 299.291 298.94 298.589 298.157 297.635 297.12 296.614 296.15 295.789 295.415 294.713 293.549 292.178 290.738 289.563 288.517 287.616 286.582 285.41 284.19 282.913 281.733 280.591 279.468 278.52 277.727 277.058 276.503 276.067 275.606 275.098 274.637 274.082 273.269 272.011 269.544 265.317 261.105 258.692 256.819 254.065 251.312 248.809 247.479 247.069 246.488 246.497 246.743 246.917 246.978 246.027 245.475 244.898 244.531 243.48 242.186 241.473 240.661 226.676 232.906 240.349 247.056 249.471 246.213 243.097 244.296 248.638 253.8 256.704 258.26 260.064 262.062 264.54 267.499 269.738 271.249 272.517 273.445 274.273 275.148 275.884 276.638 277.624 278.716 279.846 280.9 282.103 283.934 285.892 287.353 288.363 289.21 289.972 290.541 291.0 291.427 291.917 292.533 293.134 293.684 294.273 294.863 295.447 296.013 296.546 297.131 297.82 298.494 299.123 299.667 300.095 300.408 300.576 300.669 300.864 300.986 300.895 300.833 300.782 300.294 299.551 298.925 298.598 298.765 299.42 299.941 299.954 299.67 299.307 298.935 298.62 298.222 297.663 297.103 296.588 296.135 295.773 295.387 294.708 293.622 292.294 290.839 289.647 288.574 287.545 286.386 285.211 284.021 282.806 281.717 280.634 279.529 278.591 277.788 277.111 276.558 276.1 275.628 275.129 274.61 274.002 273.145 271.719 268.956 264.597 260.893 258.934 257.067 254.555 252.087 249.87 248.245 247.62 247.096 246.743 246.926 246.981 246.983 246.219 245.615 245.042 244.645 243.532 242.182 241.436 240.622 226.915 233.099 240.584 247.192 249.382 245.967 243.171 244.705 248.691 253.819 256.85 258.471 260.191 262.243 264.702 267.552 269.743 271.22 272.474 273.443 274.318 275.188 275.896 276.657 277.654 278.722 279.864 280.997 282.237 284.003 285.868 287.241 288.197 289.039 289.793 290.376 290.861 291.314 291.815 292.434 293.051 293.63 294.248 294.836 295.404 295.968 296.543 297.181 297.855 298.451 299.034 299.616 300.098 300.424 300.568 300.645 300.817 300.873 300.764 300.766 300.796 300.329 299.591 298.968 298.645 298.83 299.47 299.947 299.941 299.69 299.352 298.977 298.664 298.274 297.701 297.105 296.566 296.126 295.771 295.375 294.733 293.719 292.427 290.984 289.782 288.676 287.542 286.319 285.195 284.023 282.831 281.742 280.65 279.563 278.622 277.814 277.147 276.592 276.1 275.606 275.065 274.46 273.788 272.88 271.262 268.184 263.906 260.949 259.241 257.377 255.098 252.619 250.843 249.151 248.318 247.702 247.024 247.089 247.102 247.019 246.33 245.756 245.113 244.742 243.568 242.189 241.397 240.579 226.919 233.231 240.787 247.309 249.26 245.71 243.259 245.177 248.808 253.736 256.862 258.647 260.315 262.392 264.833 267.589 269.734 271.181 272.424 273.44 274.357 275.225 275.917 276.693 277.695 278.724 279.858 281.057 282.326 284.021 285.765 287.055 287.973 288.81 289.577 290.187 290.693 291.176 291.712 292.353 292.975 293.566 294.202 294.795 295.364 295.938 296.551 297.222 297.871 298.413 298.98 299.581 300.065 300.388 300.542 300.637 300.786 300.801 300.713 300.779 300.839 300.378 299.644 298.99 298.634 298.832 299.495 299.974 299.949 299.71 299.402 299.037 298.722 298.341 297.775 297.141 296.549 296.098 295.757 295.379 294.808 293.878 292.604 291.177 289.952 288.808 287.647 286.434 285.344 284.164 282.956 281.833 280.68 279.586 278.628 277.814 277.16 276.606 276.072 275.517 274.86 274.162 273.475 272.492 270.625 267.237 263.561 261.158 259.614 257.835 255.638 253.647 251.827 250.054 248.999 248.287 247.371 247.238 247.212 246.972 246.364 245.854 245.158 244.781 243.578 242.182 241.361 240.535 227.041 233.33 240.888 247.406 249.148 245.483 243.475 245.679 249.035 253.69 256.894 258.835 260.378 262.476 264.953 267.642 269.722 271.132 272.37 273.433 274.39 275.266 275.966 276.758 277.742 278.728 279.862 281.111 282.405 284.014 285.609 286.812 287.72 288.539 289.29 289.913 290.448 290.985 291.587 292.277 292.92 293.527 294.191 294.789 295.343 295.907 296.535 297.233 297.873 298.394 298.956 299.532 299.982 300.314 300.536 300.665 300.761 300.763 300.726 300.834 300.882 300.437 299.739 299.052 298.635 298.815 299.497 300.002 299.975 299.728 299.426 299.073 298.762 298.408 297.872 297.224 296.58 296.085 295.725 295.371 294.898 294.071 292.824 291.425 290.176 288.976 287.776 286.623 285.554 284.342 283.108 281.931 280.715 279.632 278.65 277.804 277.147 276.587 276.021 275.399 274.616 273.602 273.11 271.99 269.863 266.428 263.319 261.364 259.908 258.199 256.245 254.452 252.524 250.72 249.654 248.799 247.756 247.352 247.155 246.893 246.301 245.862 245.224 244.762 243.521 242.158 241.324 240.511 226.997 233.398 241.053 247.493 248.993 245.287 243.725 246.232 249.308 253.702 257.01 259.016 260.489 262.617 265.082 267.704 269.727 271.101 272.322 273.415 274.403 275.311 276.04 276.838 277.799 278.769 279.904 281.161 282.462 284.005 285.487 286.635 287.557 288.362 289.066 289.666 290.224 290.81 291.465 292.207 292.909 293.559 294.239 294.813 295.323 295.858 296.498 297.216 297.864 298.381 298.935 299.495 299.918 300.27 300.569 300.714 300.753 300.726 300.727 300.868 300.88 300.419 299.707 298.984 298.578 298.798 299.482 299.977 299.967 299.74 299.439 299.077 298.752 298.414 297.922 297.32 296.702 296.177 295.722 295.323 294.935 294.268 293.129 291.806 290.497 289.185 287.883 286.754 285.71 284.471 283.247 282.007 280.778 279.708 278.703 277.825 277.137 276.541 275.963 275.296 274.429 273.511 272.437 271.406 268.963 265.784 263.131 261.522 260.098 258.482 256.487 254.66 252.799 251.245 250.347 249.35 248.112 247.479 247.036 246.749 246.164 245.863 245.307 244.682 243.439 242.107 241.277 240.502 227.219 233.557 241.192 247.518 248.843 245.108 244.014 246.725 249.474 253.647 257.092 259.191 260.637 262.793 265.228 267.776 269.754 271.092 272.29 273.392 274.403 275.36 276.125 276.934 277.891 278.87 279.993 281.208 282.486 283.986 285.396 286.524 287.466 288.27 288.94 289.518 290.094 290.724 291.389 292.145 292.895 293.592 294.276 294.837 295.327 295.849 296.486 297.188 297.817 298.326 298.883 299.442 299.841 300.19 300.556 300.761 300.795 300.745 300.769 300.909 300.858 300.349 299.602 298.856 298.505 298.782 299.462 299.94 299.958 299.754 299.444 299.056 298.697 298.358 297.913 297.387 296.823 296.288 295.755 295.296 294.957 294.422 293.391 292.126 290.767 289.374 287.955 286.762 285.717 284.535 283.366 282.076 280.843 279.797 278.768 277.873 277.166 276.529 275.926 275.239 274.316 273.377 272.109 270.711 268.101 265.163 262.952 261.389 260.071 258.512 256.308 254.673 253.262 251.636 250.925 249.879 248.375 247.634 246.984 246.574 246.124 245.883 245.336 244.598 243.362 242.025 241.232 240.494 227.279 233.644 241.327 247.557 248.681 244.983 244.284 247.174 249.459 253.548 257.137 259.368 260.83 262.959 265.381 267.857 269.797 271.098 272.273 273.37 274.397 275.406 276.217 277.055 278.036 279.04 280.13 281.262 282.482 283.952 285.322 286.445 287.402 288.214 288.868 289.433 290.032 290.697 291.36 292.106 292.875 293.598 294.29 294.87 295.377 295.9 296.508 297.166 297.758 298.246 298.812 299.384 299.77 300.09 300.49 300.79 300.858 300.8 300.841 300.954 300.805 300.222 299.46 298.737 298.443 298.76 299.441 299.921 299.976 299.768 299.426 299.003 298.599 298.24 297.843 297.402 296.9 296.377 295.805 295.297 294.97 294.528 293.608 292.402 290.993 289.563 288.06 286.759 285.629 284.527 283.426 282.14 280.919 279.873 278.834 277.948 277.231 276.577 275.937 275.218 274.292 273.26 272.06 269.854 267.281 264.569 262.579 260.357 259.097 258.292 256.178 254.681 253.577 252.18 251.329 250.24 248.602 247.838 247.06 246.458 246.057 245.868 245.32 244.5 243.351 241.919 241.193 240.485 227.312 233.715 241.441 247.582 248.541 244.89 244.652 247.562 249.337 253.299 257.198 259.485 261.101 263.223 265.545 267.943 269.841 271.114 272.261 273.348 274.391 275.454 276.322 277.206 278.252 279.303 280.347 281.359 282.492 283.928 285.265 286.378 287.326 288.121 288.768 289.338 289.96 290.66 291.341 292.098 292.87 293.582 294.289 294.925 295.477 296.003 296.564 297.161 297.71 298.2 298.774 299.36 299.754 300.044 300.44 300.787 300.852 300.785 300.876 300.99 300.7 299.989 299.217 298.561 298.34 298.706 299.402 299.912 299.998 299.767 299.396 298.941 298.484 298.087 297.736 297.386 296.945 296.446 295.859 295.3 294.937 294.556 293.771 292.647 291.216 289.771 288.212 286.806 285.572 284.503 283.452 282.185 281.005 279.919 278.902 278.03 277.318 276.664 275.995 275.251 274.354 273.22 271.743 269.016 266.465 263.99 261.988 259.83 258.719 258.148 256.377 254.8 253.367 252.396 251.61 250.604 249.056 247.975 247.099 246.301 245.943 245.812 245.239 244.414 243.32 241.856 241.159 240.476 227.322 233.824 241.486 247.554 248.404 244.844 244.92 247.886 249.117 252.805 257.133 259.615 261.326 263.496 265.715 268.015 269.876 271.133 272.25 273.335 274.392 275.49 276.406 277.339 278.458 279.557 280.577 281.528 282.601 283.984 285.265 286.341 287.235 287.986 288.645 289.247 289.889 290.605 291.315 292.11 292.903 293.597 294.299 294.966 295.532 296.043 296.583 297.128 297.646 298.154 298.753 299.342 299.755 300.064 300.449 300.76 300.772 300.684 300.838 300.982 300.602 299.794 299.0 298.377 298.214 298.657 299.387 299.905 299.988 299.757 299.389 298.93 298.433 298.012 297.693 297.395 296.984 296.477 295.872 295.269 294.848 294.499 293.873 292.888 291.5 290.035 288.417 286.919 285.571 284.525 283.489 282.26 281.091 279.951 278.943 278.11 277.424 276.766 276.073 275.346 274.475 273.29 271.536 269.065 265.733 263.587 261.15 259.489 258.67 257.649 256.36 254.931 253.405 252.599 251.861 251.027 249.477 247.996 247.03 246.086 245.806 245.754 245.139 244.313 243.274 241.851 241.13 240.469 227.449 233.901 241.53 247.548 248.269 244.846 245.169 248.061 249.821 252.334 256.939 259.767 261.551 263.749 265.853 268.066 269.911 271.153 272.249 273.334 274.396 275.51 276.461 277.441 278.61 279.74 280.774 281.742 282.797 284.094 285.284 286.303 287.132 287.848 288.544 289.209 289.887 290.613 291.325 292.134 292.945 293.627 294.311 294.981 295.549 296.052 296.583 297.087 297.574 298.111 298.742 299.324 299.751 300.091 300.461 300.722 300.692 300.581 300.744 300.894 300.481 299.652 298.856 298.226 298.084 298.602 299.39 299.912 299.978 299.755 299.393 298.919 298.398 297.971 297.67 297.381 296.963 296.418 295.795 295.191 294.767 294.423 293.882 293.02 291.738 290.288 288.69 287.177 285.741 284.673 283.602 282.374 281.176 280.01 279.015 278.194 277.528 276.882 276.177 275.481 274.627 273.463 271.634 269.218 265.113 263.215 260.496 259.232 258.785 257.891 256.416 255.004 253.533 252.745 252.199 251.394 249.727 247.975 246.936 245.889 245.699 245.733 245.028 244.174 243.2 241.864 241.112 240.466 227.523 233.958 241.58 247.509 248.163 244.838 245.435 248.483 250.608 252.004 256.632 259.866 261.768 263.982 265.972 268.107 269.94 271.173 272.255 273.348 274.399 275.502 276.484 277.504 278.702 279.849 280.927 281.971 283.037 284.216 285.282 286.23 287.008 287.715 288.47 289.204 289.929 290.677 291.38 292.166 292.976 293.649 294.312 294.973 295.549 296.068 296.604 297.085 297.552 298.13 298.782 299.348 299.79 300.158 300.492 300.697 300.625 300.511 300.661 300.781 300.344 299.502 298.702 298.064 297.928 298.513 299.378 299.923 299.978 299.76 299.402 298.912 298.373 297.943 297.632 297.316 296.856 296.243 295.599 295.034 294.651 294.322 293.841 293.096 291.953 290.541 288.982 287.485 286.031 284.916 283.786 282.578 281.314 280.132 279.143 278.308 277.635 276.98 276.313 275.624 274.767 273.717 272.001 269.22 264.855 263.041 260.3 259.082 258.582 258.139 256.757 255.135 253.594 252.842 252.684 251.618 249.773 248.112 247.015 245.824 245.597 245.673 244.932 243.995 243.073 241.886 241.102 240.463 227.516 233.981 241.609 247.451 248.064 244.818 245.776 248.892 251.415 251.677 256.413 259.819 261.738 264.181 266.122 268.185 269.983 271.203 272.253 273.345 274.386 275.455 276.461 277.511 278.724 279.885 281.033 282.19 283.278 284.303 285.22 286.095 286.852 287.591 288.409 289.171 289.923 290.722 291.444 292.194 292.992 293.66 294.3 294.948 295.54 296.102 296.674 297.161 297.643 298.246 298.893 299.433 299.899 300.289 300.585 300.732 300.64 300.521 300.662 300.75 300.27 299.364 298.518 297.889 297.811 298.445 299.374 299.95 299.982 299.752 299.412 298.929 298.379 297.92 297.562 297.177 296.639 295.938 295.266 294.76 294.456 294.175 293.77 293.148 292.168 290.831 289.314 287.791 286.331 285.144 283.969 282.811 281.554 280.406 279.375 278.473 277.748 277.057 276.417 275.726 274.883 273.98 272.492 269.532 266.209 262.856 260.207 259.139 258.449 258.069 257.112 255.207 253.587 252.886 252.71 251.687 250.065 248.355 247.08 245.727 245.476 245.565 244.788 243.868 242.91 241.913 241.113 240.459 227.52 234.032 241.608 247.419 247.976 244.886 246.138 249.268 251.537 251.561 256.327 259.808 261.89 264.336 266.293 268.312 270.066 271.248 272.245 273.296 274.32 275.369 276.389 277.454 278.672 279.853 281.066 282.312 283.413 284.322 285.128 285.963 286.738 287.522 288.367 289.099 289.837 290.69 291.44 292.181 292.979 293.66 294.286 294.924 295.538 296.151 296.769 297.29 297.79 298.384 298.997 299.531 300.005 300.382 300.652 300.792 300.717 300.585 300.679 300.731 300.241 299.324 298.446 297.849 297.832 298.468 299.398 299.986 299.987 299.723 299.392 298.926 298.366 297.87 297.467 297.024 296.424 295.624 294.87 294.47 294.209 293.97 293.648 293.167 292.375 291.161 289.685 288.051 286.554 285.318 284.168 283.053 281.805 280.693 279.64 278.688 277.857 277.123 276.496 275.764 274.973 274.176 272.895 270.36 267.064 263.097 260.229 258.874 258.37 258.03 257.011 255.361 253.573 252.953 253.084 251.944 250.368 248.506 247.098 245.568 245.326 245.422 244.621 243.751 242.818 241.904 241.13 240.454 227.578 234.12 241.599 247.377 247.901 244.956 246.627 249.544 251.595 251.546 256.203 259.795 262.122 264.563 266.496 268.485 270.187 271.311 272.247 273.246 274.227 275.26 276.295 277.373 278.593 279.8 281.065 282.364 283.465 284.305 285.051 285.869 286.664 287.481 288.345 289.063 289.793 290.661 291.411 292.148 292.959 293.653 294.277 294.93 295.573 296.223 296.868 297.433 297.974 298.568 299.14 299.661 300.123 300.461 300.69 300.82 300.756 300.609 300.626 300.633 300.168 299.305 298.422 297.823 297.837 298.466 299.385 299.979 299.969 299.683 299.35 298.887 298.321 297.808 297.378 296.917 296.326 295.499 294.703 294.354 294.053 293.784 293.469 293.054 292.431 291.403 290.025 288.285 286.723 285.47 284.364 283.252 282.033 280.931 279.831 278.84 277.934 277.198 276.56 275.809 275.047 274.303 273.202 271.19 267.756 264.383 260.553 258.645 257.6 257.579 256.666 255.47 253.549 252.972 253.134 252.138 250.576 248.527 247.047 245.47 245.224 245.269 244.42 243.676 242.768 241.865 241.157 240.45 227.741 234.126 241.553 247.302 247.844 245.069 247.148 249.865 251.616 251.595 256.131 259.792 262.393 264.825 266.735 268.707 270.364 271.414 272.277 273.226 274.145 275.148 276.194 277.283 278.512 279.752 281.06 282.376 283.462 284.268 284.988 285.791 286.592 287.426 288.305 289.054 289.81 290.67 291.396 292.137 292.962 293.654 294.298 294.995 295.673 296.328 296.974 297.565 298.168 298.771 299.295 299.77 300.22 300.522 300.72 300.843 300.756 300.588 300.564 300.533 300.093 299.29 298.418 297.78 297.794 298.443 299.35 299.937 299.922 299.626 299.293 298.831 298.268 297.75 297.294 296.837 296.309 295.601 294.881 294.326 293.928 293.588 293.253 292.881 292.39 291.535 290.261 288.485 286.872 285.617 284.539 283.404 282.197 281.067 279.958 278.944 277.978 277.26 276.628 275.9 275.149 274.374 273.456 271.853 268.981 265.541 261.81 258.334 256.84 257.065 256.552 255.326 253.546 252.942 253.219 252.217 250.713 248.587 247.065 245.57 245.163 245.092 244.242 243.565 242.735 241.814 241.186 240.444 227.805 234.118 241.5 247.216 247.818 245.241 247.618 250.09 251.526 251.593 256.305 259.901 262.813 265.153 267.034 269.001 270.627 271.608 272.382 273.277 274.117 275.042 276.078 277.186 278.438 279.72 281.067 282.367 283.421 284.215 284.922 285.693 286.478 287.305 288.213 289.054 289.883 290.738 291.438 292.196 293.013 293.678 294.355 295.129 295.854 296.491 297.089 297.661 298.319 298.938 299.391 299.797 300.224 300.526 300.737 300.858 300.716 300.522 300.497 300.466 300.037 299.265 298.415 297.748 297.744 298.41 299.324 299.893 299.852 299.546 299.22 298.753 298.192 297.676 297.188 296.723 296.278 295.672 294.95 294.303 293.792 293.389 293.046 292.706 292.306 291.602 290.459 288.75 287.096 285.741 284.651 283.494 282.322 281.14 280.034 278.998 278.028 277.306 276.684 276.037 275.262 274.459 273.642 272.358 270.127 266.639 262.91 258.513 256.568 256.299 256.183 255.11 253.429 252.836 253.178 252.313 250.919 248.764 247.053 245.556 245.049 244.885 244.138 243.374 242.669 241.811 241.222 240.436 227.766 234.104 241.432 247.152 247.838 245.491 248.016 250.304 251.597 251.725 256.296 260.038 263.245 265.489 267.36 269.284 270.899 271.86 272.574 273.427 274.182 275.009 276.002 277.116 278.393 279.717 281.089 282.353 283.372 284.168 284.863 285.602 286.377 287.218 288.185 289.103 289.987 290.831 291.515 292.263 293.044 293.694 294.442 295.304 296.036 296.658 297.228 297.783 298.446 299.062 299.472 299.844 300.242 300.511 300.725 300.878 300.745 300.51 300.443 300.386 299.948 299.174 298.342 297.678 297.648 298.329 299.28 299.856 299.792 299.476 299.145 298.653 298.087 297.586 297.07 296.561 296.124 295.567 294.869 294.191 293.613 293.172 292.831 292.503 292.166 291.608 290.626 289.103 287.469 285.962 284.802 283.644 282.491 281.206 280.083 279.025 278.077 277.325 276.715 276.123 275.364 274.559 273.777 272.855 271.21 267.938 263.77 259.131 256.702 255.564 255.794 254.889 253.281 252.718 253.03 252.413 251.028 248.879 246.987 245.37 244.819 244.641 243.981 243.224 242.561 241.829 241.25 240.425 227.788 234.099 241.354 247.065 247.838 245.825 248.359 250.389 251.793 252.65 256.176 260.192 263.562 265.859 267.692 269.532 271.147 272.128 272.821 273.635 274.322 275.058 275.992 277.078 278.368 279.726 281.107 282.331 283.322 284.127 284.814 285.542 286.34 287.234 288.261 289.219 290.103 290.914 291.572 292.282 293.032 293.716 294.574 295.476 296.159 296.758 297.364 297.954 298.598 299.179 299.568 299.941 300.322 300.532 300.71 300.888 300.8 300.559 300.448 300.337 299.871 299.071 298.225 297.573 297.547 298.244 299.229 299.807 299.729 299.405 299.068 298.56 297.999 297.506 296.971 296.418 295.952 295.401 294.734 294.062 293.441 292.962 292.61 292.275 291.95 291.531 290.784 289.577 288.063 286.402 285.064 283.913 282.708 281.3 280.122 279.03 278.108 277.313 276.717 276.121 275.414 274.658 273.904 273.254 272.125 269.13 264.868 259.028 256.213 255.242 255.692 254.84 253.158 252.611 252.754 252.379 250.992 248.843 246.883 245.226 244.585 244.39 243.787 243.098 242.419 241.864 241.265 240.41 227.945 234.089 241.262 246.949 247.878 246.226 248.643 250.46 251.516 252.953 255.903 260.242 263.777 266.253 268.024 269.753 271.366 272.387 273.093 273.877 274.518 275.186 276.06 277.08 278.36 279.736 281.106 282.293 283.265 284.086 284.773 285.514 286.355 287.313 288.396 289.346 290.186 290.961 291.607 292.289 293.029 293.793 294.755 295.626 296.218 296.792 297.471 298.119 298.748 299.277 299.641 300.011 300.388 300.57 300.711 300.878 300.811 300.585 300.453 300.3 299.808 298.98 298.099 297.454 297.469 298.201 299.191 299.747 299.658 299.331 298.981 298.469 297.923 297.426 296.871 296.286 295.79 295.236 294.595 293.927 293.258 292.736 292.374 292.034 291.724 291.397 290.821 289.885 288.595 287.054 285.584 284.315 282.948 281.462 280.209 279.117 278.177 277.353 276.721 276.089 275.446 274.761 274.063 273.548 272.802 270.323 265.311 259.94 255.788 254.753 255.357 254.673 253.097 252.544 252.357 252.228 250.957 248.94 246.952 245.235 244.47 244.207 243.568 242.974 242.344 241.905 241.259 240.38 227.96 234.099 241.153 246.84 247.91 246.525 248.93 250.466 251.246 252.938 255.269 260.043 263.884 266.695 268.372 269.956 271.556 272.648 273.373 274.163 274.787 275.404 276.214 277.136 278.377 279.743 281.082 282.228 283.188 284.026 284.739 285.503 286.384 287.412 288.501 289.393 290.167 290.955 291.643 292.35 293.133 293.986 294.972 295.743 296.26 296.827 297.561 298.257 298.873 299.373 299.704 300.024 300.38 300.599 300.758 300.859 300.72 300.504 300.391 300.199 299.685 298.861 297.955 297.3 297.379 298.167 299.131 299.658 299.588 299.273 298.884 298.36 297.824 297.321 296.753 296.155 295.633 295.076 294.457 293.788 293.076 292.517 292.134 291.782 291.473 291.199 290.734 290.017 288.957 287.608 286.055 284.669 283.192 281.697 280.396 279.322 278.339 277.517 276.819 276.106 275.501 274.875 274.256 273.794 273.311 271.234 265.924 260.327 255.949 254.458 254.69 254.451 253.163 252.428 252.044 252.093 250.858 249.03 247.015 245.263 244.359 244.053 243.437 242.807 242.303 241.945 241.232 240.344 227.869 234.051 241.007 246.696 247.951 246.831 249.191 250.413 250.828 253.167 254.772 259.766 263.945 267.083 268.676 270.125 271.681 272.833 273.596 274.404 275.047 275.641 276.397 277.248 278.433 279.758 281.046 282.159 283.12 283.971 284.713 285.501 286.44 287.465 288.506 289.343 290.087 290.915 291.679 292.476 293.345 294.218 295.12 295.829 296.374 296.982 297.706 298.364 298.931 299.412 299.74 300.02 300.351 300.61 300.784 300.785 300.589 300.422 300.349 300.109 299.549 298.745 297.834 297.143 297.256 298.122 299.074 299.575 299.537 299.246 298.819 298.264 297.72 297.213 296.658 296.061 295.505 294.935 294.336 293.663 292.913 292.292 291.85 291.466 291.155 290.919 290.527 289.979 289.151 288.005 286.416 284.897 283.345 281.968 280.74 279.66 278.595 277.775 277.01 276.262 275.608 275.036 274.45 274.032 273.668 271.647 266.554 259.766 255.475 254.209 254.087 254.163 253.262 252.4 251.748 251.891 250.633 248.849 246.917 245.232 244.165 243.892 243.334 242.605 242.274 241.952 241.218 240.321 227.915 234.039 240.834 246.542 248.019 247.12 249.401 250.301 250.427 252.66 254.277 259.411 263.972 267.398 268.95 270.272 271.777 272.969 273.776 274.6 275.274 275.875 276.592 277.407 278.532 279.788 281.012 282.101 283.073 283.941 284.687 285.532 286.511 287.501 288.502 289.315 290.051 290.901 291.718 292.596 293.549 294.419 295.246 295.937 296.516 297.13 297.815 298.412 298.909 299.341 299.668 299.959 300.299 300.552 300.659 300.588 300.427 300.358 300.334 300.062 299.457 298.645 297.721 297.004 297.152 298.114 299.071 299.519 299.482 299.209 298.771 298.191 297.621 297.098 296.544 295.949 295.384 294.827 294.244 293.549 292.757 292.078 291.587 291.176 290.845 290.604 290.237 289.784 289.171 288.186 286.668 285.04 283.515 282.205 281.066 280.026 278.936 278.041 277.234 276.491 275.818 275.244 274.677 274.335 273.907 271.751 266.427 258.711 254.956 254.126 253.851 253.811 253.344 252.832 251.777 251.731 250.391 248.663 246.845 245.304 244.072 243.724 243.186 242.45 242.223 241.974 241.22 240.322 227.998 233.977 240.665 246.372 248.083 247.42 249.528 250.119 249.963 252.243 254.025 259.136 263.948 267.677 269.21 270.42 271.867 273.075 273.922 274.76 275.47 276.116 276.808 277.595 278.651 279.819 280.971 282.046 283.043 283.922 284.669 285.569 286.557 287.51 288.489 289.317 290.071 290.931 291.771 292.697 293.706 294.581 295.378 296.065 296.643 297.215 297.847 298.393 298.827 299.199 299.527 299.859 300.226 300.422 300.423 300.332 300.265 300.282 300.291 300.017 299.388 298.551 297.592 296.851 297.045 298.108 299.1 299.498 299.451 299.188 298.745 298.144 297.538 296.984 296.413 295.809 295.245 294.726 294.165 293.436 292.592 291.86 291.351 290.946 290.597 290.319 289.955 289.532 289.007 288.154 286.841 285.217 283.718 282.426 281.315 280.23 279.182 278.263 277.458 276.72 276.068 275.517 274.999 274.698 274.039 271.545 266.0 258.147 255.015 254.163 253.773 253.587 253.595 252.809 251.717 251.53 250.089 248.478 246.824 245.394 244.119 243.623 243.014 242.336 242.137 242.011 241.223 240.323 228.08 233.914 240.495 246.15 248.18 247.71 249.67 249.925 249.534 251.905 254.508 258.804 263.758 267.918 269.481 270.607 271.966 273.172 274.052 274.898 275.649 276.363 277.042 277.782 278.746 279.816 280.904 281.981 283.015 283.898 284.644 285.543 286.506 287.438 288.427 289.319 290.131 291.014 291.868 292.811 293.83 294.692 295.484 296.155 296.693 297.211 297.786 298.281 298.675 299.033 299.381 299.758 300.135 300.265 300.181 300.13 300.157 300.188 300.197 299.96 299.352 298.489 297.475 296.698 296.918 298.066 299.116 299.52 299.488 299.225 298.763 298.143 297.5 296.901 296.294 295.65 295.076 294.596 294.071 293.329 292.451 291.669 291.144 290.75 290.365 290.011 289.634 289.232 288.761 288.005 286.89 285.425 284.013 282.671 281.509 280.349 279.319 278.368 277.655 276.959 276.36 275.849 275.43 275.032 274.016 270.87 265.414 257.785 255.354 254.305 253.517 253.324 253.713 252.708 251.659 251.316 249.692 248.208 246.763 245.324 244.035 243.577 242.903 242.28 242.067 242.035 241.207 240.323 228.007 233.86 240.279 245.915 248.253 247.986 249.762 249.755 249.044 251.293 255.194 258.627 263.513 268.061 269.733 270.784 272.057 273.249 274.153 275.005 275.783 276.548 277.221 277.898 278.767 279.767 280.834 281.925 282.978 283.869 284.592 285.458 286.398 287.335 288.342 289.303 290.194 291.129 292.007 292.94 293.895 294.705 295.454 296.105 296.641 297.151 297.679 298.112 298.491 298.891 299.285 299.693 300.087 300.203 300.101 300.074 300.096 300.095 300.132 299.955 299.37 298.484 297.422 296.613 296.869 298.086 299.14 299.549 299.523 299.258 298.803 298.197 297.519 296.854 296.196 295.509 294.858 294.347 293.861 293.204 292.36 291.514 290.923 290.517 290.091 289.659 289.276 288.883 288.438 287.77 286.818 285.525 284.24 282.953 281.725 280.481 279.402 278.467 277.797 277.225 276.646 276.195 275.869 275.228 273.586 269.636 264.242 257.537 255.653 254.68 253.246 253.191 253.58 252.431 251.538 251.069 249.368 248.001 246.719 245.273 243.838 243.432 242.848 242.195 242.005 242.042 241.18 240.324 227.956 233.808 240.06 245.664 248.345 248.233 249.817 249.517 248.561 250.812 255.558 258.462 263.234 268.128 269.961 270.952 272.137 273.309 274.242 275.1 275.901 276.694 277.367 277.988 278.764 279.722 280.796 281.898 282.949 283.832 284.549 285.389 286.338 287.279 288.307 289.319 290.272 291.252 292.138 293.036 293.915 294.658 295.364 296.009 296.561 297.065 297.546 297.953 298.352 298.802 299.224 299.667 300.091 300.225 300.125 300.062 300.024 300.011 300.092 299.966 299.371 298.465 297.368 296.54 296.863 298.143 299.183 299.565 299.529 299.268 298.847 298.285 297.568 296.818 296.116 295.406 294.644 294.031 293.559 293.019 292.271 291.416 290.735 290.275 289.802 289.296 288.872 288.438 287.994 287.428 286.61 285.491 284.358 283.207 281.949 280.715 279.548 278.616 277.959 277.479 276.946 276.512 276.086 275.116 272.542 268.476 261.742 257.659 255.745 254.792 253.18 253.221 253.528 251.934 251.386 250.862 249.186 247.89 246.688 245.23 243.882 243.247 242.796 242.154 241.955 242.026 241.151 240.324 228.085 233.761 239.847 245.377 248.364 248.463 249.84 249.195 248.128 250.321 255.037 258.176 262.944 268.141 270.138 271.107 272.203 273.358 274.33 275.197 276.022 276.836 277.509 278.091 278.794 279.721 280.808 281.905 282.925 283.795 284.521 285.357 286.318 287.264 288.317 289.357 290.344 291.358 292.236 293.093 293.922 294.624 295.295 295.928 296.479 296.959 297.403 297.823 298.276 298.765 299.204 299.678 300.13 300.282 300.175 300.058 299.955 299.941 300.075 299.973 299.35 298.438 297.335 296.508 296.893 298.212 299.235 299.595 299.557 299.287 298.895 298.382 297.641 296.819 296.095 295.378 294.515 293.768 293.254 292.799 292.156 291.323 290.561 290.025 289.511 288.964 288.505 287.999 287.487 286.951 286.227 285.286 284.325 283.351 282.119 280.93 279.79 278.854 278.166 277.711 277.216 276.726 275.991 274.292 271.021 266.759 260.248 257.469 255.909 254.796 253.198 253.11 253.352 251.607 251.167 250.633 248.998 247.819 246.604 245.109 243.845 243.2 242.764 242.138 241.909 241.978 241.113 240.325 228.145 233.683 239.583 245.061 248.335 248.648 249.732 248.802 247.737 249.826 254.586 257.932 262.675 268.094 270.268 271.237 272.255 273.397 274.418 275.316 276.177 277.025 277.699 278.251 278.895 279.796 280.89 281.953 282.898 283.748 284.503 285.35 286.297 287.263 288.337 289.38 290.398 291.429 292.294 293.134 293.955 294.645 295.276 295.861 296.377 296.832 297.278 297.724 298.222 298.735 299.205 299.703 300.153 300.284 300.15 300.007 299.872 299.876 300.065 299.952 299.298 298.402 297.346 296.577 296.995 298.325 299.313 299.65 299.621 299.337 298.94 298.461 297.739 296.886 296.142 295.426 294.521 293.656 293.041 292.599 292.041 291.239 290.401 289.756 289.191 288.617 288.123 287.575 287.013 286.484 285.785 284.94 284.111 283.297 282.191 281.052 279.998 279.082 278.41 277.913 277.385 276.688 275.492 272.75 269.562 264.065 259.359 257.134 255.807 254.676 253.184 253.335 253.83 251.791 250.775 250.396 248.924 247.756 246.548 244.992 243.568 243.173 242.796 242.187 241.869 241.93 241.051 240.326 228.073 233.604 239.323 244.712 248.268 248.757 249.544 248.336 247.198 249.231 254.326 257.831 262.504 268.013 270.334 271.341 272.288 273.424 274.475 275.425 276.341 277.235 277.905 278.438 279.05 279.926 281.005 282.003 282.869 283.709 284.496 285.333 286.286 287.266 288.34 289.405 290.446 291.464 292.315 293.158 293.981 294.659 295.24 295.753 296.243 296.733 297.218 297.666 298.146 298.671 299.189 299.702 300.118 300.211 300.074 299.922 299.777 299.807 300.018 299.908 299.224 298.313 297.299 296.606 297.102 298.445 299.381 299.666 299.64 299.393 299.004 298.534 297.843 296.974 296.18 295.462 294.586 293.681 292.951 292.446 291.935 291.174 290.263 289.482 288.86 288.279 287.757 287.178 286.565 286.005 285.315 284.538 283.794 283.041 282.112 281.073 280.114 279.208 278.59 278.067 277.37 276.28 274.363 271.287 266.715 261.834 258.827 256.412 255.387 254.661 253.123 253.552 253.79 252.093 250.417 250.168 248.857 247.71 246.516 244.898 243.577 243.075 242.86 242.23 241.842 241.91 240.926 240.331 228.096 233.488 239.025 244.356 248.115 248.863 249.286 247.833 246.626 248.628 254.237 257.854 262.457 267.911 270.359 271.403 272.316 273.444 274.503 275.502 276.491 277.435 278.103 278.637 279.241 280.09 281.123 282.039 282.844 283.688 284.499 285.341 286.313 287.3 288.387 289.477 290.509 291.487 292.311 293.151 293.968 294.635 295.19 295.654 296.116 296.636 297.174 297.629 298.089 298.635 299.189 299.681 300.045 300.127 300.001 299.833 299.684 299.733 299.966 299.875 299.164 298.205 297.202 296.548 297.103 298.496 299.426 299.663 299.64 299.462 299.107 298.634 297.961 297.085 296.243 295.517 294.661 293.724 292.907 292.332 291.831 291.122 290.213 289.342 288.631 287.995 287.405 286.803 286.141 285.526 284.842 284.104 283.422 282.708 281.906 280.991 280.099 279.256 278.632 278.015 277.029 275.471 272.797 269.061 263.825 260.717 258.47 256.013 255.285 254.468 253.145 253.648 253.631 251.691 249.998 249.93 248.801 247.691 246.387 244.802 243.665 243.124 242.956 242.202 241.791 241.824 240.898 240.336 228.184 233.365 238.726 243.914 247.913 248.888 248.968 247.295 246.025 248.146 254.062 257.914 262.327 267.802 270.347 271.425 272.339 273.464 274.515 275.55 276.615 277.607 278.283 278.842 279.464 280.283 281.239 282.069 282.836 283.69 284.518 285.389 286.362 287.369 288.467 289.563 290.565 291.498 292.305 293.141 293.937 294.592 295.143 295.587 296.016 296.527 297.1 297.578 298.047 298.61 299.176 299.62 299.935 300.015 299.897 299.721 299.593 299.656 299.892 299.816 299.089 298.079 297.082 296.446 297.024 298.471 299.449 299.665 299.643 299.53 299.208 298.739 298.094 297.231 296.356 295.605 294.739 293.774 292.902 292.254 291.715 291.039 290.183 289.269 288.468 287.745 287.117 286.523 285.824 285.101 284.387 283.689 283.059 282.399 281.701 280.915 280.04 279.236 278.505 277.573 276.101 274.081 271.257 266.54 262.02 260.042 257.501 255.58 255.181 254.123 253.417 253.86 253.72 252.297 249.61 249.807 248.736 247.601 246.224 244.782 243.564 243.337 243.056 242.13 241.738 241.719 240.898 240.34 228.112 233.361 238.471 243.494 247.631 248.895 248.618 246.716 245.383 247.711 252.281 257.66 261.938 267.695 270.306 271.417 272.365 273.489 274.523 275.571 276.706 277.746 278.449 279.062 279.729 280.508 281.358 282.11 282.856 283.708 284.552 285.433 286.427 287.451 288.545 289.622 290.598 291.525 292.363 293.191 293.937 294.552 295.089 295.536 295.947 296.419 296.966 297.483 297.978 298.527 299.083 299.506 299.779 299.853 299.728 299.575 299.505 299.578 299.773 299.681 298.94 297.892 296.923 296.316 296.896 298.391 299.431 299.648 299.622 299.554 299.278 298.848 298.26 297.411 296.503 295.693 294.785 293.801 292.919 292.192 291.563 290.895 290.114 289.204 288.33 287.522 286.856 286.276 285.596 284.845 284.145 283.455 282.817 282.206 281.576 280.895 280.052 279.187 278.22 276.713 274.68 272.215 268.123 264.356 260.919 258.966 257.224 255.801 254.896 254.223 253.79 254.106 253.917 252.545 249.716 249.663 248.56 247.338 246.065 244.809 243.645 243.53 243.065 242.05 241.685 241.583 240.897 240.343 228.098 233.283 238.151 242.994 247.304 248.791 248.169 246.139 244.768 247.292 251.82 257.681 261.602 267.626 270.26 271.411 272.399 273.515 274.533 275.585 276.757 277.826 278.565 279.243 279.947 280.674 281.443 282.152 282.875 283.718 284.551 285.435 286.466 287.511 288.609 289.686 290.672 291.634 292.497 293.288 293.972 294.534 295.032 295.477 295.909 296.37 296.895 297.432 297.926 298.43 298.941 299.36 299.627 299.697 299.582 299.471 299.437 299.505 299.678 299.602 298.868 297.78 296.801 296.221 296.794 298.31 299.384 299.6 299.561 299.518 299.305 298.949 298.409 297.557 296.621 295.752 294.792 293.773 292.872 292.051 291.319 290.666 289.961 289.09 288.199 287.346 286.637 286.038 285.38 284.672 284.06 283.435 282.747 282.086 281.479 280.881 280.109 279.089 277.647 275.61 272.495 269.225 265.933 263.125 259.799 258.008 257.091 255.945 254.889 254.625 254.291 254.329 253.881 252.575 249.579 249.385 248.27 247.026 245.93 244.703 243.778 243.562 243.008 241.96 241.625 241.417 240.898 240.346 228.203 233.147 237.801 242.473 246.911 248.626 247.767 245.571 244.236 246.953 251.513 257.631 261.365 267.566 270.226 271.418 272.436 273.542 274.552 275.621 276.805 277.879 278.654 279.386 280.095 280.765 281.48 282.17 282.874 283.709 284.529 285.43 286.5 287.581 288.718 289.816 290.818 291.787 292.619 293.349 293.993 294.546 295.035 295.469 295.904 296.363 296.877 297.42 297.903 298.346 298.787 299.181 299.442 299.515 299.429 299.378 299.379 299.443 299.609 299.561 298.85 297.731 296.718 296.131 296.684 298.204 299.305 299.529 299.475 299.444 299.286 298.996 298.492 297.661 296.739 295.842 294.812 293.714 292.762 291.872 291.104 290.471 289.766 288.9 288.011 287.153 286.411 285.787 285.191 284.622 284.124 283.47 282.533 281.625 280.936 280.504 279.95 278.73 276.774 273.582 269.11 266.587 264.446 261.89 259.052 257.572 257.303 256.683 255.366 255.202 254.858 254.428 253.684 252.069 249.562 248.99 247.905 246.76 245.783 244.641 243.642 243.489 242.878 241.885 241.584 241.296 240.905 240.287 228.161 232.981 237.477 241.964 246.458 248.348 247.258 244.966 243.884 246.67 251.278 256.617 261.174 267.516 270.206 271.434 272.468 273.561 274.575 275.679 276.863 277.921 278.726 279.492 280.176 280.788 281.472 282.16 282.86 283.688 284.512 285.433 286.537 287.667 288.867 289.998 290.998 291.935 292.705 293.372 294.005 294.597 295.106 295.527 295.955 296.404 296.892 297.399 297.839 298.227 298.609 298.981 299.248 299.331 299.278 299.285 299.331 299.387 299.536 299.499 298.806 297.676 296.635 296.032 296.56 298.062 299.181 299.414 299.355 299.336 299.236 299.008 298.535 297.745 296.87 295.95 294.828 293.639 292.645 291.722 290.946 290.301 289.552 288.682 287.793 286.971 286.279 285.734 285.291 284.863 284.287 283.335 281.901 280.511 279.656 279.306 278.937 277.854 275.569 271.111 267.458 265.154 263.066 260.998 258.861 257.701 257.873 257.226 256.126 256.203 255.09 254.213 253.508 251.575 249.368 248.912 247.464 246.395 245.565 244.535 243.594 243.318 242.818 241.82 241.472 241.289 240.859 240.032 228.136 232.859 237.14 241.378 245.903 247.975 246.752 244.376 243.6 246.521 251.095 255.88 261.191 267.466 270.197 271.462 272.496 273.563 274.596 275.756 276.929 277.954 278.778 279.551 280.179 280.737 281.418 282.119 282.834 283.675 284.519 285.465 286.585 287.76 289.025 290.18 291.157 292.044 292.785 293.435 294.07 294.68 295.204 295.63 296.075 296.517 296.933 297.322 297.671 298.022 298.417 298.81 299.097 299.175 299.139 299.198 299.292 299.337 299.473 299.427 298.743 297.617 296.57 295.969 296.465 297.905 298.998 299.218 299.162 299.182 299.17 299.02 298.582 297.841 297.031 296.082 294.854 293.585 292.561 291.624 290.835 290.149 289.367 288.523 287.681 286.943 286.37 285.969 285.575 284.97 283.881 282.321 279.709 277.598 277.064 277.269 277.304 275.704 273.029 269.261 266.196 263.939 262.26 260.524 258.924 258.591 258.851 258.248 257.566 256.685 255.102 254.123 253.285 251.683 249.328 249.171 247.92 246.179 245.518 244.393 243.486 243.128 242.705 241.778 241.317 241.285 240.528 239.979 228.235 232.8 236.774 240.789 245.287 247.58 246.262 243.792 243.408 246.579 250.993 256.699 261.394 267.438 270.198 271.5 272.515 273.55 274.607 275.815 276.972 277.96 278.783 279.542 280.121 280.654 281.346 282.065 282.806 283.68 284.554 285.514 286.644 287.84 289.121 290.285 291.243 292.122 292.898 293.575 294.191 294.756 295.252 295.697 296.162 296.594 296.948 297.239 297.507 297.84 298.261 298.669 298.968 299.043 299.003 299.1 299.223 299.256 299.397 299.392 298.729 297.604 296.562 295.963 296.415 297.794 298.829 299.019 298.96 298.999 299.05 298.986 298.615 297.955 297.217 296.271 294.982 293.63 292.528 291.544 290.731 290.032 289.294 288.551 287.822 287.173 286.713 286.332 285.637 284.445 282.431 279.096 276.383 274.53 273.663 274.016 274.408 273.458 270.894 268.05 265.503 263.172 261.701 260.376 259.727 259.768 259.577 258.444 257.576 256.752 255.122 253.703 252.569 251.303 249.421 248.969 247.813 246.109 245.979 244.303 243.259 242.917 242.488 241.668 241.122 241.235 240.183 239.974 228.242 232.742 236.426 240.193 244.661 247.107 245.709 243.272 243.306 246.773 251.025 256.043 261.693 267.469 270.21 271.533 272.528 273.532 274.612 275.848 276.986 277.942 278.752 279.487 280.044 280.576 281.271 282.0 282.777 283.695 284.599 285.577 286.724 287.933 289.209 290.365 291.312 292.196 292.999 293.69 294.283 294.797 295.264 295.723 296.185 296.576 296.873 297.115 297.358 297.703 298.134 298.533 298.829 298.904 298.866 299.005 299.156 299.177 299.317 299.336 298.679 297.559 296.539 295.944 296.362 297.69 298.685 298.86 298.801 298.825 298.89 298.896 298.627 298.076 297.415 296.499 295.173 293.738 292.542 291.537 290.747 290.053 289.341 288.691 288.101 287.57 287.138 286.465 285.065 282.453 278.817 276.209 273.812 271.953 271.481 272.057 272.734 271.741 269.38 266.924 264.561 262.648 261.255 260.492 260.022 260.471 259.984 258.396 257.183 256.773 255.026 253.24 252.394 251.085 249.219 248.75 247.401 245.999 246.078 244.095 243.104 242.606 242.261 241.55 241.059 240.923 240.128 239.971 228.166 232.617 236.111 239.552 243.968 246.597 245.25 242.888 243.282 246.956 251.107 255.409 262.069 267.558 270.227 271.554 272.533 273.516 274.614 275.856 276.971 277.901 278.688 279.397 279.955 280.51 281.202 281.934 282.752 283.717 284.644 285.64 286.816 288.034 289.286 290.415 291.36 292.261 293.064 293.744 294.318 294.796 295.251 295.722 296.161 296.487 296.741 296.976 297.229 297.602 298.044 298.433 298.717 298.77 298.738 298.925 299.119 299.145 299.257 299.271 298.612 297.507 296.507 295.922 296.31 297.589 298.55 298.725 298.682 298.684 298.727 298.784 298.631 298.193 297.605 296.738 295.419 293.927 292.667 291.664 290.92 290.203 289.472 288.87 288.364 287.855 287.272 286.15 283.53 279.32 276.134 273.455 271.456 270.54 270.225 270.54 271.132 270.256 268.014 265.911 263.787 262.06 261.133 260.718 260.468 260.116 259.328 259.132 257.581 256.517 255.169 253.321 252.287 250.9 249.195 248.563 247.259 245.757 245.723 244.02 242.766 242.381 242.04 241.353 241.043 240.575 240.13 239.969 228.171 232.444 235.757 238.887 243.258 245.981 244.737 242.506 243.362 247.181 251.27 256.38 262.459 267.7 270.247 271.554 272.531 273.508 274.616 275.838 276.923 277.832 278.584 279.254 279.845 280.46 281.158 281.885 282.74 283.744 284.679 285.691 286.898 288.103 289.321 290.404 291.357 292.287 293.094 293.761 294.317 294.771 295.214 295.691 296.111 296.394 296.652 296.891 297.127 297.524 297.991 298.365 298.585 298.585 298.562 298.815 299.09 299.148 299.227 299.222 298.58 297.479 296.46 295.884 296.251 297.484 298.405 298.595 298.575 298.553 298.552 298.627 298.58 298.256 297.755 296.984 295.761 294.278 292.988 291.989 291.258 290.504 289.767 289.221 288.749 288.149 287.3 285.777 282.149 277.794 274.28 271.585 269.671 269.634 269.385 269.21 269.404 268.612 267.16 265.108 263.094 261.738 261.423 261.135 260.867 260.001 259.045 258.989 257.35 256.231 254.988 253.224 252.123 250.683 249.148 248.283 247.04 245.526 245.328 243.798 242.469 242.219 241.811 241.127 240.863 240.487 240.131 239.967 228.223 232.365 235.398 238.223 242.466 245.327 244.283 242.316 243.479 247.482 251.488 257.0 262.829 267.842 270.246 271.52 272.514 273.51 274.622 275.813 276.869 277.759 278.469 279.106 279.748 280.454 281.186 281.904 282.756 283.752 284.684 285.714 286.934 288.125 289.311 290.369 291.32 292.27 293.1 293.778 294.329 294.765 295.191 295.657 296.062 296.359 296.643 296.88 297.071 297.442 297.913 298.229 298.346 298.335 298.377 298.715 299.066 299.134 299.171 299.142 298.513 297.394 296.351 295.814 296.212 297.4 298.293 298.512 298.491 298.432 298.387 298.434 298.416 298.184 297.791 297.163 296.119 294.76 293.503 292.544 291.868 291.184 290.554 290.067 289.463 288.426 287.199 284.907 281.253 277.339 273.671 270.787 268.904 269.104 268.224 267.842 267.777 267.365 266.364 264.433 262.635 261.998 261.968 261.45 260.579 259.392 258.675 258.716 257.335 256.137 254.752 253.153 251.905 250.669 249.355 248.144 246.693 245.65 244.582 243.421 242.198 242.009 241.56 241.003 240.638 240.488 240.131 239.966 228.181 232.24 235.114 237.57 241.626 244.603 243.783 242.147 243.643 247.804 251.737 257.307 263.171 267.962 270.225 271.459 272.484 273.511 274.633 275.798 276.825 277.692 278.359 278.977 279.691 280.499 281.279 281.984 282.792 283.743 284.671 285.734 286.967 288.141 289.303 290.35 291.299 292.25 293.081 293.762 294.316 294.76 295.19 295.635 296.016 296.314 296.622 296.867 297.042 297.384 297.832 298.065 298.1 298.108 298.228 298.641 299.054 299.138 299.128 299.05 298.409 297.276 296.256 295.789 296.214 297.332 298.202 298.455 298.436 298.346 298.262 298.272 298.254 298.077 297.771 297.254 296.367 295.162 294.011 293.182 292.649 292.132 291.636 291.005 289.962 288.465 286.488 284.109 281.139 277.356 273.774 270.725 269.155 267.697 267.306 266.808 266.56 266.408 265.721 264.215 262.881 262.731 262.268 261.698 260.456 260.007 259.014 258.068 256.767 255.696 254.349 252.812 251.675 250.896 249.489 248.148 246.44 245.679 243.984 242.637 241.666 241.851 241.292 240.868 240.52 240.489 240.131 239.965 228.151 232.136 234.838 237.044 240.769 243.862 243.098 242.008 243.889 248.192 251.997 257.46 263.485 268.072 270.196 271.377 272.442 273.504 274.645 275.794 276.793 277.634 278.27 278.888 279.686 280.585 281.413 282.107 282.843 283.73 284.66 285.763 287.015 288.151 289.278 290.328 291.282 292.223 293.028 293.701 294.271 294.743 295.189 295.622 295.978 296.257 296.578 296.837 297.022 297.341 297.743 297.898 297.875 297.897 298.08 298.542 299.011 299.14 299.11 298.98 298.318 297.175 296.177 295.767 296.179 297.257 298.111 298.396 298.381 298.272 298.15 298.112 298.092 297.967 297.73 297.305 296.572 295.546 294.56 293.927 293.578 293.201 292.719 291.473 290.523 288.956 286.31 283.773 280.621 277.142 273.775 270.732 269.068 267.269 266.153 265.342 265.399 265.578 265.432 264.245 263.215 263.127 262.487 261.931 260.398 259.438 258.641 257.546 256.513 255.379 253.874 252.574 251.389 250.703 249.684 248.214 246.22 245.455 243.311 241.764 241.279 241.635 241.036 240.588 240.518 240.49 240.13 239.965 228.17 232.044 234.542 236.3 239.905 242.98 242.558 242.024 244.115 248.485 252.202 257.492 263.738 268.152 270.153 271.27 272.374 273.477 274.646 275.797 276.776 277.585 278.213 278.872 279.761 280.721 281.58 282.263 282.93 283.741 284.661 285.794 287.034 288.106 289.176 290.233 291.207 292.156 292.943 293.61 294.194 294.697 295.166 295.595 295.933 296.198 296.507 296.771 296.969 297.246 297.567 297.664 297.62 297.647 297.892 298.411 298.928 299.111 299.089 298.921 298.247 297.086 296.044 295.619 296.076 297.155 298.01 298.315 298.312 298.188 298.005 297.902 297.894 297.856 297.685 297.35 296.79 295.965 295.172 294.77 294.566 294.146 292.471 292.138 290.713 288.603 285.182 282.533 279.396 276.401 273.452 270.772 268.642 266.996 265.318 264.503 264.448 265.242 264.931 264.552 263.928 263.479 263.024 262.11 260.213 259.026 258.087 257.302 256.345 254.864 253.48 252.25 251.191 250.543 249.743 248.248 246.031 245.391 242.37 241.619 240.999 241.336 240.874 240.394 240.517 240.47 240.129 239.964 228.142 231.956 234.329 235.73 238.958 242.094 242.031 241.883 244.419 248.676 252.356 257.666 263.721 268.154 270.086 271.182 272.29 273.421 274.62 275.792 276.769 277.564 278.217 278.944 279.891 280.854 281.696 282.368 283.012 283.783 284.662 285.767 286.963 288.007 289.043 290.094 291.09 292.044 292.829 293.507 294.114 294.635 295.116 295.527 295.85 296.11 296.394 296.659 296.867 297.108 297.354 297.428 297.395 297.453 297.782 298.371 298.907 299.099 299.084 298.891 298.208 297.038 295.941 295.453 295.894 297.019 297.913 298.25 298.263 298.116 297.875 297.734 297.761 297.803 297.655 297.36 296.921 296.305 295.779 295.662 295.386 294.006 293.494 291.763 289.204 286.254 283.224 280.6 277.965 275.279 272.52 269.682 268.227 266.481 264.975 264.378 264.591 265.48 266.184 265.937 264.734 263.722 263.077 262.163 260.974 259.056 258.212 257.249 256.05 254.341 253.206 252.008 251.044 250.473 249.758 248.159 245.851 244.915 242.102 241.465 240.958 241.001 240.595 240.374 240.253 239.705 239.96 239.963 228.11 231.902 234.049 235.178 237.999 241.222 241.501 241.806 244.674 248.816 252.485 258.026 263.605 268.052 269.993 271.11 272.209 273.342 274.568 275.767 276.755 277.56 278.255 279.043 280.012 280.946 281.751 282.401 283.052 283.82 284.65 285.689 286.873 287.941 288.974 290.003 290.984 291.919 292.7 293.4 294.026 294.563 295.052 295.435 295.735 295.982 296.25 296.526 296.758 296.979 297.168 297.22 297.199 297.297 297.705 298.336 298.873 299.087 299.113 298.902 298.183 297.016 295.882 295.323 295.702 296.859 297.792 298.181 298.205 298.015 297.726 297.566 297.624 297.755 297.687 297.422 297.064 296.646 296.386 296.372 295.74 294.308 292.478 289.692 285.764 283.548 281.186 278.888 276.75 274.049 270.355 268.942 267.638 265.987 264.658 264.763 265.183 267.005 267.506 266.967 265.27 263.897 263.158 262.081 260.866 258.997 258.028 257.214 255.781 254.038 253.109 251.882 250.948 250.538 249.802 248.241 245.52 244.107 241.748 239.856 240.789 240.676 240.318 240.222 239.932 239.674 239.571 239.963 228.126 231.764 233.872 234.693 237.118 240.369 241.026 241.841 244.846 248.897 252.53 258.455 263.398 267.829 269.86 271.046 272.136 273.25 274.493 275.719 276.726 277.556 278.299 279.131 280.104 280.997 281.761 282.384 283.038 283.817 284.621 285.604 286.802 287.914 288.958 289.951 290.888 291.784 292.572 293.307 293.931 294.458 294.944 295.313 295.594 295.832 296.087 296.364 296.612 296.82 296.97 297.001 296.994 297.146 297.635 298.283 298.817 299.081 299.155 298.917 298.152 296.978 295.797 295.157 295.498 296.642 297.649 298.118 298.153 297.926 297.585 297.361 297.387 297.618 297.762 297.618 297.368 297.143 297.018 296.767 295.737 293.572 289.688 285.56 283.172 281.664 280.014 278.387 275.977 273.189 269.244 268.27 267.169 265.95 265.127 265.157 267.293 268.345 268.741 267.748 265.735 263.907 263.039 261.855 260.685 258.861 257.898 256.829 255.439 253.794 252.896 251.784 250.896 250.599 249.864 248.01 245.129 243.601 241.25 239.724 240.615 240.385 240.216 239.874 239.929 239.673 239.341 239.963 228.044 231.776 233.68 234.242 236.278 239.56 240.551 241.786 244.899 248.905 252.463 258.83 263.018 267.408 269.649 270.977 272.069 273.153 274.394 275.64 276.671 277.544 278.334 279.187 280.148 281.008 281.737 282.331 282.965 283.748 284.563 285.535 286.742 287.878 288.916 289.87 290.774 291.647 292.466 293.239 293.828 294.302 294.769 295.136 295.408 295.652 295.889 296.14 296.38 296.589 296.715 296.731 296.764 297.023 297.612 298.279 298.813 299.12 299.197 298.917 298.136 296.964 295.692 294.908 295.192 296.382 297.495 298.064 298.146 297.943 297.565 297.173 297.041 297.342 297.824 297.941 297.853 297.73 297.372 296.393 294.538 290.56 286.264 283.57 282.008 281.421 280.238 278.653 276.437 273.53 270.677 268.703 267.729 266.941 266.724 267.848 268.825 269.721 269.623 267.923 265.897 264.314 263.071 261.657 260.446 258.986 257.768 256.512 255.114 253.707 252.777 251.702 250.804 250.613 249.794 247.986 244.832 242.833 240.398 239.436 240.533 240.126 239.948 239.788 239.928 239.672 239.201 239.963 228.032 231.769 233.485 233.851 235.492 238.807 240.148 241.776 244.939 248.786 252.581 258.766 262.675 266.878 269.386 270.888 272.013 273.079 274.313 275.553 276.597 277.514 278.336 279.19 280.14 280.986 281.692 282.261 282.865 283.64 284.486 285.478 286.652 287.762 288.798 289.764 290.671 291.529 292.355 293.15 293.725 294.169 294.614 294.962 295.213 295.447 295.686 295.945 296.204 296.416 296.512 296.531 296.619 296.972 297.602 298.273 298.816 299.149 299.215 298.929 298.198 297.051 295.692 294.768 295.0 296.216 297.363 297.973 298.115 297.987 297.627 297.135 296.87 297.152 297.812 298.14 298.119 297.721 296.586 294.613 290.911 287.221 284.841 283.194 282.353 282.098 281.82 280.442 277.984 275.536 273.087 271.617 270.176 269.026 268.573 269.432 270.215 270.498 269.923 268.071 265.634 263.493 262.776 261.606 260.389 258.97 257.754 256.417 254.974 253.795 252.742 251.505 250.661 250.483 249.725 247.11 244.507 242.12 239.97 238.764 240.406 239.936 239.618 239.784 239.927 239.669 239.109 239.949 228.027 231.67 233.391 233.451 234.772 238.151 239.801 241.781 244.892 248.596 253.036 258.501 262.394 266.279 269.086 270.774 271.961 273.026 274.255 275.471 276.515 277.474 278.318 279.165 280.113 280.945 281.626 282.188 282.78 283.545 284.41 285.404 286.537 287.623 288.693 289.698 290.593 291.399 292.201 293.005 293.609 294.058 294.474 294.779 295.006 295.238 295.498 295.794 296.081 296.258 296.31 296.344 296.496 296.917 297.559 298.225 298.781 299.132 299.205 298.94 298.248 297.104 295.691 294.729 294.904 296.119 297.284 297.899 298.08 298.002 297.646 297.128 296.84 297.112 297.831 298.239 297.999 297.112 294.491 291.274 287.987 285.861 284.928 284.429 284.109 283.7 283.092 282.016 279.97 277.723 275.843 274.022 272.453 271.071 270.401 270.921 271.33 270.796 269.823 268.116 266.166 263.426 262.39 261.537 260.412 258.916 257.621 256.489 255.016 253.964 252.82 251.393 250.488 250.331 249.211 246.317 243.691 241.594 239.996 238.605 240.417 239.71 239.559 239.594 239.564 239.566 239.092 239.849 228.002 231.63 233.336 233.042 234.202 237.57 239.427 241.709 244.784 248.286 251.88 257.245 261.956 265.638 268.754 270.632 271.901 272.986 274.216 275.393 276.428 277.426 278.284 279.126 280.074 280.884 281.531 282.108 282.72 283.478 284.337 285.316 286.417 287.497 288.615 289.643 290.499 291.247 292.024 292.834 293.476 293.943 294.324 294.568 294.786 295.04 295.327 295.651 295.943 296.059 296.069 296.143 296.382 296.871 297.539 298.213 298.764 299.105 299.185 298.954 298.28 297.12 295.685 294.7 294.866 296.072 297.248 297.862 298.086 298.052 297.69 297.163 296.885 297.149 297.882 298.229 297.532 295.207 291.759 288.874 286.431 285.968 286.157 286.409 286.339 285.645 284.468 283.204 282.084 279.879 278.134 276.538 274.692 273.058 271.95 271.953 271.933 270.95 269.639 268.278 266.198 263.612 262.261 261.443 260.133 258.774 257.561 256.421 255.063 254.111 252.938 251.517 250.463 250.056 248.487 246.38 243.467 241.633 240.125 238.218 240.451 239.608 239.391 239.414 239.487 239.179 239.088 239.773 227.966 231.656 233.27 232.73 233.693 237.029 239.121 241.615 244.551 247.896 251.079 255.3 259.882 264.918 268.347 270.437 271.813 272.949 274.19 275.316 276.335 277.37 278.238 279.075 280.018 280.788 281.393 282.011 282.683 283.432 284.252 285.208 286.294 287.373 288.485 289.471 290.282 291.054 291.853 292.661 293.312 293.789 294.133 294.332 294.565 294.861 295.152 295.477 295.745 295.819 295.829 295.966 296.297 296.84 297.549 298.251 298.769 299.072 299.155 298.976 298.345 297.2 295.753 294.683 294.727 295.97 297.188 297.796 298.062 298.107 297.793 297.285 297.009 297.253 297.909 297.903 296.545 292.913 289.471 287.467 286.765 287.583 288.064 288.251 288.097 287.077 285.566 284.247 283.309 281.59 279.538 278.061 276.299 274.305 272.893 272.691 272.401 270.902 268.735 267.475 266.39 263.671 261.923 261.232 260.032 258.55 257.29 256.034 254.998 254.22 253.047 251.81 250.475 249.767 248.043 246.968 243.724 242.047 240.144 238.541 240.319 239.603 239.221 239.412 239.486 238.942 239.086 239.72 227.928 231.592 233.276 232.6 233.271 236.56 238.73 241.401 244.324 247.377 250.654 254.982 259.561 264.418 267.981 270.225 271.711 272.91 274.171 275.259 276.259 277.315 278.191 279.029 279.958 280.685 281.26 281.924 282.647 283.378 284.153 285.102 286.186 287.239 288.273 289.183 290.007 290.865 291.686 292.456 293.086 293.587 293.95 294.152 294.387 294.694 294.992 295.32 295.577 295.638 295.656 295.828 296.2 296.765 297.48 298.181 298.693 299.013 299.148 299.009 298.409 297.296 295.851 294.721 294.719 295.931 297.167 297.761 298.008 298.061 297.816 297.435 297.222 297.393 297.82 297.345 294.687 290.518 288.312 287.92 288.956 289.698 290.15 290.139 289.37 288.016 286.36 285.117 283.945 282.525 280.424 278.915 277.382 275.534 273.485 272.977 272.515 270.87 267.573 266.505 266.125 263.399 261.738 260.967 259.839 258.24 257.07 255.708 254.844 254.207 253.268 252.097 250.688 249.25 247.82 247.048 244.104 242.252 240.514 239.02 240.209 239.728 239.219 239.409 239.484 238.849 239.043 239.685 227.894 231.593 233.282 232.498 232.923 236.103 238.426 241.251 243.931 246.81 250.179 254.77 259.623 264.216 267.706 270.022 271.607 272.864 274.149 275.21 276.194 277.259 278.141 278.982 279.892 280.584 281.152 281.853 282.592 283.301 284.046 284.997 286.077 287.113 288.084 288.946 289.794 290.687 291.47 292.191 292.817 293.348 293.746 293.969 294.2 294.509 294.831 295.152 295.374 295.42 295.451 295.654 296.073 296.688 297.429 298.12 298.641 298.984 299.164 299.042 298.455 297.379 295.978 294.848 294.781 295.968 297.199 297.807 298.038 298.046 297.857 297.637 297.447 297.464 297.629 297.044 293.872 289.946 289.16 289.836 291.52 292.173 292.122 291.606 289.978 288.388 287.049 285.739 284.441 283.057 281.191 279.556 278.088 276.118 273.98 272.927 272.455 269.552 267.051 265.946 264.956 262.981 261.612 260.897 259.617 257.999 256.739 255.589 254.793 254.3 253.401 252.321 250.939 249.699 247.551 246.914 244.012 241.993 240.755 238.997 240.539 239.753 239.23 239.127 239.365 238.839 238.955 239.659 227.884 231.53 233.351 232.525 232.785 235.798 238.249 240.98 243.59 246.145 249.625 254.594 259.843 264.38 267.602 269.83 271.502 272.804 274.108 275.161 276.138 277.201 278.087 278.933 279.815 280.481 281.065 281.787 282.515 283.198 283.933 284.881 285.956 286.998 287.941 288.781 289.636 290.497 291.224 291.933 292.566 293.085 293.496 293.746 293.991 294.311 294.649 294.939 295.109 295.165 295.24 295.486 295.952 296.632 297.411 298.101 298.614 298.958 299.157 299.068 298.522 297.517 296.198 295.095 294.984 296.055 297.195 297.808 298.044 298.028 297.941 297.901 297.676 297.462 297.42 296.924 293.758 290.78 291.819 293.222 293.757 293.904 293.648 292.927 291.062 288.818 287.373 286.429 285.187 283.684 281.781 279.991 278.33 276.576 274.258 272.925 271.923 268.544 266.699 265.517 264.312 262.547 261.611 260.928 259.449 257.963 256.689 255.498 254.777 254.315 253.508 252.424 251.474 249.89 247.56 246.881 243.894 241.848 240.932 239.399 240.686 239.916 239.254 239.09 239.15 238.827 238.888 239.641 227.871 231.577 233.403 232.61 232.785 235.591 238.216 240.761 243.178 245.461 249.009 254.764 258.93 265.147 267.696 269.641 271.391 272.72 274.036 275.106 276.087 277.133 278.02 278.874 279.718 280.366 280.987 281.713 282.4 283.066 283.806 284.719 285.781 286.841 287.775 288.595 289.433 290.259 290.997 291.768 292.388 292.808 293.177 293.469 293.742 294.069 294.406 294.641 294.79 294.92 295.071 295.342 295.829 296.552 297.351 298.043 298.559 298.927 299.138 299.085 298.599 297.697 296.472 295.426 295.274 296.218 297.198 297.727 297.916 297.917 298.014 298.189 297.936 297.518 297.437 297.473 294.352 293.154 293.648 294.603 294.903 294.532 293.998 293.103 291.459 288.904 287.509 286.667 285.291 283.832 282.147 280.167 278.234 276.353 274.632 272.985 271.202 268.958 266.678 265.374 264.167 262.415 261.582 260.724 258.867 257.601 256.755 255.721 254.921 254.274 253.513 252.478 251.522 250.262 248.312 246.843 244.37 242.269 241.099 239.401 240.771 240.612 239.262 239.09 239.104 238.776 238.85 239.629 227.819 231.538 233.52 232.788 232.936 235.59 238.274 240.59 242.616 244.775 248.46 255.098 260.941 265.968 267.939 269.55 271.3 272.629 273.942 275.049 276.045 277.062 277.949 278.819 279.634 280.269 280.924 281.644 282.284 282.942 283.684 284.542 285.572 286.626 287.529 288.304 289.159 290.038 290.847 291.662 292.232 292.557 292.897 293.209 293.467 293.774 294.088 294.303 294.48 294.66 294.83 295.139 295.723 296.526 297.333 298.019 298.587 299.035 299.26 299.147 298.635 297.79 296.665 295.677 295.573 296.459 297.361 297.788 297.898 297.896 298.058 298.341 298.233 297.893 297.849 298.231 296.307 295.528 295.451 295.719 295.63 294.991 293.998 292.77 290.723 289.12 287.572 286.418 285.101 283.828 282.368 280.284 278.033 276.342 274.597 272.751 270.469 268.357 266.244 265.131 264.075 262.957 261.749 260.459 258.791 257.686 257.614 257.374 255.196 254.227 253.33 252.416 251.457 250.184 248.502 246.257 244.684 242.888 241.238 240.031 240.547 240.68 239.311 239.047 239.098 238.727 238.827 239.623 227.814 231.574 233.641 233.09 233.183 235.746 238.365 240.53 242.272 244.032 247.873 255.44 262.21 266.697 268.211 269.518 271.227 272.544 273.844 274.991 276.007 276.993 277.874 278.763 279.559 280.186 280.867 281.58 282.179 282.832 283.568 284.376 285.378 286.415 287.273 288.027 288.93 289.865 290.678 291.462 291.993 292.301 292.644 292.926 293.142 293.431 293.732 293.939 294.138 294.339 294.539 294.964 295.694 296.561 297.35 298.036 298.666 299.181 299.408 299.23 298.697 297.938 296.923 295.969 295.809 296.603 297.445 297.807 297.906 297.942 298.094 298.369 298.467 298.282 298.144 297.894 297.73 297.049 296.865 296.49 295.975 295.179 293.957 292.601 290.967 289.216 287.685 286.47 285.285 283.949 282.623 280.54 277.782 275.85 274.44 272.215 270.067 268.205 266.541 265.199 263.981 262.672 261.439 260.12 258.524 258.067 258.001 257.801 256.001 254.15 252.925 252.078 251.306 250.038 247.564 245.64 244.971 243.211 242.014 240.019 240.356 240.65 239.373 238.989 239.057 238.71 238.811 239.616 227.813 231.557 233.799 233.439 233.497 236.113 238.616 240.556 241.83 243.399 247.358 255.615 262.87 267.427 268.541 269.486 271.158 272.468 273.75 274.931 275.969 276.925 277.795 278.698 279.486 280.111 280.815 281.517 282.08 282.731 283.45 284.219 285.205 286.224 287.06 287.835 288.771 289.699 290.448 291.176 291.708 292.048 292.387 292.612 292.794 293.086 293.376 293.565 293.783 294.02 294.309 294.886 295.707 296.551 297.313 298.046 298.752 299.31 299.516 299.303 298.79 298.105 297.178 296.248 296.026 296.71 297.464 297.744 297.844 297.954 298.094 298.305 298.588 298.496 297.747 296.594 297.206 298.149 297.715 297.018 296.191 295.268 293.957 292.555 291.195 289.203 287.815 286.835 285.573 284.235 282.937 280.939 277.855 275.538 273.943 271.835 269.706 267.794 266.425 264.958 263.853 262.522 261.27 259.46 258.305 258.192 258.156 257.905 256.9 253.936 252.349 251.577 251.075 249.588 247.027 245.436 244.477 243.354 241.86 239.941 240.615 240.584 239.38 238.993 238.913 238.71 238.8 239.61 227.741 231.541 233.956 233.816 233.947 236.444 238.859 240.686 241.393 242.73 246.873 255.762 263.578 268.152 268.963 269.492 271.094 272.409 273.661 274.863 275.922 276.856 277.709 278.613 279.4 280.036 280.756 281.439 281.982 282.629 283.323 284.055 285.021 286.018 286.876 287.698 288.601 289.426 290.116 290.851 291.421 291.786 292.087 292.268 292.462 292.762 293.006 293.176 293.432 293.738 294.148 294.842 295.656 296.448 297.291 298.163 298.947 299.485 299.623 299.38 298.847 298.128 297.237 296.412 296.256 296.899 297.6 297.808 297.84 298.005 298.185 298.317 298.622 298.422 297.307 295.433 295.882 297.951 298.736 297.273 296.383 295.386 293.974 292.512 291.24 289.166 287.757 286.802 285.61 284.263 283.003 281.136 278.131 275.565 273.713 271.705 269.385 267.392 266.062 264.967 263.895 262.763 261.242 259.278 258.309 258.283 258.058 257.645 256.762 254.817 251.929 251.198 250.876 249.212 247.377 246.117 243.845 243.363 242.19 240.181 240.875 240.478 239.925 238.998 238.803 238.71 238.792 239.611 227.728 231.559 234.132 234.281 234.441 236.906 239.21 240.864 241.159 242.195 246.469 255.955 264.085 268.717 269.383 269.629 271.062 272.38 273.6 274.8 275.87 276.805 277.645 278.532 279.323 279.97 280.682 281.345 281.897 282.551 283.217 283.923 284.858 285.82 286.695 287.545 288.374 289.111 289.813 290.578 291.14 291.499 291.807 292.024 292.228 292.465 292.646 292.854 293.171 293.492 293.953 294.739 295.651 296.578 297.542 298.398 299.09 299.513 299.581 299.346 298.848 298.127 297.268 296.496 296.274 296.803 297.545 297.863 297.927 298.172 298.43 298.444 298.39 298.325 297.057 295.758 296.036 296.932 297.638 297.164 296.546 295.633 294.029 292.36 291.136 289.836 287.894 286.629 285.189 284.056 282.758 281.127 278.374 275.862 273.957 271.984 269.483 267.383 265.628 264.928 263.975 262.932 260.948 259.12 258.508 258.32 257.718 257.099 256.29 254.934 251.669 250.954 250.533 248.88 248.138 247.37 244.187 243.688 242.549 240.644 240.987 240.374 240.265 238.921 238.745 238.711 238.782 239.613 227.693 231.571 234.322 234.766 234.98 237.447 239.69 241.056 240.969 241.735 246.113 256.632 264.484 269.16 269.754 269.788 271.036 272.355 273.56 274.739 275.811 276.765 277.607 278.474 279.266 279.919 280.602 281.236 281.812 282.476 283.116 283.817 284.74 285.668 286.536 287.392 288.169 288.858 289.575 290.304 290.82 291.204 291.571 291.815 291.99 292.163 292.337 292.611 292.97 293.312 293.874 294.786 295.8 296.805 297.743 298.43 298.937 299.277 299.365 299.252 298.912 298.262 297.432 296.655 296.269 296.605 297.351 297.803 297.95 298.218 298.437 298.278 298.037 297.848 296.922 296.285 296.533 296.943 296.964 296.846 296.569 295.785 294.131 292.307 291.128 289.927 288.011 286.418 284.92 283.561 282.312 280.991 278.704 276.043 274.425 272.456 269.576 266.956 265.476 265.187 263.885 262.196 260.454 259.11 258.577 258.166 257.341 256.585 255.724 254.567 251.28 250.843 249.934 248.671 248.692 247.542 244.638 243.632 242.427 241.758 241.287 240.391 240.191 238.835 238.735 238.734 238.776 239.617 227.625 231.576 234.46 235.3 235.662 238.036 240.325 241.266 240.83 241.319 245.845 257.25 264.811 269.493 270.082 269.972 271.003 272.327 273.528 274.681 275.747 276.732 277.587 278.44 279.229 279.885 280.522 281.121 281.72 282.393 283.004 283.723 284.663 285.563 286.402 287.256 287.997 288.67 289.39 290.053 290.537 290.974 291.366 291.569 291.711 291.883 292.096 292.412 292.781 293.194 293.958 294.998 296.018 296.972 297.783 298.301 298.671 298.963 299.124 299.204 299.027 298.392 297.563 296.833 296.43 296.666 297.381 297.879 298.032 298.144 298.079 298.143 297.171 296.842 295.664 296.518 296.785 296.988 297.022 296.88 296.604 295.86 294.234 292.456 291.353 290.026 288.091 286.331 284.658 283.307 281.842 280.675 278.317 275.965 274.329 272.235 269.701 266.898 265.926 265.08 263.144 261.426 260.225 259.199 258.535 257.973 256.862 256.044 255.195 253.913 251.295 250.924 250.391 249.15 249.087 247.613 244.768 243.753 241.955 242.786 241.58 240.444 240.183 238.829 238.699 238.766 238.774 239.623 227.622 231.583 234.625 235.827 236.369 238.642 240.87 241.558 240.703 240.927 245.627 257.448 265.01 269.688 270.385 270.247 270.99 272.273 273.488 274.618 275.674 276.698 277.581 278.433 279.216 279.864 280.447 281.014 281.632 282.297 282.884 283.631 284.598 285.439 286.217 287.052 287.785 288.489 289.231 289.893 290.404 290.847 291.113 291.192 291.357 291.61 291.867 292.174 292.537 293.066 294.06 295.22 296.227 297.111 297.806 298.203 298.462 298.681 298.894 299.177 299.113 298.413 297.566 296.964 296.661 296.851 297.496 298.018 298.192 298.007 297.656 296.778 296.53 296.321 296.179 296.807 297.016 297.133 297.155 297.089 296.722 295.925 294.343 292.884 291.66 289.967 288.238 286.265 284.544 282.857 281.319 279.99 277.914 275.75 274.12 272.082 269.648 267.347 266.435 265.119 262.753 261.103 260.245 259.308 258.387 257.727 256.514 255.619 254.722 253.286 251.499 251.216 250.931 250.201 249.142 247.671 244.716 244.161 242.285 242.932 241.853 240.509 240.291 238.741 238.672 238.789 238.771 239.629 227.58 231.54 234.828 236.353 237.134 239.222 241.377 241.795 240.616 240.607 245.458 257.489 264.915 269.604 270.543 270.53 271.034 272.198 273.424 274.557 275.618 276.665 277.577 278.439 279.213 279.841 280.398 280.961 281.589 282.254 282.849 283.613 284.54 285.277 285.985 286.818 287.595 288.365 289.144 289.814 290.282 290.605 290.726 290.809 291.075 291.361 291.615 291.991 292.43 293.027 294.126 295.403 296.484 297.287 297.729 297.833 297.92 298.119 298.39 298.745 298.753 298.166 297.482 296.945 296.529 296.536 297.059 297.691 298.178 298.065 297.254 296.229 296.196 296.486 296.74 296.958 297.153 297.237 297.297 297.306 296.651 296.006 294.534 293.201 291.87 289.671 288.307 286.584 284.647 282.764 281.052 279.335 277.614 275.659 274.231 272.317 269.819 267.615 266.595 264.873 262.442 260.97 260.48 259.424 258.472 257.519 256.331 255.311 254.403 253.055 251.786 251.704 251.208 250.219 249.149 247.761 245.42 244.64 243.159 243.402 242.297 240.632 240.243 238.714 238.668 238.796 238.77 239.628 227.553 231.57 235.0 236.816 237.876 239.783 241.816 241.975 240.569 240.28 245.285 257.373 264.553 269.268 270.509 270.735 271.122 272.122 273.339 274.492 275.574 276.634 277.568 278.44 279.2 279.8 280.353 280.931 281.573 282.262 282.91 283.696 284.552 285.2 285.873 286.735 287.569 288.362 289.08 289.627 289.959 290.177 290.31 290.542 290.913 291.204 291.501 291.985 292.486 293.158 294.413 295.751 296.672 297.147 297.253 297.126 297.134 297.317 297.496 297.667 297.721 297.165 296.777 296.461 296.246 296.403 296.942 297.6 298.285 298.608 297.283 296.222 296.154 296.444 296.71 297.041 297.328 297.4 297.397 297.328 296.577 295.991 294.276 292.327 291.713 290.938 289.34 287.125 285.067 283.039 281.125 278.975 277.232 275.636 274.318 272.387 269.953 267.731 266.677 264.789 262.405 261.398 260.463 259.356 258.255 257.257 256.096 255.039 254.05 253.068 251.976 251.85 250.975 250.024 249.264 247.938 246.297 244.98 243.836 244.045 242.738 240.803 240.141 238.75 238.662 238.799 238.777 239.604 227.543 231.548 235.19 237.329 238.586 240.364 242.197 242.123 240.455 240.013 245.176 256.247 263.873 268.634 270.263 270.848 271.227 272.057 273.236 274.416 275.534 276.607 277.553 278.436 279.176 279.742 280.302 280.899 281.543 282.277 283.011 283.827 284.632 285.251 285.936 286.824 287.671 288.385 288.928 289.296 289.517 289.747 290.022 290.414 290.853 291.194 291.579 292.089 292.554 293.365 294.859 296.111 296.56 296.578 296.515 296.38 296.287 296.238 296.119 295.992 295.446 295.371 295.167 295.323 295.954 296.362 297.01 297.689 298.517 298.908 297.732 296.504 296.262 296.406 296.713 297.168 297.577 297.651 297.561 297.398 296.572 295.917 294.741 293.807 293.101 292.297 290.728 288.428 285.955 283.56 281.432 279.05 276.88 275.303 274.167 272.305 269.884 267.717 266.489 264.529 262.732 260.991 260.037 258.931 257.817 256.746 255.605 254.732 253.873 253.063 252.238 251.936 251.089 250.151 249.295 248.144 246.793 246.339 245.234 244.681 243.232 241.044 240.211 239.12 238.665 238.781 238.783 239.581 227.503 231.553 235.349 237.734 239.219 240.859 242.508 242.252 240.326 239.798 244.975 255.165 262.934 267.454 269.653 270.77 271.322 272.014 273.11 274.314 275.487 276.586 277.538 278.431 279.149 279.681 280.236 280.799 281.385 282.137 282.947 283.812 284.667 285.368 286.087 286.921 287.67 288.212 288.586 288.935 289.282 289.656 290.059 290.446 290.845 291.291 291.779 292.173 292.559 293.66 295.303 296.151 295.961 295.735 295.695 295.414 295.023 294.498 293.73 293.764 293.876 293.9 294.021 293.897 294.451 295.454 295.777 296.787 298.38 299.022 298.555 296.903 296.31 296.349 296.793 297.328 297.695 297.815 297.738 297.352 296.447 295.729 295.128 294.535 293.799 292.901 291.655 289.763 286.947 284.38 281.969 279.398 276.824 275.069 273.876 272.202 269.6 267.752 266.412 264.361 262.708 261.227 260.142 258.583 257.399 256.182 254.833 254.095 253.446 252.781 252.168 252.001 251.187 250.067 249.396 248.395 246.809 246.858 245.65 245.152 243.836 241.326 240.258 239.795 238.603 238.714 238.79 239.573 227.467 231.503 235.481 238.215 239.792 241.295 242.713 242.228 240.157 239.687 244.776 253.434 262.014 265.862 268.647 270.402 271.295 271.997 273.009 274.201 275.43 276.578 277.533 278.431 279.142 279.641 280.106 280.518 280.938 281.613 282.457 283.401 284.407 285.263 286.009 286.792 287.52 288.085 288.591 289.191 289.692 290.062 290.401 290.685 291.021 291.477 291.879 292.2 292.874 294.323 295.623 295.796 295.287 294.88 294.421 293.909 292.685 292.107 292.809 294.228 295.193 295.394 295.197 294.372 293.855 293.553 294.094 295.466 298.276 300.47 299.213 297.47 296.385 296.177 296.694 297.262 297.698 297.757 297.765 296.953 296.08 295.404 294.981 294.486 293.783 293.016 292.144 290.693 288.399 285.452 283.052 280.299 277.147 275.165 273.787 272.156 269.507 267.814 266.366 264.481 262.825 261.386 259.874 258.183 256.817 255.681 254.33 253.518 253.007 252.801 252.411 252.05 251.477 250.316 249.524 248.686 248.061 247.436 246.48 245.465 244.478 241.685 240.353 239.849 238.534 238.627 238.798 239.567 227.486 231.504 235.599 238.63 240.345 241.702 242.762 242.013 239.95 239.528 244.58 252.555 260.567 263.98 267.156 269.741 271.125 271.971 272.939 274.089 275.362 276.576 277.533 278.42 279.139 279.565 279.862 280.045 280.24 280.796 281.677 282.711 283.863 284.859 285.679 286.573 287.518 288.402 289.303 290.129 290.539 290.704 290.983 291.353 291.72 292.028 292.142 292.423 293.479 295.028 295.735 295.24 294.328 293.751 292.229 290.105 290.78 292.866 295.116 297.267 298.183 297.73 296.958 296.281 295.34 294.179 293.667 294.82 298.951 301.314 300.402 297.94 296.475 296.041 296.542 297.139 297.616 297.718 297.185 296.53 295.778 295.194 294.749 294.154 293.359 292.586 291.988 291.153 289.758 287.468 285.16 282.065 278.191 275.556 273.744 272.185 269.9 267.865 266.376 264.527 262.814 261.08 259.584 258.044 256.768 255.449 254.002 253.145 252.94 252.914 252.782 252.179 251.81 250.728 249.656 249.281 248.702 248.163 246.932 245.411 244.327 242.056 240.445 239.722 238.459 238.538 238.811 239.558 227.371 231.443 235.766 239.045 240.853 242.038 242.672 241.652 239.705 239.41 244.345 251.666 257.672 261.785 264.846 268.692 270.757 271.893 272.887 273.981 275.283 276.574 277.531 278.394 279.094 279.406 279.297 279.186 279.134 279.504 280.359 281.822 283.06 284.171 285.127 286.262 287.57 289.022 290.337 291.255 291.55 291.573 291.97 292.596 293.039 293.131 292.942 293.122 294.197 295.424 295.499 294.394 293.028 290.163 287.491 288.247 291.932 297.141 299.514 298.994 298.62 298.401 298.063 297.721 298.695 297.807 297.504 297.818 298.14 300.07 300.376 298.268 296.371 295.966 296.43 297.002 297.573 297.754 297.178 296.34 295.634 295.125 294.54 293.79 292.902 292.028 291.493 291.053 290.296 289.149 287.44 284.245 280.168 276.151 273.807 272.114 269.979 268.009 266.337 264.618 262.74 260.898 259.42 257.937 256.654 255.261 253.778 253.046 253.058 253.041 253.141 252.258 251.789 250.981 249.766 249.59 249.334 248.793 247.649 245.936 244.475 242.484 240.628 239.668 238.414 238.465 238.815 239.556 227.337 231.471 235.896 239.359 241.322 242.291 242.433 241.121 239.462 239.413 244.143 250.674 254.86 258.442 262.621 267.031 270.007 271.66 272.818 273.867 275.179 276.561 277.513 278.325 278.93 278.894 278.603 278.333 278.016 278.17 278.805 279.937 281.689 283.019 282.863 284.815 287.29 289.628 290.857 291.811 292.276 292.543 293.268 294.117 294.559 294.623 294.495 294.55 295.007 295.335 294.736 293.01 290.32 286.082 284.997 288.848 295.284 299.789 298.935 298.743 298.585 298.505 298.311 298.685 299.291 300.761 301.761 299.783 298.433 298.515 298.091 297.496 295.951 295.9 296.389 296.797 297.361 297.71 297.054 296.199 295.599 295.114 294.366 293.482 292.528 291.616 291.032 290.727 290.363 289.712 288.467 285.771 281.434 277.158 274.113 272.204 269.659 268.062 266.485 264.892 262.976 261.069 259.46 258.042 256.615 255.263 253.997 253.375 253.471 253.272 253.252 252.684 251.876 251.068 249.997 249.821 249.89 249.311 248.238 246.707 244.036 242.898 240.859 239.799 238.308 238.416 238.811 239.557 227.317 231.386 235.992 239.656 241.719 242.438 242.013 240.58 239.207 239.472 243.983 249.62 253.132 256.207 260.833 265.231 268.882 271.159 272.664 273.746 275.065 276.511 277.468 278.221 278.611 278.342 278.367 278.252 277.886 277.822 278.343 279.097 279.987 280.923 282.023 283.91 286.024 288.169 289.8 291.099 291.665 292.26 293.119 293.761 293.824 294.057 294.415 294.752 294.84 294.431 293.222 291.5 286.934 283.668 285.632 291.307 298.216 298.65 298.332 298.434 298.705 299.018 299.066 299.715 300.312 302.595 303.634 301.352 298.563 297.425 296.867 296.444 295.56 295.849 296.386 296.535 296.884 297.275 296.727 295.995 295.519 295.039 294.265 293.415 292.501 291.531 290.826 290.459 290.152 289.759 288.899 286.583 282.474 278.369 274.822 272.515 269.842 267.958 266.579 265.205 263.179 261.229 259.688 258.208 256.889 255.61 254.475 254.33 254.276 253.595 253.186 252.805 252.196 251.201 250.314 250.233 250.271 249.779 248.724 247.103 243.686 243.4 241.116 239.647 238.108 238.387 238.826 239.56 227.31 231.396 236.108 239.988 242.074 242.514 241.53 239.98 238.952 239.606 243.826 248.627 251.543 254.279 259.231 263.566 267.494 270.404 272.382 273.588 274.911 276.401 277.39 278.114 278.314 278.229 278.48 278.766 278.49 278.428 278.846 279.527 280.473 281.027 282.256 284.124 286.112 287.272 287.97 288.944 289.552 290.153 290.717 290.441 291.138 291.427 292.016 292.937 293.205 292.662 291.177 287.987 284.137 283.797 288.227 294.767 298.407 298.239 298.275 298.631 298.831 299.067 298.876 299.173 300.119 302.843 304.203 304.013 300.823 298.612 297.481 295.938 295.217 295.848 296.395 296.391 296.523 296.467 296.331 295.811 295.451 295.008 294.277 293.509 292.653 291.666 290.893 290.436 289.999 289.587 288.913 286.934 283.145 278.893 276.562 273.5 270.278 268.191 266.92 265.366 263.292 261.445 259.922 258.578 257.267 256.114 255.511 255.357 254.958 253.884 253.23 252.782 252.248 251.413 250.761 250.728 250.545 250.108 248.96 248.587 244.276 243.769 241.352 239.381 237.925 238.355 238.852 239.562 227.252 231.378 236.173 240.2 242.428 242.462 240.95 239.309 238.708 239.756 243.674 247.6 250.165 252.685 258.004 261.954 265.856 269.368 271.931 273.366 274.697 276.212 277.271 278.022 278.107 278.304 279.595 280.393 279.988 279.856 280.328 281.03 281.519 282.11 283.295 284.871 286.922 287.392 287.553 287.098 287.007 287.437 287.321 286.495 285.822 285.051 285.016 285.876 286.778 286.536 285.095 283.811 283.483 286.807 292.109 296.935 298.301 298.246 299.014 298.903 298.578 298.4 298.647 298.949 300.228 301.841 303.965 305.117 302.244 299.607 297.677 296.044 295.214 295.877 296.399 296.375 296.39 296.403 296.158 295.723 295.427 295.005 294.321 293.586 292.746 291.787 290.999 290.473 289.967 289.519 288.88 287.103 283.695 279.842 277.526 275.135 271.272 268.465 267.189 265.576 263.48 261.617 260.206 258.951 257.815 256.754 256.931 256.877 255.731 254.229 253.382 252.866 252.343 251.771 251.367 251.326 250.854 250.249 249.867 249.127 244.333 244.002 241.647 239.239 237.816 238.318 238.89 239.562 227.208 231.334 236.233 240.418 242.688 242.352 240.321 238.592 238.511 240.029 243.553 246.821 249.082 251.492 255.804 260.3 263.938 267.896 271.175 273.008 274.38 275.883 277.07 277.946 278.21 279.082 280.271 281.241 281.832 281.666 282.511 283.322 283.509 284.062 285.752 286.706 287.913 288.789 288.714 288.419 288.104 288.166 287.446 285.866 284.316 282.722 281.707 281.773 282.356 282.597 281.739 282.722 286.201 291.402 296.577 298.171 298.35 298.466 298.782 298.536 298.219 298.389 298.829 299.542 300.714 300.586 302.944 303.176 301.334 299.274 297.537 295.918 295.384 295.93 296.377 296.398 296.382 296.422 296.114 295.753 295.42 294.958 294.326 293.614 292.78 291.862 291.082 290.495 289.967 289.515 288.876 287.263 284.301 280.831 278.497 276.069 272.254 268.854 267.477 266.058 263.74 261.803 260.425 259.308 258.201 257.17 257.076 257.272 256.54 255.183 253.853 253.131 252.763 252.783 252.02 251.888 251.169 250.211 249.908 249.405 245.473 244.635 241.957 239.139 237.755 238.335 238.922 239.563 227.132 231.272 236.253 240.627 242.917 242.203 239.659 237.885 238.348 240.267 243.547 246.343 248.165 250.661 254.083 257.073 261.911 266.394 270.261 272.562 274.03 275.489 276.807 277.861 278.601 279.502 280.575 281.729 282.558 283.324 284.329 285.029 285.611 286.0 287.247 288.62 289.763 290.447 290.401 290.254 290.841 290.923 290.423 288.834 287.225 285.515 283.85 283.039 282.95 282.365 283.293 286.634 291.024 296.01 299.024 298.508 298.119 298.396 298.256 298.18 298.428 298.82 299.418 301.098 301.543 301.446 301.038 299.46 298.816 298.318 297.651 296.105 295.612 296.048 296.328 296.269 296.233 296.241 296.074 295.774 295.355 294.839 294.273 293.606 292.792 291.913 291.132 290.499 289.988 289.533 288.871 287.414 284.868 281.697 278.856 276.197 272.804 269.468 268.002 266.315 264.146 261.996 260.597 259.571 258.455 257.344 257.127 257.513 257.538 255.795 254.79 253.614 252.899 253.468 252.89 252.353 251.327 250.091 250.15 249.618 246.085 245.331 242.238 238.839 237.731 238.368 238.953 239.567 227.11 231.233 236.253 240.802 243.113 242.046 238.992 237.238 238.222 240.592 243.679 246.0 247.455 250.124 253.213 255.913 259.481 265.243 269.32 272.06 273.688 275.11 276.511 277.74 278.745 279.602 280.676 281.808 282.755 283.806 284.827 285.712 286.608 287.804 288.854 290.089 290.786 290.99 291.36 291.077 292.125 293.433 294.115 292.9 291.5 290.472 289.712 288.932 288.243 287.799 288.967 291.397 294.913 297.932 298.839 298.186 297.98 298.246 298.219 298.344 298.812 299.636 299.652 301.637 303.127 302.295 300.351 297.294 296.229 297.216 297.297 296.156 295.853 296.189 296.261 296.086 296.02 296.05 295.962 295.73 295.291 294.768 294.238 293.566 292.72 291.863 291.117 290.507 290.034 289.556 288.852 287.545 285.371 282.37 279.007 276.144 273.068 270.2 268.961 266.715 264.638 262.237 260.77 259.733 258.596 257.71 257.623 258.009 258.235 257.157 255.601 254.161 253.309 253.621 253.297 252.521 251.231 249.845 250.132 249.729 246.788 245.786 242.561 238.587 237.675 238.386 238.989 239.572 227.095 231.175 236.262 240.94 243.292 241.916 238.418 236.641 238.019 240.907 243.998 245.936 247.314 249.881 252.787 255.176 257.899 264.078 268.392 271.511 273.355 274.775 276.214 277.586 278.693 279.576 280.591 281.604 282.57 283.693 284.775 285.617 286.766 288.119 289.405 290.369 290.758 290.777 291.108 291.252 292.239 293.634 294.963 295.57 295.287 295.316 295.097 294.846 293.824 293.273 294.08 295.54 296.691 297.605 298.275 297.796 297.799 298.243 298.34 298.48 298.805 299.795 300.157 303.297 304.527 302.462 299.27 296.473 295.371 296.416 296.546 296.203 296.096 296.308 296.167 295.925 295.854 295.852 295.804 295.649 295.239 294.706 294.167 293.468 292.588 291.749 291.065 290.502 290.067 289.581 288.842 287.604 285.634 282.805 279.147 276.133 273.418 270.136 268.945 267.313 264.975 262.623 260.952 260.031 259.059 258.398 259.068 258.726 258.821 257.841 257.092 254.804 253.77 253.853 253.475 252.391 250.981 249.684 250.07 249.819 248.452 246.171 242.83 238.385 237.6 238.411 239.028 239.573 227.035 231.127 236.237 241.039 243.421 241.815 237.971 236.15 237.882 241.148 244.605 246.134 247.391 249.937 252.488 254.992 257.466 261.936 267.518 270.873 272.994 274.477 275.92 277.385 278.558 279.436 280.361 281.247 282.165 283.207 284.138 284.996 286.345 287.962 289.575 290.609 290.289 290.642 291.172 291.632 292.568 293.83 295.209 296.069 296.36 296.577 296.741 297.0 296.999 296.622 296.597 297.003 296.835 297.33 297.511 297.298 297.533 298.102 298.226 298.279 298.502 299.579 301.068 304.177 304.984 302.366 299.204 297.088 295.501 295.944 296.557 296.27 296.309 296.316 296.024 295.808 295.772 295.705 295.642 295.55 295.166 294.584 294.007 293.308 292.444 291.645 291.008 290.476 290.066 289.6 288.847 287.635 285.748 283.018 279.243 275.747 273.716 270.229 268.597 267.545 265.207 262.901 261.496 260.769 260.154 260.208 259.72 259.59 259.3 258.41 257.389 255.517 254.195 254.005 253.376 252.071 250.891 249.661 250.297 249.841 248.564 246.585 242.788 238.135 237.53 238.434 239.069 239.576 226.981 231.063 236.188 241.094 243.534 241.808 237.591 235.7 237.773 241.583 246.256 245.727 247.307 249.593 250.967 254.773 257.31 260.672 267.099 270.313 272.658 274.258 275.699 277.189 278.392 279.277 280.159 281.049 281.88 282.766 283.557 284.399 285.705 287.372 288.975 290.366 290.18 290.409 291.413 292.363 293.013 293.82 294.57 295.373 295.977 296.632 297.064 297.417 297.348 297.314 297.049 296.923 296.992 297.107 297.003 296.837 297.117 297.617 298.017 298.12 298.204 298.686 300.727 303.954 304.793 302.14 299.651 297.121 295.317 295.253 296.514 296.441 296.357 296.155 295.855 295.689 295.644 295.554 295.511 295.438 295.045 294.425 293.824 293.144 292.341 291.595 290.969 290.433 290.029 289.607 288.867 287.642 285.788 283.124 279.413 275.552 273.688 270.524 268.237 267.258 265.225 263.323 262.186 261.8 261.658 260.818 260.236 260.162 259.724 258.8 257.668 256.07 254.34 253.797 252.848 251.788 250.92 249.556 250.555 249.741 248.606 246.908 242.838 238.005 237.506 238.448 239.104 239.58 226.955 230.997 236.107 241.113 243.67 241.867 237.362 235.403 237.747 242.155 246.476 245.864 246.638 248.985 251.468 254.008 257.113 260.232 266.102 269.825 272.316 274.053 275.512 277.011 278.232 279.126 279.908 280.955 281.671 282.347 282.978 283.816 285.156 286.725 288.244 289.906 290.165 290.666 291.679 292.63 293.398 294.034 294.277 294.704 295.428 296.196 296.652 297.065 297.218 297.367 297.274 297.306 297.372 297.252 297.079 296.794 296.95 297.61 298.06 298.172 298.176 298.726 300.889 303.533 303.914 301.346 299.175 297.156 295.301 296.103 296.53 296.506 296.205 295.915 295.674 295.564 295.501 295.409 295.387 295.302 294.919 294.344 293.73 293.008 292.233 291.538 290.922 290.389 289.998 289.603 288.886 287.637 285.81 283.18 279.514 275.52 273.166 270.894 268.191 266.611 265.03 263.517 262.693 262.699 262.067 261.116 260.826 260.59 260.091 259.21 258.107 256.557 254.186 253.318 252.728 251.962 251.082 251.152 251.468 249.531 248.574 247.166 242.822 237.944 237.498 238.454 239.138 239.576 226.867 230.908 236.047 241.165 243.785 242.034 237.256 235.266 237.758 242.422 246.728 246.165 247.377 249.937 252.319 254.696 257.914 260.88 264.263 269.478 271.955 273.822 275.328 276.841 278.077 278.983 279.955 280.842 281.43 281.885 282.396 283.258 284.633 286.19 287.952 289.912 291.334 291.199 292.007 292.693 293.224 293.703 294.089 294.606 295.33 296.159 296.698 296.955 297.278 297.781 297.89 297.907 297.511 297.196 297.033 296.799 297.05 297.505 297.963 297.981 298.294 299.502 301.965 303.908 303.208 300.454 298.488 297.443 296.428 296.438 296.588 296.359 295.975 295.67 295.482 295.443 295.374 295.273 295.249 295.144 294.807 294.31 293.66 292.86 292.112 291.474 290.871 290.351 289.985 289.606 288.903 287.636 285.818 283.204 279.453 275.565 273.039 271.137 267.948 266.413 265.058 263.925 263.51 263.045 262.158 261.453 261.278 261.017 260.35 259.275 258.3 256.713 254.364 253.618 253.283 252.547 251.517 252.983 251.286 249.136 248.417 247.382 242.714 237.981 237.492 238.429 239.167 239.565 226.806 230.849 235.98 241.143 243.929 242.236 237.314 235.262 237.911 244.21 246.889 246.878 248.413 251.185 253.687 256.017 259.042 261.684 263.843 268.889 271.542 273.509 275.108 276.658 277.913 278.831 279.779 280.581 281.035 281.341 281.838 282.772 284.249 286.002 288.299 290.403 291.968 293.199 293.654 293.07 292.664 293.101 293.828 294.607 295.393 296.227 296.875 296.844 297.112 297.567 298.323 298.356 297.752 297.286 297.105 296.819 296.974 297.251 297.557 297.662 298.599 301.1 303.343 304.004 302.584 300.246 298.258 297.851 297.196 296.748 296.457 296.048 295.717 295.415 295.263 295.273 295.205 295.098 295.074 294.975 294.706 294.274 293.56 292.709 292.024 291.442 290.833 290.321 289.984 289.618 288.912 287.633 285.812 283.21 279.347 275.564 272.93 271.129 268.048 266.791 265.726 264.515 264.224 263.132 262.105 261.751 261.583 261.362 260.529 259.715 258.476 256.468 255.072 254.587 254.06 253.562 253.502 253.235 250.885 248.625 248.162 247.556 242.954 237.912 237.449 238.383 239.2 239.552 226.802 230.782 235.911 241.138 244.112 242.477 237.528 235.443 238.192 244.917 246.788 247.489 249.459 252.288 254.933 257.372 260.067 262.384 264.471 268.056 271.163 273.208 274.887 276.486 277.767 278.679 279.541 280.219 280.587 280.896 281.482 282.545 284.172 286.297 289.03 291.02 292.356 293.435 294.042 292.991 292.479 292.831 293.476 294.178 295.142 296.491 296.798 296.922 297.121 297.392 297.711 297.849 297.645 297.591 297.212 296.956 297.005 297.297 297.235 297.509 299.009 302.845 304.149 303.358 301.437 299.732 297.942 297.395 297.08 296.648 296.217 295.8 295.532 295.249 295.087 295.046 294.961 294.901 294.907 294.821 294.592 294.183 293.45 292.64 292.018 291.432 290.803 290.306 289.989 289.629 288.902 287.606 285.777 283.2 279.22 275.499 272.814 271.192 268.312 267.569 267.062 265.96 264.506 263.134 262.211 262.25 262.1 261.798 261.1 260.049 258.326 256.817 256.005 255.592 255.621 255.933 254.408 252.836 250.362 248.012 247.866 247.716 243.433 237.728 237.455 238.344 239.241 239.537 226.722 230.684 235.823 241.108 244.265 242.81 237.854 235.816 238.598 244.335 246.484 247.969 250.321 253.281 255.955 258.458 260.956 263.085 265.083 267.902 270.896 272.955 274.686 276.32 277.624 278.52 279.298 279.86 280.166 280.544 281.28 282.496 284.259 286.711 289.512 291.286 292.475 293.45 294.169 294.114 292.838 292.996 293.055 293.485 294.093 295.186 296.043 296.796 297.039 297.081 297.069 297.211 297.286 297.405 297.335 297.221 297.194 297.006 296.939 297.54 299.7 302.891 303.891 302.158 300.627 299.18 297.779 297.257 296.875 296.506 296.002 295.589 295.345 295.111 294.941 294.824 294.747 294.755 294.761 294.659 294.458 294.076 293.369 292.608 291.996 291.381 290.78 290.332 290.014 289.64 288.885 287.561 285.724 283.143 279.049 275.379 272.777 271.416 269.292 268.2 267.118 265.971 264.578 263.277 262.472 262.964 263.251 262.536 261.472 259.967 258.556 258.236 257.95 256.729 257.192 255.48 253.833 252.161 249.661 247.429 247.573 247.846 243.871 237.572 237.392 238.328 239.278 239.535 226.655 230.583 235.725 241.032 244.38 243.196 238.363 236.305 239.511 243.545 246.533 248.562 251.246 254.357 256.913 259.421 261.837 263.955 265.933 268.258 270.793 272.768 274.515 276.16 277.477 278.347 279.019 279.467 279.756 280.269 281.197 282.563 284.392 286.962 289.664 291.263 292.384 293.387 294.136 294.585 294.513 293.624 293.243 292.751 292.879 293.679 294.871 296.457 297.551 297.247 296.795 296.837 297.007 297.24 297.48 297.477 297.467 297.084 297.015 297.649 300.158 302.304 302.435 300.918 299.862 298.824 297.524 297.18 296.768 296.31 295.772 295.364 295.113 294.961 294.805 294.618 294.556 294.617 294.599 294.486 294.336 293.988 293.312 292.582 291.946 291.321 290.79 290.399 290.06 289.672 288.911 287.589 285.765 283.11 278.884 275.239 272.835 271.424 270.071 268.787 267.473 266.189 264.929 264.057 264.474 265.68 264.788 263.156 261.545 259.634 258.908 258.688 258.48 257.522 256.56 254.804 253.06 251.366 248.908 246.818 247.267 247.959 242.811 237.315 237.301 238.33 239.349 239.541 226.57 230.515 235.618 240.989 244.52 243.687 238.957 236.847 240.687 243.828 246.832 249.277 252.252 255.495 257.894 260.472 263.097 265.249 267.161 269.09 270.94 272.688 274.388 276.001 277.307 278.137 278.679 279.012 279.355 280.072 281.222 282.715 284.51 286.937 289.493 291.0 292.089 293.222 294.138 294.749 295.174 295.474 294.681 293.029 292.572 292.739 293.763 295.819 297.408 297.224 296.626 296.503 296.601 296.976 297.468 297.863 297.774 297.31 297.402 297.886 299.796 301.612 300.921 299.619 298.287 297.638 297.231 296.937 296.505 295.971 295.512 295.12 294.849 294.8 294.681 294.412 294.323 294.391 294.377 294.329 294.268 293.94 293.279 292.572 291.917 291.305 290.847 290.485 290.119 289.737 289.018 287.737 285.931 283.134 278.754 275.026 272.924 271.636 270.318 269.251 268.292 267.377 266.44 265.982 266.854 267.673 266.118 263.577 261.306 258.908 257.722 257.535 257.639 257.109 255.749 253.976 252.232 250.409 248.068 246.198 246.976 248.025 243.083 237.151 237.299 238.396 239.425 239.55 226.536 230.446 235.499 240.859 244.657 244.166 239.669 237.551 240.847 244.338 247.361 250.028 253.169 256.427 258.822 261.559 264.347 266.49 268.259 269.847 271.263 272.744 274.327 275.873 277.142 277.921 278.348 278.626 279.084 280.02 281.347 282.881 284.585 286.793 289.181 290.639 291.652 292.82 293.924 294.825 295.512 295.817 295.55 294.868 294.453 293.936 293.773 295.37 296.73 297.041 296.636 296.205 296.004 296.336 296.958 297.47 297.767 297.763 297.582 297.886 299.524 300.787 300.013 298.392 297.436 297.228 297.021 296.678 296.184 295.744 295.399 294.975 294.696 294.69 294.566 294.243 294.111 294.149 294.163 294.208 294.199 293.863 293.255 292.607 291.946 291.329 290.884 290.504 290.144 289.843 289.229 288.048 286.277 283.271 278.494 274.742 272.96 271.756 270.521 269.711 269.182 268.739 268.32 268.444 269.093 269.056 266.725 263.643 260.132 257.308 256.106 255.996 256.15 255.675 254.685 253.185 251.248 249.468 247.223 245.595 246.708 248.067 245.432 237.175 237.244 238.458 239.468 239.562 226.488 230.333 235.378 240.722 244.768 244.686 240.482 238.249 240.429 244.658 247.844 250.806 254.079 257.326 259.729 262.612 265.553 267.656 269.171 270.48 271.628 272.862 274.283 275.751 276.967 277.678 278.016 278.301 278.909 280.072 281.536 283.04 284.649 286.708 288.928 290.324 291.263 292.372 293.538 294.604 295.465 296.007 296.106 296.042 295.929 295.834 295.115 295.306 296.368 297.118 297.272 296.585 296.059 295.904 296.244 296.803 297.429 297.7 297.587 297.793 298.645 299.764 299.726 298.521 297.771 297.274 296.873 296.436 295.981 295.647 295.305 294.867 294.621 294.589 294.422 294.095 293.943 293.933 293.959 294.053 294.045 293.731 293.227 292.631 291.952 291.329 290.885 290.48 290.142 289.905 289.356 288.253 286.575 283.496 278.472 274.969 273.239 272.003 270.868 270.473 270.575 270.434 270.088 270.091 270.366 269.839 266.794 262.905 258.392 255.639 254.216 254.167 254.486 254.172 253.412 252.197 250.31 248.473 246.338 245.04 246.459 248.105 245.771 237.333 237.357 238.399 239.51 239.577 226.449 230.238 235.224 240.571 244.781 245.118 241.408 239.172 241.098 244.91 248.266 251.599 255.024 258.246 260.715 263.67 266.729 268.622 269.879 271.019 271.984 273.016 274.243 275.617 276.765 277.389 277.666 278.009 278.79 280.189 281.745 283.189 284.72 286.654 288.73 290.09 291.001 292.046 293.197 294.307 295.218 295.926 296.463 296.76 296.844 296.719 296.745 296.17 296.004 297.6 298.964 298.153 297.075 296.535 296.342 296.565 297.016 297.311 297.376 297.457 297.907 299.003 299.799 298.517 297.696 297.16 296.686 296.229 295.867 295.554 295.174 294.788 294.589 294.477 294.253 293.951 293.772 293.697 293.743 293.874 293.852 293.594 293.213 292.648 291.945 291.352 290.916 290.483 290.147 289.928 289.4 288.364 286.782 283.808 278.887 275.475 273.666 272.287 271.263 271.373 272.014 271.827 271.529 271.424 271.327 270.19 266.72 262.565 257.606 254.598 252.97 252.636 252.773 252.549 252.016 251.047 249.401 247.464 245.534 244.585 246.261 248.097 245.861 239.45 237.142 238.487 239.599 239.627 226.368 230.164 235.077 240.4 244.737 245.464 242.373 240.225 241.761 245.261 248.942 252.663 256.126 259.344 262.002 264.95 267.799 269.444 270.476 271.494 272.337 273.2 274.22 275.458 276.503 277.019 277.272 277.716 278.7 280.328 281.935 283.335 284.77 286.545 288.486 289.87 290.869 291.941 293.015 294.023 294.866 295.588 296.372 297.025 297.35 297.294 296.84 296.649 295.876 296.821 298.745 299.432 298.72 298.225 297.235 296.453 296.347 296.863 297.101 297.249 297.874 299.697 299.725 298.448 297.636 297.044 296.538 296.142 295.82 295.433 295.021 294.723 294.52 294.307 294.074 293.808 293.558 293.423 293.528 293.696 293.672 293.493 293.209 292.653 291.967 291.447 291.011 290.53 290.168 289.924 289.388 288.403 286.896 284.124 279.574 276.208 274.334 272.713 271.688 272.254 272.991 272.667 272.358 272.212 271.891 270.445 266.936 261.923 257.643 254.554 252.631 251.881 251.478 250.902 250.278 249.642 248.125 246.379 244.76 244.199 246.095 248.079 245.844 239.982 236.868 238.635 239.593 239.719 226.304 230.09 234.903 240.193 244.613 245.738 243.327 241.445 242.563 245.87 249.897 253.795 257.22 260.429 263.188 266.065 268.55 270.015 270.898 271.796 272.597 273.358 274.216 275.317 276.249 276.682 276.952 277.519 278.652 280.383 282.033 283.427 284.785 286.423 288.219 289.61 290.74 291.907 292.908 293.801 294.574 295.255 296.077 296.909 297.462 297.632 297.268 296.916 296.455 296.742 297.968 298.773 299.015 299.218 298.244 297.121 296.426 296.44 296.657 296.816 297.592 299.158 299.054 298.328 297.705 297.14 296.613 296.224 295.842 295.353 294.892 294.572 294.312 294.098 293.919 293.67 293.396 293.274 293.394 293.528 293.499 293.386 293.142 292.611 291.999 291.534 291.058 290.539 290.169 289.896 289.368 288.434 286.939 284.29 280.106 276.852 274.998 273.378 272.543 273.374 273.759 273.353 273.017 272.837 272.417 270.761 267.527 262.615 258.746 255.286 253.31 252.032 250.753 249.275 248.4 248.082 246.941 245.475 244.116 243.906 246.021 248.11 245.859 240.068 237.021 238.571 239.685 239.744 226.229 229.979 234.752 240.011 244.518 246.065 244.126 242.501 243.231 246.534 250.991 254.922 258.264 261.42 264.173 266.92 269.119 270.424 271.216 271.997 272.775 273.481 274.212 275.194 276.021 276.403 276.73 277.426 278.644 280.382 282.078 283.46 284.785 286.343 288.018 289.384 290.589 291.819 292.774 293.625 294.397 295.072 295.875 296.737 297.421 297.807 297.772 297.508 297.527 297.405 297.6 297.955 297.996 299.378 299.993 299.241 298.18 296.776 296.321 296.445 297.348 298.304 298.71 298.291 297.815 297.278 296.74 296.31 295.855 295.3 294.782 294.396 294.099 293.909 293.727 293.478 293.248 293.176 293.261 293.339 293.332 293.267 293.032 292.549 292.009 291.55 291.039 290.525 290.147 289.828 289.314 288.426 286.917 284.265 280.332 277.311 275.509 274.074 273.574 274.209 274.273 273.819 273.489 273.387 273.041 271.538 267.598 264.272 261.179 257.201 254.797 252.754 250.485 248.197 246.87 246.658 245.892 244.632 243.597 243.712 245.995 248.123 245.847 240.14 236.729 238.609 239.778 239.744 226.142 229.902 234.583 239.791 244.334 246.226 244.759 243.735 243.699 246.954 252.2 256.072 259.29 262.347 264.962 267.573 269.552 270.716 271.462 272.141 272.891 273.575 274.204 275.074 275.81 276.187 276.618 277.445 278.665 280.386 282.072 283.44 284.762 286.29 287.898 289.229 290.454 291.705 292.642 293.509 294.33 295.043 295.79 296.548 297.235 297.793 298.076 298.023 298.123 298.053 298.105 298.01 297.755 298.266 299.432 300.44 299.731 297.716 296.559 296.445 297.146 298.248 298.579 298.337 297.894 297.373 296.848 296.382 295.881 295.294 294.718 294.251 293.931 293.733 293.486 293.23 293.078 293.05 293.086 293.15 293.204 293.164 292.922 292.5 292.016 291.534 291.015 290.535 290.121 289.718 289.21 288.375 286.868 284.214 280.576 277.822 276.013 274.753 274.301 274.642 274.622 274.165 273.868 273.838 273.553 272.57 268.842 264.923 262.602 260.051 257.299 253.989 250.893 247.743 245.844 245.498 245.087 244.014 243.27 243.642 246.05 248.099 245.798 240.152 236.8 238.665 239.785 239.744 226.108 229.769 234.419 239.564 244.074 246.313 245.459 244.977 244.516 247.363 253.391 257.455 260.473 263.228 265.629 268.073 269.892 270.964 271.673 272.272 272.965 273.647 274.211 274.956 275.609 276.047 276.63 277.561 278.755 280.394 282.017 283.369 284.69 286.21 287.8 289.115 290.345 291.589 292.536 293.422 294.3 295.075 295.778 296.351 296.924 297.598 298.161 298.445 298.546 298.624 298.653 298.244 298.201 297.907 298.51 299.554 299.589 298.192 296.606 296.549 297.047 298.065 298.657 298.436 297.957 297.446 296.956 296.491 295.973 295.351 294.694 294.128 293.756 293.498 293.193 292.964 292.868 292.821 292.831 292.953 293.076 293.038 292.809 292.467 292.018 291.494 290.996 290.563 290.092 289.586 289.086 288.309 286.877 284.471 281.185 278.553 276.561 275.3 274.753 274.873 274.884 274.519 274.322 274.348 274.135 273.67 272.155 268.695 264.731 262.014 259.963 255.618 251.797 247.811 245.291 244.705 244.51 243.62 243.091 243.704 246.139 248.07 245.714 240.101 236.796 238.643 239.783 239.943 226.07 229.684 234.241 239.288 243.816 246.305 245.969 246.034 245.417 247.714 254.108 258.582 261.474 264.012 266.147 268.36 270.089 271.152 271.838 272.361 272.998 273.707 274.253 274.884 275.477 275.984 276.673 277.68 278.867 280.39 281.954 283.307 284.634 286.129 287.677 288.974 290.21 291.45 292.425 293.325 294.207 294.994 295.712 296.255 296.783 297.479 298.159 298.617 298.95 299.16 299.283 299.383 299.373 299.185 298.937 298.32 297.868 297.093 296.945 297.031 297.486 298.595 298.786 298.521 298.012 297.508 297.021 296.554 296.03 295.378 294.658 294.024 293.579 293.271 292.979 292.782 292.674 292.593 292.613 292.752 292.852 292.834 292.7 292.43 291.967 291.397 290.904 290.487 290.001 289.493 289.035 288.312 287.018 285.012 282.083 279.283 277.015 275.605 274.969 274.978 275.05 274.848 274.778 274.798 274.619 274.304 273.711 272.216 268.487 263.74 261.684 257.227 253.024 248.545 245.414 244.407 244.218 243.469 243.126 243.953 246.315 247.966 245.628 240.039 236.901 238.681 239.783 239.955 225.977 229.535 234.075 239.015 243.488 246.201 246.404 246.819 246.209 248.065 254.491 259.432 262.335 264.7 266.56 268.573 270.225 271.307 271.972 272.415 273.001 273.765 274.318 274.851 275.383 275.916 276.669 277.769 278.946 280.388 281.901 283.274 284.634 286.103 287.581 288.851 290.083 291.302 292.3 293.226 294.098 294.866 295.608 296.21 296.754 297.42 298.093 298.602 299.049 299.424 299.652 299.784 299.784 299.652 299.509 299.169 298.146 297.265 297.411 297.806 298.396 298.94 298.954 298.58 298.046 297.564 297.083 296.602 296.064 295.387 294.623 293.952 293.452 293.104 292.804 292.592 292.466 292.402 292.451 292.559 292.617 292.651 292.61 292.372 291.898 291.299 290.762 290.316 289.844 289.377 288.968 288.303 287.173 285.523 283.084 279.953 277.448 275.817 275.099 275.057 275.198 275.212 275.296 275.313 275.144 274.906 274.642 274.043 272.525 266.94 263.034 259.088 254.522 249.83 246.182 244.701 244.301 243.772 243.556 244.399 246.553 247.86 245.519 239.771 236.976 238.647 239.817 239.955 225.892 229.444 233.894 238.721 243.159 246.003 246.648 247.448 246.88 248.404 254.721 260.101 263.087 265.287 266.902 268.74 270.342 271.438 272.069 272.432 272.972 273.805 274.392 274.842 275.302 275.842 276.655 277.82 279.0 280.392 281.856 283.25 284.666 286.115 287.532 288.782 290.001 291.18 292.174 293.115 293.991 294.748 295.493 296.154 296.744 297.384 297.994 298.48 298.952 299.376 299.647 299.812 299.845 299.808 299.845 299.723 299.16 298.544 297.953 298.837 299.151 299.311 299.123 298.629 298.091 297.65 297.19 296.681 296.107 295.397 294.589 293.882 293.348 292.968 292.645 292.386 292.24 292.21 292.282 292.361 292.413 292.501 292.499 292.264 291.828 291.24 290.625 290.106 289.648 289.211 288.821 288.22 287.269 285.949 284.025 280.779 278.004 276.046 275.22 275.162 275.413 275.687 275.941 275.98 275.759 275.472 275.225 274.847 274.054 270.502 264.016 260.982 256.115 251.446 247.475 245.56 245.042 244.511 244.316 244.973 246.785 247.711 245.374 239.651 237.089 238.698 239.864 239.954 225.83 229.327 233.701 238.414 242.754 245.729 246.818 248.026 247.729 248.801 255.028 260.688 263.851 265.875 267.287 268.906 270.45 271.542 272.129 272.413 272.917 273.797 274.449 274.844 275.246 275.808 276.669 277.851 279.056 280.416 281.812 283.214 284.683 286.119 287.509 288.761 289.944 291.059 292.002 292.923 293.839 294.642 295.4 296.078 296.716 297.394 298.017 298.467 298.858 299.197 299.421 299.598 299.7 299.691 299.748 299.794 299.56 299.249 299.212 299.407 299.545 299.524 299.225 298.678 298.173 297.775 297.33 296.787 296.15 295.41 294.569 293.807 293.237 292.853 292.531 292.231 292.035 291.959 291.987 292.063 292.184 292.291 292.263 292.066 291.755 291.217 290.526 289.921 289.455 288.996 288.583 288.049 287.241 286.181 284.681 281.927 278.753 276.431 275.371 275.292 275.638 276.046 276.451 276.591 276.377 276.082 275.777 275.449 274.956 272.834 265.872 261.757 257.831 253.203 249.193 247.076 246.232 245.529 245.215 245.636 247.053 247.666 245.227 239.471 237.096 238.753 239.94 239.947 225.774 229.198 233.518 238.088 242.38 245.398 246.866 248.303 249.584 249.186 255.12 260.99 264.508 266.405 267.657 269.086 270.549 271.594 272.138 272.397 272.862 273.734 274.455 274.845 275.25 275.839 276.709 277.896 279.124 280.464 281.807 283.21 284.688 286.088 287.466 288.71 289.837 290.895 291.796 292.706 293.666 294.55 295.374 296.063 296.716 297.433 298.094 298.553 298.926 299.218 299.377 299.476 299.561 299.558 299.557 299.622 299.603 299.54 299.534 299.556 299.561 299.526 299.271 298.789 298.331 297.921 297.456 296.872 296.17 295.402 294.565 293.801 293.228 292.84 292.517 292.191 291.936 291.763 291.699 291.757 291.909 292.021 292.008 291.889 291.66 291.149 290.464 289.871 289.387 288.893 288.46 287.965 287.201 286.24 285.019 282.963 279.652 277.046 275.594 275.45 275.867 276.355 276.906 277.228 277.123 276.762 276.252 275.819 275.547 274.284 268.575 262.576 260.176 254.972 251.211 248.845 247.629 246.734 246.227 246.323 247.353 247.563 245.085 239.792 237.553 238.846 239.969 239.95 225.723 229.09 233.316 237.751 241.952 244.978 246.656 248.388 249.923 249.585 255.28 261.128 265.056 266.89 268.004 269.285 270.634 271.605 272.132 272.402 272.83 273.64 274.411 274.837 275.273 275.891 276.787 277.973 279.197 280.505 281.826 283.248 284.718 286.076 287.433 288.649 289.71 290.73 291.647 292.582 293.574 294.499 295.357 296.062 296.732 297.452 298.101 298.559 298.927 299.216 299.348 299.383 299.423 299.438 299.466 299.58 299.671 299.705 299.659 299.567 299.525 299.541 299.365 298.975 298.552 298.105 297.588 296.948 296.171 295.35 294.512 293.785 293.266 292.912 292.572 292.203 291.904 291.662 291.504 291.493 291.615 291.726 291.761 291.7 291.477 291.012 290.434 289.899 289.363 288.826 288.382 287.913 287.179 286.266 285.253 283.743 280.886 277.898 276.057 275.696 276.107 276.579 277.159 277.619 277.655 277.332 276.757 276.202 275.946 275.069 270.749 262.954 261.485 256.516 253.077 250.88 249.204 247.996 247.243 247.015 247.656 247.539 244.974 241.558 237.752 238.994 240.018 239.967 225.63 228.969 233.112 237.383 241.476 244.564 246.444 248.47 250.394 250.539 255.52 261.273 265.546 267.342 268.357 269.498 270.709 271.594 272.125 272.43 272.817 273.527 274.326 274.826 275.296 275.959 276.902 278.07 279.26 280.521 281.833 283.289 284.762 286.092 287.423 288.605 289.605 290.606 291.579 292.566 293.573 294.482 295.324 296.055 296.762 297.483 298.117 298.567 298.889 299.117 299.226 299.257 299.265 299.284 299.385 299.591 299.731 299.766 299.688 299.573 299.556 299.612 299.493 299.171 298.776 298.296 297.717 297.005 296.15 295.261 294.414 293.744 293.322 293.051 292.709 292.293 291.949 291.65 291.397 291.282 291.316 291.394 291.46 291.413 291.173 290.807 290.421 289.955 289.334 288.75 288.286 287.789 287.094 286.271 285.447 284.329 282.2 279.011 276.77 276.065 276.307 276.71 277.248 277.82 278.102 277.92 277.258 276.568 276.351 275.614 271.981 263.427 262.207 257.84 254.764 252.551 250.664 249.188 248.187 247.722 247.967 247.474 244.853 241.639 238.051 239.118 240.105 240.007 225.51 228.849 232.903 237.028 240.997 244.129 246.082 248.295 250.448 252.175 255.898 261.336 265.98 267.835 268.733 269.72 270.781 271.572 272.133 272.513 272.831 273.394 274.206 274.816 275.324 276.047 277.031 278.162 279.289 280.493 281.802 283.293 284.772 286.105 287.44 288.608 289.564 290.549 291.565 292.589 293.597 294.48 295.315 296.091 296.847 297.581 298.209 298.642 298.863 298.947 299.013 299.112 299.123 299.104 299.253 299.568 299.762 299.791 299.722 299.64 299.647 299.7 299.612 299.347 298.999 298.532 297.906 297.099 296.152 295.207 294.369 293.793 293.48 293.291 292.978 292.533 292.124 291.753 291.415 291.202 291.101 291.043 291.029 290.945 290.719 290.511 290.311 289.889 289.231 288.631 288.102 287.488 286.824 286.158 285.504 284.647 283.033 280.128 277.497 276.494 276.593 276.888 277.341 277.923 278.357 278.375 277.819 277.09 276.734 276.014 272.902 264.014 262.606 258.756 256.054 253.933 251.982 250.216 249.035 248.385 248.265 247.382 244.792 241.57 238.332 239.281 240.184 240.058 225.46 228.735 232.67 236.659 240.487 243.605 245.746 248.05 250.198 252.634 255.896 261.141 266.188 268.281 269.112 269.907 270.849 271.573 272.176 272.619 272.869 273.306 274.107 274.811 275.341 276.095 277.088 278.172 279.252 280.448 281.759 283.246 284.721 286.095 287.46 288.626 289.566 290.557 291.573 292.564 293.544 294.475 295.39 296.225 296.991 297.683 298.228 298.579 298.723 298.759 298.833 298.981 298.999 298.989 299.202 299.596 299.83 299.86 299.806 299.707 299.702 299.779 299.753 299.549 299.25 298.836 298.216 297.329 296.27 295.293 294.543 294.078 293.813 293.613 293.282 292.833 292.391 291.944 291.542 291.293 291.129 290.968 290.833 290.678 290.444 290.254 290.076 289.678 289.071 288.509 287.894 287.125 286.475 285.917 285.387 284.825 283.652 281.242 278.369 277.058 277.035 277.176 277.509 278.057 278.546 278.843 278.381 277.619 277.126 276.209 273.248 265.075 262.508 259.486 257.096 255.153 253.025 251.086 249.804 249.012 248.538 247.362 244.769 241.688 238.643 239.513 240.302 240.096 225.366 228.608 232.428 236.25 240.009 243.033 245.245 247.727 249.887 252.693 256.043 260.888 266.193 268.631 269.5 270.118 270.929 271.608 272.245 272.726 272.927 273.271 274.037 274.792 275.327 276.081 277.075 278.113 279.179 280.421 281.751 283.215 284.702 286.114 287.483 288.616 289.56 290.595 291.617 292.549 293.489 294.474 295.486 296.374 297.135 297.764 298.193 298.433 298.522 298.578 298.675 298.799 298.828 298.886 299.176 299.605 299.869 299.93 299.895 299.78 299.75 299.841 299.875 299.731 299.47 299.097 298.506 297.585 296.464 295.484 294.848 294.511 294.299 294.083 293.732 293.282 292.807 292.251 291.72 291.386 291.177 290.984 290.782 290.564 290.293 290.059 289.841 289.445 288.88 288.333 287.633 286.739 286.086 285.59 285.09 284.813 284.104 282.257 279.454 277.763 277.485 277.516 277.785 278.278 278.733 279.187 278.91 278.169 277.365 276.144 273.127 266.102 262.173 260.414 257.875 256.109 253.921 251.853 250.422 249.522 248.753 247.359 244.786 241.727 239.029 239.768 240.442 240.134 225.313 228.48 232.176 235.861 239.473 242.466 244.753 247.402 249.471 252.133 256.062 260.439 265.975 268.909 269.86 270.357 271.042 271.68 272.333 272.82 272.989 273.271 273.988 274.745 275.278 276.019 277.013 278.019 279.096 280.416 281.784 283.231 284.752 286.179 287.496 288.569 289.533 290.643 291.69 292.594 293.502 294.514 295.595 296.503 297.24 297.815 298.159 298.296 298.341 298.423 298.512 298.58 298.642 298.791 299.11 299.538 299.857 299.986 299.971 299.851 299.795 299.852 299.912 299.841 299.632 299.291 298.729 297.816 296.693 295.758 295.245 295.058 294.957 294.769 294.416 293.941 293.413 292.731 292.008 291.481 291.182 290.98 290.765 290.506 290.202 289.928 289.672 289.252 288.65 288.048 287.314 286.397 285.714 285.244 284.807 284.611 284.253 282.791 280.442 278.594 278.025 278.013 278.244 278.589 278.968 279.512 279.438 278.597 277.517 275.79 272.691 266.68 262.454 260.976 258.765 256.895 254.666 252.499 250.968 249.936 248.969 247.396 244.84 241.485 239.436 240.043 240.563 240.201 225.288 228.362 231.912 235.46 238.917 241.905 244.367 247.022 249.018 251.659 255.961 259.667 265.484 269.09 270.237 270.676 271.221 271.808 272.434 272.89 273.066 273.307 273.946 274.665 275.204 275.944 276.938 277.912 279.021 280.435 281.848 283.298 284.862 286.261 287.458 288.466 289.478 290.679 291.769 292.71 293.639 294.666 295.748 296.62 297.293 297.778 298.056 298.124 298.148 298.238 298.314 298.37 298.499 298.716 299.006 299.438 299.848 300.024 299.985 299.897 299.85 299.847 299.906 299.924 299.794 299.49 298.937 298.037 296.951 296.137 295.805 295.806 295.877 295.733 295.347 294.772 294.169 293.501 292.658 291.81 291.216 290.9 290.685 290.414 290.073 289.76 289.459 288.996 288.35 287.722 287.075 286.234 285.518 285.02 284.647 284.405 284.161 283.093 281.28 279.638 278.798 278.599 278.703 279.025 279.46 279.907 279.858 278.969 277.609 275.302 271.311 267.533 263.481 260.685 259.862 257.624 255.493 253.079 251.45 250.307 249.123 247.472 244.966 241.392 239.91 240.351 240.682 240.262 225.159 228.219 231.669 235.03 238.374 241.341 243.86 246.471 248.507 251.133 255.033 258.981 264.815 269.081 270.512 270.981 271.417 271.945 272.523 272.924 273.126 273.372 273.907 274.572 275.144 275.913 276.901 277.852 278.985 280.443 281.85 283.319 284.898 286.215 287.305 288.328 289.447 290.719 291.826 292.809 293.814 294.865 295.891 296.696 297.291 297.659 297.829 297.878 297.939 298.044 298.138 298.226 298.38 298.617 298.937 299.42 299.861 299.987 299.914 299.905 299.92 299.913 299.968 300.014 299.908 299.648 299.136 298.269 297.273 296.635 296.498 296.657 296.808 296.639 296.137 295.409 294.748 294.146 293.324 292.322 291.429 290.888 290.581 290.282 289.893 289.485 289.087 288.608 288.014 287.438 286.857 286.079 285.332 284.812 284.509 284.241 283.896 283.167 281.922 280.554 279.551 279.173 279.307 279.78 280.199 280.39 280.237 279.267 277.666 274.87 270.785 269.02 265.094 261.518 259.68 258.186 256.565 253.644 251.921 250.608 249.349 247.678 244.896 241.481 240.371 240.656 240.813 240.312 225.102 228.087 231.425 234.65 237.813 240.776 243.448 246.01 247.925 250.444 254.279 258.688 263.937 268.903 270.691 271.24 271.589 272.073 272.592 272.937 273.165 273.428 273.867 274.493 275.133 275.926 276.885 277.817 278.954 280.399 281.772 283.253 284.809 286.028 287.068 288.185 289.442 290.779 291.886 292.89 293.948 294.991 295.925 296.657 297.22 297.524 297.619 297.689 297.797 297.901 297.995 298.092 298.244 298.51 298.904 299.419 299.83 299.921 299.879 299.927 299.952 299.955 300.018 300.046 299.937 299.74 299.312 298.536 297.722 297.291 297.295 297.574 297.867 297.752 297.196 296.332 295.55 294.894 294.077 292.984 291.849 291.007 290.469 290.061 289.634 289.16 288.67 288.183 287.678 287.17 286.58 285.796 285.032 284.531 284.282 284.052 283.656 283.085 282.226 281.213 280.326 279.973 280.102 280.598 280.852 280.842 280.502 279.511 277.786 274.629 270.725 269.965 267.243 263.055 260.529 258.779 257.008 254.467 252.08 251.326 250.242 247.872 244.237 241.779 240.8 240.942 240.956 240.365 225.012 227.959 231.181 234.252 237.234 240.245 242.969 245.524 247.356 249.695 253.449 258.171 262.797 268.569 270.778 271.453 271.732 272.182 272.647 272.94 273.193 273.472 273.828 274.437 275.168 275.972 276.872 277.787 278.911 280.303 281.624 283.081 284.578 285.717 286.784 288.04 289.437 290.815 291.914 292.934 294.007 295.012 295.836 296.498 297.061 297.358 297.435 297.547 297.691 297.776 297.858 297.97 298.135 298.443 298.902 299.408 299.78 299.896 299.913 299.958 299.96 299.985 300.066 300.069 299.968 299.841 299.5 298.838 298.241 298.019 298.132 298.575 299.141 299.198 298.526 297.603 296.674 295.852 294.968 293.82 292.51 291.356 290.456 289.793 289.302 288.878 288.399 287.885 287.402 286.871 286.164 285.344 284.66 284.239 284.031 283.848 283.493 282.994 282.34 281.597 280.965 280.643 280.874 281.186 281.202 281.067 280.679 279.675 278.013 274.853 270.913 270.391 269.017 265.91 262.122 260.081 257.968 254.599 251.475 251.322 251.806 248.064 243.902 242.219 241.226 241.24 241.103 240.439 224.878 227.831 230.944 233.783 236.683 239.719 242.49 244.938 246.685 248.894 252.55 257.255 261.348 267.979 270.742 271.632 271.858 272.278 272.691 272.944 273.22 273.505 273.803 274.426 275.249 276.032 276.838 277.737 278.834 280.128 281.363 282.742 284.156 285.289 286.491 287.956 289.419 290.769 291.877 292.933 293.983 294.926 295.664 296.265 296.807 297.085 297.156 297.326 297.517 297.597 297.69 297.851 298.069 298.42 298.889 299.359 299.746 299.933 299.967 299.998 300.028 300.108 300.193 300.18 300.104 300.016 299.713 299.147 298.739 298.653 298.877 299.588 300.238 300.284 299.64 298.496 297.572 296.445 295.535 294.448 293.259 292.081 290.909 289.848 289.139 288.735 288.368 287.845 287.278 286.668 285.897 285.097 284.478 284.053 283.811 283.643 283.35 282.907 282.35 281.745 281.302 281.252 281.593 281.456 281.327 281.147 280.708 279.83 278.275 275.441 271.403 270.804 270.286 268.778 265.401 262.548 259.345 255.605 252.313 251.094 251.404 249.114 244.518 242.743 241.686 241.543 241.269 240.505 224.765 227.673 230.698 233.324 236.104 239.14 241.949 244.362 245.932 248.04 251.628 256.119 260.436 267.188 270.568 271.736 271.95 272.333 272.715 272.952 273.243 273.532 273.815 274.46 275.327 276.049 276.771 277.67 278.725 279.901 281.034 282.354 283.772 285.001 286.438 288.063 289.485 290.712 291.835 292.933 293.926 294.806 295.529 296.092 296.57 296.788 296.868 297.101 297.36 297.467 297.565 297.746 297.999 298.361 298.793 299.25 299.707 299.939 299.954 300.035 300.168 300.247 300.283 300.28 300.214 300.108 299.858 299.417 299.058 298.954 299.227 299.859 300.723 302.351 301.618 301.427 299.982 298.475 297.526 296.688 294.892 292.573 291.395 290.333 289.431 288.811 288.383 287.836 287.224 286.597 285.824 285.053 284.472 284.005 283.659 283.455 283.227 282.865 282.41 281.975 281.785 281.92 281.964 281.594 281.33 281.106 280.66 279.911 278.641 276.489 272.119 271.446 271.211 270.268 268.398 265.769 261.246 257.323 253.11 251.066 250.888 250.058 245.274 243.243 242.155 241.832 241.437 240.563 224.71 227.544 230.446 232.86 235.547 238.547 241.399 243.789 245.177 247.201 250.698 254.657 259.776 266.211 270.297 271.788 272.025 272.362 272.729 272.96 273.256 273.561 273.856 274.519 275.379 276.021 276.689 277.58 278.586 279.651 280.721 282.061 283.596 285.01 286.661 288.32 289.595 290.67 291.791 292.916 293.849 294.67 295.389 295.932 296.349 296.532 296.664 296.958 297.245 297.353 297.447 297.646 297.929 298.297 298.702 299.163 299.686 299.954 299.998 300.158 300.317 300.315 300.328 300.374 300.286 300.163 300.025 299.699 299.249 299.033 299.096 299.644 301.024 301.706 301.714 301.44 299.927 298.327 296.927 296.208 295.118 293.661 292.288 290.834 290.032 289.168 288.49 287.846 287.224 286.66 285.952 285.207 284.641 284.141 283.701 283.444 283.239 282.949 282.664 282.432 282.136 282.054 282.081 281.698 281.294 281.0 280.558 279.927 278.919 277.125 273.807 272.184 271.885 271.069 269.723 267.68 263.841 258.773 254.585 252.005 250.812 250.531 245.573 243.687 242.614 242.111 241.6 240.635 224.641 227.399 230.196 232.432 235.01 237.971 240.802 243.079 244.369 246.372 249.77 253.555 258.933 264.968 269.928 271.802 272.1 272.378 272.737 272.97 273.266 273.596 273.924 274.583 275.385 275.95 276.593 277.459 278.403 279.397 280.465 281.891 283.644 285.306 287.046 288.579 289.664 290.609 291.713 292.854 293.763 294.545 295.253 295.776 296.133 296.316 296.516 296.845 297.105 297.188 297.302 297.544 297.86 298.241 298.646 299.135 299.713 300.029 300.127 300.322 300.436 300.346 300.375 300.462 300.344 300.255 300.233 299.887 299.241 298.675 298.724 298.934 300.324 300.95 301.949 301.04 299.772 297.65 295.858 294.475 294.284 293.759 293.385 292.401 290.595 289.801 288.809 287.971 287.288 286.815 286.224 285.484 284.859 284.331 283.865 283.617 283.441 283.231 283.063 282.716 282.1 281.907 282.017 281.745 281.308 280.922 280.456 279.908 279.101 277.573 275.09 272.766 272.26 271.626 270.536 268.966 265.981 260.45 255.711 252.441 250.826 250.278 246.105 244.038 243.042 242.373 241.766 240.725 224.593 227.251 229.944 231.97 234.463 237.388 240.204 242.366 243.494 245.373 248.787 252.497 258.081 263.483 269.369 271.768 272.195 272.407 272.751 272.99 273.282 273.65 274.024 274.634 275.323 275.824 276.452 277.262 278.133 279.147 280.301 281.858 283.863 285.75 287.392 288.67 289.617 290.536 291.619 292.752 293.694 294.457 295.131 295.609 295.918 296.121 296.374 296.709 296.905 296.976 297.148 297.436 297.748 298.127 298.58 299.14 299.77 300.153 300.282 300.412 300.456 300.369 300.415 300.461 300.356 300.406 300.378 299.724 298.818 298.06 298.297 299.111 299.506 299.974 300.583 300.57 298.986 297.354 295.188 293.78 293.269 293.311 293.099 292.323 290.936 290.069 289.123 288.184 287.448 287.029 286.541 285.768 285.016 284.424 283.986 283.822 283.747 283.481 283.18 282.753 281.869 281.403 281.587 281.677 281.354 280.967 280.467 279.899 279.196 277.842 275.486 273.0 272.356 271.947 271.183 269.933 267.535 262.564 256.675 253.534 251.162 249.928 246.751 244.484 243.379 242.615 241.94 240.807 224.453 227.104 229.707 231.549 233.899 236.844 239.552 241.59 242.64 244.487 247.81 251.533 256.128 262.442 268.75 271.69 272.284 272.462 272.781 273.02 273.306 273.71 274.113 274.644 275.202 275.663 276.291 277.047 277.906 279.042 280.293 281.915 284.025 285.967 287.465 288.565 289.517 290.542 291.619 292.716 293.645 294.367 294.977 295.43 295.754 295.991 296.25 296.56 296.739 296.819 297.019 297.3 297.591 298.009 298.536 299.138 299.79 300.232 300.346 300.365 300.381 300.388 300.416 300.376 300.372 300.531 300.276 299.225 297.835 297.62 298.794 298.762 299.417 299.806 300.301 299.482 298.139 296.422 294.966 293.748 293.194 292.991 292.543 291.969 291.468 290.3 289.309 288.133 287.616 287.343 286.875 285.953 284.953 284.171 283.724 283.828 283.866 283.479 283.046 282.571 281.49 280.441 280.62 281.306 281.228 280.95 280.486 279.883 279.179 277.905 275.446 273.3 272.631 272.297 271.637 270.657 268.724 264.361 258.077 253.819 251.302 249.946 247.395 245.023 243.649 242.832 242.144 240.883 224.413 226.951 229.461 231.162 233.373 236.292 238.909 240.836 241.749 243.611 246.809 250.649 254.995 261.675 268.139 271.581 272.363 272.519 272.815 273.051 273.334 273.762 274.18 274.624 275.062 275.493 276.134 276.884 277.815 279.117 280.449 282.034 284.1 286.002 287.407 288.429 289.448 290.568 291.639 292.683 293.562 294.239 294.807 295.265 295.636 295.89 296.099 296.35 296.522 296.623 296.839 297.131 297.46 297.955 298.546 299.143 299.779 300.263 300.373 300.298 300.304 300.424 300.476 300.409 300.477 300.591 300.104 298.566 297.622 298.293 298.802 298.909 299.935 300.249 299.875 298.926 297.508 295.966 294.709 293.719 293.201 292.908 292.006 291.256 290.395 290.114 288.977 288.111 287.635 287.626 286.821 284.669 283.159 283.124 282.141 283.568 283.84 283.371 282.759 282.145 281.035 279.457 279.557 280.578 280.757 280.601 280.376 279.792 279.099 277.864 275.385 273.805 273.203 272.699 271.996 271.226 269.596 265.888 259.555 255.156 252.208 250.109 247.959 245.444 243.932 243.008 242.33 240.96 224.394 226.789 229.209 230.795 232.859 235.741 238.244 240.016 240.906 242.665 245.878 249.721 254.002 260.836 267.472 271.448 272.421 272.565 272.845 273.077 273.361 273.805 274.223 274.581 274.923 275.338 275.992 276.793 277.862 279.342 280.746 282.259 284.175 285.967 287.307 288.311 289.394 290.555 291.613 292.601 293.437 294.101 294.676 295.149 295.549 295.78 295.908 296.092 296.26 296.387 296.623 296.957 297.347 297.905 298.535 299.124 299.75 300.251 300.354 300.226 300.246 300.461 300.582 300.553 300.626 300.603 300.017 298.486 298.889 299.344 299.485 299.622 300.831 300.476 299.786 298.861 297.214 295.847 294.687 293.85 293.117 292.828 291.757 289.819 289.339 288.523 287.514 287.479 287.318 287.526 286.766 284.437 282.175 281.01 280.925 283.189 283.751 283.214 282.456 281.772 280.688 279.232 278.81 279.473 279.754 279.905 280.068 279.62 279.006 277.771 275.722 274.569 273.9 273.14 272.353 271.681 270.296 267.208 261.166 255.791 252.302 250.587 248.426 245.823 244.221 243.158 242.487 241.035 224.264 226.642 228.971 230.401 232.368 235.176 237.586 239.182 240.038 241.687 244.808 248.886 253.159 260.157 266.672 271.272 272.452 272.593 272.86 273.095 273.382 273.839 274.233 274.506 274.786 275.196 275.884 276.81 278.041 279.681 281.152 282.626 284.332 285.927 287.18 288.219 289.327 290.476 291.509 292.451 293.265 293.98 294.608 295.078 295.443 295.615 295.684 295.838 296.018 296.154 296.4 296.783 297.222 297.808 298.475 299.116 299.769 300.229 300.285 300.15 300.183 300.419 300.629 300.719 300.784 300.643 300.123 299.262 299.438 299.935 300.058 301.084 301.532 300.173 299.545 298.227 297.012 295.698 294.73 294.09 293.054 292.011 291.091 289.787 288.672 286.988 286.584 286.495 286.785 287.117 286.42 284.082 281.32 280.111 280.61 282.948 283.669 283.127 282.217 281.454 280.405 279.203 278.254 278.272 278.642 278.903 279.657 279.473 278.953 277.758 276.163 275.267 274.578 273.704 272.755 272.066 270.907 268.1 262.917 257.273 253.839 250.927 248.788 246.225 244.46 243.309 242.63 241.101 224.19 226.463 228.719 230.053 231.93 234.636 236.945 238.37 239.256 240.738 243.592 247.967 252.436 258.772 265.915 271.087 272.45 272.589 272.847 273.102 273.388 273.852 274.213 274.426 274.691 275.11 275.852 276.919 278.278 279.975 281.477 282.953 284.489 285.856 287.018 288.14 289.284 290.41 291.413 292.307 293.08 293.812 294.484 294.959 295.283 295.436 295.5 295.641 295.803 295.93 296.19 296.63 297.167 297.848 298.595 299.288 299.915 300.265 300.261 300.131 300.1 300.229 300.474 300.714 300.848 300.717 300.227 299.263 298.878 300.057 300.76 301.7 301.552 299.718 297.269 297.4 296.991 295.494 294.668 294.087 293.012 291.838 290.931 289.876 288.636 286.669 285.07 285.024 285.861 286.647 286.161 283.852 281.356 279.808 280.695 282.763 283.54 283.032 281.687 281.143 280.013 278.884 277.942 277.747 277.73 278.135 279.226 279.405 278.905 277.844 276.597 275.887 275.25 274.298 273.24 272.456 271.375 269.067 264.454 258.504 253.88 251.414 249.017 246.557 244.628 243.465 242.754 241.161 224.062 226.273 228.47 229.7 231.551 234.087 236.326 237.632 238.474 239.674 242.399 247.022 251.74 258.052 265.263 270.898 272.429 272.565 272.823 273.097 273.376 273.842 274.18 274.355 274.618 275.057 275.851 277.041 278.509 280.178 281.652 283.109 284.519 285.71 286.843 288.074 289.253 290.329 291.281 292.134 292.881 293.616 294.317 294.813 295.118 295.252 295.298 295.406 295.555 295.715 296.03 296.531 297.18 297.966 298.764 299.463 300.029 300.294 300.256 300.137 300.045 300.056 300.29 300.62 300.822 300.743 300.247 299.12 298.519 299.838 301.088 302.305 301.426 300.198 298.903 299.596 297.249 295.571 294.693 294.017 292.961 291.68 290.647 289.601 288.115 286.891 284.816 284.237 285.136 285.906 286.112 284.217 281.619 280.2 280.587 282.568 283.222 282.685 281.203 280.797 279.453 278.454 277.738 277.484 277.505 278.065 278.98 279.322 278.901 277.997 276.985 276.366 275.819 274.876 273.759 272.862 271.833 269.807 266.022 259.866 255.81 252.382 249.349 246.822 244.802 243.637 242.857 241.21 223.936 226.09 228.237 229.32 231.14 233.624 235.761 236.972 237.705 238.513 241.103 245.963 251.065 257.389 264.659 270.699 272.389 272.529 272.792 273.083 273.352 273.815 274.135 274.284 274.546 275.014 275.846 277.126 278.681 280.293 281.689 283.086 284.403 285.517 286.696 288.019 289.197 290.2 291.083 291.924 292.698 293.456 294.176 294.672 294.943 295.037 295.059 295.155 295.332 295.576 295.962 296.492 297.2 298.034 298.849 299.544 300.094 300.322 300.262 300.151 300.037 299.998 300.191 300.522 300.749 300.734 300.282 299.143 298.7 299.746 301.595 302.0 301.489 300.402 299.397 298.754 297.212 296.022 295.053 293.948 292.895 291.968 290.524 289.542 288.243 286.471 285.075 283.952 284.537 285.833 286.006 284.763 282.531 280.795 280.489 281.991 282.489 281.518 280.692 280.253 279.15 278.241 277.654 277.552 277.795 278.306 278.872 279.148 278.818 278.088 277.282 276.722 276.212 275.362 274.249 273.289 272.284 270.465 267.216 261.763 255.917 252.484 249.909 247.156 244.996 243.793 242.939 241.273 223.821 225.939 227.973 228.953 230.73 233.159 235.18 236.313 236.904 237.312 239.716 244.937 250.407 256.927 264.06 270.461 272.326 272.489 272.755 273.065 273.311 273.753 274.064 274.193 274.465 274.968 275.82 277.154 278.762 280.317 281.618 282.908 284.17 285.315 286.578 287.926 289.067 290.019 290.865 291.738 292.604 293.389 294.06 294.477 294.671 294.73 294.776 294.918 295.147 295.462 295.897 296.434 297.171 298.029 298.876 299.626 300.203 300.382 300.252 300.108 300.037 300.048 300.206 300.469 300.684 300.738 300.414 299.851 299.386 300.897 301.656 301.441 300.648 300.244 299.675 298.371 297.294 295.671 294.602 293.72 292.858 292.016 290.861 289.602 288.464 286.666 285.366 284.0 284.509 285.478 285.863 285.376 283.73 281.342 280.543 280.425 280.642 280.327 280.043 279.612 278.929 278.057 277.753 277.848 278.024 278.382 278.647 278.766 278.524 278.03 277.449 276.939 276.458 275.712 274.739 273.72 272.686 271.2 268.388 262.979 257.668 253.614 250.161 247.527 245.201 243.896 243.027 241.341 223.731 225.76 227.712 228.625 230.391 232.718 234.63 235.613 236.096 236.25 238.368 243.92 249.779 256.436 263.594 270.208 272.257 272.457 272.724 273.046 273.259 273.666 273.973 274.097 274.393 274.939 275.818 277.17 278.786 280.283 281.526 282.724 283.968 285.17 286.463 287.753 288.912 289.971 290.856 291.738 292.612 293.334 293.887 294.219 294.382 294.462 294.557 294.703 294.886 295.18 295.667 296.292 297.122 298.041 298.934 299.705 300.233 300.349 300.182 300.028 299.996 300.105 300.301 300.507 300.676 300.756 300.522 299.986 299.089 299.728 300.139 300.29 300.663 299.981 299.357 298.343 296.814 295.253 294.128 293.434 292.604 291.768 290.661 289.431 288.313 286.558 284.837 284.142 283.931 284.863 285.773 285.625 284.346 282.635 280.682 279.369 279.175 279.233 279.414 279.107 278.506 277.97 277.791 277.91 278.057 278.211 278.125 278.014 277.924 277.771 277.504 277.067 276.576 275.98 275.145 274.14 273.132 271.734 269.232 264.855 257.917 253.822 250.529 247.697 245.304 243.948 243.121 241.372 223.646 225.561 227.464 228.319 230.049 232.324 234.073 234.973 235.371 235.228 236.996 242.929 249.224 255.928 263.13 269.942 272.185 272.435 272.691 273.019 273.205 273.573 273.875 274.005 274.335 274.928 275.862 277.217 278.797 280.241 281.445 282.595 283.821 285.038 286.305 287.548 288.797 290.022 290.956 291.809 292.629 293.264 293.716 294.018 294.187 294.273 294.37 294.491 294.638 294.938 295.5 296.211 297.069 297.981 298.866 299.634 300.146 300.297 300.205 300.045 300.006 300.201 300.475 300.63 300.696 300.768 300.605 300.055 299.09 298.701 299.571 300.44 300.63 299.69 299.076 298.109 296.48 294.727 293.463 292.628 291.825 290.83 289.906 288.894 287.936 286.919 285.431 284.571 283.752 283.795 285.41 285.645 284.767 283.323 281.147 278.376 277.606 277.928 278.48 278.42 278.114 277.897 277.754 277.865 277.909 277.703 277.198 276.737 276.855 277.27 277.436 277.143 276.658 276.161 275.486 274.542 273.541 272.311 270.07 265.792 259.725 254.39 251.401 247.863 245.426 244.014 243.215 241.388 223.572 225.396 227.214 228.008 229.75 231.964 233.518 234.361 234.691 234.142 235.624 241.892 248.711 255.507 262.61 269.645 272.105 272.415 272.647 272.98 273.153 273.484 273.78 273.931 274.295 274.924 275.918 277.272 278.776 280.194 281.367 282.497 283.687 284.876 286.116 287.364 288.731 290.099 291.064 291.877 292.651 293.215 293.595 293.884 294.046 294.103 294.18 294.301 294.481 294.854 295.494 296.24 297.058 297.899 298.753 299.552 300.119 300.361 300.35 300.135 300.03 300.281 300.634 300.743 300.712 300.746 300.623 300.121 299.305 298.731 299.702 300.742 301.219 299.385 298.515 297.372 296.166 294.393 292.877 291.354 290.264 289.244 288.249 287.819 287.293 287.507 286.786 285.245 283.89 283.758 284.914 285.433 284.886 283.486 281.309 277.593 276.295 276.54 277.331 277.673 277.58 277.618 277.62 277.672 277.591 276.905 275.85 275.142 275.327 276.367 277.204 277.165 276.72 276.322 275.788 274.916 273.912 272.745 270.583 266.849 260.142 254.974 251.581 248.165 245.586 244.101 243.298 241.422 223.516 225.185 226.976 227.713 229.47 231.647 232.96 233.735 234.027 233.12 234.256 240.966 248.194 255.125 261.928 269.271 272.004 272.387 272.581 272.918 273.099 273.402 273.69 273.875 274.28 274.924 275.961 277.301 278.712 280.1 281.261 282.398 283.534 284.66 285.913 287.252 288.713 290.134 291.106 291.921 292.686 293.182 293.483 293.727 293.846 293.869 293.977 294.157 294.401 294.869 295.598 296.421 297.268 298.066 298.877 299.664 300.242 300.476 300.413 300.145 300.03 300.304 300.654 300.733 300.671 300.614 300.387 299.569 298.879 299.652 300.347 300.58 300.309 298.975 297.926 296.777 295.549 294.092 292.287 290.23 288.276 286.843 286.827 286.769 286.402 286.745 287.159 285.773 284.121 283.61 284.543 285.116 284.768 283.535 281.284 277.13 275.127 274.934 275.85 276.706 277.053 277.175 277.262 277.341 277.105 276.064 274.482 272.973 273.634 275.296 276.718 277.081 276.764 276.469 276.038 275.245 274.254 273.061 271.059 267.37 261.57 255.057 251.82 248.448 245.812 244.217 243.368 241.467 223.441 225.031 226.745 227.496 229.213 231.27 232.46 233.16 233.354 232.115 232.985 240.17 247.757 254.778 261.275 268.888 271.893 272.362 272.509 272.842 273.053 273.345 273.624 273.838 274.271 274.928 275.97 277.278 278.606 279.939 281.102 282.274 283.364 284.432 285.737 287.188 288.677 290.092 291.11 291.961 292.675 293.107 293.371 293.587 293.697 293.761 293.936 294.155 294.442 295.05 295.986 297.01 297.957 298.703 299.318 299.864 300.232 300.314 300.269 300.224 300.269 300.406 300.544 300.574 300.56 300.423 300.07 299.086 300.118 300.827 300.771 299.841 298.815 297.794 297.073 296.205 294.88 293.3 292.154 289.824 286.915 285.69 285.604 285.633 286.26 286.27 286.209 285.222 284.191 283.383 284.205 284.673 284.405 283.434 281.382 277.22 274.364 273.486 274.337 275.625 276.448 276.515 276.818 276.877 276.512 275.189 272.53 270.794 271.437 274.138 276.041 276.811 276.738 276.571 276.258 275.525 274.502 273.31 271.224 267.762 262.049 256.176 252.454 248.537 246.044 244.366 243.419 241.521 223.344 224.847 226.511 227.214 228.973 230.962 232.011 232.524 232.664 231.193 231.807 239.339 247.329 254.473 260.684 268.51 271.78 272.344 272.444 272.765 273.009 273.301 273.569 273.797 274.254 274.931 275.964 277.226 278.501 279.762 280.93 282.118 283.164 284.183 285.549 287.098 288.59 290.023 291.134 292.004 292.655 293.086 293.376 293.564 293.65 293.781 294.055 294.402 294.885 295.79 296.981 298.101 298.971 299.54 299.931 300.238 300.379 300.322 300.345 300.452 300.46 300.335 300.29 300.397 300.494 300.352 300.04 299.694 300.2 300.886 300.57 300.037 298.285 297.094 296.457 295.191 294.536 293.113 291.184 288.129 286.193 285.053 284.952 285.43 285.864 285.68 285.593 285.097 284.881 283.763 283.866 284.215 283.73 282.81 281.331 278.092 274.121 272.689 273.149 274.548 275.839 276.166 276.385 276.361 275.82 274.584 271.61 269.607 269.842 272.959 275.08 276.237 276.527 276.54 276.369 275.741 274.717 273.382 271.279 267.865 262.572 256.111 252.49 248.827 246.113 244.486 243.496 241.572 223.251 224.619 226.248 226.983 228.736 230.651 231.526 231.94 231.965 230.235 230.711 238.611 246.968 254.191 260.133 268.126 271.654 272.327 272.393 272.698 272.969 273.265 273.521 273.751 274.221 274.917 275.933 277.164 278.42 279.63 280.78 281.94 282.938 283.926 285.366 286.996 288.488 289.988 291.208 292.098 292.737 293.214 293.499 293.57 293.65 293.931 294.432 295.068 295.897 297.045 298.273 299.218 299.808 300.185 300.501 300.737 300.769 300.625 300.581 300.534 300.249 299.959 298.938 299.591 299.945 300.124 300.06 300.639 301.086 300.507 300.103 299.934 298.632 297.463 296.06 294.65 292.825 291.415 289.922 287.68 285.894 285.072 284.776 284.997 285.185 285.237 285.186 285.644 284.981 283.925 283.896 283.894 283.165 282.503 281.13 278.126 274.015 272.183 272.477 273.815 275.199 275.902 275.865 275.588 275.065 273.982 271.318 269.008 268.947 271.551 273.809 275.327 275.994 276.29 276.337 275.874 274.863 273.398 271.11 267.78 262.826 256.428 252.715 249.461 246.274 244.581 243.562 241.62 223.177 224.44 226.017 226.731 228.493 230.384 231.068 231.368 231.238 229.339 229.782 237.985 246.632 253.945 259.512 267.707 271.493 272.304 272.369 272.651 272.934 273.23 273.486 273.712 274.167 274.867 275.864 277.09 278.353 279.561 280.657 281.738 282.696 283.702 285.239 286.969 288.549 290.18 291.473 292.392 293.06 293.495 293.551 293.474 293.797 294.543 295.559 296.603 297.501 298.236 298.821 299.191 299.43 299.737 300.245 300.665 300.789 300.658 300.415 300.018 299.435 298.315 299.819 301.79 302.303 301.546 301.278 301.138 301.107 300.741 300.505 299.799 298.081 297.591 296.126 294.914 293.132 291.688 290.147 287.999 286.189 284.367 284.005 284.301 284.651 284.509 284.508 285.071 285.165 284.485 284.148 283.72 283.125 282.155 279.803 276.839 273.961 271.982 272.247 273.607 274.919 275.743 275.641 275.237 274.388 273.46 271.065 268.904 268.447 269.85 272.352 273.856 275.112 275.775 276.106 275.9 274.937 273.293 270.824 267.501 261.987 256.557 253.093 249.601 246.566 244.715 243.623 241.668 223.066 224.248 225.751 226.494 228.275 230.108 230.59 230.744 230.476 228.372 228.967 237.528 246.439 253.351 258.873 267.362 271.327 272.276 272.381 272.65 272.918 273.207 273.489 273.729 274.132 274.806 275.793 277.014 278.282 279.515 280.554 281.554 282.513 283.597 285.232 287.107 288.916 290.667 291.956 292.833 293.387 293.557 293.332 293.48 294.467 295.85 297.118 298.002 298.348 298.213 297.8 296.868 296.659 297.718 298.589 299.054 299.459 299.565 299.328 298.805 297.714 299.705 301.709 302.907 303.52 303.045 301.964 301.044 301.301 300.906 300.622 299.834 298.315 297.203 296.923 295.453 293.738 292.179 290.54 288.327 286.22 284.481 284.018 283.871 284.352 284.15 284.259 285.19 285.417 284.79 284.11 283.477 282.585 281.183 278.619 276.944 274.149 272.165 272.185 273.417 274.732 275.529 275.433 275.098 274.121 272.831 270.674 268.804 268.283 268.922 270.216 272.16 273.732 274.918 275.643 275.802 274.973 273.132 270.425 267.023 260.505 256.501 253.084 249.644 246.93 244.86 243.679 241.713 222.873 224.034 225.518 226.236 228.023 229.833 230.229 230.125 229.66 227.542 228.344 237.208 246.294 252.351 258.366 267.094 271.16 272.235 272.407 272.676 272.916 273.196 273.526 273.794 274.131 274.748 275.723 276.923 278.185 279.435 280.435 281.387 282.383 283.548 285.263 287.327 289.4 291.231 292.462 293.194 293.507 293.389 293.112 293.754 295.265 296.836 297.781 298.109 297.848 296.84 296.105 295.439 294.888 294.82 295.16 296.868 297.255 297.273 297.171 297.524 298.584 300.106 300.572 300.249 301.664 302.237 301.905 301.965 301.768 301.54 301.53 300.596 299.917 295.937 296.275 295.913 294.336 292.427 290.588 288.349 286.214 284.565 284.076 284.242 284.266 284.377 284.584 285.588 285.558 284.805 283.563 283.07 282.118 280.068 278.82 277.325 274.539 272.661 272.403 273.334 274.409 275.243 275.295 275.103 273.988 272.819 271.027 269.097 268.3 268.569 268.616 269.742 272.039 273.672 274.896 275.558 274.935 272.956 269.876 265.72 259.853 256.522 253.305 250.067 247.054 245.038 243.735 241.758 222.791 223.911 225.283 226.024 227.85 229.592 229.802 229.47 228.802 226.641 227.844 237.059 246.167 252.375 258.218 266.897 270.993 272.174 272.437 272.72 272.934 273.198 273.581 273.892 274.162 274.704 275.656 276.826 278.07 279.326 280.312 281.252 282.306 283.537 285.33 287.61 289.904 291.782 292.876 293.345 293.38 293.069 293.002 294.003 295.56 296.393 296.396 296.583 295.977 295.799 296.527 295.813 294.166 293.441 293.481 294.059 295.205 295.785 296.373 296.767 297.414 298.262 298.489 298.083 298.423 300.471 301.744 301.577 302.587 302.156 302.749 302.861 300.708 298.357 297.447 296.248 294.774 292.5 290.038 288.167 285.963 285.175 284.912 284.55 284.535 284.813 285.603 286.061 285.565 284.719 283.572 282.506 281.396 279.208 278.995 277.108 274.522 273.242 272.802 273.392 274.154 274.757 275.084 275.14 274.195 272.983 271.587 269.832 268.715 268.477 267.95 267.905 269.424 272.253 274.036 275.167 274.878 272.725 269.121 263.265 259.683 256.415 253.584 250.368 247.091 245.296 243.799 241.816 222.756 223.7 225.051 225.802 227.65 229.36 229.3 228.866 227.929 225.785 227.464 236.972 246.105 252.55 258.192 266.777 270.817 272.078 272.457 272.779 272.977 273.217 273.649 274.015 274.231 274.686 275.603 276.743 277.958 279.207 280.203 281.163 282.298 283.62 285.529 288.054 290.486 292.312 293.122 293.123 292.878 292.542 292.793 293.665 294.589 294.716 294.332 294.274 294.952 295.691 296.844 295.836 294.612 293.197 292.783 293.009 294.038 295.585 296.476 296.432 296.5 296.977 297.371 297.532 297.743 299.335 300.929 301.827 303.293 303.45 303.568 303.534 301.576 300.251 298.299 296.676 295.002 292.712 289.693 286.832 285.409 285.321 285.473 284.785 284.803 285.284 286.245 286.082 285.431 284.588 283.613 282.106 280.197 279.391 278.274 275.735 274.523 273.647 273.201 273.418 273.803 274.214 274.693 275.061 274.558 273.816 272.233 270.469 269.815 268.505 267.521 267.034 267.375 270.809 273.063 274.722 274.764 272.48 267.576 262.543 259.489 256.462 253.558 250.379 247.177 245.51 243.877 241.874 222.612 223.51 224.845 225.583 227.391 229.11 228.824 228.232 227.079 225.063 227.153 237.019 246.113 252.854 258.397 266.766 270.679 271.978 272.45 272.82 273.032 273.258 273.704 274.112 274.316 274.714 275.598 276.728 277.911 279.135 280.151 281.152 282.357 283.791 285.887 288.62 291.058 292.711 293.186 292.823 292.299 292.151 292.203 292.805 293.389 293.731 293.732 294.218 295.075 295.671 296.274 296.132 295.291 293.742 293.178 293.058 293.623 294.838 295.934 296.546 296.575 296.799 297.298 297.712 298.085 298.388 300.733 302.345 303.874 304.643 304.803 303.941 303.596 300.793 299.152 297.11 294.903 292.18 288.155 286.255 285.407 285.576 285.822 285.4 285.221 285.983 286.411 285.911 285.192 284.396 283.369 281.94 280.236 278.547 276.527 274.85 274.31 273.809 273.381 273.167 273.31 273.552 274.117 274.811 274.649 274.096 272.699 271.73 270.87 268.689 267.385 266.697 266.543 269.082 272.214 274.308 274.622 271.994 266.15 262.552 259.273 256.484 253.725 250.394 247.468 245.562 243.972 241.93 222.518 223.299 224.601 225.335 227.146 228.823 228.359 227.598 226.215 224.244 226.967 237.013 246.155 253.29 258.425 266.824 270.578 271.886 272.425 272.834 273.08 273.309 273.748 274.182 274.401 274.776 275.628 276.753 277.91 279.098 280.124 281.155 282.415 283.967 286.3 289.19 291.57 293.032 293.253 292.53 291.208 290.952 291.309 291.994 293.086 294.368 294.691 295.079 295.471 295.876 296.262 296.486 295.495 294.718 293.92 293.628 293.896 294.563 295.42 296.238 296.417 296.436 297.147 297.916 299.39 299.439 302.311 302.063 302.665 303.777 304.829 304.944 303.678 302.045 299.553 297.343 294.67 292.057 288.584 286.449 285.748 285.333 286.028 285.615 285.606 286.286 286.343 285.612 284.835 283.973 282.757 281.021 278.732 276.586 274.253 273.993 274.183 273.81 273.19 272.906 272.853 273.156 273.759 274.512 274.503 274.075 273.167 272.15 271.126 268.997 267.795 266.793 266.518 267.551 271.517 273.911 274.434 271.602 265.837 263.114 259.358 256.346 253.834 250.899 247.664 245.601 244.066 241.986 222.464 223.128 224.379 225.111 226.886 228.488 227.908 226.92 225.39 223.491 226.847 237.009 246.202 254.121 258.919 266.933 270.514 271.81 272.385 272.82 273.11 273.364 273.789 274.234 274.491 274.864 275.679 276.789 277.917 279.06 280.083 281.137 282.43 284.099 286.693 289.697 292.01 293.318 293.363 292.218 290.508 289.924 290.49 291.558 293.751 295.12 295.821 295.824 296.602 296.699 296.474 296.759 296.176 295.348 294.476 294.205 294.105 294.479 295.225 295.977 296.221 296.4 296.9 297.858 300.352 301.96 302.121 301.61 301.219 302.721 303.908 304.084 302.505 300.682 298.722 296.866 294.776 292.077 288.655 286.988 286.226 285.451 286.085 285.935 285.775 285.541 285.253 284.976 284.506 283.529 282.081 279.544 276.151 274.14 273.171 273.264 273.794 273.539 272.789 272.505 272.452 272.816 273.222 273.778 273.933 273.72 273.013 272.007 270.905 268.688 267.921 266.893 266.46 266.698 270.984 273.537 274.276 271.535 266.456 263.185 259.694 256.318 253.788 250.897 247.681 245.708 244.114 242.043 222.365 222.952 224.184 224.855 226.577 228.071 227.469 226.337 224.6 222.839 226.832 236.969 246.208 254.778 259.726 267.083 270.478 271.747 272.33 272.769 273.109 273.418 273.836 274.284 274.591 274.984 275.747 276.812 277.904 278.993 279.999 281.065 282.362 284.136 286.988 290.114 292.399 293.639 293.607 292.523 290.135 289.342 289.948 292.015 294.063 296.081 296.146 296.419 296.763 297.022 296.785 296.764 296.66 295.923 294.91 294.586 294.389 294.803 296.425 296.784 296.369 296.219 296.434 297.049 298.221 300.89 301.707 300.607 301.031 301.699 303.046 302.749 301.255 299.114 297.024 295.281 293.749 291.281 289.294 287.697 286.746 286.265 285.48 285.361 285.038 285.349 284.896 284.804 284.272 283.204 281.35 278.152 275.767 273.612 272.738 272.923 273.282 273.064 272.378 272.06 272.176 272.448 272.611 272.763 272.813 272.96 272.56 271.423 269.785 268.564 267.851 267.188 266.406 266.641 270.489 273.162 274.134 271.946 266.935 262.846 259.93 256.304 254.092 250.883 247.692 245.98 244.135 242.084 222.207 222.713 223.96 224.664 226.283 227.629 227.003 225.771 223.847 222.338 226.829 236.863 246.138 255.007 260.093 267.157 270.454 271.702 272.28 272.707 273.072 273.443 273.881 274.332 274.686 275.105 275.818 276.821 277.882 278.917 279.887 280.955 282.244 284.058 287.043 290.285 292.612 293.915 293.926 292.714 290.023 288.9 289.569 291.686 293.668 295.097 296.076 297.047 297.638 297.62 296.827 296.638 296.71 295.983 295.15 294.868 295.066 295.824 297.302 297.697 296.411 296.123 296.177 297.309 298.79 300.988 301.205 301.45 302.666 302.647 302.098 301.015 300.271 297.884 296.028 293.462 292.713 290.937 289.464 288.123 286.985 286.245 285.905 285.845 284.951 285.314 285.102 284.902 284.103 283.071 281.541 278.983 277.387 274.414 273.165 272.953 272.844 272.523 271.906 272.067 271.974 271.985 272.019 272.13 272.185 272.152 271.738 270.906 269.979 269.051 267.693 267.432 266.604 266.787 269.914 272.834 274.02 272.203 267.666 262.626 260.389 256.482 254.351 251.103 247.723 246.407 244.156 242.092 222.115 222.548 223.733 224.441 225.973 227.192 226.515 225.181 223.13 221.937 226.787 236.708 245.952 255.002 260.219 267.116 270.423 271.662 272.236 272.655 273.024 273.443 273.923 274.384 274.77 275.216 275.888 276.829 277.861 278.853 279.777 280.844 282.137 283.92 286.875 290.22 292.628 294.06 294.24 293.056 290.07 288.636 288.947 290.386 292.248 294.031 295.978 297.827 298.741 298.266 296.886 296.384 296.379 296.237 295.556 295.157 294.775 295.458 296.558 296.97 296.342 295.953 296.104 297.311 299.276 300.489 300.534 301.282 302.614 302.105 301.889 300.567 298.792 297.109 295.618 292.968 291.842 290.976 289.63 288.426 287.339 286.346 285.075 285.083 284.995 285.679 285.342 284.999 284.177 282.677 281.418 279.635 277.788 275.639 274.09 273.433 272.734 272.171 272.029 272.218 272.013 271.792 271.583 271.559 271.497 271.277 271.078 270.488 269.671 269.021 268.282 267.501 266.875 267.218 269.911 272.567 273.876 272.524 268.316 263.337 260.554 256.893 254.354 251.38 248.167 246.562 244.183 242.039 222.021 222.354 223.485 224.263 225.662 226.759 225.991 224.588 222.498 221.626 226.741 236.498 245.684 254.849 260.262 266.966 270.381 271.617 272.195 272.617 272.974 273.425 273.962 274.443 274.846 275.315 275.953 276.835 277.842 278.802 279.678 280.765 282.077 283.755 286.523 289.947 292.453 294.043 294.537 293.699 290.811 288.781 288.207 289.08 290.556 293.353 295.249 298.07 298.345 298.751 296.756 296.44 295.932 295.785 295.432 294.704 294.441 294.818 295.339 295.777 295.636 295.64 296.097 296.909 297.709 299.619 300.533 301.108 302.245 302.357 301.473 300.649 299.29 297.576 296.156 294.556 292.386 291.409 290.093 288.52 287.574 286.562 285.756 285.148 286.137 285.813 285.494 285.078 284.085 282.584 280.765 278.561 276.985 275.759 275.124 274.31 273.32 272.727 272.578 272.39 271.85 271.598 271.299 271.079 271.026 270.855 270.36 269.874 269.194 268.859 268.283 267.587 266.996 267.435 269.817 272.362 273.73 272.688 269.087 264.039 260.769 257.296 254.73 251.327 248.155 246.574 244.243 242.033 221.924 222.118 223.194 224.004 225.311 226.251 225.361 223.969 221.87 221.345 226.667 236.239 245.307 253.24 260.349 266.656 270.334 271.565 272.151 272.595 272.929 273.382 273.99 274.513 274.923 275.411 276.013 276.823 277.804 278.745 279.588 280.726 282.09 283.628 286.09 289.492 292.08 293.809 294.707 294.598 293.034 289.996 288.472 288.829 290.589 292.297 294.552 296.808 297.988 297.368 296.925 296.218 295.717 295.654 295.102 294.234 293.817 293.845 294.429 294.607 294.261 294.245 294.083 294.692 296.202 298.161 300.235 301.577 302.428 302.66 302.937 302.074 300.733 298.8 297.269 295.101 293.689 292.39 291.052 289.324 288.379 287.603 287.436 286.805 286.18 285.879 285.691 285.163 284.007 282.038 279.061 276.078 275.598 276.039 276.429 275.533 274.209 273.452 273.05 272.501 271.878 271.499 271.025 270.708 270.604 270.436 269.796 269.428 269.104 268.725 268.277 267.576 266.97 267.501 269.636 272.23 273.565 272.804 269.765 264.87 261.132 257.749 255.039 251.38 248.133 246.584 244.356 242.04 221.831 221.951 222.96 223.752 224.966 225.721 224.744 223.355 221.276 221.114 226.535 235.883 244.849 252.685 260.174 266.157 270.305 271.537 272.104 272.581 272.898 273.324 273.976 274.555 274.981 275.478 276.051 276.787 277.736 278.671 279.499 280.683 282.116 283.595 285.839 289.097 291.702 293.426 294.525 295.102 294.639 293.096 290.482 289.73 290.363 291.901 294.811 296.72 297.253 296.785 296.824 296.072 295.799 295.368 295.277 294.036 293.431 293.56 293.7 293.404 293.479 293.338 293.182 293.612 295.44 297.286 297.76 299.492 301.948 304.449 305.285 303.088 302.765 299.871 298.44 296.243 294.858 293.524 292.171 290.692 289.236 288.411 288.128 287.156 286.281 285.973 285.805 285.293 284.032 281.653 277.032 274.45 274.527 276.39 277.194 276.758 274.997 273.991 273.416 272.807 272.095 271.681 271.072 270.378 270.267 269.936 269.249 269.072 269.037 268.595 268.181 267.468 266.933 267.55 269.815 272.132 273.4 272.812 270.134 265.69 261.867 258.179 255.094 251.631 248.113 246.591 244.516 242.051 221.639 221.78 222.693 223.519 224.592 225.126 224.072 222.654 220.7 220.803 226.293 235.45 244.336 252.121 259.741 265.64 270.29 271.543 272.059 272.557 272.873 273.257 273.928 274.559 275.015 275.521 276.072 276.739 277.646 278.565 279.379 280.579 282.066 283.58 285.71 288.798 291.38 293.013 294.072 294.999 295.4 294.958 294.203 292.44 292.062 293.131 295.402 297.064 297.352 296.625 296.654 296.114 296.03 295.609 295.225 294.044 293.392 293.144 293.096 293.444 293.5 293.132 293.011 293.553 295.052 296.377 297.025 298.476 302.691 305.923 305.906 305.023 303.856 301.402 299.944 298.199 296.0 294.35 292.69 291.22 290.535 289.574 288.685 287.416 286.436 285.831 285.717 285.492 284.189 281.381 277.047 273.27 273.549 276.218 277.62 277.316 275.834 274.177 273.518 272.821 272.25 271.872 271.051 269.991 269.719 268.958 268.657 268.332 268.571 268.166 267.907 267.224 266.967 267.557 270.141 272.082 273.236 272.766 270.514 266.025 262.459 258.77 255.426 251.701 248.49 246.598 244.772 242.072 221.63 221.592 222.411 223.25 224.205 224.511 223.274 221.923 220.126 220.548 226.032 234.944 243.741 251.457 259.709 265.013 270.275 271.589 272.024 272.518 272.846 273.186 273.852 274.524 275.02 275.542 276.083 276.688 277.538 278.431 279.228 280.417 281.945 283.537 285.668 288.577 291.094 292.624 293.522 294.416 295.342 295.758 295.648 295.73 294.753 295.073 296.419 297.776 297.198 297.165 297.192 296.729 296.407 295.717 294.994 294.025 293.311 293.143 292.997 293.279 293.451 293.324 292.692 292.837 294.361 295.655 296.443 298.141 302.594 304.98 305.633 304.725 305.064 303.166 302.092 299.726 297.403 294.929 292.863 291.41 290.423 290.243 289.348 287.859 285.885 285.12 285.688 285.478 284.272 281.144 276.899 272.663 272.762 275.4 277.769 277.534 275.921 274.071 273.349 272.658 272.207 271.827 270.885 269.426 268.442 268.136 267.99 267.74 267.819 267.557 267.423 266.993 266.915 268.013 270.147 272.064 273.096 272.663 270.623 266.535 262.926 259.063 255.75 251.627 248.84 246.961 244.915 242.091 221.611 221.351 222.211 223.003 223.792 223.865 222.463 221.158 219.611 220.301 225.715 234.398 243.081 250.773 258.105 264.114 270.223 271.692 272.018 272.458 272.809 273.109 273.745 274.442 274.985 275.542 276.092 276.652 277.429 278.287 279.071 280.232 281.777 283.484 285.681 288.396 290.797 292.262 293.039 293.68 294.55 295.483 296.193 296.726 297.175 297.638 297.481 297.797 297.753 297.481 297.3 297.178 296.735 295.867 294.752 293.9 293.381 293.448 293.307 293.117 293.043 293.087 292.625 292.484 294.085 296.216 297.591 298.745 301.76 303.449 303.254 304.599 305.977 305.661 303.588 300.798 298.126 295.178 293.184 291.816 291.137 290.444 289.804 287.979 285.705 285.196 285.022 285.027 283.977 281.082 276.377 272.572 272.388 274.995 277.862 277.736 275.699 273.976 273.104 272.397 271.91 271.494 270.263 268.471 267.754 267.491 267.494 267.51 267.33 267.152 267.158 266.874 266.698 268.429 270.429 272.098 272.98 272.516 270.717 266.622 263.503 259.394 255.943 251.885 248.812 246.999 244.923 242.108 221.437 221.161 221.968 222.726 223.378 223.154 221.612 220.372 219.122 220.114 225.402 233.808 242.371 250.027 256.795 263.197 270.09 271.807 272.054 272.4 272.77 273.054 273.639 274.34 274.925 275.522 276.104 276.646 277.366 278.206 279.006 280.173 281.683 283.448 285.7 288.294 290.559 292.0 292.785 293.322 294.019 294.933 295.906 296.79 297.603 298.229 298.429 298.702 298.822 298.991 297.996 297.124 296.547 295.697 295.103 294.559 294.105 294.122 294.046 293.593 293.046 292.819 292.742 293.222 294.98 296.91 298.284 299.375 299.457 298.958 299.926 301.185 304.348 304.893 303.052 300.449 297.851 295.686 293.868 292.242 291.867 291.23 290.307 288.563 285.629 284.411 284.046 284.069 283.287 280.911 276.261 272.677 272.392 275.397 278.061 277.962 275.687 273.995 272.866 272.073 271.509 270.789 269.355 267.855 267.289 267.203 267.294 266.892 266.652 267.02 266.917 266.767 266.487 268.3 270.51 272.153 272.829 272.332 270.605 266.917 263.747 259.746 256.166 252.075 248.778 246.992 244.928 242.122 221.311 220.981 221.76 222.464 222.931 222.445 220.759 219.551 218.629 219.993 225.095 233.141 241.576 249.155 254.501 262.328 269.855 271.881 272.11 272.355 272.735 273.022 273.549 274.239 274.853 275.482 276.106 276.652 277.335 278.172 279.024 280.229 281.685 283.413 285.688 288.226 290.394 291.812 292.626 293.184 293.906 294.854 295.864 296.786 297.655 298.363 298.884 299.309 299.679 299.861 299.413 297.707 296.531 296.095 296.113 296.047 295.712 295.304 295.035 294.811 294.066 293.603 293.987 295.33 296.64 298.522 298.969 298.783 296.851 294.724 295.753 297.808 300.066 301.494 301.081 299.204 297.417 295.469 294.28 293.177 292.591 291.79 290.236 287.595 284.303 282.874 282.38 282.413 281.704 279.701 276.131 272.758 272.398 276.142 278.243 278.058 276.34 274.046 272.788 271.786 270.947 270.155 268.265 267.65 267.331 266.926 266.715 266.55 266.152 266.286 266.861 266.579 266.366 268.532 270.552 272.146 272.638 272.126 270.529 267.05 264.175 259.956 256.369 252.195 248.919 246.982 244.931 242.134 221.295 220.807 221.529 222.142 222.471 221.749 219.87 218.716 218.178 219.944 224.792 232.432 240.695 248.21 253.392 261.405 269.479 271.887 272.176 272.325 272.705 273.003 273.475 274.139 274.764 275.416 276.086 276.653 277.317 278.167 279.098 280.363 281.793 283.417 285.638 288.169 290.306 291.698 292.521 293.158 294.003 295.073 296.167 297.054 297.797 298.384 298.87 299.31 299.8 300.251 300.144 298.953 297.17 296.75 296.952 296.98 296.981 296.793 296.742 296.426 295.796 295.479 295.425 296.866 297.928 299.662 300.062 298.648 296.036 294.314 294.487 295.631 297.072 298.681 299.107 298.439 296.727 295.976 295.021 293.895 293.086 291.916 289.501 286.028 283.699 282.39 282.333 281.4 281.388 279.748 276.422 272.704 272.098 276.297 278.088 277.798 276.059 274.291 272.871 271.599 270.538 269.352 268.001 267.455 267.245 266.946 266.739 266.216 265.949 266.003 266.533 266.111 266.586 268.701 270.507 272.04 272.423 271.909 270.428 267.34 264.533 260.249 256.641 252.287 249.161 246.968 244.931 242.143 221.234 220.657 221.296 221.804 221.978 221.019 219.016 217.931 217.813 219.941 224.492 231.645 239.696 247.182 253.629 260.316 268.739 271.754 272.241 272.318 272.682 272.991 273.405 274.027 274.658 275.318 276.039 276.644 277.303 278.188 279.216 280.553 282.01 283.499 285.606 288.162 290.308 291.652 292.454 293.196 294.173 295.361 296.513 297.429 298.109 298.628 299.076 299.523 300.01 300.501 300.618 300.122 298.499 297.809 297.971 298.071 298.259 298.425 298.434 299.047 298.506 297.952 297.565 299.324 299.373 300.05 299.191 298.236 296.858 295.518 294.913 295.202 296.152 296.701 298.043 297.148 296.764 296.319 295.703 294.855 293.702 291.651 289.08 285.696 283.803 282.884 282.38 282.046 282.11 280.554 276.665 272.3 271.239 275.336 277.171 276.781 275.463 274.4 272.996 271.438 269.801 268.858 267.699 267.409 267.176 266.977 266.582 266.035 265.625 265.817 266.267 265.684 266.823 268.611 270.255 271.784 272.206 271.702 270.347 267.746 264.754 260.366 256.778 252.498 249.296 246.987 244.929 242.151 221.155 220.468 221.134 221.502 221.526 220.339 218.228 217.216 217.55 219.978 224.247 230.896 238.564 246.034 253.277 259.552 267.699 271.443 272.264 272.339 272.667 272.978 273.348 273.931 274.556 275.218 275.981 276.628 277.298 278.217 279.31 280.693 282.215 283.679 285.7 288.27 290.369 291.638 292.419 293.226 294.279 295.471 296.585 297.508 298.258 298.87 299.43 299.984 300.445 300.796 300.913 300.611 300.068 299.235 299.486 299.297 299.7 300.149 300.093 299.961 299.68 299.463 299.563 299.999 299.714 300.263 299.598 299.375 297.678 296.864 296.398 295.908 296.967 298.175 297.86 297.205 297.0 296.85 297.094 295.819 293.539 290.82 288.463 286.028 284.737 284.427 283.989 283.712 283.046 281.341 276.565 271.494 269.273 273.619 275.548 275.422 274.936 274.355 272.899 271.063 269.788 268.77 267.517 267.362 267.16 266.992 266.476 265.966 265.678 265.638 266.144 265.671 266.962 268.286 269.76 271.419 271.934 271.491 270.279 267.93 265.126 260.418 256.839 252.547 249.273 247.078 244.924 242.158 221.114 220.268 220.912 221.155 221.084 219.662 217.527 216.573 217.438 220.075 224.071 230.107 237.362 244.812 251.79 258.895 266.372 270.985 272.232 272.37 272.659 272.965 273.303 273.849 274.467 275.133 275.928 276.625 277.311 278.251 279.372 280.774 282.393 283.953 285.934 288.456 290.423 291.608 292.389 293.265 294.364 295.527 296.593 297.497 298.271 298.914 299.484 300.002 300.423 300.732 300.911 300.836 300.637 300.531 300.485 300.473 300.511 300.475 300.333 300.138 299.819 299.519 299.585 300.087 300.523 301.007 301.453 301.259 299.984 298.96 298.213 297.927 298.791 299.347 298.094 297.563 297.567 298.143 297.311 295.643 293.003 290.691 288.802 287.095 286.034 285.588 285.251 285.004 284.258 281.447 276.173 269.143 268.134 270.364 273.375 274.377 274.619 274.311 272.875 271.294 269.764 267.839 267.307 267.081 267.009 267.023 266.735 266.155 265.687 265.524 265.876 265.379 266.41 267.774 268.844 270.805 271.546 271.226 270.116 268.169 265.212 260.547 256.961 252.595 249.307 247.169 244.937 242.163 221.065 220.094 220.744 220.888 220.625 219.02 216.866 216.085 217.456 220.246 223.953 229.332 236.104 243.435 250.139 258.147 264.794 270.349 272.134 272.406 272.655 272.953 273.268 273.78 274.396 275.071 275.887 276.633 277.343 278.294 279.419 280.828 282.567 284.311 286.352 288.701 290.435 291.543 292.36 293.292 294.402 295.544 296.609 297.477 298.182 298.693 298.811 298.698 298.885 299.991 300.394 300.711 300.905 300.964 300.891 300.74 300.589 300.417 300.235 300.045 299.66 299.127 298.923 299.246 300.015 301.163 302.706 302.707 301.234 300.133 299.36 298.373 298.326 298.937 298.85 298.103 298.063 297.942 296.611 294.929 293.148 291.199 289.696 288.165 287.517 286.761 286.428 285.497 284.079 280.426 274.892 268.692 267.444 269.15 272.429 273.852 274.596 274.29 272.888 271.25 269.513 267.549 267.007 266.82 266.792 266.941 266.747 265.925 265.477 265.569 265.655 265.538 266.38 267.23 267.735 269.917 271.023 270.873 269.94 268.226 265.308 260.361 257.119 252.807 249.452 247.176 245.102 242.169 220.995 219.953 220.539 220.636 220.177 218.386 216.326 215.753 217.596 220.48 223.917 228.622 234.86 241.983 248.688 256.208 262.699 269.366 271.914 272.441 272.659 272.949 273.256 273.73 274.359 275.046 275.869 276.65 277.396 278.352 279.468 280.869 282.744 284.749 286.936 288.964 290.376 291.4 292.292 293.258 294.348 295.481 296.581 297.444 298.019 298.188 297.426 297.024 297.213 297.618 298.253 299.129 300.239 301.053 300.998 300.746 300.484 300.294 300.186 300.114 299.783 299.088 298.574 298.745 299.446 300.786 302.436 302.644 301.75 300.577 299.74 298.201 297.138 297.621 297.618 297.17 296.797 296.855 296.638 295.286 293.726 291.538 290.311 289.331 288.429 288.128 287.814 285.55 282.812 278.748 273.622 269.928 269.3 270.991 272.868 274.455 274.936 274.245 272.85 271.062 269.227 267.357 266.85 266.662 266.573 266.924 266.696 266.017 265.608 265.455 265.299 265.357 266.601 267.086 266.989 268.66 270.29 270.41 269.696 268.191 265.51 260.219 257.13 252.716 249.473 247.158 245.223 242.209 220.887 219.827 220.349 220.372 219.748 217.806 215.844 215.583 217.846 220.878 223.976 228.0 233.704 240.622 247.388 254.925 261.134 268.202 271.574 272.442 272.672 272.961 273.275 273.721 274.358 275.058 275.867 276.655 277.432 278.398 279.494 280.872 282.849 285.079 287.346 289.101 290.255 291.203 292.147 293.175 294.28 295.385 296.479 297.387 297.96 298.026 297.023 296.801 296.779 296.872 297.287 298.274 299.266 300.523 300.766 300.592 300.359 300.225 300.179 300.169 299.986 299.433 298.909 298.909 299.266 299.809 300.88 301.86 301.124 300.372 299.249 297.708 296.383 296.309 296.605 297.106 296.71 297.187 297.026 295.969 294.618 292.846 291.428 290.166 290.296 288.599 287.54 284.515 280.599 276.776 273.173 272.002 272.321 273.456 274.78 276.001 275.802 274.32 272.761 270.922 268.865 267.102 266.859 266.582 266.335 266.667 266.587 265.982 265.583 265.271 264.928 265.345 266.377 266.84 266.638 267.431 269.155 269.75 269.369 268.131 265.409 260.376 257.024 252.66 249.458 247.139 245.241 242.551 220.872 219.592 220.172 220.113 219.3 217.298 215.459 215.572 218.199 221.394 224.22 227.461 232.621 239.386 245.982 253.567 259.893 266.897 271.153 272.406 272.689 272.983 273.307 273.732 274.368 275.073 275.849 276.629 277.441 278.424 279.501 280.855 282.867 285.23 287.519 289.098 290.108 291.006 291.968 293.073 294.246 295.334 296.384 297.306 297.979 298.241 297.936 297.571 297.142 296.682 296.732 297.343 298.098 299.317 300.099 300.334 300.216 300.173 300.153 300.138 300.053 299.681 299.253 299.226 299.371 299.539 299.932 300.537 300.403 299.764 299.13 297.393 296.101 295.964 296.284 297.157 297.387 298.041 298.012 296.869 295.699 294.226 292.947 291.664 291.406 289.625 286.562 282.409 278.461 275.753 274.317 274.685 275.861 276.386 276.934 276.995 276.341 274.827 272.726 270.523 268.228 267.019 266.666 266.336 266.257 266.424 266.529 265.966 265.507 265.032 264.747 264.999 266.13 266.392 266.164 266.605 267.792 268.81 268.986 267.957 265.292 260.223 257.08 252.715 249.426 247.203 245.222 242.657 220.739 219.455 219.99 219.885 218.825 216.823 215.164 215.679 218.6 221.985 224.661 227.228 231.805 238.349 244.891 250.901 258.776 265.434 270.653 272.327 272.704 273.01 273.347 273.754 274.387 275.091 275.822 276.59 277.435 278.436 279.501 280.809 282.779 285.196 287.488 288.975 289.939 290.831 291.784 292.946 294.205 295.313 296.312 297.198 297.963 298.459 298.555 298.439 298.203 297.907 297.506 296.962 297.572 298.422 298.918 299.935 300.131 300.206 300.209 300.153 300.101 299.83 299.482 299.522 299.65 299.58 299.601 299.587 299.123 298.834 298.623 297.448 296.065 295.925 296.471 297.621 298.421 298.546 298.503 297.506 296.471 295.679 294.268 292.567 290.336 288.98 284.884 280.177 277.076 275.969 276.919 278.682 279.163 279.015 278.508 277.742 276.628 275.091 272.451 270.226 267.701 266.802 266.6 266.255 265.97 266.271 266.416 265.841 265.141 264.561 264.67 264.795 266.079 266.055 265.682 265.813 266.63 267.746 268.464 267.73 265.215 260.168 256.965 252.859 249.527 247.221 245.21 242.648 220.733 219.311 219.826 219.616 218.402 216.406 214.989 215.933 219.12 222.759 225.3 227.318 231.26 237.565 244.065 249.295 256.843 263.442 270.027 272.181 272.715 273.05 273.394 273.785 274.417 275.117 275.802 276.561 277.435 278.447 279.492 280.716 282.54 284.956 287.27 288.734 289.727 290.672 291.618 292.786 294.092 295.235 296.213 297.073 297.851 298.482 298.842 299.034 299.095 299.002 298.8 298.71 298.878 299.262 299.699 300.038 300.206 300.33 300.318 300.229 300.176 299.961 299.674 299.775 299.999 299.905 299.733 299.458 298.771 298.11 297.911 297.435 295.863 295.491 296.02 297.313 298.605 298.602 298.789 298.439 297.479 296.357 295.019 292.306 290.385 286.904 282.653 278.938 277.232 277.358 279.435 280.723 281.352 280.616 279.324 277.969 276.754 275.204 272.269 269.762 267.324 266.649 266.631 266.293 266.17 266.178 266.142 265.689 264.798 264.43 264.465 264.433 265.594 265.654 265.009 265.261 265.888 266.796 267.723 267.43 264.909 260.491 256.649 252.742 249.498 247.199 245.197 242.637 220.654 219.221 219.678 219.39 217.987 216.045 214.899 216.293 219.749 223.642 226.196 227.863 231.083 236.964 243.349 248.644 254.421 261.582 269.452 272.001 272.71 273.089 273.439 273.814 274.44 275.135 275.799 276.563 277.447 278.448 279.451 280.591 282.256 284.626 287.01 288.488 289.505 290.525 291.522 292.7 293.996 295.114 296.097 296.96 297.707 298.322 298.798 299.198 299.534 299.716 299.659 299.55 299.585 299.759 300.008 300.204 300.313 300.358 300.32 300.238 300.221 300.134 299.963 300.008 300.151 300.1 299.953 299.663 298.963 298.17 297.605 296.877 295.806 295.112 295.534 296.571 298.375 298.891 299.09 299.237 298.407 296.476 294.343 292.316 289.291 284.43 280.949 278.912 278.471 279.344 281.044 282.206 282.31 281.27 279.433 277.574 276.645 274.962 272.282 269.434 266.949 266.69 266.713 266.312 266.194 266.127 265.865 265.348 264.46 264.199 264.099 263.891 264.811 265.175 263.99 264.858 265.41 266.113 266.901 267.046 264.6 260.533 256.422 252.618 249.387 247.187 245.183 242.623 220.623 219.056 219.534 219.153 217.615 215.719 214.931 216.738 220.448 224.511 227.258 228.79 231.309 236.644 242.869 248.335 253.932 260.666 268.954 271.811 272.688 273.123 273.483 273.842 274.451 275.135 275.795 276.574 277.451 278.415 279.377 280.466 282.02 284.32 286.761 288.266 289.294 290.376 291.452 292.666 293.944 295.019 295.988 296.843 297.548 298.117 298.622 299.089 299.517 299.815 299.88 299.866 299.917 300.01 300.151 300.299 300.371 300.376 300.357 300.315 300.313 300.311 300.232 300.178 300.17 300.117 300.023 299.77 299.166 298.4 297.679 296.887 295.916 295.054 295.134 296.181 298.03 298.972 299.751 299.376 298.766 296.443 294.199 292.301 287.718 283.189 280.64 279.833 279.922 280.536 281.439 282.25 282.23 281.195 278.888 276.946 276.092 274.675 272.028 268.059 266.78 266.691 266.524 266.013 265.976 265.894 265.462 265.057 264.523 263.981 263.64 263.482 264.052 264.467 263.528 264.244 265.031 265.602 266.207 266.568 264.302 260.346 256.259 252.587 249.271 247.181 245.178 242.608 220.622 218.908 219.361 218.955 217.271 215.431 215.011 217.245 221.307 225.411 228.406 230.008 231.966 236.711 242.695 248.391 253.928 260.239 268.542 271.617 272.646 273.151 273.524 273.87 274.45 275.114 275.781 276.58 277.444 278.361 279.307 280.396 281.874 284.095 286.535 288.064 289.108 290.244 291.385 292.62 293.886 294.935 295.883 296.719 297.39 297.939 298.44 298.857 299.245 299.577 299.746 299.845 299.948 300.023 300.126 300.296 300.396 300.431 300.474 300.477 300.439 300.435 300.393 300.265 300.154 300.109 300.04 299.777 299.258 298.618 297.884 297.104 296.31 295.35 294.933 295.862 297.563 298.998 298.916 299.556 298.4 296.086 293.822 291.674 286.899 283.258 281.25 281.065 280.903 280.473 281.128 281.704 281.66 280.388 278.077 276.168 275.166 274.16 271.386 267.651 266.621 266.514 266.257 265.749 265.806 265.432 265.006 264.605 264.316 263.587 263.315 263.207 263.21 263.585 263.282 263.789 264.324 265.133 265.584 266.067 263.876 260.284 255.802 252.623 249.267 247.159 245.221 242.59 220.532 218.773 219.209 218.733 216.953 215.182 215.165 217.789 222.186 226.4 229.62 231.326 233.033 237.05 242.783 248.717 254.383 260.153 268.242 271.421 272.577 273.166 273.561 273.891 274.436 275.074 275.755 276.575 277.428 278.315 279.294 280.45 281.89 284.002 286.344 287.88 288.975 290.17 291.325 292.519 293.769 294.833 295.774 296.581 297.25 297.829 298.345 298.712 299.022 299.349 299.588 299.73 299.838 299.906 300.008 300.206 300.373 300.493 300.61 300.632 300.54 300.489 300.447 300.326 300.205 300.185 300.12 299.812 299.265 298.632 297.908 297.211 296.584 295.732 294.959 295.378 296.625 297.982 298.687 298.945 298.706 296.336 294.348 291.566 287.167 283.973 282.381 281.854 281.261 279.855 280.057 280.65 280.381 279.351 277.246 275.493 274.249 273.072 270.884 267.389 266.359 266.469 266.163 265.523 265.463 264.913 264.368 264.181 263.719 263.334 262.95 262.668 262.402 262.549 263.094 263.919 263.717 264.453 265.036 265.571 263.468 260.047 255.387 252.483 249.344 247.181 245.192 242.581 220.543 218.663 219.093 218.531 216.67 214.973 215.354 218.371 223.059 227.46 230.86 232.737 234.218 237.711 243.158 249.369 254.917 260.612 268.159 271.281 272.496 273.156 273.578 273.899 274.419 275.041 275.733 276.563 277.416 278.31 279.346 280.595 282.07 284.086 286.267 287.76 288.901 290.161 291.308 292.453 293.686 294.773 295.713 296.482 297.129 297.713 298.238 298.62 298.928 299.257 299.509 299.65 299.764 299.868 299.991 300.197 300.415 300.58 300.695 300.68 300.589 300.542 300.523 300.435 300.281 300.198 300.143 299.895 299.339 298.605 297.821 297.162 296.667 296.025 295.282 295.213 296.028 296.743 297.766 298.813 297.979 295.926 294.606 291.276 287.294 284.858 283.411 282.317 280.936 279.86 279.738 279.9 279.738 278.354 276.829 275.342 273.947 272.674 270.325 267.135 266.124 266.368 266.08 265.238 264.917 264.547 264.047 264.08 263.501 263.147 262.687 262.05 261.607 261.889 263.438 263.572 263.389 263.829 264.603 265.008 263.043 259.68 255.27 252.357 249.256 247.162 245.138 242.574 220.499 218.521 218.963 218.341 216.401 214.799 215.547 218.956 223.909 228.56 232.12 234.143 235.667 238.595 243.732 250.143 257.269 261.359 268.24 271.184 272.421 273.135 273.58 273.894 274.396 275.019 275.717 276.541 277.392 278.289 279.361 280.703 282.254 284.201 286.237 287.673 288.83 290.13 291.294 292.439 293.66 294.727 295.64 296.392 297.023 297.579 298.076 298.461 298.782 299.116 299.396 299.583 299.749 299.901 300.063 300.28 300.518 300.687 300.753 300.697 300.629 300.607 300.616 300.564 300.38 300.215 300.139 299.948 299.431 298.684 297.882 297.216 296.72 296.237 295.733 295.456 295.683 296.39 297.014 297.079 296.522 295.471 294.27 291.264 287.909 285.261 284.321 282.818 281.355 280.489 280.075 279.991 279.583 278.148 276.821 275.445 273.95 272.385 269.943 267.094 266.08 265.875 265.453 264.818 264.64 264.219 263.55 263.599 263.374 262.791 262.136 261.674 260.837 261.737 263.814 263.154 263.018 263.249 264.039 264.469 262.543 259.396 255.118 252.252 249.16 247.112 245.081 242.567 220.46 218.424 218.809 218.138 216.152 214.627 215.733 219.598 224.761 229.68 233.389 235.577 237.159 239.751 244.53 251.937 258.007 262.053 268.457 271.127 272.357 273.112 273.574 273.879 274.362 274.994 275.693 276.493 277.32 278.21 279.295 280.716 282.363 284.272 286.211 287.606 288.758 290.062 291.263 292.441 293.626 294.637 295.511 296.269 296.903 297.439 297.909 298.295 298.629 298.967 299.289 299.547 299.765 299.943 300.129 300.358 300.586 300.726 300.748 300.7 300.685 300.694 300.72 300.702 300.517 300.307 300.183 299.993 299.514 298.807 298.027 297.331 296.768 296.395 296.229 296.094 295.933 296.132 296.574 296.384 295.813 294.934 293.561 291.003 287.902 286.221 285.058 283.22 281.75 280.844 281.047 280.559 279.826 278.211 276.638 275.666 274.15 272.263 269.749 267.251 266.333 265.983 265.397 264.732 264.223 263.877 263.278 263.096 262.897 262.47 261.552 261.107 260.302 261.555 263.451 262.7 262.707 262.769 263.574 263.972 262.057 258.97 254.826 252.277 249.057 247.05 245.036 242.558 220.395 218.282 218.695 217.978 215.921 214.479 215.871 220.166 225.594 230.77 234.643 237.037 238.695 241.1 245.557 253.297 258.937 263.025 268.781 271.116 272.309 273.095 273.568 273.861 274.308 274.936 275.635 276.386 277.166 278.043 279.117 280.587 282.358 284.271 286.164 287.554 288.707 289.991 291.228 292.434 293.533 294.462 295.32 296.086 296.724 297.263 297.739 298.161 298.526 298.865 299.207 299.512 299.734 299.899 300.111 300.357 300.548 300.654 300.679 300.704 300.774 300.842 300.877 300.845 300.643 300.449 300.323 300.108 299.663 298.999 298.2 297.473 296.994 296.808 296.914 297.016 296.786 296.452 296.3 296.003 295.487 294.773 293.522 290.827 287.945 286.645 284.943 282.714 280.981 280.015 280.804 281.112 280.327 278.338 276.608 275.537 274.415 272.233 269.611 267.584 266.597 265.904 265.284 264.681 264.166 263.734 262.859 262.441 262.359 261.923 261.432 260.631 260.052 261.563 263.005 262.311 262.222 262.313 263.446 263.471 261.598 258.704 254.651 252.209 249.049 246.983 244.986 242.549 220.398 218.181 218.598 217.821 215.717 214.354 215.964 220.653 226.315 231.807 235.902 238.468 240.325 242.709 246.885 254.317 259.731 264.263 269.087 271.148 272.291 273.085 273.569 273.851 274.248 274.851 275.537 276.24 276.984 277.844 278.887 280.388 282.31 284.27 286.127 287.519 288.69 289.96 291.218 292.411 293.438 294.326 295.213 295.959 296.551 297.069 297.563 298.037 298.463 298.814 299.146 299.459 299.658 299.821 300.055 300.313 300.504 300.632 300.661 300.679 300.796 300.975 301.064 300.931 300.63 300.446 300.389 300.226 299.845 299.215 298.372 297.657 297.36 297.354 297.507 297.629 297.417 296.94 296.519 296.104 295.664 295.03 293.746 290.79 287.911 285.693 283.997 280.748 278.651 278.514 280.49 281.147 281.236 278.535 276.757 275.907 274.503 271.774 269.486 267.721 266.776 265.994 265.202 264.717 264.262 263.631 262.793 261.924 262.092 261.782 261.558 260.001 259.711 261.534 262.54 261.789 261.851 262.021 263.067 262.945 261.073 258.329 254.755 252.055 249.136 246.929 244.935 242.539 220.281 218.118 218.445 217.707 215.535 214.223 216.082 221.042 226.985 232.823 237.006 239.661 242.009 244.594 248.529 255.513 260.556 265.553 269.368 271.197 272.285 273.074 273.568 273.85 274.202 274.773 275.436 276.099 276.825 277.673 278.673 280.193 282.283 284.314 286.111 287.476 288.643 289.903 291.18 292.373 293.36 294.233 295.136 295.855 296.41 296.922 297.443 297.966 298.451 298.821 299.148 299.456 299.632 299.782 300.005 300.253 300.46 300.618 300.644 300.626 300.771 301.049 301.178 300.952 300.559 300.387 300.389 300.263 299.908 299.321 298.53 297.866 297.625 297.682 297.884 298.047 297.884 297.409 296.906 296.407 296.016 295.464 294.233 291.199 287.774 284.878 281.684 278.303 276.253 277.422 279.451 280.654 280.388 278.911 277.043 275.792 274.588 271.703 268.749 267.585 266.862 266.116 265.184 264.834 264.372 263.605 262.75 261.699 261.577 261.616 260.892 259.74 259.309 260.944 262.048 261.401 261.516 261.892 262.506 262.414 260.555 257.964 254.652 251.973 249.079 246.947 244.905 242.527 220.264 218.005 218.346 217.619 215.378 214.096 216.106 221.301 227.545 233.684 238.022 240.512 243.508 246.609 250.466 256.913 261.543 266.697 269.656 271.258 272.282 273.054 273.559 273.854 274.182 274.719 275.348 275.98 276.703 277.559 278.518 280.028 282.264 284.372 286.102 287.421 288.558 289.801 291.092 292.308 293.28 294.13 295.025 295.734 296.284 296.818 297.386 297.961 298.484 298.869 299.197 299.491 299.641 299.771 299.966 300.187 300.397 300.569 300.616 300.605 300.78 301.101 301.222 300.936 300.514 300.366 300.401 300.281 299.913 299.372 298.706 298.116 297.837 297.882 298.164 298.407 298.272 297.83 297.362 296.84 296.466 295.912 294.664 292.095 288.303 284.514 280.766 276.465 274.523 275.304 277.633 278.964 278.877 277.991 277.156 275.92 274.252 271.358 268.377 267.237 266.73 266.085 265.133 264.754 264.228 263.41 262.386 261.397 261.528 261.175 260.544 259.3 258.839 260.654 261.432 261.192 261.237 261.655 261.99 261.808 260.074 257.587 254.418 251.945 248.975 246.962 244.923 242.56 220.253 217.892 218.253 217.535 215.248 213.984 216.06 221.428 227.919 234.495 238.989 241.44 244.615 248.518 252.523 258.272 263.09 267.757 270.017 271.342 272.279 273.016 273.533 273.867 274.197 274.698 275.276 275.876 276.618 277.522 278.449 279.912 282.245 284.416 286.1 287.375 288.466 289.671 290.962 292.206 293.177 293.999 294.873 295.586 296.145 296.696 297.321 297.952 298.496 298.888 299.225 299.501 299.645 299.783 299.971 300.158 300.334 300.522 300.623 300.681 300.864 301.146 301.215 300.922 300.537 300.427 300.491 300.409 300.057 299.496 298.854 298.338 298.106 298.267 298.671 298.903 298.701 298.386 298.104 297.684 296.964 296.188 295.271 292.852 289.332 285.624 280.909 276.024 273.286 273.162 274.878 276.259 276.649 276.951 277.161 275.719 273.916 270.875 267.95 266.809 266.452 265.953 265.076 264.617 264.149 263.142 262.242 261.292 261.301 261.159 260.369 258.977 258.593 259.862 260.598 260.905 261.104 261.353 261.552 261.122 259.608 257.25 254.255 251.924 248.852 246.89 244.95 242.637 220.253 217.826 218.123 217.449 215.134 213.876 215.98 221.454 228.166 235.224 239.945 242.53 245.672 250.151 254.54 259.494 264.572 268.636 270.389 271.445 272.291 272.978 273.487 273.867 274.229 274.698 275.224 275.802 276.58 277.561 278.472 279.904 282.265 284.448 286.107 287.358 288.428 289.61 290.882 292.115 293.093 293.926 294.798 295.503 296.041 296.58 297.236 297.888 298.424 298.824 299.193 299.481 299.666 299.845 300.03 300.173 300.328 300.555 300.688 300.751 300.901 301.124 301.158 300.87 300.528 300.443 300.54 300.575 300.329 299.687 298.899 298.413 298.359 298.699 299.193 299.404 299.239 299.09 298.939 298.543 298.075 296.998 295.335 293.347 291.089 287.266 282.524 277.272 272.91 270.52 269.538 271.66 273.322 275.013 275.957 275.427 273.767 270.327 267.557 266.495 266.143 265.859 265.065 264.555 263.984 263.002 262.101 261.193 260.684 260.406 259.863 258.777 258.334 259.223 259.836 260.423 260.933 260.959 261.379 260.451 259.188 256.957 254.292 251.807 248.787 246.799 244.921 242.695 220.237 217.733 218.061 217.403 215.068 213.789 215.889 221.369 228.254 235.738 240.97 243.87 247.081 251.514 256.189 259.832 265.945 269.419 270.749 271.566 272.326 272.948 273.425 273.845 274.255 274.698 275.186 275.758 276.592 277.662 278.555 279.992 282.354 284.493 286.106 287.326 288.393 289.585 290.837 292.036 293.02 293.875 294.742 295.42 295.944 296.5 297.196 297.837 298.341 298.752 299.148 299.45 299.682 299.906 300.084 300.196 300.358 300.603 300.736 300.773 300.902 301.086 301.073 300.763 300.464 300.42 300.521 300.633 300.565 300.01 299.222 298.781 298.786 299.131 299.683 300.008 299.979 299.852 299.635 300.043 299.157 297.176 295.453 294.17 292.442 289.538 285.737 280.426 274.124 266.506 264.869 265.868 268.08 272.457 274.953 275.147 273.563 269.865 267.153 266.116 265.859 265.633 265.187 264.547 263.97 262.675 261.877 261.08 260.449 260.163 259.579 258.825 257.921 258.821 259.455 259.796 260.806 260.664 261.024 259.983 258.764 256.712 254.198 251.697 248.842 246.704 244.866 242.711 220.26 217.714 217.938 217.322 215.036 213.71 215.761 221.164 228.255 236.004 241.69 244.991 248.373 252.747 256.952 260.511 267.218 270.114 271.097 271.71 272.39 272.937 273.357 273.809 274.27 274.692 275.162 275.764 276.694 277.835 278.701 280.18 282.517 284.56 286.094 287.272 288.356 289.581 290.811 291.962 292.934 293.806 294.656 295.301 295.839 296.459 297.191 297.794 298.258 298.679 299.078 299.384 299.665 299.938 300.135 300.248 300.412 300.613 300.718 300.757 300.889 301.042 300.979 300.664 300.422 300.412 300.47 300.594 300.717 300.421 299.841 299.475 299.356 299.525 300.147 300.68 300.699 300.359 299.954 300.392 298.989 297.337 295.239 294.557 293.297 291.394 288.74 283.672 275.329 264.36 260.788 261.594 264.556 268.41 273.384 274.781 273.608 269.657 266.853 265.743 265.934 265.773 265.215 264.397 263.721 262.297 261.652 260.904 260.424 260.118 259.759 258.692 257.749 258.488 259.089 259.681 260.795 260.565 260.506 259.631 258.343 256.409 254.049 251.603 248.858 246.63 244.801 242.709 220.194 217.652 217.879 217.328 215.058 213.642 215.592 220.868 228.144 236.011 241.932 245.506 249.171 253.568 256.092 261.447 268.156 270.682 271.441 271.897 272.502 272.976 273.321 273.776 274.274 274.68 275.171 275.875 276.962 278.097 279.01 280.566 282.783 284.651 286.06 287.213 288.347 289.608 290.809 291.886 292.807 293.688 294.527 295.151 295.738 296.44 297.155 297.705 298.159 298.581 298.966 299.282 299.61 299.937 300.192 300.345 300.473 300.558 300.603 300.662 300.77 300.903 300.881 300.669 300.495 300.457 300.422 300.504 300.753 300.716 300.353 299.953 299.59 299.679 300.377 301.161 301.077 300.934 300.607 300.214 298.558 297.03 295.502 294.578 293.744 292.643 290.573 284.418 274.159 261.615 257.61 258.814 262.217 266.302 271.613 274.262 273.831 270.246 266.66 265.808 265.955 265.98 265.336 264.125 263.462 262.081 261.485 260.853 260.481 260.01 259.385 258.135 257.564 258.208 258.726 259.418 260.665 260.423 260.093 259.257 257.918 256.121 253.879 251.61 248.795 246.586 244.736 242.707 220.194 217.596 217.785 217.286 215.1 213.596 215.406 220.518 227.879 235.719 241.702 245.573 249.401 253.743 256.136 261.506 268.369 270.903 271.675 272.084 272.629 273.05 273.341 273.756 274.256 274.657 275.177 276.059 277.32 278.465 279.482 281.058 283.079 284.721 286.006 287.178 288.371 289.644 290.802 291.796 292.646 293.524 294.375 295.023 295.674 296.419 297.067 297.593 298.069 298.481 298.856 299.202 299.553 299.89 300.185 300.382 300.48 300.505 300.551 300.583 300.597 300.703 300.798 300.712 300.555 300.48 300.414 300.485 300.742 300.772 300.398 299.845 299.224 299.294 300.321 301.86 302.42 301.575 300.715 299.689 298.481 296.659 295.451 293.917 293.523 292.258 288.375 281.042 268.39 258.793 256.947 258.81 261.694 264.772 268.571 273.598 273.828 271.002 266.983 265.811 266.057 266.096 265.215 263.973 263.18 261.883 261.598 260.848 260.233 259.826 259.007 257.955 257.363 257.923 258.392 259.117 260.504 260.336 259.751 258.877 257.534 255.89 253.844 251.51 248.667 246.577 244.697 242.696 220.196 217.587 217.715 217.293 215.175 213.592 215.191 220.116 227.487 235.186 241.018 244.881 248.779 253.156 256.854 261.286 267.986 270.87 271.82 272.251 272.745 273.103 273.37 273.754 274.194 274.584 275.131 276.245 277.669 278.878 279.975 281.518 283.33 284.752 285.938 287.148 288.38 289.64 290.75 291.663 292.457 293.331 294.199 294.895 295.622 296.378 296.964 297.478 297.963 298.363 298.734 299.114 299.476 299.813 300.158 300.38 300.451 300.473 300.562 300.586 300.53 300.597 300.724 300.673 300.531 300.469 300.417 300.473 300.715 300.811 300.524 299.271 298.419 299.05 301.619 303.308 302.811 301.676 300.495 299.354 298.335 297.162 295.639 294.808 292.526 289.801 283.551 274.145 261.542 257.279 259.064 262.01 263.571 264.453 266.935 272.296 273.569 271.498 267.369 265.751 266.068 266.301 265.134 263.632 262.563 261.512 261.393 260.673 259.999 259.55 258.951 257.722 257.166 257.614 258.109 259.204 260.411 260.287 259.522 258.544 257.246 255.736 253.763 251.336 248.544 246.559 244.669 242.681 220.181 217.569 217.638 217.259 215.274 213.614 214.968 219.693 226.978 234.391 239.889 243.722 247.501 251.794 257.302 261.067 266.949 270.627 271.891 272.395 272.832 273.117 273.369 273.763 274.133 274.479 275.088 276.41 277.988 279.28 280.417 281.889 283.503 284.747 285.88 287.131 288.376 289.603 290.654 291.505 292.275 293.153 294.035 294.776 295.565 296.316 296.853 297.342 297.823 298.216 298.598 299.008 299.392 299.756 300.157 300.364 300.383 300.418 300.568 300.634 300.575 300.595 300.667 300.603 300.5 300.464 300.415 300.46 300.698 300.806 300.336 299.933 300.322 301.726 302.893 303.253 302.567 301.881 300.691 299.225 298.527 297.697 295.924 294.768 292.24 286.645 276.612 262.911 256.892 257.167 262.518 265.896 267.189 266.266 265.918 270.449 272.786 271.63 267.569 265.805 266.071 266.191 264.831 263.308 262.134 261.456 261.274 260.663 259.876 259.499 259.136 257.725 257.203 257.242 257.871 259.125 260.237 260.174 259.334 258.246 256.986 255.56 253.616 251.177 248.425 246.514 244.643 242.661 220.178 217.556 217.595 217.259 215.356 213.652 214.735 219.268 226.384 233.395 238.523 242.088 245.765 250.165 255.141 260.592 265.271 270.09 271.883 272.501 272.866 273.105 273.338 273.736 274.079 274.403 275.121 276.639 278.315 279.639 280.766 282.13 283.57 284.722 285.87 287.163 288.394 289.549 290.516 291.345 292.136 293.016 293.901 294.662 295.471 296.206 296.706 297.16 297.631 298.039 298.461 298.899 299.32 299.735 300.168 300.328 300.28 300.323 300.535 300.678 300.687 300.657 300.634 300.576 300.526 300.452 300.404 300.557 300.858 300.88 300.629 300.45 300.619 301.406 301.632 301.316 301.847 301.88 301.132 299.737 298.874 298.045 296.9 295.016 290.755 281.823 268.921 256.675 253.988 258.544 265.117 270.018 270.738 268.009 265.365 267.88 271.822 271.269 267.484 266.049 265.942 265.816 264.67 262.956 261.899 261.392 261.053 260.423 259.806 259.55 258.994 257.819 256.757 256.82 257.586 258.815 259.954 259.958 259.116 257.931 256.686 255.345 253.459 250.995 248.406 246.441 244.62 242.637 220.255 217.553 217.542 217.245 215.479 213.741 214.504 218.833 225.736 232.331 236.995 240.134 243.775 248.386 253.445 259.869 263.905 269.045 271.786 272.518 272.83 273.075 273.317 273.672 274.016 274.388 275.25 276.945 278.621 279.91 280.976 282.224 283.562 284.722 285.926 287.227 288.415 289.492 290.392 291.231 292.063 292.925 293.771 294.517 295.294 296.004 296.528 297.0 297.471 297.903 298.363 298.842 299.284 299.705 300.119 300.276 300.262 300.309 300.495 300.655 300.718 300.686 300.617 300.569 300.493 300.306 300.246 300.51 300.957 300.835 300.001 299.278 298.752 298.924 298.96 299.575 300.948 301.39 300.58 299.361 298.579 297.831 296.545 294.16 287.652 275.956 260.468 253.233 252.759 259.491 266.849 272.535 272.98 270.731 265.705 266.519 270.456 270.583 267.334 265.948 265.843 265.383 264.526 262.889 261.788 261.225 260.651 260.402 259.679 259.361 258.916 257.782 256.726 256.462 257.25 258.688 259.619 259.676 258.925 257.62 256.367 255.176 253.272 250.899 248.304 246.349 244.643 242.609 220.251 217.523 217.484 217.275 215.647 213.869 214.281 218.381 225.036 231.207 235.338 238.148 241.703 246.568 251.877 258.498 263.354 267.4 271.62 272.476 272.761 273.032 273.299 273.624 273.977 274.428 275.464 277.285 278.923 280.175 281.181 282.32 283.579 284.756 285.997 287.269 288.411 289.436 290.301 291.155 292.017 292.851 293.642 294.356 295.082 295.764 296.336 296.858 297.347 297.805 298.304 298.813 299.27 299.668 300.043 300.227 300.269 300.293 300.397 300.534 300.632 300.651 300.59 300.538 300.429 300.166 300.012 300.135 300.216 299.926 299.386 298.699 298.202 298.126 298.047 298.058 299.171 299.7 299.055 298.475 297.58 297.016 295.838 292.433 283.154 270.371 256.62 251.785 253.205 259.934 268.056 274.023 274.901 272.168 266.61 265.956 269.586 269.037 266.677 265.946 265.582 265.052 264.515 262.939 261.753 261.329 260.513 260.419 259.745 259.412 258.874 257.883 256.576 256.247 257.003 258.128 259.09 259.346 258.782 257.443 256.142 255.005 253.171 250.752 248.172 246.263 244.674 242.577 220.242 217.57 217.489 217.263 215.82 214.005 214.089 217.936 224.299 230.062 233.712 236.227 239.756 244.868 250.459 256.492 262.378 265.918 271.341 272.381 272.657 272.962 273.272 273.607 273.997 274.539 275.745 277.625 279.211 280.442 281.427 282.474 283.641 284.812 286.057 287.283 288.399 289.411 290.254 291.105 291.982 292.78 293.519 294.204 294.887 295.542 296.158 296.721 297.236 297.734 298.269 298.789 299.253 299.619 299.949 300.149 300.231 300.237 300.288 300.386 300.493 300.574 300.565 300.517 300.424 300.187 299.917 299.727 299.595 299.46 299.133 298.454 297.94 297.797 297.621 297.72 298.268 299.026 298.711 297.923 297.443 296.56 295.452 290.188 278.452 262.059 253.961 251.479 253.589 259.18 267.696 274.361 275.58 272.63 267.901 267.2 268.802 267.206 265.699 265.431 265.379 265.008 264.7 263.206 261.869 261.131 260.338 260.136 259.398 259.239 258.949 257.798 256.405 255.994 256.531 257.428 258.434 258.931 258.597 257.3 255.975 254.836 253.059 250.577 248.011 246.187 244.691 242.552 220.27 217.626 217.466 217.31 215.956 214.184 213.948 217.457 223.564 228.975 232.204 234.517 237.975 243.259 249.197 254.979 261.396 265.223 270.981 272.236 272.519 272.867 273.24 273.624 274.102 274.763 276.096 277.967 279.474 280.698 281.718 282.706 283.757 284.885 286.1 287.286 288.413 289.446 290.247 291.049 291.901 292.65 293.345 294.022 294.695 295.347 295.992 296.574 297.116 297.676 298.216 298.717 299.177 299.509 299.802 300.006 300.136 300.22 300.337 300.389 300.429 300.54 300.602 300.57 300.527 300.383 300.085 299.707 299.375 299.188 298.925 298.371 297.914 297.806 297.626 297.591 298.184 298.392 298.376 297.571 296.711 296.092 294.523 287.554 274.739 258.914 252.795 252.06 252.886 257.788 265.093 273.214 275.116 272.712 269.058 268.976 268.878 265.895 264.34 264.208 264.312 264.693 264.642 263.559 262.276 261.029 260.033 259.753 259.191 258.981 258.844 257.445 256.146 255.796 256.029 256.847 257.978 258.489 258.368 257.124 255.756 254.643 252.9 250.34 247.878 246.162 244.7 242.538 220.29 217.618 217.439 217.33 216.161 214.403 213.892 216.976 222.802 227.921 230.815 232.936 236.401 241.907 248.037 253.969 260.688 264.915 270.747 272.135 272.421 272.809 273.226 273.663 274.254 275.019 276.402 278.219 279.658 280.874 281.941 282.915 283.876 284.948 286.137 287.305 288.442 289.465 290.205 290.947 291.765 292.482 293.147 293.816 294.495 295.175 295.857 296.45 297.001 297.592 298.127 298.613 299.063 299.375 299.651 299.905 300.117 300.297 300.465 300.496 300.504 300.649 300.739 300.691 300.63 300.441 300.081 299.745 299.495 299.213 298.78 298.159 297.685 297.597 297.548 297.546 297.964 298.417 298.008 297.374 296.697 295.486 293.049 284.77 271.117 257.602 253.298 252.964 252.356 255.964 262.367 271.128 274.125 272.794 270.121 269.618 267.319 264.379 262.469 262.086 263.146 263.845 264.457 263.512 262.465 261.248 260.063 259.552 258.993 258.666 258.306 257.133 255.821 255.443 255.619 256.169 257.15 257.884 258.061 256.894 255.468 254.384 252.699 250.16 247.748 246.17 244.696 242.523 220.312 217.649 217.47 217.402 216.369 214.684 213.772 216.526 222.031 226.938 229.535 231.552 234.969 240.635 247.03 253.116 260.052 264.762 270.698 272.106 272.385 272.8 273.233 273.712 274.399 275.245 276.627 278.399 279.804 281.01 282.097 283.06 283.969 285.001 286.18 287.343 288.456 289.423 290.118 290.847 291.665 292.376 293.036 293.7 294.367 295.055 295.76 296.354 296.914 297.516 298.051 298.525 298.957 299.257 299.54 299.857 300.119 300.325 300.487 300.543 300.603 300.771 300.834 300.791 300.746 300.487 300.017 299.695 299.525 299.233 298.771 298.148 297.609 297.445 297.521 297.637 297.845 298.161 298.147 297.404 296.612 295.409 291.888 282.451 267.618 257.074 254.096 253.696 252.158 254.327 260.233 268.936 273.076 273.384 271.178 269.657 267.112 262.916 260.595 259.989 261.57 263.557 264.194 263.58 262.492 261.273 259.727 259.271 258.628 258.274 257.733 256.527 255.319 254.919 255.106 255.508 256.083 257.122 257.677 256.622 255.147 254.116 252.56 249.969 247.723 246.171 244.695 242.505 220.351 217.753 217.5 217.417 216.585 215.001 213.794 216.114 221.323 225.973 228.446 230.313 233.627 239.316 246.071 252.42 259.266 264.673 270.725 272.12 272.395 272.833 273.258 273.757 274.531 275.432 276.781 278.524 279.93 281.129 282.196 283.133 284.028 285.049 286.241 287.401 288.454 289.34 290.018 290.779 291.62 292.334 293.007 293.679 294.322 294.993 295.689 296.272 296.842 297.463 297.995 298.441 298.847 299.147 299.455 299.821 300.093 300.296 300.466 300.578 300.69 300.817 300.835 300.841 300.868 300.608 300.096 299.77 299.601 299.319 298.897 298.278 297.645 297.372 297.548 297.784 297.841 297.973 298.305 297.992 296.608 294.987 290.776 280.842 266.835 257.412 254.85 254.086 252.704 253.478 258.786 265.17 272.164 273.644 271.745 269.41 265.843 261.291 258.978 258.344 260.181 262.676 264.086 263.407 262.541 261.217 259.691 258.909 258.478 258.028 256.825 255.481 254.643 254.564 254.622 254.929 255.393 255.993 257.095 256.315 254.907 253.971 252.426 249.913 247.726 246.157 244.677 242.483 220.411 217.78 217.516 217.535 216.802 215.331 213.797 215.757 220.632 225.059 227.435 229.099 232.406 238.086 245.205 251.806 258.98 264.566 270.694 272.139 272.437 272.892 273.302 273.809 274.658 275.59 276.885 278.597 280.037 281.223 282.216 283.113 284.038 285.109 286.338 287.476 288.431 289.228 289.917 290.732 291.574 292.261 292.937 293.626 294.263 294.925 295.603 296.181 296.763 297.413 297.939 298.33 298.689 299.015 299.378 299.77 300.047 300.293 300.518 300.639 300.691 300.74 300.785 300.879 300.936 300.687 300.268 300.004 299.795 299.456 299.01 298.361 297.7 297.433 297.593 297.772 297.741 297.72 297.897 297.498 295.623 294.063 289.746 280.508 268.258 258.695 255.663 254.689 253.731 254.353 258.352 264.027 272.164 273.922 272.163 268.901 263.442 259.845 258.205 257.872 259.557 262.09 263.27 262.955 262.503 261.116 259.569 258.749 258.375 257.329 255.816 254.596 253.964 254.214 254.213 254.458 254.818 255.314 256.487 255.916 254.707 253.784 252.297 249.896 247.742 246.115 244.646 242.476 220.441 217.865 217.621 217.558 217.019 215.688 213.961 215.489 220.008 224.196 226.547 228.192 231.369 237.014 244.338 251.194 259.09 264.494 270.523 272.128 272.473 272.943 273.35 273.862 274.76 275.698 276.931 278.611 280.081 281.239 282.141 283.005 284.012 285.18 286.433 287.509 288.363 289.088 289.804 290.665 291.491 292.143 292.807 293.487 294.141 294.827 295.514 296.105 296.713 297.354 297.862 298.231 298.573 298.936 299.37 299.789 300.081 300.345 300.551 300.601 300.598 300.684 300.848 300.992 300.968 300.704 300.394 300.173 299.922 299.58 299.179 298.583 297.992 297.753 297.776 297.764 297.673 297.514 297.304 296.294 294.492 292.565 288.948 281.324 270.712 261.003 256.971 255.365 255.069 255.684 258.832 263.249 270.97 273.536 271.909 267.758 261.407 258.61 257.82 257.869 259.885 261.866 262.471 262.923 262.622 261.151 259.733 258.516 257.887 256.686 255.102 253.847 253.402 253.883 253.896 254.067 254.289 254.78 255.85 255.452 254.428 253.482 252.174 249.812 247.711 246.051 244.607 242.504 220.485 217.933 217.702 217.705 217.19 216.057 214.22 215.277 219.382 223.363 225.776 227.391 230.463 236.078 243.503 250.635 259.008 264.241 270.16 272.084 272.501 272.98 273.393 273.914 274.841 275.786 276.967 278.602 280.075 281.201 282.031 282.897 284.006 285.259 286.493 287.473 288.242 288.94 289.699 290.609 291.432 292.079 292.738 293.393 294.052 294.751 295.437 296.056 296.694 297.291 297.753 298.124 298.491 298.913 299.422 299.872 300.169 300.397 300.534 300.558 300.596 300.725 300.913 301.065 301.046 300.851 300.591 300.32 300.028 299.754 299.455 298.865 298.185 297.832 297.861 297.936 297.95 297.722 296.856 295.215 293.823 291.543 288.576 282.289 273.047 263.193 258.419 256.32 256.305 257.064 259.222 262.699 269.996 272.723 270.991 265.96 259.984 257.857 257.625 258.309 260.134 261.864 262.532 262.9 262.287 260.97 259.409 258.112 257.282 256.024 254.683 253.211 252.964 253.612 253.638 253.735 253.833 254.171 255.183 254.881 253.949 253.161 252.035 249.708 247.681 245.972 244.559 242.538 220.532 218.042 217.741 217.692 217.442 216.422 214.545 215.148 218.764 222.55 224.933 226.605 229.62 235.219 242.757 250.153 258.776 263.943 269.513 272.014 272.527 273.012 273.436 273.971 274.912 275.865 277.002 278.581 280.032 281.127 281.922 282.825 284.035 285.345 286.511 287.378 288.096 288.821 289.63 290.567 291.378 292.03 292.687 293.309 293.971 294.687 295.371 296.02 296.681 297.203 297.596 297.991 298.434 298.945 299.524 299.985 300.276 300.453 300.541 300.594 300.689 300.787 300.908 301.058 301.1 300.952 300.646 300.281 300.008 299.867 299.661 298.989 298.092 297.553 297.76 298.157 298.524 297.916 297.198 296.542 294.163 291.561 288.785 282.854 274.555 265.685 260.426 257.658 257.063 257.569 259.903 261.74 268.334 271.294 269.702 263.342 259.171 257.426 257.72 258.54 260.012 261.418 262.173 262.474 262.417 260.972 259.051 257.959 256.74 255.689 254.283 252.856 252.723 253.391 253.43 253.534 253.481 253.592 254.391 254.189 253.319 252.87 251.949 249.624 247.624 245.892 244.508 242.566 220.509 218.092 217.873 217.966 217.665 216.797 214.919 215.089 218.222 221.75 224.127 225.852 228.841 234.452 242.172 249.645 257.2 263.584 268.649 271.925 272.56 273.047 273.477 274.028 274.973 275.933 277.032 278.544 279.953 281.015 281.828 282.804 284.114 285.434 286.461 287.24 287.975 288.774 289.614 290.511 291.263 291.891 292.529 293.126 293.83 294.607 295.325 296.003 296.631 297.03 297.354 297.842 298.446 299.084 299.707 300.148 300.4 300.561 300.629 300.673 300.754 300.804 300.887 301.006 300.944 300.583 300.077 299.405 299.786 299.982 299.982 299.479 298.588 297.908 298.099 297.73 298.636 298.35 298.316 296.924 294.667 291.047 288.611 282.921 274.912 266.774 261.872 259.02 257.576 257.496 258.869 261.072 266.669 269.789 268.299 261.982 258.463 257.083 257.589 258.29 259.934 261.014 261.548 262.336 262.155 260.887 259.185 257.765 256.125 255.07 253.913 252.652 252.597 253.089 253.298 253.373 253.175 253.143 253.634 253.378 252.596 252.717 251.906 249.554 247.573 245.819 244.48 242.588 220.595 218.151 218.008 218.002 217.969 217.202 215.304 215.169 217.813 221.007 223.36 225.175 228.223 233.92 241.681 249.147 255.563 262.798 268.036 271.858 272.611 273.086 273.509 274.064 274.999 275.965 277.05 278.509 279.859 280.897 281.763 282.828 284.211 285.432 286.342 287.105 287.913 288.768 289.613 290.47 291.172 291.772 292.392 292.987 293.746 294.599 295.356 295.995 296.502 296.784 297.139 297.792 298.56 299.285 299.918 300.327 300.546 300.687 300.696 300.675 300.755 300.86 300.939 300.873 300.462 299.752 298.783 298.802 299.92 300.405 300.649 300.616 300.166 299.466 299.054 299.588 300.064 298.852 297.149 295.292 292.922 289.914 286.613 280.816 273.411 266.091 262.298 259.946 258.32 257.372 258.835 260.834 266.03 269.122 267.247 261.58 258.201 256.793 257.2 257.905 259.333 260.49 261.184 262.415 262.128 260.742 259.273 257.703 255.947 254.818 253.758 252.766 252.528 252.871 253.152 253.224 252.87 252.677 253.238 252.658 252.847 252.67 251.895 249.561 247.531 245.745 244.468 242.597 220.636 218.278 218.106 218.271 218.24 217.62 215.723 215.308 217.543 220.397 222.659 224.647 227.773 233.473 241.267 248.678 255.041 261.79 267.819 271.836 272.675 273.14 273.543 274.086 274.998 275.975 277.076 278.484 279.761 280.785 281.713 282.889 284.259 285.368 286.196 286.98 287.863 288.764 289.618 290.476 291.169 291.748 292.349 292.96 293.756 294.634 295.373 295.912 296.281 296.532 297.019 297.854 298.722 299.467 300.09 300.483 300.683 300.781 300.732 300.695 300.799 300.876 300.776 300.428 299.811 298.539 298.377 299.417 300.156 300.501 300.816 301.13 300.889 300.329 299.929 300.673 300.04 298.183 296.178 293.928 291.312 288.198 283.538 277.6 269.987 264.772 262.087 260.453 259.051 258.135 259.909 262.091 266.463 269.061 267.722 262.011 258.567 257.021 256.834 257.547 258.732 260.054 261.447 262.466 262.107 260.573 259.068 257.34 255.567 254.501 253.618 252.943 252.775 252.805 252.959 253.122 252.564 252.237 252.885 252.268 252.863 252.9 251.896 249.619 247.523 245.743 244.465 242.598 220.682 218.42 218.269 218.295 218.506 218.039 216.169 215.566 217.373 219.843 222.027 224.243 227.421 233.115 240.939 248.268 254.598 261.112 267.904 271.862 272.739 273.199 273.58 274.102 274.98 275.983 277.114 278.464 279.671 280.688 281.696 282.953 284.26 285.273 286.058 286.888 287.838 288.784 289.643 290.504 291.186 291.727 292.307 292.977 293.797 294.644 295.299 295.722 296.018 296.347 297.022 298.01 298.911 299.635 300.224 300.591 300.773 300.833 300.772 300.75 300.801 300.65 300.231 299.474 298.533 298.013 299.2 299.676 300.09 299.93 300.056 299.971 300.147 300.63 300.479 300.252 299.287 297.143 295.064 292.787 289.841 285.415 280.898 275.862 269.664 265.808 263.482 261.429 260.392 259.475 260.837 264.128 267.602 269.908 268.231 263.275 259.116 257.41 257.28 257.75 258.78 260.289 261.6 262.333 261.962 260.413 258.817 256.874 255.373 254.244 253.687 253.206 252.983 252.739 252.839 253.012 252.356 251.931 252.331 252.285 252.952 253.351 251.842 249.694 247.511 245.733 244.471 242.598 220.76 218.494 218.476 218.592 218.718 218.439 216.616 215.782 217.24 219.379 221.467 223.857 227.145 232.878 240.679 247.929 254.361 260.977 268.263 271.934 272.791 273.258 273.628 274.114 274.96 276.003 277.152 278.447 279.596 280.613 281.728 282.999 284.224 285.175 285.973 286.869 287.875 288.863 289.703 290.512 291.144 291.638 292.254 293.05 293.873 294.612 295.118 295.468 295.835 296.365 297.208 298.244 299.118 299.81 300.352 300.653 300.802 300.863 300.84 300.756 300.529 299.912 298.536 298.056 298.232 298.491 299.081 298.457 299.071 299.826 299.613 299.357 299.477 299.824 299.846 299.742 298.847 296.889 294.768 292.314 289.025 284.677 281.364 278.127 274.48 270.541 266.704 264.033 262.024 261.525 263.323 266.789 269.393 270.217 268.542 264.622 260.365 258.49 258.103 259.185 260.212 261.308 261.842 262.041 261.553 260.198 258.51 256.384 255.082 254.08 253.633 253.404 253.11 252.704 252.804 252.862 252.17 251.677 251.878 252.514 253.597 253.334 251.778 249.675 247.479 245.723 244.473 242.597 220.795 218.625 218.583 218.67 218.95 218.801 217.06 216.056 217.169 218.941 221.016 223.542 227.024 232.769 240.575 247.701 254.436 260.656 268.682 272.019 272.819 273.302 273.669 274.118 274.961 276.031 277.173 278.428 279.536 280.579 281.769 283.026 284.184 285.133 285.992 286.911 287.923 288.907 289.721 290.506 291.163 291.713 292.454 293.293 294.007 294.548 294.946 295.383 295.938 296.625 297.495 298.449 299.283 299.966 300.461 300.706 300.845 300.927 300.891 300.645 300.06 298.82 298.052 298.335 298.987 298.737 298.667 298.518 299.442 299.798 299.93 299.875 299.667 300.333 299.667 298.708 298.162 296.577 294.825 292.38 289.431 286.14 284.003 281.641 278.218 274.465 271.301 267.114 264.668 264.427 266.107 268.988 270.501 270.34 268.44 264.69 261.677 260.581 259.676 260.737 261.106 261.891 261.779 261.713 261.05 259.477 257.881 256.022 254.69 253.878 253.434 253.321 253.231 252.879 252.783 252.708 252.082 251.416 251.642 252.477 253.797 253.208 251.695 249.595 247.426 245.703 244.478 242.574 220.9 218.761 218.731 218.982 219.145 219.087 217.464 216.334 217.15 218.504 220.543 223.269 226.991 232.868 240.662 247.737 254.79 260.336 269.123 272.104 272.834 273.338 273.698 274.113 274.985 276.056 277.18 278.401 279.473 280.563 281.803 283.052 284.158 285.12 286.038 286.951 287.923 288.879 289.687 290.496 291.23 291.878 292.693 293.465 294.02 294.408 294.839 295.451 296.174 296.955 297.828 298.722 299.503 300.136 300.575 300.799 300.926 300.98 300.878 300.538 299.408 298.681 298.688 299.385 299.653 299.389 299.353 299.316 299.38 299.655 300.182 300.305 299.801 298.952 297.844 297.348 297.307 296.23 294.688 292.528 289.662 287.115 285.433 282.804 278.922 275.219 272.854 270.048 267.655 267.439 268.752 270.493 271.281 270.529 268.089 265.042 262.648 261.949 261.618 261.878 261.793 261.996 261.751 261.304 260.437 258.959 257.512 255.49 254.272 253.688 253.447 253.393 253.306 252.969 252.77 252.543 251.822 251.193 251.495 252.451 253.552 253.04 251.558 249.483 247.368 245.677 244.487 242.542 220.946 218.856 218.939 219.069 219.403 219.346 217.786 216.596 217.137 218.11 220.048 222.984 227.007 233.135 240.898 247.907 255.006 261.028 269.579 272.186 272.85 273.37 273.72 274.114 275.022 276.075 277.178 278.362 279.407 280.551 281.837 283.088 284.155 285.129 286.094 286.989 287.905 288.838 289.655 290.485 291.271 291.987 292.804 293.485 293.932 294.314 294.906 295.696 296.533 297.361 298.259 299.134 299.821 300.333 300.692 300.896 300.978 300.941 300.785 300.473 299.158 299.152 299.412 299.891 299.652 299.41 299.363 299.371 299.32 299.49 299.678 300.11 300.507 298.689 297.286 296.795 296.792 295.248 293.576 291.716 289.114 286.705 284.921 281.993 277.742 274.843 273.733 271.91 270.385 269.715 270.299 271.268 271.304 270.199 267.927 265.375 263.645 262.574 261.636 262.013 261.821 261.719 261.292 260.748 259.647 258.524 257.218 255.082 253.877 253.579 253.588 253.522 253.41 252.93 252.687 252.386 251.45 250.895 251.421 253.348 253.603 252.825 251.379 249.303 247.281 245.657 244.49 242.503 221.008 219.061 219.193 219.435 219.608 219.557 218.066 216.845 217.105 217.711 219.557 222.701 227.123 233.561 241.296 248.156 255.076 262.251 269.962 272.262 272.862 273.399 273.741 274.134 275.073 276.094 277.155 278.296 279.342 280.546 281.882 283.151 284.19 285.166 286.153 287.038 287.925 288.879 289.73 290.561 291.344 292.095 292.892 293.546 294.034 294.614 295.449 296.37 297.241 298.051 298.926 299.739 300.221 300.521 300.792 300.958 300.923 300.734 300.159 299.854 300.381 300.311 300.174 299.883 299.47 299.195 299.178 299.317 299.417 299.545 299.982 300.512 301.142 299.172 297.691 297.388 294.811 293.242 292.562 291.836 288.903 286.08 283.809 281.119 278.1 276.433 275.516 273.903 271.933 271.229 271.4 271.016 270.849 269.65 267.958 265.796 264.121 262.832 261.819 261.728 261.491 261.101 260.418 259.759 258.847 258.107 256.875 254.674 253.41 253.412 253.634 253.629 253.468 252.854 252.576 252.098 251.265 250.697 251.883 253.719 253.712 252.588 251.141 249.138 247.208 245.634 244.485 242.461 221.132 219.229 219.38 219.561 219.88 219.772 218.309 217.046 217.084 217.326 219.062 222.478 227.356 234.146 241.728 248.427 256.552 263.253 270.143 272.308 272.877 273.413 273.753 274.176 275.123 276.096 277.102 278.209 279.306 280.569 281.932 283.223 284.27 285.232 286.201 287.087 288.006 289.017 289.936 290.824 291.654 292.451 293.243 293.868 294.454 295.277 296.321 297.34 298.221 298.947 299.65 300.24 300.505 300.667 300.913 301.053 300.895 300.577 299.752 300.148 300.534 300.441 300.191 299.898 299.627 299.537 299.439 299.452 299.575 299.662 299.716 299.904 299.957 298.965 297.969 296.881 295.969 294.76 293.481 293.083 289.973 286.59 283.791 281.482 279.388 277.997 276.622 275.066 273.734 272.549 271.518 270.574 269.96 269.408 267.74 266.06 264.912 262.812 261.724 261.586 261.295 260.518 259.444 258.681 257.959 257.666 256.536 254.482 253.185 253.244 253.666 253.598 253.326 252.636 252.324 251.815 250.836 250.543 251.945 253.643 253.419 252.324 250.94 248.988 247.13 245.597 244.466 242.428 221.127 219.424 219.636 219.973 220.129 219.976 218.52 217.201 217.012 216.939 218.59 222.283 227.677 234.815 242.282 248.713 257.05 263.77 270.243 272.349 272.9 273.407 273.759 274.234 275.166 276.076 277.025 278.127 279.305 280.629 281.991 283.294 284.382 285.328 286.243 287.138 288.109 289.176 290.183 291.162 292.038 292.823 293.561 294.195 294.994 296.148 297.412 298.47 299.275 299.826 300.267 300.589 300.716 300.848 301.071 301.16 300.91 300.557 299.698 300.489 300.581 300.334 299.758 299.292 298.999 299.478 299.677 299.678 299.736 299.782 299.639 299.409 299.055 298.472 297.696 297.26 296.898 296.132 294.776 294.172 291.498 287.797 284.437 281.802 279.63 277.964 276.626 275.609 274.751 273.514 271.832 270.249 269.85 268.68 266.981 265.896 265.178 263.171 261.413 261.068 260.79 259.824 258.589 257.5 256.755 256.972 256.065 254.178 252.67 253.045 253.472 253.432 253.071 252.335 252.076 251.519 250.459 250.392 251.815 253.54 253.119 251.995 250.828 248.795 247.001 245.534 244.426 242.385 221.277 219.546 219.941 220.181 220.409 220.18 218.714 217.33 216.941 216.633 218.125 222.088 228.041 235.538 242.892 249.001 256.204 263.927 270.331 272.391 272.919 273.385 273.766 274.313 275.219 276.054 276.955 278.084 279.346 280.727 282.071 283.368 284.507 285.434 286.279 287.193 288.229 289.35 290.453 291.534 292.403 293.118 293.853 294.71 295.955 297.562 298.984 299.868 300.376 300.635 300.775 300.857 300.907 301.039 301.191 301.175 300.889 300.602 299.584 300.499 300.597 299.962 298.672 297.821 297.74 298.91 299.656 299.883 299.885 299.915 299.814 299.524 299.198 298.77 298.222 297.829 297.493 296.874 295.488 294.017 292.259 288.998 285.424 282.202 279.715 278.027 276.943 276.635 276.097 274.667 272.621 271.151 269.661 267.935 266.257 265.719 265.024 263.085 261.274 260.798 260.157 259.061 257.93 256.764 256.096 256.23 255.471 253.807 252.544 252.971 253.195 253.064 252.556 251.86 251.735 251.113 250.255 250.366 251.832 253.415 252.824 251.723 250.654 248.693 246.923 245.456 244.374 242.333 221.272 219.781 220.204 220.606 220.659 220.384 218.894 217.415 216.836 216.391 217.717 221.947 228.425 236.23 243.451 249.312 255.956 264.093 270.475 272.457 272.937 273.351 273.792 274.438 275.312 276.079 276.981 278.131 279.434 280.877 282.197 283.457 284.626 285.515 286.285 287.244 288.37 289.558 290.793 291.998 292.888 293.629 294.599 295.997 297.791 299.545 300.766 301.448 301.448 301.372 301.271 301.146 301.098 301.164 301.176 301.033 300.813 300.571 299.594 300.748 300.535 299.255 298.086 297.272 297.034 297.624 299.414 300.016 299.962 299.968 300.022 299.88 299.727 299.564 299.171 298.71 298.26 297.385 295.957 294.056 292.604 289.791 286.625 283.515 281.093 279.519 278.686 278.316 277.66 275.974 273.927 272.234 270.193 267.542 266.087 265.211 264.596 263.287 261.232 260.518 259.702 258.737 257.467 255.959 255.338 255.323 254.871 253.642 252.445 252.692 252.843 252.524 252.001 251.403 251.306 250.745 250.116 250.453 252.439 253.203 252.557 251.498 250.449 248.681 246.894 245.334 244.326 242.27 221.466 219.999 220.524 220.884 220.963 220.569 219.054 217.493 216.792 216.147 217.379 221.882 228.752 236.785 243.862 249.605 256.103 264.408 270.688 272.538 272.957 273.336 273.849 274.578 275.423 276.192 277.156 278.276 279.542 281.02 282.323 283.522 284.652 285.479 286.199 287.23 288.447 289.681 291.044 292.409 293.452 294.413 295.696 297.195 299.275 301.333 302.19 301.668 301.786 301.879 301.723 301.431 301.229 301.178 301.088 300.918 300.853 300.707 300.201 300.749 300.498 299.312 298.247 297.42 297.027 297.224 298.609 299.788 299.856 299.906 300.029 299.912 299.8 299.778 299.516 299.052 298.567 297.789 296.565 294.219 292.842 290.348 287.464 284.791 282.608 280.938 279.863 279.213 278.488 277.067 275.336 273.575 271.142 267.998 265.776 264.708 264.284 262.921 261.62 260.32 259.431 258.433 257.307 255.618 254.465 254.499 254.183 253.621 252.635 252.545 252.475 251.905 251.152 250.91 250.84 250.341 250.458 251.438 252.753 252.933 252.325 251.303 250.244 248.624 246.924 245.28 244.258 242.203 221.558 220.222 220.873 221.326 221.26 220.772 219.24 217.638 216.784 216.026 217.099 221.866 229.075 237.229 244.15 249.97 256.557 265.027 270.928 272.615 272.979 273.347 273.921 274.706 275.539 276.365 277.402 278.473 279.681 281.147 282.427 283.548 284.598 285.363 286.066 287.179 288.461 289.712 291.129 292.474 293.728 294.942 296.66 298.288 300.116 300.71 302.236 300.671 301.464 302.184 302.011 301.607 301.301 301.174 301.011 300.838 300.909 300.935 300.848 300.801 300.589 299.248 298.4 297.68 297.388 297.351 298.384 299.125 299.613 299.907 300.109 299.968 299.821 299.808 299.63 299.236 298.786 298.16 297.222 295.692 294.012 291.009 288.124 285.595 283.267 281.192 279.793 279.201 278.919 278.086 276.871 275.06 272.357 268.888 265.349 264.75 264.055 262.872 261.998 260.146 258.968 258.567 257.146 255.288 254.012 253.789 253.599 253.78 252.819 252.466 251.739 251.242 250.358 250.376 250.282 249.922 250.5 251.982 252.635 252.626 252.095 251.095 250.007 248.509 246.971 245.278 244.148 242.158 221.67 220.495 221.261 221.642 221.652 221.012 219.497 217.861 216.843 215.902 216.908 221.775 229.282 237.475 244.357 250.278 257.633 265.814 271.165 272.68 273.005 273.376 273.993 274.81 275.655 276.559 277.664 278.713 279.837 281.258 282.507 283.545 284.493 285.203 285.938 287.14 288.471 289.726 290.964 292.511 293.707 295.75 296.609 297.047 297.613 298.566 299.903 300.602 301.175 302.063 302.124 301.692 301.362 301.2 300.971 300.786 300.922 301.096 301.011 300.874 300.687 300.002 299.538 298.163 297.502 297.182 297.217 297.787 299.156 299.97 300.22 300.068 299.917 299.898 299.79 299.481 299.038 298.471 297.74 296.598 294.658 291.799 288.759 286.146 283.651 281.438 279.779 279.291 279.228 278.6 277.667 276.043 273.756 269.992 266.098 265.015 264.047 262.526 261.532 260.147 259.21 258.324 256.868 254.913 253.424 253.301 253.574 253.72 253.092 252.134 251.031 250.376 249.858 249.736 249.784 249.604 250.448 252.022 252.373 252.309 251.818 250.877 249.776 248.383 246.992 245.264 244.058 242.107 221.777 220.76 221.616 222.172 222.053 221.315 219.757 218.111 216.937 215.894 216.816 221.777 229.311 237.561 244.442 250.509 257.819 266.465 271.369 272.717 273.032 273.429 274.054 274.889 275.782 276.762 277.921 278.96 280.005 281.372 282.591 283.532 284.351 285.04 285.862 287.156 288.537 289.826 290.984 292.512 293.909 295.144 295.849 296.219 296.485 297.476 300.249 301.453 302.29 301.888 302.18 301.834 301.512 301.297 301.031 300.867 300.995 300.833 301.106 300.875 300.461 299.956 299.671 299.535 299.1 299.088 299.221 298.364 299.76 300.246 300.335 300.114 299.994 300.001 299.931 299.665 299.214 298.644 298.032 297.073 295.244 292.68 289.344 286.497 284.137 281.97 280.332 279.576 279.174 278.431 277.42 276.399 274.489 271.093 267.031 265.656 264.288 262.568 261.125 260.136 259.062 258.241 256.238 254.433 252.95 253.316 253.778 253.852 253.091 251.637 250.476 249.799 249.411 249.063 249.32 249.291 250.714 251.974 252.077 251.968 251.54 250.587 249.559 248.326 246.961 245.189 244.011 242.042 221.902 220.955 221.994 222.597 222.501 221.656 220.07 218.416 217.096 215.986 216.886 221.685 229.144 237.374 244.339 250.547 258.896 266.795 271.463 272.708 273.06 273.488 274.09 274.939 275.899 276.915 278.089 279.139 280.166 281.493 282.662 283.512 284.251 284.965 285.865 287.179 288.581 289.942 291.24 292.355 293.466 294.174 295.185 295.997 296.907 297.774 299.986 301.367 302.556 301.689 302.319 302.116 301.77 301.422 301.158 301.052 301.008 300.846 301.115 300.755 299.633 298.56 298.623 299.26 299.665 299.907 300.073 300.076 300.491 300.762 300.643 300.294 300.08 299.945 299.767 299.466 299.038 298.574 298.098 297.209 295.375 292.924 289.778 286.717 284.131 282.071 280.58 279.462 278.463 277.606 276.436 275.683 274.479 271.689 268.166 266.89 265.057 262.34 260.689 259.821 258.896 257.868 256.142 254.329 252.906 253.478 254.04 253.761 252.58 251.28 249.958 249.358 248.833 248.612 248.653 249.108 251.023 251.795 251.743 251.615 251.185 250.303 249.356 248.234 246.816 245.106 243.949 241.962 221.986 221.236 222.392 223.143 222.957 222.009 220.421 218.729 217.32 216.155 217.076 221.715 228.9 237.031 244.052 250.412 258.592 266.821 271.474 272.685 273.085 273.544 274.124 274.985 275.997 277.02 278.177 279.255 280.3 281.583 282.684 283.472 284.182 284.941 285.895 287.19 288.561 289.914 291.231 292.375 293.421 293.781 294.947 295.751 296.762 297.545 299.306 300.612 302.095 301.491 302.261 302.286 302.038 301.608 301.282 301.157 300.985 300.691 301.006 300.712 299.335 297.653 297.28 298.808 299.304 300.002 300.364 300.623 300.914 301.07 300.819 300.388 300.081 299.849 299.42 298.66 298.748 298.382 297.957 297.178 295.462 293.08 290.145 287.112 284.332 282.2 280.599 279.129 278.225 277.272 275.848 275.343 274.141 271.784 269.146 267.982 265.886 263.015 260.717 259.575 258.995 257.781 256.078 254.346 253.082 253.618 254.148 253.467 252.07 250.61 249.637 249.021 248.593 248.225 248.024 248.859 251.016 251.525 251.393 251.274 250.796 250.037 249.121 248.029 246.669 245.033 243.896 241.883 222.092 221.579 222.797 223.624 223.482 222.415 220.773 219.064 217.601 216.446 217.386 221.665 228.52 236.424 243.613 250.057 257.895 266.659 271.433 272.666 273.106 273.593 274.168 275.038 276.078 277.079 278.196 279.307 280.382 281.612 282.642 283.41 284.143 284.948 285.937 287.198 288.494 289.764 291.022 292.153 292.886 293.638 294.632 295.569 296.446 298.149 299.28 300.674 302.04 301.359 301.684 301.724 302.22 301.847 301.432 301.192 301.015 300.79 300.834 300.753 300.059 299.221 298.854 298.952 299.028 299.923 300.388 300.714 300.962 301.105 300.564 300.512 299.946 299.445 298.657 298.428 298.291 298.049 297.62 297.021 296.128 294.903 292.172 288.77 285.513 282.825 280.981 279.522 278.651 277.56 276.308 275.419 273.865 271.622 269.278 268.948 266.316 262.768 260.888 259.666 258.507 257.288 256.171 254.473 253.29 253.537 253.707 252.867 251.441 250.073 249.384 248.805 248.419 247.945 247.573 248.663 250.705 251.233 251.058 250.906 250.441 249.764 248.872 247.802 246.516 244.915 243.863 241.84 222.202 221.792 223.219 224.165 224.032 222.887 221.194 219.428 217.935 216.856 217.836 221.869 228.063 235.739 243.112 249.565 257.35 266.322 271.351 272.665 273.116 273.633 274.23 275.111 276.146 277.091 278.142 279.274 280.376 281.553 282.532 283.329 284.129 284.977 285.985 287.196 288.406 289.565 290.66 291.596 292.406 293.525 294.343 295.173 296.353 297.686 299.589 301.167 301.852 301.376 301.659 301.127 301.657 301.935 301.586 301.246 300.953 300.63 300.687 300.738 300.625 300.292 299.972 299.761 299.436 300.079 300.392 300.548 300.637 300.617 299.836 299.678 299.2 299.257 298.747 298.459 298.217 297.813 297.184 296.669 296.319 295.683 294.02 291.327 287.815 284.708 282.364 280.79 279.501 277.973 276.52 274.863 273.104 270.036 268.905 268.767 266.214 262.371 260.659 259.701 258.378 257.12 256.339 254.723 253.164 253.222 253.287 252.376 250.962 249.975 249.365 248.867 248.16 247.763 247.391 248.349 250.403 250.958 250.746 250.556 250.083 249.487 248.653 247.651 246.307 244.836 243.838 241.778 222.325 222.123 223.656 224.718 224.623 223.41 221.643 219.831 218.33 217.373 218.404 222.041 227.555 235.0 242.542 249.012 257.247 265.875 271.24 272.681 273.109 273.645 274.288 275.176 276.18 277.067 278.061 279.195 280.32 281.471 282.43 283.264 284.119 285.0 286.016 287.166 288.311 289.427 290.444 291.452 292.184 293.126 294.087 294.796 296.302 297.984 299.655 301.221 301.848 301.24 301.77 303.095 300.671 301.388 301.586 301.301 301.01 300.178 300.793 300.701 300.553 300.371 300.16 299.975 299.991 300.19 300.309 300.221 299.959 299.175 298.996 299.352 299.456 298.755 298.99 298.699 298.318 297.741 297.034 296.456 296.102 295.704 294.613 292.601 289.725 286.762 284.191 282.232 280.177 278.014 276.154 274.339 271.875 268.463 267.544 267.873 265.785 262.426 261.065 259.806 258.132 257.213 256.213 254.258 252.869 252.702 252.85 252.049 250.687 249.882 249.521 248.781 247.896 247.445 247.291 247.949 250.181 250.669 250.44 250.223 249.696 249.217 248.474 247.518 246.093 244.694 243.818 241.694 222.421 222.404 224.103 225.279 225.254 223.975 222.136 220.272 218.725 217.908 219.023 222.336 227.093 234.256 241.914 248.457 257.39 265.378 271.07 272.684 273.092 273.638 274.334 275.219 276.191 277.04 277.997 279.14 280.29 281.424 282.366 283.216 284.1 285.023 286.044 287.119 288.188 289.285 290.242 291.14 291.83 292.777 293.648 294.369 295.694 297.413 299.121 300.38 301.307 301.593 302.251 302.253 300.912 300.438 301.582 301.369 301.159 300.692 301.014 300.755 300.477 300.09 300.249 300.06 300.029 300.226 300.327 300.157 299.811 299.273 299.14 299.354 299.396 299.262 299.091 298.81 298.382 297.83 297.106 296.272 295.738 295.42 294.792 293.415 291.124 288.507 286.07 283.629 280.844 277.477 275.399 273.547 270.718 266.755 265.231 266.047 263.766 262.217 260.819 259.479 257.511 256.541 255.698 253.856 252.215 252.065 252.484 252.016 250.861 249.881 249.311 248.379 247.537 247.058 247.062 247.683 249.894 250.324 250.124 249.902 249.294 248.938 248.265 247.21 245.877 244.611 243.803 241.579 222.533 222.644 224.554 225.87 225.907 224.595 222.681 220.726 219.12 218.462 219.76 222.573 226.689 233.497 241.303 247.846 257.016 264.725 270.803 272.652 273.068 273.624 274.372 275.247 276.189 277.022 277.962 279.116 280.278 281.397 282.324 283.175 284.084 285.053 286.081 287.08 288.075 289.149 290.043 290.843 291.653 292.481 293.346 293.802 294.898 296.674 298.408 299.828 301.285 301.893 302.114 302.51 301.992 301.172 301.823 301.453 301.232 301.191 301.183 300.837 300.49 300.1 300.415 300.189 299.718 300.281 300.478 300.4 300.07 299.721 299.543 299.556 299.477 299.263 299.063 298.77 298.337 297.826 297.146 296.186 295.341 294.969 294.707 293.905 292.161 289.711 287.173 284.626 281.719 277.706 275.433 273.81 271.065 266.538 265.024 264.346 263.776 262.391 260.761 259.225 257.348 256.163 255.091 253.383 251.8 251.805 252.27 251.837 250.865 250.093 248.871 247.946 247.183 246.821 246.964 247.623 249.615 249.915 249.728 249.541 248.916 248.556 248.031 246.984 245.615 244.491 243.748 241.511 222.638 222.953 225.035 226.462 226.594 225.248 223.265 221.227 219.508 219.008 220.453 222.928 226.392 232.884 240.779 247.293 256.694 263.631 270.306 272.541 273.034 273.621 274.417 275.275 276.19 277.019 277.942 279.075 280.228 281.343 282.266 283.129 284.077 285.084 286.112 287.072 288.04 289.076 289.871 290.59 291.503 292.383 293.219 293.4 294.375 295.801 297.565 299.357 300.922 301.527 301.875 302.956 302.451 301.171 301.803 301.428 301.256 301.247 301.153 300.872 300.609 300.004 300.469 300.255 300.168 300.391 300.592 300.606 300.462 300.168 299.884 299.743 299.562 299.294 299.049 298.722 298.275 297.761 297.108 296.143 295.132 294.49 294.29 293.932 292.697 290.323 287.3 284.57 282.483 280.249 277.439 275.875 273.456 269.425 265.794 263.946 263.353 262.51 260.977 259.211 257.119 256.105 254.904 252.995 251.515 251.636 251.932 251.584 250.792 249.973 248.694 247.707 246.988 246.779 246.811 247.424 249.549 249.459 249.336 249.08 248.564 248.192 247.848 246.639 245.353 244.379 243.705 241.488 222.781 223.239 225.427 227.074 227.3 225.948 223.88 221.743 219.91 219.53 221.055 223.27 226.224 232.391 240.367 246.801 254.649 262.461 269.599 272.349 272.995 273.635 274.458 275.298 276.193 277.008 277.887 278.966 280.102 281.227 282.177 283.092 284.087 285.085 286.104 287.084 288.084 289.07 289.763 290.413 291.328 292.162 293.059 293.28 293.938 294.975 296.62 298.386 300.16 301.143 301.882 303.084 302.49 301.052 300.288 300.591 301.181 301.155 301.051 300.915 300.703 299.994 300.01 299.821 300.23 300.583 300.658 300.574 300.483 300.26 299.96 299.727 299.498 299.237 299.021 298.739 298.28 297.704 297.041 296.131 295.08 294.262 293.9 293.698 292.82 290.592 286.6 283.007 282.133 281.25 279.581 277.321 274.817 271.97 268.494 264.3 262.813 261.725 261.395 259.718 257.522 256.122 254.742 252.694 251.447 251.547 251.626 251.436 250.563 250.004 248.726 247.543 246.852 246.764 246.874 247.695 249.122 248.971 248.96 248.685 248.257 247.942 247.569 246.401 245.137 244.191 243.655 241.455 222.85 223.528 225.967 227.689 228.05 226.683 224.544 222.302 220.367 220.031 221.626 223.703 226.23 232.148 240.107 246.455 254.033 261.711 268.731 272.111 272.957 273.652 274.479 275.302 276.181 276.966 277.789 278.816 279.94 281.083 282.085 283.079 284.116 285.096 286.109 287.124 288.14 289.062 289.69 290.276 291.174 291.968 292.887 293.585 294.116 294.994 296.153 297.586 299.374 301.043 301.907 302.458 302.65 301.313 300.083 299.865 301.065 301.004 300.939 300.885 300.564 299.918 298.89 298.998 300.235 300.718 300.74 300.572 300.449 300.263 299.984 299.717 299.443 299.163 298.97 298.747 298.293 297.668 296.979 296.107 295.058 294.141 293.655 293.516 292.977 291.123 287.886 284.046 281.168 281.404 280.468 278.328 275.944 273.315 270.036 264.31 262.29 261.51 261.216 259.505 257.281 255.88 254.587 252.428 251.494 251.472 251.396 251.044 250.385 249.784 248.524 247.423 246.83 246.847 246.847 247.567 248.543 248.466 248.58 248.34 247.971 247.734 247.264 246.188 244.916 244.117 243.584 241.453 223.002 223.831 226.454 228.379 228.797 227.421 225.264 222.933 220.872 220.526 222.133 224.054 226.342 232.072 239.961 246.306 253.421 261.176 267.753 271.839 272.913 273.66 274.475 275.282 276.144 276.892 277.661 278.649 279.761 280.925 282.001 283.094 284.175 285.153 286.178 287.209 288.195 289.055 289.656 290.211 291.053 291.81 293.238 294.098 294.775 295.588 296.301 297.284 298.848 300.96 302.08 303.041 302.55 301.876 300.624 300.25 300.965 300.858 300.852 300.744 300.12 298.726 297.769 299.064 300.265 300.72 300.748 300.589 300.423 300.229 299.982 299.729 299.429 299.123 298.926 298.734 298.304 297.662 296.953 296.076 295.005 294.025 293.474 293.35 293.102 291.798 289.099 285.642 281.25 281.101 280.644 278.757 276.504 274.076 270.938 264.757 262.327 261.508 260.431 259.359 257.238 255.484 254.412 252.845 251.874 251.591 251.171 250.611 250.166 249.37 248.145 247.042 246.722 246.848 246.752 247.12 248.013 247.942 248.18 248.053 247.688 247.516 247.097 245.866 244.792 244.053 243.573 241.464 223.087 224.101 226.914 228.983 229.557 228.235 226.021 223.603 221.447 221.088 222.615 224.426 226.641 232.204 239.873 246.156 251.768 259.531 266.777 271.548 272.847 273.642 274.435 275.232 276.07 276.771 277.495 278.453 279.548 280.744 281.93 283.154 284.283 285.288 286.339 287.335 288.239 289.089 289.699 290.324 291.31 292.255 293.476 295.299 296.282 297.094 296.789 297.864 298.969 301.066 302.592 302.671 301.954 300.793 300.105 300.666 301.021 300.912 300.907 300.492 299.308 297.297 298.67 299.772 300.517 300.732 300.709 300.577 300.391 300.192 299.948 299.676 299.366 299.078 298.883 298.699 298.305 297.696 296.989 296.107 295.027 294.008 293.357 293.125 292.964 292.114 289.973 286.568 281.41 280.545 280.269 278.812 276.776 274.481 271.528 266.142 262.965 261.907 260.399 258.871 257.334 255.876 254.92 253.644 252.547 251.624 250.818 250.144 249.748 249.156 247.801 246.683 246.657 246.636 246.438 246.674 247.467 247.386 247.722 247.809 247.457 247.241 246.91 245.738 244.536 244.003 243.503 241.467 223.258 224.384 227.39 229.607 230.354 229.063 226.814 224.327 222.092 221.669 223.071 224.789 227.105 232.547 239.901 246.093 252.289 258.466 266.872 271.373 272.77 273.587 274.373 275.172 275.981 276.636 277.338 278.286 279.373 280.624 281.932 283.263 284.414 285.44 286.482 287.429 288.325 289.253 289.911 290.876 291.554 292.367 293.617 294.699 295.755 296.849 297.472 298.323 299.725 301.241 302.259 301.516 300.62 300.499 300.446 300.983 301.267 301.19 301.029 300.176 298.361 296.709 298.331 299.925 300.704 300.845 300.767 300.583 300.381 300.202 299.937 299.604 299.282 299.018 298.831 298.668 298.334 297.775 297.084 296.256 295.302 294.339 293.548 293.105 292.809 292.063 290.276 287.105 282.435 279.535 279.676 278.7 277.053 274.996 272.283 268.591 263.861 262.069 260.622 258.672 257.683 256.542 255.578 254.053 253.194 251.825 250.428 249.655 249.231 248.793 247.401 246.513 246.482 246.446 246.054 246.135 246.706 246.504 247.288 247.586 247.26 247.066 246.611 245.472 244.452 243.954 243.389 241.468 223.253 224.677 227.853 230.303 231.146 229.92 227.632 225.096 222.807 222.348 223.55 225.169 227.675 233.022 240.083 246.134 253.53 260.257 267.593 271.32 272.695 273.522 274.313 275.114 275.881 276.493 277.188 278.161 279.281 280.606 282.029 283.403 284.541 285.573 286.602 287.574 288.547 289.572 290.154 291.146 292.159 292.397 294.372 294.814 296.197 297.406 298.007 299.013 301.298 301.786 301.742 300.615 301.346 301.685 301.421 301.417 301.439 301.298 300.456 299.674 297.108 296.161 297.777 299.903 300.7 300.877 300.807 300.587 300.369 300.185 299.901 299.556 299.251 298.98 298.777 298.645 298.383 297.883 297.201 296.41 295.589 294.738 293.843 293.197 292.76 292.054 290.548 287.719 283.99 279.166 278.684 278.412 277.214 275.546 273.108 269.537 265.292 262.734 260.644 259.387 258.456 257.284 255.982 254.145 254.61 252.314 250.628 249.235 248.733 247.837 246.66 246.167 245.99 246.087 245.694 245.489 245.963 245.845 247.056 247.348 247.076 246.919 246.485 245.275 244.206 243.84 243.385 241.468 223.396 224.96 228.254 230.94 231.933 230.825 228.499 225.956 223.67 223.208 224.087 225.572 228.315 233.61 240.327 246.38 254.525 261.402 268.156 271.35 272.626 273.453 274.253 275.048 275.764 276.335 277.044 278.095 279.305 280.719 282.217 283.558 284.677 285.712 286.783 287.844 288.939 289.964 290.34 291.134 291.703 292.503 294.057 294.779 297.143 298.595 299.267 300.33 301.081 301.75 300.522 300.804 302.122 301.794 301.377 301.371 301.511 301.238 299.305 298.221 296.443 296.171 298.419 300.043 300.691 300.842 300.787 300.582 300.369 300.144 299.818 299.496 299.226 298.937 298.715 298.614 298.413 297.978 297.314 296.511 295.742 294.993 294.071 293.261 292.711 292.046 290.805 288.436 284.889 280.438 277.813 277.521 277.108 275.77 273.64 270.333 265.695 263.801 261.529 259.884 258.869 257.639 256.688 254.75 255.283 253.182 251.065 248.861 247.693 246.723 246.065 245.812 245.758 245.587 245.055 245.102 245.135 245.348 246.811 247.047 246.859 246.786 246.363 245.133 244.16 243.84 243.386 241.468 223.516 225.284 228.725 231.552 232.726 231.762 229.418 226.826 224.598 224.049 224.692 226.086 229.053 234.224 240.691 246.726 255.323 262.251 268.571 271.424 272.565 273.385 274.181 274.938 275.587 276.138 276.91 278.115 279.486 281.02 282.492 283.751 284.885 285.99 287.166 288.362 289.423 289.893 290.361 291.021 291.385 291.996 292.943 294.343 296.775 298.41 299.489 300.946 302.363 302.463 301.186 301.332 301.986 301.593 301.251 301.43 301.603 301.028 298.501 296.931 296.245 296.581 299.289 300.43 300.776 300.8 300.732 300.589 300.41 300.132 299.75 299.426 299.16 298.866 298.666 298.587 298.403 298.023 297.412 296.564 295.729 295.027 294.177 293.259 292.563 291.906 290.894 289.06 286.039 282.128 278.869 277.215 275.914 275.284 272.928 270.445 265.887 262.883 260.311 258.198 258.385 258.167 256.107 255.337 255.584 254.77 251.95 248.75 246.614 245.686 245.444 245.661 245.713 245.208 244.398 244.716 244.804 244.834 246.551 246.754 246.69 246.656 246.119 244.844 244.019 243.661 243.187 241.313 223.622 225.456 229.145 232.182 233.485 232.717 230.408 227.735 225.632 225.034 225.418 226.714 229.786 234.965 241.189 247.317 256.148 263.081 268.917 271.49 272.529 273.331 274.083 274.769 275.354 275.932 276.816 278.194 279.736 281.355 282.752 283.979 285.187 286.403 287.66 288.857 289.503 290.046 290.076 290.737 290.975 291.946 292.468 293.37 296.218 298.232 299.303 301.616 302.535 302.204 300.725 300.451 300.228 299.977 300.388 301.09 301.535 300.032 297.685 296.138 295.881 297.553 299.715 300.554 300.745 300.743 300.687 300.578 300.4 300.113 299.734 299.399 299.106 298.823 298.66 298.585 298.386 298.029 297.478 296.613 295.671 294.943 294.207 293.314 292.489 291.769 290.86 289.417 287.132 284.434 282.003 279.789 277.109 275.699 272.533 269.134 266.061 262.475 259.7 258.187 258.755 258.485 256.456 256.216 256.655 255.836 253.108 249.028 245.733 244.926 245.105 245.852 245.538 244.843 243.859 244.292 244.505 244.478 246.358 246.636 246.637 246.606 246.053 244.806 244.006 243.65 243.175 241.305 223.811 225.832 229.634 232.781 234.29 233.699 231.45 228.808 226.699 226.065 226.278 227.421 230.641 235.781 241.842 248.151 257.057 263.906 269.197 271.534 272.507 273.277 273.955 274.558 275.118 275.769 276.779 278.298 279.972 281.637 283.004 284.273 285.597 286.865 288.107 289.134 289.195 288.983 289.632 290.559 290.734 291.168 291.947 293.216 295.276 297.103 299.81 301.439 302.015 300.83 299.624 299.532 299.731 299.623 300.438 300.906 301.392 299.824 297.222 295.577 295.833 298.397 300.016 300.593 300.697 300.703 300.672 300.576 300.36 300.049 299.693 299.363 299.057 298.792 298.632 298.554 298.377 298.036 297.5 296.631 295.611 294.804 294.128 293.321 292.462 291.703 290.858 289.652 287.903 285.809 283.647 281.249 278.697 276.12 273.052 268.827 266.631 265.109 263.686 262.174 260.963 259.42 257.328 256.983 257.528 256.953 254.18 249.225 245.492 244.086 244.859 245.794 245.596 244.648 243.574 243.856 244.886 244.773 246.764 246.577 246.627 246.562 245.991 244.757 243.929 243.534 243.168 241.305 223.922 226.044 230.004 233.385 235.055 234.738 232.588 229.952 227.876 227.194 227.119 228.22 231.599 236.704 242.623 249.254 258.34 264.742 269.428 271.559 272.497 273.211 273.798 274.33 274.923 275.705 276.837 278.457 280.202 281.874 283.273 284.664 286.128 287.327 288.11 289.212 288.789 288.398 288.794 289.97 290.307 290.777 291.745 293.009 294.505 295.683 298.348 299.66 299.248 299.321 299.157 298.39 298.779 299.741 300.829 301.305 301.352 300.138 297.176 295.456 296.361 299.246 300.336 300.646 300.67 300.671 300.666 300.589 300.344 300.004 299.657 299.318 299.015 298.768 298.581 298.496 298.375 298.047 297.479 296.606 295.552 294.652 293.969 293.237 292.401 291.63 290.825 289.746 288.277 286.543 284.617 282.269 279.61 276.764 273.57 269.658 266.667 265.384 264.087 262.622 261.275 259.666 257.976 257.787 257.871 257.316 254.967 249.398 245.425 244.1 244.851 245.835 245.714 244.425 243.283 243.736 244.677 244.665 246.718 246.527 246.651 246.517 245.921 244.701 243.909 243.419 242.974 241.304 224.006 226.334 230.448 233.908 235.846 235.778 233.816 231.131 229.12 228.371 228.032 229.078 232.6 237.644 243.533 251.899 259.498 265.631 269.626 271.574 272.509 273.145 273.642 274.139 274.842 275.812 277.085 278.749 280.481 282.129 283.604 285.205 286.472 286.389 287.75 289.288 288.72 287.77 288.211 289.222 289.784 290.645 292.072 293.275 293.37 294.149 295.785 296.873 297.997 298.787 298.918 298.94 299.662 300.151 300.632 300.903 300.779 299.512 296.891 296.179 298.535 299.988 300.57 300.626 300.615 300.607 300.619 300.559 300.321 299.995 299.662 299.289 298.983 298.753 298.538 298.442 298.373 298.055 297.432 296.557 295.512 294.566 293.842 293.134 292.321 291.528 290.7 289.641 288.256 286.651 284.852 282.632 280.136 277.338 273.604 269.651 266.5 264.993 263.521 262.161 260.68 259.271 258.573 258.596 258.129 257.382 254.97 249.695 245.892 244.444 245.097 245.93 245.681 244.252 243.202 243.673 244.391 244.57 246.464 246.476 246.71 246.56 245.877 244.658 243.82 243.36 242.836 241.295 224.042 226.614 230.921 234.524 236.603 236.832 235.059 232.395 230.416 229.559 228.992 229.971 233.554 238.594 244.533 254.066 261.028 266.399 269.778 271.59 272.544 273.136 273.589 274.098 274.931 276.058 277.464 279.11 280.774 282.386 283.895 285.665 287.118 287.451 288.247 289.632 289.624 287.637 287.885 288.562 289.628 290.6 291.755 292.791 293.082 293.732 294.762 296.466 297.579 298.589 299.472 299.53 299.723 300.256 300.664 300.713 300.343 298.471 298.209 297.772 299.642 300.481 300.629 300.586 300.612 300.626 300.63 300.527 300.252 299.952 299.657 299.274 298.94 298.711 298.508 298.398 298.321 298.03 297.442 296.584 295.51 294.526 293.767 293.071 292.294 291.506 290.598 289.458 288.071 286.515 284.748 282.611 280.328 277.742 274.074 269.454 266.058 264.441 262.899 261.814 260.382 259.445 259.384 259.175 258.383 257.316 254.884 249.916 246.571 245.024 245.416 246.278 245.931 244.076 243.083 243.88 244.36 244.612 246.235 246.464 246.82 246.614 245.82 244.604 243.787 243.167 242.802 241.227 224.227 226.889 231.238 235.071 237.35 237.883 236.302 233.72 231.767 230.731 229.986 230.85 234.513 239.483 245.506 255.641 262.311 267.079 269.909 271.608 272.583 273.158 273.614 274.156 275.097 276.343 277.833 279.445 281.041 282.604 284.105 285.931 287.552 288.368 289.122 290.114 290.397 288.583 288.105 288.899 289.429 290.112 291.311 292.458 293.379 294.063 294.985 296.674 297.704 298.845 299.417 299.519 299.88 300.438 300.767 300.717 299.99 299.491 299.618 298.942 300.342 300.715 300.68 300.609 300.606 300.63 300.656 300.533 300.228 299.926 299.647 299.27 298.912 298.665 298.477 298.358 298.239 297.971 297.47 296.643 295.528 294.492 293.683 292.976 292.244 291.516 290.571 289.343 287.954 286.436 284.681 282.602 280.445 277.953 274.489 269.541 265.724 264.248 262.921 261.814 260.722 260.329 260.31 260.028 259.208 257.488 254.922 250.299 247.296 245.691 245.63 246.533 245.758 243.881 243.086 243.962 244.394 244.77 246.104 246.605 246.958 246.652 245.716 244.56 243.724 243.118 242.665 241.172 224.303 227.246 231.67 235.63 238.133 238.889 237.55 235.114 233.183 231.992 231.028 231.724 235.407 240.3 247.062 256.405 263.477 267.688 270.031 271.621 272.605 273.197 273.692 274.27 275.28 276.611 278.144 279.718 281.264 282.776 284.253 285.99 287.583 288.625 289.619 290.609 291.197 291.22 290.615 289.873 289.762 290.164 290.96 292.341 293.496 294.62 295.725 296.873 298.361 299.037 299.347 299.601 300.053 300.55 300.818 300.809 300.583 300.569 300.463 299.86 300.618 300.73 300.705 300.616 300.526 300.548 300.621 300.524 300.238 299.926 299.63 299.273 298.916 298.638 298.442 298.327 298.169 297.895 297.467 296.676 295.546 294.484 293.633 292.886 292.167 291.501 290.557 289.285 287.902 286.407 284.657 282.631 280.529 278.031 274.569 269.903 265.922 264.381 263.354 262.258 261.388 261.122 260.902 260.75 259.985 257.721 254.936 250.611 248.151 246.354 246.096 246.28 245.579 243.852 243.263 243.855 244.509 245.438 246.137 246.736 247.027 246.668 245.594 244.488 243.693 243.128 242.541 241.141 224.368 227.442 232.089 236.21 238.879 239.911 238.83 236.52 234.66 233.349 232.102 232.617 236.226 241.057 248.126 257.663 264.578 268.239 270.162 271.637 272.623 273.273 273.819 274.421 275.461 276.843 278.383 279.915 281.43 282.931 284.37 285.923 287.378 288.517 289.642 290.832 291.875 292.542 292.843 292.952 292.202 291.043 291.4 292.617 294.219 295.42 296.821 298.074 298.716 299.192 299.469 299.728 300.15 300.551 300.79 300.883 300.906 300.898 300.812 300.608 300.157 300.581 300.623 300.541 300.431 300.471 300.545 300.462 300.227 299.918 299.581 299.254 298.937 298.617 298.376 298.277 298.117 297.826 297.418 296.651 295.541 294.492 293.623 292.856 292.107 291.45 290.534 289.287 287.924 286.428 284.673 282.683 280.572 277.971 274.392 270.366 266.549 264.878 263.989 263.133 262.375 261.777 261.216 261.1 260.573 257.976 254.728 250.823 248.787 247.131 246.459 246.275 245.153 243.617 243.274 243.97 244.719 245.993 246.383 246.932 247.052 246.653 245.478 244.435 243.66 243.108 242.452 241.119 224.511 227.793 232.483 236.751 239.626 240.928 240.089 237.955 236.186 234.806 233.26 233.549 236.96 241.758 248.902 258.602 265.317 268.609 270.282 271.674 272.662 273.37 273.951 274.559 275.597 276.995 278.526 280.034 281.526 283.058 284.475 285.894 287.181 288.284 289.438 290.667 291.938 293.047 293.737 294.127 294.154 293.59 293.725 294.595 295.752 296.67 297.784 298.359 298.883 299.307 299.553 299.804 300.221 300.61 300.819 300.917 300.943 300.917 300.842 300.698 300.572 300.515 300.49 300.442 300.43 300.501 300.522 300.413 300.211 299.911 299.548 299.23 298.939 298.588 298.295 298.184 298.044 297.774 297.384 296.645 295.525 294.414 293.503 292.791 292.066 291.396 290.525 289.362 288.052 286.559 284.811 282.836 280.636 277.756 274.197 270.87 267.559 265.785 265.005 264.267 263.39 262.197 261.294 261.13 260.834 257.918 254.268 251.312 249.617 247.753 246.589 246.276 245.147 243.574 243.397 243.934 244.921 245.892 246.562 247.082 247.063 246.58 245.389 244.411 243.641 243.016 242.387 241.099 224.646 227.891 232.916 237.329 240.361 241.881 241.316 239.393 237.724 236.34 234.492 234.45 237.678 242.316 250.715 259.288 265.841 268.884 270.408 271.744 272.725 273.468 274.073 274.683 275.721 277.125 278.659 280.155 281.632 283.171 284.555 285.899 287.09 288.153 289.32 290.499 291.724 292.979 293.901 294.576 294.972 295.154 295.414 295.971 296.703 297.423 297.994 298.432 298.934 299.361 299.64 299.964 300.433 300.789 300.912 300.975 301.033 301.015 300.932 300.832 300.695 300.554 300.436 300.381 300.402 300.469 300.475 300.382 300.193 299.901 299.543 299.217 298.916 298.554 298.241 298.102 297.959 297.71 297.343 296.645 295.528 294.338 293.354 292.672 291.979 291.3 290.491 289.417 288.144 286.671 284.961 283.001 280.683 277.577 274.219 271.38 268.906 267.382 266.678 265.634 264.166 262.565 261.241 261.038 260.977 258.168 254.781 252.073 249.969 248.066 246.809 246.321 245.217 243.593 243.353 243.841 245.025 245.834 246.696 247.209 247.103 246.494 245.314 244.486 243.591 242.914 242.345 241.077 224.763 228.269 233.292 237.8 241.086 242.805 242.526 240.797 239.301 237.971 235.925 235.489 238.31 242.788 252.342 259.929 266.251 269.108 270.552 271.837 272.797 273.561 274.185 274.803 275.856 277.278 278.824 280.312 281.783 283.279 284.603 285.892 287.056 288.128 289.316 290.441 291.518 292.691 293.697 294.549 295.172 295.534 295.826 296.245 296.784 297.407 297.973 298.468 299.008 299.456 299.795 300.197 300.701 301.001 301.032 301.056 301.131 301.129 301.029 300.951 300.825 300.634 300.456 300.369 300.364 300.415 300.443 300.378 300.164 299.863 299.53 299.196 298.861 298.502 298.194 298.032 297.881 297.638 297.272 296.612 295.545 294.34 293.293 292.586 291.872 291.165 290.421 289.431 288.178 286.719 285.053 283.099 280.667 277.461 274.375 271.885 269.968 268.698 267.856 266.716 264.71 262.736 261.01 259.803 260.405 258.676 255.343 252.937 250.23 248.294 247.088 246.475 245.508 243.802 243.455 243.829 245.076 245.934 246.873 247.326 247.128 246.435 245.236 244.436 243.515 242.822 242.292 241.06 224.884 228.476 233.712 238.403 241.844 243.661 243.612 242.149 240.864 239.673 237.53 236.707 239.009 243.375 253.25 260.605 266.65 269.331 270.736 271.962 272.879 273.655 274.29 274.927 276.031 277.49 279.05 280.546 282.005 283.394 284.622 285.881 287.07 288.198 289.425 290.522 291.451 292.44 293.409 294.324 295.006 295.396 295.703 296.151 296.735 297.402 298.052 298.633 299.141 299.568 299.939 300.363 300.824 301.09 301.162 301.219 301.25 301.195 301.071 300.975 300.853 300.631 300.421 300.327 300.347 300.437 300.489 300.407 300.135 299.807 299.499 299.168 298.804 298.439 298.128 297.94 297.803 297.571 297.184 296.539 295.544 294.388 293.326 292.557 291.777 291.023 290.332 289.418 288.189 286.736 285.09 283.116 280.568 277.361 274.597 272.411 270.776 269.682 268.811 267.544 265.465 262.821 260.473 258.917 258.52 257.798 256.12 253.873 250.786 248.577 247.294 246.755 245.931 244.073 243.701 243.707 245.097 246.068 247.012 247.446 247.165 246.405 245.188 244.368 243.447 242.78 242.226 241.045 225.017 228.782 234.114 238.857 242.639 244.473 244.521 243.413 242.408 241.467 239.253 238.007 239.883 244.142 254.03 261.198 267.011 269.549 270.931 272.09 272.96 273.732 274.368 275.049 276.232 277.729 279.279 280.782 282.207 283.485 284.644 285.918 287.168 288.342 289.588 290.641 291.491 292.349 293.225 294.118 294.82 295.24 295.618 296.178 296.852 297.524 298.136 298.684 299.165 299.563 299.941 300.346 300.729 301.003 301.195 301.335 301.351 301.278 301.155 301.002 300.818 300.552 300.296 300.208 300.305 300.441 300.477 300.38 300.128 299.8 299.469 299.139 298.793 298.433 298.089 297.853 297.716 297.506 297.13 296.494 295.499 294.328 293.247 292.455 291.656 290.897 290.232 289.391 288.231 286.795 285.133 283.107 280.4 277.313 274.846 272.911 271.406 270.387 269.608 268.47 266.441 264.424 261.373 258.699 257.711 256.85 256.428 254.661 251.321 248.696 247.53 247.106 246.244 244.518 243.925 243.673 245.13 246.202 247.107 247.542 247.203 246.428 245.189 244.377 243.452 242.782 242.176 241.029 225.102 228.948 234.469 239.496 243.306 245.192 245.416 244.537 243.905 243.243 241.034 239.442 240.885 245.919 254.703 261.816 267.329 269.755 271.12 272.215 273.044 273.811 274.45 275.201 276.482 277.992 279.498 280.983 282.357 283.567 284.71 286.008 287.305 288.519 289.74 290.749 291.568 292.367 293.142 293.963 294.662 295.127 295.59 296.208 296.88 297.513 298.097 298.653 299.167 299.573 299.941 300.307 300.639 300.92 301.157 301.312 301.364 301.353 301.235 301.019 300.799 300.547 300.272 300.156 300.27 300.415 300.429 300.334 300.121 299.807 299.438 299.094 298.765 298.415 298.067 297.803 297.639 297.418 297.056 296.44 295.431 294.212 293.101 292.302 291.506 290.769 290.102 289.298 288.212 286.815 285.127 283.081 280.297 277.357 275.072 273.362 271.99 271.018 270.388 269.599 268.039 265.784 263.422 259.136 257.754 256.592 256.15 254.753 251.137 248.795 247.685 247.436 246.569 244.913 244.017 243.807 245.205 246.314 247.117 247.59 247.27 246.474 245.216 244.409 243.451 242.809 242.133 241.012 225.134 229.22 234.877 239.989 244.066 245.955 246.186 245.521 245.272 244.953 242.807 240.968 241.977 247.607 255.368 262.463 267.619 269.946 271.296 272.333 273.133 273.904 274.564 275.417 276.793 278.277 279.715 281.143 282.459 283.654 284.832 286.159 287.483 288.718 289.889 290.853 291.669 292.456 293.144 293.863 294.52 295.014 295.534 296.163 296.835 297.473 298.068 298.665 299.229 299.648 299.953 300.251 300.585 300.895 301.12 301.231 301.303 301.357 301.22 300.955 300.756 300.556 300.279 300.119 300.234 300.395 300.412 300.309 300.106 299.804 299.426 299.06 298.715 298.358 298.03 297.773 297.585 297.333 296.965 296.353 295.335 294.101 292.976 292.158 291.354 290.633 289.949 289.159 288.133 286.777 285.065 283.025 280.286 277.464 275.267 273.673 272.406 271.534 271.1 270.754 269.733 267.725 264.8 261.721 258.515 256.97 255.716 254.337 250.941 248.836 247.607 247.458 246.817 245.373 244.016 243.994 245.312 246.382 247.03 247.455 247.266 246.541 245.259 244.409 243.467 242.823 242.079 240.995 225.283 229.501 235.325 240.523 244.713 246.562 246.736 246.326 247.284 248.337 245.64 242.66 243.161 248.636 256.079 263.119 267.887 270.114 271.457 272.446 273.234 274.027 274.744 275.73 277.177 278.595 279.937 281.259 282.522 283.763 285.019 286.329 287.634 288.883 290.031 290.959 291.764 292.534 293.183 293.841 294.432 294.905 295.442 296.096 296.81 297.513 298.133 298.751 299.339 299.719 299.908 300.147 300.543 300.914 301.114 301.182 301.249 301.286 301.098 300.824 300.668 300.469 300.141 299.96 300.116 300.36 300.419 300.299 300.071 299.784 299.439 299.055 298.676 298.287 297.968 297.728 297.534 297.28 296.893 296.242 295.215 294.011 292.891 292.04 291.221 290.506 289.806 289.017 288.032 286.704 284.982 282.969 280.36 277.652 275.52 273.97 272.75 271.928 271.568 271.438 270.895 269.661 267.06 263.684 261.48 259.334 256.887 253.241 250.886 248.763 247.466 247.147 246.651 245.457 243.997 244.07 245.382 246.383 246.858 247.213 247.197 246.561 245.3 244.355 243.476 242.847 242.03 240.98 225.392 229.761 235.62 241.08 245.369 247.202 247.011 246.907 249.097 249.671 247.887 244.47 244.41 249.651 256.611 263.621 268.057 270.217 271.573 272.546 273.336 274.154 274.947 276.042 277.504 278.847 280.095 281.317 282.555 283.865 285.127 286.324 287.566 288.871 290.101 291.048 291.798 292.497 293.146 293.817 294.391 294.855 295.409 296.072 296.802 297.527 298.131 298.706 299.272 299.639 299.83 300.077 300.474 300.817 301.028 301.15 301.245 301.232 301.005 300.771 300.665 300.418 300.0 299.793 299.994 300.303 300.411 300.29 300.054 299.77 299.416 299.021 298.648 298.264 297.929 297.663 297.457 297.227 296.851 296.17 295.131 293.936 292.791 291.91 291.098 290.4 289.68 288.874 287.918 286.614 284.913 282.944 280.498 277.917 275.85 274.269 273.061 272.252 271.909 271.833 271.527 270.756 269.116 266.48 263.437 260.687 258.063 253.156 250.634 248.607 247.334 246.691 246.38 245.282 244.153 244.215 245.387 246.267 246.611 246.963 247.071 246.533 245.3 244.36 243.498 242.827 241.979 240.966 225.371 229.966 236.007 241.517 245.985 247.723 247.238 247.238 249.908 250.838 249.435 246.346 245.734 251.144 257.098 264.005 268.166 270.286 271.666 272.641 273.435 274.271 275.135 276.305 277.751 279.028 280.205 281.354 282.579 283.951 285.166 286.173 287.31 288.69 290.08 291.113 291.848 292.474 293.108 293.778 294.334 294.801 295.369 296.022 296.737 297.45 298.026 298.529 299.094 299.467 299.749 300.052 300.375 300.641 300.898 301.13 301.263 301.203 300.928 300.709 300.655 300.404 299.913 299.632 299.836 300.211 300.384 300.276 300.041 299.763 299.383 298.981 298.617 298.243 297.896 297.61 297.388 297.158 296.785 296.102 295.075 293.876 292.692 291.791 291.004 290.306 289.549 288.713 287.765 286.49 284.848 282.936 280.631 278.207 276.243 274.63 273.396 272.564 272.198 272.076 271.886 271.403 270.425 268.875 266.692 262.855 258.646 253.1 250.547 248.691 247.272 246.315 246.103 245.044 244.349 244.41 245.396 246.048 246.303 246.741 246.942 246.463 245.263 244.429 243.507 242.783 241.926 240.952 225.559 230.203 236.33 242.056 246.571 248.027 247.198 247.312 250.021 251.971 251.025 247.877 247.075 252.427 257.655 264.311 268.245 270.344 271.753 272.736 273.529 274.375 275.296 276.512 277.927 279.155 280.294 281.392 282.567 283.971 285.057 285.289 286.938 288.371 289.937 291.128 291.921 292.528 293.131 293.762 294.271 294.725 295.283 295.926 296.648 297.358 297.905 298.343 298.841 299.264 299.663 300.036 300.262 300.454 300.764 301.086 301.248 301.172 300.863 300.631 300.602 300.362 299.811 299.424 299.606 300.062 300.323 300.235 300.0 299.743 299.37 298.97 298.595 298.2 297.843 297.554 297.323 297.083 296.704 296.021 295.016 293.824 292.597 291.667 290.89 290.163 289.374 288.538 287.593 286.338 284.778 282.929 280.704 278.385 276.548 274.995 273.812 272.996 272.553 272.309 272.124 271.825 271.243 270.274 268.582 264.995 259.294 253.204 250.473 248.815 247.344 246.154 245.924 244.984 244.5 244.621 245.449 245.807 246.087 246.612 246.811 246.348 245.229 244.461 243.506 242.757 241.881 240.929 225.659 230.495 236.736 242.573 247.072 248.27 246.987 247.108 250.075 253.001 252.509 249.681 248.52 253.366 258.425 264.605 268.332 270.417 271.853 272.839 273.621 274.465 275.424 276.66 278.039 279.237 280.373 281.442 282.559 283.81 284.834 284.399 286.163 287.951 289.642 291.01 291.937 292.61 293.196 293.763 294.212 294.638 295.168 295.803 296.572 297.3 297.82 298.249 298.7 299.127 299.618 300.048 300.191 300.307 300.605 300.893 301.071 301.1 300.861 300.629 300.588 300.35 299.748 299.255 299.381 299.897 300.24 300.182 299.949 299.704 299.354 298.959 298.565 298.137 297.764 297.455 297.2 296.972 296.616 295.935 294.95 293.77 292.496 291.501 290.707 289.956 289.168 288.377 287.442 286.195 284.72 282.935 280.752 278.57 276.822 275.34 274.183 273.42 272.972 272.688 272.441 272.176 271.787 271.091 269.681 266.215 260.14 253.621 250.566 248.962 247.468 246.183 245.878 244.972 244.582 244.836 245.416 245.571 246.061 246.499 246.69 246.212 245.141 244.42 243.533 242.755 241.844 240.906 225.724 230.601 237.04 243.057 247.59 248.422 246.771 246.673 250.053 253.613 253.514 251.361 249.983 254.047 259.146 264.887 268.45 270.515 271.949 272.922 273.69 274.529 275.497 276.718 278.072 279.267 280.377 281.421 282.569 283.819 284.866 284.771 285.347 287.739 289.404 290.798 291.811 292.59 293.199 293.716 294.139 294.591 295.102 295.695 296.471 297.201 297.714 298.178 298.66 299.105 299.632 300.079 300.194 300.25 300.446 300.644 300.848 301.011 300.894 300.713 300.673 300.418 299.793 299.246 299.295 299.8 300.198 300.184 299.947 299.674 299.306 298.902 298.51 298.101 297.733 297.368 297.045 296.829 296.519 295.848 294.868 293.696 292.377 291.302 290.463 289.701 288.932 288.211 287.294 286.057 284.658 282.947 280.801 278.769 277.099 275.677 274.518 273.799 273.362 273.089 272.863 272.608 272.206 271.594 270.35 267.009 261.198 254.421 250.979 249.219 247.738 246.302 245.987 245.155 244.666 244.956 245.233 245.428 246.077 246.477 246.613 246.067 245.007 244.407 243.572 242.745 241.823 240.884 225.85 230.96 237.339 243.503 248.001 248.421 246.401 246.16 249.936 253.947 254.201 252.729 251.459 254.678 259.821 265.179 268.597 270.627 272.036 272.987 273.752 274.59 275.548 276.727 278.051 279.248 280.333 281.336 282.519 283.947 285.031 285.734 285.708 287.093 289.192 290.615 291.661 292.564 293.217 293.661 294.048 294.537 295.04 295.603 296.361 297.071 297.586 298.104 298.628 299.073 299.605 300.066 300.197 300.253 300.383 300.506 300.737 300.97 300.924 300.792 300.763 300.468 299.789 299.182 299.161 299.67 300.145 300.169 299.919 299.628 299.269 298.864 298.466 298.066 297.707 297.317 296.952 296.72 296.413 295.732 294.747 293.586 292.262 291.165 290.313 289.532 288.728 287.984 287.056 285.843 284.517 282.875 280.839 278.992 277.386 275.976 274.823 274.131 273.729 273.487 273.267 272.989 272.556 271.911 270.717 267.7 261.84 256.07 251.485 249.498 248.032 246.482 246.137 246.059 244.845 244.891 245.011 245.335 246.079 246.489 246.545 245.947 244.865 244.501 243.651 242.737 241.807 240.864 225.974 231.132 237.768 243.981 248.344 248.425 245.991 245.632 251.271 254.058 254.631 253.713 253.114 255.625 260.48 265.476 268.765 270.749 272.116 273.046 273.818 274.662 275.594 276.71 277.98 279.171 280.236 281.207 282.384 283.984 285.211 286.15 286.951 286.867 288.6 290.486 291.524 292.574 293.299 293.651 293.965 294.451 294.952 295.535 296.282 296.959 297.471 298.033 298.58 299.022 299.553 300.026 300.201 300.29 300.384 300.466 300.722 300.986 300.953 300.853 300.829 300.483 299.746 299.076 298.994 299.525 300.086 300.132 299.852 299.549 299.222 298.836 298.431 298.01 297.643 297.262 296.89 296.632 296.297 295.597 294.596 293.433 292.125 291.037 290.191 289.378 288.501 287.687 286.736 285.58 284.314 282.702 280.793 279.141 277.628 276.247 275.152 274.451 274.064 273.837 273.593 273.267 272.767 272.065 270.884 268.373 263.211 257.085 252.206 249.859 248.184 246.779 246.356 246.521 244.927 244.655 244.858 245.32 246.116 246.481 246.439 245.782 244.821 244.541 243.709 242.718 241.786 240.845 225.873 231.316 238.071 244.407 248.698 248.365 245.55 245.068 251.398 253.936 254.693 254.207 253.98 256.522 261.159 265.803 268.959 270.878 272.192 273.109 273.895 274.753 275.647 276.673 277.848 279.001 280.051 281.015 282.189 283.871 285.347 286.471 287.562 288.515 288.828 289.383 291.041 291.728 292.961 293.634 293.88 294.316 294.837 295.469 296.206 296.847 297.368 297.967 298.526 298.984 299.527 300.005 300.2 300.308 300.372 300.451 300.76 301.036 300.974 300.868 300.809 300.434 299.7 299.01 298.86 299.393 300.036 300.103 299.81 299.493 299.158 298.777 298.391 297.956 297.56 297.179 296.804 296.52 296.17 295.471 294.439 293.244 291.957 290.875 290.034 289.185 288.249 287.365 286.391 285.306 284.088 282.473 280.68 279.171 277.732 276.434 275.479 274.813 274.391 274.109 273.806 273.443 272.918 272.144 271.084 269.02 264.454 257.605 253.211 250.417 248.561 247.117 246.693 246.773 244.885 244.51 244.812 245.365 246.168 246.507 246.321 245.634 244.829 244.527 243.765 242.674 241.763 240.835 226.084 231.609 238.349 244.812 248.907 248.213 245.057 244.557 251.032 253.554 254.36 254.367 254.851 257.469 261.813 266.094 269.12 270.976 272.254 273.17 273.964 274.83 275.689 276.633 277.707 278.785 279.824 280.82 282.019 283.69 285.299 286.589 287.828 288.976 289.266 288.347 289.063 292.192 293.122 293.47 293.762 294.204 294.748 295.379 296.07 296.681 297.247 297.897 298.467 298.951 299.49 299.954 300.155 300.283 300.37 300.512 300.862 301.079 300.947 300.818 300.724 300.319 299.603 298.913 298.71 299.242 299.958 300.094 299.841 299.528 299.163 298.756 298.381 297.967 297.562 297.152 296.733 296.421 296.08 295.407 294.351 293.093 291.782 290.665 289.795 288.931 287.988 287.075 286.084 285.046 283.854 282.216 280.547 279.113 277.706 276.518 275.728 275.115 274.653 274.317 273.949 273.567 273.064 272.269 271.333 269.626 265.515 258.609 254.212 251.121 249.003 247.422 246.98 246.926 244.968 244.461 244.787 245.442 246.246 246.58 246.219 245.528 244.821 244.508 243.752 242.62 241.742 240.826 226.206 231.755 238.612 245.204 249.122 248.028 244.609 244.074 250.61 253.09 254.163 254.77 255.772 258.37 262.374 266.353 269.25 271.048 272.309 273.231 274.02 274.883 275.722 276.608 277.6 278.596 279.615 280.652 281.88 283.536 285.199 286.606 287.98 289.273 290.261 290.326 289.965 292.301 292.875 293.247 293.625 294.117 294.679 295.282 295.92 296.512 297.118 297.81 298.401 298.907 299.372 299.712 300.107 300.267 300.409 300.614 300.945 301.059 300.883 300.777 300.696 300.266 299.521 298.807 298.56 299.102 299.89 300.096 299.863 299.566 299.224 298.805 298.399 297.978 297.576 297.157 296.715 296.383 296.045 295.398 294.343 293.033 291.681 290.528 289.638 288.791 287.889 286.941 285.887 284.806 283.559 281.904 280.388 279.02 277.618 276.549 275.902 275.359 274.878 274.492 274.088 273.725 273.23 272.454 271.597 270.044 266.363 259.38 255.201 251.92 249.564 247.732 247.249 247.01 245.143 244.483 244.791 245.441 246.357 246.678 246.149 245.438 244.807 244.464 243.712 242.551 241.713 240.817 226.343 231.868 238.952 245.563 249.272 247.834 244.19 243.733 250.208 252.643 254.229 255.301 256.512 259.113 262.836 266.591 269.35 271.098 272.362 273.288 274.062 274.915 275.749 276.604 277.54 278.471 279.453 280.513 281.754 283.401 285.122 286.633 288.121 289.493 290.594 291.246 291.592 292.048 292.674 293.058 293.519 294.046 294.618 295.198 295.802 296.382 297.002 297.698 298.318 298.868 299.389 299.778 300.105 300.287 300.48 300.718 300.988 301.008 300.822 300.776 300.732 300.28 299.487 298.729 298.444 298.983 299.827 300.112 299.881 299.575 299.278 298.875 298.431 297.979 297.577 297.155 296.705 296.361 296.023 295.417 294.403 293.054 291.651 290.455 289.562 288.718 287.845 286.886 285.775 284.646 283.325 281.661 280.276 278.982 277.616 276.609 276.034 275.551 275.083 274.679 274.254 273.921 273.446 272.671 271.844 270.349 266.781 260.33 255.881 253.151 250.179 248.141 247.566 246.567 245.668 244.615 244.845 245.527 246.466 246.745 246.104 245.373 244.788 244.416 243.668 242.474 241.676 240.805 diff --git a/Test/test1.f90 b/Test/test1.f90 deleted file mode 100644 index a8483c7c21b3afe965d1142fbcd55689c0c65937..0000000000000000000000000000000000000000 --- a/Test/test1.f90 +++ /dev/null @@ -1,454 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test1.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF//include -L/pcmdi/charles_work/NetCDF//lib -lnetcdf -module Modules -IModules -L. -lcmor Test/test1.f90 -o cmor_test - -MODULE local_subs - - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - plevs = (/100000., 92500., 85000., 70000.,& - 60000., 50000., 40000., 30000., 25000., 20000.,& - 15000., 10000., 7000., 5000., 3000., 2000., 1000. /) - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1) = (it-1)*30. - time_bnds(2) = it*30. - - RETURN - END SUBROUTINE read_time - -INCLUDE "reader_2D_3D.f90" - -END MODULE local_subs - - -PROGRAM mip_contribution -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is required by many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, APE, and -! IPCC scenario runs) -! -! Background information for this sample code: -! -! Standard output requested by AMIP is listed in 6 different -! tables. This sample code processes only 2 variables listed in AMIP -! Table 1a ("3-d" fields, containing monthly mean data that are a -! function of longitude, latitude, pressure and time) and only 3 -! variables in AMIP Table 2 ("2-d" fields, containing monthly mean -! data that are a function of longitude, latitude, and time). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 17 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 3 ! number of AMIP Table 2 fields to be - ! output. - INTEGER, PARAMETER :: n3d = 2 ! number of AMIP Table 1a fields to - ! be output. - - ! Tables associating the user's variables with AMIP standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for Table 1a fields - CHARACTER (LEN=2), DIMENSION(n3d) :: varin3d=(/ 'U', 'T'/) - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ 'm s-1', 'K ' /) - CHARACTER (LEN=4), DIMENSION(n3d) :: & - positive3d= (/ '', '' /) - ! Corresponding AMIP Table 1a entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'ua', 'ta' /) - - ! My variable names for Table 2 fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET' /) - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2' /) - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ' /) -! Corresponding AMIP Table 2 entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, DIMENSION(3) :: axis2d_ids - INTEGER, DIMENSION(3) :: axis2d_ids2 - INTEGER, DIMENSION(4) :: axis3d_ids - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lat,lon) :: data2d - REAL, DIMENSION(lev,lon,lat) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION :: time,bt - DOUBLE PRECISION, DIMENSION(2):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - -!!$ REAL, DIMENSION(lat*lon*lev) :: tmp3d -!!$ REAL, DIMENSION(lat*lon) :: tmp2d - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - bt=0 - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - print*, 'calling read_coords ' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - print*, 'returned from read_coords' - - ! Specify path where tables can be found, indicate that existing netCDF - ! files should not be overwritten, and instruct CMOR to error exit on - ! encountering errors of any severity. - - error_flag = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) runcmor_write under IPCC 2xCO2 equilibrium experiment - ! conditions, and provide information to be included as attributes in - ! all CF-netCDF files written as part of this dataset. - - print*, 'calling cmor_dataset' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)',model_id="GICCM1", & - forcing="Nat",contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - print*, 'returned from cmor_dataset' - - ! Define axes for 3-d fields - - print*, 'defining 3-d axes' - - axis2d_ids2(1) = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis2d_ids2(2) = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - axis2d_ids2(3) = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='1 month') - axis3d_ids(3) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis3d_ids(2) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - axis3d_ids(1) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='plevs', & - units='Pa', & - length=lev, & - coord_vals=plevs) - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (below). -print*, 'before time ' - axis3d_ids(4) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='1 month') - - print*, 'finished defining 3-d axes' - - ! Define axes for 2-d fields - - print*, 'defining 2-d axes' - - axis2d_ids(1) = axis3d_ids(3) - axis2d_ids(2) = axis3d_ids(2) - axis2d_ids(3) = axis3d_ids(4) - -print*, 'finished defining 2-d axes' - - ! Define variables found in AMIP table 1a (3-d variables) - - DO m=1,n3d - var3d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(m), & -!!$ file_suffix='1979-2001', & - units=units3d(m), & - axis_ids=axis3d_ids, & - missing_value=1.0e20, & - positive=positive3d(m), & - original_name=varin3d(m)) - ENDDO - - - ! Define variables found in AMIP table 2a (2-d variables) - - DO m=1,n2d - if (m.eq.3) then - print*, 'ok our axes are: ',axis2d_ids2 - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Lmon', & - table_entry=entry2d(m), & -!!$ file_suffix='1979-2001', & - units=units2d(m), & - axis_ids=axis2d_ids2, & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - else - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry2d(m), & -!!$ file_suffix='1979-2001', & - units=units2d(m), & - axis_ids=axis2d_ids, & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - endif - ENDDO - -print*, 'completed everything up to writing output fields ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested AMIP table 1a and table 2 fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - ! Cycle through the 3-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - - DO m=1,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - print*, RESHAPE(bnds_time, (/ 2,1 /)) - error_flag = cmor_write(var_id = var3d_ids(m), & - data = RESHAPE(data3d, (/ lat*lon*lev /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var3d_ids(m) -print*, ' error flag = ', error_flag - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 1a ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - print*, RESHAPE(bnds_time, (/ 2,1 /)) - error_flag = cmor_write(var_id = var2d_ids(m), & - data = RESHAPE(data2d, (/ lat*lon /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var2d_ids(m) -print*, ' error flag = ', error_flag - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 2 ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - -print*, '******************************' -print*, ' ' -print*, 'CMOR COMPLETED SUCCESSFULLY ' -print*, ' ' -print*, '******************************' - -END PROGRAM mip_contribution - diff --git a/Test/test2.f90 b/Test/test2.f90 deleted file mode 100644 index 9ca8642e1ca557aaebe7b3f0c1fd4168710da39f..0000000000000000000000000000000000000000 --- a/Test/test2.f90 +++ /dev/null @@ -1,454 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test1.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF//include -L/pcmdi/charles_work/NetCDF//lib -lnetcdf -module Modules -IModules -L. -lcmor Test/test1.f90 -o cmor_test - -MODULE local_subs - - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i, irev - - DO i = 1, SIZE(alons) - irev = SIZE(alons)+1-i - alons(irev) = (i-1)*360./SIZE(alons) - bnds_lon(1,irev) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,irev) = (i - 0.5)*360./SIZE(alons) - print*, i,irev,alons(irev),bnds_lon(1,irev),bnds_lon(2,irev) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - plevs = (/100000., 92500., 85000., 70000.,& - 60000., 50000., 40000., 30000., 25000., 20000.,& - 15000., 10000., 7000., 5000., 3000., 2000., 1000. /) - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1) = (it-1)*30. - time_bnds(2) = it*30. - - RETURN - END SUBROUTINE read_time - -INCLUDE "reader_2D_3D.f90" - -END MODULE local_subs - - -PROGRAM mip_contribution -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is required by many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, APE, and -! IPCC scenario runs) -! -! Background information for this sample code: -! -! Standard output requested by AMIP is listed in 6 different -! tables. This sample code processes only 2 variables listed in AMIP -! Table 1a ("3-d" fields, containing monthly mean data that are a -! function of longitude, latitude, pressure and time) and only 3 -! variables in AMIP Table 2 ("2-d" fields, containing monthly mean -! data that are a function of longitude, latitude, and time). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 17 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 3 ! number of AMIP Table 2 fields to be - ! output. - INTEGER, PARAMETER :: n3d = 2 ! number of AMIP Table 1a fields to - ! be output. - - ! Tables associating the user's variables with AMIP standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for Table 1a fields - CHARACTER (LEN=2), DIMENSION(n3d) :: varin3d=(/ 'U', 'T'/) - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ 'm s-1', 'K ' /) - CHARACTER (LEN=4), DIMENSION(n3d) :: & - positive3d= (/ '', '' /) - ! Corresponding AMIP Table 1a entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'ua', 'ta' /) - - ! My variable names for Table 2 fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET' /) - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2' /) - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ' /) - ! Corresponding AMIP Table 2 entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, DIMENSION(3) :: axis2d_ids - INTEGER, DIMENSION(3) :: axis2d_ids2 - INTEGER, DIMENSION(4) :: axis3d_ids - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lat,lon) :: data2d - REAL, DIMENSION(lev,lon,lat) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION :: time,bt - DOUBLE PRECISION, DIMENSION(2):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - -!!$ REAL, DIMENSION(lat*lon*lev) :: tmp3d -!!$ REAL, DIMENSION(lat*lon) :: tmp2d - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - bt=0. - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - print*, 'calling read_coords ' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - print*, 'returned from read_coords' - - ! Specify path where tables can be found, indicate that existing netCDF - ! files should not be overwritten, and instruct CMOR to error exit on - ! encountering errors of any severity. - - error_flag = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) runcmor_write under IPCC 2xCO2 equilibrium experiment - ! conditions, and provide information to be included as attributes in - ! all CF-netCDF files written as part of this dataset. - - print*, 'calling cmor_dataset' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' , & - model_id="GICCM1",forcing="SO",contact="Barry Bonds",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt,institute_id="PCMDI") - - print*, 'returned from cmor_dataset' - - ! Define axes for 3-d fields - - print*, 'defining 3-d axes' - - axis2d_ids2(1) = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis2d_ids2(2) = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - axis3d_ids(3) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - print*, 'alons:',alons - print*, 'blons:',bnds_lon - axis3d_ids(2) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - axis3d_ids(1) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='plevs', & - units='Pa', & - length=lev, & - coord_vals=plevs) - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (below). -print*, 'before time ' - axis2d_ids2(3) = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='1 month') - axis3d_ids(4) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='1 month') - - print*, 'finished defining 3-d axes' - - ! Define axes for 2-d fields - - print*, 'defining 2-d axes' - - axis2d_ids(1) = axis3d_ids(3) - axis2d_ids(2) = axis3d_ids(2) - axis2d_ids(3) = axis3d_ids(4) - -print*, 'finished defining 2-d axes' - - ! Define variables found in AMIP table 1a (3-d variables) - - DO m=1,n3d - var3d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=axis3d_ids, & - missing_value=1.0e20, & - positive=positive3d(m), & - original_name=varin3d(m)) - ENDDO - - - ! Define variables found in AMIP table 2a (2-d variables) - - DO m=1,n2d - if (m.eq.3) then - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Lmon', & - table_entry=entry2d(m), & -!!$ file_suffix='1979-2001', & - units=units2d(m), & - axis_ids=axis2d_ids2, & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - else - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=axis2d_ids, & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - endif - ENDDO - -print*, 'completed everything up to writing output fields ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested AMIP table 1a and table 2 fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - ! Cycle through the 3-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - - DO m=1,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write(var_id = var3d_ids(m), & - data = RESHAPE(data3d, (/ lat*lon*lev /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var3d_ids(m) -print*, ' error flag = ', error_flag - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 1a ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write(var_id = var2d_ids(m), & - data = RESHAPE(data2d, (/ lat*lon /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var2d_ids(m) -print*, ' error flag = ', error_flag - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 2 ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - -print*, '******************************' -print*, ' ' -print*, 'CMOR COMPLETED SUCCESSFULLY ' -print*, ' ' -print*, '******************************' - -END PROGRAM mip_contribution - diff --git a/Test/test3.f90 b/Test/test3.f90 deleted file mode 100644 index da575cf7af05dcab4123d67796b07853f4a93f8f..0000000000000000000000000000000000000000 --- a/Test/test3.f90 +++ /dev/null @@ -1,454 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test1.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF//include -L/pcmdi/charles_work/NetCDF//lib -lnetcdf -module Modules -IModules -L. -lcmor Test/test1.f90 -o cmor_test - -MODULE local_subs - - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i, irev, ioff - - DO i = 1, SIZE(alons) - irev = SIZE(alons)+1-i - ioff = irev +2 - if (ioff>SIZE(alons)) ioff = ioff - SIZE(alons) - alons(ioff) = (i-1)*360./SIZE(alons) - bnds_lon(1,ioff) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,ioff) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - plevs = (/100000., 92500., 85000., 70000.,& - 60000., 50000., 40000., 30000., 25000., 20000.,& - 15000., 10000., 7000., 5000., 3000., 2000., 1000. /) - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1) = (it-1)*30. - time_bnds(2) = it*30. - - RETURN - END SUBROUTINE read_time - -INCLUDE "reader_2D_3D.f90" - -END MODULE local_subs - - -PROGRAM mip_contribution -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is required by many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, APE, and -! IPCC scenario runs) -! -! Background information for this sample code: -! -! Standard output requested by AMIP is listed in 6 different -! tables. This sample code processes only 2 variables listed in AMIP -! Table 1a ("3-d" fields, containing monthly mean data that are a -! function of longitude, latitude, pressure and time) and only 3 -! variables in AMIP Table 2 ("2-d" fields, containing monthly mean -! data that are a function of longitude, latitude, and time). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 17 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 3 ! number of AMIP Table 2 fields to be - ! output. - INTEGER, PARAMETER :: n3d = 2 ! number of AMIP Table 1a fields to - ! be output. - - ! Tables associating the user's variables with AMIP standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for Table 1a fields - CHARACTER (LEN=2), DIMENSION(n3d) :: varin3d=(/ 'U', 'T'/) - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ 'm s-1', 'K ' /) - CHARACTER (LEN=4), DIMENSION(n3d) :: & - positive3d= (/ ' ', ' ' /) - ! Corresponding AMIP Table 1a entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'ua', 'ta' /) - - ! My variable names for Table 2 fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET' /) - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2' /) - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ' /) - ! Corresponding AMIP Table 2 entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, DIMENSION(3) :: axis2d_ids - INTEGER, DIMENSION(3) :: axis2d_ids2 - INTEGER, DIMENSION(4) :: axis3d_ids - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lat,lon) :: data2d - REAL, DIMENSION(lev,lon,lat) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION :: time,bt - DOUBLE PRECISION, DIMENSION(2):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - -!!$ REAL, DIMENSION(lat*lon*lev) :: tmp3d -!!$ REAL, DIMENSION(lat*lon) :: tmp2d - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - bt=0. - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - print*, 'calling read_coords ' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - print*, 'returned from read_coords' - - ! Specify path where tables can be found, indicate that existing netCDF - ! files should not be overwritten, and instruct CMOR to error exit on - ! encountering errors of any severity. - - error_flag = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) runcmor_write under IPCC 2xCO2 equilibrium experiment - ! conditions, and provide information to be included as attributes in - ! all CF-netCDF files written as part of this dataset. - - print*, 'calling cmor_dataset' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' , & - model_id="GICCM1",forcing='TO',contact="Barry Bonds",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt,institute_id="PCMDI"); - - print*, 'returned from cmor_dataset' - - ! Define axes for 3-d fields - - print*, 'defining 3-d axes' - - axis2d_ids2(1) = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis2d_ids2(2) = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - axis2d_ids2(3) = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='1 month') - axis3d_ids(3) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis3d_ids(2) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - axis3d_ids(1) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='plevs', & - units='Pa', & - length=lev, & - coord_vals=plevs) - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (below). -print*, 'before time ' - axis3d_ids(4) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='30 days') - - print*, 'finished defining 3-d axes' - - ! Define axes for 2-d fields - - print*, 'defining 2-d axes' - - axis2d_ids(1) = axis3d_ids(3) - axis2d_ids(2) = axis3d_ids(2) - axis2d_ids(3) = axis3d_ids(4) - -print*, 'finished defining 2-d axes' - - ! Define variables found in AMIP table 1a (3-d variables) - - DO m=1,n3d - var3d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=axis3d_ids, & - missing_value=1.0e20, & - positive=positive3d(m), & - original_name=varin3d(m)) - ENDDO - - - ! Define variables found in AMIP table 2a (2-d variables) - - DO m=1,n2d - if (m.eq.3) then - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Lmon', & - table_entry=entry2d(m), & -!!$ file_suffix='1979-2001', & - units=units2d(m), & - axis_ids=axis2d_ids2, & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - else - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=axis2d_ids, & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - endif - ENDDO - -print*, 'completed everything up to writing output fields ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested AMIP table 1a and table 2 fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - ! Cycle through the 3-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - - DO m=1,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write(var_id = var3d_ids(m), & - data = RESHAPE(data3d, (/ lat*lon*lev /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var3d_ids(m) -print*, ' error flag = ', error_flag - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 1a ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write(var_id = var2d_ids(m), & - data = RESHAPE(data2d, (/ lat*lon /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var2d_ids(m) -print*, ' error flag = ', error_flag - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 2 ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - -print*, '******************************' -print*, ' ' -print*, 'CMOR COMPLETED SUCCESSFULLY ' -print*, ' ' -print*, '******************************' - -END PROGRAM mip_contribution - diff --git a/Test/test4.f90 b/Test/test4.f90 deleted file mode 100644 index 70aedb4d4620cf298e65f61ffdc9fd0a0b1c36a8..0000000000000000000000000000000000000000 --- a/Test/test4.f90 +++ /dev/null @@ -1,470 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/main_prog.f90 -IModules -L/work/Unidata/lib -ludunits -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF//include -L/pcmdi/charles_work/NetCDF//lib -lnetcdf -module Modules -IModules -L. -lcmor Test/main_prog.f90 -L/pcmdi/charles_work/Unidata/lib -ludunits -o cmor_test - -MODULE local_subs - - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - plevs = (/100000., 92500., 85000., 70000.,& - 60000., 50000., 40000., 30000., 25000., 20000.,& - 15000., 10000., 7000., 5000., 3000., 2000., 1000. /) - - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1) = (it-1)*30. - time_bnds(2) = it*30. - - RETURN - END SUBROUTINE read_time - -INCLUDE "reader_2D_3D.f90" - -END MODULE local_subs - - -PROGRAM mip_contribution -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is required by many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, APE, and -! IPCC scenario runs) -! -! Background information for this sample code: -! -! Standard output requested by AMIP is listed in 6 different -! tables. This sample code processes only 2 variables listed in AMIP -! Table 1a ("3-d" fields, containing monthly mean data that are a -! function of longitude, latitude, pressure and time) and only 3 -! variables in AMIP Table 2 ("2-d" fields, containing monthly mean -! data that are a function of longitude, latitude, and time). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 17 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 3 ! number of AMIP Table 2 fields to be - ! output. - INTEGER, PARAMETER :: n3d = 2 ! number of AMIP Table 1a fields to - ! be output. - - ! Tables associating the user's variables with AMIP standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for Table 1a fields - CHARACTER (LEN=2), DIMENSION(n3d) :: varin3d=(/ 'U', 'T'/) - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ 'm s-1', 'degF ' /) - CHARACTER (LEN=4), DIMENSION(n3d) :: & - positive3d= (/ ' ', ' ' /) - ! Corresponding AMIP Table 1a entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'ua', 'ta' /) - - ! My variable names for Table 2 fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET' /) - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2' /) - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ' /) - ! Corresponding AMIP Table 2 entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, DIMENSION(3) :: axis2d_ids - INTEGER, DIMENSION(3) :: axis2d_ids2 - INTEGER, DIMENSION(4) :: axis3d_ids - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - REAL, DIMENSION(lon,lat,lev) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION, DIMENSION(lev*lon*lat) :: mydata - DOUBLE PRECISION :: time,bt - DOUBLE PRECISION, DIMENSION(2):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - -!!$ REAL, DIMENSION(lat*lon*lev) :: tmp3d -!!$ REAL, DIMENSION(lat*lon) :: tmp2d - - ! Other variables: - ! --------------------- - - INTEGER :: it, m,i - - character(256) outputpath - - real mymax,mytmp - - mymax=0. - - bt=0. - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - print*, 'calling read_coords ' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - print*, 'returned from read_coords' - - ! Specify path where tables can be found, indicate that existing netCDF - ! files should not be overwritten, and instruct CMOR to error exit on - ! encountering errors of any severity. - - error_flag = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) runcmor_write under IPCC 2xCO2 equilibrium experiment - ! conditions, and provide information to be included as attributes in - ! all CF-netCDF files written as part of this dataset. - - print*, 'calling cmor_dataset' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' , model_id="GICCM1", & - forcing = 'TO',contact="Barry Bonds",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt,institute_id="PCMDI") - - print*, 'returned from cmor_dataset' - - ! Define axes for 3-d fields - - print*, 'defining 3-d axes' - - axis2d_ids2(1) = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis2d_ids2(2) = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - axis2d_ids2(3) = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='1 month') - axis3d_ids(2) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis3d_ids(1) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - axis3d_ids(3) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='plevs', & - units='Pa', & - length=lev, & - coord_vals=plevs) - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (below). -print*, 'before time ' - axis3d_ids(4) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='31 days') - - print*, 'finished defining 3-d axes' - - ! Define axes for 2-d fields - - print*, 'defining 2-d axes' - - axis2d_ids(1) = axis3d_ids(1) - axis2d_ids(2) = axis3d_ids(2) - axis2d_ids(3) = axis3d_ids(4) - -print*, 'finished defining 2-d axes' - - ! Define variables found in AMIP table 1a (3-d variables) - - DO m=1,n3d - var3d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=axis3d_ids, & - missing_value=1.0e20, & - positive=positive3d(m), & - original_name=varin3d(m)) - print*, m,'varind',varin3d(m),var3d_ids(m) - ENDDO - - - ! Define variables found in AMIP table 2a (2-d variables) - - DO m=1,n2d - if (m.eq.3) then - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Lmon', & - table_entry=entry2d(m), & -!!$ file_suffix='1979-2001', & - units=units2d(m), & - axis_ids=axis2d_ids2, & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - else - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=axis2d_ids, & - missing_value=1.0e20, & - positive=positive2d(m), & - original_name=varin2d(m)) - endif - ENDDO - -print*, 'completed everything up to writing output fields ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested AMIP table 1a and table 2 fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - ! Cycle through the 3-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - - DO m=1,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - print*, 'Calling',m,'varind:',varin3d(m),var3d_ids(m) - call read_3d_input_files(it, varin3d(m), data3d) - - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - call cmor_create_output_path(var3d_ids(m),outputpath) - print*, 'Test Code: we are dumping this varialbe ',var3d_ids(m),'to:',outputpath - mydata = RESHAPE(data3d, (/ lat*lon*lev /)) - if (m.eq.2) then - do i=1,lat*lon*lev - mydata(i)=(mydata(i)-273.15)*9./5.+32. - enddo - endif - print*,'Done converting units for',m - error_flag = cmor_write(var_id = var3d_ids(m), & - data = mydata, & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable, ', var3d_ids(m) -print*, ' error flag = ', error_flag - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 1a ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - call cmor_create_output_path(var2d_ids(m),outputpath) - print*, 'Test Code: we are dumping this varialbe ',var2d_ids(m),'to:',outputpath - - error_flag = cmor_write(var_id = var2d_ids(m), & - data = RESHAPE(data2d, (/ lat*lon /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - -print*, 'after writing variable 2d, ', var2d_ids(m) -print*, ' error flag = ', error_flag - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 2 ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - -print*, '******************************' -print*, ' ' -print*, 'CMOR COMPLETED SUCCESSFULLY ' -print*, ' ' -print*, '******************************' - -END PROGRAM mip_contribution - diff --git a/Test/test_3h.f90 b/Test/test_3h.f90 deleted file mode 100644 index 732883b2dfa4054c85c55e7470cd237e507345c3..0000000000000000000000000000000000000000 --- a/Test/test_3h.f90 +++ /dev/null @@ -1,515 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - plevs = (/100000., 92500., 85000., 70000.,& - 60000., 50000., 40000., 30000., 25000., 20000.,& - 15000., 10000., 7000., 5000., 3000., 2000., 1000. /) - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*3 - time_bnds(1,1) = (it-1)*3. - time_bnds(2,1) = it*3. - - RETURN - END SUBROUTINE read_time - -INCLUDE "reader_2D_3D.f90" - -END MODULE local_subs - - -PROGRAM ipcc_test_code -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev2 = 17 ! number of standard pressure levels - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 3 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ','PRECIP ', 'TSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=10), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'kg m-2 s-1', 'K ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'pr ', 'tas ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - REAL, DIMENSION(lon,lat,lev) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev2) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - REAL, DIMENSION(lev) :: a_coeff - REAL, DIMENSION(lev) :: b_coeff - REAL :: p0 - REAL, DIMENSION(lev+1) :: a_coeff_bnds - REAL, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim, itim1 - double precision bt - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - bt=0. - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace')!,logfile='test_3h.LOG') - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', model_id="GICCM1", & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - ! Define all axes that will be needed - - ilat = cmor_axis( & - table='Tables/CMIP5_3hr', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table='Tables/CMIP5_3hr', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - -!!$ ipres = cmor_axis( & -!!$ table='Tables/CMIP5_3hr', & -!!$ table_entry='pressure', & -!!$ units='Pa', & -!!$ length=lev, & -!!$ coord_vals=plevs) -!!$ - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='Tables/CMIP5_3hr', & - table_entry='time', & - units='hours since 2030-1-1', & - length=ntimes, & - interval='3 hours') - - itim1 = cmor_axis( & - table='Tables/CMIP5_3hr', & - table_entry='time1', & - units='hours since 2030-1-1', & - length=ntimes) -!!$ -!!$ ! define model eta levels (although these must be provided, they will -!!$ ! actually be replaced by a+b before writing the netCDF file) -!!$ zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) -!!$ zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) -!!$ -!!$ ilev = cmor_axis( & -!!$ table='Tables/CMIP5_3hr', & -!!$ table_entry='standard_hybrid_sigma', & -!!$ length=lev, & -!!$ coord_vals=zlevs, & -!!$ cell_bounds=zlev_bnds) -!!$ -!!$ ! define z-factors needed to transform from model level to pressure -!!$ p0 = 1.e5 -!!$ a_coeff = (/ 0.1, 0.2, 0.3, 0.22, 0.1 /) -!!$ b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) -!!$ -!!$ a_coeff_bnds=(/0.,.15, .25, .25, .16, 0./) -!!$ b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) -!!$ -!!$ error_flag = cmor_zfactor( & -!!$ zaxis_id=ilev, & -!!$ zfactor_name='p0', & -!!$ units='Pa', & -!!$ zfactor_values = p0) -!!$ -!!$ error_flag = cmor_zfactor( & -!!$ zaxis_id=ilev, & -!!$ zfactor_name='b', & -!!$ axis_ids= (/ ilev /), & -!!$ zfactor_values = b_coeff, & -!!$ zfactor_bounds = b_coeff_bnds ) -!!$ -!!$ error_flag = cmor_zfactor( & -!!$ zaxis_id=ilev, & -!!$ zfactor_name='a', & -!!$ axis_ids= (/ ilev /), & -!!$ zfactor_values = a_coeff, & -!!$ zfactor_bounds = a_coeff_bnds ) -!!$ -!!$ zfactor_id = cmor_zfactor( & -!!$ zaxis_id=ilev, & -!!$ zfactor_name='ps', & -!!$ axis_ids=(/ ilon, ilat, itim /), & -!!$ units='Pa' ) -!!$ -!!$ ! Define the only field to be written that is a function of model level -!!$ ! (appearing in IPCC table A1c) -!!$ -!!$ var3d_ids(1) = cmor_variable( & -!!$ table='Tables/CMIP5_3hr', & -!!$ table_entry=entry3d(1), & -!!$ units=units3d(1), & -!!$ axis_ids=(/ ilon, ilat, ilev, itim /), & -!!$ missing_value=1.0e28, & -!!$ original_name=varin3d(1)) -!!$ -!!$ ! Define variables appearing in IPCC table A1c that are a function of pressure -!!$ ! (3-d variables) -!!$ -!!$ DO m=2,n3d -!!$ var3d_ids(m) = cmor_variable( & -!!$ table='Tables/CMIP5_3hr', & -!!$ table_entry=entry3d(m), & -!!$ units=units3d(m), & -!!$ axis_ids=(/ ilon, ilat, ipres, itim /), & -!!$ missing_value=1.0e28, & -!!$ original_name=varin3d(m)) -!!$ ENDDO -!!$ - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - print*, m,entry2d(m) - IF (m.ne.3) THEN - print*, 'itim axis ids: ',ilon,ilat,itim - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_3hr', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - - ELSE - print*, 'itim1 axis ids: ',ilon,ilat,itim1 - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_3hr', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim1 /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - - END IF - - ENDDO - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - -!!$ call read_3d_input_files(it, varin3d(1), data3d) -!!$ -!!$ error_flag = cmor_write( & -!!$ var_id = var3d_ids(1), & -!!$ data = data3d, & -!!$ ntimes_passed = 1, & -!!$ time_vals = time, & -!!$ time_bnds = bnds_time ) -!!$ -!!$ call read_2d_input_files(it, varin2d(4), data2d) -!!$ -!!$ error_flag = cmor_write( & -!!$ var_id = zfactor_id, & -!!$ data = data2d, & -!!$ ntimes_passed = 1, & -!!$ time_vals = time, & -!!$ time_bnds = bnds_time, & -!!$ store_with = var3d_ids(1) ) - - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - -!!$ DO m=2,n3d -!!$ -!!$ ! The user must write the code that fills the arrays of data -!!$ ! that will be passed to CMOR. The following line is simply a -!!$ ! a place-holder for the user's code, which should replace it. -!!$ -!!$ call read_3d_input_files(it, varin3d(m), data3d) -!!$ -!!$ ! append a single time sample of data for a single field to -!!$ ! the appropriate netCDF file. -!!$ -!!$ error_flag = cmor_write( & -!!$ var_id = var3d_ids(m), & -!!$ data = data3d, & -!!$ ntimes_passed = 1, & -!!$ time_vals = time, & -!!$ time_bnds = bnds_time ) -!!$ -!!$ IF (error_flag < 0) THEN -!!$ ! write diagnostic messages to standard output device -!!$ write(*,*) ' Error encountered writing IPCC Table A1c ' & -!!$ // 'field ', entry3d(m), ', which I call ', varin3d(m) -!!$ write(*,*) ' Was processing time sample: ', time -!!$ -!!$ END IF -!!$ -!!$ END DO -!!$ - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - IF (m.ne.3) THEN - print*, 'Passing times (1):',time - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - ELSE - print*, 'Passing times (2):',time - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 1, & - time_vals = time) - END IF - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM ipcc_test_code - diff --git a/Test/test_any_from_asc.f90 b/Test/test_any_from_asc.f90 deleted file mode 100644 index 32ae8ef782c2aac121cbb938d961f1323ff16067..0000000000000000000000000000000000000000 --- a/Test/test_any_from_asc.f90 +++ /dev/null @@ -1,352 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current,ptimes - integer ndim,i,j,ntot -! real, allocatable, dimension(:,:,:):: arrayin - real, allocatable, dimension(:,:):: arrayin2d - real, allocatable, dimension(:,:,:):: arrayin3d - real, allocatable, dimension(:,:,:,:):: arrayin4d - real, allocatable, dimension(:,:,:,:,:):: arrayin5d - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - character(50) :: var,units - double precision bt - - print*, 'Test Code: Welcome to the general from ascii testing code' - read(5,'(A)') filein - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength,var,units) - allocate(myaxis(ndim)) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - if (ndim.eq.2) then - allocate(arrayin2d(dimlength(1),dimlength(2))) - call read_ascii2d(23,mydims, ndim,ntot,arrayin2d) - print*,'Test Code: allocate data:',shape(arrayin2d) - else if (ndim.eq.3) then - allocate(arrayin3d(dimlength(1),dimlength(2),dimlength(3))) - call read_ascii3d(23,mydims, ndim,ntot,arrayin3d) - print*,'Test Code: allocate data:',shape(arrayin3d) - else if (ndim.eq.4) then - allocate(arrayin4d(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - call read_ascii4d(23,mydims, ndim,ntot,arrayin4d) - print*,'Test Code: allocate data:',shape(arrayin4d) - else if (ndim.eq.5) then - call read_ascii5d(23,mydims, ndim,ntot,arrayin5d) - allocate(arrayin5d(dimlength(1),dimlength(2),dimlength(3),dimlength(4),dimlength(5))) - print*,'Test Code: allocate data:',shape(arrayin5d) - endif - - -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - bt=0. - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)', & - model_id='GICCM1',forcing='Nat', & - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt,& - contact="Freddy Krueger",institute_id="PCMDI" ) - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i - print*, 'Test Code: Axis Name:',trim(adjustl(current%name)) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - ptimes => current - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='1 month') - else - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VAR' - myvar=cmor_variable('Tables/CMIP5_Amon',& - var,& - units,& - myaxis,& - missing_value=1.e20) - - !! figures out length of dimension other than time - - print*, 'Test Code: time before:',ptimes%values(i:i) - if (ndim.eq.2) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin2d(:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin2d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else if (ndim.eq.3) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin3d(:,:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once',ptimes%units,ptimes%values - ierr = cmor_write( & - var_id = myvar, & - data = arrayin3d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else if (ndim.eq.4) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin4d(:,:,:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once',ptimes%units - ierr = cmor_write( & - var_id = myvar, & - data = arrayin4d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin5d(:,:,:,:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin5d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - endif - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength,var,units) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - character(50), intent(inout) :: var,units - read(file_id,'(A)') var - read(file_id,'(A)') units - read(file_id,'(I4)') ndim - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I4)') tmp - dimlength(4-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii2d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - real, dimension(:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((arrayin(j,k),j=1,size(arrayin,1)),k=1,size(arrayin,2)) - end subroutine read_ascii2d - subroutine read_ascii3d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - real, dimension(:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((arrayin(j,k,l),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)) - end subroutine read_ascii3d - subroutine read_ascii4d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - real, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) - end subroutine read_ascii4d - subroutine read_ascii5d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - real, dimension(:,:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m,o - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((((arrayin(j,k,l,m,o),j=1,size(arrayin,1)),& - k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)),& - o=1,size(arrayin,5)) - end subroutine read_ascii5d - - -end program main - diff --git a/Test/test_any_from_asc_d.f90 b/Test/test_any_from_asc_d.f90 deleted file mode 100644 index c5ff055023e926e89c7324251be24fab1b72157a..0000000000000000000000000000000000000000 --- a/Test/test_any_from_asc_d.f90 +++ /dev/null @@ -1,352 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current,ptimes - integer ndim,i,j,ntot -! double precision, allocatable, dimension(:,:,:):: arrayin - double precision, allocatable, dimension(:,:):: arrayin2d - double precision, allocatable, dimension(:,:,:):: arrayin3d - double precision, allocatable, dimension(:,:,:,:):: arrayin4d - double precision, allocatable, dimension(:,:,:,:,:):: arrayin5d - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - character(50) :: var,units - double precision bt - double precision mymissing - bt=0. -mymissing=1.e20; - print*, 'Test Code: Welcome to the general from ascii testing code' - read(5,'(A)') filein - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength,var,units) - allocate(myaxis(ndim)) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - if (ndim.eq.2) then - allocate(arrayin2d(dimlength(1),dimlength(2))) - call read_ascii2d(23,mydims, ndim,ntot,arrayin2d) - print*,'Test Code: allocate data:',shape(arrayin2d) - else if (ndim.eq.3) then - allocate(arrayin3d(dimlength(1),dimlength(2),dimlength(3))) - call read_ascii3d(23,mydims, ndim,ntot,arrayin3d) - print*,'Test Code: allocate data:',shape(arrayin3d) - else if (ndim.eq.4) then - allocate(arrayin4d(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - call read_ascii4d(23,mydims, ndim,ntot,arrayin4d) - print*,'Test Code: allocate data:',shape(arrayin4d) - else if (ndim.eq.5) then - call read_ascii5d(23,mydims, ndim,ntot,arrayin5d) - allocate(arrayin5d(dimlength(1),dimlength(2),dimlength(3),dimlength(4),dimlength(5))) - print*,'Test Code: allocate data:',shape(arrayin5d) - endif - - -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)' , & - model_id = "GICCM1",forcing='TO',contact="Barry Bonds",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt,institute_id="PCMDI") - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i - print*, 'Test Code: Axis Name:',trim(adjustl(current%name)) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - ptimes => current - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='1 month') - else - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VAR' - myvar=cmor_variable('Tables/CMIP5_Amon',& - var,& - units,& - myaxis,& - missing_value=mymissing) - - !! figures out length of dimension other than time - - print*, 'Test Code: time before:',ptimes%values(i:i) - if (ndim.eq.2) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin2d(:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin2d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else if (ndim.eq.3) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin3d(:,:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin3d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else if (ndim.eq.4) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin4d(:,:,:,i:i), & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin4d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin5d, & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin5d(:,:,:,:,i:i), & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - endif - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength,var,units) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - character(50), intent(inout) :: var,units - read(file_id,'(A)') var - read(file_id,'(A)') units - read(file_id,'(I4)') ndim - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I4)') tmp - dimlength(4-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii2d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((arrayin(j,k),j=1,size(arrayin,1)),k=1,size(arrayin,2)) - end subroutine read_ascii2d - subroutine read_ascii3d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((arrayin(j,k,l),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)) - end subroutine read_ascii3d - subroutine read_ascii4d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) - end subroutine read_ascii4d - subroutine read_ascii5d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - double precision, dimension(:,:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m,o - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((((arrayin(j,k,l,m,o),j=1,size(arrayin,1)),& - k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)),& - o=1,size(arrayin,5)) - end subroutine read_ascii5d - - -end program main - diff --git a/Test/test_any_from_asc_i.f90 b/Test/test_any_from_asc_i.f90 deleted file mode 100644 index 1539c1b5aea1fc043f6092b3976b45779bfd634a..0000000000000000000000000000000000000000 --- a/Test/test_any_from_asc_i.f90 +++ /dev/null @@ -1,350 +0,0 @@ -program main - - USE cmor_users_functions - implicit none - - integer ncid - - type dims - integer n - character(256) name - character(256) units - double precision, DIMENSION(:), pointer :: values - double precision, DIMENSION(:,:), pointer :: bounds - type(dims), pointer :: next - end type dims - character(256) filein - type(dims), pointer :: mydims,current,ptimes - integer ndim,i,j,ntot -! integer, allocatable, dimension(:,:,:):: arrayin - integer, allocatable, dimension(:,:):: arrayin2d - integer, allocatable, dimension(:,:,:):: arrayin3d - integer, allocatable, dimension(:,:,:,:):: arrayin4d - integer, allocatable, dimension(:,:,:,:,:):: arrayin5d - integer, dimension(7):: dimlength = (/ (1,i=1,7) /) - integer, PARAMETER::verbosity = 2 - integer ierr - integer, allocatable, dimension(:) :: myaxis - integer myvar - character(50) :: var,units - double precision bt - bt = 0. - print*, 'Test Code: Welcome to the general from ascii testing code' - read(5,'(A)') filein - open(unit=23,file=filein,form='formatted') - call allocate_dims(23,mydims,ndim,dimlength,var,units) - allocate(myaxis(ndim)) - current=>mydims - ntot=1 - do i =1,ndim - ntot=ntot*current%n - current=>current%next - enddo - if (ndim.eq.2) then - allocate(arrayin2d(dimlength(1),dimlength(2))) - call read_ascii2d(23,mydims, ndim,ntot,arrayin2d) - print*,'Test Code: allocate data:',shape(arrayin2d) - else if (ndim.eq.3) then - allocate(arrayin3d(dimlength(1),dimlength(2),dimlength(3))) - call read_ascii3d(23,mydims, ndim,ntot,arrayin3d) - print*,'Test Code: allocate data:',shape(arrayin3d) - else if (ndim.eq.4) then - allocate(arrayin4d(dimlength(1),dimlength(2),dimlength(3),dimlength(4))) - call read_ascii4d(23,mydims, ndim,ntot,arrayin4d) - print*,'Test Code: allocate data:',shape(arrayin4d) - else if (ndim.eq.5) then - call read_ascii5d(23,mydims, ndim,ntot,arrayin5d) - allocate(arrayin5d(dimlength(1),dimlength(2),dimlength(3),dimlength(4),dimlength(5))) - print*,'Test Code: allocate data:',shape(arrayin5d) - endif - - -!!$!! Ok here is the part where we define or variable/axis,etc... -!!$!! Assuming that Karl's code is ok... -!!$ - - print*,'Test Code: CMOR SETUP' -!!$ - ierr = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - print*,'Test Code: CMOR DATASET' - ierr = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='noleap', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)', & - model_id = "GICCM1", forcing='TO',contact="Barry Bonds",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt,institute_id="PCMDI") - - current=>mydims - do i = 0,ndim-1 - print*,'Test Code: CMOR AXIS',i - print*, 'Test Code: Axis Name:',trim(adjustl(current%name)) - if (trim(adjustl(current%name)).eq.'time') then - print*, 'Test Code: time found' - ptimes => current - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& -!!$ coord_vals=current%values,& -!!$ cell_bounds=current%bounds, & - interval='1 month') - else - myaxis(ndim-i)=cmor_axis('Tables/CMIP5_Amon', & - table_entry=current%name,& - units=current%units,& - length=current%n,& - coord_vals=current%values,& - cell_bounds=current%bounds) - print*, 'Test Code: not time' - endif - current=>current%next - enddo - - print*,'Test Code: CMOR VAR',var,units - myvar=cmor_variable('Tables/CMIP5_Amon',& - var,& - units,& - myaxis,& - missing_value=120) - - !! figures out length of dimension other than time - - print*, 'Test Code: time before:',ptimes%values(i:i) - if (ndim.eq.2) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin2d, & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin2d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else if (ndim.eq.3) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin3d, & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin3d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else if (ndim.eq.4) then - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin4d, & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin4d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - else - if (ptimes%name.eq.mydims%name) then - do i=1,ptimes%n - print*, 'Test code: Write time',i,ptimes%values(i) - ierr = cmor_write( & - var_id = myvar, & - data = arrayin5d, & - ntimes_passed = 1, & - time_vals = (/ptimes%values(i)/), & - time_bnds = RESHAPE (ptimes%bounds(1:2,i), (/2,1/)) & - ) - enddo - else - print*, 'Test code: Write all times at once' - ierr = cmor_write( & - var_id = myvar, & - data = arrayin5d, & - ntimes_passed = ptimes%n, & - time_vals = ptimes%values, & - time_bnds = ptimes%bounds & - ) - endif - endif - ierr = cmor_close() - -contains - subroutine allocate_dims(file_id,mydims,ndim,dimlength,var,units) - implicit none - integer i,n,j,tmp,file_id - integer, intent(inout)::ndim - integer, intent(inout):: dimlength(7) - type(dims) , pointer :: tmpdims,mydims - character(50), intent(inout) :: var,units - read(file_id,'(A)') var - read(file_id,'(A)') units - read(file_id,'(I4)') ndim - n=1 - allocate(mydims) - tmpdims=>mydims - do i = 1, ndim - read(file_id,'(I4)') tmp - dimlength(4-i)=tmp - allocate(tmpdims%values(tmp)) - allocate(tmpdims%bounds(2,tmp)) - tmpdims%n=tmp - allocate(tmpdims%next) - tmpdims=>tmpdims%next - n=n*tmp - enddo - deallocate(tmpdims) - end subroutine allocate_dims - - subroutine read_ascii2d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - integer, dimension(:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((arrayin(j,k),j=1,size(arrayin,1)),k=1,size(arrayin,2)) - end subroutine read_ascii2d - subroutine read_ascii3d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - integer, dimension(:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((arrayin(j,k,l),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)) - end subroutine read_ascii3d - subroutine read_ascii4d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - integer, dimension(:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) ((((arrayin(j,k,l,m),j=1,size(arrayin,1)),k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)) - end subroutine read_ascii4d - subroutine read_ascii5d(file_unit,mydims,ndim,ntot,arrayin) - implicit none - type(dims), pointer:: mydims - integer, dimension(:,:,:,:,:),intent(inout) :: arrayin - type(dims), pointer :: current - integer, intent(in)::ndim,file_unit - integer n,ntot,i,j,k,l,m,o - - current=>mydims - ntot=1 - do i =1,ndim - n=current%n - ntot=ntot*n - read(file_unit,'(A)') current%name - print*, 'Test Code: NAME is:',current%name - read(file_unit,'(A)') current%units - print*, 'Test Code: UNITS is:',current%units - read(file_unit,*) (current%values(j),j=1,n) - read(file_unit,*) ((current%bounds(j,k),j=1,2),k=1,n) - print*, 'Test Code: bounds',current%bounds(1,1),current%bounds(1,2) - current=>current%next - enddo - read(file_unit,*) (((((arrayin(j,k,l,m,o),j=1,size(arrayin,1)),& - k=1,size(arrayin,2)),l=1,size(arrayin,3)),m=1,size(arrayin,4)),& - o=1,size(arrayin,5)) - end subroutine read_ascii5d - - -end program main - diff --git a/Test/test_checker_works.py b/Test/test_checker_works.py deleted file mode 100644 index cf217caf50131652023d01e5d6a56b3784aae449..0000000000000000000000000000000000000000 --- a/Test/test_checker_works.py +++ /dev/null @@ -1,1767 +0,0 @@ -#### -# This is trying to test all that cmor_checker catches all the possible failures -### - -import sys -import cmor -import shutil -import os -import cdms2 -cdms2.setNetcdfShuffleFlag(0) -cdms2.setNetcdfDeflateFlag(0) -cdms2.setNetcdfDeflateLevelFlag(0) - -fo = sys.stdout - -if fo != sys.stdout: - fo=open(fo,"w") - -# First of all run the Test script that generates the "good" file -#execfile("Test/test_python_joerg_3.py") - -file = 'Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc' - - -cmor.checkCMOR(fo,file,"Tables/CMIP5_6hrLev") - - -## #Ok at this point we are going to test failures to make sure it actually checks for each things -## # Ok testing the DRS - -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmos/hus/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## print 'Testing DRS' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmos/huhs/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## try: -## os.makedirs(os.path.split(F)[0]) -## except: -## pass -## shutil.copy(file,F) -## print 'Testing DRS' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmfos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## try: -## os.makedirs(os.path.split(F)[0]) -## except: -## pass -## shutil.copy(file,F) -## print 'Testing DRS' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/16hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## try: -## os.makedirs(os.path.split(F)[0]) -## except: -## pass -## shutil.copy(file,F) -## print 'Testing DRS' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolfdc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## try: -## os.makedirs(os.path.split(F)[0]) -## except: -## pass -## shutil.copy(file,F) -## print 'Testing DRS' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10b/noVolc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## try: -## os.makedirs(os.path.split(F)[0]) -## except: -## pass -## shutil.copy(file,F) -## print 'Testing DRS' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## try: -## F="Test/CMIP5/output/INSTITUTEd_ID/pcmdi-10a/noVolc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## try: -## os.makedirs(os.path.split(F)[0]) -## except: -## pass -## shutil.copy(file,F) -## print 'Testing DRS' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## try: -## F="Test/CMIP5/outputt/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## try: -## os.makedirs(os.path.split(F)[0]) -## except: -## pass -## shutil.copy(file,F) -## print 'Testing DRS' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## try: -## F="Test/CMIpP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## try: -## os.makedirs(os.path.split(F)[0]) -## except: -## pass -## shutil.copy(file,F) -## print 'Testing DRS' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) - - -## try: -## F="Test/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## try: -## os.makedirs(os.path.split(F)[0]) -## except: -## pass -## shutil.copy(file,F) -## print 'Testing DRS' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## try: -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## try: -## os.makedirs(os.path.split(F)[0]) -## except: -## pass -## shutil.copy(file,F) -## print 'Testing DRS' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## #The following should pass, DRS test turned off -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## try: -## os.makedirs(os.path.split(F)[0]) -## except: -## pass -## shutil.copy(file,F) -## print 'No Testing DRS' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## os.remove(F) - -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_20f10010100-2010010218.nc" -## shutil.copy(file,F) -## print 'Testing DRS wrong date' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_20100g10100-2010010218.nc" -## shutil.copy(file,F) -## print 'Testing DRS wrong date' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010g100-2010010218.nc" -## shutil.copy(file,F) -## print 'Testing DRS wrong date' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_201001010g0-2010010218.nc" -## shutil.copy(file,F) -## print 'Testing DRS wrong date' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2f01001041 8.nc" -## shutil.copy(file,F) -## print 'Testing DRS wrong date' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010h010218.nc" -## shutil.copy(file,F) -## print 'Testing DRS wrong date' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010h418.nc" -## shutil.copy(file,F) -## print 'Testing DRS wrong date' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## F="Test/CMIP5/output/INSTITUTE_ID/pcmdi-10a/noVolc2000/6hr/atmos/hus/r1i1p1/hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-201001041g8.nc" -## shutil.copy(file,F) -## print 'Testing DRS wrong date' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev") -## raise "DRS Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## try: -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## f=cdms2.open(F,"a") -## h=f("hus") -## f.write(h,id='hur') -## f.close() -## print 'Testing many vars' -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise "Too man vars Check failed!" -## except cmor.check_CMOR_compliant.CMORError,err: -## print 'Failed with CMOR error as expected:',err -## pass -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## gbl = ['branch_time','contact','Conventions','creation_date','experiment','experiment_id','forcing','frequency','initialization_method','institute_id','institution','model_id','modeling_realm','parent_experiment_id','physics_version','product','project_id','realization','source','table_id','tracking_id'] -## for gatt in gbl: -## try: -## print 'Testing no %s global att' % (gatt) -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## fglb=False -## for l in fi.xreadlines(): -## if l.find("// global attributes")>-1: -## fglb = True -## if fglb is False: -## f.write(l) -## elif l.find(":%s" % gatt)==-1: -## f.write(l) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"No global attribute %s test failed" % (gatt) -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("File must have global attribute: %s" % (gatt))>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of global attribute %s failed for the wrong reason! %s" % (gatt,err) -## except Exception,err: -## raise Exception,err -## os.remove(F) - -# test validity of Creation Time -## try: -## gatt = "creation_date" -## print 'Testing Validity of %s' % (gatt) -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## fglb=False -## for l in fi.xreadlines(): -## if l.find("// global attributes")>-1: -## fglb = True -## if fglb is False: -## f.write(l) -## elif l.find(":%s" % gatt)==-1: -## f.write(l) -## else: -## f.write(l.strip()[:-3]+'blabla" ;\n') -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## print 'Did we get here?' -## raise Exception,"wrong global attribute %s test failed" % (gatt) -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("Creation Date must be in format: %Y-%m-%dT%H:%M:%SZ yours is")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of global attribute %s failed for the wrong reason! %s" % (gatt,err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## gatt = "branch_time" -## print 'Testing Validity of %s' % (gatt) -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## fglb=False -## for l in fi.xreadlines(): -## if l.find("// global attributes")>-1: -## fglb = True -## if fglb is False: -## f.write(l) -## elif l.find(":%s" % gatt)==-1: -## f.write(l) -## else: -## f.write(l.strip()[:-4]+'"blabla" ;\n') -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong global attribute %s test failed" % (gatt) -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("branch_time must be convertible to float, you have")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of global attribute %s failed for the wrong reason! %s" % (gatt,err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## gatt = "branch_time" -## print 'Testing Validity of %s' % (gatt) -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## fglb=False -## for l in fi.xreadlines(): -## if l.find("// global attributes")>-1: -## fglb = True -## if fglb is False: -## f.write(l) -## elif l.find(":%s" % gatt)==-1: -## f.write(l) -## else: -## f.write(l.strip()[:-4]+'1. ;\n') -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong global attribute %s test failed" % (gatt) -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("if global attribute parent_experiment_id is N/A then branch_time must be 0., you have")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of global attribute %s failed for the wrong reason! %s" % (gatt,err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## gatt = "experiment_id" -## print 'Testing Validity of %s' % (gatt) -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## fglb=False -## for l in fi.xreadlines(): -## if l.find("// global attributes")>-1: -## fglb = True -## if fglb is False: -## f.write(l) -## elif l.find(":%s" % gatt)==-1: -## f.write(l) -## else: -## f.write(l.strip()[:-3]+'x" ;\n') -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong global attribute %s test failed" % (gatt) -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("experiment_id file attribute must be one of")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of global attribute %s failed for the wrong reason! %s" % (gatt,err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## gatt = "experiment" -## print 'Testing Validity of %s' % (gatt) -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## fglb=False -## for l in fi.xreadlines(): -## if l.find("// global attributes")>-1: -## fglb = True -## if fglb is False: -## f.write(l) -## elif l.find(":%s" % gatt)==-1: -## f.write(l) -## else: -## f.write(l.strip()[:-3]+'x" ;\n') -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong global attribute %s test failed" % (gatt) -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("experiment file attribute must be one of")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of global attribute %s failed for the wrong reason! %s" % (gatt,err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## gatt = "forcing" -## print 'Testing Validity of %s' % (gatt) -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## fglb=False -## for l in fi.xreadlines(): -## if l.find("// global attributes")>-1: -## fglb = True -## if fglb is False: -## f.write(l) -## elif l.find(":%s" % gatt)==-1: -## f.write(l) -## else: -## f.write(l.strip()[:-3]+'x" ;\n') -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong global attribute %s test failed" % (gatt) -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("file attribute forcing must be a comma separated list with values in")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of global attribute %s failed for the wrong reason! %s" % (gatt,err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## gatt = "frequency" -## print 'Testing Validity of %s' % (gatt) -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## fglb=False -## for l in fi.xreadlines(): -## if l.find("// global attributes")>-1: -## fglb = True -## if fglb is False: -## f.write(l) -## elif l.find(":%s" % gatt)==-1: -## f.write(l) -## else: -## f.write(l.strip()[:-6]+'moyn" ;\n') -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong global attribute %s test failed" % (gatt) -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("frequency must be one")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of global attribute %s failed for the wrong reason! %s" % (gatt,err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## gatt = "frequency" -## print 'Testing Validity of %s' % (gatt) -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## fglb=False -## for l in fi.xreadlines(): -## if l.find("// global attributes")>-1: -## fglb = True -## if fglb is False: -## f.write(l) -## elif l.find(":%s" % gatt)==-1: -## f.write(l) -## else: -## f.write(l.strip()[:-6]+'mon" ;\n') -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong global attribute %s test failed" % (gatt) -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("your file name indicates a frequency of ")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of global attribute %s failed for the wrong reason! %s" % (gatt,err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## gatt = "parent_experiment_id" -## print 'Testing Validity of %s' % (gatt) -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## fglb=False -## for l in fi.xreadlines(): -## if l.find("// global attributes")>-1: -## fglb = True -## if fglb is False: -## f.write(l) -## elif l.find(":%s" % gatt)==-1: -## f.write(l) -## else: -## f.write(l.strip()[:-3]+'bla" ;\n') -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong global attribute %s test failed" % (gatt) -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("parent_experiment_id file attribute must be one of")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of global attribute %s failed for the wrong reason! %s" % (gatt,err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## gatt = "parent_experiment_id" -## print 'Testing Validity of %s' % (gatt) -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## fglb=False -## for l in fi.xreadlines(): -## if l.find("// global attributes")>-1: -## fglb = True -## if fglb is False: -## f.write(l) -## elif l.find(":%s" % gatt)==-1: -## f.write(l) -## else: -## f.write(l.strip()[:-6]+'noVolc2000" ;\n') -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong global attribute %s test failed" % (gatt) -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("parent_experiment_id and experiment_id cannot be the same")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of global attribute %s failed for the wrong reason! %s" % (gatt,err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## gatt = "project_id" -## print 'Testing Validity of %s' % (gatt) -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## fglb=False -## for l in fi.xreadlines(): -## if l.find("// global attributes")>-1: -## fglb = True -## if fglb is False: -## f.write(l) -## elif l.find(":%s" % gatt)==-1: -## f.write(l) -## else: -## f.write(l.strip()[:-3]+'0" ;\n') -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong global attribute %s test failed" % (gatt) -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("project_id must be ")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of global attribute %s failed for the wrong reason! %s" % (gatt,err) -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## try: -## print 'Testing Validity of variable type' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for l in fi.xreadlines(): -## if l.find("float hus(time")>-1: -## f.write(l.replace("float","double")) -## fglb = True -## else: -## f.write(l) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong variable type test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("variable typecode must be ")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing Validity of coordinate type' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for l in fi.xreadlines(): -## if l.find("double lon(")>-1: -## f.write(l.replace("double","float")) -## fglb = True -## else: -## f.write(l) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong coord type test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("required typecode")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing Validity of coordinate type' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for l in fi.xreadlines(): -## if l.find("double ap(")>-1: -## f.write(l.replace("double","float")) -## fglb = True -## else: -## f.write(l) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong coord type test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("variable typecode")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing Validity of coordinate name' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for l in fi.xreadlines(): -## if l.find("lat")>-1: -## if l.find('"latitude"')>-1: -## f.write(l.replace("lat","latitude",1)) -## else: -## f.write(l.replace("lat","latitude")) -## else: -## f.write(l) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong coord name test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("Axis name latitude is not valid")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing Validity of coordinate units' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for l in fi.xreadlines(): -## if l.find("lev:units")>-1: -## f.write(l.replace("1","%")) -## else: -## f.write(l) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong coord units test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find("are not the required units")>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## import cdms2 -## print 'Testing Validity of time units' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## f=cdms2.open(F,"r+") -## t=f['hus'].getTime() -## t.toRelativeTime("seconds since 2010") -## f.close() -## f=open("Tables/CMIP5_6hrLev") -## fot=open("tmp_table.txt","w") -## for ln in f.xreadlines(): -## if ln.find("approx_in")>-1: -## fot.write(ln.replace("0.25","21600.")) -## else: -## fot.write(ln) -## fot.close() -## cmor.checkCMOR(fo,F,"tmp_table.txt",dodrs=False) -## os.remove("tmp_table.txt") -## raise Exception,"wrong time units test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('Time units must be in "days since')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) - - -## data = """time_bnds = -## -0.125, 0.125, -## 0.125, 0.375, -## 0.375, 0.625, -## 0.625, 0.875, -## 0.875, 1.125, -## 1.125, 1.375, -## 1.375, 1.625, -## 1.625, 1.875 ;""" -## data2 = """time_bnds = -## -0.1251, 0.1251, -## 0.1251, 0.3751, -## 0.3751, 0.6251, -## 0.6251, 0.8751, -## 0.8751, 1.1251, -## 1.1251, 1.3751, -## 1.3751, 1.6251, -## 1.6251, 1.8751 ;""" -## try: -## import cdms2 -## print 'Testing time is mean of bounds' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## f.write(fi.read().replace(data,data2)) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"time is avg of bounds test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('Time units must be in "days since')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## data = """ time_bnds = -## -0.125, 0.125, -## 0.125, 0.375, -## 0.375, 0.625, -## 0.625, 0.875, -## 0.875, 1.125, -## 1.125, 1.375, -## 1.375, 1.625, -## 1.625, 1.875 ;""" -## try: -## import cdms2 -## print 'Testing lack of bounds' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## s=fi.read() -## fi.close() -## fi=open("crap.txt",'w') -## fi.write(s.replace(data,"")) -## fi.close() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("time:bounds")>-1: -## continue -## if ln.find("double time_bnds")>-1: -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"lack of bounds test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('attribute bounds is required for axis')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## data = """ time_bnds = -## -0.125, 0.125, -## 0.125, 0.375, -## 0.375, 0.625, -## 0.625, 0.875, -## 0.875, 1.125, -## 1.125, 1.375, -## 1.375, 1.625, -## 1.625, 1.875 ;""" -## try: -## import cdms2 -## print 'Testing lack of bounds' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## s=fi.read() -## fi.close() -## fi=open("crap.txt",'w') -## fi.write(s.replace(data,"")) -## fi.close() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("time:bounds")>-1: -## continue -## if ln.find("double time_bnds")>-1: -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"lack of bounds test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('attribute bounds is required for axis')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## data="""double ap(lev) ;""" -## n=567 -## data=data[:15] -## data2=""" ap = 0.1, 0.2, 0.3, 0.22, 0.1 ; - -## b = 0, 0.1, 0.2, 0.5, 0.8 ; - -## ps =""" - -## data3=""" ap_bnds = -## 0, 0.15, -## 0.15, 0.25, -## 0.25, 0.25, -## 0.25, 0.16, -## 0.16, 0 ; - -## b_bnds = -## 0, 0.05, -## 0.05, 0.15, -## 0.15, 0.35, -## 0.35, 0.65, -## 0.65, 1 ; -## """ -## try: -## import cdms2 -## print 'Testing lack of formulaterms' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## s=fi.read() -## fi.close() -## print 'orig:',len(s) -## i=s.find(data) -## print 'i,n:',i,n -## s=s[:i]+s[i+n:] -## s=s.replace(data2,"") -## s=s.replace(data3,"") -## print 'end:',len(s) -## fi=open("crap.txt",'w') -## fi.write(s) -## fi.close() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("formula")>-1: -## continue -## if ln.find("1013")>-1: -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"lack of formula_terms test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('attribute formula_terms is required for axis')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing wrong names on zfactors axis for hybrid' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("ap")>-1: -## tmp=ln.replace("ap","ap2") -## if tmp.find("formula_term")>-1: tmp=tmp.replace("ap2:","ap:") -## tmp=tmp.replace("ap2_bnds","ap_bnds") -## f.write(tmp) -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"lack of formula_terms test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('formula should be')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing wrong names on stabdard_name axis for hybrid' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## ln=ln.replace("atmosphere_hybrid_sigma_pressure_coordinate","atmosphere_ln_pressure_coordinate") -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"lack of formula_terms test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('axis attribute formula should be')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## for anm in ['lon','lat','lev','time']: - ## try: - ## print 'Testing axis attribute' - ## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" - ## shutil.copy(file,F) - ## os.popen("ncdump %s > crap.txt"%F).readlines() - ## fi=open("crap.txt") - ## f=open("crapo.txt","w") - ## for ln in fi.xreadlines(): - ## if ln.find("%s:axis"%anm)>-1: - ## continue - ## f.write(ln) - ## f.close() - ## fi.close() - ## os.remove(F) - ## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() - ## os.remove("crap.txt") - ## os.remove("crapo.txt") - ## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) - ## raise Exception,"no axis attribute test failed" - ## except cmor.check_CMOR_compliant.CMORError,err: - ## if str(err).find('axis must have associated axis attribute')>-1: - ## print 'Failed with CMOR error as expected:',err - ## pass - ## else: - ## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) - ## except Exception,err: - ## raise Exception,err - ## os.remove(F) -## try: -## print 'Testing calendar attribute' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("time:calendar")>-1: -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"no calendar attribute test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('calendar attribute must be defined')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing wrong calendar attribute' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("time:calendar")>-1: -## f.write('time:calendar = "mayan" ;') -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"no calendar attribute test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('calendar must be one of')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing wrong variable datatype' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("float hus")>-1: -## f.write(ln.replace("float hus","double hus")) -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong var typecode test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('variable typecode must be')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing wrong variable name' -## F="HUS_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("hus")>-1: -## f.write(ln.replace("hus","HUS")) -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong var name test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('does not start with standard CMIP5 variable name ')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing wrong variable name' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("hus")>-1: -## f.write(ln.replace("hus","tas")) -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong var name test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('Your file name says it contains variable')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing wrong variable units' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("hus:units")>-1: -## f.write(' hus:units = "%" ;\n') -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong var name test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('do not match IPCC units')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing wrong dim ordering' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("float hus(time, lev, lat, lon)")>-1: -## f.write(ln.replace("lat, lon","lon, lat")) -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong var ordering test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('in ordering for dimension')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) - -## data = """ lon = 2, 6, 10, 14, 18, 22, 26, 30, 34, 38, 42, 46, 50, 54, 58, 62, 66, 70, -## 74, 78, 82, 86, 90, 94, 98, 102, 106, 110, 114, 118, 122, 126, 130, 134, -## 138, 142, 146, 150, 154, 158, 162, 166, 170, 174, 178, 182, 186, 190, -## 194, 198, 202, 206, 210, 214, 218, 222, 226, 230, 234, 238, 242, 246, -## 250, 254, 258, 262, 266, 270, 274, 278, 282, 286, 290, 294, 298, 302, -## 306, 310, 314, 318, 322, 326, 330, 334, 338, 342, 346, 350, 354, 358 ;""" -## datanew = """ lon = """+"""358, 354, 350, 346, 342, 338, 334, 330, 326, 322, 318, 314, 310, 306, 302, 298, 294, 290, 286, 282, 278, 274, 270, 266, 262, 258, 254, 250, 246, 242, 238, 234, 230, 226, 222, 218, 214, 210, 206, 202, 198, 194, 190, 186, 182, 178, 174, 170, 166, 162, 158, 154, 150, 146, 142, 138, 134, 130, 126, 122, 118, 114, 110, 106, 102, 98, 94, 90, 86, 82, 78, 74, 70, 66, 62, 58, 54, 50, 46, 42, 38, 34, 30, 26, 22, 18, 14, 10, 6, 2 ;""" -## try: -## print 'Testing wrong dim ordering' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## s=fi.read() -## fi.close() -## fi=open("crap.txt","w") -## fi.write(s.replace(data,datanew)) -## fi.close() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong var ordering test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('axis values for lon must be stored:increasingly')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing wrong dim ordering' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("lon = 2, 6, 10"): -## f.write(ln.replace("lon = 2, 6, 10","lon = -2, 6, 10")) -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong var ordering test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('first longitude must be >= 0 degrees_east')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## data = """ lat = -88, -84, -80, -76, -72, -68, -64, -60, -56, -52, -48, -44, -40, -36, -## -32, -28, -24, -20, -16, -12, -8, -4, 0, 4, 8, 12, 16, 20, 24, 28, 32, -## 36, 40, 44, 48, 52, 56, 60, 64, 68, 72, 76, 80, 84, 88 ;""" -## datanew = """ lat = """+"""88, 84, 80, 76, 72, 68, 64, 60, 56, 52, 48, 44, 40, 36, -## 32, 28, 24, 20, 16, 12, 8, 4, 0, -4, -8, -12, -16, -20, -24, -28, -32, -## -36, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88 ;""" -## try: -## print 'Testing wrong dim ordering' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## s=fi.read() -## fi.close() -## fi=open("crap.txt","w") -## fi.write(s.replace(data,datanew)) -## fi.close() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong var ordering test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('axis values for lat must be stored:increasingly')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## data = """ time = 0, 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75 ;""" -## datanew = """ time = 0, -0.25, -0.5, -0.75, -1, -1.25, -1.5, -1.75 ;""" - -## try: -## print 'Testing wrong dim ordering' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2009123018.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## s=fi.read() -## fi.close() -## fi=open("crap.txt","w") -## fi.write(s.replace(data,datanew)) -## fi.close() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong var ordering test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('axis values for time must be stored:increasingly')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing fill and miss values different ordering' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("hus:mis")>-1: -## f.write(" hus:missing_value = 1.e+30f ;\n") -## continue -## elif ln.find("hus:_F")>-1: -## f.write(" hus:_FillValue = 1.e+20f ;\n") -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong var ordering test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('missing_value and _FillValue attributes are different')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing fill and miss values different ordering' -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("hus:mis")>-1: -## f.write(" hus:missing_value = 1.e+30f ;\n") -## continue -## elif ln.find("hus:_F")>-1: -## f.write(" hus:_FillValue = 1.e+30f ;\n") -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"wrong var ordering test failed" -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('missing_value and _FillValue must be set to 1.e20f')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## for att in ['associated_files','cell_measures','long_name','standard_name','units']: -## try: -## print 'Testing required var att %s' % att -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("hus:%s"%att)>-1: -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"missing var att %s test failed" % att -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('Attribute %s is required but not set for var hus' % att)>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## att = 'associated_files' -## try: -## print 'Testing wrong var att %s' % att -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("hus:%s"%att)>-1: -## f.write(' hus:%s = "blabla" ; \n' % att) -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"missing var att %s test failed" % att -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('associated_files attributes must contain a baseURL')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -## try: -## print 'Testing wrong var att %s' % att -## F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" -## shutil.copy(file,F) -## os.popen("ncdump %s > crap.txt"%F).readlines() -## fi=open("crap.txt") -## f=open("crapo.txt","w") -## for ln in fi.xreadlines(): -## if ln.find("hus:%s"%att)>-1: -## f.write(' hus:associated_files = "baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation gridspecFile: gridspec_fx_pcmdi-10a_noVolc2000_r0i0p0.nc cellAreaFile: areacellla_fx_pcmdi-10a_noVolc2000_r0i0p0.nc" ;') -## continue -## f.write(ln) -## f.close() -## fi.close() -## os.remove(F) -## os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() -## os.remove("crap.txt") -## os.remove("crapo.txt") -## cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) -## raise Exception,"missing var att %s test failed" % att -## except cmor.check_CMOR_compliant.CMORError,err: -## if str(err).find('associated files should point to file containing: areacella')>-1: -## print 'Failed with CMOR error as expected:',err -## pass -## else: -## raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -## except Exception,err: -## raise Exception,err -## os.remove(F) -att="cell_measures" -try: - print 'Testing wrong var att %s' % att - F="hus_6hrLev_pcmdi-10a_noVolc2000_r1i1p1_2010010100-2010010218.nc" - shutil.copy(file,F) - os.popen("ncdump %s > crap.txt"%F).readlines() - fi=open("crap.txt") - f=open("crapo.txt","w") - for ln in fi.xreadlines(): - if ln.find("hus:%s"%att)>-1: - f.write(' hus:%s = "area: cl" ;' % att) - continue - f.write(ln) - f.close() - fi.close() - os.remove(F) - os.popen("ncgen -b -o %s crapo.txt" % (F)).readlines() - os.remove("crap.txt") - os.remove("crapo.txt") - cmor.checkCMOR(fo,F,"Tables/CMIP5_6hrLev",dodrs=False) - raise Exception,"missing var att %s test failed" % att -except cmor.check_CMOR_compliant.CMORError,err: - if str(err).find('variable attribute cell_measures should be')>-1: - print 'Failed with CMOR error as expected:',err - pass - else: - raise Exception,"Checker of variable type failed for the wrong reason! %s" % (err) -except Exception,err: - raise Exception,err -os.remove(F) - - - - - diff --git a/Test/test_cmor_grid_alejandro.f90 b/Test/test_cmor_grid_alejandro.f90 deleted file mode 100644 index 600261bc5a3b6cd733ac1b481512f0017964cb75..0000000000000000000000000000000000000000 --- a/Test/test_cmor_grid_alejandro.f90 +++ /dev/null @@ -1,167 +0,0 @@ -PROGRAM test_cmor_grid - USE cmor_users_functions - - IMPLICIT NONE - - INTEGER, PARAMETER :: n_sections = 3 - INTEGER, PARAMETER :: n_points = 10 - INTEGER, PARAMETER :: n_lev = 4 - real, parameter :: R_UNDEF = -1.0E+30 - INTEGER :: i, j, k, var_id,option -! REAL :: x(n_lev,n_points,n_sections) - REAL :: x(n_points,n_sections,n_lev) - real :: z_ax(n_lev),z_bounds(2,n_points) - double precision :: profile_ax(n_points),section_ax(n_sections) - real :: lat(n_points,n_sections),lon(n_points,n_sections) - real :: lat_bounds(4,n_points,n_sections),lon_bounds(4,n_points,n_sections) - character(len=128) :: table='Test/CMIP5_cf3hr.txt' - character(len=32) :: sec_units='days since 2000-01-01' - integer :: error_flag,height_axid,time_axid,profile_axid,grid_id,section_axid - real :: lat_step,lon_step - integer latvar_id,lonvar_id - integer blatvar_id,blonvar_id - - print *, 'Option (0,1,other)?' - read(*,*) option - - if (option == 0) then ! 1D grid, no time dimension - table='Test/CMIP5_cf3hr_0.txt' - sec_units='1' - endif - if (option == 1) then ! 1D grid, section as time dimension - table='Test/CMIP5_cf3hr_1.txt' - sec_units='days since 2000-01-01' - endif - - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Fill in variables with some data - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - do k=1,n_sections - do j=1,n_points - do i=1,n_lev - x(j,k,i) = k*1000000 + 1000*j + i - enddo - enddo - enddo - - ! Values for section axis - do i=1,n_sections - section_ax(i) = float(i) - enddo - - ! Values for profile axis - do i=1,n_points - profile_ax(i) = float(i) - enddo - - ! Height of vertical levels - do i=1,n_lev - z_ax(i) = 240.0 + 480.0*(i-1) - z_bounds(1,i) = z_ax(i) - 240.0 - z_bounds(2,i) = z_ax(i) + 240.0 - enddo - - lat_step = 180.0/(n_points+2) - lon_step = 360.0/(n_points+2) - do i=1,n_points - lat(i,:) = -90.0 + lat_step*0.5 + lat_step*i - lon(i,:) = 0.0 + lon_step*0.5 + lon_step*i - lat_bounds(1,i,:) = lat(i,:) - lat_step*0.5 - lat_bounds(2,i,:) = lat(i,:) - lat_step*0.5 - lat_bounds(3,i,:) = lat(i,:) + lat_step*0.5 - lat_bounds(4,i,:) = lat(i,:) + lat_step*0.5 - lon_bounds(1,i,:) = lon(i,:) - lon_step*0.5 - lon_bounds(2,i,:) = lon(i,:) + lon_step*0.5 - lon_bounds(3,i,:) = lon(i,:) - lon_step*0.5 - lon_bounds(4,i,:) = lon(i,:) + lon_step*0.5 - enddo - - - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Specify path for tables and set up other CMOR options - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - error_flag = cmor_setup(inpath='./',netcdf_file_action="replace",create_subdirectories=0) - - print *, '---------------Define dataset' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Define dataset as output from COSP, and other model details - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - error_flag = cmor_dataset(outpath='Test/',experiment_id='AMIP',institution='Met Office', & - source='GICCM1 2002 source',calendar='360_day',realization=1,contact='alejandro.bodas@metoffice.gov.uk', & - history='history',comment='En un lugar de la Mancha de cuyo nombre no quiero acordarme', & - references='references',forcing="CH4",& - institute_id="PCMDI",model_id="GICCM1") - - print *, '---------------Define axis' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Define axis - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - profile_axid = cmor_axis(table=table, table_entry='location', units='1', & - length=n_points, coord_vals=profile_ax) - height_axid = cmor_axis(table=table, table_entry='height40', units='m', & - length=n_lev, coord_vals=z_ax,cell_bounds=z_bounds) - section_axid = cmor_axis(table=table, table_entry='section', units=sec_units, & - length=n_sections, coord_vals=section_ax) - - print *, '---------------Define grid' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Define grid - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - if ((option == 0).or.(option == 1)) then - grid_id = cmor_grid((/profile_axid/), lat(:,1), lon(:,1)) - else - print*, "AXES FOR GRID: ",(/profile_axid, section_axid/) - grid_id = cmor_grid((/profile_axid, section_axid/),nvertices=4) - print*, 'got grid:',grid_id - !need to add code for defining the lat lon var here - latvar_id = cmor_time_varying_grid_coordinate(grid_id,table_entry='latitude',units='degrees_north') - lonvar_id = cmor_time_varying_grid_coordinate(grid_id,table_entry='longitude',units='degrees_east') - blatvar_id = cmor_time_varying_grid_coordinate(grid_id,table_entry='vertices_latitude',units='degrees_north') - blonvar_id = cmor_time_varying_grid_coordinate(grid_id,table_entry='vertices_longitude',units='degrees_east') - endif - if (grid_id > 0) then - print *, '*********** Error, grid_id: ', grid_id - stop - endif - - print *, '---------------Define variables' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Define variables. Fill in dimensions table first if needed - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - if ((option == 0).or.(option == 1)) then - var_id = cmor_variable(table=table, table_entry='curtain', units='1', & - axis_ids=(/grid_id,section_axid,height_axid/), missing_value=R_UNDEF) - else - var_id = cmor_variable(table=table, table_entry='curtain', units='1', & - axis_ids=(/grid_id,height_axid/), missing_value=R_UNDEF) - endif - - print *, '---------------Write variables' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Write variables to file - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - if ((option == 0).or.(option == 1)) then - error_flag = cmor_write(var_id=var_id, data=x) - else - error_flag = cmor_write(var_id=var_id, data=x) - error_flag = cmor_write(var_id=latvar_id, data=lat, store_with=var_id) - error_flag = cmor_write(var_id=lonvar_id, data=lon, store_with=var_id) - error_flag = cmor_write(var_id=latvar_id, data=lat, store_with=var_id) - error_flag = cmor_write(var_id=lonvar_id, data=lon, store_with=var_id) - print*, 'writing blat',blatvar_id - error_flag = cmor_write(var_id=blatvar_id, data=lat_bounds, store_with=var_id) - print*, 'writing blon',blonvar_id - error_flag = cmor_write(var_id=blonvar_id, data=lon_bounds, store_with=var_id) - endif - if (error_flag /= 0) then - print *, '*********** Error writing variable: ', error_flag - stop - endif - - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Close files - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - error_flag = cmor_close() - - - END diff --git a/Test/test_cmor_grid_time_varying.f90 b/Test/test_cmor_grid_time_varying.f90 deleted file mode 100644 index c65ccd17fe4fdc76b5c0a32806cff19868787308..0000000000000000000000000000000000000000 --- a/Test/test_cmor_grid_time_varying.f90 +++ /dev/null @@ -1,172 +0,0 @@ -PROGRAM test_cmor_grid - USE cmor_users_functions - - IMPLICIT NONE - - INTEGER, PARAMETER :: n_sections = 3 - INTEGER, PARAMETER :: n_points = 10 - INTEGER, PARAMETER :: n_lev = 40 - INTEGER, PARAMETER :: n_dbz = 15 - real, parameter :: R_UNDEF = -1.0E+30 - INTEGER :: i, j, k, l, v2_id,v3_id,option -! REAL :: x(n_lev,n_points,n_sections) - REAL :: y(n_points,n_lev,n_sections) - REAL :: x(n_points,n_sections) - double precision :: z_ax(n_lev),z_bounds(2,n_lev) - double precision :: dbz_ax(n_dbz),dbz_bounds(2,n_dbz) - double precision :: profile_ax(n_points),section_ax(n_sections) - real :: lat(n_points,n_sections),lon(n_points,n_sections) - real :: lat_bounds(4,n_points,n_sections),lon_bounds(4,n_points,n_sections) - character(len=128) :: table='CMIP5_cf3hr' - character(len=32) :: sec_units='days since 2000-01-01' - integer :: error_flag,height_axid,time_axid,profile_axid,grid_id,section_axid,dbz_axid - real :: lat_step,lon_step - integer latvar_id,lonvar_id - integer blatvar_id,blonvar_id,table_grid_id - - print *, 'Option (0,1)?' - read(*,*) option - - - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Fill in variables with some data - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - do k=1,n_sections - do i=1,n_points - x(i,k) = k*10.0 + 0.1*i - enddo - enddo -! do l=1,n_dbz - do k=1,n_sections - do j=1,n_lev - do i=1,n_points - y(i,j,k) = k*10.0 + 1.0*j + 0.1*i - enddo - enddo - enddo -! enddo - - ! Values for section axis (time of each orbit) - do i=1,n_sections - section_ax(i) = float(i)/8.0 ! 3hr - enddo - - ! Values for profile axis - do i=1,n_points - profile_ax(i) = float(i) - enddo - - ! Height of vertical levels - do i=1,n_lev - z_ax(i) = 240.D0 + 480.D0*(i-1) - z_bounds(1,i) = z_ax(i) - 240.D0 - z_bounds(2,i) = z_ax(i) + 240.D0 - enddo - - ! dBZ bins - do i=1,n_dbz - dbz_ax(i) = -47.5D0 + 5.D0*(i-1) - dbz_bounds(1,i) = dbz_ax(i) - 2.5D0 - dbz_bounds(2,i) = dbz_ax(i) + 2.5D0 - enddo - - lat_step = 180.0/(n_points+2) - lon_step = 360.0/(n_points+2) - do i=1,n_points - lat(i,:) = -90.0 + lat_step*0.5 + lat_step*i - lon(i,:) = 0.0 + lon_step*0.5 + lon_step*i - lat_bounds(1,i,:) = lat(i,:) - lat_step*0.5 - lat_bounds(2,i,:) = lat(i,:) - lat_step*0.5 - lat_bounds(3,i,:) = lat(i,:) + lat_step*0.5 - lat_bounds(4,i,:) = lat(i,:) + lat_step*0.5 - lon_bounds(1,i,:) = lon(i,:) - lon_step*0.5 - lon_bounds(2,i,:) = lon(i,:) + lon_step*0.5 - lon_bounds(3,i,:) = lon(i,:) - lon_step*0.5 - lon_bounds(4,i,:) = lon(i,:) + lon_step*0.5 - enddo - - - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Specify path for tables and set up other CMOR options - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - error_flag = cmor_setup(inpath='Tables/', & - netcdf_file_action="replace",create_subdirectories=0) - - print *, '---------------Define dataset' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Define dataset as output from COSP, and other model details - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - error_flag = cmor_dataset(outpath='./',experiment_id='AMIP',institution='Met Office Hadley Centre', & - source='MetUM',calendar='360_day',realization=1,contact='alejandro.bodas@metoffice.gov.uk', & - history='history',comment='En un lugar de la Mancha de cuyo nombre no quiero acordarme', & - references='references',model_id='MetUM',forcing='N/A',parent_experiment_id='N/A', & - branch_time=0.d0, institute_id='MOHC',parent_experiment_rip='prip') - - print *, '---------------Define axis' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Define axis - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - profile_axid = cmor_axis(table=table, table_entry='location', units='1', & - length=n_points, coord_vals=profile_ax) - height_axid = cmor_axis(table=table, table_entry='alt40', units='m', & - length=n_lev, coord_vals=z_ax,cell_bounds=z_bounds) - dbz_axid = cmor_axis(table=table, table_entry='dbze', units='dBZ', & - length=15, coord_vals=dbz_ax,cell_bounds=dbz_bounds) - section_axid = cmor_axis(table=table, table_entry='time1', units=sec_units, & - length=n_sections, coord_vals=section_ax) - - print *, '---------------Define grid' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Define grid - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -! table_grid_id = cmor_load_table(table_grids) -! call cmor_set_table(table_grid_id) - print*, "AXES FOR GRID: ",(/profile_axid, section_axid/) - grid_id = cmor_grid((/profile_axid, section_axid/)) -! lat,lon,lat_bounds,lon_bounds, - print *, ' -- grid_id: ', grid_id - latvar_id = cmor_time_varying_grid_coordinate(grid_id,'latitude','degrees_north',missing=R_UNDEF) - print*, ' -- latvar_id :',latvar_id - lonvar_id = cmor_time_varying_grid_coordinate(grid_id,'longitude','degrees_east',missing=R_UNDEF) - print*, ' -- lonvar_id:',lonvar_id - if (grid_id > 0) then - print *, '*********** Error, grid_id: ', grid_id - stop - endif - - print *, '---------------Define variables' - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Define variables - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - v3_id = cmor_variable(table=table, table_entry='clcalipso', units='%', & - axis_ids=(/grid_id,height_axid/), missing_value=R_UNDEF) - v2_id = cmor_variable(table=table, table_entry='cllcalipso', units='%', & - axis_ids=(/grid_id/), missing_value=R_UNDEF) - - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Write variables to file - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - if (option == 0) then ! Variable clcalipso - print *, '---------------Write clcalipso' - error_flag = cmor_write(var_id=v3_id, data=reshape(y,(/n_points,n_sections,n_lev/),order=(/1,3,2/))) - print *, '---------------Write clcalipso:lat' - error_flag = cmor_write(var_id=latvar_id, data=lat, store_with=v3_id) - print *, '---------------Write clcalipso:lon' - error_flag = cmor_write(var_id=lonvar_id, data=lon, store_with=v3_id) - endif - if (option == 1) then ! Variable cllcalipso - print *, '---------------Write cllcalipso' - error_flag = cmor_write(var_id=v2_id, data=x) - print *, '---------------Write cllcalipso:lat' - error_flag = cmor_write(var_id=latvar_id, data=lat, store_with=v2_id) - print *, '---------------Write cllcalipso:lon' - error_flag = cmor_write(var_id=lonvar_id, data=lon, store_with=v2_id) - endif - - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - ! Close files - !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - error_flag = cmor_close() - - - END diff --git a/Test/test_compression.py b/Test/test_compression.py deleted file mode 100644 index b48efe52c0c372e5facb9c8059b1a83de124ef9a..0000000000000000000000000000000000000000 --- a/Test/test_compression.py +++ /dev/null @@ -1,66 +0,0 @@ -import sys,os -try: - import cdms2 -except: - print 'This test requires cdms2 for I/O' - sys.exit() - -import cmor,numpy - -f=cdms2.open(os.path.join(cmor.__path__[0],'..','..','..','..','sample_data/clt.nc')) - -pth = os.path.split(os.path.realpath(os.curdir)) -if pth[-1]=='Test': - ipth = opth = '.' -else: - ipth = opth = 'Test' -cmor.setup(inpath=ipth, - set_verbosity=cmor.CMOR_NORMAL, - netcdf_file_action = cmor.CMOR_REPLACE) - -cmor.dataset( - outpath = opth, - experiment_id = "historical", - institution = "PCMDI", - source = "GICCM1 2002", - calendar = "standard", - contact="Tim Lincecum", - institute_id="PCMDI", - model_id="GICCM1",forcing="Nat", - parent_experiment_id="N/A", - parent_experiment_rip="N/A", - branch_time=0.) - -cmor.load_table("Tables/CMIP5_Amon") - -s=f("clt",slice(14)) -Saxes = s.getAxisList() - -axes=[] -for ax in Saxes[1:]: - tmp = cmor.axis(ax.id,coord_vals=ax[:],cell_bounds=ax.getBounds(),units=ax.units) - axes.append(tmp) - -#Now creates a dummy HUGE axis for resizing s as really big -factor = 100 -nt = s.shape[0]*factor -print 'nt is:',nt -t = numpy.arange(nt) - -tmp = cmor.axis('time',coord_vals=t,units=Saxes[0].units,cell_bounds=numpy.arange(nt+1)) -axes.insert(0,tmp) -print axes -var_id1 = cmor.variable(s.id,s.units,axes) -## the one with 2 at the end is compressed -var_id2 = cmor.variable(s.id,s.units,axes) -sh=list(s.shape) -sh[0]=nt -s=numpy.resize(s,sh) -#s=numpy.where(numpy.greater(s,100.),100,s) -s=numpy.random.random(s.shape)*100. -print s.shape -cmor.write(var_id1,s) -cmor.close(var_id1) -cmor.write(var_id2,s) - -cmor.close() diff --git a/Test/test_dimensionless.f90 b/Test/test_dimensionless.f90 deleted file mode 100644 index 472bcc661d4289bd1f0574211f6c7876ef1f4062..0000000000000000000000000000000000000000 --- a/Test/test_dimensionless.f90 +++ /dev/null @@ -1,519 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - plevs = (/100000., 92500., 85000., 70000.,& - 60000., 50000., 40000., 30000., 25000., 20000.,& - 15000., 10000., 7000., 5000., 3000., 2000., 1000. /) - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - -INCLUDE "reader_2D_3D.f90" - -END MODULE local_subs - - -PROGRAM ipcc_test_code -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: lev2 = 17 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 4 ! number of IPCC Table A1c fields to - ! be output. - - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'tro3 ', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ '% ', '1e-9 ', 'm s-1', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=4), DIMENSION(n3d) :: entry3d = (/ 'cl ', 'tro3', 'ua ', 'ta ' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - REAL, DIMENSION(lev2,lon,lat) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev2) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - REAL, DIMENSION(lev) :: a_coeff - REAL, DIMENSION(lev) :: b_coeff - REAL :: p0 - REAL, DIMENSION(lev+1) :: a_coeff_bnds - REAL, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim, ilon2,ilat2,itim2 - double precision bt - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - bt=0. - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace') - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', model_id="GICCM1", & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - ! Define all axes that will be needed - - ilat = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - ilat2 = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon2 = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - -print*, 'Test Code:',lev,':',plevs - ipres = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='plevs', & - units='Pa', & - length=lev2, & - coord_vals=plevs) - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - itim2 = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - ! define model eta levels - zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) - zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) - - ilev = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='standard_hybrid_sigma', & - units='1', & - length=lev, & - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - ! define z-factors needed to transform from model level to pressure - p0 = 1.e5 - a_coeff = (/ 0.1, 0.2, 0.3, 0.2, 0.1 /) - b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) - - a_coeff_bnds=(/0.,.15, .25, .25, .15, 0./) - b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='p0', & - units='Pa', & - zfactor_values = p0) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='b', & - axis_ids= (/ ilev /), & - zfactor_values = b_coeff, & - zfactor_bounds = b_coeff_bnds ) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='a', & - axis_ids= (/ ilev /), & - zfactor_values = a_coeff, & - zfactor_bounds = a_coeff_bnds ) - - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - ! Define the only field to be written that is a function of model level - ! (appearing in IPCC table A1c) - - var3d_ids(1) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(1), & - units=units3d(1), & - axis_ids=(/ ilev, ilon, ilat, itim /), & - missing_value=1.0e28, & - original_name=varin3d(1)) - - ! Define variables appearing in IPCC table A1c that are a function of pressure - ! (3-d variables) - - DO m=2,n3d - var3d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=(/ ipres, ilon, ilat, itim /), & - missing_value=1.0e28, & - original_name=varin3d(m)) - ENDDO - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - print*, m, entry2d(m) - if (m.ne.3) then - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - else - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Lmon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon2, ilat2, itim2 /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - endif - ENDDO - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - call read_3d_input_files(it, varin3d(1), data3d) - - error_flag = cmor_write( & - var_id = var3d_ids(1), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - call read_2d_input_files(it, varin2d(4), data2d) - - error_flag = cmor_write( & - var_id = zfactor_id, & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids(1) ) - - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=2,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var3d_ids(m), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1c ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM ipcc_test_code - diff --git a/Test/test_fortran_example_00.f90 b/Test/test_fortran_example_00.f90 deleted file mode 100644 index 59f4675984be3ab7787bc89acc703a671870e34c..0000000000000000000000000000000000000000 --- a/Test/test_fortran_example_00.f90 +++ /dev/null @@ -1,447 +0,0 @@ -MODULE local_subs - - USE cmor_users_functions -!!$ PRIVATE -!!$ PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - plevs = (/100000., 92500., 85000., 70000.,& - 60000., 50000., 40000., 30000., 25000., 20000.,& - 15000., 10000., 7000., 5000., 3000., 2000., 1000. /) - - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - -include "reader_2D_3D.f90" - -END MODULE local_subs - -program testing - use cmor_users_functions - use local_subs - implicit none - integer error_flag - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: lev2 = 17 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1 ', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - real, DIMENSION(lon*lat) :: data1dtest - REAL, DIMENSION(lon,lat,lev2) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev2) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - real, DIMENSION(lev) :: a_coeff - DOUBLE PRECISION, DIMENSION(lev) :: b_coeff - DOUBLE PRECISION :: p0,bt - DOUBLE PRECISION :: p0array(1) - real, DIMENSION(lev+1) :: a_coeff_bnds - DOUBLE PRECISION, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim,i,ilon2,ilat2,itim2 - real :: missing - - ! Other variables: - ! --------------------- - - INTEGER :: it, m, j,k - - bt=0. - j = CMOR_REPLACE - k = CMOR_EXIT_ON_MAJOR - error_flag = cmor_setup(inpath='Test', netcdf_file_action=j,& - exit_control=k) - print*,'Test code: done' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', model_id="GICCM1", & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - print*, 'Test code: done 2 lalala' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - - ilat2 = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon2 = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - itim2 = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - print*, 'Test code: ok calling axis stuff lat' - ilat = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - print*, 'Test code: ok calling axis stuff lon',ilat - ilon = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - print*, 'Test code: ok calling axis stuff pressure',ilon - ipres = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='plevs', & - units='Pa', & - length=lev2, & - coord_vals=plevs) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - print*, 'Test code: ok calling axis stuff time',ipres - itim = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='30 days') - - ! define model eta levels (although these must be provided, they will - ! actually be replaced by a+b before writing the netCDF file) - zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) - zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) - - print*, 'Test code: ok calling axis stuff lev2',itim - ilev = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='standard_hybrid_sigma', & - units="1", & - length=lev, & - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - print*, 'Test code: ok called stuff lev2',ilev - ! define z-factors needed to transform from model level to pressure - p0 = 1.e5 - p0array(1)=p0 - a_coeff = (/ 0.1, 0.2, 0.3, 0.22, 0.1 /) - b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) - - a_coeff_bnds=(/0.,.15, .25, .25, .16, 0./) - b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) - - print*, 'Test code: zfactor p0' - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='p0', & - units='Pa', & - zfactor_values = p0) - - print*, 'Test code: result',error_flag - print*, 'Test code: zfactor b' - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='b', & - axis_ids= (/ ilev /), & - zfactor_values = b_coeff, & - zfactor_bounds = b_coeff_bnds ) - - print*, 'Test code: result',error_flag - print*, 'Test code: zfactor a' - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='a', & - axis_ids= (/ ilev /), & - zfactor_values = a_coeff, & - zfactor_bounds = a_coeff_bnds ) - - print*, 'Test code: result',error_flag - print*, 'Test code: zfactor ps' - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - print*, 'Test code: result',zfactor_id - print*, 'Test code: var3d' - missing = 1.e28 - var3d_ids(1) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(1), & - units=units3d(1), & - axis_ids=(/ ilon, ilat, ilev, itim /), & - missing_value=missing, & - original_name=varin3d(1)) - - ! Define variables appearing in IPCC table A1c that are a function of pressure - ! (3-d variables) - - print*, 'Test code: result',var3d_ids(1) - DO m=2,n3d - print*, 'Test code: var: ',entry3d(m) - var3d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=(/ ilon, ilat, ipres, itim /), & - missing_value=missing, & - original_name=varin3d(m)) - print*, 'Test code: result',var3d_ids(m) - ENDDO - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - print*, 'Test code: var: ',entry2d(m) - if (m.ne.3) then - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - else - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Lmon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon2, ilat2, itim2 /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - endif - print*, 'Test code: result',var2d_ids(m) - ENDDO - - PRINT*, 'Test code: ' - PRINT*, 'Test code: completed everything up to writing output fields ' - PRINT*, 'Test code: ' - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - call read_3d_input_files(it, varin3d(1), data3d) - - error_flag = cmor_write( & - var_id = var3d_ids(1), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - call read_2d_input_files(it, varin2d(4), data2d) - - error_flag = cmor_write( & - var_id = zfactor_id, & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids(1) ) - - print*, 'Test code: result',error_flag - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=2,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var3d_ids(m), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) 'Test code: Error encountered writing IPCC Table A1c ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) 'Test code: Was processing time sample: ', time - - END IF - - END DO -!!$ -!!$ ! Cycle through the 2-d fields, retrieve the requested variable and -!!$ ! append each to the appropriate netCDF file. -!!$ - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) 'Test code: Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) 'Test code: Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - error_flag = cmor_close() - -end program testing diff --git a/Test/test_fortran_example_01.f90 b/Test/test_fortran_example_01.f90 deleted file mode 100644 index af10e676f069686edf14b408997dddc5432ba9f5..0000000000000000000000000000000000000000 --- a/Test/test_fortran_example_01.f90 +++ /dev/null @@ -1,265 +0,0 @@ -MODULE local_subs - - USE cmor_users_functions -!!$ PRIVATE -!!$ PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - -include "reader_2D_3D.f90" - -END MODULE local_subs - -program testing - use cmor_users_functions - use local_subs - implicit none - integer error_flag - INTEGER, PARAMETER :: nvert = 4 ! number of time samples to process - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 3 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 4 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1 ', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - real, DIMENSION(lon*lat) :: data1dtest - REAL, DIMENSION(lon,lat,lev) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - real, DIMENSION(lev) :: a_coeff - DOUBLE PRECISION, DIMENSION(lev) :: b_coeff - DOUBLE PRECISION :: p0,bt - DOUBLE PRECISION :: p0array(1) - real, DIMENSION(lev+1) :: a_coeff_bnds - DOUBLE PRECISION, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim,i - real :: missing - character(1024) inpath,mapnm - character(len=30),dimension(6) ::params =(/ "standard_parallel1 ",& - "longitude_of_central_meridian ","latitude_of_projection_origin ",& - "false_easting ","false_northing ", & - "standard_parallel2 " /) - character(len=5) ,dimension(6) :: punits = (/ " "," "," "," "," "," " /) - double precision,dimension(6) :: pvalues = (/-20.,175.,13.,8.,0.,20. /) - ! Other variables: - ! --------------------- - - INTEGER :: it, m, j,k,tables(2),vars(10),axes(10) - - integer pass_axes(2) - - integer :: grid_id - - - real lon_coords(lon,lat),lat_coords(lon,lat) - real lon_vertices(nvert,lon,lat),lat_vertices(nvert,lon,lat) - real area(lon,lat) - real x(lon),y(lat) - - real lon0,lat0,delta_lon,delta_lat - - bt=0. - - lon0 = 280. - lat0=0.; - delta_lon = 10.; - delta_lat = 10.; - -!!$ /* first construct grid lon/lat */ - do j=1,lat - y(j)=j - do i=1,lon - x(i)=i - lon_coords(i,j) = lon0+delta_lon*(j+i-1); - lat_coords(i,j) = lat0+delta_lat*(j-i-2); -!!$ /* vertices lon*/ -!!$ k = i*4+j*lon*4+0; -!!$ printf('i,j,k: %i, %i, %i\n',i,j,k); - lon_vertices(1,i,j) = lon_coords(i,j)-delta_lon; - lon_vertices(2,i,j) = lon_coords(i,j); - lon_vertices(3,i,j) = lon_coords(i,j)+delta_lon; - lon_vertices(4,i,j) = lon_coords(i,j); -!!$ /* vertices lat */ - lat_vertices(1,i,j) = lat_coords(i,j); - lat_vertices(2,i,j) = lat_coords(i,j)-delta_lat; - lat_vertices(3,i,j) = lat_coords(i,j); - lat_vertices(4,i,j) = lat_coords(i,j)+delta_lat; - end do - end do - - inpath ='Test' - j = CMOR_REPLACE - k = CMOR_EXIT_ON_MAJOR - error_flag = cmor_setup(inpath='Test', netcdf_file_action=j,& - exit_control=k) - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)',model_id="GICCM1", & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - tables(1) = cmor_load_table('Tables/CMIP5_Amon') - tables(2) = cmor_load_table('Tables/CMIP5_grids') - - axes(1) = cmor_axis(table_entry = 'x', & - units = 'm', & - length = lon, & - coord_vals = x) - axes(2) = cmor_axis(table_entry = 'y', & - units = 'm', & - length = lat, & - coord_vals = y) - - grid_id = cmor_grid(axis_ids = axes, & - latitude = lat_coords, & - longitude = lon_coords, & - latitude_vertices = lat_vertices, & - longitude_vertices = lon_vertices) - print*, 'Got grid id: ',grid_id - - mapnm = 'lambert_conformal_conic' - error_flag = cmor_set_grid_mapping(grid_id,& - mapnm,params,pvalues,punits) - - call cmor_set_table(table_id=tables(2)) - - - axes(3) = cmor_axis(table = 'Tables/CMIP5_Amon',& - table_entry = 'time',& - units = 'days since 1980',& - length = 2 & - ) - - - pass_axes(2) = axes(3) - pass_axes(1) = grid_id - - vars(1) = cmor_variable(table = 'Tables/CMIP5_Amon',& - table_entry = 'hfls',& - units = 'W m-2',& - axis_ids = pass_axes,& - positive = 'down',& - original_name = 'HFLS',& - history = 'no history',& - comment = 'no future'& - ) - do i=1,ntimes - call read_time(i, time(1), bnds_time) - print*, 'Test code: writing time:',i,'of',ntimes,time(1) - call read_2d_input_files(i, 'LATENT', data2d) - error_flag = cmor_write(var_id = vars(1) ,& - data =data2d,& - ntimes_passed = 1,& - time_vals = time,& - time_bnds = bnds_time) - end do - error_flag = cmor_close() - - end program testing - diff --git a/Test/test_fortran_example_02.f90 b/Test/test_fortran_example_02.f90 deleted file mode 100644 index 2680528ae0bc82d91a181261ae491f7a96e0b878..0000000000000000000000000000000000000000 --- a/Test/test_fortran_example_02.f90 +++ /dev/null @@ -1,376 +0,0 @@ -MODULE local_subs - - USE cmor_users_functions -!!$ PRIVATE -!!$ PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon, station, st_lons, st_lats) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - INTEGER, INTENT(OUT), DIMENSION(:) :: station - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: st_lats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: st_lons - - INTEGER :: i, j, k - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - k = 1 - DO i = 1, SIZE(alons) - DO j = 1, SIZE(alats) - station(k) = k - st_lons(k) = alons(i) - st_lats(k) = alats(j) - k = k+1 - END DO - END DO - - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - - !------------------------------------------------ - SUBROUTINE read_3d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:,:) :: field - - INTEGER :: i, j, k - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('CLOUD') - factor = 0.1 - offset = -50. - CASE ('U') - factor = 1. - offset = 100. - CASE ('T') - factor = 0.5 - offset = -150. - END SELECT - - DO k=1,SIZE(field, 3) - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,j,k) = ((k-1)*64 + (j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - END DO - - END SUBROUTINE read_3d_input_files - - !------------------------------------------------ - SUBROUTINE read_2d_input_files(it, varname, field) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - CHARACTER(len=*), INTENT(IN) :: varname - REAL, INTENT(OUT), DIMENSION(:,:) :: field - - INTEGER :: i, j - REAL :: factor, offset - CHARACTER(len=LEN(varname)) :: tmp - - tmp = TRIM(ADJUSTL(varname)) - SELECT CASE (tmp) - CASE ('LATENT') - - factor = 1. - offset = 20. - CASE ('TSURF') - factor = 2.0 - offset = -220. - CASE ('SOIL_WET') - factor = 10. - offset = 0. - CASE ('PSURF') - factor = 100. - offset = -9.7e4 - END SELECT - - DO j=1,SIZE(field, 2) - DO i=1,SIZE(field, 1) - field(i,size(field,2)+1-j) = ((j-1)*16 + (i-1)*4 + it)*factor - offset - END DO - END DO - - END SUBROUTINE read_2d_input_files - -END MODULE local_subs - - -!======================================================= -program testing - use cmor_users_functions - use local_subs - implicit none - integer error_flag - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: nst = 12 ! number of stations - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1 ', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - - INTEGER igrid; - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - real, DIMENSION(lon*lat) :: data1dtest - REAL, DIMENSION(lon,lat,lev) :: data3d - REAL, DIMENSION(lon*lat,lev) :: data2d_st - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - INTEGER, DIMENSION(lon*lat) :: station - DOUBLE PRECISION, DIMENSION(lon*lat) :: st_lons - DOUBLE PRECISION, DIMENSION(lon*lat) :: st_lats - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - real, DIMENSION(lev) :: a_coeff - DOUBLE PRECISION, DIMENSION(lev) :: b_coeff - DOUBLE PRECISION :: p0 - DOUBLE PRECISION :: p0array(1) - real, DIMENSION(lev+1) :: a_coeff_bnds - DOUBLE PRECISION, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim, i, ist - real :: missing - - ! Other variables: - ! --------------------- - - INTEGER :: it, m, j,k - - j = CMOR_REPLACE - k = CMOR_EXIT_ON_MAJOR - error_flag = cmor_setup(inpath='Test', netcdf_file_action=j,& - exit_control=k) - print*,'Test code: done' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='2xCO2 equilibrium experiment', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)' ) - print*, 'Test code: done 2 lalala' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon, station, st_lons, st_lats) - - - print*, 'Test code: ok calling axis stuff station' - ist = cmor_axis( & - table='IPCC_test_table_S', & - table_entry='station', & - units=' ', & - length=nst, & - coord_vals=station ) - - - print*, 'Test code: ok calling axis stuff pressure',ilon - ipres = cmor_axis( & - table='IPCC_test_table_S', & - table_entry='pressure', & - units='Pa', & - length=lev, & - coord_vals=plevs) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - print*, 'Test code: ok calling axis stuff time',ipres - itim = cmor_axis( & - table='IPCC_test_table_S', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='20 minutes') - - - - igrid = cmor_grid((/ist/), st_lats, st_lons) - - write(*,'(a, 12f6.1)'), 'lons: ',st_lons - write(*,'(a, 12f6.1)'), 'lats: ',st_lats - - !=============================================================== - print*, ' ' - - - ! Define variables appearing in IPCC table A1a (2-d variables) - DO m=1,4 - print*, 'Test code: var: ',entry2d(m) - var2d_ids(m) = cmor_variable( & - table='IPCC_test_table_S', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ igrid, itim /), & - missing_value=missing, & - positive=positive2d(m), & - original_name=varin2d(m)) - print*, 'Test code: result',var2d_ids(m) - ENDDO - - - PRINT*, 'Test code: ' - PRINT*, 'Test code: completed everything up to writing output fields ' - PRINT*, 'Test code: ' - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - -!!$ -!!$ ! Cycle through the 2-d fields, retrieve the requested variable and -!!$ ! append each to the appropriate netCDF file. -!!$ - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - k = 1 - DO j = 1, lat - data1dtest(k:k+lat) = data2d(:,j) - k = k+lat+1 - END DO - !write(*,'(a, 12(f8.1,1x))'), entry2d(m), data1dtest - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data1dtest, & - file_suffix ="ftn-02", & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) 'Test code: Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) 'Test code: Was processing time sample: ', time - - END IF - - END DO - - - END DO time_loop - - error_flag = cmor_close() - -end program testing diff --git a/Test/test_grid.c b/Test/test_grid.c deleted file mode 100644 index fabf28c90bc05ad19768cd408f8693c8c7303a89..0000000000000000000000000000000000000000 --- a/Test/test_grid.c +++ /dev/null @@ -1,195 +0,0 @@ -#include -#include -#include -#include "cmor.h" -#include -#include - -void read_time(it, time, time_bnds) - int it; - double time[]; - double time_bnds[]; -{ - time[0] = (it-0.5)*30.; - time_bnds[0] = (it-1)*30.; - time_bnds[1] = it*30.; - - time[0]=it; - time_bnds[0] = it; - time_bnds[1] = it+1; - -} - -#include "reader_2D_3D.h" - -int main() -{ - - /* dimension parameters: */ - /* --------------------------------- */ -#define ntimes 2 /* number of time samples to process */ -#define lon 3 /* number of longitude grid cells */ -#define lat 4 /* number of latitude grid cells */ -#define lev 5 /* number of standard pressure levels */ -#define nvert 6 - double x[lon]; - double y[lat]; - double lon_coords[lon*lat]; - double lat_coords[lon*lat]; - double lon_vertices[lon*lat*nvert]; - double lat_vertices[lon*lat*nvert]; - - double data2d[lat*lon]; - double data3d[lev*lat*lon]; - - int myaxes[10]; - int mygrids[10]; - int myvars[10]; - int tables[4]; - int axes_ids[CMOR_MAX_DIMENSIONS]; - int i,j,k,ierr; - - double Time[ntimes]; - double bnds_time[ntimes*2]; - double tolerance=1.e-4; - double lon0 = 280.; - double lat0=0.; - double delta_lon = 10.; - double delta_lat = 10.; - char id[CMOR_MAX_STRING]; - double tmpf=0.; - -#define nparam 6 /* number of grid parameters */ -#define lparam 40 -#define lunits 14 - char params[nparam][lparam] = {"standard_parallel1","longitude_of_central_meridian","latitude_of_projection_origin","false_easting","false_northing","standard_parallel2"}; - char punits[nparam][lunits] = {"degrees_north","degrees_east","degrees_north","m","m","degrees_north"}; - //char punits[nparam][lunits] = {"","","","","",""}; - double pvalues[nparam] = {-20.,175.,13.,8.,0.,20}; - int exit_mode; - /* first construct grid lon/lat */ - for (j=0;j -#include -#include -#include "cmor.h" -#include - -void read_coords(alats, alons, plevs, bnds_lat, bnds_lon,lon,lat,lev) - double *alats,*alons; - int *plevs; - double *bnds_lat,*bnds_lon; - int lon,lat,lev; -{ - int i; - - for (i=0;i/status - try: - t = open(_proc_status) - v = t.read() - t.close() - except: - return 0.0 # non-Linux? - # get VmKey line e.g. 'VmRSS: 9999 kB\n ...' - i = v.index(VmKey) - v = v[i:].split(None, 3) # whitespace - if len(v) < 3: - return 0.0 # invalid format? - # convert Vm value to bytes - return float(v[1]) * _scale[v[2]] - - -def memory(since=0.0): - '''Return memory usage in bytes. - ''' - return _VmB('VmSize:') - since - - -def resident(since=0.0): - '''Return resident memory usage in bytes. - ''' - return _VmB('VmRSS:') - since - - -def stacksize(since=0.0): - '''Return stack size in bytes. - ''' - return _VmB('VmStk:') - since - -import cmor -import sys - -def memory_usage(fhd,mem=0,res=0,stk=0): - nmem = memory() - nres = resident() - nstk = stacksize() - fhd.write( 'memory: %s\t%i\t\t%i\t\t%i\n' % (nmem,memory(mem), resident(res), stacksize(stk))) - return nmem,nres,nstk - -def memory_check(): - cmor.setup(inpath='Tables',netcdf_file_action=cmor.CMOR_REPLACE) - - cmor.dataset('historical', 'ukmo', 'HadCM3', '360_day', - institute_id="PCMDI", - parent_experiment_rip="r1i3p2", - model_id='HadCM3',forcing='TO',parent_experiment_id="lgm",branch_time=0.,contact="Willie Mays") - - table='CMIP5_Amon' - cmor.load_table(table) - - tval = [] - tbounds=[] - - passtime = True - ntimes = 1200 - for time in range(ntimes): - tval.append(15 + time*30) - tbounds.append([time*30, (time + 1)*30]) - - if passtime: - timdef = {'table_entry': 'time', - 'units': 'days since 2000-01-01 00:00:00', - } - else: - timdef = {'table_entry': 'time', - 'units': 'days since 2000-01-01 00:00:00', - 'coord_vals' : tval, - 'cell_bounds' : tbounds, - } - - axes = [ timdef, - {'table_entry': 'latitude', - 'units': 'degrees_north', - 'coord_vals': [0], - 'cell_bounds': [[-1,1],], - }, - {'table_entry': 'longitude', - 'units': 'degrees_east', - 'coord_vals': [90], - 'cell_bounds': [89, 91]}, - ] - - axis_ids = list() - for axis in axes: - axis_id = cmor.axis(**axis) - axis_ids.append(axis_id) - varid = cmor.variable('ts', 'K', axis_ids) - - mem = 0 - res = 0 - stk = 0 - memi,resi,stki = memory_usage(sys.stdout) - - for time in range(ntimes): - a = [275] - if passtime: - tval = [15 + time*30] - tbounds = [time*30, (time + 1)*30] - cmor.write(varid, [275], time_vals = tval, time_bnds = tbounds) - else: - cmor.write(varid, [275]) - mem,res,stk = memory_usage(sys.stdout,mem,res,stk) - #mem,res,stk = memory_usage(sys.stdout,memi,resi,stki) - print '---' - - cmor.close(varid) - -if __name__ == '__main__': - memory_check() diff --git a/Test/test_python_new_tables.py b/Test/test_python_new_tables.py deleted file mode 100644 index ced04bae578ea492e3fa18ab571a596736414131..0000000000000000000000000000000000000000 --- a/Test/test_python_new_tables.py +++ /dev/null @@ -1,44 +0,0 @@ -import cmor,numpy - -ipth="Test" -cmor.setup(inpath=ipth, - set_verbosity=cmor.CMOR_NORMAL, - netcdf_file_action = cmor.CMOR_REPLACE, - logfile = None) - -cmor.dataset( - outpath = ipth, - experiment_id = "lgm", - institution = "PCMDI", - source = "GICCM1 2002", - institute_id="PCMDI", - calendar = "standard", - contact="Bengie Molina", - model_id="GICCM1",forcing="SO", - parent_experiment_id="historical", - parent_experiment_rip="r3i8p1", - branch_time=0.) - -cmor.load_table("Tables/CMIP5_Amon") - -nlat = 90 -dlat = 180/nlat -nlon = 180 -dlon = 360./nlon - -lats = numpy.arange(-90+dlat/2.,90,dlat) -blats = numpy.arange(-90,90+dlat,dlat) -lons = numpy.arange(0+dlon/2.,360.,dlon) -blons = numpy.arange(0,360.+dlon,dlon) - -ntime = 12 - -data = numpy.random.random((ntime,nlat,nlon))+280. - -itim = cmor.axis(table_entry='time',coord_vals=numpy.arange(0,ntime,1),units='month since 2008',cell_bounds=numpy.arange(0,ntime+1,1)) -ilat = cmor.axis(table_entry='latitude',coord_vals=lats,units='degrees_north',cell_bounds=blats) -ilon = cmor.axis(table_entry='longitude',coord_vals=lons,units='degrees_east',cell_bounds=blons) - -iv = cmor.variable(table_entry='tas',axis_ids=numpy.array((itim,ilat,ilon)),units='K') - -cmor.write(iv,data) diff --git a/Test/test_python_open_close_cmor_multiple.py b/Test/test_python_open_close_cmor_multiple.py deleted file mode 100644 index 30078731e7e38f2af157bd1330832d892101882a..0000000000000000000000000000000000000000 --- a/Test/test_python_open_close_cmor_multiple.py +++ /dev/null @@ -1,59 +0,0 @@ - -import cmor,numpy - - - -vars ={'hfls' : ['W.m-2',25.,40.],'tas':['K',25,268.15],'clt':['%',100.,0.],'ta':['K',25,273.15]} - - -nlat = 90 -dlat = 180/nlat -nlon = 180 -dlon = 360./nlon -nlev = 17 -ntimes = 12 - -lats = numpy.arange(-90+dlat/2.,90,dlat) -blats = numpy.arange(-90,90+dlat,dlat) -lons = numpy.arange(0+dlon/2.,360.,dlon) -blons = numpy.arange(0,360.+dlon,dlon) - - -tvars= ['hfls','tas','clt','ta'] - -cmor.setup(inpath='.',netcdf_file_action=cmor.CMOR_REPLACE) -cmor.dataset('historical', 'ukmo', 'HadCM3', 'gregorian', - model_id='HadCM3',outpath='Test',forcing='TO, Nat', - institute_id="PCMDI", - parent_experiment_rip="r1i3p2", - contact="Matt Cain",parent_experiment_id="lgm",branch_time=0) -table='TestTables/CMIP5_Amon' -cmor.load_table(table) - -for var in tvars: - ilat = cmor.axis(table_entry='latitude',coord_vals=lats,cell_bounds=blats,units='degrees_north') - ilon = cmor.axis(table_entry='longitude',coord_vals=lons,cell_bounds=blons,units='degrees_east') - itim = cmor.axis(table_entry='time',coord_vals=numpy.arange(ntimes,dtype=numpy.float),cell_bounds=numpy.arange(ntimes+1,dtype=float),units='months since 2000') - ilev = cmor.axis(table_entry='plevs',coord_vals=numpy.array([1000.,925,850,700,600,500,400,300,250,200,150,100,70,50,30,20,10]),units='hPa') - - if var!='ta': - axes = [itim,ilat,ilon] - data = numpy.random.random((ntimes,nlat,nlon))*vars[var][1]+vars[var][2] - else: - axes=[itim,ilev,ilat,ilon] - data = numpy.random.random((ntimes,nlev,nlat,nlon))*vars[var][1]+vars[var][2] - - kw={} - if var in ['hfss','hfls']: - kw['positive']='up' - var = cmor.variable(table_entry=var,units=vars[var][0],axis_ids=axes,**kw) - - cmor.write(var,data) - path=cmor.close(var, file_name=True) - print 'Saved in:',path - -cmor.close() - - - -print 'hello' diff --git a/Test/test_python_region.py b/Test/test_python_region.py deleted file mode 100644 index c817a5990427628c9615e029410442a80aecc4a4..0000000000000000000000000000000000000000 --- a/Test/test_python_region.py +++ /dev/null @@ -1,34 +0,0 @@ -import cmor - -import numpy - -cmor.setup("Test",netcdf_file_action=cmor.CMOR_REPLACE) - -cmor.dataset('historical', 'ukmo', 'HadCM3', '360_day', - institute_id="PCMDI", - parent_experiment_rip="r1i3p2", - contact="Mark Teixera",model_id='HadCM3',forcing="SO",parent_experiment_id="N/A",branch_time=0.) - -cmor.load_table("Tables/CMIP5_Omon") - -nlat = 90 -dlat = 180/nlat -lats = numpy.arange(-90+dlat/2.,90,dlat) -blats = numpy.arange(-90,90+dlat,dlat) - -ilat = cmor.axis(table_entry='latitude',coord_vals=lats,cell_bounds=blats,units='degrees_north') - -myregions=["atlantic_ocean", "indian_pacific_ocean", "pacific_ocean", "atlantic_arctic_ocean","global_ocean"] -nreg=len(myregions) -ireg = cmor.axis(table_entry='basin',units='1',coord_vals=myregions) -ntime = 12 - -itim = cmor.axis(table_entry='time',units='months since 2030',interval='1 month',coord_vals = numpy.arange(ntime), cell_bounds=numpy.arange(ntime+1)) - - -var = cmor.variable(table_entry='htovgyre',units='W',axis_ids=numpy.array([itim,ireg,ilat])) - -data = numpy.random.random((ntime,nreg,nlat))*3.E14 - -cmor.write(var,data) -cmor.close() diff --git a/Test/test_python_reverted_lats.py b/Test/test_python_reverted_lats.py deleted file mode 100644 index 2277d50a2ee1b76dccf44be0c833213e2fe8239a..0000000000000000000000000000000000000000 --- a/Test/test_python_reverted_lats.py +++ /dev/null @@ -1,62 +0,0 @@ -import cmor,numpy - -nlat = 10 -dlat = 180./nlat -nlon = 20 -dlon = 360./nlon -nlev = 17 -ntimes = 1 - -lats = numpy.arange(90-dlat/2.,-90,-dlat) -blats = numpy.arange(90,-90-dlat,-dlat) -lats2 = numpy.arange(-90+dlat/2.,90,dlat) -blats2 = numpy.arange(-90,90+dlat,dlat) -lons = numpy.arange(0+dlon/2.,360.,dlon) -blons = numpy.arange(0,360.+dlon,dlon) - -cmor.setup(inpath='.',netcdf_file_action=cmor.CMOR_REPLACE) -cmor.dataset('historical', 'ukmo', 'HadCM3', 'gregorian',model_id='HadCM3',outpath='Test',forcing='TO, Nat', contact="Jonathan sanchez",parent_experiment_id="lgm",parent_experiment_rip="r1i1p1",branch_time=0,institute_id='pcmdi') -table='Tables/CMIP5_Amon' -cmor.load_table(table) - -data = lats[:,numpy.newaxis]*lons[numpy.newaxis,:] - -data = ( data + 29000 ) / 750. + 233.2 - - -ilat = cmor.axis(table_entry='latitude',coord_vals=lats,cell_bounds=blats,units='degrees_north') -ilat2 = cmor.axis(table_entry='latitude',coord_vals=lats2,cell_bounds=blats2,units='degrees_north') -ilon = cmor.axis(table_entry='longitude',coord_vals=lons,cell_bounds=blons,units='degrees_east') -itim = cmor.axis(table_entry='time',units='months since 2010') - - -ivar = cmor.variable(table_entry='tasmin',units='K',axis_ids=[itim,ilat,ilon]) -cmor.write(ivar,data,ntimes_passed=1,time_vals=[0.],time_bnds=[0.,1.]) -fnm = cmor.close(ivar,file_name=True) - -print '*******************************' - -ivar2 = cmor.variable(table_entry='tasmin',units='K',axis_ids=[itim,ilat2,ilon]) -cmor.write(ivar2,data,ntimes_passed=1,time_vals=[1.],time_bnds=[1.,2.]) -fnm2 = cmor.close(ivar2,file_name=True) - -## import cdms2,vcs -## x=vcs.init() -## x.portrait() -## import EzTemplate -## M=EzTemplate.Multi(columns=1,rows=3) -## print 'Getting templates' -## t1=M.get() -## t2=M.get() -## print 'Plotting' -## x.plot(data,t1) -## f=cdms2.open(fnm) -## s=f("tasmin") -## print 'Ok data read, shape:',s.shape -## x.plot(s,t2) -## f=cdms2.open(fnm2) -## s=f("tasmin") -## print 'Ok data read, shape:',s.shape -## x.plot(s,M.get()) - -## raw_input() diff --git a/Test/test_python_singleton_anywhere_in_table_def.py b/Test/test_python_singleton_anywhere_in_table_def.py deleted file mode 100644 index a770cd2ba8074f8da3245353ef6b454f6551518d..0000000000000000000000000000000000000000 --- a/Test/test_python_singleton_anywhere_in_table_def.py +++ /dev/null @@ -1,114 +0,0 @@ -#!/usr/bin/env python - -from test_python_common import * # common subroutines - -import cmor._cmor -import os - -pth = os.path.split(os.path.realpath(os.curdir)) -if pth[-1]=='Test': - ipth = opth = '.' -else: - ipth = opth = 'Test' - - -myaxes=numpy.zeros(9,dtype='i') -myaxes2=numpy.zeros(9,dtype='i') -myvars=numpy.zeros(9,dtype='i') - - -cmor.setup(inpath=ipth,set_verbosity=cmor.CMOR_NORMAL, netcdf_file_action = cmor.CMOR_REPLACE, exit_control = cmor.CMOR_EXIT_ON_MAJOR); -cmor.dataset( - outpath = opth, - experiment_id = "historical", - institution = "GICC (Generic International Climate Center, Geneva, Switzerland)", - source = "GICCM1 2002: atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); ocean: MOM (mom3_ver_3.5.2, 2x3L15); sea ice: GISIM4; land: GILSM2.5", - calendar = "standard", - realization = 1, - contact = "Rusty Koder (koder@middle_earth.net)", - history = "Output from archive/giccm_03_std_2xCO2_2256.", - comment = "Equilibrium reached after 30-year spin-up after which data were output starting with nominal date of January 2030", - references = "Model described by Koder and Tolkien (J. Geophys. Res., 2001, 576-591). Also see http://www.GICC.su/giccm/doc/index.html 2XCO2 simulation described in Dorkey et al. '(Clim. Dyn., 2003, 323-357.)", - leap_year=0, - leap_month=0, - month_lengths=None, - model_id="GICCM1", - forcing="Ant, Nat", - institute_id="pcmdi", - parent_experiment_id="piControl",branch_time=18336.33) - -tables=[] -a = cmor.load_table("/git/cmip5-cmor-tables/Tables/CMIP5_grids") -tables.append(a) - -t='CMIP5_Omon' -te = 'dissic' -u='mol m-3' -time='time' -ts='month' -tscl=1. - -t='CMIP5_cfSites' -te = 'pr' -u= 'kg m-2 s-1' -time='time1' -ts='days' -tscl=2.e-2 - -tables.append(cmor.load_table("/git/cmip5-cmor-tables/Tables/%s" % t)) -print 'Tables ids:',tables - -cmor.set_table(tables[0]) - -x,y,lon_coords,lat_coords,lon_vertices,lat_vertices = gen_irreg_grid(lon,lat) - - - -myaxes[0] = cmor.axis(table_entry = 'y', - units = 'm', - coord_vals = y) -myaxes[1] = cmor.axis(table_entry = 'x', - units = 'm', - coord_vals = x) - -grid_id = cmor.grid(axis_ids = myaxes[:2], - latitude = lat_coords, - longitude = lon_coords, - latitude_vertices = lat_vertices, - longitude_vertices = lon_vertices) -print 'got grid_id:',grid_id -myaxes[2] = grid_id - -mapnm = 'lambert_conformal_conic' -params = [ "standard_parallel1", - "longitude_of_central_meridian","latitude_of_projection_origin", - "false_easting","false_northing","standard_parallel2" ] -punits = ["","","","","","" ] -pvalues = [-20.,175.,13.,8.,0.,20. ] -cmor.set_grid_mapping(grid_id=myaxes[2], - mapping_name = mapnm, - parameter_names = params, - parameter_values = pvalues, - parameter_units = punits) - -cmor.set_table(tables[1]) -myaxes[3] = cmor.axis(table_entry = time, - units = '%s since 1980' % ts) - -pass_axes = [myaxes[3],myaxes[2]] - -myvars[0] = cmor.variable( table_entry = te, - units = u, - axis_ids = pass_axes, - history = 'no history', - comment = 'no future' - ) - -ntimes=2 -for i in range(ntimes): - data2d = read_2d_input_files(i, varin2d[0], lat,lon)*1.E-6 - print 'writing time: ',i,data2d.shape#,data2d - #print Time[i],bnds_time[2*i:2*i+2] - cmor.write(myvars[0],data2d,1,time_vals=Time[i]*tscl,time_bnds=tscl*bnds_time[2*i:2*i+2]) - print 'wrote' -cmor.close() diff --git a/Test/test_python_singleton_string.py b/Test/test_python_singleton_string.py deleted file mode 100644 index 896a8555c2b5a799c9ec63c73439c59c52bd866e..0000000000000000000000000000000000000000 --- a/Test/test_python_singleton_string.py +++ /dev/null @@ -1,114 +0,0 @@ -#!/usr/bin/env python - -from test_python_common import * # common subroutines - -import cmor._cmor -import os - -pth = os.path.split(os.path.realpath(os.curdir)) -if pth[-1]=='Test': - ipth = opth = '.' -else: - ipth = opth = 'Test' - - -myaxes=numpy.zeros(9,dtype='i') -myaxes2=numpy.zeros(9,dtype='i') -myvars=numpy.zeros(9,dtype='i') - - -cmor.setup(inpath=ipth,set_verbosity=cmor.CMOR_NORMAL, netcdf_file_action = cmor.CMOR_REPLACE, exit_control = cmor.CMOR_EXIT_ON_MAJOR); -cmor.dataset( - outpath = opth, - experiment_id = "historical", - institution = "GICC (Generic International Climate Center, Geneva, Switzerland)", - source = "GICCM1 2002: atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); ocean: MOM (mom3_ver_3.5.2, 2x3L15); sea ice: GISIM4; land: GILSM2.5", - calendar = "standard", - realization = 1, - contact = "Rusty Koder (koder@middle_earth.net)", - history = "Output from archive/giccm_03_std_2xCO2_2256.", - comment = "Equilibrium reached after 30-year spin-up after which data were output starting with nominal date of January 2030", - references = "Model described by Koder and Tolkien (J. Geophys. Res., 2001, 576-591). Also see http://www.GICC.su/giccm/doc/index.html 2XCO2 simulation described in Dorkey et al. '(Clim. Dyn., 2003, 323-357.)", - leap_year=0, - leap_month=0, - month_lengths=None, - model_id="GICCM1", - forcing="Ant, Nat", - institute_id="pcmdi", - parent_experiment_id="piControl",branch_time=18336.33,parent_experiment_rip='r1i1p1') - -tables=[] -a = cmor.load_table("/git/cmip5-cmor-tables/Tables/CMIP5_grids") -tables.append(a) - -t='CMIP5_Omon' -te = 'dissic' -u='mol m-3' -time='time' -ts='month' -tscl=1. - -t='CMIP5_Lmon' -te = 'baresoilFrac' -u= '' -time='time' -ts='months' -tscl=3.5e-4 - -tables.append(cmor.load_table("/git/cmip5-cmor-tables/Tables/%s" % t)) -print 'Tables ids:',tables - -cmor.set_table(tables[0]) - -x,y,lon_coords,lat_coords,lon_vertices,lat_vertices = gen_irreg_grid(lon,lat) - - - -myaxes[0] = cmor.axis(table_entry = 'y', - units = 'm', - coord_vals = y) -myaxes[1] = cmor.axis(table_entry = 'x', - units = 'm', - coord_vals = x) - -grid_id = cmor.grid(axis_ids = myaxes[:2], - latitude = lat_coords, - longitude = lon_coords, - latitude_vertices = lat_vertices, - longitude_vertices = lon_vertices) -print 'got grid_id:',grid_id -myaxes[2] = grid_id - -mapnm = 'lambert_conformal_conic' -params = [ "standard_parallel1", - "longitude_of_central_meridian","latitude_of_projection_origin", - "false_easting","false_northing","standard_parallel2" ] -punits = ["","","","","","" ] -pvalues = [-20.,175.,13.,8.,0.,20. ] -cmor.set_grid_mapping(grid_id=myaxes[2], - mapping_name = mapnm, - parameter_names = params, - parameter_values = pvalues, - parameter_units = punits) - -cmor.set_table(tables[1]) -myaxes[3] = cmor.axis(table_entry = time, - units = '%s since 1980' % ts) - -pass_axes = [myaxes[3],myaxes[2]] - -myvars[0] = cmor.variable( table_entry = te, - units = u, - axis_ids = pass_axes, - history = 'no history', - comment = 'no future' - ) - -ntimes=2 -for i in range(ntimes): - data2d = read_2d_input_files(i, varin2d[0], lat,lon)*1.E-6 - print 'writing time: ',i,data2d.shape#,data2d - print Time[i],bnds_time[2*i:2*i+2] - cmor.write(myvars[0],data2d,1,time_vals=Time[i],time_bnds=bnds_time[2*i:2*i+2]) - print 'wrote' -cmor.close() diff --git a/Test/test_python_stephanie_6hrPlev_minutes.py b/Test/test_python_stephanie_6hrPlev_minutes.py deleted file mode 100644 index 74d7cc3beb9baf9cc924e24eadfc6545bc64222e..0000000000000000000000000000000000000000 --- a/Test/test_python_stephanie_6hrPlev_minutes.py +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env python -import cmor -import numpy - -def main(): - - cmor.setup(inpath='/git/cmip5-cmor-tables/Tables', - netcdf_file_action = cmor.CMOR_REPLACE_3) - cmor.dataset('pre-industrial control', 'ukmo', 'HadCM3', '360_day', - institute_id = 'ukmo', - model_id = 'HadCM3', - history = 'some global history', - forcing = 'N/A', - parent_experiment_id = 'N/A', - parent_experiment_rip = 'N/A', - branch_time = 0, - contact = 'brian clough') - - table = 'CMIP5_6hrPlev' - cmor.load_table(table) - axes = [ {'table_entry': 'time1', - 'units': 'hours since 2000-01-01 00:00:00', - }, - {'table_entry': 'plev3', - 'units': 'Pa', - 'coord_vals': [100000., 92500., 85000., 70000., 60000., 50000., 40000., 30000., 25000., 20000., 15000., 10000., 7000., 5000., 3000., 2000., 1000.]}, - {'table_entry': 'latitude', - 'units': 'degrees_north', - 'coord_vals': [0], - 'cell_bounds': [-1, 1]}, - {'table_entry': 'longitude', - 'units': 'degrees_east', - 'coord_vals': [90], - 'cell_bounds': [89, 91]}, - ] - - - axis_ids = list() - for axis in axes: - print 'doing:',axis - axis_id = cmor.axis(**axis) - axis_ids.append(axis_id) - - for var, units, value in (('ta', 'K', 274), ('ua', 'm s-1', 10)): - values = numpy.array([value,]*len(axes[1]['coord_vals']), numpy.float32) - varid = cmor.variable(var, - units, - axis_ids, - history = 'variable history', - missing_value = -99 - ) - cmor.write(varid, values, time_vals = [0], time_bnds = [ [0,6] ]) - - cmor.close() - -if __name__ == '__main__': - - main() diff --git a/Test/test_python_user_interface_00.py b/Test/test_python_user_interface_00.py deleted file mode 100644 index 32ca102321d4418e7259bfc5cc00142bd4c3d7a1..0000000000000000000000000000000000000000 --- a/Test/test_python_user_interface_00.py +++ /dev/null @@ -1,133 +0,0 @@ -from test_python_common import * # common subroutines - -import cmor._cmor -import os - -pth = os.path.split(os.path.realpath(os.curdir)) -if pth[-1]=='Test': - ipth = opth = '.' -else: - ipth = opth = 'Test' - -myaxes=numpy.zeros(9,dtype='i') -myaxes2=numpy.zeros(9,dtype='i') -myvars=numpy.zeros(9,dtype='i') - - -cmor.setup(inpath=ipth,set_verbosity=cmor.CMOR_NORMAL, netcdf_file_action = cmor.CMOR_REPLACE, exit_control = cmor.CMOR_EXIT_ON_MAJOR); -cmor.dataset( - outpath = opth, - experiment_id = "lgm", - institution = "GICC (Generic International Climate Center, Geneva, Switzerland)", - source = "GICCM1 (2002): atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); ocean: MOM (mom3_ver_3.5.2, 2x3L15); sea ice: GISIM4; land: GILSM2.5", - calendar = "standard", - realization = 1, - contact = "Rusty Koder (koder@middle_earth.net)", - history = "Output from archive/giccm_03_std_2xCO2_2256.", - comment = "Equilibrium reached after 30-year spin-up after which data were output starting with nominal date of January 2030", - references = "Model described by Koder and Tolkien (J. Geophys. Res., 2001, 576-591). Also see http://www.GICC.su/giccm/doc/index.html 2XCO2 simulation described in Dorkey et al. '(Clim. Dyn., 2003, 323-357.)", - leap_year=0, - leap_month=0, - month_lengths=None, - model_id="GICCM1", - forcing="TO", - institute_id="PCMDI", - parent_experiment_id="N/A", - parent_experiment_rip="N/A", - branch_time=0) - -tables=[] -a = cmor.load_table(os.path.join(ipth,"../Tables/CMIP5_Omon")) -tables.append(a) -tables.append(cmor.load_table("Tables/CMIP5_Amon")) -print 'Tables ids:',tables - -axes=[] -id="time" -units="months since 1980" -print 'time bounds:',bnds_time -# ok we need to make the bounds 2D because the cmor module "undoes this" -bnds_time = numpy.reshape(bnds_time,(bnds_time.shape[0]/2,2)) -bnds_lat = numpy.reshape(bnds_lat,(bnds_lat.shape[0]/2,2)) -bnds_lon = numpy.reshape(bnds_lon,(bnds_lon.shape[0]/2,2)) -myaxes[0] = cmor.axis(id,coord_vals=Time,units=units,cell_bounds=bnds_time,interval="1 month") -print 'time bounds:',bnds_time -id='latitude' -units="degrees_north" -interval="" -myaxes[1] = cmor.axis(id,coord_vals=alats,units=units,cell_bounds=bnds_lat) -id="longitude" -units="degrees_east" -myaxes[2] = cmor.axis(id,coord_vals=alons,units=units,cell_bounds=bnds_lon) -id="plevs" -units="Pa" -myaxes[3] = cmor.axis(id,coord_vals=plevs,units=units) - -myaxes[4] = cmor.axis("alternate_hybrid_sigma",coord_vals=zlevs,units="1",cell_bounds=zlev_bnds) - - -cmor.set_table(tables[0]) - -myaxes[5] = cmor.axis( "basin",coord_vals=regions,units="") -id='time' -units='months since 1980' -myaxes[7] = cmor.axis(id,coord_vals=Time,units=units,cell_bounds=bnds_time,interval="1 month") -id="latitude" -units="degrees_north" -interval="" -myaxes[8] = cmor.axis(id,coord_vals=alats,units=units,cell_bounds=bnds_lat) - -cmor.set_table(tables[1]) - - -dtmp = -999; -dtmp2=1.e-4; -myaxes2[0] = myaxes[0]; -myaxes2[1] = myaxes[3]; -myaxes2[2] = myaxes[1]; -myaxes2[3] = myaxes[2]; - -print 'ok doing the vars thing',positive2d[0] -myvars[0] = cmor.variable(entry2d[0],units2d[0],myaxes[:3],'d',missing_value=None,tolerance=dtmp2,positive=positive2d[0],original_name=varin2d[0],history="no history",comment="no future") -print 'vars 2' -myvars[1] = cmor.variable(entry3d[2],units3d[2],myaxes2[:4],'d',original_name = varin3d[2]) -print 'vars 2' - -myaxes2[1] = myaxes[4]; -myvars[2] = cmor.variable(entry3d[0],units3d[0],myaxes2[:4],'d',original_name = varin3d[0]) - -print 'vars 2' - - -myvars[3] = cmor.zfactor(int(myaxes2[1]),"p0","Pa",None,'d',p0) -print 'zfact',myaxes2[1] -myvars[3] = cmor.zfactor(int(myaxes2[1]),"b","",myaxes2[1],'d',b_coeff,b_coeff_bnds) -print 'zfact',myaxes2[1] -myvars[3] = cmor.zfactor(int(myaxes2[1]),"a","",myaxes2[1],'d',a_coeff,a_coeff_bnds) -#/* printf("defining ap\n"); */ -#/* for(i=0;i<5;i++) {a_coeff[i]*=1.e3;printf("sending acoef: %i, %lf\n",i,a_coeff[i]);} */ -#/* for(i=0;i<6;i++) {a_coeff_bnds[i]*=1.e5;printf("sending acoef: %i, %lf\n",i,a_coeff_bnds[i]);} */ -#/* ierr = cmor_zfactor(&myvars[3],myaxes2[1],"ap","hPa",1,&myaxes2[1],'d',&a_coeff,&a_coeff_bnds); */ -print 'zfact before last' -myvars[3] = cmor.zfactor(zaxis_id = myaxes2[1],zfactor_name = "ps",units = "hPa",axis_ids = myaxes[:3],type = 'd') -print 'zfact last' - -# /* ok here we decalre a variable for region axis testing */ -cmor.set_table(tables[0]) -myaxes2[0] = myaxes[7] -myaxes2[1] = myaxes[5] -myaxes2[2] = myaxes[8] - -myvars[4] = cmor.variable("htovgyre","W",myaxes2[:3],'d',positive=positive2d[0],original_name=varin2d[0]) - -cmor.set_table(tables[1]) - - -for i in range(ntimes): - data2d = read_2d_input_files(i, varin2d[0], lat,lon) - print 'writing time: ',i,data2d.shape,data2d - cmor.write(myvars[0],data2d,1) - -cmor.close() - - diff --git a/Test/test_python_user_interface_01.py b/Test/test_python_user_interface_01.py deleted file mode 100644 index 7eaa222d66543b2d3c90eca02ae106c99af1a85f..0000000000000000000000000000000000000000 --- a/Test/test_python_user_interface_01.py +++ /dev/null @@ -1,97 +0,0 @@ -from test_python_common import * # common subroutines - -import cmor._cmor -import os - -pth = os.path.split(os.path.realpath(os.curdir)) -if pth[-1]=='Test': - ipth = opth = '.' -else: - ipth = opth = 'Test' - - -myaxes=numpy.zeros(9,dtype='i') -myaxes2=numpy.zeros(9,dtype='i') -myvars=numpy.zeros(9,dtype='i') - - -cmor.setup(inpath=ipth,set_verbosity=cmor.CMOR_NORMAL, netcdf_file_action = cmor.CMOR_REPLACE, exit_control = cmor.CMOR_EXIT_ON_MAJOR); -cmor.dataset( - outpath = opth, - experiment_id = "historical", - institution = "GICC (Generic International Climate Center, Geneva, Switzerland)", - source = "GICCM1 2002: atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); ocean: MOM (mom3_ver_3.5.2, 2x3L15); sea ice: GISIM4; land: GILSM2.5", - calendar = "standard", - realization = 1, - contact = "Rusty Koder (koder@middle_earth.net)", - history = "Output from archive/giccm_03_std_2xCO2_2256.", - comment = "Equilibrium reached after 30-year spin-up after which data were output starting with nominal date of January 2030", - references = "Model described by Koder and Tolkien (J. Geophys. Res., 2001, 576-591). Also see http://www.GICC.su/giccm/doc/index.html 2XCO2 simulation described in Dorkey et al. '(Clim. Dyn., 2003, 323-357.)", - leap_year=0, - leap_month=0, - month_lengths=None, - model_id="GICCM1", - forcing="Ant, Nat", - institute_id="pcmdi", - parent_experiment_id="piControl", - parent_experiment_rip="r1i1p1", - branch_time=18336.33) - -tables=[] -a = cmor.load_table("Tables/CMIP5_grids") -tables.append(a) -tables.append(cmor.load_table("Tables/CMIP5_Amon")) -print 'Tables ids:',tables - -cmor.set_table(tables[0]) - -x,y,lon_coords,lat_coords,lon_vertices,lat_vertices = gen_irreg_grid(lon,lat) - - - -myaxes[0] = cmor.axis(table_entry = 'y', - units = 'm', - coord_vals = y) -myaxes[1] = cmor.axis(table_entry = 'x', - units = 'm', - coord_vals = x) - -grid_id = cmor.grid(axis_ids = myaxes[:2], - latitude = lat_coords, - longitude = lon_coords, - latitude_vertices = lat_vertices, - longitude_vertices = lon_vertices) -print 'got grid_id:',grid_id -myaxes[2] = grid_id - -mapnm = 'lambert_conformal_conic' -params = [ "standard_parallel1", - "longitude_of_central_meridian","latitude_of_projection_origin", - "false_easting","false_northing","standard_parallel2" ] -punits = ["","","","","","" ] -pvalues = [-20.,175.,13.,8.,0.,20. ] -cmor.set_grid_mapping(grid_id=myaxes[2], - mapping_name = mapnm, - parameter_names = params, - parameter_values = pvalues, - parameter_units = punits) - -cmor.set_table(tables[1]) -myaxes[3] = cmor.axis(table_entry = 'time', - units = 'months since 1980') - -pass_axes = [myaxes[3],myaxes[2]] -myvars[0] = cmor.variable( table_entry = 'hfls', - units = 'W m-2', - axis_ids = pass_axes, - positive = 'down', - original_name = 'HFLS', - history = 'no history', - comment = 'no future' - ) -for i in range(ntimes): - data2d = read_2d_input_files(i, varin2d[0], lat,lon) - print 'writing time: ',i,data2d.shape,data2d - print Time[i],bnds_time[2*i:2*i+2] - cmor.write(myvars[0],data2d,1,time_vals=Time[i],time_bnds=bnds_time[2*i:2*i+2]) -cmor.close() diff --git a/Test/test_python_user_interface_03.py b/Test/test_python_user_interface_03.py deleted file mode 100644 index 6debe7f78e31df3e47b8f99e3cb6f0b143b430d7..0000000000000000000000000000000000000000 --- a/Test/test_python_user_interface_03.py +++ /dev/null @@ -1,107 +0,0 @@ -import numpy -import cmor - -print 'Done importing' -try: - import cdms2 -except: - print "This test code needs cdms2 interface for i/0" - import sys - sys.exit() -import os -pth = os.path.split(os.path.realpath(os.curdir)) -if pth[-1]=='Test': - ipth = opth = '.' - dpth = '../data' -else: - ipth = opth = 'Test' - dpth='data' - -myaxes=numpy.zeros(9,dtype='i') -myaxes2=numpy.zeros(9,dtype='i') -myvars=numpy.zeros(9,dtype='i') - -def read_input(var,order=None): - f=cdms2.open(os.path.join(dpth,"%s_sample.nc" % var)) - ok = f(var) - if order is None: - s = f(var) - else: - s = f(var,order=order) - s.units=f[var].units - s.id=var - f.close() - return s,ok - -def prep_var(data): - rk = data.rank() - axes=[] - for i in range(rk): - ax = data.getAxis(i) - if ax.isLongitude(): - id=cmor.axis(table_entry='longitude',units=ax.units,coord_vals=ax[:],cell_bounds=ax.getBounds()) - elif ax.isLatitude(): - id=cmor.axis(table_entry='latitude',units=ax.units,coord_vals=ax[:],cell_bounds=ax.getBounds()) - else: - id=cmor.axis(table_entry=str(ax.id),units=ax.units,coord_vals=ax[:],cell_bounds=ax.getBounds()) - print i,'units:',ax.units, ax[0] - axes.append(id) - var = cmor.variable(table_entry = data.id, - units = data.units, - axis_ids = numpy.array(axes), - missing_value = data.missing_value, - history = "rewrote by cmor via python script") - return var - - - -def prep_cmor(): - cmor.setup(inpath=ipth,set_verbosity=cmor.CMOR_QUIET, netcdf_file_action = cmor.CMOR_REPLACE, exit_control = cmor.CMOR_EXIT_ON_MAJOR); - cmor.dataset( - outpath = opth, - experiment_id = "lgm", - institution = "GICC (Generic International Climate Center, Geneva, Switzerland)", - source = "GICCM1 (2002): atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); ocean: MOM (mom3_ver_3.5.2, 2x3L15); sea ice: GISIM4; land: GILSM2.5", - calendar = "standard", - realization = 1, - contact = "Rusty Koder (koder@middle_earth.net)", - history = "Output from archive/giccm_03_std_2xCO2_2256.", - comment = "Equilibrium reached after 30-year spin-up after which data were output starting with nominal date of January 2030", - references = "Model described by Koder and Tolkien (J. Geophys. Res., 2001, 576-591). Also see http://www.GICC.su/giccm/doc/index.html 2XCO2 simulation described in Dorkey et al. '(Clim. Dyn., 2003, 323-357.)", - leap_year=0, - leap_month=0, - institute_id="PCMDI", - month_lengths=None,model_id="GICCM1",forcing="Nat", - parent_experiment_id="N/A", - parent_experiment_rip="N/A", - branch_time=0.) - - tables=[] - a = cmor.load_table("Tables/CMIP5_Omon") - tables.append(a) - tables.append(cmor.load_table("Tables/CMIP5_Amon")) - return - - -for var in ['tas',]: - print 'Testing var:',var - orders = ['tyx...','txy...','ytx...','yxt...','xyt...','xty...',] - for o in orders: - print '\tordering:',o - data,data_ordered = read_input(var,order=o) - prep_cmor() - print data.shape - var_id = prep_var(data) - df = data.filled(data.missing_value) - cmor.write(var_id,df) - cmor.close() - f=cdms2.open(opth+'/CMIP5/output/PCMDI/GICCM1/lgm/mon/atmos/%s/r1i1p1/%s_Amon_GICCM1_lgm_r1i1p1_186810-186812.nc' % (var,var)) - s=f(var) - if not numpy.allclose(s,data_ordered): - raise "Error reordering: %s"%o - else: - print 'order: %s, passed' % o - f.close() -print 'Done' -#cmor.close() -print 'Finito' diff --git a/Test/test_region.f90 b/Test/test_region.f90 deleted file mode 100644 index 4402984ca1047a5099035c43a77a2bc55967bf60..0000000000000000000000000000000000000000 --- a/Test/test_region.f90 +++ /dev/null @@ -1,311 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_1d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, bnds_lat) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - - INTEGER :: i - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - -include "reader_2D_3D.f90" - -END MODULE local_subs - - -PROGRAM test_region -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: reg = 4 ! number of regions - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: n1d = 1 ! number of IPCC Table O1 fields to be - ! output. - ! - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table O1a fields - CHARACTER (LEN=5), DIMENSION(n1d) :: & - varin1d=(/ 'OFLUX' /) - - ! Units appropriate to my data - CHARACTER (LEN=1), DIMENSION(n1d) :: & - units1d=(/ 'W' /) - - ! Corresponding IPCC Table O1a entry (variable name) - CHARACTER (LEN=8), DIMENSION(n1d) :: entry1d = (/ 'htovgyre' /) - - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, DIMENSION(n1d) :: var1d_ids - REAL, DIMENSION(lat,reg) :: data1d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - INTEGER :: ilat, ireg, itim - double precision bt - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - bt=0. - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, bnds_lat) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace') - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)' , model_id="GICCM1", & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - ! Define all axes that will be needed - - ilat = cmor_axis( & - table='Tables/CMIP5_Omon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ireg = cmor_axis( & - table='Tables/CMIP5_Omon', & - table_entry='basin', & - length=reg, & - units='none', & - coord_vals= (/ "atlantic_arctic_ocean", "indian_pacific_ocean ", "pacific_ocean ", & - "global_ocean " /) ) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='Tables/CMIP5_Omon', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - - ! Define variables appearing in IPCC table O1a (functions of lat and reg) - - DO m=1,n1d - var1d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Omon', & - table_entry=entry1d(m), & - units=units1d(m), & - axis_ids=(/ ilat, ireg, itim /), & - missing_value=1.0e28, & - original_name=varin1d(m)) - ENDDO - - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - ! Cycle through the 1-d fields (functions of lat and region), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=1,n1d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_1d_input_files(it, varin1d(m), data1d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var1d_ids(m), & - data = data1d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table O ' & - // 'field ', entry1d(m), ', which I call ', varin1d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - - END DO time_loop - - ! Close all files opened by CMOR. - - print*, 'Ok wrote everythin' - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM test_region - diff --git a/Test/test_shrt_exp_nm_set_att_initi.f90 b/Test/test_shrt_exp_nm_set_att_initi.f90 deleted file mode 100644 index b7828bcc89b3ce27981f6b6d7fd7b3a798486bb3..0000000000000000000000000000000000000000 --- a/Test/test_shrt_exp_nm_set_att_initi.f90 +++ /dev/null @@ -1,317 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test1.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF//include -L/pcmdi/charles_work/NetCDF//lib -lnetcdf -module Modules -IModules -L. -lcmor Test/test1.f90 -o cmor_test - -MODULE local_subs - - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1) = (it-1)*30. - time_bnds(2) = it*30. - - RETURN - END SUBROUTINE read_time - -include "reader_2D_3D.f90" - -END MODULE local_subs - - -PROGRAM mip_contribution - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: n2d = 1 ! number of AMIP Table 2 fields to be - ! output. - - ! Tables associating the user's variables with AMIP standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for Table 1a fields - ! My variable names for Table 2 fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ' /) - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ' /) - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down' /) - ! Corresponding AMIP Table 2 entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER, PARAMETER :: ntest=1 - INTEGER, DIMENSION(3) :: axis2d_ids - INTEGER, DIMENSION(n2d+ntest) :: var2d_ids - REAL, DIMENSION(lat,lon) :: data2d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(5) :: plevs - DOUBLE PRECISION :: time,bt - DOUBLE PRECISION, DIMENSION(2):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - -!!$ REAL, DIMENSION(lat*lon*lev) :: tmp3d -!!$ REAL, DIMENSION(lat*lon) :: tmp2d - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - - character (len=200) :: msg,msg2 - - bt=0. - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - print*, 'calling read_coords ' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - print*, 'returned from read_coords' - - ! Specify path where tables can be found, indicate that existing netCDF - ! files should not be overwritten, and instruct CMOR to error exit on - ! encountering errors of any severity. - - error_flag = cmor_setup(inpath='Test', & - netcdf_file_action='replace', & - set_verbosity=1, & - exit_control=1) - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) runcmor_write under IPCC 2xCO2 equilibrium experiment - ! conditions, and provide information to be included as attributes in - ! all CF-netCDF files written as part of this dataset. - - print*, 'calling cmor_dataset' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='lgm', & - institution= & - 'GICC (Generic International Climate Center, ' // & - ' Geneva, Switzerland)', & - source='GICCM1 2002(giccm_0_brnchT_itea_2, T63L32)', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. '// & - '(Clim. Dyn., 2003, 323-357.)',model_id="GICCM1", & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - - print*, 'returned from cmor_dataset' - - !error_flag = cmor_set_cur_dataset_attribute("initialization_method","1") - print*, 'returned from cmor_dataset' - - ! Define axes for 3-d fields - - print*, 'defining axes' - - axis2d_ids(1) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - axis2d_ids(2) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (below). -print*, 'before time ' - axis2d_ids(3) = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='time', & - units='days since 1979-1-1', & - length=ntimes, & - interval='1 month') - - print*, 'finished defining axes' - - - - ! Define variables found in AMIP table 2a (2-d variables) - - DO m=1,ntest - write(msg,*) m-1 - msg2 = trim(entry2d(1)(1:4)) - print*,'Test Code: defining variable: :',msg2 - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=msg2, & -!!$ file_suffix='1979-2001', & - units=units2d(1), & - axis_ids=axis2d_ids, & - missing_value=1.0e20, & - positive=positive2d(1), & - original_name=varin2d(1)) - ENDDO - - print*, 'completed everything up to writing output fields ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - DO m=1,ntest - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested AMIP table 1a and table 2 fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time, bnds_time) - - ! Cycle through the 3-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(1), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - print*, RESHAPE(bnds_time, (/ 2,1 /)) - error_flag = cmor_write(var_id = var2d_ids(m), & - data = RESHAPE(data2d, (/ lat*lon /)), & - ntimes_passed = 1, & - time_vals = (/ time /), & - time_bnds = RESHAPE(bnds_time, (/ 2,1 /))) - - print*, 'after writing variable, ', var2d_ids(m) - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing AMIP Table 2 ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - -!!$ error_flag = cmor_error_trace(device=0) - - END IF - - END DO time_loop - error_flag = cmor_close(var2d_ids(m)) - END DO - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - -print*, '******************************' -print*, ' ' -print*, 'CMOR COMPLETED SUCCESSFULLY ' -print*, ' ' -print*, '******************************' - -END PROGRAM mip_contribution - diff --git a/Test/test_sigma.f90 b/Test/test_sigma.f90 deleted file mode 100644 index d30d6a036c6ade243be48997488b0718030ec3c0..0000000000000000000000000000000000000000 --- a/Test/test_sigma.f90 +++ /dev/null @@ -1,514 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = i*10 - bnds_lat(1,i) = i*10. - 5. - bnds_lat(2,i) = i*10. + 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - plevs = (/100000., 92500., 85000., 70000.,& - 60000., 50000., 40000., 30000., 25000., 20000.,& - 15000., 10000., 7000., 5000., 3000., 2000., 1000. /) - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - -include "reader_2D_3D.f90" - -END MODULE local_subs - - -PROGRAM ipcc_test_code -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: lev2 = 17 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 4 ! number of IPCC Table A1c fields to - ! be output. - - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'tro3 ', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ '% ', '1e-9 ', 'm s-1', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=4), DIMENSION(n3d) :: entry3d = (/ 'cl ', 'tro3', 'ua ', 'ta ' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - REAL, DIMENSION(lev2,lon,lat) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev2) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - REAL, DIMENSION(lev) :: a_coeff - REAL, DIMENSION(lev) :: b_coeff - REAL :: p0 - REAL, DIMENSION(lev+1) :: a_coeff_bnds - REAL, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim, ilon2,ilat2,itim2 - double precision bt - - ! Other variables: - ! --------------------- - - INTEGER :: it, m - bt=0. - - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace') - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - history='Output from archivcl_A1.nce/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)',model_id="GICCM1", & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - ! Define all axes that will be needed - - ilat = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon2 = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - ilat2 = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - ipres = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='plevs', & - units='Pa', & - length=lev2, & - coord_vals=plevs) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - itim2 = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - ! define model eta levels - zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) - zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) - - ilev = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='standard_sigma', & -!!$ table_entry='standard_hybrid_sigma', & - units='1',& - length=lev, & - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - ! define z-factors needed to transform from model level to pressure - p0 = 0.5e4 -!!$ p0 = 1.e5 -!!$ a_coeff = (/ 0.1, 0.2, 0.3, 0.2, 0.1 /) - a_coeff = (/ 0.2, 0.4, 0.6, 0.8, 0.95 /) - b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) - -!!$ a_coeff_bnds=(/0.,.15, .25, .25, .15, 0./) - a_coeff_bnds=(/0.,.3, .5, .7, .9, 1./) - b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ptop', & - units='Pa', & - zfactor_values = p0) - -!!$ error_flag = cmor_zfactor( & -!!$ zaxis_id=ilev, & -!!$ zfactor_name='b', & -!!$ axis_ids= (/ ilev /), & -!!$ zfactor_values = b_coeff, & -!!$ zfactor_bounds = b_coeff_bnds ) -!!$ - - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - ! Define the only field to be written that is a function of model level - ! (appearing in IPCC table A1c) - - var3d_ids(1) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(1), & - units=units3d(1), & - axis_ids=(/ ilev, ilon, ilat, itim /), & - missing_value=1.0e28, & - original_name=varin3d(1)) - - ! Define variables appearing in IPCC table A1c that are a function of pressure - ! (3-d variables) - - DO m=2,n3d - var3d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=(/ ipres, ilon, ilat, itim /), & - missing_value=1.0e28, & - original_name=varin3d(m)) - ENDDO - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - if (m.ne.3) then - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - else - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Lmon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon2, ilat2, itim2 /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - endif - ENDDO - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - call read_3d_input_files(it, varin3d(1), data3d) - - error_flag = cmor_write( & - var_id = var3d_ids(1), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - call read_2d_input_files(it, varin2d(4), data2d) - - error_flag = cmor_write( & - var_id = zfactor_id, & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids(1) ) - - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=2,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var3d_ids(m), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1c ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM ipcc_test_code - diff --git a/Test/test_singleton.f90 b/Test/test_singleton.f90 deleted file mode 100755 index f678b035ca61d8e737ddaf85df1822c83d4b8a16..0000000000000000000000000000000000000000 --- a/Test/test_singleton.f90 +++ /dev/null @@ -1,560 +0,0 @@ -!!$pgf90 -I/work/NetCDF/5.1/include -L/work/NetCDF/5.1/lib -l netcdf -L. -l cmor Test/test_dimensionless.f90 -IModules -o cmor_test -!!$pgf90 -g -I/pcmdi/charles_work/NetCDF/include -L/pcmdi/charles_work/NetCDF/lib -lnetcdf -module Modules -IModules -L. -lcmor -I/pcmdi/charles_work/Unidata/include -L/pcmdi/charles_work/Unidata/lib -ludunits Test/test_dimensionless.f90 -o cmor_test - -MODULE local_subs - - USE cmor_users_functions - PRIVATE - PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - REAL, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - REAL, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - plevs = (/100000., 92500., 85000., 70000.,& - 60000., 50000., 40000., 30000., 25000., 20000.,& - 15000., 10000., 7000., 5000., 3000., 2000., 1000. /) - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - -include "reader_2D_3D.f90" -END MODULE local_subs - - -PROGRAM ipcc_test_code -! -! Purpose: To serve as a generic example of an application that -! uses the "Climate Model Output Rewriter" (CMOR) - -! CMOR writes CF-compliant netCDF files. -! Its use is strongly encouraged by the IPCC and is intended for use -! by those participating in many community-coordinated standard -! climate model experiments (e.g., AMIP, CMIP, CFMIP, PMIP, APE, -! etc.) -! -! Background information for this sample code: -! -! Atmospheric standard output requested by IPCC are listed in -! tables available on the web. Monthly mean output is found in -! tables A1a and A1c. This sample code processes only two 3-d -! variables listed in table A1c ("monthly mean atmosphere 3-D data" -! and only four 2-d variables listed in table A1a ("monthly mean -! atmosphere + land surface 2-D (latitude, longitude) data"). The -! extension to many more fields is trivial. -! -! For this example, the user must fill in the sections of code that -! extract the 3-d and 2-d fields from his monthly mean "history" -! files (which usually contain many variables but only a single time -! slice). The CMOR code will write each field in a separate file, but -! many monthly mean time-samples will be stored together. These -! constraints partially determine the structure of the code. -! -! -! Record of revisions: - -! Date Programmer(s) Description of change -! ==== ========== ===================== -! 10/22/03 Rusty Koder Original code -! 1/28/04 Les R. Koder Revised to be consistent -! with evolving code design - -! include module that contains the user-accessible cmor functions. - USE cmor_users_functions - USE local_subs - - IMPLICIT NONE - - ! dimension parameters: - ! --------------------------------- - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: lev2 =17 ! number of standard pressure levels - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - - ! Tables associating the user's variables with IPCC standard output - ! variables. The user may choose to make this association in a - ! different way (e.g., by defining values of pointers that allow him - ! to directly retrieve data from a data record containing many - ! different variables), but in some way the user will need to map his - ! model output onto the Tables specifying the MIP standard output. - - ! ---------------------------------- - - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=5), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: error_flag - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - REAL, DIMENSION(lon,lat,lev2) :: data3d - DOUBLE PRECISION, DIMENSION(lat,1,lon) :: scramble - DOUBLE PRECISION, DIMENSION(lat) :: alats - REAL, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev2) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - REAL, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - REAL, DIMENSION(lev) :: a_coeff - REAL, DIMENSION(lev) :: b_coeff - REAL :: p0 - REAL, DIMENSION(lev+1) :: a_coeff_bnds - REAL, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim, ilon2,ilat2,itim2 - INTEGER :: iht - - ! Other variables: - ! --------------------- - - INTEGER :: it, m, i, j - double precision bt - - bt=0. - ! ================================ - ! Execution begins here: - ! ================================ - - ! Read coordinate information from model into arrays that will be passed - ! to CMOR. - ! Read latitude, longitude, and pressure coordinate values into - ! alats, alons, and plevs, respectively. Also generate latitude and - ! longitude bounds, and store in bnds_lat and bnds_lon, respectively. - ! Note that all variable names in this code can be freely chosen by - ! the user. - - ! The user must write the subroutine that fills the coordinate arrays - ! and their bounds with actual data. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - ! *** possible user-written call *** - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='Test', netcdf_file_action='replace') - - ! Define dataset as output from the GICC model (first member of an - ! ensemble of simulations) run under IPCC 2xCO2 equilibrium - ! experiment conditions, and provide information to be included as - ! attributes in all CF-netCDF files written as part of this dataset. - - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - contact = 'Rusty Koder (koder@middle_earth.net) ', & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', model_id="GICCM1", & - forcing='TO',institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - ! Define all axes that will be needed - - ilat = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - ipres = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='plevs', & - units='Pa', & - length=lev2, & - coord_vals=plevs) - ilat2 = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon2 = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - itim2 = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - - iht = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='height2m', & - units='m', & - length=1, & - coord_vals=(/3.0/)) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - ! define model eta levels (although these must be provided, they will - ! actually be replaced by a+b before writing the netCDF file) - zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) - zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) - - ilev = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='standard_hybrid_sigma', & - length=lev, & - units='1',& - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - ! define z-factors needed to transform from model level to pressure - p0 = 1.e5 - a_coeff = (/ 0.1, 0.2, 0.3, 0.22, 0.1 /) - b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) - - a_coeff_bnds=(/0.,.15, .25, .25, .16, 0./) - b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='p0', & - units='Pa', & - zfactor_values = p0) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='b', & - axis_ids= (/ ilev /), & - zfactor_values = b_coeff, & - zfactor_bounds = b_coeff_bnds ) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='a', & - axis_ids= (/ ilev /), & - zfactor_values = a_coeff, & - zfactor_bounds = a_coeff_bnds ) - - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - ! Define the only field to be written that is a function of model level - ! (appearing in IPCC table A1c) - - var3d_ids(1) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(1), & - units=units3d(1), & - axis_ids=(/ ilon, ilat, ilev, itim /), & - missing_value=1.0e28, & - original_name=varin3d(1)) - - ! Define variables appearing in IPCC table A1c that are a function of pressure - ! (3-d variables) - bt = 1.e28 - DO m=2,n3d - var3d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=(/ ilon, ilat, ipres, itim /), & - missing_value=1.0e28, & - original_name=varin3d(m)) - ENDDO - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - IF (m==2) THEN - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilat, iht, ilon, itim /), & - missing_value=bt, & - positive=positive2d(m), & - original_name=varin2d(m)) - ELSE IF (m==3) THEN - - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Lmon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon2, ilat2, itim2 /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - - ELSE - - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e28, & - positive=positive2d(m), & - original_name=varin2d(m)) - - ENDIF - ENDDO - - PRINT*, ' ' - PRINT*, 'completed everything up to writing output fields ' - PRINT*, ' ' - - ! Loop through history files (each containing several different fields, - ! but only a single month of data, averaged over the month). Then - ! extract fields of interest and write these to netCDF files (with - ! one field per file, but all months included in the loop). - - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - call read_3d_input_files(it, varin3d(1), data3d) - print*, 'shape(data3d)',shape(data3d),varin3d(1) - error_flag = cmor_write( & - var_id = var3d_ids(1), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - call read_2d_input_files(it, varin2d(4), data2d) - - print*, 'shape(data2d)',shape(data2d),varin2d(4) - error_flag = cmor_write( & - var_id = zfactor_id, & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids(1) ) - - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=2,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - print*, 'shape(data3d)',shape(data3d),varin3d(m) - error_flag = cmor_write( & - var_id = var3d_ids(m), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1c ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END DO - - - ! Cycle through the 2-d fields, retrieve the requested variable and - ! append each to the appropriate netCDF file. - - DO m=1,n2d - print*, 'writing:',entry2d(m),m - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - IF (m == 2) THEN - - DO j=1,lat - DO i=1,lon - scramble(j,1,i) = data2d(i,j) - END DO - END DO - error_flag = cmor_write( & - var_id = var2d_ids(2), & - data = scramble(:,1,:), & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - ELSE - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) ' Was processing time sample: ', time - - END IF - - END IF - - END DO - - END DO time_loop - - ! Close all files opened by CMOR. - - error_flag = cmor_close() - - print*, ' ' - print*, '******************************' - print*, ' ' - print*, 'ipcc_test_code executed to completion ' - print*, ' ' - print*, '******************************' - -END PROGRAM ipcc_test_code - diff --git a/Test/test_sophie.f90 b/Test/test_sophie.f90 deleted file mode 100644 index 4e52af24ac3fa07779efa2d4ad1f264e6f23d04d..0000000000000000000000000000000000000000 --- a/Test/test_sophie.f90 +++ /dev/null @@ -1,441 +0,0 @@ -MODULE local_subs - - USE cmor_users_functions -!!$ PRIVATE -!!$ PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - - INTEGER :: i - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - plevs = (/100000., 92500., 85000., 70000.,& - 60000., 50000., 40000., 30000., 25000., 20000.,& - 15000., 10000., 7000., 5000., 3000., 2000., 1000. /) - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - -include "reader_2D_3D.f90" - -END MODULE local_subs - -program testing - use cmor_users_functions - use local_subs - implicit none - integer error_flag - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 5 ! number of standard pressure levels - INTEGER, PARAMETER :: lev2 = 17 ! number of standard pressure levels -! INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - INTEGER, PARAMETER :: n2d = 1 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1 ', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & -! varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - varin2d=(/ 'SFTLF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & -! units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - units2d=(/ '% ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & -! positive2d= (/ 'down', ' ', ' ', ' ' /) - positive2d= (/ ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & -! entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - entry2d = (/ 'sftlf ' /) - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - real, DIMENSION(lon*lat) :: data1dtest - REAL, DIMENSION(lon,lat,lev2) :: data3d - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev2) :: plevs - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - real, DIMENSION(lev) :: a_coeff - DOUBLE PRECISION, DIMENSION(lev) :: b_coeff - DOUBLE PRECISION :: p0 - DOUBLE PRECISION :: p0array(1) - real, DIMENSION(lev+1) :: a_coeff_bnds - DOUBLE PRECISION, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim,i,ilon2,ilat2 - real :: missing - double precision bt - - ! Other variables: - ! --------------------- - - INTEGER :: it, m, j,k - - - bt=0. -! format classic(NETCDF-3) -! j = CMOR_REPLACE_3 -! format NETCDF-4 - j = CMOR_REPLACE - k = CMOR_EXIT_ON_MAJOR - error_flag = cmor_setup(inpath='Test', netcdf_file_action=j,& - exit_control=k) - print*,'Test code: done' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='lgm', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', model_id="GICCM1", & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - - print*, 'Test code: done 2 lalala' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon) - - - print*, 'Test code: ok calling axis stuff lat',alats - ilat = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - print*, 'Test code: ok calling axis stuff lon',ilat - ilon = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - ilat2 = cmor_axis( & - table='Tables/CMIP5_fx', & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - print*, 'Test code: ok calling axis stuff lon',ilat - ilon2 = cmor_axis( & - table='Tables/CMIP5_fx', & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - print*, 'Test code: ok calling axis stuff pressure',ilon - ipres = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='plevs', & - units='Pa', & - length=lev2, & - coord_vals=plevs) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - print*, 'Test code: ok calling axis stuff time',ipres,ntimes - itim = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='30 days') - - ! define model eta levels (although these must be provided, they will - ! actually be replaced by a+b before writing the netCDF file) - zlevs = (/ 0.1, 0.3, 0.55, 0.7, 0.9 /) - zlev_bnds=(/ 0.,.2, .42, .62, .8, 1. /) - - print*, 'Test code: ok calling axis stuff lev2',itim - ilev = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='standard_hybrid_sigma', & - units="1", & - length=lev, & - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - print*, 'Test code: ok called stuff lev2',ilev - ! define z-factors needed to transform from model level to pressure - p0 = 1.e5 - p0array(1)=p0 - a_coeff = (/ 0.1, 0.2, 0.3, 0.22, 0.1 /) - b_coeff = (/ 0.0, 0.1, 0.2, 0.5, 0.8 /) - - a_coeff_bnds=(/0.,.15, .25, .25, .16, 0./) - b_coeff_bnds=(/0.,.05, .15, .35, .65, 1./) - - print*, 'Test code: zfactor p0' - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='p0', & - units='Pa', & - zfactor_values = p0) - - print*, 'Test code: result',error_flag - print*, 'Test code: zfactor b' - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='b', & - axis_ids= (/ ilev /), & - zfactor_values = b_coeff, & - zfactor_bounds = b_coeff_bnds ) - - print*, 'Test code: result',error_flag - print*, 'Test code: zfactor a' - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='a', & - axis_ids= (/ ilev /), & - zfactor_values = a_coeff, & - zfactor_bounds = a_coeff_bnds ) - - print*, 'Test code: result',error_flag - print*, 'Test code: zfactor ps' - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - print*, 'Test code: result',zfactor_id - print*, 'Test code: var3d' - missing = 1.e28 - var3d_ids(1) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(1), & - units=units3d(1), & - axis_ids=(/ ilon, ilat, ilev, itim /), & - missing_value=missing, & - original_name=varin3d(1)) - - ! Define variables appearing in IPCC table A1c that are a function of pressure - ! (3-d variables) - - print*, 'Test code: result',var3d_ids(1) - DO m=2,n3d - print*, 'Test code: var: ',entry3d(m) - var3d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry3d(m), & - units=units3d(m), & - axis_ids=(/ ilon, ilat, ipres, itim /), & - missing_value=missing, & - original_name=varin3d(m)) - print*, 'Test code: result',var3d_ids(m) - ENDDO - - - ! Define variables appearing in IPCC table A1a (2-d variables) - - DO m=1,n2d - print*, 'Test code: var: ',entry2d(m) - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_fx', & - table_entry=entry2d(m), & - units=units2d(m), & - ! axis_ids=(/ ilon, ilat, itim /), & - axis_ids=(/ ilon2, ilat2 /), & - missing_value=missing, & - positive=positive2d(m), & - original_name=varin2d(m)) - print*, 'Test code: result',var2d_ids(m) - ENDDO - - PRINT*, 'Test code: ' - PRINT*, 'Test code: completed everything up to writing output fields ' - PRINT*, 'Test code: ' - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - call read_time(it, time(1), bnds_time) - call read_3d_input_files(it, varin3d(1), data3d) - - error_flag = cmor_write( & - var_id = var3d_ids(1), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - call read_2d_input_files(it, 'PSURF', data2d) - - error_flag = cmor_write( & - var_id = zfactor_id, & - data = data2d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids(1) ) - - print*, 'Test code: result',error_flag - ! Cycle through the 3-d fields (stored on pressure levels), - ! and retrieve the requested variable and append each to the - ! appropriate netCDF file. - - DO m=2,n3d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_3d_input_files(it, varin3d(m), data3d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - print*, ' Writing 3D variable:',var3d_ids(m) - error_flag = cmor_write( & - var_id = var3d_ids(m), & - data = data3d, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) 'Test code: Error encountered writing IPCC Table A1c ' & - // 'field ', entry3d(m), ', which I call ', varin3d(m) - write(*,*) 'Test code: Was processing time sample: ', time - - END IF - - END DO -!!$ -!!$ ! Cycle through the 2-d fields, retrieve the requested variable and -!!$ ! append each to the appropriate netCDF file. -!!$ - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - print*, 'varinf',varin2d(m) - call read_2d_input_files(it, varin2d(m), data2d) - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - print*, 'Writing var 2d:',var2d_ids(m),entry2d(m) - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data2d, & - ntimes_passed = 0 ) - !ntimes_passed = 1, & - !time_vals = time, & - !time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) 'Test code: Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) 'Test code: Was processing time sample: ', time - - END IF - - END DO - - END DO time_loop - - error_flag = cmor_close() - -end program testing diff --git a/Test/test_station_data.f90 b/Test/test_station_data.f90 deleted file mode 100644 index 23748e0d2e7254c06856926e84357aaadd030f66..0000000000000000000000000000000000000000 --- a/Test/test_station_data.f90 +++ /dev/null @@ -1,330 +0,0 @@ -MODULE local_subs - - USE cmor_users_functions -!!$ PRIVATE -!!$ PUBLIC read_coords, read_time, read_3d_input_files, read_2d_input_files -CONTAINS - - SUBROUTINE read_coords(alats, alons, plevs, bnds_lat, bnds_lon, station, st_lons, st_lats) - - IMPLICIT NONE - - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: alons - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: plevs - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lat - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:,:) :: bnds_lon - INTEGER, INTENT(OUT), DIMENSION(:) :: station - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: st_lats - DOUBLE PRECISION, INTENT(OUT), DIMENSION(:) :: st_lons - - INTEGER :: i, j, k - - DO i = 1, SIZE(alons) - alons(i) = (i-1)*360./SIZE(alons) - bnds_lon(1,i) = (i - 1.5)*360./SIZE(alons) - bnds_lon(2,i) = (i - 0.5)*360./SIZE(alons) - END DO - - DO i = 1, SIZE(alats) - alats(i) = (size(alats)+1-i)*10 - bnds_lat(1,i) = (size(alats)+1-i)*10 + 5. - bnds_lat(2,i) = (size(alats)+1-i)*10 - 5. - END DO - - DO i = 1, SIZE(plevs) - plevs(i) = i*1.0e4 - END DO - plevs = (/100000., 92500., 85000., 70000.,& - 60000., 50000., 40000., 30000., 25000., 20000.,& - 15000., 10000., 7000., 5000., 3000., 2000., 1000. /) - - k = 1 - DO i = 1, SIZE(alons) - DO j = 1, SIZE(alats) - station(k) = k - st_lons(k) = alons(i) - st_lats(k) = alats(j) - k = k+1 - END DO - END DO - - - RETURN - END SUBROUTINE read_coords - - SUBROUTINE read_time(it, time, time_bnds) - - IMPLICIT NONE - - INTEGER, INTENT(IN) :: it - DOUBLE PRECISION, INTENT(OUT) :: time - DOUBLE PRECISION, INTENT(OUT), DIMENSION(2,1) :: time_bnds - - time = (it-0.5)*30. - time_bnds(1,1) = (it-1)*30. - time_bnds(2,1) = it*30. - - RETURN - END SUBROUTINE read_time - -include "reader_2D_3D.f90" - -END MODULE local_subs - - -!======================================================= -program testing - use cmor_users_functions - use local_subs - implicit none - integer error_flag - INTEGER, PARAMETER :: ntimes = 2 ! number of time samples to process - INTEGER, PARAMETER :: lon = 4 ! number of longitude grid cells - INTEGER, PARAMETER :: lat = 3 ! number of latitude grid cells - INTEGER, PARAMETER :: lev = 17 ! number of standard pressure levels - INTEGER, PARAMETER :: nst = 12 ! number of stations - INTEGER, PARAMETER :: n2d = 4 ! number of IPCC Table A1a fields to be - ! output. - INTEGER, PARAMETER :: n3d = 3 ! number of IPCC Table A1c fields to - ! be output. - ! My variable names for IPCC Table A1c fields - CHARACTER (LEN=5), DIMENSION(n3d) :: & - varin3d=(/'CLOUD', 'U ', 'T '/) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n3d) :: & - units3d=(/ '% ', 'm s-1 ', 'K ' /) - - ! Corresponding IPCC Table A1c entry (variable name) - CHARACTER (LEN=2), DIMENSION(n3d) :: entry3d = (/ 'cl', 'ua', 'ta' /) - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=8), DIMENSION(n2d) :: & - varin2d=(/ 'LATENT ', 'TSURF ', 'SOIL_WET', 'PSURF ' /) - - ! Units appropriate to my data - CHARACTER (LEN=6), DIMENSION(n2d) :: & - units2d=(/ 'W m-2 ', 'K ', 'kg m-2', 'Pa ' /) - - CHARACTER (LEN=4), DIMENSION(n2d) :: & - positive2d= (/ 'down', ' ', ' ', ' ' /) - - ! Corresponding IPCC Table A1a entry (variable name) - CHARACTER (LEN=5), DIMENSION(n2d) :: & - entry2d = (/ 'hfls ', 'tas ', 'mrsos', 'ps ' /) - - INTEGER igrid; - -! uninitialized variables used in communicating with CMOR: -! --------------------------------------------------------- - - INTEGER :: znondim_id, zfactor_id - INTEGER, DIMENSION(n2d) :: var2d_ids - INTEGER, DIMENSION(n3d) :: var3d_ids - REAL, DIMENSION(lon,lat) :: data2d - real, DIMENSION(lon*lat) :: data1dtest - REAL, DIMENSION(lon,lat,lev) :: data3d - REAL, DIMENSION(lon*lat,lev) :: data2d_st - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(lev) :: plevs - INTEGER, DIMENSION(lon*lat) :: station - DOUBLE PRECISION, DIMENSION(lon*lat) :: st_lons - DOUBLE PRECISION, DIMENSION(lon*lat) :: st_lats - DOUBLE PRECISION, DIMENSION(1) :: time - DOUBLE PRECISION, DIMENSION(2,1):: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - real, DIMENSION(lev) :: a_coeff - DOUBLE PRECISION, DIMENSION(lev) :: b_coeff - DOUBLE PRECISION :: p0,bt - DOUBLE PRECISION :: p0array(1) - real, DIMENSION(lev+1) :: a_coeff_bnds - DOUBLE PRECISION, DIMENSION(lev+1) :: b_coeff_bnds - INTEGER :: ilon, ilat, ipres, ilev, itim, i, ist,itim2 - real :: missing - - ! Other variables: - ! --------------------- - - INTEGER :: it, m, j,k - bt=0. - j = CMOR_REPLACE - k = CMOR_EXIT_ON_MAJOR - error_flag = cmor_setup(inpath='Test', netcdf_file_action=j,& - exit_control=k) - print*,'Test code: done' - error_flag = cmor_dataset( & - outpath='Test', & - experiment_id='abrupt 4XCO2', & - institution= & - 'GICC (Generic International Climate Center, ' // & - 'Geneva, Switzerland)', & - source='GICCM1 (2002): ' // & - 'atmosphere: GICAM3 (gicam_0_brnchT_itea_2, T63L32); '// & - 'ocean: MOM (mom3_ver_3.5.2, 2x3L15); ' // & - 'sea ice: GISIM4; land: GILSM2.5', & - calendar='360_day', & - realization=1, & - history='Output from archive/giccm_03_std_2xCO2_2256.', & - comment='Equilibrium reached after 30-year spin-up ' // & - 'after which data were output starting with nominal '// & - 'date of January 2030', & - references='Model described by Koder and Tolkien ' // & - '(J. Geophys. Res., 2001, 576-591). Also ' // & - 'see http://www.GICC.su/giccm/doc/index.html ' // & - ' 2XCO2 simulation described in Dorkey et al. ' // & - '(Clim. Dyn., 2003, 323-357.)', model_id="GICCM1", & - forcing='TO',contact="Barry Bonds",institute_id="PCMDI",& - parent_experiment_rip="N/A",parent_experiment_id="N/A",branch_time=bt) - print*, 'Test code: done 2 lalala' - - call read_coords(alats, alons, plevs, bnds_lat, bnds_lon, station, st_lons, st_lats) - - - print*, 'Test code: ok calling axis stuff station' - ist = cmor_axis( & - table='Tables/CMIP5_grids', & - table_entry='i_index', & - units=' ', & - length=nst, & - coord_vals=station ) - - - print*, 'Test code: ok calling axis stuff pressure',ist - ipres = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='plevs', & - units='Pa', & - length=lev, & - coord_vals=plevs) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - print*, 'Test code: ok calling axis stuff time',ipres - itim = cmor_axis( & - table='Tables/CMIP5_Amon', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - itim2 = cmor_axis( & - table='Tables/CMIP5_Lmon', & - table_entry='time', & - units='days since 2030-1-1', & - length=ntimes, & - interval='1 month') - - - ! to make it a station data, we need to define the grid with lon/lat - ! information. CMOR will then add the 'longitude' and 'latitude' - ! variables as assosiated to the station data. - ! You do not set up lon/lat as axis variables for the station data - ! note - the first parameter has ot be an array (of dim=1 in this example) - igrid = cmor_load_table("Tables/CMIP5_grids") - igrid = cmor_grid((/ist/), st_lats, st_lons) - - write(*,'(a, 12f6.1)') 'lons: ',st_lons - write(*,'(a, 12f6.1)') 'lats: ',st_lats - - !=============================================================== - print*, ' ' - - - ! Define variables appearing in IPCC table A1a (2-d variables) - DO m=1,4 - print*, 'Test code: var: ',m,entry2d(m) - if (m.eq.3) then - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Lmon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ igrid, itim2 /), & - missing_value=missing, & - positive=positive2d(m), & - original_name=varin2d(m)) - else - var2d_ids(m) = cmor_variable( & - table='Tables/CMIP5_Amon', & - table_entry=entry2d(m), & - units=units2d(m), & - axis_ids=(/ igrid, itim /), & - missing_value=missing, & - positive=positive2d(m), & - original_name=varin2d(m)) - endif - print*, 'Test code: result',var2d_ids(m) - ENDDO - - - PRINT*, 'Test code: ' - PRINT*, 'Test code: completed everything up to writing output fields ' - PRINT*, 'Test code: ' - time_loop: DO it=1, ntimes - - ! In the following loops over the 3d and 2d fields, the user-written - ! subroutines (read_3d_input_files and read_2d_input_files) retrieve - ! the requested IPCC table A1c and table A1a fields and store them in - ! data3d and data2d, respectively. In addition a user-written code - ! (read_time) retrieves the time and time-bounds associated with the - ! time sample (in units of 'days since 1970-1-1', consistent with the - ! axis definitions above). The bounds are set to the beginning and - ! the end of the month retrieved, indicating the averaging period. - - ! The user must write a code to obtain the times and time-bounds for - ! the time slice. The following line is simply a place-holder for - ! the user's code, which should replace it. - - call read_time(it, time(1), bnds_time) - - -!!$ -!!$ ! Cycle through the 2-d fields, retrieve the requested variable and -!!$ ! append each to the appropriate netCDF file. -!!$ - DO m=1,n2d - - ! The user must write the code that fills the arrays of data - ! that will be passed to CMOR. The following line is simply a - ! a place-holder for the user's code, which should replace it. - - call read_2d_input_files(it, varin2d(m), data2d) - k = 1 - DO j = 1, lat - data1dtest(k:k+lat) = data2d(:,j) - k = k+lat+1 - END DO - !write(*,'(a, 12(f8.1,1x))'), entry2d(m), data1dtest - - ! append a single time sample of data for a single field to - ! the appropriate netCDF file. - - error_flag = cmor_write( & - var_id = var2d_ids(m), & - data = data1dtest, & - ntimes_passed = 1, & - time_vals = time, & - time_bnds = bnds_time ) - - IF (error_flag < 0) THEN - ! write diagnostic messages to standard output device - write(*,*) 'Test code: Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d(m), ', which I call ', varin2d(m) - write(*,*) 'Test code: Was processing time sample: ', time - - END IF - - END DO - - - END DO time_loop - - error_flag = cmor_close() - -end program testing diff --git a/Test/wegner_test.f90 b/Test/wegner_test.f90 deleted file mode 100644 index 70cfd83a561816dfe1ce5c489103e146125cdf91..0000000000000000000000000000000000000000 --- a/Test/wegner_test.f90 +++ /dev/null @@ -1,447 +0,0 @@ -module my_subs - -contains - -subroutine levrein(mlev, alev, blev, zlev, alevb, blevb, zlevb, p0) - -integer :: mlev -double precision, intent(INOUT),dimension(mlev) :: zlev -double precision, intent(INOUT),dimension(mlev+1) :: zlevb -real, dimension(mlev) :: slev -real, intent(INOUT),dimension(mlev) :: alev, blev -real, intent(INOUT),dimension(mlev+1) :: alevb, blevb -real , intent(inout) :: p0 -p0=101325.0 - -slev=(/ & - 0.00000000000000000,& - 2000.00000000000000000,& - 4000.00000000000000000,& - 6000.00000000000000000,& - 8000.00000000000000000,& - 9976.13671875000000000,& -11820.53906250000000000,& -13431.39453125000000000,& -14736.35546875000000000,& -15689.20703125000000000,& -16266.60937500000000000,& -16465.00390625000000000,& -16297.62109375000000000,& -15791.59765625000000000,& -14985.26953125000000000,& -13925.51953125000000000,& -12665.29296875000000000,& -11261.23046875000000000,& - 9771.40625000000000000,& - 8253.21093750000000000,& - 6761.33984375000000000,& - 5345.91406250000000000,& - 4050.71777343750000000,& - 2911.56933593750000000,& - 1954.80517578125000000,& - 1195.88989257812500000,& - 638.14892578125000000,& - 271.62646484375000000,& - 72.06358337402343750,& - 0.00000000000000000,& - 0.00000000000000000,& - 0.00000000000000000 /) - -do i=1,mlev - alev(i)=slev(i)/p0 -end do -blev=(/ & -0.00000000000000000,& -0.00000000000000000,& -0.00000000000000000,& -0.00000000000000000,& -0.00000000000000000,& -0.00039085815660655,& -0.00291970069520175,& -0.00919413194060326,& -0.02031915634870529,& -0.03697485849261284,& -0.05948764085769653,& -0.08789497613906860,& -0.12200361490249634,& -0.16144150495529175,& -0.20570325851440430,& -0.25418859720230103,& -0.30623537302017212,& -0.36114501953125000,& -0.41820228099822998,& -0.47668814659118652,& -0.53588658571243286,& -0.59508424997329712,& -0.65356457233428955,& -0.71059441566467285,& -0.76540523767471313,& -0.81716698408126831,& -0.86495584249496460,& -0.90771585702896118,& -0.94421321153640747,& -0.97298520803451538,& -0.99228149652481079,& -1.00000000000000000 /) - -do i=1,mlev - zlev(i)=alev(i)+blev(i) -end do -do i=2,mlev - alevb(i)=abs((alev(i)+alev(i-1))/2) -end do -alevb(1)=0. -alevb(mlev+1)=0. - -do i=2,mlev - blevb(i)=abs((blev(i)+blev(i-1))/2) -end do -blevb(1)=0. -blevb(mlev+1)=1.0 - -do i=2,mlev - zlevb(i)=abs((zlev(i)+zlev(i-1))/2) -end do -zlevb(1)=0. -zlevb(mlev+1)=1.0 -print*, 'done levrein going out' -end subroutine levrein - -subroutine latrein(lat, lon, latd, lond, bndslat, bndslon) - -double precision, dimension(lon) :: lond -double precision, dimension(lat) :: latd -double precision, dimension(2,lon) :: bndslon -double precision, dimension(2,lat) :: bndslat -double precision, dimension(17) :: plevs - -integer :: i - -lond(1)=0.0 -bndslon(1,1)=-0.9375 -bndslon(2,1)=0.9375 -do i=1,191 - lond(i+1) =lond(i)+1.875000 - bndslon(1,i+1)=lond(i+1)-0.9375 - bndslon(2,i+1)=lond(i+1)+0.9375 -end do - -latd=(/ & - -88.572,-86.723,-84.862,-82.999,-81.135,-79.271,-77.406,-75.541,-73.676,-71.811, & - -69.946,-68.081,-66.216,-64.351,-62.486,-60.620,-58.755,-56.890,-55.025,-53.160, & - -51.294,-49.429,-47.564,-45.699,-43.833,-41.968,-40.103,-38.238,-36.372,-34.507, & - -32.642,-30.777,-28.911,-27.046,-25.181,-23.316,-21.450,-19.585,-17.720,-15.855, & - -13.989,-12.124,-10.259,-8.394,-6.528,-4.663,-2.798,-0.933, 0.933, 2.798, & - 4.663, 6.528, 8.394, 10.259, 12.124, 13.989, 15.855, 17.720, 19.585, 21.450, & - 23.316,25.181,27.046,28.911,30.777,32.642,34.507,36.372,38.238,40.103, & - 41.968,43.833,45.699,47.564,49.429,51.294,53.160,55.025,56.890,58.755, & - 60.620,62.486,64.351,66.216,68.081,69.946,71.811,73.676,75.541,77.406, & - 79.271,81.135,82.999,84.862,86.723,88.572 /) - -do i=1,95 - bndslat(2,i)=latd(i)-((latd(i)-(latd(i+1)))/2.) - bndslat(1,i+1)=bndslat(2,i) -end do -bndslat(1,1)=-90.0 -bndslat(2,96)=90.0 - -end subroutine latrein - - -subroutine timdatrein(nrec, lev, lat, lon, time, bndstime, data2, data3) - -double precision, dimension(nrec) :: time -double precision, dimension(2,nrec) :: bndstime - -real, dimension(lon*lat) :: dummy2, dummy3 -real, dimension(lon,lat,nrec) :: data2 -real, dimension(lon,lat,lev,nrec):: data3 -integer :: jtime, icode, ilevel, nsize -integer :: i, nyear, ihalf, nrec -integer :: iyear, imon, iday, im, id, itime -integer :: jd1860, jdactu -character (len=50) :: filearg - -! filenamen als argument fuer program einlesen: -! filearg 1 ist 2d feld -! filearg 2 ist 3d feld -! -call getarg(1, filearg) -open(1,file=filearg, form='unformatted') -call getarg(2, filearg) -open(2,file=filearg, form='unformatted') - -! Zeit seit 1860 01 01 12 -! Julian date 1859 12 31 12 -! -jd1860 = 31-32075+1461*(1859+4800+(12-14)/12)/4+367*(12-2-(12-14)/12*12) & - /12-3*((1859+4900+(12-14)/12)/100)/4 - -do i=1,nrec - read(1) jtime, icode, ilevel,nsize - read(1) dummy2 - - iyear = int(jtime/10000) - im = iyear*100 - imon = int(jtime/100)-im - id = imon*100 - - monlen: select case (imon) - case(4,6,9,11) - iday = 30 - case(2) - if(mod(iyear,4).eq.0) then - if (mod(iyear,100).eq.0) then - iday = 28 - else - iday = 29 - endif - if(mod(iyear,400).eq.0) iday=29 - else - iday = 28 - endif - case default - iday = 31 - end select monlen - ihalf=15 - print*, itime, iyear, imon, iday - jdactu = ihalf-32075+1461*(iyear+4800+(imon-14)/12)/4+367*(imon-2-(imon-14)/12*12) & - /12-3*((iyear+4900+(imon-14)/12)/100)/4 - time(i) = jdactu - jd1860 - bndstime(1,i) = time(i) - ihalf - bndstime(2,i) = time(i) + (iday-ihalf) - print*, bndstime(1,i), time(i), bndstime(2,i) - - do j=1,lat - do k=1,lon - data2(k,j,i)= dummy2(lon*(j-1) + k) - end do - end do - - do l=1,lev - read(2) jtime, icode, ilevel, nsize - read(2) dummy3 - do j=1,lat - do k=1,lon - data3(k,j,l,i)= dummy3(lon*(j-1) + k) - end do - end do - end do - -end do - print*, time - -end subroutine timdatrein - -end module my_subs - -program wegner - ! - use cmor_users_functions - - use my_subs - - implicit none - - ! dimension parameters: - ! --------------------------------- - - INTEGER, PARAMETER :: nti = 24 - INTEGER, PARAMETER :: lon = 192 - INTEGER, PARAMETER :: lat = 96 - INTEGER, PARAMETER :: lev = 32 - - ! My variable names for IPCC Table A1a fields - CHARACTER (LEN=50) :: TABLE = 'Test/IPCC_table_A1' - CHARACTER (LEN=50) :: OUTDIR = 'Test' - CHARACTER (LEN=50) :: TABELLE = 'Test/IPCC_table_A1' - CHARACTER (LEN=5) :: varin2d = 'MSLP ' - CHARACTER (LEN=5) :: units2d = 'Pa ' - CHARACTER (LEN=5) :: posit2d = ' ' - CHARACTER (LEN=5) :: entry2d = 'ps ' - CHARACTER (LEN=5) :: varin3d = 'CLOUD' - CHARACTER (LEN=5) :: units3d = '% ' - CHARACTER (LEN=5) :: entry3d = 'cl ' - - - ! uninitialized variables used in communicating with CMOR: - ! --------------------------------------------------------- - - INTEGER :: error_flag, j,k - INTEGER :: znondim_id, zfactor_id=1 - INTEGER :: var2d_ids - INTEGER :: var3d_ids - REAL, DIMENSION(lon,lat,nti) :: data2d - REAL, DIMENSION(lon,lat,lev,nti) :: data3d - REAL, DIMENSION(lon,lat) :: data2d2 - DOUBLE PRECISION, DIMENSION(lat) :: alats - DOUBLE PRECISION, DIMENSION(lon) :: alons - DOUBLE PRECISION, DIMENSION(nti) :: time - DOUBLE PRECISION, DIMENSION(2,nti) :: bnds_time - DOUBLE PRECISION, DIMENSION(2,lat) :: bnds_lat - DOUBLE PRECISION, DIMENSION(2,lon) :: bnds_lon - DOUBLE PRECISION, DIMENSION(lev) :: zlevs - DOUBLE PRECISION, DIMENSION(lev+1) :: zlev_bnds - REAL, DIMENSION(lev) :: a_coeff, b_coeff - REAL, DIMENSION(lev+1) :: a_coeff_bnds, b_coeff_bnds - REAL :: p0 - INTEGER :: ilon, ilat, ipres, ilev, itim - - ! Other variables: - ! --------------------- - - INTEGER :: it - - ! read the grid - ! -------------------- - - call latrein(lat, lon, alats, alons, bnds_lat, bnds_lon) - - ! Specify path where tables can be found and indicate that existing - ! netCDF files should not be overwritten. - - error_flag = cmor_setup(inpath='TABLE', & - netcdf_file_action='replace', & - exit_control=1) - - ! Define dataset as output from ECHAM5-OM1 - ! ----------------------------------------- - error_flag = cmor_dataset( & - outpath = OUTDIR, & - experiment_id ='pre-industrial control experiment', & - institution ='MPI (Max Planck Institute for Meteorology,' // & - 'Hamburg, Germany)', & - source ='ECHAM5/MPI-OM(2004):'// & - 'atmosphere: ECHAM5 (T63L32);'// & - 'ocean: OM (1x1L41); '// & - 'sea ice: ECHAM5', & - calendar ='gregorian', & - realization =1, & - contact = 'Joerg Wegner (wegner@dkrz.de) ', & - history='Output from CERA Database/EH5_OM_20C_1_TEMP2', & - comment='anthropogenic forcing only', & - references='ECHAM5: E. Roeckner et. all, 2003,' // & - 'The atmospheric general circulation model ECHAM5' // & - 'Report No. 349' // & - 'OM: Marsland et. all, 2003,' // & - 'The Max-Planck-Institute global ocean/sea ice model'// & - 'with orthogonal curvelinear coordinates' // & - 'Ocean Modell., 5, 91-127.' ) - - ! Define all axes that will be needed - - ilat = cmor_axis( & - table=TABELLE, & - table_entry='latitude', & - units='degrees_north', & - length=lat, & - coord_vals=alats, & - cell_bounds=bnds_lat) - - ilon = cmor_axis( & - table=TABELLE, & - table_entry='longitude', & - length=lon, & - units='degrees_east', & - coord_vals=alons, & - cell_bounds=bnds_lon) - - ! note that the time axis is defined next, but the time coordinate - ! values and bounds will be passed to cmor through function - ! cmor_write (later, below). - - itim = cmor_axis( & - table=TABELLE, & - table_entry='time', & - units='days since 1860-1-1', & - length=nti, & - interval='12 minutes') - - call levrein(lev, a_coeff, b_coeff, zlevs, a_coeff_bnds, b_coeff_bnds, zlev_bnds, p0) - print*, 'done levrein' - print*, 'sure ?' - ilev = cmor_axis( & - table=TABELLE, & - table_entry='standard_hybrid_sigma',& - length=lev, & - units = '1',& - coord_vals=zlevs, & - cell_bounds=zlev_bnds) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='p0', & - units='Pa', & - zfactor_values = p0) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='b', & - axis_ids= (/ ilev /), & - zfactor_values = b_coeff, & - zfactor_bounds = b_coeff_bnds ) - - error_flag = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='a', & - axis_ids= (/ ilev /), & - zfactor_values = a_coeff, & - zfactor_bounds = a_coeff_bnds ) - - zfactor_id = cmor_zfactor( & - zaxis_id=ilev, & - zfactor_name='ps', & - axis_ids=(/ ilon, ilat, itim /), & - units='Pa' ) - - - var2d_ids = cmor_variable( & - table=TABELLE, & - table_entry=entry2d, & - units=units2d, & - axis_ids=(/ ilon, ilat, itim /), & - missing_value=1.0e20, & - positive=posit2d, & - original_name=varin2d) - - var3d_ids = cmor_variable( & - table=TABELLE, & - table_entry=entry3d, & - units=units3d, & - axis_ids=(/ ilon, ilat, ilev, itim /), & - missing_value=1.0e20, & - original_name=varin3d) - - print*, ' ' - print*, 'completed everything up to writing output fields ' - print*, ' ' - - call timdatrein(nti, lev, lat, lon, time, bnds_time, data2d, data3d) - - - error_flag = cmor_write( & - var_id = var3d_ids, & - data = data3d, & - ntimes_passed = nti, & - time_vals = time, & - time_bnds = bnds_time ) - - error_flag = cmor_write( & - var_id = var2d_ids, & - data = data2d, & - ntimes_passed = nti, & - time_vals = time, & - time_bnds = bnds_time, & - store_with = var3d_ids ) - - if (error_flag < 0) then - ! write diagnostic messages to standard output device - write(*,*) ' Error encountered writing IPCC Table A1a ' & - // 'field ', entry2d, ', which I call ', varin2d - write(*,*) ' Was processing time sample: ', time - end if - ! Close all files opened by CMOR. - ! ------------------------------- - error_flag = cmor_close() - -end program wegner diff --git a/TestTables/CMIP5_3hr b/TestTables/CMIP5_3hr deleted file mode 100644 index 31e287133f74d33bfce6766b0a34b81049a550f7..0000000000000000000000000000000000000000 --- a/TestTables/CMIP5_3hr +++ /dev/null @@ -1,814 +0,0 @@ -table_id: Table 3hr -modeling_realm: atmos - -frequency: 3hr - -cmor_version: 2.5.0 ! minimum version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 12 November 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip branch_time contact institute_id ! space separated required global attribute - -forcings: N/A Nat Ant GHG SD SI SA TO SO Oz LU Sl Vl SS Ds BC MD OC AA - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'volcano-free hindcast initialized in year XXXX' 'noVolcXXXX' -expt_id_ok: 'prediction with 2010 volcano' 'volcIn2010' -expt_id_ok: 'pre-industrial control' 'piControl' -expt_id_ok: 'historical' 'historical' -expt_id_ok: 'mid-Holocene' 'midHolocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.6' 'rcp26' -expt_id_ok: 'RCP6' 'rcp60' -expt_id_ok: 'ESM pre-industrial control' 'esmControl' -expt_id_ok: 'ESM historical' 'esmHistorical' -expt_id_ok: 'ESM RCP8.5' 'esmrcp85' -expt_id_ok: 'ESM fixed climate 1' 'esmFixClim1' -expt_id_ok: 'ESM fixed climate 2' 'esmFixClim2' -expt_id_ok: 'ESM feedback 1' 'esmFdbk1' -expt_id_ok: 'ESM feedback 2' 'esmFdbk2' -expt_id_ok: '1 percent per year CO2' '1pctCO2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt4xCO2' -expt_id_ok: 'natural-only' 'historicalNat' -expt_id_ok: 'GHG-only' 'historicalGHG' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst2030' -expt_id_ok: 'control SST climatology' 'sstClim' -expt_id_ok: 'CO2 forcing' 'sstClim4xCO2' -expt_id_ok: 'all aerosol forcing' 'sstClimAerosol' -expt_id_ok: 'sulfate aerosol forcing' 'sstClimSulfate' -expt_id_ok: '4xCO2 AMIP' 'amip4xCO2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amipFuture' -expt_id_ok: 'aqua planet control' 'aquaControl' -expt_id_ok: '4xCO2 aqua planet' 'aqua4xCO2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua4K' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip4K' - - -approx_interval: 0.125000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time1 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: height2m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 10.0 -stored_direction: increasing -type: double -value: 2. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: height10m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 30.0 -stored_direction: increasing -type: double -value: 10. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: sdepth1 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: depth -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 0.2 -stored_direction: increasing -type: double -value: 0.05 ! of scalar (singleton) dimension -bounds_values: 0.0 0.1 ! of scalar (singleton) dimension bounds -must_have_bounds: yes -!---------------------------------- -! - -!============ -variable_entry: pr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time:mean -cell_measures: area: areacella -long_name: Precipitation -comment: at surface; includes both liquid and solid phases. This is the 3-hour mean precipitation flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: pr -type: real -valid_min: 0 -valid_max: 0.001254 -ok_min_mean_abs: 2.156e-05 -ok_max_mean_abs: 3.215e-05 -!---------------------------------- -! - -!============ -variable_entry: tas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: point -cell_measures: area: areacella -long_name: Air Temperature -comment: near-surface (usually, 2 meter) air temperature, sampled synoptically. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 height2m -out_name: tas -type: real -valid_min: 180.6 -valid_max: 325.7 -ok_min_mean_abs: 273.5 -ok_max_mean_abs: 281.7 -!---------------------------------- -! - -!============ -variable_entry: hfls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upward Latent Heat Flux -comment: This is the 3-hour mean flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls -type: real -positive: up -valid_min: -76.77 -valid_max: 790.7 -ok_min_mean_abs: 50.39 -ok_max_mean_abs: 73.2 -!---------------------------------- -! - -!============ -variable_entry: hfss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upward Sensible Heat Flux -comment: This is the 3-hour mean flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfss -type: real -positive: up -valid_min: -264.5 -valid_max: 844.8 -ok_min_mean_abs: 10.7 -ok_max_mean_abs: 34.84 -!---------------------------------- -! - -!============ -variable_entry: rlds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downwelling Longwave Radiation -comment: This is the 3-hour mean flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlds -type: real -positive: down -valid_min: 30.71 -valid_max: 520.5 -ok_min_mean_abs: 271.2 -ok_max_mean_abs: 323.6 -!---------------------------------- -! - -!============ -variable_entry: rlus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upwelling Longwave Radiation -comment: This is the 3-hour mean flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlus -type: real -positive: up -valid_min: 43.75 -valid_max: 658 -ok_min_mean_abs: 331.1 -ok_max_mean_abs: 369.9 -!---------------------------------- -! - -!============ -variable_entry: rsds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downwelling Shortwave Radiation -comment: This is the 3-hour mean flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsds -type: real -positive: down -valid_min: -0.002946 -valid_max: 524.4 -ok_min_mean_abs: 143.9 -ok_max_mean_abs: 181.6 -!---------------------------------- -! - -!============ -variable_entry: rsus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upwelling Shortwave Radiation -comment: This is the 3-hour mean flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsus -type: real -positive: up -valid_min: -0.006589 -valid_max: 422.2 -ok_min_mean_abs: 26.22 -ok_max_mean_abs: 43.77 -!---------------------------------- -! - -!============ -variable_entry: uas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: point -long_name: Eastward Near-Surface Wind Speed -comment: sampled synoptically. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 height2m -out_name: uas -type: real -valid_min: -19.01 -valid_max: 18.68 -ok_min_mean_abs: 1.668 -ok_max_mean_abs: 4.106 -!---------------------------------- -! - -!============ -variable_entry: vas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: point -long_name: Northward Near-Surface Wind Speed -comment: sampled synoptically. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 height2m -out_name: vas -type: real -valid_min: -18.04 -valid_max: 22.84 -ok_min_mean_abs: 1.065 -ok_max_mean_abs: 2.678 -!---------------------------------- -! - -!============ -variable_entry: huss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Near-Surface Specific Humidity -comment: near-surface (usually 2 m) specific humidity, sampled synoptically. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 height2m -out_name: huss -type: real -valid_min: -7.21e-06 -valid_max: 0.02992 -ok_min_mean_abs: 0.006391 -ok_max_mean_abs: 0.008749 -!---------------------------------- -! - -!============ -variable_entry: mrsos -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: moisture_content_of_soil_layer -units: kg m-2 -cell_methods: time: point area: mean where land -cell_measures: area: areacella -long_name: Moisture in Upper 0.1 m of Soil Column -comment: Compute the mass of water in all phases in the upper 0.1 meters of soil. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 sdepth1 -out_name: mrsos -type: real -valid_min: -2.008 -valid_max: 146.5 -ok_min_mean_abs: -35.89 -ok_max_mean_abs: 123.3 -!---------------------------------- -! - -!============ -variable_entry: tslsi -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Temperature Where Land or Sea Ice -comment: ""skin"" temperature of all surfaces except open ocean, sampled synoptically. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: tslsi -type: real -!---------------------------------- -! - -!============ -variable_entry: tso -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_surface_temperature -units: K -cell_methods: time: point area: mean where sea -cell_measures: area: areacella -long_name: Sea Surface Temperature -comment: temperature of surface of open ocean, sampled synoptically. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: tso -type: real -!---------------------------------- -! - -!============ -variable_entry: prc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_precipitation_flux -units: kg m-2 s-1 -cell_methods: time:mean -cell_measures: area: areacella -long_name: Convective Precipitation -comment: at surface. This is a 3-hour mean convective precipitation flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prc -type: real -valid_min: 0 -valid_max: 0.0006323 -ok_min_mean_abs: -2.528e-06 -ok_max_mean_abs: 3.209e-05 -!---------------------------------- -! - -!============ -variable_entry: prsn -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: snowfall_flux -units: kg m-2 s-1 -cell_methods: time:mean -cell_measures: area: areacella -long_name: Snowfall Flux -comment: at surface. Includes all forms of precipitating solid phase of water. This is the 3-hour mean snowfall flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prsn -type: real -valid_min: 0 -valid_max: 0.0002987 -ok_min_mean_abs: 1.449e-06 -ok_max_mean_abs: 6.11e-06 -!---------------------------------- -! - -!============ -variable_entry: mrro -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: runoff_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Total Runoff -comment: compute the total runoff (including ""drainage"" through the base of the soil model) leaving the land portion of the grid cell divided by the land area in the grid cell, averaged over the 3-hour interval. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: mrro -type: real -valid_min: -0.0002019 -valid_max: 0.001065 -ok_min_mean_abs: -6.668e-06 -ok_max_mean_abs: 1.874e-05 -!---------------------------------- -! - -!============ -variable_entry: rldscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downwelling Clear-Sky Longwave Radiation -comment: This is a 3-hour mean flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rldscs -type: real -positive: down -valid_min: 33.55 -valid_max: 543.6 -ok_min_mean_abs: 238.6 -ok_max_mean_abs: 293.8 -!---------------------------------- -! - -!============ -variable_entry: rsdscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downwelling Clear-Sky Shortwave Radiation -comment: This is a 3-hour mean flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsdscs -type: real -positive: down -valid_min: -1.748e+30 -valid_max: 518 -ok_min_mean_abs: 206.9 -ok_max_mean_abs: 238.6 -!---------------------------------- -! - -!============ -variable_entry: rluscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upwelling Clear-Sky Shortwave Radiation -comment: This is a 3-hour mean flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rluscs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: ps -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Pressure -comment: sampled synoptically to diagnose atmospheric tides, this is better than mean sea level pressure. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: ps -type: real -valid_min: 4.792e+04 -valid_max: 1.093e+05 -ok_min_mean_abs: 9.606e+04 -ok_max_mean_abs: 9.743e+04 -!---------------------------------- -! - -!============ -variable_entry: clt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total Cloud Fraction -comment: for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud. This is a 3-hour mean. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clt -type: real -valid_min: -0.0001822 -valid_max: 100.2 -ok_min_mean_abs: 39.37 -ok_max_mean_abs: 84.98 -!---------------------------------- -! - -!============ -variable_entry: rsdsdiff -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_diffuse_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downward Diffuse Shortwave Radiation -comment: This is a 3-hour mean flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsdsdiff -type: real -!---------------------------------- -! - diff --git a/TestTables/CMIP5_6hrLev b/TestTables/CMIP5_6hrLev deleted file mode 100644 index 2c2e1aa9a52a3e81a8674b9fc65b28131b08284a..0000000000000000000000000000000000000000 --- a/TestTables/CMIP5_6hrLev +++ /dev/null @@ -1,612 +0,0 @@ -table_id: Table 6hrLev -modeling_realm: atmos - -frequency: 6hr - -cmor_version: 2.5.0 ! minimum version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 12 November 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip branch_time contact institute_id ! space separated required global attribute - -forcings: N/A Nat Ant GHG SD SI SA TO SO Oz LU Sl Vl SS Ds BC MD OC AA - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'volcano-free hindcast initialized in year XXXX' 'noVolcXXXX' -expt_id_ok: 'prediction with 2010 volcano' 'volcIn2010' -expt_id_ok: 'pre-industrial control' 'piControl' -expt_id_ok: 'historical' 'historical' -expt_id_ok: 'mid-Holocene' 'midHolocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.6' 'rcp26' -expt_id_ok: 'RCP6' 'rcp60' -expt_id_ok: 'ESM pre-industrial control' 'esmControl' -expt_id_ok: 'ESM historical' 'esmHistorical' -expt_id_ok: 'ESM RCP8.5' 'esmrcp85' -expt_id_ok: 'ESM fixed climate 1' 'esmFixClim1' -expt_id_ok: 'ESM fixed climate 2' 'esmFixClim2' -expt_id_ok: 'ESM feedback 1' 'esmFdbk1' -expt_id_ok: 'ESM feedback 2' 'esmFdbk2' -expt_id_ok: '1 percent per year CO2' '1pctCO2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt4xCO2' -expt_id_ok: 'natural-only' 'historicalNat' -expt_id_ok: 'GHG-only' 'historicalGHG' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst2030' -expt_id_ok: 'control SST climatology' 'sstClim' -expt_id_ok: 'CO2 forcing' 'sstClim4xCO2' -expt_id_ok: 'all aerosol forcing' 'sstClimAerosol' -expt_id_ok: 'sulfate aerosol forcing' 'sstClimSulfate' -expt_id_ok: '4xCO2 AMIP' 'amip4xCO2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amipFuture' -expt_id_ok: 'aqua planet control' 'aquaControl' -expt_id_ok: '4xCO2 aqua planet' 'aqua4xCO2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua4K' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip4K' - - -approx_interval: 0.250000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -generic_levels: alevel - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time1 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: no -!---------------------------------- -! - -!============ -axis_entry: smooth_level -!============ -! -! This coordinate is a hybrid height coordinate with units of meters (m). -! It increases upward. -! The values of a(k)*ztop, which appear in the formula below, should be stored as smooth_level. -! Note that in the netCDF file the variable will be named "lev", not smooth_level. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sleve_coordinate -units: m -axis: Z -positive: up -long_name: atmosphere smooth level vertical (SLEVE) coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: -200. -valid_max: 800000. -formula: z(n,k,j,i) = a(k)*ztop + b1(k)*zsurf1(n,j,i) + b2(k)*zsurf2(n,j,i) -z_factors: a: a b1: b1 b2: b2 ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -z_bounds_factors: a: a_bnds b1: b1_bnds b2: b2_bnds ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -!---------------------------------- -! -!============ -axis_entry: natural_log_pressure -!============ -! -!This coordinate is dimensionless and varies from near 0 at the surface and increases upward. -! The values of lev(k), which appears in the formula below, should be stored as natural_log_pressure. -! Note that in the netCDF file the variable will be named "lev", not natural_log_pressure. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_ln_pressure_coordinate -axis: Z -long_name: atmosphere natural log pressure coordinate -positive: down -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 20. -formula: p(k) = p0 * exp(-lev(k)) -z_factors: p0: p0 lev: lev -z_bounds_factors: p0: p0 lev: lev_bnds -!---------------------------------- -! -!============ -axis_entry: standard_sigma -!============ -! -! This coordinate is dimensionless and varies from 0 at the model top to 1.0 at the surface. -! The values of sigma(k), which appears in the formula below, should be stored as standard_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -z_factors: ptop: ptop sigma: lev ps: ps -z_bounds_factors: ptop: ptop sigma: lev_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of a(k)+ b(k), which appear in the formula below, should be stored as standard_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_hybrid_sigma. -! -!--------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of ap(k)/p0 + b(k), which appear in the formula below, should be stored as alternate_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not alternate_hybrid_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -z_factors: ap: ap b: b ps: ps -z_bounds_factors: ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! This coordinate has dimension of meters (m) and increases upward. -! The values of a(k) which appear in the formula below, should be stored as hybrid_height. -! Note that in the netCDF file the variable will be named "lev", not hybrid_height. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0.0 -formula: z(k,j,i) = a(k) + b(k)*orog(j,i) -z_factors: a: lev b: b orog: orog -z_bounds_factors: a: lev_bnds b: b_bnds orog: orog -!---------------------------------- -! -! *************************************************************** -! -! Vertical coordinate formula terms: -! -! *************************************************************** -! -! -!============ -variable_entry: orog -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -comment: height above the geoid; as defined here, ""the geoid"" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Report here the height above the present-day geoid. Over ocean, report as 0.0 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: orog -type: real -valid_min: -700 -valid_max: 1.00E+04 -!---------------------------------- -! -! -!============ -variable_entry: p0 -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: reference pressure -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -! -!============ -variable_entry: a -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k+1/2) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ztop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: height of top of model -units: m -!---------------------------------- -! -! -! - -!============ -variable_entry: ta -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_measures: area: areacella -long_name: Air Temperature -comment: on all model levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: ta -type: real -valid_min: 157.1 -valid_max: 326.4 -ok_min_mean_abs: 200.2 -ok_max_mean_abs: 289.9 -!---------------------------------- -! - -!============ -variable_entry: ua -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -long_name: Eastward Wind -comment: on all model levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: ua -type: real -valid_min: -68.65 -valid_max: 136.6 -ok_min_mean_abs: 1.101 -ok_max_mean_abs: 22.42 -!---------------------------------- -! - -!============ -variable_entry: va -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -long_name: Northward Wind -comment: on all model levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: va -type: real -valid_min: -71.1 -valid_max: 69.93 -ok_min_mean_abs: 0.9886 -ok_max_mean_abs: 4.679 -!---------------------------------- -! - -!============ -variable_entry: hus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_measures: area: areacella -long_name: Specific Humidity -comment: on all model levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: hus -type: real -valid_min: -0.000299 -valid_max: 0.02812 -ok_min_mean_abs: -0.0003539 -ok_max_mean_abs: 0.01027 -!---------------------------------- -! - -!============ -variable_entry: ps -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_measures: area: areacella -long_name: Surface Air Pressure -comment: surface pressure, not mean sea level pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: ps -type: real -valid_min: 4.792e+04 -valid_max: 1.093e+05 -ok_min_mean_abs: 9.606e+04 -ok_max_mean_abs: 9.743e+04 -!---------------------------------- -! - diff --git a/TestTables/CMIP5_Amon b/TestTables/CMIP5_Amon deleted file mode 100644 index 281583c996b7b90bf856cafcf93e748fe45146af..0000000000000000000000000000000000000000 --- a/TestTables/CMIP5_Amon +++ /dev/null @@ -1,2387 +0,0 @@ -table_id: Table Amon -modeling_realm: atmos - -frequency: mon - -cmor_version: 2.5.0 ! minimum version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 12 November 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip branch_time contact institute_id ! space separated required global attribute - -forcings: N/A Nat Ant GHG SD SI SA TO SO Oz LU Sl Vl SS Ds BC MD OC AA - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'volcano-free hindcast initialized in year XXXX' 'noVolcXXXX' -expt_id_ok: 'prediction with 2010 volcano' 'volcIn2010' -expt_id_ok: 'pre-industrial control' 'piControl' -expt_id_ok: 'historical' 'historical' -expt_id_ok: 'mid-Holocene' 'midHolocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.6' 'rcp26' -expt_id_ok: 'RCP6' 'rcp60' -expt_id_ok: 'ESM pre-industrial control' 'esmControl' -expt_id_ok: 'ESM historical' 'esmHistorical' -expt_id_ok: 'ESM RCP8.5' 'esmrcp85' -expt_id_ok: 'ESM fixed climate 1' 'esmFixClim1' -expt_id_ok: 'ESM fixed climate 2' 'esmFixClim2' -expt_id_ok: 'ESM feedback 1' 'esmFdbk1' -expt_id_ok: 'ESM feedback 2' 'esmFdbk2' -expt_id_ok: '1 percent per year CO2' '1pctCO2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt4xCO2' -expt_id_ok: 'natural-only' 'historicalNat' -expt_id_ok: 'GHG-only' 'historicalGHG' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst2030' -expt_id_ok: 'control SST climatology' 'sstClim' -expt_id_ok: 'CO2 forcing' 'sstClim4xCO2' -expt_id_ok: 'all aerosol forcing' 'sstClimAerosol' -expt_id_ok: 'sulfate aerosol forcing' 'sstClimSulfate' -expt_id_ok: '4xCO2 AMIP' 'amip4xCO2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amipFuture' -expt_id_ok: 'aqua planet control' 'aquaControl' -expt_id_ok: '4xCO2 aqua planet' 'aqua4xCO2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua4K' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip4K' - - -approx_interval: 30.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -generic_levels: alevel alevhalf - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: plevs -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -tolerance: 0.001 -type: double -requested: 100000. 92500. 85000. 70000. 60000. 50000. 40000. 30000. 25000. 20000. 15000. 10000. 7000. 5000. 3000. 2000. 1000. ! space-separated list of requested coordinates -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time2 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -climatology: yes -!---------------------------------- -! - - -!============ -axis_entry: height2m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 10.0 -stored_direction: increasing -type: double -value: 2. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: height10m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 30.0 -stored_direction: increasing -type: double -value: 10. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - -!============ -axis_entry: smooth_level -!============ -! -! This coordinate is a hybrid height coordinate with units of meters (m). -! It increases upward. -! The values of a(k)*ztop, which appear in the formula below, should be stored as smooth_level. -! Note that in the netCDF file the variable will be named "lev", not smooth_level. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sleve_coordinate -units: m -axis: Z -positive: up -long_name: atmosphere smooth level vertical (SLEVE) coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: -200. -valid_max: 800000. -formula: z(n,k,j,i) = a(k)*ztop + b1(k)*zsurf1(n,j,i) + b2(k)*zsurf2(n,j,i) -z_factors: a: a b1: b1 b2: b2 ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -z_bounds_factors: a: a_bnds b1: b1_bnds b2: b2_bnds ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -!---------------------------------- -! -!============ -axis_entry: natural_log_pressure -!============ -! -!This coordinate is dimensionless and varies from near 0 at the surface and increases upward. -! The values of lev(k), which appears in the formula below, should be stored as natural_log_pressure. -! Note that in the netCDF file the variable will be named "lev", not natural_log_pressure. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_ln_pressure_coordinate -axis: Z -long_name: atmosphere natural log pressure coordinate -positive: down -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 20. -formula: p(k) = p0 * exp(-lev(k)) -z_factors: p0: p0 lev: lev -z_bounds_factors: p0: p0 lev: lev_bnds -!---------------------------------- -! -!============ -axis_entry: standard_sigma -!============ -! -! This coordinate is dimensionless and varies from 0 at the model top to 1.0 at the surface. -! The values of sigma(k), which appears in the formula below, should be stored as standard_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -z_factors: ptop: ptop sigma: lev ps: ps -z_bounds_factors: ptop: ptop sigma: lev_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of a(k)+ b(k), which appear in the formula below, should be stored as standard_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_hybrid_sigma. -! -!--------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of ap(k)/p0 + b(k), which appear in the formula below, should be stored as alternate_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not alternate_hybrid_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -z_factors: ap: ap b: b ps: ps -z_bounds_factors: ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! This coordinate has dimension of meters (m) and increases upward. -! The values of a(k) which appear in the formula below, should be stored as hybrid_height. -! Note that in the netCDF file the variable will be named "lev", not hybrid_height. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0.0 -formula: z(k,j,i) = a(k) + b(k)*orog(j,i) -z_factors: a: lev b: b orog: orog -z_bounds_factors: a: lev_bnds b: b_bnds orog: orog -!---------------------------------- -! -! *************************************************************** -! -! Vertical coordinate formula terms: -! -! *************************************************************** -! -! -!============ -variable_entry: orog -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -comment: height above the geoid; as defined here, ""the geoid"" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Report here the height above the present-day geoid. Over ocean, report as 0.0 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: orog -type: real -valid_min: -700 -valid_max: 1.00E+04 -!---------------------------------- -! -! -!============ -variable_entry: p0 -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: reference pressure -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -! -!============ -variable_entry: a -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k+1/2) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ztop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: height of top of model -units: m -!---------------------------------- -! -! -! - -!============ -variable_entry: tas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Near-Surface Air Temperature -comment: near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tas -type: real -valid_min: 180.6 -valid_max: 325.7 -ok_min_mean_abs: 273.5 -ok_max_mean_abs: 281.7 -!---------------------------------- -! - -!============ -variable_entry: ts -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Temperature -comment: ""skin"" temperature (i.e., SST for open ocean) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ts -type: real -valid_min: 176.8 -valid_max: 331.8 -ok_min_mean_abs: 274.2 -ok_max_mean_abs: 281.8 -!---------------------------------- -! - -!============ -variable_entry: tasmin -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: minimum within days time: mean over days -cell_measures: area: areacella -long_name: Daily Minimum Near-Surface Air Temperature -comment: monthly mean of the daily-minimum near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tasmin -type: real -valid_min: 183.6 -valid_max: 309.8 -ok_min_mean_abs: 271.8 -ok_max_mean_abs: 279.6 -!---------------------------------- -! - -!============ -variable_entry: tasmax -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: maximum within days time: mean over days -cell_measures: area: areacella -long_name: Daily Maximum Near-Surface Air Temperature -comment: monthly mean of the daily-maximum near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tasmax -type: real -valid_min: 181.9 -valid_max: 330.6 -ok_min_mean_abs: 277.3 -ok_max_mean_abs: 281.4 -!---------------------------------- -! - -!============ -variable_entry: psl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -cell_measures: area: areacella -long_name: Sea Level Pressure -comment: not, in general, the same as surface pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: psl -type: real -valid_min: 9.477e+04 -valid_max: 1.124e+05 -ok_min_mean_abs: 1.003e+05 -ok_max_mean_abs: 1.017e+05 -!---------------------------------- -! - -!============ -variable_entry: ps -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Air Pressure -comment: not, in general, the same as mean sea-level pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ps -type: real -valid_min: 4.792e+04 -valid_max: 1.093e+05 -ok_min_mean_abs: 9.606e+04 -ok_max_mean_abs: 9.743e+04 -!---------------------------------- -! - -!============ -variable_entry: uas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Eastward Near-Surface Wind -comment: near-surface (usually, 10 meters) eastward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: uas -type: real -valid_min: -19.01 -valid_max: 18.68 -ok_min_mean_abs: 1.668 -ok_max_mean_abs: 4.106 -!---------------------------------- -! - -!============ -variable_entry: vas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Northward Near-Surface Wind -comment: near-surface (usually, 10 meters) northward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: vas -type: real -valid_min: -18.04 -valid_max: 22.84 -ok_min_mean_abs: 1.065 -ok_max_mean_abs: 2.678 -!---------------------------------- -! - -!============ -variable_entry: sfcWind -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: wind_speed -units: m s-1 -cell_methods: time: mean -long_name: Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) wind speed. This is the mean of the speed, not the speed computed from the mean u and v components of wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: sfcWind -type: real -!---------------------------------- -! - -!============ -variable_entry: hurs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Near-Surface Relative Humidity -comment: near-surface (usually, 2meters) relative humidity expressed as a percentage. This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: hurs -type: real -!---------------------------------- -! - -!============ -variable_entry: huss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Near-Surface Specific Humidity -comment: near-surface (usually, 2 meters) specific humidity. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: huss -type: real -valid_min: -7.21e-06 -valid_max: 0.02992 -ok_min_mean_abs: 0.006391 -ok_max_mean_abs: 0.008749 -!---------------------------------- -! - -!============ -variable_entry: pr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Precipitation -comment: at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: pr -type: real -valid_min: 0 -valid_max: 0.001254 -ok_min_mean_abs: 2.156e-05 -ok_max_mean_abs: 3.215e-05 -!---------------------------------- -! - -!============ -variable_entry: prsn -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: snowfall_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Snowfall Flux -comment: at surface; includes precipitation of all forms of water in the solid phase -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prsn -type: real -valid_min: 0 -valid_max: 0.0002987 -ok_min_mean_abs: 1.449e-06 -ok_max_mean_abs: 6.11e-06 -!---------------------------------- -! - -!============ -variable_entry: prc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Convective Precipitation -comment: at surface; includes both liquid and solid phases. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prc -type: real -valid_min: 0 -valid_max: 0.0006323 -ok_min_mean_abs: -2.528e-06 -ok_max_mean_abs: 3.209e-05 -!---------------------------------- -! - -!============ -variable_entry: evspsbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Evaporation -comment: at surface; flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: evspsbl -type: real -!---------------------------------- -! - -!============ -variable_entry: sbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_sublimation_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Snow and Ice Sublimation Flux -comment: The snow and ice sublimation flux is the loss of snow and ice mass from the surface resulting from their conversion to water vapor that enters the atmosphere. This differs from sbl appearing in table Limon in that the flux is averaged over the entire grid cell, not just the land portion. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: sbl -type: real -valid_min: -0.004959 -valid_max: 0.0009936 -ok_min_mean_abs: -5.521e-05 -ok_max_mean_abs: 9.61e-05 -!---------------------------------- -! - -!============ -variable_entry: tauu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_eastward_stress -units: Pa -cell_methods: time: mean -long_name: Surface Downward Eastward Wind Stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tauu -type: real -positive: down -valid_min: -2.729 -valid_max: 2.934 -ok_min_mean_abs: 0.03979 -ok_max_mean_abs: 0.1065 -!---------------------------------- -! - -!============ -variable_entry: tauv -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_northward_stress -units: Pa -cell_methods: time: mean -long_name: Surface Downward Northward Wind Stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tauv -type: real -positive: down -valid_min: -2.472 -valid_max: 2.527 -ok_min_mean_abs: 0.01447 -ok_max_mean_abs: 0.08134 -!---------------------------------- -! - -!============ -variable_entry: hfls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls -type: real -positive: up -valid_min: -76.77 -valid_max: 790.7 -ok_min_mean_abs: 50.39 -ok_max_mean_abs: 73.2 -!---------------------------------- -! - -!============ -variable_entry: hfss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upward Sensible Heat Flux -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfss -type: real -positive: up -valid_min: -264.5 -valid_max: 844.8 -ok_min_mean_abs: 10.7 -ok_max_mean_abs: 34.84 -!---------------------------------- -! - -!============ -variable_entry: rlds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlds -type: real -positive: down -valid_min: 30.71 -valid_max: 520.5 -ok_min_mean_abs: 271.2 -ok_max_mean_abs: 323.6 -!---------------------------------- -! - -!============ -variable_entry: rlus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlus -type: real -positive: up -valid_min: 43.75 -valid_max: 658 -ok_min_mean_abs: 331.1 -ok_max_mean_abs: 369.9 -!---------------------------------- -! - -!============ -variable_entry: rsds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsds -type: real -positive: down -valid_min: -0.002946 -valid_max: 524.4 -ok_min_mean_abs: 143.9 -ok_max_mean_abs: 181.6 -!---------------------------------- -! - -!============ -variable_entry: rsus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsus -type: real -positive: up -valid_min: -0.006589 -valid_max: 422.2 -ok_min_mean_abs: 26.22 -ok_max_mean_abs: 43.77 -!---------------------------------- -! - -!============ -variable_entry: rsdscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsdscs -type: real -positive: down -valid_min: -1.748e+30 -valid_max: 518 -ok_min_mean_abs: 206.9 -ok_max_mean_abs: 238.6 -!---------------------------------- -! - -!============ -variable_entry: rsuscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsuscs -type: real -positive: up -valid_min: -0.01446 -valid_max: 462.2 -ok_min_mean_abs: 31.65 -ok_max_mean_abs: 61.59 -!---------------------------------- -! - -!============ -variable_entry: rldscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downwelling Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rldscs -type: real -positive: down -valid_min: 33.55 -valid_max: 543.6 -ok_min_mean_abs: 238.6 -ok_max_mean_abs: 293.8 -!---------------------------------- -! - -!============ -variable_entry: rsdt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_incoming_shortwave_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA Incident Shortwave Radiation -comment: incident shortwave at the top of the atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsdt -type: real -positive: down -valid_min: 0 -valid_max: 555.5 -ok_min_mean_abs: 294.4 -ok_max_mean_abs: 303.8 -!---------------------------------- -! - -!============ -variable_entry: rsut -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA Outgoing Shortwave Radiation -comment: at the top of the atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsut -type: real -positive: up -valid_min: -0.02689 -valid_max: 416.9 -ok_min_mean_abs: 96.72 -ok_max_mean_abs: 114.1 -!---------------------------------- -! - -!============ -variable_entry: rlut -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA Outgoing Longwave Radiation -comment: at the top of the atmosphere (to be compared with satellite measurements) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlut -type: real -positive: up -valid_min: 67.48 -valid_max: 383.2 -ok_min_mean_abs: 214.1 -ok_max_mean_abs: 227.5 -!---------------------------------- -! - -!============ -variable_entry: rlutcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA Outgoing Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlutcs -type: real -positive: up -valid_min: 70.59 -valid_max: 372.3 -ok_min_mean_abs: 235.1 -ok_max_mean_abs: 253.8 -!---------------------------------- -! - -!============ -variable_entry: rsutcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA Outgoing Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsutcs -type: real -positive: up -valid_min: 0 -valid_max: 444 -ok_min_mean_abs: 54.7 -ok_max_mean_abs: 73.36 -!---------------------------------- -! - -!============ -variable_entry: prw -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_water_vapor_content -units: kg m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Water Vapor Path -comment: vertically integrated through the atmospheric column -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prw -type: real -valid_min: -0.0006775 -valid_max: 78.04 -ok_min_mean_abs: 12.75 -ok_max_mean_abs: 23.09 -!---------------------------------- -! - -!============ -variable_entry: clt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total Cloud Fraction -comment: for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clt -type: real -valid_min: -0.0001822 -valid_max: 100.2 -ok_min_mean_abs: 39.37 -ok_max_mean_abs: 84.98 -!---------------------------------- -! - -!============ -variable_entry: clwvi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_condensed_water_content -units: kg m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Condensed Water Path -comment: calculate mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clwvi -type: real -valid_min: -3.827e-06 -valid_max: 3.364 -ok_min_mean_abs: -0.03549 -ok_max_mean_abs: 0.2846 -!---------------------------------- -! - -!============ -variable_entry: clivi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_ice_content -units: kg m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Ice Water Path -comment: calculate mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Include precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clivi -type: real -valid_min: -1.872e-06 -valid_max: 1.535 -ok_min_mean_abs: -0.0348 -ok_max_mean_abs: 0.1187 -!---------------------------------- -! - -!============ -variable_entry: rtmt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_downward_radiative_flux_at_top_of_atmosphere_model -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Net Downward Flux at Top of Model -comment: i.e., at the top of that portion of the atmosphere where dynamics are explicitly treated by the model. Report only if this differs from the net downward radiative flux at the top of the atmosphere. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rtmt -type: real -positive: down -valid_min: -232.8 -valid_max: 218.7 -ok_min_mean_abs: 77.62 -ok_max_mean_abs: 88.34 -!---------------------------------- -! - -!============ -variable_entry: ccb -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_convective_cloud_base -units: Pa -cell_methods: time: mean -cell_measures: area: areacella -long_name: Air Pressure at Convective Cloud Base -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ccb -type: real -!---------------------------------- -! - -!============ -variable_entry: cct -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_convective_cloud_top -units: Pa -cell_methods: time: mean -cell_measures: area: areacella -long_name: Air Pressure at Convective Cloud Top -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cct -type: real -!---------------------------------- -! - -!============ -variable_entry: ci -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convection_time_fraction -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Fraction of Time Convection Occurs -comment: Fraction of time that convection occurs in the grid cell . -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ci -type: real -!---------------------------------- -! - -!============ -variable_entry: sci -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: shallow_convection_time_fraction -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Fraction of Time Shallow Convection Occurs -comment: Fraction of time that shallow convection occurs in the grid cell. ( For models with a distinct shallow convection scheme only) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: sci -type: real -!---------------------------------- -! - -!============ -variable_entry: fco2antt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2 -comment: This is requested only for the emission-driven coupled carbon climate model runs. Do not include natural fire sources, but include all anthropogenic sources, including fossil fuel use, cement production, agricultural burning, and sources associated with anthropogenic land use change excluding forest regrowth. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fco2antt -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fco2fos -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere Due to Fossil Fuel Emissions of CO2 -comment: This is requested only for the emission-driven coupled carbon climate model runs. Report the prescribed anthropogenic CO2 flux from fossil fuel use, including cement production, and flaring (but not from land-use changes, agricultural burning, forest regrowth, etc.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fco2fos -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fco2nat -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Carbon Mass Flux into the Atmosphere Due to Natural Sources -comment: Report from all simulations (both emission-driven and concentration-driven) performed by models with fully interactive and responsive carbon cycles. This is what the atmosphere sees (on its own grid). This field should be equivalent to the combined natural fluxes of carbon (requested in the L_mon and O_mon tables) that account for natural exchanges between the atmosphere and land or ocean reservoirs (i.e., ""net ecosystem biospheric productivity"", for land, and ""air to sea CO2 flux"", for ocean.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fco2nat -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: cl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Cloud Area Fraction -comment: Report on model layers (not standard pressures). Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: cl -type: real -valid_min: 0 -valid_max: 100.2 -ok_min_mean_abs: -0.04479 -ok_max_mean_abs: 24.87 -!---------------------------------- -! - -!============ -variable_entry: clw -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_cloud_liquid_water_in_air -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mass Fraction of Cloud Liquid Water -comment: Report on model layers (not standard pressures). Include both large-scale and convective cloud. Calculate as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cells. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: clw -type: real -!---------------------------------- -! - -!============ -variable_entry: cli -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_cloud_ice_in_air -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mass Fraction of Cloud Ice -comment: Report on model layers (not standard pressures). Include both large-scale and convective cloud. Calculate as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: cli -type: real -!---------------------------------- -! - -!============ -variable_entry: mc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_net_upward_convective_mass_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Convective Mass Flux -comment: Report on model half-levels (i.e., model layer bounds and not standard pressures). The net mass flux should represent the difference between the updraft and downdraft components. The flux is computed as the mass divided by the area of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: mc -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: ta -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: ta -type: real -valid_min: 157.1 -valid_max: 326.4 -ok_min_mean_abs: 200.2 -ok_max_mean_abs: 289.9 -!---------------------------------- -! - -!============ -variable_entry: ua -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Eastward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: ua -type: real -valid_min: -68.65 -valid_max: 136.6 -ok_min_mean_abs: 1.101 -ok_max_mean_abs: 22.42 -!---------------------------------- -! - -!============ -variable_entry: va -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Northward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: va -type: real -valid_min: -71.1 -valid_max: 69.93 -ok_min_mean_abs: 0.9886 -ok_max_mean_abs: 4.679 -!---------------------------------- -! - -!============ -variable_entry: hus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Specific Humidity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: hus -type: real -valid_min: -0.000299 -valid_max: 0.02812 -ok_min_mean_abs: -0.0003539 -ok_max_mean_abs: 0.01027 -!---------------------------------- -! - -!============ -variable_entry: hur -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Relative Humidity -comment: This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: hur -type: real -valid_min: -2.642 -valid_max: 135.7 -ok_min_mean_abs: -10.31 -ok_max_mean_abs: 97 -!---------------------------------- -! - -!============ -variable_entry: wap -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: lagrangian_tendency_of_air_pressure -units: Pa s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: omega (=dp/dt) -comment: commonly referred to as ""omega"", this represents the vertical component of velocity in pressure coordinates (positive down) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: wap -type: real -valid_min: -1.126 -valid_max: 2.319 -ok_min_mean_abs: -0.005083 -ok_max_mean_abs: 0.04256 -!---------------------------------- -! - -!============ -variable_entry: zg -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: geopotential_height -units: m -cell_methods: time: mean -cell_measures: area: areacella -long_name: Geopotential Height -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: zg -type: real -valid_min: -719.7 -valid_max: 3.306e+04 -ok_min_mean_abs: -113.4 -ok_max_mean_abs: 3.164e+04 -!---------------------------------- -! - -!============ -variable_entry: tro3 -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_ozone_in_air -units: 1e-9 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mole Fraction of O3 -comment: If this does not change over time (except possibly to vary identically over each annual cycle), report instead the variable described in the next table entry. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: tro3 -type: real -valid_min: -419.2 -valid_max: 1.162e+04 -ok_min_mean_abs: -149.1 -ok_max_mean_abs: 7363 -!---------------------------------- -! - -!============ -variable_entry: tro3Clim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_ozone_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Mole Fraction of O3 -comment: If O3 does not vary from one year to the next, report 12 months, starting with January. (Note: include all 12 months even if the values don't vary seasonally.) When calling CMOR, identify this variable as tro3Clim, not tro3. If the O3 varies from one year to the next, then report instead the field described in the previous table entry. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: tro3 -type: real -!---------------------------------- -! - -!============ -variable_entry: co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_carbon_dioxide_in_air -units: 1e-6 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mole Fraction of CO2 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If spatially uniform, omit this field, but report Total Atmospheric Mass of CO2 (see the table entry after the next one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: co2 -type: real -!---------------------------------- -! - -!============ -variable_entry: co2Clim -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_carbon_dioxide_in_air -units: 1e-6 -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Mole Fraction of CO2 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CO2 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as co2Clim, not co2. If CO2 is spatially uniform, omit this field, but report Total Atmospheric Mass of CO2 (see the table entry after the next). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: co2 -type: real -!---------------------------------- -! - -!============ -variable_entry: co2mass -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_mass_of_carbon_dioxide -units: kg -cell_methods: time: mean -long_name: Total Atmospheric Mass of CO2 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If CO2 is spatially nonuniform, omit this field, but report Mole Fraction of CO2 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: co2mass -type: real -!---------------------------------- -! - -!============ -variable_entry: co2massClim -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_mass_of_carbon_dioxide -units: kg -cell_methods: time: mean within years time: mean over years -long_name: Total Atmospheric Mass of CO2 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CO2 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as co2massClim, not co2mass. If CO2 is spatially nonuniform, omit this field, but report Mole Fraction of CO2 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time2 -out_name: co2mass -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4 -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mole Fraction of CH4 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If CH4 is spatially uniform, omit this field, but report Global Mean Mole Fraction of CH4 (see the table entry after the next one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: ch4 -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4Clim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Mole Fraction of CH4 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CH4 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as ch4global, not ch4. If CH4 is spatially uniform, omit this field, but report Global Mean Mole Fraction of CH4 (see the table entry after the next). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: ch4 -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4global -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean -long_name: Global Mean Mole Fraction of CH4 -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If CH4 is spatially nonuniform, omit this field, but report Mole Fraction of CH4 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: ch4global -type: real -!---------------------------------- -! - -!============ -variable_entry: ch4globalClim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_methane_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -long_name: Global Mean Mole Fraction of CH4 -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the CH4 does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as ch4globalClim, not ch4global. If CH4 is spatially nonuniform, omit this field, but report Global Mean Mole Fraction of CH4 (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time2 -out_name: ch4global -type: real -!---------------------------------- -! - -!============ -variable_entry: n2o -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mole Fraction of N2O -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If N2O is spatially uniform, omit this field, but report Global Mean Mole Fraction of N2O (see the table entry after the next one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -out_name: n2o -type: real -!---------------------------------- -! - -!============ -variable_entry: n2oClim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Mole Fraction of N2O -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the N2O does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as n2oglobal, not n2o. If N2O is spatially uniform, omit this field, but report Global Mean Mole Fraction of N2O (see the table entry after the next). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time2 -out_name: n2o -type: real -!---------------------------------- -! - -!============ -variable_entry: n2oglobal -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean -long_name: Global Mean Mole Fraction of N2O -comment: For some simulations (e.g., prescribed concentration pi-control run), this will not vary from one year to the next, and so report instead the variable described in the next table entry. If N2O is spatially nonuniform, omit this field, but report Mole Fraction of N2O (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: n2oglobal -type: real -!---------------------------------- -! - -!============ -variable_entry: n2oglobalClim -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_nitrous_oxide_in_air -units: 1e-9 -cell_methods: time: mean within years time: mean over years -long_name: Global Mean Mole Fraction of N2O -comment: Report only for simulations (e.g., prescribed concentration pi-control run), in which the N2O does not vary from one year to the next. Report 12 monthly values, starting with January, even if the values don't vary seasonally. When calling CMOR, identify this variable as ch4globalClim, not ch4global. If N2O is spatially nonuniform, omit this field, but report Global Mean Mole Fraction of N2O (see the table entry before the previous one). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time2 -out_name: n2oglobal -type: real -!---------------------------------- -! - -!============ -variable_entry: cfc11global -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_cfc11_in_air -units: 1e-12 -cell_methods: time: mean -long_name: Global Mean Mole Fraction of CFC11 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: cfc11global -type: real -!---------------------------------- -! - -!============ -variable_entry: cfc12global -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_cfc12_in_air -units: 1e-12 -cell_methods: time: mean -long_name: Global Mean Mole Fraction of CFC12 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: cfc12global -type: real -!---------------------------------- -! - -!============ -variable_entry: hcfc22global -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_hcfc22_in_air -units: 1e-12 -cell_methods: time: mean -long_name: Global Mean Mole Fraction of HCFC22 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: hcfc22global -type: real -!---------------------------------- -! - -!============ -variable_entry: cfc113global -!============ -modeling_realm: atmos atmosChem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_fraction_of_cfc113_in_air -units: 1e-12 -cell_methods: time: mean -long_name: Global Mean Mole Fraction of CFC113 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: cfc113global -type: real -!---------------------------------- -! - - -!============ -variable_entry: pfull -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Pressure on Model Levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time2 -out_name: pfull -type: real -!---------------------------------- -! - -!============ -variable_entry: phalf -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -cell_methods: time: mean within years time: mean over years -cell_measures: area: areacella -long_name: Pressure on Model Half-Levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time2 -out_name: phalf -type: real -!---------------------------------- -! - diff --git a/TestTables/CMIP5_Lmon b/TestTables/CMIP5_Lmon deleted file mode 100644 index 1d70cbebb440440b8460d686aa17bc3d1d9391b3..0000000000000000000000000000000000000000 --- a/TestTables/CMIP5_Lmon +++ /dev/null @@ -1,1665 +0,0 @@ -table_id: Table Lmon -modeling_realm: land - -frequency: mon - -cmor_version: 2.5.0 ! minimum version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 12 November 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip branch_time contact institute_id ! space separated required global attribute - -forcings: N/A Nat Ant GHG SD SI SA TO SO Oz LU Sl Vl SS Ds BC MD OC AA - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'volcano-free hindcast initialized in year XXXX' 'noVolcXXXX' -expt_id_ok: 'prediction with 2010 volcano' 'volcIn2010' -expt_id_ok: 'pre-industrial control' 'piControl' -expt_id_ok: 'historical' 'historical' -expt_id_ok: 'mid-Holocene' 'midHolocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.6' 'rcp26' -expt_id_ok: 'RCP6' 'rcp60' -expt_id_ok: 'ESM pre-industrial control' 'esmControl' -expt_id_ok: 'ESM historical' 'esmHistorical' -expt_id_ok: 'ESM RCP8.5' 'esmrcp85' -expt_id_ok: 'ESM fixed climate 1' 'esmFixClim1' -expt_id_ok: 'ESM fixed climate 2' 'esmFixClim2' -expt_id_ok: 'ESM feedback 1' 'esmFdbk1' -expt_id_ok: 'ESM feedback 2' 'esmFdbk2' -expt_id_ok: '1 percent per year CO2' '1pctCO2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt4xCO2' -expt_id_ok: 'natural-only' 'historicalNat' -expt_id_ok: 'GHG-only' 'historicalGHG' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst2030' -expt_id_ok: 'control SST climatology' 'sstClim' -expt_id_ok: 'CO2 forcing' 'sstClim4xCO2' -expt_id_ok: 'all aerosol forcing' 'sstClimAerosol' -expt_id_ok: 'sulfate aerosol forcing' 'sstClimSulfate' -expt_id_ok: '4xCO2 AMIP' 'amip4xCO2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amipFuture' -expt_id_ok: 'aqua planet control' 'aquaControl' -expt_id_ok: '4xCO2 aqua planet' 'aqua4xCO2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua4K' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip4K' - - -approx_interval: 30.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: sdepth -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: depth -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 200.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: sdepth1 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: depth -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 0.2 -stored_direction: increasing -type: double -value: 0.05 ! of scalar (singleton) dimension -bounds_values: 0.0 0.1 ! of scalar (singleton) dimension bounds -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: vegtype -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -units: 1 -long_name: plant functional type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typebare -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -units: 1 -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: bare_ground ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typepdec -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -units: 1 -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: primary_deciduous_trees ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typepever -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -units: 1 -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: primary_evergreen_trees ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typesdec -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -units: 1 -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: secondary_decidous_trees ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typesever -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -units: 1 -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: secondary_evergreen_trees ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typec3pft -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -units: 1 -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: c3_plant_functional_types ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typec4pft -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -units: 1 -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: c4_plant_functional_types ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - -!============ -variable_entry: mrsos -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: moisture_content_of_soil_layer -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Moisture in Upper 0.1 m of Soil Column -comment: Compute the mass of water in all phases in the upper 0.1 meters of soil. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time sdepth1 -out_name: mrsos -type: real -valid_min: -2.008 -valid_max: 146.5 -ok_min_mean_abs: -35.89 -ok_max_mean_abs: 123.3 -!---------------------------------- -! - -!============ -variable_entry: mrso -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: soil_moisture_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Total Soil Moisture Content -comment: Compute the mass per unit area (summed over all soil layers) of water in all phases. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: mrso -type: real -valid_min: -64.17 -valid_max: 5717 -ok_min_mean_abs: -1424 -ok_max_mean_abs: 3038 -!---------------------------------- -! - -!============ -variable_entry: mrfso -!============ -modeling_realm: land landIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: soil_frozen_water_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Soil Frozen Water Content -comment: Compute the mass (summed over all all layers) of frozen water. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: mrfso -type: real -valid_min: 0 -valid_max: 5763 -ok_min_mean_abs: -419 -ok_max_mean_abs: 940.3 -!---------------------------------- -! - -!============ -variable_entry: mrros -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_runoff_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Surface Runoff -comment: Compute the total surface runoff leaving the land portion of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: mrros -type: real -valid_min: -6.802e-06 -valid_max: 0.0009825 -ok_min_mean_abs: -5.867e-06 -ok_max_mean_abs: 1.302e-05 -!---------------------------------- -! - -!============ -variable_entry: mrro -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: runoff_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Total Runoff -comment: "compute the total runoff (including ""drainage"" through the base of the soil model) leaving the land portion of the grid cell." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: mrro -type: real -valid_min: -0.0002019 -valid_max: 0.001065 -ok_min_mean_abs: -6.668e-06 -ok_max_mean_abs: 1.874e-05 -!---------------------------------- -! - -!============ -variable_entry: prveg -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux_onto_canopy -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Precipitation onto Canopy -comment: Report the precipitation flux that is intercepted by the vegetation canopy (if present in model) before reaching the ground. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prveg -type: real -!---------------------------------- -! - -!============ -variable_entry: evspsblveg -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux_from_canopy -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Evaporation from Canopy -comment: Report the canopy evaporation+sublimation (if present in model). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: evspsblveg -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: evspsblsoi -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux_from_soil -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Water Evaporation from Soil -comment: includes sublimation. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: evspsblsoi -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: tran -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: transpiration_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Transpiration -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tran -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: mrlsl -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: moisture_content_of_soil_layer -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Water Content of Soil Layer -comment: in each soil layer, the mass of water in all phases, including ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude sdepth time -out_name: mrlsl -type: real -!---------------------------------- -! - -!============ -variable_entry: tsl -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: soil_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Temperature of Soil -comment: "Temperature of each soil layer. Report as ""missing"" for grid cells occupied entirely by ""sea""." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude sdepth time -out_name: tsl -type: real -!---------------------------------- -! - -!============ -variable_entry: treeFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tree Cover Fraction -comment: fraction of entire grid cell that is covered by trees. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: treeFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: grassFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Natural Grass Fraction -comment: fraction of entire grid cell that is covered by natural grass. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: grassFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: shrubFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Shrub Fraction -comment: fraction of entire grid cell that is covered by shrub. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: shrubFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: cropFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Crop Fraction -comment: fraction of entire grid cell that is covered by crop. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cropFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: pastureFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Anthropogenic Pasture Fraction -comment: fraction of entire grid cell that is covered by anthropogenic pasture. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: pastureFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: baresoilFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Bare Soil Fraction -comment: fraction of entire grid cell that is covered by bare soil. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typebare -out_name: baresoilFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: residualFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Fraction of Grid Cell that is Land but Neither Vegetation-Covered nor Bare Soil -comment: fraction of entire grid cell that is land and is covered by ""non-vegetation"" and ""non-bare-soil"" (e.g., urban, ice, lakes, etc.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: residualFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: burntArea -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Burnt Area Fraction -comment: fraction of entire grid cell that is covered by burnt vegetation. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: burntArea -type: real -!---------------------------------- -! - -!============ -variable_entry: cVeg -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: vegetation_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Vegetation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cVeg -type: real -!---------------------------------- -! - -!============ -variable_entry: cLitter -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: litter_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Litter Pool -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cLitter -type: real -!---------------------------------- -! - -!============ -variable_entry: cSoil -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: soil_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Soil Pool -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cSoil -type: real -!---------------------------------- -! - -!============ -variable_entry: cProduct -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: carbon_content_of_products_of_anthropogenic_land_use_change -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Products of Land Use Change -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cProduct -type: real -!---------------------------------- -! - -!============ -variable_entry: lai -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: leaf_area_index -units: 1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Leaf Area Index -comment: projected leaf area per unit of ground area (i.e., only the land portion of the grid cell), expressed as a proper fraction (not a percentage) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: lai -type: real -!---------------------------------- -! - -!============ -variable_entry: gpp -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: gross_primary_productivity_of_carbon -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux out of Atmosphere due to Gross Primary Production on Land -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: gpp -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: ra -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: plant_respiration_carbon_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to Autotrophic (Plant) Respiration on Land -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ra -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: npp -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_productivity_of_carbon -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux out of Atmosphere due to Net Primary Production on Land -comment: needed for models that do not compute GPP (if any) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: npp -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rh -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: heterotrophic_respiration_carbon_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to Heterotrophic Respiration on Land -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rh -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fFire -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to CO2 Emission from Fire -comment: CO2 emissions (expressed as a carbon mass flux) from natural fires + human ignition fires as calculated by the fire module of the DGVM, but excluding any CO2 flux from fire included in fLuc, defined below (CO2 Flux to Atmosphere from Land Use Change). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fFire -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fGrazing -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_grazing -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to Grazing on Land -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fGrazing -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fHarvest -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to Crop Harvesting -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fHarvest -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fLuc -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Net Carbon Mass Flux into Atmosphere due to Land Use Change -comment: human changes to land (excluding forest regrowth) accounting possibly for different time-scales related to fate of the wood, for example. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fLuc -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: nbp -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux out of Atmosphere due to Net Biospheric Production on Land -comment: This is the net mass flux of carbon between land and atmosphere calculated as photosynthesis MINUS the sum of plant and soil respiration, carbonfluxes from fire, harvest, grazing and land use change. Positive flux is into the land. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: nbp -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: fVegLitter -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: litter_carbon_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Total Carbon Mass Flux from Vegetation to Litter -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fVegLitter -type: real -!---------------------------------- -! - -!============ -variable_entry: fLitterSoil -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: carbon_mass_flux_into_soil_from_litter -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Total Carbon Mass Flux from Litter to Soil -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fLitterSoil -type: real -!---------------------------------- -! - -!============ -variable_entry: fVegSoil -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: carbon_mass_flux_into_soil_from_vegetation_excluding_litter -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Total Carbon Mass Flux from Vegetation Directly to Soil -comment: In some models part of carbon (e.g., root exudate) can go directly into the soil pool without entering litter. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fVegSoil -type: real -!---------------------------------- -! - -!============ -variable_entry: cLeaf -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: leaf_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Leaves -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cLeaf -type: real -!---------------------------------- -! - -!============ -variable_entry: cWood -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: wood_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Wood -comment: including sapwood and hardwood. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cWood -type: real -!---------------------------------- -! - -!============ -variable_entry: cRoot -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: root_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Roots -comment: including fine and coarse roots. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cRoot -type: real -!---------------------------------- -! - -!============ -variable_entry: cMisc -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: miscellaneous_living_matter_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Other Living Compartments on Land -comment: e.g., labile, fruits, reserves, etc. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cMisc -type: real -!---------------------------------- -! - -!============ -variable_entry: cCwd -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: wood_debris_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Coarse Woody Debris -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cCwd -type: real -!---------------------------------- -! - -!============ -variable_entry: cLitterAbove -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_litter_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Above-Ground Litter -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cLitterAbove -type: real -!---------------------------------- -! - -!============ -variable_entry: cLitterBelow -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: subsurface_litter_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Below-Ground Litter -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cLitterBelow -type: real -!---------------------------------- -! - -!============ -variable_entry: cSoilFast -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: fast_soil_pool_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Fast Soil Pool -comment: fast is meant as lifetime of less than 10 years for reference climate conditions (20 C, no water limitations). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cSoilFast -type: real -!---------------------------------- -! - -!============ -variable_entry: cSoilMedium -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: medium_soil_pool_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Medium Soil Pool -comment: medium is meant as lifetime of more than than 10 years and less than 100 years for reference climate conditions (20 C, no water limitations) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cSoilMedium -type: real -!---------------------------------- -! - -!============ -variable_entry: cSoilSlow -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: slow_soil_pool_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Slow Soil Pool -comment: fast is meant as lifetime of more than 100 years for reference climate conditions (20 C, no water limitations) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cSoilSlow -type: real -!---------------------------------- -! - -!============ -variable_entry: landCoverFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Plant Functional Type Grid Fraction -comment: using each individual ESM PFT definition. This includes natural PFTs, anthropogenic PFTs, bare soil, lakes, urban areas, etc. Sum of all should equal the fraction of the grid-cell that is land. Note that the ""types"" will be model dependent and for each type there should be a full description of the PFT (plant functional type). To facilitate model comparison, it is also requested that the aggregated land cover types called for in lines 28 to 35 be archived (but not in this variable). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude vegtype time -out_name: landCoverFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: treeFracPrimDec -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total Primary Deciduous Tree Fraction -comment: "Agregation of model PFTs as defined in 1st priority to aid model intercomparison. This is the fraction of the entire grid cell that is covered by ""total primary deciduous trees."" " -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typepdec -out_name: treeFracPrimDec -type: real -!---------------------------------- -! - -!============ -variable_entry: treeFracPrimEver -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total Primary Evergreen Tree Cover Fraction -comment: fraction of entire grid cell that is covered by primary evergreen trees. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typepever -out_name: treeFracPrimEver -type: real -!---------------------------------- -! - -!============ -variable_entry: treeFracSecDec -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total Secondary Deciduous Tree Cover Fraction -comment: fraction of entire grid cell that is covered by secondary deciduous trees. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typesdec -out_name: treeFracSecDec -type: real -!---------------------------------- -! - -!============ -variable_entry: treeFracSecEver -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total Secondary Evergreen Tree Cover Fraction -comment: fraction of entire grid cell that is covered by secondary evergreen trees. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typesever -out_name: treeFracSecEver -type: real -!---------------------------------- -! - -!============ -variable_entry: c3PftFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total C3 PFT Cover Fraction -comment: fraction of entire grid cell that is covered by C3 PFTs (including grass, crops, and trees). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typec3pft -out_name: c3PftFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: c4PftFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total C4 PFT Cover Fraction -comment: fraction of entire grid cell that is covered by C4 PFTs (including grass and crops). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typec4pft -out_name: c4PftFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: rGrowth -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_carbon_mass_flux_due_to_plant_respiration_for_biomass_growth -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to Growth Autotrophic Respiration on Land -comment: "This flux and the one in the following row provide a breakdown of the higher priority ""Autotrophic (Plant) Respiration"" in an earlier row of this table; thus the sum should be identical to that." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rGrowth -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rMaint -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_carbon_mass_flux_due_to_plant_respiration_for_biomass_maintenance -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to Maintenance Autotrophic Respiration on Land -comment: "This flux and the one in the previous row provide a breakdown of the higher priority ""Autotrophic (Plant) Respiration"" in an earlier row of this table; thus the sum should be identical to that." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rMaint -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: nppLeaf -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_productivity_of_carbon_accumulated_in_leaves -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux due to NPP Allocation to Leaf -comment: This is the rate of carbon uptake by leaves due to NPP -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: nppLeaf -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: nppWood -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_productivity_of_carbon_accumulated_in_wood -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux due to NPP Allocation to Wood -comment: This is the rate of carbon uptake by wood due to NPP -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: nppWood -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: nppRoot -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_productivity_of_carbon_accumulated_in_roots -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux due to NPP Allocation to Roots -comment: This is the rate of carbon uptake by roots due to NPP -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: nppRoot -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: nep -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Net Carbon Mass Flux out of Atmophere due to Net Ecosystem Productivity on Land. -comment: Natural flux of CO2 (expressed as a mass flux of carbon) from the atmosphere to the land calculated as the difference between uptake associated will photosynthesis and the release of CO2 from the sum of plant and soil respiration and fire. Positive flux is into the land. emissions from natural fires + human ignition fires as calculated by the fire module of the DGVM, but excluding any CO2 flux from fire included in fLuc, defined below (CO2 Flux to Atmosphere from Land Use Change). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: nep -type: real -positive: down -!---------------------------------- -! - diff --git a/TestTables/CMIP5_Omon b/TestTables/CMIP5_Omon deleted file mode 100644 index 17e3eb12cbcc7423e42a7cc471d386e777e1b39d..0000000000000000000000000000000000000000 --- a/TestTables/CMIP5_Omon +++ /dev/null @@ -1,4658 +0,0 @@ -table_id: Table Omon -modeling_realm: ocean - -frequency: mon - -cmor_version: 2.5.0 ! minimum version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 12 November 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip branch_time contact institute_id ! space separated required global attribute - -forcings: N/A Nat Ant GHG SD SI SA TO SO Oz LU Sl Vl SS Ds BC MD OC AA - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'volcano-free hindcast initialized in year XXXX' 'noVolcXXXX' -expt_id_ok: 'prediction with 2010 volcano' 'volcIn2010' -expt_id_ok: 'pre-industrial control' 'piControl' -expt_id_ok: 'historical' 'historical' -expt_id_ok: 'mid-Holocene' 'midHolocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.6' 'rcp26' -expt_id_ok: 'RCP6' 'rcp60' -expt_id_ok: 'ESM pre-industrial control' 'esmControl' -expt_id_ok: 'ESM historical' 'esmHistorical' -expt_id_ok: 'ESM RCP8.5' 'esmrcp85' -expt_id_ok: 'ESM fixed climate 1' 'esmFixClim1' -expt_id_ok: 'ESM fixed climate 2' 'esmFixClim2' -expt_id_ok: 'ESM feedback 1' 'esmFdbk1' -expt_id_ok: 'ESM feedback 2' 'esmFdbk2' -expt_id_ok: '1 percent per year CO2' '1pctCO2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt4xCO2' -expt_id_ok: 'natural-only' 'historicalNat' -expt_id_ok: 'GHG-only' 'historicalGHG' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst2030' -expt_id_ok: 'control SST climatology' 'sstClim' -expt_id_ok: 'CO2 forcing' 'sstClim4xCO2' -expt_id_ok: 'all aerosol forcing' 'sstClimAerosol' -expt_id_ok: 'sulfate aerosol forcing' 'sstClimSulfate' -expt_id_ok: '4xCO2 AMIP' 'amip4xCO2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amipFuture' -expt_id_ok: 'aqua planet control' 'aquaControl' -expt_id_ok: '4xCO2 aqua planet' 'aqua4xCO2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua4K' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip4K' - - -approx_interval: 30.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -generic_levels: olevel - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: basin -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: region -units: 1 -long_name: ocean basin -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: basin -type: character -requested: atlantic_arctic_ocean indian_pacific_ocean global_ocean ! space-separated list of requested coordinates -must_have_bounds: no -coords_attrib: region -!---------------------------------- -! - - -!============ -axis_entry: rho -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -units: kg m-3 -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: density++++? -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: rho -stored_direction: decreasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: oline -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: region -units: 1 -long_name: ocean passage -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: line -type: character -requested: barents_opening bering_strait canadian_archipelago denmark_strait drake_passage english_channel pacific_equatorial_undercurrent faroe_scotland_channel florida_bahamas_strait fram_strait iceland_faroe_channel indonesian_thoughflow mozambique_channel taiwan_luzon_straits windward_passage ! space-separated list of requested coordinates -must_have_bounds: no -coords_attrib: passage -!---------------------------------- -! - - -!============ -axis_entry: olayer100m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: depth -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 100.0 -stored_direction: increasing -type: double -value: 50. ! of scalar (singleton) dimension -bounds_values: 0. 100. ! of scalar (singleton) dimension bounds -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: depth100m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: depth -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 80.0 -valid_max: 120.0 -stored_direction: increasing -type: double -value: 100. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: depth0m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: depth -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 100.0 -stored_direction: increasing -type: double -value: 0. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - -!============ -axis_entry: depth_coord -!============ -! -! This vertical coordinate is used in z-coordinate models -! The units are meters (m), and it has a value of 0. at the surface -! and becomes more and more positive with depth. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z -positive: down -long_name: ocean depth coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0. -valid_max: 12000. -!---------------------------------- -! -!============ -axis_entry: ocean_double_sigma -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: ocean_double_sigma -axis: Z -positive: up -long_name: ocean double sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -formula: for k <= k_c:\n z(k,j,i)= sigma(k)*f(j,i) \n for k > k_c:\n z(k,j,i)= f(j,i) + (sigma(k)-1)*(depth(j,i)-f(j,i)) \n f(j,i)= 0.5*(z1+ z2) + 0.5*(z1-z2)* tanh(2*a/(z1-z2)*(depth(j,i)-href)) -z_factors: sigma: sigma depth: depth z1: z1 z2: z2 a: a_coeff href: href k_c: k_c -z_bounds_factors: sigma: sigma_bnds depth: depth z1: z1 z2: z2 a: a href: href k_c: k_c -!---------------------------------- -! -!============ -axis_entry: ocean_sigma_z -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: ocean_sigma_z -axis: Z -long_name: ocean sigma over z coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -formula: for k <= nsigma: z(n,k,j,i) = eta(n,j,i) + sigma(k)*(min(depth_c,depth(j,i))+eta(n,j,i)) ; for k > nsigma: z(n,k,j,i) = zlev(k) -z_factors: sigma: sigma eta: eta depth: depth depth_c: depth_c nsigma: nsigma zlev: zlev -z_bounds_factors: sigma: sigma_bnds eta: eta depth: depth depth_c: depth_c nsigma: nsigma zlev: zlev_bnds -!---------------------------------- -! -!============ -axis_entry: ocean_s -!============ -! -! This coordinate is dimensionless and varies from 0 at the surface to -1. at the ocean floor. -! The values of s(k), which appears in the formula below, should be stored as ocean_s. -! Note that in the netCDF file the variable will be named "lev", not ocean_s. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: ocean_s_coordinate -axis: Z -positive: up -long_name: ocean s-coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 0. -formula: z(n,k,j,i) = eta(n,j,i)*(1+s(k)) + depth_c*s(k) + (depth(j,i)-depth_c)*C(k) \n where \n C(k)=(1-b)*sinh(a*s(k))/sinh(a) +\n b*(tanh(a*(s(k)+0.5))/(2*tanh(0.5*a)) - 0.5) -z_factors: s: lev eta: eta depth: depth a: a_coeff b: b_coeff depth_c: depth_c -z_bounds_factors: s: lev_bnds eta: eta depth: depth a: a b: b depth_c: depth_c -!---------------------------------- -! -!============ -axis_entry: ocean_sigma -!============ -! -! This coordinate is dimensionless and varies from 0 at the surface to -1. at the ocean floor. -! The values of sigma(k), which appears in the formula below, should be stored as ocean_sigma. -! Note that in the netCDF file the variable will be named "lev", not ocean_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: ocean_sigma_coordinate -axis: Z -positive: up -long_name: ocean sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 0. -formula: z(n,k,j,i) = eta(n,j,i) + sigma(k)*(depth(j,i)+eta(n,j,i)) -z_factors: sigma: lev eta: eta depth: depth -z_bounds_factors: sigma: lev_bnds eta: eta depth: depth -!---------------------------------- -! -! -! *************************************************************** -! -! Vertical coordinate formula_terms: -! -! *************************************************************** -! -!============ -variable_entry: eta -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: m -cell_methods: time: mean -long_name: Sea Surface Height -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -type: real -!---------------------------------- -! -! -!============ -variable_entry: depth -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: m -long_name: Sea Floor Depth -comment: Ocean bathymetry. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: depth -type: real -valid_min: 0. -valid_max: 12000. -ok_min_mean_abs: 2000. -ok_max_mean_abs: 5000. -!---------------------------------- -! -! -!============ -variable_entry: sigma -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: sigma(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: olevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: sigma_bnds -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: sigma(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: olevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: zlev -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: zlev(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: olevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: zlev_bnds -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: zlev(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: olevel -type: double -!---------------------------------- -! -! -! -!============ -variable_entry: depth_c -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: depth_c -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! -! -!============ -variable_entry: a -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: coefficient a -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: coefficient b -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! -! -!============ -variable_entry: nsigma -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: nsigma -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: integer -!---------------------------------- -! -! -!============ -variable_entry: z1 -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: z1 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! -! -!============ -variable_entry: z2 -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: z2 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! -! -!============ -variable_entry: href -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: href -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! -! -!============ -variable_entry: k_c -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: k_c -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: integer -!---------------------------------- -! -! - -!============ -variable_entry: dissic -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_dissolved_inorganic_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Dissolved Inorganic Carbon Concentration at Surface -comment: Dissolved inorganic carbon (CO3+HCO3+H2CO3) concentration -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: dissic -type: real -!---------------------------------- -! - -!============ -variable_entry: dissoc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_dissolved_organic_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Dissolved Organic Carbon Concentration at Surface -comment: Dissolved organic carbon concentration -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: dissoc -type: real -!---------------------------------- -! - -!============ -variable_entry: phyc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_phytoplankton_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Phytoplankton Carbon Concentration at Surface -comment: sum of phytoplankton carbon component concentrations. In most (all?) cases this is the sum of phycdiat and phycmisc (i.e., ""Diatom Carbon Concentration"" and ""Non-Diatom Phytoplankton Carbon Concentration"" -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: phyc -type: real -!---------------------------------- -! - -!============ -variable_entry: zooc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_zooplankton_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Zooplankton Carbon Concentration at Surface -comment: sum of zooplankton carbon component concentrations -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: zooc -type: real -!---------------------------------- -! - -!============ -variable_entry: bacc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_bacteria_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Bacterial Carbon Concentration at Surface -comment: sum of bacterial carbon component concentrations -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: bacc -type: real -!---------------------------------- -! - -!============ -variable_entry: detoc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_organic_detritus_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Detrital Organic Carbon Concentration at Surface -comment: sum of detrital organic carbon component concentrations -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: detoc -type: real -!---------------------------------- -! - -!============ -variable_entry: calc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_calcite_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Calcite Concentration at Surface -comment: sum of particulate calcite component concentrations (e.g. Phytoplankton, Detrital, etc.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: calc -type: real -!---------------------------------- -! - -!============ -variable_entry: arag -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Aragonite Concentration at Surface -comment: sum of particulate aragonite components (e.g. Phytoplankton, Detrital, etc.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: arag -type: real -!---------------------------------- -! - -!============ -variable_entry: phydiat -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_diatoms_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Mole Concentration of Diatoms expressed as Carbon in Sea Water at Surface -comment: carbon from the diatom phytoplankton component concentration alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: phydiat -type: real -!---------------------------------- -! - -!============ -variable_entry: phydiaz -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_diazotrophs_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Mole Concentration of Diazotrophs Expressed as Carbon in Sea Water at Surface -comment: carbon concentration from the diazotrophic phytoplankton component alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: phydiaz -type: real -!---------------------------------- -! - -!============ -variable_entry: phycalc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_calcareous_phytoplankton_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Mole Concentration of Calcareous Phytoplankton expressed as Carbon in Sea Water at Surface -comment: carbon concentration from calcareous (calcite-producing) phytoplankton component alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: phycalc -type: real -!---------------------------------- -! - -!============ -variable_entry: phypico -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_picophytoplankton_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Mole Concentration of Picophytoplankton expressed as Carbon in Sea Water at Surface -comment: carbon concentration from the picophytoplankton (<2 um) component alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: phypico -type: real -!---------------------------------- -! - -!============ -variable_entry: phymisc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_miscellaneous_phytoplankton_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Mole Concentration of Miscellaneous Phytoplankton expressed as Carbon in Sea Water at Surface -comment: carbon concentration from additional phytoplankton component alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: phymisc -type: real -!---------------------------------- -! - -!============ -variable_entry: zmicro -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_microzooplankton_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Mole Concentration of Microzooplankton expressed as Carbon in Sea Water at Surface -comment: carbon concentration from the microzooplankton (<20 um) component alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: zmicro -type: real -!---------------------------------- -! - -!============ -variable_entry: zmeso -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_mesozooplankton_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Mole Concentration of Mesozooplankton expressed as Carbon in Sea Water at Surface -comment: carbon concentration from mesozooplankton (20-200 um) component alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: zmeso -type: real -!---------------------------------- -! - -!============ -variable_entry: zoocmisc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_miscellaneous_zooplankton_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Other Zooplankton Carbon Concentration at Surface -comment: carbon from additional zooplankton component concentrations alone (e.g. Micro, meso). Since the models all have different numbers of components, this variable has been included to provide a check for intercomparison between models since some phytoplankton groups are supersets. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: zoocmisc -type: real -!---------------------------------- -! - -!============ -variable_entry: talk -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_alkalinity_expressed_as_mole_equivalent -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Total Alkalinity at Surface -comment: total alkalinity equivalent concentration (including carbonate, nitrogen, silicate, and borate components) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: talk -type: real -!---------------------------------- -! - -!============ -variable_entry: ph -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_ph_reported_on_total_scale -units: 1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: pH at Surface -comment: negative log of hydrogen ion concentration with the concentration expressed as mol H kg-1. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: ph -type: real -!---------------------------------- -! - -!============ -variable_entry: o2 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_molecular_oxygen_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Dissolve Oxygen Concentration at Surface -comment: dissolved oxygen gas concentration in sea water -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: o2 -type: real -!---------------------------------- -! - -!============ -variable_entry: no3 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_nitrate_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Dissolved Nitrate Concentration at Surface -comment: dissolved nitrate concentration in sea water -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: no3 -type: real -!---------------------------------- -! - -!============ -variable_entry: nh4 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_ammonium_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Dissolved Ammonium Concentration at Surface -comment: dissolved ammonium concentration in sea water -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: nh4 -type: real -!---------------------------------- -! - -!============ -variable_entry: po4 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_phosphate_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Dissolved Phosphate Concentration at Surface -comment: dissolved Phosphate concentration in sea water -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: po4 -type: real -!---------------------------------- -! - -!============ -variable_entry: dfe -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_dissolved_iron_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Dissolved Iron Concentration at Surface -comment: dissolved iron in sea water is meant to include both Fe2+ and Fe3+ ions (but not, e.g., particulate detrital iron) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: dfe -type: real -!---------------------------------- -! - -!============ -variable_entry: si -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_silicate_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Dissolved Silicate Concentration at Surface -comment: dissolved silicate concentration in sea water -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: si -type: real -!---------------------------------- -! - -!============ -variable_entry: chl -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_concentration_of_phytoplankton_expressed_as_chlorophyll_in_sea_water -units: kg m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Total Chlorophyll Mass Concentration at Surface -comment: sum of chlorophyll from all phytoplankton group concentrations. In most models this is equal to chldiat+chlmisc, that is the sum of ""Diatom Chlorophyll Mass Concentration"" plus ""Other Phytoplankton Chlorophyll Mass Concentration"" -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: chl -type: real -!---------------------------------- -! - -!============ -variable_entry: chldiat -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_concentration_of_diatoms_expressed_as_chlorophyll_in_sea_water -units: kg m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Diatom Chlorophyll Mass Concentration at Surface -comment: chlorophyll from diatom phytoplankton component concentration alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: chldiat -type: real -!---------------------------------- -! - -!============ -variable_entry: chldiaz -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_concentration_of_diazotrophs_expressed_as_chlorophyll_in_sea_water -units: kg m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Mass Concentration of Diazotrophs expressed as Chlorophyll in Sea Water at Surface -comment: chlorophyll concentration from the diazotrophic phytoplankton component alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: chldiaz -type: real -!---------------------------------- -! - -!============ -variable_entry: chlcalc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_concentration_of_calcareous_phytoplankton_expressed_as_chlorophyll_in_sea_water -units: kg m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Mass Concentration of Calcareous Phytoplankton expressed as Chlorophyll in Sea Water at Surface -comment: chlorophyll concentration from the calcite-producing phytoplankton component alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: chlcalc -type: real -!---------------------------------- -! - -!============ -variable_entry: chlpico -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_concentration_of_picophytoplankton_expressed_as_chlorophyll_in_sea_water -units: kg m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Mass Concentration of Picophytoplankton expressed as Chlorophyll in Sea Water at Surface -comment: chlorophyll concentration from the picophytoplankton (<2 um) component alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: chlpico -type: real -!---------------------------------- -! - -!============ -variable_entry: chlmisc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_concentration_of_miscellaneous_phytoplankton_expressed_as_chlorophyll_in_sea_water -units: kg m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Other Phytoplankton Chlorophyll Mass Concentration at Surface -comment: chlorophyll from additional phytoplankton component concentrations alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: chlmisc -type: real -!---------------------------------- -! - -!============ -variable_entry: pon -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_particulate_organic_matter_expressed_as_nitrogen_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Particulate Organic Nitrogen Concentration at Surface -comment: sum of particulate organic nitrogen component concentrations -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: pon -type: real -!---------------------------------- -! - -!============ -variable_entry: pop -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_particulate_organic_matter_expressed_as_phosphorus_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Particulate Organic Phosphorus Concentration at Surface -comment: sum of particulate organic phosphorus component concentrations -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: pop -type: real -!---------------------------------- -! - -!============ -variable_entry: bfe -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_particulate_organic_matter_expressed_as_iron_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Particulate Biogenic Iron Concentration at Surface -comment: sum of particulate organic iron component concentrations -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: bfe -type: real -!---------------------------------- -! - -!============ -variable_entry: bsi -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_particulate_matter_expressed_as_silicon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Particulate Biogenic Silica Concentration at Surface -comment: sum of particulate silica component concentrations -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: bsi -type: real -!---------------------------------- -! - -!============ -variable_entry: phyn -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_phytoplankton_expressed_as_nitrogen_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Phytoplankton Nitrogen Concentration at Surface -comment: sum of phytoplankton nitrogen component concentrations -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: phyn -type: real -!---------------------------------- -! - -!============ -variable_entry: phyp -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_phytoplankton_expressed_as_phosphorus_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Phytoplankton Phosphorus Concentration at Surface -comment: sum of phytoplankton phosphorus components -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: phyp -type: real -!---------------------------------- -! - -!============ -variable_entry: phyfe -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_phytoplankton_expressed_as_iron_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Phytoplankton Iron Concentration at Surface -comment: sum of phytoplankton iron component concentrations -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: phyfe -type: real -!---------------------------------- -! - -!============ -variable_entry: physi -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_phytoplankton_expressed_as_silicon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Phytoplankton Silica Concentration at Surface -comment: sum of phytoplankton silica component concentrations -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: physi -type: real -!---------------------------------- -! - -!============ -variable_entry: dms -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_dimethyl_sulfide_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Dimethyl Sulphide Concentration at Surface -comment: dimethyl sulphide concentration -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: dms -type: real -!---------------------------------- -! - -!============ -variable_entry: co3 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_carbonate_expressed_as_carbon_in_sea_water -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Mole Concentration of Carbonate expressed as Carbon in Sea Water at Surface -comment: carbonate ion concentration -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: co3 -type: real -!---------------------------------- -! - -!============ -variable_entry: co3satcalc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_calcite_expressed_as_carbon_in_sea_water_at_saturation -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Mole Concentration of Calcite expressed as Carbon in Sea Water at Saturation at Surface -comment: carbonate ion concentration at calcite solution saturation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: co3satcalc -type: real -!---------------------------------- -! - -!============ -variable_entry: co3satarag -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_aragonite_expressed_as_carbon_in_sea_water_at_saturation -units: mol m-3 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Mole Concentration of Aragonite expressed as Carbon in Sea Water at Saturation at Surface -comment: carbonate ion concentration at aragonite solution saturation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth0m -out_name: co3satarag -type: real -!---------------------------------- -! - -!============ -variable_entry: intpp -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_mole_productivity_of_carbon_by_phytoplankton -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Primary Organic Carbon Production by All Types of Phytoplankton -comment: Vertically integrated total primary (organic carbon) production by phytoplankton. This should equal the sum of intpdiat+intpphymisc, but those individual components may be unavailable in some models. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: intpp -type: real -!---------------------------------- -! - -!============ -variable_entry: intpnitrate -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_mole_productivity_of_carbon_due_to_nitrate_utilization -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Primary Organic Carbon Production by Phytoplankton Based on Nitrate Uptake Alone -comment: Vertically integrated primary (organic carbon) production by phytoplankton based on nitrate uptake alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: intpnitrate -type: real -!---------------------------------- -! - -!============ -variable_entry: intpdiat -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_mole_productivity_of_carbon_by_diatoms -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Primary Organic Carbon Production by Diatoms -comment: Vertically integrated primary (organic carbon) production by the diatom phytoplankton component alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: intpdiat -type: real -!---------------------------------- -! - -!============ -variable_entry: intpdiaz -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_mole_productivity_of_carbon_by_diazotrophs -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Net Primary Mole Productivity of Carbon by Diazotrophs -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: intpdiaz -type: real -!---------------------------------- -! - -!============ -variable_entry: intpcalc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_mole_productivity_of_carbon_by_calcareous_phytoplankton -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Net Primary Mole Productivity of Carbon by Calcareous Phytoplankton -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: intpcalc -type: real -!---------------------------------- -! - -!============ -variable_entry: intppico -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_mole_productivity_of_carbon_by_picophytoplankton -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Net Primary Mole Productivity of Carbon by Picophytoplankton -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: intppico -type: real -!---------------------------------- -! - -!============ -variable_entry: intpmisc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_mole_productivity_of_carbon_by_miscellaneous_phytoplankton -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Primary Organic Carbon Production by Other Phytoplankton -comment: Vertically integrated total primary (organic carbon) production by other phytoplankton components alone -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: intpmisc -type: real -!---------------------------------- -! - -!============ -variable_entry: intpbfe -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_iron_due_to_biological_production -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Iron Production -comment: Vertically integrated biogenic iron production -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: intpbfe -type: real -!---------------------------------- -! - -!============ -variable_entry: intpbsi -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_silicon_due_to_biological_production -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Silica Production -comment: Vertically integrated biogenic silica production -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: intpbsi -type: real -!---------------------------------- -! - -!============ -variable_entry: intpcalcite -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_calcite_expressed_as_carbon_due_to_biological_production -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Calcite Production -comment: Vertically integrated calcite production -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: intpcalcite -type: real -!---------------------------------- -! - -!============ -variable_entry: intparag -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_aragonite_expressed_as_carbon_due_to_biological_production -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Aragonite Production -comment: Vertically integrated aragonite production -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: intparag -type: real -!---------------------------------- -! - -!============ -variable_entry: epc100 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sinking_mole_flux_of_particulate_organic_matter_expressed_as_carbon_in_sea_water -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Downward Flux of Particle Organic Carbon at 100M -comment: sinking flux of organic carbon at 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth100m -out_name: epc100 -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: epfe100 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sinking_mole_flux_of_particulate_iron_in_sea_water -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Downward Flux of Particulate Iron at 100M -comment: sinking flux of biogenic and scavenged iron at 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth100m -out_name: epfe100 -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: epsi100 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sinking_mole_flux_of_particulate_silicon_in_sea_water -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Downward Flux of Particulate Silica at 100M -comment: sinking flux of biogenic silica at 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth100m -out_name: epsi100 -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: epcalc100 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sinking_mole_flux_of_calcite_expressed_as_carbon_in_sea_water -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Downward Flux of Calcite at 100M -comment: sinking flux of calcite at 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth100m -out_name: epcalc100 -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: eparag100 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sinking_mole_flux_of_aragonite_expressed_as_carbon_in_sea_water -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Downward Flux of Aragonite at 100M -comment: sinking flux of aragonite at 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth100m -out_name: eparag100 -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: intdic -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_mass_content_of_dissolved_inorganic_carbon -units: kg m-2 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Dissolved Inorganic Carbon Content -comment: Vertically integrated DIC -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: intdic -type: real -!---------------------------------- -! - -!============ -variable_entry: spco2 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_partial_pressure_of_carbon_dioxide_in_sea_water -units: Pa -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Surface Aqueous Partial Pressure of CO2 -comment: Surface aqueous partial pressure of CO2 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: spco2 -type: real -!---------------------------------- -! - -!============ -variable_entry: dpco2 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_carbon_dioxide_partial_pressure_difference_between_sea_water_and_air -units: Pa -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Delta PCO2 -comment: Difference between atmospheric and oceanic partial pressure of CO2 (positive meaning ocean > atmosphere) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: dpco2 -type: real -!---------------------------------- -! - -!============ -variable_entry: dpo2 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air -units: Pa -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Delta PO2 -comment: Difference between atmospheric and oceanic partial pressure of O2 (positive meaning ocean > atmosphere) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: dpo2 -type: real -!---------------------------------- -! - -!============ -variable_entry: fgco2 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon -units: kg m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Surface Downward CO2 Flux -comment: Gas exchange flux of CO2 (positive into ocean) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fgco2 -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: fgo2 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_mole_flux_of_molecular_oxygen -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Surface Downward O2 Flux -comment: Gas exchange flux of O2 (positive into ocean) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fgo2 -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: fgdms -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_mole_flux_of_dimethyl_sulfide -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Surface Upward DMS Flux -comment: Gas exchange flux of DMS (positive into atmosphere) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fgdms -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fsc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_carbon_due_to_runoff_and_sediment_dissolution -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Flux of Carbon Into Ocean Surface by Runoff and Sediment Dissolution -comment: Carbon supply to ocean through runoff and sediment dissolution (neglects gas exchange) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fsc -type: real -!---------------------------------- -! - -!============ -variable_entry: frc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_carbon_due_to_sedimentation -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Downward Carbon Flux at Ocean Bottom -comment: Carbon loss to sediments -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: frc -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: intpn2 -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_fixation -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Nitrogen Fixation Rate in Ocean -comment: Vertically integrated nitrogen fixation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: intpn2 -type: real -!---------------------------------- -! - -!============ -variable_entry: fsn -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_deposition_and_fixation_and_runoff -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Surface Downward Net Flux of Nitrogen -comment: N supply through deposition flux onto sea surface, nitrogen fixation, and runoff -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fsn -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: frn -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_elemental_nitrogen_due_to_denitrification_and_sedimentation -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Nitrogen Loss to Sediments and through Denitrification -comment: N loss to sediment and water column denitrification -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: frn -type: real -!---------------------------------- -! - -!============ -variable_entry: fsfe -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_iron_due_to_deposition_and_runoff_and_sediment_dissolution -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Surface Downward Net Flux of Iron -comment: Iron supply through deposition flux onto sea surface, runoff, coasts, sediments, etc -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fsfe -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: frfe -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_iron_due_to_sedimentation -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Iron Loss to Sediments -comment: Iron loss to sediments -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: frfe -type: real -!---------------------------------- -! - -!============ -variable_entry: o2min -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile -units: mol m-3 -cell_methods: time: mean area: where sea depth: minimum -cell_measures: area: areacello -long_name: Oxygen Minimum Concentration -comment: Vertical minimum concentration of dissolved oxygen gas -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: o2min -type: real -!---------------------------------- -! - -!============ -variable_entry: zo2min -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water -units: m -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Depth of Oxygen Minimum Concentration -comment: Depth of vertical minimum concentration of dissolved oxygen gas (if two, then the shallower) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: zo2min -type: real -!---------------------------------- -! - -!============ -variable_entry: zsatcalc -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: minimum_depth_of_calcite_undersaturation_in_sea_water -units: m -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Calcite Saturation Depth -comment: Depth of calcite saturation horizon (0 if < surface, ""missing"" if > bottom, if two, then the shallower) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: zsatcalc -type: real -!---------------------------------- -! - -!============ -variable_entry: zsatarag -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: minimum_depth_of_aragonite_undersaturation_in_sea_water -units: m -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Aragonite Saturation Depth -comment: Depth of aragonite saturation horizon (0 if < surface, ""missing"" if > bottom, if two, then the shallower) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: zsatarag -type: real -!---------------------------------- -! - -!============ -variable_entry: fddtdic -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Rate of Change in Upper 100 m of Net Dissolved Inorganic Carbon -comment: Net time rate of change of dissolved inorganic carbon in upper 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time olayer100m -out_name: fddtdic -type: real -!---------------------------------- -! - -!============ -variable_entry: fddtdin -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Rate of Change in Upper 100 m of Net Dissolved Inorganic Nitrogen -comment: Net time rate of change of nitrogen nutrients (e.g. NO3+NH4) in upper 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time olayer100m -out_name: fddtdin -type: real -!---------------------------------- -! - -!============ -variable_entry: fddtdip -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Rate of Change in Upper 100 m of Net Dissolved Inorganic Phosphate -comment: vertical integral of net time rate of change of phosphate in upper 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time olayer100m -out_name: fddtdip -type: real -!---------------------------------- -! - -!============ -variable_entry: fddtdife -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_dissolved_inorganic_iron -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Rate of Change in Upper 100 m of Net Dissolved Inorganic Iron -comment: vertical integral of net time rate of change of dissolved inorganic iron in upper 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time olayer100m -out_name: fddtdife -type: real -!---------------------------------- -! - -!============ -variable_entry: fddtdisi -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Rate of Change in Upper 100 m of Net Dissolved Inorganic Silicate -comment: vertical integral of net time rate of change of dissolved inorganic silicate in upper 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time olayer100m -out_name: fddtdisi -type: real -!---------------------------------- -! - -!============ -variable_entry: fddtalk -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Rate of Change in Upper 100 m of Alkalinity -comment: vertical integral of net time rate of change of alkalinity in upper 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time olayer100m -out_name: fddtalk -type: real -!---------------------------------- -! - -!============ -variable_entry: fbddtdic -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_dissolved_inorganic_carbon_due_to_biological_processes -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Rate of Change in Upper 100 m of Dissolved Inorganic Carbon due to Biological Activity -comment: vertical integral of net biological terms in time rate of change of dissolved inorganic carbon in upper 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time olayer100m -out_name: fbddtdic -type: real -!---------------------------------- -! - -!============ -variable_entry: fbddtdin -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_dissolved_inorganic_nitrogen_due_to_biological_processes -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Rate of Change in Upper 100 m of Dissolved Inorganic Nitrogen due to Biological Activity -comment: vertical integral of net biological terms in time rate of change of nitrogen nutrients (e.g. NO3+NH4) in upper 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time olayer100m -out_name: fbddtdin -type: real -!---------------------------------- -! - -!============ -variable_entry: fbddtdip -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_dissolved_inorganic_phosphorus_due_to_biological_processes -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Rate of Change in Upper 100 m of Dissolved Inorganic Phosphate due to Biological Activity -comment: vertical integral of net biological terms in time rate of change of phosphate in upper 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time olayer100m -out_name: fbddtdip -type: real -!---------------------------------- -! - -!============ -variable_entry: fbddtdife -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_dissolved_inorganic_iron_due_to_biological_processes -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Rate of Change in Upper 100 m of Dissolved Inorganic Iron due to Biological Activity -comment: vertical integral of net biological terms in time rate of change of dissolved inorganic iron in upper 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time olayer100m -out_name: fbddtdife -type: real -!---------------------------------- -! - -!============ -variable_entry: fbddtdisi -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_ocean_mole_content_of_dissolved_inorganic_silicon_due_to_biological_processes -units: mol m-2 s-1 -cell_methods: time: mean area: where sea -cell_measures: area: areacello -long_name: Rate of Change in Upper 100 m of Dissolved Inorganic Silicate due to Biological Activity -comment: vertical integral of net biological terms in time rate of change of dissolved inorganic silicate in upper 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time olayer100m -out_name: fbddtdisi -type: real -!---------------------------------- -! - -!============ -variable_entry: fbddtalk -!============ -modeling_realm: ocnBgchem -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: integral_wrt_depth_of_tendency_of_sea_water_alkalinity_expressed_as_mole_equivalent_due_to_biological_processes -units: mol m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Rate of Change in Upper 100 m of Biological Alkalinity due to Biological Activity -comment: vertical integral of net biological terms in time rate of change of alkalinity in upper 100m -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time olayer100m -out_name: fbddtalk -type: real -!---------------------------------- -! - -!============ -variable_entry: masso -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_mass -units: kg -cell_methods: time: mean area: sum where sea -long_name: Sea Water Mass -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: masso -type: real -!---------------------------------- -! - -!============ -variable_entry: pbo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_pressure_at_sea_floor -units: dbar -cell_methods: time: mean -cell_measures: area: areacello -long_name: Sea Water Pressure at Sea floor -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: pbo -type: real -!---------------------------------- -! - -!============ -variable_entry: pso -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_pressure_at_sea_water_surface -units: dbar -cell_methods: time: mean -cell_measures: area: areacello -long_name: Sea Water Pressure at Sea Water Surface -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: pso -type: real -!---------------------------------- -! - -!============ -variable_entry: volo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_volume -units: m3 -cell_methods: time: mean area: sum where sea -long_name: Sea Water Volume -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: volo -type: real -!---------------------------------- -! - -!============ -variable_entry: zos -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_surface_height_above_geoid -units: m -cell_methods: time: mean -cell_measures: area: areacello -long_name: Sea Surface Height Above Geoid -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: zos -type: real -valid_min: -13.97 -valid_max: 9.575 -ok_min_mean_abs: 0.008384 -ok_max_mean_abs: 1.572 -!---------------------------------- -! - -!============ -variable_entry: zossq -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: square_of_sea_surface_height_above_geoid -units: m2 -cell_methods: time: mean -cell_measures: area: areacello -long_name: Square of Sea Surface Height Above Geoid -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: zossq -type: real -!---------------------------------- -! - -!============ -variable_entry: zosga -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: global_average_sea_level_change -units: m -cell_methods: time: mean area: mean where sea -long_name: Global Average Sea Level Change -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: zosga -type: real -valid_min: -0.1426 -valid_max: 0.382 -ok_min_mean_abs: -0.09124 -ok_max_mean_abs: 0.3304 -!---------------------------------- -! - -!============ -variable_entry: zossga -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: global_average_steric_sea_level_change -units: m -cell_methods: time: mean area: mean where sea -long_name: Global Average Steric Sea Level Change -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: zossga -type: real -!---------------------------------- -! - -!============ -variable_entry: zostoga -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: global_average_thermosteric_sea_level_change -units: m -cell_methods: time: mean area: mean where sea -long_name: Global Average Thermosteric Sea Level Change -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: zostoga -type: real -valid_min: -0.1375 -valid_max: 0.3734 -ok_min_mean_abs: -0.0511 -ok_max_mean_abs: 0.2998 -!---------------------------------- -! - -!============ -variable_entry: masscello -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_mass_per_unit_area -units: kg m-2 -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Sea Water Mass Per Unit Area -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: masscello -type: real -!---------------------------------- -! - -!============ -variable_entry: thkcello -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cell_thickness -units: m -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Ocean Model Cell Thickness -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: thkcello -type: real -!---------------------------------- -! - -!============ -variable_entry: thetao -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_potential_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Sea Water Potential Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: thetao -type: real -valid_min: -9.37e+17 -valid_max: 1.009e+20 -ok_min_mean_abs: -9.37e+17 -ok_max_mean_abs: 1.009e+20 -!---------------------------------- -! - -!============ -variable_entry: thetaoga -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_potential_temperature -units: K -cell_methods: time: mean area: mean where sea -long_name: Global Average Sea Water Potential Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: thetaoga -type: real -!---------------------------------- -! - -!============ -variable_entry: tos -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_surface_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacello -long_name: Sea Surface Temperature -comment: "this may differ from ""surface temperature"" in regions of sea ice." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tos -type: real -valid_min: 270.6 -valid_max: 313.9 -ok_min_mean_abs: 283.7 -ok_max_mean_abs: 291.7 -!---------------------------------- -! - -!============ -variable_entry: tossq -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: square_of_sea_surface_temperature -units: K2 -cell_methods: time: mean -cell_measures: area: areacello -long_name: Square of Sea Surface Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tossq -type: real -!---------------------------------- -! - -!============ -variable_entry: so -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_salinity -units: psu -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Sea Water Salinity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: so -type: real -valid_min: -9.37e+17 -valid_max: 1.009e+20 -ok_min_mean_abs: -9.37e+17 -ok_max_mean_abs: 1.009e+20 -!---------------------------------- -! - -!============ -variable_entry: soga -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_salinity -units: psu -cell_methods: time: mean area: mean where sea -long_name: Global Mean Sea Water Salinity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: soga -type: real -!---------------------------------- -! - -!============ -variable_entry: sos -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_surface_salinity -units: psu -cell_methods: time: mean -cell_measures: area: areacello -long_name: Sea Surface Salinity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: sos -type: real -!---------------------------------- -! - -!============ -variable_entry: rhopoto -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_potential_density -units: kg m-3 -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Sea Water Potential Density -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: rhopoto -type: real -valid_min: -3.257 -valid_max: 1057 -ok_min_mean_abs: 10.38 -ok_max_mean_abs: 1042 -!---------------------------------- -! - -!============ -variable_entry: agessc -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_age_since_surface_contact -units: yr -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Sea Water Age Since Surface Contact -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: agessc -type: real -!---------------------------------- -! - -!============ -variable_entry: cfc11 -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: moles_of_cfc11_per_unit_mass_in_sea_water -units: mol kg-1 -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Moles Per Unit Mass of CFC-11 in Sea Water -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: cfc11 -type: real -!---------------------------------- -! - -!============ -variable_entry: msftbarot -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_barotropic_mass_streamfunction -units: kg s-1 -cell_methods: time: mean -cell_measures: area: areacello -long_name: Ocean Barotropic Mass Streamfunction -comment: differs from CMIP3 because it includes mass. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: msftbarot -type: real -!---------------------------------- -! - -!============ -variable_entry: mlotst -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_mixed_layer_thickness_defined_by_sigma_t -units: m -cell_methods: time: mean -cell_measures: area: areacello -long_name: Ocean Mixed Layer Thickness Defined by Sigma T -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: mlotst -type: real -!---------------------------------- -! - -!============ -variable_entry: mlotstsq -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: square_of_ocean_mixed_layer_thickness_defined_by_sigma_t -units: m2 -cell_methods: time: mean -cell_measures: area: areacello -long_name: Square of Ocean Mixed Layer Thickness Defined by Sigma T -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: mlotstsq -type: real -!---------------------------------- -! - -!============ -variable_entry: omldamax -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_mixed_layer_thickness_defined_by_mixing_scheme -units: m -cell_methods: time: maximum within days time: mean over days -cell_measures: area: areacello -long_name: Mean Daily Maximum Ocean Mixed Layer Thickness Defined by Mixing Scheme -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: omldamax -type: real -!---------------------------------- -! - -!============ -variable_entry: omlmax -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_mixed_layer_thickness_defined_by_mixing_scheme -units: m -cell_methods: time: maximum -cell_measures: area: areacello -long_name: Monthly Maximum Ocean Mixed Layer Thickness Defined by Mixing Scheme -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: omlmax -type: real -!---------------------------------- -! - -!============ -variable_entry: uo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_x_velocity -units: m s-1 -cell_methods: time: mean -long_name: Sea Water X Velocity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: uo -type: real -valid_min: -1.041e+18 -valid_max: 1.01e+20 -ok_min_mean_abs: -1.041e+18 -ok_max_mean_abs: 1.01e+20 -!---------------------------------- -! - -!============ -variable_entry: vo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_y_velocity -units: m s-1 -cell_methods: time: mean -long_name: Sea Water Y Velocity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: vo -type: real -valid_min: -1.041e+18 -valid_max: 1.01e+20 -ok_min_mean_abs: -1.041e+18 -ok_max_mean_abs: 1.01e+20 -!---------------------------------- -! - -!============ -variable_entry: wmo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upward_ocean_mass_transport -units: kg s-1 -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Upward Ocean Mass Transport -comment: differs from CMIP3, which only had upward velocity. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: wmo -type: real -!---------------------------------- -! - -!============ -variable_entry: wmosq -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: square_of_upward_ocean_mass_transport -units: kg2 s-2 -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Square of Upward Ocean Mass Transport -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: wmosq -type: real -!---------------------------------- -! - -!============ -variable_entry: umo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_mass_x_transport -units: kg s-1 -cell_methods: time: mean -long_name: Ocean Mass X Transport -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: umo -type: real -!---------------------------------- -! - -!============ -variable_entry: vmo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_mass_y_transport -units: kg s-1 -cell_methods: time: mean -long_name: Ocean Mass Y Transport -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: vmo -type: real -!---------------------------------- -! - -!============ -variable_entry: msftmyz -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_meridional_overturning_mass_streamfunction -units: kg s-1 -cell_methods: time: mean longitude: mean -long_name: Ocean Meridional Overturning Mass Streamfunction -comment: function of latitude, Z, basin. differs from CMIP3 because it includes mass. For a model with a cartesian latxlon grid, this is the same as the ""Ocean Y Overturning Mass Streamfunction"", listed a few lines down, which should in this case be omitted. For other models, this transport should be approximated as the transport along zig-zag paths corresponding to latitudes with spacing between latitudes appropriate to the model's resolution. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude olevel basin time -out_name: msftmyz -type: real -!---------------------------------- -! - -!============ -variable_entry: msftmrhoz -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_meridional_overturning_mass_streamfunction -units: kg s-1 -cell_methods: time: mean longitude: mean -long_name: Ocean Meridional Overturning Mass Streamfunction -comment: function of of latitude, rho, basin. Also see note above. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude rho basin time -out_name: msftmrhoz -type: real -!---------------------------------- -! - -!============ -variable_entry: msftyyz -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_y_overturning_mass_streamfunction -units: kg s-1 -cell_methods: time: mean longitude: mean -long_name: Ocean Y Overturning Mass Streamfunction -comment: function of Y, Z, basin. Also see note above. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude olevel basin time -out_name: msftyyz -type: real -!---------------------------------- -! - -!============ -variable_entry: msftyrhoz -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_y_overturning_mass_streamfunction -units: kg s-1 -cell_methods: time: mean longitude: mean -long_name: Ocean Y Overturning Mass Streamfunction -comment: function of Y, rho, basin. Also see note above. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude rho basin time -out_name: msftyrhoz -type: real -!---------------------------------- -! - -!============ -variable_entry: msftmyzba -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_meridional_overturning_mass_streamfunction_due_to_bolus_advection -units: kg s-1 -cell_methods: time: mean longitude: mean -long_name: Ocean Meridional Overturning Mass Streamfunction due to Bolus Advection -comment: function of latitude, Z, basin. Also see note above. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude olevel basin time -out_name: msftmyzba -type: real -!---------------------------------- -! - -!============ -variable_entry: msftmrhozba -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_meridional_overturning_mass_streamfunction_due_to_bolus_advection -units: kg s-1 -cell_methods: time: mean longitude: mean -long_name: Ocean Meridional Overturning Mass Streamfunction due to Bolus Advection -comment: function of latitude, rho, basin. Also see note above. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude rho basin time -out_name: msftmrhozba -type: real -!---------------------------------- -! - -!============ -variable_entry: msftyyzba -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_y_overturning_mass_streamfunction_due_to_bolus_advection -units: kg s-1 -cell_methods: time: mean longitude: mean -long_name: Ocean Y Overturning Mass Streamfunction due to Bolus Advection -comment: function of Y, Z, basin. Also see note above. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude olevel basin time -out_name: msftyyzba -type: real -!---------------------------------- -! - -!============ -variable_entry: msftyrhozba -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_y_overturning_mass_streamfunction_due_to_bolus_advection -units: kg s-1 -cell_methods: time: mean longitude: mean -long_name: Ocean Y Overturning Mass Streamfunction due to Bolus Advection -comment: function of Y, rho, basin. Also see note above. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude rho basin time -out_name: msftyrhozba -type: real -!---------------------------------- -! - -!============ -variable_entry: hfnorth -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_ocean_heat_transport -units: W -cell_methods: time: mean -long_name: Northward Ocean Heat Transport -comment: For a model with a cartesian latxlon grid, this is the same as the ""Ocean Heat Y Transport"", listed a few lines down, which should in this case be omitted. For other models, this transport should be approximated as the transport along zig-zag paths corresponding to latitudes with spacing between latitudes appropriate to the model's resolution. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfnorth -type: real -!---------------------------------- -! - -!============ -variable_entry: hfnorthba -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_ocean_heat_transport_due_to_bolus_advection -units: W -cell_methods: time: mean -long_name: Northward Ocean Heat Transport due to Bolus Advection -comment: see note above. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfnorthba -type: real -!---------------------------------- -! - -!============ -variable_entry: hfnorthdiff -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_ocean_heat_transport_due_to_diffusion -units: W -cell_methods: time: mean -long_name: Northward Ocean Heat Transport due to Diffusion -comment: see note above. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfnorthdiff -type: real -!---------------------------------- -! - -!============ -variable_entry: hfx -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_heat_x_transport -units: W -cell_methods: time: mean -long_name: Ocean Heat X Transport -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfx -type: real -!---------------------------------- -! - -!============ -variable_entry: hfy -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_heat_y_transport -units: W -cell_methods: time: mean -long_name: Ocean Heat Y Transport -comment: For a model with a cartesian latxlon grid, this is the same as the ""Northward Ocean Heat Transport"", listed a few lines above, which should be saved instead of this. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfy -type: real -!---------------------------------- -! - -!============ -variable_entry: hfyba -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_heat_y_transport_due_to_bolus_advection -units: W -cell_methods: time: mean -long_name: Ocean Heat Y Transport due to Bolus Advection -comment: see note above. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfyba -type: real -!---------------------------------- -! - -!============ -variable_entry: hfydiff -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_heat_y_transport_due_to_diffusion -units: W -cell_methods: time: mean -long_name: Ocean Heat Y Transport due to Diffussion -comment: see note above. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfydiff -type: real -!---------------------------------- -! - -!============ -variable_entry: hfxba -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_heat_x_transport_due_to_bolus_advection -units: W -cell_methods: time: mean -long_name: Ocean Heat X Transport due to Bolus Advection -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfxba -type: real -!---------------------------------- -! - -!============ -variable_entry: hfxdiff -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_heat_x_transport_due_to_diffusion -units: W -cell_methods: time: mean -long_name: Ocean Heat X Transport due to Diffusion -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfxdiff -type: real -!---------------------------------- -! - -!============ -variable_entry: hfbasin -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_ocean_heat_transport -units: W -cell_methods: time: mean longitude: mean -long_name: Northward Ocean Heat Transport -comment: This differs from a similar, previous entry in that northward transport across individual basins is called for, rather than the fully gridded fields. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude basin time -out_name: hfbasin -type: real -!---------------------------------- -! - -!============ -variable_entry: hfbasinba -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_ocean_heat_transport_due_to_bolus_advection -units: W -cell_methods: time: mean longitude: mean -long_name: Northward Ocean Heat Transport due to Bolus Advection -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude basin time -out_name: hfbasinba -type: real -!---------------------------------- -! - -!============ -variable_entry: hfbasindiff -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_ocean_heat_transport_due_to_diffusion -units: W -cell_methods: time: mean longitude: mean -long_name: Northward Ocean Heat Transport due to Diffussion -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude basin time -out_name: hfbasindiff -type: real -!---------------------------------- -! - -!============ -variable_entry: htovgyre -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_ocean_heat_transport_due_to_gyre -units: W -cell_methods: time: mean longitude: mean -long_name: Northward Ocean Heat Transport due to Gyre -comment: function of latitude, basin -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude basin time -out_name: htovgyre -type: real -valid_min: -6.75e+14 -valid_max: 2.691e+15 -ok_min_mean_abs: 5.91e+13 -ok_max_mean_abs: 2.364e+14 -!---------------------------------- -! - -!============ -variable_entry: htovovrt -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_ocean_heat_transport_due_to_overturning -units: W -cell_methods: time: mean longitude: mean -long_name: Northward Ocean Heat Transport due to Overturning -comment: function of latitude, basin -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude basin time -out_name: htovovrt -type: real -valid_min: -2.386e+15 -valid_max: 1.305e+16 -ok_min_mean_abs: 2.039e+14 -ok_max_mean_abs: 8.156e+14 -!---------------------------------- -! - -!============ -variable_entry: sltovgyre -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_ocean_salt_transport_due_to_gyre -units: kg s-1 -cell_methods: time: mean longitude: mean -long_name: Northward Ocean Salt Transport due to Gyre -comment: function of latitude, basin -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude basin time -out_name: sltovgyre -type: real -valid_min: -2.132e+10 -valid_max: 5.333e+10 -ok_min_mean_abs: 1.503e+09 -ok_max_mean_abs: 6.01e+09 -!---------------------------------- -! - -!============ -variable_entry: sltovovrt -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_ocean_salt_transport_due_to_overturning -units: kg s-1 -cell_methods: time: mean longitude: mean -long_name: Northward Ocean Salt Transport due to Overturning -comment: function of latitude, basin -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: latitude basin time -out_name: sltovovrt -type: real -valid_min: -1.651e+11 -valid_max: 7.307e+11 -ok_min_mean_abs: 1.069e+10 -ok_max_mean_abs: 4.276e+10 -!---------------------------------- -! - -!============ -variable_entry: mfo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_transport_across_line -units: kg s-1 -cell_methods: time: mean -long_name: Sea Water Transport -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: oline time -out_name: mfo -type: real -!---------------------------------- -! - -!============ -variable_entry: pr -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: rainfall_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where ice_free_sea over sea -cell_measures: area: areacello -long_name: Rainfall Flux where Ice Free Ocean over Sea -comment: compute as the total mass of liquid water falling as liquid rain into the ice-free portion of the ocean divided by the area of the ocean portion of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: pr -type: real -valid_min: 0 -valid_max: 0.001254 -ok_min_mean_abs: 2.156e-05 -ok_max_mean_abs: 3.215e-05 -!---------------------------------- -! - -!============ -variable_entry: prsn -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: snowfall_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where ice_free_sea over sea -cell_measures: area: areacello -long_name: Snowfall Flux where Ice Free Ocean over Sea -comment: compute as the total mass of ice directly falling as snow into the ice-free portion of the ocean divided by the area of the ocean portion of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prsn -type: real -valid_min: 0 -valid_max: 0.0002987 -ok_min_mean_abs: 1.449e-06 -ok_max_mean_abs: 6.11e-06 -!---------------------------------- -! - -!============ -variable_entry: evs -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where ice_free_sea over sea -cell_measures: area: areacello -long_name: Water Evaporation Flux Where Ice Free Ocean over Sea -comment: compute as the total mass of water vapor evaporating from the ice-free portion of the ocean divided by the area of the ocean portion of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: evs -type: real -!---------------------------------- -! - -!============ -variable_entry: friver -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_flux_into_sea_water_from_rivers -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Water Flux into Sea Water From Rivers -comment: compute as the river flux of water into the ocean divided by the area of the ocean portion of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: friver -type: real -!---------------------------------- -! - -!============ -variable_entry: ficeberg -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_flux_into_sea_water_from_icebergs -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Water Flux into Sea Water From Icebergs -comment: compute as the iceberg melt water flux into the ocean divided by the area of the ocean portion of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: ficeberg -type: real -!---------------------------------- -! - -!============ -variable_entry: fsitherm -!============ -modeling_realm: ocean seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_flux_into_sea_water_due_to_sea_ice_thermodynamics -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Water Flux into Sea Water due to Sea Ice Thermodynamics -comment: compute as the sea ice thermodynamic water flux into the ocean divided by the area of the ocean portion of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fsitherm -type: real -!---------------------------------- -! - -!============ -variable_entry: wfo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_flux_into_sea_water -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Water Flux into Sea Water -comment: compute as the water flux into the ocean divided by the area of the ocean portion of the grid cell. This is the sum of the next two variables in this table. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: wfo -type: real -valid_min: -0.005411 -valid_max: 0.03952 -ok_min_mean_abs: 1.831e-05 -ok_max_mean_abs: 6.051e-05 -!---------------------------------- -! - -!============ -variable_entry: wfonocorr -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_flux_into_sea_water_without_flux_correction -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Water Flux into Sea Water Without Flux Correction -comment: compute as the water flux (without flux correction) into the ocean divided by the area of the ocean portion of the grid cell. This is the sum of the first 6 variables in this table? -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: wfonocorr -type: real -!---------------------------------- -! - -!============ -variable_entry: wfcorr -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_flux_correction -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Water Flux Correction -comment: If this does not vary from one year to the next, report only a single year. Positive flux implies correction adds water to ocean. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: wfcorr -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: vsfpr -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: virtual_salt_flux_into_sea_water_due_to_rainfall -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Virtual Salt Flux into Sea Water due to Rainfall -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: vsfpr -type: real -!---------------------------------- -! - -!============ -variable_entry: vsfevap -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: virtual_salt_flux_into_sea_water_due_to_evaporation -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Virtual Salt Flux into Sea Water due to Evaporation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: vsfevap -type: real -!---------------------------------- -! - -!============ -variable_entry: vsfriver -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: virtual_salt_flux_into_sea_water_from_rivers -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Virtual Salt Flux into Sea Water From Rivers -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: vsfriver -type: real -!---------------------------------- -! - -!============ -variable_entry: vsfsit -!============ -modeling_realm: ocean seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Virtual Salt Flux into Sea Water due to Sea Ice Thermodynamics -comment: This variable measures the virtual salt flux into sea water due to the melting of sea ice. It is set to zero in models which receive a real water flux. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: vsfsit -type: real -!---------------------------------- -! - -!============ -variable_entry: vsf -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: virtual_salt_flux_into_sea_water -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Virtual Salt Flux into Sea Water -comment: If this does not vary from one year to the next, report only a single year. Positive flux implies correction increases salinity of water. This includes all virtual salt flux, including that due to a salt flux correction. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: vsf -type: real -!---------------------------------- -! - -!============ -variable_entry: vsfcorr -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: virtual_salt_flux_correction -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Virtual Salt Flux Correction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: vsfcorr -type: real -!---------------------------------- -! - -!============ -variable_entry: sfdsi -!============ -modeling_realm: ocean seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downward_sea_ice_basal_salt_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Downward Sea Ice Basal Salt Flux -comment: This field is physical, and it arises since sea ice has a nonzero salt content, so it exchanges salt with the liquid ocean upon melting and freezing. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: sfdsi -type: real -!---------------------------------- -! - -!============ -variable_entry: sfriver -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: salt_flux_into_sea_water_from_rivers -units: kg m-2 s-1 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Salt Flux into Sea Water from Rivers -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: sfriver -type: real -!---------------------------------- -! - -!============ -variable_entry: hfgeou -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upward_geothermal_heat_flux_at_sea_floor -units: W m-2 -cell_methods: time: mean area: whre sea -cell_measures: area: areacello -long_name: Upward Geothermal Heat Flux at Sea Floor -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfgeou -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfrainds -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water -units: W m-2 -cell_methods: time: mean area: mean where ice_free_sea over sea -cell_measures: area: areacello -long_name: Temperature Flux due to Rainfall Expressed as Heat Flux into Sea Water -comment: This is defined as ""where ice_free_sea over sea""; i.e., compute the total flux (considered here) entering the ice-free portion of the grid cell divided by the area of the ocean portion of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfrainds -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: hfevapds -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water -units: W m-2 -cell_methods: time: mean area: mean where ice_free_sea over sea -cell_measures: area: areacello -long_name: Temperature Flux due to Evaporation Expressed as Heat Flux Out of Sea Water -comment: "This is defined as ""where ice_free_sea over sea""" -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfevapds -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfrunoffds -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water -units: W m-2 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Temperature Flux due to Runoff Expressed as Heat Flux into Sea Water -comment: In general this should be reported as a function of depth, (i.e., it will be a function of the generic ""XYZ"" dimensions). Include enough depth levels to represent the non-zero values of this field everywhere on the globe. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: hfrunoffds -type: real -!---------------------------------- -! - -!============ -variable_entry: hfsnthermds -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: heat_flux_into_sea_water_due_to_snow_thermodynamics -units: W m-2 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Heat Flux into Sea Water due to Snow Thermodynamics -comment: In general this should be reported as a function of depth, (i.e., it will be a function of the generic ""XYZ"" dimensions). Include enough depth levels to represent the non-zero values of this field everywhere on the globe. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: hfsnthermds -type: real -!---------------------------------- -! - -!============ -variable_entry: hfsifrazil -!============ -modeling_realm: ocean seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: heat_flux_into_sea_water_due_to_freezing_of_frazil_ice -units: W m-2 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Heat Flux into Sea Water due to Frazil Ice Formation -comment: As of May 2010, the WGOMD document recommends that this field should be saved instead of the field listed immediately below. In general this should be reported as a function of depth, (i.e., it will be a function of the generic ""XYZ"" dimensions). Include enough depth levels to represent the non-zero values of this field everywhere on the globe. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: hfsifrazil -type: real -!---------------------------------- -! - -!============ -variable_entry: hfsithermds -!============ -modeling_realm: ocean seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: heat_flux_into_sea_water_due_to_sea_ice_thermodynamics -units: W m-2 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Heat Flux into Sea Water due to Sea Ice Thermodynamics -comment: As of May 2010, the WGOMD document recommends that instead of saving this field, the field listed immediately above should be saved instead. In general this should be reported as a function of depth, (i.e., it will be a function of the generic ""XYZ"" dimensions). Include enough depth levels to represent the non-zero values of this field everywhere on the globe. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: hfsithermds -type: real -!---------------------------------- -! - -!============ -variable_entry: hfibthermds -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: heat_flux_into_sea_water_due_to_iceberg_thermodynamics -units: W m-2 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Heat Flux into Sea Water due to Iceberg Thermodynamics -comment: In general this should be reported as a function of depth, (i.e., it will be a function of the generic ""XYZ"" dimensions). Include enough depth levels to represent the non-zero values of this field everywhere on the globe. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: hfibthermds -type: real -!---------------------------------- -! - -!============ -variable_entry: rlds -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_net_downward_longwave_flux -units: W m-2 -cell_methods: time: mean area: mean where ice_free_sea over sea -cell_measures: area: areacello -long_name: Surface Net Downward Longwave Radiation -comment: "This is defined as ""where ice_free_sea over sea""" -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlds -type: real -positive: down -valid_min: 30.71 -valid_max: 520.5 -ok_min_mean_abs: 271.2 -ok_max_mean_abs: 323.6 -!---------------------------------- -! - -!============ -variable_entry: hfls -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_latent_heat_flux -units: W m-2 -cell_methods: time: mean area: mean where ice_free_sea over sea -cell_measures: area: areacello -long_name: Surface Downward Latent Heat Flux -comment: "This is defined as ""where ice_free_sea over sea""" -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls -type: real -positive: down -valid_min: -76.77 -valid_max: 790.7 -ok_min_mean_abs: 50.39 -ok_max_mean_abs: 73.2 -!---------------------------------- -! - -!============ -variable_entry: hfss -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_sensible_heat_flux -units: W m-2 -cell_methods: time: mean area: mean where ice_free_sea over sea -cell_measures: area: areacello -long_name: Surface Downward Sensible Heat Flux -comment: "This is defined as ""where ice_free_sea over sea""" -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfss -type: real -positive: down -valid_min: -264.5 -valid_max: 844.8 -ok_min_mean_abs: 10.7 -ok_max_mean_abs: 34.84 -!---------------------------------- -! - -!============ -variable_entry: rsntds -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_downward_shortwave_flux_at_sea_water_surface -units: W m-2 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Net Downward Shortwave Radiation at Sea Water Surface -comment: This is the flux into the surface of liquid sea water only. This excludes shortwave flux absorbed by sea ice, but includes any light that passes through the ice and is absorbed by the ocean. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsntds -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsds -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_shortwave_flux_in_sea_water -units: W m-2 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello volume: volcello -long_name: Downwelling Shortwave Radiation in Sea Water -comment: In general the shortwave flux should be reported as a function of ocean depth, (i.e., it will be a function of the generic ""XYZ"" dimensions). Include enough depth levels to represent the non-zero values of this field everywhere on the globe. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel time -out_name: rsds -type: real -positive: down -valid_min: -0.002946 -valid_max: 524.4 -ok_min_mean_abs: 143.9 -ok_max_mean_abs: 181.6 -!---------------------------------- -! - -!============ -variable_entry: hfcorr -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: heat_flux_correction -units: W m-2 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Heat Flux Correction -comment: If this does not vary from one year to the next, report only a single year. Positive indicates correction adds heat to ocean. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfcorr -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: hfds -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_heat_flux_in_sea_water -units: W m-2 -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Downward Heat Flux at Sea Water Surface -comment: "This is the net flux of heat entering the liquid water column through its upper surface (excluding any ""flux adjustment"") ." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfds -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: tauuo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_x_stress -units: N m-2 -cell_methods: time: mean area: mean where sea -long_name: Surface Downward X Stress -comment: This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tauuo -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: tauvo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_y_stress -units: N m-2 -cell_methods: time: mean area: mean where sea -long_name: Surface Downward Y Stress -comment: This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tauvo -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: tauucorr -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_x_stress_correction -units: N m-2 -cell_methods: time: mean area: mean where sea -long_name: Surface Downward X Stress Correction -comment: This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc. If this does not vary from one year to the next, report only a single year. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tauucorr -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: tauvcorr -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_y_stress_correction -units: N m-2 -cell_methods: time: mean area: mean where sea -long_name: Surface Downward Y Stress Correction -comment: This is the stress on the liquid ocean from overlying atmosphere, sea ice, ice shelf, etc. If this does not vary from one year to the next, report only a single year. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tauvcorr -type: real -positive: down -!---------------------------------- -! - diff --git a/TestTables/CMIP5_cf3hr b/TestTables/CMIP5_cf3hr deleted file mode 100644 index d6eeb0bce9588c11e0615afd6f1f0aa9ba7df553..0000000000000000000000000000000000000000 --- a/TestTables/CMIP5_cf3hr +++ /dev/null @@ -1,2736 +0,0 @@ -table_id: Table cf3hr -modeling_realm: atmos - -frequency: 3hr - -cmor_version: 2.5.0 ! minimum version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 12 November 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip branch_time contact institute_id ! space separated required global attribute - -forcings: N/A Nat Ant GHG SD SI SA TO SO Oz LU Sl Vl SS Ds BC MD OC AA - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'volcano-free hindcast initialized in year XXXX' 'noVolcXXXX' -expt_id_ok: 'prediction with 2010 volcano' 'volcIn2010' -expt_id_ok: 'pre-industrial control' 'piControl' -expt_id_ok: 'historical' 'historical' -expt_id_ok: 'mid-Holocene' 'midHolocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.6' 'rcp26' -expt_id_ok: 'RCP6' 'rcp60' -expt_id_ok: 'ESM pre-industrial control' 'esmControl' -expt_id_ok: 'ESM historical' 'esmHistorical' -expt_id_ok: 'ESM RCP8.5' 'esmrcp85' -expt_id_ok: 'ESM fixed climate 1' 'esmFixClim1' -expt_id_ok: 'ESM fixed climate 2' 'esmFixClim2' -expt_id_ok: 'ESM feedback 1' 'esmFdbk1' -expt_id_ok: 'ESM feedback 2' 'esmFdbk2' -expt_id_ok: '1 percent per year CO2' '1pctCO2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt4xCO2' -expt_id_ok: 'natural-only' 'historicalNat' -expt_id_ok: 'GHG-only' 'historicalGHG' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst2030' -expt_id_ok: 'control SST climatology' 'sstClim' -expt_id_ok: 'CO2 forcing' 'sstClim4xCO2' -expt_id_ok: 'all aerosol forcing' 'sstClimAerosol' -expt_id_ok: 'sulfate aerosol forcing' 'sstClimSulfate' -expt_id_ok: '4xCO2 AMIP' 'amip4xCO2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amipFuture' -expt_id_ok: 'aqua planet control' 'aquaControl' -expt_id_ok: '4xCO2 aqua planet' 'aqua4xCO2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua4K' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip4K' - - -approx_interval: 0.125000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -generic_levels: alevel alevhalf - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: p220 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -type: double -value: 22000. ! of scalar (singleton) dimension -bounds_values: 44000. 0.0 ! of scalar (singleton) dimension bounds -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: p560 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -type: double -value: 56000. ! of scalar (singleton) dimension -bounds_values: 68000. 44000. ! of scalar (singleton) dimension bounds -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: p840 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -type: double -value: 84000. ! of scalar (singleton) dimension -bounds_values: 100000. 68000. ! of scalar (singleton) dimension bounds -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: alt40 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: altitude -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: altitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: alt40 -stored_direction: increasing -tolerance: 0.001 -type: double -requested: 240. 720. 1200. 1680. 2160. 2640. 3120. 3600. 4080. 4560. 5040. 5520. 6000. 6480. 6960. 7440. 7920. 8400. 8880. 9360. 9840. 10320. 10800. 11280. 11760. 12240. 12720. 13200. 13680. 14160. 14640. 15120. 15600. 16080. 16560. 17040. 17520. 18000. 18480. 18960. ! space-separated list of requested coordinates -requested_bounds: 0. 480. 480. 960. 960. 1440. 1440. 1920. 1920. 2400. 2400. 2880. 2880. 3360. 3360. 3840. 3840. 4320. 4320. 4800. 4800. 5280. 5280. 5760. 5760. 6240. 6240. 6720. 6720. 7200. 7200. 7680. 7680. 8160. 8160. 8640. 8640. 9120. 9120. 9600. 9600. 10080. 10080. 10560. 10560. 11040. 11040. 11520. 11520. 12000. 12000. 12480. 12480. 12960. 12960. 13440. 13440. 13920. 13920. 14400. 14400. 14880. 14880. 15360. 15360. 15840. 15840. 16320. 16320. 16800. 16800. 17280. 17280. 17760. 17760. 18240. 18240. 18720. 18720. 19200. ! space-separated list of requested coordinate bounds -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time1 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: height2m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 10.0 -stored_direction: increasing -type: double -value: 2. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: height10m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 30.0 -stored_direction: increasing -type: double -value: 10. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: scatratio -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: backscattering_ratio -units: 1 -long_name: lidar backscattering ratio -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: scatratio -stored_direction: increasing -tolerance: 0.001 -type: double -requested: 0.0605 2.1 4. 6. 8.5 12.5 17.5 22.5 27.5 35. 45. 55. 70. 539.5 1004. ! space-separated list of requested coordinates -requested_bounds: 0.01 1.2 1.2 3. 3. 5. 5. 7. 7. 10. 10. 15. 15. 20. 20. 25. 25. 30. 30. 40. 40. 50. 50. 60. 60. 80. 80. 999. 999. 1009. ! space-separated list of requested coordinate bounds -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: dbze -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: equivalent_reflectivity_factor -units: dBZ -long_name: CloudSat simulator equivalent radar reflectivity factor -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: dbze -stored_direction: increasing -tolerance: 0.001 -type: double -requested: -47.5 -42.5 -37.5 -32.5 -27.5 -22.5 -17.5 -12.5 -7.5 -2.5 2.5 7.5 12.5 17.5 22.5 ! space-separated list of requested coordinates -requested_bounds: -50. -45. -45. -40. -40. -35. -35. -30. -30. -25. -25. -20. -20. -15. -15. -10. -10. -5. -5. 0. 0. 5. 5. 10. 10. 15. 15. 20. 20. 25. ! space-separated list of requested coordinate bounds -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: sza5 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: solar_zenith_angle -units: degree -long_name: solar zenith angle -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: sza -stored_direction: increasing -tolerance: 0.001 -type: double -requested: 0. 20. 40. 60. 80. ! space-separated list of requested coordinates -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: location -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -units: 1 -long_name: location index -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: loc -stored_direction: increasing -type: integer -must_have_bounds: no -index_only: ok -must_call_cmor_grid: yes - -!---------------------------------- -! - -!============ -axis_entry: smooth_level -!============ -! -! This coordinate is a hybrid height coordinate with units of meters (m). -! It increases upward. -! The values of a(k)*ztop, which appear in the formula below, should be stored as smooth_level. -! Note that in the netCDF file the variable will be named "lev", not smooth_level. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sleve_coordinate -units: m -axis: Z -positive: up -long_name: atmosphere smooth level vertical (SLEVE) coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: -200. -valid_max: 800000. -formula: z(n,k,j,i) = a(k)*ztop + b1(k)*zsurf1(n,j,i) + b2(k)*zsurf2(n,j,i) -z_factors: a: a b1: b1 b2: b2 ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -z_bounds_factors: a: a_bnds b1: b1_bnds b2: b2_bnds ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -!---------------------------------- -! -!============ -axis_entry: natural_log_pressure -!============ -! -!This coordinate is dimensionless and varies from near 0 at the surface and increases upward. -! The values of lev(k), which appears in the formula below, should be stored as natural_log_pressure. -! Note that in the netCDF file the variable will be named "lev", not natural_log_pressure. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_ln_pressure_coordinate -axis: Z -long_name: atmosphere natural log pressure coordinate -positive: down -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 20. -formula: p(k) = p0 * exp(-lev(k)) -z_factors: p0: p0 lev: lev -z_bounds_factors: p0: p0 lev: lev_bnds -!---------------------------------- -! -!============ -axis_entry: standard_sigma -!============ -! -! This coordinate is dimensionless and varies from 0 at the model top to 1.0 at the surface. -! The values of sigma(k), which appears in the formula below, should be stored as standard_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -z_factors: ptop: ptop sigma: lev ps: ps -z_bounds_factors: ptop: ptop sigma: lev_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of a(k)+ b(k), which appear in the formula below, should be stored as standard_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_hybrid_sigma. -! -!--------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of ap(k)/p0 + b(k), which appear in the formula below, should be stored as alternate_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not alternate_hybrid_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -z_factors: ap: ap b: b ps: ps -z_bounds_factors: ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! This coordinate has dimension of meters (m) and increases upward. -! The values of a(k) which appear in the formula below, should be stored as hybrid_height. -! Note that in the netCDF file the variable will be named "lev", not hybrid_height. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0.0 -formula: z(k,j,i) = a(k) + b(k)*orog(j,i) -z_factors: a: lev b: b orog: orog -z_bounds_factors: a: lev_bnds b: b_bnds orog: orog -!---------------------------------- -! -! *************************************************************** -! -! Vertical coordinate formula terms: -! -! *************************************************************** -! -! -!============ -variable_entry: orog -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -comment: height above the geoid; as defined here, ""the geoid"" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Report here the height above the present-day geoid. Over ocean, report as 0.0 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: orog -type: real -valid_min: -700 -valid_max: 1.00E+04 -!---------------------------------- -! -! -!============ -variable_entry: p0 -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: reference pressure -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -! -!============ -variable_entry: a -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k+1/2) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ztop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: height of top of model -units: m -!---------------------------------- -! -! -! - -!============ -variable_entry: clcalipso -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: point -long_name: CALIPSO Cloud Area Fraction -comment: (40 height levels) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location alt40 time1 -out_name: clcalipso -type: real -!---------------------------------- -! - -!============ -variable_entry: clcalipso2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: point -long_name: CALIPSO Cloud Fraction Undetected by CloudSat -comment: (40 height levels) Clouds detected by CALIPSO but below the detectability threshold of CloudSat -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location alt40 time1 -out_name: clcalipso2 -type: real -!---------------------------------- -! - -!============ -variable_entry: cfadDbze94 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid -units: 1 -cell_methods: time: point -long_name: CloudSat Radar Reflectivity CFAD -comment: CFADs (Cloud Frequency Altitude Diagrams) are joint height - radar reflectivity (or lidar scattering ratio) distributions (40 levelsx15 bins) . -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location alt40 dbze time1 -out_name: cfadDbze94 -type: real -!---------------------------------- -! - -!============ -variable_entry: cfadLidarsr532 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: histogram_of_backscattering_ratio_over_height_above_reference_ellipsoid -units: 1 -cell_methods: time: point -long_name: CALIPSO Scattering Ratio CFAD -comment: CFADs (Cloud Frequency Altitude Diagrams) are joint height - radar reflectivity (or lidar scattering ratio) distributions (40 levelsx15 bins) . -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location alt40 scatratio time1 -out_name: cfadLidarsr532 -type: real -!---------------------------------- -! - -!============ -variable_entry: parasolRefl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_bidirectional_reflectance -units: 1 -cell_methods: time: point -long_name: PARASOL Reflectance -comment: Simulated reflectance from PARASOL as seen at the top of the atmosphere for 5 solar zenith angles. Valid only over ocean and for one viewing direction (viewing zenith angle of 30 degrees and relative azimuth angle 320 degrees). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location sza5 time1 -out_name: parasolRefl -type: real -!---------------------------------- -! - -!============ -variable_entry: cltcalipso -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: point -long_name: CALIPSO Total Cloud Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location time1 -out_name: cltcalipso -type: real -!---------------------------------- -! - -!============ -variable_entry: cllcalipso -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: point -long_name: CALIPSO Low Level Cloud Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location time1 p840 -out_name: cllcalipso -type: real -!---------------------------------- -! - -!============ -variable_entry: clmcalipso -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: point -long_name: CALIPSO Mid Level Cloud Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location time1 p560 -out_name: clmcalipso -type: real -!---------------------------------- -! - -!============ -variable_entry: clhcalipso -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: point -long_name: CALIPSO High Level Cloud Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location time1 p220 -out_name: clhcalipso -type: real -!---------------------------------- -! - -!============ -variable_entry: longitude -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -cell_methods: time: point -long_name: Longitude -comment: is a function of time. Note that the CF convention and CMOR2 require that this field will be included in each file that contains a variable that is a function of the ""location"" dimension, so there is no need to save this field by itself. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location time1 -out_name: lon -type: real -valid_min: 0.0 -valid_max: 360.0 -!---------------------------------- -! - -!============ -variable_entry: latitude -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -cell_methods: time: point -long_name: Latitude -comment: the above comment also applies to latitude. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location time1 -out_name: lat -type: real -valid_min: -90.0 -valid_max: 90.0 -!---------------------------------- -! - -!============ -variable_entry: toffset -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: time -units: day -long_name: Offset Time -comment: "this ""offset time"" should be added to the value stored in the ""time dimension"" to get the actual time. This actual time is the time (UTC) of the corresponding point in the satellite orbit used to extract the model data." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: location time1 -out_name: toffset -type: real -!---------------------------------- -! - -!============ -variable_entry: tas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: point -cell_measures: area: areacella -long_name: Near-Surface Air Temperature -comment: near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 height2m -out_name: tas -type: real -valid_min: 180.6 -valid_max: 325.7 -ok_min_mean_abs: 273.5 -ok_max_mean_abs: 281.7 -!---------------------------------- -! - -!============ -variable_entry: ts -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Temperature -comment: ""skin"" temperature (i.e., SST for open ocean) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: ts -type: real -valid_min: 176.8 -valid_max: 331.8 -ok_min_mean_abs: 274.2 -ok_max_mean_abs: 281.8 -!---------------------------------- -! - -!============ -variable_entry: psl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: point -cell_measures: area: areacella -long_name: Sea Level Pressure -comment: not, in general, the same as surface pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: psl -type: real -valid_min: 9.477e+04 -valid_max: 1.124e+05 -ok_min_mean_abs: 1.003e+05 -ok_max_mean_abs: 1.017e+05 -!---------------------------------- -! - -!============ -variable_entry: ps -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Air Pressure -comment: not, in general, the same as mean sea-level pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: ps -type: real -valid_min: 4.792e+04 -valid_max: 1.093e+05 -ok_min_mean_abs: 9.606e+04 -ok_max_mean_abs: 9.743e+04 -!---------------------------------- -! - -!============ -variable_entry: uas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: point -long_name: Eastward Near-Surface Wind -comment: near-surface (usually, 10 meters) eastward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 height10m -out_name: uas -type: real -valid_min: -19.01 -valid_max: 18.68 -ok_min_mean_abs: 1.668 -ok_max_mean_abs: 4.106 -!---------------------------------- -! - -!============ -variable_entry: vas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: point -long_name: Northward Near-Surface Wind -comment: near-surface (usually, 10 meters) northward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 height10m -out_name: vas -type: real -valid_min: -18.04 -valid_max: 22.84 -ok_min_mean_abs: 1.065 -ok_max_mean_abs: 2.678 -!---------------------------------- -! - -!============ -variable_entry: sfcWind -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: wind_speed -units: m s-1 -cell_methods: time: point -long_name: Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) wind speed. This is the mean of the speed, not the speed computed from the mean u and v components of wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 height10m -out_name: sfcWind -type: real -!---------------------------------- -! - -!============ -variable_entry: hurs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: point -cell_measures: area: areacella -long_name: Near-Surface Relative Humidity -comment: near-surface (usually, 2meters) relative humidity expressed as a percentage. This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 height2m -out_name: hurs -type: real -!---------------------------------- -! - -!============ -variable_entry: huss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Near-Surface Specific Humidity -comment: near-surface (usually, 2 meters) specific humidity. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 height2m -out_name: huss -type: real -valid_min: -7.21e-06 -valid_max: 0.02992 -ok_min_mean_abs: 0.006391 -ok_max_mean_abs: 0.008749 -!---------------------------------- -! - -!============ -variable_entry: pr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Precipitation -comment: at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: pr -type: real -valid_min: 0 -valid_max: 0.001254 -ok_min_mean_abs: 2.156e-05 -ok_max_mean_abs: 3.215e-05 -!---------------------------------- -! - -!============ -variable_entry: prsn -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: snowfall_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Snowfall Flux -comment: at surface; includes precipitation of all forms of water in the solid phase -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: prsn -type: real -valid_min: 0 -valid_max: 0.0002987 -ok_min_mean_abs: 1.449e-06 -ok_max_mean_abs: 6.11e-06 -!---------------------------------- -! - -!============ -variable_entry: prc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_precipitation_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Convective Precipitation -comment: at surface; includes both liquid and solid phases. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: prc -type: real -valid_min: 0 -valid_max: 0.0006323 -ok_min_mean_abs: -2.528e-06 -ok_max_mean_abs: 3.209e-05 -!---------------------------------- -! - -!============ -variable_entry: evspsbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Evaporation -comment: at surface; flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: evspsbl -type: real -!---------------------------------- -! - -!============ -variable_entry: sbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_sublimation_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Snow and Ice Sublimation Flux -comment: The snow and ice sublimation flux is the loss of snow and ice mass from the surface resulting from their conversion to water vapor that enters the atmosphere. This differs from sbl appearing in table Limon in that the flux is averaged over the entire grid cell, not just the land portion. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: sbl -type: real -valid_min: -0.004959 -valid_max: 0.0009936 -ok_min_mean_abs: -5.521e-05 -ok_max_mean_abs: 9.61e-05 -!---------------------------------- -! - -!============ -variable_entry: tauu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_eastward_stress -units: Pa -cell_methods: time: point -long_name: Surface Downward Eastward Wind Stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: tauu -type: real -positive: down -valid_min: -2.729 -valid_max: 2.934 -ok_min_mean_abs: 0.03979 -ok_max_mean_abs: 0.1065 -!---------------------------------- -! - -!============ -variable_entry: tauv -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_northward_stress -units: Pa -cell_methods: time: point -long_name: Surface Downward Northward Wind Stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: tauv -type: real -positive: down -valid_min: -2.472 -valid_max: 2.527 -ok_min_mean_abs: 0.01447 -ok_max_mean_abs: 0.08134 -!---------------------------------- -! - -!============ -variable_entry: hfls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: hfls -type: real -positive: up -valid_min: -76.77 -valid_max: 790.7 -ok_min_mean_abs: 50.39 -ok_max_mean_abs: 73.2 -!---------------------------------- -! - -!============ -variable_entry: hfss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Upward Sensible Heat Flux -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: hfss -type: real -positive: up -valid_min: -264.5 -valid_max: 844.8 -ok_min_mean_abs: 10.7 -ok_max_mean_abs: 34.84 -!---------------------------------- -! - -!============ -variable_entry: rlds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Downwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: rlds -type: real -positive: down -valid_min: 30.71 -valid_max: 520.5 -ok_min_mean_abs: 271.2 -ok_max_mean_abs: 323.6 -!---------------------------------- -! - -!============ -variable_entry: rlus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Upwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: rlus -type: real -positive: up -valid_min: 43.75 -valid_max: 658 -ok_min_mean_abs: 331.1 -ok_max_mean_abs: 369.9 -!---------------------------------- -! - -!============ -variable_entry: rsds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Downwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: rsds -type: real -positive: down -valid_min: -0.002946 -valid_max: 524.4 -ok_min_mean_abs: 143.9 -ok_max_mean_abs: 181.6 -!---------------------------------- -! - -!============ -variable_entry: rsus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Upwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: rsus -type: real -positive: up -valid_min: -0.006589 -valid_max: 422.2 -ok_min_mean_abs: 26.22 -ok_max_mean_abs: 43.77 -!---------------------------------- -! - -!============ -variable_entry: rsdscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Downwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: rsdscs -type: real -positive: down -valid_min: -1.748e+30 -valid_max: 518 -ok_min_mean_abs: 206.9 -ok_max_mean_abs: 238.6 -!---------------------------------- -! - -!============ -variable_entry: rsuscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Upwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: rsuscs -type: real -positive: up -valid_min: -0.01446 -valid_max: 462.2 -ok_min_mean_abs: 31.65 -ok_max_mean_abs: 61.59 -!---------------------------------- -! - -!============ -variable_entry: rldscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Downwelling Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: rldscs -type: real -positive: down -valid_min: 33.55 -valid_max: 543.6 -ok_min_mean_abs: 238.6 -ok_max_mean_abs: 293.8 -!---------------------------------- -! - -!============ -variable_entry: rsdt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_incoming_shortwave_flux -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: TOA Incident Shortwave Radiation -comment: incident shortwave at the top of the atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: rsdt -type: real -positive: down -valid_min: 0 -valid_max: 555.5 -ok_min_mean_abs: 294.4 -ok_max_mean_abs: 303.8 -!---------------------------------- -! - -!============ -variable_entry: rsut -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: TOA Outgoing Shortwave Radiation -comment: at the top of the atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: rsut -type: real -positive: up -valid_min: -0.02689 -valid_max: 416.9 -ok_min_mean_abs: 96.72 -ok_max_mean_abs: 114.1 -!---------------------------------- -! - -!============ -variable_entry: rlut -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: TOA Outgoing Longwave Radiation -comment: at the top of the atmosphere (to be compared with satellite measurements) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: rlut -type: real -positive: up -valid_min: 67.48 -valid_max: 383.2 -ok_min_mean_abs: 214.1 -ok_max_mean_abs: 227.5 -!---------------------------------- -! - -!============ -variable_entry: rlutcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: TOA Outgoing Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: rlutcs -type: real -positive: up -valid_min: 70.59 -valid_max: 372.3 -ok_min_mean_abs: 235.1 -ok_max_mean_abs: 253.8 -!---------------------------------- -! - -!============ -variable_entry: rsutcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: TOA Outgoing Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: rsutcs -type: real -positive: up -valid_min: 0 -valid_max: 444 -ok_min_mean_abs: 54.7 -ok_max_mean_abs: 73.36 -!---------------------------------- -! - -!============ -variable_entry: prw -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_water_vapor_content -units: kg m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Water Vapor Path -comment: vertically integrated through the atmospheric column -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: prw -type: real -valid_min: -0.0006775 -valid_max: 78.04 -ok_min_mean_abs: 12.75 -ok_max_mean_abs: 23.09 -!---------------------------------- -! - -!============ -variable_entry: clt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: point -cell_measures: area: areacella -long_name: Total Cloud Fraction -comment: for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: clt -type: real -valid_min: -0.0001822 -valid_max: 100.2 -ok_min_mean_abs: 39.37 -ok_max_mean_abs: 84.98 -!---------------------------------- -! - -!============ -variable_entry: clwvi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_condensed_water_content -units: kg m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Condensed Water Path -comment: calculate mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: clwvi -type: real -valid_min: -3.827e-06 -valid_max: 3.364 -ok_min_mean_abs: -0.03549 -ok_max_mean_abs: 0.2846 -!---------------------------------- -! - -!============ -variable_entry: clivi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_ice_content -units: kg m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Ice Water Path -comment: calculate mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Include precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: clivi -type: real -valid_min: -1.872e-06 -valid_max: 1.535 -ok_min_mean_abs: -0.0348 -ok_max_mean_abs: 0.1187 -!---------------------------------- -! - -!============ -variable_entry: rtmt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_downward_radiative_flux_at_top_of_atmosphere_model -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Net Downward Flux at Top of Model -comment: i.e., at the top of that portion of the atmosphere where dynamics are explicitly treated by the model. Report only if this differs from the net downward radiative flux at the top of the atmosphere. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: rtmt -type: real -positive: down -valid_min: -232.8 -valid_max: 218.7 -ok_min_mean_abs: 77.62 -ok_max_mean_abs: 88.34 -!---------------------------------- -! - -!============ -variable_entry: ccb -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_convective_cloud_base -units: Pa -cell_methods: time: point -cell_measures: area: areacella -long_name: Air Pressure at Convective Cloud Base -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: ccb -type: real -!---------------------------------- -! - -!============ -variable_entry: cct -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_convective_cloud_top -units: Pa -cell_methods: time: point -cell_measures: area: areacella -long_name: Air Pressure at Convective Cloud Top -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: cct -type: real -!---------------------------------- -! - -!============ -variable_entry: ci -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convection_time_fraction -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Fraction of Time Convection Occurs -comment: Fraction of time that convection occurs in the grid cell . -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: ci -type: real -!---------------------------------- -! - -!============ -variable_entry: sci -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: shallow_convection_time_fraction -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Fraction of Time Shallow Convection Occurs -comment: Fraction of time that shallow convection occurs in the grid cell. ( For models with a distinct shallow convection scheme only) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: sci -type: real -!---------------------------------- -! - -!============ -variable_entry: fco2antt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2 -comment: This is requested only for the emission-driven coupled carbon climate model runs. Do not include natural fire sources, but include all anthropogenic sources, including fossil fuel use, cement production, agricultural burning, and sources associated with anthropogenic land use change excluding forest regrowth. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: fco2antt -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fco2fos -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere Due to Fossil Fuel Emissions of CO2 -comment: This is requested only for the emission-driven coupled carbon climate model runs. Report the prescribed anthropogenic CO2 flux from fossil fuel use, including cement production, and flaring (but not from land-use changes, agricultural burning, forest regrowth, etc.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: fco2fos -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fco2nat -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Carbon Mass Flux into the Atmosphere Due to Natural Sources -comment: Report from all simulations (both emission-driven and concentration-driven) performed by models with fully interactive and responsive carbon cycles. This is what the atmosphere sees (on its own grid). This field should be equivalent to the combined natural fluxes of carbon (requested in the L_mon and O_mon tables) that account for natural exchanges between the atmosphere and land or ocean reservoirs (i.e., ""net ecosystem biospheric productivity"", for land, and ""air to sea CO2 flux"", for ocean.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: fco2nat -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: cltc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_cloud_area_fraction -units: % -cell_methods: time: point -cell_measures: area: areacella -long_name: Convective Cloud Fraction -comment: for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include only convective cloud. Besides the quantities from the Amon table, this is the only other 2-D field in this table. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: cltc -type: real -valid_min: 0.0 -valid_max: 100.0 -!---------------------------------- -! - -!============ -variable_entry: zfull -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: height_above_reference_ellipsoid -units: m -cell_methods: time: point -cell_measures: area: areacella -long_name: Altitude of Model Full-Levels -comment: This is actual height above mean sea level, not geopotential height -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: zfull -type: real -!---------------------------------- -! - -!============ -variable_entry: zhalf -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: height_above_reference_ellipsoid -units: m -cell_methods: time: point -cell_measures: area: areacella -long_name: Altitude of Model Half-Levels -comment: This is actual height above mean sea level, not geopotential height. This is actual height above mean sea level, not geopotential height. Include both the top of the model atmosphere and surface levels. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time1 -out_name: zhalf -type: real -!---------------------------------- -! - -!============ -variable_entry: pfull -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -cell_methods: time: point -cell_measures: area: areacella -long_name: Pressure at Model Full-Levels -comment: provide this field for models in which the pressure can't be calculated from the vertical coordinate information stored already for each variable. Thus, the pressures are needed for height or theta-coordinate models, for example, but not sigma- or eta-coordinate models. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: pfull -type: real -!---------------------------------- -! - -!============ -variable_entry: phalf -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -cell_methods: time: point -cell_measures: area: areacella -long_name: Pressure at Model Half-Levels -comment: provide this field for models in which the pressure can't be calculated from the vertical coordinate information stored already for each variable. Thus, the pressures are needed for height or theta-coordinate models, for example, but not sigma- or eta-coordinate models. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time1 -out_name: phalf -type: real -!---------------------------------- -! - -!============ -variable_entry: ta -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: point -cell_measures: area: areacella -long_name: Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: ta -type: real -valid_min: 157.1 -valid_max: 326.4 -ok_min_mean_abs: 200.2 -ok_max_mean_abs: 289.9 -!---------------------------------- -! - -!============ -variable_entry: h2o -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_water_in_air -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Mass Fraction of Water -comment: include all phases of water -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: h2o -type: real -!---------------------------------- -! - -!============ -variable_entry: clws -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_stratiform_cloud_liquid_water_in_air -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Mass Fraction of Stratiform Cloud Liquid Water -comment: Calculate as the mass of stratiform cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: clws -type: real -!---------------------------------- -! - -!============ -variable_entry: clis -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_stratiform_cloud_ice_in_air -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Mass Fraction of Stratiform Cloud Ice -comment: Calculate as the mass of stratiform cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: clis -type: real -!---------------------------------- -! - -!============ -variable_entry: clwc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_convective_cloud_liquid_water_in_air -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Mass Fraction of Convective Cloud Liquid Water -comment: Calculate as the mass of convective cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: clwc -type: real -!---------------------------------- -! - -!============ -variable_entry: clic -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_convective_cloud_ice_in_air -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Mass Fraction of Convective Cloud Ice -comment: Calculate as the mass of convective cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: clic -type: real -!---------------------------------- -! - -!============ -variable_entry: reffclws -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: effective_radius_of_stratiform_cloud_liquid_water_particle -units: m -cell_methods: time: point -cell_measures: area: areacella -long_name: Hydrometeor Effective Radius of Stratiform Cloud Liquid Water -comment: This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: reffclws -type: real -!---------------------------------- -! - -!============ -variable_entry: reffclis -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: effective_radius_of_stratiform_cloud_ice_particle -units: m -cell_methods: time: point -cell_measures: area: areacella -long_name: Hydrometeor Effective Radius of Stratiform Cloud Ice -comment: This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: reffclis -type: real -!---------------------------------- -! - -!============ -variable_entry: reffclwc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: effective_radius_of_convective_cloud_liquid_water_particle -units: m -cell_methods: time: point -cell_measures: area: areacella -long_name: Hydrometeor Effective Radius of Convective Cloud Liquid Water -comment: This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: reffclwc -type: real -!---------------------------------- -! - -!============ -variable_entry: reffclic -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: effective_radius_of_convective_cloud_ice_particle -units: m -cell_methods: time: point -cell_measures: area: areacella -long_name: Hydrometeor Effective Radius of Convective Cloud Ice -comment: This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: reffclic -type: real -!---------------------------------- -! - -!============ -variable_entry: grpllsprof -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: large_scale_graupel_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Stratiform Graupel Flux -comment: report on model half-levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: grpllsprof -type: real -!---------------------------------- -! - -!============ -variable_entry: prcprof -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_rainfall_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Convective Rainfall Flux -comment: report on model half-levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: prcprof -type: real -!---------------------------------- -! - -!============ -variable_entry: prlsprof -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: large_scale_rainfall_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Stratiform Rainfall Flux -comment: report on model half-levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: prlsprof -type: real -!---------------------------------- -! - -!============ -variable_entry: prsnc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_snowfall_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Convective Snowfall Flux -comment: report on model half-levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: prsnc -type: real -!---------------------------------- -! - -!============ -variable_entry: prlsns -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: large_scale_snowfall_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Stratiform Snowfall Flux -comment: report on model half-levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: prlsns -type: real -!---------------------------------- -! - -!============ -variable_entry: reffgrpls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: effective_radius_of_stratiform_cloud_graupel_particle -units: m -cell_methods: time: point -cell_measures: area: areacella -long_name: Hydrometeor Effective Radius of Stratiform Graupel -comment: This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: reffgrpls -type: real -!---------------------------------- -! - -!============ -variable_entry: reffrainc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: effective_radius_of_convective_cloud_rain_particle -units: m -cell_methods: time: point -cell_measures: area: areacella -long_name: Hydrometeor Effective Radius of Convective Rainfall -comment: This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: reffrainc -type: real -!---------------------------------- -! - -!============ -variable_entry: reffrains -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: effective_radius_of_stratiform_cloud_rain_particle -units: m -cell_methods: time: point -cell_measures: area: areacella -long_name: Hydrometeor Effective Radius of Stratiform Rainfall -comment: This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: reffrains -type: real -!---------------------------------- -! - -!============ -variable_entry: reffsnowc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: effective_radius_of_convective_cloud_snow_particle -units: m -cell_methods: time: point -cell_measures: area: areacella -long_name: Hydrometeor Effective Radius of Convective Snowfall -comment: This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: reffsnowc -type: real -!---------------------------------- -! - -!============ -variable_entry: reffsnows -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: effective_radius_of_stratiform_cloud_snow_particle -units: m -cell_methods: time: point -cell_measures: area: areacella -long_name: Hydrometeor Effective Radius of Stratiform Snowfall -comment: This is defined as the in-cloud ratio of the third moment over the second moment of the particle size distribution (obtained by considering only the cloudy portion of the grid cell). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: reffsnows -type: real -!---------------------------------- -! - -!============ -variable_entry: dtaus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_optical_thickness_due_to_stratiform_cloud -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Stratiform Cloud Optical Depth -comment: This is the in-cloud optical depth obtained by considering only the cloudy portion of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: dtaus -type: real -!---------------------------------- -! - -!============ -variable_entry: dtauc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_optical_thickness_due_to_convective_cloud -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Convective Cloud Optical Depth -comment: This is the in-cloud optical depth obtained by considering only the cloudy portion of the grid cell -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: dtauc -type: real -!---------------------------------- -! - -!============ -variable_entry: dems -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: stratiform_cloud_longwave_emissivity -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Stratiform Cloud Emissivity -comment: This is the in-cloud emissivity obtained by considering only the cloudy portion of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: dems -type: real -!---------------------------------- -! - -!============ -variable_entry: demc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_cloud_longwave_emissivity -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Convective Cloud Emissivity -comment: This is the in-cloud emissivity obtained by considering only the cloudy portion of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: demc -type: real -!---------------------------------- -! - -!============ -variable_entry: clc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: point -cell_measures: area: areacella -long_name: Convective Cloud Area Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: clc -type: real -!---------------------------------- -! - -!============ -variable_entry: cls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: stratiform_cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: point -cell_measures: area: areacella -long_name: Stratiform Cloud Area Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time1 -out_name: cls -type: real -!---------------------------------- -! - diff --git a/TestTables/CMIP5_cfMon b/TestTables/CMIP5_cfMon deleted file mode 100644 index 83d218610aa81bc0d57ea895a99b8d80973c18ac..0000000000000000000000000000000000000000 --- a/TestTables/CMIP5_cfMon +++ /dev/null @@ -1,2756 +0,0 @@ -table_id: Table cfMon -modeling_realm: atmos - -frequency: mon - -cmor_version: 2.5.0 ! minimum version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 12 November 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip branch_time contact institute_id ! space separated required global attribute - -forcings: N/A Nat Ant GHG SD SI SA TO SO Oz LU Sl Vl SS Ds BC MD OC AA - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'volcano-free hindcast initialized in year XXXX' 'noVolcXXXX' -expt_id_ok: 'prediction with 2010 volcano' 'volcIn2010' -expt_id_ok: 'pre-industrial control' 'piControl' -expt_id_ok: 'historical' 'historical' -expt_id_ok: 'mid-Holocene' 'midHolocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.6' 'rcp26' -expt_id_ok: 'RCP6' 'rcp60' -expt_id_ok: 'ESM pre-industrial control' 'esmControl' -expt_id_ok: 'ESM historical' 'esmHistorical' -expt_id_ok: 'ESM RCP8.5' 'esmrcp85' -expt_id_ok: 'ESM fixed climate 1' 'esmFixClim1' -expt_id_ok: 'ESM fixed climate 2' 'esmFixClim2' -expt_id_ok: 'ESM feedback 1' 'esmFdbk1' -expt_id_ok: 'ESM feedback 2' 'esmFdbk2' -expt_id_ok: '1 percent per year CO2' '1pctCO2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt4xCO2' -expt_id_ok: 'natural-only' 'historicalNat' -expt_id_ok: 'GHG-only' 'historicalGHG' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst2030' -expt_id_ok: 'control SST climatology' 'sstClim' -expt_id_ok: 'CO2 forcing' 'sstClim4xCO2' -expt_id_ok: 'all aerosol forcing' 'sstClimAerosol' -expt_id_ok: 'sulfate aerosol forcing' 'sstClimSulfate' -expt_id_ok: '4xCO2 AMIP' 'amip4xCO2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amipFuture' -expt_id_ok: 'aqua planet control' 'aquaControl' -expt_id_ok: '4xCO2 aqua planet' 'aqua4xCO2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua4K' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip4K' - - -approx_interval: 30.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -generic_levels: alevel alevhalf - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: plev7 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -tolerance: 0.001 -type: double -requested: 90000. 74000. 62000. 50000. 37500. 24500. 9000. ! space-separated list of requested coordinates -requested_bounds: 100000. 80000. 80000. 68000. 68000. 56000. 56000. 44000. 44000. 31000. 31000. 18000. 18000. 0. ! space-separated list of requested coordinate bounds -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: p220 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -type: double -value: 22000. ! of scalar (singleton) dimension -bounds_values: 44000. 0.0 ! of scalar (singleton) dimension bounds -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: p560 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -type: double -value: 56000. ! of scalar (singleton) dimension -bounds_values: 68000. 44000. ! of scalar (singleton) dimension bounds -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: p840 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -type: double -value: 84000. ! of scalar (singleton) dimension -bounds_values: 100000. 68000. ! of scalar (singleton) dimension bounds -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: alt40 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: altitude -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: altitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: alt40 -stored_direction: increasing -tolerance: 0.001 -type: double -requested: 240. 720. 1200. 1680. 2160. 2640. 3120. 3600. 4080. 4560. 5040. 5520. 6000. 6480. 6960. 7440. 7920. 8400. 8880. 9360. 9840. 10320. 10800. 11280. 11760. 12240. 12720. 13200. 13680. 14160. 14640. 15120. 15600. 16080. 16560. 17040. 17520. 18000. 18480. 18960. ! space-separated list of requested coordinates -requested_bounds: 0. 480. 480. 960. 960. 1440. 1440. 1920. 1920. 2400. 2400. 2880. 2880. 3360. 3360. 3840. 3840. 4320. 4320. 4800. 4800. 5280. 5280. 5760. 5760. 6240. 6240. 6720. 6720. 7200. 7200. 7680. 7680. 8160. 8160. 8640. 8640. 9120. 9120. 9600. 9600. 10080. 10080. 10560. 10560. 11040. 11040. 11520. 11520. 12000. 12000. 12480. 12480. 12960. 12960. 13440. 13440. 13920. 13920. 14400. 14400. 14880. 14880. 15360. 15360. 15840. 15840. 16320. 16320. 16800. 16800. 17280. 17280. 17760. 17760. 18240. 18240. 18720. 18720. 19200. ! space-separated list of requested coordinate bounds -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: tau -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_optical_thickness_due_to_cloud -units: 1 -long_name: cloud optical thickness -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: tau -stored_direction: increasing -tolerance: 0.001 -type: double -requested: 0.15 0.8 2.45 6.5 16.2 41.5 100. ! space-separated list of requested coordinates -requested_bounds: 0.0 0.3 0.3 1.3 1.3 3.6 3.6 9.4 9.4 23.0 23.0 60.0 60.0 100000. ! space-separated list of requested coordinate bounds -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: sza5 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: solar_zenith_angle -units: degree -long_name: solar zenith angle -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: sza -stored_direction: increasing -tolerance: 0.001 -type: double -requested: 0. 20. 40. 60. 80. ! space-separated list of requested coordinates -must_have_bounds: no -!---------------------------------- -! - -!============ -axis_entry: smooth_level -!============ -! -! This coordinate is a hybrid height coordinate with units of meters (m). -! It increases upward. -! The values of a(k)*ztop, which appear in the formula below, should be stored as smooth_level. -! Note that in the netCDF file the variable will be named "lev", not smooth_level. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sleve_coordinate -units: m -axis: Z -positive: up -long_name: atmosphere smooth level vertical (SLEVE) coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: -200. -valid_max: 800000. -formula: z(n,k,j,i) = a(k)*ztop + b1(k)*zsurf1(n,j,i) + b2(k)*zsurf2(n,j,i) -z_factors: a: a b1: b1 b2: b2 ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -z_bounds_factors: a: a_bnds b1: b1_bnds b2: b2_bnds ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -!---------------------------------- -! -!============ -axis_entry: natural_log_pressure -!============ -! -!This coordinate is dimensionless and varies from near 0 at the surface and increases upward. -! The values of lev(k), which appears in the formula below, should be stored as natural_log_pressure. -! Note that in the netCDF file the variable will be named "lev", not natural_log_pressure. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_ln_pressure_coordinate -axis: Z -long_name: atmosphere natural log pressure coordinate -positive: down -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 20. -formula: p(k) = p0 * exp(-lev(k)) -z_factors: p0: p0 lev: lev -z_bounds_factors: p0: p0 lev: lev_bnds -!---------------------------------- -! -!============ -axis_entry: standard_sigma -!============ -! -! This coordinate is dimensionless and varies from 0 at the model top to 1.0 at the surface. -! The values of sigma(k), which appears in the formula below, should be stored as standard_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -z_factors: ptop: ptop sigma: lev ps: ps -z_bounds_factors: ptop: ptop sigma: lev_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of a(k)+ b(k), which appear in the formula below, should be stored as standard_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_hybrid_sigma. -! -!--------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of ap(k)/p0 + b(k), which appear in the formula below, should be stored as alternate_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not alternate_hybrid_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -z_factors: ap: ap b: b ps: ps -z_bounds_factors: ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! This coordinate has dimension of meters (m) and increases upward. -! The values of a(k) which appear in the formula below, should be stored as hybrid_height. -! Note that in the netCDF file the variable will be named "lev", not hybrid_height. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0.0 -formula: z(k,j,i) = a(k) + b(k)*orog(j,i) -z_factors: a: lev b: b orog: orog -z_bounds_factors: a: lev_bnds b: b_bnds orog: orog -!---------------------------------- -! -! *************************************************************** -! -! Vertical coordinate formula terms: -! -! *************************************************************** -! -! -!============ -variable_entry: orog -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -comment: height above the geoid; as defined here, ""the geoid"" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Report here the height above the present-day geoid. Over ocean, report as 0.0 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: orog -type: real -valid_min: -700 -valid_max: 1.00E+04 -!---------------------------------- -! -! -!============ -variable_entry: p0 -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: reference pressure -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -! -!============ -variable_entry: a -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k+1/2) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ztop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: height of top of model -units: m -!---------------------------------- -! -! -! -! -!============ -variable_entry: ps -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: mean -long_name: Surface Air Pressure -comment: not, in general, the same as mean sea-level pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ps -type: real -! - -!============ -variable_entry: rlu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Upwelling Longwave Radiation -comment: Include also the fluxes at the surface and TOA. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rlu -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Upwelling Shortwave Radiation -comment: Include also the fluxes at the surface and TOA. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rsu -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rld -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Downwelling Longwave Radiation -comment: Include also the fluxes at the surface and TOA. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rld -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsd -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Downwelling Shortwave Radiation -comment: Include also the fluxes at the surface and TOA. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rsd -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rlucs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Upwelling Clear-Sky Longwave Radiation -comment: Include also the fluxes at the surface and TOA. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rlucs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsucs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Upwelling Clear-Sky Shortwave Radiation -comment: Include also the fluxes at the surface and TOA. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rsucs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rldcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Downwelling Clear-Sky Longwave Radiation -comment: Include also the fluxes at the surface and TOA. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rldcs -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsdcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Downwelling Clear-Sky Shortwave Radiation -comment: Include also the fluxes at the surface and TOA. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rsdcs -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: ta -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: ta -type: real -valid_min: 157.1 -valid_max: 326.4 -ok_min_mean_abs: 200.2 -ok_max_mean_abs: 289.9 -!---------------------------------- -! - -!============ -variable_entry: tnt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_air_temperature -units: K s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnt -type: real -!---------------------------------- -! - -!============ -variable_entry: tnta -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_air_temperature_due_to_advection -units: K s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Air Temperature due to Advection -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnta -type: real -!---------------------------------- -! - -!============ -variable_entry: tntmp -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_air_temperature_due_to_model_physics -units: K s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Air Temperature due to Diabatic Processes -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tntmp -type: real -!---------------------------------- -! - -!============ -variable_entry: tntscpbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing -units: K s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Air Temperature Due to Stratiform Cloud and Precipitation and Boundary Layer Mixing -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tntscpbl -type: real -!---------------------------------- -! - -!============ -variable_entry: tntr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_air_temperature_due_to_radiative_heating -units: K s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Air Temperature due to Radiative Heating -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tntr -type: real -!---------------------------------- -! - -!============ -variable_entry: tntc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_air_temperature_due_to_convection -units: K s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Air Temperature due to Moist Convection -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tntc -type: real -!---------------------------------- -! - -!============ -variable_entry: hus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Specific Humidity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: hus -type: real -valid_min: -0.000299 -valid_max: 0.02812 -ok_min_mean_abs: -0.0003539 -ok_max_mean_abs: 0.01027 -!---------------------------------- -! - -!============ -variable_entry: tnhus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_specific_humidity -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Specific Humidity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnhus -type: real -!---------------------------------- -! - -!============ -variable_entry: tnhusa -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_specific_humidity_due_to_advection -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Specific Humidity due to Advection -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnhusa -type: real -!---------------------------------- -! - -!============ -variable_entry: tnhusc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_specific_humidity_due_to_convection -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Specific Humidity due to Convection -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnhusc -type: real -!---------------------------------- -! - -!============ -variable_entry: tnhusd -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_specific_humidity_due_to_diffusion -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Specific Humidity due to Diffusion -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnhusd -type: real -!---------------------------------- -! - -!============ -variable_entry: tnhusscpbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Specific Humidity due to Stratiform Cloud Condensation and Evaporation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnhusscpbl -type: real -!---------------------------------- -! - -!============ -variable_entry: tnhusmp -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_specific_humidity_due_to_model_physics -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Specific Humidity due to Model Physics -comment: This should include sources and sinks from parametrized physics (e.g. convection, stratiform condensation/evaporation, etc.) and should exclude sources and sinks from resolved dynamics and diffusion. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnhusmp -type: real -!---------------------------------- -! - -!============ -variable_entry: eviscu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_momentum_diffusivity -units: m2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Eddy Viscosity Coefficients for Momentum -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: eviscu -type: real -!---------------------------------- -! - -!============ -variable_entry: evisct -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_heat_diffusivity -units: m2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Eddy Diffusivity Coefficients for Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: evisct -type: real -!---------------------------------- -! - -!============ -variable_entry: clc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Convective Cloud Area Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: clc -type: real -!---------------------------------- -! - -!============ -variable_entry: clwc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_convective_cloud_liquid_water_in_air -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mass Fraction of Convective Cloud Liquid Water -comment: Calculate as the mass of convective cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: clwc -type: real -!---------------------------------- -! - -!============ -variable_entry: clic -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_convective_cloud_ice_in_air -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mass Fraction of Convective Cloud Ice -comment: Calculate as the mass of convective cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: clic -type: real -!---------------------------------- -! - -!============ -variable_entry: cls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: stratiform_cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Stratiform Cloud Area Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: cls -type: real -!---------------------------------- -! - -!============ -variable_entry: clws -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_stratiform_cloud_liquid_water_in_air -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mass Fraction of Stratiform Cloud Liquid Water -comment: Calculate as the mass of stratiform cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: clws -type: real -!---------------------------------- -! - -!============ -variable_entry: clis -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_stratiform_cloud_ice_in_air -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Mass Fraction of Stratiform Cloud Ice -comment: Calculate as the mass of stratiform cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: clis -type: real -!---------------------------------- -! - -!============ -variable_entry: mcu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_updraft_convective_mass_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Updraft Convective Mass Flux -comment: Report on model half-levels (i.e., model layer bounds and not standard pressures). Calculate as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: mcu -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: mcd -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_downdraft_convective_mass_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Downdraft Convective Mass Flux -comment: Report on model half-levels (i.e., model layer bounds and not standard pressures). Calculate as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: mcd -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: smc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_net_upward_shallow_convective_mass_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Shallow Convective Mass Flux -comment: Report on model half-levels (i.e., model layer bounds and not standard pressures). The net mass flux should represent the difference between the updraft and downdraft components. For models with a distinct shallow convection scheme, calculate as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: smc -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: dmc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_net_upward_deep_convective_mass_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Deep Convective Mass Flux -comment: Report on model half-levels (i.e., model layer bounds and not standard pressures). The net mass flux should represent the difference between the updraft and downdraft components. Calculate as the convective mass flux divided by the area of the whole grid cell (not just the area of the cloud). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: dmc -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: tnsclw -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water In Air -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclw -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclwcm -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_cloud_microphysics -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water In Air Due To Cloud Microphysics -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclwcm -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclwbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_boundary_layer_mixing -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water In Air Due To Boundary Layer Mixing -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclwbl -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclwbfpcli -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_bergeron_findeisen_process_to_cloud_ice -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water In Air Due To Bergeron Findeisen Process To Cloud Ice -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclwbfpcli -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclwce -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_condensation_and_evaporation -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water due to Condensation and Evaporation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclwce -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclwcd -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_convective_detrainment -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water Due to Convective Detrainment -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclwcd -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclwhon -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_homogeneous_nucleation -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water due to Homogeneous Nucleation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclwhon -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclwhen -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_heterogeneous_nucleation -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water due to Heterogeneous Nucleation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclwhen -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclwri -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_riming -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water due to Riming -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclwri -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclwar -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_rain -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water due to Accretion to Rain -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclwar -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclwas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_accretion_to_snow -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water due to Accretion to Snow -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclwas -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclwmi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_melting_from_cloud_ice -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water due to Melting From Cloud Ice -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclwmi -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclwac -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_autoconversion -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water due to Autoconversion -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclwac -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclwa -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_liquid_water_in_air_due_to_advection -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Liquid Water due to Advection -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclwa -type: real -!---------------------------------- -! - -!============ -variable_entry: tnscli -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice In Air -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnscli -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclicm -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_cloud_microphysics -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice In Air Due To Cloud Microphysics -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclicm -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclibl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_boundary_layer_mixing -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice In Air Due To Boundary Layer Mixing -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclibl -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclibfpcl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_bergeron_findeisen_process_from_cloud_liquid -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice In Air Due To Bergeron Findeisen Process from Cloud Liquid -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclibfpcl -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclicd -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_convective_detrainment -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice Due Convective Detrainment -comment: Tendency of Mass Fraction of Stratiform Cloud Ice Due to Convective Detrainment -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclicd -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclihon -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_homogeneous_nucleation -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice due to Homogeneous Nucleation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclihon -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclihencl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_cloud_liquid_water -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice due to Heterogeneous Nucleation From Cloud Liquid -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclihencl -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclihenv -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_heterogeneous_nucleation_from_water_vapor -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice due to Heterogeneous Nucleation From Water Vapor -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclihenv -type: real -!---------------------------------- -! - -!============ -variable_entry: tnscliricl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_cloud_liquid_water -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice due to Riming From Cloud Liquid -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnscliricl -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclirir -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_riming_from_rain -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice due to Riming From Rain -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclirir -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclids -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_deposition_and_sublimation -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice due to Deposition and Sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclids -type: real -!---------------------------------- -! - -!============ -variable_entry: tnscliag -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_aggregation -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice due to Aggregation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnscliag -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclias -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_accretion_to_snow -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice due to Accretion to Snow -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclias -type: real -!---------------------------------- -! - -!============ -variable_entry: tnscliemi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_evaporation_of_melting_ice -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice due to Evaporation of Melting Ice -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnscliemi -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclimr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_rain -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice due to Melting to Rain -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclimr -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclimcl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_melting_to_cloud_liquid_water -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice due to Melting to Cloud Liquid -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclimcl -type: real -!---------------------------------- -! - -!============ -variable_entry: tnscliif -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_icefall -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice due to Icefall -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnscliif -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsclia -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_ice_in_air_due_to_advection -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Ice due to Advection -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsclia -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsccw -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Condensed Water In Air -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsccw -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsccwcm -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_cloud_microphysics -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Condensed Water In Air Due To Cloud Microphysics -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsccwcm -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsccwbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_boundary_layer_mixing -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Condensed Water In Air Due To Boundary Layer Mixing -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsccwbl -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsccwce -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_condensation_and_evaporation -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Condensed Water due to Condensation and Evaporation -comment: condensed water includes both liquid and ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsccwce -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsccwacr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_rain -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Condensed Water due to Autoconversion to Rain -comment: condensed water includes both liquid and ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsccwacr -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsccwacs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_autoconversion_to_snow -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Condensed Water due to Autoconversion to Snow -comment: condensed water includes both liquid and ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsccwacs -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsccwif -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_icefall -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Condensed Water due to Icefall -comment: condensed water includes both liquid and ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsccwif -type: real -!---------------------------------- -! - -!============ -variable_entry: tnsccwa -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_mass_fraction_of_stratiform_cloud_condensed_water_in_air_due_to_advection -units: s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tendency of Mass Fraction of Stratiform Cloud Condensed Water due to Advection -comment: condensed water includes both liquid and ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevel time -out_name: tnsccwa -type: real -!---------------------------------- -! - -!============ -variable_entry: rsut4co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA Outgoing Shortwave Radiation in 4XCO2 Atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsut4co2 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlut4co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA Outgoing Longwave Radiation 4XCO2 Atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlut4co2 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsutcs4co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA Outgoing Clear-Sky Shortwave Radiation 4XCO2 Atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsutcs4co2 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlutcs4co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA Outgoing Clear-Sky Longwave Radiation 4XCO2 Atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlutcs4co2 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlu4co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Upwelling Longwave Radiation 4XCO2 Atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rlu4co2 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsu4co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Upwelling Shortwave Radiation 4XCO2 Atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rsu4co2 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rld4co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Downwelling Longwave Radiation 4XCO2 Atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rld4co2 -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsd4co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Downwelling Shortwave Radiation 4XCO2 Atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rsd4co2 -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rlucs4co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Upwelling Clear-Sky Longwave Radiation 4XCO2 Atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rlucs4co2 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsucs4co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Upwelling Clear-Sky Shortwave Radiation 4XCO2 Atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rsucs4co2 -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rldcs4co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Downwelling Clear-Sky Longwave Radiation 4XCO2 Atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rldcs4co2 -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsdcs4co2 -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Downwelling Clear-Sky Shortwave Radiation 4XCO2 Atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alevhalf time -out_name: rsdcs4co2 -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: cltisccp -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: ISCCP Total Cloud Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cltisccp -type: real -!---------------------------------- -! - -!============ -variable_entry: albisccp -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_albedo -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: ISCCP Mean Cloud Albedo -comment: When computing time-means, weight by the ISCCP Total Cloud Fraction - see http://www.cfmip.net/README -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: albisccp -type: real -!---------------------------------- -! - -!============ -variable_entry: ctpisccp -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_cloud_top -units: Pa -cell_methods: time: mean -cell_measures: area: areacella -long_name: ISCCP Mean Cloud Top Pressure -comment: When computing time-means, weight by the ISCCP Total Cloud Fraction - see http://www.cfmip.net/README -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ctpisccp -type: real -!---------------------------------- -! - -!============ -variable_entry: clisccp -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: isccp_cloud_area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: ISCCP Cloud Area Fraction -comment: 7 levels x 7 tau -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plev7 tau time -out_name: clisccp -type: real -valid_min: 0 -valid_max: 1.399 -ok_min_mean_abs: 0.0004413 -ok_max_mean_abs: 0.04866 -!---------------------------------- -! - -!============ -variable_entry: cltcalipso -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: CALIPSO Total Cloud Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cltcalipso -type: real -!---------------------------------- -! - -!============ -variable_entry: cllcalipso -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: CALIPSO Low Level Cloud Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time p840 -out_name: cllcalipso -type: real -!---------------------------------- -! - -!============ -variable_entry: clmcalipso -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: CALIPSO Mid Level Cloud Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time p560 -out_name: clmcalipso -type: real -!---------------------------------- -! - -!============ -variable_entry: clhcalipso -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: CALIPSO High Level Cloud Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time p220 -out_name: clhcalipso -type: real -!---------------------------------- -! - -!============ -variable_entry: clcalipso -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: CALIPSO Cloud Fraction -comment: 40 height levels -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude alt40 time -out_name: clcalipso -type: real -!---------------------------------- -! - -!============ -variable_entry: parasolRefl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_bidirectional_reflectance -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: PARASOL Reflectance -comment: 5 bins of solar zenith angle. This is reflectance as seen at the top of the atmosphere. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude sza5 time -out_name: parasolRefl -type: real -!---------------------------------- -! - diff --git a/TestTables/CMIP5_cfSites b/TestTables/CMIP5_cfSites deleted file mode 100644 index c40d57c02d21e74f27b551f3558da663e1d4724c..0000000000000000000000000000000000000000 --- a/TestTables/CMIP5_cfSites +++ /dev/null @@ -1,2365 +0,0 @@ -table_id: Table cfSites -! -! WARNING: Although this table define variables as function of longitude and latitude -! the user MUST use a 'grid' (using the 'site' index in CMIP5_grids) -! in order to define correctly the location of each site. -! -modeling_realm: atmos - -frequency: subhr - -cmor_version: 2.5.0 ! minimum version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 12 November 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip branch_time contact institute_id ! space separated required global attribute - -forcings: N/A Nat Ant GHG SD SI SA TO SO Oz LU Sl Vl SS Ds BC MD OC AA - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'volcano-free hindcast initialized in year XXXX' 'noVolcXXXX' -expt_id_ok: 'prediction with 2010 volcano' 'volcIn2010' -expt_id_ok: 'pre-industrial control' 'piControl' -expt_id_ok: 'historical' 'historical' -expt_id_ok: 'mid-Holocene' 'midHolocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.6' 'rcp26' -expt_id_ok: 'RCP6' 'rcp60' -expt_id_ok: 'ESM pre-industrial control' 'esmControl' -expt_id_ok: 'ESM historical' 'esmHistorical' -expt_id_ok: 'ESM RCP8.5' 'esmrcp85' -expt_id_ok: 'ESM fixed climate 1' 'esmFixClim1' -expt_id_ok: 'ESM fixed climate 2' 'esmFixClim2' -expt_id_ok: 'ESM feedback 1' 'esmFdbk1' -expt_id_ok: 'ESM feedback 2' 'esmFdbk2' -expt_id_ok: '1 percent per year CO2' '1pctCO2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt4xCO2' -expt_id_ok: 'natural-only' 'historicalNat' -expt_id_ok: 'GHG-only' 'historicalGHG' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst2030' -expt_id_ok: 'control SST climatology' 'sstClim' -expt_id_ok: 'CO2 forcing' 'sstClim4xCO2' -expt_id_ok: 'all aerosol forcing' 'sstClimAerosol' -expt_id_ok: 'sulfate aerosol forcing' 'sstClimSulfate' -expt_id_ok: '4xCO2 AMIP' 'amip4xCO2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amipFuture' -expt_id_ok: 'aqua planet control' 'aquaControl' -expt_id_ok: '4xCO2 aqua planet' 'aqua4xCO2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua4K' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip4K' - - -approx_interval: 0.017361 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -generic_levels: alevel alevhalf - -!============ -axis_entry: time1 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: height2m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 10.0 -stored_direction: increasing -type: double -value: 2. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: height10m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 30.0 -stored_direction: increasing -type: double -value: 10. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: site -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -units: 1 -long_name: site index -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: site -type: integer -must_have_bounds: no -index_only: ok -must_call_cmor_grid: yes - -!---------------------------------- -! - -!============ -axis_entry: smooth_level -!============ -! -! This coordinate is a hybrid height coordinate with units of meters (m). -! It increases upward. -! The values of a(k)*ztop, which appear in the formula below, should be stored as smooth_level. -! Note that in the netCDF file the variable will be named "lev", not smooth_level. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sleve_coordinate -units: m -axis: Z -positive: up -long_name: atmosphere smooth level vertical (SLEVE) coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: -200. -valid_max: 800000. -formula: z(n,k,j,i) = a(k)*ztop + b1(k)*zsurf1(n,j,i) + b2(k)*zsurf2(n,j,i) -z_factors: a: a b1: b1 b2: b2 ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -z_bounds_factors: a: a_bnds b1: b1_bnds b2: b2_bnds ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -!---------------------------------- -! -!============ -axis_entry: natural_log_pressure -!============ -! -!This coordinate is dimensionless and varies from near 0 at the surface and increases upward. -! The values of lev(k), which appears in the formula below, should be stored as natural_log_pressure. -! Note that in the netCDF file the variable will be named "lev", not natural_log_pressure. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_ln_pressure_coordinate -axis: Z -long_name: atmosphere natural log pressure coordinate -positive: down -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 20. -formula: p(k) = p0 * exp(-lev(k)) -z_factors: p0: p0 lev: lev -z_bounds_factors: p0: p0 lev: lev_bnds -!---------------------------------- -! -!============ -axis_entry: standard_sigma -!============ -! -! This coordinate is dimensionless and varies from 0 at the model top to 1.0 at the surface. -! The values of sigma(k), which appears in the formula below, should be stored as standard_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ptop + sigma(k)*(ps(n,j,i) - ptop) -z_factors: ptop: ptop sigma: lev ps: ps -z_bounds_factors: ptop: ptop sigma: lev_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of a(k)+ b(k), which appear in the formula below, should be stored as standard_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_hybrid_sigma. -! -!--------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = a(k)*p0 + b(k)*ps(n,j,i) -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of ap(k)/p0 + b(k), which appear in the formula below, should be stored as alternate_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not alternate_hybrid_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p(n,k,j,i) = ap(k) + b(k)*ps(n,j,i) -z_factors: ap: ap b: b ps: ps -z_bounds_factors: ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! This coordinate has dimension of meters (m) and increases upward. -! The values of a(k) which appear in the formula below, should be stored as hybrid_height. -! Note that in the netCDF file the variable will be named "lev", not hybrid_height. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0.0 -formula: z(k,j,i) = a(k) + b(k)*orog(j,i) -z_factors: a: lev b: b orog: orog -z_bounds_factors: a: lev_bnds b: b_bnds orog: orog -!---------------------------------- -! -! *************************************************************** -! -! Vertical coordinate formula terms: -! -! *************************************************************** -! -! -!============ -variable_entry: orog -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -comment: height above the geoid; as defined here, ""the geoid"" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Report here the height above the present-day geoid. Over ocean, report as 0.0 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site -out_name: orog -type: real -valid_min: -700 -valid_max: 1.00E+04 -!---------------------------------- -! -! -!============ -variable_entry: p0 -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: reference pressure -units: Pa -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -!---------------------------------- -! -! -! -!============ -variable_entry: a -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k+1/2) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: ztop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: height of top of model -units: m -!---------------------------------- -! -! -! - -!============ -variable_entry: tas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: point -cell_measures: area: areacella -long_name: Near-Surface Air Temperature -comment: near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 height2m -out_name: tas -type: real -valid_min: 180.6 -valid_max: 325.7 -ok_min_mean_abs: 273.5 -ok_max_mean_abs: 281.7 -!---------------------------------- -! - -!============ -variable_entry: ts -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Temperature -comment: ""skin"" temperature (i.e., SST for open ocean) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: ts -type: real -valid_min: 176.8 -valid_max: 331.8 -ok_min_mean_abs: 274.2 -ok_max_mean_abs: 281.8 -!---------------------------------- -! - -!============ -variable_entry: psl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: point -cell_measures: area: areacella -long_name: Sea Level Pressure -comment: not, in general, the same as surface pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: psl -type: real -valid_min: 9.477e+04 -valid_max: 1.124e+05 -ok_min_mean_abs: 1.003e+05 -ok_max_mean_abs: 1.017e+05 -!---------------------------------- -! - -!============ -variable_entry: ps -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -units: Pa -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Air Pressure -comment: not, in general, the same as mean sea-level pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: ps -type: real -valid_min: 4.792e+04 -valid_max: 1.093e+05 -ok_min_mean_abs: 9.606e+04 -ok_max_mean_abs: 9.743e+04 -!---------------------------------- -! - -!============ -variable_entry: uas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: point -long_name: Eastward Near-Surface Wind -comment: near-surface (usually, 10 meters) eastward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 height10m -out_name: uas -type: real -valid_min: -19.01 -valid_max: 18.68 -ok_min_mean_abs: 1.668 -ok_max_mean_abs: 4.106 -!---------------------------------- -! - -!============ -variable_entry: vas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: point -long_name: Northward Near-Surface Wind -comment: near-surface (usually, 10 meters) northward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 height10m -out_name: vas -type: real -valid_min: -18.04 -valid_max: 22.84 -ok_min_mean_abs: 1.065 -ok_max_mean_abs: 2.678 -!---------------------------------- -! - -!============ -variable_entry: sfcWind -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: wind_speed -units: m s-1 -cell_methods: time: point -long_name: Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) wind speed. This is the mean of the speed, not the speed computed from the mean u and v components of wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 height10m -out_name: sfcWind -type: real -!---------------------------------- -! - -!============ -variable_entry: hurs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: point -cell_measures: area: areacella -long_name: Near-Surface Relative Humidity -comment: near-surface (usually, 2meters) relative humidity expressed as a percentage. This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 height2m -out_name: hurs -type: real -!---------------------------------- -! - -!============ -variable_entry: huss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Near-Surface Specific Humidity -comment: near-surface (usually, 2 meters) specific humidity. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 height2m -out_name: huss -type: real -valid_min: -7.21e-06 -valid_max: 0.02992 -ok_min_mean_abs: 0.006391 -ok_max_mean_abs: 0.008749 -!---------------------------------- -! - -!============ -variable_entry: pr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Precipitation -comment: at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: pr -type: real -valid_min: 0 -valid_max: 0.001254 -ok_min_mean_abs: 2.156e-05 -ok_max_mean_abs: 3.215e-05 -!---------------------------------- -! - -!============ -variable_entry: prsn -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: snowfall_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Snowfall Flux -comment: at surface; includes precipitation of all forms of water in the solid phase -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: prsn -type: real -valid_min: 0 -valid_max: 0.0002987 -ok_min_mean_abs: 1.449e-06 -ok_max_mean_abs: 6.11e-06 -!---------------------------------- -! - -!============ -variable_entry: prc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_precipitation_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Convective Precipitation -comment: at surface; includes both liquid and solid phases. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: prc -type: real -valid_min: 0 -valid_max: 0.0006323 -ok_min_mean_abs: -2.528e-06 -ok_max_mean_abs: 3.209e-05 -!---------------------------------- -! - -!============ -variable_entry: evspsbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Evaporation -comment: at surface; flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: evspsbl -type: real -!---------------------------------- -! - -!============ -variable_entry: sbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_sublimation_flux -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Snow and Ice Sublimation Flux -comment: The snow and ice sublimation flux is the loss of snow and ice mass from the surface resulting from their conversion to water vapor that enters the atmosphere. This differs from sbl appearing in table Limon in that the flux is averaged over the entire grid cell, not just the land portion. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: sbl -type: real -valid_min: -0.004959 -valid_max: 0.0009936 -ok_min_mean_abs: -5.521e-05 -ok_max_mean_abs: 9.61e-05 -!---------------------------------- -! - -!============ -variable_entry: tauu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_eastward_stress -units: Pa -cell_methods: time: point -long_name: Surface Downward Eastward Wind Stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: tauu -type: real -positive: down -valid_min: -2.729 -valid_max: 2.934 -ok_min_mean_abs: 0.03979 -ok_max_mean_abs: 0.1065 -!---------------------------------- -! - -!============ -variable_entry: tauv -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_northward_stress -units: Pa -cell_methods: time: point -long_name: Surface Downward Northward Wind Stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: tauv -type: real -positive: down -valid_min: -2.472 -valid_max: 2.527 -ok_min_mean_abs: 0.01447 -ok_max_mean_abs: 0.08134 -!---------------------------------- -! - -!============ -variable_entry: hfls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Upward Latent Heat Flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: hfls -type: real -positive: up -valid_min: -76.77 -valid_max: 790.7 -ok_min_mean_abs: 50.39 -ok_max_mean_abs: 73.2 -!---------------------------------- -! - -!============ -variable_entry: hfss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Upward Sensible Heat Flux -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: hfss -type: real -positive: up -valid_min: -264.5 -valid_max: 844.8 -ok_min_mean_abs: 10.7 -ok_max_mean_abs: 34.84 -!---------------------------------- -! - -!============ -variable_entry: rlds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Downwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: rlds -type: real -positive: down -valid_min: 30.71 -valid_max: 520.5 -ok_min_mean_abs: 271.2 -ok_max_mean_abs: 323.6 -!---------------------------------- -! - -!============ -variable_entry: rlus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Upwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: rlus -type: real -positive: up -valid_min: 43.75 -valid_max: 658 -ok_min_mean_abs: 331.1 -ok_max_mean_abs: 369.9 -!---------------------------------- -! - -!============ -variable_entry: rsds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Downwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: rsds -type: real -positive: down -valid_min: -0.002946 -valid_max: 524.4 -ok_min_mean_abs: 143.9 -ok_max_mean_abs: 181.6 -!---------------------------------- -! - -!============ -variable_entry: rsus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Upwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: rsus -type: real -positive: up -valid_min: -0.006589 -valid_max: 422.2 -ok_min_mean_abs: 26.22 -ok_max_mean_abs: 43.77 -!---------------------------------- -! - -!============ -variable_entry: rsdscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Downwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: rsdscs -type: real -positive: down -valid_min: -1.748e+30 -valid_max: 518 -ok_min_mean_abs: 206.9 -ok_max_mean_abs: 238.6 -!---------------------------------- -! - -!============ -variable_entry: rsuscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Upwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: rsuscs -type: real -positive: up -valid_min: -0.01446 -valid_max: 462.2 -ok_min_mean_abs: 31.65 -ok_max_mean_abs: 61.59 -!---------------------------------- -! - -!============ -variable_entry: rldscs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Downwelling Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: rldscs -type: real -positive: down -valid_min: 33.55 -valid_max: 543.6 -ok_min_mean_abs: 238.6 -ok_max_mean_abs: 293.8 -!---------------------------------- -! - -!============ -variable_entry: rsdt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_incoming_shortwave_flux -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: TOA Incident Shortwave Radiation -comment: incident shortwave at the top of the atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: rsdt -type: real -positive: down -valid_min: 0 -valid_max: 555.5 -ok_min_mean_abs: 294.4 -ok_max_mean_abs: 303.8 -!---------------------------------- -! - -!============ -variable_entry: rsut -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: TOA Outgoing Shortwave Radiation -comment: at the top of the atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: rsut -type: real -positive: up -valid_min: -0.02689 -valid_max: 416.9 -ok_min_mean_abs: 96.72 -ok_max_mean_abs: 114.1 -!---------------------------------- -! - -!============ -variable_entry: rlut -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: TOA Outgoing Longwave Radiation -comment: at the top of the atmosphere (to be compared with satellite measurements) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: rlut -type: real -positive: up -valid_min: 67.48 -valid_max: 383.2 -ok_min_mean_abs: 214.1 -ok_max_mean_abs: 227.5 -!---------------------------------- -! - -!============ -variable_entry: rlutcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: TOA Outgoing Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: rlutcs -type: real -positive: up -valid_min: 70.59 -valid_max: 372.3 -ok_min_mean_abs: 235.1 -ok_max_mean_abs: 253.8 -!---------------------------------- -! - -!============ -variable_entry: rsutcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_shortwave_flux_assuming_clear_sky -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: TOA Outgoing Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: rsutcs -type: real -positive: up -valid_min: 0 -valid_max: 444 -ok_min_mean_abs: 54.7 -ok_max_mean_abs: 73.36 -!---------------------------------- -! - -!============ -variable_entry: prw -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_water_vapor_content -units: kg m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Water Vapor Path -comment: vertically integrated through the atmospheric column -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: prw -type: real -valid_min: -0.0006775 -valid_max: 78.04 -ok_min_mean_abs: 12.75 -ok_max_mean_abs: 23.09 -!---------------------------------- -! - -!============ -variable_entry: clt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: point -cell_measures: area: areacella -long_name: Total Cloud Fraction -comment: for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: clt -type: real -valid_min: -0.0001822 -valid_max: 100.2 -ok_min_mean_abs: 39.37 -ok_max_mean_abs: 84.98 -!---------------------------------- -! - -!============ -variable_entry: clwvi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_condensed_water_content -units: kg m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Condensed Water Path -comment: calculate mass of condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: clwvi -type: real -valid_min: -3.827e-06 -valid_max: 3.364 -ok_min_mean_abs: -0.03549 -ok_max_mean_abs: 0.2846 -!---------------------------------- -! - -!============ -variable_entry: clivi -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_cloud_ice_content -units: kg m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Ice Water Path -comment: calculate mass of ice water in the column divided by the area of the column (not just the area of the cloudy portion of the column). Include precipitating frozen hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: clivi -type: real -valid_min: -1.872e-06 -valid_max: 1.535 -ok_min_mean_abs: -0.0348 -ok_max_mean_abs: 0.1187 -!---------------------------------- -! - -!============ -variable_entry: rtmt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_downward_radiative_flux_at_top_of_atmosphere_model -units: W m-2 -cell_methods: time: point -cell_measures: area: areacella -long_name: Net Downward Flux at Top of Model -comment: i.e., at the top of that portion of the atmosphere where dynamics are explicitly treated by the model. Report only if this differs from the net downward radiative flux at the top of the atmosphere. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: rtmt -type: real -positive: down -valid_min: -232.8 -valid_max: 218.7 -ok_min_mean_abs: 77.62 -ok_max_mean_abs: 88.34 -!---------------------------------- -! - -!============ -variable_entry: ccb -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_convective_cloud_base -units: Pa -cell_methods: time: point -cell_measures: area: areacella -long_name: Air Pressure at Convective Cloud Base -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: ccb -type: real -!---------------------------------- -! - -!============ -variable_entry: cct -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_convective_cloud_top -units: Pa -cell_methods: time: point -cell_measures: area: areacella -long_name: Air Pressure at Convective Cloud Top -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: cct -type: real -!---------------------------------- -! - -!============ -variable_entry: ci -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convection_time_fraction -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Fraction of Time Convection Occurs -comment: Fraction of time that convection occurs in the grid cell . -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: ci -type: real -!---------------------------------- -! - -!============ -variable_entry: sci -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: shallow_convection_time_fraction -units: 1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Fraction of Time Shallow Convection Occurs -comment: Fraction of time that shallow convection occurs in the grid cell. ( For models with a distinct shallow convection scheme only) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: sci -type: real -!---------------------------------- -! - -!============ -variable_entry: fco2antt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2 -comment: This is requested only for the emission-driven coupled carbon climate model runs. Do not include natural fire sources, but include all anthropogenic sources, including fossil fuel use, cement production, agricultural burning, and sources associated with anthropogenic land use change excluding forest regrowth. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: fco2antt -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fco2fos -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fossil_fuel_combustion -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere Due to Fossil Fuel Emissions of CO2 -comment: This is requested only for the emission-driven coupled carbon climate model runs. Report the prescribed anthropogenic CO2 flux from fossil fuel use, including cement production, and flaring (but not from land-use changes, agricultural burning, forest regrowth, etc.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: fco2fos -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fco2nat -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_natural_sources -units: kg m-2 s-1 -cell_methods: time: point -cell_measures: area: areacella -long_name: Surface Carbon Mass Flux into the Atmosphere Due to Natural Sources -comment: Report from all simulations (both emission-driven and concentration-driven) performed by models with fully interactive and responsive carbon cycles. This is what the atmosphere sees (on its own grid). This field should be equivalent to the combined natural fluxes of carbon (requested in the L_mon and O_mon tables) that account for natural exchanges between the atmosphere and land or ocean reservoirs (i.e., ""net ecosystem biospheric productivity"", for land, and ""air to sea CO2 flux"", for ocean.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site time1 -out_name: fco2nat -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: cl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction_in_atmosphere_layer -units: % -cell_methods: time: point -long_name: Cloud Area Fraction -comment: Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: cl -type: real -valid_min: 0 -valid_max: 100.2 -ok_min_mean_abs: -0.04479 -ok_max_mean_abs: 24.87 -!---------------------------------- -! - -!============ -variable_entry: clw -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_cloud_liquid_water_in_air -units: 1 -cell_methods: time: point -long_name: Mass Fraction of Cloud Liquid Water -comment: Include both large-scale and convective cloud. Calculate as the mass of cloud liquid water in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: clw -type: real -!---------------------------------- -! - -!============ -variable_entry: cli -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: mass_fraction_of_cloud_ice_in_air -units: 1 -cell_methods: time: point -long_name: Mass Fraction of Cloud Ice -comment: Include both large-scale and convective cloud. Calculate as the mass of cloud ice in the grid cell divided by the mass of air (including the water in all phases) in the grid cell. Include precipitating hydrometeors ONLY if the precipitating hydrometeor affects the calculation of radiative transfer in model. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: cli -type: real -!---------------------------------- -! - -!============ -variable_entry: mc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_net_upward_convective_mass_flux -units: kg m-2 s-1 -cell_methods: time: point -long_name: Convective Mass Flux -comment: Report on model half-levels (i.e., model layer bounds and not standard pressures). The net mass flux should represent the difference between the updraft and downdraft components. Calculate as the convective mass flux divided by the area of the whole grid cell (not just the area of the updrafts). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevhalf site time1 -out_name: mc -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: ta -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: point -long_name: Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: ta -type: real -valid_min: 157.1 -valid_max: 326.4 -ok_min_mean_abs: 200.2 -ok_max_mean_abs: 289.9 -!---------------------------------- -! - -!============ -variable_entry: ua -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: point -long_name: Eastward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: ua -type: real -valid_min: -68.65 -valid_max: 136.6 -ok_min_mean_abs: 1.101 -ok_max_mean_abs: 22.42 -!---------------------------------- -! - -!============ -variable_entry: va -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: point -long_name: Northward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: va -type: real -valid_min: -71.1 -valid_max: 69.93 -ok_min_mean_abs: 0.9886 -ok_max_mean_abs: 4.679 -!---------------------------------- -! - -!============ -variable_entry: hus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: point -long_name: Specific Humidity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: hus -type: real -valid_min: -0.000299 -valid_max: 0.02812 -ok_min_mean_abs: -0.0003539 -ok_max_mean_abs: 0.01027 -!---------------------------------- -! - -!============ -variable_entry: hur -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: point -long_name: Relative Humidity -comment: This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: hur -type: real -valid_min: -2.642 -valid_max: 135.7 -ok_min_mean_abs: -10.31 -ok_max_mean_abs: 97 -!---------------------------------- -! - -!============ -variable_entry: wap -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: lagrangian_tendency_of_air_pressure -units: Pa s-1 -cell_methods: time: point -long_name: omega (=dp/dt) -comment: commonly referred to as ""omega"", this represents the vertical component of velocity in pressure coordinates (positive down) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: wap -type: real -valid_min: -1.126 -valid_max: 2.319 -ok_min_mean_abs: -0.005083 -ok_max_mean_abs: 0.04256 -!---------------------------------- -! - -!============ -variable_entry: zg -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: geopotential_height -units: m -cell_methods: time: point -long_name: Geopotential Height -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: zg -type: real -valid_min: -719.7 -valid_max: 3.306e+04 -ok_min_mean_abs: -113.4 -ok_max_mean_abs: 3.164e+04 -!---------------------------------- -! - -!============ -variable_entry: rlu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: point -long_name: Upwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: rlu -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: point -long_name: Upwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: rsu -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rld -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: point -long_name: Downwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: rld -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsd -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: point -long_name: Downwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: rsd -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rlucs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: point -long_name: Upwelling Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: rlucs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rsucs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: point -long_name: Upwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: rsucs -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rldcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_longwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: point -long_name: Downwelling Clear-Sky Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: rldcs -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsdcs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: downwelling_shortwave_flux_in_air_assuming_clear_sky -units: W m-2 -cell_methods: time: point -long_name: Downwelling Clear-Sky Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: rsdcs -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: tnt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_air_temperature -units: K s-1 -cell_methods: time: point -long_name: Tendency of Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: tnt -type: real -!---------------------------------- -! - -!============ -variable_entry: tnta -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_air_temperature_due_to_advection -units: K s-1 -cell_methods: time: point -long_name: Tendency of Air Temperature due to Advection -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: tnta -type: real -!---------------------------------- -! - -!============ -variable_entry: tntmp -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_air_temperature_due_to_model_physics -units: K s-1 -cell_methods: time: point -long_name: Tendency of Air Temperature due to Diabatic Processes -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: tntmp -type: real -!---------------------------------- -! - -!============ -variable_entry: tntscpbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_air_temperature_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing -units: K s-1 -cell_methods: time: point -long_name: Tendency of Air Temperature due to Stratiform Cloud Condensation and Evaporation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: tntscpbl -type: real -!---------------------------------- -! - -!============ -variable_entry: tntr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_air_temperature_due_to_radiative_heating -units: K s-1 -cell_methods: time: point -long_name: Tendency of Air Temperature due to Radiative Heating -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: tntr -type: real -!---------------------------------- -! - -!============ -variable_entry: tntc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_air_temperature_due_to_convection -units: K s-1 -cell_methods: time: point -long_name: Tendency of Air Temperature due to Moist Convection -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: tntc -type: real -!---------------------------------- -! - -!============ -variable_entry: tnhus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_specific_humidity -units: s-1 -cell_methods: time: point -long_name: Tendency of Specific Humidity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: tnhus -type: real -!---------------------------------- -! - -!============ -variable_entry: tnhusa -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_specific_humidity_due_to_advection -units: s-1 -cell_methods: time: point -long_name: Tendency of Specific Humidity due to Advection -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: tnhusa -type: real -!---------------------------------- -! - -!============ -variable_entry: tnhusc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_specific_humidity_due_to_convection -units: s-1 -cell_methods: time: point -long_name: Tendency of Specific Humidity due to Convection -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: tnhusc -type: real -!---------------------------------- -! - -!============ -variable_entry: tnhusd -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_specific_humidity_due_to_diffusion -units: s-1 -cell_methods: time: point -long_name: Tendency of Specific Humidity due to Diffusion -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: tnhusd -type: real -!---------------------------------- -! - -!============ -variable_entry: tnhusscpbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_specific_humidity_due_to_stratiform_cloud_and_precipitation_and_boundary_layer_mixing -units: s-1 -cell_methods: time: point -long_name: Tendency of Specific Humidity due to Stratiform Cloud Condensation and Evaporation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: tnhusscpbl -type: real -!---------------------------------- -! - -!============ -variable_entry: tnhusmp -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_specific_humidity_due_to_model_physics -units: s-1 -cell_methods: time: point -long_name: Tendency of Specific Humidity due to Model Physics -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: tnhusmp -type: real -!---------------------------------- -! - -!============ -variable_entry: evu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_momentum_diffusivity -units: m2 s-1 -cell_methods: time: point -long_name: Eddy Viscosity Coefficient for Momentum Variables -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: evu -type: real -!---------------------------------- -! - -!============ -variable_entry: edt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: atmosphere_heat_diffusivity -units: m2 s-1 -cell_methods: time: point -long_name: Eddy Diffusivity Coefficient for Temperature Variable -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: edt -type: real -!---------------------------------- -! - -!============ -variable_entry: pfull -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -cell_methods: time: point -long_name: Pressure on Model Levels -comment: This field is needed only for models in which the pressure can't be calculated from the vertical coordinate information stored already for each variable. Thus, the pressures are needed for height or theta-coordinate models, for example, but not sigma- or eta-coordinate models. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: pfull -type: real -!---------------------------------- -! - -!============ -variable_entry: phalf -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -cell_methods: time: point -long_name: Pressure on Model Half-Levels -comment: This field is needed only for models in which the pressure can't be calculated from the vertical coordinate information stored already for each variable. Thus, the pressures are needed for height or theta-coordinate models, for example, but not sigma- or eta-coordinate models. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: alevel site time1 -out_name: phalf -type: real -!---------------------------------- -! - -!============ -variable_entry: longitude -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -cell_methods: 0.0 -long_name: Longitude -comment: Note that the CF convention and CMOR2 require that this field will be included in each file that contains a variable that is a function of the ""site"" dimension, so there is no need to save this field by itself. It is included here simply to indicate that longitudes should be stored for the site grid in each file written. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site -out_name: lon -type: real -valid_min: 360.0 -!---------------------------------- -! - -!============ -variable_entry: latitude -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -cell_methods: -90.0 -long_name: Latitude -comment: the above comment also applies to latitude. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: site -out_name: lat -type: real -valid_min: 90.0 -!---------------------------------- -! - diff --git a/TestTables/CMIP5_day b/TestTables/CMIP5_day deleted file mode 100644 index cbe9f5c53250b55f5f6695ce6baa08699448cbb7..0000000000000000000000000000000000000000 --- a/TestTables/CMIP5_day +++ /dev/null @@ -1,1274 +0,0 @@ -table_id: Table day -modeling_realm: atmos - -frequency: day - -cmor_version: 2.5.0 ! minimum version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 12 November 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip branch_time contact institute_id ! space separated required global attribute - -forcings: N/A Nat Ant GHG SD SI SA TO SO Oz LU Sl Vl SS Ds BC MD OC AA - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'volcano-free hindcast initialized in year XXXX' 'noVolcXXXX' -expt_id_ok: 'prediction with 2010 volcano' 'volcIn2010' -expt_id_ok: 'pre-industrial control' 'piControl' -expt_id_ok: 'historical' 'historical' -expt_id_ok: 'mid-Holocene' 'midHolocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.6' 'rcp26' -expt_id_ok: 'RCP6' 'rcp60' -expt_id_ok: 'ESM pre-industrial control' 'esmControl' -expt_id_ok: 'ESM historical' 'esmHistorical' -expt_id_ok: 'ESM RCP8.5' 'esmrcp85' -expt_id_ok: 'ESM fixed climate 1' 'esmFixClim1' -expt_id_ok: 'ESM fixed climate 2' 'esmFixClim2' -expt_id_ok: 'ESM feedback 1' 'esmFdbk1' -expt_id_ok: 'ESM feedback 2' 'esmFdbk2' -expt_id_ok: '1 percent per year CO2' '1pctCO2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt4xCO2' -expt_id_ok: 'natural-only' 'historicalNat' -expt_id_ok: 'GHG-only' 'historicalGHG' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst2030' -expt_id_ok: 'control SST climatology' 'sstClim' -expt_id_ok: 'CO2 forcing' 'sstClim4xCO2' -expt_id_ok: 'all aerosol forcing' 'sstClimAerosol' -expt_id_ok: 'sulfate aerosol forcing' 'sstClimSulfate' -expt_id_ok: '4xCO2 AMIP' 'amip4xCO2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amipFuture' -expt_id_ok: 'aqua planet control' 'aquaControl' -expt_id_ok: '4xCO2 aqua planet' 'aqua4xCO2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua4K' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip4K' - - -approx_interval: 1.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: plev8 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -tolerance: 0.001 -type: double -requested: 100000. 85000. 70000. 50000. 25000. 10000. 5000. 1000. ! space-separated list of requested coordinates -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: height2m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 10.0 -stored_direction: increasing -type: double -value: 2. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: height10m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 30.0 -stored_direction: increasing -type: double -value: 10. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: sdepth1 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: depth -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 0.2 -stored_direction: increasing -type: double -value: 0.05 ! of scalar (singleton) dimension -bounds_values: 0.0 0.1 ! of scalar (singleton) dimension bounds -must_have_bounds: yes -!---------------------------------- -! - -!============ -variable_entry: huss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Near-Surface Specific Humidity -comment: near-surface (usually, 2 meter) specific humidity. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: huss -type: real -valid_min: -7.21e-06 -valid_max: 0.02992 -ok_min_mean_abs: 0.006391 -ok_max_mean_abs: 0.008749 -!---------------------------------- -! - -!============ -variable_entry: tasmin -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: minimum -cell_measures: area: areacella -long_name: Daily Minimum Near-Surface Air Temperature -comment: daily-minimum near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tasmin -type: real -valid_min: 183.6 -valid_max: 309.8 -ok_min_mean_abs: 271.8 -ok_max_mean_abs: 279.6 -!---------------------------------- -! - -!============ -variable_entry: tasmax -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: maximum -cell_measures: area: areacella -long_name: Daily Maximum Near-Surface Air Temperature -comment: daily-maximum near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tasmax -type: real -valid_min: 181.9 -valid_max: 330.6 -ok_min_mean_abs: 277.3 -ok_max_mean_abs: 281.4 -!---------------------------------- -! - -!============ -variable_entry: tas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Near-Surface Air Temperature -comment: daily-mean near-surface (usually, 2 meter) air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: tas -type: real -valid_min: 180.6 -valid_max: 325.7 -ok_min_mean_abs: 273.5 -ok_max_mean_abs: 281.7 -!---------------------------------- -! - -!============ -variable_entry: pr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Precipitation -comment: at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: pr -type: real -valid_min: 0 -valid_max: 0.001254 -ok_min_mean_abs: 2.156e-05 -ok_max_mean_abs: 3.215e-05 -!---------------------------------- -! - -!============ -variable_entry: psl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -cell_measures: area: areacella -long_name: Sea Level Pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: psl -type: real -valid_min: 9.477e+04 -valid_max: 1.124e+05 -ok_min_mean_abs: 1.003e+05 -ok_max_mean_abs: 1.017e+05 -!---------------------------------- -! - -!============ -variable_entry: sfcWind -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: wind_speed -units: m s-1 -cell_methods: time: mean -long_name: Daily-Mean Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) wind speed. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: sfcWind -type: real -!---------------------------------- -! - -!============ -variable_entry: tossq -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: square_of_sea_surface_temperature -units: K2 -cell_methods: time:mean -cell_measures: area: areacello -long_name: Square of Sea Surface Temperature -comment: square of temperature of liquid ocean, averaged over the day. Report on the ocean grid. This variable appears in WGOMD Table 2.2 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tossq -type: real -!---------------------------------- -! - -!============ -variable_entry: tos -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacello -long_name: Sea Surface Temperature -comment: temperature of liquid ocean. Report on the ocean grid. This variable appears in WGOMD Table 2.2 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tos -type: real -valid_min: 270.6 -valid_max: 313.9 -ok_min_mean_abs: 283.7 -ok_max_mean_abs: 291.7 -!---------------------------------- -! - -!============ -variable_entry: omldamax -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_mixed_layer_thickness_defined_by_mixing_scheme -units: m -cell_methods: time: maximum -cell_measures: area: areacello -long_name: Daily Maximum Ocean Mixed Layer Thickness Defined by Mixing Scheme -comment: Report on the ocean grid. This variable appears in WGOMD Table 2.2 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: omldamax -type: real -!---------------------------------- -! - -!============ -variable_entry: mrsos -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: moisture_content_of_soil_layer -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Moisture in Upper 0.1 m of Soil Column -comment: Compute the mass of water in all phases in the upper 0.1 meters of soil. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time sdepth1 -out_name: mrsos -type: real -valid_min: -2.008 -valid_max: 146.5 -ok_min_mean_abs: -35.89 -ok_max_mean_abs: 123.3 -!---------------------------------- -! - -!============ -variable_entry: rhs -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Near-Surface Relative Humidity -comment: near-surface (usually, 2 meter) relative humidity. This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: rhs -type: real -!---------------------------------- -! - -!============ -variable_entry: rhsmin -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: minimum -cell_measures: area: areacella -long_name: Surface Daily Minimum Relative Humidity -comment: near-surface (usually, 2 meter) minimum relative humidity. This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: rhsmin -type: real -!---------------------------------- -! - -!============ -variable_entry: rhsmax -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: maximum -cell_measures: area: areacella -long_name: Surface Daily Maximum Relative Humidity -comment: near-surface (usually, 2 meter) maximum relative humidity. This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -out_name: rhsmax -type: real -!---------------------------------- -! - -!============ -variable_entry: snc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_snow_area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Snow Area Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: snc -type: real -valid_min: 0 -valid_max: 102.1 -ok_min_mean_abs: -29.01 -ok_max_mean_abs: 78.46 -!---------------------------------- -! - -!============ -variable_entry: clt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total Cloud Fraction -comment: for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: clt -type: real -valid_min: -0.0001822 -valid_max: 100.2 -ok_min_mean_abs: 39.37 -ok_max_mean_abs: 84.98 -!---------------------------------- -! - -!============ -variable_entry: tslsi -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Temperature Where Land or Sea Ice -comment: """skin"" temperature of all surfaces except open ocean. " -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tslsi -type: real -!---------------------------------- -! - -!============ -variable_entry: snw -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_snow_amount -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Surface Snow Amount -comment: Compute as the mass of surface snow on the land portion of the grid cell divided by the land area in the grid cell; report 0.0 where the land fraction is 0; exclude snow on vegetation canopy or on sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: snw -type: real -valid_min: -0.007542 -valid_max: 9.555e+05 -ok_min_mean_abs: -6025 -ok_max_mean_abs: 1.213e+04 -!---------------------------------- -! - -!============ -variable_entry: prc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Convective Precipitation -comment: at surface; includes both liquid and solid phases. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prc -type: real -valid_min: 0 -valid_max: 0.0006323 -ok_min_mean_abs: -2.528e-06 -ok_max_mean_abs: 3.209e-05 -!---------------------------------- -! - -!============ -variable_entry: prsn -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: snowfall_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Solid Precipitation -comment: at surface; includes precipitation of all forms of water in the solid phase -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prsn -type: real -valid_min: 0 -valid_max: 0.0002987 -ok_min_mean_abs: 1.449e-06 -ok_max_mean_abs: 6.11e-06 -!---------------------------------- -! - -!============ -variable_entry: mrro -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: runoff_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Total Runoff -comment: "compute as the total runoff (including ""drainage"" through the base of the soil model) leaving the land portion of the grid cell divided by the land area in the grid cell." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: mrro -type: real -valid_min: -0.0002019 -valid_max: 0.001065 -ok_min_mean_abs: -6.668e-06 -ok_max_mean_abs: 1.874e-05 -!---------------------------------- -! - -!============ -variable_entry: uas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Eastward Near-Surface Wind -comment: near-surface (usually, 10 meters) eastward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: uas -type: real -valid_min: -19.01 -valid_max: 18.68 -ok_min_mean_abs: 1.668 -ok_max_mean_abs: 4.106 -!---------------------------------- -! - -!============ -variable_entry: vas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Northward Near-Surface Wind -comment: near-surface (usually, 10 meters) northward component of wind. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: vas -type: real -valid_min: -18.04 -valid_max: 22.84 -ok_min_mean_abs: 1.065 -ok_max_mean_abs: 2.678 -!---------------------------------- -! - -!============ -variable_entry: sfcWindmax -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: wind_speed -units: m s-1 -cell_methods: time: maximum -long_name: Daily Maximum Near-Surface Wind Speed -comment: near-surface (usually, 10 meters) wind speed. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -out_name: sfcWindmax -type: real -!---------------------------------- -! - -!============ -variable_entry: hfls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upward Latent Heat Flux -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfls -type: real -positive: up -valid_min: -76.77 -valid_max: 790.7 -ok_min_mean_abs: 50.39 -ok_max_mean_abs: 73.2 -!---------------------------------- -! - -!============ -variable_entry: hfss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upward Sensible Heat Flux -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: hfss -type: real -positive: up -valid_min: -264.5 -valid_max: 844.8 -ok_min_mean_abs: 10.7 -ok_max_mean_abs: 34.84 -!---------------------------------- -! - -!============ -variable_entry: rlds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlds -type: real -positive: down -valid_min: 30.71 -valid_max: 520.5 -ok_min_mean_abs: 271.2 -ok_max_mean_abs: 323.6 -!---------------------------------- -! - -!============ -variable_entry: rlus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlus -type: real -positive: up -valid_min: 43.75 -valid_max: 658 -ok_min_mean_abs: 331.1 -ok_max_mean_abs: 369.9 -!---------------------------------- -! - -!============ -variable_entry: rsds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsds -type: real -positive: down -valid_min: -0.002946 -valid_max: 524.4 -ok_min_mean_abs: 143.9 -ok_max_mean_abs: 181.6 -!---------------------------------- -! - -!============ -variable_entry: rsus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rsus -type: real -positive: up -valid_min: -0.006589 -valid_max: 422.2 -ok_min_mean_abs: 26.22 -ok_max_mean_abs: 43.77 -!---------------------------------- -! - -!============ -variable_entry: rlut -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA Outgoing Longwave Radiation -comment: at the top of the atmosphere. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rlut -type: real -positive: up -valid_min: 67.48 -valid_max: 383.2 -ok_min_mean_abs: 214.1 -ok_max_mean_abs: 227.5 -!---------------------------------- -! - -!============ -variable_entry: usi -!============ -modeling_realm: seaIce ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_ice_x_velocity -units: m s-1 -cell_methods: time: mean -long_name: X-Component of Sea Ice Velocity -comment: "Report on ocean's grid. Report as ""missing"" in regions free of sea ice." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: usi -type: real -valid_min: -1.469 -valid_max: 1.634 -ok_min_mean_abs: -0.03933 -ok_max_mean_abs: 0.1016 -!---------------------------------- -! - -!============ -variable_entry: vsi -!============ -modeling_realm: seaIce ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_ice_y_velocity -units: m s-1 -cell_methods: time: mean -long_name: Y-Component of Sea Ice Velocity -comment: "Report on ocean's grid. Report as ""missing"" in regions free of sea ice." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: vsi -type: real -valid_min: -2.081 -valid_max: 2.193 -ok_min_mean_abs: -0.02994 -ok_max_mean_abs: 0.07904 -!---------------------------------- -! - -!============ -variable_entry: sic -!============ -modeling_realm: seaIce ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_ice_area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Sea Ice Area Fraction -comment: fraction of grid cell covered by sea ice. Report on ocean's grid. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: sic -type: real -valid_min: -0.000225 -valid_max: 166.1 -ok_min_mean_abs: -13.33 -ok_max_mean_abs: 36.65 -!---------------------------------- -! - -!============ -variable_entry: sit -!============ -modeling_realm: seaIce ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_ice_thickness -units: m -cell_methods: time: mean area: mean where sea -cell_measures: area: areacella -long_name: Sea Ice Thickness -comment: Report on ocean's grid. Compute the mean thickness of sea ice in the ocean portion of the grid cell (averaging over the entire ocean portion, including the ice-free fraction). Report as 0.0 in regions free of sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: sit -type: real -valid_min: -0.006698 -valid_max: 104.4 -ok_min_mean_abs: -0.9217 -ok_max_mean_abs: 2.582 -!---------------------------------- -! - -!============ -variable_entry: ta -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plev8 time -out_name: ta -type: real -valid_min: 157.1 -valid_max: 326.4 -ok_min_mean_abs: 200.2 -ok_max_mean_abs: 289.9 -!---------------------------------- -! - -!============ -variable_entry: hur -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: relative_humidity -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Relative Humidity -comment: This is the relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plev8 time -out_name: hur -type: real -valid_min: -2.642 -valid_max: 135.7 -ok_min_mean_abs: -10.31 -ok_max_mean_abs: 97 -!---------------------------------- -! - -!============ -variable_entry: hus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Specific Humidity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plev8 time -out_name: hus -type: real -valid_min: -0.000299 -valid_max: 0.02812 -ok_min_mean_abs: -0.0003539 -ok_max_mean_abs: 0.01027 -!---------------------------------- -! - -!============ -variable_entry: wap -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: lagrangian_tendency_of_air_pressure -units: Pa s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: omega (=dp/dt) -comment: commonly referred to as ""omega"", this represents the vertical component of velocity in pressure coordinates (positive down) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plev8 time -out_name: wap -type: real -valid_min: -1.126 -valid_max: 2.319 -ok_min_mean_abs: -0.005083 -ok_max_mean_abs: 0.04256 -!---------------------------------- -! - -!============ -variable_entry: va -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Northward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plev8 time -out_name: va -type: real -valid_min: -71.1 -valid_max: 69.93 -ok_min_mean_abs: 0.9886 -ok_max_mean_abs: 4.679 -!---------------------------------- -! - -!============ -variable_entry: ua -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Eastward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plev8 time -out_name: ua -type: real -valid_min: -68.65 -valid_max: 136.6 -ok_min_mean_abs: 1.101 -ok_max_mean_abs: 22.42 -!---------------------------------- -! - -!============ -variable_entry: zg -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: geopotential_height -units: m -cell_methods: time: mean -cell_measures: area: areacella -long_name: Geopotential Height -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plev8 time -out_name: zg -type: real -valid_min: -719.7 -valid_max: 3.306e+04 -ok_min_mean_abs: -113.4 -ok_max_mean_abs: 3.164e+04 -!---------------------------------- -! - diff --git a/TestTables/CMIP5_fx b/TestTables/CMIP5_fx deleted file mode 100644 index abd345b6f73e6234b66dd032e7f03ced2e008cd3..0000000000000000000000000000000000000000 --- a/TestTables/CMIP5_fx +++ /dev/null @@ -1,665 +0,0 @@ -table_id: Table fx -modeling_realm: atmos - -frequency: fx - -cmor_version: 2.5.0 ! minimum version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 12 November 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip branch_time contact institute_id ! space separated required global attribute - -forcings: N/A Nat Ant GHG SD SI SA TO SO Oz LU Sl Vl SS Ds BC MD OC AA - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'volcano-free hindcast initialized in year XXXX' 'noVolcXXXX' -expt_id_ok: 'prediction with 2010 volcano' 'volcIn2010' -expt_id_ok: 'pre-industrial control' 'piControl' -expt_id_ok: 'historical' 'historical' -expt_id_ok: 'mid-Holocene' 'midHolocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.6' 'rcp26' -expt_id_ok: 'RCP6' 'rcp60' -expt_id_ok: 'ESM pre-industrial control' 'esmControl' -expt_id_ok: 'ESM historical' 'esmHistorical' -expt_id_ok: 'ESM RCP8.5' 'esmrcp85' -expt_id_ok: 'ESM fixed climate 1' 'esmFixClim1' -expt_id_ok: 'ESM fixed climate 2' 'esmFixClim2' -expt_id_ok: 'ESM feedback 1' 'esmFdbk1' -expt_id_ok: 'ESM feedback 2' 'esmFdbk2' -expt_id_ok: '1 percent per year CO2' '1pctCO2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt4xCO2' -expt_id_ok: 'natural-only' 'historicalNat' -expt_id_ok: 'GHG-only' 'historicalGHG' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst2030' -expt_id_ok: 'control SST climatology' 'sstClim' -expt_id_ok: 'CO2 forcing' 'sstClim4xCO2' -expt_id_ok: 'all aerosol forcing' 'sstClimAerosol' -expt_id_ok: 'sulfate aerosol forcing' 'sstClimSulfate' -expt_id_ok: '4xCO2 AMIP' 'amip4xCO2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amipFuture' -expt_id_ok: 'aqua planet control' 'aquaControl' -expt_id_ok: '4xCO2 aqua planet' 'aqua4xCO2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua4K' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip4K' - - -approx_interval: 0.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -generic_levels: olevel - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - -!============ -axis_entry: depth_coord -!============ -! -! This vertical coordinate is used in z-coordinate models -! The units are meters (m), and it has a value of 0. at the surface -! and becomes more and more positive with depth. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z -positive: down -long_name: ocean depth coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0. -valid_max: 12000. -!---------------------------------- -! -!============ -axis_entry: ocean_double_sigma -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: ocean_double_sigma -axis: Z -positive: up -long_name: ocean double sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -formula: for k <= k_c:\n z(k,j,i)= sigma(k)*f(j,i) \n for k > k_c:\n z(k,j,i)= f(j,i) + (sigma(k)-1)*(depth(j,i)-f(j,i)) \n f(j,i)= 0.5*(z1+ z2) + 0.5*(z1-z2)* tanh(2*a/(z1-z2)*(depth(j,i)-href)) -z_factors: sigma: sigma depth: depth z1: z1 z2: z2 a: a_coeff href: href k_c: k_c -z_bounds_factors: sigma: sigma_bnds depth: depth z1: z1 z2: z2 a: a href: href k_c: k_c -!---------------------------------- -! -!---------------------------------- -! -! -! *************************************************************** -! -! Vertical coordinate formula_terms: -! -! *************************************************************** -! -!============ -variable_entry: depth -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: m -long_name: Sea Floor Depth -comment: Ocean bathymetry. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: depth -type: real -valid_min: 0. -valid_max: 12000. -ok_min_mean_abs: 2000. -ok_max_mean_abs: 5000. -!---------------------------------- -! -! -!============ -variable_entry: sigma -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: sigma(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: olevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: sigma_bnds -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: sigma(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: olevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: zlev -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: zlev(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: olevel -type: double -!---------------------------------- -! -! -!============ -variable_entry: zlev_bnds -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: zlev(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: olevel -type: double -!---------------------------------- -! -! -! -!============ -variable_entry: depth_c -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: depth_c -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! -! -!============ -variable_entry: a -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: coefficient a -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: coefficient b -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! -! -!============ -variable_entry: nsigma -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: nsigma -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: integer -!---------------------------------- -! -! -!============ -variable_entry: z1 -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: z1 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! -! -!============ -variable_entry: z2 -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: z2 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! -! -!============ -variable_entry: href -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: href -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! -! -!============ -variable_entry: k_c -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: k_c -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: integer -!---------------------------------- -! -! - -!============ -variable_entry: areacella -!============ -modeling_realm: atmos land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cell_area -units: m2 -long_name: Atmosphere Grid-Cell Area -comment: For atmospheres with more than 1 mesh (e.g., staggered grids), report areas that apply to surface vertical fluxes of energy. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: areacella -type: real -valid_min: 100000.0 -valid_max: 1e+12 -ok_min_mean_abs: 100000.0 -ok_max_mean_abs: 1e+12 -!---------------------------------- -! - -!============ -variable_entry: orog -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -cell_measures: area: areacella -long_name: Surface Altitude -comment: height above the geoid; as defined here, ""the geoid"" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Report here the height above the present-day geoid. Over ocean, report as 0.0 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: orog -type: real -valid_min: -700.0 -valid_max: 10000.0 -ok_min_mean_abs: 327.9 -ok_max_mean_abs: 431.3 -!---------------------------------- -! - -!============ -variable_entry: sftlf -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: land_area_fraction -units: % -cell_measures: area: areacella -long_name: Land Area Fraction -comment: For atmospheres with more than 1 mesh (e.g., staggered grids), report areas that apply to surface vertical fluxes of energy. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: sftlf -type: real -valid_min: 0.0 -valid_max: 100.0 -ok_min_mean_abs: 30.58 -ok_max_mean_abs: 37.07 -!---------------------------------- -! - -!============ -variable_entry: sftgif -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: land_ice_area_fraction -units: % -cell_measures: area: areacella -long_name: Fraction of Grid Cell Covered with Glacier -comment: fraction of grid cell occupied by ""permanent"" ice (i.e., glaciers). If time varying, report annual values for each year of simulation. For atmospheres with more than 1 mesh (e.g., staggered grids), report areas that apply to surface vertical fluxes of energy. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: sftgif -type: real -valid_min: 0.0 -valid_max: 100.0 -ok_min_mean_abs: 7.328 -ok_max_mean_abs: 14.93 -!---------------------------------- -! - -!============ -variable_entry: mrsofc -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: soil_moisture_content_at_field_capacity -units: kg m-2 -cell_measures: area: areacella -long_name: Capacity of Soil to Store Water -comment: """where land"": divide the total water holding capacity of all the soil in the grid cell by the land area in the grid cell; report as ""missing"" where the land fraction is 0." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: mrsofc -type: real -valid_min: -52.65 -valid_max: 4910 -ok_min_mean_abs: -865 -ok_max_mean_abs: 2220 -!---------------------------------- -! - -!============ -variable_entry: rootd -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: root_depth -units: m -cell_measures: area: areacella -long_name: Maximum Root Depth -comment: report the maximum soil depth reachable by plant roots (if defined in model), i.e., the maximum soil depth from which they can extract moisture; report as ""missing"" where the land fraction is 0. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: rootd -type: real -valid_min: 0.0 -valid_max: 30.0 -ok_min_mean_abs: 0.8 -ok_max_mean_abs: 3.2 -!---------------------------------- -! - -!============ -variable_entry: deptho -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_floor_depth_below_geoid -units: m -cell_measures: area: areacello -long_name: Sea Floor Depth -comment: Ocean bathymetry. Report here the sea floor depth for present day. Report as missing for land grid cells. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: deptho -type: real -valid_min: 0.0 -valid_max: 10000.0 -ok_min_mean_abs: 2000.0 -ok_max_mean_abs: 5000.0 -!---------------------------------- -! - -!============ -variable_entry: volcello -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_volume -units: m3 -long_name: Ocean Grid-Cell Volume -comment: 3-D field: grid-cell volume ca. 2000. For oceans with more than 1 mesh, report for on grid that applies to temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel -out_name: volcello -type: real -valid_min: 100000.0 -valid_max: 1e+15 -ok_min_mean_abs: 100000.0 -ok_max_mean_abs: 1e+15 -!---------------------------------- -! - -!============ -variable_entry: areacello -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cell_area -units: m2 -long_name: Ocean Grid-Cell Area -comment: For oceans with more than 1 mesh (e.g., staggered grids), report areas that apply to surface vertical fluxes of energy. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: areacello -type: real -valid_min: 100000.0 -valid_max: 1e+12 -ok_min_mean_abs: 100000.0 -ok_max_mean_abs: 1e+12 -!---------------------------------- -! - -!============ -variable_entry: sftof -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_area_fraction -units: % -cell_measures: area: areacello -long_name: Sea Area Fraction -comment: Report on the same grid that ocean fields are reported (i.e., the ocean native grid, or the grid that ocean data has been provided to CMIP. For completeness, provide this even if the ocean grid is the same as the atmospheric grid. This is the area fraction at the ocean surface. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: sftof -type: real -valid_min: 0.0 -valid_max: 100.0 -!---------------------------------- -! - -!============ -variable_entry: basin -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: region -units: 1 -cell_measures: area: areacello -long_name: Region Selection Index -comment: Report on the same grid as the temperature field. flag_values=0,1,2,3,4,5,6,7,8,9,10 corresponding to flag_meanings=global_land, southern_ocean, atlantic_ocean, pacific_ocean, arctic_ocean, indian_ocean, mediterranean_sea, black_sea, hudson_bay, baltic_sea, red_sea. Report on the grid used for the temperature field. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: basin -type: integer -valid_min: 1.0 -valid_max: 10.0 -!---------------------------------- -! - diff --git a/TestTables/CMIP5_grids b/TestTables/CMIP5_grids deleted file mode 100644 index 94f6d087e8676b56967c5ad510449de912893fd5..0000000000000000000000000000000000000000 --- a/TestTables/CMIP5_grids +++ /dev/null @@ -1,319 +0,0 @@ -table_id: Table grids - - -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: CMIP5 ! project id -table_date: 12 November 2010 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip branch_time contact institute_id ! space separated required global attribute - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'volcano-free hindcasts' 'noVolcXXXX' -expt_id_ok: 'prediction with 2010 volcano' 'volcIn2010' -expt_id_ok: 'pre-industrial control' 'piControl' -expt_id_ok: 'Historical' 'historical' -expt_id_ok: 'mid-Holocene' 'midHolocene' -expt_id_ok: 'last glacial maximum' 'lgm' -expt_id_ok: 'last millennium' 'past1000' -expt_id_ok: 'RCP4.5' 'rcp45' -expt_id_ok: 'RCP8.5' 'rcp85' -expt_id_ok: 'RCP2.6' 'rcp26' -expt_id_ok: 'RCP6' 'rcp60' -expt_id_ok: 'ESM pre-industrial control' 'esmControl' -expt_id_ok: 'ESM historical' 'esmHistorical' -expt_id_ok: 'ESM RCP8.5' 'esmrcp85' -expt_id_ok: 'ESM fixed climate 1' 'esmFixClim1' -expt_id_ok: 'ESM fixed climate 2' 'esmFixClim2' -expt_id_ok: 'ESM feedback 1' 'esmFdbk1' -expt_id_ok: 'ESM feedback 2' 'esmFdbk2' -expt_id_ok: '1 percent per year CO2' '1pctCO2' -expt_id_ok: 'abrupt 4XCO2' 'abrupt4xCO2' -expt_id_ok: 'natural-only' 'historicalNat' -expt_id_ok: 'GHG-only' 'historicalGHG' -expt_id_ok: 'AMIP' 'amip' -expt_id_ok: '2030 time-slice' 'sst2030' -expt_id_ok: 'control SST climatology' 'sstClim' -expt_id_ok: 'CO2 forcing' 'sstClim4xCO2' -expt_id_ok: 'all aerosol forcing' 'sstClimAerosol' -expt_id_ok: 'sulfate aerosol forcing' 'sstClimSulfate' -expt_id_ok: '4xCO2 AMIP' 'amip4xCO2' -expt_id_ok: 'AMIP plus patterned anomaly' 'amipFuture' -expt_id_ok: 'aqua planet control' 'aquaControl' -expt_id_ok: '4xCO2 aqua planet' 'aqua4xCO2' -expt_id_ok: 'aqua planet plus 4K anomaly' 'aqua4K' -expt_id_ok: 'AMIP plus 4K anomaly' 'amip4K' - - -! -! -!============ -mapping_entry: sample_user_mapping -!============ -parameter: false_easting -parameter: false_northing -coordinates: rlon rlat -! -!============ -axis_entry: i_index -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -out_name: i -units: 1 -long_name: cell index along first dimension -type: integer -!---------------------------------- -! -! -!============ -axis_entry: j_index -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -out_name: j -units: 1 -long_name: cell index along second dimension -type: integer -!---------------------------------- -! -! -!============ -axis_entry: k_index -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -out_name: k -units: 1 -long_name: cell index along third dimension -type: integer -!---------------------------------- -! -!============ -axis_entry: l_index -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -out_name: l -units: 1 -long_name: cell index along fourth dimension -type: integer -!---------------------------------- -! -!============ -axis_entry: m_index -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -out_name: m -units: 1 -long_name: cell index along fifth dimension -type: integer -!---------------------------------- -! -!============ -axis_entry: x -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: projection_x_coordinate -units: m -long_name: x coordinate of projection -axis: X -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -! -!============ -axis_entry: y -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: projection_y_coordinate -units: m -long_name: y coordinate of projection -axis: Y -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -! -!============ -axis_entry: x_deg -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -out_name: x -standard_name: projection_x_coordinate -units: degrees -long_name: x coordinate of projection -axis: X -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -! -!============ -axis_entry: y_deg -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -out_name: y -standard_name: projection_y_coordinate -units: degrees -long_name: y coordinate of projection -axis: Y -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -! -!============ -axis_entry: grid_latitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: grid_latitude -units: degrees -long_name: latitude in rotated pole grid -axis: Y -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: rlat -! -!============ -axis_entry: grid_longitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: grid_longitude -units: degrees -long_name: longitude in rotated pole grid -axis: X -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: rlon -! -!============ -axis_entry: vertices -!============ -! -!------------ -! -!============ -variable_entry: longitude -!============ -!---------------------------------- -standard_name: longitude -units: degrees_east -long_name: longitude coordinate -dimensions: longitude latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============ -variable_entry: latitude -!============ -!---------------------------------- -standard_name: latitude -units: degrees_north -long_name: latitude coordinate -dimensions: longitude latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! -!============ -variable_entry: vertices_longitude -!============ -!---------------------------------- -units: degrees_east -dimensions: vertices longitude latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon_vertices -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============ -variable_entry: vertices_latitude -!============ -!---------------------------------- -units: degrees_north -dimensions: vertices longitude latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat_vertices -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! diff --git a/TestTables/SPECS_6hrLev b/TestTables/SPECS_6hrLev deleted file mode 100644 index 6c80ff00ebdace506fd403be2bc7c2e945f4dd95..0000000000000000000000000000000000000000 --- a/TestTables/SPECS_6hrLev +++ /dev/null @@ -1,417 +0,0 @@ -table_id: Table 6hrLev -modeling_realm: atmos - -frequency: 6hr - -cmor_version: 2.6 ! minimum version of CMOR that can read this table -cf_version: 1.6 ! version of CF that output conforms to -project_id: SPECS ! project id -table_date: 26 July 2011 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip contact ! space separated required global attribute - -forcings: ?????? - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'historical' 'historicalXXXX' -expt_id_ok: 'soilMoistureClimInit' 'soil_moisture clim_init' -expt_id_ok: 'soilMoistureBestInit' 'soil_moisture best_init' -expt_id_ok: 'seaIceClimInit' 'seaice clim_init' -expt_id_ok: 'seaIceBestInit' 'seaice best_init' -expt_id_ok: 'horizlResImpact' 'horizlres impact' -expt_id_ok: 'standardStratVertRes' 'standard_strat vert_res' -expt_id_ok: 'improvedStratVertRes' 'improved_strat vert_res' -expt_id_ok: 'snowBestInit' 'snow best init' -expt_id_ok: 'snowClimInit' 'snow clim init' -expt_id_ok: 'interactivePhenology' 'interactive phenology' -expt_id_ok: 'fixedPhenology' 'fixed phenology' -expt_id_ok: 'aerosolImproved' 'aerosol improved' -expt_id_ok: 'aerosolsStandard' 'aerosol standard' -expt_id_ok: 'obsSolarIrradiance' 'obs solar irradiance' -expt_id_ok: 'constSolarIrradiance' 'const solar irradiance' - -approx_interval: 0.250000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -generic_levels: alevel - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time1 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: no -!---------------------------------- -! - -!============ -axis_entry: smooth_level -!============ -! -! This coordinate is a hybrid height coordinate with units of meters (m). -! It increases upward. -! The values of a(k)*ztop, which appear in the formula below, should be stored as smooth_level. -! Note that in the netCDF file the variable will be named "lev", not smooth_level. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sleve_coordinate -units: m -axis: Z -positive: up -long_name: atmosphere smooth level vertical (SLEVE) coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: -200. -valid_max: 800000. -formula: z = a*ztop + b1*zsurf1 + b2*zsurf2 -z_factors: a: a b1: b1 b2: b2 ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -z_bounds_factors: a: a_bnds b1: b1_bnds b2: b2_bnds ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -!---------------------------------- -! -!============ -axis_entry: natural_log_pressure -!============ -! -!This coordinate is dimensionless and varies from near 0 at the surface and increases upward. -! The values of lev(k), which appears in the formula below, should be stored as natural_log_pressure. -! Note that in the netCDF file the variable will be named "lev", not natural_log_pressure. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_ln_pressure_coordinate -axis: Z -long_name: atmosphere natural log pressure coordinate -positive: down -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 20. -formula: p = p0 * exp(-lev) -z_factors: p0: p0 lev: lev -z_bounds_factors: p0: p0 lev: lev_bnds -!---------------------------------- -! -!============ -axis_entry: standard_sigma -!============ -! -! This coordinate is dimensionless and varies from 0 at the model top to 1.0 at the surface. -! The values of sigma(k), which appears in the formula below, should be stored as standard_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p = ptop + sigma*(ps - ptop) -z_factors: ptop: ptop sigma: lev ps: ps -z_bounds_factors: ptop: ptop sigma: lev_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of a+ b, which appear in the formula below, should be stored as standard_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_hybrid_sigma. -! -!--------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p = a*p0 + b*ps -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of ap/p0 + b, which appear in the formula below, should be stored as alternate_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not alternate_hybrid_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p = ap + b*ps -z_factors: ap: ap b: b ps: ps -z_bounds_factors: ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! This coordinate has dimension of meters (m) and increases upward. -! The values of a which appear in the formula below, should be stored as hybrid_height. -! Note that in the netCDF file the variable will be named "lev", not hybrid_height. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0.0 -formula: z = a + b*orog -z_factors: a: lev b: b orog: orog -z_bounds_factors: a: lev_bnds b: b_bnds orog: orog -!---------------------------------- -! -!============ -axis_entry: height2m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 10.0 -stored_direction: increasing -type: double -value: 2. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! -! -! *************************************************************** -! -! Vertical coordinate formula terms: -! -! *************************************************************** -!============ -variable_entry: lead_time -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: forecast_period -units: hours -!axis: T ! X, Y, Z, T (default: undeclared) -long_name: Time elapsed since the start of the forecast -!bounds: time_bnd -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: time -out_name: lead_time -type: double -!must_have_bounds: yes -!---------------------------------- -! -!============ -variable_entry: psl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_measures: area: areacella -long_name: Sea Level Pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time1 -out_name: psl -type: real -valid_min: 92500.0 -valid_max: 113000.0 -!---------------------------------- -! - -!============ -variable_entry: orog -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -comment: height above the geoid; as defined here, ""the geoid"" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Report here the height above the present-day geoid. Over ocean, report as 0.0 -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: orog -type: real -valid_min: -700 -valid_max: 1.00E+04 -!---------------------------------- -! -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: tas -type: real -valid_min: 180.6 -valid_max: 335.1 -ok_min_mean_abs: 262.4 -ok_max_mean_abs: 293 -!---------------------------------- -! - diff --git a/TestTables/SPECS_Amon b/TestTables/SPECS_Amon deleted file mode 100644 index b7931c8a05f66d035072ae8093b14ec7d8f9718b..0000000000000000000000000000000000000000 --- a/TestTables/SPECS_Amon +++ /dev/null @@ -1,1428 +0,0 @@ -table_id: Table Amon -modeling_realm: atmos - -frequency: mon - -cmor_version: 2.6 ! minimum version of CMOR that can read this table -cf_version: 1.6 ! version of CF that output conforms to -project_id: SPECS ! project id -table_date: 26 July 2011 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip contact ! space separated required global attribute - -forcings: ???? - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'historical' 'historicalXXXX' -expt_id_ok: 'soilMoistureClimInit' 'soil_moisture clim_init' -expt_id_ok: 'soilMoistureBestInit' 'soil_moisture best_init' -expt_id_ok: 'seaIceClimInit' 'seaice clim_init' -expt_id_ok: 'seaIceBestInit' 'seaice best_init' -expt_id_ok: 'horizlResImpact' 'horizlres impact' -expt_id_ok: 'standardStratVertRes' 'standard_strat vert_res' -expt_id_ok: 'improvedStratVertRes' 'improved_strat vert_res' -expt_id_ok: 'snowBestInit' 'snow best init' -expt_id_ok: 'snowClimInit' 'snow clim init' -expt_id_ok: 'interactivePhenology' 'interactive phenology' -expt_id_ok: 'fixedPhenology' 'fixed phenology' -expt_id_ok: 'aerosolImproved' 'aerosol improved' -expt_id_ok: 'aerosolsStandard' 'aerosol standard' -expt_id_ok: 'obsSolarIrradiance' 'obs solar irradiance' -expt_id_ok: 'constSolarIrradiance' 'const solar irradiance' - - - -approx_interval: 30.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -generic_levels: ???? - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: plevs -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -tolerance: 0.001 -type: double -requested: 100000. 92500. 85000. 70000. 60000. 50000. 40000. 30000. 25000. 20000. 15000. 10000. 7000. 5000. 3000. 2000. ! space-separated list of requested coordinates -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time2 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -climatology: yes -!---------------------------------- -! - - -!============ -axis_entry: height2m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 10.0 -stored_direction: increasing -type: double -value: 2. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: height10m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 30.0 -stored_direction: increasing -type: double -value: 10. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - -!============ -axis_entry: smooth_level -!============ -! -! This coordinate is a hybrid height coordinate with units of meters (m). -! It increases upward. -! The values of a(k)*ztop, which appear in the formula below, should be stored as smooth_level. -! Note that in the netCDF file the variable will be named "lev", not smooth_level. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sleve_coordinate -units: m -axis: Z -positive: up -long_name: atmosphere smooth level vertical (SLEVE) coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: -200. -valid_max: 800000. -formula: z = a*ztop + b1*zsurf1 + b2*zsurf2 -z_factors: a: a b1: b1 b2: b2 ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -z_bounds_factors: a: a_bnds b1: b1_bnds b2: b2_bnds ztop: ztop zsurf1: zsurf1 zsurf2: zsurf2 -!---------------------------------- -! -!============ -axis_entry: natural_log_pressure -!============ -! -!This coordinate is dimensionless and varies from near 0 at the surface and increases upward. -! The values of lev(k), which appears in the formula below, should be stored as natural_log_pressure. -! Note that in the netCDF file the variable will be named "lev", not natural_log_pressure. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_ln_pressure_coordinate -axis: Z -long_name: atmosphere natural log pressure coordinate -positive: down -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 20. -formula: p = p0 * exp(-lev) -z_factors: p0: p0 lev: lev -z_bounds_factors: p0: p0 lev: lev_bnds -!---------------------------------- -! -!============ -axis_entry: standard_sigma -!============ -! -! This coordinate is dimensionless and varies from 0 at the model top to 1.0 at the surface. -! The values of sigma(k), which appears in the formula below, should be stored as standard_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_sigma_coordinate -axis: Z -positive: down -long_name: sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p = ptop + sigma*(ps - ptop) -z_factors: ptop: ptop sigma: lev ps: ps -z_bounds_factors: ptop: ptop sigma: lev_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: standard_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of a+ b, which appear in the formula below, should be stored as standard_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not standard_hybrid_sigma. -! -!--------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p = a*p0 + b*ps -z_factors: p0: p0 a: a b: b ps: ps -z_bounds_factors: p0: p0 a: a_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: alternate_hybrid_sigma -!============ -! -! This coordinate is dimensionless and varies from a small value at the model top to 1.0 at the surface. -! The values of ap/p0 + b, which appear in the formula below, should be stored as alternate_hybrid_sigma. -! Note that in the netCDF file the variable will be named "lev", not alternate_hybrid_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_sigma_pressure_coordinate -units: 1 -axis: Z -positive: down -long_name: hybrid sigma pressure coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: 0.0 -valid_max: 1.0 -formula: p = ap + b*ps -z_factors: ap: ap b: b ps: ps -z_bounds_factors: ap: ap_bnds b: b_bnds ps: ps -!---------------------------------- -! -! -!============ -axis_entry: hybrid_height -!============ -! -! This coordinate has dimension of meters (m) and increases upward. -! The values of a which appear in the formula below, should be stored as hybrid_height. -! Note that in the netCDF file the variable will be named "lev", not hybrid_height. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: atmosphere_hybrid_height_coordinate -units: m -axis: Z -positive: up -long_name: hybrid height coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0.0 -formula: z = a + b*orog -z_factors: a: lev b: b orog: orog -z_bounds_factors: a: lev_bnds b: b_bnds orog: orog -!---------------------------------- -! -! *************************************************************** -! -! Vertical coordinate formula terms: -! -! *************************************************************** -! -! -!============ -variable_entry: lead_time -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: forecast_period -units: hours -!axis: T ! X, Y, Z, T (default: undeclared) -long_name: Time elapsed since the start of the forecast -!bounds: time_bnd -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: time -out_name: lead_time -!stored_direction: increasing -type: double -!must_have_bounds: yes -!---------------------------------- -! - -!============ -variable_entry: orog -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -long_name: Surface Altitude -comment: height above the geoid; as defined here, ""the geoid"" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Report here the height above the present-day geoid. Over ocean, report as 0.0 -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude -out_name: orog -type: real -valid_min: -700 -valid_max: 1.00E+04 -!---------------------------------- -! -! -!============ -variable_entry: p0 -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: reference pressure -units: Pa -shuffle: 1 -deflate: 1 -deflate_level: 6 -!---------------------------------- -! -! -!============ -variable_entry: ptop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: pressure at top of model -units: Pa -shuffle: 1 -deflate: 1 -deflate_level: 6 -!---------------------------------- -! -! -! -!============ -variable_entry: a -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -shuffle: 1 -deflate: 1 -deflate_level: 6 -!---------------------------------- -! -! -!============ -variable_entry: b -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -shuffle: 1 -deflate: 1 -deflate_level: 6 -!---------------------------------- -! -! -!============ -variable_entry: a_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: a(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -shuffle: 1 -deflate: 1 -deflate_level: 6 -!---------------------------------- -! -! -!============ -variable_entry: b_bnds -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: b(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -shuffle: 1 -deflate: 1 -deflate_level: 6 -!---------------------------------- -! -! -!============ -variable_entry: ap -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k) -units: Pa -!---------------------------------- -! -! Additional variable information: -dimensions: alevel -type: double -shuffle: 1 -deflate: 1 -deflate_level: 6 -!---------------------------------- -! -! -!============ -variable_entry: ap_bnds -!============ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: ap(k+1/2) -units: Pa -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: alevel -type: double -shuffle: 1 -deflate: 1 -deflate_level: 6 -!---------------------------------- -! -! -!============ -variable_entry: ztop -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: height of top of model -units: m -shuffle: 1 -deflate: 1 -deflate_level: 6 -!---------------------------------- -! -! -! - -!============ -variable_entry: tas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: tas -type: real -valid_min: 180.6 -valid_max: 335.1 -ok_min_mean_abs: 262.4 -ok_max_mean_abs: 293 -!---------------------------------- -! - -!============ -variable_entry: ts -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Temperature -comment: ""skin"" temperature (i.e., SST for open ocean) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: ts -type: real -valid_min: 176.8 -valid_max: 339.6 -ok_min_mean_abs: 262.8 -ok_max_mean_abs: 293.3 -!---------------------------------- -! - -!============ -variable_entry: tasmin -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: minimum within days time: mean over days -cell_measures: area: areacella -long_name: Daily Minimum Air Temperature -comment: monthly mean of the daily-minimum near-surface air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: tasmin -type: real -valid_min: 182.8 -valid_max: 323 -ok_min_mean_abs: 260.9 -ok_max_mean_abs: 290.6 -!---------------------------------- -! - -!============ -variable_entry: tasmax -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: maximum within days time: mean over days -cell_measures: area: areacella -long_name: Daily Maximum Air Temperature -comment: monthly mean of the daily-maximum near-surface air temperature. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: tasmax -type: real -valid_min: 181.9 -valid_max: 341.9 -ok_min_mean_abs: 264.9 -ok_max_mean_abs: 294 -!---------------------------------- -! - -!============ -variable_entry: psl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -cell_measures: area: areacella -long_name: Sea level pressure -comment: not, in general, the same as surface pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: psl -type: real -valid_min: 9.122e+04 -valid_max: 1.137e+05 -ok_min_mean_abs: 9.57e+04 -ok_max_mean_abs: 1.063e+05 -!---------------------------------- -! -!============ -variable_entry: ps -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_air_pressure -shuffle: 1 -deflate: 1 -deflate_level: 6 -units: Pa -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Air Pressure -comment: not, in general, the same as mean sea-level pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ps -type: real -valid_min: 4.791e+04 -valid_max: 1.119e+05 -ok_min_mean_abs: 9.165e+04 -ok_max_mean_abs: 1.019e+05 -!---------------------------------- -! - -!============ -variable_entry: uas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Eastward near-surface wind velocity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: uas -type: real -valid_min: -19.01 -valid_max: 18.68 -ok_min_mean_abs: 1.668 -ok_max_mean_abs: 4.106 -!---------------------------------- -! - -!============ -variable_entry: vas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Northward near-surface wind velocity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height10m -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: vas -type: real -valid_min: -18.04 -valid_max: 22.84 -ok_min_mean_abs: 1.065 -ok_max_mean_abs: 2.678 -!---------------------------------- -! - -!============ -variable_entry: tauu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_eastward_stress -units: Pa -cell_methods: time: mean -long_name: Surface downward eastward wind stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: tauu -type: real -positive: down -valid_min: -2.729 -valid_max: 2.934 -ok_min_mean_abs: 0.03979 -ok_max_mean_abs: 0.1065 -!---------------------------------- -! - -!============ -variable_entry: tauv -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_northward_stress -units: Pa -cell_methods: time: mean -long_name: Surface Downward Northward Wind Stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: tauv -type: real -positive: down -valid_min: -2.472 -valid_max: 2.527 -ok_min_mean_abs: 0.01447 -ok_max_mean_abs: 0.08134 -!---------------------------------- -! -!============ -variable_entry: pr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Precipitation -comment: at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: pr -type: real -valid_min: 0 -valid_max: 0.001254 -ok_min_mean_abs: 2.156e-05 -ok_max_mean_abs: 3.215e-05 -!---------------------------------- -! - -!============ -variable_entry: rsdt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_incoming_shortwave_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA incident shortwave radiation -comment: at the top of the atmosphere -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: rsdt -type: real -positive: down -valid_min: 0 -valid_max: 580.4 -ok_min_mean_abs: 282.6 -ok_max_mean_abs: 315.8 -!---------------------------------- -! -!============ -variable_entry: rsds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface downwelling shortwave radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: rsds -type: real -positive: down -valid_min: -0.002946 -valid_max: 524.4 -ok_min_mean_abs: 143.9 -ok_max_mean_abs: 181.6 -!---------------------------------- -! -!============ -variable_entry: rls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_net_downward_longwave_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Net longwave surface radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: rls -type: real -!---------------------------------- -! - -!============ -variable_entry: hfls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface upward latent heat flux -comment: includes both evaporation and sublimation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: hfls -type: real -positive: up -valid_min: -76.77 -valid_max: 790.7 -ok_min_mean_abs: 50.39 -ok_max_mean_abs: 73.2 -!---------------------------------- -! -!============ -variable_entry: rss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_net_downward_shortwave_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Net sw surface radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: rss -! -!============ -variable_entry: evspsbl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Evaporation -comment: at surface; flux of water into the atmosphere due to conversion of both liquid and solid phases to vapor (from underlying surface and vegetation) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: evspsbl -type: real -!---------------------------------- -! - -!============ -variable_entry: hfss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface upward sensible heat flux -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: hfss -type: real -positive: up -valid_min: -264.5 -valid_max: 844.8 -ok_min_mean_abs: 10.7 -ok_max_mean_abs: 34.84 -!---------------------------------- -! - -!============ -variable_entry: rlds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: rlds -type: real -positive: down -valid_min: 30.71 -valid_max: 520.5 -ok_min_mean_abs: 271.2 -ok_max_mean_abs: 323.6 -!---------------------------------- -! - -!============ -variable_entry: rlut -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA Outgoing Longwave Radiation -comment: at the top of the atmosphere (to be compared with satellite measurements) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: rlut -type: real -positive: up -valid_min: 67.48 -valid_max: 383.2 -ok_min_mean_abs: 207.4 -ok_max_mean_abs: 234.4 -!---------------------------------- -! - -!============ -variable_entry: clt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total cloud fraction -comment: for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: clt -type: real -valid_min: -0.0001822 -valid_max: 105 -ok_min_mean_abs: 39.37 -ok_max_mean_abs: 84.98 -!---------------------------------- -! - -!============ -variable_entry: ta -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: ta -type: real -valid_min: 157.1 -valid_max: 336.3 -ok_min_mean_abs: 194.3 -ok_max_mean_abs: 299.8 -!---------------------------------- -! - -!============ -variable_entry: ua -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Eastward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: ua -type: real -valid_min: -68.65 -valid_max: 136.6 -ok_min_mean_abs: 1.101 -ok_max_mean_abs: 22.42 -!---------------------------------- -! - -!============ -variable_entry: va -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Northward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: va -type: real -valid_min: -71.1 -valid_max: 69.93 -ok_min_mean_abs: 0.9886 -ok_max_mean_abs: 4.679 -!---------------------------------- -! - -!============ -variable_entry: hus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: specific_humidity -units: 1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Specific Humidity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: hus -type: real -valid_min: -0.000299 -valid_max: 0.02841 -ok_min_mean_abs: -0.0003539 -ok_max_mean_abs: 0.01041 -!---------------------------------- -! - -variable_entry: zg -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: geopotential_height -units: m -cell_methods: time: mean -cell_measures: area: areacella -long_name: Geopotential Height -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plevs time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: zg -type: real -valid_min: -719.7 -valid_max: 3.437e+04 -ok_min_mean_abs: -113.4 -ok_max_mean_abs: 3.299e+04 -!---------------------------------- -! - -!============ -variable_entry: prsn -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: snowfall_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Snowfall flux -comment: at surface; includes precipitation of all forms of water in the solid phase -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: prsn -type: real -valid_min: 0 -ok_min_mean_abs: 1.449e-06 -ok_max_mean_abs: 6.11e-06 -!---------------------------------- -! -!============ -variable_entry: evlwr -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: lwe_water evaporation rate -units: m s-1 -long_name: evaporation -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: evaporation -type: double -!--------------------------------- -! -!============ -variable_entry: snld -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: lwe_thickness_of_surface_snow_amount -units: m -long_name: snow depth -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: snow depth -type: double -!--------------------------------- -! -!============ -variable_entry: tdps -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: dew_point_temperature -units: K -long_name: 2m dewpoint temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: 2m dewpoint temperature -type: double -!--------------------------------- diff --git a/TestTables/SPECS_Lmon b/TestTables/SPECS_Lmon deleted file mode 100644 index b132c0a31b18ab00fe48dec80b15cef3ce1dd608..0000000000000000000000000000000000000000 --- a/TestTables/SPECS_Lmon +++ /dev/null @@ -1,1637 +0,0 @@ -table_id: Table Lmon -modeling_realm: land - -frequency: mon - -cmor_version: 2.6 ! minimum version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: SPECS ! project id -table_date: 26 July 2011 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/SPECS/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip contact ! space separated required global attribute - -forcings: ???? - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'historical' 'historicalXXXX' -expt_id_ok: 'soilMoistureClimInit' 'soil_moisture clim_init' -expt_id_ok: 'soilMoistureBestInit' 'soil_moisture best_init' -expt_id_ok: 'seaIceClimInit' 'seaice clim_init' -expt_id_ok: 'seaIceBestInit' 'seaice best_init' -expt_id_ok: 'horizlResImpact' 'horizlres impact' -expt_id_ok: 'standardStratVertRes' 'standard_strat vert_res' -expt_id_ok: 'improvedStratVertRes' 'improved_strat vert_res' -expt_id_ok: 'snowBestInit' 'snow best init' -expt_id_ok: 'snowClimInit' 'snow clim init' -expt_id_ok: 'interactivePhenology' 'interactive phenology' -expt_id_ok: 'fixedPhenology' 'fixed phenology' -expt_id_ok: 'aerosolImproved' 'aerosol improved' -expt_id_ok: 'aerosolsStandard' 'aerosol standard' -expt_id_ok: 'obsSolarIrradiance' 'obs solar irradiance' -expt_id_ok: 'constSolarIrradiance' 'const solar irradiance' - - - -approx_interval: 30.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: time -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: time -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: sdepth -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: depth -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 200.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: sdepth1 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: depth -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 0.2 -stored_direction: increasing -type: double -value: 0.05 ! of scalar (singleton) dimension -bounds_values: 0.0 0.1 ! of scalar (singleton) dimension bounds -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: vegtype -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -long_name: plant functional type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typebare -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: bare_ground ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typepdec -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: primary_deciduous_trees ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typepever -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: primary_evergreen_trees ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typesdec -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: secondary_decidous_trees ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typesever -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: secondary_evergreen_trees ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typec3pft -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: c3_plant_functional_types ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - - -!============ -axis_entry: typec4pft -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: area_type -long_name: surface type -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: type -type: character -value: c4_plant_functional_types ! of scalar (singleton) dimension -must_have_bounds: no -coords_attrib: type_description -!---------------------------------- -! - -!============ -variable_entry: mrsos -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: moisture_content_of_soil_layer -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Moisture in Upper Portion of Soil Column -comment: the mass of water in all phases in a thin surface soil layer. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time sdepth1 -out_name: mrsos -type: real -valid_min: -2.008 -valid_max: 146.5 -ok_min_mean_abs: -35.89 -ok_max_mean_abs: 123.3 -!---------------------------------- -! - -!============ -variable_entry: mrso -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: soil_moisture_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Total soil moisture content -comment: the mass per unit area (summed over all soil layers) of water in all phases. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: mrso -type: real -valid_min: -64.17 -valid_max: 5717 -ok_min_mean_abs: -1424 -ok_max_mean_abs: 3038 -!---------------------------------- -! - -!============ -variable_entry: mrfso -!============ -modeling_realm: land landIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: soil_frozen_water_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Soil Frozen Water Content -comment: the mass (summed over all all layers) of frozen water. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: mrfso -type: real -valid_min: 0 -valid_max: 5763 -ok_min_mean_abs: -419 -ok_max_mean_abs: 940.3 -!---------------------------------- -! - -!============ -variable_entry: mrros -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_runoff_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Surface Runoff -comment: the total surface runoff leaving the land portion of the grid cell. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: mrros -type: real -valid_min: -6.802e-06 -valid_max: 0.0009825 -ok_min_mean_abs: -5.867e-06 -ok_max_mean_abs: 1.302e-05 -!---------------------------------- -! - -!============ -variable_entry: mrro -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: runoff_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Total Runoff -comment: "the total runoff (including ""drainage"" through the base of the soil model) leaving the land portion of the grid cell." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: mrro -type: real -valid_min: -0.0002019 -valid_max: 0.001065 -ok_min_mean_abs: -6.668e-06 -ok_max_mean_abs: 1.874e-05 -!---------------------------------- -! - -!============ -variable_entry: prveg -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux_onto_canopy -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Precipitation onto Canopy -comment: the precipitation flux that is intercepted by the vegetation canopy (if present in model) before reaching the ground. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prveg -type: real -!---------------------------------- -! - -!============ -variable_entry: evspsblveg -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux_from_canopy -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Evaporation from Canopy -comment: the canopy evaporation+sublimation (if present in model). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: evspsblveg -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: evspsblsoi -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: water_evaporation_flux_from_soil -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Water Evaporation from Soil -comment: includes sublimation. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: evspsblsoi -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: tran -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: transpiration_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Transpiration -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: tran -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: mrlsl -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: moisture_content_of_soil_layer -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Water Content of Soil Layer -comment: in each soil layer, the mass of water in all phases, including ice. Reported as ""missing"" for grid cells occupied entirely by ""sea"" -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude sdepth time -out_name: mrlsl -type: real -!---------------------------------- -! - -!============ -variable_entry: tsl -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: soil_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Temperature of Soil -comment: "Temperature of each soil layer. Reported as ""missing"" for grid cells occupied entirely by ""sea""." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude sdepth time -out_name: tsl -type: real -!---------------------------------- -! - -!============ -variable_entry: treeFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Tree Cover Fraction -comment: fraction of entire grid cell that is covered by trees. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: treeFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: grassFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Natural Grass Fraction -comment: fraction of entire grid cell that is covered by natural grass. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: grassFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: shrubFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Shrub Fraction -comment: fraction of entire grid cell that is covered by shrub. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: shrubFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: cropFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Crop Fraction -comment: fraction of entire grid cell that is covered by crop. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cropFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: pastureFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Anthropogenic Pasture Fraction -comment: fraction of entire grid cell that is covered by anthropogenic pasture. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: pastureFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: baresoilFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Bare Soil Fraction -comment: fraction of entire grid cell that is covered by bare soil. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typebare -out_name: baresoilFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: residualFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Fraction of Grid Cell that is Land but Neither Vegetation-Covered nor Bare Soil -comment: fraction of entire grid cell that is land and is covered by ""non-vegetation"" and ""non-bare-soil"" (e.g., urban, ice, lakes, etc.) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: residualFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: burntArea -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Burnt Area Fraction -comment: fraction of entire grid cell that is covered by burnt vegetation. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: burntArea -type: real -!---------------------------------- -! - -!============ -variable_entry: cVeg -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: vegetation_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Vegetation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cVeg -type: real -!---------------------------------- -! - -!============ -variable_entry: cLitter -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: litter_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Litter Pool -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cLitter -type: real -!---------------------------------- -! - -!============ -variable_entry: cSoil -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: soil_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Soil Pool -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cSoil -type: real -!---------------------------------- -! - -!============ -variable_entry: cProduct -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: carbon_content_of_products_of_anthropogenic_land_use_change -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Products of Land Use Change -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cProduct -type: real -!---------------------------------- -! - -!============ -variable_entry: lai -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: leaf_area_index -units: 1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Leaf Area Index -comment: a ratio obtained by dividing the total upper leaf surface area of vegetation by the (horizontal) surface area of the land on which it grows. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: lai -type: real -!---------------------------------- -! - -!============ -variable_entry: gpp -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: gross_primary_productivity_of_carbon -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux out of Atmosphere due to Gross Primary Production on Land -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: gpp -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: ra -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: plant_respiration_carbon_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to Autotrophic (Plant) Respiration on Land -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: ra -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: npp -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_productivity_of_carbon -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux out of Atmosphere due to Net Primary Production on Land -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: npp -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rh -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: heterotrophic_respiration_carbon_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to Heterotrophic Respiration on Land -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rh -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fFire -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires_excluding_anthropogenic_land_use_change -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to CO2 Emission from Fire -comment: CO2 emissions (expressed as a carbon mass flux) from natural fires + human ignition fires as calculated by the fire module of the DGVM, but excluding any CO2 flux from fire included in fLuc, defined below (CO2 Flux to Atmosphere from Land Use Change). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fFire -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fGrazing -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_grazing -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to Grazing on Land -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fGrazing -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fHarvest -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_crop_harvesting -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to Crop Harvesting -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fHarvest -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: fLuc -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_net_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_anthropogenic_land_use_change -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Net Carbon Mass Flux into Atmosphere due to Land Use Change -comment: human changes to land (excluding forest regrowth) accounting possibly for different time-scales related to fate of the wood, for example. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fLuc -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: nbp -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux out of Atmosphere due to Net Biospheric Production on Land -comment: This is the net mass flux of carbon between land and atmosphere calculated as photosynthesis MINUS the sum of plant and soil respiration, carbonfluxes from fire, harvest, grazing and land use change. Positive flux is into the land. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: nbp -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: fVegLitter -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: litter_carbon_flux -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Total Carbon Mass Flux from Vegetation to Litter -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fVegLitter -type: real -!---------------------------------- -! - -!============ -variable_entry: fLitterSoil -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: carbon_mass_flux_into_soil_from_litter -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Total Carbon Mass Flux from Litter to Soil -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fLitterSoil -type: real -!---------------------------------- -! - -!============ -variable_entry: fVegSoil -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: carbon_mass_flux_into_soil_from_vegetation_excluding_litter -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Total Carbon Mass Flux from Vegetation Directly to Soil -comment: In some models part of carbon (e.g., root exudate) can go directly into the soil pool without entering litter. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: fVegSoil -type: real -!---------------------------------- -! - -!============ -variable_entry: cLeaf -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: leaf_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Leaves -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cLeaf -type: real -!---------------------------------- -! - -!============ -variable_entry: cWood -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: wood_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Wood -comment: including sapwood and hardwood. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cWood -type: real -!---------------------------------- -! - -!============ -variable_entry: cRoot -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: root_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Roots -comment: including fine and coarse roots. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cRoot -type: real -!---------------------------------- -! - -!============ -variable_entry: cMisc -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: miscellaneous_living_matter_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Other Living Compartments on Land -comment: e.g., labile, fruits, reserves, etc. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cMisc -type: real -!---------------------------------- -! - -!============ -variable_entry: cCwd -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: wood_debris_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Coarse Woody Debris -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cCwd -type: real -!---------------------------------- -! - -!============ -variable_entry: cLitterAbove -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_litter_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Above-Ground Litter -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cLitterAbove -type: real -!---------------------------------- -! - -!============ -variable_entry: cLitterBelow -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: subsurface_litter_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Below-Ground Litter -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cLitterBelow -type: real -!---------------------------------- -! - -!============ -variable_entry: cSoilFast -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: fast_soil_pool_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Fast Soil Pool -comment: fast is meant as lifetime of less than 10 years for reference climate conditions (20 C, no water limitations). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cSoilFast -type: real -!---------------------------------- -! - -!============ -variable_entry: cSoilMedium -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: medium_soil_pool_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Medium Soil Pool -comment: medium is meant as lifetime of more than than 10 years and less than 100 years for reference climate conditions (20 C, no water limitations) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cSoilMedium -type: real -!---------------------------------- -! - -!============ -variable_entry: cSoilSlow -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: slow_soil_pool_carbon_content -units: kg m-2 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass in Slow Soil Pool -comment: fast is meant as lifetime of more than 100 years for reference climate conditions (20 C, no water limitations) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: cSoilSlow -type: real -!---------------------------------- -! - -!============ -variable_entry: landCoverFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Plant Functional Type Grid Fraction -comment: The categories may differ from model to model, depending on their PFT definitions. This may include natural PFTs, anthropogenic PFTs, bare soil, lakes, urban areas, etc. Sum of all should equal the fraction of the grid-cell that is land. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude vegtype time -out_name: landCoverFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: treeFracPrimDec -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total Primary Deciduous Tree Fraction -comment: "This is the fraction of the entire grid cell that is covered by ""total primary deciduous trees.""" -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typepdec -out_name: treeFracPrimDec -type: real -!---------------------------------- -! - -!============ -variable_entry: treeFracPrimEver -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total Primary Evergreen Tree Cover Fraction -comment: fraction of entire grid cell that is covered by primary evergreen trees. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typepever -out_name: treeFracPrimEver -type: real -!---------------------------------- -! - -!============ -variable_entry: treeFracSecDec -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total Secondary Deciduous Tree Cover Fraction -comment: fraction of entire grid cell that is covered by secondary deciduous trees. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typesdec -out_name: treeFracSecDec -type: real -!---------------------------------- -! - -!============ -variable_entry: treeFracSecEver -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total Secondary Evergreen Tree Cover Fraction -comment: fraction of entire grid cell that is covered by secondary evergreen trees. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typesever -out_name: treeFracSecEver -type: real -!---------------------------------- -! - -!============ -variable_entry: c3PftFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total C3 PFT Cover Fraction -comment: fraction of entire grid cell that is covered by C3 PFTs (including grass, crops, and trees). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typec3pft -out_name: c3PftFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: c4PftFrac -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total C4 PFT Cover Fraction -comment: fraction of entire grid cell that is covered by C4 PFTs (including grass and crops). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time typec4pft -out_name: c4PftFrac -type: real -!---------------------------------- -! - -!============ -variable_entry: rGrowth -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_carbon_mass_flux_due_to_plant_respiration_for_biomass_growth -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to Growth Autotrophic Respiration on Land -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rGrowth -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rMaint -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_carbon_mass_flux_due_to_plant_respiration_for_biomass_maintenance -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux into Atmosphere due to Maintenance Autotrophic Respiration on Land -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: rMaint -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: nppLeaf -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_productivity_of_carbon_accumulated_in_leaves -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux due to NPP Allocation to Leaf -comment: This is the rate of carbon uptake by leaves due to NPP -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: nppLeaf -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: nppWood -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_productivity_of_carbon_accumulated_in_wood -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux due to NPP Allocation to Wood -comment: This is the rate of carbon uptake by wood due to NPP -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: nppWood -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: nppRoot -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: net_primary_productivity_of_carbon_accumulated_in_roots -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Carbon Mass Flux due to NPP Allocation to Roots -comment: This is the rate of carbon uptake by roots due to NPP -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: nppRoot -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: nep -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_net_downward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_all_land_processes_excluding_anthropogenic_land_use_change -units: kg m-2 s-1 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Net Carbon Mass Flux out of Atmophere due to Net Ecosystem Productivity on Land. -comment: Natural flux of CO2 (expressed as a mass flux of carbon) from the atmosphere to the land calculated as the difference between uptake associated will photosynthesis and the release of CO2 from the sum of plant and soil respiration and fire. Positive flux is into the land. emissions from natural fires + human ignition fires as calculated by the fire module of the DGVM, but excluding any CO2 flux from fire included in fLuc, defined below (CO2 Flux to Atmosphere from Land Use Change). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: nep -type: real -positive: down -!---------------------------------- -! - diff --git a/TestTables/SPECS_OImon b/TestTables/SPECS_OImon deleted file mode 100644 index d327d4d83578443f7d976a0d75a2636760f30e0c..0000000000000000000000000000000000000000 --- a/TestTables/SPECS_OImon +++ /dev/null @@ -1,586 +0,0 @@ -table_id: Table OImon -modeling_realm: ocean - -frequency: mon - -cmor_version: 2.6 ! minimum version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: SPECS ! project id -table_date: December2013 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip contact ! space separated required global attribute - -forcings: N/A - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'historical' 'historicalXXXX' -expt_id_ok: 'soilMoistureClimInit' 'soil_moisture clim_init' -expt_id_ok: 'soilMoistureBestInit' 'soil_moisture best_init' -expt_id_ok: 'seaIceClimInit' 'seaice clim_init' -expt_id_ok: 'seaIceBestInit' 'seaice best_init' -expt_id_ok: 'horizlResImpact' 'horizlres impact' -expt_id_ok: 'standardStratVertRes' 'standard_strat vert_res' -expt_id_ok: 'improvedStratVertRes' 'improved_strat vert_res' -expt_id_ok: 'snowBestInit' 'snow best init' -expt_id_ok: 'snowClimInit' 'snow clim init' -expt_id_ok: 'interactivePhenology' 'interactive phenology' -expt_id_ok: 'fixedPhenology' 'fixed phenology' -expt_id_ok: 'aerosolImproved' 'aerosol improved' -expt_id_ok: 'aerosolsStandard' 'aerosol standard' -expt_id_ok: 'obsSolarIrradiance' 'obs solar irradiance' -expt_id_ok: 'constSolarIrradiance' 'const solar irradiance' - - -approx_interval: 744.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: forecast_period -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: Time elapsed since the start of the forecast -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - -!============ -axis_entry: depth_coord -!============ -! -! This vertical coordinate is used in z-coordinate models -! The units are meters (m), and it has a value of 0. at the surface -! and becomes more and more positive with depth. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z -positive: down -long_name: ocean depth coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0. -valid_max: 12000. -!---------------------------------- -! - -!============ -variable_entry: lead_time -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: forecast_period -units: hours since ? -!axis: T ! X, Y, Z, T (default: undeclared) -long_name: Time elapsed since the start of the forecast -!bounds: time_bnd -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: time -out_name: lead_time -!stored_direction: increasing -type: double -!must_have_bounds: yes -!---------------------------------- -! - -!============ -variable_entry: sic -!============ -modeling_realm: seaIce ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_ice_area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacello -long_name: Sea ice area fraction -comment: fraction of grid cell covered by sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: sic -type: real -valid_min: -0.000225 -valid_max: 166.1 -ok_min_mean_abs: -13.33 -ok_max_mean_abs: 36.65 -!---------------------------------- -! - -!============ -variable_entry: sit -!============ -modeling_realm: seaIce ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_ice_thickness -units: m -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Sea ice thickness -comment: the mean thickness of sea ice in the ocean portion of the grid cell (averaging over the entire ocean portion, including the ice-free fraction). Reported as 0.0 in regions free of sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: sit -type: real -valid_min: -0.006698 -valid_max: 104.4 -ok_min_mean_abs: -0.9217 -ok_max_mean_abs: 2.582 -!---------------------------------- -! - -!============ -variable_entry: snd -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_snow_thickness -units: m -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Snow Depth -comment: the mean thickness of snow in the ocean portion of the grid cell (averaging over the entire ocean portion, including the snow-free ocean fraction). Reported as 0.0 in regions free of snow-covered sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: snd -type: real -!---------------------------------- -! - -!============ -variable_entry: tsice -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: mean (weighted by area of sea ice) -cell_measures: area: areacello -long_name: Surface Temperature of Sea Ice -comment: When computing the time-mean here, the time-samples, weighted by the area of sea ice in the grid cell, are accumulated and then divided by the sum of the weights. Reported as ""missing"" in regions free of sea ice. Note this will be the surface snow temperature in regions where snow covers the sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: tsice -type: real -!---------------------------------- -! - -!============ -variable_entry: transiy -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_ice_y_transport -units: kg s-1 -cell_methods: time: mean -long_name: Y-Component of Sea Ice Mass Transport -comment: The sea ice mass transport is 0.0 in ice-free regions of the ocean. Snow is included in calculation of mass. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: transiy -type: real -!---------------------------------- -! - -!============ -variable_entry: transifs -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_ice_transport_across_line -units: kg s-1 -cell_methods: time: mean -long_name: Sea Ice Mass Transport Through Fram Strait -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: time -out_name: transifs -type: real -!---------------------------------- -! - -!============ -variable_entry: strairx -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_x_stress -units: N m-2 -cell_methods: time: mean (weighted by area of sea ice) -long_name: X-Component of Atmospheric Stress On Sea Ice -comment: When computing the time-mean here, the time samples, weighted by the area of sea ice, are accumulated and then divided by the sum of the weights. Reported as ""missing"" in regions free of sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: strairx -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: strairy -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_y_stress -units: N m-2 -cell_methods: time: mean (weighted by area of sea ice) -long_name: Y-Component of Atmospheric Stress On Sea Ice -comment: When computing the time-mean here, the time samples, weighted by the area of sea ice, are accumulated and then divided by the sum of the weights. Reported as ""missing"" in regions free of sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: strairy -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: strocnx -!============ -modeling_realm: seaIce ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upward_x_stress_at_sea_ice_base -units: N m-2 -cell_methods: time: mean (weighted by area of sea ice) -long_name: X-Component of Ocean Stress On Sea Ice -comment: When computing the time-mean here, the time samples, weighted by the area of sea ice, are accumulated and then divided by the sum of the weights. Report as ""missing"" in regions free of sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: strocnx -type: real -!---------------------------------- -! - -!============ -variable_entry: strocny -!============ -modeling_realm: seaIce ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upward_y_stress_at_sea_ice_base -units: N m-2 -cell_methods: time: mean (weighted by area of sea ice) -long_name: Y-Component of Ocean Stress On Sea Ice -comment: When computing the time-mean here, the time samples, weighted by the area of sea ice, are accumulated and then divided by the sum of the weights. Reported as ""missing"" in regions free of sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: strocny -type: real -!---------------------------------- -! - -!============ -variable_entry: streng -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: compressive_strength_of_sea_ice -units: N m-1 -cell_methods: time: mean (weighted by area of sea ice) -cell_measures: area: areacello -long_name: Compressive Sea Ice Strength -comment: When computing the time-mean here, the time samples, weighted by the area of sea ice, are accumulated and then divided by the sum of the weights. Reported as ""missing"" in regions free of sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: streng -type: real -!---------------------------------- -! - -!============ -variable_entry: divice -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: divergence_of_sea_ice velocity -units: s-1 -cell_methods: time: mean (weighted by area of sea ice) -cell_measures: area: areacello -long_name: Strain Rate Divergence of Sea Ice -comment: When computing the time-mean here, the time samples, weighted by the area of sea ice, are accumulated and then divided by the sum of the weights. Reported as ""missing"" in regions free of sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: divice -type: real -!---------------------------------- -! - -!============ -variable_entry: eshrice -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_derivative_of_northward_sea_ice_velocity -units: s-1 -cell_methods: time: mean (weighted by area of sea ice) -cell_measures: area: areacello -long_name: Eastward Derivative of Northward Sea Ice Velocity -comment: When computing the time-mean here, the time samples, weighted by the area of sea ice, are accumulated and then divided by the sum of the weights. Reported as ""missing"" in regions free of sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: eshrice -type: real -!---------------------------------- -! - -!============ -variable_entry: nshrice -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_derivative_of_eastward_sea_ice_velocity -units: s-1 -cell_methods: time: mean (weighted by area of sea ice) -cell_measures: area: areacello -long_name: Northward Derivative of Eastward Sea Ice Velocity -comment: When computing the time-mean here, the time samples, weighted by the area of sea ice, are accumulated and then divided by the sum of the weights. Reported as ""missing"" in regions free of sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: nshrice -type: real -!---------------------------------- -! - -!============ -variable_entry: ridgice -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: tendency_of_sea_ice_area_fraction_due_to_ridging -units: s-1 -cell_methods: time: mean (weighted by area of sea ice) -cell_measures: area: areacello -long_name: Sea Ice Ridging Rate -comment: When computing the time-mean here, the time samples, weighted by the area of sea ice, are accumulated and then divided by the sum of the weights. Reported as ""missing"" in regions free of sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: ridgice -type: real -!---------------------------------- -! - -!============ -variable_entry: usi -!============ -modeling_realm: seaIce ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_ice_x_velocity -units: m s-1 -cell_methods: time: mean -long_name: X-Component of sea ice velocity -comment: "Reported as ""missing"" in regions free of sea ice." -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: usi -type: real -!---------------------------------- -! - -!============ -variable_entry: vsi -!============ -modeling_realm: seaIce ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_ice_y_velocity -units: m s-1 -cell_methods: time: mean -long_name: Y-Component of Sea Ice Velocity -comment: "Reported as ""missing"" in regions free of sea ice." -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: vsi -type: real -!---------------------------------- -! - diff --git a/TestTables/SPECS_Omon b/TestTables/SPECS_Omon deleted file mode 100644 index 14a242a0b472efe61fd63018c14094030273cd40..0000000000000000000000000000000000000000 --- a/TestTables/SPECS_Omon +++ /dev/null @@ -1,932 +0,0 @@ -table_id: Table Omon -modeling_realm: ocean - -frequency: mon - -cmor_version: 2.6 ! minimum version of CMOR that can read this table -cf_version: 1.4 ! version of CF that output conforms to -project_id: SPECS ! project id -table_date: December2013 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip contact ! space separated required global attribute - -forcings: ????? - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'historical' 'historicalXXXX' -expt_id_ok: 'soilMoistureClimInit' 'soil_moisture clim_init' -expt_id_ok: 'soilMoistureBestInit' 'soil_moisture best_init' -expt_id_ok: 'seaIceClimInit' 'seaice clim_init' -expt_id_ok: 'seaIceBestInit' 'seaice best_init' -expt_id_ok: 'horizlResImpact' 'horizlres impact' -expt_id_ok: 'standardStratVertRes' 'standard_strat vert_res' -expt_id_ok: 'improvedStratVertRes' 'improved_strat vert_res' -expt_id_ok: 'snowBestInit' 'snow best init' -expt_id_ok: 'snowClimInit' 'snow clim init' -expt_id_ok: 'interactivePhenology' 'interactive phenology' -expt_id_ok: 'fixedPhenology' 'fixed phenology' -expt_id_ok: 'aerosolImproved' 'aerosol improved' -expt_id_ok: 'aerosolsStandard' 'aerosol standard' -expt_id_ok: 'obsSolarIrradiance' 'obs solar irradiance' -expt_id_ok: 'constSolarIrradiance' 'const solar irradiance' - -approx_interval: 744.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -generic_levels: olevel - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: forecast_period -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: Time elapsed since the start of the forecast -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - -!============ -axis_entry: basin -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: region -long_name: ocean basin -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: basin -type: character -requested: atlantic_arctic_ocean indian_pacific_ocean global_ocean ! space-separated list of requested coordinates -must_have_bounds: no -coords_attrib: region -!---------------------------------- -! - - -!============ -axis_entry: rho -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: sea_water_potential_density -units: kg m-3 -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: potential density referenced to 2000 dbar -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: rho -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: oline -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: region -long_name: ocean passage -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: line -type: character -requested: barents_opening bering_strait canadian_archipelago denmark_strait drake_passage english_channel pacific_equatorial_undercurrent faroe_scotland_channel florida_bahamas_strait fram_strait iceland_faroe_channel indonesian_throughflow mozambique_channel taiwan_luzon_straits windward_passage ! space-separated list of requested coordinates -must_have_bounds: no -coords_attrib: passage -!---------------------------------- -! - - -!============ -axis_entry: olayer100m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: depth -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 100.0 -stored_direction: increasing -type: double -value: 50. ! of scalar (singleton) dimension -bounds_values: 0. 100. ! of scalar (singleton) dimension bounds -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: depth100m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: depth -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 80.0 -valid_max: 120.0 -stored_direction: increasing -type: double -value: 100. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: depth0m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: depth -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 100.0 -stored_direction: increasing -type: double -value: 0. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - -!============ -axis_entry: depth_coord -!============ -! -! This vertical coordinate is used in z-coordinate models -! The units are meters (m), and it has a value of 0. at the surface -! and becomes more and more positive with depth. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z -positive: down -long_name: ocean depth coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0. -valid_max: 12000. -!---------------------------------- -! - - -!============ -axis_entry: olev -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: generic ocean level -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: increasing -type: double -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: ocean_double_sigma -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: ocean_double_sigma -axis: Z -positive: up -long_name: ocean double sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -formula: for k <= k_c:\n z= sigma*f \n for k > k_c:\n z= f + (sigma-1)*(depth-f) \n f= 0.5*(z1+ z2) + 0.5*(z1-z2)* tanh(2*a/(z1-z2)*(depth-href)) -z_factors: sigma: sigma depth: depth z1: z1 z2: z2 a: a_coeff href: href k_c: k_c -z_bounds_factors: sigma: sigma_bnds depth: depth z1: z1 z2: z2 a: a href: href k_c: k_c -!---------------------------------- -! - - -!============ -axis_entry: ocean_sigma_z -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: ocean_sigma_z -axis: Z -long_name: ocean sigma over z coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -formula: for k <= nsigma: z = eta + sigma*(min(depth_c,depth)+eta) ; for k > nsigma: z = zlev -z_factors: sigma: sigma eta: eta depth: depth depth_c: depth_c nsigma: nsigma zlev: zlev -z_bounds_factors: sigma: sigma_bnds eta: eta depth: depth depth_c: depth_c nsigma: nsigma zlev: zlev_bnds -!---------------------------------- -! - - -!============ -axis_entry: ocean_s -!============ -! -! This coordinate is dimensionless and varies from 0 at the surface to -1. at the ocean floor. -! The values of s, which appears in the formula below, should be stored as ocean_s. -! Note that in the netCDF file the variable will be named "lev", not ocean_s. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: ocean_s_coordinate -axis: Z -positive: up -long_name: ocean s-coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 0. -formula: z = eta*(1+s) + depth_c*s + (depth-depth_c)*C \n where \n C=(1-b)*sinh(a*s)/sinh(a) +\n b*(tanh(a*(s+0.5))/(2*tanh(0.5*a)) - 0.5) -z_factors: s: lev eta: eta depth: depth a: a_coeff b: b_coeff depth_c: depth_c -z_bounds_factors: s: lev_bnds eta: eta depth: depth a: a b: b depth_c: depth_c -!---------------------------------- -! - - -!============ -axis_entry: ocean_sigma -!============ -! -! This coordinate is dimensionless and varies from 0 at the surface to -1. at the ocean floor. -! The values of sigma, which appears in the formula below, should be stored as ocean_sigma. -! Note that in the netCDF file the variable will be named "lev", not ocean_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: ocean_sigma_coordinate -axis: Z -positive: up -long_name: ocean sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 0. -formula: z = eta + sigma*(depth+eta) -z_factors: sigma: lev eta: eta depth: depth -z_bounds_factors: sigma: lev_bnds eta: eta depth: depth -!---------------------------------- -! -! -! *************************************************************** -! -! Vertical coordinate formula_terms: -! -! *************************************************************** -! - -!============ -variable_entry: lead_time -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: forecast_period -units: hours since -!axis: T ! X, Y, Z, T (default: undeclared) -long_name: Time elapsed since the start of the forecast -!bounds: time_bnd -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: time -out_name: lead_time -!stored_direction: increasing -type: double -!must_have_bounds: yes -!---------------------------------- -! - -!============ -variable_entry: depth -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: m -long_name: Sea Floor Depth -comment: Ocean bathymetry. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude -out_name: depth -type: real -valid_min: 0. -valid_max: 12000. -ok_min_mean_abs: 2000. -ok_max_mean_abs: 5000. -!---------------------------------- -! - -!============ -variable_entry: zos -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_surface_height_above_geoid -units: m -cell_methods: time: mean -cell_measures: area: areacello -long_name: Sea surface height above geoid -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: zos -type: real -valid_min: -13.97 -valid_max: 9.575 -ok_min_mean_abs: 0.008384 -ok_max_mean_abs: 1.572 -!---------------------------------- -! - -!============ -variable_entry: thetao -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_potential_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Sea water potential temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude olevel time -out_name: thetao -type: real -valid_min: -9.37e+17 -valid_max: 1.05e+20 -ok_min_mean_abs: -9.37e+17 -ok_max_mean_abs: 1.05e+20 -!---------------------------------- -! - -!============ -variable_entry: sos -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_salinity -units: psu -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Sea Water Salinity -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude olevel time -out_name: sos -type: real -valid_min: -9.37e+17 -valid_max: 1.05e+20 -ok_min_mean_abs: -9.37e+17 -ok_max_mean_abs: 1.05e+20 -!---------------------------------- -! - -!============ -variable_entry: mlotst -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_mixed_layer_thickness_defined_by_sigma_t -units: m -cell_methods: time: mean -cell_measures: area: areacello -long_name: Ocean mixed layer thickness defined by sigma T -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: mlotst -type: real -!---------------------------------- -! - -!============ -variable_entry: mlotstsq -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: square_of_ocean_mixed_layer_thickness_defined_by_sigma_t -units: m2 -cell_methods: time: mean -cell_measures: area: areacello -long_name: Square of Ocean Mixed Layer Thickness Defined by Sigma T -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: mlotstsq -type: real -!---------------------------------- -! - -!============ -variable_entry: uo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_x_velocity -units: m s-1 -cell_methods: time: mean -long_name: Sea Water X Velocity -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude olevel time -out_name: uo -type: real -valid_min: -1.041e+18 -valid_max: 1.05e+20 -ok_min_mean_abs: -1.041e+18 -ok_max_mean_abs: 1.05e+20 -!---------------------------------- -! - -!============ -variable_entry: vo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_y_velocity -units: m s-1 -cell_methods: time: mean -long_name: Sea water Y velocity -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude olevel time -out_name: vo -type: real -valid_min: -1.041e+18 -valid_max: 1.05e+20 -ok_min_mean_abs: -1.041e+18 -ok_max_mean_abs: 1.05e+20 -!---------------------------------- -! - -!============ -variable_entry: wmo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upward_ocean_mass_transport -units: kg s-1 -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Upward Ocean Mass Transport -comment: differs from CMIP3, which only had upward velocity. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude olevel time -out_name: wmo -type: real -!---------------------------------- -! - -!============ -variable_entry: tos -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_surface_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacello -long_name: Sea surface temperature -comment: "this may differ from ""surface temperature"" in regions of sea ice." -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: tos -type: real -valid_min: 257.4 -valid_max: 325.2 -ok_min_mean_abs: 272 -ok_max_mean_abs: 303.5 -!---------------------------------- -! - -!============ -variable_entry: wo -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: upward_sea_water_velocity -units: m s-1 -cell_methods: time: mean -cell_measures: area: areacello -long_name: W -comment: -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude olevel time -out_name: wo -type: real -valid_min: -9.37e+17 -valid_max: 1.05e+20 -ok_min_mean_abs: -9.37e+17 -ok_max_mean_abs: 1.05e+20 -!---------------------------------- -! - -!============ -variable_entry: thetaot -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_water_potential_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: Vertically averaged ocean temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: thetaot -type: real -valid_min: -9.37e+17 -valid_max: 1.05e+20 -ok_min_mean_abs: -9.37e+17 -ok_max_mean_abs: 1.05e+20 -!---------------------------------- -! - -!============ -variable_entry: t20d -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -dimensions: longitude latitude time depth_coord -shuffle: 1 -deflate: 1 -deflate_level: 6 -standard_name: depth_of_isosurface_sea_water_potential_temperature -units: m -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: 20C isotherm depth -!---------------------------------- -! -!============ -variable_entry: msftmyza -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -standard_name: atlantic_ocean_meridional_overturning_mass_streamfunction -units: kg s-1 -long_name: Meridional mass streamfunction in the Atlantic -!---------------------------------- -! -!============ -variable_entry: msftmyzaba -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -standard_name: atlantic_ocean_meridional_overturning_mass_streamfunction_due_to_bolus_advection -units: kg s-1 -long_name: Meridional mass streamfunction in the Atlantic due to bolus advection -!---------------------------------- -! -!============ -variable_entry: msftmyzg -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -standard_name: ocean_meridional_overturning_mass_streamfunction -units: kg s-1 -long_name: Global meridional mass streamfunction -!---------------------------------- -! -!============ -variable_entry: msftmyzgba -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -standard_name: ocean_meridional_overturning_mass_streamfunction_due_to_bolus_advection -units: kg s-1 -long_name: Global meridional mass streamfunction due to bolus advection -!---------------------------------- -! -!============ -variable_entry: hfnorthg -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -standard_name: northward_ocean_heat_transport -units: W -long_name: Global northward ocean heat transport -!---------------------------------- -! -!============ -variable_entry: hfnorthgba -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -standard_name: northward_ocean_heat_transport_due_to_bolus_advection -units: W -long_name: Global northward ocean heat transport due to bolus advection -!---------------------------------- -! -!============ -variable_entry: hfnortha -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -standard_name: atlantic_northward_ocean_heat_transport -units: W -long_name: Atlantic northward ocean heat transport -!---------------------------------- -! -!============ -variable_entry: hfnorthaba -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -standard_name: atlantic_northward_ocean_heat_transport_due_to_bolus_advection -units: W -long_name: Atlantic northward ocean heat transport due to bolus advection -!---------------------------------- -! -!============ -variable_entry: sltnorthg -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -standard_name: northward_ocean_salt_transport -units: kg s-1 -long_name: Global northward ocean salt transport -!---------------------------------- -! -!============ -variable_entry: sltnortha -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -standard_name: atlantic_northward_ocean_salt_transport -units: kg s-1 -long_name: Atlantic northward ocean salt transport -!---------------------------------- -! diff --git a/TestTables/SPECS_day b/TestTables/SPECS_day deleted file mode 100644 index 035fc946fdd6a820f7dcaa03279551d59bdb6a0f..0000000000000000000000000000000000000000 --- a/TestTables/SPECS_day +++ /dev/null @@ -1,1243 +0,0 @@ -table_id: Table day -modeling_realm: atmos ocean - -frequency: day - -cmor_version: 2.6 ! minimum version of CMOR that can read this table -cf_version: 1.6 ! version of CF that output conforms to -project_id: SPECS ! project id -table_date: 26 July 2011 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip contact ! space separated required global attribute - -forcings: ?????? - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'historical' 'historicalXXXX' -expt_id_ok: 'soilMoistureClimInit' 'soil_moisture clim_init' -expt_id_ok: 'soilMoistureBestInit' 'soil_moisture best_init' -expt_id_ok: 'seaIceClimInit' 'seaice clim_init' -expt_id_ok: 'seaIceBestInit' 'seaice best_init' -expt_id_ok: 'horizlResImpact' 'horizlres impact' -expt_id_ok: 'standardStratVertRes' 'standard_strat vert_res' -expt_id_ok: 'improvedStratVertRes' 'improved_strat vert_res' -expt_id_ok: 'snowBestInit' 'snow best init' -expt_id_ok: 'snowClimInit' 'snow clim init' -expt_id_ok: 'interactivePhenology' 'interactive phenology' -expt_id_ok: 'fixedPhenology' 'fixed phenology' -expt_id_ok: 'aerosolImproved' 'aerosol improved' -expt_id_ok: 'aerosolsStandard' 'aerosol standard' -expt_id_ok: 'obsSolarIrradiance' 'obs solar irradiance' -expt_id_ok: 'constSolarIrradiance' 'const solar irradiance' - -approx_interval: 1.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: plev8 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: air_pressure -units: Pa -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: pressure -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: plev -stored_direction: decreasing -tolerance: 0.001 -type: double -requested: 100000. 85000. 70000. 50000. 25000. 10000. 5000. ! space-separated list of requested coordinates -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: time -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: forecast_period -units: days since ? -axis: T ! X, Y, Z, T (default: undeclared) -long_name: Time elapsed since the start of the forecast -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: time -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - -!============ -axis_entry: depth_coord -!============ -! -! This vertical coordinate is used in z-coordinate models -! The units are meters (m), and it has a value of 0. at the surface -! and becomes more and more positive with depth. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z -positive: down -long_name: ocean depth coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0. -valid_max: 12000. -!---------------------------------- -! - -!============ -axis_entry: height2m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 10.0 -stored_direction: increasing -type: double -value: 2. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: height10m -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: height -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: up ! up or down (default: undeclared) -long_name: height -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: height -valid_min: 1.0 -valid_max: 30.0 -stored_direction: increasing -type: double -value: 10. ! of scalar (singleton) dimension -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: sdepth1 -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: depth -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: depth -valid_min: 0.0 -valid_max: 0.2 -stored_direction: increasing -type: double -value: 0.05 ! of scalar (singleton) dimension -bounds_values: 0.0 0.1 ! of scalar (singleton) dimension bounds -must_have_bounds: yes -!---------------------------------- -! - -!============ -variable_entry: lead_time -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: forecast_period -units: hours since ? -!axis: T ! X, Y, Z, T (default: undeclared) -long_name: Time elapsed since the start of the forecast -!bounds: time_bnd -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: time -out_name: lead_time -!stored_direction: increasing -type: double -!must_have_bounds: yes -!---------------------------------- -! - -!============ -variable_entry: tas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: tas -type: real -!---------------------------------- -! - -!============ -variable_entry: tasmin -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: minimum -cell_measures: area: areacella -long_name: Daily Minimum Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: tasmin -type: real -!---------------------------------- -! - -!============ -variable_entry: tasmax -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: maximum -cell_measures: area: areacella -long_name: Daily Maximum Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time height2m -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: tasmax -type: real -!---------------------------------- - -!============ -variable_entry: prc -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: convective_precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Convective Precipitation -comment: at surface; includes both liquid and solid phases. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: prc -type: real -!---------------------------------- -! - -!============ -variable_entry: hfls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_latent_heat_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface upward latent heat flux -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: hfls -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: hfss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upward_sensible_heat_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface upward sensible heat flux -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: hfss -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: rlds -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rlus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_longwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upwelling Longwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: rlus -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: pr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: precipitation_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Precipitation -comment: at surface; includes both liquid and solid phases from all types of clouds (both large-scale and convective) -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: pr -type: real -valid_min: 0 -valid_max: 0.001254 -ok_min_mean_abs: 2.156e-05 -ok_max_mean_abs: 3.215e-05 -!---------------------------------- -! - -!============ -variable_entry: rsdt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_incoming_shortwave_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA Incident Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: rsdt -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: mrso -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: soil_moisture_content -units: m3 m-3 -cell_methods: time: mean area: mean where land -cell_measures: area: areacella -long_name: Total soil moisture content -comment: the mass per unit area (summed over all soil layers) of water in all phases. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: mrso -type: real -valid_min: -64.17 -valid_max: 5717 -ok_min_mean_abs: -1424 -ok_max_mean_abs: 3038 -!---------------------------------- -! - -!============ -variable_entry: tauu -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_eastward_stress -units: Pa -cell_methods: time: mean -long_name: Surface downward eastward wind stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: tauu -type: real -positive: down -valid_min: -2.729 -valid_max: 2.934 -ok_min_mean_abs: 0.03979 -ok_max_mean_abs: 0.1065 -!---------------------------------- -! - -!============ -variable_entry: tauv -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downward_northward_stress -units: Pa -cell_methods: time: mean -long_name: Surface downward northward wind stress -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: tauv -type: real -positive: down -valid_min: -2.472 -valid_max: 2.527 -ok_min_mean_abs: 0.01447 -ok_max_mean_abs: 0.08134 -!---------------------------------- -! - -!============ -variable_entry: snd -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_snow_thickness -units: m -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Snow Depth -comment: the mean thickness of snow in the ocean portion of the grid cell (averaging over the entire ocean portion, including the snow-free ocean fraction). Reported as 0.0 in regions free of snow-covered sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: snd -type: real -!---------------------------------- -! - -!============ -variable_entry: tsice -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: mean (weighted by area of sea ice) -cell_measures: area: areacello -long_name: Surface temperature of sea ice -comment: When computing the time-mean here, the time-samples, weighted by the area of sea ice in the grid cell, are accumulated and then divided by the sum of the weights. Reported as ""missing"" in regions free of sea ice. Note this will be the surface snow temperature in regions where snow covers the sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: tsice -type: real -!---------------------------------- -! - -!============ -variable_entry: rsds -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_downwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Downwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: rsds -type: real -positive: down -!---------------------------------- -! - -!============ -variable_entry: rsus -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_upwelling_shortwave_flux_in_air -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Surface Upwelling Shortwave Radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: rsus -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: rlut -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: toa_outgoing_longwave_flux -units: W m-2 -cell_methods: time: mean -cell_measures: area: areacella -long_name: TOA Outgoing Longwave Radiation -comment: at the top of the atmosphere. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: rlut -type: real -positive: up -!---------------------------------- -! - -!============ -variable_entry: sic -!============ -modeling_realm: seaIce ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_ice_area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacello -long_name: Sea Ice Area Fraction -comment: fraction of grid cell covered by sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: sic -type: real -!---------------------------------- -! - -!============ -variable_entry: sit -!============ -modeling_realm: seaIce ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_ice_thickness -units: m -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Sea Ice Thickness -comment: the mean thickness of sea ice in the ocean portion of the grid cell (averaging over the entire ocean portion, including the ice-free fraction). Reported as 0.0 in regions free of sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: sit -type: real -!---------------------------------- -! - -!============ -variable_entry: ta -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_temperature -units: K -cell_methods: time: mean -cell_measures: area: areacella -long_name: Air Temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plev8 time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: ta -type: real -!---------------------------------- -! - -!============ -variable_entry: va -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Northward Wind -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plev8 time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: va -type: real -!---------------------------------- -! - - -!============ -variable_entry: zg -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: geopotential_height -units: m -cell_methods: time: mean -cell_measures: area: areacella -long_name: Geopotential Height -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude plev8 time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: zg -type: real -!---------------------------------- -! - -!============ -variable_entry: sic -!============ -modeling_realm: seaIce ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_ice_area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacello -long_name: Sea ice area fraction -comment: fraction of grid cell covered by sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: sic -type: real -valid_min: -0.000225 -valid_max: 166.1 -ok_min_mean_abs: -13.33 -ok_max_mean_abs: 36.65 -!---------------------------------- -! - - -!============ -variable_entry: snd -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_snow_thickness -units: m -cell_methods: time: mean area: mean where sea -cell_measures: area: areacello -long_name: Snow Depth -comment: the mean thickness of snow in the ocean portion of the grid cell (averaging over the entire ocean portion, including the snow-free ocean fraction). Reported as 0.0 in regions free of snow-covered sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: snd -type: real -!---------------------------------- -! - -!============ -variable_entry: tsice -!============ -modeling_realm: seaIce -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_temperature -units: K -cell_methods: time: mean (weighted by area of sea ice) -cell_measures: area: areacello -long_name: Surface Temperature of Sea Ice -comment: When computing the time-mean here, the time-samples, weighted by the area of sea ice in the grid cell, are accumulated and then divided by the sum of the weights. Reported as ""missing"" in regions free of sea ice. Note this will be the surface snow temperature in regions where snow covers the sea ice. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -shuffle: 1 -deflate: 1 -deflate_level: 6 -out_name: tsice -type: real -!---------------------------------- -! - -!============ -variable_entry: t20d -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: depth_of_isosurface_sea_water_potential_temperature -units: m -cell_methods: time: mean -cell_measures: area: areacello volume: volcello -long_name: 20C isotherm depth -!---------------------------------- -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time depth_coord -!---------------------------------- -! - -!============ -variable_entry: mlotst -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_mixed_layer_thickness_defined_by_sigma_t -units: m -cell_methods: time: mean -cell_measures: area: areacello -long_name: Ocean mixed layer thickness defined by sigma T -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: mlotst -type: real -!---------------------------------- -! - -!============ -variable_entry: uas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: eastward_wind -units: m s-1 -cell_methods: time: mean -long_name: Eastward near-surface wind velocity -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time height10m -out_name: uas -type: real -valid_min: -19.01 -valid_max: 18.68 -ok_min_mean_abs: 1.668 -ok_max_mean_abs: 4.106 -!---------------------------------- -! - -!============ -variable_entry: vas -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: northward_wind -units: m s-1 -cell_methods: time: mean -long_name: Northward near-surface wind velocity -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time height10m -out_name: vas -type: real -valid_min: -18.04 -valid_max: 22.84 -ok_min_mean_abs: 1.065 -ok_max_mean_abs: 2.678 -!---------------------------------- -! - -!============ -variable_entry: psl -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: air_pressure_at_sea_level -units: Pa -cell_methods: time: mean -cell_measures: area: areacella -long_name: Sea level pressure -comment: not, in general, the same as surface pressure -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: psl -type: real -valid_min: 9.122e+04 -valid_max: 1.137e+05 -ok_min_mean_abs: 9.57e+04 -ok_max_mean_abs: 1.063e+05 -!---------------------------------- -! - -!============ -variable_entry: prsn -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: snowfall_flux -units: kg m-2 s-1 -cell_methods: time: mean -cell_measures: area: areacella -long_name: Snowfall Flux -comment: at surface; includes precipitation of all forms of water in the solid phase -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude time -out_name: prsn -valid_min: 0 -ok_min_mean_abs: 1.449e-06 -ok_max_mean_abs: 6.11e-06 -type: real -shuffle: 1 -deflate: 1 -deflate_level: 6 -!---------------------------------- -! - -!============ -variable_entry: clt -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cloud_area_fraction -units: % -cell_methods: time: mean -cell_measures: area: areacella -long_name: Total cloud fraction -comment: for the whole atmospheric column, as seen from the surface or the top of the atmosphere. Include both large-scale and convective cloud. -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: clt -type: real -valid_min: -0.0001822 -valid_max: 105 -ok_min_mean_abs: 39.37 -ok_max_mean_abs: 84.98 -!---------------------------------- -! - -!============ -variable_entry: rss -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_net_downward_shortwave_flux -units: W m-2 -long_name: Net shortwave surface radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: rss -type: real -!---------------------------------- -! - -!============ -variable_entry: rls -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_net_downward_longwave_flux -units: W m-2 -long_name: Net longwave surface radiation -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: rls -type: real -!---------------------------------- -! - -!============ -variable_entry: snld -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: lwe_thickness_of_surface_snow_amount -units: m -long_name: snow depth -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: snow depth -type: double -!--------------------------------- -! - -!============ -variable_entry: tdps -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: dew_point_temperature -units: K -long_name: 2m dewpoint temperature -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: 2m dewpoint temperature -type: double -!--------------------------------- -! - -!============ -variable_entry: evlwr -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: lwe_water evaporation rate -units: m s-1 -long_name: evaporation -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: evaporation -type: double -!--------------------------------- -! - -!============ -variable_entry: mlotst -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_mixed_layer_thickness_defined_by_sigma_t -units: m -cell_methods: time: mean -cell_measures: area: areacello -long_name: Ocean mixed layer thickness defined by sigma T -!---------------------------------- -! Additional variable information: -!---------------------------------- -shuffle: 1 -deflate: 1 -deflate_level: 6 -dimensions: longitude latitude time -out_name: mlotst -type: real -!---------------------------------- -! - diff --git a/TestTables/SPECS_fx b/TestTables/SPECS_fx deleted file mode 100644 index e189d4f3cda7c63274964bc03cf2d734b5120875..0000000000000000000000000000000000000000 --- a/TestTables/SPECS_fx +++ /dev/null @@ -1,875 +0,0 @@ -table_id: Table fx -modeling_realm: atmos - -frequency: fx - -cmor_version: 2.6 ! minimum version of CMOR that can read this table -cf_version: 1.6 ! version of CF that output conforms to -project_id: SPECS ! project id -table_date: 26 July 2011 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip contact ! space separated required global attribute - -forcings: ??? - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'historical' 'historicalXXXX' -expt_id_ok: 'soilMoistureClimInit' 'soil_moisture clim_init' -expt_id_ok: 'soilMoistureBestInit' 'soil_moisture best_init' -expt_id_ok: 'seaIceClimInit' 'seaice clim_init' -expt_id_ok: 'seaIceBestInit' 'seaice best_init' -expt_id_ok: 'horizlResImpact' 'horizlres impact' -expt_id_ok: 'standardStratVertRes' 'standard_strat vert_res' -expt_id_ok: 'improvedStratVertRes' 'improved_strat vert_res' -expt_id_ok: 'snowBestInit' 'snow best init' -expt_id_ok: 'snowClimInit' 'snow clim init' -expt_id_ok: 'interactivePhenology' 'interactive phenology' -expt_id_ok: 'fixedPhenology' 'fixed phenology' -expt_id_ok: 'aerosolImproved' 'aerosol improved' -expt_id_ok: 'aerosolsStandard' 'aerosol standard' -expt_id_ok: 'obsSolarIrradiance' 'obs solar irradiance' -expt_id_ok: 'constSolarIrradiance' 'const solar irradiance' - -approx_interval: 0.000000 ! approximate spacing between successive time - ! samples (in units of the output time - ! coordinate. - -generic_levels: olevel - -!============ -axis_entry: longitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: longitude -units: degrees_east -axis: X ! X, Y, Z, T (default: undeclared) -long_name: longitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0.0 -valid_max: 360.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: latitude -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -standard_name: latitude -units: degrees_north -axis: Y ! X, Y, Z, T (default: undeclared) -long_name: latitude -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90.0 -valid_max: 90.0 -stored_direction: increasing -type: double -must_have_bounds: yes -!---------------------------------- -! - - -!============ -axis_entry: depth_coord -!============ -! -! This vertical coordinate is used in z-coordinate models -! The units are meters (m), and it has a value of 0. at the surface -! and becomes more and more positive with depth. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: depth -units: m -axis: Z -positive: down -long_name: ocean depth coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: increasing -valid_min: 0. -valid_max: 12000. -!---------------------------------- -! - - -!============ -axis_entry: olev -!============ -!---------------------------------- -! Axis attributes: -!---------------------------------- -axis: Z ! X, Y, Z, T (default: undeclared) -positive: down ! up or down (default: undeclared) -long_name: generic ocean level -!---------------------------------- -! Additional axis information: -!---------------------------------- -out_name: lev -stored_direction: increasing -type: double -must_have_bounds: no -!---------------------------------- -! - - -!============ -axis_entry: ocean_double_sigma -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: ocean_double_sigma -axis: Z -positive: up -long_name: ocean double sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -formula: for k <= k_c:\n z= sigma*f \n for k > k_c:\n z= f + (sigma-1)*(depth-f) \n f= 0.5*(z1+ z2) + 0.5*(z1-z2)* tanh(2*a/(z1-z2)*(depth-href)) -z_factors: sigma: sigma depth: depth z1: z1 z2: z2 a: a_coeff href: href k_c: k_c -z_bounds_factors: sigma: sigma_bnds depth: depth z1: z1 z2: z2 a: a href: href k_c: k_c -!---------------------------------- -! - - -!============ -axis_entry: ocean_sigma_z -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: ocean_sigma_z -axis: Z -long_name: ocean sigma over z coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -formula: for k <= nsigma: z = eta + sigma*(min(depth_c,depth)+eta) ; for k > nsigma: z = zlev -z_factors: sigma: sigma eta: eta depth: depth depth_c: depth_c nsigma: nsigma zlev: zlev -z_bounds_factors: sigma: sigma_bnds eta: eta depth: depth depth_c: depth_c nsigma: nsigma zlev: zlev_bnds -!---------------------------------- -! -!============ -axis_entry: ocean_s -!============ -! -! This coordinate is dimensionless and varies from 0 at the surface to -1. at the ocean floor. -! The values of s, which appears in the formula below, should be stored as ocean_s. -! Note that in the netCDF file the variable will be named "lev", not ocean_s. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: ocean_s_coordinate -axis: Z -positive: up -long_name: ocean s-coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 0. -formula: z = eta*(1+s) + depth_c*s + (depth-depth_c)*C \n where \n C=(1-b)*sinh(a*s)/sinh(a) +\n b*(tanh(a*(s+0.5))/(2*tanh(0.5*a)) - 0.5) -z_factors: s: lev eta: eta depth: depth a: a_coeff b: b_coeff depth_c: depth_c -z_bounds_factors: s: lev_bnds eta: eta depth: depth a: a b: b depth_c: depth_c -!---------------------------------- -! -!============ -axis_entry: ocean_sigma -!============ -! -! This coordinate is dimensionless and varies from 0 at the surface to -1. at the ocean floor. -! The values of sigma, which appears in the formula below, should be stored as ocean_sigma. -! Note that in the netCDF file the variable will be named "lev", not ocean_sigma. -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: ocean_sigma_coordinate -axis: Z -positive: up -long_name: ocean sigma coordinate -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lev -must_have_bounds: yes -stored_direction: decreasing -valid_min: -1. -valid_max: 0. -formula: z = eta + sigma*(depth+eta) -z_factors: sigma: lev eta: eta depth: depth -z_bounds_factors: sigma: lev_bnds eta: eta depth: depth -!---------------------------------- -! -! -! *************************************************************** -! -! Vertical coordinate formula_terms: -! -! *************************************************************** -! -!============ -variable_entry: eta -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: m -long_name: Sea Surface Height -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -type: real -!---------------------------------- -! - -!============ -variable_entry: depth -!============ -!---------------------------------- -! Variable attributes: -!---------------------------------- -units: m -long_name: Sea Floor Depth -comment: Ocean bathymetry. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: depth -type: real -valid_min: 0. -valid_max: 12000. -ok_min_mean_abs: 2000. -ok_max_mean_abs: 5000. -!---------------------------------- -! - -!============ -variable_entry: sigma -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: sigma(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: olevel -type: double -!---------------------------------- -! - -!============ -variable_entry: sigma_bnds -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: sigma(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: olevel -type: double -!---------------------------------- -! - -!============ -variable_entry: zlev -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: zlev(k) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: olevel -type: double -!---------------------------------- -! - -!============ -variable_entry: zlev_bnds -!============ -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: zlev(k+1/2) -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -dimensions: olevel -type: double -!---------------------------------- -! - -!============ -variable_entry: depth_c -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: depth_c -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! - -!============ -variable_entry: a -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: coefficient a -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! - -!============ -variable_entry: b -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: coefficient b -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! - -!============ -variable_entry: nsigma -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: nsigma -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: integer -!---------------------------------- -! - -!============ -variable_entry: z1 -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: z1 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! - -!============ -variable_entry: z2 -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: z2 -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! - -!============ -variable_entry: href -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: href -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: double -!---------------------------------- -! - -!============ -variable_entry: k_c -!============ -! -!------------ -! -! Variable attributes: -!---------------------------------- -long_name: vertical coordinate formula term: k_c -!---------------------------------- -! -! Additional variable information: -!---------------------------------- -type: integer -!---------------------------------- -! -! - -!============ -variable_entry: areacella -!============ -modeling_realm: atmos land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cell_area -units: m2 -long_name: Atmosphere Grid-Cell Area -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: areacella -type: real -valid_min: 100000.0 -valid_max: 1e+12 -ok_min_mean_abs: 100000.0 -ok_max_mean_abs: 1e+12 -!---------------------------------- -! - -!============ -variable_entry: orog -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_altitude -units: m -cell_measures: area: areacella -long_name: Surface Altitude -comment: height above the geoid; as defined here, ""the geoid"" is a surface of constant geopotential that, if the ocean were at rest, would coincide with mean sea level. Under this definition, the geoid changes as the mean volume of the ocean changes (e.g., due to glacial melt, or global warming of the ocean). Reported here is the height above the present-day geoid (0.0 over ocean). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: orog -type: real -valid_min: -700.0 -valid_max: 10000.0 -!---------------------------------- -! - -!============ -variable_entry: sftlf -!============ -modeling_realm: atmos -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: land_area_fraction -units: % -cell_measures: area: areacella -long_name: Land Area Fraction -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: sftlf -type: real -valid_min: 0.0 -valid_max: 100.0 -!---------------------------------- -! - -!============ -variable_entry: sftgif -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: land_ice_area_fraction -units: % -cell_measures: area: areacella -long_name: Fraction of Grid Cell Covered with Glacier -comment: fraction of grid cell occupied by ""permanent"" ice (i.e., glaciers). -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: sftgif -type: real -valid_min: 0.0 -valid_max: 100.0 -!---------------------------------- -! - -!============ -variable_entry: mrsofc -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: soil_moisture_content_at_field_capacity -units: kg m-2 -cell_measures: area: areacella -long_name: Capacity of Soil to Store Water -comment: "reported ""where land"": divide the total water holding capacity of all the soil in the grid cell by the land area in the grid cell; reported as ""missing"" where the land fraction is 0." -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: mrsofc -type: real -!---------------------------------- -! - -!============ -variable_entry: rootd -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: root_depth -units: m -cell_measures: area: areacella -long_name: Maximum Root Depth -comment: report the maximum soil depth reachable by plant roots (if defined in model), i.e., the maximum soil depth from which they can extract moisture; report as ""missing"" where the land fraction is 0. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: rootd -type: real -valid_min: 0.0 -valid_max: 30.0 -!---------------------------------- -! - -!============ -variable_entry: deptho -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: sea_floor_depth_below_geoid -units: m -cell_measures: area: areacello -long_name: Sea Floor Depth -comment: Ocean bathymetry. Reported here is the sea floor depth for present day. Reported as missing for land grid cells. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: deptho -type: real -valid_min: 0.0 -valid_max: 10000.0 -ok_min_mean_abs: 2000.0 -ok_max_mean_abs: 5000.0 -!---------------------------------- -! - -!============ -variable_entry: volcello -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: ocean_volume -units: m3 -long_name: Ocean Grid-Cell Volume -comment: grid-cell volume ca. 2000. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude olevel -out_name: volcello -type: real -valid_min: 0.0 -valid_max: 1e+15 -ok_min_mean_abs: 0.0 -ok_max_mean_abs: 1e+15 -!---------------------------------- -! - -!============ -variable_entry: areacello -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: cell_area -units: m2 -long_name: Ocean Grid-Cell Area -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: areacello -type: real -valid_min: 0.0 -valid_max: 1e+12 -ok_min_mean_abs: 0.0 -ok_max_mean_abs: 1e+12 -!---------------------------------- -! - -!============ -variable_entry: sftlf -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: land_area_fraction -units: % -cell_measures: area: areacello -long_name: Land Area Fraction -comment: This is the area fraction at the ocean surface. -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: sftlof -type: real -valid_min: 0.0 -valid_max: 100.0 -!---------------------------------- -! - -!============ -variable_entry: basin -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: region -units: 1 -cell_measures: area: areacello -long_name: Region Selection Index -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: basin -type: integer -valid_min: 1.0 -valid_max: 10.0 -!---------------------------------- -! - -!============ -variable_entry: goro -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_geopotential -units: m-2 s-2 -cell_methods: area: mean -cell_measures: area: areacello -long_name: Orography -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: goro -type: real -!positive: up -!---------------------------------- -! - -!============ -variable_entry: wmb -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: bathymetry -units: m -cell_methods: area: mean -cell_measures: area: areacello -long_name: Model Bathymetry -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: wmb -type: real -!---------------------------------- -! - -!============ -variable_entry: al -!============ -modeling_realm: ocean -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: albedo -units: % -cell_methods: area: mean -cell_measures: area: areacello -long_name: Albedo -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: al -type: real -!---------------------------------- -! - -!============ -variable_entry: fc -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: soil_surface_capacity -units: m -cell_methods: area: mean -cell_measures: area: areacello -long_name: Field capacity -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: fc -type: real -!---------------------------------- -! - -!============ -variable_entry: sr -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: surface_roughness_length -units: m -cell_methods: area: mean -cell_measures: area: areacello -long_name: Roughness length -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: sr -type: real -!---------------------------------- -! - -!============ -variable_entry: wp -!============ -modeling_realm: land -!---------------------------------- -! Variable attributes: -!---------------------------------- -standard_name: wilting_point -units: % -cell_methods: area: mean -cell_measures: area: areacello -long_name: Wilting point -!---------------------------------- -! Additional variable information: -!---------------------------------- -dimensions: longitude latitude -out_name: wp -type: real -!---------------------------------- diff --git a/TestTables/SPECS_grids b/TestTables/SPECS_grids deleted file mode 100644 index c46a7343c5850da23f7e29b8d90d9e717ca34906..0000000000000000000000000000000000000000 --- a/TestTables/SPECS_grids +++ /dev/null @@ -1,266 +0,0 @@ -table_id: Table grids - - -cmor_version: 2.0 ! version of CMOR that can read this table -cf_version: 1.6 ! version of CF that output conforms to -project_id: SPECS ! project id -table_date: December 2013 ! date this table was constructed - -missing_value: 1.e20 ! value used to indicate a missing value - ! in arrays output by netCDF as 32-bit IEEE - ! floating-point numbers (float or real) - -baseURL: http://cmip-pcmdi.llnl.gov/SPECS/dataLocation -product: output - -required_global_attributes: creation_date tracking_id forcing model_id parent_experiment_id parent_experiment_rip contact ! space separated required global attribute - -forcings: ???? - -expt_id_ok: '10- or 30-year run initialized in year XXXX' 'decadalXXXX' -expt_id_ok: 'historical' 'historicalXXXX' -expt_id_ok: 'soilMoistureClimInit' 'soil_moisture clim_init' -expt_id_ok: 'soilMoistureBestInit' 'soil_moisture best_init' -expt_id_ok: 'seaIceClimInit' 'seaice clim_init' -expt_id_ok: 'seaIceBestInit' 'seaice best_init' -expt_id_ok: 'horizlResImpact' 'horizlres impact' -expt_id_ok: 'standardStratVertRes' 'standard_strat vert_res' -expt_id_ok: 'improvedStratVertRes' 'improved_strat vert_res' -expt_id_ok: 'snowBestInit' 'snow best init' -expt_id_ok: 'snowClimInit' 'snow clim init' -expt_id_ok: 'interactivePhenology' 'interactive phenology' -expt_id_ok: 'fixedPhenology' 'fixed phenology' -expt_id_ok: 'aerosolImproved' 'aerosol improved' -expt_id_ok: 'aerosolsStandard' 'aerosol standard' -expt_id_ok: 'obsSolarIrradiance' 'obs solar irradiance' -expt_id_ok: 'constSolarIrradiance' 'const solar irradiance' - - -! -! -!============ -mapping_entry: sample_user_mapping -!============ -parameter: false_easting -parameter: false_northing -coordinates: rlon rlat -! -!============ -axis_entry: i_index -!============ -! -!---------------------------------- -! Axis attributes: -!---------------------------------- -out_name: i -units: 1 -long_name: cell index along first dimension -type: integer -!---------------------------------- -! -! -!============ -axis_entry: j_index -!============ -! -!---------------------------------- -! -! Axis attributes: -!---------------------------------- -out_name: j -units: 1 -long_name: cell index along second dimension -type: integer -!---------------------------------- -! -! -!============ -axis_entry: k_index -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -out_name: k -units: 1 -long_name: cell index along third dimension -type: integer -!---------------------------------- -! -!============ -axis_entry: l_index -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -out_name: l -units: 1 -long_name: cell index along fourth dimension -type: integer -!---------------------------------- -! -!============ -axis_entry: m_index -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -out_name: m -units: 1 -long_name: cell index along fifth dimension -type: integer -!---------------------------------- -! -!============ -axis_entry: x -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: projection_x_coordinate -units: m -long_name: x coordinate of projection -axis: X -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -! -!============ -axis_entry: y -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: projection_y_coordinate -units: m -long_name: y coordinate of projection -axis: Y -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -! -!============ -axis_entry: grid_latitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: grid_latitude -units: degrees -long_name: latitude in rotated pole grid -axis: Y -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: rlat -! -!============ -axis_entry: grid_longitude -!============ -! -!------------ -! -! Axis attributes: -!---------------------------------- -standard_name: grid_longitude -units: degrees -long_name: longitude in rotated pole grid -axis: X -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: rlon -! -!============ -axis_entry: vertices -!============ -! -!------------ -! -!============ -variable_entry: longitude -!============ -!---------------------------------- -standard_name: longitude -units: degrees_east -long_name: longitude coordinate -dimensions: longitude latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============ -variable_entry: latitude -!============ -!---------------------------------- -standard_name: latitude -units: degrees_north -long_name: latitude coordinate -dimensions: longitude latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! -!============ -variable_entry: vertices_longitude -!============ -!---------------------------------- -units: degrees_east -dimensions: vertices longitude latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lon_vertices -valid_min: 0. ! CMOR will add n*360 to input values - ! (where n is an integer) to ensure - ! longitudes are in proper range. -valid_max: 360. ! see above comment. -!---------------------------------- -! -! -!============ -variable_entry: vertices_latitude -!============ -!---------------------------------- -units: degrees_north -dimensions: vertices longitude latitude -!---------------------------------- -! -! Additional axis information: -!---------------------------------- -out_name: lat_vertices -valid_min: -90. -valid_max: 90. -!---------------------------------- -! -! diff --git a/TestTables/md5s b/TestTables/md5s deleted file mode 100644 index ad356ee3953991ed811135291f2844b8d06e022a..0000000000000000000000000000000000000000 --- a/TestTables/md5s +++ /dev/null @@ -1 +0,0 @@ -{'CMIP5': {'cf3hr': {'11 May 2010': 'a59ca1270ff3036d417a7f2217598266', '19 October 2010': '8b5c2f197b70a103393838ebd4075c6c', '12 May 2010': '905f7ccdd5a31cb71e2a6e3b339cd0e1', '23 August 2010': '5ccea11a7c3d165c76df3d9eede395d0', '01 June 2010': '619aa3c816bc25a53335589698e64968', '01 July 2010': 'c0fe9e92115d75292f5009e13761cb4b', '11 November 2010': '35a8e11c7f57f3128517d21d177a8204', '12 March 2010': 'ae9a82f01824d9012aa0657cd7896a9a', '22 March 2010': '712cd14ab6a28116da828ff555e00c4d', '07 July 2010': '27949d438b4c04d481ff1d9790cff60f', '17 September 2010': 'b71b239f5fac1e0588d0b15bc4d34ed8', '29 April 2010': 'fdc4fb38dd4cfb7f066329ed43a9e805', '08 July 2010': 'a52efa3fc3fa9464cf3378e936320f55', '24 May 2010': '61693a46b06627dcd6ffe8ceff288ef0', '09 June 2010': '8aad2bf8bea26504a0e247c1737ea4a0', '02 April 2010': '3394448440a54597570cc877dcbaca7d', '26 April 2010': 'b0d0de6ac8d5ef997347610ea6a51d6d', '14 September 2010': '1669750f2919391d83f949de05a1bfcd', '02 August 2010': '9a94c257c8aebe1b834631c067728357', '25 October 2010': '0411f9fce5f7d46c64135ce1ac2b3f6a', '12 November 2010': '7aa138929397042fe2db914c2e9c0d22', '10 June 2010': 'f70ed019bca338b2d73296e1924f3df4', '28 May 2010': 'f6e966842fed498f0921365983918119', '22 October 2010': '6b3fd20804f1306fc7413997cd478a23'}, '3hr': {'11 May 2010': '9f293a2c84001fbaa5aef7357ea2828c', '19 October 2010': '8295c191b254ca0795e974d7f140b72b', '12 May 2010': 'c8ebc04b6487634d9719f4974265fd64', '23 August 2010': 'f211766ca746969943a9fe6b4bd45694', '01 June 2010': 'acf6e6c17995a9b0f4d7ecd93f1ffb35', '01 July 2010': '9ff56e4d1df9199fafe41bbe78c5502c', '11 November 2010': 'c4fecc3b0c095cf96b1f7d5a3f6979c4', '12 March 2010': '8249007b0a473d19554b47efaff87a39', '22 March 2010': '7e3989c1ac5dd2455892cd25b8fd2a1a', '07 July 2010': 'f07a287d8f310a7eb22b5753ec9c192b', '17 September 2010': '0f0060d0f895564e19189bfea3fb9a8a', '29 April 2010': '7ca1dc5009cca6779717dd557e5edc27', '08 July 2010': '82f5befb7bd5f11945e13f5c774ca0b8', '24 May 2010': 'af8b1d3d63376942a55d779d0fb9f504', '09 June 2010': '27eb969c4cd719b0622bc828d6b9a445', '02 April 2010': '1e9df4873834764950e7cdd1f545541e', '26 April 2010': 'dfae3d259acdbe58fd8b4e3f535f02f1', '14 September 2010': '0dbd5efb8e7cb9b30f06c0ba15c1ee2b', '02 August 2010': '110a779349596be375d3b7fecabd338b', '25 October 2010': '021eb679fe02596b994f03a8b201a11c', '12 November 2010': '3d0f50f5c03069b9f45573283964f1d4', '10 June 2010': 'e53cdb81ec9f7088198133ee086fc966', '28 May 2010': 'f4f7421bc9b4563952bad7edd9e787b0', '22 October 2010': '505fd7eeeedf85127677d8407b23980d'}, 'cfOff': {'11 May 2010': 'aee3517609f9c24b48d210742be22bfc', '19 October 2010': '471f86bd5adea0a5547086e61f7f9228', '12 May 2010': '3079982b07452f20df2a26f924065f32', '23 August 2010': '00dcdaad4b4040b70ce901f28a6f43b8', '01 June 2010': '0db2ab6935aad13a6227a20e63c6c486', '01 July 2010': '77b45b1f470d649d696953a53c9afb2e', '11 November 2010': '3aa27d69912d316e9423102ab2952992', '12 March 2010': 'a573ebe565340a61697e7deced82b9c7', '22 March 2010': '4f62827e7661dd79a7bf4df1068b45b8', '07 July 2010': '1725cf6068006e9d7a8e77ffe60510af', '17 September 2010': 'b933cdc8d9cf48c16e4f3216562a9f8c', '29 April 2010': 'b022d0d8359dfd8549dcecb4a440459b', '08 July 2010': '1d97433ef9df7b3a452a2fbbeb6b3641', '24 May 2010': '5d3f4b6daef653409aac76439c534778', '09 June 2010': 'c77f28ff0fe2252d8a20169ca802a8f4', '02 April 2010': '23a2c16a166a9b9bc6d51769375becd2', '26 April 2010': '8ef2dee6b9ac93c654d67562d01316f9', '14 September 2010': '18b0ee56491ce281ace46ec2cd4c0f8c', '02 August 2010': 'e8819e0496e8210bb00f72f4f97bd58a', '25 October 2010': 'b9c19aae50935a3999ac38838ca64546', '12 November 2010': '3f738ba57136d65b96fdc78db9e20c0e', '10 June 2010': '4311ce8f83ceec96ed2f3ec7a6fad034', '28 May 2010': 'dfff9394b235db3fa52960418a7286f7', '22 October 2010': '9046a88d2097af032a322fa63cdb0d86'}, 'Amon': {'11 May 2010': 'e4e4554008c52abcd8fcea09f7f93f8d', '19 October 2010': '81f2d61a443bfcc780c9ec2dd27fb4a1', '12 May 2010': '12e195f2fdc87c907b38b38e15851337', '23 August 2010': '045d668827988440ad3ba59116110304', '01 June 2010': '34d587239da7376dd1f3e366a50cf500', '01 July 2010': '9b2907adc97564335ea86d81ae46df81', '11 November 2010': 'dca41799988c6420df70af862b30f492', '12 March 2010': 'b0b2c52562fa80a556684fb6195ab135', '22 March 2010': '95e9123f238c2b42fe8cf8d69e35d139', '07 July 2010': '2447c62949c32aade1316c738861f76e', '17 September 2010': '2bcb9818a4f88c67db40ebf7d5df7ad1', '29 April 2010': 'a57cdc538f256caa6815604210dc22b3', '08 July 2010': '0f29d14a72ad86a2466d830072657eac', '24 May 2010': 'abf08fbc54eeceb061e588f017462dc4', '09 June 2010': '382b999448888cee3660598699a724c3', '02 April 2010': 'b6f8bea7bf003b2bcd493ad037bf7f24', '26 April 2010': '9f677ce2bf23f4e1d622feef2ca3f434', '14 September 2010': '6f10603fbd99e766f4c6c3ac3152f294', '02 August 2010': '0b3faa1f662bbee372fe931cb6d1b943', '25 October 2010': 'e40cd150c9c2a3a06ded4ee92e84b461', '12 November 2010': '6e535ddfacb41fb7a252f4862fdc5766', '10 June 2010': '5d6844585631dd2c048b26e8c27a36ec', '28 May 2010': '0dfec5986fd66a2f70900ae5266c4a87', '22 October 2010': '3754c1ca774f699c4d7f7f24fc4c5d0d'}, 'cfMon': {'11 May 2010': 'dbefad89e3fa487ade7986825d6fe7d4', '19 October 2010': 'c08d10d30c76c5e6df184d820430db4e', '12 May 2010': '03de0e6784d9468d5c3b21a708a410bc', '23 August 2010': '4163799d7e6ca9ed6702f92bceb4a83f', '01 June 2010': 'be7cc61031cc4576cb79127b3341a599', '01 July 2010': '80c97d7c98abc2f485bb402dd3b7e915', '11 November 2010': 'eecec4e0c8934eecefa5618e92a4912a', '12 March 2010': '4e734968f407cb120679ae76cbabd19f', '22 March 2010': '27a6c2c3f3eefd64643850e42b29ae95', '07 July 2010': 'ddb3a708296e483988d1fbc98becfc4c', '17 September 2010': '01afab053639ea0c2460f0b62fb84692', '29 April 2010': '1e18a3180c49a801bb0a3763473d61d0', '08 July 2010': 'f348eaec1ca7e1bdce8f3fa41c4e4304', '24 May 2010': '1224cca03c126a0b1207f86b1ccbbd5e', '09 June 2010': 'e1db34fcdd19c785857fc7626225862e', '02 April 2010': '9fcc3f2ebe69dbc949642ecb88e1194d', '26 April 2010': '93d04dd9aa241cc63a84ff5a9d8c61b0', '14 September 2010': '5e2cffb7cc4dbac6079b751a6517b870', '02 August 2010': '56a4d049c4461e85febd902424950b81', '25 October 2010': '1e157f1f973aaccb1b977d21d70ae051', '12 November 2010': '1d41e779e2782143a255b88ebcecafe8', '10 June 2010': '0e6868e4fe53670680b3d896e197f58f', '28 May 2010': 'c37adda1fb6d9fd8a88b7854f3318ab0', '22 October 2010': 'a4f6136f20c75e957b49a39dbd390e4a'}, '6hrLev': {'11 May 2010': '563f7b4b9db1587890c35a6feb4d9a83', '19 October 2010': 'e5ae7a9855e4413deea8289e31aaaa21', '12 May 2010': '1e643249424bd620052d216950785b83', '23 August 2010': '235242a4410e9b772307262dc755a17b', '01 June 2010': '0567c616eb71663592476f1f10b6a51d', '01 July 2010': 'edd7380c5c773cb9e72f37e76ea1c410', '11 November 2010': 'e77e0be5bccb0fd442b55a28cfad40dd', '12 March 2010': '814a04ab21f7928f22728ca338e6a9bf', '22 March 2010': '1b4de02ae5ce7f94e33a344101ebc85c', '07 July 2010': '19b8d901370b7beff6ec1ba2ba5f00f6', '17 September 2010': '93f88b74ffd53270c9cab6f6b0790fd9', '29 April 2010': 'c71c8d10849d8a3759a2883858a0e723', '08 July 2010': '6cc537fbd876969a1ceb125007ab7201', '24 May 2010': '7a13cf3cf200cff92cbb106c3b0a95db', '09 June 2010': '2656efcc5cf61affffb263effde97ede', '02 April 2010': 'd1b5ce14b3978b8665d576c2a6abc849', '26 April 2010': 'f4ed7d449df633b1c4924aa17a0f033f', '14 September 2010': '964e5834724585c32ccf0290f64d7e18', '02 August 2010': '3a2153ad4b60e08ec681d434df327d9f', '25 October 2010': '9222efc9a5a8679d8859aab6cd440b05', '12 November 2010': 'a6a60e3da21ccf69878be490a922015a', '10 June 2010': '5d2d178a4887ca16583c4500fcc2cbbe', '28 May 2010': '5649b5e565aaf90725e52923473237c4', '22 October 2010': '911f4c35b73178e7efb493cd6b96a415'}, 'fx': {'11 May 2010': 'ceee73b67736e0209632cbf0565f3016', '19 October 2010': '4c78280a37dcd13557f43dd9cc70de91', '12 May 2010': '7a982ebca5c07d348561e23b056b678c', '23 August 2010': '8fe1e359662d7edb809672e8ecd20026', '01 June 2010': 'eeedbe523773ea8145bd98134ce63cd7', '01 July 2010': 'a7ac4b51593af19085d34f3ddf41b323', '11 November 2010': '1899417a056ed59f2a5dbb05b7b782f7', '12 March 2010': '71beb3105440a206cccee47d4ca11e02', '22 March 2010': '23d6a606a08f77d5e0efa2f553792184', '07 July 2010': '6be37421f818e25809dc8a217808ddf9', '17 September 2010': '6e811c03861e5ac05887000cb22824bb', '29 April 2010': 'aed062cea93bf59cea4c089e45f88ea6', '08 July 2010': '2004b4a855b365fc68fac3f089c5707e', '24 May 2010': 'bd6e3e0a5c82a46d84e40acee850a1fb', '09 June 2010': '14bda3afa90252a7e380250bb89ed909', '02 April 2010': 'ddb926db39ca9dff4b15cd19c7bffe68', '26 April 2010': '36573de4231a9ab2e1e6dd06fdc332b3', '14 September 2010': '0ab4232d370f07b82b35568c03a0b4a4', '02 August 2010': 'c7b7caf02dbad550bb6a29dffb520758', '25 October 2010': 'd45f6af57ce4d1698fca7b5843cb9cbf', '12 November 2010': 'a3fb4d54ac41c92268e3d1d5bb59e4cf', '10 June 2010': '6ace20d389ab3d1fbf7d68c8ddce4c8a', '28 May 2010': '064b1fa83c0626981f62638cad0cd6b6', '22 October 2010': '52e52e2710c778c0ab547c98192dce74'}, 'Omon': {'11 May 2010': '2d0ccdf5de652f1580245657b2cb6e2f', '19 October 2010': '1a1bab09ac4772abec59bb3f364b2046', '12 May 2010': '5bbbf780fbcc32ecae95ec75e5925c2e', '23 August 2010': '32568fef98f13d8e600460194429ea64', '01 June 2010': 'c45d87b668792d8b44753f9bd52980ab', '01 July 2010': 'ce70d7a18026d46eaac72ab9ed627cba', '11 November 2010': '8c7016c14989d5917aab04b07185f72f', '12 March 2010': '32e7e5c693ba7fa59697ce93603cafee', '22 March 2010': '8d88ed317135c24d6a01f056ac09ca2f', '07 July 2010': '30b0147d4c08f78266a680e4dba5f05b', '17 September 2010': '7f1e239986a653271514846dec436895', '08 July 2010': '141295f2779d3084924ae119f2fe4bbc', '24 May 2010': '9fd8559b31592d9a516bb7cafdf55105', '09 June 2010': '9c3676570b53a7eacf0da4ccb132e1e2', '02 April 2010': '28927d3487d4bb87c77b50d495980d21', '14 September 2010': '103bf8b76c901eb92e396008ae4e130b', '02 August 2010': 'e05ca2ab73fa7930953fa1b5ffb08239', '25 October 2010': '857563b97888e34bf4efb95a31201037', '12 November 2010': '21c7ac8643c73502f98cf73d716ab773', '10 June 2010': '5d379ef8f72f147aa6a4d76d8e25d299', '28 May 2010': '0dcb11bfa3ed2e44be7dbc4a65b04b34', '22 October 2010': '459b64863ea0cddb1a3ff6bd38575ffb'}, 'Oyr': {'11 May 2010': '527d920054556b540145ca03f4929ffd', '19 October 2010': '6ab6fc52c1822e96b436ce1c9384255c', '12 May 2010': 'b8fbd4fc69d1742f5eff475df79f192e', '23 August 2010': '88a495d04230e0093e563463a31ca931', '01 June 2010': 'bb68fb7b1f66ca226cd108ccf20047fa', '01 July 2010': 'b774f001ee806c9eb932698faf4e15bf', '11 November 2010': 'cc9ca9c8af0ed8d03d30214564816136', '12 March 2010': '9718b877ea7f6374e7bb7561d01af98b', '22 March 2010': '1ad84e2b17655de2c4ceb95e05cc1e35', '07 July 2010': '5225d811469f0ed452c307eacb71e0c8', '17 September 2010': '62867ce71757c9ddd57389aee731a17b', '29 April 2010': '1651b65e299b6aaabef92845dea6692a', '08 July 2010': '8e0c140b20425419299e555a90ab15bd', '24 May 2010': 'f814cbfe0580345a85c091ef1b54bdaf', '09 June 2010': 'ceaef2c58732dd8093737b23e2f9f99d', '02 April 2010': 'e828a0a6190fbdea02bde73cd4db994c', '26 April 2010': 'e26c6428fb49ad822e20ee1a7f4c3ac4', '14 September 2010': '06da4397beb9d242952a57b778fa3bf1', '02 August 2010': '4e67cd5378788aee1de2384725a41a89', '25 October 2010': '7dac94270ddeebaffde40607e94a50a9', '12 November 2010': '6f645331f36ab31e48e34d413c782f57', '10 June 2010': '73653956328160bb946f229189fbce5f', '28 May 2010': 'e2a6acf84cdec51f0c542111d66e7d9e', '22 October 2010': '18a745403ae5095d532db2c2b1905d32'}, 'grids': {'12 March 2010': 'd2a03433140cb366e0009d5e8b064e34', '19 October 2010': 'ca01dcb5f14d9a7286135fb740550ee2', '11 August 2010': '3dddd7959e11a27723ec5339306d1120', '20 September 2010': '35ff89deab99c5469dcc89ebc4b4f442', '12 November 2010': 'bf68c67ba77793dadceef7d115c7ffe5', '19 September 2010': '426154be8fcbdc0c1d6c188858131577'}, 'da': {'11 March 2010': '6e0a7e19df94506d06091b43082677dc'}, 'OImon': {'11 May 2010': '103618d145733750a056304043dea567', '19 October 2010': 'd46e90e0e0a75aa139767038c5f740ad', '12 May 2010': '9acf9f47257b510743ffa661427ae56a', '23 August 2010': '08b0e447c93c55277eb2a126b30787e4', '01 June 2010': '176270b2b413b0635e764722ec6d32ff', '01 July 2010': 'eff1001750d564668899035e9c809daa', '11 November 2010': '98ed8162e89fb01d26ac13193deff8de', '12 March 2010': '24030fd1d63ab32ff3cd30783a121b24', '22 March 2010': 'fcc3c126b4bf370a4eeeb921a037a0ac', '07 July 2010': '23d2e048cf1a71560bf0f856e176cc85', '17 September 2010': '4d997579a4d1a4220ae40a424235f76d', '29 April 2010': '0dd76c65223b6e12650f856470bd0ad0', '08 July 2010': 'c3b0fc073f2c782acec50aca801f8ad6', '24 May 2010': '1beefee61a3bfec498239b121bb53683', '09 June 2010': '6a5c5c35499a211826b799b52f8e7950', '02 April 2010': 'e29411ff7991e012460112cb6e56e995', '26 April 2010': '09d3db3faf545ecab63cdf0570e167f7', '14 September 2010': '2005da0bafad21c45e5e407f81997e1e', '02 August 2010': '7b23f2e63cbecae1f21891f8464ce96e', '25 October 2010': '1c15b894e8ddf35db73d9419d0d26f7f', '12 November 2010': '03f02ea4095411dc669446a2cfbc3e79', '10 June 2010': '22c644a4b828f6ef1662bc579cd89180', '28 May 2010': '0b99be09f2f5e979dbbe1044cf769788', '22 October 2010': '641db0e7174a9de9d31c7077b7e55f6a'}, 'cfDay': {'11 May 2010': '378455467d0ecbaabd8d93db9855bd1f', '19 October 2010': 'd87662b52af1386bd95c7651dc97c237', '12 May 2010': '2bbfcf8d253f38b550e68b0d7b242a13', '23 August 2010': '20a096eaaa3c5c140c8dde15bd8f8e76', '01 June 2010': '04af05cd53dabdc5052a962bf28c1607', '01 July 2010': '37843ebcfa1862c12ee904e355e86cbc', '11 November 2010': '007645be3e4788db8bb05397c174b1ba', '12 March 2010': '6ab7019daf928d9f1ceda58323b1749e', '22 March 2010': 'cfe9075ba940032f9d18707d10bd4d1f', '07 July 2010': '595ca1266fa7ac469bd54d810d7d2d5b', '17 September 2010': 'f86ba023f81f75f89faaf1c8c0a45a81', '29 April 2010': 'f92a346a102778aa4caaf3804bec2c7e', '08 July 2010': 'c2dc1c9036c53971505b892fa3a3764e', '24 May 2010': 'eed1d3cda3e535039bb6e0c5f9b9d6c3', '09 June 2010': '78bcd978d11b5b2435b4bc85969ba9b3', '02 April 2010': 'f0eab40e698a4b26949da066639897b1', '26 April 2010': '3771e19a505af7b1e007eac78670f4ab', '14 September 2010': '20e6c21202c6cc4fcbc6b85ef5688998', '02 August 2010': 'e8cc7c2d334a49efbe5c044b74dd7d6c', '25 October 2010': 'e230b25242e9f7a6aa2acfa9eb195ab8', '12 November 2010': '35a022f3d4c503ad7748557a3814d64c', '10 June 2010': '872bcd0c18771af5672bf35454019e86', '28 May 2010': '49b6cd8183be7acaf580984961d0bffc', '22 October 2010': '0f54a4f4776262946481393eb211cac0'}, '6hrPlev': {'11 May 2010': 'b8d13f7aaa2296af505a68dc6608c665', '19 October 2010': '8359621ab81242b8b891194e7b1a8006', '12 May 2010': '3d79c767038805af92b29f0d35ed3181', '23 August 2010': 'a0cf4faa32d6d70f32d5691d1df835e2', '01 June 2010': '9593abe01052c91403fcda79896635e1', '01 July 2010': '7d2d2d81c44c69bd1b752b1e5853da51', '11 November 2010': '0b0cde80deef0a0149ee87334bc9b915', '12 March 2010': 'd9cd927f52f494b19cbae19ab80812d9', '22 March 2010': 'e01082cc0a5a732cc62f612abb9b9985', '07 July 2010': 'fd2e3a860e08582a7d091b8d76780b51', '17 September 2010': 'fb420cd690a8dce494fe881d55dd12d3', '29 April 2010': '340e7ecdf04ee54bc4d41a8ea57b2793', '08 July 2010': 'a49f3b6ecde9e2dcb76f9b99d770a4a8', '24 May 2010': '867a083d0dd5807e2bbd057c1f84e572', '09 June 2010': 'c8a7205bc95fda5d97160a4727cb5433', '02 April 2010': '2df2ba0c09cc65a054ca529812e96ebc', '26 April 2010': 'e73240fb5cc142534cfb1dfd68a2c581', '14 September 2010': 'c8249d3d4a79b79444c4b31f9d1f880f', '02 August 2010': '97a7eb1583bf9a816b2bd7d84b762f9a', '25 October 2010': '8e14c5beaeea6185824908626ca399cc', '12 November 2010': 'b8a45259fa23a628ff56429905b29431', '10 June 2010': 'b0a75f15ace1c8a7dea30ecf4644b202', '28 May 2010': 'c1644081c2dbc4d8dfd85f1e46ea9608', '22 October 2010': 'f7aefdc7bcab370905d2ba572576c147'}, 'Lmon': {'11 May 2010': '3bdcaebc6b08a7cf84415feeebed8b9c', '19 October 2010': '8708d6b811ce32c5ac3e719701b14ce4', '12 May 2010': 'cde39468cd5a720342c94322249adf63', '23 August 2010': '3adb2b84ff9e8210239a898e53f5389e', '01 June 2010': 'c48b42eebfd300346db30ce97f70737a', '01 July 2010': 'cb7918fa6a401588ea5b194aaa1f481f', '11 November 2010': 'aff8b007563b8c83aec4d731b21835d1', '12 March 2010': '5f1e824244e15c318d61f9c0e539f8c2', '22 March 2010': 'a268b38f8737db32cf38be9b5f997dbc', '07 July 2010': '8d8da76e0dcfadd9cad44cb4a187c4fb', '17 September 2010': 'ceb4ec55b9ad65c6f8d4ef3aff1b8ca1', '29 April 2010': '486b93eeab6a8793a42b2ba233079b6a', '08 July 2010': '5aaeda289feb0bee3496e285042f6b72', '24 May 2010': '2d93d785985c4d6c29da2f33368f61e5', '09 June 2010': '24235e017983479779ba51d8187fe0d9', '02 April 2010': 'ac27db67ef68191b5d710de35ca2d6b1', '26 April 2010': '6ca0347f544e3cbdb6f036f7f78b1669', '14 September 2010': 'c7a5c6fae283b7a4ae764a8b0a6cf6b0', '02 August 2010': 'ba5be640353d2ba4bac20188c9438474', '25 October 2010': '4bcce5e25736cea8e87a0cf8df09d34b', '12 November 2010': '4e65f23a1cd47b3cbe702ff175acc8f6', '10 June 2010': '53a27e7c52ace60c3bfa0bfd66c0fe4a', '28 May 2010': 'abfd32f1054e75241246b8a4449b0eba', '22 October 2010': '1e6fa7d06912c4884f3f72cea9eb2492'}, 'LImon': {'11 May 2010': '2c39ed63325a36eb52e9425cb4a16a1f', '19 October 2010': 'df91f6e721af3fc4d1d8358b1c709255', '12 May 2010': '2e68c69013fe51ec2c3850361ff39732', '23 August 2010': 'e8b5f402770c03fbec87cb26f4c1c3cc', '01 June 2010': 'd0621fc868ff7c9b891e9780b9ab510e', '01 July 2010': '4a435e63edd293e2638156647a8d7d7e', '11 November 2010': '89a033f5ceb8d6f13b7ef728dbf738fa', '12 March 2010': 'bc6b4c7356aac811cc5712a1f10c17ee', '22 March 2010': '031807f20998b0c51a8047d3ceb12262', '07 July 2010': 'b2c497d9da0a240d17b56ed376c0ae88', '17 September 2010': 'a58d1ba22107a26336ab73b6d712339d', '29 April 2010': 'ced6aa36efacd3afc3f2ce7255b30ae5', '08 July 2010': '964bf6217e86c6fa7f0d047fa688bca6', '24 May 2010': '81451608bae8fbaa0ef31578b83718cb', '09 June 2010': 'b11403de802f1788fc788ed12f22b548', '02 April 2010': 'ab39191bfac44f43ab9f50e330e20bf1', '26 April 2010': '2ea85da118570c7aa0de9b33671eb302', '14 September 2010': '85b01c51d739c91b9796720d36bf1abd', '02 August 2010': '87e81cbc9bc41adce07f59e9e416e975', '25 October 2010': '713e2174b2678f385bb233cb63467945', '12 November 2010': 'b770dc951b9dfd10cb4402dcaa33c989', '10 June 2010': 'b1a9cedd3e8f0e05132021c71e9d7b1e', '28 May 2010': 'df3676a657c1b1822899320d91cdd45e', '22 October 2010': '43760bb3c90e35316e52f690cf7c9c8b'}, 'Oclim': {'11 May 2010': 'ea596ac32110c9af6ad049df23cf79d7', '19 October 2010': '4351865a4833758c697babe4d68c255b', '12 May 2010': '1e672f0814f4ff3b51a56b02efa6c223', '23 August 2010': '41857f0b51401b5b692a61b8fe73db7c', '01 June 2010': '821d9f0558ee9f605382e04e48313832', '01 July 2010': 'cf37d4050f491b3054ce3aff355f325a', '11 November 2010': 'a0c992659e5ed596fdc3f814123e5ef7', '12 March 2010': '66bbb3618539b3bd9720ee049ac3f8d4', '22 March 2010': 'af94edbc6cbef78448bfbf205ff53b04', '07 July 2010': 'dbdbcab9408bccebb9f03f59f9b253bc', '17 September 2010': '0bb5e199da1eea041c2411395e6c29d4', '29 April 2010': 'da5cdaae6606be02175b87f4cc73cd1c', '08 July 2010': '5a1650d13a86a83443fff681c7303707', '24 May 2010': 'a2a559c2dc85db5701276e96d5325eaf', '09 June 2010': 'e758cabca10ef3eba914e702a82cbc8d', '02 April 2010': '626aa1883608cf471a97824c56d0295a', '26 April 2010': 'c4d9d68f7579b2d83fad74076410d9e3', '14 September 2010': 'a85f9e014db585172e9ae6d20947fa18', '02 August 2010': 'cc1bd091f0b33b35672f656805035da2', '25 October 2010': '278f8f457d03aaf9668f931e1d7f3ab1', '12 November 2010': '840d91afdad624b8241f7ff38de44adb', '10 June 2010': '48d6fa0d97b3a6159cf039f2a5e41803', '28 May 2010': 'cce203c9dbc5d1cdd4f8639feb11757e', '22 October 2010': 'f0995bb3540918248642d83f676b8c83'}, 'aero': {'11 May 2010': 'f3f04dd2803fd9f09378d1e070386238', '19 October 2010': 'a83891905bd34dee25925aa6d27471ce', '12 May 2010': 'c0414e2be70762db35f57263b0db6bfc', '23 August 2010': '2b6afd9f307ba2e81eb0484a12cc6781', '01 June 2010': '889c4d971b1cdceaa0192ba2f19e68a5', '01 July 2010': '4e6c9a559b9cabfc3c6edc2c75fe05de', '11 November 2010': '1c4fdbbe285eb1db3f496cd94c016c06', '12 March 2010': '311409dd6ec2f6ca3570883eaf4031d9', '22 March 2010': '6334a63f2189bb96a76f901ca28adee8', '07 July 2010': '65234a982c7456d02ce35e21066079e0', '17 September 2010': 'd60806d6e45693c33aa75b72553b4cdb', '29 April 2010': '5820b48505bc340af3edb4c0c42157b6', '08 July 2010': 'f0c9067404749b76ac2b4088578fc843', '24 May 2010': '9c14b6368899a609bddcdf4f2c6a87e0', '09 June 2010': 'fc8c961ac56217ed234bcbd462febb39', '02 April 2010': '7dfe8b88ec6d4469f73fda3656878961', '26 April 2010': '6cf1c533eac9c1498e31bf2f7b428257', '14 September 2010': 'dbf204fe4bbe08dd65650b4b35fcc0e2', '02 August 2010': 'cd16909cd1f10eefe3237b99ff2ad51a', '25 October 2010': '202ffc3995132adb3bd2385b89cc3f66', '12 November 2010': '93f59c16ecbdc49c1ee4dee99777a956', '10 June 2010': '8fc5f354376074baa9ce77627428c311', '28 May 2010': '8feb21a197cb526881cc9657bdab9330', '22 October 2010': 'bd0d2155a9d5243191ba6b17d5fbbefe'}, 'cfSites': {'11 May 2010': '80506c07ed63befd33f9f727b78bde55', '19 October 2010': '80264b0dd9e203ce916542fa15c6d272', '12 May 2010': '0ebecf85ba30b2223360a29ece880be4', '23 August 2010': '4a2774cbbde4d5f69c9541e6b6248d00', '01 June 2010': '2eb2e9a6a1db0e18dac73e04e0dfbe47', '01 July 2010': '96628b3875e74a8a515d0a1e500710d8', '11 November 2010': '6be9b509f02f6118bfd2b0062f27df9a', '12 March 2010': '192f07ba869af3794494ea0dc3a72a54', '22 March 2010': 'fe60fd7cfbaccc08c75a91dc67a68b99', '07 July 2010': 'e0d03c9f9ab6151b27e5af641a6ac00d', '17 September 2010': '7876f3c8b9f817348f45af63226af05e', '29 April 2010': '27c4a93f80a4282ef69f23391c699f01', '08 July 2010': '3d8a12a9970f8c0c8a0ff108451df3e2', '24 May 2010': 'bf9e8c5576fd70aa92d11fe3d4317e9b', '09 June 2010': '569fd7b653d4aa55cd229227caa67822', '02 April 2010': '650c6032a9cbeedb142a41b923e85f22', '26 April 2010': '6fe91d86689e2fa1faa2fe7164876ace', '14 September 2010': 'e7d36b34ba0a0142e8c24a0c43c6b15a', '02 August 2010': '2c97faef852f74429882098d038c7b96', '25 October 2010': 'ff381193c4e025bda3c315dc7018ea08', '12 November 2010': '9c695f150db16c9cade9ef273014b4bc', '10 June 2010': '7aeea92e38f9ca3fccf5e92f9cbbbeee', '28 May 2010': '7eea57df7c12c4d8524da28aa78fbe94', '22 October 2010': '74a468c3cce5927e1c2ce35238df2146'}, 'day': {'11 May 2010': '097898d568f041c78a5762c3204741d1', '19 October 2010': 'ad573249f4be2751a5f15acdbd756053', '12 May 2010': 'f130b8ed0705d49c749410c0519c50cb', '23 August 2010': '1b99baf1d84aa896f697fa1ae705df49', '01 June 2010': 'f6d5b1f45bf471d6bdbe263511650daa', '01 July 2010': '45a083491108c94c715b099123340e9f', '11 November 2010': '02fff6a0b228e556b1acb03a9e553fa7', '12 March 2010': '6bae9f270feeb5f2d2b5c84de2169d64', '22 March 2010': '4d3286d18536c46089ed5dd49cfc0ea9', '07 July 2010': 'de282381d47617aa063a359b5f5724c3', '17 September 2010': '63c2ab71b595df5d8d61abc68f564361', '29 April 2010': 'bb5cba05f7393acf99fb834fc54386aa', '08 July 2010': 'fbcb83f3874789bb7fbb8f47c97d9582', '24 May 2010': '939277b33ceefa59d757386f19df3daf', '09 June 2010': 'd734c20e0247d5225e251a20e81ea334', '02 April 2010': 'a66b43262f9760ebcfed1cb559e9605b', '26 April 2010': '12db04043a6cc43b26a6d867eb1e5d4c', '14 September 2010': 'a4406d244d9b328488dc24529e0a4e22', '02 August 2010': 'e4b6951c15b2bdba4ae7cb895c1dc807', '25 October 2010': '783d839767ea9baa68394aefe0d77366', '12 November 2010': '53fa6f63b86081d1c644183416239052', '10 June 2010': 'f57b2364514d33637da41688a903add2', '28 May 2010': '71ced75543fdae82dd6bc69b91052690', '22 October 2010': 'fbf1870c17e4797ed126e747f182b660'}, 'cfDa': {'11 March 2010': 'dfc578ef208dab9572d445e4ca3834ed'}}} \ No newline at end of file diff --git a/config.guess b/config.guess deleted file mode 100755 index 917bbc50f36af7527bb91465a90821815ecefcc4..0000000000000000000000000000000000000000 --- a/config.guess +++ /dev/null @@ -1,1463 +0,0 @@ -#! /bin/sh -# Attempt to guess a canonical system name. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. - -timestamp='2005-07-08' - -# This file is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -# 02110-1301, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - - -# Originally written by Per Bothner . -# Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. -# -# This script attempts to guess a canonical system name similar to -# config.sub. If it succeeds, it prints the system name on stdout, and -# exits with 0. Otherwise, it exits with 1. -# -# The plan is that this can be called by configure scripts if you -# don't specify an explicit build system type. - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] - -Output the configuration name of the system \`$me' is run on. - -Operation modes: - -h, --help print this help, then exit - -t, --time-stamp print date of last modification, then exit - -v, --version print version number, then exit - -Report bugs and patches to ." - -version="\ -GNU config.guess ($timestamp) - -Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. - -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do - case $1 in - --time-stamp | --time* | -t ) - echo "$timestamp" ; exit ;; - --version | -v ) - echo "$version" ; exit ;; - --help | --h* | -h ) - echo "$usage"; exit ;; - -- ) # Stop option processing - shift; break ;; - - ) # Use stdin as input. - break ;; - -* ) - echo "$me: invalid option $1$help" >&2 - exit 1 ;; - * ) - break ;; - esac -done - -if test $# != 0; then - echo "$me: too many arguments$help" >&2 - exit 1 -fi - -trap 'exit 1' 1 2 15 - -# CC_FOR_BUILD -- compiler used by this script. Note that the use of a -# compiler to aid in system detection is discouraged as it requires -# temporary files to be created and, as you can see below, it is a -# headache to deal with in a portable fashion. - -# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still -# use `HOST_CC' if defined, but it is deprecated. - -# Portable tmp directory creation inspired by the Autoconf team. - -set_cc_for_build=' -trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; -trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; -: ${TMPDIR=/tmp} ; - { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || - { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || - { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || - { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; -dummy=$tmp/dummy ; -tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; -case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,) echo "int x;" > $dummy.c ; - for c in cc gcc c89 c99 ; do - if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then - CC_FOR_BUILD="$c"; break ; - fi ; - done ; - if test x"$CC_FOR_BUILD" = x ; then - CC_FOR_BUILD=no_compiler_found ; - fi - ;; - ,,*) CC_FOR_BUILD=$CC ;; - ,*,*) CC_FOR_BUILD=$HOST_CC ;; -esac ; set_cc_for_build= ;' - -# This is needed to find uname on a Pyramid OSx when run in the BSD universe. -# (ghazi@noc.rutgers.edu 1994-08-24) -if (test -f /.attbin/uname) >/dev/null 2>&1 ; then - PATH=$PATH:/.attbin ; export PATH -fi - -UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown -UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown -UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown -UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown - -# Note: order is significant - the case branches are not exclusive. - -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in - *:NetBSD:*:*) - # NetBSD (nbsd) targets should (where applicable) match one or - # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, - # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently - # switched to ELF, *-*-netbsd* would select the old - # object file format. This provides both forward - # compatibility and a consistent mechanism for selecting the - # object file format. - # - # Note: NetBSD doesn't particularly care about the vendor - # portion of the name. We always set it to "unknown". - sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || echo unknown)` - case "${UNAME_MACHINE_ARCH}" in - armeb) machine=armeb-unknown ;; - arm*) machine=arm-unknown ;; - sh3el) machine=shl-unknown ;; - sh3eb) machine=sh-unknown ;; - *) machine=${UNAME_MACHINE_ARCH}-unknown ;; - esac - # The Operating System including object format, if it has switched - # to ELF recently, or will in the future. - case "${UNAME_MACHINE_ARCH}" in - arm*|i386|m68k|ns32k|sh3*|sparc|vax) - eval $set_cc_for_build - if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep __ELF__ >/dev/null - then - # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). - # Return netbsd for either. FIX? - os=netbsd - else - os=netbsdelf - fi - ;; - *) - os=netbsd - ;; - esac - # The OS release - # Debian GNU/NetBSD machines have a different userland, and - # thus, need a distinct triplet. However, they do not need - # kernel version information, so it can be replaced with a - # suitable tag, in the style of linux-gnu. - case "${UNAME_VERSION}" in - Debian*) - release='-gnu' - ;; - *) - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` - ;; - esac - # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: - # contains redundant information, the shorter form: - # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}" - exit ;; - *:OpenBSD:*:*) - UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} - exit ;; - *:ekkoBSD:*:*) - echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} - exit ;; - macppc:MirBSD:*:*) - echo powerppc-unknown-mirbsd${UNAME_RELEASE} - exit ;; - *:MirBSD:*:*) - echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} - exit ;; - alpha:OSF1:*:*) - case $UNAME_RELEASE in - *4.0) - UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` - ;; - *5.*) - UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` - ;; - esac - # According to Compaq, /usr/sbin/psrinfo has been available on - # OSF/1 and Tru64 systems produced since 1995. I hope that - # covers most systems running today. This code pipes the CPU - # types through head -n 1, so we only detect the type of CPU 0. - ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` - case "$ALPHA_CPU_TYPE" in - "EV4 (21064)") - UNAME_MACHINE="alpha" ;; - "EV4.5 (21064)") - UNAME_MACHINE="alpha" ;; - "LCA4 (21066/21068)") - UNAME_MACHINE="alpha" ;; - "EV5 (21164)") - UNAME_MACHINE="alphaev5" ;; - "EV5.6 (21164A)") - UNAME_MACHINE="alphaev56" ;; - "EV5.6 (21164PC)") - UNAME_MACHINE="alphapca56" ;; - "EV5.7 (21164PC)") - UNAME_MACHINE="alphapca57" ;; - "EV6 (21264)") - UNAME_MACHINE="alphaev6" ;; - "EV6.7 (21264A)") - UNAME_MACHINE="alphaev67" ;; - "EV6.8CB (21264C)") - UNAME_MACHINE="alphaev68" ;; - "EV6.8AL (21264B)") - UNAME_MACHINE="alphaev68" ;; - "EV6.8CX (21264D)") - UNAME_MACHINE="alphaev68" ;; - "EV6.9A (21264/EV69A)") - UNAME_MACHINE="alphaev69" ;; - "EV7 (21364)") - UNAME_MACHINE="alphaev7" ;; - "EV7.9 (21364A)") - UNAME_MACHINE="alphaev79" ;; - esac - # A Pn.n version is a patched version. - # A Vn.n version is a released version. - # A Tn.n version is a released field test version. - # A Xn.n version is an unreleased experimental baselevel. - # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - exit ;; - Alpha\ *:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # Should we change UNAME_MACHINE based on the output of uname instead - # of the specific Alpha model? - echo alpha-pc-interix - exit ;; - 21064:Windows_NT:50:3) - echo alpha-dec-winnt3.5 - exit ;; - Amiga*:UNIX_System_V:4.0:*) - echo m68k-unknown-sysv4 - exit ;; - *:[Aa]miga[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-amigaos - exit ;; - *:[Mm]orph[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-morphos - exit ;; - *:OS/390:*:*) - echo i370-ibm-openedition - exit ;; - *:z/VM:*:*) - echo s390-ibm-zvmoe - exit ;; - *:OS400:*:*) - echo powerpc-ibm-os400 - exit ;; - arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix${UNAME_RELEASE} - exit ;; - arm:riscos:*:*|arm:RISCOS:*:*) - echo arm-unknown-riscos - exit ;; - SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) - echo hppa1.1-hitachi-hiuxmpp - exit ;; - Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) - # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. - if test "`(/bin/universe) 2>/dev/null`" = att ; then - echo pyramid-pyramid-sysv3 - else - echo pyramid-pyramid-bsd - fi - exit ;; - NILE*:*:*:dcosx) - echo pyramid-pyramid-svr4 - exit ;; - DRS?6000:unix:4.0:6*) - echo sparc-icl-nx6 - exit ;; - DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) - case `/usr/bin/uname -p` in - sparc) echo sparc-icl-nx7; exit ;; - esac ;; - sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - i86pc:SunOS:5.*:*) - echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - sun4*:SunOS:6*:*) - # According to config.sub, this is the proper way to canonicalize - # SunOS6. Hard to guess exactly what SunOS6 will be like, but - # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - sun4*:SunOS:*:*) - case "`/usr/bin/arch -k`" in - Series*|S4*) - UNAME_RELEASE=`uname -v` - ;; - esac - # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` - exit ;; - sun3*:SunOS:*:*) - echo m68k-sun-sunos${UNAME_RELEASE} - exit ;; - sun*:*:4.2BSD:*) - UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 - case "`/bin/arch`" in - sun3) - echo m68k-sun-sunos${UNAME_RELEASE} - ;; - sun4) - echo sparc-sun-sunos${UNAME_RELEASE} - ;; - esac - exit ;; - aushp:SunOS:*:*) - echo sparc-auspex-sunos${UNAME_RELEASE} - exit ;; - # The situation for MiNT is a little confusing. The machine name - # can be virtually everything (everything which is not - # "atarist" or "atariste" at least should have a processor - # > m68000). The system name ranges from "MiNT" over "FreeMiNT" - # to the lowercase version "mint" (or "freemint"). Finally - # the system name "TOS" denotes a system which is actually not - # MiNT. But MiNT is downward compatible to TOS, so this should - # be no problem. - atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit ;; - atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit ;; - *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit ;; - milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} - exit ;; - hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} - exit ;; - *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} - exit ;; - m68k:machten:*:*) - echo m68k-apple-machten${UNAME_RELEASE} - exit ;; - powerpc:machten:*:*) - echo powerpc-apple-machten${UNAME_RELEASE} - exit ;; - RISC*:Mach:*:*) - echo mips-dec-mach_bsd4.3 - exit ;; - RISC*:ULTRIX:*:*) - echo mips-dec-ultrix${UNAME_RELEASE} - exit ;; - VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix${UNAME_RELEASE} - exit ;; - 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix${UNAME_RELEASE} - exit ;; - mips:*:*:UMIPS | mips:*:*:RISCos) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c -#ifdef __cplusplus -#include /* for printf() prototype */ - int main (int argc, char *argv[]) { -#else - int main (argc, argv) int argc; char *argv[]; { -#endif - #if defined (host_mips) && defined (MIPSEB) - #if defined (SYSTYPE_SYSV) - printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); - #endif - #if defined (SYSTYPE_SVR4) - printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); - #endif - #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) - printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); - #endif - #endif - exit (-1); - } -EOF - $CC_FOR_BUILD -o $dummy $dummy.c && - dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && - SYSTEM_NAME=`$dummy $dummyarg` && - { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos${UNAME_RELEASE} - exit ;; - Motorola:PowerMAX_OS:*:*) - echo powerpc-motorola-powermax - exit ;; - Motorola:*:4.3:PL8-*) - echo powerpc-harris-powermax - exit ;; - Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) - echo powerpc-harris-powermax - exit ;; - Night_Hawk:Power_UNIX:*:*) - echo powerpc-harris-powerunix - exit ;; - m88k:CX/UX:7*:*) - echo m88k-harris-cxux7 - exit ;; - m88k:*:4*:R4*) - echo m88k-motorola-sysv4 - exit ;; - m88k:*:3*:R3*) - echo m88k-motorola-sysv3 - exit ;; - AViiON:dgux:*:*) - # DG/UX returns AViiON for all architectures - UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] - then - if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ - [ ${TARGET_BINARY_INTERFACE}x = x ] - then - echo m88k-dg-dgux${UNAME_RELEASE} - else - echo m88k-dg-dguxbcs${UNAME_RELEASE} - fi - else - echo i586-dg-dgux${UNAME_RELEASE} - fi - exit ;; - M88*:DolphinOS:*:*) # DolphinOS (SVR3) - echo m88k-dolphin-sysv3 - exit ;; - M88*:*:R3*:*) - # Delta 88k system running SVR3 - echo m88k-motorola-sysv3 - exit ;; - XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) - echo m88k-tektronix-sysv3 - exit ;; - Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) - echo m68k-tektronix-bsd - exit ;; - *:IRIX*:*:*) - echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` - exit ;; - ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. - echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id - exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' - i*86:AIX:*:*) - echo i386-ibm-aix - exit ;; - ia64:AIX:*:*) - if [ -x /usr/bin/oslevel ] ; then - IBM_REV=`/usr/bin/oslevel` - else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} - fi - echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} - exit ;; - *:AIX:2:3) - if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - - main() - { - if (!__power_pc()) - exit(1); - puts("powerpc-ibm-aix3.2.5"); - exit(0); - } -EOF - if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` - then - echo "$SYSTEM_NAME" - else - echo rs6000-ibm-aix3.2.5 - fi - elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then - echo rs6000-ibm-aix3.2.4 - else - echo rs6000-ibm-aix3.2 - fi - exit ;; - *:AIX:*:[45]) - IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then - IBM_ARCH=rs6000 - else - IBM_ARCH=powerpc - fi - if [ -x /usr/bin/oslevel ] ; then - IBM_REV=`/usr/bin/oslevel` - else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} - fi - echo ${IBM_ARCH}-ibm-aix${IBM_REV} - exit ;; - *:AIX:*:*) - echo rs6000-ibm-aix - exit ;; - ibmrt:4.4BSD:*|romp-ibm:BSD:*) - echo romp-ibm-bsd4.4 - exit ;; - ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to - exit ;; # report: romp-ibm BSD 4.3 - *:BOSX:*:*) - echo rs6000-bull-bosx - exit ;; - DPX/2?00:B.O.S.:*:*) - echo m68k-bull-sysv3 - exit ;; - 9000/[34]??:4.3bsd:1.*:*) - echo m68k-hp-bsd - exit ;; - hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) - echo m68k-hp-bsd4.4 - exit ;; - 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - case "${UNAME_MACHINE}" in - 9000/31? ) HP_ARCH=m68000 ;; - 9000/[34]?? ) HP_ARCH=m68k ;; - 9000/[678][0-9][0-9]) - if [ -x /usr/bin/getconf ]; then - sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` - sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "${sc_cpu_version}" in - 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 - 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 - 532) # CPU_PA_RISC2_0 - case "${sc_kernel_bits}" in - 32) HP_ARCH="hppa2.0n" ;; - 64) HP_ARCH="hppa2.0w" ;; - '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 - esac ;; - esac - fi - if [ "${HP_ARCH}" = "" ]; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - - #define _HPUX_SOURCE - #include - #include - - int main () - { - #if defined(_SC_KERNEL_BITS) - long bits = sysconf(_SC_KERNEL_BITS); - #endif - long cpu = sysconf (_SC_CPU_VERSION); - - switch (cpu) - { - case CPU_PA_RISC1_0: puts ("hppa1.0"); break; - case CPU_PA_RISC1_1: puts ("hppa1.1"); break; - case CPU_PA_RISC2_0: - #if defined(_SC_KERNEL_BITS) - switch (bits) - { - case 64: puts ("hppa2.0w"); break; - case 32: puts ("hppa2.0n"); break; - default: puts ("hppa2.0"); break; - } break; - #else /* !defined(_SC_KERNEL_BITS) */ - puts ("hppa2.0"); break; - #endif - default: puts ("hppa1.0"); break; - } - exit (0); - } -EOF - (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` - test -z "$HP_ARCH" && HP_ARCH=hppa - fi ;; - esac - if [ ${HP_ARCH} = "hppa2.0w" ] - then - eval $set_cc_for_build - - # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating - # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler - # generating 64-bit code. GNU and HP use different nomenclature: - # - # $ CC_FOR_BUILD=cc ./config.guess - # => hppa2.0w-hp-hpux11.23 - # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess - # => hppa64-hp-hpux11.23 - - if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | - grep __LP64__ >/dev/null - then - HP_ARCH="hppa2.0w" - else - HP_ARCH="hppa64" - fi - fi - echo ${HP_ARCH}-hp-hpux${HPUX_REV} - exit ;; - ia64:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux${HPUX_REV} - exit ;; - 3050*:HI-UX:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - int - main () - { - long cpu = sysconf (_SC_CPU_VERSION); - /* The order matters, because CPU_IS_HP_MC68K erroneously returns - true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct - results, however. */ - if (CPU_IS_PA_RISC (cpu)) - { - switch (cpu) - { - case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; - case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; - case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; - default: puts ("hppa-hitachi-hiuxwe2"); break; - } - } - else if (CPU_IS_HP_MC68K (cpu)) - puts ("m68k-hitachi-hiuxwe2"); - else puts ("unknown-hitachi-hiuxwe2"); - exit (0); - } -EOF - $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && - { echo "$SYSTEM_NAME"; exit; } - echo unknown-hitachi-hiuxwe2 - exit ;; - 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) - echo hppa1.1-hp-bsd - exit ;; - 9000/8??:4.3bsd:*:*) - echo hppa1.0-hp-bsd - exit ;; - *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) - echo hppa1.0-hp-mpeix - exit ;; - hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) - echo hppa1.1-hp-osf - exit ;; - hp8??:OSF1:*:*) - echo hppa1.0-hp-osf - exit ;; - i*86:OSF1:*:*) - if [ -x /usr/sbin/sysversion ] ; then - echo ${UNAME_MACHINE}-unknown-osf1mk - else - echo ${UNAME_MACHINE}-unknown-osf1 - fi - exit ;; - parisc*:Lites*:*:*) - echo hppa1.1-hp-lites - exit ;; - C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) - echo c1-convex-bsd - exit ;; - C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit ;; - C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) - echo c34-convex-bsd - exit ;; - C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) - echo c38-convex-bsd - exit ;; - C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) - echo c4-convex-bsd - exit ;; - CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*[A-Z]90:*:*:*) - echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ - | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ - -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ - -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*TS:*:*:*) - echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*SV1:*:*:*) - echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) - FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` - echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit ;; - 5000:UNIX_System_V:4.*:*) - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` - echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit ;; - i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} - exit ;; - sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi${UNAME_RELEASE} - exit ;; - *:BSD/OS:*:*) - echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} - exit ;; - *:FreeBSD:*:*) - echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` - exit ;; - i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin - exit ;; - i*:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 - exit ;; - i*:windows32*:*) - # uname -m includes "-pc" on this system. - echo ${UNAME_MACHINE}-mingw32 - exit ;; - i*:PW*:*) - echo ${UNAME_MACHINE}-pc-pw32 - exit ;; - x86:Interix*:[34]*) - echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' - exit ;; - [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) - echo i${UNAME_MACHINE}-pc-mks - exit ;; - i*:Windows_NT*:* | Pentium*:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we - # UNAME_MACHINE based on the output of uname instead of i386? - echo i586-pc-interix - exit ;; - i*:UWIN*:*) - echo ${UNAME_MACHINE}-pc-uwin - exit ;; - amd64:CYGWIN*:*:*) - echo x86_64-unknown-cygwin - exit ;; - p*:CYGWIN*:*) - echo powerpcle-unknown-cygwin - exit ;; - prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - *:GNU:*:*) - # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` - exit ;; - *:GNU/*:*:*) - # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu - exit ;; - i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix - exit ;; - arm*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - cris:Linux:*:*) - echo cris-axis-linux-gnu - exit ;; - crisv32:Linux:*:*) - echo crisv32-axis-linux-gnu - exit ;; - frv:Linux:*:*) - echo frv-unknown-linux-gnu - exit ;; - ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - mips:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #undef CPU - #undef mips - #undef mipsel - #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mipsel - #else - #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips - #else - CPU= - #endif - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } - ;; - mips64:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #undef CPU - #undef mips64 - #undef mips64el - #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mips64el - #else - #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips64 - #else - CPU= - #endif - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } - ;; - ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu - exit ;; - ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu - exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in - EV5) UNAME_MACHINE=alphaev5 ;; - EV56) UNAME_MACHINE=alphaev56 ;; - PCA56) UNAME_MACHINE=alphapca56 ;; - PCA57) UNAME_MACHINE=alphapca56 ;; - EV6) UNAME_MACHINE=alphaev6 ;; - EV67) UNAME_MACHINE=alphaev67 ;; - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} - exit ;; - parisc:Linux:*:* | hppa:Linux:*:*) - # Look for CPU level - case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-gnu ;; - PA8*) echo hppa2.0-unknown-linux-gnu ;; - *) echo hppa-unknown-linux-gnu ;; - esac - exit ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu - exit ;; - s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux - exit ;; - sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - x86_64:Linux:*:*) - echo x86_64-unknown-linux-gnu - exit ;; - i*86:Linux:*:*) - # The BFD linker knows what the default object file format is, so - # first see if it will tell us. cd to the root directory to prevent - # problems with other programs or directories called `ld' in the path. - # Set LC_ALL=C to ensure ld outputs messages in English. - ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ - | sed -ne '/supported targets:/!d - s/[ ][ ]*/ /g - s/.*supported targets: *// - s/ .*// - p'` - case "$ld_supported_targets" in - elf32-i386) - TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" - ;; - a.out-i386-linux) - echo "${UNAME_MACHINE}-pc-linux-gnuaout" - exit ;; - coff-i386) - echo "${UNAME_MACHINE}-pc-linux-gnucoff" - exit ;; - "") - # Either a pre-BFD a.out linker (linux-gnuoldld) or - # one that does not give us useful --help. - echo "${UNAME_MACHINE}-pc-linux-gnuoldld" - exit ;; - esac - # Determine whether the default compiler is a.out or elf - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - #ifdef __ELF__ - # ifdef __GLIBC__ - # if __GLIBC__ >= 2 - LIBC=gnu - # else - LIBC=gnulibc1 - # endif - # else - LIBC=gnulibc1 - # endif - #else - #ifdef __INTEL_COMPILER - LIBC=gnu - #else - LIBC=gnuaout - #endif - #endif - #ifdef __dietlibc__ - LIBC=dietlibc - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` - test x"${LIBC}" != x && { - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" - exit - } - test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } - ;; - i*86:DYNIX/ptx:4*:*) - # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. - # earlier versions are messed up and put the nodename in both - # sysname and nodename. - echo i386-sequent-sysv4 - exit ;; - i*86:UNIX_SV:4.2MP:2.*) - # Unixware is an offshoot of SVR4, but it has its own version - # number series starting with 2... - # I am not positive that other SVR4 systems won't match this, - # I just have to hope. -- rms. - # Use sysv4.2uw... so that sysv4* matches it. - echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} - exit ;; - i*86:OS/2:*:*) - # If we were able to find `uname', then EMX Unix compatibility - # is probably installed. - echo ${UNAME_MACHINE}-pc-os2-emx - exit ;; - i*86:XTS-300:*:STOP) - echo ${UNAME_MACHINE}-unknown-stop - exit ;; - i*86:atheos:*:*) - echo ${UNAME_MACHINE}-unknown-atheos - exit ;; - i*86:syllable:*:*) - echo ${UNAME_MACHINE}-pc-syllable - exit ;; - i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) - echo i386-unknown-lynxos${UNAME_RELEASE} - exit ;; - i*86:*DOS:*:*) - echo ${UNAME_MACHINE}-pc-msdosdjgpp - exit ;; - i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) - UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` - if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} - else - echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} - fi - exit ;; - i*86:*:5:[678]*) - # UnixWare 7.x, OpenUNIX and OpenServer 6. - case `/bin/uname -X | grep "^Machine"` in - *486*) UNAME_MACHINE=i486 ;; - *Pentium) UNAME_MACHINE=i586 ;; - *Pent*|*Celeron) UNAME_MACHINE=i686 ;; - esac - echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} - exit ;; - i*86:*:3.2:*) - if test -f /usr/options/cb.name; then - UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then - UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` - (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 - (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ - && UNAME_MACHINE=i586 - (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ - && UNAME_MACHINE=i686 - (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ - && UNAME_MACHINE=i686 - echo ${UNAME_MACHINE}-pc-sco$UNAME_REL - else - echo ${UNAME_MACHINE}-pc-sysv32 - fi - exit ;; - pc:*:*:*) - # Left here for compatibility: - # uname -m prints for DJGPP always 'pc', but it prints nothing about - # the processor, so we play safe by assuming i386. - echo i386-pc-msdosdjgpp - exit ;; - Intel:Mach:3*:*) - echo i386-pc-mach3 - exit ;; - paragon:*:*:*) - echo i860-intel-osf1 - exit ;; - i860:*:4.*:*) # i860-SVR4 - if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then - echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 - else # Add other i860-SVR4 vendors below as they are discovered. - echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 - fi - exit ;; - mini*:CTIX:SYS*5:*) - # "miniframe" - echo m68010-convergent-sysv - exit ;; - mc68k:UNIX:SYSTEM5:3.51m) - echo m68k-convergent-sysv - exit ;; - M680?0:D-NIX:5.3:*) - echo m68k-diab-dnix - exit ;; - M68*:*:R3V[5678]*:*) - test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; - 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) - OS_REL='' - test -r /etc/.relid \ - && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } - /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; - 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4; exit; } ;; - m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos${UNAME_RELEASE} - exit ;; - mc68030:UNIX_System_V:4.*:*) - echo m68k-atari-sysv4 - exit ;; - TSUNAMI:LynxOS:2.*:*) - echo sparc-unknown-lynxos${UNAME_RELEASE} - exit ;; - rs6000:LynxOS:2.*:*) - echo rs6000-unknown-lynxos${UNAME_RELEASE} - exit ;; - PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) - echo powerpc-unknown-lynxos${UNAME_RELEASE} - exit ;; - SM[BE]S:UNIX_SV:*:*) - echo mips-dde-sysv${UNAME_RELEASE} - exit ;; - RM*:ReliantUNIX-*:*:*) - echo mips-sni-sysv4 - exit ;; - RM*:SINIX-*:*:*) - echo mips-sni-sysv4 - exit ;; - *:SINIX-*:*:*) - if uname -p 2>/dev/null >/dev/null ; then - UNAME_MACHINE=`(uname -p) 2>/dev/null` - echo ${UNAME_MACHINE}-sni-sysv4 - else - echo ns32k-sni-sysv - fi - exit ;; - PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort - # says - echo i586-unisys-sysv4 - exit ;; - *:UNIX_System_V:4*:FTX*) - # From Gerald Hewes . - # How about differentiating between stratus architectures? -djm - echo hppa1.1-stratus-sysv4 - exit ;; - *:*:*:FTX*) - # From seanf@swdc.stratus.com. - echo i860-stratus-sysv4 - exit ;; - i*86:VOS:*:*) - # From Paul.Green@stratus.com. - echo ${UNAME_MACHINE}-stratus-vos - exit ;; - *:VOS:*:*) - # From Paul.Green@stratus.com. - echo hppa1.1-stratus-vos - exit ;; - mc68*:A/UX:*:*) - echo m68k-apple-aux${UNAME_RELEASE} - exit ;; - news*:NEWS-OS:6*:*) - echo mips-sony-newsos6 - exit ;; - R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) - if [ -d /usr/nec ]; then - echo mips-nec-sysv${UNAME_RELEASE} - else - echo mips-unknown-sysv${UNAME_RELEASE} - fi - exit ;; - BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. - echo powerpc-be-beos - exit ;; - BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. - echo powerpc-apple-beos - exit ;; - BePC:BeOS:*:*) # BeOS running on Intel PC compatible. - echo i586-pc-beos - exit ;; - SX-4:SUPER-UX:*:*) - echo sx4-nec-superux${UNAME_RELEASE} - exit ;; - SX-5:SUPER-UX:*:*) - echo sx5-nec-superux${UNAME_RELEASE} - exit ;; - SX-6:SUPER-UX:*:*) - echo sx6-nec-superux${UNAME_RELEASE} - exit ;; - Power*:Rhapsody:*:*) - echo powerpc-apple-rhapsody${UNAME_RELEASE} - exit ;; - *:Rhapsody:*:*) - echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} - exit ;; - *:Darwin:*:*) - UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - case $UNAME_PROCESSOR in - *86) UNAME_PROCESSOR=i686 ;; - unknown) UNAME_PROCESSOR=powerpc ;; - esac - echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} - exit ;; - *:procnto*:*:* | *:QNX:[0123456789]*:*) - UNAME_PROCESSOR=`uname -p` - if test "$UNAME_PROCESSOR" = "x86"; then - UNAME_PROCESSOR=i386 - UNAME_MACHINE=pc - fi - echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} - exit ;; - *:QNX:*:4*) - echo i386-pc-qnx - exit ;; - NSE-?:NONSTOP_KERNEL:*:*) - echo nse-tandem-nsk${UNAME_RELEASE} - exit ;; - NSR-?:NONSTOP_KERNEL:*:*) - echo nsr-tandem-nsk${UNAME_RELEASE} - exit ;; - *:NonStop-UX:*:*) - echo mips-compaq-nonstopux - exit ;; - BS2000:POSIX*:*:*) - echo bs2000-siemens-sysv - exit ;; - DS/*:UNIX_System_V:*:*) - echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} - exit ;; - *:Plan9:*:*) - # "uname -m" is not consistent, so use $cputype instead. 386 - # is converted to i386 for consistency with other x86 - # operating systems. - if test "$cputype" = "386"; then - UNAME_MACHINE=i386 - else - UNAME_MACHINE="$cputype" - fi - echo ${UNAME_MACHINE}-unknown-plan9 - exit ;; - *:TOPS-10:*:*) - echo pdp10-unknown-tops10 - exit ;; - *:TENEX:*:*) - echo pdp10-unknown-tenex - exit ;; - KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) - echo pdp10-dec-tops20 - exit ;; - XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) - echo pdp10-xkl-tops20 - exit ;; - *:TOPS-20:*:*) - echo pdp10-unknown-tops20 - exit ;; - *:ITS:*:*) - echo pdp10-unknown-its - exit ;; - SEI:*:*:SEIUX) - echo mips-sei-seiux${UNAME_RELEASE} - exit ;; - *:DragonFly:*:*) - echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` - exit ;; - *:*VMS:*:*) - UNAME_MACHINE=`(uname -p) 2>/dev/null` - case "${UNAME_MACHINE}" in - A*) echo alpha-dec-vms ; exit ;; - I*) echo ia64-dec-vms ; exit ;; - V*) echo vax-dec-vms ; exit ;; - esac ;; - *:XENIX:*:SysV) - echo i386-pc-xenix - exit ;; - i*86:skyos:*:*) - echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' - exit ;; -esac - -#echo '(No uname command or uname output not recognized.)' 1>&2 -#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 - -eval $set_cc_for_build -cat >$dummy.c < -# include -#endif -main () -{ -#if defined (sony) -#if defined (MIPSEB) - /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, - I don't know.... */ - printf ("mips-sony-bsd\n"); exit (0); -#else -#include - printf ("m68k-sony-newsos%s\n", -#ifdef NEWSOS4 - "4" -#else - "" -#endif - ); exit (0); -#endif -#endif - -#if defined (__arm) && defined (__acorn) && defined (__unix) - printf ("arm-acorn-riscix\n"); exit (0); -#endif - -#if defined (hp300) && !defined (hpux) - printf ("m68k-hp-bsd\n"); exit (0); -#endif - -#if defined (NeXT) -#if !defined (__ARCHITECTURE__) -#define __ARCHITECTURE__ "m68k" -#endif - int version; - version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; - if (version < 4) - printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); - else - printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); - exit (0); -#endif - -#if defined (MULTIMAX) || defined (n16) -#if defined (UMAXV) - printf ("ns32k-encore-sysv\n"); exit (0); -#else -#if defined (CMU) - printf ("ns32k-encore-mach\n"); exit (0); -#else - printf ("ns32k-encore-bsd\n"); exit (0); -#endif -#endif -#endif - -#if defined (__386BSD__) - printf ("i386-pc-bsd\n"); exit (0); -#endif - -#if defined (sequent) -#if defined (i386) - printf ("i386-sequent-dynix\n"); exit (0); -#endif -#if defined (ns32000) - printf ("ns32k-sequent-dynix\n"); exit (0); -#endif -#endif - -#if defined (_SEQUENT_) - struct utsname un; - - uname(&un); - - if (strncmp(un.version, "V2", 2) == 0) { - printf ("i386-sequent-ptx2\n"); exit (0); - } - if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ - printf ("i386-sequent-ptx1\n"); exit (0); - } - printf ("i386-sequent-ptx\n"); exit (0); - -#endif - -#if defined (vax) -# if !defined (ultrix) -# include -# if defined (BSD) -# if BSD == 43 - printf ("vax-dec-bsd4.3\n"); exit (0); -# else -# if BSD == 199006 - printf ("vax-dec-bsd4.3reno\n"); exit (0); -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# endif -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# else - printf ("vax-dec-ultrix\n"); exit (0); -# endif -#endif - -#if defined (alliant) && defined (i860) - printf ("i860-alliant-bsd\n"); exit (0); -#endif - - exit (1); -} -EOF - -$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && - { echo "$SYSTEM_NAME"; exit; } - -# Apollos put the system type in the environment. - -test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } - -# Convex versions that predate uname can use getsysinfo(1) - -if [ -x /usr/convex/getsysinfo ] -then - case `getsysinfo -f cpu_type` in - c1*) - echo c1-convex-bsd - exit ;; - c2*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit ;; - c34*) - echo c34-convex-bsd - exit ;; - c38*) - echo c38-convex-bsd - exit ;; - c4*) - echo c4-convex-bsd - exit ;; - esac -fi - -cat >&2 < in order to provide the needed -information to handle your system. - -config.guess timestamp = $timestamp - -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null` - -hostinfo = `(hostinfo) 2>/dev/null` -/bin/universe = `(/bin/universe) 2>/dev/null` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` -/bin/arch = `(/bin/arch) 2>/dev/null` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` - -UNAME_MACHINE = ${UNAME_MACHINE} -UNAME_RELEASE = ${UNAME_RELEASE} -UNAME_SYSTEM = ${UNAME_SYSTEM} -UNAME_VERSION = ${UNAME_VERSION} -EOF - -exit 1 - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff --git a/config.sub b/config.sub deleted file mode 100755 index 1c366dfde9ab35fe6474af49933455433951457f..0000000000000000000000000000000000000000 --- a/config.sub +++ /dev/null @@ -1,1579 +0,0 @@ -#! /bin/sh -# Configuration validation subroutine script. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. - -timestamp='2005-07-08' - -# This file is (in principle) common to ALL GNU software. -# The presence of a machine in this file suggests that SOME GNU software -# can handle that machine. It does not imply ALL GNU software can. -# -# This file is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -# 02110-1301, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - - -# Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. -# -# Configuration subroutine to validate and canonicalize a configuration type. -# Supply the specified configuration type as an argument. -# If it is invalid, we print an error message on stderr and exit with code 1. -# Otherwise, we print the canonical config type on stdout and succeed. - -# This file is supposed to be the same for all GNU packages -# and recognize all the CPU types, system types and aliases -# that are meaningful with *any* GNU software. -# Each package is responsible for reporting which valid configurations -# it does not support. The user should be able to distinguish -# a failure to support a valid configuration from a meaningless -# configuration. - -# The goal of this file is to map all the various variations of a given -# machine specification into a single specification in the form: -# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM -# or in some cases, the newer four-part form: -# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM -# It is wrong to echo any other type of specification. - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] CPU-MFR-OPSYS - $0 [OPTION] ALIAS - -Canonicalize a configuration name. - -Operation modes: - -h, --help print this help, then exit - -t, --time-stamp print date of last modification, then exit - -v, --version print version number, then exit - -Report bugs and patches to ." - -version="\ -GNU config.sub ($timestamp) - -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. - -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do - case $1 in - --time-stamp | --time* | -t ) - echo "$timestamp" ; exit ;; - --version | -v ) - echo "$version" ; exit ;; - --help | --h* | -h ) - echo "$usage"; exit ;; - -- ) # Stop option processing - shift; break ;; - - ) # Use stdin as input. - break ;; - -* ) - echo "$me: invalid option $1$help" - exit 1 ;; - - *local*) - # First pass through any local machine types. - echo $1 - exit ;; - - * ) - break ;; - esac -done - -case $# in - 0) echo "$me: missing argument$help" >&2 - exit 1;; - 1) ;; - *) echo "$me: too many arguments$help" >&2 - exit 1;; -esac - -# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). -# Here we must recognize all the valid KERNEL-OS combinations. -maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` -case $maybe_os in - nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \ - kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) - os=-$maybe_os - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` - ;; - *) - basic_machine=`echo $1 | sed 's/-[^-]*$//'` - if [ $basic_machine != $1 ] - then os=`echo $1 | sed 's/.*-/-/'` - else os=; fi - ;; -esac - -### Let's recognize common machines as not being operating systems so -### that things like config.sub decstation-3100 work. We also -### recognize some manufacturers as not being operating systems, so we -### can provide default operating systems below. -case $os in - -sun*os*) - # Prevent following clause from handling this invalid input. - ;; - -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ - -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ - -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ - -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ - -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ - -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray) - os= - basic_machine=$1 - ;; - -sim | -cisco | -oki | -wec | -winbond) - os= - basic_machine=$1 - ;; - -scout) - ;; - -wrs) - os=-vxworks - basic_machine=$1 - ;; - -chorusos*) - os=-chorusos - basic_machine=$1 - ;; - -chorusrdb) - os=-chorusrdb - basic_machine=$1 - ;; - -hiux*) - os=-hiuxwe2 - ;; - -sco5) - os=-sco3.2v5 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco4) - os=-sco3.2v4 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2.[4-9]*) - os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2v[4-9]*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco*) - os=-sco3.2v2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -udk*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -isc) - os=-isc2.2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -clix*) - basic_machine=clipper-intergraph - ;; - -isc*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -lynx*) - os=-lynxos - ;; - -ptx*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` - ;; - -windowsnt*) - os=`echo $os | sed -e 's/windowsnt/winnt/'` - ;; - -psos*) - os=-psos - ;; - -mint | -mint[0-9]*) - basic_machine=m68k-atari - os=-mint - ;; -esac - -# Decode aliases for certain CPU-COMPANY combinations. -case $basic_machine in - # Recognize the basic CPU types without company name. - # Some are omitted here because they have special meanings below. - 1750a | 580 \ - | a29k \ - | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ - | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ - | am33_2.0 \ - | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ - | bfin \ - | c4x | clipper \ - | d10v | d30v | dlx | dsp16xx \ - | fr30 | frv \ - | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ - | i370 | i860 | i960 | ia64 \ - | ip2k | iq2000 \ - | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \ - | mips | mipsbe | mipseb | mipsel | mipsle \ - | mips16 \ - | mips64 | mips64el \ - | mips64vr | mips64vrel \ - | mips64orion | mips64orionel \ - | mips64vr4100 | mips64vr4100el \ - | mips64vr4300 | mips64vr4300el \ - | mips64vr5000 | mips64vr5000el \ - | mips64vr5900 | mips64vr5900el \ - | mipsisa32 | mipsisa32el \ - | mipsisa32r2 | mipsisa32r2el \ - | mipsisa64 | mipsisa64el \ - | mipsisa64r2 | mipsisa64r2el \ - | mipsisa64sb1 | mipsisa64sb1el \ - | mipsisa64sr71k | mipsisa64sr71kel \ - | mipstx39 | mipstx39el \ - | mn10200 | mn10300 \ - | ms1 \ - | msp430 \ - | ns16k | ns32k \ - | or32 \ - | pdp10 | pdp11 | pj | pjl \ - | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ - | pyramid \ - | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ - | sh64 | sh64le \ - | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ - | sparcv8 | sparcv9 | sparcv9b \ - | strongarm \ - | tahoe | thumb | tic4x | tic80 | tron \ - | v850 | v850e \ - | we32k \ - | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ - | z8k) - basic_machine=$basic_machine-unknown - ;; - m32c) - basic_machine=$basic_machine-unknown - ;; - m6811 | m68hc11 | m6812 | m68hc12) - # Motorola 68HC11/12. - basic_machine=$basic_machine-unknown - os=-none - ;; - m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) - ;; - - # We use `pc' rather than `unknown' - # because (1) that's what they normally are, and - # (2) the word "unknown" tends to confuse beginning users. - i*86 | x86_64) - basic_machine=$basic_machine-pc - ;; - # Object if more than one company name word. - *-*-*) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 - exit 1 - ;; - # Recognize the basic CPU types with company name. - 580-* \ - | a29k-* \ - | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ - | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ - | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ - | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ - | avr-* \ - | bfin-* | bs2000-* \ - | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ - | clipper-* | craynv-* | cydra-* \ - | d10v-* | d30v-* | dlx-* \ - | elxsi-* \ - | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ - | h8300-* | h8500-* \ - | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ - | i*86-* | i860-* | i960-* | ia64-* \ - | ip2k-* | iq2000-* \ - | m32r-* | m32rle-* \ - | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* \ - | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ - | mips16-* \ - | mips64-* | mips64el-* \ - | mips64vr-* | mips64vrel-* \ - | mips64orion-* | mips64orionel-* \ - | mips64vr4100-* | mips64vr4100el-* \ - | mips64vr4300-* | mips64vr4300el-* \ - | mips64vr5000-* | mips64vr5000el-* \ - | mips64vr5900-* | mips64vr5900el-* \ - | mipsisa32-* | mipsisa32el-* \ - | mipsisa32r2-* | mipsisa32r2el-* \ - | mipsisa64-* | mipsisa64el-* \ - | mipsisa64r2-* | mipsisa64r2el-* \ - | mipsisa64sb1-* | mipsisa64sb1el-* \ - | mipsisa64sr71k-* | mipsisa64sr71kel-* \ - | mipstx39-* | mipstx39el-* \ - | mmix-* \ - | ms1-* \ - | msp430-* \ - | none-* | np1-* | ns16k-* | ns32k-* \ - | orion-* \ - | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ - | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ - | pyramid-* \ - | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \ - | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ - | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ - | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ - | tahoe-* | thumb-* \ - | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ - | tron-* \ - | v850-* | v850e-* | vax-* \ - | we32k-* \ - | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ - | xstormy16-* | xtensa-* \ - | ymp-* \ - | z8k-*) - ;; - m32c-*) - ;; - # Recognize the various machine names and aliases which stand - # for a CPU type and a company and sometimes even an OS. - 386bsd) - basic_machine=i386-unknown - os=-bsd - ;; - 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) - basic_machine=m68000-att - ;; - 3b*) - basic_machine=we32k-att - ;; - a29khif) - basic_machine=a29k-amd - os=-udi - ;; - abacus) - basic_machine=abacus-unknown - ;; - adobe68k) - basic_machine=m68010-adobe - os=-scout - ;; - alliant | fx80) - basic_machine=fx80-alliant - ;; - altos | altos3068) - basic_machine=m68k-altos - ;; - am29k) - basic_machine=a29k-none - os=-bsd - ;; - amd64) - basic_machine=x86_64-pc - ;; - amd64-*) - basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - amdahl) - basic_machine=580-amdahl - os=-sysv - ;; - amiga | amiga-*) - basic_machine=m68k-unknown - ;; - amigaos | amigados) - basic_machine=m68k-unknown - os=-amigaos - ;; - amigaunix | amix) - basic_machine=m68k-unknown - os=-sysv4 - ;; - apollo68) - basic_machine=m68k-apollo - os=-sysv - ;; - apollo68bsd) - basic_machine=m68k-apollo - os=-bsd - ;; - aux) - basic_machine=m68k-apple - os=-aux - ;; - balance) - basic_machine=ns32k-sequent - os=-dynix - ;; - c90) - basic_machine=c90-cray - os=-unicos - ;; - convex-c1) - basic_machine=c1-convex - os=-bsd - ;; - convex-c2) - basic_machine=c2-convex - os=-bsd - ;; - convex-c32) - basic_machine=c32-convex - os=-bsd - ;; - convex-c34) - basic_machine=c34-convex - os=-bsd - ;; - convex-c38) - basic_machine=c38-convex - os=-bsd - ;; - cray | j90) - basic_machine=j90-cray - os=-unicos - ;; - craynv) - basic_machine=craynv-cray - os=-unicosmp - ;; - cr16c) - basic_machine=cr16c-unknown - os=-elf - ;; - crds | unos) - basic_machine=m68k-crds - ;; - crisv32 | crisv32-* | etraxfs*) - basic_machine=crisv32-axis - ;; - cris | cris-* | etrax*) - basic_machine=cris-axis - ;; - crx) - basic_machine=crx-unknown - os=-elf - ;; - da30 | da30-*) - basic_machine=m68k-da30 - ;; - decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) - basic_machine=mips-dec - ;; - decsystem10* | dec10*) - basic_machine=pdp10-dec - os=-tops10 - ;; - decsystem20* | dec20*) - basic_machine=pdp10-dec - os=-tops20 - ;; - delta | 3300 | motorola-3300 | motorola-delta \ - | 3300-motorola | delta-motorola) - basic_machine=m68k-motorola - ;; - delta88) - basic_machine=m88k-motorola - os=-sysv3 - ;; - djgpp) - basic_machine=i586-pc - os=-msdosdjgpp - ;; - dpx20 | dpx20-*) - basic_machine=rs6000-bull - os=-bosx - ;; - dpx2* | dpx2*-bull) - basic_machine=m68k-bull - os=-sysv3 - ;; - ebmon29k) - basic_machine=a29k-amd - os=-ebmon - ;; - elxsi) - basic_machine=elxsi-elxsi - os=-bsd - ;; - encore | umax | mmax) - basic_machine=ns32k-encore - ;; - es1800 | OSE68k | ose68k | ose | OSE) - basic_machine=m68k-ericsson - os=-ose - ;; - fx2800) - basic_machine=i860-alliant - ;; - genix) - basic_machine=ns32k-ns - ;; - gmicro) - basic_machine=tron-gmicro - os=-sysv - ;; - go32) - basic_machine=i386-pc - os=-go32 - ;; - h3050r* | hiux*) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - h8300hms) - basic_machine=h8300-hitachi - os=-hms - ;; - h8300xray) - basic_machine=h8300-hitachi - os=-xray - ;; - h8500hms) - basic_machine=h8500-hitachi - os=-hms - ;; - harris) - basic_machine=m88k-harris - os=-sysv3 - ;; - hp300-*) - basic_machine=m68k-hp - ;; - hp300bsd) - basic_machine=m68k-hp - os=-bsd - ;; - hp300hpux) - basic_machine=m68k-hp - os=-hpux - ;; - hp3k9[0-9][0-9] | hp9[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hp9k2[0-9][0-9] | hp9k31[0-9]) - basic_machine=m68000-hp - ;; - hp9k3[2-9][0-9]) - basic_machine=m68k-hp - ;; - hp9k6[0-9][0-9] | hp6[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hp9k7[0-79][0-9] | hp7[0-79][0-9]) - basic_machine=hppa1.1-hp - ;; - hp9k78[0-9] | hp78[0-9]) - # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp - ;; - hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) - # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp - ;; - hp9k8[0-9][13679] | hp8[0-9][13679]) - basic_machine=hppa1.1-hp - ;; - hp9k8[0-9][0-9] | hp8[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hppa-next) - os=-nextstep3 - ;; - hppaosf) - basic_machine=hppa1.1-hp - os=-osf - ;; - hppro) - basic_machine=hppa1.1-hp - os=-proelf - ;; - i370-ibm* | ibm*) - basic_machine=i370-ibm - ;; -# I'm not sure what "Sysv32" means. Should this be sysv3.2? - i*86v32) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv32 - ;; - i*86v4*) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv4 - ;; - i*86v) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv - ;; - i*86sol2) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-solaris2 - ;; - i386mach) - basic_machine=i386-mach - os=-mach - ;; - i386-vsta | vsta) - basic_machine=i386-unknown - os=-vsta - ;; - iris | iris4d) - basic_machine=mips-sgi - case $os in - -irix*) - ;; - *) - os=-irix4 - ;; - esac - ;; - isi68 | isi) - basic_machine=m68k-isi - os=-sysv - ;; - m88k-omron*) - basic_machine=m88k-omron - ;; - magnum | m3230) - basic_machine=mips-mips - os=-sysv - ;; - merlin) - basic_machine=ns32k-utek - os=-sysv - ;; - mingw32) - basic_machine=i386-pc - os=-mingw32 - ;; - miniframe) - basic_machine=m68000-convergent - ;; - *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) - basic_machine=m68k-atari - os=-mint - ;; - mips3*-*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` - ;; - mips3*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown - ;; - monitor) - basic_machine=m68k-rom68k - os=-coff - ;; - morphos) - basic_machine=powerpc-unknown - os=-morphos - ;; - msdos) - basic_machine=i386-pc - os=-msdos - ;; - mvs) - basic_machine=i370-ibm - os=-mvs - ;; - ncr3000) - basic_machine=i486-ncr - os=-sysv4 - ;; - netbsd386) - basic_machine=i386-unknown - os=-netbsd - ;; - netwinder) - basic_machine=armv4l-rebel - os=-linux - ;; - news | news700 | news800 | news900) - basic_machine=m68k-sony - os=-newsos - ;; - news1000) - basic_machine=m68030-sony - os=-newsos - ;; - news-3600 | risc-news) - basic_machine=mips-sony - os=-newsos - ;; - necv70) - basic_machine=v70-nec - os=-sysv - ;; - next | m*-next ) - basic_machine=m68k-next - case $os in - -nextstep* ) - ;; - -ns2*) - os=-nextstep2 - ;; - *) - os=-nextstep3 - ;; - esac - ;; - nh3000) - basic_machine=m68k-harris - os=-cxux - ;; - nh[45]000) - basic_machine=m88k-harris - os=-cxux - ;; - nindy960) - basic_machine=i960-intel - os=-nindy - ;; - mon960) - basic_machine=i960-intel - os=-mon960 - ;; - nonstopux) - basic_machine=mips-compaq - os=-nonstopux - ;; - np1) - basic_machine=np1-gould - ;; - nsr-tandem) - basic_machine=nsr-tandem - ;; - op50n-* | op60c-*) - basic_machine=hppa1.1-oki - os=-proelf - ;; - openrisc | openrisc-*) - basic_machine=or32-unknown - ;; - os400) - basic_machine=powerpc-ibm - os=-os400 - ;; - OSE68000 | ose68000) - basic_machine=m68000-ericsson - os=-ose - ;; - os68k) - basic_machine=m68k-none - os=-os68k - ;; - pa-hitachi) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - paragon) - basic_machine=i860-intel - os=-osf - ;; - pbd) - basic_machine=sparc-tti - ;; - pbb) - basic_machine=m68k-tti - ;; - pc532 | pc532-*) - basic_machine=ns32k-pc532 - ;; - pentium | p5 | k5 | k6 | nexgen | viac3) - basic_machine=i586-pc - ;; - pentiumpro | p6 | 6x86 | athlon | athlon_*) - basic_machine=i686-pc - ;; - pentiumii | pentium2 | pentiumiii | pentium3) - basic_machine=i686-pc - ;; - pentium4) - basic_machine=i786-pc - ;; - pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) - basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentiumpro-* | p6-* | 6x86-* | athlon-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentium4-*) - basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pn) - basic_machine=pn-gould - ;; - power) basic_machine=power-ibm - ;; - ppc) basic_machine=powerpc-unknown - ;; - ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppcle | powerpclittle | ppc-le | powerpc-little) - basic_machine=powerpcle-unknown - ;; - ppcle-* | powerpclittle-*) - basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppc64) basic_machine=powerpc64-unknown - ;; - ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppc64le | powerpc64little | ppc64-le | powerpc64-little) - basic_machine=powerpc64le-unknown - ;; - ppc64le-* | powerpc64little-*) - basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ps2) - basic_machine=i386-ibm - ;; - pw32) - basic_machine=i586-unknown - os=-pw32 - ;; - rom68k) - basic_machine=m68k-rom68k - os=-coff - ;; - rm[46]00) - basic_machine=mips-siemens - ;; - rtpc | rtpc-*) - basic_machine=romp-ibm - ;; - s390 | s390-*) - basic_machine=s390-ibm - ;; - s390x | s390x-*) - basic_machine=s390x-ibm - ;; - sa29200) - basic_machine=a29k-amd - os=-udi - ;; - sb1) - basic_machine=mipsisa64sb1-unknown - ;; - sb1el) - basic_machine=mipsisa64sb1el-unknown - ;; - sei) - basic_machine=mips-sei - os=-seiux - ;; - sequent) - basic_machine=i386-sequent - ;; - sh) - basic_machine=sh-hitachi - os=-hms - ;; - sh64) - basic_machine=sh64-unknown - ;; - sparclite-wrs | simso-wrs) - basic_machine=sparclite-wrs - os=-vxworks - ;; - sps7) - basic_machine=m68k-bull - os=-sysv2 - ;; - spur) - basic_machine=spur-unknown - ;; - st2000) - basic_machine=m68k-tandem - ;; - stratus) - basic_machine=i860-stratus - os=-sysv4 - ;; - sun2) - basic_machine=m68000-sun - ;; - sun2os3) - basic_machine=m68000-sun - os=-sunos3 - ;; - sun2os4) - basic_machine=m68000-sun - os=-sunos4 - ;; - sun3os3) - basic_machine=m68k-sun - os=-sunos3 - ;; - sun3os4) - basic_machine=m68k-sun - os=-sunos4 - ;; - sun4os3) - basic_machine=sparc-sun - os=-sunos3 - ;; - sun4os4) - basic_machine=sparc-sun - os=-sunos4 - ;; - sun4sol2) - basic_machine=sparc-sun - os=-solaris2 - ;; - sun3 | sun3-*) - basic_machine=m68k-sun - ;; - sun4) - basic_machine=sparc-sun - ;; - sun386 | sun386i | roadrunner) - basic_machine=i386-sun - ;; - sv1) - basic_machine=sv1-cray - os=-unicos - ;; - symmetry) - basic_machine=i386-sequent - os=-dynix - ;; - t3e) - basic_machine=alphaev5-cray - os=-unicos - ;; - t90) - basic_machine=t90-cray - os=-unicos - ;; - tic54x | c54x*) - basic_machine=tic54x-unknown - os=-coff - ;; - tic55x | c55x*) - basic_machine=tic55x-unknown - os=-coff - ;; - tic6x | c6x*) - basic_machine=tic6x-unknown - os=-coff - ;; - tx39) - basic_machine=mipstx39-unknown - ;; - tx39el) - basic_machine=mipstx39el-unknown - ;; - toad1) - basic_machine=pdp10-xkl - os=-tops20 - ;; - tower | tower-32) - basic_machine=m68k-ncr - ;; - tpf) - basic_machine=s390x-ibm - os=-tpf - ;; - udi29k) - basic_machine=a29k-amd - os=-udi - ;; - ultra3) - basic_machine=a29k-nyu - os=-sym1 - ;; - v810 | necv810) - basic_machine=v810-nec - os=-none - ;; - vaxv) - basic_machine=vax-dec - os=-sysv - ;; - vms) - basic_machine=vax-dec - os=-vms - ;; - vpp*|vx|vx-*) - basic_machine=f301-fujitsu - ;; - vxworks960) - basic_machine=i960-wrs - os=-vxworks - ;; - vxworks68) - basic_machine=m68k-wrs - os=-vxworks - ;; - vxworks29k) - basic_machine=a29k-wrs - os=-vxworks - ;; - w65*) - basic_machine=w65-wdc - os=-none - ;; - w89k-*) - basic_machine=hppa1.1-winbond - os=-proelf - ;; - xbox) - basic_machine=i686-pc - os=-mingw32 - ;; - xps | xps100) - basic_machine=xps100-honeywell - ;; - ymp) - basic_machine=ymp-cray - os=-unicos - ;; - z8k-*-coff) - basic_machine=z8k-unknown - os=-sim - ;; - none) - basic_machine=none-none - os=-none - ;; - -# Here we handle the default manufacturer of certain CPU types. It is in -# some cases the only manufacturer, in others, it is the most popular. - w89k) - basic_machine=hppa1.1-winbond - ;; - op50n) - basic_machine=hppa1.1-oki - ;; - op60c) - basic_machine=hppa1.1-oki - ;; - romp) - basic_machine=romp-ibm - ;; - mmix) - basic_machine=mmix-knuth - ;; - rs6000) - basic_machine=rs6000-ibm - ;; - vax) - basic_machine=vax-dec - ;; - pdp10) - # there are many clones, so DEC is not a safe bet - basic_machine=pdp10-unknown - ;; - pdp11) - basic_machine=pdp11-dec - ;; - we32k) - basic_machine=we32k-att - ;; - sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) - basic_machine=sh-unknown - ;; - sparc | sparcv8 | sparcv9 | sparcv9b) - basic_machine=sparc-sun - ;; - cydra) - basic_machine=cydra-cydrome - ;; - orion) - basic_machine=orion-highlevel - ;; - orion105) - basic_machine=clipper-highlevel - ;; - mac | mpw | mac-mpw) - basic_machine=m68k-apple - ;; - pmac | pmac-mpw) - basic_machine=powerpc-apple - ;; - *-unknown) - # Make sure to match an already-canonicalized machine name. - ;; - *) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 - exit 1 - ;; -esac - -# Here we canonicalize certain aliases for manufacturers. -case $basic_machine in - *-digital*) - basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` - ;; - *-commodore*) - basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` - ;; - *) - ;; -esac - -# Decode manufacturer-specific aliases for certain operating systems. - -if [ x"$os" != x"" ] -then -case $os in - # First match some system type aliases - # that might get confused with valid system types. - # -solaris* is a basic system type, with this one exception. - -solaris1 | -solaris1.*) - os=`echo $os | sed -e 's|solaris1|sunos4|'` - ;; - -solaris) - os=-solaris2 - ;; - -svr4*) - os=-sysv4 - ;; - -unixware*) - os=-sysv4.2uw - ;; - -gnu/linux*) - os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` - ;; - # First accept the basic system types. - # The portable systems comes first. - # Each alternative MUST END IN A *, to match a version number. - # -sysv* is not here because it comes later, after sysvr4. - -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ - | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ - | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ - | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* \ - | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ - | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \ - | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ - | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ - | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ - | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ - | -chorusos* | -chorusrdb* \ - | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \ - | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ - | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ - | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ - | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ - | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku*) - # Remember, each alternative MUST END IN *, to match a version number. - ;; - -qnx*) - case $basic_machine in - x86-* | i*86-*) - ;; - *) - os=-nto$os - ;; - esac - ;; - -nto-qnx*) - ;; - -nto*) - os=`echo $os | sed -e 's|nto|nto-qnx|'` - ;; - -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ - | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) - ;; - -mac*) - os=`echo $os | sed -e 's|mac|macos|'` - ;; - -linux-dietlibc) - os=-linux-dietlibc - ;; - -linux*) - os=`echo $os | sed -e 's|linux|linux-gnu|'` - ;; - -sunos5*) - os=`echo $os | sed -e 's|sunos5|solaris2|'` - ;; - -sunos6*) - os=`echo $os | sed -e 's|sunos6|solaris3|'` - ;; - -opened*) - os=-openedition - ;; - -os400*) - os=-os400 - ;; - -wince*) - os=-wince - ;; - -osfrose*) - os=-osfrose - ;; - -osf*) - os=-osf - ;; - -utek*) - os=-bsd - ;; - -dynix*) - os=-bsd - ;; - -acis*) - os=-aos - ;; - -atheos*) - os=-atheos - ;; - -syllable*) - os=-syllable - ;; - -386bsd) - os=-bsd - ;; - -ctix* | -uts*) - os=-sysv - ;; - -nova*) - os=-rtmk-nova - ;; - -ns2 ) - os=-nextstep2 - ;; - -nsk*) - os=-nsk - ;; - # Preserve the version number of sinix5. - -sinix5.*) - os=`echo $os | sed -e 's|sinix|sysv|'` - ;; - -sinix*) - os=-sysv4 - ;; - -tpf*) - os=-tpf - ;; - -triton*) - os=-sysv3 - ;; - -oss*) - os=-sysv3 - ;; - -svr4) - os=-sysv4 - ;; - -svr3) - os=-sysv3 - ;; - -sysvr4) - os=-sysv4 - ;; - # This must come after -sysvr4. - -sysv*) - ;; - -ose*) - os=-ose - ;; - -es1800*) - os=-ose - ;; - -xenix) - os=-xenix - ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - os=-mint - ;; - -aros*) - os=-aros - ;; - -kaos*) - os=-kaos - ;; - -zvmoe) - os=-zvmoe - ;; - -none) - ;; - *) - # Get rid of the `-' at the beginning of $os. - os=`echo $os | sed 's/[^-]*-//'` - echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 - exit 1 - ;; -esac -else - -# Here we handle the default operating systems that come with various machines. -# The value should be what the vendor currently ships out the door with their -# machine or put another way, the most popular os provided with the machine. - -# Note that if you're going to try to match "-MANUFACTURER" here (say, -# "-sun"), then you have to tell the case statement up towards the top -# that MANUFACTURER isn't an operating system. Otherwise, code above -# will signal an error saying that MANUFACTURER isn't an operating -# system, and we'll never get to this point. - -case $basic_machine in - *-acorn) - os=-riscix1.2 - ;; - arm*-rebel) - os=-linux - ;; - arm*-semi) - os=-aout - ;; - c4x-* | tic4x-*) - os=-coff - ;; - # This must come before the *-dec entry. - pdp10-*) - os=-tops20 - ;; - pdp11-*) - os=-none - ;; - *-dec | vax-*) - os=-ultrix4.2 - ;; - m68*-apollo) - os=-domain - ;; - i386-sun) - os=-sunos4.0.2 - ;; - m68000-sun) - os=-sunos3 - # This also exists in the configure program, but was not the - # default. - # os=-sunos4 - ;; - m68*-cisco) - os=-aout - ;; - mips*-cisco) - os=-elf - ;; - mips*-*) - os=-elf - ;; - or32-*) - os=-coff - ;; - *-tti) # must be before sparc entry or we get the wrong os. - os=-sysv3 - ;; - sparc-* | *-sun) - os=-sunos4.1.1 - ;; - *-be) - os=-beos - ;; - *-haiku) - os=-haiku - ;; - *-ibm) - os=-aix - ;; - *-knuth) - os=-mmixware - ;; - *-wec) - os=-proelf - ;; - *-winbond) - os=-proelf - ;; - *-oki) - os=-proelf - ;; - *-hp) - os=-hpux - ;; - *-hitachi) - os=-hiux - ;; - i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) - os=-sysv - ;; - *-cbm) - os=-amigaos - ;; - *-dg) - os=-dgux - ;; - *-dolphin) - os=-sysv3 - ;; - m68k-ccur) - os=-rtu - ;; - m88k-omron*) - os=-luna - ;; - *-next ) - os=-nextstep - ;; - *-sequent) - os=-ptx - ;; - *-crds) - os=-unos - ;; - *-ns) - os=-genix - ;; - i370-*) - os=-mvs - ;; - *-next) - os=-nextstep3 - ;; - *-gould) - os=-sysv - ;; - *-highlevel) - os=-bsd - ;; - *-encore) - os=-bsd - ;; - *-sgi) - os=-irix - ;; - *-siemens) - os=-sysv4 - ;; - *-masscomp) - os=-rtu - ;; - f30[01]-fujitsu | f700-fujitsu) - os=-uxpv - ;; - *-rom68k) - os=-coff - ;; - *-*bug) - os=-coff - ;; - *-apple) - os=-macos - ;; - *-atari*) - os=-mint - ;; - *) - os=-none - ;; -esac -fi - -# Here we handle the case where we know the os, and the CPU type, but not the -# manufacturer. We pick the logical manufacturer. -vendor=unknown -case $basic_machine in - *-unknown) - case $os in - -riscix*) - vendor=acorn - ;; - -sunos*) - vendor=sun - ;; - -aix*) - vendor=ibm - ;; - -beos*) - vendor=be - ;; - -hpux*) - vendor=hp - ;; - -mpeix*) - vendor=hp - ;; - -hiux*) - vendor=hitachi - ;; - -unos*) - vendor=crds - ;; - -dgux*) - vendor=dg - ;; - -luna*) - vendor=omron - ;; - -genix*) - vendor=ns - ;; - -mvs* | -opened*) - vendor=ibm - ;; - -os400*) - vendor=ibm - ;; - -ptx*) - vendor=sequent - ;; - -tpf*) - vendor=ibm - ;; - -vxsim* | -vxworks* | -windiss*) - vendor=wrs - ;; - -aux*) - vendor=apple - ;; - -hms*) - vendor=hitachi - ;; - -mpw* | -macos*) - vendor=apple - ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - vendor=atari - ;; - -vos*) - vendor=stratus - ;; - esac - basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` - ;; -esac - -echo $basic_machine$os -exit - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff --git a/configure b/configure deleted file mode 100755 index 9973ff93fe599e673a5d90450b480302fe49005f..0000000000000000000000000000000000000000 --- a/configure +++ /dev/null @@ -1,5775 +0,0 @@ -#! /bin/sh -# Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61 for cmor 2.8.3. -# -# Report bugs to . -# -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. -# This configure script is free software; the Free Software Foundation -# gives unlimited permission to copy, distribute and modify it. -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - -fi - - - - -# PATH needs CR -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -as_nl=' -' -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - { (exit 1); exit 1; } -fi - -# Work around bugs in pre-3.0 UWIN ksh. -for as_var in ENV MAIL MAILPATH -do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var - fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# CDPATH. -$as_unset CDPATH - - -if test "x$CONFIG_SHELL" = x; then - if (eval ":") 2>/dev/null; then - as_have_required=yes -else - as_have_required=no -fi - - if test $as_have_required = yes && (eval ": -(as_func_return () { - (exit \$1) -} -as_func_success () { - as_func_return 0 -} -as_func_failure () { - as_func_return 1 -} -as_func_ret_success () { - return 0 -} -as_func_ret_failure () { - return 1 -} - -exitcode=0 -if as_func_success; then - : -else - exitcode=1 - echo as_func_success failed. -fi - -if as_func_failure; then - exitcode=1 - echo as_func_failure succeeded. -fi - -if as_func_ret_success; then - : -else - exitcode=1 - echo as_func_ret_success failed. -fi - -if as_func_ret_failure; then - exitcode=1 - echo as_func_ret_failure succeeded. -fi - -if ( set x; as_func_ret_success y && test x = \"\$1\" ); then - : -else - exitcode=1 - echo positional parameters were not saved. -fi - -test \$exitcode = 0) || { (exit 1); exit 1; } - -( - as_lineno_1=\$LINENO - as_lineno_2=\$LINENO - test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && - test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } -") 2> /dev/null; then - : -else - as_candidate_shells= - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - case $as_dir in - /*) - for as_base in sh bash ksh sh5; do - as_candidate_shells="$as_candidate_shells $as_dir/$as_base" - done;; - esac -done -IFS=$as_save_IFS - - - for as_shell in $as_candidate_shells $SHELL; do - # Try only shells that exist, to save several forks. - if { test -f "$as_shell" || test -f "$as_shell.exe"; } && - { ("$as_shell") 2> /dev/null <<\_ASEOF -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - -fi - - -: -_ASEOF -}; then - CONFIG_SHELL=$as_shell - as_have_required=yes - if { "$as_shell" 2> /dev/null <<\_ASEOF -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - -fi - - -: -(as_func_return () { - (exit $1) -} -as_func_success () { - as_func_return 0 -} -as_func_failure () { - as_func_return 1 -} -as_func_ret_success () { - return 0 -} -as_func_ret_failure () { - return 1 -} - -exitcode=0 -if as_func_success; then - : -else - exitcode=1 - echo as_func_success failed. -fi - -if as_func_failure; then - exitcode=1 - echo as_func_failure succeeded. -fi - -if as_func_ret_success; then - : -else - exitcode=1 - echo as_func_ret_success failed. -fi - -if as_func_ret_failure; then - exitcode=1 - echo as_func_ret_failure succeeded. -fi - -if ( set x; as_func_ret_success y && test x = "$1" ); then - : -else - exitcode=1 - echo positional parameters were not saved. -fi - -test $exitcode = 0) || { (exit 1); exit 1; } - -( - as_lineno_1=$LINENO - as_lineno_2=$LINENO - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } - -_ASEOF -}; then - break -fi - -fi - - done - - if test "x$CONFIG_SHELL" != x; then - for as_var in BASH_ENV ENV - do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var - done - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} -fi - - - if test $as_have_required = no; then - echo This script requires a shell more modern than all the - echo shells that I found on your system. Please install a - echo modern shell, or manually run the script under such a - echo shell if you do have one. - { (exit 1); exit 1; } -fi - - -fi - -fi - - - -(eval "as_func_return () { - (exit \$1) -} -as_func_success () { - as_func_return 0 -} -as_func_failure () { - as_func_return 1 -} -as_func_ret_success () { - return 0 -} -as_func_ret_failure () { - return 1 -} - -exitcode=0 -if as_func_success; then - : -else - exitcode=1 - echo as_func_success failed. -fi - -if as_func_failure; then - exitcode=1 - echo as_func_failure succeeded. -fi - -if as_func_ret_success; then - : -else - exitcode=1 - echo as_func_ret_success failed. -fi - -if as_func_ret_failure; then - exitcode=1 - echo as_func_ret_failure succeeded. -fi - -if ( set x; as_func_ret_success y && test x = \"\$1\" ); then - : -else - exitcode=1 - echo positional parameters were not saved. -fi - -test \$exitcode = 0") || { - echo No shell found that supports shell functions. - echo Please tell autoconf@gnu.org about your system, - echo including any error possibly output before this - echo message -} - - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line after each line using $LINENO; the second 'sed' - # does the real work. The second script uses 'N' to pair each - # line-number line with the line containing $LINENO, and appends - # trailing '-' during substitution so that $LINENO is not a special - # case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # scripts with optimization help from Paolo Bonzini. Blame Lee - # E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in --n*) - case `echo 'x\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - *) ECHO_C='\c';; - esac;; -*) - ECHO_N='-n';; -esac - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir -fi -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - -if mkdir -p . 2>/dev/null; then - as_mkdir_p=: -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - - -exec 7<&0 &1 - -# Name of the host. -# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_clean_files= -ac_config_libobj_dir=. -LIBOBJS= -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= -SHELL=${CONFIG_SHELL-/bin/sh} - -# Identity of this package. -PACKAGE_NAME='cmor' -PACKAGE_TARNAME='cmor' -PACKAGE_VERSION='2.8.3' -PACKAGE_STRING='cmor 2.8.3' -PACKAGE_BUGREPORT='doutriaux1@llnl.gov' - -ac_default_prefix=/usr/local/cmor -ac_subst_vars='SHELL -PATH_SEPARATOR -PACKAGE_NAME -PACKAGE_TARNAME -PACKAGE_VERSION -PACKAGE_STRING -PACKAGE_BUGREPORT -exec_prefix -prefix -program_transform_name -bindir -sbindir -libexecdir -datarootdir -datadir -sysconfdir -sharedstatedir -localstatedir -includedir -oldincludedir -docdir -infodir -htmldir -dvidir -pdfdir -psdir -libdir -localedir -mandir -DEFS -ECHO_C -ECHO_N -ECHO_T -LIBS -build_alias -host_alias -target_alias -build -build_cpu -build_vendor -build_os -host -host_cpu -host_vendor -host_os -target -target_cpu -target_vendor -target_os -PATH -NCCFLAGS -NCLDFLAGS -ZFLAGS -ZLDFLAGS -UDUNITS2FLAGS -UDUNITS2LDFLAGS -UUIDFLAGS -UUIDLDFLAGS -LIBSOURCES -LIBFSOURCES -FC -FFLAGS -FCFLAGS -LDFLAGS -CFLAGS -USERCFLAGS -USERFFLAGS -USERLDFLAGS -INCFILES -TEST_FORTRAN -LIBFILES -VERB -MODFILES -MACROS -DEBUG -OK_COLOR -NO_COLOR -CDATPREFIX -PYTHONEXEC -MAKEDEPPYTHON -MAKETESTPYTHON -CC -CPPFLAGS -ac_ct_CC -EXEEXT -OBJEXT -CPP -LN_S -SED -RANLIB -ac_ct_FC -FCLIBS -NCCONFIG -LIBOBJS -LTLIBOBJS' -ac_subst_files='' - ac_precious_vars='build_alias -host_alias -target_alias -CC -CFLAGS -LDFLAGS -LIBS -CPPFLAGS -CPP -FC -FCFLAGS' - - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -# (The list follows the same order as the GNU Coding Standards.) -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datarootdir='${prefix}/share' -datadir='${datarootdir}' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -includedir='${prefix}/include' -oldincludedir='/usr/include' -docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' -infodir='${datarootdir}/info' -htmldir='${docdir}' -dvidir='${docdir}' -pdfdir='${docdir}' -psdir='${docdir}' -libdir='${exec_prefix}/lib' -localedir='${datarootdir}/locale' -mandir='${datarootdir}/man' - -ac_prev= -ac_dashdash= -for ac_option -do - # If the previous option needs an argument, assign it. - if test -n "$ac_prev"; then - eval $ac_prev=\$ac_option - ac_prev= - continue - fi - - case $ac_option in - *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *) ac_optarg=yes ;; - esac - - # Accept the important Cygnus configure options, so we can diagnose typos. - - case $ac_dashdash$ac_option in - --) - ac_dashdash=yes ;; - - -bindir | --bindir | --bindi | --bind | --bin | --bi) - ac_prev=bindir ;; - -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; - - -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; - -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; - - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; - - -datadir | --datadir | --datadi | --datad) - ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=*) - datadir=$ac_optarg ;; - - -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ - | --dataroo | --dataro | --datar) - ac_prev=datarootdir ;; - -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ - | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) - datarootdir=$ac_optarg ;; - - -disable-* | --disable-*) - ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` - eval enable_$ac_feature=no ;; - - -docdir | --docdir | --docdi | --doc | --do) - ac_prev=docdir ;; - -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) - docdir=$ac_optarg ;; - - -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) - ac_prev=dvidir ;; - -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) - dvidir=$ac_optarg ;; - - -enable-* | --enable-*) - ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` - eval enable_$ac_feature=\$ac_optarg ;; - - -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ - | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ - | --exec | --exe | --ex) - ac_prev=exec_prefix ;; - -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ - | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ - | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; - - -gas | --gas | --ga | --g) - # Obsolete; use --with-gas. - with_gas=yes ;; - - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; - - -host | --host | --hos | --ho) - ac_prev=host_alias ;; - -host=* | --host=* | --hos=* | --ho=*) - host_alias=$ac_optarg ;; - - -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) - ac_prev=htmldir ;; - -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ - | --ht=*) - htmldir=$ac_optarg ;; - - -includedir | --includedir | --includedi | --included | --include \ - | --includ | --inclu | --incl | --inc) - ac_prev=includedir ;; - -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ - | --includ=* | --inclu=* | --incl=* | --inc=*) - includedir=$ac_optarg ;; - - -infodir | --infodir | --infodi | --infod | --info | --inf) - ac_prev=infodir ;; - -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) - infodir=$ac_optarg ;; - - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) - libdir=$ac_optarg ;; - - -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ - | --libexe | --libex | --libe) - ac_prev=libexecdir ;; - -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ - | --libexe=* | --libex=* | --libe=*) - libexecdir=$ac_optarg ;; - - -localedir | --localedir | --localedi | --localed | --locale) - ac_prev=localedir ;; - -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) - localedir=$ac_optarg ;; - - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst | --locals) - ac_prev=localstatedir ;; - -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) - localstatedir=$ac_optarg ;; - - -mandir | --mandir | --mandi | --mand | --man | --ma | --m) - ac_prev=mandir ;; - -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) - mandir=$ac_optarg ;; - - -nfp | --nfp | --nf) - # Obsolete; use --without-fp. - with_fp=no ;; - - -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c | -n) - no_create=yes ;; - - -no-recursion | --no-recursion | --no-recursio | --no-recursi \ - | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) - no_recursion=yes ;; - - -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ - | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ - | --oldin | --oldi | --old | --ol | --o) - ac_prev=oldincludedir ;; - -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ - | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ - | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) - oldincludedir=$ac_optarg ;; - - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - prefix=$ac_optarg ;; - - -program-prefix | --program-prefix | --program-prefi | --program-pref \ - | --program-pre | --program-pr | --program-p) - ac_prev=program_prefix ;; - -program-prefix=* | --program-prefix=* | --program-prefi=* \ - | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) - program_prefix=$ac_optarg ;; - - -program-suffix | --program-suffix | --program-suffi | --program-suff \ - | --program-suf | --program-su | --program-s) - ac_prev=program_suffix ;; - -program-suffix=* | --program-suffix=* | --program-suffi=* \ - | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) - program_suffix=$ac_optarg ;; - - -program-transform-name | --program-transform-name \ - | --program-transform-nam | --program-transform-na \ - | --program-transform-n | --program-transform- \ - | --program-transform | --program-transfor \ - | --program-transfo | --program-transf \ - | --program-trans | --program-tran \ - | --progr-tra | --program-tr | --program-t) - ac_prev=program_transform_name ;; - -program-transform-name=* | --program-transform-name=* \ - | --program-transform-nam=* | --program-transform-na=* \ - | --program-transform-n=* | --program-transform-=* \ - | --program-transform=* | --program-transfor=* \ - | --program-transfo=* | --program-transf=* \ - | --program-trans=* | --program-tran=* \ - | --progr-tra=* | --program-tr=* | --program-t=*) - program_transform_name=$ac_optarg ;; - - -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) - ac_prev=pdfdir ;; - -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) - pdfdir=$ac_optarg ;; - - -psdir | --psdir | --psdi | --psd | --ps) - ac_prev=psdir ;; - -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) - psdir=$ac_optarg ;; - - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - silent=yes ;; - - -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) - ac_prev=sbindir ;; - -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ - | --sbi=* | --sb=*) - sbindir=$ac_optarg ;; - - -sharedstatedir | --sharedstatedir | --sharedstatedi \ - | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ - | --sharedst | --shareds | --shared | --share | --shar \ - | --sha | --sh) - ac_prev=sharedstatedir ;; - -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ - | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ - | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ - | --sha=* | --sh=*) - sharedstatedir=$ac_optarg ;; - - -site | --site | --sit) - ac_prev=site ;; - -site=* | --site=* | --sit=*) - site=$ac_optarg ;; - - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - srcdir=$ac_optarg ;; - - -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ - | --syscon | --sysco | --sysc | --sys | --sy) - ac_prev=sysconfdir ;; - -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ - | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) - sysconfdir=$ac_optarg ;; - - -target | --target | --targe | --targ | --tar | --ta | --t) - ac_prev=target_alias ;; - -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) - target_alias=$ac_optarg ;; - - -v | -verbose | --verbose | --verbos | --verbo | --verb) - verbose=yes ;; - - -version | --version | --versio | --versi | --vers | -V) - ac_init_version=: ;; - - -with-* | --with-*) - ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package | sed 's/[-.]/_/g'` - eval with_$ac_package=\$ac_optarg ;; - - -without-* | --without-*) - ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package | sed 's/[-.]/_/g'` - eval with_$ac_package=no ;; - - --x) - # Obsolete; use --with-x. - with_x=yes ;; - - -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ - | --x-incl | --x-inc | --x-in | --x-i) - ac_prev=x_includes ;; - -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ - | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) - x_includes=$ac_optarg ;; - - -x-libraries | --x-libraries | --x-librarie | --x-librari \ - | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) - ac_prev=x_libraries ;; - -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ - | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) - x_libraries=$ac_optarg ;; - - -*) { echo "$as_me: error: unrecognized option: $ac_option -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; } - ;; - - *=*) - ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` - # Reject names that are not valid shell variable names. - expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 - { (exit 1); exit 1; }; } - eval $ac_envvar=\$ac_optarg - export $ac_envvar ;; - - *) - # FIXME: should be removed in autoconf 3.0. - echo "$as_me: WARNING: you should use --build, --host, --target" >&2 - expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} - ;; - - esac -done - -if test -n "$ac_prev"; then - ac_option=--`echo $ac_prev | sed 's/_/-/g'` - { echo "$as_me: error: missing argument to $ac_option" >&2 - { (exit 1); exit 1; }; } -fi - -# Be sure to have absolute directory names. -for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ - datadir sysconfdir sharedstatedir localstatedir includedir \ - oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir -do - eval ac_val=\$$ac_var - case $ac_val in - [\\/$]* | ?:[\\/]* ) continue;; - NONE | '' ) case $ac_var in *prefix ) continue;; esac;; - esac - { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 - { (exit 1); exit 1; }; } -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe - echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used." >&2 - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -ac_pwd=`pwd` && test -n "$ac_pwd" && -ac_ls_di=`ls -di .` && -ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - { echo "$as_me: error: Working directory cannot be determined" >&2 - { (exit 1); exit 1; }; } -test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - { echo "$as_me: error: pwd does not report name of working directory" >&2 - { (exit 1); exit 1; }; } - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then - ac_srcdir_defaulted=yes - # Try the directory containing this script, then the parent directory. - ac_confdir=`$as_dirname -- "$0" || -$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$0" : 'X\(//\)[^/]' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -echo X"$0" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - srcdir=$ac_confdir - if test ! -r "$srcdir/$ac_unique_file"; then - srcdir=.. - fi -else - ac_srcdir_defaulted=no -fi -if test ! -r "$srcdir/$ac_unique_file"; then - test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 - { (exit 1); exit 1; }; } -fi -ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" -ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 - { (exit 1); exit 1; }; } - pwd)` -# When building in place, set srcdir=. -if test "$ac_abs_confdir" = "$ac_pwd"; then - srcdir=. -fi -# Remove unnecessary trailing slashes from srcdir. -# Double slashes in file names in object file debugging info -# mess up M-x gdb in Emacs. -case $srcdir in -*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; -esac -for ac_var in $ac_precious_vars; do - eval ac_env_${ac_var}_set=\${${ac_var}+set} - eval ac_env_${ac_var}_value=\$${ac_var} - eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} - eval ac_cv_env_${ac_var}_value=\$${ac_var} -done - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then - # Omit some internal or obsolete options to make the list less imposing. - # This message is too long to be a string in the A/UX 3.1 sh. - cat <<_ACEOF -\`configure' configures cmor 2.8.3 to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE. See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: - -h, --help display this help and exit - --help=short display options specific to this package - --help=recursive display the short help of all the included packages - -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking...' messages - --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for \`--cache-file=config.cache' - -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or \`..'] - -Installation directories: - --prefix=PREFIX install architecture-independent files in PREFIX - [$ac_default_prefix] - --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - [PREFIX] - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] - --datadir=DIR read-only architecture-independent data [DATAROOTDIR] - --infodir=DIR info documentation [DATAROOTDIR/info] - --localedir=DIR locale-dependent data [DATAROOTDIR/locale] - --mandir=DIR man documentation [DATAROOTDIR/man] - --docdir=DIR documentation root [DATAROOTDIR/doc/cmor] - --htmldir=DIR html documentation [DOCDIR] - --dvidir=DIR dvi documentation [DOCDIR] - --pdfdir=DIR pdf documentation [DOCDIR] - --psdir=DIR ps documentation [DOCDIR] -_ACEOF - - cat <<\_ACEOF - -System types: - --build=BUILD configure for building on BUILD [guessed] - --host=HOST cross-compile to build programs to run on HOST [BUILD] - --target=TARGET configure for building compilers for TARGET [HOST] -_ACEOF -fi - -if test -n "$ac_init_help"; then - case $ac_init_help in - short | recursive ) echo "Configuration of cmor 2.8.3:";; - esac - cat <<\_ACEOF - -Optional Features: - --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) - --enable-FEATURE[=ARG] include FEATURE [ARG=yes] - --enable-verbose-test enable verbose testing (default off) - --enable-color enable colored output (default on) - --enable-debug enable debug flag while commpiling (default on) - --enable-fortran enable fortran api (default will try) - -Optional Packages: - --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] - --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --with-cdat enable support for cdat put path root (w/o bin/cdat) - --with-python enable support for python put path root (w/o - bin/python) - --with-uuid enable support for uuid in none standard location - --with-udunits2 enable support for udunits2 in none standard - location - --with-netcdf enable support for NetCDF in none standard location - -Some influential environment variables: - CC C compiler command - CFLAGS C compiler flags - LDFLAGS linker flags, e.g. -L if you have libraries in a - nonstandard directory - LIBS libraries to pass to the linker, e.g. -l - CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if - you have headers in a nonstandard directory - CPP C preprocessor - FC Fortran compiler command - FCFLAGS Fortran compiler flags - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -Report bugs to . -_ACEOF -ac_status=$? -fi - -if test "$ac_init_help" = "recursive"; then - # If there are subdirs, report their specific --help. - for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d "$ac_dir" || continue - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - cd "$ac_dir" || { ac_status=$?; continue; } - # Check for guested configure. - if test -f "$ac_srcdir/configure.gnu"; then - echo && - $SHELL "$ac_srcdir/configure.gnu" --help=recursive - elif test -f "$ac_srcdir/configure"; then - echo && - $SHELL "$ac_srcdir/configure" --help=recursive - else - echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi || ac_status=$? - cd "$ac_pwd" || { ac_status=$?; break; } - done -fi - -test -n "$ac_init_help" && exit $ac_status -if $ac_init_version; then - cat <<\_ACEOF -cmor configure 2.8.3 -generated by GNU Autoconf 2.61 - -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF - exit -fi -cat >config.log <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by cmor $as_me 2.8.3, which was -generated by GNU Autoconf 2.61. Invocation command line was - - $ $0 $@ - -_ACEOF -exec 5>>config.log -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` - -/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` -/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - echo "PATH: $as_dir" -done -IFS=$as_save_IFS - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_must_keep_next=false -for ac_pass in 1 2 -do - for ac_arg - do - case $ac_arg in - -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - continue ;; - *\'*) - ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - case $ac_pass in - 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; - 2) - ac_configure_args1="$ac_configure_args1 '$ac_arg'" - if test $ac_must_keep_next = true; then - ac_must_keep_next=false # Got value, back to normal. - else - case $ac_arg in - *=* | --config-cache | -C | -disable-* | --disable-* \ - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ - | -with-* | --with-* | -without-* | --without-* | --x) - case "$ac_configure_args0 " in - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; - esac - ;; - -* ) ac_must_keep_next=true ;; - esac - fi - ac_configure_args="$ac_configure_args '$ac_arg'" - ;; - esac - done -done -$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } -$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log. We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Use '\'' to represent an apostrophe within the trap. -# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. -trap 'exit_status=$? - # Save into config.log some information that might help in debugging. - { - echo - - cat <<\_ASBOX -## ---------------- ## -## Cache variables. ## -## ---------------- ## -_ASBOX - echo - # The following way of writing the cache mishandles newlines in values, -( - for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 -echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - *) $as_unset $ac_var ;; - esac ;; - esac - done - (set) 2>&1 | - case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - sed -n \ - "s/'\''/'\''\\\\'\'''\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" - ;; #( - *) - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) - echo - - cat <<\_ASBOX -## ----------------- ## -## Output variables. ## -## ----------------- ## -_ASBOX - echo - for ac_var in $ac_subst_vars - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - echo "$ac_var='\''$ac_val'\''" - done | sort - echo - - if test -n "$ac_subst_files"; then - cat <<\_ASBOX -## ------------------- ## -## File substitutions. ## -## ------------------- ## -_ASBOX - echo - for ac_var in $ac_subst_files - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - echo "$ac_var='\''$ac_val'\''" - done | sort - echo - fi - - if test -s confdefs.h; then - cat <<\_ASBOX -## ----------- ## -## confdefs.h. ## -## ----------- ## -_ASBOX - echo - cat confdefs.h - echo - fi - test "$ac_signal" != 0 && - echo "$as_me: caught signal $ac_signal" - echo "$as_me: exit $exit_status" - } >&5 - rm -f core *.core core.conftest.* && - rm -f -r conftest* confdefs* conf$$* $ac_clean_files && - exit $exit_status -' 0 -for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -f -r conftest* confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer explicitly selected file to automatically selected ones. -if test -n "$CONFIG_SITE"; then - set x "$CONFIG_SITE" -elif test "x$prefix" != xNONE; then - set x "$prefix/share/config.site" "$prefix/etc/config.site" -else - set x "$ac_default_prefix/share/config.site" \ - "$ac_default_prefix/etc/config.site" -fi -shift -for ac_site_file -do - if test -r "$ac_site_file"; then - { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 -echo "$as_me: loading site script $ac_site_file" >&6;} - sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" - fi -done - -if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special - # files actually), so we avoid doing that. - if test -f "$cache_file"; then - { echo "$as_me:$LINENO: loading cache $cache_file" >&5 -echo "$as_me: loading cache $cache_file" >&6;} - case $cache_file in - [\\/]* | ?:[\\/]* ) . "$cache_file";; - *) . "./$cache_file";; - esac - fi -else - { echo "$as_me:$LINENO: creating cache $cache_file" >&5 -echo "$as_me: creating cache $cache_file" >&6;} - >$cache_file -fi - -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in $ac_precious_vars; do - eval ac_old_set=\$ac_cv_env_${ac_var}_set - eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val=\$ac_cv_env_${ac_var}_value - eval ac_new_val=\$ac_env_${ac_var}_value - case $ac_old_set,$ac_new_set in - set,) - { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 -echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 -echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 -echo "$as_me: current value: $ac_new_val" >&2;} - ac_cache_corrupted=: - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 -echo "$as_me: error: changes in the environment can compromise the build" >&2;} - { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 -echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} - { (exit 1); exit 1; }; } -fi - - - - - - - - - - - - - - - - - - - - - - - - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - -GIT_TAG=`./get_git_version.sh` - -ac_aux_dir= -for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do - if test -f "$ac_dir/install-sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f "$ac_dir/install.sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f "$ac_dir/shtool"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi -done -if test -z "$ac_aux_dir"; then - { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 -echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} - { (exit 1); exit 1; }; } -fi - -# These three variables are undocumented and unsupported, -# and are intended to be withdrawn in a future Autoconf release. -# They can cause serious problems if a builder's source tree is in a directory -# whose full name contains unusual characters. -ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. -ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. -ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. - - -# Make sure we can run config.sub. -$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || - { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 -echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} - { (exit 1); exit 1; }; } - -{ echo "$as_me:$LINENO: checking build system type" >&5 -echo $ECHO_N "checking build system type... $ECHO_C" >&6; } -if test "${ac_cv_build+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_build_alias=$build_alias -test "x$ac_build_alias" = x && - ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` -test "x$ac_build_alias" = x && - { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 -echo "$as_me: error: cannot guess build type; you must specify one" >&2;} - { (exit 1); exit 1; }; } -ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || - { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 -echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} - { (exit 1); exit 1; }; } - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5 -echo "${ECHO_T}$ac_cv_build" >&6; } -case $ac_cv_build in -*-*-*) ;; -*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 -echo "$as_me: error: invalid value of canonical build" >&2;} - { (exit 1); exit 1; }; };; -esac -build=$ac_cv_build -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_build -shift -build_cpu=$1 -build_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -build_os=$* -IFS=$ac_save_IFS -case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac - - -{ echo "$as_me:$LINENO: checking host system type" >&5 -echo $ECHO_N "checking host system type... $ECHO_C" >&6; } -if test "${ac_cv_host+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "x$host_alias" = x; then - ac_cv_host=$ac_cv_build -else - ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || - { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 -echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} - { (exit 1); exit 1; }; } -fi - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5 -echo "${ECHO_T}$ac_cv_host" >&6; } -case $ac_cv_host in -*-*-*) ;; -*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 -echo "$as_me: error: invalid value of canonical host" >&2;} - { (exit 1); exit 1; }; };; -esac -host=$ac_cv_host -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_host -shift -host_cpu=$1 -host_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -host_os=$* -IFS=$ac_save_IFS -case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac - - -{ echo "$as_me:$LINENO: checking target system type" >&5 -echo $ECHO_N "checking target system type... $ECHO_C" >&6; } -if test "${ac_cv_target+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "x$target_alias" = x; then - ac_cv_target=$ac_cv_host -else - ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || - { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5 -echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;} - { (exit 1); exit 1; }; } -fi - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_target" >&5 -echo "${ECHO_T}$ac_cv_target" >&6; } -case $ac_cv_target in -*-*-*) ;; -*) { { echo "$as_me:$LINENO: error: invalid value of canonical target" >&5 -echo "$as_me: error: invalid value of canonical target" >&2;} - { (exit 1); exit 1; }; };; -esac -target=$ac_cv_target -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_target -shift -target_cpu=$1 -target_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -target_os=$* -IFS=$ac_save_IFS -case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac - - -# The aliases save the names the user supplied, while $host etc. -# will get canonicalized. -test -n "$target_alias" && - test "$program_prefix$program_suffix$program_transform_name" = \ - NONENONEs,x,x, && - program_prefix=${target_alias}- -echo "TARGET: "${target_os} -RTAG="none" -case ${target_os} in - linux-*) - RTAG="-Wl,-rpath=" - ;; - darwin*) - RTAG="-R" - ;; -esac - -CMOR_VERSION=${PACKAGE_VERSION}" (commit: ${GIT_TAG})" - - -ac_config_files="$ac_config_files Makefile setup.py compile_line.txt include/cmor_locale.h" - - - -INCFILES="include/cmor.h include/cmor_func_def.h include/cmor_md5.h "`ls -x --width=10000 include/cdTime/*.h include/cdTime/cdunifpp/*.h` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -MACROS="" -DEBUG="" - -OK_COLOR="" -NO_COLOR="" - -# Check whether --enable-verbose-test was given. -if test "${enable_verbose_test+set}" = set; then - enableval=$enable_verbose_test; -fi - -if test "-"${enable_verbose_test} == "-yes" ; then - VERB="" -else - VERB=">/dev/null 2>/dev/null" -fi -if test "-"${enable_verbose_test} == "-yes" ; then - VERB="" -else - VERB=">/dev/null 2>/dev/null" -fi - -# Check whether --enable-color was given. -if test "${enable_color+set}" = set; then - enableval=$enable_color; -if test "x${enableval}" == "xyes" ; then - MACROS=${MACROS}" -DCOLOREDOUTPUT" - NO_COLOR="NO_COLOR2" - OK_COLOR="OK_COLOR2" -fi - -else - -MACROS=${MACROS}" -DCOLOREDOUTPUT" -NO_COLOR="NO_COLOR2" -OK_COLOR="OK_COLOR2" - -fi - -# Check whether --enable-debug was given. -if test "${enable_debug+set}" = set; then - enableval=$enable_debug; enable_debug=yes -else - enable_debug=yes -fi - -if test ${enable_debug} == "yes" ; then - DEBUG="-g" -fi - -LIBFILES="cmor.o cmor_axes.o cmor_variables.o cmor_tables.o cdTimeConv.o cdUtil.o timeConv.o timeArith.o cmor_grids.o cmor_md5.o " -LIBFFILES="cmor_cfortran_interface.o cmor_fortran_interface.o" - -# Check whether --enable-fortran was given. -if test "${enable_fortran+set}" = set; then - enableval=$enable_fortran; -fi - -enable_fortran="-"${enable_fortran} -TEST_FORTRAN="test_fortran" -if test ${enable_fortran} == "-no" ; then - FC="" - F77="" - FFLAGS="" - FCFLAGS="" - TEST_FORTRAN=" " - MODFILES=" " -else - LIBFILES=${LIBFILES}" "${LIBFFILES} - MODFILES="cmor_users_functions.*" -fi - -CDATPREFIX=" " -MAKETESTPYTHON=" " - -# Check whether --with-cdat was given. -if test "${with_cdat+set}" = set; then - withval=$with_cdat; -else - with_cdat="no" -fi - -with_cdatb="-"${with_cdat} -if test ${with_cdatb} != "-yes" ; then - if test ${with_cdatb} != "-no" ; then - PYTHONEXEC=${with_cdat}/bin/cdat - MAKEDEPPYTHON="python" - MAKETESTPYTHON="test_python" - CDATPREFIX="--prefix="${with_cdat} - else - PYTHONEXEC=" " - MAKEDEPPYTHON=" " - fi -else - PYTHONEXEC="cdat" - MAKEDEPPYTHON="python" - MAKETESTPYTHON="test_python" -fi - -# Check whether --with-python was given. -if test "${with_python+set}" = set; then - withval=$with_python; -else - with_python="no" -fi - -with_pythonb="-"${with_python} -if test ${with_pythonb} != "-yes" ; then - if test ${with_pythonb} != "-no" ; then - PYTHONEXEC=${with_python}/bin/python - MAKEDEPPYTHON="python" - fi -else - PYTHONEXEC="python" - MAKEDEPPYTHON="python" -fi - - - - - - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&5 -echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - - fi -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl.exe -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - - test -n "$ac_ct_CC" && break -done - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&5 -echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -fi - -fi - - -test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - -# Provide some information about the compiler. -echo "$as_me:$LINENO: checking for C compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (ac_try="$ac_compiler --version >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compiler --version >&5") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (ac_try="$ac_compiler -v >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compiler -v >&5") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (ac_try="$ac_compiler -V >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compiler -V >&5") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 -echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } -ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -# -# List of possible output files, starting from the most likely. -# The algorithm is not robust to junk in `.', hence go to wildcards (a.*) -# only as a last resort. b.out is created by i960 compilers. -ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' -# -# The IRIX 6 linker writes into existing files which may not be -# executable, retaining their permissions. Remove them first so a -# subsequent execution test works. -ac_rmfiles= -for ac_file in $ac_files -do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; - * ) ac_rmfiles="$ac_rmfiles $ac_file";; - esac -done -rm -f $ac_rmfiles - -if { (ac_try="$ac_link_default" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link_default") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. -# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' -# in a Makefile. We should not override ac_cv_exeext if it was cached, -# so that the user can short-circuit this test for compilers unknown to -# Autoconf. -for ac_file in $ac_files '' -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; - then :; else - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - fi - # We set ac_cv_exeext here because the later test for it is not - # safe: cross compilers may not add the suffix if given an `-o' - # argument, so we may need to know it at that point already. - # Even if this section looks crufty: it has the advantage of - # actually working. - break;; - * ) - break;; - esac -done -test "$ac_cv_exeext" = no && ac_cv_exeext= - -else - ac_file='' -fi - -{ echo "$as_me:$LINENO: result: $ac_file" >&5 -echo "${ECHO_T}$ac_file" >&6; } -if test -z "$ac_file"; then - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: C compiler cannot create executables -See \`config.log' for more details." >&5 -echo "$as_me: error: C compiler cannot create executables -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; } -fi - -ac_exeext=$ac_cv_exeext - -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5 -echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } -# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 -# If not cross compiling, check that we can run a simple program. -if test "$cross_compiling" != yes; then - if { ac_try='./$ac_file' - { (case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { echo "$as_me:$LINENO: error: cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - fi - fi -fi -{ echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6; } - -rm -f a.out a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 -echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } -{ echo "$as_me:$LINENO: result: $cross_compiling" >&5 -echo "${ECHO_T}$cross_compiling" >&6; } - -{ echo "$as_me:$LINENO: checking for suffix of executables" >&5 -echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - break;; - * ) break;; - esac -done -else - { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -rm -f conftest$ac_cv_exeext -{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 -echo "${ECHO_T}$ac_cv_exeext" >&6; } - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -{ echo "$as_me:$LINENO: checking for suffix of object files" >&5 -echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } -if test "${ac_cv_objext+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - for ac_file in conftest.o conftest.obj conftest.*; do - test -f "$ac_file" || continue; - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 -echo "${ECHO_T}$ac_cv_objext" >&6; } -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } -if test "${ac_cv_c_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_compiler_gnu=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } -GCC=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 -echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } -if test "${ac_cv_prog_cc_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - ac_cv_prog_cc_g=no - CFLAGS="-g" - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_prog_cc_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - CFLAGS="" - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_c_werror_flag=$ac_save_c_werror_flag - CFLAGS="-g" - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_prog_cc_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$ac_save_c_werror_flag -fi -{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 -echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } -if test "${ac_cv_prog_cc_c89+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_prog_cc_c89=no -ac_save_CC=$CC -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -#include -#include -#include -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ -#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ - -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_prog_cc_c89=$ac_arg -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - -fi - -rm -f core conftest.err conftest.$ac_objext - test "x$ac_cv_prog_cc_c89" != "xno" && break -done -rm -f conftest.$ac_ext -CC=$ac_save_CC - -fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in - x) - { echo "$as_me:$LINENO: result: none needed" >&5 -echo "${ECHO_T}none needed" >&6; } ;; - xno) - { echo "$as_me:$LINENO: result: unsupported" >&5 -echo "${ECHO_T}unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c89" - { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; -esac - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 -echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } -# On Suns, sometimes $CPP names a directory. -if test -n "$CPP" && test -d "$CPP"; then - CPP= -fi -if test -z "$CPP"; then - if test "${ac_cv_prog_CPP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - # Double quotes because CPP needs to be expanded - for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" - do - ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Broken: fails on valid input. -continue -fi - -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - # Broken: success on invalid input. -continue -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Passes both tests. -ac_preproc_ok=: -break -fi - -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then - break -fi - - done - ac_cv_prog_CPP=$CPP - -fi - CPP=$ac_cv_prog_CPP -else - ac_cv_prog_CPP=$CPP -fi -{ echo "$as_me:$LINENO: result: $CPP" >&5 -echo "${ECHO_T}$CPP" >&6; } -ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Broken: fails on valid input. -continue -fi - -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - # Broken: success on invalid input. -continue -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Passes both tests. -ac_preproc_ok=: -break -fi - -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then - : -else - { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." >&5 -echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -{ echo "$as_me:$LINENO: checking whether ln -s works" >&5 -echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6; } -LN_S=$as_ln_s -if test "$LN_S" = "ln -s"; then - { echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6; } -else - { echo "$as_me:$LINENO: result: no, using $LN_S" >&5 -echo "${ECHO_T}no, using $LN_S" >&6; } -fi - -{ echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 -echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6; } -if test "${ac_cv_path_SED+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ - for ac_i in 1 2 3 4 5 6 7; do - ac_script="$ac_script$as_nl$ac_script" - done - echo "$ac_script" | sed 99q >conftest.sed - $as_unset ac_script || ac_script= - # Extract the first word of "sed gsed" to use in msg output -if test -z "$SED"; then -set dummy sed gsed; ac_prog_name=$2 -if test "${ac_cv_path_SED+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_path_SED_found=false -# Loop through the user's path and test for each of PROGNAME-LIST -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in sed gsed; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue - # Check for GNU ac_path_SED and select it if it is found. - # Check for GNU $ac_path_SED -case `"$ac_path_SED" --version 2>&1` in -*GNU*) - ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; -*) - ac_count=0 - echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - echo '' >> "conftest.nl" - "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - ac_count=`expr $ac_count + 1` - if test $ac_count -gt ${ac_path_SED_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_SED="$ac_path_SED" - ac_path_SED_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - - $ac_path_SED_found && break 3 - done -done - -done -IFS=$as_save_IFS - - -fi - -SED="$ac_cv_path_SED" -if test -z "$SED"; then - { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in \$PATH" >&5 -echo "$as_me: error: no acceptable $ac_prog_name could be found in \$PATH" >&2;} - { (exit 1); exit 1; }; } -fi - -else - ac_cv_path_SED=$SED -fi - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_path_SED" >&5 -echo "${ECHO_T}$ac_cv_path_SED" >&6; } - SED="$ac_cv_path_SED" - rm -f conftest.sed - -{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 -echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } -if test -z "$MKDIR_P"; then - if test "${ac_cv_path_mkdir+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in mkdir gmkdir; do - for ac_exec_ext in '' $ac_executable_extensions; do - { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue - case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( - 'mkdir (GNU coreutils) '* | \ - 'mkdir (coreutils) '* | \ - 'mkdir (fileutils) '4.1*) - ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext - break 3;; - esac - done - done -done -IFS=$as_save_IFS - -fi - - if test "${ac_cv_path_mkdir+set}" = set; then - MKDIR_P="$ac_cv_path_mkdir -p" - else - # As a last resort, use the slow shell script. Don't cache a - # value for MKDIR_P within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - test -d ./--version && rmdir ./--version - MKDIR_P="$ac_install_sh -d" - fi -fi -{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5 -echo "${ECHO_T}$MKDIR_P" >&6; } - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. -set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_RANLIB+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$RANLIB"; then - ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -RANLIB=$ac_cv_prog_RANLIB -if test -n "$RANLIB"; then - { echo "$as_me:$LINENO: result: $RANLIB" >&5 -echo "${ECHO_T}$RANLIB" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_RANLIB"; then - ac_ct_RANLIB=$RANLIB - # Extract the first word of "ranlib", so it can be a program name with args. -set dummy ranlib; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_RANLIB"; then - ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_RANLIB="ranlib" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB -if test -n "$ac_ct_RANLIB"; then - { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 -echo "${ECHO_T}$ac_ct_RANLIB" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - if test "x$ac_ct_RANLIB" = x; then - RANLIB=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&5 -echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&2;} -ac_tool_warned=yes ;; -esac - RANLIB=$ac_ct_RANLIB - fi -else - RANLIB="$ac_cv_prog_RANLIB" -fi - -if test ${enable_fortran} != "-no" ; then - ac_ext=${ac_fc_srcext-f} -ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5' -ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_fc_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_FC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$FC"; then - ac_cv_prog_FC="$FC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_FC="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -FC=$ac_cv_prog_FC -if test -n "$FC"; then - { echo "$as_me:$LINENO: result: $FC" >&5 -echo "${ECHO_T}$FC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - - test -n "$FC" && break - done -fi -if test -z "$FC"; then - ac_ct_FC=$FC - for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_ac_ct_FC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_FC"; then - ac_cv_prog_ac_ct_FC="$ac_ct_FC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_FC="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -ac_ct_FC=$ac_cv_prog_ac_ct_FC -if test -n "$ac_ct_FC"; then - { echo "$as_me:$LINENO: result: $ac_ct_FC" >&5 -echo "${ECHO_T}$ac_ct_FC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - - test -n "$ac_ct_FC" && break -done - - if test "x$ac_ct_FC" = x; then - FC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&5 -echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&2;} -ac_tool_warned=yes ;; -esac - FC=$ac_ct_FC - fi -fi - - -# Provide some information about the compiler. -echo "$as_me:$LINENO: checking for Fortran compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (ac_try="$ac_compiler --version >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compiler --version >&5") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (ac_try="$ac_compiler -v >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compiler -v >&5") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (ac_try="$ac_compiler -V >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compiler -V >&5") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -rm -f a.out - -# If we don't use `.F' as extension, the preprocessor is not run on the -# input file. (Note that this only needs to work for GNU compilers.) -ac_save_ext=$ac_ext -ac_ext=F -{ echo "$as_me:$LINENO: checking whether we are using the GNU Fortran compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU Fortran compiler... $ECHO_C" >&6; } -if test "${ac_cv_fc_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF - program main -#ifndef __GNUC__ - choke me -#endif - - end -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_fc_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_compiler_gnu=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_fc_compiler_gnu=$ac_compiler_gnu - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_fc_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_fc_compiler_gnu" >&6; } -ac_ext=$ac_save_ext -ac_test_FFLAGS=${FCFLAGS+set} -ac_save_FFLAGS=$FCFLAGS -FCFLAGS= -{ echo "$as_me:$LINENO: checking whether $FC accepts -g" >&5 -echo $ECHO_N "checking whether $FC accepts -g... $ECHO_C" >&6; } -if test "${ac_cv_prog_fc_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - FCFLAGS=-g -cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_fc_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_prog_fc_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_prog_fc_g=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_prog_fc_g" >&5 -echo "${ECHO_T}$ac_cv_prog_fc_g" >&6; } -if test "$ac_test_FFLAGS" = set; then - FCFLAGS=$ac_save_FFLAGS -elif test $ac_cv_prog_fc_g = yes; then - if test "x$ac_cv_fc_compiler_gnu" = xyes; then - FCFLAGS="-g -O2" - else - FCFLAGS="-g" - fi -else - if test "x$ac_cv_fc_compiler_gnu" = xyes; then - FCFLAGS="-O2" - else - FCFLAGS= - fi -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -ac_ext=${ac_fc_srcext-f} -ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5' -ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_fc_compiler_gnu -{ echo "$as_me:$LINENO: checking how to get verbose linking output from $FC" >&5 -echo $ECHO_N "checking how to get verbose linking output from $FC... $ECHO_C" >&6; } -if test "${ac_cv_prog_fc_v+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_fc_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_prog_fc_v= -# Try some options frequently used verbose output -for ac_verb in -v -verbose --verbose -V -\#\#\#; do - cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF - -# Compile and link our simple test program by passing a flag (argument -# 1 to this macro) to the Fortran compiler in order to get -# "verbose" output that we can then parse for the Fortran linker -# flags. -ac_save_FFLAGS=$FCFLAGS -FCFLAGS="$FCFLAGS $ac_verb" -eval "set x $ac_link" -shift -echo "$as_me:$LINENO: $*" >&5 -ac_fc_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'` -echo "$ac_fc_v_output" >&5 -FCFLAGS=$ac_save_FFLAGS - -rm -f -r conftest* - -# On HP/UX there is a line like: "LPATH is: /foo:/bar:/baz" where -# /foo, /bar, and /baz are search directories for the Fortran linker. -# Here, we change these into -L/foo -L/bar -L/baz (and put it first): -ac_fc_v_output="`echo $ac_fc_v_output | - grep 'LPATH is:' | - sed 's,.*LPATH is\(: *[^ ]*\).*,\1,;s,: */, -L/,g'` $ac_fc_v_output" - -# FIXME: we keep getting bitten by quoted arguments; a more general fix -# that detects unbalanced quotes in FLIBS should be implemented -# and (ugh) tested at some point. -case $ac_fc_v_output in - # If we are using xlf then replace all the commas with spaces. - *xlfentry*) - ac_fc_v_output=`echo $ac_fc_v_output | sed 's/,/ /g'` ;; - - # With Intel ifc, ignore the quoted -mGLOB_options_string stuff (quoted - # $LIBS confuse us, and the libraries appear later in the output anyway). - *mGLOB_options_string*) - ac_fc_v_output=`echo $ac_fc_v_output | sed 's/"-mGLOB[^"]*"/ /g'` ;; - - # Portland Group compiler has singly- or doubly-quoted -cmdline argument - # Singly-quoted arguments were reported for versions 5.2-4 and 6.0-4. - # Doubly-quoted arguments were reported for "PGF90/x86 Linux/x86 5.0-2". - *-cmdline\ * | *-ignore\ * | *-def\ *) - ac_fc_v_output=`echo $ac_fc_v_output | sed "\ - s/-cmdline *'[^']*'/ /g; s/-cmdline *\"[^\"]*\"/ /g - s/-ignore *'[^']*'/ /g; s/-ignore *\"[^\"]*\"/ /g - s/-def *'[^']*'/ /g; s/-def *\"[^\"]*\"/ /g"` ;; - - # If we are using Cray Fortran then delete quotes. - *cft90*) - ac_fc_v_output=`echo $ac_fc_v_output | sed 's/"//g'` ;; -esac - - - # look for -l* and *.a constructs in the output - for ac_arg in $ac_fc_v_output; do - case $ac_arg in - [\\/]*.a | ?:[\\/]*.a | -[lLRu]*) - ac_cv_prog_fc_v=$ac_verb - break 2 ;; - esac - done -done -if test -z "$ac_cv_prog_fc_v"; then - { echo "$as_me:$LINENO: WARNING: cannot determine how to obtain linking information from $FC" >&5 -echo "$as_me: WARNING: cannot determine how to obtain linking information from $FC" >&2;} -fi -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - { echo "$as_me:$LINENO: WARNING: compilation failed" >&5 -echo "$as_me: WARNING: compilation failed" >&2;} -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_prog_fc_v" >&5 -echo "${ECHO_T}$ac_cv_prog_fc_v" >&6; } -{ echo "$as_me:$LINENO: checking for Fortran libraries of $FC" >&5 -echo $ECHO_N "checking for Fortran libraries of $FC... $ECHO_C" >&6; } -if test "${ac_cv_fc_libs+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "x$FCLIBS" != "x"; then - ac_cv_fc_libs="$FCLIBS" # Let the user override the test. -else - -cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF - -# Compile and link our simple test program by passing a flag (argument -# 1 to this macro) to the Fortran compiler in order to get -# "verbose" output that we can then parse for the Fortran linker -# flags. -ac_save_FFLAGS=$FCFLAGS -FCFLAGS="$FCFLAGS $ac_cv_prog_fc_v" -eval "set x $ac_link" -shift -echo "$as_me:$LINENO: $*" >&5 -ac_fc_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'` -echo "$ac_fc_v_output" >&5 -FCFLAGS=$ac_save_FFLAGS - -rm -f -r conftest* - -# On HP/UX there is a line like: "LPATH is: /foo:/bar:/baz" where -# /foo, /bar, and /baz are search directories for the Fortran linker. -# Here, we change these into -L/foo -L/bar -L/baz (and put it first): -ac_fc_v_output="`echo $ac_fc_v_output | - grep 'LPATH is:' | - sed 's,.*LPATH is\(: *[^ ]*\).*,\1,;s,: */, -L/,g'` $ac_fc_v_output" - -# FIXME: we keep getting bitten by quoted arguments; a more general fix -# that detects unbalanced quotes in FLIBS should be implemented -# and (ugh) tested at some point. -case $ac_fc_v_output in - # If we are using xlf then replace all the commas with spaces. - *xlfentry*) - ac_fc_v_output=`echo $ac_fc_v_output | sed 's/,/ /g'` ;; - - # With Intel ifc, ignore the quoted -mGLOB_options_string stuff (quoted - # $LIBS confuse us, and the libraries appear later in the output anyway). - *mGLOB_options_string*) - ac_fc_v_output=`echo $ac_fc_v_output | sed 's/"-mGLOB[^"]*"/ /g'` ;; - - # Portland Group compiler has singly- or doubly-quoted -cmdline argument - # Singly-quoted arguments were reported for versions 5.2-4 and 6.0-4. - # Doubly-quoted arguments were reported for "PGF90/x86 Linux/x86 5.0-2". - *-cmdline\ * | *-ignore\ * | *-def\ *) - ac_fc_v_output=`echo $ac_fc_v_output | sed "\ - s/-cmdline *'[^']*'/ /g; s/-cmdline *\"[^\"]*\"/ /g - s/-ignore *'[^']*'/ /g; s/-ignore *\"[^\"]*\"/ /g - s/-def *'[^']*'/ /g; s/-def *\"[^\"]*\"/ /g"` ;; - - # If we are using Cray Fortran then delete quotes. - *cft90*) - ac_fc_v_output=`echo $ac_fc_v_output | sed 's/"//g'` ;; -esac - - - -ac_cv_fc_libs= - -# Save positional arguments (if any) -ac_save_positional="$@" - -set X $ac_fc_v_output -while test $# != 1; do - shift - ac_arg=$1 - case $ac_arg in - [\\/]*.a | ?:[\\/]*.a) - ac_exists=false - for ac_i in $ac_cv_fc_libs; do - if test x"$ac_arg" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - ac_cv_fc_libs="$ac_cv_fc_libs $ac_arg" -fi - - ;; - -bI:*) - ac_exists=false - for ac_i in $ac_cv_fc_libs; do - if test x"$ac_arg" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - if test "$ac_compiler_gnu" = yes; then - for ac_link_opt in $ac_arg; do - ac_cv_fc_libs="$ac_cv_fc_libs -Xlinker $ac_link_opt" - done -else - ac_cv_fc_libs="$ac_cv_fc_libs $ac_arg" -fi -fi - - ;; - # Ignore these flags. - -lang* | -lcrt*.o | -lc | -lgcc* | -lSystem | -libmil | -LANG:=* | -LIST:* | -LNO:*) - ;; - -lkernel32) - test x"$CYGWIN" != xyes && ac_cv_fc_libs="$ac_cv_fc_libs $ac_arg" - ;; - -[LRuYz]) - # These flags, when seen by themselves, take an argument. - # We remove the space between option and argument and re-iterate - # unless we find an empty arg or a new option (starting with -) - case $2 in - "" | -*);; - *) - ac_arg="$ac_arg$2" - shift; shift - set X $ac_arg "$@" - ;; - esac - ;; - -YP,*) - for ac_j in `echo $ac_arg | sed -e 's/-YP,/-L/;s/:/ -L/g'`; do - ac_exists=false - for ac_i in $ac_cv_fc_libs; do - if test x"$ac_j" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - ac_arg="$ac_arg $ac_j" - ac_cv_fc_libs="$ac_cv_fc_libs $ac_j" -fi - - done - ;; - -[lLR]*) - ac_exists=false - for ac_i in $ac_cv_fc_libs; do - if test x"$ac_arg" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - ac_cv_fc_libs="$ac_cv_fc_libs $ac_arg" -fi - - ;; - -zallextract*| -zdefaultextract) - ac_cv_fc_libs="$ac_cv_fc_libs $ac_arg" - ;; - # Ignore everything else. - esac -done -# restore positional arguments -set X $ac_save_positional; shift - -# We only consider "LD_RUN_PATH" on Solaris systems. If this is seen, -# then we insist that the "run path" must be an absolute path (i.e. it -# must begin with a "/"). -case `(uname -sr) 2>/dev/null` in - "SunOS 5"*) - ac_ld_run_path=`echo $ac_fc_v_output | - sed -n 's,^.*LD_RUN_PATH *= *\(/[^ ]*\).*$,-R\1,p'` - test "x$ac_ld_run_path" != x && - if test "$ac_compiler_gnu" = yes; then - for ac_link_opt in $ac_ld_run_path; do - ac_cv_fc_libs="$ac_cv_fc_libs -Xlinker $ac_link_opt" - done -else - ac_cv_fc_libs="$ac_cv_fc_libs $ac_ld_run_path" -fi - ;; -esac -fi # test "x$[]_AC_LANG_PREFIX[]LIBS" = "x" - -fi -{ echo "$as_me:$LINENO: result: $ac_cv_fc_libs" >&5 -echo "${ECHO_T}$ac_cv_fc_libs" >&6; } -FCLIBS="$ac_cv_fc_libs" - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -fi - -LDFLAGS=${LDFLAGS}" -lm " - - - -# Check whether --with-uuid was given. -if test "${with_uuid+set}" = set; then - withval=$with_uuid; -else - with_uuid="no" -fi - -with_uuidb="-"${with_uuid} -if test ${with_uuidb} != "-yes" ; then - if test ${with_uuidb} != "-no" ; then - UUIDFLAGS=" -I${with_uuid}/include" - if test ${RTAG} != "none" ; then - UUIDLDFLAGS=" -L${with_uuid}/lib ${RTAG}${with_uuid}/lib -luuid" - else - UUIDLDFLAGS=" -L${with_uuid}/lib -luuid" - fi - else - UUIDLDFLAGS="-luuid" - UUIDFLAGS="" - fi -else - UUIDLDFLAGS="-luuid" - UUIDFLAGS="" -fi - - -{ echo "$as_me:$LINENO: checking for uuid_create in -luuid" >&5 -echo $ECHO_N "checking for uuid_create in -luuid... $ECHO_C" >&6; } -if test "${ac_cv_lib_uuid_uuid_create+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-luuid ${UUIDFLAGS} ${UUIDLDFLAGS} $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char uuid_create (); -int -main () -{ -return uuid_create (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - ac_cv_lib_uuid_uuid_create=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_uuid_uuid_create=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ echo "$as_me:$LINENO: result: $ac_cv_lib_uuid_uuid_create" >&5 -echo "${ECHO_T}$ac_cv_lib_uuid_uuid_create" >&6; } -if test $ac_cv_lib_uuid_uuid_create = yes; then - cat >>confdefs.h <<_ACEOF -#define HAVE_LIBUUID 1 -_ACEOF - - LIBS="-luuid $LIBS" - -else - { { echo "$as_me:$LINENO: error: Could not get a working uuid" >&5 -echo "$as_me: error: Could not get a working uuid" >&2;} - { (exit 1); exit 1; }; } -fi - - -LIBS="" - -# Check whether --with-udunits2 was given. -if test "${with_udunits2+set}" = set; then - withval=$with_udunits2; -else - with_udunits2="no" -fi - -with_udunits2b="-"${with_udunits2} -if test ${with_udunits2b} != "-yes" ; then - if test ${with_udunits2b} != "-no" ; then - UDUNITS2FLAGS=" -I${with_udunits2}/include" - if test ${RTAG} != "none" ; then - UDUNITS2LDFLAGS=" -L${with_udunits2}/lib ${RTAG}${with_udunits2}/lib -ludunits2 -lexpat" - else - UDUNITS2LDFLAGS=" -L${with_udunits2}/lib -ludunits2 -lexpat" - fi - else - UDUNITS2FLAGS="-ludunits2" - UDUNITS2LDFLAGS="" - fi -else - UDUNITS2FLAGS="-ludunits2" - UDUNITS2LDFLAGS="" -fi - -{ echo "$as_me:$LINENO: checking for ut_parse in -ludunits2" >&5 -echo $ECHO_N "checking for ut_parse in -ludunits2... $ECHO_C" >&6; } -if test "${ac_cv_lib_udunits2_ut_parse+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ludunits2 ${UDUNITS2FLAGS} ${UDUNITS2LDFLAGS} -lm $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char ut_parse (); -int -main () -{ -return ut_parse (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - ac_cv_lib_udunits2_ut_parse=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_udunits2_ut_parse=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ echo "$as_me:$LINENO: result: $ac_cv_lib_udunits2_ut_parse" >&5 -echo "${ECHO_T}$ac_cv_lib_udunits2_ut_parse" >&6; } -if test $ac_cv_lib_udunits2_ut_parse = yes; then - cat >>confdefs.h <<_ACEOF -#define HAVE_LIBUDUNITS2 1 -_ACEOF - - LIBS="-ludunits2 $LIBS" - -else - { { echo "$as_me:$LINENO: error: Could not get a working udunits2" >&5 -echo "$as_me: error: Could not get a working udunits2" >&2;} - { (exit 1); exit 1; }; } -fi - -LIBS="" - - - -# Check whether --with-netcdf was given. -if test "${with_netcdf+set}" = set; then - withval=$with_netcdf; -else - with_netcdf="no" -fi - -with_netcdfb="-"${with_netcdf} -if test ${with_netcdfb} != "-yes" ; then - if test ${with_netcdfb} != "-no" ; then - as_ac_File=`echo "ac_cv_file_${with_netcdf}/bin/nc-config" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for ${with_netcdf}/bin/nc-config" >&5 -echo $ECHO_N "checking for ${with_netcdf}/bin/nc-config... $ECHO_C" >&6; } -if { as_var=$as_ac_File; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - test "$cross_compiling" = yes && - { { echo "$as_me:$LINENO: error: cannot check for file existence when cross compiling" >&5 -echo "$as_me: error: cannot check for file existence when cross compiling" >&2;} - { (exit 1); exit 1; }; } -if test -r "${with_netcdf}/bin/nc-config"; then - eval "$as_ac_File=yes" -else - eval "$as_ac_File=no" -fi -fi -ac_res=`eval echo '${'$as_ac_File'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_File'}'` = yes; then - HAS_NCCONFIG=yes -else - HAS_NCCONFIG=no -fi - - if test ${HAS_NCCONFIG} == "yes" ; then - NCCFLAGS=`${with_netcdf}/bin/nc-config --cflags` - NCLDFLAGS=`${with_netcdf}/bin/nc-config --libs` - else -#echo "CRAP!" - NCCFLAGS=" -I${with_netcdf}/include" - if test ${RTAG} != "none" ; then - NCLDFLAGS=" -L${with_netcdf}/lib ${RTAG}${with_netcdf}/lib -lnetcdf" - else - NCLDFLAGS=" -L${with_netcdf}/lib -lnetcdf" - fi - fi - else - NCCFLAGS="-lnetcdf" - NCLDFLAGS="" - fi -else - # Extract the first word of "nc-config", so it can be a program name with args. -set dummy nc-config; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_path_NCCONFIG+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $NCCONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_NCCONFIG="$NCCONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_NCCONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - - test -z "$ac_cv_path_NCCONFIG" && ac_cv_path_NCCONFIG=""no"" - ;; -esac -fi -NCCONFIG=$ac_cv_path_NCCONFIG -if test -n "$NCCONFIG"; then - { echo "$as_me:$LINENO: result: $NCCONFIG" >&5 -echo "${ECHO_T}$NCCONFIG" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - - if test NCCONFIG != "no" ; then - NCCFLAGS=`${NCCONFIG} --cflags` - NCLDFLAGS=`${NCCONFIG} --libs` - else - NCCFLAGS="-lnetcdf" - NCLDFLAGS="" - fi -fi - -USERCFLAGS=${CFLAGS} -USERFFLAGS=${FFLAGS} -USERLDFLAGS=${LDFLAGS} - -CFLAGS=${NCCFLAGS} -LDFLAGS=${NCLDFLAGS} - -{ echo "$as_me:$LINENO: checking for nc_inq_var_deflate in -lnetcdf" >&5 -echo $ECHO_N "checking for nc_inq_var_deflate in -lnetcdf... $ECHO_C" >&6; } -if test "${ac_cv_lib_netcdf_nc_inq_var_deflate+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lnetcdf ${NCFLAGS} ${NCLDFLAGS} $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char nc_inq_var_deflate (); -int -main () -{ -return nc_inq_var_deflate (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - ac_cv_lib_netcdf_nc_inq_var_deflate=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_netcdf_nc_inq_var_deflate=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ echo "$as_me:$LINENO: result: $ac_cv_lib_netcdf_nc_inq_var_deflate" >&5 -echo "${ECHO_T}$ac_cv_lib_netcdf_nc_inq_var_deflate" >&6; } -if test $ac_cv_lib_netcdf_nc_inq_var_deflate = yes; then - HAS_NC4="yes" -else - HAS_NC4="no" -fi - -BUILD_NC3="no" -HAS_NC3="no" -OLIBS=${LIBS} -LIBS="-lnetcdf "${NCCFLAGS}" "${NCLDFLAGS} -if test ${HAS_NC4} == "no" ; then - { echo "$as_me:$LINENO: checking for nc_open in -lnetcdf" >&5 -echo $ECHO_N "checking for nc_open in -lnetcdf... $ECHO_C" >&6; } -if test "${ac_cv_lib_netcdf_nc_open+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lnetcdf ${NCFLAGS} ${NCLDFLAGS} $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char nc_open (); -int -main () -{ -return nc_open (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - ac_cv_lib_netcdf_nc_open=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_netcdf_nc_open=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ echo "$as_me:$LINENO: result: $ac_cv_lib_netcdf_nc_open" >&5 -echo "${ECHO_T}$ac_cv_lib_netcdf_nc_open" >&6; } -if test $ac_cv_lib_netcdf_nc_open = yes; then - HAS_NC="yes" -else - HAS_NC="no" -fi - - if test ${HAS_NCCONFIG} == "yes" ; then - HAS_NC3="yes" - else - { echo "$as_me:$LINENO: checking if you have netcdf 3.6.3)" >&5 -echo $ECHO_N "checking if you have netcdf 3.6.3)... $ECHO_C" >&6; } - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - - #include - #include - #include - #include - -int -main () -{ - - - char version[50]; - int major,minor,patch; - strncpy(version,nc_inq_libvers(),50); - sscanf(version,"%*c%1d%*c%1d%*c%1d%*s",&major,&minor,&patch); - if ((major!=3) && (minor!=6) && (patch!=3)) return 1; - return 0; - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - BUILD_NC3="no" -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -BUILD_NC3="yes" -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi - - - if test ${BUILD_NC3} == "yes" ; then - { echo "$as_me:$LINENO: result: \"no\"" >&5 -echo "${ECHO_T}\"no\"" >&6; } - { { echo "$as_me:$LINENO: error: Could not get a working NetCDF" >&5 -echo "$as_me: error: Could not get a working NetCDF" >&2;} - { (exit 1); exit 1; }; } - else - { echo "$as_me:$LINENO: result: \"yes\"" >&5 -echo "${ECHO_T}\"yes\"" >&6; } - fi - HAS_NC3="yes" - fi -fi -LIBS=${OLIBS} -CFLAGS=${CFLAGS}" -Iinclude -Iinclude/cdTime" -MAINDIR=`pwd` - -# Library sources -LIBSOURCES="Src/cmor.c Src/cmor_variables.c Src/cmor_axes.c Src/cmor_tables.c Src/cmor_grids.c Src/cdTime/cdTimeConv.c Src/cdTime/cdUtil.c Src/cdTime/timeConv.c Src/cdTime/timeArith.c Src/cmor_cfortran_interface.c Src/cmor_md5.c" -LIBFSOURCES="Src/cmor_fortran_interface.f90" - - -cat >confcache <<\_ACEOF -# This file is a shell script that caches the results of configure -# tests run on this system so they can be shared between configure -# scripts and configure runs, see configure's option --config-cache. -# It is not useful on other systems. If it contains results you don't -# want to keep, you may remove or edit it. -# -# config.status only pays attention to the cache file if you give it -# the --recheck option to rerun configure. -# -# `ac_cv_env_foo' variables (set or unset) will be overridden when -# loading this file, other *unset* `ac_cv_foo' will be assigned the -# following values. - -_ACEOF - -# The following way of writing the cache mishandles newlines in values, -# but we know of no workaround that is simple, portable, and efficient. -# So, we kill variables containing newlines. -# Ultrix sh set writes to stderr and can't be redirected directly, -# and sets the high bit in the cache file unless we assign to the vars. -( - for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 -echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - *) $as_unset $ac_var ;; - esac ;; - esac - done - - (set) 2>&1 | - case $as_nl`(ac_space=' '; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - # `set' does not quote correctly, so add quotes (double-quote - # substitution turns \\\\ into \\, and sed turns \\ into \). - sed -n \ - "s/'/'\\\\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" - ;; #( - *) - # `set' quotes correctly as required by POSIX, so do not add quotes. - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) | - sed ' - /^ac_cv_env_/b end - t clear - :clear - s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ - t end - s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ - :end' >>confcache -if diff "$cache_file" confcache >/dev/null 2>&1; then :; else - if test -w "$cache_file"; then - test "x$cache_file" != "x/dev/null" && - { echo "$as_me:$LINENO: updating cache $cache_file" >&5 -echo "$as_me: updating cache $cache_file" >&6;} - cat confcache >$cache_file - else - { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 -echo "$as_me: not updating unwritable cache $cache_file" >&6;} - fi -fi -rm -f confcache - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -# Transform confdefs.h into DEFS. -# Protect against shell expansion while executing Makefile rules. -# Protect against Makefile macro expansion. -# -# If the first sed substitution is executed (which looks for macros that -# take arguments), then branch to the quote section. Otherwise, -# look for a macro that doesn't take arguments. -ac_script=' -t clear -:clear -s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g -t quote -s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g -t quote -b any -:quote -s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g -s/\[/\\&/g -s/\]/\\&/g -s/\$/$$/g -H -:any -${ - g - s/^\n// - s/\n/ /g - p -} -' -DEFS=`sed -n "$ac_script" confdefs.h` - - -ac_libobjs= -ac_ltlibobjs= -for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue - # 1. Remove the extension, and $U if already installed. - ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' - ac_i=`echo "$ac_i" | sed "$ac_script"` - # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR - # will be set to the directory where LIBOBJS objects are built. - ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" - ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' -done -LIBOBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - - -: ${CONFIG_STATUS=./config.status} -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 -echo "$as_me: creating $CONFIG_STATUS" >&6;} -cat >$CONFIG_STATUS <<_ACEOF -#! $SHELL -# Generated by $as_me. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false -SHELL=\${CONFIG_SHELL-$SHELL} -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - -fi - - - - -# PATH needs CR -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -as_nl=' -' -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - { (exit 1); exit 1; } -fi - -# Work around bugs in pre-3.0 UWIN ksh. -for as_var in ENV MAIL MAILPATH -do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var - fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# CDPATH. -$as_unset CDPATH - - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line after each line using $LINENO; the second 'sed' - # does the real work. The second script uses 'N' to pair each - # line-number line with the line containing $LINENO, and appends - # trailing '-' during substitution so that $LINENO is not a special - # case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # scripts with optimization help from Paolo Bonzini. Blame Lee - # E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in --n*) - case `echo 'x\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - *) ECHO_C='\c';; - esac;; -*) - ECHO_N='-n';; -esac - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir -fi -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - -if mkdir -p . 2>/dev/null; then - as_mkdir_p=: -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 6>&1 - -# Save the log message, to keep $[0] and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. -ac_log=" -This file was extended by cmor $as_me 2.8.3, which was -generated by GNU Autoconf 2.61. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -on `(hostname || uname -n) 2>/dev/null | sed 1q` -" - -_ACEOF - -cat >>$CONFIG_STATUS <<_ACEOF -# Files that config.status was made for. -config_files="$ac_config_files" - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -ac_cs_usage="\ -\`$as_me' instantiates files from templates according to the -current configuration. - -Usage: $0 [OPTIONS] [FILE]... - - -h, --help print this help, then exit - -V, --version print version number and configuration settings, then exit - -q, --quiet do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - -Configuration files: -$config_files - -Report bugs to ." - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF -ac_cs_version="\\ -cmor config.status 2.8.3 -configured by $0, generated by GNU Autoconf 2.61, - with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" - -Copyright (C) 2006 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." - -ac_pwd='$ac_pwd' -srcdir='$srcdir' -MKDIR_P='$MKDIR_P' -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -# If no file are specified by the user, then we need to provide default -# value. By we need to know if files were specified by the user. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=*) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` - ac_shift=: - ;; - *) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - esac - - case $ac_option in - # Handling of the options. - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - echo "$ac_cs_version"; exit ;; - --debug | --debu | --deb | --de | --d | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - CONFIG_FILES="$CONFIG_FILES $ac_optarg" - ac_need_defaults=false;; - --he | --h | --help | --hel | -h ) - echo "$ac_cs_usage"; exit ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) { echo "$as_me: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; } ;; - - *) ac_config_targets="$ac_config_targets $1" - ac_need_defaults=false ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF -if \$ac_cs_recheck; then - echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 - CONFIG_SHELL=$SHELL - export CONFIG_SHELL - exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion -fi - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX - echo "$ac_log" -} >&5 - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "setup.py") CONFIG_FILES="$CONFIG_FILES setup.py" ;; - "compile_line.txt") CONFIG_FILES="$CONFIG_FILES compile_line.txt" ;; - "include/cmor_locale.h") CONFIG_FILES="$CONFIG_FILES include/cmor_locale.h" ;; - - *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 -echo "$as_me: error: invalid argument: $ac_config_target" >&2;} - { (exit 1); exit 1; }; };; - esac -done - - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason against having it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Hook for its removal unless debugging. -# Note that there is a small window in which the directory will not be cleaned: -# after its creation but before its name has been assigned to `$tmp'. -$debug || -{ - tmp= - trap 'exit_status=$? - { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status -' 0 - trap '{ (exit 1); exit 1; }' 1 2 13 15 -} -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -n "$tmp" && test -d "$tmp" -} || -{ - tmp=./conf$$-$RANDOM - (umask 077 && mkdir "$tmp") -} || -{ - echo "$me: cannot create a temporary directory in ." >&2 - { (exit 1); exit 1; } -} - -# -# Set up the sed scripts for CONFIG_FILES section. -# - -# No need to generate the scripts if there are no CONFIG_FILES. -# This happens for instance when ./config.status config.h -if test -n "$CONFIG_FILES"; then - -_ACEOF - - - -ac_delim='%!_!# ' -for ac_last_try in false false false false false :; do - cat >conf$$subs.sed <<_ACEOF -SHELL!$SHELL$ac_delim -PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim -PACKAGE_NAME!$PACKAGE_NAME$ac_delim -PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim -PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim -PACKAGE_STRING!$PACKAGE_STRING$ac_delim -PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim -exec_prefix!$exec_prefix$ac_delim -prefix!$prefix$ac_delim -program_transform_name!$program_transform_name$ac_delim -bindir!$bindir$ac_delim -sbindir!$sbindir$ac_delim -libexecdir!$libexecdir$ac_delim -datarootdir!$datarootdir$ac_delim -datadir!$datadir$ac_delim -sysconfdir!$sysconfdir$ac_delim -sharedstatedir!$sharedstatedir$ac_delim -localstatedir!$localstatedir$ac_delim -includedir!$includedir$ac_delim -oldincludedir!$oldincludedir$ac_delim -docdir!$docdir$ac_delim -infodir!$infodir$ac_delim -htmldir!$htmldir$ac_delim -dvidir!$dvidir$ac_delim -pdfdir!$pdfdir$ac_delim -psdir!$psdir$ac_delim -libdir!$libdir$ac_delim -localedir!$localedir$ac_delim -mandir!$mandir$ac_delim -DEFS!$DEFS$ac_delim -ECHO_C!$ECHO_C$ac_delim -ECHO_N!$ECHO_N$ac_delim -ECHO_T!$ECHO_T$ac_delim -LIBS!$LIBS$ac_delim -build_alias!$build_alias$ac_delim -host_alias!$host_alias$ac_delim -target_alias!$target_alias$ac_delim -build!$build$ac_delim -build_cpu!$build_cpu$ac_delim -build_vendor!$build_vendor$ac_delim -build_os!$build_os$ac_delim -host!$host$ac_delim -host_cpu!$host_cpu$ac_delim -host_vendor!$host_vendor$ac_delim -host_os!$host_os$ac_delim -target!$target$ac_delim -target_cpu!$target_cpu$ac_delim -target_vendor!$target_vendor$ac_delim -target_os!$target_os$ac_delim -PATH!$PATH$ac_delim -NCCFLAGS!$NCCFLAGS$ac_delim -NCLDFLAGS!$NCLDFLAGS$ac_delim -ZFLAGS!$ZFLAGS$ac_delim -ZLDFLAGS!$ZLDFLAGS$ac_delim -UDUNITS2FLAGS!$UDUNITS2FLAGS$ac_delim -UDUNITS2LDFLAGS!$UDUNITS2LDFLAGS$ac_delim -UUIDFLAGS!$UUIDFLAGS$ac_delim -UUIDLDFLAGS!$UUIDLDFLAGS$ac_delim -LIBSOURCES!$LIBSOURCES$ac_delim -LIBFSOURCES!$LIBFSOURCES$ac_delim -FC!$FC$ac_delim -FFLAGS!$FFLAGS$ac_delim -FCFLAGS!$FCFLAGS$ac_delim -LDFLAGS!$LDFLAGS$ac_delim -CFLAGS!$CFLAGS$ac_delim -USERCFLAGS!$USERCFLAGS$ac_delim -USERFFLAGS!$USERFFLAGS$ac_delim -USERLDFLAGS!$USERLDFLAGS$ac_delim -INCFILES!$INCFILES$ac_delim -TEST_FORTRAN!$TEST_FORTRAN$ac_delim -LIBFILES!$LIBFILES$ac_delim -VERB!$VERB$ac_delim -MODFILES!$MODFILES$ac_delim -MACROS!$MACROS$ac_delim -DEBUG!$DEBUG$ac_delim -OK_COLOR!$OK_COLOR$ac_delim -NO_COLOR!$NO_COLOR$ac_delim -CDATPREFIX!$CDATPREFIX$ac_delim -PYTHONEXEC!$PYTHONEXEC$ac_delim -MAKEDEPPYTHON!$MAKEDEPPYTHON$ac_delim -MAKETESTPYTHON!$MAKETESTPYTHON$ac_delim -CC!$CC$ac_delim -CPPFLAGS!$CPPFLAGS$ac_delim -ac_ct_CC!$ac_ct_CC$ac_delim -EXEEXT!$EXEEXT$ac_delim -OBJEXT!$OBJEXT$ac_delim -CPP!$CPP$ac_delim -LN_S!$LN_S$ac_delim -SED!$SED$ac_delim -RANLIB!$RANLIB$ac_delim -ac_ct_FC!$ac_ct_FC$ac_delim -FCLIBS!$FCLIBS$ac_delim -NCCONFIG!$NCCONFIG$ac_delim -LIBOBJS!$LIBOBJS$ac_delim -LTLIBOBJS!$LTLIBOBJS$ac_delim -_ACEOF - - if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 95; then - break - elif $ac_last_try; then - { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 -echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} - { (exit 1); exit 1; }; } - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done - -ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` -if test -n "$ac_eof"; then - ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` - ac_eof=`expr $ac_eof + 1` -fi - -cat >>$CONFIG_STATUS <<_ACEOF -cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end -_ACEOF -sed ' -s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g -s/^/s,@/; s/!/@,|#_!!_#|/ -:n -t n -s/'"$ac_delim"'$/,g/; t -s/$/\\/; p -N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n -' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF -:end -s/|#_!!_#|//g -CEOF$ac_eof -_ACEOF - - -# VPATH may cause trouble with some makes, so we remove $(srcdir), -# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=/{ -s/:*\$(srcdir):*/:/ -s/:*\${srcdir}:*/:/ -s/:*@srcdir@:*/:/ -s/^\([^=]*=[ ]*\):*/\1/ -s/:*$// -s/^[^=]*=[ ]*$// -}' -fi - -cat >>$CONFIG_STATUS <<\_ACEOF -fi # test -n "$CONFIG_FILES" - - -for ac_tag in :F $CONFIG_FILES -do - case $ac_tag in - :[FHLC]) ac_mode=$ac_tag; continue;; - esac - case $ac_mode$ac_tag in - :[FHL]*:*);; - :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 -echo "$as_me: error: Invalid tag $ac_tag." >&2;} - { (exit 1); exit 1; }; };; - :[FH]-) ac_tag=-:-;; - :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; - esac - ac_save_IFS=$IFS - IFS=: - set x $ac_tag - IFS=$ac_save_IFS - shift - ac_file=$1 - shift - - case $ac_mode in - :L) ac_source=$1;; - :[FH]) - ac_file_inputs= - for ac_f - do - case $ac_f in - -) ac_f="$tmp/stdin";; - *) # Look for the file first in the build tree, then in the source tree - # (if the path is not absolute). The absolute path cannot be DOS-style, - # because $ac_f cannot contain `:'. - test -f "$ac_f" || - case $ac_f in - [\\/$]*) false;; - *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; - esac || - { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 -echo "$as_me: error: cannot find input file: $ac_f" >&2;} - { (exit 1); exit 1; }; };; - esac - ac_file_inputs="$ac_file_inputs $ac_f" - done - - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - configure_input="Generated from "`IFS=: - echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." - if test x"$ac_file" != x-; then - configure_input="$ac_file. $configure_input" - { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - fi - - case $ac_tag in - *:-:* | *:-) cat >"$tmp/stdin";; - esac - ;; - esac - - ac_dir=`$as_dirname -- "$ac_file" || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - { as_dir="$ac_dir" - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 -echo "$as_me: error: cannot create directory $as_dir" >&2;} - { (exit 1); exit 1; }; }; } - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - - case $ac_mode in - :F) - # - # CONFIG_FILE - # - - ac_MKDIR_P=$MKDIR_P - case $MKDIR_P in - [\\/$]* | ?:[\\/]* ) ;; - */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; - esac -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -# If the template does not know about datarootdir, expand it. -# FIXME: This hack should be removed a few years after 2.60. -ac_datarootdir_hack=; ac_datarootdir_seen= - -case `sed -n '/datarootdir/ { - p - q -} -/@datadir@/p -/@docdir@/p -/@infodir@/p -/@localedir@/p -/@mandir@/p -' $ac_file_inputs` in -*datarootdir*) ac_datarootdir_seen=yes;; -*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF - ac_datarootdir_hack=' - s&@datadir@&$datadir&g - s&@docdir@&$docdir&g - s&@infodir@&$infodir&g - s&@localedir@&$localedir&g - s&@mandir@&$mandir&g - s&\\\${datarootdir}&$datarootdir&g' ;; -esac -_ACEOF - -# Neutralize VPATH when `$srcdir' = `.'. -# Shell code in configure.ac might set extrasub. -# FIXME: do we really want to maintain this feature? -cat >>$CONFIG_STATUS <<_ACEOF - sed "$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s&@configure_input@&$configure_input&;t t -s&@top_builddir@&$ac_top_builddir_sub&;t t -s&@srcdir@&$ac_srcdir&;t t -s&@abs_srcdir@&$ac_abs_srcdir&;t t -s&@top_srcdir@&$ac_top_srcdir&;t t -s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -s&@builddir@&$ac_builddir&;t t -s&@abs_builddir@&$ac_abs_builddir&;t t -s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -s&@MKDIR_P@&$ac_MKDIR_P&;t t -$ac_datarootdir_hack -" $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out - -test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && - { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&5 -echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&2;} - - rm -f "$tmp/stdin" - case $ac_file in - -) cat "$tmp/out"; rm -f "$tmp/out";; - *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; - esac - ;; - - - - esac - -done # for ac_tag - - -{ (exit 0); exit 0; } -_ACEOF -chmod +x $CONFIG_STATUS -ac_clean_files=$ac_clean_files_save - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded. So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status. When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then - ac_cs_success=: - ac_config_status_args= - test "$silent" = yes && - ac_config_status_args="$ac_config_status_args --quiet" - exec 5>/dev/null - $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false - exec 5>>config.log - # Use ||, not &&, to avoid exiting from the if with $? = 1, which - # would make configure fail if this is the last instruction. - $ac_cs_success || { (exit 1); exit 1; } -fi - - -{ echo "$as_me:$LINENO: " >&5 -echo "$as_me: " >&6;} -{ echo "$as_me:$LINENO: ************************************************************************" >&5 -echo "$as_me: ************************************************************************" >&6;} -{ echo "$as_me:$LINENO: SUMMARY" >&5 -echo "$as_me: SUMMARY" >&6;} -{ echo "$as_me:$LINENO: VERSION: ${CMOR_VERSION}" >&5 -echo "$as_me: VERSION: ${CMOR_VERSION}" >&6;} -{ echo "$as_me:$LINENO: ************************************************************************" >&5 -echo "$as_me: ************************************************************************" >&6;} -{ echo "$as_me:$LINENO: " >&5 -echo "$as_me: " >&6;} -{ echo "$as_me:$LINENO: ........................................................................" >&5 -echo "$as_me: ........................................................................" >&6;} -{ echo "$as_me:$LINENO: ... COMPILERS" >&5 -echo "$as_me: ... COMPILERS" >&6;} -{ echo "$as_me:$LINENO: ........................................................................" >&5 -echo "$as_me: ........................................................................" >&6;} -{ echo "$as_me:$LINENO: " >&5 -echo "$as_me: " >&6;} -{ echo "$as_me:$LINENO: FORTRAN" >&5 -echo "$as_me: FORTRAN" >&6;} -if test ${enable_fortran} == "-no" ; then - { echo "$as_me:$LINENO: DISABLED" >&5 -echo "$as_me: DISABLED" >&6;} -else - { echo "$as_me:$LINENO: FC=${FC}" >&5 -echo "$as_me: FC=${FC}" >&6;} - { echo "$as_me:$LINENO: F77=${F77}" >&5 -echo "$as_me: F77=${F77}" >&6;} - { echo "$as_me:$LINENO: FFLAGS=${FFLAGS}" >&5 -echo "$as_me: FFLAGS=${FFLAGS}" >&6;} - { echo "$as_me:$LINENO: FCFLAGS=${FCFLAGS}" >&5 -echo "$as_me: FCFLAGS=${FCFLAGS}" >&6;} -fi -{ echo "$as_me:$LINENO: ........................................................................" >&5 -echo "$as_me: ........................................................................" >&6;} -{ echo "$as_me:$LINENO: ... EXTERNALS ..." >&5 -echo "$as_me: ... EXTERNALS ..." >&6;} -{ echo "$as_me:$LINENO: ........................................................................" >&5 -echo "$as_me: ........................................................................" >&6;} -if test ${SZLIBFLAGS}!="nosz" ; then - { echo "$as_me:$LINENO: " >&5 -echo "$as_me: " >&6;} - { echo "$as_me:$LINENO: SZLIB" >&5 -echo "$as_me: SZLIB" >&6;} - { echo "$as_me:$LINENO: CFLAGS : ${SZLIBFLAGS}" >&5 -echo "$as_me: CFLAGS : ${SZLIBFLAGS}" >&6;} - { echo "$as_me:$LINENO: LDFLAGS : ${SZLIBLDFLAGS}" >&5 -echo "$as_me: LDFLAGS : ${SZLIBLDFLAGS}" >&6;} -fi -{ echo "$as_me:$LINENO: " >&5 -echo "$as_me: " >&6;} -{ echo "$as_me:$LINENO: UUID" >&5 -echo "$as_me: UUID" >&6;} -{ echo "$as_me:$LINENO: CFLAGS : ${UUIDFLAGS}" >&5 -echo "$as_me: CFLAGS : ${UUIDFLAGS}" >&6;} -{ echo "$as_me:$LINENO: LDFLAGS : ${UUIDLDFLAGS}" >&5 -echo "$as_me: LDFLAGS : ${UUIDLDFLAGS}" >&6;} -{ echo "$as_me:$LINENO: " >&5 -echo "$as_me: " >&6;} -{ echo "$as_me:$LINENO: UDUNITS2" >&5 -echo "$as_me: UDUNITS2" >&6;} -{ echo "$as_me:$LINENO: CFLAGS : ${UDUNITS2FLAGS}" >&5 -echo "$as_me: CFLAGS : ${UDUNITS2FLAGS}" >&6;} -{ echo "$as_me:$LINENO: LDFLAGS : ${UDUNITS2LDFLAGS}" >&5 -echo "$as_me: LDFLAGS : ${UDUNITS2LDFLAGS}" >&6;} -{ echo "$as_me:$LINENO: " >&5 -echo "$as_me: " >&6;} -if test ${BUILD_NC3} == "no" ; then - if test ${HAS_NC4} == "yes" ; then - { echo "$as_me:$LINENO: NetCDF4" >&5 -echo "$as_me: NetCDF4" >&6;} - { echo "$as_me:$LINENO: CFLAGS : ${NCCFLAGS}" >&5 -echo "$as_me: CFLAGS : ${NCCFLAGS}" >&6;} - { echo "$as_me:$LINENO: LDFLAGS : ${NCLDFLAGS}" >&5 -echo "$as_me: LDFLAGS : ${NCLDFLAGS}" >&6;} - else - { echo "$as_me:$LINENO: NetCDF3.6.3" >&5 -echo "$as_me: NetCDF3.6.3" >&6;} - { echo "$as_me:$LINENO: CFLAGS : ${NCCFLAGS}" >&5 -echo "$as_me: CFLAGS : ${NCCFLAGS}" >&6;} - { echo "$as_me:$LINENO: LDFLAGS : ${NCLDFLAGS}" >&5 -echo "$as_me: LDFLAGS : ${NCLDFLAGS}" >&6;} - fi -else - { echo "$as_me:$LINENO: No valid NetCDF found will build NetCDF3.6.3 for you" >&5 -echo "$as_me: No valid NetCDF found will build NetCDF3.6.3 for you" >&6;} -fi -{ echo "$as_me:$LINENO: " >&5 -echo "$as_me: " >&6;} -{ echo "$as_me:$LINENO: PYTHON" >&5 -echo "$as_me: PYTHON" >&6;} -if test "-"${PYTHONEXEC} == "-" ; then - { echo "$as_me:$LINENO: Not built, not used it tests" >&5 -echo "$as_me: Not built, not used it tests" >&6;} -else - { echo "$as_me:$LINENO: Built using python: ${PYTHONEXEC}" >&5 -echo "$as_me: Built using python: ${PYTHONEXEC}" >&6;} -fi -{ echo "$as_me:$LINENO: " >&5 -echo "$as_me: " >&6;} -{ echo "$as_me:$LINENO: Type \"make\" to build cmor" >&5 -echo "$as_me: Type \"make\" to build cmor" >&6;} -{ echo "$as_me:$LINENO: Type \"make install\" to build and install cmor to ${prefix}" >&5 -echo "$as_me: Type \"make install\" to build and install cmor to ${prefix}" >&6;} -{ echo "$as_me:$LINENO: " >&5 -echo "$as_me: " >&6;} -{ echo "$as_me:$LINENO: Type \"make test\" to build and test cmor code only" >&5 -echo "$as_me: Type \"make test\" to build and test cmor code only" >&6;} -{ echo "$as_me:$LINENO: Type \"make test_C\" to build cmor and test C only" >&5 -echo "$as_me: Type \"make test_C\" to build cmor and test C only" >&6;} -if test "-"${MAKETESTPYTHON} != "-" ; then - { echo "$as_me:$LINENO: Will also test for python since your are using CDAT" >&5 -echo "$as_me: Will also test for python since your are using CDAT" >&6;} -{ echo "$as_me:$LINENO: Type \"make test_python\" to build and test cmor python only" >&5 -echo "$as_me: Type \"make test_python\" to build and test cmor python only" >&6;} -fi -if test ${enable_fortran} != "-no" ; then - { echo "$as_me:$LINENO: Type \"make test_fortran\" to build cmor and test fortran only" >&5 -echo "$as_me: Type \"make test_fortran\" to build cmor and test fortran only" >&6;} -else - { echo "$as_me:$LINENO: will also test for fortran" >&5 -echo "$as_me: will also test for fortran" >&6;} -fi -{ echo "$as_me:$LINENO: " >&5 -echo "$as_me: " >&6;} -{ echo "$as_me:$LINENO: You can compile C or FORTRAN code using the compilation lines shown in file: compile_line.txt and printed bellow:" >&5 -echo "$as_me: You can compile C or FORTRAN code using the compilation lines shown in file: compile_line.txt and printed bellow:" >&6;} -{ echo "$as_me:$LINENO: " >&5 -echo "$as_me: " >&6;} -{ echo "$as_me:$LINENO: " >&5 -echo "$as_me: " >&6;} - - -cat compile_line.txt diff --git a/configure.ac b/configure.ac deleted file mode 100644 index b235a9d3a9c23a23dcb0c78f43199541cfb07ff6..0000000000000000000000000000000000000000 --- a/configure.ac +++ /dev/null @@ -1,376 +0,0 @@ -dnl -*- Autoconf -*- -dnl Process this file with autoconf to produce a configure script. - -dnl AC_PREREQ(2.59) -AC_INIT(cmor, 2.8.3, doutriaux1@llnl.gov) - -GIT_TAG=`./get_git_version.sh` - -AC_CANONICAL_TARGET -echo "TARGET: "${target_os} -RTAG="none" -case ${target_os} in - linux-*) - RTAG="-Wl,-rpath=" - ;; - darwin*) - RTAG="-R" - ;; -esac - -CMOR_VERSION=${PACKAGE_VERSION}" (commit: ${GIT_TAG})" - -AC_PREFIX_DEFAULT([/usr/local/cmor]) -AC_CONFIG_FILES([Makefile setup.py compile_line.txt include/cmor_locale.h]) - - -INCFILES="include/cmor.h include/cmor_func_def.h include/cmor_md5.h "`ls -x --width=10000 include/cdTime/*.h include/cdTime/cdunifpp/*.h` -AC_SUBST(PATH) -AC_SUBST(NCCFLAGS) -AC_SUBST(NCLDFLAGS) -AC_SUBST(ZFLAGS) -AC_SUBST(ZLDFLAGS) -AC_SUBST(UDUNITS2FLAGS) -AC_SUBST(UDUNITS2LDFLAGS) -AC_SUBST(UUIDFLAGS) -AC_SUBST(UUIDLDFLAGS) -AC_SUBST(LIBSOURCES) -AC_SUBST(LIBFSOURCES) -AC_SUBST(FC) -AC_SUBST(FFLAGS) -AC_SUBST(FCFLAGS) -AC_SUBST(LDFLAGS) -AC_SUBST(CFLAGS) -AC_SUBST(USERCFLAGS) -AC_SUBST(USERFFLAGS) -AC_SUBST(USERLDFLAGS) - -AC_SUBST(INCFILES) -AC_SUBST(TEST_FORTRAN) -AC_SUBST(LIBFILES) -AC_SUBST(VERB) -AC_SUBST(MODFILES) -AC_SUBST(MACROS) -AC_SUBST(DEBUG) -AC_SUBST(OK_COLOR) -AC_SUBST(NO_COLOR) - -MACROS="" -DEBUG="" - -OK_COLOR="" -NO_COLOR="" - -AC_ARG_ENABLE([verbose-test],[AS_HELP_STRING([--enable-verbose-test],[enable verbose testing (default off)])]) -if test "-"${enable_verbose_test} == "-yes" ; then - VERB="" -else - VERB=">/dev/null 2>/dev/null" -fi -if test "-"${enable_verbose_test} == "-yes" ; then - VERB="" -else - VERB=">/dev/null 2>/dev/null" -fi - -AC_ARG_ENABLE([color],[AS_HELP_STRING([--enable-color],[enable colored output (default on)])],[ -if test "x${enableval}" == "xyes" ; then - MACROS=${MACROS}" -DCOLOREDOUTPUT" - NO_COLOR="NO_COLOR2" - OK_COLOR="OK_COLOR2" -fi -],[ -MACROS=${MACROS}" -DCOLOREDOUTPUT" -NO_COLOR="NO_COLOR2" -OK_COLOR="OK_COLOR2" -]) -AC_ARG_ENABLE([debug],[AS_HELP_STRING([--enable-debug],[enable debug flag while commpiling (default on)])],[enable_debug=yes],[enable_debug=yes]) -if test ${enable_debug} == "yes" ; then - DEBUG="-g" -fi - -LIBFILES="cmor.o cmor_axes.o cmor_variables.o cmor_tables.o cdTimeConv.o cdUtil.o timeConv.o timeArith.o cmor_grids.o cmor_md5.o " -LIBFFILES="cmor_cfortran_interface.o cmor_fortran_interface.o" - -dnl ########################################################## -dnl Turn on/off fortran -dnl ########################################################## -AC_ARG_ENABLE([fortran],[AS_HELP_STRING([--enable-fortran],[enable fortran api (default will try)])]) -enable_fortran="-"${enable_fortran} -TEST_FORTRAN="test_fortran" -if test ${enable_fortran} == "-no" ; then - FC="" - F77="" - FFLAGS="" - FCFLAGS="" - TEST_FORTRAN=" " - MODFILES=" " -else - LIBFILES=${LIBFILES}" "${LIBFFILES} - MODFILES="cmor_users_functions.*" -fi - -CDATPREFIX=" " -MAKETESTPYTHON=" " -dnl turn on/off python -AC_ARG_WITH([cdat],[AS_HELP_STRING([--with-cdat],[enable support for cdat put path root (w/o bin/cdat)])],[],[with_cdat="no"]) -with_cdatb="-"${with_cdat} -if [ test ${with_cdatb} != "-yes" ] ; then - if [ test ${with_cdatb} != "-no" ] ; then - PYTHONEXEC=${with_cdat}/bin/cdat - MAKEDEPPYTHON="python" - MAKETESTPYTHON="test_python" - CDATPREFIX="--prefix="${with_cdat} - else - PYTHONEXEC=" " - MAKEDEPPYTHON=" " - fi -else - PYTHONEXEC="cdat" - MAKEDEPPYTHON="python" - MAKETESTPYTHON="test_python" -fi -AC_ARG_WITH([python],[AS_HELP_STRING([--with-python],[enable support for python put path root (w/o bin/python)])],[],[with_python="no"]) -with_pythonb="-"${with_python} -if [ test ${with_pythonb} != "-yes" ] ; then - if [ test ${with_pythonb} != "-no" ] ; then - PYTHONEXEC=${with_python}/bin/python - MAKEDEPPYTHON="python" - fi -else - PYTHONEXEC="python" - MAKEDEPPYTHON="python" -fi - -AC_SUBST(CDATPREFIX) - -AC_SUBST(PYTHONEXEC) -AC_SUBST(MAKEDEPPYTHON) -AC_SUBST(MAKETESTPYTHON) - -dnl basic test -AC_PROG_CC -AC_PROG_CPP -AC_PROG_LN_S -AC_PROG_SED -AC_PROG_MKDIR_P -AC_PROG_RANLIB -if test ${enable_fortran} != "-no" ; then - AC_PROG_FC - AC_FC_LIBRARY_LDFLAGS -fi - -LDFLAGS=${LDFLAGS}" -lm " - - -AC_ARG_WITH([uuid],[AS_HELP_STRING([--with-uuid],[enable support for uuid in none standard location])],[],[with_uuid="no"]) -with_uuidb="-"${with_uuid} -if [ test ${with_uuidb} != "-yes" ] ; then - if [ test ${with_uuidb} != "-no" ] ; then - UUIDFLAGS=" -I${with_uuid}/include" - if [ test ${RTAG} != "none" ] ; then - UUIDLDFLAGS=" -L${with_uuid}/lib ${RTAG}${with_uuid}/lib -luuid" - else - UUIDLDFLAGS=" -L${with_uuid}/lib -luuid" - fi - else - UUIDLDFLAGS="-luuid" - UUIDFLAGS="" - fi -else - UUIDLDFLAGS="-luuid" - UUIDFLAGS="" -fi -AC_CHECK_LIB([uuid],[uuid_create],[],[AC_ERROR([Could not get a working uuid])],[ ${UUIDFLAGS} ${UUIDLDFLAGS} ]) - -LIBS="" -AC_ARG_WITH([udunits2],[AS_HELP_STRING([--with-udunits2],[enable support for udunits2 in none standard location])],[],[with_udunits2="no"]) -with_udunits2b="-"${with_udunits2} -if [ test ${with_udunits2b} != "-yes" ] ; then - if [ test ${with_udunits2b} != "-no" ] ; then - UDUNITS2FLAGS=" -I${with_udunits2}/include" - if [ test ${RTAG} != "none" ] ; then - UDUNITS2LDFLAGS=" -L${with_udunits2}/lib ${RTAG}${with_udunits2}/lib -ludunits2 -lexpat" - else - UDUNITS2LDFLAGS=" -L${with_udunits2}/lib -ludunits2 -lexpat" - fi - else - UDUNITS2FLAGS="-ludunits2" - UDUNITS2LDFLAGS="" - fi -else - UDUNITS2FLAGS="-ludunits2" - UDUNITS2LDFLAGS="" -fi -AC_CHECK_LIB([udunits2],[ut_parse],[],[AC_ERROR([Could not get a working udunits2])],[ ${UDUNITS2FLAGS} ${UDUNITS2LDFLAGS} -lm ]) -LIBS="" - - -AC_ARG_WITH([netcdf],[AS_HELP_STRING([--with-netcdf],[enable support for NetCDF in none standard location])],[],[with_netcdf="no"]) -with_netcdfb="-"${with_netcdf} -if [ test ${with_netcdfb} != "-yes" ]; then - if [ test ${with_netcdfb} != "-no" ] ; then - AC_CHECK_FILE([${with_netcdf}/bin/nc-config],[HAS_NCCONFIG=yes],[HAS_NCCONFIG=no]) - if [ test ${HAS_NCCONFIG} == "yes" ] ; then - NCCFLAGS=`${with_netcdf}/bin/nc-config --cflags` - NCLDFLAGS=`${with_netcdf}/bin/nc-config --libs` - else -#echo "CRAP!" - NCCFLAGS=" -I${with_netcdf}/include" - if [ test ${RTAG} != "none" ] ; then - NCLDFLAGS=" -L${with_netcdf}/lib ${RTAG}${with_netcdf}/lib -lnetcdf" - else - NCLDFLAGS=" -L${with_netcdf}/lib -lnetcdf" - fi - fi - else - NCCFLAGS="-lnetcdf" - NCLDFLAGS="" - fi -else - AC_PATH_PROG(NCCONFIG,nc-config,"no") - if [ test NCCONFIG != "no" ] ; then - NCCFLAGS=`${NCCONFIG} --cflags` - NCLDFLAGS=`${NCCONFIG} --libs` - else - NCCFLAGS="-lnetcdf" - NCLDFLAGS="" - fi -fi - -USERCFLAGS=${CFLAGS} -USERFFLAGS=${FFLAGS} -USERLDFLAGS=${LDFLAGS} - -CFLAGS=${NCCFLAGS} -LDFLAGS=${NCLDFLAGS} - -dnl ok that this point we need to see if it is NC3 or NC4 -AC_CHECK_LIB([netcdf],[nc_inq_var_deflate],[HAS_NC4="yes"],[HAS_NC4="no"],[${NCFLAGS} ${NCLDFLAGS} ]) -BUILD_NC3="no" -HAS_NC3="no" -OLIBS=${LIBS} -LIBS="-lnetcdf "${NCCFLAGS}" "${NCLDFLAGS} -if [ test ${HAS_NC4} == "no" ] ; then - dnl ok couldn't get nc4, lets see if that is a nc3 - AC_CHECK_LIB([netcdf],[nc_open],[HAS_NC="yes"],[HAS_NC="no"],[${NCFLAGS} ${NCLDFLAGS} ]) - if [ test ${HAS_NCCONFIG} == "yes" ] ; then - HAS_NC3="yes" - else - dnl need to test if it is version 3.6.3 - AC_MSG_CHECKING([if you have netcdf 3.6.3)]) - AC_RUN_IFELSE( - [AC_LANG_PROGRAM([ - #include - #include - #include - #include - ], - [ [ - - char version[50]; - int major,minor,patch; - strncpy(version,nc_inq_libvers(),50); - sscanf(version,"%*c%1d%*c%1d%*c%1d%*s",&major,&minor,&patch); - if ((major!=3) && (minor!=6) && (patch!=3)) return 1; - return 0; - ]])],[BUILD_NC3="no"],[BUILD_NC3="yes"]) - if [test ${BUILD_NC3} == "yes" ] ; then - AC_MSG_RESULT(["no"]) - AC_ERROR([Could not get a working NetCDF]) - else - AC_MSG_RESULT(["yes"]) - fi - HAS_NC3="yes" - fi -fi -LIBS=${OLIBS} -CFLAGS=${CFLAGS}" -Iinclude -Iinclude/cdTime" -MAINDIR=`pwd` - -# Library sources -LIBSOURCES="Src/cmor.c Src/cmor_variables.c Src/cmor_axes.c Src/cmor_tables.c Src/cmor_grids.c Src/cdTime/cdTimeConv.c Src/cdTime/cdUtil.c Src/cdTime/timeConv.c Src/cdTime/timeArith.c Src/cmor_cfortran_interface.c Src/cmor_md5.c" -LIBFSOURCES="Src/cmor_fortran_interface.f90" - - -AC_OUTPUT - -AC_MSG_NOTICE([]) -AC_MSG_NOTICE([************************************************************************]) -AC_MSG_NOTICE([ SUMMARY]) -AC_MSG_NOTICE([ VERSION: ${CMOR_VERSION}]) -AC_MSG_NOTICE([************************************************************************]) -AC_MSG_NOTICE([]) -AC_MSG_NOTICE([........................................................................]) -AC_MSG_NOTICE([... COMPILERS]) -AC_MSG_NOTICE([........................................................................]) -AC_MSG_NOTICE([]) -AC_MSG_NOTICE([ FORTRAN]) -if test ${enable_fortran} == "-no" ; then - AC_MSG_NOTICE([ DISABLED]) -else - AC_MSG_NOTICE([ FC=${FC}]) - AC_MSG_NOTICE([ F77=${F77}]) - AC_MSG_NOTICE([ FFLAGS=${FFLAGS}]) - AC_MSG_NOTICE([ FCFLAGS=${FCFLAGS}]) -fi -AC_MSG_NOTICE([........................................................................]) -AC_MSG_NOTICE([... EXTERNALS ...]) -AC_MSG_NOTICE([........................................................................]) -if [test ${SZLIBFLAGS}!="nosz" ]; then - AC_MSG_NOTICE([]) - AC_MSG_NOTICE([SZLIB]) - AC_MSG_NOTICE([ CFLAGS : ${SZLIBFLAGS}]) - AC_MSG_NOTICE([ LDFLAGS : ${SZLIBLDFLAGS}]) -fi -AC_MSG_NOTICE([]) -AC_MSG_NOTICE([UUID]) -AC_MSG_NOTICE([ CFLAGS : ${UUIDFLAGS}]) -AC_MSG_NOTICE([ LDFLAGS : ${UUIDLDFLAGS}]) -AC_MSG_NOTICE([]) -AC_MSG_NOTICE([UDUNITS2]) -AC_MSG_NOTICE([ CFLAGS : ${UDUNITS2FLAGS}]) -AC_MSG_NOTICE([ LDFLAGS : ${UDUNITS2LDFLAGS}]) -AC_MSG_NOTICE([]) -if [test ${BUILD_NC3} == "no" ] ; then - if [test ${HAS_NC4} == "yes" ] ; then - AC_MSG_NOTICE([NetCDF4]) - AC_MSG_NOTICE([ CFLAGS : ${NCCFLAGS}]) - AC_MSG_NOTICE([ LDFLAGS : ${NCLDFLAGS}]) - else - AC_MSG_NOTICE([NetCDF3.6.3]) - AC_MSG_NOTICE([ CFLAGS : ${NCCFLAGS}]) - AC_MSG_NOTICE([ LDFLAGS : ${NCLDFLAGS}]) - fi -else - AC_MSG_NOTICE([No valid NetCDF found will build NetCDF3.6.3 for you]) -fi -AC_MSG_NOTICE([]) -AC_MSG_NOTICE([ PYTHON]) -if test "-"${PYTHONEXEC} == "-" ; then - AC_MSG_NOTICE([ Not built, not used it tests]) -else - AC_MSG_NOTICE([ Built using python: ${PYTHONEXEC}]) -fi -AC_MSG_NOTICE([]) -AC_MSG_NOTICE([Type "make" to build cmor]) -AC_MSG_NOTICE([Type "make install" to build and install cmor to ${prefix}]) -AC_MSG_NOTICE([]) -AC_MSG_NOTICE([Type "make test" to build and test cmor code only]) -AC_MSG_NOTICE([Type "make test_C" to build cmor and test C only]) -if test "-"${MAKETESTPYTHON} != "-" ; then - AC_MSG_NOTICE([Will also test for python since your are using CDAT]) -AC_MSG_NOTICE([Type "make test_python" to build and test cmor python only]) -fi -if test ${enable_fortran} != "-no" ; then - AC_MSG_NOTICE([Type "make test_fortran" to build cmor and test fortran only]) -else - AC_MSG_NOTICE([will also test for fortran]) -fi -AC_MSG_NOTICE([]) -AC_MSG_NOTICE([You can compile C or FORTRAN code using the compilation lines shown in file: compile_line.txt and printed bellow:]) -AC_MSG_NOTICE([]) -AC_MSG_NOTICE([]) - - -cat compile_line.txt diff --git a/get_git_version.sh b/get_git_version.sh deleted file mode 100755 index 7d27fa7fe1763c621534dfec861ccb3d07338e79..0000000000000000000000000000000000000000 --- a/get_git_version.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env sh - -if [ "X"${CC} = "X" ] ; then - gcc show_git.c -o a.out ; ./a.out ; rm a.out -else - ${CC} show_git.c -o a.out ; ./a.out ; rm a.out -fi diff --git a/install-sh b/install-sh deleted file mode 100755 index 4d4a9519eaf88b18fb157dfe5fae59c1c5d005c7..0000000000000000000000000000000000000000 --- a/install-sh +++ /dev/null @@ -1,323 +0,0 @@ -#!/bin/sh -# install - install a program, script, or datafile - -scriptversion=2005-05-14.22 - -# This originates from X11R5 (mit/util/scripts/install.sh), which was -# later released in X11R6 (xc/config/util/install.sh) with the -# following copyright and license. -# -# Copyright (C) 1994 X Consortium -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to -# deal in the Software without restriction, including without limitation the -# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -# sell copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- -# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -# -# Except as contained in this notice, the name of the X Consortium shall not -# be used in advertising or otherwise to promote the sale, use or other deal- -# ings in this Software without prior written authorization from the X Consor- -# tium. -# -# -# FSF changes to this file are in the public domain. -# -# Calling this script install-sh is preferred over install.sh, to prevent -# `make' implicit rules from creating a file called install from it -# when there is no Makefile. -# -# This script is compatible with the BSD install script, but was written -# from scratch. It can only install one file at a time, a restriction -# shared with many OS's install programs. - -# set DOITPROG to echo to test this script - -# Don't use :- since 4.3BSD and earlier shells don't like it. -doit="${DOITPROG-}" - -# put in absolute paths if you don't have them in your path; or use env. vars. - -mvprog="${MVPROG-mv}" -cpprog="${CPPROG-cp}" -chmodprog="${CHMODPROG-chmod}" -chownprog="${CHOWNPROG-chown}" -chgrpprog="${CHGRPPROG-chgrp}" -stripprog="${STRIPPROG-strip}" -rmprog="${RMPROG-rm}" -mkdirprog="${MKDIRPROG-mkdir}" - -chmodcmd="$chmodprog 0755" -chowncmd= -chgrpcmd= -stripcmd= -rmcmd="$rmprog -f" -mvcmd="$mvprog" -src= -dst= -dir_arg= -dstarg= -no_target_directory= - -usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE - or: $0 [OPTION]... SRCFILES... DIRECTORY - or: $0 [OPTION]... -t DIRECTORY SRCFILES... - or: $0 [OPTION]... -d DIRECTORIES... - -In the 1st form, copy SRCFILE to DSTFILE. -In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. -In the 4th, create DIRECTORIES. - -Options: --c (ignored) --d create directories instead of installing files. --g GROUP $chgrpprog installed files to GROUP. --m MODE $chmodprog installed files to MODE. --o USER $chownprog installed files to USER. --s $stripprog installed files. --t DIRECTORY install into DIRECTORY. --T report an error if DSTFILE is a directory. ---help display this help and exit. ---version display version info and exit. - -Environment variables override the default commands: - CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG -" - -while test -n "$1"; do - case $1 in - -c) shift - continue;; - - -d) dir_arg=true - shift - continue;; - - -g) chgrpcmd="$chgrpprog $2" - shift - shift - continue;; - - --help) echo "$usage"; exit $?;; - - -m) chmodcmd="$chmodprog $2" - shift - shift - continue;; - - -o) chowncmd="$chownprog $2" - shift - shift - continue;; - - -s) stripcmd=$stripprog - shift - continue;; - - -t) dstarg=$2 - shift - shift - continue;; - - -T) no_target_directory=true - shift - continue;; - - --version) echo "$0 $scriptversion"; exit $?;; - - *) # When -d is used, all remaining arguments are directories to create. - # When -t is used, the destination is already specified. - test -n "$dir_arg$dstarg" && break - # Otherwise, the last argument is the destination. Remove it from $@. - for arg - do - if test -n "$dstarg"; then - # $@ is not empty: it contains at least $arg. - set fnord "$@" "$dstarg" - shift # fnord - fi - shift # arg - dstarg=$arg - done - break;; - esac -done - -if test -z "$1"; then - if test -z "$dir_arg"; then - echo "$0: no input file specified." >&2 - exit 1 - fi - # It's OK to call `install-sh -d' without argument. - # This can happen when creating conditional directories. - exit 0 -fi - -for src -do - # Protect names starting with `-'. - case $src in - -*) src=./$src ;; - esac - - if test -n "$dir_arg"; then - dst=$src - src= - - if test -d "$dst"; then - mkdircmd=: - chmodcmd= - else - mkdircmd=$mkdirprog - fi - else - # Waiting for this to be detected by the "$cpprog $src $dsttmp" command - # might cause directories to be created, which would be especially bad - # if $src (and thus $dsttmp) contains '*'. - if test ! -f "$src" && test ! -d "$src"; then - echo "$0: $src does not exist." >&2 - exit 1 - fi - - if test -z "$dstarg"; then - echo "$0: no destination specified." >&2 - exit 1 - fi - - dst=$dstarg - # Protect names starting with `-'. - case $dst in - -*) dst=./$dst ;; - esac - - # If destination is a directory, append the input filename; won't work - # if double slashes aren't ignored. - if test -d "$dst"; then - if test -n "$no_target_directory"; then - echo "$0: $dstarg: Is a directory" >&2 - exit 1 - fi - dst=$dst/`basename "$src"` - fi - fi - - # This sed command emulates the dirname command. - dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'` - - # Make sure that the destination directory exists. - - # Skip lots of stat calls in the usual case. - if test ! -d "$dstdir"; then - defaultIFS=' - ' - IFS="${IFS-$defaultIFS}" - - oIFS=$IFS - # Some sh's can't handle IFS=/ for some reason. - IFS='%' - set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'` - shift - IFS=$oIFS - - pathcomp= - - while test $# -ne 0 ; do - pathcomp=$pathcomp$1 - shift - if test ! -d "$pathcomp"; then - $mkdirprog "$pathcomp" - # mkdir can fail with a `File exist' error in case several - # install-sh are creating the directory concurrently. This - # is OK. - test -d "$pathcomp" || exit - fi - pathcomp=$pathcomp/ - done - fi - - if test -n "$dir_arg"; then - $doit $mkdircmd "$dst" \ - && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \ - && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \ - && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \ - && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; } - - else - dstfile=`basename "$dst"` - - # Make a couple of temp file names in the proper directory. - dsttmp=$dstdir/_inst.$$_ - rmtmp=$dstdir/_rm.$$_ - - # Trap to clean up those temp files at exit. - trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 - trap '(exit $?); exit' 1 2 13 15 - - # Copy the file name to the temp name. - $doit $cpprog "$src" "$dsttmp" && - - # and set any options; do chmod last to preserve setuid bits. - # - # If any of these fail, we abort the whole thing. If we want to - # ignore errors from any of these, just make sure not to ignore - # errors from the above "$doit $cpprog $src $dsttmp" command. - # - { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \ - && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \ - && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \ - && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } && - - # Now rename the file to the real destination. - { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \ - || { - # The rename failed, perhaps because mv can't rename something else - # to itself, or perhaps because mv is so ancient that it does not - # support -f. - - # Now remove or move aside any old file at destination location. - # We try this two ways since rm can't unlink itself on some - # systems and the destination file might be busy for other - # reasons. In this case, the final cleanup might fail but the new - # file should still install successfully. - { - if test -f "$dstdir/$dstfile"; then - $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \ - || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \ - || { - echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 - (exit 1); exit 1 - } - else - : - fi - } && - - # Now rename the file to the real destination. - $doit $mvcmd "$dsttmp" "$dstdir/$dstfile" - } - } - fi || { (exit 1); exit 1; } -done - -# The final little trick to "correctly" pass the exit status to the exit trap. -{ - (exit 0); exit 0 -} - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" -# End: diff --git a/Doc/CMOR2-SPECS_patch_user_guide.pdf b/lib/cmor/Doc/CMOR2-SPECS_patch_user_guide.pdf similarity index 100% rename from Doc/CMOR2-SPECS_patch_user_guide.pdf rename to lib/cmor/Doc/CMOR2-SPECS_patch_user_guide.pdf diff --git a/Doc/IPCC_output_requirements.htm b/lib/cmor/Doc/IPCC_output_requirements.htm similarity index 100% rename from Doc/IPCC_output_requirements.htm rename to lib/cmor/Doc/IPCC_output_requirements.htm diff --git a/Doc/IPCC_output_requirements.pdf b/lib/cmor/Doc/IPCC_output_requirements.pdf similarity index 100% rename from Doc/IPCC_output_requirements.pdf rename to lib/cmor/Doc/IPCC_output_requirements.pdf diff --git a/Doc/cmor_users_guide.doc b/lib/cmor/Doc/cmor_users_guide.doc similarity index 100% rename from Doc/cmor_users_guide.doc rename to lib/cmor/Doc/cmor_users_guide.doc diff --git a/Doc/cmor_users_guide.htm b/lib/cmor/Doc/cmor_users_guide.htm similarity index 100% rename from Doc/cmor_users_guide.htm rename to lib/cmor/Doc/cmor_users_guide.htm diff --git a/Doc/cmor_users_guide.pdf b/lib/cmor/Doc/cmor_users_guide.pdf similarity index 100% rename from Doc/cmor_users_guide.pdf rename to lib/cmor/Doc/cmor_users_guide.pdf diff --git a/Doc/cmor_users_guide_files/filelist.xml b/lib/cmor/Doc/cmor_users_guide_files/filelist.xml similarity index 100% rename from Doc/cmor_users_guide_files/filelist.xml rename to lib/cmor/Doc/cmor_users_guide_files/filelist.xml diff --git a/Doc/cmor_users_guide_files/header.htm b/lib/cmor/Doc/cmor_users_guide_files/header.htm similarity index 100% rename from Doc/cmor_users_guide_files/header.htm rename to lib/cmor/Doc/cmor_users_guide_files/header.htm diff --git a/Doc/standard_output.html b/lib/cmor/Doc/standard_output.html similarity index 100% rename from Doc/standard_output.html rename to lib/cmor/Doc/standard_output.html diff --git a/Doc/standard_output.pdf b/lib/cmor/Doc/standard_output.pdf similarity index 100% rename from Doc/standard_output.pdf rename to lib/cmor/Doc/standard_output.pdf diff --git a/Doc/standard_output_updates.htm b/lib/cmor/Doc/standard_output_updates.htm similarity index 100% rename from Doc/standard_output_updates.htm rename to lib/cmor/Doc/standard_output_updates.htm diff --git a/Lib/__init__.py b/lib/cmor/Lib/__init__.py similarity index 100% rename from Lib/__init__.py rename to lib/cmor/Lib/__init__.py diff --git a/Lib/check_CMOR_compliant.py b/lib/cmor/Lib/check_CMOR_compliant.py similarity index 100% rename from Lib/check_CMOR_compliant.py rename to lib/cmor/Lib/check_CMOR_compliant.py diff --git a/Lib/cmor_const.py b/lib/cmor/Lib/cmor_const.py similarity index 100% rename from Lib/cmor_const.py rename to lib/cmor/Lib/cmor_const.py diff --git a/Lib/git2svn.py b/lib/cmor/Lib/git2svn.py similarity index 100% rename from Lib/git2svn.py rename to lib/cmor/Lib/git2svn.py diff --git a/Lib/pywrapper.py b/lib/cmor/Lib/pywrapper.py similarity index 100% rename from Lib/pywrapper.py rename to lib/cmor/Lib/pywrapper.py diff --git a/Src/_cmormodule.c b/lib/cmor/Src/_cmormodule.c similarity index 100% rename from Src/_cmormodule.c rename to lib/cmor/Src/_cmormodule.c diff --git a/Src/cdTime/Makefile.in b/lib/cmor/Src/cdTime/Makefile.in similarity index 100% rename from Src/cdTime/Makefile.in rename to lib/cmor/Src/cdTime/Makefile.in diff --git a/Src/cdTime/cdRegTrfm.c b/lib/cmor/Src/cdTime/cdRegTrfm.c similarity index 100% rename from Src/cdTime/cdRegTrfm.c rename to lib/cmor/Src/cdTime/cdRegTrfm.c diff --git a/Src/cdTime/cdTimeConv.c b/lib/cmor/Src/cdTime/cdTimeConv.c similarity index 100% rename from Src/cdTime/cdTimeConv.c rename to lib/cmor/Src/cdTime/cdTimeConv.c diff --git a/Src/cdTime/cdUtil.c b/lib/cmor/Src/cdTime/cdUtil.c similarity index 100% rename from Src/cdTime/cdUtil.c rename to lib/cmor/Src/cdTime/cdUtil.c diff --git a/Src/cdTime/fcdTimeConv.c b/lib/cmor/Src/cdTime/fcdTimeConv.c similarity index 100% rename from Src/cdTime/fcdTimeConv.c rename to lib/cmor/Src/cdTime/fcdTimeConv.c diff --git a/Src/cdTime/reg_trfm.c b/lib/cmor/Src/cdTime/reg_trfm.c similarity index 100% rename from Src/cdTime/reg_trfm.c rename to lib/cmor/Src/cdTime/reg_trfm.c diff --git a/Src/cdTime/timeArith.c b/lib/cmor/Src/cdTime/timeArith.c similarity index 100% rename from Src/cdTime/timeArith.c rename to lib/cmor/Src/cdTime/timeArith.c diff --git a/Src/cdTime/timeConv.c b/lib/cmor/Src/cdTime/timeConv.c similarity index 100% rename from Src/cdTime/timeConv.c rename to lib/cmor/Src/cdTime/timeConv.c diff --git a/Src/cmor.c b/lib/cmor/Src/cmor.c similarity index 100% rename from Src/cmor.c rename to lib/cmor/Src/cmor.c diff --git a/Src/cmor_axes.c b/lib/cmor/Src/cmor_axes.c similarity index 100% rename from Src/cmor_axes.c rename to lib/cmor/Src/cmor_axes.c diff --git a/Src/cmor_cfortran_interface.c b/lib/cmor/Src/cmor_cfortran_interface.c similarity index 100% rename from Src/cmor_cfortran_interface.c rename to lib/cmor/Src/cmor_cfortran_interface.c diff --git a/Src/cmor_fortran_interface.f90 b/lib/cmor/Src/cmor_fortran_interface.f90 similarity index 100% rename from Src/cmor_fortran_interface.f90 rename to lib/cmor/Src/cmor_fortran_interface.f90 diff --git a/Src/cmor_grids.c b/lib/cmor/Src/cmor_grids.c similarity index 100% rename from Src/cmor_grids.c rename to lib/cmor/Src/cmor_grids.c diff --git a/Src/cmor_md5.c b/lib/cmor/Src/cmor_md5.c similarity index 100% rename from Src/cmor_md5.c rename to lib/cmor/Src/cmor_md5.c diff --git a/Src/cmor_tables.c b/lib/cmor/Src/cmor_tables.c similarity index 100% rename from Src/cmor_tables.c rename to lib/cmor/Src/cmor_tables.c diff --git a/Src/cmor_variables.c b/lib/cmor/Src/cmor_variables.c similarity index 100% rename from Src/cmor_variables.c rename to lib/cmor/Src/cmor_variables.c diff --git a/Tables/SPECS_6hrLev b/lib/cmor/Tables/SPECS_6hrLev similarity index 100% rename from Tables/SPECS_6hrLev rename to lib/cmor/Tables/SPECS_6hrLev diff --git a/Tables/SPECS_Amon b/lib/cmor/Tables/SPECS_Amon similarity index 100% rename from Tables/SPECS_Amon rename to lib/cmor/Tables/SPECS_Amon diff --git a/Tables/SPECS_Lmon b/lib/cmor/Tables/SPECS_Lmon similarity index 100% rename from Tables/SPECS_Lmon rename to lib/cmor/Tables/SPECS_Lmon diff --git a/Tables/SPECS_OImon b/lib/cmor/Tables/SPECS_OImon similarity index 100% rename from Tables/SPECS_OImon rename to lib/cmor/Tables/SPECS_OImon diff --git a/Tables/SPECS_Omon b/lib/cmor/Tables/SPECS_Omon similarity index 100% rename from Tables/SPECS_Omon rename to lib/cmor/Tables/SPECS_Omon diff --git a/Tables/SPECS_day b/lib/cmor/Tables/SPECS_day similarity index 100% rename from Tables/SPECS_day rename to lib/cmor/Tables/SPECS_day diff --git a/Tables/SPECS_fx b/lib/cmor/Tables/SPECS_fx similarity index 100% rename from Tables/SPECS_fx rename to lib/cmor/Tables/SPECS_fx diff --git a/Tables/SPECS_grids b/lib/cmor/Tables/SPECS_grids similarity index 100% rename from Tables/SPECS_grids rename to lib/cmor/Tables/SPECS_grids diff --git a/compilation.sh b/lib/cmor/compilation.sh similarity index 100% rename from compilation.sh rename to lib/cmor/compilation.sh diff --git a/compile_line.txt.in b/lib/cmor/compile_line.txt.in similarity index 100% rename from compile_line.txt.in rename to lib/cmor/compile_line.txt.in diff --git a/include/cdTime/cddrs.h b/lib/cmor/include/cdTime/cddrs.h similarity index 100% rename from include/cdTime/cddrs.h rename to lib/cmor/include/cdTime/cddrs.h diff --git a/include/cdTime/cddrsint.h b/lib/cmor/include/cdTime/cddrsint.h similarity index 100% rename from include/cdTime/cddrsint.h rename to lib/cmor/include/cdTime/cddrsint.h diff --git a/include/cdTime/cdms.h b/lib/cmor/include/cdTime/cdms.h similarity index 100% rename from include/cdTime/cdms.h rename to lib/cmor/include/cdTime/cdms.h diff --git a/include/cdTime/cdms.inc b/lib/cmor/include/cdTime/cdms.inc similarity index 100% rename from include/cdTime/cdms.inc rename to lib/cmor/include/cdTime/cdms.inc diff --git a/include/cdTime/cdmsint.h b/lib/cmor/include/cdTime/cdmsint.h similarity index 100% rename from include/cdTime/cdmsint.h rename to lib/cmor/include/cdTime/cdmsint.h diff --git a/include/cdTime/cdmsint_new.h b/lib/cmor/include/cdTime/cdmsint_new.h similarity index 100% rename from include/cdTime/cdmsint_new.h rename to lib/cmor/include/cdTime/cdmsint_new.h diff --git a/include/cdTime/cdrra.h b/lib/cmor/include/cdTime/cdrra.h similarity index 100% rename from include/cdTime/cdrra.h rename to lib/cmor/include/cdTime/cdrra.h diff --git a/include/cdTime/cdunif.h b/lib/cmor/include/cdTime/cdunif.h similarity index 100% rename from include/cdTime/cdunif.h rename to lib/cmor/include/cdTime/cdunif.h diff --git a/include/cdTime/cdunifint.h b/lib/cmor/include/cdTime/cdunifint.h similarity index 100% rename from include/cdTime/cdunifint.h rename to lib/cmor/include/cdTime/cdunifint.h diff --git a/include/cdTime/cdunifpp/cdunifpp.h b/lib/cmor/include/cdTime/cdunifpp/cdunifpp.h similarity index 100% rename from include/cdTime/cdunifpp/cdunifpp.h rename to lib/cmor/include/cdTime/cdunifpp/cdunifpp.h diff --git a/include/cdTime/cdunifpp/cdunifpp_frename.h b/lib/cmor/include/cdTime/cdunifpp/cdunifpp_frename.h similarity index 100% rename from include/cdTime/cdunifpp/cdunifpp_frename.h rename to lib/cmor/include/cdTime/cdunifpp/cdunifpp_frename.h diff --git a/include/cdTime/cdunifpp/crayio.h b/lib/cmor/include/cdTime/cdunifpp/crayio.h similarity index 100% rename from include/cdTime/cdunifpp/crayio.h rename to lib/cmor/include/cdTime/cdunifpp/crayio.h diff --git a/include/cdTime/cdunifpp/util.h b/lib/cmor/include/cdTime/cdunifpp/util.h similarity index 100% rename from include/cdTime/cdunifpp/util.h rename to lib/cmor/include/cdTime/cdunifpp/util.h diff --git a/include/cdTime/cdunifpp/vardef.h b/lib/cmor/include/cdTime/cdunifpp/vardef.h similarity index 100% rename from include/cdTime/cdunifpp/vardef.h rename to lib/cmor/include/cdTime/cdunifpp/vardef.h diff --git a/include/cdTime/cfortran.h b/lib/cmor/include/cdTime/cfortran.h similarity index 100% rename from include/cdTime/cfortran.h rename to lib/cmor/include/cdTime/cfortran.h diff --git a/include/cdTime/drscdf.h b/lib/cmor/include/cdTime/drscdf.h similarity index 100% rename from include/cdTime/drscdf.h rename to lib/cmor/include/cdTime/drscdf.h diff --git a/include/cdTime/drsdef.h b/lib/cmor/include/cdTime/drsdef.h similarity index 100% rename from include/cdTime/drsdef.h rename to lib/cmor/include/cdTime/drsdef.h diff --git a/include/cdTime/fcddrs.h b/lib/cmor/include/cdTime/fcddrs.h similarity index 100% rename from include/cdTime/fcddrs.h rename to lib/cmor/include/cdTime/fcddrs.h diff --git a/include/cdTime/gaussLats.h b/lib/cmor/include/cdTime/gaussLats.h similarity index 100% rename from include/cdTime/gaussLats.h rename to lib/cmor/include/cdTime/gaussLats.h diff --git a/include/cdTime/grads.h b/lib/cmor/include/cdTime/grads.h similarity index 100% rename from include/cdTime/grads.h rename to lib/cmor/include/cdTime/grads.h diff --git a/include/cdTime/gx.h b/lib/cmor/include/cdTime/gx.h similarity index 100% rename from include/cdTime/gx.h rename to lib/cmor/include/cdTime/gx.h diff --git a/include/cdTime/isdb.h b/lib/cmor/include/cdTime/isdb.h similarity index 100% rename from include/cdTime/isdb.h rename to lib/cmor/include/cdTime/isdb.h diff --git a/include/cmor.h b/lib/cmor/include/cmor.h similarity index 100% rename from include/cmor.h rename to lib/cmor/include/cmor.h diff --git a/include/cmor_func_def.h b/lib/cmor/include/cmor_func_def.h similarity index 100% rename from include/cmor_func_def.h rename to lib/cmor/include/cmor_func_def.h diff --git a/include/cmor_locale.h b/lib/cmor/include/cmor_locale.h similarity index 100% rename from include/cmor_locale.h rename to lib/cmor/include/cmor_locale.h diff --git a/include/cmor_locale.h.in b/lib/cmor/include/cmor_locale.h.in similarity index 100% rename from include/cmor_locale.h.in rename to lib/cmor/include/cmor_locale.h.in diff --git a/include/cmor_md5.h b/lib/cmor/include/cmor_md5.h similarity index 100% rename from include/cmor_md5.h rename to lib/cmor/include/cmor_md5.h diff --git a/setup.py.in b/lib/cmor/setup.py.in similarity index 100% rename from setup.py.in rename to lib/cmor/setup.py.in diff --git a/show_git.c b/show_git.c deleted file mode 100644 index a5be51c75968f7bec516be467e6f60d67ec0af05..0000000000000000000000000000000000000000 --- a/show_git.c +++ /dev/null @@ -1,11 +0,0 @@ -#include -#include -#define R_OK 4 -int main() { - FILE *fp; - char s1[50]; - fp = popen("git log -n 1 --pretty=\"format:%H\" ","r"); - fscanf(fp,"%s",s1); - printf("%s\n",s1); - return 0; -}